diff --git a/.build_exclusions b/.build_exclusions index 942cb79b12a8..226dfd415add 100644 --- a/.build_exclusions +++ b/.build_exclusions @@ -1,10 +1,17 @@ pkg/*.xpi *~ *.sw? +*/.*.sw? +*/*/.*.sw? +*/*/*/.*.sw? chrome/content/rules/*.xml chrome/content/rules/*.py chrome/content/rules/validity-* chrome/content/rules/make-* *.xcf.gz .gitignore -chrome-resources/update-from-chrome-svn.sh +.eslintrc.json +.eslintignore +node_modules +package-lock.json +test diff --git a/.editorconfig b/.editorconfig index 1ccf04d6210d..3188469e924a 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,4 +1,4 @@ -# EditorConfig is awesome: http://EditorConfig.org +# EditorConfig is awesome: https://EditorConfig.org root = true @@ -6,7 +6,16 @@ root = true end_of_line = lf insert_final_newline = true charset = utf-8 +trim_trailing_whitespace = true [src/chrome/content/rules/*.xml] indent_style = tab -indent_size = 4 \ No newline at end of file +indent_size = 4 + +[*.{css,html,js,sh}] +indent_style = space +indent_size = 2 + +[*.py] +indent_style = space +indent_size = 4 diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md new file mode 100644 index 000000000000..e57a0b19e0e8 --- /dev/null +++ b/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,11 @@ +[//]: # (Thank you for reporting an issue to HTTPS Everywhere.) +[//]: # (We welcome input from users on improving this project.) +[//]: # +[//]: # (Please help us by following this issue template.) +[//]: # (You can delete all blank lines and all lines starting) +[//]: # (with the comment marker, such as this one.) + +Type: other + +[//]: # (Include any other relevant information below. Thank you again for) +[//]: # (helping to improve HTTPS Everywhere.) diff --git a/.github/ISSUE_TEMPLATE/code-issue.md b/.github/ISSUE_TEMPLATE/code-issue.md new file mode 100644 index 000000000000..c62ff8b75aff --- /dev/null +++ b/.github/ISSUE_TEMPLATE/code-issue.md @@ -0,0 +1,16 @@ +--- +name: Code issue report +about: Report an issue about our code +--- + +[//]: # (Thank you for reporting an issue to HTTPS Everywhere.) +[//]: # (We welcome input from users on improving this project.) +[//]: # +[//]: # (Please help us by following this issue template.) +[//]: # (You can delete all blank lines and all lines starting) +[//]: # (with the comment marker, such as this one.) + +Type: code issue + +[//]: # (Include any other relevant information below. Thank you again for) +[//]: # (helping to improve HTTPS Everywhere.) diff --git a/.github/ISSUE_TEMPLATE/feature-request.md b/.github/ISSUE_TEMPLATE/feature-request.md new file mode 100644 index 000000000000..eb831076fd25 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-request.md @@ -0,0 +1,16 @@ +--- +name: Feature request +about: Request a feature to help us improve HTTPS Everywhere +--- + +[//]: # (Thank you for reporting an issue to HTTPS Everywhere.) +[//]: # (We welcome input from users on improving this project.) +[//]: # +[//]: # (Please help us by following this issue template.) +[//]: # (You can delete all blank lines and all lines starting) +[//]: # (with the comment marker, such as this one.) + +Type: feature request + +[//]: # (Include any other relevant information below. Thank you again for) +[//]: # (helping to improve HTTPS Everywhere.) diff --git a/.github/ISSUE_TEMPLATE/new-ruleset.md b/.github/ISSUE_TEMPLATE/new-ruleset.md new file mode 100644 index 000000000000..59250bbece3f --- /dev/null +++ b/.github/ISSUE_TEMPLATE/new-ruleset.md @@ -0,0 +1,42 @@ +--- +name: New ruleset +about: Request/submit a new ruleset +--- + +[//]: # (Thank you for reporting an issue to HTTPS Everywhere.) +[//]: # (We welcome input from users on improving this project.) +[//]: # +[//]: # (Please help us by following this issue template.) +[//]: # (You can delete all blank lines and all lines starting) +[//]: # (with the comment marker, such as this one.) +[//]: # +[//]: # (Delete all but one of the following "Type" lines.) +[//]: # (Leave in the line that best describes the issue you are reporting.) +[//]: # +[//]: # (If you are submitting a new ruleset, please check the list at) +[//]: # (https://www.eff.org/https-everywhere/atlas/index.html and the open) +[//]: # (issues and pull requests to make sure it doesn't already exist.) + +Type: new ruleset + +[//]: # (If you are reporting a ruleset/website problem, include the top-level) +[//]: # (domain below. For example, if you want to report an issue about) +[//]: # ("one.example.com" and "two.example.com", then the line below should) +[//]: # (be:) +[//]: # +[//]: # (Domain: example.com) +[//]: # +[//]: # (Be sure to remove the parenthesis and comment marker. If you are only) +[//]: # (reporting an issue about "one.example.com", then the line below should) +[//]: # (be:) +[//]: # +[//]: # (Domain: one.example.com) +[//]: # +[//]: # (Only include one top-level domain. If you have more than one top-level) +[//]: # (domain to report, such as both "example.com" and "example.org", open a) +[//]: # (new issue for each top-level domain.) + +Domain: + +[//]: # (Include any other relevant information below. Thank you again for) +[//]: # (helping to improve HTTPS Everywhere.) diff --git a/.github/ISSUE_TEMPLATE/ruleset-issue.md b/.github/ISSUE_TEMPLATE/ruleset-issue.md new file mode 100644 index 000000000000..7b1217b52b42 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/ruleset-issue.md @@ -0,0 +1,22 @@ +--- +name: Ruleset/website issue report +about: Report a issue about a ruleset/website +--- + +[//]: # (Thank you for reporting an issue to HTTPS Everywhere.) +[//]: # (We welcome input from users on improving this project.) +[//]: # +[//]: # (Please help us by following this issue template.) +[//]: # (You can delete all blank lines and all lines starting) +[//]: # (with the comment marker, such as this one.) +[//]: # + +Type: ruleset/website issue + +[//]: # (Uncomment and fill the domain bellow if you belive that yet another) +[//]: # (domain should be added to the existing ruleset.) + +[//]: # Domain: + +[//]: # (Include any other relevant information below. Thank you again for) +[//]: # (helping to improve HTTPS Everywhere.) diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000000..89917ee4ceb8 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,20 @@ +version: 2 +updates: + # Maintain dependencies for npm + - package-ecosystem: "npm" + directory: "/chromium/" + schedule: + interval: "weekly" + day: "monday" + time: "06:00" + assignees: + - "zoracon" + commit-message: + prefix: "npmauto" + labels: + - "dependencies" + pull-request-branch-name: + separator: "-" + reviewers: + - "zoracon" + versioning-strategy: widen diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 000000000000..ef2f1688f71e --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,9 @@ +Fixes #(issue) + +## Type of change + +- [ ] Bug fix (non-breaking change which fixes an issue) +- [ ] New feature (non-breaking change which adds functionality) +- [ ] Refactoring existing code +- [ ] New Ruleset +- [ ] Existing Ruleset diff --git a/.gitignore b/.gitignore index fd06e73b585a..104e25eb17f3 100644 --- a/.gitignore +++ b/.gitignore @@ -5,13 +5,18 @@ .idea .vagrant .venv/ +.venv2/ +.venv3/ chromium.pem -dummy-chromium.pem from-preloads/ pkg/ src/chrome/content/rules/default.rulesets -src/chrome/content/rulesets.json +src/chrome/content/rules/default.rulesets.json src/defaults/rulesets.sqlite test_profile/ tokenkeys.py* Vagrantfile +.cache/ +geckodriver.log +node_modules/ +coverage/ diff --git a/.gitmodules b/.gitmodules index 049bbbed911c..1919060dd62c 100644 --- a/.gitmodules +++ b/.gitmodules @@ -2,3 +2,7 @@ path = translations url = https://git.torproject.org/translation.git branch = https_everywhere + +[submodule "lib-wasm"] + path = lib-wasm + url = https://github.com/EFForg/https-everywhere-lib-wasm.git diff --git a/.travis.yml b/.travis.yml index 4bc3192fcfb2..f028c3a3915c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,15 +1,37 @@ sudo: required -language: generic +os: linux +dist: bionic +language: python +python: 3.6 +group: bionic services: - docker -script: - - test/travis.sh -env: - - TEST=eslint - - TEST=firefox FIREFOX=firefox-dev - - TEST=firefox FIREFOX=firefox-latest - - TEST=firefox FIREFOX=firefox-esr-latest - - TEST=chromium - - TEST=rules - - TEST=fetch - - TEST=preloaded + - xvfb +matrix: + fast_finish: true + include: + - env: TEST="lint" + language: node_js + node_js: + - "lts/*" + - env: TEST="unittests" + language: node_js + node_js: + - "lts/*" + - env: TEST="validations" + - env: TEST="fetch" + - env: TEST="preloaded" + # - addons: + # chrome: beta + # env: TEST="chrome beta" BROWSER=google-chrome-beta + - addons: + chrome: stable + env: TEST="chrome stable" BROWSER=google-chrome-stable + - addons: + firefox: latest + env: TEST="firefox" BROWSER=firefox + - addons: + firefox: latest-esr + env: TEST="firefox esr" BROWSER=firefox +before_script: travis_retry test/setup_travis.sh +script: . test/run_travis.sh diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 000000000000..f5636ad09567 --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1 @@ +This project is governed by [EFF's Public Projects Code of Conduct](https://www.eff.org/pages/eppcode). diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1a5333975602..3ddaf4439e1d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,17 +1,65 @@ -# Welcome! +# Table of Contents + +## General Info + +**On May 31st, 2021 we will end manual additions to the rulesets.** Please see [this explanation on the future of HTTPSE Rulesets.](https://github.com/EFForg/https-everywhere/blob/master/docs/adrs/duckduckgo-smarter-encryption.md) + +We will continue accept requests on rulesets already in our list that are causing significant breakage for users through the summer. However, in autumn, we will begin the plan to ultimately move our crowdsourced rulesets out of the extension in favor of the Smarter Encryption Ruleset. + +- [Table of Contents](#table-of-contents) +- [Welcome](#welcome) + - [HTTPS Everywhere Source Code Layout](#https-everywhere-source-code-layout) + - [Install Dependencies and Test Build](#install-dependencies-and-test-build) + - [Precommit Testing](#precommit-testing) + - [Testing](#testing) + - [Quickly Testing a Ruleset](#quickly-testing-a-ruleset) + - [Coverage](#coverage) + - [Submitting Changes](#submitting-changes) + - [Contributing Rulesets](#contributing-rulesets) + - [General Info](#general-info) + - [New Rulesets](#new-rulesets) + - [Minimum Requirements for a Ruleset PR](#minimum-requirements-for-a-ruleset-pr) + - [Ruleset Style Guide](#ruleset-style-guide) + - [Motivation](#motivation) + - [Indentation & Misc Stylistic Conventions](#indentation--misc-stylistic-conventions) + - [Wildcards in Targets](#wildcards-in-targets) + - [Left-Wildcards](#left-wildcards) + - [Edge-Case: Right-Wildcards](#edge-case-right-wildcards) + - [Complicated Regex in Rules](#complicated-regex-in-rules) + - [Enumerating Subdomains](#enumerating-subdomains) + - [Target Ordering](#target-ordering) + - [Rule Ordering](#rule-ordering) + - [Non-working hosts](#non-working-hosts) + - [Ruleset Names](#ruleset-names) + - [Filenames](#filenames) + - [Cross-referencing Rulesets](#cross-referencing-rulesets) + - [Regex Conventions](#regex-conventions) + - [Snapping Redirects](#snapping-redirects) + - [Example: Ruleset before style guidelines are applied](#example-ruleset-before-style-guidelines-are-applied) + - [Example: Ruleset after style guidelines are applied, with test URLs](#example-ruleset-after-style-guidelines-are-applied-with-test-urls) + - [Removal of Rules](#removal-of-rules) + - [Regular Rules](#regular-rules) + - [HSTS Preloaded Rules](#hsts-preloaded-rules) + - [Contributing Code](#contributing-code) + - [Contributing Documentation](#contributing-documentation) + - [Pull Requests from Deleted Accounts](#pull-requests-from-deleted-accounts) + - [Contributing Translations](#contributing-translations) + +# Welcome Welcome, and thank you for your interest in contributing to HTTPS Everywhere! HTTPS Everywhere depends on the open source community for its continued success, so any contribution is appreciated. One of the things that makes it easy to contribute to HTTPS Everywhere is that you don't have to be a coder to contribute. That's because HTTPS Everywhere's most important component is the list of rules that tell it when it can request a website over HTTPS. These rules are just XML files that contain regular expressions, so if you can write XML and simple regexes, you can help us add rules and increase HTTPS Everywhere's coverage. No coding skills necessary! -If you want to have the greatest impact, however, you can help be a ruleset maintainer. Ruleset maintainers are volunteers who examine rulesets contributed by others and work with them to ensure that these rulesets work properly and are styled correctly before they're merged in. While we currently have a couple of extremely dedicated and extremely proficient ruleset maintainers, the backlog of sites to add to HTTPS Everywhere just keeps growing, and they need help! If this sounds interesting to you, please contact us at https-everywhere-rules-owner [at] eff <dot> org. +If you want to have the greatest impact, however, you can help be a ruleset maintainer. Ruleset maintainers are trusted volunteers who examine rulesets contributed by others and work with them to ensure that these rulesets work properly and are styled correctly before they're merged in. While we currently have a couple of extremely dedicated and extremely proficient ruleset maintainers, the backlog of sites to add to HTTPS Everywhere just keeps growing, and they need help! If you would like to volunteer to become one, the best thing to do is to build trust in your work by monitoring the repository, contributing pull requests, and commenting on issues that interest you. Then you can contact us at https-everywhere-rules-owner [at] eff <dot> org expressing your interest in helping out. -If you get stuck we have two publicly-archived mailing lists: the https-everywhere list (https://lists.eff.org/mailman/listinfo/https-everywhere) is for discussing the project as a whole, and the https-everywhere-rulesets list (https://lists.eff.org/mailman/listinfo/https-everywhere-rules) is for discussing the `rulesets` and their contents, including patches and git pull requests. +If you get stuck we have two publicly-archived mailing lists: the [https-everywhere list](https://lists.eff.org/mailman/listinfo/https-everywhere) is for discussing the project as a whole, and the [https-everywhere-rulesets list](https://lists.eff.org/mailman/listinfo/https-everywhere-rules) is for discussing the `rulesets` and their contents, including patches and git pull requests. You can also find more information on about HTTPS Everywhere on our [FAQ](https://www.eff.org/https-everywhere/faq) page. -Thanks again, and we look forward to your contributions! +Also, please remember that this project is governed by [EFF's Public Projects Code of Conduct](https://www.eff.org/pages/eppcode). +Thanks again, and we look forward to your contributions! ## HTTPS Everywhere Source Code Layout @@ -19,43 +67,104 @@ There are several main areas of development on HTTPS Everywhere: the rulesets, t The rulesets can be found in the [`rules`](rules) top-level path and include all the rules for redirecting individual sites to HTTPS. These are written in XML. If you want to get started contributing to HTTPS Everywhere, we recommend starting here. -The core codebase consists of the code that performs the redirects, the UI, logging code, the decentralized SSL observatory code, and ruleset loading, and is written in JavaScript. It is divided into two separate extensions. One is based on the `XPCOM` API used by Mozilla Firefox (soon to be deprecated, located in the [`src`](src) top-level path), and the other is based on the `WebExtensions` API (located in [`chromium`](chromium)), first developed in Google's Chromium browser. +The core codebase consists of the code that performs the redirects, the UI, logging code, and ruleset loading. This encompasses all code delivered with the extension itself that is *not* a ruleset. It is written in JavaScript, using the `WebExtensions` API (located in [`chromium`](chromium)). The utilities ([`utils`](utils) top-level path) include scripts that build the extension, sanitize and perform normalization on rulesets, simplify rules, and help label GitHub issues. Historically, these utilities have been written in Python. Many of the newer utilities are written in JavaScript, and are meant to be run in node. Some of the wrappers for these utilities are in shell scripts. Tests are performed in headless browsers and located in the [`test`](test) top-level path. These are written in Python, and some of the wrappers for these tests are in shell scripts. +Source Tree: + + chromium/ WebExtension source code (for Firefox & Chromium/chrome) + chromium/external External dependencies + chromium/test Unit tests + + rules/ Symbolic link to src/chrome/content/rules + + src/chrome/content/rules Ruleset files live here + + test/ Travis unit test source code live here + + utils/ Various utilities (includes some Travis test source) + +## Install Dependencies and Test Build + +Get the packages you need and install a git hook to run tests before push: + + bash install-dev-dependencies.sh + +Run the ruleset validations and browser tests: + + bash test.sh + +Run the latest code and rulesets in a standalone Firefox profile: + + bash test/firefox.sh --justrun + +Run the latest code and rulesets in a standalone profile for a specific version of Firefox: + + FIREFOX=/path/to/firefox bash test/firefox.sh --justrun + +Run the latest code and rulesets in a standalone Chromium profile: + + bash test/chromium.sh --justrun + +Run the latest code and rulesets in a standalone Tor Browser profile: + + bash test/tor-browser.sh path_to_tor_browser.tar.xz + +Build the Firefox (.xpi) & Chromium (.crx) extensions: + + bash make.sh + +Both of the build commands store their output under pkg/. + +## Precommit Testing + +One can run the available test suites automatically by enabling the precommit +hook provided with: + + ln -s ../../hooks/precommit .git/hooks/pre-commit + +## Testing + +### Quickly Testing a Ruleset + +1. Open a version of the Firefox or Chrome browser without HTTPS Everywhere loaded to the HTTP endpoint + +2. From your working ruleset branch, test with running `bash test/firefox.sh --justrun` or `bash test/chromium.sh --justrun` to open a fresh profile with the extension loaded and click around and compare the look and functionality of both sites. If something fails to load or looks strange, you may be able to debug the problem by opening the network tab of your browser debugging tool. Modify the `ruleset` until you get it in a good state - you'll have to re-run the HTTPS Everywhere-equipped browser upon each change. + +### Coverage + +Please reference [HTTPS Ruleset Checker](https://github.com/EFForg/https-everywhere/blob/master/test/rules/README.md) to properly test rulesets against our tests before sending a pull request. + ## Submitting Changes To submit changes, open a pull request from our [GitHub repository](https://github.com/efforg/https-everywhere). HTTPS Everywhere is maintained by a limited set of staff and volunteers. Please be mindful that we may take a while before we're able to review your contributions. -* * * - -# Contributing Rulesets - -## General Info +## Contributing Rulesets Thanks for your interest in contributing to the HTTPS Everywhere `rulesets`! There's just a few things you should know before jumping in. First some terminology, which will help you understand how exactly `rulesets` are structured and what each one contains: -- `ruleset`: a scope in which `rules`, `targets`, and `tests` are contained. `rulesets` are usually named after the entity which controls the group of `targets` contained in it. There is one `ruleset` per XML file within the `src/chrome/content/rules` directory. -- `target`: a Fully Qualified Domain Name which may include a wildcard specified by `*.` on the left side, which `rules` are applied to. There may be many `targets` within any given `ruleset`. -- `rule`: a specific regular expression rewrite that is applied for all matching `targets` within the same `ruleset`. There may be many `rules` within any given `ruleset`. -- `test`: a URL for which a request is made to ensure that the rewrite is working properly. There may be many `tests` within any given `ruleset`. +* `ruleset`: a scope in which `rules`, `targets`, and `tests` are contained. `rulesets` are usually named after the entity which controls the group of `targets` contained in it. There is one `ruleset` per XML file within the `src/chrome/content/rules` directory. +* `target`: a Fully Qualified Domain Name which may include a wildcard specified by `*.` on the left side, which `rules` are applied to. There may be many `targets` within any given `ruleset`. +* `rule`: a specific regular expression rewrite that is applied for all matching `targets` within the same `ruleset`. There may be many `rules` within any given `ruleset`. +* `test`: a URL for which a request is made to ensure that the rewrite is working properly. There may be many `tests` within any given `ruleset`. ```xml - + - + - + ``` @@ -63,31 +172,27 @@ HTTPS Everywhere includes tens of thousands of `rulesets`. Any one of these sit Some `rulesets` have the attribute `platform="mixedcontent"`. These `rulesets` cause problems in browsers that enable active mixed-content (loading insecure resources in a secure page) blocking. When browsers started enforcing active mixed-content blocking, some HTTPS sites started to break. That's why we introduced this tag - it disables those `rulesets` for browsers blocking active mixed content. It is likely that many of these sites have fixed this historical problem, so we particularly encourage `ruleset` contributors to fix these `rulesets` first: - git grep -i mixedcontent src/chrome/content/rules + git grep -i mixedcontent src/chrome/content/rules -## New Rulesets +### New Rulesets -If you want to create new `rulesets` to submit to us, we expect them to be in the `src/chrome/content/rules` directory. That directory also contains a useful script, `make-trivial-rule`, to create a simple `ruleset` for a specified domain. There is also a script called `utils/trivial-validate.py`, to check all the pending `rulesets` for several common errors and oversights. For example, if you wanted to make a `ruleset` for the `example.com` domain, you could run: -``` +If you want to create new `rulesets` to submit to us, we expect them to be in the `src/chrome/content/rules` directory. That directory also contains a useful script, `make-trivial-rule`, to create a simple `ruleset` for a specified domain. There is also a script in `test/validations/special/run.py`, to check all the pending `rulesets` for several common errors and oversights. For example, if you wanted to make a `ruleset` for the `example.com` domain, you could run: + +```bash cd src/chrome/content/rules bash ./make-trivial-rule example.com ``` + This would create `Example.com.xml`, which you could then take a look at and edit based on your knowledge of any specific URLs at `example.com` that do or don't work in HTTPS. Please have a look at our Ruleset Style Guide below, where you can find useful tips about finding more subdomains. Our goal is to have as many subdomains covered as we can find. -## Minimum Requirements for a Ruleset PR +### Minimum Requirements for a Ruleset PR -There are several volunteers to HTTPS Everywhere who have graciously dedicated their time to look at the `ruleset` contributions and work with contributors to ensure quality of the pull requests before merging. It is typical for there to be several back-and-fourth communications with these `ruleset` maintainers before a PR is in a good shape to merge. Please be patient and respectful, the maintainers are donating their time for no benefit other than the satisfaction of making the web more secure. They are under no obligation to merge your request, and may reject it if it is impossible to ensure quality. +There are several volunteers to HTTPS Everywhere who have graciously dedicated their time to look at the `ruleset` contributions and work with contributors to ensure quality of the pull requests before merging. It is typical for there to be several back-and-forth communications with these `ruleset` maintainers before a PR is in a good shape to merge. Please be patient and respectful, the maintainers are donating their time for no benefit other than the satisfaction of making the web more secure. They are under no obligation to merge your request, and may reject it if it is impossible to ensure quality. You can identify these volunteers by looking for the "Collaborator" identifier in their comments on HTTPS Everywhere issues and pull requests. -In the back-and-fourth process of getting the `ruleset` in good shape, there may be many commits made. It is this project's convention to squash-and-merge these commits into a single commit before merging into the project. If your commits are cryptographically signed, we may ask you to squash the commits yourself in order to preserve this signature. Otherwise, we may squash them ourselves before merging. +In the back-and-forth process of getting the `ruleset` in good shape, there may be many commits made. It is this project's convention to squash-and-merge these commits into a single commit before merging into the project. If your commits are cryptographically signed, we may ask you to squash the commits yourself in order to preserve this signature. Otherwise, we may squash them ourselves before merging. We prefer small, granular changes to the rulesets. Not only are these easier to test and review, this results in cleaner commits. -## Testing - -A general workflow for testing sites that provide both HTTP and HTTPS follows. Open a version of the browser of your choice without HTTPS Everywhere loaded to the HTTP endpoint, alongside the browser with the latest code and rulesets for HTTPS Everywhere loaded to the HTTPS endpoint (as described in [README.md](README.md).) Click around and compare the look and functionality of both sites. - -If something fails to load or looks strange, you may be able to debug the problem by opening the network tab of your browser debugging tool. Modify the `ruleset` until you get it in a good state - you'll have to re-run the HTTPS Everywhere-equipped browser upon each change. - ## Ruleset Style Guide ### Motivation @@ -108,15 +213,15 @@ Use double quotes (`"`, not `'`). #### Left-Wildcards -Avoid using the left-wildcard (``) unless you intend to rewrite all or nearly all subdomains. If it can be demonstrated that there is comprehensive HTTPS coverage for subdomains, left-wildcards may be appropriate. Many rules today specify a left-wildcard target, but the rewrite rules only rewrite an explicit list of hostnames. +Avoid using the left-wildcard (``) unless you intend to rewrite all or nearly all subdomains. If it can be demonstrated that there is comprehensive HTTPS coverage for subdomains, left-wildcards may be appropriate. Many rules today specify a left-wildcard target, but the rewrite rules only rewrite an explicit list of hostnames. Instead, prefer listing explicit target hosts and a single rewrite from `"^http:"` to `"^https:"`. This saves you time as a ruleset author because each explicit target host automatically creates an implicit test URL, reducing the need to add your own test URLs. These also make it easier for someone reading the ruleset to figure out which subdomains are covered. -If you know all subdomains of a given domain support HTTPS, go ahead and use a left-wildcard, along with a plain rewrite from `"^http:"` to `"^https:"`. Make sure to add a bunch of test URLs for the more important subdomains. +If you know all subdomains of a given domain support HTTPS, go ahead and use a left-wildcard, along with a plain rewrite from `"^http:"` to `"^https:"`. Make sure to add a bunch of test URLs for the more important subdomains. #### Edge-Case: Right-Wildcards -Right-wildcards (``) are highly discouraged. Only use them in edge-cases where other solutions are unruly. +Right-wildcards (``) are highly discouraged. Only use them in edge-cases where other solutions are unruly. Example: @@ -133,19 +238,19 @@ In general, avoid using open-ended regex in rules. In certain cases, open-ended Examples: * Rulesets with a lot of domains that we can catch with a simple regex that would be tedious and error-prone to list individually, like [`360.cn.xml`](https://github.com/EFForg/https-everywhere/blob/9698e64a2de7cf37509ab13ba9dcfd5bd4f84a95/src/chrome/content/rules/360.cn.xml#L98-L103) -* CDNs with an arbitrarily large number of subdomains, like https://github.com/EFForg/https-everywhere/pull/7484#issuecomment-262852427 . +* CDNs with an arbitrarily large number of subdomains ([example](https://github.com/EFForg/https-everywhere/pull/7484#issuecomment-262852427)). ### Enumerating Subdomains If you're not sure what subdomains might exist, you can install the `Sublist3r` tool: - git clone https://github.com/aboul3la/Sublist3r.git - cd Sublist3r - sudo pip install -r requirements.txt # or use virtualenv... + git clone https://github.com/aboul3la/Sublist3r.git + cd Sublist3r + sudo pip install -r requirements.txt # or use virtualenv... Then you can to enumerate the list of subdomains: - python sublist3r.py -d example.com -e Baidu,Yahoo,Google,Bing,Ask,Netcraft,Virustotal,SSL + python sublist3r.py -d example.com -e Baidu,Yahoo,Google,Bing,Ask,Netcraft,Virustotal,SSL Alternatively, you can iteratively use Google queries and enumerate the list of results like such: @@ -159,15 +264,15 @@ Alternatively, you can iteratively use Google queries and enumerate the list of In all cases where there is a list of domains, sort them in alphabetical order starting from the top level domain at the right reading left, moving ^ and www to the top of their group. For example: - example.com - www.example.com - a.example.com - www.a.example.com - b.a.example.com - b.example.com - example.net - www.example.net - a.example.net + example.com + www.example.com + a.example.com + www.a.example.com + b.a.example.com + b.example.com + example.net + www.example.net + a.example.net ### Rule Ordering @@ -180,23 +285,23 @@ It is useful to list hosts that do not work in the comments of a `ruleset`. Thi For easy reading, please avoid using UTF characters unless in the rare instances that they are part of the hostname itself. Example: + ```xml ``` @@ -241,17 +346,17 @@ Prefer capturing groups `(www\.)?` over non-capturing `(?:www\.)?`. The non-capt ### Snapping Redirects -Avoid snapping redirects. For instance, if https://foo.fm serves HTTPS correctly, but redirects to https://foo.com, it's tempting to rewrite foo.fm to foo.com, to save users the latency of the redirect. However, such rulesets are less obviously correct and require more scrutiny. And the redirect can go out of date and cause problems. HTTPS Everywhere rulesets should change requests the minimum amount necessary to ensure a secure connection. +Avoid snapping redirects. For instance, if `https://foo.fm` serves HTTPS correctly, but redirects to `https://foo.com`, it's tempting to rewrite `foo.fm` to `foo.com`, to save users the latency of the redirect. However, such rulesets are less obviously correct and require more scrutiny. And the redirect can go out of date and cause problems. HTTPS Everywhere rulesets should change requests the minimum amount necessary to ensure a secure connection. ### Example: Ruleset before style guidelines are applied ```xml - - + + - + ``` @@ -272,8 +377,7 @@ Avoid snapping redirects. For instance, if https://foo.fm serves HTTPS correctly - + ``` @@ -289,44 +393,45 @@ In `utils` we have a tool called `hsts-prune` which removes `targets` from rules > Let `included domain` denote either a `target`, or a parent of a `target`. Let `supported browsers` include the ESR, Dev, and Stable releases of Firefox, and the Stable release of Chromium. If `included domain` is a parent of the `target`, the `included domain` must be present in the HSTS preload list for all `supported browsers` with the relevant flag which denotes inclusion of subdomains set to `true`. If `included domain` is the `target` itself, it must be included the HSTS preload list for all `supported browsers`. Additionally, if the http endpoint of the `target` exists, it must issue a 3XX redirect to the https endpoint for that target. Additionally, the https endpoint for the `target` must deliver a `Strict-Transport-Security` header with the following directives present: > -> - `max-age` >= 10886400 -> - `includeSubDomains` -> - `preload` +> * `max-age` >= 31536000 +> * `includeSubDomains` +> * `preload` > > If all the above conditions are met, a contributor may remove the `target` from the HTTPS Everywhere rulesets. If all targets are removed for a ruleset, the contributor is advised to remove the ruleset file itself. The ruleset `rule` and `test` tags may need to be modified in order to pass the ruleset coverage test. Every new pull request automatically has the `hsts-prune` utility applied to it as part of the continual integration process. If a new PR introduces a `target` which is preloaded, it will fail the CI test suite. See: -- `.travis.yml` -- `test/travis.sh` +* `.travis.yml` +* `test/run_travis.sh` -* * * - -# Contributing Code +## Contributing Code In addition to `ruleset` contributions, we also encourage code contributions to HTTPS Everywhere. There are a few considerations to keep in mind when contributing code. Officially supported browsers: -- Firefox Stable -- Firefox ESR -- Chromium Stable +* Firefox Stable +* Firefox ESR +* Chromium Stable + +We also informally support the Opera browser, but do not have tooling around testing Opera. Firefox ESR is supported because this is what the [Tor Browser](https://www.torproject.org/projects/torbrowser.html.en), which includes HTTPS Everywhere, is built upon. For the test commands, refer to [README.md](README.md). -We also informally support Opera browser, but do not have tooling around testing Opera. Firefox ESR is supported because this is what the Tor Browser, which includes HTTPS Everywhere, is built upon. For the test commands, refer to [README.md](README.md). +The current extension maintainer is [@zoracon](https://github.com/zoracon). You can tag them for PRs which involve the core codebase. Several of our utilities and our full test suite is written in Python. Eventually we would like the whole codebase to be standardized as JavaScript. If you are so inclined, it would be helpful to rewrite the tooling and tests into JavaScript while maintaining the functionality. -* * * +## Contributing Documentation -# Contributing Translations +Standalone documentation should be written in [Markdown](https://en.wikipedia.org/wiki/Markdown) that follows the [Google style guide](https://github.com/google/styleguide/blob/gh-pages/docguide/style.md). If you are updating existing documentation that does not follow the Google style guide, then you should follow the style of the file you are updating. -HTTPS Everywhere translations are handled through Transifex. The easiest way to help with translations is to [create a Transifex account](https://www.transifex.com/signup/) if you don't already have one. Then log into your account and click "Explore", then search for "Tor Project", and click on The Tor Project. Then choose the language you plan to translate into, click on the name of that language, and then click "Join team" and "Go" to accept joining the translation team for your language. +* * * -Then, in the Tor Project resources list, find and click the link for the file +## Pull Requests from Deleted Accounts - HTTPS Everywhere - https-everywhere.dtd +Sometimes a contributor will [delete their GitHub account](https://help.github.com/articles/deleting-your-user-account/) after submitting a pull request, resulting in the pull request being associated with the [Ghost user (@ghost)](https://github.com/ghost). These @ghost pull requests can cause problems for HTTPS Everywhere maintainers, leaving questions unanswered and closing off the possibility of receiving maintainer feedback to solicit clarification or request changes. -and choose "Translate now" to enter the translation interface. +We ask that if you want to delete your GitHub account, you either close your HTTPS Everywhere pull requests before you delete your account, or wait to delete your account until we merge your pull requests. Otherwise, maintainers are free to close @ghost pull requests without any comment. -* * * +## Contributing Translations +We are reviewing our process around translations and currently discussing ways to improve. Translations are still processed under the same entity and those who have an account already, do not need to take action at this time. Thank you for your contributions. diff --git a/Dockerfile b/Dockerfile index 9a32650ad983..2912aedc98e9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,12 +1,7 @@ -FROM electronicfrontierfoundation/https-everywhere-docker-base +FROM electronicfrontierfoundation/https-everywhere-docker-base MAINTAINER William Budington "bill@eff.org" - WORKDIR /opt -ADD test/rules/requirements.txt test/rules/requirements.txt -ADD test/chromium/requirements.txt test/chromium/requirements.txt -RUN pip install -r test/rules/requirements.txt -RUN pip install -r test/chromium/requirements.txt - -ENV FIREFOX /firefox-latest/firefox/firefox -WORKDIR /opt +COPY test/rules/requirements.txt /tmp/ +RUN pip3 install -r /tmp/requirements.txt +RUN rm /tmp/requirements.txt diff --git a/LICENSE.txt b/LICENSE.txt index 4d99b7b7bc18..7c7a3bde0e95 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,18 +1,15 @@ -HTTPS Everwyhere: -Copyright © 2010-2017 Electronic Frontier Foundation and others +HTTPS Everywhere: +Copyright © 2010-2021 Electronic Frontier Foundation and others Licensed GPL v2+ -HTTPS Everywhere Rulesets: +HTTPS Everywhere Rulesets (src/chrome/content/rules): To the extent copyright applies to the rulesets, they can be used according to GPL v2 or later. -Incorporating code from NoScript, -Copyright © 2004-2007 Giorgio Maone -Licensed GPL v2+ +The DuckDuckGo Smarter Encryption list, utilized by HTTPS Everywhere at https://www.https-rulesets.org/ddg, is publicly available under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0. International license. +If you'd like to license the list for commercial use, please reach out to: https://help.duckduckgo.com/duckduckgo-help-pages/company/contact-us/ -Incorporating code from Convergence (NSS.js) -Copyright © Moxie Marlinspike -Licensed GPL v3+ +Issue Format Bot (utils/issue-format-bot/*): +Copyright © 2017 AJ Jordan, AGPLv3+ -The build system incorporates code from Python 2.6, -Copyright © 2001-2006 Python Software Foundation -Python Software Foundation License Version 2 +The build system incorporates code from Python 3.6 and Python 3 respectively +Copyright © 2001-2018 Python Software Foundation; All Rights Reserved diff --git a/Makefile b/Makefile deleted file mode 100644 index 4c12f6651cd1..000000000000 --- a/Makefile +++ /dev/null @@ -1,18 +0,0 @@ -#!/usr/bin/make -f - -# this rule makes tag or branch targets -%: - ./makexpi.sh $@ -# this makes prerelease xpis (and is the default rule) -prerelease: pkg - ./makexpi.sh -pkg: - mkdir pkg -clean: - rm -rf pkg/xpi-amo/ pkg/xpi-eff/ - rm -f pkg/*.xpi - rm -f pkg/rulesets.unvalidated.sqlite - rm -f src/chrome/content/rules/default.rulesets - rm -f src/defaults/rulesets.sqlite - -.PHONY: clean prerelease diff --git a/README.md b/README.md index 53c0256a752a..d3255879024e 100644 --- a/README.md +++ b/README.md @@ -1,74 +1,23 @@ -[HTTPS Everywhere](https://www.eff.org/https-everywhere) [![Build Status](https://travis-ci.org/EFForg/https-everywhere.svg?branch=master)](https://travis-ci.org/EFForg/https-everywhere) -================ +[![Build Status](https://travis-ci.com/EFForg/https-everywhere.svg?branch=master)](https://travis-ci.com/EFForg/https-everywhere) +[![Coverage Status](https://coveralls.io/repos/github/EFForg/https-everywhere/badge.svg?branch=master)](https://coveralls.io/github/EFForg/https-everywhere?branch=master) -Getting Started ---------------- +# Update on HTTPS Everywhere +⚠️This project is no longer being maintained or updated. Please uninstall and direct users to the advice below to switch to HTTPS by default natively. -Get the packages you need and install a git hook to run tests before push: +You no longer need HTTPS Everywhere to set HTTPS by default! Major browsers now offer native support for an HTTPS only mode. +Find out how to turn it on [here](https://www.eff.org/https-everywhere/set-https-default-your-browser). - bash install-dev-dependencies.sh +This extension will be sunset by January 2023. -Run all the tests: - bash test.sh +# Getting Started With HTTPS Everywhere -Run the latest code and rulesets in a standalone Firefox profile: +HTTPS Everywhere is a Firefox, Chrome, and Opera extension that encrypts your communications with many major websites, making your browsing more secure. Encrypt the web: [Install HTTPS Everywhere today](https://www.eff.org/https-everywhere). - bash test/firefox.sh --justrun +## For Users -Run the latest code and rulesets in a standalone profile for a specific version of Firefox: +Want to install or uninstall HTTPS Everywhere? Have questions? [View this guide](https://www.eff.org/https-everywhere) for installation and here for [FAQs](https://www.eff.org/https-everywhere/faq). - FIREFOX=/path/to/firefox bash test/firefox.sh --justrun +## For Website Owners and Maintainers -Run the latest code and rulesets in a standalone Chromium profile: - - bash test/chromium.sh --justrun - -Run the latest code and rulesets in a standalone Tor Browser profile: - - bash test/tor path_to_tor_browser.tar.xz - -Build the Firefox extension as a .xpi package: - - bash makexpi.sh - -Build the Chromium extension as a .crx package: - - bash makecrx.sh - -Both of the build commands store their output under pkg/. - -Precommit Testing ------------------ - -One can run the available test suites automatically by enabling the precommit -hook provided with: - - ln -s ../../hooks/precommit .git/hooks/pre-commit - -Source Tree ------------ - -This is the source tree for HTTPS Everywhere for Firefox and Chrome. - -Important directories you might want to know about - - src/ The Firefox source - - chromium/ The Chromium/Chrome source - (not to be confused with Firefox browser "chrome" or UI) - - src/components | - src/chrome/content | Firefox JavaScript and XUL code - src/chrome/content/code | - - src/chrome/content/rules The rulesets live here - - test/ The tests live here - - utils/ Various utilities - -Hacking on the Source Code --------------------------- - -Please refer to our [contributing](CONTRIBUTING.md) document to contribute to the project. +Want to deploy HTTPS on your site? [View this guide](https://www.eff.org/https-everywhere/deploying-https). diff --git a/SECURITY.md b/SECURITY.md new file mode 100644 index 000000000000..186e6892ac86 --- /dev/null +++ b/SECURITY.md @@ -0,0 +1,17 @@ +# Security Policy + +## Supported Versions + +Use this section to tell people about which versions of your project are +currently being supported with security updates. + +| Browser | Supported | +| --------------- | ------------------ | +| Firefox | :white_check_mark: | +| Firefox Android | :white_check_mark: | +| Chrome | :white_check_mark: | +| Opera | :white_check_mark: | + +## Reporting a Vulnerability + +https://www.eff.org/security diff --git a/apache/README b/apache/README deleted file mode 100644 index bd6e35b4be36..000000000000 --- a/apache/README +++ /dev/null @@ -1,22 +0,0 @@ -These configs allow you to run an Apache that SSL listens on many local ports -with a different certificate on each. This allows you to start up a Firefox -that loads many different certs and tries to report them to the observatory -simultaneously. This can be helpful for reproducing bugs. - -Steps: - -1. (optional) Run makeconfig.sh -2. /usr/sbin/apache2 -d . -k start -3. In your development Firefox profile, go to - Preferences -> Advanced -> View Certificates - Import -> select certificates/ca.crt - Check the box for "Trust this CA to identify websites" - Click OK - about:config -> - extensions.https_everywhere._observatory.alt_roots = true - extensions.https_everywhere._observatory.enabled = true - extensions.https_everywhere._observatory.use_custom_proxy = true - extensions.https_everywhere._observatory.server_host = localhost:3001 - extensions.https_everywhere.LogLevel = 0 - -4. for n in `seq 3001 3100` ; do firefox https://localhost:$n/ ; done diff --git a/apache/apache2.conf b/apache/apache2.conf deleted file mode 100644 index 230f9c016489..000000000000 --- a/apache/apache2.conf +++ /dev/null @@ -1,626 +0,0 @@ - ServerName https_everywhere_test - ServerRoot "." - DocumentRoot "." - PidFile ./apache2.pid - ErrorLog ./error.log - LoadModule python_module /usr/lib/apache2/modules/mod_python.so - LoadModule rewrite_module /usr/lib/apache2/modules/mod_rewrite.so - LoadModule mime_module /usr/lib/apache2/modules/mod_mime.so - LoadModule mpm_prefork_module /usr/lib/apache2/modules/mod_mpm_prefork.so - LoadModule ssl_module /usr/lib/apache2/modules/mod_ssl.so - LoadModule authz_core_module /usr/lib/apache2/modules/mod_authz_core.so - LoadModule cgi_module /usr/lib/apache2/modules/mod_cgi.so - LoadModule alias_module /usr/lib/apache2/modules/mod_alias.so - LoadModule dir_module /usr/lib/apache2/modules/mod_dir.so - - SSLVerifyDepth 1 - SSLOptions +StdEnvVars - SSLCipherSuite HIGH:MEDIUM:!aNULL:!eNULL:@STRENGTH:-DHE-RSA-AES128-SHA:-EDH-RSA-DES-CBC3-SHA:-DHE-RSA-AES256-SHA:-DHE-RSA-AES256-SHA - - - SetHandler mod_python - PythonHandler mod_python.publisher - PythonDebug On - Options +ExecCGI - DirectoryIndex index.py - - Listen 127.0.0.1:3001 - - SSLEngine on - SSLCertificateFile certificates/3001.crt - SSLCertificateKeyFile certificates/3001.key - - Listen 127.0.0.1:3002 - - SSLEngine on - SSLCertificateFile certificates/3002.crt - SSLCertificateKeyFile certificates/3002.key - - Listen 127.0.0.1:3003 - - SSLEngine on - SSLCertificateFile certificates/3003.crt - SSLCertificateKeyFile certificates/3003.key - - Listen 127.0.0.1:3004 - - SSLEngine on - SSLCertificateFile certificates/3004.crt - SSLCertificateKeyFile certificates/3004.key - - Listen 127.0.0.1:3005 - - SSLEngine on - SSLCertificateFile certificates/3005.crt - SSLCertificateKeyFile certificates/3005.key - - Listen 127.0.0.1:3006 - - SSLEngine on - SSLCertificateFile certificates/3006.crt - SSLCertificateKeyFile certificates/3006.key - - Listen 127.0.0.1:3007 - - SSLEngine on - SSLCertificateFile certificates/3007.crt - SSLCertificateKeyFile certificates/3007.key - - Listen 127.0.0.1:3008 - - SSLEngine on - SSLCertificateFile certificates/3008.crt - SSLCertificateKeyFile certificates/3008.key - - Listen 127.0.0.1:3009 - - SSLEngine on - SSLCertificateFile certificates/3009.crt - SSLCertificateKeyFile certificates/3009.key - - Listen 127.0.0.1:3010 - - SSLEngine on - SSLCertificateFile certificates/3010.crt - SSLCertificateKeyFile certificates/3010.key - - Listen 127.0.0.1:3011 - - SSLEngine on - SSLCertificateFile certificates/3011.crt - SSLCertificateKeyFile certificates/3011.key - - Listen 127.0.0.1:3012 - - SSLEngine on - SSLCertificateFile certificates/3012.crt - SSLCertificateKeyFile certificates/3012.key - - Listen 127.0.0.1:3013 - - SSLEngine on - SSLCertificateFile certificates/3013.crt - SSLCertificateKeyFile certificates/3013.key - - Listen 127.0.0.1:3014 - - SSLEngine on - SSLCertificateFile certificates/3014.crt - SSLCertificateKeyFile certificates/3014.key - - Listen 127.0.0.1:3015 - - SSLEngine on - SSLCertificateFile certificates/3015.crt - SSLCertificateKeyFile certificates/3015.key - - Listen 127.0.0.1:3016 - - SSLEngine on - SSLCertificateFile certificates/3016.crt - SSLCertificateKeyFile certificates/3016.key - - Listen 127.0.0.1:3017 - - SSLEngine on - SSLCertificateFile certificates/3017.crt - SSLCertificateKeyFile certificates/3017.key - - Listen 127.0.0.1:3018 - - SSLEngine on - SSLCertificateFile certificates/3018.crt - SSLCertificateKeyFile certificates/3018.key - - Listen 127.0.0.1:3019 - - SSLEngine on - SSLCertificateFile certificates/3019.crt - SSLCertificateKeyFile certificates/3019.key - - Listen 127.0.0.1:3020 - - SSLEngine on - SSLCertificateFile certificates/3020.crt - SSLCertificateKeyFile certificates/3020.key - - Listen 127.0.0.1:3021 - - SSLEngine on - SSLCertificateFile certificates/3021.crt - SSLCertificateKeyFile certificates/3021.key - - Listen 127.0.0.1:3022 - - SSLEngine on - SSLCertificateFile certificates/3022.crt - SSLCertificateKeyFile certificates/3022.key - - Listen 127.0.0.1:3023 - - SSLEngine on - SSLCertificateFile certificates/3023.crt - SSLCertificateKeyFile certificates/3023.key - - Listen 127.0.0.1:3024 - - SSLEngine on - SSLCertificateFile certificates/3024.crt - SSLCertificateKeyFile certificates/3024.key - - Listen 127.0.0.1:3025 - - SSLEngine on - SSLCertificateFile certificates/3025.crt - SSLCertificateKeyFile certificates/3025.key - - Listen 127.0.0.1:3026 - - SSLEngine on - SSLCertificateFile certificates/3026.crt - SSLCertificateKeyFile certificates/3026.key - - Listen 127.0.0.1:3027 - - SSLEngine on - SSLCertificateFile certificates/3027.crt - SSLCertificateKeyFile certificates/3027.key - - Listen 127.0.0.1:3028 - - SSLEngine on - SSLCertificateFile certificates/3028.crt - SSLCertificateKeyFile certificates/3028.key - - Listen 127.0.0.1:3029 - - SSLEngine on - SSLCertificateFile certificates/3029.crt - SSLCertificateKeyFile certificates/3029.key - - Listen 127.0.0.1:3030 - - SSLEngine on - SSLCertificateFile certificates/3030.crt - SSLCertificateKeyFile certificates/3030.key - - Listen 127.0.0.1:3031 - - SSLEngine on - SSLCertificateFile certificates/3031.crt - SSLCertificateKeyFile certificates/3031.key - - Listen 127.0.0.1:3032 - - SSLEngine on - SSLCertificateFile certificates/3032.crt - SSLCertificateKeyFile certificates/3032.key - - Listen 127.0.0.1:3033 - - SSLEngine on - SSLCertificateFile certificates/3033.crt - SSLCertificateKeyFile certificates/3033.key - - Listen 127.0.0.1:3034 - - SSLEngine on - SSLCertificateFile certificates/3034.crt - SSLCertificateKeyFile certificates/3034.key - - Listen 127.0.0.1:3035 - - SSLEngine on - SSLCertificateFile certificates/3035.crt - SSLCertificateKeyFile certificates/3035.key - - Listen 127.0.0.1:3036 - - SSLEngine on - SSLCertificateFile certificates/3036.crt - SSLCertificateKeyFile certificates/3036.key - - Listen 127.0.0.1:3037 - - SSLEngine on - SSLCertificateFile certificates/3037.crt - SSLCertificateKeyFile certificates/3037.key - - Listen 127.0.0.1:3038 - - SSLEngine on - SSLCertificateFile certificates/3038.crt - SSLCertificateKeyFile certificates/3038.key - - Listen 127.0.0.1:3039 - - SSLEngine on - SSLCertificateFile certificates/3039.crt - SSLCertificateKeyFile certificates/3039.key - - Listen 127.0.0.1:3040 - - SSLEngine on - SSLCertificateFile certificates/3040.crt - SSLCertificateKeyFile certificates/3040.key - - Listen 127.0.0.1:3041 - - SSLEngine on - SSLCertificateFile certificates/3041.crt - SSLCertificateKeyFile certificates/3041.key - - Listen 127.0.0.1:3042 - - SSLEngine on - SSLCertificateFile certificates/3042.crt - SSLCertificateKeyFile certificates/3042.key - - Listen 127.0.0.1:3043 - - SSLEngine on - SSLCertificateFile certificates/3043.crt - SSLCertificateKeyFile certificates/3043.key - - Listen 127.0.0.1:3044 - - SSLEngine on - SSLCertificateFile certificates/3044.crt - SSLCertificateKeyFile certificates/3044.key - - Listen 127.0.0.1:3045 - - SSLEngine on - SSLCertificateFile certificates/3045.crt - SSLCertificateKeyFile certificates/3045.key - - Listen 127.0.0.1:3046 - - SSLEngine on - SSLCertificateFile certificates/3046.crt - SSLCertificateKeyFile certificates/3046.key - - Listen 127.0.0.1:3047 - - SSLEngine on - SSLCertificateFile certificates/3047.crt - SSLCertificateKeyFile certificates/3047.key - - Listen 127.0.0.1:3048 - - SSLEngine on - SSLCertificateFile certificates/3048.crt - SSLCertificateKeyFile certificates/3048.key - - Listen 127.0.0.1:3049 - - SSLEngine on - SSLCertificateFile certificates/3049.crt - SSLCertificateKeyFile certificates/3049.key - - Listen 127.0.0.1:3050 - - SSLEngine on - SSLCertificateFile certificates/3050.crt - SSLCertificateKeyFile certificates/3050.key - - Listen 127.0.0.1:3051 - - SSLEngine on - SSLCertificateFile certificates/3051.crt - SSLCertificateKeyFile certificates/3051.key - - Listen 127.0.0.1:3052 - - SSLEngine on - SSLCertificateFile certificates/3052.crt - SSLCertificateKeyFile certificates/3052.key - - Listen 127.0.0.1:3053 - - SSLEngine on - SSLCertificateFile certificates/3053.crt - SSLCertificateKeyFile certificates/3053.key - - Listen 127.0.0.1:3054 - - SSLEngine on - SSLCertificateFile certificates/3054.crt - SSLCertificateKeyFile certificates/3054.key - - Listen 127.0.0.1:3055 - - SSLEngine on - SSLCertificateFile certificates/3055.crt - SSLCertificateKeyFile certificates/3055.key - - Listen 127.0.0.1:3056 - - SSLEngine on - SSLCertificateFile certificates/3056.crt - SSLCertificateKeyFile certificates/3056.key - - Listen 127.0.0.1:3057 - - SSLEngine on - SSLCertificateFile certificates/3057.crt - SSLCertificateKeyFile certificates/3057.key - - Listen 127.0.0.1:3058 - - SSLEngine on - SSLCertificateFile certificates/3058.crt - SSLCertificateKeyFile certificates/3058.key - - Listen 127.0.0.1:3059 - - SSLEngine on - SSLCertificateFile certificates/3059.crt - SSLCertificateKeyFile certificates/3059.key - - Listen 127.0.0.1:3060 - - SSLEngine on - SSLCertificateFile certificates/3060.crt - SSLCertificateKeyFile certificates/3060.key - - Listen 127.0.0.1:3061 - - SSLEngine on - SSLCertificateFile certificates/3061.crt - SSLCertificateKeyFile certificates/3061.key - - Listen 127.0.0.1:3062 - - SSLEngine on - SSLCertificateFile certificates/3062.crt - SSLCertificateKeyFile certificates/3062.key - - Listen 127.0.0.1:3063 - - SSLEngine on - SSLCertificateFile certificates/3063.crt - SSLCertificateKeyFile certificates/3063.key - - Listen 127.0.0.1:3064 - - SSLEngine on - SSLCertificateFile certificates/3064.crt - SSLCertificateKeyFile certificates/3064.key - - Listen 127.0.0.1:3065 - - SSLEngine on - SSLCertificateFile certificates/3065.crt - SSLCertificateKeyFile certificates/3065.key - - Listen 127.0.0.1:3066 - - SSLEngine on - SSLCertificateFile certificates/3066.crt - SSLCertificateKeyFile certificates/3066.key - - Listen 127.0.0.1:3067 - - SSLEngine on - SSLCertificateFile certificates/3067.crt - SSLCertificateKeyFile certificates/3067.key - - Listen 127.0.0.1:3068 - - SSLEngine on - SSLCertificateFile certificates/3068.crt - SSLCertificateKeyFile certificates/3068.key - - Listen 127.0.0.1:3069 - - SSLEngine on - SSLCertificateFile certificates/3069.crt - SSLCertificateKeyFile certificates/3069.key - - Listen 127.0.0.1:3070 - - SSLEngine on - SSLCertificateFile certificates/3070.crt - SSLCertificateKeyFile certificates/3070.key - - Listen 127.0.0.1:3071 - - SSLEngine on - SSLCertificateFile certificates/3071.crt - SSLCertificateKeyFile certificates/3071.key - - Listen 127.0.0.1:3072 - - SSLEngine on - SSLCertificateFile certificates/3072.crt - SSLCertificateKeyFile certificates/3072.key - - Listen 127.0.0.1:3073 - - SSLEngine on - SSLCertificateFile certificates/3073.crt - SSLCertificateKeyFile certificates/3073.key - - Listen 127.0.0.1:3074 - - SSLEngine on - SSLCertificateFile certificates/3074.crt - SSLCertificateKeyFile certificates/3074.key - - Listen 127.0.0.1:3075 - - SSLEngine on - SSLCertificateFile certificates/3075.crt - SSLCertificateKeyFile certificates/3075.key - - Listen 127.0.0.1:3076 - - SSLEngine on - SSLCertificateFile certificates/3076.crt - SSLCertificateKeyFile certificates/3076.key - - Listen 127.0.0.1:3077 - - SSLEngine on - SSLCertificateFile certificates/3077.crt - SSLCertificateKeyFile certificates/3077.key - - Listen 127.0.0.1:3078 - - SSLEngine on - SSLCertificateFile certificates/3078.crt - SSLCertificateKeyFile certificates/3078.key - - Listen 127.0.0.1:3079 - - SSLEngine on - SSLCertificateFile certificates/3079.crt - SSLCertificateKeyFile certificates/3079.key - - Listen 127.0.0.1:3080 - - SSLEngine on - SSLCertificateFile certificates/3080.crt - SSLCertificateKeyFile certificates/3080.key - - Listen 127.0.0.1:3081 - - SSLEngine on - SSLCertificateFile certificates/3081.crt - SSLCertificateKeyFile certificates/3081.key - - Listen 127.0.0.1:3082 - - SSLEngine on - SSLCertificateFile certificates/3082.crt - SSLCertificateKeyFile certificates/3082.key - - Listen 127.0.0.1:3083 - - SSLEngine on - SSLCertificateFile certificates/3083.crt - SSLCertificateKeyFile certificates/3083.key - - Listen 127.0.0.1:3084 - - SSLEngine on - SSLCertificateFile certificates/3084.crt - SSLCertificateKeyFile certificates/3084.key - - Listen 127.0.0.1:3085 - - SSLEngine on - SSLCertificateFile certificates/3085.crt - SSLCertificateKeyFile certificates/3085.key - - Listen 127.0.0.1:3086 - - SSLEngine on - SSLCertificateFile certificates/3086.crt - SSLCertificateKeyFile certificates/3086.key - - Listen 127.0.0.1:3087 - - SSLEngine on - SSLCertificateFile certificates/3087.crt - SSLCertificateKeyFile certificates/3087.key - - Listen 127.0.0.1:3088 - - SSLEngine on - SSLCertificateFile certificates/3088.crt - SSLCertificateKeyFile certificates/3088.key - - Listen 127.0.0.1:3089 - - SSLEngine on - SSLCertificateFile certificates/3089.crt - SSLCertificateKeyFile certificates/3089.key - - Listen 127.0.0.1:3090 - - SSLEngine on - SSLCertificateFile certificates/3090.crt - SSLCertificateKeyFile certificates/3090.key - - Listen 127.0.0.1:3091 - - SSLEngine on - SSLCertificateFile certificates/3091.crt - SSLCertificateKeyFile certificates/3091.key - - Listen 127.0.0.1:3092 - - SSLEngine on - SSLCertificateFile certificates/3092.crt - SSLCertificateKeyFile certificates/3092.key - - Listen 127.0.0.1:3093 - - SSLEngine on - SSLCertificateFile certificates/3093.crt - SSLCertificateKeyFile certificates/3093.key - - Listen 127.0.0.1:3094 - - SSLEngine on - SSLCertificateFile certificates/3094.crt - SSLCertificateKeyFile certificates/3094.key - - Listen 127.0.0.1:3095 - - SSLEngine on - SSLCertificateFile certificates/3095.crt - SSLCertificateKeyFile certificates/3095.key - - Listen 127.0.0.1:3096 - - SSLEngine on - SSLCertificateFile certificates/3096.crt - SSLCertificateKeyFile certificates/3096.key - - Listen 127.0.0.1:3097 - - SSLEngine on - SSLCertificateFile certificates/3097.crt - SSLCertificateKeyFile certificates/3097.key - - Listen 127.0.0.1:3098 - - SSLEngine on - SSLCertificateFile certificates/3098.crt - SSLCertificateKeyFile certificates/3098.key - - Listen 127.0.0.1:3099 - - SSLEngine on - SSLCertificateFile certificates/3099.crt - SSLCertificateKeyFile certificates/3099.key - - Listen 127.0.0.1:3100 - - SSLEngine on - SSLCertificateFile certificates/3100.crt - SSLCertificateKeyFile certificates/3100.key - diff --git a/apache/certificates/3001.crt b/apache/certificates/3001.crt deleted file mode 100644 index f28f35f144bb..000000000000 --- a/apache/certificates/3001.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAggaMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMxMzdaFw0xOTA2MjEwMjMxMzda -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAL0OPs2/Yixe5P6k0Gv0G3eiXuThlk0w98fb4yovOJNkxpX4cRv0NyFk -zI1YzAJUoQEQPnl1qe6EBk5CCARODj2VLg6BWVvmI1fW8B9XBH+SXyViR+pv1384 -LjmBBUeVsL9R0I5CBc2wArj8qVuHbLxA4Xj9QtH1M0l9qODTwPSBaQVXD1hEfI8B -jTAsmqwi7PcDAEfsIp3/SPQURjiGzjlx3zCWDsLhubV9coEGpVxx0JbrjK4StUL8 -pKFxqjsALnsYrzXlylEnHNKgcFZLwVwEL6LjrHNWeiKRhcz2wqomTytcfumKkCWJ -wqbezxFMUsh+TmSyJOXupkeR1wq/pN0CAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -HdwvLV9favP+pc2bB4b7R7JPeP6TOpclhIi6Je5FXUgHmzweQoaUWgf/9VqJpjbB -nBV92WCHJ8Hc25O8nWJJgZjs4mNgcGYTTk/E9EPx8pnf5RmCfgK5MxwYbx8Br4ky -R6D7R7r9srm8rqSzA0Nr9Uw98EGkTPE5MFwJDgh8bE7X+MYKkaeeXTdJY1Te9/JD -W8DZ09Eg72pYg0ALRTGNyJo8oQSP7Z5VY3bVMvZzqAQHArbtKOvzIfKccTvYlJiz -P7Ayrx3FzoxaCJdkwND1f6lnt5wuOKopsp74QQl77VsHAughRgEcE+u9cH1aFYj7 -U5aU+OOuYRWbBqFpy9irKQ== ------END CERTIFICATE----- diff --git a/apache/certificates/3001.key b/apache/certificates/3001.key deleted file mode 100644 index 4f54a4e3797a..000000000000 --- a/apache/certificates/3001.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEowIBAAKCAQEAvQ4+zb9iLF7k/qTQa/Qbd6Je5OGWTTD3x9vjKi84k2TGlfhx -G/Q3IWTMjVjMAlShARA+eXWp7oQGTkIIBE4OPZUuDoFZW+YjV9bwH1cEf5JfJWJH -6m/XfzguOYEFR5Wwv1HQjkIFzbACuPypW4dsvEDheP1C0fUzSX2o4NPA9IFpBVcP -WER8jwGNMCyarCLs9wMAR+winf9I9BRGOIbOOXHfMJYOwuG5tX1ygQalXHHQluuM -rhK1QvykoXGqOwAuexivNeXKUScc0qBwVkvBXAQvouOsc1Z6IpGFzPbCqiZPK1x+ -6YqQJYnCpt7PEUxSyH5OZLIk5e6mR5HXCr+k3QIDAQABAoIBAQCqlPjr8lxlhrX+ -Yb3BOj+yYWpYAIf6XE2mImxE+tiEfbCFTubX/zHjSq0aeF2TWMLxT7PfKeDLWorJ -/+B16ewFet5UrjdvqSaIsmJ1FLH1XZ/F/ni/Omzp2Eo1Doox/gm9hte0FDRiVAcQ -3MD+2iGtdqk63uF0yladX+mJ+uamdbHxYENWIiQqJwbg8kqssRxsuwK7t+IoywNV -Gu4Ef66rtAkfoUADuEJ3IJWiE2vG8KA/0JpzWbhi80foaS4hBlFLXgC3pfOvPSu6 -HBly1iGHzDZU9DupaSPyhzxTcHbZihF6HqGpYLL+rRNILw1wH0WnY+sJEF96X6/7 -bjj6LcbNAoGBAPfw1REuBNYkUliJR4SW/cs+ic2CmSdtamLLU1sbhkmUe2LcZB3P -MhPyQjaxc/Yaw/IdM8GGYRC4pQERBYoLcP8v+DYy8dQszAPD/Cb3nJATCpaqKQD8 -Y+oostLKGOs9MeBrz1LrrHPiBDWxLXa5g3EcNfyxJKpDfSsa8YAJM///AoGBAMMz -auSxyk0DPbghbbE2NVBY1sf5bq4b/bjWBnrXd6LRQaMtLJZm6EBV/M6o2igJOFNR -vhZNSuBzGsDaSYYz+1p1CoXuc4H1Mr/ptbsf9Kl4DVV7jBbIhzwtPEEh4ujnFSPL -qyGKd10Cj7YkfGMoE/FNjWGkQ69g6ln+oJ+zXFsjAoGAS2/3I/cAebcrZsy9+dWG -+qPYgbLOrnRX/h8nCX1ialjHAdlUjM1Ry0fWZZWwVpzmKXBBIwyj09aaPazUJqA8 -jSgnOTZe5dOLb0neGm0UMbHZcuXq++XO8JvZbNEYq9o+pq2msvAJ1GhcJ4n07z6a -g3u14WB0a2mFV+wmtnIWZDkCgYApyDu9MAEpcuQnIaClKgFHbXyr2UxDoGIyyj0g -1jYZd8kg8G520xgrjTxL0ADCSRbxXrHdfDXmzTyQwyixvTa0KhFSkbPPwXhXc+Me -Zryr+bKA9a0Kw2mPC++10VcMm0n/G31J9KWQFxhD2JN3dgCuyfbVS5/hTlFbahFf -nbjLGQKBgD3QncOkR3Zo6CIDcxxJ6h0kK+Iapzr5CSzI33NwlN9o+VR/PKeKWElO -GaaTDgcTkOYGbN/letxcsSnYLMl0jc5scm/6RNZoSu6ddUqkWnvnp7i/owWaI7d5 -mMQMCPiQqixs2cZhUVNIkKkAkUXcAhDdv+lDA/Me/GOc8AiK5z+J ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3002.crt b/apache/certificates/3002.crt deleted file mode 100644 index 5d3c1a0fccd4..000000000000 --- a/apache/certificates/3002.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAga8MA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMxMzdaFw0xOTA2MjEwMjMxMzda -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBANHxRwSTdn5N1g2H5HvyrUyXvq+Sb2wG4LK+szik6a7G0H2IscMQNucA -jFwRbX8/YFiG9ivVQ0FSwZDMcOAjhxcJglVrGWbLLVmV9481kq20IiJmm3pW9/J8 -dma0QVw+VXHWD3gddgtAQL9wLSSUTgJGnxkKCKciiiLt70u0gHMdcYo6z0dQqHd5 -uEG03CpRZDlMzRMCOrBWRUdF80Mtyou/f2MW32Uor4vgRFq3Nr78rhWUbdOXaWVI -coGsL1b3Y0VMIrbyTR9bbr4W3qCxrZ4DQ9FPveArUwdS5UIljY8XJdrYvAu82AQ2 -qgyrIwgLm9a9zUk+eAqB9F7k+v91TZcCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -jKciqy0Ao+iR4/s/kSBUFQg2RRd5QmOMo8W3KPWFlllBPdP+kxivm5Kz9stBjL26 -sJNqw/0G7IqT7RucmCfuKmkTi8OphWaPQcGD4JBXKFk0swKAZ6sz4m5/nb7LjAGe -OKBNya/78lOQz16kZ1xT06vZm5cfiFyNFMMPWI+b0qB9NrdJjnYAk69rv9xKBmUl -l+q5jCOOo1R5rj5Q16uDn0eFh3vO8d8mbPDAyfdPPFU1gEs5gioBOFI0E2Ytl7ba -DUTdBjpSQWumpjW5AdHlhnkLvIM17qCFzwk2F8rZwDNGFCUPs+JvXwD++m3uqReW -i4ks3yepE0ZmAVvlTDLKBg== ------END CERTIFICATE----- diff --git a/apache/certificates/3002.key b/apache/certificates/3002.key deleted file mode 100644 index 983b8730a511..000000000000 --- a/apache/certificates/3002.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpQIBAAKCAQEA0fFHBJN2fk3WDYfke/KtTJe+r5JvbAbgsr6zOKTprsbQfYix -wxA25wCMXBFtfz9gWIb2K9VDQVLBkMxw4COHFwmCVWsZZsstWZX3jzWSrbQiImab -elb38nx2ZrRBXD5VcdYPeB12C0BAv3AtJJROAkafGQoIpyKKIu3vS7SAcx1xijrP -R1Cod3m4QbTcKlFkOUzNEwI6sFZFR0XzQy3Ki79/YxbfZSivi+BEWrc2vvyuFZRt -05dpZUhygawvVvdjRUwitvJNH1tuvhbeoLGtngND0U+94CtTB1LlQiWNjxcl2ti8 -C7zYBDaqDKsjCAub1r3NST54CoH0XuT6/3VNlwIDAQABAoIBAQDD9aYIS2xq8FRA -RPusBhRkTa+bSd/ewXyy2vWGhcfpb4Hj6teh71yPuh9JQKsn/wv7Fd5pg6JHMuui -MHGbhQ3vHt0cxd7r5/HokOaGMcc7g8vouEWfp9W/7RTHQLFRXI18uAWwZC9uyQam -qho47oTx8uFGCeuRtdeiStz1mQHcb4pGx5WBoewtMLOCoAvyYxMyuMerXVkXEf+U -NKd4LTebdp2zayWURGAEBpAEUcX3T2ffXDZuZW+lYQ/WWzk8OlxmyF077R0ksk8Q -l/BVXdA2FAMm24tLls2gzsGSlhA1MD9SXBbwstK6LWh7fFk8KFN7C6S11XsfkXHk -jbjcy/UhAoGBAO1ncivQwVACQ9J2AJAgxDTvsE5CfEWbPD63f/8QqlYqSTtbOBqq -Pxm+r7mt9Le7C1xLw3QfbJIAQyftrt5o7BvAdPq6YenqDYBDRCwzb2HDijY1poYX -95bMDp1WsAX9hAwTm2ifmWOOrzhWv84ZEMlTQLVccwGwbYs1R3AOSfVLAoGBAOJj -KCMhsS+ELBGKEeC5yn7cSNZP8QXA3xL5JgqCAePuXgneWitUgfLWyZNiWCf26dcb -vW7FLOiXWpvAUfQk4oyQuPDlIqeIM54mj0QBoWvcMjSmVGOPWGgmUuJ9B2d7V6fr -t8El0w5+VWXsEZQ1GIUg8h8iM7JCQbxZtcrpHTVlAoGAR7ao+W1dB+M3Q5sbvm33 -dxo0gt94lLo476UUyCLroY2yg3ihsQRefVNp18ghlWKuItpMF4bqkAv+PVCCM3M0 -Z4myjI7CxxtJqsYnEMcUzU55MLjyLa2NwAKyI3stPxH+0nsVxfv4JOfULEugMwzF -UluQv3hG0WrPHG8ivknCs5MCgYEA2YC0zlQPfPx6rns9w/AcqheQbz8s7P8qE3uG -XfAcStX4SXj0ns65bwuHbW++DN+AOSgwrx0HkYvhBOUYl/1cH/rnhKJQ0i7ckOSx -HoCGiy9qmQT47RKKuL2hQnMnSvfI9s9Uo2Boz3L3L05IcWE15qoJlXnxuyFHMOPr -8kBXzLUCgYEAiwRi5nJPUuqOCNeshBAXoay6bou32JkQHQMFX27KDK+dgN7aLnUN -orCf2iH6KHdBZ5KPQL87b+vrxOpkZ4RHx/I7Ukckm5+87CybQ8ObOO53uMFqkCrA -EsyQdBmjC66Gmr+u4NO9YzOlolEO6q4FtXNf2lVViKGxoSalvsrkw10= ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3003.crt b/apache/certificates/3003.crt deleted file mode 100644 index 99ce51a77ebc..000000000000 --- a/apache/certificates/3003.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAjHSMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMxMzdaFw0xOTA2MjEwMjMxMzda -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAK9ZtZwpUsX81FhETL8uBIUA7MvZ8f5zePW3ZHzvzjqtq0DfaKO70V3w -aGhVB1+reE9JLTgfI3I0/IxfaPz8z8HK0b9cQ3+Y6QsNLidB/frih3xqEozw7+p+ -svQckmIWEip6dasZojW7Od1CzaVxDQS0T+nCi6q4s9BZJHgkW7iQkK3oQw0OjicH -8TKd+r4pp5SAh7rOsn8YjxjpilbsCNKfXylVsQ9Vl1+XmuM1UB6VAf6W8aNbECxC -MMw9+jL7FkzMYue0SeSEqoXoL2kTx+UlFKZzQay0WYpR4T5jcivJHWGDWSO5FrO2 -Bnv5LsyivXqCjZCCnwCaIQgFuOoPkpkCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -a3R0EBi/1ELiO2ILGdDqQUgkSv0eYfBkpUK3t7iU1vz7Sz/yEPqWsHuKV8ydfrPB -V2m+E+l6xHr1YBDUzlCYWohz9QQSMCtVFCc3vISeEKeWi7Vuf0CErCjJNiQKi+aJ -3m9oy+WwmCUuF2e5dsikurlj+0j7ajzfPfNfa33fjl6rIMuoEZDcDR+FvIb99myu -q7ZSDs1sjRy0k09AM55kcwvDgT7HV/W0Omu6/au3kpE01mV7XtEcTBnrafmoKyvY -sSX6bstfbl+DPeKpvC3kZ8TlHNb9GMdhYlJnaV5VWWci7tMqgMLZozirqi2d3fKF -ojqn8yG9ST6Jp/uPl66rRQ== ------END CERTIFICATE----- diff --git a/apache/certificates/3003.key b/apache/certificates/3003.key deleted file mode 100644 index d1cff5dd4bf3..000000000000 --- a/apache/certificates/3003.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpAIBAAKCAQEAr1m1nClSxfzUWERMvy4EhQDsy9nx/nN49bdkfO/OOq2rQN9o -o7vRXfBoaFUHX6t4T0ktOB8jcjT8jF9o/PzPwcrRv1xDf5jpCw0uJ0H9+uKHfGoS -jPDv6n6y9BySYhYSKnp1qxmiNbs53ULNpXENBLRP6cKLqriz0FkkeCRbuJCQrehD -DQ6OJwfxMp36vimnlICHus6yfxiPGOmKVuwI0p9fKVWxD1WXX5ea4zVQHpUB/pbx -o1sQLEIwzD36MvsWTMxi57RJ5ISqhegvaRPH5SUUpnNBrLRZilHhPmNyK8kdYYNZ -I7kWs7YGe/kuzKK9eoKNkIKfAJohCAW46g+SmQIDAQABAoIBACunrese7piUBVmk -R2chUca7IDjwHas3nFmwOrhQC4vYSNZxyF9bFxjIDXZMFPXgfqdelH9wYSbBwk5A -QqcZWa/piqaVlchijUJPGbp0V4Lqesiir9Oe+FvtByh3JIp+7C7fJgRe8V9nKVTI -mOIjbxZIvcx4vsTWDw5D4yx2AM/F5CC0Th122ssawmpGB9yaA3TcgcgUlvEta1oU -lfdelIJuRfkSPXTvlQIvlW/0OXNRhJzLLz+b4CB37sXUv9SYNLDPc2uPYFNEoZxg -sSED42t0tPlRYe3hJWpia1K5Juf6ofBG5wzrvc37Y5XGHAoY5hRi91jZ3wKkw2Zt -KxOWKgECgYEA5nHVyI8C+zsRUhey+GdwUQZTHc+LYbkJ2oMRGx1o7qAOSkOSG62A -Gv6Zticp61OhXVGVtQ881k/Zx6Kh+QyNzxIlGQ8GTv+xdxIgSdf+wwEIBFt55XVf -NJdzItZK69YkBNy2ZFC0lCATZ+4D0HG2kPaSzB+5wBfXEx/CyI7ymykCgYEAwsvJ -cZ2JJ1HMnGPmxUtVvH79bFuBFlDgwaW5jjqiG6AKRAp5vM8FV3KuUbGpt2SK9bnf -uMzuF8bRO5Ic84KPBfE4s2zQL7JZvuPlz1KelVAvYgm6nI6lnUSWOodn5CTLCSjX -4yDsHcGetCA6AAXeDM0ZTqeOMR4Mk9nRUZ9wmfECgYEAnCgjkEao5InAUPrSQlYF -3EIG7LqJXu0+6h3K567kPl+jj1t+lNbbam+AxdiAJYGEZXI1mn364dc2YnuoetWw -+tL25KYzxjCql19nFeMSNh5qylkanw0MON0wHjlMh8eSnODbj9rIo1+hBtpZJ1UH -O/B6xWvyOWNuUP1Cxxlm+RECgYEAhUpEcQXGz6zdQTXqtp2x8OVEK10Bm2+EG312 -1qewPQ7pd11jp5pQoWHLfgL/iom1vCaPuzgeww48JXL5dHalvv8sOTn/ymNTnZb7 -rT1vXeQcSA04L+A72r0PvsTghe/XLlFQSA5DAql2GvLiPRnGsyO0aWmlll5lZNXq -sNtUhUECgYBNEXUfGCnIZH4j0Ug4ilyg3l24aEUu1YCAmbbCa1GnYcy/d4xvm33Y -Jpc1UurdEUfo+btQIehgR3cZlx9CnUzFIxkPvSKkyEWdANpYeOq3SL6hoD9NNcMJ -Ru9GQpD/XHi3FrnIYURFBbr1uTs5uBcESz9iOKI5tQNpCsYXkzQdEA== ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3004.crt b/apache/certificates/3004.crt deleted file mode 100644 index cae24e389be6..000000000000 --- a/apache/certificates/3004.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAhIiMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMxMzlaFw0xOTA2MjEwMjMxMzla -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAO/rH4k9tjt3XWWQq1D60IpR/OQ4yxQTipjeh1beO/j53kwHJ7ahs1lv -FPM+TD4QRIqe38ZWoNLLDdwwr3LtCV8sRte1yargkUiZh2JfkCQN8hKd3qeItYPV -b0fwilJbRrHcmB/L4nFKEGSQE5q1PtQeFK63DP8eh8B49YaS+OpQ619ilYSLI0CQ -dSMl07cFTj5cY1Ym7RDjXzUcBze13KtkryaPCzgS7HcbPpY4XZZpABk6H+Eiqik2 -KPxx8/6pqX7uiwI8Ulkwf3SEV15LtSlE40v8Hd9y+lSSWGZXQR4V9jRY+YrikOJL -CwYZN+17lvugoheA/6AKadhtfSZjHzECAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -BPBQ4F4113HRSA/SXoVSJwbalK414bXcOAmD3n8dFVdqPzc7K8gk4Dk8q8scVtPX -RXrNyw1FjNUj/J9TJ0txfloQZ22Rc2/xUOiaoz6+OP5Qnx87IVM7kYbJRhltJy7M -gL5l/h4+Kl2nbYYfBU9cYGhO5aHQvassFDcTrsh6uahCbrc0RQuU0sTnB+fTfC3I -1VpPXMqbPpV4wmTNqo8JyB63T/3EzkxwiGbhRSNqwd7rFa+1qvw07VPPgbyYafaL -NTOjGi9aExxIDUVhHUvZMpOYsJLdxWOV769eXyc/NdjZJvNzaXgHUR4VMoDP4ii7 -hfM8/Zo8nG94lSOE4Pzkow== ------END CERTIFICATE----- diff --git a/apache/certificates/3004.key b/apache/certificates/3004.key deleted file mode 100644 index 023a99c6c0fd..000000000000 --- a/apache/certificates/3004.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEowIBAAKCAQEA7+sfiT22O3ddZZCrUPrQilH85DjLFBOKmN6HVt47+PneTAcn -tqGzWW8U8z5MPhBEip7fxlag0ssN3DCvcu0JXyxG17XJquCRSJmHYl+QJA3yEp3e -p4i1g9VvR/CKUltGsdyYH8vicUoQZJATmrU+1B4UrrcM/x6HwHj1hpL46lDrX2KV -hIsjQJB1IyXTtwVOPlxjVibtEONfNRwHN7Xcq2SvJo8LOBLsdxs+ljhdlmkAGTof -4SKqKTYo/HHz/qmpfu6LAjxSWTB/dIRXXku1KUTjS/wd33L6VJJYZldBHhX2NFj5 -iuKQ4ksLBhk37XuW+6CiF4D/oApp2G19JmMfMQIDAQABAoIBAGuP2FWpSzgh7ceJ -MqVdrX02ANE4/SMFF9AthDPX8r9PFvCzDIT+ve/Ms3HSblAs7u3PCLhdQkD/NDmR -wjceOmNm8GPpZn6rq7cGzgG2omLnta3PBXHLAsYWPIveNcVykqFPKwymVeFAuVS8 -m21y8LYcvl0OSE9gmrAaCsnIvrwdqQUnvYjFAgiLBax6Njshk0OUKN0S9Q87GBtX -XPLwM91wmUM32p042YyC0wVYfmujZC1d0HpkdoVURP7E4eDdzbs/mFlpXQGalwCm -UpewuqwksIhEFLNDP9H92wulVCHW9K4aLYRhVrTnEMgCQlzWQusloSIWstn/DhUg -U0Vn4rkCgYEA/NW2wVR3m41qUbJuEzsBF8EVcMNqhuHoCBrwmMLhKDPqDJgMzDyl -+BvwAunTJXWwGauBIJ6E+RuiEqIsQE1ph5Z88UNKFr/sQcURiqWZRclnCkVAfKBp -aquerWia+DbyvsBjkfr2Mk4+PPhTUt/vUhQngn5UfwtRRhjLiiv/VEsCgYEA8uwD -zgyuGxtupQWNFnfe75v3/PctyV5cWsIAJMc1kSpd13rcQDo2/38mSc3bWYOhvjiX -io8WwciQ6bvkSXfIll8ro+D7IjfyqpE8/vWfeQnBMbJwli/KVN9bhAOso3QnXACy -r2LEG1SoVNlh6666x8Io+wHICQj4bcnbn+Co1PMCgYEAnYGZr0iqlmn7kNeCQVKh -tKWhcLUcWNjEzr/RoKjO0Ve994iFeHpTvoPQ+k+mLRDq2qL/900pc3JmfgsvXAOd -uUzjmv0bW57GVJaq/d9544K7QSexK7JW2Y/+cvLWj8jTYkfB/8ACvYYGub7NUbSV -h2Fs15tRki9/uxZZPkN4dY8CgYAzQ0cSRm6/Xaydumwpn6Y2Hk3Y3jiVVApdRK9P -E5LkTXJ8NHsiOqa8iBKGZKCzZSnOwJaKMOP2hOK/0Fy+fD6iLPdCoAmfEPturzOW -AjNjEYHpgORtbSxfeLsRQs09uRdNPQB4Lnl/4v+a2DznxXm5Ceon/ho+fdwfHwfv -1zMJrQKBgBS33lnS9kEP4+ptwNyj5Ihj6PCc6ekvJoSp0Fj0R8WJ/4ryvU7ZyMz2 -N2uh1y+aDjEuYdKIPNg5ecUutGuxRCmDgpX9R6ldLcPe2CqbNFHbCwtE5mpMBGdj -pbNUPmn0iOv8Ns5jNVPN8/FlxktRdeI9jADUqMMliuYu581SlgZ4 ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3005.crt b/apache/certificates/3005.crt deleted file mode 100644 index 77f402a88a62..000000000000 --- a/apache/certificates/3005.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAn1nMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMxMzlaFw0xOTA2MjEwMjMxMzla -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAN9RUZT8YgIlD93cwUy+0idzHXddDlD1vNtUKfoo2pFuBimWDbCyo3X2 -I2PkkIADybzR3wgFeY3kCSX1pAnOoiuWOOX7cPNndka1MVF1ukSATDLLD2hW6CQB -CVI6QMyIp/VhiT1rh7642nuBoakX1dsdOSHVge1E2OG8DnN1FSGy+DwblB0Yjobj -t+13KjQbH6nMPz/+VStawXpdMTOCgJePf496p4IjT41dcyeEc6tu1qlQwb9AzgMy -8XF/JDHp4ISXWfVXTSTyYgfbsnmwdtmghjbdX4axDcQqr+RttqubnKWbhocM4avR -nMmo/7V7CBSDebPVLxjXm1fsF1BtHY8CAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -KCNHgr64eLBMo88oH7Y4ixs8VvyOg8r58qH9HnvmEO/auQx+98KnBHwYa9SO+lsh -GjTiey/t51IRdxS3OAHpxqBDBl94ciuErpv02ITZr9ohhKgg9q3xmoYCxgYxL6hk -XxhWXtCoHNh2GUZjtLDAXr2IVIxsj04uEBV//SiS2/w05cFxWeKYseWpH2LLL1cc -J7yy2UvNH3kdgx4IiPDkVNV4sNpxkhma6trMV+9C5ihbrsOP6WkjCwq9JMqt+nAR -mo+7DWXIp8+3M6ucp8v7ILG5PDYEe3xnLrt/CM3/Ayh7HPgNx/3VihFGYovIC1QF -sFK1TLLyxTG/QnByNiFYUA== ------END CERTIFICATE----- diff --git a/apache/certificates/3005.key b/apache/certificates/3005.key deleted file mode 100644 index 58cf110a461c..000000000000 --- a/apache/certificates/3005.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpQIBAAKCAQEA31FRlPxiAiUP3dzBTL7SJ3Mdd10OUPW821Qp+ijakW4GKZYN -sLKjdfYjY+SQgAPJvNHfCAV5jeQJJfWkCc6iK5Y45ftw82d2RrUxUXW6RIBMMssP -aFboJAEJUjpAzIin9WGJPWuHvrjae4GhqRfV2x05IdWB7UTY4bwOc3UVIbL4PBuU -HRiOhuO37XcqNBsfqcw/P/5VK1rBel0xM4KAl49/j3qngiNPjV1zJ4Rzq27WqVDB -v0DOAzLxcX8kMenghJdZ9VdNJPJiB9uyebB22aCGNt1fhrENxCqv5G22q5ucpZuG -hwzhq9Gcyaj/tXsIFIN5s9UvGNebV+wXUG0djwIDAQABAoIBAG7AL4uJ1zllFAdd -0eezwxmZd4WY+t6f4HeNt/u+gxcYz6mUJ1n4XiTEWyzRT/CM8GHaW5fozy3VZ8wR -lLbgaYDgUXuNRakRKJFMjxbtIeGTFzchiZSfdSVV9j93cGd/ZnzFUIDLcVje6EvU -ME5h6cdvKMRk1LjNKhpZX3lXGZHJ+TFEHbUIgO2n1ToZzqec1W2brynat3xzmveo -wjS169x2eD5bK5p8Fga5k949SLQLhxy70BkYav6Fgyd2GbP/YGy2vV3ASGhRVYfm -PBZH/Fk/foX+GZuSx+ReC+mYmo85+o+/FtNDsaqOSJnhJNZjwkP7cejCsoM7r2yx -AlAf0fECgYEA8dLt9qGeoUGZLBahROCPJJKaOW4aIaJpAQerISk1/CicAg6eWqzO -v+86I9RQn6wo0uNRWo2FXSgUJrDoFRoxfZyiuCm3I8hMh+8S5G5p/UGvl/m3/hl9 -blntooo6mLMlPl5MaHZbPz+lRPzH9d5iyy4a9oB48seJDAMB8B4SShUCgYEA7Gip -7eA+6reqtepogHsjR2zx/zka7pdVeNdbzQwkF0dYhgz4o87DiTc2NWm4UXFOhyZ+ -FMioDGBu0bUYqhmmPFeiYrePKbgwmr6p/gn7pNNQoZLaPhRmTc5ZN1IhUKomjNSZ -b1zvCCcU3LC3BRYmFFqqsPIDOModN3mVfT7ophMCgYEAn6SRRi1iLLDCrvFtm6vn -s8w4lktSYvv1+CEY33Z2VjZ074K5FcFZaCpFJpwmcZLVDIvXDEG7Vkl8LCLDxBKb -s4IxhgS8C5pSs7ansTgXLoMrqdfImK45OR2THKfGkUJLBwZ3yMrB6Fpa/9UlKPKc -I+gXEr6zmgsSNWTS5bLkfhUCgYEAyTHeBMtG4H1FNKL1IvspMB1g6sPPzuROYpRt -1VkS0hjvFs6tQMO0F/A8G0MJEY7rtQumW8vVcQsU5TZJcmJ33nz6fycXGPtfqiLA -C6q1VjZdNdUEFbdIxcjqlrE4Fy1nt40rs+IUsAyKrbNbX2HVMJdlE0g0Q72HFfJM -rhW+668CgYEA8Uu55VBfo5KFAOBE73ZlmZatERZ+hchT8Ock+oNRYA/VVDnoq9dG -DznCu79KAhOaAaYmWIPkpJ4WNnb5xn0OmzodU2+7SU5dJEijUnvRWGabRcp/DlKE -XtdW4Ku5WcjgIjV0SnlaSnaaldJEFB2oC2BZjHkF3SQ1DXIN4lW1hbc= ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3006.crt b/apache/certificates/3006.crt deleted file mode 100644 index bc10ab2214aa..000000000000 --- a/apache/certificates/3006.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAgrSMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMxNDBaFw0xOTA2MjEwMjMxNDBa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAOdoHFuj+rLzUzIbUZSXAyOhGM4vEvSlGQaAdC860nk+t/Ygf+4SBlGp -c1fb09MD3qDIL9naM9/JDnWoE1sVyAZlmDgQHjL8Qg3BGpmZP2m99Vv6X7c41O6y -eNrOcZIFDN3wDL8/hjBWYllbMUWQ6pwGA6yeP6uESrCttQVDZXVt/za4WXRSa+3j -rRwveBCedlCP+krb1zkaW2rPoW63McvodwPiQ/xx3n6xYx0v9VX1z2ap8j9Avayu -Gc16LJzHU6PBtSzk9EFjXKAAowm8yraXoDePDUwfXs14sDXhHn6yYRECHeo+IqWg -V4eLU7wI60FTf4y/FxOiJtoJ1rFltHcCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -NElVazw+HQvUz+hq/yCPope3IVYd4Qmu4mFxdEx7l/Oefl6GUzu33Ka0u361lJYC -f02gGBQ1+WaGhR91aPuOT+A21nobvExIX7Fpu9V5Mses7DWpKMXD1HEamCtKKT37 -Qku9KCvWEmZT2v3FoWxmzt6M5fI1VsluYHq6rzQ28CkoaYFk11WLB0Lg/D10Rpak -0A1CBNOo1DyXwJyatUBk5EtrJc3ntVv2VlvUjkG+3V0S2nn2jkUQVveO5zxpiJzq -pdlLWU9QR7Kn3NLvpNhPcj6Dm3F+utT+IPc5wMphh8GFBSTTpK4cjjjZlZZqKwQ0 -r7gTttolDLTriLJPZt/k4A== ------END CERTIFICATE----- diff --git a/apache/certificates/3006.key b/apache/certificates/3006.key deleted file mode 100644 index 9cffbba82b70..000000000000 --- a/apache/certificates/3006.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpAIBAAKCAQEA52gcW6P6svNTMhtRlJcDI6EYzi8S9KUZBoB0LzrSeT639iB/ -7hIGUalzV9vT0wPeoMgv2doz38kOdagTWxXIBmWYOBAeMvxCDcEamZk/ab31W/pf -tzjU7rJ42s5xkgUM3fAMvz+GMFZiWVsxRZDqnAYDrJ4/q4RKsK21BUNldW3/NrhZ -dFJr7eOtHC94EJ52UI/6StvXORpbas+hbrcxy+h3A+JD/HHefrFjHS/1VfXPZqny -P0C9rK4ZzXosnMdTo8G1LOT0QWNcoACjCbzKtpegN48NTB9ezXiwNeEefrJhEQId -6j4ipaBXh4tTvAjrQVN/jL8XE6Im2gnWsWW0dwIDAQABAoIBAGz4vBHzoIVQzKbV -8o70pkfK/zFpPZXzgVtsdkofeyoZfOvs1hG4bz1ZfLWtEY1XTymL2+zNMox509NY -OPU1xqIsiYgtHuuHm1t6yhn27sPO7pJHz3cqzisx5HO1sAnBUxPYjUgqk/iDVYEa -zpMh8TlUI7rQMs+EVt/ojUxTNp4bLzjMoUegJwPYi5gA8eHmqTTW1/Hcqjs16CRN -0FOXFVEBNJeiqQAc9bNveeZ4I8qWR5tBxYqef3qqBU4v1xItwzh9fKKelruY+bFU -McJIrmCKc9LBAWG7jt0Iyg1xu++EUQ/SdSUQB4HJXuK5AlbQx4kGlH9KMNvwzPnQ -/72zCBECgYEA+fqKLkTReQkQIfn5Wxdn4xyBan4AHnpiuFqc1biXQEr9F4XB5z6B -Qiwv84y3pd4sjXC5FDGGGdVlZoWYIS1QENtcFDHR8+oeOFCnSXlHzt/ay1hLHYfd -RV6A8rD9Y78llAs59OpRrYSHl4dJzUotQNfFOLN3u98DTVlyWE3oG6MCgYEA7PsM -n4Mr8/jjJIlhSAA56sC5ESm9k68a4jP3f3gETASOfTLH6nJ47pr1/GWq3+CvHDjr -eBJfueEgQRLaFm81yQKfOEwObYjcJlTXW7vNjVsiqGamOyl3Q+pd7PKq0HzBs5bI -RKz/SE3/nFCvYA6XR2NqoPuyfj4UYczsJ/L0UR0CgYEA8D6aWLdo/kL4jz7YKHSJ -MlsuAbPQ13nVsMndGwXJz0+Ch/3UCjMnNPqUpyQhR7cL6G9iYIbsE53kUzCnsZMD -9P9tMjdjSWFC4+qXq+R0X90CQRW9M0dlIAsgMJ5rGFcXfX2AmOIt126chcPO6Q6W -CVCVydWpiBRf7xG89CMDpLMCgYBr8qu8WYcC+mOVeBLdNmUrfyCOJeJaTJBFbACY -ivYCHq09cI1KSVy269WTZEhi9LkvdOol5tC+HkOQAONhBsWMS+p1PYfw8z+9IjZ7 -bd/jPRlbdm7QUkImqLKiRaPzlnCxusR9LASZThZagRJyAhN9DFc8/4o+IU8tgagt -RmluLQKBgQDMkj66equ2MhuWaIHJ5tkZcYF21uxyC/oYyFK4A83+lFsdaBogam/e -F5h1VUj5zn+RO6mnmfpINnbknL7R6KAoX9slquBsMWfgkNFdQTzhzmP/ab0bkFNx -0CY03atvXv46f17qzeYqUB5723luWzDSOQcs0z7LrgyjAPiPJ9/gxQ== ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3007.crt b/apache/certificates/3007.crt deleted file mode 100644 index 8a88fa95c2a2..000000000000 --- a/apache/certificates/3007.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAhpHMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMxNDBaFw0xOTA2MjEwMjMxNDBa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBALBzB424Tra5CMTwbqjSyxF6xpdVJu9y0UKQ8QtSqVMBIW+gjaDVEfsd -jeHXS3qvBXAVWdkaq9Ogvx+XLZDwoFz3efl8WFjedC0kW6yGsl0ZViVdE7bGH0qm -mZGPoNDYZP5hg8IPfzQZ/p1QtCvzSUP5wygKf08hxWElKdP7ki+6dgi6ifarQcOR -uV0TqymJ50vAoNjWANo+LCVkFmsfI9bBa6tJtzFQBvlpmo4Me1wfRLPDRMCWFIQ7 -qbeW5qiejvCX12ObmpJiim7Mlb1II30eNtqwDBc0BXCO9EWXNa4CZ0ae1FooYy04 -KmzQa/lkXh2wo1l5U8c32DyNAnmeMvcCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -gc3FM+c6+qqFk2Qa3XOwW1+/YvYuSl2tYb6wBry9R5lwuNYN9vSAOlhtGBJobna+ -7RJQg9tUpvwsR/YER7A8joIPzuFMv+iifpPe/INxPC0ZAMCSpiaUnajr0GjEZwdi -z+nbKWSY9Sate61lveDaSzSHc+TAMiy29BmN1YamdFQxXda3Jb6103yrl6rSplXM -YBCiM3VuE3uRno7C7+ugaKmb62XMMoeCL4IyA+ZOf76OCHyXNb++gxtQwF+Tw6zr -1wRPMKga9AkRSd++nsrqfPPw9xK4A3vFAvoKGzKwplwaSuy00v5G4MrHnh9Kmaof -xXSs/EMug9l0l+LHSHzrKQ== ------END CERTIFICATE----- diff --git a/apache/certificates/3007.key b/apache/certificates/3007.key deleted file mode 100644 index b3cb849166d1..000000000000 --- a/apache/certificates/3007.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEowIBAAKCAQEAsHMHjbhOtrkIxPBuqNLLEXrGl1Um73LRQpDxC1KpUwEhb6CN -oNUR+x2N4ddLeq8FcBVZ2Rqr06C/H5ctkPCgXPd5+XxYWN50LSRbrIayXRlWJV0T -tsYfSqaZkY+g0Nhk/mGDwg9/NBn+nVC0K/NJQ/nDKAp/TyHFYSUp0/uSL7p2CLqJ -9qtBw5G5XROrKYnnS8Cg2NYA2j4sJWQWax8j1sFrq0m3MVAG+Wmajgx7XB9Es8NE -wJYUhDupt5bmqJ6O8JfXY5uakmKKbsyVvUgjfR422rAMFzQFcI70RZc1rgJnRp7U -WihjLTgqbNBr+WReHbCjWXlTxzfYPI0CeZ4y9wIDAQABAoIBAApEFwtqzsGY0GbM -6lNOOFxi/Uzuul4yGvS5hBy5iXp31V8uQy85Vlt647dhFFYl+rYDt/+GqrqcXqJS -5GbLaTkfeOxIDMfW4YGC3QaTq6r4/2cbHDuFGWr5eHPcnGmqPW4DdGwFBMyeOo8i -k+j+taOL04vv2GpdN6OoSt+3glDeeqLm1qYWtig3IuW+XIIlbusd14Eex2SdpQbd -Prw2iGaZlh10G37KDtvLnA+vbJQJPGWG9sCKhcymiLFvplbmuAyd8JPHms52Mpdl -G3y9eG+zbDmoKrvOqAE+cS0/EFksLQ8K2Vjdo+lmKb96L+eAi11sEsORCUyerfpK -FjI5dwECgYEA27Bk/wkGh+AYqa7npXsG4EVbhHgP/IWosQVrYPfWROcXbEQho2td -xJbutGzBDhm1/NaiSYIaHt9NNBmMs3XlpT/JEPcxFnx58p9Trujm1PR6EMh9dHNk -FJJUcaVJ2v/zhSdXh/PmzOLDtl5eUYWATcl0sKJeISzFNdfdU7pEKIECgYEAzZ0N -ZhLyyr7LomL1jkZiMTfkbmySJr7/DAsSt+dZeuP7lyJB3KjFXf0Rs8GW33+nfUFG -j3PXUABaIHzIfHoFDS87DoyhZWYSarh2wtp+GPIO+K4RQ+tsUdK3w008QtRtIWta -VvWZJqLwUH8+PyGdpOjIY80S8tg3gxvWHtkn33cCgYBB33N5MXie12gtwP8+lFQs -fT+CyglpG57IbaqT6dx6zpwsX4WCndgA8Yzj1tRQaQ8zoBwLVJKGfUiF/b89tHVG -hojAqI40guCCCpoqETXd1uyfCa7scwkoTfQ6G2i43RRk8bYCUvT6rGgoz8USRqiB -Ko3txNHaurTrfy2jRG/ZgQKBgQDGp6GlaFNJzbODLidfkeMW+JBsm9tNMiXLJfus -0Qoj8JdIuyF1J16hY3ux+C1jvLs/Ck05FkwGEIEDeGxfz6iHx4VAlmDtTgQnNhgQ -RPel9GDApbUqsQ/Tsko3mKzLSOAzdLww3lNc//o9W+LxLfJYvUu3GRDgrkRcGQ30 -egzLGwKBgAeo0dLemLmEknAE93w53eR4qpPwLrTm+6ukNzHI2WvkZjD/LPIFJk4b -0UXk8U82XGOlJL487TozEa3XseIWHeBLWJgWTLA4yUdAt1oUQayNP4HyVg/Noyeg -sVHSb59L9zDV7WNhAwHlThlJYrz1r2aTm5gczBJ9OhQDPKj4emyl ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3008.crt b/apache/certificates/3008.crt deleted file mode 100644 index c3b45b3a1ecf..000000000000 --- a/apache/certificates/3008.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAkOiMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMxNDBaFw0xOTA2MjEwMjMxNDBa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAPIFtKXW9TuEJUBAdXi2K8d1wldxLAWVYLnSCHOnOETBd6r0rY3SeYxn -60HmbV6uXXjqWONZbUpTKP8IMLNrFoEt7AQDXTpGwPkhZ/LNJuUvHzOiYhuetDgC -h1g8FJUUGNydsxnb5l62SgGsIudl858AnWYZUedEo94dDCzLl7+2VgL+8JppEZ25 -aoIh1i94V3V4MZI/SGuv7UGnO3GfwNeT4nH0AMpljG6MlGRAgO99JKOhxKie6ZvX -B6q5xML/ieWUVEIdeyRSK001DiASf/3/6PJ2oH47HwHCkc5YYuQRAA4t3hnFEHOa -GVGJ0GM56ug5gGc5LV8Pljsc+e/3kfkCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -bm/3ZSdLBdPfZ5vXabI6Jo9HbSl5fLOOo4wz6FZSioODy7WICPDe2xl/AIvfUF85 -i4MAqfdq9+sp7bKIAGhyLNHiUKaNYDcV2Ibz1RiN/Oc4oBcpOmIDykV46UhcRGzd -ug9zcVF+j8kCd3u5h0FIrez92Hq8s1ZFLP7AKQeJeoXHhNMiH2Z5vTSQ7nVUXr83 -4TUbXjMcTwIV1CvZnMl9Wv6Tf2EpBdXlfug91tX1CCnvaRt0UOWcoqX03ayEercZ -YbN1hq56OUGj0arGJT983ARcqcqQy4JTQDm2Dxe4j6dNL+cdcXy2iaywqV3t4pUv -WumZE5ddqfnE3Wkk6Z07uQ== ------END CERTIFICATE----- diff --git a/apache/certificates/3008.key b/apache/certificates/3008.key deleted file mode 100644 index f687aa2d62ce..000000000000 --- a/apache/certificates/3008.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpAIBAAKCAQEA8gW0pdb1O4QlQEB1eLYrx3XCV3EsBZVgudIIc6c4RMF3qvSt -jdJ5jGfrQeZtXq5deOpY41ltSlMo/wgws2sWgS3sBANdOkbA+SFn8s0m5S8fM6Ji -G560OAKHWDwUlRQY3J2zGdvmXrZKAawi52XznwCdZhlR50Sj3h0MLMuXv7ZWAv7w -mmkRnblqgiHWL3hXdXgxkj9Ia6/tQac7cZ/A15PicfQAymWMboyUZECA730ko6HE -qJ7pm9cHqrnEwv+J5ZRUQh17JFIrTTUOIBJ//f/o8nagfjsfAcKRzlhi5BEADi3e -GcUQc5oZUYnQYznq6DmAZzktXw+WOxz57/eR+QIDAQABAoIBADtndx21k1/WYaZR -rAPDAx/kIZ2A48NDFQjHKtfoVYFa01qcz/SdksQJxc7ZFkNFHSBOtR6olpDFtKxU -gE+pm059zQ53HOzu7PK5ZmBMRp2+YTQ1SUtqOuX8iOf5ZzvoQOn1sz5HoVXh/GxI -qhCOD6wZZIjo8heH24jrLE/acRbW2i7mOGyRuQghaS+hNb5h5ZkSdwPinXd9ml8Q -0XWjPhf7i4TIYHyYn/seJ1qeWs+4KmH8Htuv6HHtcZhgBnAUKHlXPAP0TfvGWiDA -hfhen9qcBg0mdsxSC7Wd0XpUYGbSNmiAcHubq3GaM4rU37N94kIjKazmnTAEr3II -vCKBTOECgYEA/yAQ/VOozBSE6HzEA5lbh8Vl0ePUqcD/K6tQw0wcu7wepnSG28C9 -GeN61Msvvz9ZWJ8qMMZ37cnlJhrwMrvNBzRCXHmDrthfGForftiE+D5UNObFX0nc -c0Vj/YTIORMeMc7v0qUuF2vhTT9XAL/OhpBNVZRjpmo/mgVTpk0ulg0CgYEA8toj -Zt3PC+2N/We2KGdUaq3f5EZnzB3k5OgegXcUAUSuoTuGtwWApvAPcwFXdSuOjKzt -98P/g4Jn+Vc7wnhW8iI41VNmzyDQ5CzUCzUE2nPTCIhj0NYD9TvygK2q2y4BpnMU -A9DT2EIJwG/lbS+JeWnyaKJiyFKlaBlDzTwEvJ0CgYB9QpA04Mtij7yFrSRMJBKV -gayxNawnQHPITA+WI5uD7SQbU+EWqfXubQrUyYIC4yaJ5XPAiOE/Jb5VTCqcripH -HDhs0Nh/kwp1mWf7mnEGtQuBAcDsPQZ4rhwez//CTgmoKNME2EbeBwCSfcPIwWO0 -G8tsdjPK9CWQCId+giyaTQKBgQChC09Ws9jNjCcQ2GnPuVYduFg0xQuoLFrSAavZ -JuI5RRaZDSR00k1SZveXyFf693t8hmD4YR1cVGomy1Zxy+O8hj0yGjCfQp/D8IZd -ODeTtiNIEUo//ux4/9v8wS4AUy3892tabG1Ph9t3pbx6/38m6L877BOdzFCsC7UO -sLJjcQKBgQDX8kjhwRDo0X/RmX6rqpkmuVss6hfEjJM6ybIjjTv81LgKYq6cxoIZ -H/3vxdBV/hEqJQE+OvkmRFc4cySrYdoIsyHab415Vanv54TlXDskdVh+opJSGt+D -RvP0trXzRcakCy2hXDZR/AjSCQWWm79St1N4IsIFDXXZk/hJXcN8Rw== ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3009.crt b/apache/certificates/3009.crt deleted file mode 100644 index c6dcae3362f7..000000000000 --- a/apache/certificates/3009.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAnFZMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMxNDFaFw0xOTA2MjEwMjMxNDFa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAN/xcohq9Cyy9YvVMBxwEXpx3LKgRkXNig19Gf1zEaWXiYwH9dqprQOY -aFya4JkcqxOCEkPmmJDFMEV+pQsk8OpBP1HL0K96wq1G/+/7Vm5C/lVj9cMgSPqF -l2Cu+Zy6ujy51bm66o2/4YiD/wurR53YmxrO6mhQkYHxSD1TVVF71PaNvRC6az8d -QNWKM7DcLcf9LiuhaRb71lqagx3ltW1X2MAaM3YoS+XFTBE5RzWwOjZv35sXMoNR -M3DnHc1fydl0n4ZNZLN5gxtTGvrYEsZYifnm3QYX0Eh+L1Ti+E4kHU3R1HpvoyBk -BBfNOvFXcD8oqn2UyKnULBbmIZJflzsCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -lh3fuz15sdCMeaaMwrJfaWMmiqQfJ/mmQ890HDgrPX/BRdI4XpgrHHCAClOhwgIx -H6MmOCmYI9j3BvOIzqMcgbB6aYCaknDewjp5AzOnGh7sytvNA32dYWh1eWDCRLXO -NDBVyTGYD/euTcxHhkjM8KhqlEU3J1+v01zZzSjeCAWpJ7GVFjxd302kNcuSceu5 -nlX/Ve7qu0/YKhRfUdqdgFUwbxfCcCvX3LcQj6XdK19FP4jkDDjaT5bIJbGErl7B -66LKVXbRQ9r3s9fU9KJDDt+4q1b9B8Ks/V/sSjeIIHm3Drf1ot5HeV+8lxXJ9EuH -SieBiqbk4blQ/X15h0ks2w== ------END CERTIFICATE----- diff --git a/apache/certificates/3009.key b/apache/certificates/3009.key deleted file mode 100644 index 2e284bff4531..000000000000 --- a/apache/certificates/3009.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEogIBAAKCAQEA3/FyiGr0LLL1i9UwHHARenHcsqBGRc2KDX0Z/XMRpZeJjAf1 -2qmtA5hoXJrgmRyrE4ISQ+aYkMUwRX6lCyTw6kE/UcvQr3rCrUb/7/tWbkL+VWP1 -wyBI+oWXYK75nLq6PLnVubrqjb/hiIP/C6tHndibGs7qaFCRgfFIPVNVUXvU9o29 -ELprPx1A1YozsNwtx/0uK6FpFvvWWpqDHeW1bVfYwBozdihL5cVMETlHNbA6Nm/f -mxcyg1EzcOcdzV/J2XSfhk1ks3mDG1Ma+tgSxliJ+ebdBhfQSH4vVOL4TiQdTdHU -em+jIGQEF8068VdwPyiqfZTIqdQsFuYhkl+XOwIDAQABAoIBAENyGoaPf76+n0lg -Cb9m2TzBcjCyKLf5MWzikqNMtrHis+BivV7/30XH7xaE5sP2aGfVst6UYrqnSOSF -QfvbQlurDwD5m35eQKejTI3gaqWGs8bP9kKwRIp/FZpe2HqlmlWTupTXgLD0a16M -MpI3Ibiedgha7SpBqbEzFAi0QmvpiUFlRrXwODAHxbs4oZvfeuCGKHVAt/l6U20U -sJ/3nkO4wmyWUCtrbXEALjsrLzLC4HUWBLGQmMiPzGuyZTMbIy/IkmdAp2heX6mX -Fiocs/4ORpIvHqbWrmpAf8oLjHDU7B8ZImYzaO6FevcrJ+5pkT345w6uU9V34/vv -2s4+NbECgYEA/Z2HrmAH/kTth6itMbT+Z0yx1D5KPCpcjiXqZl6sxDoxNuJhEJw0 -Kt3wY5IMTpij8kw/+EMrrd4BBJwn1QIDHBjBKYPn10tmWQoj0h3EajatQW1bta7v -QVhHdI7X9zcHAZx77jiFJPhuahfmd4lJ74mQMxsdwjSxku2HtllU7KUCgYEA4gx+ -i+LM9eJmbvl4yp8rU1xVsEMvoJZeUSmpebuPz8Wep2ZWr0sBKmOp26o+S09vYZHb -G/sQjkEgSQlrnejMoZM0qi01qK6VBMQiPXXggPebPpUHp2fl9GB4LNmO7YbYQGW0 -Z5odI3itwUOaTe4+8tMWVsH7ugP9QIcKIXmDzl8CgYB+0jt7E0JsAAPXhp208ZEW -DuAOBmgQ1g4adxNTxZwXNBJQI7vuFm5v0TPYVrwYwXOaQk7q0owREaboqz2v4qWz -cx2EqRVSL74qYEuxUnlZs6XHxevKWoQB5Sc2Pgf482dpgtrmMRVDe4ebPgBdXiW+ -xsd5BuJGrxrtIiJvKRSykQKBgAzXXtz9fl09hkopm+YO0rxCk4+W0X7S6/q6XilP -MWVBObkSxDvjC+bnkH+tFSrcEVy+l27ofVFHe9kKUvW+gtlu7l/4f4LcoBSMO9G3 -/4/0APq2JqAo89RFIq6RkWAG+AP4gx4bkCoysdQ3ze09apAK08sL7AvuLBXdVgL+ -zzELAoGAFfKI624eySzexgnCOXbJTul5BUFe/8l3miClNagSK39X1uz6qxTsva7p -pPUAWpmhDq348MfYhTs+bMnciuV0b5g5WNrsIpmj9ikuDp6zRfcMLhc/FmS9mPGz -gyJH9+we/b+Vj5MMw+L0Phtm/mQW5gutkcXslXDnYMJ1ttxAvPw= ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3010.crt b/apache/certificates/3010.crt deleted file mode 100644 index 71fdb7bf8139..000000000000 --- a/apache/certificates/3010.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAhedMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMxNDJaFw0xOTA2MjEwMjMxNDJa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAKd5mDngdxXl44fS6ekopv+G/jl6jz+0huuOVPaJKcQIanCokG1yuANI -hXD/NhDUSx7KjZEIiwN2ZUXqabWTdFy0NTz+cyNBxGFNnSxklohthpoH5aFDtAbw -7r9ChQYm1o6g8d/TEy3WUS4DqR6GF4tCogUIdA/01uQH1lqfns8W3fzQCuUwfZ37 -0GaFo8oZdvVsO/oDghVw39njvjx0ue/P/aU/Gfnhg8uIiDIbAy7ND5n4yYgyrwjO -kKYCaPlmcjwPeyleizGWUjODNU1e0YwPVqNzSp9otON6Zk2u11uwYcouwu61VadI -Up26cxHfBP5FviwpaTW4Pc3vTTWNKusCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -SlbDV9x3sr2TkiADPoQIHO6VAgyYCOQ0lcWCnLVS9TmW68U235vpM70IakmHGUoz -8wfswl1Nz1BT+5L0HKjOUiXm0QTbBdUzLnODjdGdrKTw5bb6gKI+Wyq+9MPm4XIG -jbjB4boP7Y49vDgeVqCekC3xDuSxKtxl6Is/5DTE832OFBdtLu+nELsgLiA8UORN -y0ze5TlMm/1d95ixzdH7jgSe3DDSO39IfkrLNmlm6I3MlarwLJPrpp5gZhYBG4rT -9TKpkY46lSI+0xKgUcLQKdh9A8+0ILDa+DCrWN2kI1qBTz0OmBb9ledTa9AcfO7e -syRS/qYVFwtWan66pzlbOg== ------END CERTIFICATE----- diff --git a/apache/certificates/3010.key b/apache/certificates/3010.key deleted file mode 100644 index 52d4c74fdb15..000000000000 --- a/apache/certificates/3010.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpAIBAAKCAQEAp3mYOeB3FeXjh9Lp6Sim/4b+OXqPP7SG645U9okpxAhqcKiQ -bXK4A0iFcP82ENRLHsqNkQiLA3ZlRepptZN0XLQ1PP5zI0HEYU2dLGSWiG2Gmgfl -oUO0BvDuv0KFBibWjqDx39MTLdZRLgOpHoYXi0KiBQh0D/TW5AfWWp+ezxbd/NAK -5TB9nfvQZoWjyhl29Ww7+gOCFXDf2eO+PHS578/9pT8Z+eGDy4iIMhsDLs0PmfjJ -iDKvCM6QpgJo+WZyPA97KV6LMZZSM4M1TV7RjA9Wo3NKn2i043pmTa7XW7Bhyi7C -7rVVp0hSnbpzEd8E/kW+LClpNbg9ze9NNY0q6wIDAQABAoIBABJ9tnUNd5iPXWPt -wa3gsy+bdA5cndxmzk7L1E20L0xZsYbm1at/8xlJtJIZW5rYFcM8kgzlaJPlSqFB -lJJbyYlCzG4DmirWZBxqOWRhZs2Bak8veAcqNoJdr76mVZGsUBxHYO1ZnNB+zU/L -T6zzGT5jCQiNOmNYoTFkPCKdZSdwLSRvW66GHL2PIdzJy1pWtlFX70UJNbAXdy7e -QX+eO8NGwCl/hjZ29ZfVBwhY2jpSsYGMF9VyoYz3tjPwHyK4OpwQmoraDmYhbs1n -QgCloF5hAyLxdLLJH9HOJsJIxvaBd9bFrc5xpgkNq6XMmhXEtYs9Mbzn5VaZsY6U -xnAZTIECgYEA2Ox0hfVhuJii/VeIX2vgDsfxGF+EdFdmhxjpSExIkJ1J7t67ELfJ -5MMAR99C7zvywwcGY+YpLcNEFG1ESRI3QCI32gCw0OXzAOSg7MT3WdTwlBs9BC9n -gh5QULDklVqL1Uf90HrgIc2Ifg9p+IbTAh2R9vz7p6WtDcgsY7/eSfsCgYEAxaTJ -5YZQ2PxvoPcV4rffGO1vy9SAFuUOwmH4m6gCb75E1t5NI4JwocPODuLo9/U509p/ -J7yN/4RULEc8h6yeqYdnCHveORYChiJgHGI1VeSjlqoDV7GaXdQYYAikATdT35G0 -QJBwJOVdK3b0o8gVF66mlSfDHb3tvznBmi46P9ECgYEAklRHckoKBo0ofb97ZesO -NMpZb7iXUCfZKM78JuIWnT8NLY6gH/Hqxl9opBMOQvVsmHT3sZIEOzOajDD9PFGG -ZcPvaybGH9TObM7NY4qm1LlZJH+PVHBp4ZNzWEtLlxiCdXhf1i/dW9Aa//aD5LuG -QcoSucsEM54GM+LRVuSKHdsCgYEAusixxajaXzayiHz6wfjjbrt2HDwHkZuIB0xv -lyuAofo/NJGCdTyhFT/nTUpEwZGPxReJdBROXlzA79ei7NXGXJEKXooxyeFzITD7 -g9eMcFBUCd9CqW2/ZU08fAWueTfAnFkm8J2QXk4lbx5MtTwyMt9rryqUy1bjiQUc -YomtowECgYBLCrZy65NAeTrA7DJxHwCKDtpnHQ60EPkX4v02pVQSmrJDNSmqt/VT -X01i+FIZYy0jSsAjVBh2WumrDBhgAkbxm7pDsB9EerQqJ3Z+nopp5zv+whNfb1Ly -BXfLl//zE/04lzd/XjK2uD3wwSo7AnX51k65xfUh+J1Vaw5qyVR8AQ== ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3011.crt b/apache/certificates/3011.crt deleted file mode 100644 index d4d224d227fc..000000000000 --- a/apache/certificates/3011.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAkgZMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMxNDNaFw0xOTA2MjEwMjMxNDNa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBALDudJ2MHZQ5d0Lq8W6hMTZ+KwXCZAtwVeJxFaeDHXQRE/umLBR7Wedv -qE6WU3EsNL18JReaYAn+Pt6SmTwzKStaJiX2q1UEJaIHjN0rspeaINU+e62U8TBU -ldDWZVece4MBfnciQuhzcJJ8x8Ho2qtY3ZIGHo+FaoQXfgPvOuSk9RM0tLBCFxXf -IvkB8B9Em2kzOjIe76tK2iAG2wIZWN9hx+ZtHFvbdgMQisSgxTFQG2MgDXRdHWFb -Oj2jb1QzUneRQq+K7/p3H00815gOX8ybCosjLMsDruUJvMkrXOLlhhZkmmOCXnd/ -fajlHCh5Xhm4Z/xc+G3QcpXTykN0PiMCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -XpeRx9HQ26DltKoNEPRxYxk5eB1couo2A19UkW8ftxFUrtVpoCTohRF7/1zcA3Ye -4LJtfPasi+TKaJOAsLDW+yYeZ0LEtWzGw1jrUeIuQxFZ7ZsIgM8LQJGyO8380tXE -VBdgjPIw5Q8IfCIGjGHYLGDuIrMsKza8RS0YV8KSWisNqP0uwxoz7+J7r8jhnryk -nksxsXA888oSLr7otPFsJNjbRw6yqEEkb8pSycV3nQRdQNmn0SM2JIMcoCOP014k -Er17mJr/EaiLAIMKBhyapwW0AdYgkJDU3Ln1lJvdgp5MlIjFcepUCRHKXnn/DDGD -c9WrCBd7jy2cS6Pb15+epw== ------END CERTIFICATE----- diff --git a/apache/certificates/3011.key b/apache/certificates/3011.key deleted file mode 100644 index 1badd7bd9f6c..000000000000 --- a/apache/certificates/3011.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEowIBAAKCAQEAsO50nYwdlDl3QurxbqExNn4rBcJkC3BV4nEVp4MddBET+6Ys -FHtZ52+oTpZTcSw0vXwlF5pgCf4+3pKZPDMpK1omJfarVQQlogeM3Suyl5og1T57 -rZTxMFSV0NZlV5x7gwF+dyJC6HNwknzHwejaq1jdkgYej4VqhBd+A+865KT1EzS0 -sEIXFd8i+QHwH0SbaTM6Mh7vq0raIAbbAhlY32HH5m0cW9t2AxCKxKDFMVAbYyAN -dF0dYVs6PaNvVDNSd5FCr4rv+ncfTTzXmA5fzJsKiyMsywOu5Qm8yStc4uWGFmSa -Y4Jed399qOUcKHleGbhn/Fz4bdByldPKQ3Q+IwIDAQABAoIBAQCjX5xYub+6VZHV -PaIvuDH8EmZhjAzbLyBu1mLbactxmC9uiBNd2kS62rR71H06HEqayR5q/AZAU/7z -gER0fP0/5Z8iIPI1r32cbwJYW3guWoiEv4xuTQCk0wX/b2jmjDzUTDXdhcpoX+gL -q6K8X+pCm+0EYBgqCFTBofufYHBuHIZPaqGtZF/V5Ulc+kpLd+sx4GpC+EXVL1qN -dfUhKOaSicpesfctUXQLz/9duXflaUdQgXMPlNcNl431ujNFUZlqF+atI8Jdltto -EzFxSg5UXGXQFUv/tTDmA7lm9BNvNFFXUECzY+riA1HLfDnI9cUbIAdHU8W2HmHJ -WJiv3jshAoGBANy1TGOwLRdwmPYpiYr1/Dw9TO2ddVYTmz2FQ/Fdo2hAOVNqOM7T -Q3CfwQP5DrxY9SOHPGhpgPRfHwZruJ7Og1OqOS0bXeORtw861+bBZZ/zxQ//bRf1 -yLWJOpcw06jTBBYv8AmC3/SCOXrumhUmVsJDBdC8ujTxWZelsyqEG7ATAoGBAM05 -J4anYTQKqZzZrOWfC+RMJAt6ZwTsVamsQpynV2kb3g1JrgPV2I7NLNUnvxKRJ0qU -ioI5+VE95++FCuOckwKSmrAgUT7Yo1N0CFlJxxqT8yvxC3QvZTdAiaPtdaX+sq06 -sAtvx1KV7t7QFE570JcfTGV6GEl3XLDdMNSS/JuxAoGARgf07DDLrgNZVcqKTSCO -X6Ln1QHAaIaiHJw7mcunfP3b8r7itaXNYWAfg540cckcR6Cyp0LK2z+PfZ8SnrlS -bGq357smSH5FAr0eIqc9EsrrvY7D0/V2MTwQ7kZc8tW6FzwwwyPW4iOsD3jERW+7 -2bogj0JDJ2dpkTfPqO7wRicCgYBBOWILlNT68kyX8kLWM+dWprBqCXwGf4p2Q65k -FXddi6LWPE2XIHcUY7dVA63hm8qOFIm0+/H2VSOK55DfaFr83VVWlt7bh4TZOC6T -GjSyiMUneRO32HxlxBg6xnS2zi1Biz56VAtYfxiNLjrV+tn/vc3NDrH7X3lRKOul -FBY+8QKBgGRx7v8jcSK/7vw9dUOwTkWsqOca6T+ROoNB3Kc7wlk2TCj5a5yrBmzl -ScAB03nPuWJsioeav4DOgEEDMPc0WgP4RnvcRHB8enCMBQ1iXIYk/0v36Ipk/XEj -JhSpk+yIfHZupkUjjmPWvTaBOI6dXtq6CXdRZasEehwJ1hgyx5oc ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3012.crt b/apache/certificates/3012.crt deleted file mode 100644 index d4de350f1087..000000000000 --- a/apache/certificates/3012.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAmGbMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMxNDNaFw0xOTA2MjEwMjMxNDNa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBALSbtq9bBpFQGWfO0tzEZ35a0TL9mCCdKPTbB/mVfCo7/imZwrWk8Jcl -8O5MwpVdQ6DYi5URJjM82BN4amO8QiixEVTd+iEabYAfwUcLO67cX11dmAeu7i0D -89mV1huouJRmLHeRoz3lgjAG4oQi1oP75oSrvt9MlCRjnzzc42L+9DYLni9Jgv6a -uvfSkN+7Fd3lUsKeTuY8Hh7P0ojjoClwtJDabZVpiYsRG/abTG7/f+6hUOl0/dIL -xTKWi9PSKqy2QwwNxmVZkw757hSmBp2MLtOCWJm8yV1dMr1vx3/vsZ4vn4AMT3xH -bkfGOwet2t/B061NcwH7w/uJiWBmWQ0CAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -F3+wMZgQQuWyVHwcvnyKs5Ety6+/Hg+eF3uvvH8M5NA/aa948FbvGXjGBZtRwMl0 -hHthZW12i2JlHpv9Ptw+mF8wBjCObKeq0KhAmFGSSZHWvYGoROkLFIgEecxqMs0B -8PVmQcYleBzHWZSeU5eN7mrfytLcQbJyEeP/G7DIygQswv3C1dgf3pwWm4q+yA2W -oqL95unAWVfJe3qieqIBo29j+ecF0jHk7FAZmY0bP1d4LDoFOIhgCT1MSdUwOILg -HTt5omI7AtoG4tTgmJ+Ab+6uxEGT3Oo6+ei3lXYKcM9ylvYoLgomAxN7GNTJOm2d -MdjuJFx+/o/r4EmJWMsjjQ== ------END CERTIFICATE----- diff --git a/apache/certificates/3012.key b/apache/certificates/3012.key deleted file mode 100644 index a5f958ec4a7f..000000000000 --- a/apache/certificates/3012.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpAIBAAKCAQEAtJu2r1sGkVAZZ87S3MRnflrRMv2YIJ0o9NsH+ZV8Kjv+KZnC -taTwlyXw7kzClV1DoNiLlREmMzzYE3hqY7xCKLERVN36IRptgB/BRws7rtxfXV2Y -B67uLQPz2ZXWG6i4lGYsd5GjPeWCMAbihCLWg/vmhKu+30yUJGOfPNzjYv70Ngue -L0mC/pq699KQ37sV3eVSwp5O5jweHs/SiOOgKXC0kNptlWmJixEb9ptMbv9/7qFQ -6XT90gvFMpaL09IqrLZDDA3GZVmTDvnuFKYGnYwu04JYmbzJXV0yvW/Hf++xni+f -gAxPfEduR8Y7B63a38HTrU1zAfvD+4mJYGZZDQIDAQABAoIBAGNnvQIBALlkM8d9 -/3MBKtFR3QjKqTtyJMO39ki5rRB12qs89P0THlSizlvqpcKeBYX3CcRvHu5ek7ML -uMrSKDvLUXW7g1tK92/oinG2zg+tPVPfGrlH39Go9kMRBDpO/+C1582bvBRqSOB0 -OaJuplEYiUUGXlT7CiKJLnDKRuEJ87orP2854IGqPm2/NreBUCf6KGYAwz3/E3Ko -sSwpMiAHWzcrcSVtm4Qy7HT9VuMY+Gd9XeKRWpKUMPRzspU0ty9lMBPxARXlRBcL -dBAIZpphK3kU73BEvd4UuhMrbM9za9nrSh1V0xfvjSxr8jfwebkW8EbUMQ9Nx280 -Wb2dNIECgYEA3qWzXCFg0UWJsw8vfnd75w18PBJk0JoSxt4Nk+5AZ7mMeC4xhnZc -mQlG2o+Qm0c28tOwcyYVSA2QSKU597PqLOOrxDQsYZhhSjPdHPlUf9AKKZDvpCui -zbdGqy9yl810xLpiI+yX3fr7VNXkNu+TJivNLhU4hP0IYdCpG/MjBe0CgYEAz6nb -613nyaaJqO2ZtR/vITw6Rf1P8mahp7GLjFxvlG90iF0FHtd2tUpAhGK8Oil+rHxD -5lu2M5mNuOpqE7s+6Cx/T4TQs36CPtjGFQ0QbWWLO9BT8sxOq8d0VLnRNnYsoouQ -MRn+yp4954YhTbL6zoZ8oc5M5f0uNpsDOZjKO6ECgYAxER1tAWIf3I5TKtaRrW1d -5yfo6TjUjA/1Sbx+THRfJ5IgbjW152HSzCuUQS1iOxiN/T8WsV7hSTPx/o++2iSS -jf4tuD3LqFRQkQt6tiv8GvISZQGbEY7IfUqSsVs0vy+rp1O3jQ2O+x/me1jXDodE -U0TdkgmprUXqoJyUL0oZpQKBgQCbHixyQfD0BfxqPSFF1JbRYqW8xh1D2joCg3LT -4/BNFnwbqDA8+4FmphJPUVl8sKY4vZISrosJPDhK2n9mQcYZs7NdeL5UdblgrJg5 -/Uo6DVHV2iX7BXX2hsR0zWBjqB5rRIjuxJY4T7+6A804tur1/it2yh1S5q3wiBX+ -ngziQQKBgQCYpZsL08q3uX0J8Y5MuE4Jx48tIQki1qcvHVqdZQPPQ1b+oNjrVJ1t -5Rd5ZYECS87EMdypVNjSmddVXAZu4GiOGvipfQfelMH0G1CPIP/Sza5DsDzybrlL -Knez705JGgZfhRtIa4rpnjVLZVI5A+tvQqaiHkfHngnO57rS9dUsBg== ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3013.crt b/apache/certificates/3013.crt deleted file mode 100644 index ce10120e7bf0..000000000000 --- a/apache/certificates/3013.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAj07MA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMxNDRaFw0xOTA2MjEwMjMxNDRa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBALuekcfHirJK2c9hlcoAuNbHpmvfGMmZ7kWspEnGdWWw8M3yAKq+ufmI -FeHctHhZFNh1QILnSV0itLVxHLDGWv8xdPE2w5GPTqj35yOdvRpcHjaWfe4wB/s/ -Y7eHWEK7IYrcb+gqPB/I6GMHY8M9FxqF15zdx7rfJGpqklE6jgOdOYetSYSmtBcn -cInOVEfbsAz8v4HM3HRRHur+xriuo7OwqoJLwBfPJj8A+gILMUr64VP7a9xffzrk -srZ1LGCUVXwV+zLZrF695UnjAzpt1aWNFj4GEYh6TQyS1UjV/9y14R5OQ9PFlbpq -H6cderyrkpQB+p3aarjLpAb0vjwt6v0CAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -LDN1ioIm53C/7uiR25rWkdJHM/+GMYTj0Psb+6RPYSAfbkL4mZ03ltrze8/ZY8yB -BPKGRmuiW9kb5VggtuUVrZcsXd/VpbBR36dX81cOWBrkl3hcrVdEUb2LXYKnT4ZG -HWEWijJmt7ZWI6vbVfef9SigRY6WEEKbC60ngNN9m3KiXT3gwERr/03iacWZeI+L -HDEzIyiLSniQ8ddh0g0hJXinuwmBpqO/k0PI4wdNEZlNkyynMZr5HPv7yThwis6w -32VtVhn2gg9A1b67/8BksS2C5Hv9XK9HxdsPgf3aPN4d7QXJdvR4KoKpgjakPTQE -6GBMyZ2pxQuvb19Xoh/itQ== ------END CERTIFICATE----- diff --git a/apache/certificates/3013.key b/apache/certificates/3013.key deleted file mode 100644 index 2f7b56f8d904..000000000000 --- a/apache/certificates/3013.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpAIBAAKCAQEAu56Rx8eKskrZz2GVygC41sema98YyZnuRaykScZ1ZbDwzfIA -qr65+YgV4dy0eFkU2HVAgudJXSK0tXEcsMZa/zF08TbDkY9OqPfnI529GlweNpZ9 -7jAH+z9jt4dYQrshitxv6Co8H8joYwdjwz0XGoXXnN3Hut8kamqSUTqOA505h61J -hKa0Fydwic5UR9uwDPy/gczcdFEe6v7GuK6js7CqgkvAF88mPwD6AgsxSvrhU/tr -3F9/OuSytnUsYJRVfBX7MtmsXr3lSeMDOm3VpY0WPgYRiHpNDJLVSNX/3LXhHk5D -08WVumofpx16vKuSlAH6ndpquMukBvS+PC3q/QIDAQABAoIBAGkKumuzmD+CELg+ -1nImPVZiqRYz7djRScnQgpqbdhbdHbTwDNeLuOuv+TBfNNs8ZKNb4iZn/3cZezsq -fPmr1D6UHfj+xDe2mD+Zq9sQ8VLUyEWftBmq4o0UTGvwZsXVp03rZOwC2W6iORlY -hc5FYa4DyVeWA8DoNacuy4SW1/PFF+QQzO94msPMO4nUVCKMSERDEFc7OXCaD2+z -7kY/Uv00YeVpFVhVTgWZuDupitNbFf84VPaxVy8jICkdvCQpBWem2MVYF43CwefK -Z5QDC75I1Oy3b6uiuu7UCguf6L6M5J8spCXMrb1Firu68aXucc/Kz6UcK3zQSwrL -A6fhgrECgYEA9i+XfNhPHEMKtjosHanwBVF6haRBUby4mVJ3fgqXUPavQo0OToH5 -WSvQUREZaHQn/qsmEd0Y1bQW8CfDBL17OmIWoWXT+fqAW+sfExOWD4sRbgYrlgsJ -uvd4lB0kg5vMUII7C2v6e6o/DjI4g7om+DozN38gd3i1FIewqYcyMYMCgYEAwxlJ -j9T3J8ZxvXpq4tEoH7gNgreX310Ci0bYnzUgcMN8CkIiNtQ/MXCSb83LwakY3oNW -M5Md0dmso1rGGat9ggWC4NGCaVDFutx197Kr53jdJS3qakb5eCUhAJDm5hBB3x1H -v3aNCaPALjiLrXdXFjgBueIOQY2lXeIS49HjSX8CgYEAs3Tby8DuYh6ox08+a10+ -PtI3KwYiK1ATjIhl3HYh+X3pIe0q+aWbOxpKH14ElHTf1q+x76GpAdbmRafmbCUn -l9Z6wqo0zGuDd/27yC8l2yy3xukuipB/RlAxEF7yCBHg7OsR2XCbxdvDXTjUo4ll -8NqUDSdZZl2SOmXzLJEF0LsCgYBRR2ytHlUlXfgurxxuiCKGLGB8j84WwSH5Mje3 -BCQStm4ru+eTHhOBnltzdrInaTIyKVc1P1oR/fR9TajwMtCj5XXkAYSqKXtm4MfI -vMf/NAw1nA5n3k+6LQW1vahkOmum7wTgEByr4muDFg2i4/AFEqotba7wwnkdRr0F -6oAdMwKBgQDxR9uSdD49k7na+aRgstbFw/lbjWL07k/MTRFQqWjsTFLEWUinXzQ6 -4FZhRUEqImvPXcY3F/yqwLzBV+kQpeUzFiY4Dr8aJRio3Y4GVgLzL9sg1gbNuIOd -l0GM+dpp8B4oxpcluqDd2H/c84Y0UpeAYb2mRvtOz7HKygMOyA7Y6Q== ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3014.crt b/apache/certificates/3014.crt deleted file mode 100644 index f0e0c16529a6..000000000000 --- a/apache/certificates/3014.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAhYyMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMxNDVaFw0xOTA2MjEwMjMxNDVa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBANu6n/Hg0Z2SCRCGOnCZOoB+wDgbr9pXXNUGRBmnRvZjnXbB0Z0eqILj -DnIMqjg3YwcPhjYL8g2iCkBGv1AwIdZ/vcby9mrZPl/qm7SQm/OQxAoUjD2ZXMAY -GVAIu7y+NjgIOzWBz2G16b0M4sXdwJ2bGhWAeDzDm23HeSXH/LG+cNXOBhvnNA+1 -2ZsjAUMNU+LXq15UHxaJulW1umBmIOKUL4DdIHTzwsoM+55zWn1e148SgJht1OKX -JuSLiYNAWLUkBkC7U9f2dvBZJjBojau5AdVqL2P3XP3O480t6YODU/+Yms58oZ3w -3C5qUsw/F8HF2whYqVKMl/uHeV+qh5sCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -BErrMovXg1jVzJugoAz3+00+OYxvIvZmrxJZ/kvD0MO3/1af2z3sa+ZB80VR7A4w -UphgM6GdC6fbg2+Xhyqk5BSB5lEJFvmos4Zzm/Bo6BCnbCrQpOChXxUHi/g7a7Yc -u8CqGTmudfNIhgWnS9sM28nCrJTzheaRemX5VvycB4aPgRXmye7CUbTEIt8k8ivv -awFmfo4YiuUxbA6iCCXKf33M6mouL18YtxR9fIij97q5U/ZeC/rcK5K14lteNyCn -swYs5vKuCoSns0jJ18d6QpVjITW2bGrLdU6kko0syWcvWsd2n8gHiFWbw6xEOJRR -S/GS+9HZWC3bDz8Z0oAydQ== ------END CERTIFICATE----- diff --git a/apache/certificates/3014.key b/apache/certificates/3014.key deleted file mode 100644 index 96940133f9e0..000000000000 --- a/apache/certificates/3014.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpAIBAAKCAQEA27qf8eDRnZIJEIY6cJk6gH7AOBuv2ldc1QZEGadG9mOddsHR -nR6oguMOcgyqODdjBw+GNgvyDaIKQEa/UDAh1n+9xvL2atk+X+qbtJCb85DEChSM -PZlcwBgZUAi7vL42OAg7NYHPYbXpvQzixd3AnZsaFYB4PMObbcd5Jcf8sb5w1c4G -G+c0D7XZmyMBQw1T4terXlQfFom6VbW6YGYg4pQvgN0gdPPCygz7nnNafV7XjxKA -mG3U4pcm5IuJg0BYtSQGQLtT1/Z28FkmMGiNq7kB1WovY/dc/c7jzS3pg4NT/5ia -znyhnfDcLmpSzD8XwcXbCFipUoyX+4d5X6qHmwIDAQABAoIBAB/37BNl8TlqqNT1 -ooUFViShzFedd51dvozjx36v/rwUTDGeC2A/uKaqYEypmQ5qyIabdJxiaoofPDyT -znvdNN8fYL4UVVPAXbnYyWSg8X+jXVJWIP1JVdxA5VXmn2HbjsniMLMdOs3tiJ9P -w6KkG8USbt4X/eZhUzjKn86mZRZ66KtwtqxwQJBso6l2GYyv9QR25iPsdC62ICXw -ynxvpiEDDxxHqvCj7ttRZdrsyTnMbtA9XsS+gT1wupgXU7FEF3OBm8hXu24FSHtK -DHVxSvDd0UGc4qwvGgQVzISf8Ik5r3Bt5UIiwpRqGGfi1okWosnJ2ItYYJroAL9v -1wqj78kCgYEA8Xg5hz4E4HuUsFoO3ch+YsbvAzcvYM2hpq2aXyObxsMa089InD/g -NNXDrTiZ5fI7xxRljBOKDtdlJnulcjIoorFHVebz6NbHbgmv5cuBbCaA4vs5uJmV -iMQMnyz1wMqKFt4MmT2U64F3SotJjVA3Xc1s5fP7Rrd2pcPSdEgkD+UCgYEA6PN9 -1RmR+A+ZoLolDYW9leS8zA3WGfDjmMve4dl5cUaBtGswgAK9K3DGmnNq46dPZs5G -2armWfrtDcj91Ld4uNhP8Qepn0/iXnOgzREdkb4eGd+wfyN4q/KrS+PyG22aokQe -ZGvTsKgD19+OrXvkLq4fK6hGZ3wPN2vN3mPvwX8CgYEA1EnfQdA7l2Puf/BdG4zV -2F+O6CPPKmr+UDxV+IikvmTvJAIbkwrxQWIhyxt06d1Bwq9i63iOKqghjGiuNqx0 -Xzw+O/50t2KEKHCpzPxSR1O+gk9eGrYj6f56HkL3t8wZBSuopdynHTlQOCAmxO8e -DgC5WZ1bb3uB+xAi6Qo3ciUCgYASYy3ahUMtVmXk9ux3zceyLjTs0mbE82uzotv7 -7cOVOmCAkjlo0U6HQEac6GFWiN1OmxeilMfL8G+HuAa5JKZFyOU+fEFaTt7qX6wg -o6o218/ecPaogm9C+0ukGOECYztidYgEmzJBbnGnN4E2lmHjgWD6fDTadENrN3ov -hKnnFwKBgQCBl2pnWKa8yl7kpXdfgGSMjhFhNZO0w6evE/EfCKW39CiV8UV74+5B -iWWd/zEK8rNf/o2ynbCxDuv529iNrIqmqZlXOb0sMIGKHNNZpYsYptd7m8KNyMs+ -YhkgAP8dwvtf3SjYPwPRwfT7Nhp0gT5ubRon+BlQc6e/0c71qwuS0Q== ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3015.crt b/apache/certificates/3015.crt deleted file mode 100644 index d0d5bc447aee..000000000000 --- a/apache/certificates/3015.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAjKgMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMxNDVaFw0xOTA2MjEwMjMxNDVa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBANW7SImiJfIJsZ3mHFqo5/0XNWQYfvIO2RGbD1kfXhOWLebYjNWSi/LL -hLXgByclIlSUomTo1lbmIK+VhGUQCZbMpmWooKMbnMvdboKjuSmgg+43KncsVFMt -GRWC725ZdorW9CcU495LB3sewOvrGrS0QTKDlS69JfTu6J5StuR/resE1cCHHYn2 -iGP1rKH+/RkLLpS3ZeIR5lnF7xf9fB5w2625umPnFU88FVjCU6Z8chrsrM6yLsxN -yXH1KXKwj3ddu1xX/2O5ESERBgIzAgfCOIe0EshixJLQb9Lg9oXyPMhAKMaii0mS -TAm2o6tXk49B8eoLJW4628/jjGQmcHMCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -WQk3/R40s9+vynKRlb4X/MxfArE8IDqq8ZZ+d47WjlC9moenB5lYEFNTwYevmX1m -LA+uSbIQs0K8CexsuqpOdBJ2xpxQRjGIWuWU3CfmmlyI2jdGknVRC2IgFOwjaZkA -N9Ebcegz7398EmMX3fPqzSTFi4E8lAdj7VApI8NVwAejLpfiN1+Q/GiYeSPIccis -dDFzA0EOiZvVGnMnds/xYsR1J7tDEQPgrBQTGmPqGfl4HkDnmM84U+V7XAjwq4R0 -vLxZbIW88LVoUCSLVPQrQ+2eMPQ4KRDYIIqoUJsL/mypt7D+/JBNAW6yDZ0rCKGj -bpXxBw2/mz/Kp0bJApasXw== ------END CERTIFICATE----- diff --git a/apache/certificates/3015.key b/apache/certificates/3015.key deleted file mode 100644 index ee3355cc5ad3..000000000000 --- a/apache/certificates/3015.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpAIBAAKCAQEA1btIiaIl8gmxneYcWqjn/Rc1ZBh+8g7ZEZsPWR9eE5Yt5tiM -1ZKL8suEteAHJyUiVJSiZOjWVuYgr5WEZRAJlsymZaigoxucy91ugqO5KaCD7jcq -dyxUUy0ZFYLvbll2itb0JxTj3ksHex7A6+satLRBMoOVLr0l9O7onlK25H+t6wTV -wIcdifaIY/Wsof79GQsulLdl4hHmWcXvF/18HnDbrbm6Y+cVTzwVWMJTpnxyGuys -zrIuzE3JcfUpcrCPd127XFf/Y7kRIREGAjMCB8I4h7QSyGLEktBv0uD2hfI8yEAo -xqKLSZJMCbajq1eTj0Hx6gslbjrbz+OMZCZwcwIDAQABAoIBAQDM6pznaJEc9/JV -QzRYL60M2N2VtG6xwU6ZNKOIfSyDdu9XbrPIaJLJHBuHDN2OyGmb0k3Ilfw6oLUh -4yZmhvPKoze+K+inuWehhhHYKwTyRjV3hWivjc7jWE++ciUBFcEz6Fd5yOuYSzNG -9ftdtbGLI2+G8OVtRGhJ520bro4vkAF7tuMrMTKtX92lUJHmdLZs4f5dDJyFMcvj -NuAfjhIZzcNZe2iWzeXw5qDrNieRIxj47LupdTgL15ZKtr42VHhHWx98UhLahu6Z -oxzctqRqSE+fjqQYXdZBu6UTIL9RB5cCmkbZs4tKPo+yfqSwobpwHr1UquoFU1JM -DpYp5uFxAoGBAPeInqftsBHhwSrFjOZHUmEk2aIDUTJIfIn4KeSUinHe+NyBDLq8 -k57xrzdbw+qmRor/QcaqSdQXDCloqug62GnEvil19zfTGkW9WMYiDbWs7OfNZ4QI -lUHOHe/cbrIGW4Oae3wgz6lSLnHB46BeMx9zLlPBTpbJMisrN1bo86WnAoGBAN0K -siCMp+hCAiHYVfSAu7JQnJLvkSM0vrnloLA6El5AOA0YW8yLrzorZwCDj6c3l8gU -I7z5ttvKoZjbNNIPig7h/iMwaqzV5jo23y5IpLxJT6YCjvgML8lqzc1SKoTEI1U6 -ozgVjcNxcC53UfovqNp6tT6hChIWHvHqN1WwqhBVAoGALYkcZpf7A88b0dp1iQcl -yGkXAA7MKQvcnSTh0ALjVP9HmIjE5rU6EsszCGQBLnFYGMnMN9errTBwNE3k4sOw -fASNVuM0jzhuZNXoNsqc6wbcrefDWy6ZBnn8V9udIXK58wPAI52FlghgMt0QGrg5 -f1eY9h9hbaulZvuUOpCwAZECgYEAhqsViy8mvSI6GlSrSaOEt0bVnc/HJSPlb2yv -Ua6Pskx92byVcTFJOK9oua9tvfroxkU+4Mti1NXHTlF/BNviyN527wl4dIR9F8qG -frRTaUNg+0tjv0vtcVFYwVbmAK1euXZYKrs2+3QJXMXlc//FaBaKhfWnJQ3FHK4N -uG9BrWECgYBLVfiXGjRYU3zrZhFChaNyVWdpxJY0Pgf8A5cWKZaLOGvRXzIPYXZs -xjmxpbzwximKk7Gu56SzSyYGxMJX1ab08Xo0t+WHNiN6npJmN0Q1tO0MIHnjCtiF -MqcEtu+AgSRg52xsmW+pFjLyZ1Kv7qDrznpZ53iuUVc4drIzlQRCiQ== ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3016.crt b/apache/certificates/3016.crt deleted file mode 100644 index 279d8c174fbd..000000000000 --- a/apache/certificates/3016.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAkgsMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMxNDZaFw0xOTA2MjEwMjMxNDZa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAJqpwnbXXAeLIgMo7sEL3xWFlDqtlves5kCFYC8WFy3FpUgZ+j+R1G2x -5VvAgQcFlVSENEL+GSOePCilR4EiGVD+ExJhvIEDy6mMNqDgD9uR/Sz5curA8Cn6 -hsobv66kG16NbPCyJwIN69DQne8B86tZA1ZzvhYMJksdvQN2nPBGOr10n9hFvZCh -32X2P3E0OH88Jby8grATebCq6jadQpYul96vAtxLiZiZjyjP2l2sw3PSzKQUyc1D -6c2LuPAkdLMOK9h2tgsxJT2i6SMZJYeIKGkVqiafbwzfskUcW010Y4d9krM+uz+p -W0nVAlDj3iWGUyvRhjeAtGlgJvr1MvMCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -JrUe+/wurq/Kzcs23lY+B562g+sfpfkm1LgVZECAflQYOfUBycovgoyeQbvWk7OU -+Vi/3ny5DEnz7aTK2vnxxIYg+4/ogXJx5Q5JTGfTpmi5vq7XvsnYHHAV38OTCNNP -HgU/T0xq3mdX/R/GlZcddGbSsm6d8RTXOQc2C9lR+EirHWhWs0PQEHE/wFBlcEGT -QsbpRxKfwHz0apzWdxmuhT2UL1AN+T8WY86CQFRbOmyeeDWTlrjLrgHyFgyURLvW -jWCra00WPk/8RSTbQRbxfuVdP7hwbAie6nXYhcJ4O6i+B6T2+2U5YXLr3aayjYAs -LUXRyKqkq4mapZleKS/cug== ------END CERTIFICATE----- diff --git a/apache/certificates/3016.key b/apache/certificates/3016.key deleted file mode 100644 index 423b26c4aca4..000000000000 --- a/apache/certificates/3016.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEowIBAAKCAQEAmqnCdtdcB4siAyjuwQvfFYWUOq2W96zmQIVgLxYXLcWlSBn6 -P5HUbbHlW8CBBwWVVIQ0Qv4ZI548KKVHgSIZUP4TEmG8gQPLqYw2oOAP25H9LPly -6sDwKfqGyhu/rqQbXo1s8LInAg3r0NCd7wHzq1kDVnO+FgwmSx29A3ac8EY6vXSf -2EW9kKHfZfY/cTQ4fzwlvLyCsBN5sKrqNp1Cli6X3q8C3EuJmJmPKM/aXazDc9LM -pBTJzUPpzYu48CR0sw4r2Ha2CzElPaLpIxklh4goaRWqJp9vDN+yRRxbTXRjh32S -sz67P6lbSdUCUOPeJYZTK9GGN4C0aWAm+vUy8wIDAQABAoIBAFxHOS2q5M/jZZG5 -FGq96IZwwrYX6GEyGdcZPQAbEA1RRYI1bagMHFCuuYf63YERBb39eykVbm5f9MjT -hEw5yh0W2s423j+jwhoQ/G8UAKIjAomY88W5BBIn1dA0qjNK2sGZZAxgXwHMyIw4 -TGLUKUxsuZ8VQ67n5NkgjyvH029Pqjr9CyKrBZOJ1V7a6GTzSbilXaWzMDnk2phS -qva7XsDG1s81BcAj7BF6LondgxsKAOmqpvXkHjM3eZBTaECjOGWGhhgVVWoObFO6 -OxnoRTg88yCosoarepYlx1rO4Cy/rYsON0R43NE11+Cm0tvp9dq077Zk8R4gh6S5 -gg5LdFECgYEAySitu+cPOkQvD1b5Rkm7LLnE7UR8rtLosOnKoSjHjiqShqYGD1Pa -4Hg5mvS26Mz5za0SdiFkjLGd4LFlLgsG1wwJBhOXrWLtfXbo5j6roYn02a9OXu1l -22/0RnH6GDU0LyjdMJCRiI+bUNU6XJtqP/jV0zEvSHRlOrYo+XhZAUUCgYEAxNQJ -4NdCeqqBmlsP8C+Ny6aR53ao1BsKx4nPivkUI+ALNiVfqHvfPN6aK2hGytRmkfnz -mL/RK167JqoR0voYfUQkP4ix9GD0pNedObCKYWE+2wsKbpF6aOBxWXaSNYFy2Z+q -b/ik41Miwu7bmLcAb06SShaz8o54z4XTB7I1utcCgYBTSbt9ZHMCnf6aLFmzx41v -PE+UKdoyDHN55KMYTSkq7OeURqOVrxOeA0leplohU9VOWo2dScA3HMeQpAKPqNMh -MQN/d5dCnAZW/2f5BRPNI7C0fQhG96ZH0Dfk/wYdBdJggFvs4r7POx6EvnSWqWa5 -rA7kjaXVKxRK1edrO3AmvQKBgEK8lmDa+9p1p537lErfBNfxMXVmwVWxmZUQgANh -8tc7JvID+Aw7e/S6kVF4eNBa9jA2rMa0+yoWY6R3c7WyQM1wZk34fkYa/bhKty+R -UUo1W8ePVckpoHSg7S3lSyvDKXrqbTKr/tRpItcvf9um6QnUfTuLuRXcAtByUpxA -a4FfAoGBAKJBLH7zQhAEIZH7I7mJkRazm1IRO1Bv8h0txUJqsOz9Srxm2TVQe32L -BYNELxLrDWHTqGSxnifHehi9RKOq4RZmNQTPuuK5VVPC87mW0+nW29TgeUXUcJjC -Dto2EA+YG3O5BLzn8/UyE+CW518moXJ0Ivw3zF2VI4K7huwnK+Yl ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3017.crt b/apache/certificates/3017.crt deleted file mode 100644 index f54780e36a7a..000000000000 --- a/apache/certificates/3017.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAmlSMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMxNDZaFw0xOTA2MjEwMjMxNDZa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAOKCQi2Q/CjOQx5utcGGONC0VjN0kpQsjlreNeBsK6yj2yy/av6CWvod -rhbAjz4k17rI9I/rB4ip2jryjZ8+jZOMpFEZgrxc09GmiWVxBqWI3P5YZzs2kH3Y -7d1agzvt2g9cuyd6DariWmHbWKf1fVgQiE82h3hw7Xe0S/U27WbmURuJlPVnNU3v -bn3U/XFf6J384ygfVXxyMy9Fi6ATaZ+f/2rUMmnUZb9OQvFuok7oYG6gF5E6fmIl -mGGk8zWhPyOMOZXhhrsXJ4moR0V5YoocLTXp2GP/eYzXG5FUn3NY66y0HYbbnLX+ -5x7mjFUc9Ki0kv7DmszR/y8R3I3/1IMCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -kUtgPzzQTVNmLKXbxXi2lQPlMgVJ8XCfaRs4pmknqy/KzCSJy6fYXyCQ0EUWM5fE -mn4blbmPjfEBNgzZIpLMv0cTGLgfxnm9WCs1jOPXBj/BClw/bQkpk87StCTpNyrZ -4uy2lG1QeBeOooCg+ULcZQ0bpdJITU7ovpKJrhwP8plDHTEjgppr6sv/YG2d5Bz/ -A2YvmOtaTxGjQ42JL+gCZuxvib8bUfU83mReIOq/4vGq9M/yOnLJjEZJ56t2TaIE -j/n2LGBntuLxVh97FDGQTgVEOxGfwx4uZ/2WOAnkP3cLRak6GKAAkaEAi1ygTNf2 -3kFQpkO3QUomVA7S+TDh5A== ------END CERTIFICATE----- diff --git a/apache/certificates/3017.key b/apache/certificates/3017.key deleted file mode 100644 index fccca445fc75..000000000000 --- a/apache/certificates/3017.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpAIBAAKCAQEA4oJCLZD8KM5DHm61wYY40LRWM3SSlCyOWt414GwrrKPbLL9q -/oJa+h2uFsCPPiTXusj0j+sHiKnaOvKNnz6Nk4ykURmCvFzT0aaJZXEGpYjc/lhn -OzaQfdjt3VqDO+3aD1y7J3oNquJaYdtYp/V9WBCITzaHeHDtd7RL9TbtZuZRG4mU -9Wc1Te9ufdT9cV/onfzjKB9VfHIzL0WLoBNpn5//atQyadRlv05C8W6iTuhgbqAX -kTp+YiWYYaTzNaE/I4w5leGGuxcniahHRXliihwtNenYY/95jNcbkVSfc1jrrLQd -htuctf7nHuaMVRz0qLSS/sOazNH/LxHcjf/UgwIDAQABAoIBAEqJTrmr4i6TYWbc -S5c5Uezrywn3rFxyJQ4l3VjSf7S53t/kxZKm1sVDiwwVpY1vlkXy5veNAdeo/RU0 -yAHFFdWeDFxbprfRXCq7QK9O+D70wLQ55w6HMBkZj3yt0k2gQYeYnkWpVmILRm65 -PX1XvT2Dgzd93Cp4Dsy7WduBjbG0Lh+OHCbf/+fJQBqaAH7xq2c4i9/Uvu8feKrK -Q28+XWYYILKO2X50hlE/AW8u1n0rS8qKGCGyAZg+iGiOk3v4rgofWhNlCXZJRdFl -1+d3kFOEJVj2Xuwh1JdciNXoC5LrTDAZ8wI8eSJ/sQX5ExLqYCBvcSPHOcpUGioy -nxs5tRECgYEA+L3Df+N9NA3gUV/3NkF8z/4HJpubMcJFtbVorWBRPQ03QEm745GV -YlGo3+1jbM46zrPi49i8FMXW6AKMZIA+6i9f89P9+ddyjlfkENc+ZFAF0qFiKruU -S7oV5jRFB6N9IDUsrQmXOhw7RWaU2CqzdzxaNr791sxJxl105j/i7rUCgYEA6R5n -89IeuXvHIdG0JZ4plE4mFYalDzFZYxKmNqqqu+pBuwmk5uofeeAP8890Pk99MoGG -QdlfoPjHAD9LgVwLZFQYFxjpEmSw0uanWgzl+o7WXIOI4/izuR8p86SbJjMP6sPI -pJlJqcPMwQPEYmzer+9EMPRj6PjjhjYNYmZqAVcCgYEA0An+4g7FX+0fKVBHNhSt -rFQ9bNgGhCaFIUYZx7BgIdzU0isZP2s68uFzid5FIvKVkt43LPPP0tvpM2E2RLRS -apG3AfrTV8wPXug5srAj2choJlOeBDmg/Xkk6cXb2litxWtT82GrHwoPtKroYKfO -NDLBDTrOmYGBTqxJom3agmUCgYBF9c4UqjZ2S+NTDvAVagXocBuV0jau/Ixq4ynm -tglPI9peG2LVueWAWfHvpY6pNInKInz8PhQo5wAx3sz2IX15upMQO3WXA4jdgkMv -DzflngBO+1qVsAmfwO6CJCA7so9QUTlhzG8C97P3KP5C25FpE1FPr8hcHnWJzabu -pPWjOQKBgQDxMzJKemtU1vsYNJ5XlSDmDWA6fsb+VQXn6G7527KJM4tBQlWXAR/W -kWzLjY7neY5b1gQKoPpQn5RKCkwki/uCdRyDkf9F0A5sJp21QoFnhkAAOokHFq+x -Pq8jYGarLYJonGHTY9I6f4eiF4DsE2kztQul773u6t8HS63/Y7U9GA== ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3018.crt b/apache/certificates/3018.crt deleted file mode 100644 index 903ed65d58f6..000000000000 --- a/apache/certificates/3018.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAj76MA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMxNDdaFw0xOTA2MjEwMjMxNDda -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBANLLktj35/0gNVH6xkPVk0nijHbRsi/qVh9pwI9Z02Gm27PS9QxB8f1l -xMJrPoRL0YgvdWt43E1lN+3dGSXxodEzkD2xuAf8CN3+tQHZfLMbQPz9fswwihFw -Dq8Wd/LI80YDHKQ/kbh7/LD+T00RdY+zpmQ1GUo85y3vHdrX1KKluD/QOomLwTet -0AcoqGCM7Qdoc2o8DLI61HDgzvvloKeHYLg7fV7QihLmryZQVc6YlGo1Y8xd2sgJ -IXSdlrHiaY1kqhKqjxPJT+esN7pTWpysXodCzA+4V2y5JAUNIC4/HOvDgm5mjixW -GjYPVnTu8EMuCVieWk9/5TqamC8PZQsCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -BDUdUHSrpGUnVTNg9V5JoT93PN8pJj5CrUOYpe/sPYNCi2tbbJ3it5HTdoa2ThTi -B7MAb2UnepRvgqpmBypr5EXZj5n+NkMlK9ox3WrlFoSBq4rH0y3hoplaazZ7sbVm -cGBBJHiKwqOmsrocOaKxqtf6NDGyf7ylWJbeKjK+tBaaqrVtqJWNRuHjXGeS4znu -3gDWJcoCJaj+1nE2hoU2vX65BCZ3qRkzFhjOLOG338zr6Fs69lZj8TURetnqGpiE -35+sn5sC3p0dJs+mxykgJSV0lVuFt/wNrdM78Ah8WqerljMv243yrlXPBDZeb+vi -VBiscd7wPwcd6lsky7guKQ== ------END CERTIFICATE----- diff --git a/apache/certificates/3018.key b/apache/certificates/3018.key deleted file mode 100644 index 2e3f6336e556..000000000000 --- a/apache/certificates/3018.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpgIBAAKCAQEA0suS2Pfn/SA1UfrGQ9WTSeKMdtGyL+pWH2nAj1nTYabbs9L1 -DEHx/WXEwms+hEvRiC91a3jcTWU37d0ZJfGh0TOQPbG4B/wI3f61Adl8sxtA/P1+ -zDCKEXAOrxZ38sjzRgMcpD+RuHv8sP5PTRF1j7OmZDUZSjznLe8d2tfUoqW4P9A6 -iYvBN63QByioYIztB2hzajwMsjrUcODO++Wgp4dguDt9XtCKEuavJlBVzpiUajVj -zF3ayAkhdJ2WseJpjWSqEqqPE8lP56w3ulNanKxeh0LMD7hXbLkkBQ0gLj8c68OC -bmaOLFYaNg9WdO7wQy4JWJ5aT3/lOpqYLw9lCwIDAQABAoIBAQDBb6Z2DCiLFD9Z -13KRVTAwIQEdGBkX90bI1NartZZQijoarn/Im8tg6T7B2oAoDxtciZCK6wHe0/+a -+8XUGASSYWr/8lIaoaHRdabM57OS+HOOtWDiJ7jLf7U53rh7xwPXP4vM/bjPPpgI -I5bJ9jeXgxgx5Lgsc+8BK+iNpnmuNhKCRk6IiH2kL5p4GwPCZarqZh8Kt9ZlIAsf -Rf0rZsrxGf8oKJCG+5LfCNx5UXlJu67gU1dyCMnj7t1GKP7CIHk4KBJdDx4kVfwH -tn/IJVaPcdxzpA9+0K6Wh5CVu/PZ4RpL7hfDgmmcC0+yIFN7+D3HqM+LQwA1Bd3i -9Y9A4VfhAoGBAO3jvirotAytAczmueq2a4Ga0SGf0qOXfNFfbRKci8A2EIV/IHdQ -dIyLkwohmDgh+N/skcG8DDbYnQiDzqSrOZG4pASvC5TyYkv37czhhtQx1mMHZiv7 -1WICqjfwdr2F6yGcP+a9tKiHzz5EOlSHcxxhW9bb+UtU4iCSHtD40pQnAoGBAOLX -yOjuVhqdg/QcNB4iGKUpiNuEmyiV1iwSavtq09BNWJ2K1gcQBw1V5g+zL5mQ0JHb -oq43Ejt9KxVcUuZ37Q5H0KhdMg8k4Belft//erdVFzaK4EXSmsIqpAxBfDVOl4+T -p3w3tZHx4FHd+oLSAN5jXjaOV4mBNJSWa5fZfUJ9AoGBALEuKvlykIfQY8LlJhv2 -+mNxl8nfa9eEgObAmFCAYGYs3mlPojK7rdLwMfgdxW4pf1/opzcQhFhlRbCN218y -WJJ8X01NwuaRET1bz7YFU5K/+9mOLT8dNnTlXzqC0y2djN9frQiCyweq/2R1FKzY -pZfBu9FvzWGaO0HfEyy55r2JAoGBAMBWVnOqIjfO9uM0RryGDH9+CByZAzYWVdJo -i21B1vb3nft2jKLQZCpaewc011dOAoqpv/YXm831A2LJNUFUzhsdqT4YRymwCpIC -MOGcrWBlNZl5h0+skquvnAkIPVi1mqySdaBNXBazD5Batt3VUgc+GdQIPRDKDNsv -72qBbkPBAoGBAM4s/TEwOWx40IcmGItu3KRm2JnA8ZEV+P+QDigJdSOE1TCILhZT -iEbr33bLKfvScscDBDJo1XO/LfnfbNG4DY017tcEmXYUZyobNC0PH5JQpiH0D50Y -LsYCtIuB2+U2DsjIuVUW795ZUQ5fPvHQ1iCcMyUKadqnFjnXpe2JsEiB ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3019.crt b/apache/certificates/3019.crt deleted file mode 100644 index 499d9cf1f024..000000000000 --- a/apache/certificates/3019.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAhhCMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMxNDhaFw0xOTA2MjEwMjMxNDha -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAM76d3LEkA4//KHGcqbGkoTAuxkqe3SLeWvbaKCNG1GwPbmWG8eHLCOq -CIG75IRXCEbeSR4fh3vtN3P1D7vMRrHT6WatPGcxp5b6wYOO8pFUPuna2JJP1voM -nunzpaWiMJlOktkmvfNzxm9+DwQM4ITx+HAycZjOscNEYyIol95uDczErMNzvRWT -aqk2PP3kRKLDfO1Z12sxSHqNBR9rQJRz/CPKaBkH0UXgzd+ITNlTbkNnFV5WKje4 -QjzEDg5ztJYz3IcN8/O5+H1+JG+xa1Iji9IDd6m8zPpHLfAIE3+n2Z8RJmiH6pbM -Y7q8uBSz38KPydinhIewQdWkU6RjQTcCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -bfdMquge1BkdjyijwtA77Ptxj/Mf1kIc+k90ymeboEL1AvL3ObpRro9KHpVvMPJ/ -Z1kZLWBGvgfXfddInlBqG/BF8brBxDDnoDaz9VwH2lIau8nNkX1XZaVllGpAf00m -TKGALO97b2vriXjLN+Y9kqvL5b68vuNNzUTpIU5Y2VCTi761GKn1zUchsLt2wxlj -rXT03XpLl1y4VoQfM24jyW4rMfeGtA7DFeNqFCqbRW9z5p8A0CTHk49DUZui3i1y -Vu149NKaz9ubLP+38nkcNWP4Z01P6vh/qzznBHmTMdYEA13yII/3jXHSw/VGk3++ -wFxvqCzuxUHnqWT43R2dlA== ------END CERTIFICATE----- diff --git a/apache/certificates/3019.key b/apache/certificates/3019.key deleted file mode 100644 index 35fd55af1b0a..000000000000 --- a/apache/certificates/3019.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEowIBAAKCAQEAzvp3csSQDj/8ocZypsaShMC7GSp7dIt5a9tooI0bUbA9uZYb -x4csI6oIgbvkhFcIRt5JHh+He+03c/UPu8xGsdPpZq08ZzGnlvrBg47ykVQ+6drY -kk/W+gye6fOlpaIwmU6S2Sa983PGb34PBAzghPH4cDJxmM6xw0RjIiiX3m4NzMSs -w3O9FZNqqTY8/eREosN87VnXazFIeo0FH2tAlHP8I8poGQfRReDN34hM2VNuQ2cV -XlYqN7hCPMQODnO0ljPchw3z87n4fX4kb7FrUiOL0gN3qbzM+kct8AgTf6fZnxEm -aIfqlsxjury4FLPfwo/J2KeEh7BB1aRTpGNBNwIDAQABAoIBABXq+BMzNX4M0Jfh -B+sZRBLCxg1YLlKdInKFfYLi7m2sGB07BB4Q9l+gdd4nI3/QJ5Q5ncyO0i4RZLnm -zY+5hhL2udShq6/R1klqrGteC9nP7gmdnyl/QuifxYRIxNXRYwwZAfv02lCZhf3w -f26SXoQ1i3V2IgloefKPn1/SpKJtHEJxZQLPBN2YF+WMXl4F5CeGvX5rUVpKurzY -EyXEFMJvMab9MpfWmGLZRTW69Qt6nVteNylqRwJSxT00ZASjmjU9plCR0Y4FpSnF -w136VaZFO0rLE46QkhxuwHttgJrnffkihxpI1mgIECI7SfLuEMEXyB51b2plKISy -BH6kCKECgYEA8V+pjuHeBwAR4p1XDExba31oDCoaKxJPAX0tkzrGgE34pY3fmm01 -9yfEmemC2ouVQbE7q1PY62rjDTpaNmXcb++EXDIl/7PBtlOd8wJh4ieEOCoVfLhf -pB6zD5wl+NdFfPInaXppRzT1GVZ9+QlJsaK5gmXU00YBq2L82yX6pa0CgYEA24U+ -QP2eR/0f8hMXjr4RGsDqhto8lUUb7nmncyc3nj71W/bmd1DihFZpz/VsxuhjZlZt -bGpYDAVHbV/mejidNnSGDldDD9kCUmplGA7QzcFQCNjUOENlsU4Lv4UXhCQs6piI -WJDeuTAGgCmwWnscIzyW720C30xul0PJgsxLtvMCgYEAqMCD8BQzwVsoJfJw2HVN -+RGdO9v3naNYPydARM3z1+Irc7uD2BiAgUJ5bk3WoWqzOFFr8TVW1AhPo4Dnb165 -xjyDol2hOWt4hDtjk3FX8+BCzW2GxkK1Ay4/bCt0VMxUla1LJrBhiFoa/dL9ka4P -qrSk0+jT6b3pDuTO+XxNB6UCgYBN9FY0LBxOQjRa+a6u8Q4P6xwdwVgsRftyR19Q -hEe6+W6WNuqGyoF2L12qDOSRCitqRxzamDUmJ6XC0IB/PKWPlfeZFiHpec3aSJAX -6AL8Xj62tZE/Xae6PBXt8Cx2r4YH1RzuHpwJNWXJk4RdzUQjuzt6UMLpWzIWo2rm -+PeWQwKBgB4PuDgKyJ9akYhdMesDMi8eCE+YArSsClzze8pUx8MqnpqIHdiwnheA -3L+HGhUpQc0GVGHb6dD7iTGEyhuJwSx7xc9svlDJmX74OzxxYC+Lj8Uld0XzPpNq -olxzX2/afLS+PNSbMIn+gQqr6rymr27ORtdwYisngMmmsaKAfTuw ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3020.crt b/apache/certificates/3020.crt deleted file mode 100644 index ae6c94327bf9..000000000000 --- a/apache/certificates/3020.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAjSMMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMxNDhaFw0xOTA2MjEwMjMxNDha -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAK1V7An0qqR7ei7bErcknxyMRVQxsvkGCTf0+sSNTVa7hEZ9uZf5woGY -ZdPJRDRWHUfPmsGS+JYZKsgYgqpn/5yKo2DQ2Sv3PhOSTRBNowpVn3N5ltuz+oI0 -tef+6+nx+uZ6sDjZj8o0Yd7PgP/ynCTZghqni2yD3CAt+ncfqeTcrb939Cpxyt6g -hMwPvZolS+jzzDu80ItV6yqlbJtWLtjQ++vSaDh8QuGYcN6Aec1mrpC0E6P6Gz1w -jO6aiz+kGLnvsomngi6Vp00JpbZWc0RKjr6LKw8TZJp4/Txd6TLbc3qO5eg5LSv7 -Taa44U369EHufNSmrHXPwrue6JHVRYECAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -JKU3gNqWqI/UGy+KUwjvku9Cw9TgAoT2ut+2YlPHsOIXhvR1T6XGNI8hrRXFdGv0 -Qps6lPq0PHt7NAKutRSG5dYoYMqJsXuMWJH0fq2Wh2qrHhOr1enLZRRerTdjkJME -pdfx8NsvyyT50r6TDIz+Fn6pnzLfQ2Ih9p16mENeayjXliE03rcUEg0dQs8C/Eph -DV5NAYCbnN+hvQDt0v7d73FrAitCUqihaEQbjEbAHVSINvkq+6yTpHbB/iJzPfLd -NaIMn2DDrB/vqUQEuFmZpwmEQVBJ4pbf5TyewTSu6781it/3VU+1C172udGmi9ZY -gOX+qHZnELQGB9fFp3cYhQ== ------END CERTIFICATE----- diff --git a/apache/certificates/3020.key b/apache/certificates/3020.key deleted file mode 100644 index 06c451960c82..000000000000 --- a/apache/certificates/3020.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpAIBAAKCAQEArVXsCfSqpHt6LtsStySfHIxFVDGy+QYJN/T6xI1NVruERn25 -l/nCgZhl08lENFYdR8+awZL4lhkqyBiCqmf/nIqjYNDZK/c+E5JNEE2jClWfc3mW -27P6gjS15/7r6fH65nqwONmPyjRh3s+A//KcJNmCGqeLbIPcIC36dx+p5Nytv3f0 -KnHK3qCEzA+9miVL6PPMO7zQi1XrKqVsm1Yu2ND769JoOHxC4Zhw3oB5zWaukLQT -o/obPXCM7pqLP6QYue+yiaeCLpWnTQmltlZzREqOvosrDxNkmnj9PF3pMttzeo7l -6DktK/tNprjhTfr0Qe581Kasdc/Cu57okdVFgQIDAQABAoIBAAoORAVH1mZ4a1ww -hWNuknR7hsIdp/5eZUaDxdCFSglQE5prTMsOSERwbOfec0B+BnDWEGpOdnFuwFaf -ZWUxZ1jTiirhstekHkvQXvwlJOJCmV9/nErepBfNqwfseA84ZI/eaj7CEF9wroTY -kOlIT9qra6rUMXh4JdsQD8m9YoPOWSzbu259qP4WB6G1qVwm92sKJqeyGT2B+ljn -yKKCB2SDZzi0PAvgA/ysZVYL4AfHfzilok0jXkcPI6jYAUvtlp7HZHBClKYDGHVm -93ErVrYntvBxIkaFL4fnkuMulsL12q+Pw4jKAd4ti9CCPwQHKTD7RGBMjpLcr1DY -toS1QYECgYEA1G/nfjcdnGq3z+GRo97QBTS2t/pPl/MCOcSJaPPU8g892t2pIYgU -v6B31Sj0x7pTWjUTwJao3dandTOI3uULcbBnqnDjvizGisCEJYrYl0M761MwjEW2 -0oulnr6lJgPfGxh2KvyCSuGKNy3R+d63E2nuDNgO4VH/vHpci0dVLmkCgYEA0OFY -sIPi9lBsS1r8etal+FP7P35hLDt1xfF62Z5wAcRnYWseDF8P2r2q6NfNz7lrd+Zo -xzd9cxq9Dxz+aBUvCZaGml4MjwseQ28RfxValb4ZeP0xOsDHfetViasBN248vUmO -n65WazvNeBn1WGaid2QGAIMyMlVI8UdROG54q1kCgYEAgzFMnDS7c7KwK5BZWgMr -Ilvoj3vlFai8ciJ+3bLfilGBWJ3VamDYt3MJLjnp2UKnYSkwNpqUVNPQfN/Doit/ -Qsm3a5nl+7c5Mc0sjubNVbTu1yh77dTL0ADv2jZQVUbEzL3xlCB28nmQ2vzQFOjG -1RVxLrtrjRkPvz0t09HMuCkCgYADLxwx/KCuDoXIFEf6+2CmS2luC1gh23otHUQ5 -IwAkFsFYq9BWcfCE7hU33WpGu1XXCw0X1FG2OncdTtzV61S/OastmTdpysqYTo4e -uM2bsL0kqf9hHOUtlzPDmHa5SJXmcMOazYaFtfCo3wRtZ4scdMreoSFXwRMOkn67 -dHukaQKBgQCAo+//RIikJRfJZoorDFKzXItKwebT0GCB6bLYFfGc82vxCyoO6OB2 -OfpwYcvgLh49DZJ77IDMsC3eegGfIUuwQ77b0wkQAn5IGfsArcGmpMDsPfU226bf -/QcIL1ctGmnqJMiJOejlIq4O8S/0dXu40pwk/2U3ovLOF2dDP++d0w== ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3021.crt b/apache/certificates/3021.crt deleted file mode 100644 index 7229c31f6708..000000000000 --- a/apache/certificates/3021.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAhN5MA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMxNDlaFw0xOTA2MjEwMjMxNDla -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAL3XqKcSni5UUokBKA2hECEAWglkKV5p8nJHKpSKCJKETSf0a+r4RR+O -AAbfm3C4qf2XXzRukW06qlfvcUtK7XxzcpjqehpQIabTwaYuUxwdZOqJb4KZydwG -LIWcSRrnqcH17/9qatveREALRiJdpB7G9CmS+uMrWIfjhakaYisvnlfmm+zjMycT -vuJGzd6UkEiAZTfZ+hneiKUSJWz1oSR+3l8ZSSF2EUII3gngcrhzcxJRoW05kqPC -Tfa3xKO033rkXe8T7CP9gKJzWg714tieSxEJppZAN1UWBm9Fl6ckxTDKVa1ECCr2 -T4VuLZl4N0Sw94/i+B5qyaFpzJBmqkECAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -anEUcr1QDfCrRn4qzQ+rlrVaKXHZWJAJ17tCIKaBIBxUHZXyObJU4lS7slqZQHoJ -JML/3VciLxygib1W83IHi00F1NI3gdthEqhM7Lys0jqdE1/7RwCv6DHy7rJf49+e -BZ18+PQ4DVIDlCQhbaQhgjLoxlIyZFHKOjwpA03qYjeJ2c0V3xJC4NWj2AgVyXgy -1uCv6ENITi0UTw3YNSC4Di6HvP4xzejYeiBOK24h9n/8iPD31zDytcI1KKpeUlVk -U2LrM0XFAwcdJOo+anM6EPzfP3Dlu3q7atG1s8WA8ZT6yyTSiRZl2ahIJcaoJOcr -fY4sUyY39QM6+ky0oeH1tw== ------END CERTIFICATE----- diff --git a/apache/certificates/3021.key b/apache/certificates/3021.key deleted file mode 100644 index acf0fee5ce31..000000000000 --- a/apache/certificates/3021.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEoQIBAAKCAQEAvdeopxKeLlRSiQEoDaEQIQBaCWQpXmnyckcqlIoIkoRNJ/Rr -6vhFH44ABt+bcLip/ZdfNG6RbTqqV+9xS0rtfHNymOp6GlAhptPBpi5THB1k6olv -gpnJ3AYshZxJGuepwfXv/2pq295EQAtGIl2kHsb0KZL64ytYh+OFqRpiKy+eV+ab -7OMzJxO+4kbN3pSQSIBlN9n6Gd6IpRIlbPWhJH7eXxlJIXYRQgjeCeByuHNzElGh -bTmSo8JN9rfEo7TfeuRd7xPsI/2AonNaDvXi2J5LEQmmlkA3VRYGb0WXpyTFMMpV -rUQIKvZPhW4tmXg3RLD3j+L4HmrJoWnMkGaqQQIDAQABAoIBAETBrtuT6qZs89eb -C56kDutk7Tcph7IiPSUWkV1rAN/P+wHVjKB1etOK4oeaxPl2aFroUBr1UMZ20Os4 -VZgncwv35DFt+vs8unNpjmFZtdAg9UPcsv5iJLIDqmxZxkBwVxNgt6OSL1GilqV7 -b9NShvZ+qD/GdAeC03Wj+ezdGWD6JnbvWeLD5LBQWF4IHwvbci1Vi0ng1yv9hqDV -xRcHYEAnw2aoM8PLeMy14bnnGuO7xMTCmUuq2hN27yeLC8c5DI3DWcmB5nQj1cI8 -KnwIE5d9sfCmXtCwCtq+yv0M8bIEyTRpYo2iCVQafijp5Fkgoek2ln7VmvlcOvKu -gg+ZcgECgYEA3I0xsy9dwEUkUMILvCzSXccW0l6Bm4T3g44je1+vvtpHYi5o3rfu -iWE+odYAF/mzDPnKKhYRCElBAz6CQi6a+d4NU2SbV9rn/m0J899doiQ3yXXRTMrS -Jt+5aXCaRWp8LyON+QVdSnoX2HbyflM2cXKqiaVTYvYK4cNPUwJhDfkCgYEA3Fro -f0fFC3iHthpbtyQkaGxy4qqfMi4s93mBc/y+r+fw3iNGx6Pza6lpLy0jK/MNnb4G -lMgOrhe2J555HoSUdqqPWGbL7bH6kWpINz8C/PpGeuTm5+l38tVgWQyPuXEid+0c -XMCzgBr0h2nbDmlR9ghKmHs2WNuBbFKnwRpzsIkCgYBlRnjB/UghmB5a7yAQYsye -v2MdasQ9M8usn0JvzrqW+wi4bvM9Al0IvJzUF76nQ8QSe0l4FfXwRiMSaEvMNDZ5 -8ptP5eznZOAPFubxE2qdn9/2JKHdj2z86NLtNgXBRmqMAtmYtfvmzTXR8pzboT5o -zey9lCs8UBsjHFp6lacXkQKBgQCTt0lWUalQ2Dq5o4/KBKt3aQPW2SQhAn1YZJaY -R10ZFLYOY72GBW0fxhBh9LM4OhXtob5NrJLSt8h/ZKezApN3vTycuUSJkh7zrji8 -+DurlKb8qUf1PTgQjGOrLlWGrcW6eTPjJbbu8KLtx9N2JLox4TsIXsh+5p8rG3mj -ZHUbaQJ/IYT1hTSgX9ITL+R/ZYLI0LMA33l1y251RxIa4BWk73WV6lk1jY4UCPKc -EgaWoe+OC0BUhT8jpmbN25L0tss6eoyyTO6JG7P2vUiaq5+DPIwTi5XMsXxikB8j -l6mrZVQNX/hn/YkKdyG+zu4KVKCogZXPLPF0wJH6OY0BnQMr3w== ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3022.crt b/apache/certificates/3022.crt deleted file mode 100644 index 9edfdda7f239..000000000000 --- a/apache/certificates/3022.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAhfiMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMxNDlaFw0xOTA2MjEwMjMxNDla -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAMFlyenrPIheTw9YxU8SQcp2OSXrpXXeMWDKxCeU4AfM4RJLh4dNvRaS -OMuOgXT7gTp12TnxcaK3wrAep+C4fWtC8FHYLv8QLBAfgRfrL4nfaaU7Fx5LmTJn -/zCzvopowWM7BjGNeh31nsMUL45FktquuoR2wEWpH90cXoFQUv2fnf0Wm3IV8gZz -36IXnVAMptlwpsEY41QPHGQgOYAtC+2cqwE3Wd9z1n1wuuu4L8QEJ43icwCcoobX -oABwk/mxNBKHyKZMRw2267bqMSSF0kBgyJD8rz8Cq1PKBsOSxh0fyyr525lyoeXU -knDEjuikDkrOqKHh4tvfZZ70xTAKYB8CAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -V81dvl2o7lRtNqi5TDEZeSVhzPZQm+KUfSftGn2Rx7B2xrG5Dj2f/mvll4JzGQUd -CCa1nG8ZU8jquIyCrgHQ95RngbrqxOXGFfqRbf7tU3z8kyiPiSYweWyeQHWPn8uc -rwXOmyEHzkC2hRDp1Vj8itviK+xyZuc3lD9gEkbRRpryMmfAZWBZfKE2KDRSbiKY -VeUV2zD8WJQ4K3G395+ue3SEZbtz4JorVuM6AUtVqt+gxFUYTdyYVEjQNapcXmMy -/i0tNGfVeyYgPNyckTtrApzg8B034VBlPazBuUBDXrquZKb+fl/iOuYOrlfLLv+2 -EhFD1SBQ5DXxf8Ac+DYesw== ------END CERTIFICATE----- diff --git a/apache/certificates/3022.key b/apache/certificates/3022.key deleted file mode 100644 index 3844314ba267..000000000000 --- a/apache/certificates/3022.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEowIBAAKCAQEAwWXJ6es8iF5PD1jFTxJBynY5Jeuldd4xYMrEJ5TgB8zhEkuH -h029FpI4y46BdPuBOnXZOfFxorfCsB6n4Lh9a0LwUdgu/xAsEB+BF+svid9ppTsX -HkuZMmf/MLO+imjBYzsGMY16HfWewxQvjkWS2q66hHbARakf3RxegVBS/Z+d/Rab -chXyBnPfohedUAym2XCmwRjjVA8cZCA5gC0L7ZyrATdZ33PWfXC667gvxAQnjeJz -AJyihtegAHCT+bE0EofIpkxHDbbrtuoxJIXSQGDIkPyvPwKrU8oGw5LGHR/LKvnb -mXKh5dSScMSO6KQOSs6ooeHi299lnvTFMApgHwIDAQABAoIBACxC9oYhv1Xad6+k -emvRWttSWVvzZYfnVVe4sFH6wZcnba95N8hgo1ECIBt+PuSeFwJhLFkViBNciSMz -sOo+bv3YcRXaK09WzS7Xdv0ZZ2Tfi9c0AeN+G86sfHwR9x7IQNJMFOvMXFF1AGPX -P9cI10ZTTP66CuEmhtNdBcgEsSm4MxzMaEMb2/qgNV0u/KmbWmlL7tjr8Wh8y1AI -9V7He2v5b99wtGp0kRarxB+HnOM2mlmbiyqLlbMf4I0SW42Wkf5sG5m+7FFb+Ntq -TVjiidriiNhVEtQHcq16yITVTsq1ro5G6y/2XD9LeqjfmkoUHxAxJXQTFaLEuzeX -tbSTfvECgYEA7w53wf2x2ocWHYYDnVJF2zA8Bsy5jYVQaccpFDLLF/bA/924G9xJ -ZMn75PqEGobTVdYJ/icHE9wOgSmfGxmUJjBVcQsHCcDgHXVwPJaC48Wu9L//MCRI -onmzWbcuPV9wuKi+PoJvr2p6hSw08KU1Rn6/Y8eSC8yQvdkWYZGlMlkCgYEAzxre -UtUCfx/894Z0rLUVoaVgYlv+n5WZNAHQf04nOCAUSPd8g4s7CrW2Odoh3U+QeYIV -cY3o6YqEg3AJmPa+SKpMQDEmpyH+c1Q20InZTsBklUg+jmU5E0O2nk7xaw9LRbZ8 -g7qqU9wLqQFpau3L6sOBThUrZ77/ONf+92vJJzcCgYEA4WRzt50Z9p9NU7LKb6dl -o98biZG3FV7vzXvxGFE3ubV2jQggkWwmavgiHuewbE5YreKr80wa2TevGUsD74oz -a7pApN+v2BtZc40JsKZ8bIMzjSIFWf+r2D0Ew/75gvYcko7PKKLU6MBtGmju1UH/ -NCNHEq3U3nkWs1keSAoJhqkCgYARUUXV10nmJ16Xs/59kobEhXeRwe+AmJm+54fv -nTFaWBRaJZebyECfnKIoJD1ArC6AeoggfqVDIfoCo5Op3rf6i4LkuzdoMkd8jUYo -Gd653wyKDwhsD7q+CaNziVZWhWjd42x1913WtUekUiHmdwveDYr6ZHrEqgvdTPJc -7f5b8QKBgDmmvG6j3uPZl5O5qOPTsDSIW8cmdrQO+EGwDdktffsgIiS839AYPWqu -+/k7670ks50k9Gx3XXDE4Ew9FoPchkqxvyUgzLB0TtsvbfviaYGrPArWh0jxfz6+ -ZtJ/yP0QHb1gSNc9o0djocMhjRpW+BniNW5Msi4mOMs3sxqfkWuK ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3023.crt b/apache/certificates/3023.crt deleted file mode 100644 index 015a42419998..000000000000 --- a/apache/certificates/3023.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAhjaMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMxNTBaFw0xOTA2MjEwMjMxNTBa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAL0fGKFa38Zljy2b50AkKxs8XFuOeJV3UgCRN0IMI1jf7qKLpKOlhmtO -fy/MDLPN7s87lWlnnw2ZElLBCtPfs8lYS0RlNvXf4PlhFcQ1cywad9wplYEA0AmP -lmRLr67N5QEqvWl1KagC7XdwyWFavSfSfgfaH8V44iJodAbRnERdMNAt5tVhAIWY -v2PaEbNFxWnL/xo8ArOd5viKSslmosGHfacxBiyXTyZIqVKM3CaxpbasW5G3g2dg -+h9KRxHwQeoWyRj846tyBQoJGGKglaMGHCmwDZCeekIXwGohoYbqnpJodLgnz+UE -TVi6tY408NvJIktr7gjr3Vo7vsqwnYkCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -JkxbP1R+3HFpOtZQpXulq0WTcrpGFTdKBlTrKuuXify+BWWai6B8JkOUvbHAipwk -EbSdu3U/NQqTTaLVnB+MA9nNRthiBFs/Q+i2FyP96gGl8rUE3GFwaSie4Z7s+ZH2 -X82rHy1ds5oDdKDGK7I7j0llMnX1p0eCsondqV8gXED0Wmx+KiCAIfSubAX9o4lz -2pURHs5Ue6nVe/NILp4CueC1151E4gzxPvtEeeXitDJo3Qw5eMHyDeE5RGZsYbKd -KPKauNNHq6Ql5NxNI+3hvgRjJFPbuXKbKBo5whjIdaMKwWULWFe8B44+kebq9R24 -1pYeUA/UKyubGcE5jLZRKA== ------END CERTIFICATE----- diff --git a/apache/certificates/3023.key b/apache/certificates/3023.key deleted file mode 100644 index 7342f98ec6f2..000000000000 --- a/apache/certificates/3023.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpAIBAAKCAQEAvR8YoVrfxmWPLZvnQCQrGzxcW454lXdSAJE3QgwjWN/uoouk -o6WGa05/L8wMs83uzzuVaWefDZkSUsEK09+zyVhLRGU29d/g+WEVxDVzLBp33CmV -gQDQCY+WZEuvrs3lASq9aXUpqALtd3DJYVq9J9J+B9ofxXjiImh0BtGcRF0w0C3m -1WEAhZi/Y9oRs0XFacv/GjwCs53m+IpKyWaiwYd9pzEGLJdPJkipUozcJrGltqxb -kbeDZ2D6H0pHEfBB6hbJGPzjq3IFCgkYYqCVowYcKbANkJ56QhfAaiGhhuqekmh0 -uCfP5QRNWLq1jjTw28kiS2vuCOvdWju+yrCdiQIDAQABAoIBADV0gKW65d1R/3JI -yshacMS1/vTyBCtbGpaGdTP58lPAl9bh2ZtXwfK6sUB1UHHSF1oD4Wt1moNhbMhv -P/w7EroqdrvSUAKXUSOryVc4NGGW6aIVLujTrfnF2CBpNDMYh04ZIoiYUTnn+e70 -tjcKSsTivjTB9pD+ZgyLsZ/rx1ua7zaxCG0IWz+xqenAwhHwplBjRkDtrQ8RkoJg -BTyPs+92loXsXiMA07/0hjuyRTZ/S3R4mEBI3gqxI+09GQrZyLFG1luGNUY9fAK7 -vZ/qjl+n5fy4sQX2ZeMcLZddGgZqoP7Y2H76rN/69zXQBQD+ZiJXk8erRSQLHzfw -Ng60KzECgYEA30MeTh7+JCsmsB+3vooeQzASiDP2APyrMSWdA2LaYouRHSGUJ0wE -6yFQrHZazRRnQaZFqGdRCfTeY2Lj5pmzCTxvjlKw0GFJX63fdP5LBXDKAySB056I -SdUb+SE0KxYJzFg3u4sWOtzhX0/9o+QSn3UsUrNrhQJV2zQ+Hh9u9PcCgYEA2Npk -y248RYy8xoa1iXaeaWP9zxFWV426eBPKStHjTzP+JN49ye9Yh7ggT8bLnPay8/XP -nFKvBkApYvYZAlREsMI5SI/WwsvcqR2zOWz0kjYEhNy78HE84xGT5fit+4Fz+9Ud -G6/RBH5+Craor+qLB5efNsGHnPFa3o+xet9o4X8CgYEAtbmMEUpo0kfNVc57YTxL -JaUbcIHa2zLOpVJYW0k7OLshgvSyAsp9tmWHpNkxT3wsD+OnD0wJSnFmEr+LgUfZ -0sq+groL8ZE+iAKewDu8FNGZnLU6d2WyyWYNPtsn+2oUz59+vciYb5EaYNpbOeuK -vQBC843XFoywFZyQczRivEECgYEAm7ICGIVnRNBNYYSqpq3CAw1F1/wsr+QUc85R -ufKEcAN2f2YJmwj72UX7/QtQebwutDZS/3vmKmi6zlC/mAqE3xw0IMMVgPr5zXqD -icGOv8OE7xfE4FeNTcL7G2y3DhLeAXv70DslqUJgoLSQ3O1bMPJN3/SHt8kaYx1s -YjoxhWUCgYA+dmRUNtOxsEMTVuIbUXt3CeSYFIVdMqEzL52hAooo7b88rlMcDfdZ -4myzquQpy8xB96CO+pNJ+K3LtkeavUnAmvweLriGl14yy4XRrfcOBt9S8+cHRKsI -ZIy0Sq5tkw4FQjGkc289yir5eKI8sGPQILdiTtTpbpjg6JSx082/Pg== ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3024.crt b/apache/certificates/3024.crt deleted file mode 100644 index ece01b603e70..000000000000 --- a/apache/certificates/3024.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAiZJMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMxNTBaFw0xOTA2MjEwMjMxNTBa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBALp7Jzzq+1S++otm+4tT/GRknvuic1/VD8f7Mwktsd4zjS4/OBaijP9l -4JD96JsnGawWy2AsVeqzXmO6QbmsHZcuD0ZhtnVLpSMpjPd9zvuZ2ERAw2oMfW5J -5s261rNQokEuivRd35+0zsUMpyDcYzTqCj6niU3ErnbC8dF+jEPTiqnCxiXGq3W7 -WigOVYTdrVRxHXYnJ9fJUma9tgTmdXXJDylvgRA8a8hUXYSbweXoL0Oa7RDkkTF0 -P9wR6S/4FXqJ4WI7dbfKO8n0y62gLrL2lGpMZn7w9ECj4oYUQ47QnhpA/p0fs0Hc -6Kaoc4jCMJ/oWgqujScpm4o/3iU1iIECAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -jgZmGdRpGp8bboq87QOQSYqIHnVcjiPS+DU61XD2CkMaScB8Zo8C214Or81RGHnt -nCXH+Vx0RSZJh53+eWANOOuVqtfnK3NJcy3OEDAUbBZMg3YNb7d+aJzzblidsGxO -vAl/GM1dyOW/ZpXMLRJHjv0nYOXR50bWDDqiVi8RMOV/Jja8SIu7/MHoQMuloi4P -uE4qSFkSeAVrffBV8tZ8AnzB9B86RCtVIg4eZS3KeME9iwP4p9udGcFspB1QJmW7 -62n0YWS3fcx53vMqLGu2PLQnYXX2IDxnRfbBt++VqtcxzUtTvMfcfBklHVKLmyqs -7mv2VtG9XUct2mQEK5aTKA== ------END CERTIFICATE----- diff --git a/apache/certificates/3024.key b/apache/certificates/3024.key deleted file mode 100644 index e0d922ea5181..000000000000 --- a/apache/certificates/3024.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpAIBAAKCAQEAunsnPOr7VL76i2b7i1P8ZGSe+6JzX9UPx/szCS2x3jONLj84 -FqKM/2XgkP3omycZrBbLYCxV6rNeY7pBuawdly4PRmG2dUulIymM933O+5nYREDD -agx9bknmzbrWs1CiQS6K9F3fn7TOxQynINxjNOoKPqeJTcSudsLx0X6MQ9OKqcLG -JcardbtaKA5VhN2tVHEddicn18lSZr22BOZ1dckPKW+BEDxryFRdhJvB5egvQ5rt -EOSRMXQ/3BHpL/gVeonhYjt1t8o7yfTLraAusvaUakxmfvD0QKPihhRDjtCeGkD+ -nR+zQdzopqhziMIwn+haCq6NJymbij/eJTWIgQIDAQABAoIBAAxVBJ1EtOY/0vXR -E6V9Il3JQbJGZfbacja5aACdYvvc0ONUDvOAQG7LX/R2tiE8jrgQsdZkWDIzNnTF -5n7O4Q4UX7I52AUdwYf3wXjEeyGsZN7uoX2r4cefX4IPbw9gr7o7x7itVJKNNHdX -hN3pdS4UpCTMk4nvDdKQxcki40fA4nTC3gB8/jCJSgWT3qJ91UqfJOVjnZwcx9dD -d6/KoZdhvzm41p7Zvt3jVXlB+H6q3sfgTlQnh4hzZPEaW92+PGYUtZINT1I/6XgM -4zv4rB+0Hm4+CaZBQM6wNr/pWY9prop+wVtYvuDEcbe8NI+eMD0XmY5qhRvj1nyq -65N8VTkCgYEA95PNSXb4PTQOVNgIkmf+deFpuUtMNcaSpfoEDfc4/ogVUTh0Mbl9 -EpWPpgS4k6F/8Q56E95LlwxAOskwsXkPJtWwQDWxEP3N/lHLA06hhwi5ODtva3UH -17b/87scOFQK6ZJG2ExvJexks4Fw7S4/4cFwhIr3cZkYmQCXS49X4acCgYEAwNNA -k4VmbmcJmyzxT+i/GLUKfcV28ZxatSoE+Iwun5EBM/2AEv1qTrS0sCPkfq4O2M2T -yEbs3zYo83Exfh4JSwHgJcueCn8y9Bv/D1HjH6srob5e0XALbRwRek29PlZXuT8C -yEXu6hlg5/4AGgiYwygxvcCvdPWdkbA0qsd8+ZcCgYBV5od87PV2ruAmGgrnWYPV -vM9lBjY8Flj9k8DiY5v33Jmg47iVJCm8T/5WeR7dwlRU/FPpHuEVWJ/UhcgKW9mg -/NW5gaedIKLfkduhmx+6bZFubFjdbO66rvkhxRMmjCp5HlLMa8DI5LuP+OKIuNpb -ZzW2F02Bsb/yHl1gTy0L0wKBgQCO4Lnb1aAFtGGg0tdn/60BsLw6X4P4GYP4807F -oJG3eKmsjW1GJPKNqUatsZrQ50ZnDUUwxKUl7CrB4CDtM3JtWtFtEAhl/MSTrt76 -yhGCWMI20inOBLjiu0aUGmBcfXv47qCwJ2mVmwJ8RHBs2evfx7u7v7gC8TA1UJxl -4vVOtwKBgQC251y+nz3qfL+tLdz+mrUNUKMlzd7/J4cr22Ig7AgA2Ll+/aXdFFQ8 -6On/GSxisZ+/YU3FpvaWXPJhMjsYhXyM0qd38jdUaRuIA+IsHiGDzt/OoylUcxkM -2U8akAgPbWpwBoSoE+fDIB940Pnlc2kQauEdD7EUOVkGS1n/2ManyQ== ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3025.crt b/apache/certificates/3025.crt deleted file mode 100644 index cf874a7a56b5..000000000000 --- a/apache/certificates/3025.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAja0MA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMxNTBaFw0xOTA2MjEwMjMxNTBa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAMrAD20paE0vuOmjCOFSBbsadN8Q8tOVoK30wh/vYykUeGh48BjdaBwR -H5zBEKK46hMJEmd6SqKKJ7GY9wrSSbi3rY254EeDSn3KkqASL8chlG6q7W1230Nb -tjKOjhSzQL8Z6p0257Od+tabrceqF830YRsk6iI3GOFNTqAA5M8/HeOrTpc4FECu -Araq9YSSdrc3PwrabJOF+A/2fjGLivmATXoP9Y+1tU6H2HQUCHxTjvGFSpqFKygs -pGAA8539PC2elz0/xhGBcgZWdJZ7MrN37kXrLvs1RF6ubpO+rLUFXlrvzGKQWm2C -B5TTAVC4j5wH9xBMpf+ZdaRcty06tKMCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -lv2PSdzIYQDh6+m0MMuUrQcfZ5R6kMssSo/DAxgRyyl3vlMMXIUvkxiXXaIvMD+F -FqWivEY4Dp/cxBFQA45zJCj0n4t6mCP6FuTUBiUtStWd+LoxBb3BEUOfiQ9q+3m9 -gKhocz+ql0yngG3leeOw3nxTsX0euqsaZLXmq9OIXXDNZ5c+3cZUDzz5lLXZzM0r -XuAnJoyWXqJc6A9E3JxtA6RMBT2aOVSnx7qygfGQXZvvZUmGN1lCebYTXXbmBbIE -FyRjQKgTwo+4QByVz9be048IB5K5P0cV0BSabzzXSOAV3DqQ9G4x2PX/aSMcoFIn -LZxR1WY4Bxr8OPvHT4rqoQ== ------END CERTIFICATE----- diff --git a/apache/certificates/3025.key b/apache/certificates/3025.key deleted file mode 100644 index 3e5c78fb7897..000000000000 --- a/apache/certificates/3025.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEogIBAAKCAQEAysAPbSloTS+46aMI4VIFuxp03xDy05WgrfTCH+9jKRR4aHjw -GN1oHBEfnMEQorjqEwkSZ3pKooonsZj3CtJJuLetjbngR4NKfcqSoBIvxyGUbqrt -bXbfQ1u2Mo6OFLNAvxnqnTbns5361putx6oXzfRhGyTqIjcY4U1OoADkzz8d46tO -lzgUQK4Ctqr1hJJ2tzc/Ctpsk4X4D/Z+MYuK+YBNeg/1j7W1TofYdBQIfFOO8YVK -moUrKCykYADznf08LZ6XPT/GEYFyBlZ0lnsys3fuResu+zVEXq5uk76stQVeWu/M -YpBabYIHlNMBULiPnAf3EEyl/5l1pFy3LTq0owIDAQABAoIBAHgT8471PR6pqtxE -gJfh2h8L9je+c/I35efg06/SOWo1A3LsXVZ8mpI02gIendmhppALiWjblqRZKlUW -gQlZrevGbPVJJrlz2oRRmzFOVBmdm6lHdkKkamocQPYEU8WSvD/x+2+M+wD4CX1c -yjk8VcjWeUR4QmptM0EMZgqBPQI4E0Pt1fFg6m1ludohSmFr730qag0NlmdNzzOd -PI/KCkkvm7MH0XncHj/jLZUuB73gEXOof9CTrmYuTJ4UkF5//mFAcMc7PnpfPfyb -EHNGiBawhyY8HSMq8a7Bs8Bc/vjAUbaFY6cV6BPC8ZyucGmjbZMW3vHW69nzQhGz -lGsXoaECgYEA7aP80H6wqWsiUnL3DYuLM2kv6H1pbXtcH+lKHVGFHDQPQJyQeU/L -fyfB3cU1CHBK47SR/hmjJNVVvVQp4CibM5WrkjzRsWtef8QwfjGaOz4ko3qtDEUe -40bBoafUuXdumBt7dRq7hCnixMajEvxPtmlCIS+B09PSScRMIj70XPkCgYEA2moE -kMDUKh3Rmz0gRI537BdQA1wRxfvyPY4TXDz9/WlyjFcH6vA+Q7z/YJUE4QWp70r5 -DbunFJIm96NfNJMMIJEZAn9eM1IjJ670cwIfpE5/9VY6q6PKchKIrTJL9uwtldt4 -wkHl9u1zdRepUlTA6uJbV+XzbN7kkwKguGWxkXsCgYBOHMcvKVWcerCvdUar1yCM -Z5jtzLto11Gy05YfCPq+CIay8EO0/HuhckoRQY9rFK4pJuOOKJMtukoSj6WsHuzV -Ce95hDBRJz/Ks4xVDqzpqEWWzu4uyFGc11cycd5EkHNz4CS2m3DjwnjdwYU86l6x -UOwByIHeRRQsVy/HWfYs0QKBgD89s1S2gLgxKh/o8w7msZKKrYBLiFnrOZjZKoHq -pyBZB/HawVAlf+HdN5SfkWoWWb4P101CqH4sU1wg0dBHQ5uqZ7NxbbUucz9qSR2D -3+WTVTmUXiiUpGmjNC/yAEze1dQuWCjnK87zshqVX1GXeMSKBijNTE6Zu1VVzXOW -/nNBAoGAEFyIjTnUvw8/YQBKrJR1LCL4USCnaB/9u3hciHXi+pEjUo1/6+jFW/6Q -g4ssuFM/bKsEh3qZdy8S+cEtBAAh217nu06n5+nQxsVphIkLpnariS/zvJmjzQUZ -1wUStiatQetuNToG3QyqAKtYWt4JW/1S4EJTpTEKmAYZCVVuTNw= ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3026.crt b/apache/certificates/3026.crt deleted file mode 100644 index f1149d4b93f8..000000000000 --- a/apache/certificates/3026.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAh9rMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMxNTFaFw0xOTA2MjEwMjMxNTFa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAOiwerJhv03PI+484qWmoCxDjyYe6nsZLFVxu8bQvx0Z5bmCAdQvUhho -Z+VeMaZ8qVexceYmhNT91pQpI+9IQS08jVpsp8XyahK5RZfBnl9EK/cAjvslzfO2 -79T38w2hmvbixumLnVy0jLpHpLiMjGGuqMJ+RlUsw28brzuXoACtCBtkNC3dUvgc -xiSQzLFJo7zGO9VkvcLysKAJ6eqzTkAeOD2zY0sjriwNX1Pk6N6XXfF/L0HkGkbA -e3B9NKFUsn3tiFRp0iXH3OZnB2LfSI1Y8p34tNyW5PaBmkkuLOHKiX17XDlxUTQ3 -uALNLv6x53MSVE9EJeTC+m/GzpqDnlUCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -MzVT9FeYyhWUGoNDXVl98p+zbiOMNwBS3B0QLVmh0vGtyLzUeuGvL5j7+kpmNNnP -Z6e1C/zNDsmDkmbR3sAy5LPXx3233lvDdUL07Lpidwf35S7QEk/aoOuuFUu82q5r -cRKUr+rM1T1l1Nzs2aga5oZbov8EtU5feQqpmeRlQL56khfUBPtJM3RqUhHTkyBS -BSm0IvYDCm5OC8YxhYrrkBoom9+RSJcL2WrH10xCqIdGb+EUzJFFOZTmuyM2CKlP -XCkiosV2VvGJH9f7tEf3YIB51xoZbL7mvS2B0B66Fu1i+0jXMUeNp8r7kE58szp8 -s6PACv+hwD/5gBYw5UjPfw== ------END CERTIFICATE----- diff --git a/apache/certificates/3026.key b/apache/certificates/3026.key deleted file mode 100644 index 331d9cf740b9..000000000000 --- a/apache/certificates/3026.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpAIBAAKCAQEA6LB6smG/Tc8j7jzipaagLEOPJh7qexksVXG7xtC/HRnluYIB -1C9SGGhn5V4xpnypV7Fx5iaE1P3WlCkj70hBLTyNWmynxfJqErlFl8GeX0Qr9wCO -+yXN87bv1PfzDaGa9uLG6YudXLSMukekuIyMYa6own5GVSzDbxuvO5egAK0IG2Q0 -Ld1S+BzGJJDMsUmjvMY71WS9wvKwoAnp6rNOQB44PbNjSyOuLA1fU+To3pdd8X8v -QeQaRsB7cH00oVSyfe2IVGnSJcfc5mcHYt9IjVjynfi03Jbk9oGaSS4s4cqJfXtc -OXFRNDe4As0u/rHncxJUT0Ql5ML6b8bOmoOeVQIDAQABAoIBAAKyyTl4WLeWR1xj -6FzzabgZsHdItH9o81KqVvsfQJgdzMQx9cN4KQOPcmT+iqTbnTsfG6sHl1LA/tQJ -BhmoRNk5coox6GArR3+gFmaEIEoKiFf88auH7LN+05kspuzpitqCFrxumgyRK3Cd -lBNvzdD0LZDT1gz2z+1h7M5MG9bmJSC8YCuPY257T5hcQhMF0Dqgw/1cNSp0A6tQ -p6fOnCWQiPQ4j2GrSLpw2M5EiG5r99ykhvjRDnC2o4tdp58c1oMFcmVPEdlFc2BB -HamDSQK08dT5UqyOBvkOzZKZbpZIR8tdVztXyhfNN7DJ7a/SWdPPY/rrZmmHPoUg -+ywFrKECgYEA9eySyVxwVczSVXeUmZeEB0ybDbXNRYX0SjC7Xw41VM8N+jtWTDyF -aOUidDskjcjPxzzJW+A5acBmZwUcoA8rsnXI6mNofjY+lRD8z56wk1rfl+rL53AV -edVgAYCunDLzwF+WF9UkEdXWhmZJvNrqOHYQ90XpkIBWRz0kAx8Piw8CgYEA8jkX -LNxadyZTLBIWU64FMIAAh65Yo84crLlNirSnwiQIqDJb4GlXZmFVnT9fyJLzSFpO -NUlnkklbVxzTcqDTkZhTTCvLt4atcQcaE9lr1jXbh906ZQtCQFJiu1enlistqj8y -ijmEAYcIcEMKsjlTQR+gbG1Ek7tyErw8SyTv0FsCgYEAqouCjEQf31CouP6xvgY2 -WH2Gte5TSZiI/n5nIpeO4p6o2dUWls4N0t28lBCD3BPcDBaaqa2JA06bdWw1GscK -jbtjNzDzQTvLEMN0H2O0nqwRjaAWAg1Xx2LzLneYH9ix88IWK7bzSa8bE5+SGXdT -oQ4329PPExf9PXAoLkX3GH8CgYBbpEPjYh8L80EGbHVsBWvLNLJ+ovTATKvGoXj3 -4G+T4QQxdpQSLGi3wF2e16pKfWZz2k66lGIOE5juNWa+eKBy9jmVmQBDGD4ohDJW -jizhZ5D+LzH3prHTGhhmnrw18XIedjiN2ULbPRZxOrwiP9QC0I9mVlTau9FlyzfY -ikn8/wKBgQC6zGMIZs70IYtT4njSp4hf223k/v8t+ods+SDmBWvb7EFpE7EI+VvS -VrSwFI76NTBzp0nzQhDY+Al5+duh4cGO8S8Q/9Ee6oQ7WeeP7i6FmRfpfWHmjtwJ -ZERY6yy4NfYmaQJFnF9m2pQCQyuERwIaMPNAegHOm2SfKJMTx8vzPg== ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3027.crt b/apache/certificates/3027.crt deleted file mode 100644 index 6ebf8d35d009..000000000000 --- a/apache/certificates/3027.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAjTPMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMxNTFaFw0xOTA2MjEwMjMxNTFa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBALF4I0NwBJL9qtzvlBRIFUS5ZU7N/MHvyEtW5z/Eo92K4pYKrUu1G1hF -GJ1qp7MNwTuvNgAKtu7egPcKIpTqVPGvArNu1ra5Y/YramWAV05pwz7pZ3aWQ2Yv -kNf5WzQqz8w5HiTS/ZvRpF4/Db17rsUECrjiJ3G9Y3zGdYu7dG/f+acSb7xc8kIX -LLrIvTiSLe6tPl+W/A298FDIQUwcoXjVEGfdhiuqasUE9RhtlDLdgOXAUfkyrclz -pyZQe8ysxR4vEqDaQuWbRvil7mo75kpwJmlq4FYx4D7GnJwt43mtTDKJtXosXAYv -qyVzPSRQtK2pDUtowp1j71weyjcWEVUCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -l18+2ssIrTRVsY4QfQlg2iupH79750lTQh/aEOXmuYCgdsX0ozcRwaYvVFfmA+aD -2yP4iqjM0tWrJtqPgaoaPFpKRBZmYz5ssyUonhD1//y28ozSg2J7d5wU++/GIHEm -otQCj2r/7PP/b/5esnGGLsKpv7DOhTzYTcUWImKOxvypqeGhIoRB5KjeowfLYxg+ -2DhmqRggSSlXlUmbeqbrBWfceJNpWxZ053V7gXnOmJqIF9uVDaie1yEGVEAOpy5s -GacFkJ0JEMVv1ybxfZCDSz3yhDXgne59ottyCnw34DY0Vm0MZ30uJft/eyYHy0m9 -8UAD8aY0V85t7FzTg3XggQ== ------END CERTIFICATE----- diff --git a/apache/certificates/3027.key b/apache/certificates/3027.key deleted file mode 100644 index 6eefbdf2d078..000000000000 --- a/apache/certificates/3027.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEowIBAAKCAQEAsXgjQ3AEkv2q3O+UFEgVRLllTs38we/IS1bnP8Sj3Yrilgqt -S7UbWEUYnWqnsw3BO682AAq27t6A9woilOpU8a8Cs27Wtrlj9itqZYBXTmnDPuln -dpZDZi+Q1/lbNCrPzDkeJNL9m9GkXj8NvXuuxQQKuOIncb1jfMZ1i7t0b9/5pxJv -vFzyQhcsusi9OJIt7q0+X5b8Db3wUMhBTByheNUQZ92GK6pqxQT1GG2UMt2A5cBR -+TKtyXOnJlB7zKzFHi8SoNpC5ZtG+KXuajvmSnAmaWrgVjHgPsacnC3jea1MMom1 -eixcBi+rJXM9JFC0rakNS2jCnWPvXB7KNxYRVQIDAQABAoIBAQCOK+ZkIhsn/pug -/zUrwkt3kOZ96Tsxynw1DtuXFFsKIjc/aDJIUkAjyMbdZRIPuVcyDz09b1f5qLq8 -LZxinA+Mxl1tjb/pBj/0d/d2dQh8QvItNiKyt9IqzLRGsPbFpf5uZtulOHn/GEWL -UwwY3jq2jnRghJyA2+4ViY+lb3jqHbf8s+NDDQLK7tfTUzm9Qd8K7nUgIyFsAgXY -yYMx227pl9OfOPDxt/HikLlglBxBeHT5Tr2dyaiACuw66xTZQxhTLSckoDkNBq1v -6qb/lKotGAm4dwTYxm20BfzypSISXlRyTTGzQ7zsMG3HQqvYRvKDE2chXjtmkRb3 -td50ljoJAoGBAOGTrrebNKwP3ZaN4u6zMWF/3xJsYgK09S158jtdPw7w4MO5GPq0 -E3UXExnHcELVj8uGq6RdMF23Hw/sIeg+yrLpiE+RcnACTqu8QwZ0jdBHOB+exhym -HbEyaJvZ58fi3HmWSEBKgsRCVR3yxGSGEGe5eRHT/l5mo1jqal9P2ZHHAoGBAMln -e1G9FLPjFtOmtvPv5rYxwB5mzlYVNxsUyK65Uuyf+Eq8puDcvjGm3x+VdfwxRQ5o -jSZlLVFXQC2umtMnuKgGQ36kIvToFDzN5Uk3IJ1howMI25pyk5JrSPaQoEB5QWLb -6KfsdFESti09Xnb3d+wWR+cotdHLFnTVt6AMq8QDAoGAZ+OjOO5jMMdRz2/jTvn6 -SSQiMZL3BLYgoOQj2pFUZGYtrhaGWZgryeZppprCqhU/V4XbcSR2DQM0bBndd9/L -bOC/JZ4f7VQytUdMOyHc2kqin3V5WmJrFFvZ78VIyTdDQUAkYG+wkADYwKU5K+7O -iWbTSpGu+f0dR+sWOHVHB6sCgYBXipk5kBwdjIlxebdwFEiNzNYa4Miy9gm7xa7s -8zSuEWJU6ecHOiuZXVUCX26nLas8dglUNQobnvcQZCJ7wXor3n0b4LApD28sdrpA -tquAfN3kBceePEsUi3ltYrOlEo9vLvLTep2cV6vDwjb7Mtl3Tr/2I+XTyJh8NCDa -emd2jQKBgAHCTS7l59JXbXWoGQy+T8OEfWSVZWWpB4CzoOin+ufhUl1zkpIDNjzj -lJrvVJ8AzLgw6g5ndYi4ugC2dDqbOZ6Dm7Rhr7y//WOjcVytjaovVu+zokY/QQgJ -INyK/WBDEyRd87VKVxqDgAXmya8RAxz4KMB7D6Qg681VbNAH/jYh ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3028.crt b/apache/certificates/3028.crt deleted file mode 100644 index 303c9d9e2402..000000000000 --- a/apache/certificates/3028.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAhHdMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMxNTJaFw0xOTA2MjEwMjMxNTJa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBANoz95UYgY7iK5oyFYmqQo4SYqScvkJpT/qaxSHkCtLYrsszWMjAYM/F -Erdh7ppPGLky4FDJPXHSzAgVFtKnkowbDBMxD4kyAi8oLebFBzDPtJ80E+VEhP8j -ypwqH17bh1LzUmJvHGccEC2hHYpyxJAhaZo9ZktkQXNbhm/k7Z9P5GR8ytGHY/Pk -jmkyHK8P5jV6n+dTqExGZ3Huc0exoPwTIg5Xc9tPQagekuFDzP/q3EQtsHOgalZN -glKfcxayZeUfuams8/NRzkiJ4Uw2ReiVrYvbT+BCrIEYSQO8PqwMP+EAQdkWR2Jr -PV1NkMF8nPANinKJghNKx5mYtLPudVcCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -QQWbmhMagn2lqvF0QRs93+wOkJYXs8TTzHCUMYQfwgwTdM8hZ0Aqm+CBLTr2dzLu -zb+uor3uJOrk49kTgHp/RlAv6CIrR5Dl+8J42Wbd2rwBZpUKz24MsYHHlhmJnXC3 -JQ+3vvqvJsCkR5gR3nriY/8u0yGcJvBKLqeTl7Ne13wMSO1j/Hqlqd9E5MkrWxG+ -x+QnGW96DGjyXU1kLM6v2z2GE86T3df7589Wzv8ndKuB6u9iHOZdSq4IpiZfigEp -m9jw7Lo27e4tMZesJuYc4yJ8m0JHPaZzRT9HX6DcHU7EtvPh+GGuSo7cLL5dGZAr -aMPbbPajl+lHnNRlF2An2w== ------END CERTIFICATE----- diff --git a/apache/certificates/3028.key b/apache/certificates/3028.key deleted file mode 100644 index cd666ce020af..000000000000 --- a/apache/certificates/3028.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpAIBAAKCAQEA2jP3lRiBjuIrmjIViapCjhJipJy+QmlP+prFIeQK0tiuyzNY -yMBgz8USt2Humk8YuTLgUMk9cdLMCBUW0qeSjBsMEzEPiTICLygt5sUHMM+0nzQT -5USE/yPKnCofXtuHUvNSYm8cZxwQLaEdinLEkCFpmj1mS2RBc1uGb+Ttn0/kZHzK -0Ydj8+SOaTIcrw/mNXqf51OoTEZnce5zR7Gg/BMiDldz209BqB6S4UPM/+rcRC2w -c6BqVk2CUp9zFrJl5R+5qazz81HOSInhTDZF6JWti9tP4EKsgRhJA7w+rAw/4QBB -2RZHYms9XU2QwXyc8A2KcomCE0rHmZi0s+51VwIDAQABAoIBAFbGmexqTYPUQEDX -MCeKVWOIvj/2sddZaFwiVsluljtZvtHCvsk/cIDQP+w7/xbQ4+Uq7XhTP6NXkJqa -QHRP/gDH9NphBWurPqEgWnjO3Fg2Ef/KRytDP5zzz+yg987SgROk/pt00pfS2kA7 -NbNMhw1GrGeRiW/sE/dba7BuG23iLL1Pv2ykLAvzPhZB/WPqMGl/9WT1HqtFgvh5 -R1qVJNr44mMaBnkZQ+UAjI3vDsa7GU/sN15CRpo/OlAtGUXZY0WEgrNl99MmdRQd -KlUWtChr6oC9GdoqzTCJL+CdZOKVsdKQFDzynzegzZMxCVt7O9cIPxi8XzzmVSFh -lEFD1ikCgYEA9CrBdvLgZ3tDrK9Bf9PERNiNvjfKlYBC9fT10y0ALY3c5JPwzvj4 -nlySh2wYCcOtp3mWSzG43KNJ5sWXLKd/X3++TDm2GSTEedK9JsEwn107xSvZNBuJ -dPlRg97s5uZrPPaQkJuAkxnqL0lhPVHGOQ9XcZux/ab+bpKzWUDZlw0CgYEA5McX -HDtrJsjiUWHGENSAo2s+H5E8/j6l+zKdECi27/KFg0klyo+8KWqt9zgKWY8F6m+a -C3JuMJuR3nx8yJI9LhvVOxvHtw1kiRKpCikaSO+i/yCCt3C3YGrinMae52eLdQeC -7S0iOyRE7izEh7m6WGwb+6g9cbBrpDhJG1cvZPMCgYEAtLRcAGOaLxvsJwaBzE/3 -BxjaNnhmByUo6Y1EzeiVJCHE5KqU4ykiH1nV3EHkvH1ErRjwYXBIJ4r168Q6sQK5 -4vzQ4usnWQ58Fskf0mnSSW+gB7n/A3CJ17eZW6aF4BGSNkkpDsz3aGcaiaqeO9qk -gKBZECyxm0+XKFCMSbcUEpUCgYEA0vXnkKgWEciyMVtYulJKYOdWfON/++6nPfEZ -NjplHvRjO4HrMFPErehqjQqHOLiTOvA4e4/EnlwGccQXiRiZA/i0cvIWAu19pIyp -he4LB/C6PEqtXxy4bFeDqg/Zngc0aPFJQQ4af7DdQ0fS3llcxYbDcxdbuYd2axNg -Dq8hzBMCgYBKGOIwzAJ2A9iwJqsDowEBi/LMw+Ihrn4JwAfLEjYXc6RVehYPlPQn -Z/GfCQnCLvDxqwsAedKnCV/ZxaAimgwaBpvVGfhIv68ywr25ACGx8rl1u45TbqWx -u7kLf8trVvCnCy05D3faNyZkPNdfwbmYuzzhMG+S93pqR+rm9Pb22g== ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3029.crt b/apache/certificates/3029.crt deleted file mode 100644 index 17b45c222089..000000000000 --- a/apache/certificates/3029.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAknXMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMxNTJaFw0xOTA2MjEwMjMxNTJa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBANfx9FkoTn58RgA6DTF6kYSnlb3TsDTgtinNH/GPe+4FKb162kqD+XD5 -WfzRljVlIp2lnrKt1RRkrHv+zEv3ap1bNIPxZLRm2FHQc/YalFTGWKmtBCMNPtIV -zobvd9VQynKLVm2eVjKqHOCUsgoUdx/zOlAxKRx5+x/yT76W6y6faIqayLMBXueC -HmrLWIfdR7CccIdji30e4+P+saobemhHj2PEYRdEnQWoITIr8Tt3a7ptQXaFexMX -Uv2iVe4zMfU5AGY1qlKhD+6B+cJi5oCr2XTyyQe0pXSuCN0mf5b9tZZkc7eWCVft -PIXWIthAwlFF5G81AT/OY3MBP+q/MwMCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -aEfcju8b3ZumAtlei8IDNp8o3iMExwv+veUIrFqu5YLbuWuIk81qDM0WEAvP3m6U -9dtBf9pypzM0fxOK9z0lTgxeO1+Es+0XTS7tFn+AZaRg+DDFasLcERnqvd7L4Y7+ -MmfLMgAqP354C8dJdzmLSqQBdle9Bg5pLylQn+a5Um0Lapd/LXU+lQZz1qlzjH2I -fZBnYBYhikqSTWQB0Xt8+TBi5lQoHDdo4MhvOftHXiA88Bwe2vJ1hcsNW/oxGAU1 -SPow+aCsqUDxDLpFlT3a58FGMkdHKEnXu7cJBTaX3sbE+sSoHYBAPzgJEpD3UmF1 -1RLqjY+lU9tF7qIu79R4GA== ------END CERTIFICATE----- diff --git a/apache/certificates/3029.key b/apache/certificates/3029.key deleted file mode 100644 index 9d9729d7d668..000000000000 --- a/apache/certificates/3029.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpAIBAAKCAQEA1/H0WShOfnxGADoNMXqRhKeVvdOwNOC2Kc0f8Y977gUpvXra -SoP5cPlZ/NGWNWUinaWesq3VFGSse/7MS/dqnVs0g/FktGbYUdBz9hqUVMZYqa0E -Iw0+0hXOhu931VDKcotWbZ5WMqoc4JSyChR3H/M6UDEpHHn7H/JPvpbrLp9oiprI -swFe54IeastYh91HsJxwh2OLfR7j4/6xqht6aEePY8RhF0SdBaghMivxO3drum1B -doV7ExdS/aJV7jMx9TkAZjWqUqEP7oH5wmLmgKvZdPLJB7SldK4I3SZ/lv21lmRz -t5YJV+08hdYi2EDCUUXkbzUBP85jcwE/6r8zAwIDAQABAoIBACOZa6LXFjmb2x5m -c45Ymmy4A+OLZl0RPnadrkpwUQnoJ/1op1vpbdHGCaO4GX8r8Qz0JLloFtyJzDWU -x7EuVJEkW//0Z5ml6rtyFevYbeOb3zn5n9j3cgfIOIfeKm8sJnPDrLfdhnBLwv7z -BHbM8OZ/fnmB4TkkktWtaKAO2S6SIytkVhOZrmAZLEbIraRbLx5yYh1yOzcpKS8J -CrQaSO8BZdzKA5d6u8/FyC8m/KY6Y6tuVOtRdwvH0P1Mdkk+9wN4SjPp+TPw5WE4 -MnPWYiy4+UHSNIdgN/IMUd0+i0t8/aTuZhAGaxEC31EsHQMh8NtFxTE0yYtXAYXK -zAe/QGECgYEA/4YMKpFnquCsRYUDlg08Pj/7tP1n4RsRP5s99EFXXkR3DRFHgKCk -OtO6fqceb5ZEUkR3GA/5Ps1Tl2ACM214knYcJRp6A3Uns7Mu2VhZNCjAEZEUMeEI -xIcCBTyPtdY5vPYy7mo9zzNaLJbmJ7TChGY5sWX0LNaNPH4iobY2orUCgYEA2FkE -fSZAFu8+8vaIoFV0sUGU3y4iIWSyvWVrHNNGaE/tNO4ed5oE3er+yoSgm/ccr7z/ -ueaJ55rPFpPscTlszYB0xcaoeteMSPD65PyMKR+kXWLjFYy7P7/K0dS1S10M7LuV -cT8FgYaH3tYeXw3ofXyRKg5rUhYGXkn5ZcBBedcCgYEAnlLRcQK9SByDwWOEcFHt -FOkSLfehiNH7ovyuq4xc9RTY6yjcs+9VMvoDoPwtmJhz5sFzRV6IYghZFf8v/euD -fMRf9gFsvn21xttsWNEsHGxvbbMF303+376DWvlGVjXReqrVrfH4ME0yP1SUcN/I -cr7gWnHAlJOv2V6SWL6NJc0CgYB/0GdkgHqQkhuAcsHY52OfbP1EtP6Y9+LZHdeg -GfmYms+q25rIUgfaC4EnqB8yxVT/RgtWiqqiV8VMs2uWoLR03BUg2vKiUEGiviub -qNAtY3I5cbhy/MeLLAXo3V+V/I0sNs5dLzxTf2U58wnSYmcd67/fNtGUl0p/3fgn -cuO71QKBgQClPS6JZk1O1yUONSMOjqkYlEaWU7suifDkG5Xu2c8nqTiKBcqyEywU -04JDqo6BTwk0rRha6LcW4tlugj1HuNhUFfxuUKm52MO0+9FfbGTF23j7HibV2oeq -SQaRt0IqfkddCHWGgD5FW5v+Nwn5pVJtwmtm0kmiMLpb+jVt64IbZw== ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3030.crt b/apache/certificates/3030.crt deleted file mode 100644 index 35ca0a45ea2a..000000000000 --- a/apache/certificates/3030.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAkeSMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMxNTNaFw0xOTA2MjEwMjMxNTNa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAM22BOb3Mt/1ml7tPTExl7IS3X8d0r09XO+ydNuxK8yy7Ls5eENTkkMS -WGaAkugIObMHbV5/a597hBgoylBPBMNMu6K+Q6Khs1osWqIRUc1X56qmpgAP7Nt4 -waKy3bM3J9muxlZwaokoQC2QS2N7Q/BGwZbyKZCafnCoRgcr6QUG/n9p4TRV8hfE -pXD9iJFa4+PAGC8mTJ2gE2OPetkMRnzIBZ+qm7CDOlIiFim9+tDAA8xUSy+QfoBe -VcjHg+sBQyM93fH3j3v8YLhJOD6oOcvYi5cKQNWwaeiBjWBzraDjzsT0jxzcBOgA -F66KBGBIKY2sLhUoUks0oeFlPxV782ECAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -kPuUxETt7+/T0ogM9R9JZYPTO1CIoYtsTdFGlY/hzWUqwXB1piRW9+LLi6cMRuBw -f8TX5hOUq5aneHs1EB2NHbt2DGQc8RV3X6N6DKDjFfO4gxJ34yBcczgtm99sozm/ -BQT8LiLRhMjQb6KztiyPVfw1rDLJYMpzTBMfS9I+HODW5QbiZloro8urgW8pdMmr -I+F4d+5HGDGobLuXEnAGYb+ObsjwMd7hbCQnKon62RxWLtIcyxP+FyhDFmx8+w7I -1EnemarVYT+2Pl2ykLqwAy76RbCw7o3MTPtm5CHz/eD+1Q+b1cRbuwV3Z/EpL90Y -eLJGA1Hb3XimXVKhKXuGaA== ------END CERTIFICATE----- diff --git a/apache/certificates/3030.key b/apache/certificates/3030.key deleted file mode 100644 index 3c12ff53e10e..000000000000 --- a/apache/certificates/3030.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpAIBAAKCAQEAzbYE5vcy3/WaXu09MTGXshLdfx3SvT1c77J027ErzLLsuzl4 -Q1OSQxJYZoCS6Ag5swdtXn9rn3uEGCjKUE8Ew0y7or5DoqGzWixaohFRzVfnqqam -AA/s23jBorLdszcn2a7GVnBqiShALZBLY3tD8EbBlvIpkJp+cKhGByvpBQb+f2nh -NFXyF8SlcP2IkVrj48AYLyZMnaATY4962QxGfMgFn6qbsIM6UiIWKb360MADzFRL -L5B+gF5VyMeD6wFDIz3d8fePe/xguEk4Pqg5y9iLlwpA1bBp6IGNYHOtoOPOxPSP -HNwE6AAXrooEYEgpjawuFShSSzSh4WU/FXvzYQIDAQABAoIBAQCbUrBo5IXZbMze -mCr4FgYAQxZTgOU6VjbyFcD+kMwNh5wP0djonRV250cwPiyuXmeSsiz2iSduCAk5 -ZLM96Cwkeq/Ctf7DsWyGza6xaHpnndQimioFKgEhxhAPFRco1qCUUM8ZPVBzt5yd -yrHhr5Ugu4w4uSiBMuX9klEt4Q3U6JOcQOnnZUE1rebKThwdAd8UEIJVCzTx23c+ -Wp+05Mx+h5zcD8TOv0xc3o/Uq7nN0r1qpNcEidOsl4uPtfgMwR2WOLqAUKYco3nt -c6D7R3BwdA3nFmuvanRlY0jWt7qZt7tpg8/FsLwoOK6XYMjT6RKjU61C2Mx1yn1B -VSr6SlfxAoGBAPZlkR9Xnpzo7QRydS7mzbIVbtmNPOEANDFCCXukwZsP8goE1w7j -Cy42y9IRyoU+mHDVAwAaXQo0fAhKOu1SZGtVXcWJdFfLLWWBxUeSfp7CAulQ5p7z -DU8C+bbMCzCICoeby1dqOCI08QoVF0Z4zE/5t9ZB+XzYSxxxNL5MT3crAoGBANW6 -gj8+Kp0JWaTiMs+vpw+hf0vOZR29VCmuCzDPKN6vwh7Dy95CmAtMgqu1zcN0FYM2 -DHqGqM5sz71jZCzL7TmwKwst/t6jvh+brZq3lUvdjDi9xFhKHVJ69eABcIgZOted -tg0fltF/hwpe82SBJPHJjzs2oCJ0917DTY4iz7mjAoGASMiB0M9SFCmd8eVZhiw5 -cLRyFSNqa1BjGnXWVUa6xfI03g7F9CjPIaygEoKc3zU5VIMnqr0e5KfSR6SduYLQ -FQCXfYV374Md+tEVlGnKq1zF/WOfbC6BrOhFGWE2oPRen+Y+b6j5wej/lqnaQT/n -omwyiMDeUKmXrmQmX1wtURcCgYEAhR1+1cjwXZJfRPSlVPlAAdpCIILSM62h57vA -uIuuFtQ9AVBNf4bWj+L9V9kJ6Pw6Edjt+Lo6FSdsU7a9w7DXdaCljnb9UMmHNsSN -YdmJoRDBru1yhtLSZHa1AOmknv+nyHcv1gigtKbLAsiUqzpMOlOhY+3n2s4i6+CU -QzynSCUCgYBmZy5+mddfcItaVdKAXOA4TclaKEMb0n0lFNz9gj30V8k/FF4cGRNi -pCwB5Xp8RIgFimU0vllUx6IaDddJYGS4CNvoOaRVIzmZ/vLd2RzIXZCWlVXVlour -TJH8etUe/8R7gIpJ7wgHZyOQ036ji5tLaRDgkvjuLsuZcrUJchA6sQ== ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3031.crt b/apache/certificates/3031.crt deleted file mode 100644 index fd81d8f8710c..000000000000 --- a/apache/certificates/3031.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAkw1MA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMxNTNaFw0xOTA2MjEwMjMxNTNa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAKnt5pPA1hhGOoJ17lElauJxEmePEUxY95NFXqFCOZ8P1AU7M+Eblmt8 -W6IaS21d2ckrXwQ6NcCmTxc8TeSHUcuBttDCTwfm6VASWk/daikq1dGpfX/TdgNY -ZCanfvNQXvTYIFmq+rPwuMK4ZUYoYcjumshv8wJJ9oKqXiNq2kO5E24ADn1xTTMd -CEulITm2g1q67o1xQ3tuaHo79n0ouT3LBLwXIgrpsMrCPZcNyUvAQekeswJsIDVT -I6EjgufDDEv17h/Z2T0hvjP8vLyoNG5QDVSb6u/9iF11UmU4bI8x4Rd1Fyuam9XA -KFraW9sD9Y38NmGC1BnkvKqJKkrfrl8CAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -eg0utXHMS63WPvi2e++s3i0CRt67NEnVm0utQ7+4H/F1KuKwwFN00wF5O97HCTv1 -r3dq6jzq67Qim6M+/gV6PFgoucWis9HGR2p47/xVk4vZiiG0Kyd6w22Rz5mUzSJ1 -iJSEaNanJNns9q0qK2C3C6MEH7A/buBojjTeu3PUbDjIf81qbdsNw1WqEVI0fA+W -xHP7McbwmDD8qUb6N2FUkFQRq4IsAV23C8F01oAAbkupa0N/Sc50yI3CzRp2q02J -RZsJN2zBSvloWjHb02bixdGAFg7kZGgBIt5WlIFIqFZVWt/qYfm3iVnYP9Oo/iYZ -ArmDQtyGbyYJZpzGsdldPA== ------END CERTIFICATE----- diff --git a/apache/certificates/3031.key b/apache/certificates/3031.key deleted file mode 100644 index ad90077907fb..000000000000 --- a/apache/certificates/3031.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpQIBAAKCAQEAqe3mk8DWGEY6gnXuUSVq4nESZ48RTFj3k0VeoUI5nw/UBTsz -4RuWa3xbohpLbV3ZyStfBDo1wKZPFzxN5IdRy4G20MJPB+bpUBJaT91qKSrV0al9 -f9N2A1hkJqd+81Be9NggWar6s/C4wrhlRihhyO6ayG/zAkn2gqpeI2raQ7kTbgAO -fXFNMx0IS6UhObaDWrrujXFDe25oejv2fSi5PcsEvBciCumwysI9lw3JS8BB6R6z -AmwgNVMjoSOC58MMS/XuH9nZPSG+M/y8vKg0blANVJvq7/2IXXVSZThsjzHhF3UX -K5qb1cAoWtpb2wP1jfw2YYLUGeS8qokqSt+uXwIDAQABAoIBAB2SXhcGbvuodRQx -C7kpZtFjVg2ZkywTK3qAjvhHOxnYOlByvhOFpoasDJJIOyocNANTPeTRcHtHNepY -P0Hu3qgoubTYq8I3SBD8MKVHZesmHjGvajytgxMP9dXYPjp/mRbI6dBQ9fIMiUqx -pkYwTtwV0e/hs4uJbZHNrjZBqRwxt3T8l3bA491hcTPaxTMI/LEBFXD9MMbvlvYf -tXDL4G3JSsVB5Hj1BrMLFYDnrFcuwH3UZ7kRbQxrVJpxQl6kz8Mcyv5Es494EpRC -B5xl6+tqSQLhEnm5qm9XyjtPmPZPYVxX/czzDD1NTgsDrcvelGAvzoPDtElGhzHR -mNpah9kCgYEA1r1ZiPIyZr1VtUNe+e80HC8qr8sbqg48wbu5Okw7LqPTV74AJitP -HsTKsYQrTxX/piG1/1sCuyZOT52fwxJbt27zFfYHVIZ6zyiwZdWqTVyO8FDyP6Bq -geakRR++8S2Io1rHWrUCyhApfTz3bwmibVgKJbyzVL9fAwMrpdmZ8A0CgYEAypRp -dSZ/sFYCnUcrTnbWLcCzogmWUTbGoTTVH2/zMVzOvmBHBmd1xCTynoCe4tXcFxA6 -IsCjU3bYz3wTqCHrQv9uZ5gEn1S6JY8LVoLY0G+ZA8IvX7Gd1zynOLPkRnpG6Uzd -oiKUeH68XtZJ+vJeXJSTNrMr1yQ6m/6S5upckRsCgYEAkDXhJyLfzjdgk7aG1fpa -WIMke6I/Fdkx3Dkhj5EaPZwvlkE3AGsdW2B1bvl/zEDNytfgzXhlQSHcfYMxg2OU -zH9qKFltWsplNzHwJLN1Bzcdly4FQc2NOWeW8gT7yiP2Gx4fuz7MfL6V3lFPKfai -aiQxzF4JYOST/gXnDh4wTxECgYEAuq0YoQPhFrWroxM6LQwFQhQZdHAxPJWlZFgz -LM0U5aAIRBakXJpqQ11o1fbgc1dvgTFK4UtzNi6GjGxiEMVw7kRDkOLdH5YMEyBF -6mqZMTolXvlKfnxGX1ldHztmWCvFvKdAdXA4MPFY1GvTsJQ3sEiZgAaLl62i9K0a -4f+FXZECgYEAg/rZhbvqOoCPI417mbga44PDPHPGXkaFMbNdgMvdGS08g7yB6mGR -VK25m1tcXbAMdTGyrkHgEjOea2VkQriZ70tOy+31bvrGPrmqzygLu87G5g+nVp+J -Nu4uVtG0Losk6iD2DR9iaC8bYzycxQEzjZgxehuZPl0uAA5BCcTSrFE= ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3032.crt b/apache/certificates/3032.crt deleted file mode 100644 index 35292972c1a6..000000000000 --- a/apache/certificates/3032.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAkK2MA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMxNTRaFw0xOTA2MjEwMjMxNTRa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAMY/X0AdgW0OuTpeYHrCmfSeid7Jtq0gyj5OAPOJcwXWKFaTgt3dBKBp -g6+VQXQzNTu8DqlDljg2yfLYYRFNIpW8OYiWG61pJmw3i6SkeNFAayIH3BAS33fI -SIJUwRTsZ3WJHGMVVNjC9VZaqJVWIcgelI5SARdD7nog9TdGJoIN9VI+syFHbRw5 -5baBmr4gJ2t9D+WgSwK7vu5SmRyAKKDfc4L4YYTxHafdOWo9Uf2To/FGXOvlG/ti -UWG1mVmQOIJbydbCGgJaj6EIQ9Bzh0NpLRBFpB88vTQj2pjlv+nWa7WrXGBvlQgN -9n6NAX0p1soAMeD0yQ384oterhZN9N8CAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -jZq9ggCiOnzSlGw+WOugsfph7o2dpRLkekMyR2IhoLpTsF7iCoaA3CpDr9qZdqV6 -Syy5JZmldHCfRMAg0Zu2XgWaW2fzsB2Zv/4z/orMNnroWlxOGNqhtopevYfNy+/H -v/SIirHQthWM/I5AK6AmWzSd8me1vHlIM+kSVJgys4/ymM1v0y2a/5dPyXx2//j4 -DlW5g44aGnsYqYv1A7T9EYq1vyZSGGB61rHuTLfuBsG2/OsHlLWkG75QzlxwRgwn -VIVcOFKTjxnBbSYbbN+qjM7yXity9NjFmR+7alvB23ctxOl4mjfgqApuYS6iYjWi -2gkNLb5TGm+Li8N/NNDClg== ------END CERTIFICATE----- diff --git a/apache/certificates/3032.key b/apache/certificates/3032.key deleted file mode 100644 index 213e313cc68d..000000000000 --- a/apache/certificates/3032.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEowIBAAKCAQEAxj9fQB2BbQ65Ol5gesKZ9J6J3sm2rSDKPk4A84lzBdYoVpOC -3d0EoGmDr5VBdDM1O7wOqUOWODbJ8thhEU0ilbw5iJYbrWkmbDeLpKR40UBrIgfc -EBLfd8hIglTBFOxndYkcYxVU2ML1VlqolVYhyB6UjlIBF0PueiD1N0Ymgg31Uj6z -IUdtHDnltoGaviAna30P5aBLAru+7lKZHIAooN9zgvhhhPEdp905aj1R/ZOj8UZc -6+Ub+2JRYbWZWZA4glvJ1sIaAlqPoQhD0HOHQ2ktEEWkHzy9NCPamOW/6dZrtatc -YG+VCA32fo0BfSnWygAx4PTJDfzii16uFk303wIDAQABAoIBAGs1QBxbGG/So4aW -HRSmAj3QMnzBlsFfVx+EbW1GKmbAnoXbNc0nReY9yVH9pCzjuGj6VO9iNm1l66Yh -L7T8grR42qArlQIdOAMTsrexngiDDqyTlYU3v5N2QwgAL35SLczY/fnzQjQKkkRF -uJ8xugkPyISCgkaDnQZ8pj9i91YipD1RdCXQtPC3CLPKD5MAWZ79Z5UtpnN/yVmp -Y+dEcb6RigEQx8l7V00Dar1jLr728U9ilFe4XxpeFeVu17quge6tBpLE6HdVOgiT -m9a+xROm+Y7WKYYYNXGEsuX2GuCOdQBHd1+Lka40/BUh5P6Py6YJLzSC2sJRel6S -YMF3SVkCgYEA7hWH9HibLT903yg0IaA0as+qXSPN3eoxLNHmHMAybPxwbTK0DoxU -O6Ks1x+9sxIEgmDe3ZJae3BkRXF/C4nT0Rt6/NajasyMpklNBTxjRWyxF33cO54y -UOSwxxlNYHAQozrhfAEUFD3FWG+jotCnHitE5J+cujAlaXfnhgPcp4sCgYEA1Spt -Pp4BT/8CFLb6hLeNnO6jPpS9ZuH9SraFDE0adkx+2pu+kmO7p9WRaKJrtmUMsPcg -kvkmJTyAv/XQIk3AX02iEnQmqhgnr9jMqCEmuuXSk+TU0NBAyBOnfDd2rXQOeziv -Xps3lILmAqudCmOxwBjr9pXc8VJ3iSPmdSNlMn0CgYAlnT03gH5zrZzXTNC/p0Hg -xiJSSL/TmZZfUGIclLjiwxc4CVStH7qHGXJZImikC+qudoN/Wgn1ipIs7nt15TaT -yNWrcHWs/9gQxW/nrdy5MSzhWz8aJCoq4ZaUPgkdfVcDkt/g6YK0l/W/vROLO4/L -kmZ2AEmQmN6wRQNNBvsrdQKBgQCqBfIm3L5tQRg2z4/YJdPVVV5tvxOnKR/v5M8Q -dbtimjcgRNNnThdSkf0uOUayr7zEtgiMUh/D2ZNUCUve4KdNHM3l7DEewK9/CeyL -Og37Su6AOigo+cKCE3Mml9KYHRaj4B241xMo6JNvk9RpggU4FGi5QOV+smlXwIPD -8Nx5vQKBgHI1mvx+SxQ6H2GDD5E9bwoty/1/d8BkcNVPPhDecE+DawvCOMqOApPQ -E7HfdNyIrLcD8K/wmlMXeuLlr734+V4jcEs3oaD3/HQgBzrHRsHmgiXKKLKPqtDx -jOgBZJoFgxjeEaOPLtMUbUzwvfka7ch4gReiYT9EKWa9e0Ei0D6v ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3033.crt b/apache/certificates/3033.crt deleted file mode 100644 index 12ce6cbe9bde..000000000000 --- a/apache/certificates/3033.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAlpXMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMxNTRaFw0xOTA2MjEwMjMxNTRa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAMPZQPgsf1JJA7WpVVjLTW9jvCbJhWAdOGZ/XXSXYIieulaVep4RCNHl -MGjF8LqGwR8iMY/O+OoMfzhNWBfvPj+LbikR4432q8tAt9Clw28J6yxk0BYloB0D -kocAIIB0W9onxm26Ym346hhi+kQKJvkrTE5vcAkoqOooFSQMzUbUpjaHGCEw02Ed -oOQoH+7gSBAJmVdCp4obGBKMFCyTblQ9CDJ5mML6ZbBaReKoIdhYVPDsnVY0DgRZ -F2YEIzq2LnN1HDDKm2sACfgO7AxyRTKTgkVonNPFBscJhYE1ESC8Fx09P8HAYVcB -p32dsl/K9EGlluCGSYFHIv/BILsKsDcCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -XM4wBCyzb4K4jPbHrBPS7/otk6bH8Ve1IvO7pSJXYwglDH/UDvAaxwd+Lm+IcLAt -LiZpjz3VGuf2dJfYH2TLF5hmu79Vz/BXh6ObtucRJi2Xvyw2yK4WVBEEz5o9MH5a -uRC3qn+KqWaI6fQuamg+IotI54uzOXwvno5o3Cw0FQdeQ5r+Fhy3b7EHWH7N1VJl -1zk05UzfoNxMaUWhL1EmCny2++nK4ynX46MKZsjy6ht/gvTsOgoNQ4sxpiwKZATt -JVmmQBa9IjP2N+uOJQUtvdwsa4B+z2kzvFhp2CYwBK4/pUOFOaaoScXfbT1Tc3A2 -ftw04bT/5R5B4afpRQur2w== ------END CERTIFICATE----- diff --git a/apache/certificates/3033.key b/apache/certificates/3033.key deleted file mode 100644 index b044f45700f4..000000000000 --- a/apache/certificates/3033.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEogIBAAKCAQEAw9lA+Cx/UkkDtalVWMtNb2O8JsmFYB04Zn9ddJdgiJ66VpV6 -nhEI0eUwaMXwuobBHyIxj8746gx/OE1YF+8+P4tuKRHjjfary0C30KXDbwnrLGTQ -FiWgHQOShwAggHRb2ifGbbpibfjqGGL6RAom+StMTm9wCSio6igVJAzNRtSmNocY -ITDTYR2g5Cgf7uBIEAmZV0KnihsYEowULJNuVD0IMnmYwvplsFpF4qgh2FhU8Oyd -VjQOBFkXZgQjOrYuc3UcMMqbawAJ+A7sDHJFMpOCRWic08UGxwmFgTURILwXHT0/ -wcBhVwGnfZ2yX8r0QaWW4IZJgUci/8EguwqwNwIDAQABAoIBAFtHmalRi/H9B9aW -Wqns72VYNaxaRmialdvnxtX9a8ehOzX5q1GanOK/EEX045L8FWx+Ul01WPw04OKL -4eAd6IRTZv+LT+StsDomKsX7TFAnbk2dmwKHfM2pCZUUMRHNqbXOzgP8V73rwqel -EgG+PZXqYUE5XR1XrwqbrebEdLRqu+xW6pOy28n+GvLixKs8mg/++XWWGySsHOvm -dETIjYq9q6Wj0voK+B2QZmDYvjHxIzk0dP5bLIIyLkCU9ljL/Y0u7lB/MBoAG3X3 -nnwCczW6+F0gojYP1wH5qI/AUMtEOk/zMz6ZA8FD6iefR0SPMY8VohHcLl7zm8ku -Blr8wpECgYEA/D+BGseb+O4ydAEX7eQ7H4ZV/jEVrHUszU86wQKiVU7ljN4V0de1 -zPNfbWoxracB+FgBnkUTawaat/qYaaVnwp+mWxCouxtikwPzDYrp0Qzi648/B6VT -QKLQXM2sreDq4hfQnFzYy4IfI60DzrYX25SXZkDcIsHiLINLPDb34i8CgYEAxsL+ -uVUTwWhRRiw5W9I614V6Kq3CkYpsScYdIm0Ggje6G2WxVrbaaDURaG4lA7zyUL5e -BmS+fK2dYYzmwn6Mg4ChOWYVwI2zSyL7yn6+H9C4ju7gkF+MebuWnKRFmCVQ6cHz -0KUxllUEetnZp0l21eBhKUtkDNLn3FbH4VbhuHkCgYASGvzJT0qCs5YrfWiaSqdz -u9CwThWgK0jr86Pj9qxwMxmG4unuBe2mqFFRKS4nqLUbfjWfhpW+ONsiGXqXGqg3 -7/2gy7FQvMZ2hvILJs1hk+s1vTJo+hTfrtAF2T1rvZkeYVc34fItqUlS5jg/vhI4 -UJINZNpoJEJ3r3TW/ZsNQQKBgEsQs8Ds16QwsJku9I6wDBb/Sw85RoVO4OzPzIsG -3/Fn+HqGYn5cWooGmMd26bXKsz05WCtT+vj9XLXN0AzeXFUBzGHwIwDwwyj6Ulu8 -mDNN0ZXxs4/y9gu3g/8urzXxyeguntVKvjqHa0S2Z9QdE6tcrXU6CtQpBvYZNC3v -cRoJAoGAMW+Mab+1dYV/5grw1ve9dtrxb9UEtIc2qRSDA9YCEovZfla2+8CIYXxO -WUoFDUT/sgD8pWWdfjFu4ofrXRwJxJoHt6lW4WOq0AhlbMaFUX3cOYEsFlVpygNJ -HzMhB2Nmhw0vFGll/IKJ3dt/jzL7OWRMZ+y+At/1UdYuWTEstPo= ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3034.crt b/apache/certificates/3034.crt deleted file mode 100644 index a3baae22f136..000000000000 --- a/apache/certificates/3034.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAgosMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMxNTVaFw0xOTA2MjEwMjMxNTVa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAMydGBXtiIqsX5UGT3MJ7T9XlcjpiItQVV45hTha2DtQ22lxu8ctHMcc -ebDSYW0fEGQXwSMJqwVi3RndGI4XDmV8ryDeM9YRxIvpX53+SauT0t2itoZ5QZEs -znZXibJpM45GDTHDt+SDiAlXoU26N5NxZr8T2VSXmvvMdIKMise0ykuaQg3iJGPm -KBkXQ0tcz9uBfI3DVppjlCruuIWwEo8O5P7C2e6wqhawws8AGag4c6Fy41p/PCxp -DfezjPxXUqZ9NA6BfJJ+mC8EnT/mXxdoTuosSwoNTdwIvvgr+vL2YNn3fq1bBCGW -XvxGZssHmTm3wTbYummdqvlNWbJfNq0CAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -G3LVy3gnbHAEC5ILnhh6AMW/4k0afuZseBdhGhWLH4rF8iNV2gO5ty4IVoRbjUX/ -hg1Ex4dH2k2mb5le5QBu3OOECHUMpkFOByazF0bVTKGYuB26JKXb0VEy5WxFs111 -b8HHjqJoNxwZbrIzK0mL0T/UCRq2n0EHh/y8Jtf9xNC0QN3zMp52lCGZ8ySW47/J -RK1hljjfIUkpNa9Jf0YKVqYtYnJ1DV74tCuyjiZNMjFiaTep5e/LAgLL4FgOS0YZ -yQXHO8FDf006FGoRvX+SC2WjffHKhN9Chj0wG7vZmuvnduwIVDWdJ68VfjF2XnCT -ZkIFjptIFkzSj0vcbOj6oA== ------END CERTIFICATE----- diff --git a/apache/certificates/3034.key b/apache/certificates/3034.key deleted file mode 100644 index 09ddb5083878..000000000000 --- a/apache/certificates/3034.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEowIBAAKCAQEAzJ0YFe2IiqxflQZPcwntP1eVyOmIi1BVXjmFOFrYO1DbaXG7 -xy0cxxx5sNJhbR8QZBfBIwmrBWLdGd0YjhcOZXyvIN4z1hHEi+lfnf5Jq5PS3aK2 -hnlBkSzOdleJsmkzjkYNMcO35IOICVehTbo3k3FmvxPZVJea+8x0goyKx7TKS5pC -DeIkY+YoGRdDS1zP24F8jcNWmmOUKu64hbASjw7k/sLZ7rCqFrDCzwAZqDhzoXLj -Wn88LGkN97OM/FdSpn00DoF8kn6YLwSdP+ZfF2hO6ixLCg1N3Ai++Cv68vZg2fd+ -rVsEIZZe/EZmyweZObfBNti6aZ2q+U1Zsl82rQIDAQABAoIBAQCJ/nyq9Tq8A4qm -782PUSePK5uaF13+Ttx0IqjlG+dvAZYoZAr3RkZ9RogPp6MLPAMK7jZUUgXkKQvi -kIkp8wTDjzZxHUqqWetLTMYuwLugmp6A2WbuBEMjDKvlhh4Yk/iwQDBP2qZf2BFb -85yW1jr7FmTsAw/0jBZ7MSV2kiBalC9gEhX+o51JAALRYirznhD/H/s7I7WvILVx -S0J2vDt2vrt8KGH13qY8HxSvtz9bAX/lNv8WIQXNRMoNaMTldnppIfSLa9OGPqcK -CRiBYU7QtcYtHPnNrzP76M2UjjkIFBR7tyN7xhz4yrOKXjO4GVNAS4GgBMfkFhos -lzIzzujhAoGBAO0QbUpRws3NG4Lg4agqe8Zp2b3Jn9w+g0iF4t21GYH4wOn/7V8A -loJGeVjzcHBSy61YUqs/R/JQGEo767GxEgo9Ix3duFSFXjq2xHzk7aSgpaUrVYsQ -RzZgG8Zae8FcL/LGqYHUpRgU+90fFT2W9jE5qjtvEIBLHtcVGVV+PzIJAoGBANz1 -G3m80dkCaSfd+18UD7ASkANq+iLDB3aghMl6usCBHcurdYMYZz8KYLSoE5u4lyBJ -+lf3oR6+TcStLKEuguGhExE1EFuPGnYgxfne4poTNE7sBu2Z4y5WrzbTW6oSyWRo -5pr5W0pgyUId9aLePH2lpalA1o0XEHiyyKhI5niFAoGAA9O6D/MV9ACVqx06R164 -NNHMpBW3MPUJZYhTy0R7Lu/3HU/2Yww9YckFeHwlmoqboybD3uPco3rLiZdCDNJQ -+j1WbcsAiMzGYqhEr8d6VqgJRItYjDAtFiGjESawzMRSOdcfMWtfZu4fysgPrbjc -LJtDtkXqvEd6Lfq3N/wbxRECgYA436pb0ntdVV6F0YCTf5FuK8j/6DhMXFD+euDT -D5EkXdeyhgawYMaqllxABAdQDNpxiDk1DVtek3NnDYAwWM19kD1dL4BvYM1Z3KO4 -5mMDb7AGJIDABd1RHyTogszUYROPkeTRvR9/bJxBNX71liiR2uJiR3syQ96MgtBd -aK5SFQKBgDNTMfc3XyUZekxYfta4SvcqVZayUvQizz/PPHJaE4nUJDxMymRWBHj8 -I02udiJtAsfF6riQbHr4pzvCN5YMHHw1xhjo4woB740YshbydBKQMUjJleRbaaMv -IMAXKR/xP3XCjOgm2SxSAQn93rLM5IQzyPa9uEBmWPnA+FkfiUN1 ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3035.crt b/apache/certificates/3035.crt deleted file mode 100644 index d13503abf3f8..000000000000 --- a/apache/certificates/3035.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAlg8MA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMxNTVaFw0xOTA2MjEwMjMxNTVa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBALpVEAf3K/+8bQAzGG6UlEMxudBOdg64rsWGIXd0b4dJ11J8UZEJwtJF -kZQfYOxzZa3OHPBIFQzKSn11TVYjmEjBo1Op5O5lJFZgmrneetPGX+aj/rWNlDcC -ihZrvKvs8phgrrwNrgA5S3DYxf0tAV0lM0LPE602v1C2580PE3ffAX9eGA4kSDqF -THrPCD4JAlP6CL9USUiAKNY+GhndSNTsBP9WHqS3xMStPcIv1ExK3N6BoGpObZDK -5s8zs31/EqgCHQqCkSMnBegF6Ld88YMjHa/GvBpwSlD3TbEWKBBTRWDDioDUmbLK -gDAw5Fn7hrhRe4KKI9q4kSD11w01tRsCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -Fg9f4eydL9ZOUGhyNHgDoPdTBnt4xgsJWld5+LSPatLTkhbMpRvYUEEediYKk4Kg -ir+hAU/ZMIg/1jSxHfP3nk/RwYvqIVdAkk3DiI7iyxwwcI9d+dwW4c2jfMEK3h8o -odR3jlQCvq6xvk7KyDYvnFqelhBDd4TpvN71GD579CIrQbnm8+asAxPHUodOPPOJ -2iaz9gKJ+N9KrMWMcyhG3IxPprdSWuEDeDTGE8QQsF9tmxcjBArqJDYnw2q154ZI -0o/R/ISp1skeaZjfaj1ZemUv+KSS8a7iP114S/jhpqxj/9iZZt/zlDf0s3fJsvKL -h2bKSkwi2vCVruP0Be8xpA== ------END CERTIFICATE----- diff --git a/apache/certificates/3035.key b/apache/certificates/3035.key deleted file mode 100644 index 894b4c461bdd..000000000000 --- a/apache/certificates/3035.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEowIBAAKCAQEAulUQB/cr/7xtADMYbpSUQzG50E52DriuxYYhd3Rvh0nXUnxR -kQnC0kWRlB9g7HNlrc4c8EgVDMpKfXVNViOYSMGjU6nk7mUkVmCaud5608Zf5qP+ -tY2UNwKKFmu8q+zymGCuvA2uADlLcNjF/S0BXSUzQs8TrTa/ULbnzQ8Td98Bf14Y -DiRIOoVMes8IPgkCU/oIv1RJSIAo1j4aGd1I1OwE/1YepLfExK09wi/UTErc3oGg -ak5tkMrmzzOzfX8SqAIdCoKRIycF6AXot3zxgyMdr8a8GnBKUPdNsRYoEFNFYMOK -gNSZssqAMDDkWfuGuFF7gooj2riRIPXXDTW1GwIDAQABAoIBAFtr/uiZmonoTmbJ -qxQebDwnuq58wKnqbT3W2La+dzYewbnj6zVJX8BBh/LwDmMVH29OcJ5oD4PuAOxb -UG2SG1afQ156PivFjjWfQmstwIAFleoYzpEPfQgcg9oKVFDaehDPZww3fgb4FY6x -nTriCQhFh0ghR9s1wFp+026mFfw6pOGGYtV4Hs35rDVlW6I4i4yL7zvl4IicPREd -C75WOjD4cp2+Q2XxWQx+YAA6JMMt7EioZgMql/+jZgP2n7Rg2f1y4QO+AsznWs2T -DCAkGxcul1hO50gJ4ul69H4dkAoaxjObB7MMepcnJNGzITlqFc5c0jT4gdl6yu0M -yRDSi2kCgYEA5sF00q/Z71D7MYWpuQw+cKVnDpRPBMNqV/N0NpQt86uyAtgwFdPc -d3IaYDK3/n8NDAhFFVH2tcTxJGj26xRWBO+0YHkWoi1HkJzIyh3Bc6c1Kha/2Z0a -Z3409WLNgFs1pj3gTO7RthDyQOfQLs9iAXRwTLyAfB5zIFcuQHM7eiUCgYEAzrd7 -9SRfD5ASsLQm6tYCqsyuMO+krxyV0IZa/rs5zT3nwxjJf14ys+gsdicJawdAQZkY -XoO2tma0kwKQKFysIr5jIhx50mM0wFraMW+PDpiBshmN6flLMbfbyC3pg8Ollai9 -z7W5kTXbn4GCayEl4wwc22tDgSN0TmuAqrkgLj8CgYBKAuqRWM2xsGug6poRPBga -0TJIvtDJWlQVeYRgrQ5ABWXG+8gQeC9SMEq9aAcTnXR104E04WEb09r0LqZjp9Yf -JzLXbn8P7S3y+BZ+nSSbD5pBsaI/DeCWKSibO+FltdtzQo1an46rsqvAnZlsKh/p -D4ulUSB0rt+GE/BFw6/j8QKBgQCJ0p3r6M8Ugjtj4wkbg4qNtB/jcrO7KPTd7eZX -dh7or4CJfEpECFsHxiF2uTo3SMNXuSodQfYdEMcOSSQyNO9zzrorsQ6r7gbqxOg7 -E6Uu1xGJ3C3ZNKQkxu/bPHk3p8cLzFCZXxEVNvJyG5gHszcedSH8TTzZqfjOnDBS -I1HIYwKBgG4skAwN+hW6yh9zoAz2ldwYs+nytCP//cutG5/Hf0gSiPopOAMxo7/E -tGB5oWtw0hqhjXCDlMPZQbwKxoBGePHdB5r59GnWtvxPNwn/hTys7ytTfUDAlpON -kwD7koJPv158GfJOmvfrVu22uWfF7EFnm8oNGZ/dyqSHnIvwim+n ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3036.crt b/apache/certificates/3036.crt deleted file mode 100644 index 8b21d0191804..000000000000 --- a/apache/certificates/3036.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAmgZMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMxNTZaFw0xOTA2MjEwMjMxNTZa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBALMDWGH4L055j6FOZn/nFtj4cX2eCqsTXiLHv6xLGhZoOK+Ddpl/Nk+h -PFXxPxRApbBctv60UBRQEydZzlU09SBb1i+uNLp5QF8KHGtVzmHqF1uiCNPuecsI -K0hQdGiycYJMtiBhdWfOSw9pS+qJaR8egk5o+sGxW5LqIdel3LJPcCHLekNqkgdD -uSanNMwRLO1p3lVkLFcD/4UkgQr9jH/zEswHN75Q/KKtMU+3eOSyUfGcSbnO7P3w -oFebZItbzAIFW4GBchSNYOsoxQ5DuYBjmNz9EwEKDcM/koJOWrdpZEWTFbLSGLCB -TrR4zMm/MIzyHRHx4Mm8QzZnPky0xNMCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -hLxWhfexqLRU61U2Z8YBB02osqnRiKaTcf/6SN3upMzwIFXWTlO4Zs8yFTjm/MxL -+Halj+YTEt4rJCwIAhmvkZLs+9zS1R8f/XqQ+o5n2YB/Iilh+DTTXURf48UemwY6 -wxKmYl7RjT9G+s/i2uGJ4rqABsd20bCfKXXH9oxoK0NcGItKOrzgLDezLP4OzkTJ -dNc6KNAiNg+WBvBaEZxX+Do+MtQm/ugGziVvgVOs6pY7p+6XmmdfP+5H/qYOXjTh -swe0m63lbnbh5q6uhykNRnm558dYdA/2Gioo+WCNtFTK0dWV6taywRU9RPZWn2AA -h+1Awuc79/n8sFQdi4h2Ew== ------END CERTIFICATE----- diff --git a/apache/certificates/3036.key b/apache/certificates/3036.key deleted file mode 100644 index 619d713c61e5..000000000000 --- a/apache/certificates/3036.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpQIBAAKCAQEAswNYYfgvTnmPoU5mf+cW2PhxfZ4KqxNeIse/rEsaFmg4r4N2 -mX82T6E8VfE/FEClsFy2/rRQFFATJ1nOVTT1IFvWL640unlAXwoca1XOYeoXW6II -0+55ywgrSFB0aLJxgky2IGF1Z85LD2lL6olpHx6CTmj6wbFbkuoh16Xcsk9wIct6 -Q2qSB0O5Jqc0zBEs7WneVWQsVwP/hSSBCv2Mf/MSzAc3vlD8oq0xT7d45LJR8ZxJ -uc7s/fCgV5tki1vMAgVbgYFyFI1g6yjFDkO5gGOY3P0TAQoNwz+Sgk5at2lkRZMV -stIYsIFOtHjMyb8wjPIdEfHgybxDNmc+TLTE0wIDAQABAoIBAQCXFAWteRYDttgf -HNmorFE+AD9X8t+yDgBufgIn2KJFsuPUTLD1TsV5YuxW4+mGoCC1vSm7wFWtLv9b -QJHAm5cdHiSfzPg3QEmxbAkcFSi+vh/Ed/XXVvZ3AYf12eDE04S0oSU8IsRBPXtf -oFAvupR7bPYwUqz+dz5/uRWiuBqQaMvvxOQTRGG0NCbTFPE0ysG7CJ0ye5MVeoYj -eC/0OCmZUrscoAD9j5ZZvTs1YM5mw6htEdrrJQW4xB815BF0adNxB0pJnFhUEGlC -aJKV5DH5VADH5fr1O7fl9C82NXsXaR14mRbNrJIh0qima0pndAIufs96ZnnWLQeV -PLIoDayRAoGBAOjJefIUVMYGniawLIjNWEfM0Y8l5yKocBbP4blMw8KUCraXaHlq -zyTFZkucdPVtsqt/0LLAb1S7c/yN0DmyYdwY4+oOvOBMi8p4qUR9KtZu+7o8nTxB -p4M6meiAV+6boo3ZXeZKzQNqH73/Cu2zUc/FC3LnN6TEF5uEt+Gpmh1HAoGBAMTd -JGL/h765s9Kw2rhkKOH9fbtNG2N815jsN7iM81zseIZ+fo8XFarVJF1Vcz4yhATA -J1zkP9lKX96R0gVAxKevK3GcWzLB1BMWfC8C3s9JxW3EQCq/nPvsWlzqDHwZrwZU -HAJXEsZlGeViz72xyL7Y6SCOp/XQiEGGNpb2I7IVAoGBAI1NRwVny/GMMNGhHNdJ -di3XKNkwk7WY8rkWJJka/LUOsdYV3+fbqrNSU37QELqthMfPRPpMDwgq5QPHfT6Y -hghY33fCzGmGbVBQn8agB7G0Gn74riTWYX0pxCS6SyXeOPTLndDdVMae03e76YFR -2PY6UHHF4iPUl9Ph4tBK5+6fAoGAYESD9qVejDXjabRyQJk6JMkBIwahzhTOmUlq -NiU3HMnGZn6VBQQU5GU2Uy3mHRQ22tvcY+B6GJf2KbDFMyxo/lb6t6PuNPPz8SGd -uJ9+tX8tvG+rsTviWI9L4QPS9xzYKhAXYk2SMNJfx3x6ehjmQe1wkysvl1VSTDiF -mWzkJ8ECgYEA27EY/PRn3e4mlDjq+2GMN1ZVNUBEmFj6OaaKbNhAfv2KhxnScKa4 -XnnO0jWZ6ca8i+ssrBC8D42fiqoqaVQdx1CaNR+SUH9gnU3v8f5/BfR84iRRaob+ -hoiu/g80zaqDncdqr7rNAlAuWmye3EGWRYWxxZbPKkxKbeCBJbWDqcc= ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3037.crt b/apache/certificates/3037.crt deleted file mode 100644 index 3e48f3a0b1e7..000000000000 --- a/apache/certificates/3037.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAmKIMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMxNTdaFw0xOTA2MjEwMjMxNTda -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBANOND0oHh0sGlaIKdlaOPV/XlWQlTB8c8phxSyhcppKfYjzBRY5N/C6D -BtTUO5s2gacu5Fy1Mi9eEuzbu3QZxu9NokNlSKdLozLeqW3PNf/3wxKqB/OR+EE0 -Q6XncAcUF+lqPWcK2pNca8VFpx1LzsQ0V18WEHL0zHKjqXBZyAakc6Gs+tcXpAxJ -yRwhHQDBJvS2hO44FgnOhaXuvBfr51+C/j7tZdtaSufeiThXBcpKqjZ8k81ur0LS -nF8W0+oRalX48vdQdFUuXcWmiERw+bHkrGoEGqrzvIbkZjmm5ftuGmYkJR4wweUi -H5PMkugvBoj2gqlGaYG9G1a5/aAJJu8CAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -cJiz491wiGsDR8+873wp1IDXrdliz3+u63ayA+xobLjS2khpi4jX2zQt/fgpXTR8 -6DYeAColUKLp1aG1OzMXppwgIVvFtOvh23MSHugGsbwEC7pkVDiAOVhAWQKoxV5H -HkMalvDQEHD+E9a5n6uL/blw8O1IKuStnB9IZaLEq4xeCWv8LiVBHb3DcFrcqiak -lJQC3+S01tkDtbjV95xncUh08tRD1AFnl7FAGkUooo2OkYjM/bUY0oTIc6pN2zY9 -xmFS1/9a4/5BKbOngJ3Ux0fT0X+d9i7EMbxAd4a6XWpBKF+YyXWh/kZjN6he7liY -qrJZYTvMG2VipE56fhYC0Q== ------END CERTIFICATE----- diff --git a/apache/certificates/3037.key b/apache/certificates/3037.key deleted file mode 100644 index 8fef5d70c6c9..000000000000 --- a/apache/certificates/3037.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpAIBAAKCAQEA040PSgeHSwaVogp2Vo49X9eVZCVMHxzymHFLKFymkp9iPMFF -jk38LoMG1NQ7mzaBpy7kXLUyL14S7Nu7dBnG702iQ2VIp0ujMt6pbc81//fDEqoH -85H4QTRDpedwBxQX6Wo9Zwrak1xrxUWnHUvOxDRXXxYQcvTMcqOpcFnIBqRzoaz6 -1xekDEnJHCEdAMEm9LaE7jgWCc6Fpe68F+vnX4L+Pu1l21pK596JOFcFykqqNnyT -zW6vQtKcXxbT6hFqVfjy91B0VS5dxaaIRHD5seSsagQaqvO8huRmOabl+24aZiQl -HjDB5SIfk8yS6C8GiPaCqUZpgb0bVrn9oAkm7wIDAQABAoIBAGlPHv1LIh5G+NXh -P2d3BzZeqw9fQbV7Q4h/XVqKRKFYlh6IV4evaon8z7nCrKlnSMNgpG1CBeluex1N -hNMWweD+VHgYQ0KEdIkuLklrjQYO4By6Z5roXxyWV9aOj0X2yrB3InnY/VW9/CgH -tFjxE8y4AYZkBWw0UFIBBqfXCavD6dQVWLQf32PBqju1Qceds4cdfj+mNCx4xJhd -yHLs63qZSggC8EMdhKEo6eQ+w+bJVDMNNzvAHnSuhgb5cqKdX2uEsCNNse//PZxY -gRLtqvsEn0xnIfJ7HZPtmhf+9Xt4oLk72woM32hS1kZ8FRmDd94Xzm9rrBJIMuLu -CSEjhAECgYEA7BY7xZLe0weArH4jsOSKVA8lqlytms6+0lc1rCdOl8t8pikxzfrT -X2l8kSNDEbDD9mBNCvvZ6zdBgPl1LfNqmfmFk4mbqbe5FCgMbkfIsSNtI+P7od2d -7g1v1jO8kBYiP5/GE2cISSyWayK08EUJKrQ2yZeeAbK9OLtWbWzPvCECgYEA5WUH -pO7nrrbva7xAfJT/vqUmWARixurblowZWqM7hMDPMMbo+mM+am/WhRlngc3XGE50 -AUcqV+hPfCd8yUZAWQRoG3E9GXrL7+F6O0tDOw3nshK547JdVtTE7mTjEsTrNajj -v47rYRONmV//sIeVtugWIThfvxVGZ5rBATQBAQ8CgYBhvg6/DMB+BCQsxgiGywfO -J3tDnh0t85yjPwH0pU1voQqZTILXMZpjbSvqdvvkjheDoHklLAIb1QOknyL5hEbF -Or4nyBgPWwYgJziGS+f2FqGv80qRyEwDa8K6ny7ZRKCnUMHT9JtEmFYqQvNAaoSS -DoyER+Zd859NppnwsdULoQKBgQCHSK/bazGjbiuAxALb9htlWYxleCCw4y0hefox -4/Zj8jm+sHARypmyt8YxtKvAd56UrR/o6Qll0pGdzMPhB9dHKDwlgwDfl/XRwI4P -jfFWUHsGH9kVGcnGPbDuTv1DwnJcsP+vpx/VnmxxuZXXi/6VYgY7DT4aOPfOfgu5 -I+w7rQKBgQC6dchFaOIlHnyIovpw9hFYdDv3JfA8HTHIDIAGUFXO5AykPEW8ts+t -IHVFwj/qhqERzNuO6+TQlnUXYCpBVGkpdRGtyT9lucCOKaGO6nCKG712ucmC/EVX -Ke20nO/gVtaQFMTrFhcbhuLZrw2ilNMRhJMZcLqfaFYI0k4mPSHyXw== ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3038.crt b/apache/certificates/3038.crt deleted file mode 100644 index 554530537424..000000000000 --- a/apache/certificates/3038.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAgHCMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMxNThaFw0xOTA2MjEwMjMxNTha -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAJz3EBg2dzh7hN/Es/yX1gK005WIc5YTR7imSHpWHh+15JeiGsy4tzH+ -mIMPsUZQ1gX6+XEYO+DW14xPbwbFxD7h9DEfOBPhrA2KXu7yp0QnJNYbkOrb+u/i -ESNFQwD0gizzIYSy1RiDMfI520l3/vgRh5z1RghtdXqia831Pgk+g32yYFEvyZfF -cuvO2uUwM+FGd4S2sMDpG2Ypa0GUHiKO8PEayaX443g0NpkRxftQF5Hn+4zseHvo -2JWLB0mks3AxG6yBwmCLwcQAxKQso8Cu5zdcYvd2VW22+Wz7d5/nr6kYcbqNawv7 -Qp+jekcmDEZqOhEdiIyoeqgs3lu/OpUCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -mlYCjw4Muce6qdBXOvUWSr4jvW7lLJeG9smt/pvby5ZpM9LhEOPX8P72MaErAbmT -kcbx27yP2eDEVE9kGGKnMY9lav+JmNHgOyUD6KUGg9KA/UPEkZvDUdQuECJJu+6p -37KhLtefEAlwG+WNJhyP0fM4bOTl5zAtDMBNs2zETXbO4s27bna6w1TkohSRKBnh -mhYlj1I83aDBrHxdbJVPsB2QEB3Ov81YcFB9a7NB8lePwytqS4LCS4BqPv7tJvrD -+goJB2nghX3IhranU2mlGNt6Z06e0QKheU3YsWmv7u6VQrexF091QuPEQqA300TF -3FG2lltyLLRW4PBdPrYsJg== ------END CERTIFICATE----- diff --git a/apache/certificates/3038.key b/apache/certificates/3038.key deleted file mode 100644 index fa72a3cb75b6..000000000000 --- a/apache/certificates/3038.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpAIBAAKCAQEAnPcQGDZ3OHuE38Sz/JfWArTTlYhzlhNHuKZIelYeH7Xkl6Ia -zLi3Mf6Ygw+xRlDWBfr5cRg74NbXjE9vBsXEPuH0MR84E+GsDYpe7vKnRCck1huQ -6tv67+IRI0VDAPSCLPMhhLLVGIMx8jnbSXf++BGHnPVGCG11eqJrzfU+CT6DfbJg -US/Jl8Vy687a5TAz4UZ3hLawwOkbZilrQZQeIo7w8RrJpfjjeDQ2mRHF+1AXkef7 -jOx4e+jYlYsHSaSzcDEbrIHCYIvBxADEpCyjwK7nN1xi93ZVbbb5bPt3n+evqRhx -uo1rC/tCn6N6RyYMRmo6ER2IjKh6qCzeW786lQIDAQABAoIBAQCXik+XkL35Ygce -oqHCNDUB1+KOc3ZkZajQtHk04v+iTdGsM2z8STlUoyBLKFNWN6TpkSxR67ujjsf7 -RpVCTJzyuOMwqZtSVoXtbLHKr6qdOc1uiJ6YoFjcT72L98qAmY80Jmct3hmt2LvX -x9PWUmtuxD3RY1uBt2u8QiMibKq/8H9Vzg8twLkz6o8xTLDF/1c+/23k0VH0h9QN -Cd4I6xueRG5BwaxHY+kFEuqHdHa5WxTUkjj11ru+uQkdbNMiqtzJvuFVA6wgKh6d -omGURZMZctyo4M5rRr/BINuC7UbldjyLyFK70eO3ybrgiTNAIYxFinKhvpe6zV8P -DyDefdHhAoGBANB3ZOYx9dHmk0VGIteM7oU7DMYpwjQ87yRXGytck2hV5nA1Jg4Q -7zee6Fnb56r9Y0e7W0Mi2ZvkJ8b1Doqgqvy65q0Sl5rT+enys/S92qDxYVc/Gv1L -jkstagihLpb7usbuTq6Wn71MATAmmiinw1SmHJNI2MQhM8PCrma2XDAnAoGBAMDB -bwXOwm+hQXGKPYg0jdLHaHo3D9esTMr8a4WzkmnTY/5Uge5ENrGbOwhMAmWkSkxs -taTMifhf/y8e3CpAsXhZMDvVB/YCn6MGq9DgTaTRBth1mGfbJJ77xk1zbpTjf8vA -f2LcT7EDJrJ1p1M0CIWOaK2gnNXLuwsA4oSJyDjjAoGAXBcSLJqPZC0+i5CjHaN1 -Tse6KeQSlW8BmYUdTHd16tZfmNvxtq8GbgS10dRSL/gFno+Gjk7b4IDWjY594QF+ -52xNMNGQxWW09gMwOgKQjR50iM0oyBJThqRGPg+t/Cax6OUnPvrtD/t+Xt3+pc0O -fdtvriS1FVcxfd4HmvoeGWsCgYEAivqtZx2V+dDmE8xd41gpLeHTRdNvm8zCrdTk -XcmE9sKRJW6fJEGQwewv2yKa09hqLcJwEbvcevYUU1BH5Dsy+pgr++f0zn9DxNLp -jTg9I2oHKolXcwKB3BOi/nMNN1L08N8BujEpUHL6MtA77fTldA6jERVuH4S+fweL -S47gi4sCgYBOo8pZqJk6Y/5Cyhx2DOv5RYRZLz+GEg8FpiAhmbG0H9e5TAC8ZDVL -1DKzORkQVAjA8Umv+wkOlh1qdUVLEBYPVZG7wysub7nC5nKXutusOoLTWRQWF7HP -Dj8G/1iJs3aGShJqaUt6yJ8uc2LeuZdW0Hf1cvp2HpMlamccTe94Sg== ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3039.crt b/apache/certificates/3039.crt deleted file mode 100644 index 831f02e95a68..000000000000 --- a/apache/certificates/3039.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAgvUMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMxNThaFw0xOTA2MjEwMjMxNTha -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBALtSRTOu7bdh6AMc22FAK8iWw7qq0L5FcLaH0s9yMpRR0upFWlkREb/b -5WkF7G+ws/kIk1sNhDZzNVDd+hVzLpXDqI6W+FhXY1Y5icTLr2kjs49APxSrKVPd -k8rlt83Trbsx2G6gep1YIPvVUYpyJF81ZkbRQJZ/8sxI758iVKLMgVyI7LRvJsud -OhAHKcKCOpBrptXcheugBfCHssdQhy0riAymLbHX5gT8KCFzvUsifkjhR7DST6nr -ou81aCkvm/aWy8vHopdj1h71XyFqWaHWIUc907rJKVRU5bKcOTa77dgW48XgsrMG -fSwt5iKxAwyXKKe105zKJfZhSsgHKhsCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -LBcKygtiY1IBDE6Ei1HjwLWIWb3Mp2YUZ0uIRThh+fyoir1e8s1tbP0hTOlGEySB -Vo36R/EF8hSqwwll4kdQTAbjNhoFWqaIGOhIqRVfATzq7WXi++ttVP69uomISTYK -riCVWb/km90mhSJUDNdvkhTTL+JKjJQgP3I+d02tvolnrjHmy8d0wmIM6Vr2JM+T -VWeDZB4NpY/xT4lYqxPgxRlkobCV1eBSWPa2H29xcQueofJYqRrPnqzVT+xOeK1o -0sdwNglM1BC2KMV5MqIyXxWNhG3hyDlENSAOTz3vSGwe3Jm0SQHmfGr9mu8dv8f6 -yxTq6OT4ztW74L2RxkFzLA== ------END CERTIFICATE----- diff --git a/apache/certificates/3039.key b/apache/certificates/3039.key deleted file mode 100644 index 51e44af89edb..000000000000 --- a/apache/certificates/3039.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEogIBAAKCAQEAu1JFM67tt2HoAxzbYUAryJbDuqrQvkVwtofSz3IylFHS6kVa -WRERv9vlaQXsb7Cz+QiTWw2ENnM1UN36FXMulcOojpb4WFdjVjmJxMuvaSOzj0A/ -FKspU92TyuW3zdOtuzHYbqB6nVgg+9VRinIkXzVmRtFAln/yzEjvnyJUosyBXIjs -tG8my506EAcpwoI6kGum1dyF66AF8Ieyx1CHLSuIDKYtsdfmBPwoIXO9SyJ+SOFH -sNJPqeui7zVoKS+b9pbLy8eil2PWHvVfIWpZodYhRz3TuskpVFTlspw5Nrvt2Bbj -xeCyswZ9LC3mIrEDDJcop7XTnMol9mFKyAcqGwIDAQABAoIBAENEIdGTaY3GvLgR -br4XeyGG8jZgDKGm8fi6AXu4+GzGjUTPLsh5FrSc1F7IX8Uj4Rz2dWPnEKk06dpm -O93kBMCHCEpb8EZY6zUVaGGg+xZ4WYyBd6WGaUrScLYVk9F3yBVGqv/e5OkHsqB8 -U9Gxd1oxJM8daWIiBCBTuKiefWIQDJG//ZGWVFfkb5DCcaGX8U6pYQ1+AV9fAwmO -g2wdTVDfejq5YAEdgKq3LjgnE469P7t//gqFH3D6vePEew7MrFtL4JZaJyb1X9bl -GLuxJRIkHlmY3g+uzQeuUqR0mQSUtEx8A/kcg/rdsbGmFAvntD0uBmNirwWdYsfJ -xjpuAaECgYEA5mYM0FCSfgRUnaKylcODqYsaKxd5AZxpEWJZki7Drk/ow6NzoCKU -bkXpavrZ/DayuDIRmA4Edq5HJCk3z0He0hxnxVJxe5hSg5C39mfcA/fSfUO+WcNy -irQtuDX3MKQOkiY+H87QX5mi06Eu/Lh8TflJHnpK9o1nOc5ApJ1vqRkCgYEA0CLW -tZO0N1Hb/Y2z7emGrrX3s1H34baz31ZcG7zPJKNAVyErIFcjmRLmWNILK430m/vL -KnagkwPt9HdtMgG1TywBKljClqKDUGCK6DoL/NJFbLxBoOcqGX8zOhMz6MZkxXrj -ZinsZNvNY6CJU0G+Li4a5YwQqOL068u/His971MCgYAtlECysU3ZujeXG8mikRQp -5UffAHzC0dODSeaYYcH6aPqOQXatVknw6sm7jTa0i4mdoOIUJ6nAZMfUIodU7B4N -iOsKgT3MCp1AQ8/w4ikHa+5rM4yjq2OshuqIh7yIFdyAEyq1Fi/oybcJkNh/zGti -7Y8GhYDw95ZVPDVTm4WseQKBgD3pzyLOYDKAiEdBar+f0u+Ps7JE9M7Q0WrjPp0F -qjzEzzPb6v9AzJcRVzIesTHwlU39Na9ZAGUbKyKoj/PrLCrz9RjKtH+oshUr0sZH -1h8L0ZkJ2x/pA833154z7iIVOg7Agnp2iBpshAlZzN/WU6NbFaco5h/G+4JU5nIr -/M1/AoGAXpXshLEcW7m/jnJZUnW7okmrtOuJBsKHmIUUPG2XuSL0iWdINC+sAD/w -14A661o8+d4tTUBkZ144728+BW8V5ySTfudLEUVKg8fjuOI06varw8lL2Rzbrt2U -aVAYQ9PZa2s3dPaczbJ3FPR4K+tH6wETwA5AWTz7xyCyXzsNRAM= ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3040.crt b/apache/certificates/3040.crt deleted file mode 100644 index a276b91b74a3..000000000000 --- a/apache/certificates/3040.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAjtmMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMxNThaFw0xOTA2MjEwMjMxNTha -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBANMhp8R+mBncvzw2Fnrcl84IB6vKtEi8QM+z4j7SavYQPtG9ppI6eiZT -6g1p4e5OC9xBvE7sZvwXq+eHfF0oLmcxQl0vjZARXyt5tRg8tsT0bmlxyN/8Ap8M -KR0AsBKXbG3OSQo6YOVkZ3sc5fiUD0HAgkilpNExlr2QI5+Hr37UC8a0rwHPuI4w -MCppEHOMDMhkD9i9qmCE2IaMJN5EeY+OBYW5Hq1GTwYSR8ChNoTiRrd7xE/IIHrZ -K4dX/qmkuzb2hdp7n75APvmhybSu/Iv9VzLRD2Iy6aEQK5KelO/BUvcysfJoyid+ -4aYL9oWQZWc5S2fICzmieMTY6Qs2MPcCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -OTiESePvC4qX7DGhUF8/J1J5iBR6ut/EPL4C3L37AB2OJtO+YtpGJaR6VqbepjzR -X/IKzl9UCjrlKUfEn0tYDcPKI5CAXFDZGrAnA4hdsxNcxX+e9e9oLfCFWL/CeqiK -FSCHKkBO+pYK1V/U8qAUZAhyZkqCukBSpohFI5pVeI8jJP48KXCj0jTczbLR5MWg -T7otMBSLyThNC9V+f0HLNRuQ66ULtsd/qOeBiXFALvTd2josJ5YVzFfg6raROfeO -Blsyt/JkaG+aLaVNLWk3Gfe/a/MnT4I5AbBnXdHEncoO2lbFJ5EscPEaRiNHTZlO -scx3Yyq4bZ2eo2sZgx/SBA== ------END CERTIFICATE----- diff --git a/apache/certificates/3040.key b/apache/certificates/3040.key deleted file mode 100644 index f968a1070888..000000000000 --- a/apache/certificates/3040.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpQIBAAKCAQEA0yGnxH6YGdy/PDYWetyXzggHq8q0SLxAz7PiPtJq9hA+0b2m -kjp6JlPqDWnh7k4L3EG8Tuxm/Ber54d8XSguZzFCXS+NkBFfK3m1GDy2xPRuaXHI -3/wCnwwpHQCwEpdsbc5JCjpg5WRnexzl+JQPQcCCSKWk0TGWvZAjn4evftQLxrSv -Ac+4jjAwKmkQc4wMyGQP2L2qYITYhowk3kR5j44FhbkerUZPBhJHwKE2hOJGt3vE -T8ggetkrh1f+qaS7NvaF2nufvkA++aHJtK78i/1XMtEPYjLpoRArkp6U78FS9zKx -8mjKJ37hpgv2hZBlZzlLZ8gLOaJ4xNjpCzYw9wIDAQABAoIBAQC8lxdwoVPj5ha8 -BeRWoqzG0M1pWotnXSDXZur1CqeYXDKAz1L2011A1zv991JktzpI6D74kJn9HHfl -PFSOMdIhQxLwggWFZr8H6pMkrzbi/yOQ9J5l1InS393pli+wq6mi+9yqUjMzNFhq -1Aln3XkzVm4JzkxGwHDRqurnGSBdvBKFUdXXpfYmsHcmRa5MHi9PV30/IJPxzPgG -EwuIdUuGaAjJwAkeV+aWrZE1tsH9NNgQzfvFYFKsfDp80RlSQX2LFMTWAFoPkPs3 -X9ntoAf+83hieTWERe4DOLkpeycHfxr7gFPlcul42ZhYEgYJdqd/R+y0ZZmjk2mq -wNzyqwyhAoGBAPweCbyp8+fT3//tGepfEERq2uDrUtRwCFNkYaIvefrbrKwgSbV7 -HZaJcrHTuZb+ajYlQKNTyE6GECFyplSH8Y4MHQiUi/7Wd8h8hFaOwS40RmoePOpG -QZMVYERmhzTj0cqfXTjy5FIP2jh0mZ1eNeVdKJpRAdn1NTC6r+82vaBDAoGBANZi -CEEaxr8po+7/qaJNdDGKO+ZSp6SeQES/mdeOwkqGPqgfD12Wj3vh1U4WboH2ooNU -wQetAOwEJfsD8Cw5jBCDMXDpWBMqYWdJTpABB3FSrdm5svvkCirK1wOfYbuW/X+D -/MxJ6t+zSzwoAgnUDVZdOedZRRccc8z0TRTSmWs9AoGBAJ39gOKOqj8T4iJyBbR+ -gCYvxBwAu/ZOgpknpZtKHymZ8donnakxjrggSBSx9nJt2kc2DwyK21KB5qffPeZp -DnGSm7sdw6Ed6xBjH1dSvDJlJd8oNcol3r/6PEqA6ae2QGi2d2fRpkzajEimoQEh -4aprN5+EtiFM7VktFEVWy3wbAoGAZ9E3gBewcXh/y8iBZHivsSHpGgOi7YQ5SVGj -9ZBLpH1YMGBCN6cmuu5FNriEMWm3j3PmuoncLW9g2SsyDqibnI97zNsjbLyUSMlm -QzRMX2OTjyFvfK4VAl4SO83eLVLUVgEb1e5h0Izp/Sq+ufW3s8AXv2IqpCOCLJmO -DmxiIV0CgYEA8VRgG9Vrg8zk2l4OyvuLTgyvGWucg4wazscgI18c4UtDkeF/cY48 -2lO41d2tJQ9KqiOy9a8bagx/R0BqmZzgshbWJdiUY9JMTnVAlAp+qdiUOZm0ZNHc -SNAOCzqhCgTr0FzW5gv6u605RzVHcefglwd3RfGdfHuiAu8DMjswy0w= ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3041.crt b/apache/certificates/3041.crt deleted file mode 100644 index a7af1c608a7b..000000000000 --- a/apache/certificates/3041.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAlQ0MA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMxNThaFw0xOTA2MjEwMjMxNTha -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAONTT+6/TOc4ThAOOwH46/bsAyecJNRJtw8a4vkktqU57rjnF5Mx8pH6 -sGPZOJ+VbLpCb6IJ+zj+Ko44WglXv/rzpZV3h5MqcFVtXT2s259vs5yBIqyUjMUo -FdGQTGxIjCHbvodjfACk42Gt4TNyXFklwcJ24fIr7qC1oLOjtQjohVzvf0PPOniP -xo5HBEBCUD8jsHdxnnyiM1prrLmgqJtj+mki3VQbmHeB5TlaiC5WLEvrRrZmL0nT -FbhLUEvD8eIVFAJNeCUiXrmujAJ75+iQTz7zHsRs6Po11Tb9EKACwcMWzV5/oryi -TYn3usTSJYUifxj2xHM+yOsy4G98VwUCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -OzViEcJ+akv9t0er3mNaOywJA2OsjSO2T+DQwSyAGvlFaH6JlKIzRYSoO/v/yR59 -wIDgX0cdceK04yzvldIHIJfRRy2yMD7GsAsM5bWWHcG9yJjhUnF4lgS0gWd/O+b/ -zyYlonNPb+ZhR/6nYPYudqb/2SOhUQQJU38rZoE0zDRc9u+KUC9E8SMisFJhjCW7 -1yte85tuRbwBcPesylIKiU9Mj48ZYT+HiydWSKDpJRV++giq/gu0/N7nLQUmALGO -4j9sDDF3SBaw9B6H71l8KqN8sqK5irfaul8FvoVl77LL8lQCZNhp9w2ejWmjPfTD -OXwXbSJ3eIJ0S1Q6j3hOuA== ------END CERTIFICATE----- diff --git a/apache/certificates/3041.key b/apache/certificates/3041.key deleted file mode 100644 index 0edbd7e3d7d6..000000000000 --- a/apache/certificates/3041.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpAIBAAKCAQEA41NP7r9M5zhOEA47Afjr9uwDJ5wk1Em3Dxri+SS2pTnuuOcX -kzHykfqwY9k4n5VsukJvogn7OP4qjjhaCVe/+vOllXeHkypwVW1dPazbn2+znIEi -rJSMxSgV0ZBMbEiMIdu+h2N8AKTjYa3hM3JcWSXBwnbh8ivuoLWgs6O1COiFXO9/ -Q886eI/GjkcEQEJQPyOwd3GefKIzWmusuaCom2P6aSLdVBuYd4HlOVqILlYsS+tG -tmYvSdMVuEtQS8Px4hUUAk14JSJeua6MAnvn6JBPPvMexGzo+jXVNv0QoALBwxbN -Xn+ivKJNife6xNIlhSJ/GPbEcz7I6zLgb3xXBQIDAQABAoIBACRxFJ1HWYKvigQU -4+y7BMi+qPrOkzDc6FWpj70033q5QMWvdh4IocQ5FdHL3sHmaFmrkM2/H+DRDe1i -pzxcLtCCAodlc/xpjzyCnbHnZgW3GGn8YZyc67wnYugHY9jwAFblLTPzBMvtou3j -u/hNWvSHkvojqLDzzftBYpOpqLnWj0IFgoJG3NNlqBYvyo9hxHJ5R8v1UOvGeMid -YU/C8ul3F9i/AmMJ9yW1h199O5kNt3QjR2YDxVQV3kLvQ6RsglttDLeg72qGhfsD -w3i4Bo/n2HgdfiQ6Ytqc5t24gBW25DtN8dAlBLtOYwtn96Ft+UcWobwe17GLAKGD -6vWznXkCgYEA8mXhwLo9itO8qBP3VpAwNz2vEy9xhZ6g0n1Bdpz7Pf+VMtQKYec5 -I4C2K4K7LQqWwfpw2dhJb/ghTW+3RB7K5jsesZRUXGsik01kQcHAbFip5phRP3Qc -f2WwJ0yWVQ9GDDAuaW0RbDkaoUW9VOvBAV+f/AEyoJy5Fd8LUhInCVsCgYEA8BTo -sYfUeUAUYvP0VSh8DLgFGrFJnYsfoOw4P6LN/tj4BoCCTg2A4wNzPyvQKTqe5bdp -eiP3658zgQPHAmNCRhX+OiiiCzgG5cAq8TQ4Tt/pUt4kLlGFBNKRDA3+Gvs++gpZ -xG8xXxnx2xrggcmHypifMkYAL1RvIZzIqMmnrx8CgYABQAlEBzHeD21/qGq0JZY6 -ErVecfYx7DmEHGVECVc6YKESXAmZq6mdx0IpQ0lX2CAi6/m9BeKLE0qIrbTSQx5k -xZVI8SzmNR8+hz2nISqu5F4r9Ekm/KBQ/+NCsKBt2+BOm8kBfjCC0GCUyFlLoNOk -ACxBDniGX4iM1lOmnrVY1QKBgQCPXe0XFuXrAjkqXkQqFmL9tWZW6kfrrIjWsDlm -xvH8ndR/DX7C3Y16AzVvI9rKxBbfVwfFyHTkX82B3Z+Z7WxGLhwC3wDlci+sQ3Vh -VK3LbCsJMV6pykSE/LlhWXnE4wRYjJXOmBgDkpq7HPG0j4Rnl3x5qROzL9itWdL5 -+HIKQQKBgQDXK9w6fvDcmRAzNUHzAFTd/BWTLeGt+YPV/V+FL9iqRjp5wU4TtqI4 -mMF3hu9K2/BmqyVP0B40N06G+EPL1U070jpL2tzJIdp4G6Mb/pFo7fObyIqFHUom -9T1FFgn7tWC3E+Ome36bgV1u4pEprOulmc+sIs6dej0Ude6ayuT4DA== ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3042.crt b/apache/certificates/3042.crt deleted file mode 100644 index f1fb39509186..000000000000 --- a/apache/certificates/3042.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAjRfMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMxNTlaFw0xOTA2MjEwMjMxNTla -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAPElASK81Qo+OoNsUnoBWC+BGqNJMided/fkhIBOI9Qq+ndSsV1blqCQ -u2zTXJq2pC2W5WJkqOSjNEKaOx9NovoR7lB/fdcgWw0dMzLvw5N1CjxsLKqtiroU -FnpVGpTSa5xS9u/VIoQEETQEXObDuZTLvLYYcmJ7KCgS+ShnfpNXZJ2L9DFk4Ynl -R9fLi+US4N7mLNLnxCS+5ysth+UB2Ex+ljnxBKHYMlyx+u/bOmF1ZUNlbkJpFz7z -viJfaFYOn76zbiEQjzMOiU80lqckG660u4ICQ1xg0YgpnBB5DzwKQFnqBEQsDpN/ -kib92/W87mgQolclC1w9vmf8y4FM4+MCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -VDsyGGB2+p9lWuOoBO2F93CmpYMViY/uvKTnf8WqEP1RUA170sYpmT2IrEyLPoi4 -Kf5E6q5fVkBCpleTGAu8jA6okcq6FzW9iFVfg0sq4EEK0DzyDf1FNwEg4GG9nTJp -SZ3VmRvTpmv1SfyO2LGEyBVsHwx19WitV9Dui3Pek/fNeAYpOYLnevOMhXK3KTSA -xZKVpbXcliv4cmXKXO5+5J29OGLvXUKPsvCUEBtvU8hTggFCv6M+Ez0HjyZy/8cE -jd14QQl+AoQSGjbnjHvzp310MLB1MlKcUclK8UGNaAY0FCw35RC96gDXCmEFOYe4 -um9kxyrzzHBS4Zr9EVmyOg== ------END CERTIFICATE----- diff --git a/apache/certificates/3042.key b/apache/certificates/3042.key deleted file mode 100644 index 947062a224e3..000000000000 --- a/apache/certificates/3042.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEowIBAAKCAQEA8SUBIrzVCj46g2xSegFYL4Eao0kyJ1539+SEgE4j1Cr6d1Kx -XVuWoJC7bNNcmrakLZblYmSo5KM0Qpo7H02i+hHuUH991yBbDR0zMu/Dk3UKPGws -qq2KuhQWelUalNJrnFL279UihAQRNARc5sO5lMu8thhyYnsoKBL5KGd+k1dknYv0 -MWThieVH18uL5RLg3uYs0ufEJL7nKy2H5QHYTH6WOfEEodgyXLH679s6YXVlQ2Vu -QmkXPvO+Il9oVg6fvrNuIRCPMw6JTzSWpyQbrrS7ggJDXGDRiCmcEHkPPApAWeoE -RCwOk3+SJv3b9bzuaBCiVyULXD2+Z/zLgUzj4wIDAQABAoIBAHypfKTQqfHZqbY3 -UYvxFf246GRxepQPqkVkxXru6mbMsR7uiPKSXpQzPjFMMxtoQAexcnQjRYytMl8c -DGRqZk6Q5nqG7i9ActGcvtMeUCTy5I/H/G9ft8/qgpRLWqqE/UybNz1VGbrVv278 -smo51L6vdKdOjBONR30wEc5pcm4IRv1Cp+WOu2svWm2QjF+G9zyjaOL5GSecgeoA -9D60VwDzCvPoffjYjg4zQ9cZw2OEkejJ9kL8GSmykLkhdfF8owwusYxI8clHK2XH -LrAhCA8ng2ddht+VC2K76zQlO27XvlOMxtfDymGXQ5HDUZJoFtWdG2D1V5QYXDhd -k2O8+4ECgYEA+j/Lcuw1Wv4GtzjaoibbhXNYM6VnhZabt890eyC1LrL30Y+mXUFU -cSMOe5QEpQq5gKUCDCLRVWVlG3BdQ8asObwIC7CAdtgQBAEJMKFsxnOtJpYlCpDL -VziMr6SZOC8CvyY8tJ/cnidTpYzC7Ec2OmWEhFKsxhohG8NWASPeJ4sCgYEA9q+l -v2jr0NLBNHXAyAMaOu6WVX66m0cwOvnGPawdlx93FSFZcxQt3ZXAnkpi/JsKjmDh -+E0ISACEtCMXXgZEcS/urlc3T4c8Q49vP6SEUBdOxVlj2rLUr0QDGOk910ML4N3/ -cVZ+Nc6hRsi5P6wn+IP/oIprJi1B7gRje5cogAkCgYAmtxXnmqmKgUBSukYAzhgq -JjUgEFfar/k5T6wKnH3LUr7KOfoX9VJ2CmFkNvsc+XLHdz/A1uYh2wTwYMrdAHCG -ohNwk4bcXALmS667Sk4EycKg9JuYbdw3izUgu0tFCOjY37aGjzDXeugS9Zr2aPH3 -yNreidfW8hXrMKYumPj2jwKBgA7m53VbqjswMBmyL1Yl0dTTiuNZR36P21sEsbQS -DKuPbAsru5KXGnozTLKDPd2SpB2bvqrYRHLNDTcwk33LlSDdS2bev+me+sX+CTNo -BdIsxkZnsv+IJA7+Zc2AcYrqcvI/lunK1s77T4TOJVqyVKvPlYamNfjVbREq1LOn -mvu5AoGBAIGtWFvRT4v2UiArwS44tf0dk3CO4bMKOzvtqsWfpmqYzSuxxOdlUkfH -GL17KlJ9Kw5obYmF7nYbZwdEVCdvi4MY7zPNBHuISzLqLe2y8ifDZHbEet0b56DT -gwUAKnorgj/Sz56s9pjJ9KxrwKLdIXdDvR26Cm8FHE1RdmsBOZfb ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3043.crt b/apache/certificates/3043.crt deleted file mode 100644 index ee97687f8e5c..000000000000 --- a/apache/certificates/3043.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAlwNMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMDBaFw0xOTA2MjEwMjMyMDBa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBALaMUfy17R6gaOh8UKjVubHC/cxj220OgyOAo64bUtNu0TrBzpnHvff1 -R3pCJwwRR3aPnNbMw2b9lsZdgA4FoN/Q8G0Ugn8CvXcoreYg/NIFWeltAgH6czUG -c53QdEkx8P0YESswBvF66Nw/6VuuZ9EtZ1B7qu0ONqodzSV1xTxETj+h9V9i9HuX -4WaQvRQppVO5O9XyaOr88eKm7kybkHij5kDemb/lBxbJnWArBGIsI8kmPX4kWYf2 -ousF8ZzUTgbKgCLt+TQev87HOkrd98nnsZIE+dWHlod03a4fM/Ot415Q+NcTkcm1 -1GrDAydm6TA471bWYiwOmCZhl4tpVUsCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -R0kWJ2qJy8B9pyzJoypc4XbDvOjDpSaHskIVM/aCdzCITvi2l5twUkO92odMIKKr -+wMK8VFfUdhTuRyMwOHk9Fk1/OYtNF0X/DTNMviH6pVgvvA0fIAsxLWQgQlKC2Xy -d5bmTzC5IMEYtM5+eLex9SAaAvkh7AcDY5E/xw7pd7vm26i0jHZw3nMXS/XylZjA -C+uBHawveUjqMgwW+4byZii0/WNrA14GBdB/GLALawcl8MQ0Hea1RL9yRMKunCwu -KExLf44MSS4Uge42/adbdAYnHkt3wseX6kofVDjfy31C9AupZrZSmmir38qp3ZQk -OYgSrjxQA+SiT540NILgeg== ------END CERTIFICATE----- diff --git a/apache/certificates/3043.key b/apache/certificates/3043.key deleted file mode 100644 index 4f032b72be24..000000000000 --- a/apache/certificates/3043.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEowIBAAKCAQEAtoxR/LXtHqBo6HxQqNW5scL9zGPbbQ6DI4CjrhtS027ROsHO -mce99/VHekInDBFHdo+c1szDZv2Wxl2ADgWg39DwbRSCfwK9dyit5iD80gVZ6W0C -AfpzNQZzndB0STHw/RgRKzAG8Xro3D/pW65n0S1nUHuq7Q42qh3NJXXFPEROP6H1 -X2L0e5fhZpC9FCmlU7k71fJo6vzx4qbuTJuQeKPmQN6Zv+UHFsmdYCsEYiwjySY9 -fiRZh/ai6wXxnNROBsqAIu35NB6/zsc6St33yeexkgT51YeWh3Tdrh8z863jXlD4 -1xORybXUasMDJ2bpMDjvVtZiLA6YJmGXi2lVSwIDAQABAoIBAHR6WoIOLyvAnM/j -KrBgFymmyryU5tjSTrjjhw074ACLEDQWn9YdzkgeGKqY9UNM7zVmc2PXqcLYglE2 -LdREoR7OuepQEOgr/mq+6R8S4167DWDVLlfGz6YA5NrIvLpLhIJpzeKptXR1wYlv -ul3GjfW5q9d94VV7IUQw2cpSODS4KPMkIlNxtqxezCs+LVpvVGUl8tO7fntDXrnc -2MO1Mi4cZi6lS5u6/JqE4reolYXlhDrkkF+BuIc5bgm6VVWb1FUYb8P6SWrjrZT7 -fruhg97oclSpghmR+Z/utkOpyOAeP5nye0vV0JoNox3uwBun0SNPV6y3IOP2FyQw -+LmGygECgYEA2yNkwzrf9kljYU69XRN97n91g9a6fvCmoTo8hcl4sJ7jHP18fgmj -UHW/MOHL/CHE+m/A8kLw6gvPd65ZMtg9t/sCUwBkUto3rNqW6d8DNHpFmFeLT2pM -JCHR67xE3WvqfbyFQpRqvI/X3MbtSen7mR4dF7DIy6yx09GeAoSuqQECgYEA1UFF -HWEyrcpYDZnPZGHVZKht9cf/Lk/pAJTzWgGMPtYYQRffM6xGOrTLCs2OaisqcyJU -kTK6RTg5ell54ksyIcwoh6nIXDnalRuYUjCUptdyJOb5LjLcdtYCHXmxErGqwHxy -CWTeOb4WLw7juWJlYDOByNhzKkFj719fYRKb0ksCgYEAzaO9HufU242q0NnPIdT0 -zCaX5IxQnma+N3Yq7XFO7I9tmPrXJH9u3kZgkEKT5Zra+hh8+9qNsVQ78JeP5QK/ -iDLoz3MCsi1NKcxG6lj47PoA7SDZ/kBGC3IhSBJ4nUBz4GJUu1IDh8eETg3vBvmn -vNxheKXRCDCa/6cpnDtenAECgYBuwVBY+uMsOXvTzH9Wvizq80LwtGdGsT/tCm78 -3vLsq5q7K9/DYYSz9rPBL5L4duS8GSdcpcDyNEo9zfysV6t4vCSMmNQzeeSZLlTE -0vBRWnGw0ri1krrHiUxd7JbXg6iQAdHkKRv1V1EELbJ91Kmb9gRAwJHHb2CssJbD -vrto0wKBgE4xJbSlaOzRX9tRX3v5t8rY538yEanxcd5JEdQv1Fl48b3Zc1vp5FGz -fsxV4DZJbgOx0ogV7qxHtEj+3JDBRNcWzxy9xQKDml7bY8dIcvMSeWyxc8X0eHLY -K2MsXRXXaiaxK714b7oyAmo64FK2zYh3rv/63JBU2qVfJYFdAyag ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3044.crt b/apache/certificates/3044.crt deleted file mode 100644 index e4a664bff82e..000000000000 --- a/apache/certificates/3044.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAg2NMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMDBaFw0xOTA2MjEwMjMyMDBa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAK3/meCBiUOeoSde48RFCV7kXCfxX+j/D0Yqbrf0S1d1OSt73j1UUMRB -CPkvJN7laE6toVmW2K4XHwPOKmrwuEcg3npNDfIjLbhP3ZBRGx+6WBls07n0GP1H -mn7yt0eII0hy4AzrGSVkLzPnbubYx/Xw5PwibeRPAc5+fZK9CF0jFu4HxO8zQX57 -Qu78Jw8zFheHJ1IdD+2G2/sfdIQumwc5WzGrEzgB9THKGLQL55PeXfKGEJ9j2VSD -/Rnz+RyhSH4hJnQEluhLq7bL9mEHasm81DtONsDfFCizrldiWzMwlR4yEoynhCpe -oN1N1I2U0OQWCtEOQj1FhuQJpEzW2C8CAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -SdFTsg6wCfcRki3YU2CxC5bo1fBKmqE+Ec4e0LNRYPdgUkF73KpsHOzJgCUSjJdL -5SRYKqzFg6nGTML+mTxK4SHAKxbapXrf0Xi2H1gRlRgX3aQIuOSh721CzOpYF6sT -6M84KBMML0jgKpCly8Cj1AL9LnMyisC8jKObN9ZBOaNjmvPJdog7mkoZOhodeM9k -BN7nQ7k0CqNV82hI/kINEiqu0Oui1Y3JjCiH15rBjdDBtxPnqmGJn5MbQe1KyM90 -mOOkzx+nQIckp8SRWXwppNA6qAt1VjUTohT0/T9/Y166Vj7E0uvRqHEl6UAMAVkK -fBluvWEBH9hX+yxMftBOfg== ------END CERTIFICATE----- diff --git a/apache/certificates/3044.key b/apache/certificates/3044.key deleted file mode 100644 index 9497744e92d1..000000000000 --- a/apache/certificates/3044.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpAIBAAKCAQEArf+Z4IGJQ56hJ17jxEUJXuRcJ/Ff6P8PRiput/RLV3U5K3ve -PVRQxEEI+S8k3uVoTq2hWZbYrhcfA84qavC4RyDeek0N8iMtuE/dkFEbH7pYGWzT -ufQY/UeafvK3R4gjSHLgDOsZJWQvM+du5tjH9fDk/CJt5E8Bzn59kr0IXSMW7gfE -7zNBfntC7vwnDzMWF4cnUh0P7Ybb+x90hC6bBzlbMasTOAH1McoYtAvnk95d8oYQ -n2PZVIP9GfP5HKFIfiEmdASW6Eurtsv2YQdqybzUO042wN8UKLOuV2JbMzCVHjIS -jKeEKl6g3U3UjZTQ5BYK0Q5CPUWG5AmkTNbYLwIDAQABAoIBAH0EWZtldyqOn1ua -YixzLfhwO4a3dyIBoQfZFRQ3AqskHp+PsG6AVkesMrZXmTZNvlRJjNTB/Y2YL0Cc -sP2FV+JDS5a0JoEDpaX4PEmk/MgfK42ZE8dYC1xwRiFQYz+SIUe8wh6GDNtA0GmK -r7RNrd6X5u8CDdMssS+c0rzL9WZ0z5BKGFvOu9KBfMy1HZD6ALgKuGVmMFlM017s -zB3U9YitLzhLuR1rZKZnITap5RXuFP2JjvUSCV6sw4dGVGeOtujybniJsM41DU8W -9/vr7ypS8/T8Hrc7YY3nAIThYmvGIAMl6LFz5heqAruBcINAt6Qys64N2ojdR7Hv -erRZMIECgYEA5Lp84+Dzqlu8pAJ7s3qBdqWwoEE0u+Vz9KUW9RTjkBcT4XuNRSbm -AkSetdUEVuYxCat5KtEzm9qGMRNWRABuTE7MHcypBGIMMgWwQ8IEcXPWPbx1hSaB -NR/95pc1Fto45Tn1Ku6lUoNDz65FoHcVsTAeWtU2hsjw4UjwiSOUEo0CgYEAwr6U -qVo8VJWq9zl5WYn0EisOXsp03dH73tWkDkuJOC8FxQLz3rfsh7/1rKW7ebcN6U75 -WEla9XK8+vnzEHT+tv1DrulV9Fc+XnFS+3/vsJTHt5gSbrFGr2b02o/joxc/ICPh -KDU1eYcBnyMBWmxYWxZ3bVkroIoI4QWHrwRFRKsCgYEAm48puWIY1lgl5/W4Y8yB -mEv/4D34u4HGZzCQeIaIbksDvmrlHY7jB8/bkRcbKG7OEyGH+tLlIq5wbZgVJ5KT -cVp2AB5dJRn56VttEeg2VWLO5pXx52jUn2juqZFVDgHEiEHuuBAuZ/vWdryzpfrX -yfZL7sLrnqezC8Ursll8L1ECgYAzSpjDBfYv3P+bf7K7Z382LcrqIm6nYb/xz9kW -vsRUXOYrHnz2owCUPHXLVBdNlm3+jgNUQnXHgcHOZHilU/smXQwvjFtMMJJHs5dE -kEyj+HulmlL4fo58ciR5UD6HXP8OSwTpXyJHcMx3inO3yiN3UjKARWUdMl3mTluP -OBO6YwKBgQChAX5JqPcKtnWue8pG+I7cjzv5A0dUnldigFYdkLm8UUWWKBDTnQSL -3YiXYdFxLorxbXg9Doj3UZkD6npKvo1E/JKaq8oPWnNHtx0PBwlJDRUK9KL4t1iV -O8e2LMJ5u7LXO64SeWFW/GPaYw3xeEOizEYy3W3DRJHK7q0D+CKDew== ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3045.crt b/apache/certificates/3045.crt deleted file mode 100644 index 68ed7d4c308f..000000000000 --- a/apache/certificates/3045.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAmH2MA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMDFaFw0xOTA2MjEwMjMyMDFa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAKPu1jeM/1gyOZ3YSl/68qYoV+exNRUSIHR0Tqu1wfxHBei51t5Zl3e0 -khDRPSqrPyCd3tFjqy+SvQuK+jjVuV5waV/tLvA6dTMVXOCK0H6VjXjU7YxOyTS5 -mRoQEKJrcYKQeKM/vR8Mb8RVBX+mu5vz88xfXvHM8QFI2OcDQPRPiDtGXu6GkaXD -6GgZTtiuf2EW0Zx1ruiFhzHL9xl2e+o82IFzKLxIoPxkoLfQHNSimhlcher0pZZg -lTX09VamnicoSRBiHJHygogZ8zCApMiSw9Liri1GD1N6l9WjxTebyOZjMJPp2mK7 -U2t/UhPvr5zEjLjoSRNeCUQej85Sf+ECAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -IHVYWTa+HUSrnTGKSTy3smjlpYgj+T9/C4fnQQvM4/YaebJgWVzF3vbo7GXBXq68 -at7OqHdqIqihLLqMdA4ofmgFcSSOXZnT2SJMu0DzmZReWjhrwj3LKkea4pfhdawL -VW3DqnM4RlIJ+yvoJwf+mKDmkw7vC/rjdLCjyrY/d56wLqYSySlnhaxmFo1OynKA -ZJ5gPVv9F2vZrUxkk4INSPuOUncMxwa+CS9pbs6da+oVihsuoUzHbk4zs6oEGuZD -8cjT8qS5iFP56ADQpdjUxsMQluamoPxDtfV5ueUm9FWHTIu1Uer1LNO6+xK7E3m9 -myEx+vDwF/wloqNIEG3gUw== ------END CERTIFICATE----- diff --git a/apache/certificates/3045.key b/apache/certificates/3045.key deleted file mode 100644 index d53dd914143d..000000000000 --- a/apache/certificates/3045.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEowIBAAKCAQEAo+7WN4z/WDI5ndhKX/rypihX57E1FRIgdHROq7XB/EcF6LnW -3lmXd7SSENE9Kqs/IJ3e0WOrL5K9C4r6ONW5XnBpX+0u8Dp1MxVc4IrQfpWNeNTt -jE7JNLmZGhAQomtxgpB4oz+9HwxvxFUFf6a7m/PzzF9e8czxAUjY5wNA9E+IO0Ze -7oaRpcPoaBlO2K5/YRbRnHWu6IWHMcv3GXZ76jzYgXMovEig/GSgt9Ac1KKaGVyF -6vSllmCVNfT1VqaeJyhJEGIckfKCiBnzMICkyJLD0uKuLUYPU3qX1aPFN5vI5mMw -k+naYrtTa39SE++vnMSMuOhJE14JRB6PzlJ/4QIDAQABAoIBAH/MSt3loo6MIRSn -sFug1BeqrdTm9h3mEr0WitocCQ12BOpILnUK3SUp9RD9PbUM6VqxGCqei667s3rT -LnyuSSOReOSakBQhToqzZcN7FE0Ko86GGGZgaUUcR3nk+kLUhhomLJX/s50H4f3p -1i6Mugc7KF20H91bSqsYsldt1u5d7pY19dpqQV/ghYE3x3DJiSbV/QkEZfv8Op+0 -2m7t4mqBcpuOmvt+J1AQMVG/rtINkhE1laFA56AhjI7nOG/nQ3G+hXr4L2zVGLWA -rFs/xIDjOZTSOQkTfYD+uSMyw66yABXyKt4Xfvtu34+cWUUY5dt28a9MtXrXFeBk -9OIOaU0CgYEA1FKbpDeOWPPYXfH1UPYNlMwoE9NH6Q8zHFkULrRRL0FLptvW81e1 -QTcdF325k5rr5fAM0TH23tWK9Oujh6lM6Tzxjyh/Q12SCyeEqVa/oXql1xGdPzrc -bDDkGkt+eX81nCleaXOu+ccNSaAnPuO0+A4M7CiJ5Ek82tDV4f0VhgcCgYEAxafq -lHivvPsgXxXfzaPFFrGeMg2oTHatBa+/kEv4c8a4o1Gipkrwv7VyvblVe3FCjk6P -+Tv6PUzqtSMuTUwvX/WAwz+Mpym4tiNNABLsz/jKZNr8qL+co07caJhufLjqs/dt -PwUUk1Gl4DvA+U+iqJVz30lHyWQYNXFcUwyNkNcCgYBVE1SyFGDBW9PSsOTvL+h5 -OuTELOCfjiuYrEjd/fqZyLwbe/NBRl+mZgMOKp51epoTZIB+Qlr9Juuq/9Bix3+9 -5WGVT1DPGWsvdQI/KDdY6OASsUgk0d0IrP55Ws6uuD4u+JSQBH6ULyIv4jBXjr4w -ttCOwB+gjYgI1a0eBF7feQKBgQCsYd83r+3tDsPTydsPmQY53ZzPoJOoZFRQQk/7 -BBbiumyrm3YUPAWt3Qz+JJZF+6iFPkVYpBOBxQRqCA3IwmoK8a1kG5eK7ts2lqEA -MIEyfJPf1BFJBxwQXaXi3xZ1VjzzyhYQQVkJhsr5PoP1q5t8FiQhl+Kw5MgsS/qu -P6NzrwKBgBEK2cqSt0tWt0/rNZD7qLWHpF00DqtDr/K9xRk7qQoEnrPpQZk/6wAo -xThB+TiYzy9HbgiW3LimRtv6ufViRujBYBU9hcAYoKmFmwssACHzoMQV4KcGxZ2d -9jtGgL4qMxvbrnEim84KEUumJhXX9Wb89DHHuBSyTa+dyNMeYv4Y ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3046.crt b/apache/certificates/3046.crt deleted file mode 100644 index 2ebb2b61d25e..000000000000 --- a/apache/certificates/3046.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAhf3MA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMDFaFw0xOTA2MjEwMjMyMDFa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAOQ/NHO05IZRxPtkor3cM30JxV/Yysa1gmJbxlvJrdbKGLIr/pN5FIAe -uv7ffFrJyRPKUhK2+XtQ3pP23azisZoaueQG2VxTSF1cr/2ukrdaWYAJxH1hsvfr -SRQRic6CCJ3JHPAvDuI8cIFKgmt2KNrTzPzSHW3gwRXD3imsu2yd24P0LqqKOurN -k5GKazpxGxdR8gissLWBKhccikYQQ1QA3bE/JQ+Lj9SVgkrFSeKy716FiaFohfGi -2oye7xgHl7CL2a8DJ8Qcy0KNDf7FWhD48viiXTapT0+ebd6/xLUNtfKGxS3sxk1j -ckS820+Hsilh3g1nnlWzyo8GgTiuz20CAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -dEthjs9dOWArFKiPNyuQvpFj1SiGEPpq9K5GuR7YDbRfz8lvFtmoAU1ggkMBqH7a -8p4hcGjNoXCvidPunQwXPBD6gTzYkbKASIHpH7oBjgPsXWw8cp+koQ14EFefWhXk -jEbCvWvIQAmwO8oRJ/LYF4BiXXaJT71gil2uWGmirEqoPURQRWk8UgFzB3OO4xdT -iofJZNN+wkE7rPgQ/HpEgZd4txu2lM1eoyB0rjbPoHGkrYaHj3j0IfwyltjIl6bq -FdxvZe0GnD1BC3jSO1L8uuH1mD3acKsAUgsKce2dIqLiAoOOL2+XUqEjuSF3aWRx -S1/07XgTABsRChkl+QfUCA== ------END CERTIFICATE----- diff --git a/apache/certificates/3046.key b/apache/certificates/3046.key deleted file mode 100644 index b8c94ee6ecc5..000000000000 --- a/apache/certificates/3046.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpAIBAAKCAQEA5D80c7TkhlHE+2SivdwzfQnFX9jKxrWCYlvGW8mt1soYsiv+ -k3kUgB66/t98WsnJE8pSErb5e1Dek/bdrOKxmhq55AbZXFNIXVyv/a6St1pZgAnE -fWGy9+tJFBGJzoIInckc8C8O4jxwgUqCa3Yo2tPM/NIdbeDBFcPeKay7bJ3bg/Qu -qoo66s2TkYprOnEbF1HyCKywtYEqFxyKRhBDVADdsT8lD4uP1JWCSsVJ4rLvXoWJ -oWiF8aLajJ7vGAeXsIvZrwMnxBzLQo0N/sVaEPjy+KJdNqlPT55t3r/EtQ218obF -LezGTWNyRLzbT4eyKWHeDWeeVbPKjwaBOK7PbQIDAQABAoIBAHv1273Pi6FrfWjv -Efe9RPVuvhQ9AHwFDifvIf6tvMz/e4QgoqVjSAABMJvFspr4Jk2qPwLM/xe7JvcD -RwdjIwPH6hdupNQgoxeZhDdpfWM5HYyNQXq6+eDtlwXgNJDETHutQxsq45F5M7z0 -Q3qrdKrMBvN0Bemr/BGfC+RkXHIzDpVMmFgIVqjNTwVb0szEEDRt8H3EZUTmAQf7 -cly36iKgSyeLm2FR1ymQERVDbZWXv2KRFeqGNpiKO+QRPmIMPYMyKtKALk3rrZlS -ztyZ7XVHeT4PwG+B3GJggus7nLEMR6ZP4tqNsKlIuITSq/wyivO0b7wanrkFI1xI -f+Z1iAECgYEA/0xq3R0xTSjKGUhVmwG+t8iy7ntx4+0Lbhn4TSE84x1il5+kCCqz -gU+7x0SRE6VvnqcBFep1iCwnHahWE1UPExD7HJZKwk5IvNYsAkXJzVGiS9vVn9xm -GvA9KcjHjdfku9sJ6YLZhDLBMIF22R/NOHhi3WXEJ7K8xL5SPnBR1gECgYEA5N/C -PfLBc4dd5RpifccUPbdIxvqromrkRJ3CZdZgO7yWprxzBde834GgbIJkUrbGzrCf -qFDPAbjKOcdibJ1t1GYHPa2NmlERZ2wjiOsOy9ouXT/n8e1nLLfXIEikwto/UZrc -V/Fpyes2HsSJuCuNkmyi8Yv+2Cz3jV4sR5DgsW0CgYEA2jqjWpF6tD86ynPXoWHT -elxX/52MFE5rp9kRNDVGS8mxnnR7DfQab14N4N9OuCGBkXemaOp7P0SmxyY/NdVO -xniMfrpF+2RZrvnQsryfLSAsAHZRXI5UxZA4aEBVvH0g7CfniDEu6F9OXr08L4uM -rEnUEPbNvzV9QRyDRxZSDgECgYEAxixhGhaaHph1WqyP32yDQDT1VSUze/ymDiuz -aU5IITFYGKNPzR1SMw0ghRQaHeyZE9qnQ6xEsa75mzHjLTzbHnABkQw3cgkD0tM1 -qZYuR6BxSNjO0xHGplfAc/myf+1NqjE23QbxnJ6HS/jNbqR3fvOF2zRmw3OcHdIO -8SCnDbkCgYBmOV/FkF40lpkFCKI4kNDfk7dvoCzv7pvOw5XfbxqRwP85PvblQb+F -pOjr/FDhpU0aOQ8uEJPuXTHQyxxG8ODbWQdM8q6Bh52W7iYZLHQh9ZgwBB4CG0As -JBkmSl3oIe3AoDdw1KSk3Ws84lBsK0baJ/6aKtSuZpU0rRWrzZ/Hkg== ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3047.crt b/apache/certificates/3047.crt deleted file mode 100644 index bb09faa98a47..000000000000 --- a/apache/certificates/3047.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAmwxMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMDJaFw0xOTA2MjEwMjMyMDJa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBALZJgfZ+mgX7Tnnw2vI2RwAXbIfhsad6+9Fetru6xlH7juYVk2OHt6RT -RgqSgMYiGm44nIHZ5vq9k/XLKFbht2WHvjUE3XhRY2VCblEuR8XbySaJrOWFzVvv -9qjQijOWxUmr41ydWDe8vxF5yZu0ApfCzkOU+/9br5HGvK8modhHPap6wKEXWHqE -ZINLzzhxwxhG81AhBG/wMUwMZh6Mg6si7oUwHqQnaAtwKJQKMI0Dqx+LI68CSU2H -gFd/gqKo8jBhWkFP2WFp/SPrSDPffTmT9Pp+gYbz9RmE7uP7Ns52zwYxyrIUHv10 -8+t9JPR8Q0/JsNmn1/jQbrGSO4xa8r8CAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -k4WWAaTd8QVQBvKE59puwkK9BdTvUOUAO+eHC8nbSQcJ/GFsMufQ4HbnsA2hSoxf -jO//PePQv074lVttc6eOLFOaGMxnWRpQ8ggWt7ihxC+qJFDqD8xINvtZThzrv24k -hsyc/XVRvCa1qtO86QERyfhdannfxyAFxy4QJotN7TKDpLzALiNk+anqrNjV2/Ek -KqWVbnFmMixGvpOxaOAXF1Sa18pYd63hZedU2Nh8zYuFGufdIZncfPQxeB+OxetJ -DCc11RCYbEahaim+iZW04+a5AuGhzCQFJDGvdUE65FFBDWd9JJrWzzrysdSQY07o -6v29/cP3hCZLTATwsxZWCA== ------END CERTIFICATE----- diff --git a/apache/certificates/3047.key b/apache/certificates/3047.key deleted file mode 100644 index 8079a24e9845..000000000000 --- a/apache/certificates/3047.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEowIBAAKCAQEAtkmB9n6aBftOefDa8jZHABdsh+Gxp3r70V62u7rGUfuO5hWT -Y4e3pFNGCpKAxiIabjicgdnm+r2T9csoVuG3ZYe+NQTdeFFjZUJuUS5HxdvJJoms -5YXNW+/2qNCKM5bFSavjXJ1YN7y/EXnJm7QCl8LOQ5T7/1uvkca8ryah2Ec9qnrA -oRdYeoRkg0vPOHHDGEbzUCEEb/AxTAxmHoyDqyLuhTAepCdoC3AolAowjQOrH4sj -rwJJTYeAV3+CoqjyMGFaQU/ZYWn9I+tIM999OZP0+n6BhvP1GYTu4/s2znbPBjHK -shQe/XTz630k9HxDT8mw2afX+NBusZI7jFryvwIDAQABAoIBACQFBm9EuP6xl+I0 -m6781q7H8iQvjsE/Zf8LLiSOVZ3hjW0dmlAygzEvW0m/hT6hgoOBIDvwaNnnGBOb -n077rxea6RTk7zZVLsTViaL0+C26rla1IbsA44FlO2JEQurKwhU6p+SnGsV4wHCd -lh70RQbj8YodKGZfIaQ2lxYtFhH8PF29uCf71jevfUxvxeyBHshoNve3GPzSjOAo -84fx3072ignYjIU2LEakdaE+NaMs5i4RgnFfMzogw3IypHFzEC9bOTkcBBjI/7d/ -V8qc06wk4a/1GavWZmud51gH8lBp2QeGBeXI3bnbHM+b1Eet7d12uGzrQT0nBlYJ -+eAD2jECgYEA4HmBi01dK2a+LB7nAsztaQenE4Q4jl33Jo3CVMR0T+IRVtFPAsms -mqcuDHnwFJ/sU3Ic3JvgVZQCmbSlbq8jKfcs1CG1JmYH0Y3ptU13O0R45kxQh0Pi -BI+J8XDkBlgkCCt9EJI8iqalS8PAhjMH/DLZ6gXr2wGryGN9CNFpQ7MCgYEAz+M+ -H2360IgElvch+XJgMJmtr1NwQXztvY294HeFiTUqPmG141IanqSmIdc1h7cc7g5N -QSB2qtUTjsRCNHLXJ+TYeJhnZW9IimKWZ2kacZ6Wpv+mLSqsrlqwKusE9MEz3r81 -CPbd9FwDb80bJ4/zPTOKP6iG7ULj5g6AbF/5vsUCgYAa18za+KRklUO2iPd9CT52 -qdib59rPg4MTlC4h7uAt0U3bgOoe3jkKwWUrTsWb4cfj7qhu5SD9etaYxNZnlv/w -e8NblrBP6DGVKJBDAwF4D+cZOxUCJ+b2PqfzPFm4PIAKjhDFk4cz2Vu45K64HZAd -44LVjmG27cs6ClOgY1JgKwKBgQC37daI+EVxOubUqtLkYM26Mj35YVlwl5fAnifg -8d60BtXZW5oSBhKHSiWyyzYRXXG7LewsMwzLGLq1Fe99eB3krhTYnf7dQBhuV8u6 -ssMyw52HI6ljTN57ZMF5N3arFkVOTt4dkE3QZZik0lO0LSiIfZFTwUefpA7+/NWj -DUdqAQKBgBQhX2VaX++xN6bYOqNDPcpy2V7kzhAaxoZbjDecwFd4qwLK9ZiP0T6R -OpBhKKg4w1n18ZnGV9oV3qJQRs5efsNBCm4t1tvRx7COR9SkvUDjfyNFpZDmqzuJ -SQevRZBqWR1LMfz3x5zJnGQMQlDj8Hgw1oyVrHUzZ2wPUBkP5pmm ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3048.crt b/apache/certificates/3048.crt deleted file mode 100644 index 69e1db212910..000000000000 --- a/apache/certificates/3048.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAh2vMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMDJaFw0xOTA2MjEwMjMyMDJa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAME4CIyG45IW/bwbOjQyf4rM4CgASFUPSIv1m2mySLIf8T3ZFw6MtKIb -BaxpPPSUikbcuGV5mdQQdoyp5mHxoSF2JQYY0dpx5ateg+kbX37YyZXqubuvbk+W -URRJV11iYYyfoD9Ip6QTMj8dIzYkzy/hTnpPc+oLpR30tb1ZXirFUihOR16szL4a -DmiOxWEX+dCatAmkLumwYLO+eG6ZO4CxoApa1b9UPo7iWxlKZlRy+qUF/Hy9KrcX -0iWJrXk+aMqkWWBw9z4Mxv5LoYrCg/GJzxy/JxJldTTkM4WvjrzXuOJWWculJI9e -i4l93FImZSOvToCoUI/SuIbT5XGzdZcCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -F0Cf4JKU7fjpEahpGOGQ1Czlip6wN3X4kkZ+SrYCogns6YWykMpMsT9nWn67Bs5m -/zb1P5e2DorUENoZKKTZEgi5ny2el2s3kuWkAhJZQbsp4WrneRCioXArnznRwyyN -e6umdXhunPIZc6RncsZb5/vZn9NilutEsrkVb1S21gztU/miiuT8pfXBkjMhm022 -6JJroPMkcXbAtw0X4npjH/OVfVo7bXyPN0BgQIyUcNokRIQdfXVOI7T1UMzdoqeJ -ES4sJP7pWSdK0J4QMWY6QQs1q2Sd/AmxHrtSxBZ67AHZTvU0xvWtoCEF2US+6nAm -O9TgdcSqFWgbrHZXMmHqCA== ------END CERTIFICATE----- diff --git a/apache/certificates/3048.key b/apache/certificates/3048.key deleted file mode 100644 index bfdfb26a2add..000000000000 --- a/apache/certificates/3048.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEowIBAAKCAQEAwTgIjIbjkhb9vBs6NDJ/iszgKABIVQ9Ii/WbabJIsh/xPdkX -Doy0ohsFrGk89JSKRty4ZXmZ1BB2jKnmYfGhIXYlBhjR2nHlq16D6RtfftjJleq5 -u69uT5ZRFElXXWJhjJ+gP0inpBMyPx0jNiTPL+FOek9z6gulHfS1vVleKsVSKE5H -XqzMvhoOaI7FYRf50Jq0CaQu6bBgs754bpk7gLGgClrVv1Q+juJbGUpmVHL6pQX8 -fL0qtxfSJYmteT5oyqRZYHD3PgzG/kuhisKD8YnPHL8nEmV1NOQzha+OvNe44lZZ -y6Ukj16LiX3cUiZlI69OgKhQj9K4htPlcbN1lwIDAQABAoIBAFWa6c65BKJ5JTnu -Jj9yECgC1V1joqhs+Qtpac3Oe37PwCZSxHBhzrXzmvPkPGlwVkNHDzuGQK1ADgYM -UFIcp/MXURf+bxuFUug2G+NviUO98LJHKLsK4qjIRGvkgpyRNf8Dyg+/tOZwytZD -ppIahOEFxatTAFw1hJZdERgvPBVeSdF58zaWCD22JaulG1GjKo0hHl/FklCiARtF -puhvpoOpEpdyF1S+quE8FG+dXSN/r7wxAOdBpQWS7HmIU3rppkjF+LxkCXyqSiZf -Ne732k3Dp79rPBpKCpD6FzWR4BmLVreN4BPeJw8iFumZh4dciwrhcMYFerdDUwAG -DyICVaECgYEA6dhXLBH5VrV00KZw/HxuUnYFXNt4HXUIFQgler+FdonILv85ABha -j5uE1+y808F7IhwIKUH0hy1UROV3ji10EPLVY2OAUNFkMHNKDVhomoPJie5GWRwk -jcQeyRBJ69xQRC9UcSioJvvjZ7mMrOtc5fNIwQ3I1zaI+mhyY8rZ+4MCgYEA04ZZ -LUfkzzCd4EA0gWtA1v8RzPZ8mT9v9aTWXu5Amjo9SR3+ZwgC5CszkNMr8rQBcfId -WAGGDZdyodeIm+ZIhC/d5o5ESSxnozKmw8mO+g9uVSpazAJCsfMlVtp2IFNKnmTj -BLqP2ZfF/iZ7fZ1qFF8o6N1JnrCFAXvK7Peh3V0CgYANUsw0sJl6PUB4muMZH6XR -gPPxRHflhcN+H0azZbIe/N6w/s2qmbifMgcxnkVr8zwmx14Xq7BY+1YvzrsvGJvi -U1OhJAwtjqCcuhTgCcd79kJHX5IWhan3gdMXNZxgmd7g46l2AREDl5pvUH0ZZReX -6nKcvUJSMMNBMS5DTU16LQKBgQC2m+ts3f44qF4DdSpe+DrX4Qh7C+hxXITJam7v -MXxwKQszjkNMq2vjkzBHPSdZtfDxb/XJPjd+kFqUQcBb5qiABdrp6bQl/8HQ8C9s -Ixvd4Wh8+b29Fc6CVcjMfHkyWvW2XJ5oPK9nSFHToWFHBpjH0Yc90Zx29Sk+KKL9 -hKMmuQKBgGU0PImkGyHiZgCcAVXc/ABr4WxY99H1UyAlzsbL4VTKGA0j35XgZ0MS -IxWB24UXMyOHD7pCe2zUk49GAzCXKP2qTZpaK5cQPZmUqTk6Shz6lF6q5a96OY2a -gCg4BB6dcIgAlPgU2ZPT3zKsOh8DYgUAGmo+wWREtsZ+OTnOUIku ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3049.crt b/apache/certificates/3049.crt deleted file mode 100644 index 22bfb7e73f7b..000000000000 --- a/apache/certificates/3049.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAmwlMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMDNaFw0xOTA2MjEwMjMyMDNa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAOUgxiTM71ApbY8omILYtyfBhQrlTZJaGIZWt8rVjW7fFzDuLK1oeWaJ -X4HKvLWPEO6H2nkSgdvornW0nE9QhYVmq8wp1ZjoNaDNyBqHwsGAZN4PE70is9jC -iNXYX+nrr+xr2BtJP3nRQyS2qPoudqNEOru6dFabKg8+5+yPgcTb7UeEiigUEb6w -Z0sy0myA+RLbyRYqnBIecxW/04bcMLuwieBTrv813nA2iOQ/NRff858FcjrUTJSz -9O5QsBQO8jKjsO59Q69f+BzvA+mjGW+7Zgp3rWD8SllZqSGCX8z4I8PDJXnzOSGI -7bvOUbHEL4ul07n9Nlb1FOPF6DC+9zsCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -FYHks/xlqdkP6K3UHWRWUMTZx7lpddAoAYHm2JWgmltqyKNvy7NkCBrI9p5bN0wB -mndWzLIG0DUjZVj5NKNffm6vGlGvCmpYOg2p6FQITFDP4upEhpDCXbE4P4fhXEOT -LzVQZ8/sOqRixwOVVXeb0/eTrxXdQtmNHE/VVCE9Y3Aqlz+9+uBRcD0dxHVwOEEx -FYo826ItA0ufgIR5rzi2F+p0USpG7slXEP1UV/i6UQ5ATlclWK8JPE+JcnFk5J8e -t15D0yGBlUrDdYOpHmif3I7uhOIfcX9hrz3EPyQvLVptaEWO1GakoIzm19ARMmSr -w0qhMftcDsYI793KVggrMg== ------END CERTIFICATE----- diff --git a/apache/certificates/3049.key b/apache/certificates/3049.key deleted file mode 100644 index 174e5836414e..000000000000 --- a/apache/certificates/3049.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEowIBAAKCAQEA5SDGJMzvUCltjyiYgti3J8GFCuVNkloYhla3ytWNbt8XMO4s -rWh5Zolfgcq8tY8Q7ofaeRKB2+iudbScT1CFhWarzCnVmOg1oM3IGofCwYBk3g8T -vSKz2MKI1dhf6euv7GvYG0k/edFDJLao+i52o0Q6u7p0VpsqDz7n7I+BxNvtR4SK -KBQRvrBnSzLSbID5EtvJFiqcEh5zFb/Thtwwu7CJ4FOu/zXecDaI5D81F9/znwVy -OtRMlLP07lCwFA7yMqOw7n1Dr1/4HO8D6aMZb7tmCnetYPxKWVmpIYJfzPgjw8Ml -efM5IYjtu85RscQvi6XTuf02VvUU48XoML73OwIDAQABAoIBAAyytEh10w1uPlQg -u9MEj6H0Z5si+hmSRKmtRKJJE32Bf5eGm5NApvm3w0M+KRcmxplxjfoHvIqjaoe7 -aq46mCu8dOjrqJrAw7gVr3FI9NIke3KTA1UIB0+L+GlhhG9CUI2ZrHBWrt3hawct -2E+FI64IqfidbLUgBES0B8ZkbZyrOLBOQmsCDCB6FxvqMfVocCi6S5E6SdOqGRMc -Tr7E6VESwh9siN6LbqbNLIXoQ3bGWQne5p07lmGGIgNGZLnQtAy2wSvt+K8y1FBV -6gXyPxKHs4trLK7SxDKGWl/p503XCYjz3WolA4KVu1v912c7YFnQWfmepRN7hsoD -fZsSmAECgYEA+Q9IryOfblqMoAIr8CFLd6jjGyifMlSTuQt4cMtNkYBFexoLuRUZ -wfiWm5ZZOAT38RfsSPdX2rksxwoMVmgcAmZh+jMOltuVI63lncrdn3ETnRfFD5tv -yZj6vC99bWCSAE1iUMVWRRQw0YzUZLfm9xV7KgR1+JK+Djd6stkl/XsCgYEA64NN -tSX5NdI4q8vBHPcFv1uzlW7Sz2Hq0Mq+y/XxS1tFndhrdtNAZZ0igxQLq/GChnWf -VGQJKMHV32ngi0cyPct+wvLArQbbf6EQkCOLm32dNP4Qxss59srnmi19G5rA93sS -kS49QnWS5e4Luv9OltO4fibS5IYlYsIf0RLKYUECgYAeqScFiJkj+Lm/KQVHtpGX -1Y6/1SxkAc19xk+5cw3Fj8j98qLm0hYtrvC7jrLFFrd/Uraf9PM31fwRNMd4C7EH -CpudNZPiNn4RumK+Hi9SZZVIjZiQ503Hv7F+YUpLoMvYha5Iy0Jnlqi7415yV8Fz -QY28CniLdWU4UtQkGF946QKBgD2Ice4pfMJeKaZhNxR9SggkSnh5myTJ/ZMN1enu -WVwJ/ddu6y0BpuqlspWy0BXdpO/CnZ1sAaSfeGTGAgAB2xOgLn9683KBvynKiExQ -rTI0ELX+x51ZDcz4WKjEx9JFjbNbeY9rGGBb3cSrfG8gM4Veze5P8Hv6vJvgAnYa -xbvBAoGBAMZzn6QwQsY/pCtLQH7pRhgddFCuJcuStl4Wh5foBcOmDH5gHPiWs0Vz -N9Ho0ETeGoiCLapma3YmOtp1ml3RFcskgwS3nE1Eeksph8GhDDV/vLxVyKd42sz6 -CAiVlZTPO2XEzVXC88wapiS36Vutwx2DobfSEAWnbt9f0TfFaxg3 ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3050.crt b/apache/certificates/3050.crt deleted file mode 100644 index 655f993f86ce..000000000000 --- a/apache/certificates/3050.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAhvaMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMDNaFw0xOTA2MjEwMjMyMDNa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAOdCvcTNpiebS1TOMHpQqiYDnI3xbCP2j4hB+Jq0nOZNeyrOCI+sNbWe -ZGv/+kCOu0B/3ZMz/KghJGARS6l4bL/yPFzyfUKJWDK9YF4VBoRdWSYwSnX+HpmW -5vMFBYfSszQQxjEBooheQORKcT7k0frFY6xMQq1IAWqJ/zJJJWk/a3rgSLs+Hqdj -wrimcCacMc85udj1XTwOjpqTdolNDCyisWZ/g7iLMet6fp5u28VwEmR5CXrZFjem -F9QnzR7kmzAugV61oUaOTnUXnq0R5WrNIznigXPwmZwi2/gdhkbILatPMc02gKxQ -1YJpgAUwyyu2PwuQibw/E6ON+p0s6oMCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -LxMIzyADVY+aoS2M4XuAB55Cns6k+Now3yXjpNw4OUkD8ZR6hPq85asUFch/FjZ+ -mbs2A6yf9s4GEVJLfK1HNKX97/S/gFMlcSzTC8Qa0DTArLDVxCOJhdQIWeEhnH+z -nIbBHc66nqsYvN7QeWj1k6di0Xu96xeoFKk+3uHBsKv3OQF3UtePX4n6arHFpv0i -V+A4W1sefDspcW2pE0z8pR01N0TPsIknhd3R80v+iLsYiDJWCFt8TH37eefutY3X -c4/Aj0hyptVJNa2X+xYa+lS/tP7HdyowYSSQeZkcdIsNAHQOiAYpb4mcM49Hd5K4 -rDNa1uD5YgG4foYcQJizyA== ------END CERTIFICATE----- diff --git a/apache/certificates/3050.key b/apache/certificates/3050.key deleted file mode 100644 index 55e58a9a9415..000000000000 --- a/apache/certificates/3050.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpAIBAAKCAQEA50K9xM2mJ5tLVM4welCqJgOcjfFsI/aPiEH4mrSc5k17Ks4I -j6w1tZ5ka//6QI67QH/dkzP8qCEkYBFLqXhsv/I8XPJ9QolYMr1gXhUGhF1ZJjBK -df4emZbm8wUFh9KzNBDGMQGiiF5A5EpxPuTR+sVjrExCrUgBaon/MkklaT9reuBI -uz4ep2PCuKZwJpwxzzm52PVdPA6OmpN2iU0MLKKxZn+DuIsx63p+nm7bxXASZHkJ -etkWN6YX1CfNHuSbMC6BXrWhRo5OdReerRHlas0jOeKBc/CZnCLb+B2GRsgtq08x -zTaArFDVgmmABTDLK7Y/C5CJvD8To436nSzqgwIDAQABAoIBAQCqMkxHUrI94+SE -/VpgKo2OfInzTQIxVXw845B7CwGN3OgQkKFsW2kLyQ5PDYy3hlP5HCGN/Gytr/Z9 -XT059A7VFQmnvi7BkSL/9K+/jenF8I1ztYaXX/ZVQuGlaMSxOTf50X6LApEDm5pW -aRL/HpgK3sqEO3u2249vQTA3ae3Gjif4lPSor19dbc/YM+bIAOkSMsvfo+EBd68u -zn12f6FifQJ1ely6z7j3nkLyBUj3pnLubQF2iIqyZ5t6WEu3qmVh9xxoFun4QFsX -idDeU1Zoss09qUyBumQCIrQxJWBElkfdNVbqBul50xM+6fe7i47xOSlTcFtvp1/g -ZiIPKVIBAoGBAPZA73d1i/c7xpJEi3AFskZjw4u1PYagQJ8peBfGZW8m0AxYqooT -WfTBolzF5Jlk08GGbvP8HRmptmIcRrY3TZe+n8LMUDDyqXMLvuQrpgDDpihCaegK -LLSY1hGv+Tv+ALpNzga+zSBvQlYDV6rd5GnsXrsf/FYeXla9SbqgTU+hAoGBAPBp -5V4WPr5YZNt/rXSUXjc9SRiu/jGIWnquTmLah1qaEHE85WVii/V99uc0gqSQgpzu -r0JxZArZKnH7X3cJnIySJOWOQoZI4lWH+krJ7Fs5713mPU/E2dETD1t6v1oRzJt5 -CM+DRuvOKmkmrgNSgbK/fWt7ATTDWz3bJvshM9ejAoGAYrdlR943XcT4tWoE+8NM -1CrqGPdu0qkrPqLBIcbGouhMPqbMts1LInL9Q3ORUGy69rmNgQFwKPl/w5TSQ/mn -gU1Jfi2pd/XPN+9ddtqIkYXc9gaprftmMH+UUULaBtKsOAM4tDuIv5faX+C3JCgP -iObYkusfnOZPqzX2eHoKhAECgYAlQYPV7MSUYsZebY7HviZLkSe+t3+U1XiQAmsL -TqojFDTwF2vFJlxiEr8sXSrRrcNP5n0qYsAKHlVBjJ7ip46nCg7FtCIDBVBtyMC0 -zk3eZT/+4SsnLW5DxBxhJMh6gL+gaEVBQyq+aBiSavgUc7i9pocdHNa3An8lOszz -pdWO2QKBgQC5T5my8WIzGDnBequC3ub+J0DvYjgy448u4Yip17XapP6KlwxU3vpL -z+vQD5BMAJHoVFKI6pzJMqc5zJEFYKu5NIYJvwTZvMwTpbQVB9vA1ky1f8o3ZYhz -BYFx54LMOnHqL3z9Ww4XIfKnaDIbJ2/a8I9NYsg7+eX2/GnexmdFtg== ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3051.crt b/apache/certificates/3051.crt deleted file mode 100644 index b3d3c5395564..000000000000 --- a/apache/certificates/3051.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAhDxMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMDRaFw0xOTA2MjEwMjMyMDRa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAKiNXNfRT2lqL4QCPJY8RB7QobAsJ3w1QC2iapgGzST8sYwwv0SAnDBX -FHO+khbwl8sxznrdNyIsxHvMCZlJLFadIq4VEHIkDajjIAPjy/w7WW7Qfge6S0qx -Fwa5sxxtrkIbo4qatE1EbSusBbQo6NB5wux7z7TkJUxwXsghq5ZxFYBwj2WADkH3 -/Nfz7a4PpQEP1Sn2tm4KNcQlu2OGNXNr/BrprUHsp/NP//aN7nCnZDxDe16Iddcl -WHBAbs8I262Q5JL/D6bSnCQW3F01jHARuziX8VIV48zu6Fk1/NdQecJZK2cJEteg -UzAEYTt/lyzzEbWtOwyKiDzIwSuknpkCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -Csgm+iy8BVmBZGjTi2lOuYPlBJlaDnMsKEp9Is2FniALu0ZKzu+ybJIRWNKSvBer -Sx3/Pa+xPsXA/ERe/vQQTN9U0IWBij9YGm8RnIMjpyDPKp9nhoM8i/7H3+h0cn6e -TOcVjcdKCH+mN3/RFMaZPaWU5nlEZ/AJjmQ2S9rM21ISBHL3kQGwBjCFCYd9RTSq -Qw8l4MhM8mO/+Axgo5fMgy8Sj7RNeOgUWpqJn29p9b3Z5M46d3DYZwfgm/KS4deG -v8eU2y/T1uWEYPOvIIkbewE+3FzFbAUjl1/cfb4cLKd6lTI1tSLI5wAWPakC/9MC -2PTROFOu3u9V/c8y0RnjlA== ------END CERTIFICATE----- diff --git a/apache/certificates/3051.key b/apache/certificates/3051.key deleted file mode 100644 index 0e6659cde97e..000000000000 --- a/apache/certificates/3051.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEogIBAAKCAQEAqI1c19FPaWovhAI8ljxEHtChsCwnfDVALaJqmAbNJPyxjDC/ -RICcMFcUc76SFvCXyzHOet03IizEe8wJmUksVp0irhUQciQNqOMgA+PL/DtZbtB+ -B7pLSrEXBrmzHG2uQhujipq0TURtK6wFtCjo0HnC7HvPtOQlTHBeyCGrlnEVgHCP -ZYAOQff81/Ptrg+lAQ/VKfa2bgo1xCW7Y4Y1c2v8GumtQeyn80//9o3ucKdkPEN7 -Xoh11yVYcEBuzwjbrZDkkv8PptKcJBbcXTWMcBG7OJfxUhXjzO7oWTX811B5wlkr -ZwkS16BTMARhO3+XLPMRta07DIqIPMjBK6SemQIDAQABAoIBAFC5w6mpmbsHHFLB -L3tUydtoWMgjnZWje2Vf0GWXfFEmpXJbNn/8iNGuIyF8OEO8Xzb2V8oIgQthHYmd -I0vC+/VPtPhjJklEczZb8U1roJrhYefs+y+ATecsAbc64UnQThFjY2RSy9/l0dOE -xAaRQU/3wR+5/LTKQALoHr0DQ0b9gyhTa3nsKD6sY74EXWYHBRz6yiXYKp5I4T2v -WMSegBHEC/fFr9Jyz5yhbUNmy0B+3upy6MaLd2Bhx8wV9gNrcj2Tcbt42De3cbyP -uyDjvlRodbgrL0nHRtZbXELJa5I7NUDhh2nKB/PL7I52SCRdyu4I/VqJUXZo/0V/ -Ra2mnfECgYEA05M90921Fd9uG2W52ETSU8kZcrWqz5TkBsax10CDzO2meh6wn3oy -40/RueHE/uAmR4QX+xEVsxv/RWwJnto2CUTWUVNppZOZELnRveF/w8Ng/26h5yQO -T0n62pkGItjeAo07WSQ73QMyq/ieoIuH3n7pi9+pVkKunthf0sXQMisCgYEAy/GE -IYB88uGJ1Az+c6y8KobQtggYvl/j3OuBNt8PSgRZ9xLywKf2ClPymGJ2RxmrsPOp -PXoTavlSDMUjQOOeahHFtKGprSU0DUp7eRuC5ZxbC7ZhHa5Z6vv4XxCO/w68hrQA -OqFmM8rOJuMS9utcLR21ptKZvEWU4CwD1h43xEsCgYALAwfdxhVNvSJK9MF2eyaD -S90yNjhcs4AmxiKtdGMnwFrA0mYY9tA9OoNM7G5HYb08Tai93YbGmrdvko7xoKPd -WaLZ+sBt6L+3uiQrgNgYhUvAH673i83e3Jfc1sgV+jmb4mPrYNJoz2jMwJTpADoj -H3HiYNK8dZ4HEHX0T21lnwKBgHg1ekFY/80VnWzs38qE5UBXyIuTCCqmUKP1+GrE -XbmuCO02MPnXxpFd299wIfFUszuQ04+V9f4WyQMX6+iigcxZf2Qx6dZR2HWBEnhW -+/elCpFDxch97SgxrrsyAmdaY0suq/fjDF+4yXxoWdRK9EDvgxO6jL1JcjAUIYrC -svIzAoGAU7csyjhpyR9J8wkfVszoPjph6lekkyw/49/PU81MGdLJQ7sN9Yh02TXO -VFgN41DpoEBkxJhOUKHh8X3w3Hq9EhUey9kICXg3Fj1rjSeBLOpzwrtXn1VjDXib -RJzhk9NOFSD5/QVSNZQrUh+Rbn1ZGpj/IwPv1Z5TeArIPf5b6pU= ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3052.crt b/apache/certificates/3052.crt deleted file mode 100644 index ea59b02eeaec..000000000000 --- a/apache/certificates/3052.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAnnCMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMDRaFw0xOTA2MjEwMjMyMDRa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBALoGy2S4cXXEcfO/V5dl1pBn4uI4oeO5Tg5sv/t2UaKy6MlHQ2YNup0b -R1z2Z+ixYdtmABIjCkx3Y+sOoFiNcdmjv09TLqDJsB/TDmWGztfhodqGM4RaONVD -d+1zyO4W3VHPw9Q1nk6SYdIGdCubq7xBKIngRFdVknSFcf++spniULTd15S7EFwo -aayenqNVbqmKNRQH2cKA5WlLGBvlH3EUkxDT6tb+wvFHIPJCdRRieDNIu2q8Q0dX -+4oO6UkF1aUhGVCmI7/me9o7TnV5QSEk+zk7iPSYjGybjpF8G6mmjmdxu/z1lyRl -XBCMRBRSDXMmhcUGAXsR3sjeyM2va98CAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -D8l6w79O6Y9vEniauZCDf5NIc1kIOvc7Q0ceNUMqrZza0pmBL+s6Zpy4uzN3yp0e -6yx7H3ST97HrFemRTyfW1ESlP/Go8yRRU1vuOnShevWaT2+JUDK4v0Jt6RGowYdS -QsQDQNGiOeBfu4omg3oLJyd1EJc7gTRfG/G7M9yQmMUBaTQhQ65RJPxNqzVjQegI -A0mFgDl8K9yIXlqc51DPUbWLZ653xBTzdaC4qUJy2GOPpsHrKzfPAmQQGKLDmEIk -NDJiYUKte8mackDHAb1de3xyGfqqqiYpEiqs7785/dpy44koNVAYCtX3Hdfb4iQI -ZXItUy70GreJ/LwdeCoclw== ------END CERTIFICATE----- diff --git a/apache/certificates/3052.key b/apache/certificates/3052.key deleted file mode 100644 index 639ab847656f..000000000000 --- a/apache/certificates/3052.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpAIBAAKCAQEAugbLZLhxdcRx879Xl2XWkGfi4jih47lODmy/+3ZRorLoyUdD -Zg26nRtHXPZn6LFh22YAEiMKTHdj6w6gWI1x2aO/T1MuoMmwH9MOZYbO1+Gh2oYz -hFo41UN37XPI7hbdUc/D1DWeTpJh0gZ0K5urvEEoieBEV1WSdIVx/76ymeJQtN3X -lLsQXChprJ6eo1VuqYo1FAfZwoDlaUsYG+UfcRSTENPq1v7C8Ucg8kJ1FGJ4M0i7 -arxDR1f7ig7pSQXVpSEZUKYjv+Z72jtOdXlBIST7OTuI9JiMbJuOkXwbqaaOZ3G7 -/PWXJGVcEIxEFFINcyaFxQYBexHeyN7Iza9r3wIDAQABAoIBABwhJuRmF5INUIXh -KyeTmKxhaSd4FNLQlIMN4sHtlE6b6yN0iTaHYO6cz1+5SuEe4YNBm0Ui003Yx90l -aw245bxZTHZ8R5K8rMtDKOwlRGXUkprurB+ZXPqypxHa7klCX9kdJ6mRKg0LiYsu -uqZVddSTrcObi/oA0JKaEzDu7ybhleYvKqpl9HhQ+h55F8H2sj8hVtqA+TYWsNE1 -aYQlxHf9AVrjjdmRQxfGdsxH2Vqxr2aE28OX60QgEeAnE2EHkvzSwobqg3njvlAC -wCdYkO/tKJWNmN4KWfo6cPeuEHEdiOc8vk7lBdLKrpFbkp1HqpPO+Tj8xt1+8H+7 -7sLBm+ECgYEA5mnMBv7NBDym867sxW0GFQk2IqGpW53hnozi+6YCP9YdgpBWGT5Y -tUDB81iXm8kpeFiU6/gCWvOi/TuI11p+aagG/RfNYJ6veb4ZLdJIYu1/gPD/YdRS -00bTMg2tuBJxvM8eYRAaFJCmAKtqzZr3VfSzhGQVxHYQZUTheckS/dcCgYEAzq8r -NkYKLq4QTaekJrvnZQx5UqueTm3IRoB9Hr7AmokaQ+lL1vDCqKheXOf5i0QDrcDc -+uMAnVwlQul+fMWwZEfDsQaMwL4kP6Y003KOOCNEIK08PsxJB4ImGjm+Xqbpv8Ar -HrF1w16sq7uqeqMKbt3Vm3HVOKwy3dTivXW/cTkCgYEAiKauTmfHh3/BNDzGR8CF -Huy7ooZmPuO/75x28fBe3SVLkyevKIGFctnZLU2ZfNctNSa0C86m9vIP9EfevHn7 -BwaUPn5jW65BO962aCqSq7lXKU3E6GxYQt16W/Eo2kZ2FhhwV/iIvzGagkMnsJD7 -p4rc/OOu1TmAN89GOkg6bzkCgYBAI9gzJZUvW1Ev6CBm7NUoZLCZ2SxthmAqkOFD -U0sOKhH+lT213E1sbaOrDUpBz7+cgkeRjDS6oMfndfKM4gSVejfejfvMLLWvEvM9 -00UTYs5XnaseieL384nDhbvwP7g2i3pWMhgrowvO15RWLpakRS9u5+qVhcrbUJ90 -0D+y8QKBgQCXkxbpjsSNprhydYNBtHFJ/KGHq0J85dtasSDMmnoFaiZHkV3OWPbg -oVsy0bttpxl+kJj5qjTc+rgZvROl1YUzZKmj+6EuSUbog7FSln2Z+vCLJw4hR8IA -XFmAB6z1AuTgovKM6Seh/D4UU4W2FYUJSynYd8jzXVPR4NWimeCO0w== ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3053.crt b/apache/certificates/3053.crt deleted file mode 100644 index 89d36d4726cb..000000000000 --- a/apache/certificates/3053.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAlyxMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMDRaFw0xOTA2MjEwMjMyMDRa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAM1ZoauKsXOgE15p/i33KqVOVX09bhmwU0QIiPAUlAaJ0aGxZHIPrO5h -65SJT7zSCDoQfz3iub0q+EKJNkfKFJDpO/3bqBEONT9xI8xN3JLfaIG/ydM6uuoB -lVDD7dMuvT5/imERHuMlxj+SX7zYvSqg3WHs8WdHwBX/3Et10HcESQi1EEvtDae+ -W0aG7w7eusImA2bs4m2AGu4HMb+YU8RwYG78e2PvN02O4+38wabNNGHk16+gz6t5 -Z70tZyteisp4oCbicPZoz6S2w+K04WIhg1/kQyP+Oo8GULwkUy8ld3V1DUA0Wr98 -4e6CDuCelZEitZqbD+uKiPDeBKHwxi0CAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -LEYRUsEmUoOKV0yqI3c952GnFBjRLkmr4pM7b5ilcRM01WIEOqQBDZrFRIZGbi6E -/2p/qB6cLuaj9dWE4F4+V8rJfBPwiCp+JutSolwamkQLCkOSLs8uUUT01klGE+sU -hN7u3BmhqRseycBtPFNjreTJwsU4NE5LcoJsXjeDbQWucj29vDUGDZQ5pF2axRql -xSAmzaiI0nFnjhtNf0YnhSzVyIKrqjFdJJAsTms3Xdrf70dicBvEPVOx0wVgHY9s -QB9OEIRnVUUQ7ejFqij3BB3EsqbAhJKBYKjtaWnd4mRimNW7Yq9bNLU66WcVdZsg -jyXSR5pbcPhLrQs/TKa4mA== ------END CERTIFICATE----- diff --git a/apache/certificates/3053.key b/apache/certificates/3053.key deleted file mode 100644 index 9cbc9f625f2a..000000000000 --- a/apache/certificates/3053.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpAIBAAKCAQEAzVmhq4qxc6ATXmn+LfcqpU5VfT1uGbBTRAiI8BSUBonRobFk -cg+s7mHrlIlPvNIIOhB/PeK5vSr4Qok2R8oUkOk7/duoEQ41P3EjzE3ckt9ogb/J -0zq66gGVUMPt0y69Pn+KYREe4yXGP5JfvNi9KqDdYezxZ0fAFf/cS3XQdwRJCLUQ -S+0Np75bRobvDt66wiYDZuzibYAa7gcxv5hTxHBgbvx7Y+83TY7j7fzBps00YeTX -r6DPq3lnvS1nK16KynigJuJw9mjPpLbD4rThYiGDX+RDI/46jwZQvCRTLyV3dXUN -QDRav3zh7oIO4J6VkSK1mpsP64qI8N4EofDGLQIDAQABAoIBAQCSTir+kklN7R3/ -pZrgWvp6Xm5QVcUs7lDU5xPRoYe5hNXj0wSSs5JtITz8TjyOdkJARGKzz+av3X6V -wTb4PQUcHeCNRMPgqvPLKKvtswfVaPEHiIKeSXjEoq4kpgO689EHR01rTQxpoA84 -Wex2GyHjzksMqwlvoVI9Gld1OBJ3yEE8+M7LjaILstbmK2OwOvZaa2wWRZlDkFQJ -9eheZTj5WuDS0PZ5p/EQjcO8gnig4kJABUah0anHJKr7uH4iqnAdNBJVX+7A3WxK -rvcC980ajymXNbVFQ0XGIhP3/Q/9oyPZZAFojijET5P1PoI15WIT6ajZ9pxh/wM+ -7nAFbwJhAoGBAPa21uB/O2IETasSJDLRU6yviQWmp7qs5k/P0DkXAdFcFNlTneuT -7nQaBr9iTF3LuqxU7PAqCtyoqxQfGLj+BpzXhBc70Rkv/kVzWElaN94sbSQy5VQW -ABCAaQmKRb9Y3xinhRcmnVULaCyy2DyfwqaSRrxxJ6ziTsTQ+fPq1dS1AoGBANUU -PM6bcPjl0DxzNDdPlTo+fIU2Ov44eZoGajtllkm/QJzTQ1xjOyHLs++z4YewLrYd -NeMm0o/U17vu5cFjKciSDINLzTh51BciTSkk3sGdHcY7BMwuC/a+Nmmhep5TsGma -MAx854ybMYG1V5Ly5JtzItkx3/7khnAlx+xa786ZAoGAUDqlJdw6M2Wy3C7KFrx7 -uWxb4rqPUOVpAAtUazxQGwUWwpWuhS1WHetYxmPw8Y+O5Pu5EWCap6cx+xkhsQbq -n5Z2HhgVp1s0FOGtlC0Cff10gJEMgouk+bjIb5HHnLIJ2rqfTSgBgeZzuhVuvEg3 -xHNNDXq+rDnr45URs4BqiQECgYEAlNB0g2tmZD7Ex2NCRZrsQuhfOP4eB2zT6LGw -Qdl6M/lBnAWkVwLqynilK7T6vzRZ+1C9UO7NQizJmvSHPCAQj4cI/C3Vnyre6GVJ -dIHOnXQo1khj2mIScvp3sCBaLfePDsHj6uTVJotA8TEAf53p8XNhFEXUBgX+qpaI -YVdFgokCgYAxO3GyV0bs89ccesoPkA7hOpqHQNwO0Kc3JveoHFjWyilyCDJauJws -ZNe0L05vQrn0/picwOTne7p92nHSU5R0QyUNV9deJJGbnnUqftB5MNcVCcLEYCmr -lBWKwADUC6RUWZT3PZy1ehUzZ5WG5zxoDWIRwP+s8oTU9mF+oKSFbw== ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3054.crt b/apache/certificates/3054.crt deleted file mode 100644 index 248928420a8f..000000000000 --- a/apache/certificates/3054.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAmwrMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMDVaFw0xOTA2MjEwMjMyMDVa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAMRTy0VM4omG+QuzAReyjFRZ45v81GEgJ7cizcEEcxyx66FoqF68sjlu -nmO1dyIrtCIbvmcLxaTtZPLd4nEkabLRJJcEGjgBa3NLAjWZt+f6+0PpMYlmZbWV -+KsGQFB3wb8rC1DdCnsPfgaM67gGa1s3E4HvVY9q1YD15CiwV5hy/Eux8q4clAPH -GGAJqh5DWyCmmK0lNJ8Om42x6tqWEKcZaKqDxy7gm+02AND7RFl2gyKUZ6zQYmah -kDafEkewznF4rPll2jqN0kT+7YRVHhBsimInKcngsKy0KC3mNDcqImszLzw2uzxN -ZFF3z9o9y/C9fAuc4yoFvMv61bcXsAkCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -jJGr3mDMqnMWyJnOuQlbpF0TdwD5Z0RKONAr3FJeU2EBWsTv1fPj1tABEDd/Y7Ql -F/2RGuXkRWnQ40FZQfjNveouk1wOs0ZlBf67g8IQPIUMT1kvGl6lYuZKojICTi0f -pASc6yHjPZiSy6rEgaI1Bp+5x6t0PJ6pazPfyMiVRRttgjk10Ojo0CVG5UxI/J/+ -qdvcEQTNItP8vCF0GeNGDyilH3DXXdCJTheOql5C5p6HCZYlmcA0AJNW42ADzPuz -GIFnv506YqgYHTjFQqEIXX3OIA+BUVRjrm8Pm6R9Zxr1dS+luY9tXGO+4R5I4beV -gL9HVNdMGOOzSwvEnBUC/A== ------END CERTIFICATE----- diff --git a/apache/certificates/3054.key b/apache/certificates/3054.key deleted file mode 100644 index 445a4ef5bca6..000000000000 --- a/apache/certificates/3054.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEowIBAAKCAQEAxFPLRUziiYb5C7MBF7KMVFnjm/zUYSAntyLNwQRzHLHroWio -XryyOW6eY7V3Iiu0Ihu+ZwvFpO1k8t3icSRpstEklwQaOAFrc0sCNZm35/r7Q+kx -iWZltZX4qwZAUHfBvysLUN0Kew9+BozruAZrWzcTge9Vj2rVgPXkKLBXmHL8S7Hy -rhyUA8cYYAmqHkNbIKaYrSU0nw6bjbHq2pYQpxloqoPHLuCb7TYA0PtEWXaDIpRn -rNBiZqGQNp8SR7DOcXis+WXaOo3SRP7thFUeEGyKYicpyeCwrLQoLeY0NyoiazMv -PDa7PE1kUXfP2j3L8L18C5zjKgW8y/rVtxewCQIDAQABAoIBAEbFDdkFRgPdK5kU -BajNK9icLnfkQ4pfVPGnEhQpznThjda5Kzg7POOHBIFcwH0I0/4XkiMDE1PIX0NM -yHuQbKmQymfFis31dQ4yU7GOn8R3rGtme/zTdIZocSL1NenLwYNvuLyFcWm6w+sI -kU/cwIY47EdCRs1T7XJ3MK+aIXlKGAg09v5W0VSoxmIk9hVrOM7VrhBT+oFr92eZ -ZJxQ65RXMnpJSLAMf6J3xuT7V7d51Jab/9A7XeEE4LHZDW2e9SEjZJrIbUQg9f3X -lX4M7pJ9wpMGmJJ+/MK+KhubbUgM6/feRGkniBpDh0Lq6PwMwokoP5avNYeV+/FC -qLeFcAECgYEA5mDQjjbHpqKBH+BNYnDjjvDAavOUasLQOWPh1hGiLLyKBMzaZpjl -ltOFWZTeqyqmk0BPtYLLgao0VGJtu29sQxyt7W4VbGVKr2dhsaYil/DqhXaKmbQG -9NLe9kQdib9lhcRTxVblCfhISyOdW65J27Cq90VRi4yqL0y7L7IwzcECgYEA2imB -FjwO+IaHITZbtAQNMyeBpmvH+vS1Dh7hjBjotU5P26hOO3erRGV2/RgyevvSJaC5 -I8VV9HRE/YLxoPr7x8EQYs3WtrD1LXR70k2oBwoihFktTHRDKKFHOnn6gP3bG7CO -1LS6qYfcKdc5mUlz0uJqVD0pUEJLITpB4Y12BEkCgYBxVbWkEPz9VDqz5NQNFr5M -RtJSi0w7jWWEpkem2XvwCDzaCbF0AcoI/jw/CsbUbCIQlPXhtNvLCWG/FcEoEbOv -/H7wLFTrw5UPX4unKrUgDIxDZkLfRLqbXNYFTxM8/eTC/we7MHlzAysFlBrIzKBX -LL2e8gIg5e2fYV9BIqdxwQKBgDQNlRxOBjBsQM++3ZCNKu0arwebTeLmAlE1MxGv -W87uuYUqmkf8HKQ8JXDsFhdcAF80Axiy2/hwyYlHdgm3+N1HhnZcsK90d3t6AJVE -LCRJ2cSEVpeYYfHO0WT1d7zRVTc9IEdGPAd5QCHHlZmqefVGSqKA2VuqBa0O7ms3 -yoHpAoGBANorroc8HQS+HxylrafQ22IFICAm1eOu26Op+g/k5b2HmRDfZdd/94ih -JtioZlAHm7XrIvtP889SMwU9eZ32xNfii9fRoKqA9AuIxkGzilcJfubpMFXjybso -FiKtSJKSF/1vvHfARQoyOiRUCIAN2K4UNH9I30mhUuIDAuvocxas ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3055.crt b/apache/certificates/3055.crt deleted file mode 100644 index ceda4eff51d8..000000000000 --- a/apache/certificates/3055.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAjBHMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMDdaFw0xOTA2MjEwMjMyMDda -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAMQzCeDv3Ga4Kqj5jKfVj7lVahuijOYd2wTDISfW9j4t13Xwagk6zVto -MiEdzN9y8RNpjlOPxuzT34nuvdqQEEnhVGLIDU6oOCZH2DIQ/kIzO1bZOEpY1ipw -UyzCEfZZZ1/4yIU7PFGndXm0v1c3QMGguNYYjSK+qVWzL1z5HYPXFOwUcrU0oNy7 -QPQUEBixZYs1EZuvxTKudFI2OywrlWjPW7Al5v+iFYhnASheeqSMLvvwpg0K5K1x -j0RgkeBx3iq/k9zHa9fP60w4OjFNdyV5Bg+/feRb8TXJCXAGBANMG42UiIiktY4K -bOhc9AhRO0jdlryMe98yxIJkium/ea0CAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -b4X9590fvuddeBue59fIYGkAETZF8CpKaHApWLFyy68wWrrFPMJRTGVpMg3/IJ28 -w29DfvNIfeEKvOm4/oEI6Fm5TzDXcefPq6Umi8pJFTgrO+pZcKrH1IaU81C6qBIN -rzk1mGxIfgqGCOx57HbnnYtHFQVaHkxYHImRw9n0e7bmmp/2ReeOu+AtelhB5uOR -lr11FRI4apAvniuP912isa/X4i6tKuQCaf7t58qd6ORkGW7vllD2bZORJQVj4Djt -KqQnDOpR4qZMc+aEF7QZm0Ma79B/WoLgRxcCbBTjlzpViQX7xAp6Q0DvAcSTJxUl -JJUyFAJ1A4g+uohwXHbJhw== ------END CERTIFICATE----- diff --git a/apache/certificates/3055.key b/apache/certificates/3055.key deleted file mode 100644 index ecef3bc91e7b..000000000000 --- a/apache/certificates/3055.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpAIBAAKCAQEAxDMJ4O/cZrgqqPmMp9WPuVVqG6KM5h3bBMMhJ9b2Pi3XdfBq -CTrNW2gyIR3M33LxE2mOU4/G7NPfie692pAQSeFUYsgNTqg4JkfYMhD+QjM7Vtk4 -SljWKnBTLMIR9llnX/jIhTs8Uad1ebS/VzdAwaC41hiNIr6pVbMvXPkdg9cU7BRy -tTSg3LtA9BQQGLFlizURm6/FMq50UjY7LCuVaM9bsCXm/6IViGcBKF56pIwu+/Cm -DQrkrXGPRGCR4HHeKr+T3Mdr18/rTDg6MU13JXkGD7995FvxNckJcAYEA0wbjZSI -iKS1jgps6Fz0CFE7SN2WvIx73zLEgmSK6b95rQIDAQABAoIBAQC80R2ds1kaJf0w -N1GNJ/M0eqYuSEZvI6ZnM98Rt0et2XI015VEoqmFYYZ05ngHR1gIxZoqgwD/ZHwK -A5AE6oYyg78xfbOI0k2PUa8Xp9D6JtHhqBULP+mEWCtDtNWSjsH007kuty46qv1c -jn1iUxNoBOQ9bs1M9c6DYnmfcUNdX44Jvv7BJHL6bzj9WOoEGobJuoovv1CvD9WV -Rwie0IDQqcRuutAy5D6+IzbI8eW6QzdT+Dkl2JwE3S+4vROdud+SFZIAFPYPbDX+ -mn9GA0xc91U9X3O1QYJWos4zfst5K3fRBwb05+/YS48/eP6v6w9D2SzTVjYXY7Kt -SuRifcbBAoGBAOXn55wgn4czc/UK/w1hMksLaQ6N1qxhgL6VN0n8cy1OU//oGJR2 -jqnoxtHjCd68ikd30/17/ZN5eFEc18S7uSH2rj9aGXiPdFUnRfL6dvOpf3OMB9Qg -yhZKjP4vWdtjdsOfBjVwg7/UqtE0xswLvNsrtAOfmsx7NYFPz+RA8x+9AoGBANp3 -w87ADG2JAmDhbnB0H9dV043CIYXD2dy7WXj/l98zFKKSLlu0q7+/QtePn0YtXtnm -1bMyVpGsRmiXOXTIF1CbD+nIWuNXeu2CXELWLTLJsTWHrAzdFU4Kl9lmV+RBjqAB -CW5/DA60sBYS3VY30xfVROFc5GYG+uVX4DFeBSixAoGAAOFpfqyVT9Q/nnGjVm7H -3Ye2qEqcxt48uv4hTxQ7cLH7GmDOL0tg8n+ku0sOT58TPIDV/AOMjhMKBe2BWgyK -AfpK4o06yb5q6KSU3QBekkJU7aFcqlBR1dIFRjfyNSflXYxvXqcGqiZrXQ/Bryhg -WcqKDvV+h0f1hYBDwJELHVUCgYAST5l82cHw6FvnrN1p1YHZtZretdfDc2/uPVG5 -f4rGLWzcV25FR3ZhwvEiSipqYmEh2GQu+dghq5PXLl2leSPjIKwLxzw+89Uc1SFQ -hM0TBa6xsuZryZgAi4jAswBI5GnE5XFZ7pIfJWvg3cHpeRJbXAfC79tA5fLfiCcF -XEEIcQKBgQDEpwDdI0Y255aSC7DZ3DBy3unCEWbKxeM4VZ+DMx9tErGga0arEgn8 -mKdR0rXR+B4pVlP6WhByppmzfjLXdPq1B1AIu2h0MYWPnvDIsY8l43hcPcbgW/cX -MRPhx+JIwxYf5DPdmWzmXBujQc1asIGV45e7N+M9QUcXg3ZtxfWAlg== ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3056.crt b/apache/certificates/3056.crt deleted file mode 100644 index 385f5ebe563a..000000000000 --- a/apache/certificates/3056.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAkIJMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMDhaFw0xOTA2MjEwMjMyMDha -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAL+G+auMElONU7jORmYy1tTpZiIF7PYrnrlWVMC87RUYcDaVbMTO9TW2 -DFXz16XnihgtkppQ4LCsabY0J/N7kCBTRD/PxybkqMZRDDhKnahKgCPITgOCgu7c -YKOb4UGBfYQiD81RS3Q+cGNpHF8o+5BQ7HpkSA1kDDc608FTwO0E1wp4ojLsNNuS -1Nf9x9WJe6paGG8F8E4eGcU1HFBEkSBqOCly2Z/sKdXEnmYpnz9OGeU91tFsI3qD -QazKVwiRfzqY/4Dr/rnjOBy4hj4KNuY93xUEa4ft9KCCGJFsKbKp8v1aEqN/g/wd -HieKuAirXD+kDU0L27dyAlCf9MDkXp0CAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -cx7uE5OtZY86W7230pBlrToeiN9AtrMrGPpJov6nDQ9Q3zIYE7hmMrPr1Fk/yipk -x5GG1VDbzFLAoTOjF3qGcZXDllKxnEzZL2mW5Gx0XMCfoQF0NK3FsXMMeUrYXxV5 -/CehO4S5GZgePnNJWGYzPX/z5AD7dX7gMPUpefxsWYclMsiGQQ+cp/3Y9LJBqrUX -LCADLxudLLDy89gfvUksR3dezZDFwFe4/6a08Nolj6F9BV3FddzZ6VMNlq/XWgSS -oQaa1mQvcT5JiEJJ9QdYuT4Zl7jNnr6SZi7gCNeaY304sSkA6yOXVzFvR0SbmeO2 -u2Wkxggkm7ffOziUXm8n2Q== ------END CERTIFICATE----- diff --git a/apache/certificates/3056.key b/apache/certificates/3056.key deleted file mode 100644 index e1896ebb1761..000000000000 --- a/apache/certificates/3056.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEogIBAAKCAQEAv4b5q4wSU41TuM5GZjLW1OlmIgXs9iueuVZUwLztFRhwNpVs -xM71NbYMVfPXpeeKGC2SmlDgsKxptjQn83uQIFNEP8/HJuSoxlEMOEqdqEqAI8hO -A4KC7txgo5vhQYF9hCIPzVFLdD5wY2kcXyj7kFDsemRIDWQMNzrTwVPA7QTXCnii -Muw025LU1/3H1Yl7qloYbwXwTh4ZxTUcUESRIGo4KXLZn+wp1cSeZimfP04Z5T3W -0WwjeoNBrMpXCJF/Opj/gOv+ueM4HLiGPgo25j3fFQRrh+30oIIYkWwpsqny/VoS -o3+D/B0eJ4q4CKtcP6QNTQvbt3ICUJ/0wORenQIDAQABAoIBAFEdbShGToysUkT2 -t8IYzfumTeci81Te7H46HfLzEMXab8vuRP6lWBzDWT4d47sT8NyEkI5iqoaovqy4 -MiNgtY27NjCAYywJs6EqOi6tC1B3HQYKk1/RKnrXQuaH4kLIAMyxUFf4kihNOXQg -1C9JQCHC5CSBzDI/qRzLAVvjiNXYdyOKArPn2hsyKDgT3A4B7JAjAxwQ1lOyf0oJ -MPd/BHGvKpOV8mjDAvijIntdrxLSPW1tjSY5GnBaxfQiaOg7SU68DXBhgN01aKnV -xCW/2tc+wy0CL2PPaPCQZqdLIgKxUQ/gmeDxYeYXjCuiMC93lKVtyRRNobVKtWbt -8lhgIlECgYEA6FceKmaZPSPC2dOd/er29RNxkjACKrS1D9CVjs4wxFU4KEBrzE1o -9ASqGIbbp1qsXwl1mRnFr5RNr+Kcn4NtZc9EBJuO3Kb9mnP4I0kdfP0RVlqv5287 -tgqPjIBTFoxyq7nKQJMJQbIv5cIZlyw3q7P94uvbw+ACyYNHBaG+4U8CgYEA0wfm -wEZqhg9Iemy05kUNbeOc07rT78NQJUBcKJmBJrIAU/09c2FLIqww9kMPvo6MZ0yS -wmxeLGMnh2ViPienDhMSUB1XEjjD13DDNYJV1CZmxARTJbS6PkpzwN0GiuMKRXH1 -L6W8zxO3tGajOwoziCNw5+qNVwMcoXPHAsOhDlMCgYARl1b/WtlLWcPM/kq+COY9 -1AULTns7hIcY9W/9afsjQliII6iFxW6m2xuN09gZqbHXWD4BI4RmMNJY+M1m/mpw -BOtfde+xISueYB1vfn+vEPIZGbCr0y4wMEiCGM0xrdyYx+5aSUewI6+gs7uASKbG -Z1BXuAfhorpTS487C+4J3QKBgAv5q8+Hb24SGfPQjWdvzbZJr1GYjYRSmg6zG0e2 -hkyy1y/s8/rDL6dVDCY9YfxXTIJkJwPfcGymZ8zYJP4P8/vpeyWOtK01CXAFVx6H -OeWjFDvVXv6JxfPY976fDEr/XUrZj6dXiWJa5RbYqDSmfIwiLrsKZWDlrU9AKa/v -eAk/AoGAEFLnmbjYudYaqthf+9WA8LRl6joGqczrWlG6rCW87jUhqudqSt0yjPUp -hABjFE8SLj5Cpnmuld9OGCHuja3UTFtzroi1gz95nbgjz6EI9fQ9mMaRuAfZtLcl -t3jRo4YXdxdM6FcLRU5zzOSYwd3K8+UUfQec4yD/anegLTJpIvs= ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3057.crt b/apache/certificates/3057.crt deleted file mode 100644 index 4df0ee2b2df6..000000000000 --- a/apache/certificates/3057.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAnGMMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMDlaFw0xOTA2MjEwMjMyMDla -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAKuQYDhh0odDmHePg54E1+xlG5eY996L46VcHRP9bTrzkwqShy7iUIwz -LriMKWH+nvW7n4liAUPGaj9P9MmOy+1yX2nGq3fkg9sE3Z5BYEo+xd7d+gqMJOQz -ipVYcJ8ZP7Axv2lzfxmtRzP8jsNzJZe0/wVWdsxkuECt2/brxw6EXuuCg5U5nVAw -ha33GImUVyauNBirBERPIwrTnq3tB+CUwKwmB9b2p6zKfuLTerNbiDBr6WwTy0qw -HUKR0V17zd5clsa5XhkR9FTaPQrY9CRWZDZqyk/ZzBsAJYgJwYLOoVmk9a9t6wfx -axnCoztEYu1w5Fj2AHV2pBtrLve2bP0CAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -SeHh159UakXqpQtAg0L8BH0qUrWzqbcrf5ABVIF6fL4y5SPmAcsjDdi5ZCeeno78 -iCatU2AcPl2YKIKAWYDE2Ju1i6pnnAVm29k4YQ9Yd248sY4+zqKtOs91gBwebzo5 -dv2us9fA6dhy/tAYEP2XFPPru6N+PPvsJMAMsVigG97Xsy++k0AzqvXNznlrnzvA -VMgJDaS2PTOeaWN7rnQDfZkgbfH40Bob2WgQz5A86goLxLtPgvbcnmGlgZDQDuq2 -1HkEVpAalQLRU8fRe2BwkjCpNK5ESUjNvjVE+93J1B1bUJtmzvkMdrI37/7Le0el -8ZPgReiFd9HJMtXyqHicKQ== ------END CERTIFICATE----- diff --git a/apache/certificates/3057.key b/apache/certificates/3057.key deleted file mode 100644 index 947e06a4b3c5..000000000000 --- a/apache/certificates/3057.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEowIBAAKCAQEAq5BgOGHSh0OYd4+DngTX7GUbl5j33ovjpVwdE/1tOvOTCpKH -LuJQjDMuuIwpYf6e9bufiWIBQ8ZqP0/0yY7L7XJfacard+SD2wTdnkFgSj7F3t36 -Cowk5DOKlVhwnxk/sDG/aXN/Ga1HM/yOw3Mll7T/BVZ2zGS4QK3b9uvHDoRe64KD -lTmdUDCFrfcYiZRXJq40GKsERE8jCtOere0H4JTArCYH1vanrMp+4tN6s1uIMGvp -bBPLSrAdQpHRXXvN3lyWxrleGRH0VNo9Ctj0JFZkNmrKT9nMGwAliAnBgs6hWaT1 -r23rB/FrGcKjO0Ri7XDkWPYAdXakG2su97Zs/QIDAQABAoIBACV6s9p9XE2acbtk -yb8Cld0ZtW5nx3aBnuin994/Fda0EWJU4l1WqXwHTmSYkg3LXxSVuWN82oPg26Mb -J4HExT4JJ1jnQtw9OqTlKjkBVTTDA90NJyuYtBJ6RAMeP/Qxwt0N8R/rUE/er9hm -ixWdmQ/MRY339pnuQuY2VQBbP7Am1Q/ePkKH8ALkoDuvsX7iiLpRBSrYm6oMSrGp -TwIsGrppQvaTXQ2ghwKoMY7GXaQaXyV5lHta83m4hYmSvDN1DDygH549cRjloVa0 -s8y7WZ9/jesbY8eZLFQy9bPDTgDAgT6VLISmIT80YVopfhXzTit6Duu1KNrA9hhH -u7UyMEECgYEA3k/Jv0Q0d46Wir/LDTM2hDVQhZmJkRAiyPS67XYyrL2jpeZ38axp -gwWgzqLi456TxpofN4G3XO22dkQ0edFZHxP+nD/h5R40AhHdAvxhdrduMzQe+QH4 -WmPiHMrVPNIOwINzkz012sGAtDhp75LMTva74rtShYXa7LAEc2B+EU0CgYEAxY/q -ORUZDpqFPHVDW47w4gl0uKxWYtTDCdHvRKwhVWM0q2nI18xKgfzYHLu/hIfFkf21 -mkc1YeNispi5nHTr9HpcnYWf7bxcRS/fskwildp1sWZDLuSLoqYEoJH8rj6W0uyA -LwGTdFSSpGrjgZ6cFn0hklj09AI5u3A7cYeO8nECgYAebXlFjoZH3uJH91xJYDsT -+WAeCRfFHRpFuwliuwzQi9w8NsEv+NMwNbL+1ViMowXC5xFivYRlWbvhkBBGpBq4 -oDn3FN9MRsgDiIJhiD2mzBBvPbEHj/d4F7e5DSIGgxG108gb3QLkABwnjpkhS0xf -enHY5J60289NGgJh8FEQ+QKBgEeZA3KSgdU4DMc/XBznbccNVD7FPj1tDA4YBhWm -KCJw5JqmqMIEaJA5WPz40cyvA9wHzXPPELqcFJ3TGZlpCkY8vincTnxzAiGU2wYb -74DNfk+/VuO8shpM/mpO3fsr9a8VRNNER/Ml30s07aSBHeJMkQkfsg5obBHQ98oK -LbURAoGBAJGB2B+iKz66Mlhw548VzUwAAReauyO285ytCjSbZoG9vhCUbrL+bTA5 -1Q7+mPfZSLGhNWllrX8DPTQG9/MVHvZ011UytnzPAzdAwS+hLcMl8XMRJFRWtWfJ -9V25QcPY4Y5Ng1q4qkmoIItBm0AdoaU6AhV5CXlocBoizePMIGb9 ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3058.crt b/apache/certificates/3058.crt deleted file mode 100644 index f35f2210836a..000000000000 --- a/apache/certificates/3058.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAiSiMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMDlaFw0xOTA2MjEwMjMyMDla -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAK5n1R0lE7qNJ5ajvLzD1BB9h1uLr3Ceysz1abFuRhXplZnoMoVrlIon -I2QaktryR/X8jYDyNtUtSQz2QcThjE1mcxjKSFxAo3qzotUIpcXamZa03PFNGCkK -PhYRI25DiUoGOlPpWLWIggYwzLWYF1De8JU5e9AIA17hnJTboWtvlDZvcpjxHivS -dG8bV99wpafkSzx4xYm6mHCTZvkk7CbVlsidPaWA63sgKfZVQ0z7rq7ctugOK1/y -DkV00XZqpc3Xq0NpLRnDD+Bp1/wNfqldax2xFK1KS1E5moRcCD8rM+Do9VYjgz7X -DwVhSycq6DKUb+nYh+V0Iqvq+D4ABWkCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -hgJ5VGEV56v/FK9FoI0p9E6c0dxMS6oS8RmmZdYNDYiXM8EdQWaWQGK3YcjAhBTB -znrCeQeLwO8IqZ7AOMnm8zla5tID9uNb924wo2HTe7SSy37alGFL5mgsO+G6rjkQ -cLJ7g36iQo5CmrIFnHwzKUL/mP+czks469shu1DJTbVqbpZjM0DmQSI4cbGQ/H+E -vu5UwR9lFHGJVZO3pi6aaauloEXA/PpmdukGgjW+oAPVzk9dRBc4r5IvObGBjEoE -5ukLafJd5uEccXcg6FlFmOISg2US+7P84LmwHEBuIjr0reH6DF56atsaENt1voEC -Ndt/4G9udLv/szMAVajpNQ== ------END CERTIFICATE----- diff --git a/apache/certificates/3058.key b/apache/certificates/3058.key deleted file mode 100644 index f214e64be2f2..000000000000 --- a/apache/certificates/3058.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEowIBAAKCAQEArmfVHSUTuo0nlqO8vMPUEH2HW4uvcJ7KzPVpsW5GFemVmegy -hWuUiicjZBqS2vJH9fyNgPI21S1JDPZBxOGMTWZzGMpIXECjerOi1QilxdqZlrTc -8U0YKQo+FhEjbkOJSgY6U+lYtYiCBjDMtZgXUN7wlTl70AgDXuGclNuha2+UNm9y -mPEeK9J0bxtX33Clp+RLPHjFibqYcJNm+STsJtWWyJ09pYDreyAp9lVDTPuurty2 -6A4rX/IORXTRdmqlzderQ2ktGcMP4GnX/A1+qV1rHbEUrUpLUTmahFwIPysz4Oj1 -ViODPtcPBWFLJyroMpRv6diH5XQiq+r4PgAFaQIDAQABAoIBAC1x5ulKQQLKRzeM -gOCbEoYdf4jONC/fYK7Zf+n49xA8pnvNMmTrrG/3VNR/zCZ7HV8uqNyhwMH5o+BZ -xrd7oiiE+pbKFuLbAP43EsX6E+AjXwQTKsNBuHrxLU5ottfDh2Gfj9FPq4raAC+G -xcDH2cN75CquKOIDRIWTuk5bkItCwLgEksInMec0ITBjdkFLtUT6T4yH6wO6Kc29 -onU72bO2G8ERO4SR8kfBAZQj2PM7ydlDpyPArRBZQaX8N6yPbmPRGjRMWxkO5wps -Lf13z1Km+gBlIeUmuOGkXCFQMIeNnR7KpI6wc6RaM9YTTS3amIuTGgdQ1Y7oJ7he -Sb+YdRUCgYEA1LRB/Z2U+J8qeAzA00Dn3jUSBwSp2E1YWJDY0O5v22Upr/RB+m6l -Zb4oUU3ujLwYxtlKiI0yJB0YXH+vZ02F7+Z7SBRf9cmCwAqtiqJfrn5ZtGiLPdST -n1UAokiSIs8LjPGiH3ZrTbxDCgfBxJoXb3bEChsstYZkCUhCbHxbrlMCgYEA0efi -+G0oIJixg6O4IHBF2eRecE8FsgMV970yvEFzE40pP7FthxidJb2jcUNi0GyROAUZ -hy9fou0v+3MF9KoJ44hLysuEkghHoD3IxLacVj1rOzEbEkgDDNI239VOUDy3tb1Y -cc30hwxzuel5KPXdsXTtYY8BvJQTOQ6o45MybdMCgYBFDxl13FnnttW1EH7yl9ow -XQ6zVKJIZiRO7QhYHXIXy2qThDx/sLjmpay1aRYQf2mT9iyq1Rz4eLHWJmaupY7c -6voP1v2o8XoQG+doYXurTb6WQnMi6gfb7V89UU6RGqPnaPR4PpxsKrmhYg9ZY6ZE -PE098sC7VxzXnqxiSKYDnQKBgFkWaO91LK3BAL5VMyWZYRwcX7Sc5VbrFlzCERFz -Wcr3g4VD4a+P08qb1Q2SQxMgsPWsvGvywE1fC5lV9TYlIPNP+pMEk6yDFRs+fcJ3 -mpzDjopdyhaVN64uXhnb51QIoRPiW/JZLipPL6K9I64tw7y4WrOoRV1rH0l9HlMQ -Ozv/AoGBAJfaQlSiJ611Kksi1TEm+7wRe05ZlFYlrtHKFUUmKtZfjmLW3LZHLqoH -m3W6R3hwMCb6BFd/+ZdcK6Wd6zuWSXBM1nf4u8xEF9cx1U58mo51dMIWOjuJm0Jk -423XsbtvOOfF15qwe43S4VVYCrLcVNC4v0uiZYqjXGyUITK+SuV0 ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3059.crt b/apache/certificates/3059.crt deleted file mode 100644 index 3dc56c34ca0f..000000000000 --- a/apache/certificates/3059.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAi+eMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMTBaFw0xOTA2MjEwMjMyMTBa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBALloM1CK3juu32W7jsMRuCAZK+AA/ZYvRCROMYuice6JC41sQXMGaDyS -nKbWs5GWu/iz3tacHBo+2kJvK1Zt9IrfePX8yU2nMQYQh6FW6JzEy9+e+tYRZh1l -+MMPW5kE+iecUUapO2tsRvMJ+BT4Zzl3r1n+VPuxCeMLSjCJq/zaInZtAof13Duf -J7h5rimmW9LVfH6S0uQs/4y1e3sZTvfizLmde0BYv8lGXVe46UnQFCTY88X3iHwe -ySSbU8qPChFMqAlD/n5wdg6UceiqtGJau81aedonH8wVfRKRP1iYZNqM+skKQM3e -TZ1osTzBA4r6bFhcjlZaySxhSXUECoMCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -MGH62JIzNC5L1oKiVUrWsraGa0yaUiNeqL09IUQDVBLMm5EQsq83sqjp0D1+xGtm -tEclNP3R7GmOAU6QpxgOhDCWKWz2/bZrC/aaLLb/xy/QA+zgiWq0GtKEp+DSp22q -05EsVsgsXesNUIx5+1djDhAy4EuE78UvZMTxO1f71dSxSTbWPTVSJL9kMlk9f9Jg -D6i8HMfFDNv4ZBETaF9K2JyuOKHx30K65/2FiekK8WqNsiFnG1nk4gpU/9lnnv6H -kDRlRitm7VTqKM0PuwSqqrQXnA9IOTPw+hNk3WezUNQJeWnVsYxAGYoz07nv1aHM -wjV+dXbHcPsuk1TrC8BU1g== ------END CERTIFICATE----- diff --git a/apache/certificates/3059.key b/apache/certificates/3059.key deleted file mode 100644 index 3dc56887bf48..000000000000 --- a/apache/certificates/3059.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEowIBAAKCAQEAuWgzUIreO67fZbuOwxG4IBkr4AD9li9EJE4xi6Jx7okLjWxB -cwZoPJKcptazkZa7+LPe1pwcGj7aQm8rVm30it949fzJTacxBhCHoVbonMTL3576 -1hFmHWX4ww9bmQT6J5xRRqk7a2xG8wn4FPhnOXevWf5U+7EJ4wtKMImr/Noidm0C -h/XcO58nuHmuKaZb0tV8fpLS5Cz/jLV7exlO9+LMuZ17QFi/yUZdV7jpSdAUJNjz -xfeIfB7JJJtTyo8KEUyoCUP+fnB2DpRx6Kq0Ylq7zVp52icfzBV9EpE/WJhk2oz6 -yQpAzd5NnWixPMEDivpsWFyOVlrJLGFJdQQKgwIDAQABAoIBAFmZQIsgwOrIxI7O -R9x/GKLyZyCWefX1G5IL86eONk7XDa0nbq2eoAr9sxRxV0/5LxeuHPdLc80/KIzI -WoInGvFts2/03HdZX7iVjmXqsPjppbiIhKGkwNteJwxkxJg7LoSr5x8ls2BjcBoN -bET+EixUaXotDXaghK2jDBROw72p/ajO8zuRIZbck+hHo76NLkZk2o4cYO+vnfdx -UK3p3tPThVTkLM6vcKODtoUUzs16GR4jXex+6gqj5w3qL8Gfu291p9HlpdYQqQd8 -/Iwhoc6i4R3G9P5b98hc5tvV3FMLE/gKdHHQ+tmTv663taifSEfqa0HjIfNN/km0 -W419RokCgYEA6uhria+3VNS2v/iV91thGvNS2j+fwWi3o+Iyra923BNmtr8PxTIh -lfSrsaxFq0GX6B1qakKXLutEjWz7G+/jjC/cGxjRmjYl7Dipi2aQSqiLsH4UaTx+ -HTBPGBzpa2vPP09W3N+Kz1Qv5PfdXVHaOGxQua3gTMUQm3hVjbUuG9UCgYEAyg30 -1Gn83lwuIcqcgoO8oEgKOm9T0IizwR3axXW9MqiWChfd7BebJhafx2FZhdcRHiHc -EA69DPdB/Y9H+DF0SJyFudxVEYFxWkw0olvN0WfXLYMV9tYWsl94MESY8g89odYz -+Iy/tOZrH3dvX5Y/ZrW47NJIjtKDRdV0x4LycPcCgYAMcePAl56Oz/YelXzcbern -Ep0BEv3TsUiJViJ5MSKK5jw60kRzngRJfXzbHNVUDVWO5oAMwRphUfV/yJZFFKBp -fN+cT+RK1zOLIDVbPUPHsMY1w3gxWxMTWMvX6zAykLOaFwnzCaTA9yTSbI89smht -NM/SBnQrnQUUN3vQ1hhrQQKBgQCGdiUw2luSKmv0xt3CqSJ005wi6QUw6FgfMtvs -vf6rYK+AhgOEYu03uqSXzXwC6m2UzNmiwfwjTcRXletCCr8ktyzy0+K0pJynh8Eb -LtbX/S+gNPT/79bo20mjbXMO2v+b3G13gUruesxdA2FVjiohEtu+le39RbBgX724 -K7dlXwKBgF+L7+3jDwch28RZdMtBVVQli4SKtgsuduDC+25/ONXkUz9Pjl/5FPBV -tQJ2OlLhDyKlojk1ikCSYFYC/uajwJQbbx+yM+LcFx5WNYWoutiq2HXykOD2bU/A -ZDrFm06udrVsy7RsXOkB067dR6PLSQ8seAiLEZk1lwtX1ikaewIs ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3060.crt b/apache/certificates/3060.crt deleted file mode 100644 index 1548e44762f1..000000000000 --- a/apache/certificates/3060.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAmoDMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMTFaFw0xOTA2MjEwMjMyMTFa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBALdMQ/eQdUHiwt7je/mcWdX7AAuYj2xqrN3pr9Vj8dTwu+Ydl5MPkBHL -SLwLymOoYUxUN0ed4spWQlx5xObMPuHGOrxrex8FE4hT8TPYpDA8MYxeY/IHdOew -liSW/MLErMr2xgRT3Bz0SIDon/uIfcDSOjL3gXSnpCFdpCQ+OW9njJiT2FY6ZPt8 -Sccj/Dqf+gZyeQTG1aNSvYlR+TtzmI+QXY1ZG61+uVQxqNk01wM0/gDaO8mfwkbM -fe3ve4zwZ8O/jzwd8ufzJsVUyuSpybp3K3dunhHgF7U4clknRibZ3tlaLstzoEOu -P7e0KD/CFkJN9BLI9AnOB6zxeyxAO9kCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -gyjCpzfzgGbD7AkFsh9mIQ/FrFrExtA2W4kJfcVqd6fLCEkIXz6DADvgkv6liL1y -GZGXDJatz9cLGDL/S2ASVi5JgOjPMh1rt+kix9aYcpiJSKw4KmPdIWrhxQ/CEQ1t -qZBEVqDwS/NfNVbi4U2r+hvmd+rUsyTjQwjoAEwUlS32Hm4Vd7YzCwycqEK8e/hb -pTzrSjzSBffa4uDtv4QStO3bzt9KSSdyCRVE2qFNGbrJo/a0oB6RJxLMyUsiX/i8 -tfS45FIxLoL35kTlg3kqNrinilyTh0UWFtJCDrSSSfeoRPbQHPi24uQeXKQ7XK6j -K/v5qpp0AvixDKXjFFBZGg== ------END CERTIFICATE----- diff --git a/apache/certificates/3060.key b/apache/certificates/3060.key deleted file mode 100644 index c4f4619c3e18..000000000000 --- a/apache/certificates/3060.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpAIBAAKCAQEAt0xD95B1QeLC3uN7+ZxZ1fsAC5iPbGqs3emv1WPx1PC75h2X -kw+QEctIvAvKY6hhTFQ3R53iylZCXHnE5sw+4cY6vGt7HwUTiFPxM9ikMDwxjF5j -8gd057CWJJb8wsSsyvbGBFPcHPRIgOif+4h9wNI6MveBdKekIV2kJD45b2eMmJPY -Vjpk+3xJxyP8Op/6BnJ5BMbVo1K9iVH5O3OYj5BdjVkbrX65VDGo2TTXAzT+ANo7 -yZ/CRsx97e97jPBnw7+PPB3y5/MmxVTK5KnJuncrd26eEeAXtThyWSdGJtne2Vou -y3OgQ64/t7QoP8IWQk30Esj0Cc4HrPF7LEA72QIDAQABAoIBAQCFNXu/ktBkjXOp -oBEdGi9/fuZNhxXUaMIwlAAhSH0bj8g+OAtL6Od+xwmY/8iaHGh5nEqAVZHYElAv -/J7ITG72jaVqAYJ8zKehT7/fOfY4x8YKiR6BakHfj0nOVZxjv6MD7cuCoZ85u55l -cKmzl0Isu5toJs+CA8MYLIF5hW8gMhnxQpHqMpkS0Fdc4bvKf4AhMolTXNmz/g0g -IqawaG8gH/fgHvSLHC/mnIp6/OTsZlYI6qbG9vSIOvdEqL3jLl18nqCALoSFrJyW -8mWZOxbyiuEelHanyIT9IFYmRafOG517XOsbdg48BHwfqzpiOG70TyJV6LhJGFXt -fnVFO6YBAoGBANqHdc1v8gYQwwsMMJzVtl2rVV2wXL29zNDdn9CsWWVUOVGWKcqO -51TvhAXZtwbZoccUiP7LT9SaW8XjR0gi+5cZYzTLUsxBliqQF158+uu0MoLWYTfN -rqjbIMlH1ObkVtwQWntGCPrC33NpJFpiyW4C3VZm3A343hCc0gSQNSuRAoGBANa6 -TDqalB55U0JQbxntNF+dYjyv/hfkXQwMgu3pg65x7uwlKHRuzcVX0aStc3Nck7Iq -NkdphfBjEEtXANpcifpsgTg9lf/R5QDVNH9/vOJhVQsiUrVtir1cZYQCW90qMsv3 -O3q3WtA74sVRjcAo7+EA8yZBVWtxMHhgGcXApxfJAoGAJW3YLoTDBmjuj0DaPrKY -FrkW2QIxEEqm/wtGqT4r3aAsZR38MHaDhtezXDErGSBDhk6tHD8EgFyj5WQFPITJ -ZNrzVAKTPuro5odhiUyMybxGfoRriFxRUxidJ/yGqbloay7d4IlhVln0XdcfY9/R -smcJNBhQDpCWsG+7xQ5SHRECgYAiTeT7v9JGBA//GiaFt9WUKOqW027+licfU6hf -Jd05s03+P/l0kHcjPeJqMqOtHG8kGYZOZldVjh3+S0oBmKMadNc4Cu65zeiN94HJ -lLiyWeZiPvuDrJproiU9r7rJXIJ8/2RrOHuzpL2X1G2W83NPOP2fcPSak5ywvnmf -lCWdsQKBgQCENeKTdAFH0+P1lSdGlHySOlOXVdknGT6hjBqVLfZ7wH9DJ7t2+iBf -x83sPtONeNrsqTFPyc6NQanIw7sk3fk45gJK9XxWGoUrdQswDr1LJbcWleItjDP4 -8/qhhkFNVj3lKVboX24zs8aLCSfNjRjHhyMVKARuoZ+a96fxuW+zjg== ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3061.crt b/apache/certificates/3061.crt deleted file mode 100644 index 343223db8ecf..000000000000 --- a/apache/certificates/3061.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAn76MA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMTFaFw0xOTA2MjEwMjMyMTFa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBALaWdHd6PS8P0CMOsa0/RTxQZBW/NyXANHyrrGGuhjOAyOmyz1MGsZm/ -QyZWhfVkLc+39KHuMyfzMw+QOeNKxBqCCWWS5ZdNXz+3Tbm3dQa5j29eYfMfNSUz -vqW9zI5zuDxBHL7ojo7ZZeD48le9PK810au5hVd+DEmZIhDHeriPPanLLIKVvmES -y08RoR8DPCMvrUqLLvChQe6dgAPf5S8pHsWfUQejCzZ/JsxAph2R8h2fYNkM9que -yQkw2DzMNsIkup74cz9pUDKElMUfjgs512ZixBi5OZzmXunutq9qAK5IPZ+Byrt8 -uEnwKQHQjUyPbyfsQjeQ4sQgNYJsDUsCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -ZHc3huwdU5nJ8276TJhZj3s7TGiAg94nRY/ttggFpGrzNzXT8EfUZJ6e/hoVtddT -no25mdeMsEpH03dqKnAe+bTGyIrFgPrIy5m0T0dTlM3Evu0VyJ3c+gHnZFIKnrRz -LaU1SlJEHq0GWQ0+XHz1zFfjfIL7b3gaoj3cVOIMMkLKjc4uq/DSvmTqKHlu9+3l -aNTIiGcYgxjbbS2Ve3kl+FMfUXHuAkXGPLsnT7OBcu1+7heaVswQeOzfJVf32w50 -mEwb7mm9Fsavl7XPexF+vm7dvlIXyk5t1mGajnXuddp6lRnYwbT2AWnE+6bXfhyT -ZJlIx3YVM4kUVS3OOslTsw== ------END CERTIFICATE----- diff --git a/apache/certificates/3061.key b/apache/certificates/3061.key deleted file mode 100644 index cd0099f37b68..000000000000 --- a/apache/certificates/3061.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEowIBAAKCAQEAtpZ0d3o9Lw/QIw6xrT9FPFBkFb83JcA0fKusYa6GM4DI6bLP -Uwaxmb9DJlaF9WQtz7f0oe4zJ/MzD5A540rEGoIJZZLll01fP7dNubd1BrmPb15h -8x81JTO+pb3MjnO4PEEcvuiOjtll4PjyV708rzXRq7mFV34MSZkiEMd6uI89qcss -gpW+YRLLTxGhHwM8Iy+tSosu8KFB7p2AA9/lLykexZ9RB6MLNn8mzECmHZHyHZ9g -2Qz2q57JCTDYPMw2wiS6nvhzP2lQMoSUxR+OCznXZmLEGLk5nOZe6e62r2oArkg9 -n4HKu3y4SfApAdCNTI9vJ+xCN5DixCA1gmwNSwIDAQABAoIBAD3aQAANZ9aee7q0 -ipoO2exxq0X2rb7bGqy1F0NL9OhTkzwft73/gYB820mMe/rCAgbg4T1NzQSWjVCT -YhjORhpYvMgs+BvGOSMDfJASRtGNYLqwdWv/wWgl3EqXPklviBTZVdySOWDI4otQ -qf/w+jK8f5e11Cbsa0svVevrN3Z3dQW/kr3uGF9EaoWVWbeGgkNLmpQNjGcatWim -i2bNxsTr4xzrDcMlh9sDh/j1XV8/SMR47Ou2/JD7X69lv8UOTSzANONrcXyr2x8q -cV2eohPaskKFeModn0bKN6Nzs9yt8mSldMn5COIXnhcIsLX9eLGjB/P7GXNyyUfT -Q3iOCdECgYEA5XddYEH1JWm90bMKQ+VQ9hAeGvkrQWnU8lWXV5O6oc3i0FACtDna -DD4VYaTjph7ogfs+BHzGe6KrR89zvxUb81UULuac2hYFMg7YJsqfxqC3ay+P/gRt -Le4HdIRPKIrQAWwZtTWExTgrpghxUFnOTHhqg+lvXN8PUwtXoGoNnBMCgYEAy7Nl -enUJpD1CKKrkymztEqML4G7SzlnHnKTSISKKMALoprVgV/YeA5xv9mKyruDqcx+m -qFqdrMTB6esRsBYx9if3ZpsrQuiMWhDWPxe68rWaHhyyeMe3ALZcN9rGP+x4hZCe -ETxubkJbUf3kRqpzhqjEiTIdT3Kh9ITUfZLzAOkCgYEAzKKHbklD4sqLElB1rhj5 -+4ZiIrHkxmAoHLkBz4MaJCPkytsfnjQdZV+UV9Dhh4r21LwHEZ9ormdiEhdKZLTh -iT5tUmospTyQA5VDZEy88jjvebIf2mt+JkCo+1rm8QPh/fK2dmi07+Bo5JeQ3hRI -qt+UNfFec9ck5m0uBwus+WsCgYA/SSAI+J2jOij4y4dDYK4S8Tb6ZlP2Kix6/TYP -d1Spb+3qBUXGbj+K7apXSPisnlIYrEex3F1KVOLOEusu4uZozKfvZ9v78JXSUZLO -jUfWqhcUrePA5IN1pDJoY/7d01DqZjDFuBmzBcirY47taX1047AT088JZNruRepi -jSoUKQKBgBblXwLjh7ulQsqnchlB68hrpiZyGR+/a1pjsAguPMsauDEafMyB5X4T -cnbuuco3LKZtEKn0tHutitusBeMHoOwH/P9ZAUQYq/ylZGUQjdSZiqeC5UII41Sa -GG9TfgCq14MBch9hMcpbgJStb/O2pqIbBxAmLiEUrVcsWGmfrEFx ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3062.crt b/apache/certificates/3062.crt deleted file mode 100644 index 23beb77a09c7..000000000000 --- a/apache/certificates/3062.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAlwdMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMTJaFw0xOTA2MjEwMjMyMTJa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAMyDQuBa4PbMXmVNNp6gZujSygfiyHnQK278Y8yVKHToIGvYAspQll0c -OIc/zZDWpFPvy6NsxzTSkdgBAWPn8R5GEwqVk+ltZbLfg/Y5MlDIVGiLjCkAn8qX -da/hUBgf5lkraHHejXuo+WN3aXBdSCv6ykNsL4nF+rXhI3qYUdlif0sGfiLogyI9 -/dtKMpmV9lXaKOOJluVijbidJpfpGAxak4Xp5hTQg+glIYaLDjo7l/MFMkthQZBl -xuigjajQAocCL8JZLxb638c1SpiRTU7Qnr5R4F8L/oVpJvX0CDKwZdk3Ch0Mt9Tq -qgceY2UbMlPu7LcLn8bynxezdkzLZNUCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -dwiwAH5LhrjD1bysLjaRqDXmBkv7JQxysfSEhRP1vTH3QoM5MTExdCm6YekUvKqt -DqodCWVhtqdxM6dFAd9sbgRCHXTJecPFJrU5fhm5qpBk9/6KstpHUYz406fJTYJU -G9FPkyhadTJ0x8uF4KEoA4jzvdTmPfPhsesp9P1LDqVhKXwckkMN8HVCi4GMJQ8l -/HI4sbkwYZj71AemAI7EIh4dhob82Jc3+sUpS0FIzoO/Yf9C/I5Mr7FQZYJcAukS -gCGtlTNrSyqNwyMYfVtisgCVUKdpN67ZEUo6SuVZKF0Ku60lYvnMZbUrg2tif/E5 -RFeNefMEOjYCAZfdWUJfrA== ------END CERTIFICATE----- diff --git a/apache/certificates/3062.key b/apache/certificates/3062.key deleted file mode 100644 index f87747c91c69..000000000000 --- a/apache/certificates/3062.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpQIBAAKCAQEAzINC4Frg9sxeZU02nqBm6NLKB+LIedArbvxjzJUodOgga9gC -ylCWXRw4hz/NkNakU+/Lo2zHNNKR2AEBY+fxHkYTCpWT6W1lst+D9jkyUMhUaIuM -KQCfypd1r+FQGB/mWStocd6Ne6j5Y3dpcF1IK/rKQ2wvicX6teEjephR2WJ/SwZ+ -IuiDIj3920oymZX2Vdoo44mW5WKNuJ0ml+kYDFqThenmFNCD6CUhhosOOjuX8wUy -S2FBkGXG6KCNqNAChwIvwlkvFvrfxzVKmJFNTtCevlHgXwv+hWkm9fQIMrBl2TcK -HQy31OqqBx5jZRsyU+7stwufxvKfF7N2TMtk1QIDAQABAoIBAQCCeV+qKPCLI5k5 -gchN7UGaWhigbVO/O0rqdMTq2WJFK267vsUQ89bqMj3yM4dfV0DheAPwEE8K6Sg4 -qXOMnIYc7VHql8EU1EFkm+rhpF3wYc5QIG9cHVTUeEqR2eoyae+YhfQNaZHUCdqJ -Vb6D/E82F7sAxr2RZShs7uSmqxTU3TknDCx8G/m29cjuCpzj65tkUrhkwQgx0v/O -HuEnTi4J4YRcTvUuEb6ENH+zvFSeiyuQO/WHxliyHQVjr7MNJETEx/e9rsCZd1vc -lWBgrOCITQpHFRBc2X+M2guxNC09pk8UDj7tb9ntyG2DTEIb6kDCTW7f+8ZV8ZIK -zrUFyIrhAoGBAOasfM2JW7vfpsAhxY8+cpj9H2bowJmzutcsGmnfWp0pKaZpf1qd -7MlxTvj0sJhbI7ugLR5mCjUGLecCZ085AefxCMoyLq07iXJ+JnpRdQIVdZ0e8kvc -VEotlMYXW9xYjN2NonHAgvnphr0X6GmbnG3dvd6LIGLX+LPsFE0leXzZAoGBAOL3 -eCnEohfGdEr7SSr4+XoJ1jCHoyaHoVK6cI6UFMAvUYjjWx/mKNUtoeOHGG1RlaWH -PVzDy0TXn9MDO5vgq7AtdCMaNq15gM+77RPGbSAq4LGlWm2ZzrezzXGuYNSu2OjU -v1Hx+OSM6ElEjTw5dE46KaCYdbJlFE7VugQv8xpdAoGBAOKdkf5ac0Se87LNesi/ -ENY71h3Di3N0npnFOi3Iv7ymM8TI39SmUXmVV4A840DKSNCLC8hRdrWg3HeWZOfv -mW/D3F7H7hNB6kYQqLyCSfFCI8m4HVFpo2U8Ymw5hoVyePEvs+cMuZ/LTBN46VrX -BVbqAR4gkDCK/EnGJCumJTQBAoGBAJ+SuAQ9wG0Q1WCGbfntlJFN6y6xnm6Pe0fL -1ykXScOZQS0KFF5IFrtS2vg6Wl05uAnqHKVk7zwWkcLtCfLdMjiqrHWlj33F6F+l -U9jMcJrmKpYbmIloUyNrIe1kWaYOzGhec6jshD5EJ2ij7tzB1FjPocbMiiuDz5Rh -xef9wmDtAoGAMyhw4xg/Tz5ZJ11Bpk3IF7XfQApb45CLI06A/chyg/BZ4bd6b30L -d3IGtQ9sY0YC30qkRlGh+kT68KKV48g2z6J9JoSa0opKG23osTcs6NXWznMjuIUq -W1Frr9yPM59TwNUn35Eb14QMsHo1YDOVl3ZZtpQsZvSOsEpCw2XNQKU= ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3063.crt b/apache/certificates/3063.crt deleted file mode 100644 index feb1ba658dff..000000000000 --- a/apache/certificates/3063.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAjLKMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMTNaFw0xOTA2MjEwMjMyMTNa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAK+YkcUiYGVwr3L60Y2cvMej5S3CqN53ld8XfroElIvnG3q93a4bZz1c -lop70q6+p5CewEvq8TuMSxvcK4CqySLRsBxXtqCrhML+N2ZtzrT7ISTx3j2u7fIY -bNeWgeo2PSZ+3CFiXFCFat0o80LI1HYz4i0js6OPgnbc4WtB8rAgVjyn5JushLcP -hDoXnquYy3XkSOoTQaTZ2c4bIuRHr3VDPUK10+zXYTdS5cjcd+U/4R/JQpPz60WX -ffERc7qyo5kC11a9n3Kiz8myHQfwxsC+RhjwhIVxyVB91MnHFILwHHB6Yqx/b0EN -jRQz8S1wzeMQ7gfiWT4VfP+7yQXKZEcCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -KqOR3gXdfM9//tpnV/ArYWALdBh2WNuPxlA4IqcJXsBrCJthf4zH3dt5gm8y3rIi -zewIZuiYoESgEdC356emr+QLhb7JlxlSRHrr0mHdPSZtKudffhKdsI3k4uofSz+C -drvy4IEvYr5DWS7GZuIA0fyFED7WPiIvcycaiO+9MBP1aldyE2o0Lbu0+p4tBVj7 -C5pa3HpdQUqFk77WnYYDRiije5SARgnEIivtHqkAWhDrlxx4BflLHu2AKVMQc66t -g1b6Mt5gugdCrsSm2lrovuIZo1XCkqckKy1v75KL+HGFvEEp65kWtKVWMsardZ+z -r0x6oYoBqgAqaQmd6dwKaw== ------END CERTIFICATE----- diff --git a/apache/certificates/3063.key b/apache/certificates/3063.key deleted file mode 100644 index 8eb7d2cc88e9..000000000000 --- a/apache/certificates/3063.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpAIBAAKCAQEAr5iRxSJgZXCvcvrRjZy8x6PlLcKo3neV3xd+ugSUi+cber3d -rhtnPVyWinvSrr6nkJ7AS+rxO4xLG9wrgKrJItGwHFe2oKuEwv43Zm3OtPshJPHe -Pa7t8hhs15aB6jY9Jn7cIWJcUIVq3SjzQsjUdjPiLSOzo4+Cdtzha0HysCBWPKfk -m6yEtw+EOheeq5jLdeRI6hNBpNnZzhsi5EevdUM9QrXT7NdhN1LlyNx35T/hH8lC -k/PrRZd98RFzurKjmQLXVr2fcqLPybIdB/DGwL5GGPCEhXHJUH3UyccUgvAccHpi -rH9vQQ2NFDPxLXDN4xDuB+JZPhV8/7vJBcpkRwIDAQABAoIBAEJGs75UW03uWkpr -oOxyXE597eJ3toVBXa/2jj5nvCmR8S1CvIkajrz6VVevpLWQAG71fF8rLiHrse2y -DDlkPMaHnpEUCjpagqGWkhJ3H63vm3L2V4uwmt7lmS9F/4MHNc1x1GRFW9KIiO0w -p6BtbMOwkY24C/WQFQ4IEI0LNy6CZaoeX07wJOskwrvaxUGMg3mxPU6ALcGsiek8 -fQ6hzVYexhffYtotICmGuq0OR5zP+4oVNAVT8Yjjw4w3293zYe1K6GXPNpe9DMcB -bz9VEFUXs3JePYYoi1O7w3aLtFAQek3njbzaKcuIwP2QtrVwdl8XpGIOerpAHuqW -HbKfHQECgYEA4fibaYpqYTINCO4Nw75/C6yG7UfwrOrUe1R4CBMAyxQccsUkXnmW -AqpPeS92qfhxspVRVCN0XJwhe3exVNLzKbkpuV+rRcWK7QMGwAXzSaUOTSqUe2mK -JLGpjxKz1hUblwwe8aOAfqwUbJG/msTUMcpcc1qym8bjDv2GRtoGolUCgYEAxu47 -aQvMsk5D6T3S3kaqa+88VVf6N1DEAdnxh1QajltlbDOosh9NWa4PTZhPu5hxMz0h -g4aazvFv63UeIf3HbPOV/qlU9EOTXkNgSXXbi+fwy3SiaW+hQKS3jQ9Xr2d8+6OX -wspSU+BKIsMulJs1KQRbsA+unUBGXv6t+KRYoCsCgYEA0LXhPTrGBJ3I4k2VUw04 -pJymRrSie+Ote3fKIZMDsY4StIKXk9bzEeUh4ElRba31vb8iTfctO3hNiI9Fr5Xj -V88Y1YmiVKAfL8gSzPrx+TxFGErSt6YEHN4nQOlCRuJaCEn+rqqYPOdNOfXoJdfU -MWS5vSWxQCYTg73v7rLjW70CgYBkJ+W5ibtRup3ufLYCO0nqddTGkzjjSMKmu/gi -znFgYxu5UnkI1UG4eS4zPxBFvwafaZPKCKdAscZLofe93WveqvVF9jNTmAJGX13H -HpOe6PQPO3XZ594kEcpoNuVK5qvCdiceZ4bzu+UXg3WcVFh7gjo3dm3PtmC3yzoE -CZqlaQKBgQDB6FvKBLOcq2CYmlYyE90Zn3nopofsAOcJvJ/WR3L7fdjW7guYg6Bm -Jo7Qz8EU/xBvv17TA7WtPyYiF7wu0n5k2qBhYCTMacVMlpxKda4hW816GvjTN3sW -GJKcNKeXbk62cZDZdf9EXMKvFjw0VQooJvcIGJXItQAxQH+Awe5+mw== ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3064.crt b/apache/certificates/3064.crt deleted file mode 100644 index f780442f259d..000000000000 --- a/apache/certificates/3064.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAg4jMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMTRaFw0xOTA2MjEwMjMyMTRa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAMdntEHszbaFyqri1O2T0EvAUYwnPDvNv+bbnl3T9zFTnoamxe7AMSmt -npq0sq3MhEzXyQHqE4EOb8314OD/MGILC1GkScXBXYC5FRUJ9CqV02R3huIau1/8 -E80kwB9HFwq6P1fDiNSlSk43vWKMIDwSktOShdVRcKv0rsgYgzf4nVO/9ilJYoSm -7FrAna5FmUfGabRJxAct+rnb/s88joL1v05AmGuavKbqFr2eJoERKMS0CRTtOHc0 -MamBl9GTZr4wcvKC0TLHvDMwfcMu5bf7ju1BnBLiqNIX5nL8NK7O3YwcEKkJBMVT -ft6pIptLPhN1+pgfKqfLDds6Up+xaB8CAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -NDjaGHEElBOysI14ji2VH4tzPDamgGmGp1kpl5b3aa8Edy0U8pv/gDJ1BXqBBNnO -iiVM2jyX4EQZmyWAozkd/PnmzKA8n2T+BmfzMjWJvHUOkX1w9Wae3OhJKDcErn5z -7JtyMOIpX7xXz8i6MmnrPMpivGIvbl1LQV9vwpSwf752HUHqBpWsCnKTq+SmBFJ6 -W69c9AzcsKU8jGzW75t1KrCmi5tfkKS9lmSiNLMvPWkXAmTUCRZLAY77YP/fdPN9 -iUSnve8CdUQWdUmR2A0u30HKuRtGdKdTB/BeJQhrtY7n32kzD+VAe45GVAppoF3f -oy8HvJsKZYNketStrNCMfQ== ------END CERTIFICATE----- diff --git a/apache/certificates/3064.key b/apache/certificates/3064.key deleted file mode 100644 index a2280fa022c2..000000000000 --- a/apache/certificates/3064.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpAIBAAKCAQEAx2e0QezNtoXKquLU7ZPQS8BRjCc8O82/5tueXdP3MVOehqbF -7sAxKa2emrSyrcyETNfJAeoTgQ5vzfXg4P8wYgsLUaRJxcFdgLkVFQn0KpXTZHeG -4hq7X/wTzSTAH0cXCro/V8OI1KVKTje9YowgPBKS05KF1VFwq/SuyBiDN/idU7/2 -KUlihKbsWsCdrkWZR8ZptEnEBy36udv+zzyOgvW/TkCYa5q8puoWvZ4mgREoxLQJ -FO04dzQxqYGX0ZNmvjBy8oLRMse8MzB9wy7lt/uO7UGcEuKo0hfmcvw0rs7djBwQ -qQkExVN+3qkim0s+E3X6mB8qp8sN2zpSn7FoHwIDAQABAoIBAQCfnEjTBCNdWBZz -VoGtcUWnfNdJYhZ6oCRdO6m13PbeStp3WYLRqpEvlUOA/eaP60Zy476Hg7/863te -1tMcBefKcqCqxuAuJKsdYAiaAI+qjqbYojwbO96D5BhNen82CgdNlOsi6ubZnzyt -AzzaZuNecleIdp4ds8SGP6Kvk79kyngT847I41glMBwDkq1a2Mqx6WUUiZyimweb -ikVN5DKq0SftvVQsB9DvFrG4H+y5l5Ax9rvAi98qRhFExQHQid0960keqkkEGUOO -CL+U/T322xgNxL7/uNoydEeNe3ZBEXK2LGuK+SvwKul3WctwqYMKSyfPXOfqklQx -AptC364BAoGBAOWzIK3v9Ps3zUh30y95iGD9VEeBFgPUD7UE0Mvj56VhhhGPKjOK -NuRKSYqCMPOzCjQPY83GwZqEzhz0tbepaq8Zh+sHne9nXyKxriyiQHwaPiC4KEtj -6iyBPDIwQzNsGGk6yFnsoMxDOsIAhBBTEHx2bSigrPJVoyihC4q0K7qBAoGBAN48 -l3/p1ROpnBiorN9AN2ZxfHR9DdsjAX0LcQhYMwLEAzhHN2nIfejwoekHLBgGcw0P -7qaSxs4uVv5t7SKvPdvnQmAvHuXr1yAuL1FxNu+VhEe4AiaG5WKj4sU+mVMbYW83 -BwyFbypg7+clycfPRs/EQnudnCI+9NOOB1Q0q5KfAoGACNxABnWbHZWpdYIpw0sM -17Dt71QrZTpo4LKu2y6PYPHCGitLlXFfbK7w50beXIgrfJabYvSnwy4cRUGrQMpo -MxjpBUfl77YtFUmFTnNzyVW5z8lKxJ22CsFxcP4rmXAyAN0jnVRjX324ZoNelMKf -gC2RSF/qS+7BvG954n/QsAECgYEAziqr6VCGCY2pb/7bEOlD+9eAO5jfx9F7ygNZ -QwJ/oCszSXxX3dzPYdAKhGHQ+CDTjuSe4wz7Pb8jmTllam3kFyM9InnUUjwuAH6Y -CxfafPzaEKaV6CPwnUeoUo+2MbEO/NuxwF3xOQFgzbDytliGOqy5eHBIrkR1X+U8 -y1Npb8UCgYA4zClsMmtFl1ZORDUWqIqPSjU7Eke/aJiPguEL2qkHehATj7TBkA68 -W5GJLomN97scdW7yaYEppvI7/nughUiQ9SrVH2xAh98Wb22D3Li0UaUDW7JSACl2 -MYp5LObA8guJltZNKhsnrRG7tRtqK1s9xM2hdf5seL45BLP187W3dg== ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3065.crt b/apache/certificates/3065.crt deleted file mode 100644 index 4ac0983045de..000000000000 --- a/apache/certificates/3065.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAhwGMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMTRaFw0xOTA2MjEwMjMyMTRa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAKkyr/H2K+iowjDqIctwmt1LlnxNboJC8Tq6neoYZ5ltst41CY40vSDh -FmbyOLYKu11rqVnbTBBIG9OBlJyC1J7fxxZWr2MfITy2FCsivNcIBLk+jyq2HYJT -0z6l8/o2w+f5bk/lTDvP+kKya5To3m4cvAcOaqcImxio3RBf7hcqQ3TtFrG9gigN -UPx+wTT4JMl5aEoLQ67nXqzN5X3YhbzpLhUG3C2bWqYeECb6ehzKh+sVupxat70x -HfeNFyLwokqfQqwbT20z27FAPCsHXoXFhHcXRT0rm17RI4rGKllfqxXbFnyVEJzD -YFHmOw7HtiNocxQhkO3FXC2wkvpeG00CAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -f5Hp5sKncCBjf+Lwd0rQamFGNBWHc0eOrI54Aya+vAcykBC7EuLzoi4bq+dNMYlL -uElMujBRovYysDMNGlQxPpMNjmjGAaWQtI5plYe2g5VJ4Py0tuyx+lichLmpqJEp -Tpk/Qz5L2bSMvmEFLaljmS/lg2yNBtVYpv6Ywgqd9rj4hj+cGIidCfiy+xjsBmpq -ydgaq9+wI3zYzkF6w0KlFAhOW54rJy8MTJMEJG7Dxw3HZr5YnWF+WsM606N5d7N8 -06jfFLhuiOdo2vP8iT6cV8Psv57pwnxt2m8jKsIay5jWXgKr1aOrFlg9rW3cxIUe -lU7Eahej6L5ddLhnlvSoqg== ------END CERTIFICATE----- diff --git a/apache/certificates/3065.key b/apache/certificates/3065.key deleted file mode 100644 index 6eaa7686f0fd..000000000000 --- a/apache/certificates/3065.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEoAIBAAKCAQEAqTKv8fYr6KjCMOohy3Ca3UuWfE1ugkLxOrqd6hhnmW2y3jUJ -jjS9IOEWZvI4tgq7XWupWdtMEEgb04GUnILUnt/HFlavYx8hPLYUKyK81wgEuT6P -KrYdglPTPqXz+jbD5/luT+VMO8/6QrJrlOjebhy8Bw5qpwibGKjdEF/uFypDdO0W -sb2CKA1Q/H7BNPgkyXloSgtDruderM3lfdiFvOkuFQbcLZtaph4QJvp6HMqH6xW6 -nFq3vTEd940XIvCiSp9CrBtPbTPbsUA8KwdehcWEdxdFPSubXtEjisYqWV+rFdsW -fJUQnMNgUeY7Dse2I2hzFCGQ7cVcLbCS+l4bTQIDAQABAoIBACe3lkWeG8CJnMwO -qdAvpqq7y59yLba2MBoxJFCHWgpSDeLLYGrZRmwpajDQOy/AZSsQ0rgdGkXYJ3AG -wvPaYj7JGNrNjm4eKJcvxpw5k0qGv1Ucsk68YUDunG/gVN0vbd1OV+65TKPdtklh -yI8z+sKuTBT79V0wT/gB66KkYiddinoaPdQN4lfKJFWl9uWli75X8fXmIjm1Vdhl -aR5zfUW/7+tANdkODXvdJWlQ1ZPiPg8gF+60OlSCAXpxAvLI8DDy+HuaXvqyBFWj -4kcPA7mlyWVnP/AydON9c4iXj0olHPYydfETBkRgb1IFM4mVydNnlN3L43PWIZM2 -catHvKECgYEA3pS63Xxi01WZOx/IdCexftj6gvdEra6QaH8MWglHiukVVSnuY4fO -L+R8QHTv7LUfDylF0DwIpCnxGJqIEK3Mf5nYRN8NUDsWkPrsOexIHUIGIIwDx5yZ -hnArjirtTVN0b5mhtZsKq9v/Gp7x3D4w22PWZt11x7FxBXetD6CVDi8CgYEAwpoX -/7oEteqbjhPrveHNnTi4qsi5I2IPnSfYJp1+A5fVneQJrRP23AwjdEOTjoZKqEKT -Od9AwMJN5kVqPnCu74n8N7v3lr2/DiVZ3h6CXs60jncc/KNTj7U7GXegBVTsC8Vz -4nx7fpbak2dDnt5HdHz8As4ntHkCHD8h6uS+q0MCfxd5mDvD4qhnXsHdmEan6RB3 -0fP+IEAxKQncXHEiiWkdLCLPSVU1/YkPkAs8ShGtCJmQwMw1iLPHuKXfpnob2nWa -xDR/UegkUzz3OfLh+LkdPYgxPDTRT1/edLmJzX1aT+11RpjgwT9e9IjaOqf/5yc8 -YGB4+vMUw9bPyHDdftsCgYApjZHWTzg2SBRTMDnEX/Txv2zfOuEdhxDic+GZzUNd -LQy2HD1csciikAz6BHv7kP1cFGsvjlZbUqIjq2rWTmVsTMCIfiCOFZI4SQ15enZI -HEc9rH2KDK4JH5+w/nQy70E/+jeWgxIzo66kjwZHZBtJ6m49gxvDU5t5wJlTeOil -1QKBgFw4a4jn8onNJBNo2lh3L+V/zKI5PHeG7T8eQup6DdYPepx0s9yWqt1xZSDB -3dHY6Adv657K8jJ/2TA4oXBoVUvdOSg5wDleiwprHYigfPeKzP3iaJLcHQxyGT5l -ZiFShTcle58lcIY6Sdm0jlX+khlszwWvXvNIDHD0j1U4KCTR ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3066.crt b/apache/certificates/3066.crt deleted file mode 100644 index 23c5c3d0aaea..000000000000 --- a/apache/certificates/3066.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAk6lMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMTRaFw0xOTA2MjEwMjMyMTRa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBALHv/Kq8/nzEw8MQsfIvp569WO/jXZjKRuKY5B0Cw0MQRJgCwtAEJbBZ -gal8ffPg/vLaaCRTRmVuV9HqoTFzfcha1F/WKjUYzELZO8wGikJQSl5B7hoQMjWw -Ow/aX/cfHHi78Hk8r1lVzdCi5Nq19F5EbNQeoDkPSpIySg4OG7e/5iFG6vlFuP2o -kQ0zdlJWIOm9ghqp2jy4fejH6zoROmTDYPI5zA8SQGl+pGKqUHZzghXaq/nEg8KY -UnnTrYHixLu3BQnCZqeiuWWoF3mq9FcOZ3M+XI1Pbk5mIt7vvGTeEVve25cSvn7z -epxG0luh6I/u0yzC6bbODOslsHYKw7UCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -jHLopScXQZpIn5Yg/oAzxNKv857qiVGcpGsflN7IlbcevMGZo0cse6LEUvUH7Mp/ -yEnWt3w9l4np+PWtznp+vctyKqJXv03nlMTjb3Fs3ldZDC0uafrKo2cUd1pC1AbN -yS6y9E7bucLW7rKqF5Om3dRHa0gUk3dxyS4QD+Ou1idd1AreabT7Moxk/ozYkjdi -W4jb9jgL7BxeQ0wABT9xZodTzen7FHZ7G76TcIFavIBWMAPJHhr7Q5v87Eg0hcFt -W4Yzz7j+ozOLzmEXpJZjLu6L3OGn8YFYusUdgmkbuxn4YP3vfDdq33YzsnuD3zZc -uzSs4OAf0zfunsKqDiDbmA== ------END CERTIFICATE----- diff --git a/apache/certificates/3066.key b/apache/certificates/3066.key deleted file mode 100644 index 56b55bf3a2a1..000000000000 --- a/apache/certificates/3066.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEowIBAAKCAQEAse/8qrz+fMTDwxCx8i+nnr1Y7+NdmMpG4pjkHQLDQxBEmALC -0AQlsFmBqXx98+D+8tpoJFNGZW5X0eqhMXN9yFrUX9YqNRjMQtk7zAaKQlBKXkHu -GhAyNbA7D9pf9x8ceLvweTyvWVXN0KLk2rX0XkRs1B6gOQ9KkjJKDg4bt7/mIUbq -+UW4/aiRDTN2UlYg6b2CGqnaPLh96MfrOhE6ZMNg8jnMDxJAaX6kYqpQdnOCFdqr -+cSDwphSedOtgeLEu7cFCcJmp6K5ZagXear0Vw5ncz5cjU9uTmYi3u+8ZN4RW97b -lxK+fvN6nEbSW6Hoj+7TLMLpts4M6yWwdgrDtQIDAQABAoIBADB68pySYcQc2DmN -ku4pjcHyVQkHKbk3Y5jZj01YM1tSU14XYnzKpHon6OwEv0xzQQNp/nXnOoboSYUo -KEMQ9HRiSvrRny5YU07jYSd1oLXwqlKEJBt1zjhSi8UF+p+aGmfKzPo7TotIlYsC -1tfAO5RzkDM7JOxm/ipXCVZLAcJOUePcVeJGnD6mpALDcuMCTWRiZ0oBMgloBl1Q -VUfkzyHAqZw1IXwyx6SXHtxCeXmCX05X1qyRQMO/kSNIK5iGytLz9bBqZFDCOA/r -D7Pb2fnRQ16BROAAU8usrU9h2ry3ZwlRZXfPQrhWxkgbL2I+f8O0Ym/0ceuS4Pig -v20umAECgYEA6R8NqZzA9UmcaGdM8w8Swtlax6mAelPAZoZQVVh2klBqPI+UDYvG -7j9cMBuk3D3DKY4iiP3zvJk5q5JNfn09EAtjDSSrb5I/OAoT5b5cS93qlu6++eq5 -onWGLzK3kUoOFoo+1qqhFIMx+JjRm17Il4Yu8BfG7cZKylgELkUigFkCgYEAw2Z+ -KYZRZvQ8Suv8rsEfzl6cXgyRHbGKrN7uJKx4YGpfZvQZY+JuIh3D5VGN2/avEo5E -6R0xY8OD+PxD5+WlMvF+DWUWqv7QkZ0jzFtBnSbbXg4QxUE/uGgCAJM6UTQ+fgUd -+N0BzL3p5oCvJKxc9UAOQCcB6+HDT0Fxc09x0r0CgYEA0JWfdOaz5AVUNDpRqJ0R -DVTLnCC2uz1axqFhGawIk8vt8ngJYcFyYlRA2S6y6Pk+OV1a2zZWsqZq6nACdK38 -R/HYU7c+yZqShELIIOWd0agjMZ83M4hpRspfILYBd7dKObLCnPKZJDBrMuMRkTJS -yvkd4Gd17+RfoQL14qyrPSkCgYBvG0tnrzGAOiZCb9dZQwUj4lZFgB3P5ZE15PlC -rzMvl6yxrOD3E9yN16D5NxtT1PwNsAntB6V61cSoAkFWjhUWV4zWbwGpr4THF7Qw -Uj+H7X1VCOhuUUC7SaDB1PWXEP7rx1sYlAqe8eobIFb2om+lIIw53DRSfSgCW/L3 -n1fYfQKBgFWfAmHIoMNUY7mDSmttjibmmg4XSwh4gR9jZBApNhG6hOZKOaLbbj5N -PLqNAUiobo39GE8Ud5NTvyEFkT7udOzyyEAw8jsd8iaiZVLVmAgBAno5/ldbJiba -ZKz/re1qLGC24K2OaHUnhYs3ZwIjRjrZ5AnQJsvX5GOqhc2yhocs ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3067.crt b/apache/certificates/3067.crt deleted file mode 100644 index 8b7a9c89695f..000000000000 --- a/apache/certificates/3067.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAjNjMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMTVaFw0xOTA2MjEwMjMyMTVa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBALxADAcClWMXAuIUpRp4RiP0AkTNVBbPmmlyYoDoKXVZVo/T/Qif8LkZ -EQ6YLIi/soh7N/6n45kxYhJ4P51FFDPx1j3OrXOdQmZk+8xm2FvB9FxpusU+N328 -2tNjOIfVeh9q35XJmxchonkkhaPP+aVcrKbvCAlYTpE9HIOIHiKyQ1Tclr6/QOFT -pT7dPgVHHId2Ru79xUvVmPphurJR7zomYeyMuQcaNl2gMYXOZHUkmWgJ4izAWGsF -FMD4PKRPqBuC+S/GMKggAG/fdM1jemGMlPlHWYgkfvW8fIKftDI30BUYBv8zjfAP -qdRzhL2366KcKdj4dpOc/KeSFinKKfsCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -OK0GfSqX5UEh9YgNciJp9kQ5ENFPEOgdTy6NRd/pq1if4QyHg4EaeCgPQMrUenp2 -Yz7HOgrGPjqKPaylohNOUZwliM02zS/gTfMTQ3JdIUD6jxQU8Y10zX9WGDvyHSnQ -l9Qg043/haV829+ErVWvOf3aotHxvIpueeQWiV7CMIAh3H9G8rv7ho9/TUAaaDsG -ZwBeSJqOjE1PPa7Q8Nlm9h5nkIVIhjjln5+SuLuA8q87HZBkbJBzxU+rlm4Xw1f3 -OBvaIH6VsOtO98T/WYYuBrcPOTDXPaR8xNcw2LIwkDrHSghl6x/0/cBT0EtGfgYB -Y3YaL2k9Cj+mn8ublvaESw== ------END CERTIFICATE----- diff --git a/apache/certificates/3067.key b/apache/certificates/3067.key deleted file mode 100644 index 1fade94bbaf6..000000000000 --- a/apache/certificates/3067.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpAIBAAKCAQEAvEAMBwKVYxcC4hSlGnhGI/QCRM1UFs+aaXJigOgpdVlWj9P9 -CJ/wuRkRDpgsiL+yiHs3/qfjmTFiEng/nUUUM/HWPc6tc51CZmT7zGbYW8H0XGm6 -xT43fbza02M4h9V6H2rflcmbFyGieSSFo8/5pVyspu8ICVhOkT0cg4geIrJDVNyW -vr9A4VOlPt0+BUcch3ZG7v3FS9WY+mG6slHvOiZh7Iy5Bxo2XaAxhc5kdSSZaAni -LMBYawUUwPg8pE+oG4L5L8YwqCAAb990zWN6YYyU+UdZiCR+9bx8gp+0MjfQFRgG -/zON8A+p1HOEvbfropwp2Ph2k5z8p5IWKcop+wIDAQABAoIBAQC3scvKv2OkyNyg -XkLp/Hl9NetM1gv7ImPsB5lFbsad4yqLuPHOC7xr8qDpW+cBHgaKFasDTTLT1xN7 -MGnq/nCDa7aCo34wNkGIB3yJ7cWsbCwWTXnaZSbjBHmIEucj7VV4+OHqmUtEnCae -Ddx2iEh0a2VylAeEju5D3Z1IYHf/o8TylMhkppQR2vN6joKRfqrTEERwzPNtGbd/ -SoqUCQHufUfBaRWib3oJ7JjCEl3uncaWtge8uEclkhjXuI9WVyfMFzjBA6JcYP7v -mTieZSOrGMUx+kNTxsLqBqzu/jDhDhP7sohfXNAbkrWPZkHSQxa1Swt91l6ypIG4 -YXFD1KHJAoGBAOePqO55+hHWLQKKds8CH1GMlUTvlSjPmAJJMGxHiCyV0lCXgQgD -BYWusUuTPTRJszcmmJW5SZgiNlvVQHlo+GwBis6bhh/juKzxddd602e6jSblcArg -dBrtSyMGHosYKf7bgcxP4u2RbxbhEZetdvbqnkvvKpQudtceMct7zILlAoGBANAe -NP6Srph4dWHs0LwKDkezWANNazZc6HP8TUzeoWbML6F959TzChFxnZ8L7AuzrCDC -cV92bA0sAB9dKsU71c2ZkCGcfbL9yT9zu1QHJmdZJf6NmbX7Y4VpUIhX8rMy0jQX -8m+Abii/nkSJylhX8vC43YXf1lALAty2nDDlEstfAoGAevR2QAK2vSfbiIDbazn2 -RUf/rrYEnsH0NiqEssoczYfUQATid82a7gv/imCpXA1SQxOUa9QR9t0bvhFzBcSu -PDNpcCF2y5IQaoxgBUXr4SVWc/PaVXwvSmj7v6ItL7BqBDCsMD+vAHR750slG0P5 -akzUNv/MvRga9EjNKf4Xbt0CgYBWJnr3es7NjOfCbp6FiIAazDG9xDmCWnlbMfDp -xir3+8QnzI/ARg8/41FFOlEvEuRI91SpGMNnvHQch5uh48AAiPXyA+7Avm+lVYoR -IZiTJYMl2YXsoDC1VEAjAI0WAw6iw9r2rypqsc+ZPZTGdzm4zj3dIih8H+LCbNFB -KEJcbwKBgQCb+eTVWSSp2MXxvY/Z9tKbt20R7BfvgzMKS986WEQRSAZkDeRzJCii -qnVe31XLbJr4WNeJujQuHRdxenFKJbUntH7sUWBzbXFCD7jKfCSt+rUlfWb0W7jX -1t7HDeI/PxPz3zhUisApPxxHW+Tj2ewcMl0JkmzoZ/3f67CABEc56Q== ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3068.crt b/apache/certificates/3068.crt deleted file mode 100644 index b222c8d97aee..000000000000 --- a/apache/certificates/3068.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAklNMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMTZaFw0xOTA2MjEwMjMyMTZa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAMFhmxHSI6aW4mGsqNids/atTx25MmGpI7g5Op8UAbqbGrks8Rkz82bt -IPDyAiQvrRKjxk5vtGDk3jdL2gEq3wWtRLE27N/uqUztjzlmIa3sfhISo/xf3ZTU -MiQRiN88FFGguROc546vT9QeZ9SCpAp30jONmWMUC0mzZF030OEEF3naXr9Ot3PB -Pg5qBlVJMEbw6I4AqBEgmahJoVgXR2SHyOfDFKT1vvGUZEnnq/EDzNv44fAVSzmm -32eOYzfvj5o9BK4QcvlS9QcUJTsSdVfjbfOG4r5YeR1+tHfCmGUBuVJuFtYO+uq1 -UgTzCMyoSTsqySz4WV/oCYW+tYU+/k0CAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -WnSyoXY+/89R7yZ5RuZwQ/Ed9AllkHaspVJq6J/i586awP5pX+mvZEJvnuZRuSWr -0NgnHL24syoMeV1NKUBRUvJburWNKGA09eqQVHY0Ax76VeX5m8pzN77XJWtsHiPT -BAvpFMNl3luN/N/67mkeQ5jAhUltK0Rtw98eO9HoTf/asTYVMXVBijlVlAelWrU0 -hvwR2o+VCVU/5ZzCBk/YeUYQ1wy2v20eYx6Zvg4qiVfXC9q1J/Ngc5ziVKgrDl86 -AodfhWtA5iKAzxduTnroJUl0ZO/boSiEEXzG/NbxxMI6AzBMjLFaVyltfjnpbgPn -ZsnNc4nMEQ+rE8M34NXTDg== ------END CERTIFICATE----- diff --git a/apache/certificates/3068.key b/apache/certificates/3068.key deleted file mode 100644 index d111549933f8..000000000000 --- a/apache/certificates/3068.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEogIBAAKCAQEAwWGbEdIjppbiYayo2J2z9q1PHbkyYakjuDk6nxQBupsauSzx -GTPzZu0g8PICJC+tEqPGTm+0YOTeN0vaASrfBa1EsTbs3+6pTO2POWYhrex+EhKj -/F/dlNQyJBGI3zwUUaC5E5znjq9P1B5n1IKkCnfSM42ZYxQLSbNkXTfQ4QQXedpe -v063c8E+DmoGVUkwRvDojgCoESCZqEmhWBdHZIfI58MUpPW+8ZRkSeer8QPM2/jh -8BVLOabfZ45jN++Pmj0ErhBy+VL1BxQlOxJ1V+Nt84bivlh5HX60d8KYZQG5Um4W -1g766rVSBPMIzKhJOyrJLPhZX+gJhb61hT7+TQIDAQABAoIBAB/YGtkMaaJ9Jjo/ -XG6PSZtNXsHeRVWfrKohgm2/taks8XGc3Pbxfxtr4QjMUV30G+P95CH2cxWhmpYw -f23ByYf9yFoGWWtmuapZVER3dQRW9Uu0lhxxDOP9LWSTHp7kHdRzSwbXx6nPZK3h -c+eiu7CdmpeysZeHLXStfdF754GmCVSmzmRHMdcaJdvlNjaSYfqKeyuS/O35SEmk -FQPk7ha2W/3rRbt4XRfkUpmUO2AjrWx68crMDoSM3bmgqNcHNLOpHll9x7pHOEqD -dBBv6egu8WU7AQDxU2mG8niibUuCOQi/6rxxLlyollJCRsJB1uhVvozPNQIEwQFL -aZvufAECgYEA8PMQ9qot6Tngv94H6MsA4fibCROA4Yr+mZ5tSrmkD/pRHMqwUhbZ -DGz86VIq01E51uZlcGBczQvj+ZAgRxh449kUU6fYtYXQ29EZ9+2pnbDRXmp9GbfK -z58bmRBMRzsx7TRMVwPljRVdt46joZcN3RX7FvOC5aMZTDaEjlo3za0CgYEAzXXk -2d8Z1CY8ae4Uo54xtc3BVlIfK6YOfrxUrz4AKy7mVds9j7n+grCVtpr3v0fyoSDV -tuGQCmePmxuYj1IhkL05uR9b9Q1v0dDuQVNjSJBHKKz9ffkGQKxBbEGU605CT47V -MHDoFOHkV5h0YluLBf9PyzaqWtk7N2DFYB1cxyECgYB0NUbhMIKkEX4MC5HU/NOY -KMbdQcLPBLJ2dKpRd+dgrWGheUBA1zQnggkYnsB42pwCwWv7Hv6jBjEVlCV9JJhp -i7D6B+HE6p0o51iW8tDzdOwFlWZwmOv/5sTwtaOUV0BlHuwSq5ZyzPM+LFVPAgN1 -tbw7/YYMKvVwhHq6DVkMoQKBgHUOR/YA75w4tI69f7DAPh4QPahKXUvm7bcy4SR+ -NGZl8ADWSbqLAv++T22b2K539TnrlRb+Z6wl2GFMVZzB9DGcPTjFLwTsRNrLKBK7 -yYLcAE6iUEHnELLj8NoWexucmJbvD3LrwK21DP0C9Lvc39Xo4bMrT982iFBCp/Dc -ibFBAoGAQ7WnFj3hPZ/fm4ZLLQM39R9WNmnyM2CihVNSrOHl4Xn8VtCv/KNLswCm -z8jDmTKk4FKP8d5OQNXJbkTq4kfcrrt8JUWJNe7h17c/lzBtx2HLHh5HVJ41SIq9 -Du3BbqbZ1aRT8zJTt2LZTQhMukjLVS/aAsVx99pp2JNCBcQVVwA= ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3069.crt b/apache/certificates/3069.crt deleted file mode 100644 index 4bf3e8eaa3a5..000000000000 --- a/apache/certificates/3069.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAhtmMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMTZaFw0xOTA2MjEwMjMyMTZa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAMg8oJiw/ucQbZ+irhu5ljkYp7AWtfCC+Oz58Q7QSCBcTRkIDRDprdRz -EdP7J/8Qi4Etey70EbQtgTqwCBOCO84pQvx+Mot++m0iD6CcCqWUSKW8eXvLmZsh -kFEaNBtggwTdllV/PXvLVSEgGBboSFxSopM8nc/BWc0JqOrlPnilIF2ZZpk9nw0M -P3B6hu6I/B1RU85DGVBea9WsL3CXOSE0EmlVrDGmujY7s0G8WjvjIHFIlqWpORpK -aoLv4qe574mz+Lh7fNkUTqlqA2EMDLMOKKR1gYti1jclfbPzNijLNyhvCKzdpkZu -7HeOJ4ZjAXi9HZx5ScTCdmSgJqgAqssCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -eCHzTL5VGxF0M7yodUoff6g6OITotuqeMRu1mUkLElkjzUEpKAZzMqW/MUlDYNLk -a7iFU8LNSagnuYr9cQwW3xJ/LVlsOwbK4t9rht2nK+5rvFK3zlon84ju6PrFjCH3 -qHYl239Hv5hRZJ4NvfKPxVoG+CYIVQe7Q2VjcuN6Vcb3Ax72PuiOAZ/S5aILGOjW -P+BMqkVK4hYqWs//l5RDVkJY28NOS2a6BNL72T21Ygs8qTq2a7JfYGimvN3KLVCU -PdrElQAA0vbwj751Tx/Gx8k6J/+NYgGfwWwO7m/OsIw7kMDaUYrg06ZJOH6UwZDe -ZP/Ca3Fv7aw/wePxSAuhPA== ------END CERTIFICATE----- diff --git a/apache/certificates/3069.key b/apache/certificates/3069.key deleted file mode 100644 index 1707151f7f83..000000000000 --- a/apache/certificates/3069.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEowIBAAKCAQEAyDygmLD+5xBtn6KuG7mWORinsBa18IL47PnxDtBIIFxNGQgN -EOmt1HMR0/sn/xCLgS17LvQRtC2BOrAIE4I7zilC/H4yi376bSIPoJwKpZRIpbx5 -e8uZmyGQURo0G2CDBN2WVX89e8tVISAYFuhIXFKikzydz8FZzQmo6uU+eKUgXZlm -mT2fDQw/cHqG7oj8HVFTzkMZUF5r1awvcJc5ITQSaVWsMaa6NjuzQbxaO+MgcUiW -pak5Gkpqgu/ip7nvibP4uHt82RROqWoDYQwMsw4opHWBi2LWNyV9s/M2KMs3KG8I -rN2mRm7sd44nhmMBeL0dnHlJxMJ2ZKAmqACqywIDAQABAoIBAHxcYyXSL85UfrE5 -uUbQ4cL+VA9iW4dP4MhVh2i65UDr8ppMTMknSOX8vaLZhwK8RNhq5enIfkJYTL2l -XK65IOmu6MKmoj/PEju7ftcycs5ZpTECOLUxQ2p80wP78UbbjyPzd44MI6SCKZIU -O8HmbCKi1AP8Dstce6iDilyxGjaUxpyS91BM6JLXayyMaOh2cfwTnucsJIO07Gsd -j12h0et298uY3m3EDOmrBpSOln1d9il0bZdIwAJoId28OOEk2OTPvwPoQw90KgF1 -/4GpdnYRDAQO7fHsh8F8F187+fsOr4F5gTZb3bM9XnLH2mquiVdyF9GARQOB0SPe -SHXpaikCgYEA5bujPiViw+Z1tj5EkoXU7kdkZE2TH9By7AM9CTl6zAQkNVvZeq4e -F4Zpx8ebAi9017VmK7Iww8YXgxLRkLK058Zs9IZGMj5Rq8tIOawtyH+Z8HS5/qum -1ekcKGr+1zvoH/Owjsb1dUF0scmKLpp4UWq5DRtraL1sZrB8FLc5I58CgYEA3yGg -so+qXxLjtSDUTTkqVLO4OURNTrdwx00vjbHROdcMYj9TL5qmmbt8wko9wM5erTfS -JYrX2uPhd2RbSUzt304JrSVWk1GcyIgHerNPArL+qz0qxzDnN9WbVm8UQDBDC6Hl -yYranLaXaUCVUHYSRgB/QSfZp4TrP+bc3XDwyVUCgYEAhQ7Gn8n7iEdEykcKZGsL -Ru8moEml+vk6dqPxiBQ4oU2MwzLtpXaPi0SYo9NiXkOqQv2XrZtJTzq+h3Yw1sQK -r2tn08Cpi5Q4rW3R6UVmRwhQ2spgp7Y3rRGU83v1Gihia48zJZ7qr/03X3nBhPiG -03EiuQq2jTWZQWjalQ0CFTUCgYADLTJheGQfiGBPgtEi7E5q+EgGIK/NEBV98N5d -cQuefC5D88zWX6hBhgbHqVDpvsZgRuwp9qkOB7J9BaO7DmpQhIbkvSRXYpEN1cnt -eEIGss+nVm6WeV7BT7wvZdNu+oDp2Hsx/FUSaBMNv4qgo52s+3LUVaHmnaDPvxSj -3mi/JQKBgBA4hhP2S33pJIOyt1G1BLldS8Jqn0e9MEWJ7tWfGnz25Zbpi15V5Qkc -z2PyCE7thqLbc4oD4F1d3MClzpsF5Dch0hYakgVIfwe1yu4gTl/NqOnQuvl5eaZI -jNYZ05Uzd9jLwey7zK8tcTzNAitcsjkt9vAjDZ6kZbw65iXD8i07 ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3070.crt b/apache/certificates/3070.crt deleted file mode 100644 index 6e162977ef2a..000000000000 --- a/apache/certificates/3070.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAkWNMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMTdaFw0xOTA2MjEwMjMyMTda -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBALRgsrJaIp1nqApOJVhVflkaR+lJVBkH/TGmyBaxEcar6ZXfcj0irgr5 -GXT6thhkva7C0a1obb4+1uoXI+Z+XFz2hdgnhMNudlfLHZEqpbG3lSPwWHa0xaVD -4euxqM4GQB1ToRy5d+I4RWtKvVYdOg63UdRUlw3njUkKleurCztmi6HVQA5fKt/7 -+xsK4DuBFvwhsEijyUkkimb8P06Fcy+3BIwZEvYqPJoDsMkZDQZmf4/9ciEnXADP -y1m2s73RSLoE5N0vDfGYyUEiuVUXrY41wH/iMsAVrEoh1ebIjNEkFKH9rwAe1xYy -hi/RDxJ2X8UWLHke5cSmODCY0d087m8CAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -J1rGE40TgyIoaeH4kq4KFkuFrY9j82ItysFJ+quf576rdegH83fDJuTFpbcZPyG/ -caeSNSDaig5UMLOue9tscRZASBIZlVv2VsHL4RwX3cascx9Q+fIIo8B9VmzVYfqG -aLTeNQwqd0OZpPbcasPWMXCjoR0erS+Ycu3F04i3EhXs2StDmNU9DA9W8S7qN04E -o6husNi7Wfzetldg7kTXsVsNunNnfFFG0Fr4UnoRaQF8r9coBvaEzKmgMgJYq5tB -6z7PjtIqxZdAJF4eQMit6fTZSlGClRIYjFC7TOp4npazXsMWeOgubrwKrGWeNzos -TAX04dsstOEbOW3eF78W2g== ------END CERTIFICATE----- diff --git a/apache/certificates/3070.key b/apache/certificates/3070.key deleted file mode 100644 index d809630fac6b..000000000000 --- a/apache/certificates/3070.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEowIBAAKCAQEAtGCysloinWeoCk4lWFV+WRpH6UlUGQf9MabIFrERxqvpld9y -PSKuCvkZdPq2GGS9rsLRrWhtvj7W6hcj5n5cXPaF2CeEw252V8sdkSqlsbeVI/BY -drTFpUPh67GozgZAHVOhHLl34jhFa0q9Vh06DrdR1FSXDeeNSQqV66sLO2aLodVA -Dl8q3/v7GwrgO4EW/CGwSKPJSSSKZvw/ToVzL7cEjBkS9io8mgOwyRkNBmZ/j/1y -ISdcAM/LWbazvdFIugTk3S8N8ZjJQSK5VRetjjXAf+IywBWsSiHV5siM0SQUof2v -AB7XFjKGL9EPEnZfxRYseR7lxKY4MJjR3TzubwIDAQABAoIBAGl8G0S9/Xw7wEO2 -i5Rq+ua0vdUpsuqoh2Nf+6d5icG7i3DAKZijDVERd9e3PoJpd5waBnD4nyUgrqJb -Qf1rbCxZZtCP285GbSLOf84DOL8Dc05/IdzZvrP1TMt/LA7ADQKZg6C+veMnsUEb -hjo0AV3Vyx73ERdqkG9kp2QYtQrY47UeFyvEN62rwypNHG6kDBklmoEsBFykcgtN -7+WWXpAfkLNNZuD6k0cMGd9o3jgEkwHaaI+Ohox5RTU48E9PG8jx1Vkre3hurE0A -+VlQH3wbRiOwn2/uuIDtRXEXdKDvcpM8AxPTtqJJqnvSnGgzFhEBnqNb0DyH/Ys5 -0wLzLRECgYEA4VNzGzZ39YQp9NZl2GwmSJJYoEm0vd+GN0yZ5uSo62SjKJjQrDCK -qCw8Wxvf77ka6pHwGqH0QT+5wWUBgZ736zojO5gAgS9Z4SuFULlOvl8gcD78GqwV -EtOiCzf87UX4M2emsTCXXBLnX99Ac4o10h10NiCpiBnSGrHIHCzf6D0CgYEAzO7Q -WrizT+dmWECbvbV2LJLJUZIDg4hyINI38vDu7MVwbp0kjs577Da+T6eslFa4sS1c -Sonu3Zpi1Djufvk/RjpIgsM+81SRFjO+k60g5gSff4ZcZP75XonRYvJ3bD3+2YB1 -KuKgnoVy9F5YGNyXZh/rfjbUpUGcaEjjjsukMBsCgYEA2/npPR7u++zcPR/2a9Qh -h+X/yfRLFLccw+3vrh973drxApg12HTHWSlefx/2foV7BpgVDRshZ3X8NhcS4mW8 -6ZNnhC2ACJ6eo5omW8mdW3NpKswCuVNYe3nLECLHtSkDB8RgU0n56rS1174PoPzE -UG3a32EBwVJb8R2xG/ifW40CgYAzcSMmEsUYIqsDLjyp81oVuEcGzdNJ+j9D0+Et -f6NKFgmyCoo5usVKtzcwgZOFrPsxpoRLRbKLOAzk3uGnR+PFOi4nfOFZbXn6C8Uk -BsqCUtjCxzR8ObDZNVk1ME4gArPtXxyKRlcxU6hWhTQyEXWDsjGH/jWEwiKD3wAY -QTAWzwKBgEZ3CEPUlOC+4HQrjV2lUpiBKFbktLgkFNJCJWfKIUPT9hTspdd5THjl -zzejXWLN800EiYuCB/cl9EOA+tQz9sa9oVXhlkXxT5nTHOP0UlY9Hfdw8NPWESOO -KKcOFcDjPwYEMEIlBayhMO4+aoPI6pFlMasTVc1m4sje9ImJZw1p ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3071.crt b/apache/certificates/3071.crt deleted file mode 100644 index 0c59df44f649..000000000000 --- a/apache/certificates/3071.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAlZXMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMTdaFw0xOTA2MjEwMjMyMTda -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAKeUjlYnNeFT1sGVKqxcTKWwdlHGXJKItQF7QShGVmK7L7jYOcbE6bFO -PITOfv1kEcLwAvyeWjchBZs+0UK4hihIg4bDlftScRuhqQYGSwwwuZ2710JwibFu -e+Eda8NHywXSJkHIhcVmMOpMhVjudRLNPWWVdnwv3pKkVNewAwL/9pTTWvhziEkw -kiGEk2IO+4SOWy0FUrEoRXO3eW2O9PmVorZE4MswqaFX+g0/qqypBMNR0Od/y5mv -tk+udBjU0qRFJpIekwgXNvmc0L73xhj8YdYS7vi2ezvnZNlNxQf3JP8jgLx9ohVe -HQflm+rRicdZ63r6cgu9Bk6KsenqTkECAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -i6tKOUk8N2K4eW7C8Q35zZkVZ0oT4DxzS0s3SQGSJG/tg2uDn16wFZf83qpRqkSF -tdp9IXn74QRObOdRN1SDkLz2OVi2/rzhBl1+VQ6pE0HtKI5z7r9P0muQq2mI2XMO -0+NFD+l+HL6sRNjfD6C5cFv5WRoQAQIT9HBMv5fWmMwKeqSWBlWUM7QpMnRh3II0 -s+0LtY1Pu5FaLTbbde1dd4qPz3Z7miUCKcpLu4rw8gFB8bSmdIS+1agVDwG33xp3 -ag6HFSZIX1n7bwhY+Ph9cE8YKn6vKp2aKFqXNPLiV3CPoiN3OqHCOkBS2sA+S1bj -XuIyICAmUwuLy4BIjJdk5Q== ------END CERTIFICATE----- diff --git a/apache/certificates/3071.key b/apache/certificates/3071.key deleted file mode 100644 index 28aec54bf66b..000000000000 --- a/apache/certificates/3071.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEogIBAAKCAQEAp5SOVic14VPWwZUqrFxMpbB2UcZckoi1AXtBKEZWYrsvuNg5 -xsTpsU48hM5+/WQRwvAC/J5aNyEFmz7RQriGKEiDhsOV+1JxG6GpBgZLDDC5nbvX -QnCJsW574R1rw0fLBdImQciFxWYw6kyFWO51Es09ZZV2fC/ekqRU17ADAv/2lNNa -+HOISTCSIYSTYg77hI5bLQVSsShFc7d5bY70+ZWitkTgyzCpoVf6DT+qrKkEw1HQ -53/Lma+2T650GNTSpEUmkh6TCBc2+ZzQvvfGGPxh1hLu+LZ7O+dk2U3FB/ck/yOA -vH2iFV4dB+Wb6tGJx1nrevpyC70GToqx6epOQQIDAQABAoIBAEcmQpx/f1fQ0cBV -Bc4yTfSXDFVB4/HvCvK7Evn3ixvWH7faTgV/ezzlW7qDNdV9lDDw2EPLM8BuS8QT -EqPCVmtqBjXEerw+z3kM1QeSynA9i8FVjFpQD5X+s6frZuJ9a8xn4ghSC8G41pHT -tVYBwEEgVK35nFmztUsLbF47A7xUosZPyIenEchiaPl0r/7DzIlO3sHj1MFExabC -X3RFGGKtzfN+l6xK14Ao7unDzW4WCRj/ekPIHowNZKabI2c9TF9pIbfqXEEQHKZk -9HSei0xerE40Ht1RW7ETui6/QKuVrPn6qiUfvTs3TUKFp0tgmGIHEBJmF3PgjZBn -fxAwt7ECgYEA0elGao9gcKIWqpkmsPptdgyWRrKcoJLxXVo/i/dtO4Ytk9LreC2F -E84yqwuG3gLdnw4IMgDERIyPwSdyobG9NEdS5yeZIroTdnUdJDLpn2UTr6MCwsrN -bhK8dB9zWE1b6cMIdpkVLt24S4+FIv9DLAZcYlUn8c2dapHI0lk8F10CgYEAzF/v -1dFBAePEPus/APuOZBttmHf+OSj0pXmML0/MSKpp5tFZLVbLjvO9FhY9xT1WHl5G -RPTJglIZuPfqUzRKZiIWQbmWofIsXXPgl4vtLYe9Aa64piBF+/FkLGLN+2QlvNWP -zNtOTKQDjBB4AjBwsoB5La7G/h9NXeump4Kf2DUCgYAU6x1UUzN2JgECQT7k1iAA -aqKzKuuG6P3aorrAdQjSrL1wBM3obQjc/2h3OS/YggqZ5ikU6pSkjClrQ0YeLPtA -8XamiICvQEHeRS+BQv2bH9SFZUZKKTGtrXpQTC4Pd64YLpJyVzEQOZI7HXNUGIIW -KhAc0IWpiCcOzrZnl/LwFQKBgEELf49zi9cIIJtNz72GUmk1+Yl/FyAmEsbfimg8 -Y231HsNheZped2bF2DZBWeN+g/wiUQb9SWz6qEkgTimxCMS8sIy2fmSIaOpNSPuy -gwfsnZD9hLMKrnti9ljSEXCjDQeuiJfQbHkj8iUP0MIRnKyTCv4pFBgo6jysFVxW -zHzJAoGACN3jXortgxbD0diNLma5z8eaH422Pu7di3wDyVyVxeFYH2IhKvlwZxUd -AhDsIGUsc2qv7qoSpnhBW+yXykydQV1q/gAzpYOXHb5HuQNKMQwsNJenEDv8uVcg -Wa8+rg4BdsOQhyoaAOTYp5oP3ES02lRhttf2cbseXqjL1L7xK5Y= ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3072.crt b/apache/certificates/3072.crt deleted file mode 100644 index f07a21093eb4..000000000000 --- a/apache/certificates/3072.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAiA1MA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMThaFw0xOTA2MjEwMjMyMTha -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAN1ukZHclYog25IebkX+Y2hNvZxAO3wLNpT7qmwuiPmOk6F1JS0YRG9Q -WUpBngQkOt8tlPGnw1IFccWNMr1D+spFyKLMWZ9DNDIqFU++YZ5aIbLhL07FbuiX -4Dr5SF2Iie9FtUzSZpO/0/p1gcHakQlSHbQwgkoe5dNIo/UOo5QHk0eN4DbjdrzM -/nlKidnG4H1zKgpjpL7Ttr3qoO/2cL6FiHLz8abGXOtUb0ScvHEdgFkIvPxV/fGu -VZMz083pIvu1IJ9jvUs9nxCN/4XSQGWq5jtmMVdyOlpm5+XHvKSSsTtAD2k+7V6E -CnMZDLHe4ICi8wxojUxCPLjS7tNlLO0CAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -W+LUGDKA77YvlKc5uAklsFilb4obTiFnp/qHjnnHpTclk2DoxHWdjAn87SCmcX8k -9LNbe9Ah/Ue9wvGQO3hCS6xZoSFToc2n987OJX0fa+0mlKW5ZR9mwTOi2/tIjvdY -5o1hcp2Uj7YosWtUADKjemODNyS/rGTMePit0YOQJiCStgNYSWSEKX/plTUI3ulr -kr8BCfNngLVVFNmtIsYSPHTAdM0DznfM+FdORf+cFx4wDMMDBxH4/WdEebj3on07 -7JeyWOeMfmgU9rd3jwzN+Zm9YhxMQor63gEgkuVuTYXL8zJjhNHCi69ogM2Mv0lK -UuAOH+6xLfX0SVXxLgJbQw== ------END CERTIFICATE----- diff --git a/apache/certificates/3072.key b/apache/certificates/3072.key deleted file mode 100644 index 07316b687ae0..000000000000 --- a/apache/certificates/3072.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEogIBAAKCAQEA3W6RkdyViiDbkh5uRf5jaE29nEA7fAs2lPuqbC6I+Y6ToXUl -LRhEb1BZSkGeBCQ63y2U8afDUgVxxY0yvUP6ykXIosxZn0M0MioVT75hnlohsuEv -TsVu6JfgOvlIXYiJ70W1TNJmk7/T+nWBwdqRCVIdtDCCSh7l00ij9Q6jlAeTR43g -NuN2vMz+eUqJ2cbgfXMqCmOkvtO2veqg7/ZwvoWIcvPxpsZc61RvRJy8cR2AWQi8 -/FX98a5VkzPTzeki+7Ugn2O9Sz2fEI3/hdJAZarmO2YxV3I6Wmbn5ce8pJKxO0AP -aT7tXoQKcxkMsd7ggKLzDGiNTEI8uNLu02Us7QIDAQABAoIBAHb2NRzA/lH0LyKE -WMgf0DY0Nd7hH1QYDh3iSv/NzGcOcz/12KAufm2zJBVhxUwCTuKh8XgWojfJlwME -RbMq92x+KzlTQf7vMvaUZ1itNnLFh387vZe7OEebeKsWTAt8FGbI84svKk7Ma00O -nkSQcQUp6a1ptkWt7dkiGHvKfpVCsDoUD9yyDoR6OkhC9NPCwVhBAN1bBnHQstJT -HWzr8ZHKTLAmQ2Z/ZZnK0hVBJ64YEt3DbOSZtsZjSdovUBpOQEQlitcLxnfsCRSX -M1Hqs6mugomEAvKX5NrwCEMOyhtfiiXH98B+ewu/plOU+ddDOyIEkSS9YVfqP8PU -qhrsZF0CgYEA/lo3v+Pl8g93Bm6VU5aRhhpXmmVY/PTESuy7wNlf3ymUexqOZHT6 -ho5zEF3NnrdcPVDX3QaP1BSTP9jSqJsgubMRW/itfMwVsTkXicxXoQv88CGy54fH -5MRTsNtaiXuKQSjweAxi/OSdytWvZhJjwNzC5M2QiFm0nGSHqg0dUmsCgYEA3t3C -l/BiJUHyav2eWgmJ9qF5gdPSvJPvUqrBzLJR+MO+wYzt1wgsB7znVW8zl7x53LmM -DdTvNk2sRJBD94M168GvwCsHrLYTkhQobBq0c2NKVZTMpywJHxILT2Pk67cuVkeI -ZuYnO4gb4LxTg+j9KQKup/xa7kKdn+C+BJj6xAcCgYAfEF2mreqzeXgL7Q2Hu+fh -/O2eCaqomiwvCmKT1viChM2Bi2jAlBjUvikHYq1uKO62/lyeveJrAGhLb+uqc+e3 -RktkdCacC0DK+DILvk0lehVWLodvB4I+Skv+WYvhJploA9v6jWi5giJTV22oha5x -K4UR9JkmTe5k+1ImTpu6KQKBgBguibnAvHV8dVhEkpUEafLXzH5YxInvp00Z+BNE -2f4bByyrJPdrDJP+XD955Gg3bCWWAGtTymzi+qkp2iYWF5iwGGjKgner/e2gwE4S -i7flcyBcF+Sfs5GqfI2tsh4dbyqvck5v9JvSBexZotoyQp3bi6XwjNFDayT41sVa -8AKrAoGARyzQSsSf6FW5+eCk12DUD6gSCak5+A/o7B2qx96tt+6SfkvKCfJ8MwCt -6jR6Rl9hvq/ZJUruVK8opW52aw2hbdTyx+WD7i7k1jx9vMLr7RugNszGqKNstXRx -Z7/oLWw3DllN4fPT/cR3fJ9FpSgPo2FYu2c3LU5g+HoKcpeTW+w= ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3073.crt b/apache/certificates/3073.crt deleted file mode 100644 index f2f2462a2930..000000000000 --- a/apache/certificates/3073.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAgkzMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMTlaFw0xOTA2MjEwMjMyMTla -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAMr4Z5OY77+GsqCDAuS9L+YlbTnGjmbjPDyi3bjxG7EOU6IsbOlXUUXJ -mKZTLxBef4BSqMkdcAiHddwt5xbi9ikHo2jaIbZDar+8JYCRpkByqEABkJ7SGiUe -FX9Mn0UraXKlaNke26y9a9UeToaQ0hPQ/9RpdOAeVbQAw8o8x7HHplTR7j6MX/1H -wtN5VI2YQEjbhREgEN8WxsulOTvHj41S2uGRsiGkNw1Mu7GOv/b0Eim2PqcIpTaI -ibjVUHYxLdfqOUaldzCKY0vkudrSfE/hIcoPY6idOEiV+OhZKPj9UHYmkQNrAHpq -K9WgR5aarMPujHYhQDOYFn2emYXwe5sCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -bs3EHaWRbqNWFJtzthrWvo31LHDXnkd3wNm307hyD9+X/zzebdkS88Z9ZlgepxVg -bYLD4qvACk2ly4lJHh77knHKCt08qjDYCH5ibyQn2ihnOT/pK6OAPHhonOSii28T -urZJbKbHHZcOzBnUpdBfxD2KLtbjGkcaz8cF04Q0GLVX/QozbgRd9cSN+8o+qlGn -azksC262nuQogtej4SQYNsnaQv5b+dnA/mDlMWQTsTaDqXziLm57MJetK06T945g -eU8Dve7lYv09Y8+stW492T4HNpO1U/sunBI4A3eQb6dQTKansUl4KJeNOZc0AnTu -RG7dSbNC8SArebZrFP9CuA== ------END CERTIFICATE----- diff --git a/apache/certificates/3073.key b/apache/certificates/3073.key deleted file mode 100644 index 34d95259bd50..000000000000 --- a/apache/certificates/3073.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEogIBAAKCAQEAyvhnk5jvv4ayoIMC5L0v5iVtOcaOZuM8PKLduPEbsQ5Toixs -6VdRRcmYplMvEF5/gFKoyR1wCId13C3nFuL2KQejaNohtkNqv7wlgJGmQHKoQAGQ -ntIaJR4Vf0yfRStpcqVo2R7brL1r1R5OhpDSE9D/1Gl04B5VtADDyjzHscemVNHu -Poxf/UfC03lUjZhASNuFESAQ3xbGy6U5O8ePjVLa4ZGyIaQ3DUy7sY6/9vQSKbY+ -pwilNoiJuNVQdjEt1+o5RqV3MIpjS+S52tJ8T+Ehyg9jqJ04SJX46Fko+P1QdiaR -A2sAemor1aBHlpqsw+6MdiFAM5gWfZ6ZhfB7mwIDAQABAoIBAFgYWvRgE+cgMpWi -Z3Yaexi8M904xgP4KuPymKO12pwNqNUhzR+2K2tL5bqDLlE/gr2SovmvkjnReaFY -Nw3i8o66Zv2Sd8FhH4sawXg9P1iHq2kkhL26WWi01wXKnvJptjnxe0GJuDUQfiYh -Ilobr2K0euWZ5AWGhRI8pr43hUEuratWDMtUIUfc2m50REgjuYwT54FOoXkh/XCr -Ja/XvecgrLvYI1il0FtbdKIbz9H0HAYBIfdUfyUCTRpTXfFPl9j3i8Ai8f8KtdTJ -YdCj9jcLtc5QaUWp0SZFaCkx3L6BcHYKDSafpwkI1rHnH9wiZuq3Ys3RkHkfUwQU -tyXCWMECgYEA5jNoyF0YH0E3doIVco2uVY7DrVD/jsEgO670t9/GlW0fzxV31eDn -/Q+KsrDbSzrUSyrSzypuwLGrekIo3uy1hnKeaFOh1MZMqmrhEod5q+E5U5FeIfGM -7v/ikPvif1cm7rOxE3cppqRBj53a67fBvnCYuMfGCEup1V4g6IBqznsCgYEA4be8 -wVJ+GilUTqDMX4aKw7uC09MdilFpL9/6+cSkEvwGHsXyQBucCwmhYkaidwgsW/pM -DwgMm/Ca+5F9JaKrMIVeNJSHHJZ1uq723lLDkkeGYayim9Rkq5jm+Jcna3L29idF -NrH3YBy8hAmjs6Adwtr1uyebjjVG6RCpZIA0DWECgYBSmOGg+t474K+g4v4FE1cZ -Ndd6KZT4yMzi/VyrWSys0vHV4PMVl9RFlb0DbrfQn3Qq4Fuxn50LoPRRMsntauub -KSczccagTOKXRzAo8Nk0VeS22nL3JO+XldLaiLZ1UHUUsv73aAtW0pr/h/lUGKP4 -y/fQXUXuFhADEfom0mUAXwKBgBAfOIsyYjFqLExlbdOQ3451cTXCCYUcpX+25s06 -P2HfwGwoRVJQ5odfS7iiRO5tlgWHzjDwqT3mJJu9W4v5n3KaxAzLYw8mrAgGgTmF -/dQP6chGNWMd+4bKKA0vdrBVCNCyI15xvbKOuuRPb/Lfh+CoFQ8mGBVDNupkt0Sn -Z5BhAoGAHqqV5/I7uYzpxPGrRr7ZO1R998fgbMyQdtLfFRamfL2NBXBR+TZA+CI1 -c+TG1N5DmAFJ5M0lrWOtpu+JPsV+QAZLsTkvoS2efT8HxqhlBN+UdYuoGhFQ/yFS -8iPCXgdpIiqA3/xIOmQ7e+FMSCii4yBaPJ+yWra2Lgg385iruQI= ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3074.crt b/apache/certificates/3074.crt deleted file mode 100644 index aaa11807f7ac..000000000000 --- a/apache/certificates/3074.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAh0cMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMjBaFw0xOTA2MjEwMjMyMjBa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBANV3BHVQqJjibUph9skC694N+/q/9/r+U7e6dL/Ff62FNk/OeM4arNPP -2gy7aJe7f+TaNtlNPvCqYmaKhjDF1uL3RSF1vEabg8BzKanasmhbT+YdOt94oPXU -/gnZxT+aMBNxYSUdP9Nh4J2L6M7NCY0hVB51L5WwBRxgd/mTM7NydgrhbAwu3yN1 -583Ty6jUVs9QSQnruvNWnO+udHPO14TwwyxEQ23ahDzl/KwpBVZ1SIbLq1FWgUug -54evMSd5U0Don2dec1a/siW0+8IWpkfbgb3bmUaymKIqsgr7Lx4DlF5p4ecySge8 -gU3EgK4fW6UttTxoSAcxwOuesNWpC/ECAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -ILuIQYnfq8DpQMsZmJh2dfwKmbAHtMpx6friKoDcoeWZ2J/ZM7wUCM0flEj76pkM -BeSSM+J0Vq4GKAiE0atZd282eSva5HsatMXWm0tDCPiBmobRMDU8SmBLdYiURrqr -uqYZ4B3dIBbcZq5o57dh1oKDVJQOkdDv3dmMCldMRW7MllbcUURkqBxpRZp1c3f6 -qFRhcLILS/Mo8o7+mS1YOvsnuQG+1mYAl3IzuzHkolGB16c0KcxutzBvxH5d732G -7XaS178hx6c8h1FjOdEIOH2rfE22RysNakHG77qhlMArGXWPgzMvFpb7HqEtA1cK -7TTlOy4LrBBFHbpWfIXyUA== ------END CERTIFICATE----- diff --git a/apache/certificates/3074.key b/apache/certificates/3074.key deleted file mode 100644 index 85be0dad2cbb..000000000000 --- a/apache/certificates/3074.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpgIBAAKCAQEA1XcEdVComOJtSmH2yQLr3g37+r/3+v5Tt7p0v8V/rYU2T854 -zhqs08/aDLtol7t/5No22U0+8KpiZoqGMMXW4vdFIXW8RpuDwHMpqdqyaFtP5h06 -33ig9dT+CdnFP5owE3FhJR0/02HgnYvozs0JjSFUHnUvlbAFHGB3+ZMzs3J2CuFs -DC7fI3XnzdPLqNRWz1BJCeu681ac7650c87XhPDDLERDbdqEPOX8rCkFVnVIhsur -UVaBS6Dnh68xJ3lTQOifZ15zVr+yJbT7whamR9uBvduZRrKYoiqyCvsvHgOUXmnh -5zJKB7yBTcSArh9bpS21PGhIBzHA656w1akL8QIDAQABAoIBAQDLpqx+L+FpWjvi -Ruvmgf787mKDqzmuH41HL3/KpWVV6k0Sfm0KVLClsxrYIsN6Xst5TiYd0nBFsogG -RAoZ5eVIy5cMgQKKajucE0KgZaDnppXnd+N+59rILdffFf/02ekb44NGoU0PIcXl -CGGnSj3egvl5xVsMd82ocPCFDka43q7jGLiiptRJZ7lSyx6lXYf2jxYtL4Uty7Dm -kAYeTYx8+7IKB+GzU7EBvHg8OiDWWxLpvhILDvW93eGYJliASl4/iyAqQpFlEi0H -c2HIAW223csplhQLasciwr9GNp169r+W3S21o0yGiJ3Oe0gTI646jTJd3qAynray -ZqNFMDxBAoGBAP33Xc6zOJmxTAeqPFT8hdyKUiIXniMZtH9XukwOqmwVi+6Aw7Ip -kSPoRPDRh/wv+JxFgukwXRPjaNb/epkK208EBNp2a+GfzDmWY/+JCIpP6FldxVQK -3lPZwcfqdInSvRB/fIGgKSYBWRMzotkIbrp+I7Rp7acDxtx9KIYeptH9AoGBANcs -n2zSqr3amqyOKNvm1vr7R9UbIDNqp4JbPN8+IcV8XUB6MouN3bEEiTmcSSo7OLdw -Cd5oktWIgEJ9/Gp9M4SuL2LqOLMxMjBgaK3CgAaLmM9ZQJ3UvH6CCyCgzgmRfFrF -xJfeR5zijJ5e8jbtCELS+YHRHZhYLTmO6q/7JFoFAoGBAKJieGihz5717lc4UjtE -+5J4HuwNjd+DoBWMUmIvPmi9nitxya8xRMxgxzPzxa9KPPwutfXEJr+AuJg/4nPY -rUFooHHPJkutkTeBIY9SX1OQpE//1RxXlrCmm3DoSHuXc6wI1+NKNQVH91x/t7Bt -4976qHnDAWG42H5CyJZ5ItFBAoGBAJfN53vC9KqUu2LZuIHLzgerl/YE+SbNK/iP -ndZx4ymMn82JaHeEUs88QAPg+s1Mkqr35D6A0HbNoo9Givol8l689Ll4PSBOqPXw -TmmoOuJjQh+m/Ctdls45uNgAGtwtQ+pWdGggba2FN2fT3FZby+Q5K8YmXhbIvr9I -0NHvAKpxAoGBAMCCKDS1Ks5Otwc+xF+EI8E123MfdNCyIPwtR6eVxscBS0djRf3Y -nHoZ8i7HBce/CkL6xEJMYauk9YNKPLFiWzMEcjUO5IH17W+g9esZWV1EOaWFh7Ei -pFTqv/C8jXymM5wi2O3fotuX/bLiQOQebssQZoH32gDEtFL3qNUleJat ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3075.crt b/apache/certificates/3075.crt deleted file mode 100644 index 780c43462839..000000000000 --- a/apache/certificates/3075.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAlIPMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMjBaFw0xOTA2MjEwMjMyMjBa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAN1gsDoDF+FtkSyyfnLFNPiM0Y6Xp8XGog+bctrnSyT3EfUrz788GjiV -zr5D17jhj6RvCcJ8qAGyXIvMRpXGWoqs9YBboL/L3Gg+A/eyKbCLtbSakaBYTEs7 -wGeZ09xQRWRYo+bPPqeor3quBu5lr43v24TvEL/9zuMCvCq+kvqPaATK1vlRsBO0 -nJPGw2TtrN4pZK+CFjLCDxPhYm+gTCAMvq41J/fF0NzKwKk8Jnne74pWzOPT63tD -rpMrB6DtKpPWtePVNmANpSK+nYr/S41VuigimgAgvwOrG0DxC9MytraFPfFvVG6e -lK8tHKBZ5krFwoJZFkgbZlwJ1WG0qd8CAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -Lv80F1ELCV+c7REC+UtlaMcE/ZernMfGQkHnoGyPDex61rnRD3JACr93Kos4xNoK -6EAtTm8LtrC32GfBa9NL90d2AuNsk8qkyyNKYRz7x5w+21glVqHYxtWI3aXzS8Jx -PLnf2QlxDDWt8aQeSyUnBMGUuQVHlwy9ndAkdt+xCadTrfxfHOc3YfIJ935ckg02 -z6F8AnecfXqUDiOAMECJhLFUUo+9la4j+1N6HAr1yZC0KmWPqs15mXd7rRV9NTUm -SIf+pi7YNnCAoifsvDJR8xND/g7/tMYPDOp1xLvx4NfriOJ+iNwcDNXNpKZ9aqkO -bpF9WojXVJhCeJIaBn54tQ== ------END CERTIFICATE----- diff --git a/apache/certificates/3075.key b/apache/certificates/3075.key deleted file mode 100644 index 953a1d0b76eb..000000000000 --- a/apache/certificates/3075.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpQIBAAKCAQEA3WCwOgMX4W2RLLJ+csU0+IzRjpenxcaiD5ty2udLJPcR9SvP -vzwaOJXOvkPXuOGPpG8JwnyoAbJci8xGlcZaiqz1gFugv8vcaD4D97IpsIu1tJqR -oFhMSzvAZ5nT3FBFZFij5s8+p6iveq4G7mWvje/bhO8Qv/3O4wK8Kr6S+o9oBMrW -+VGwE7Sck8bDZO2s3ilkr4IWMsIPE+Fib6BMIAy+rjUn98XQ3MrAqTwmed7vilbM -49Pre0OukysHoO0qk9a149U2YA2lIr6div9LjVW6KCKaACC/A6sbQPEL0zK2toU9 -8W9Ubp6Ury0coFnmSsXCglkWSBtmXAnVYbSp3wIDAQABAoIBAQCrfwXGSzMqzciT -ScuveZqpmd2Vi2LLUi+ly5TUhC2wez6MId6UlSjzAQriVog9j2/JwMNcyVkVx2ju -W9eqm7j0iTy+rT0AmBstHi3Qq1Kkk/a17LA3+W9RMP7Cw2Ze3EiFji2a1p4BICqg -7UQtVtUDLfdvKgxdz2+AaVQAARa3xwM+BU/z/je1nB7RYXWttVeoHWEzHpYFT7DQ -vfeXRxEuT5dLyUPbg+quhy5o0I/dPLTHo770498gPooajYf2kyHr5xCxBjtJFzHp -4n8RtRmz068uULOuZsdeeBRHol/qY7xcYAH2Dl9Q56hrmEeqfFpbHjvapz2ptNjG -VfD/TzpRAoGBAPsQ/WeZmD2jjktwVySIgirP0meaqyW8GKfhi3Ax06vCmR+ZXv5J -7jvwsqMQBmMsJ0BBMnp39NMDvb1+0zIC0TH69LFTMfdAEp6c7UIIYsES4vBryX+2 -4rqYqzsql/6tuiaVqU2NiKffegvQ5D1QS7R7tjBaChd+76MIhqTYabODAoGBAOG6 -WOBTdea3Kr3x2SGiKmT0TlRNKekSa9sG+kjnKyC3UpNqomPIfK1irkrMUHlNl/ff -pKq4QkS1NoXiO+1v5978p+glV4oJlxIs2TqSkx/y8YRvB39RsN992cBcvu3hRRjV -/6McY4ks9AVETEO2S0NjnZGRbQk1aEyK7zChfrV1AoGBAK6TF8Dr2iIyEgV+rfln -OiuOql0D/TGV4wcJG63915M9EsAYIydqPM9NBMnBoM9gqkJRk0n5EzGPDmYvQ6co -slGwkGik0r97u/ayY39g2VorScWnDUtS3cCl25qeeWXLYv7lXf3hBj7Ec9a3f5zq -slljFEH2ucGwr+yLRyRknssFAoGBAMZ67o9Bk9gskv6127DBQPnH/+AMgZ+ZPRE4 -T3cvHTMFPyy0hNmsfkSPEqZehRxEaC3ijo42ur5jgO+0f/FFhuMB0jpEK3cK+7VV -jiT8oTVkj41de4AuOpIpvQByDMhqXjF6ae/olHUX+/FtnomjjwZQX0qSTwfb2DwF -plBikGHJAoGAFcnWSKGKH7Ur4tMEnGDeEq/ymlVrC6q75dGTK3Ajr6N/dyoPRADk -qjJbsAG4H3pmyWfOAqJ/Txio7JnctE0U6y+YEm+nWYW2YJlkfbgSKboPvYOivwkd -vOuEpXqNO9MzTH0Nm45AC0nO1N/trsQSa+eNAfV8Am/35d8lN0If+wc= ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3076.crt b/apache/certificates/3076.crt deleted file mode 100644 index bc1656bb9347..000000000000 --- a/apache/certificates/3076.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAgenMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMjJaFw0xOTA2MjEwMjMyMjJa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAJ60MnzSVz4yBJKgIWZnHF57sPsSnqENCXcmMU1/ujD3l+FTT931Arg5 -3akju0Fkh6zkLJDJ1Mxc51aJ+uCVE2nmWBaQwBR/jZsYdaESnJG8qavzp150Sv7O -R/9Anm4JFXGQ5BjpGaRNc5CA6qS4BYJJERV5dq8P/IIme4FnekeOgxJrP5OGMxX4 -RegEHh9LS5GUtDYLY58JdTgIqmGPaToUH2cWNdmGr7qWRw/xJRH3x63hCEHygyYP -57ui7SZTWd/AdgnMxVE3DYY3gAb41i+u8nMKT/a4ZZFNqPAmNfJUZlQI6nB/GIAa -58SBd+qFNC4SGJd6y5aTio/2DS4AiicCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -idBYqdY1tiOovo+nXjDkFxxYqG7GrigLGtJcnQGN0ULgTDAhixwz+hN2rLOmEGE4 -YwM4zkJRUZglj6OLxm9ALuVLZI84l0SIdYkwErIspuodVLfce/rb1lB124fUX92B -oJmQ5hFUBLGMOZ40aEdFrujf4dzv7pgYMAMRcZV4+gPVcYkgKZJUEa602EdL1yUf -9bb7Go8CInqvIyKgLbxCYbf6q2NzYrttB3i55nGdgmSTt1rzoCCsoO66n8sWnmj3 -NvogxZRJ4IhH35CV4GWqeVyxjvZWj8brjRuHprVEz8DRwEqci7ju7srHaOcz0AAe -dS+T+V1lYu9IX3pFTM1ISA== ------END CERTIFICATE----- diff --git a/apache/certificates/3076.key b/apache/certificates/3076.key deleted file mode 100644 index 2db7f34f6375..000000000000 --- a/apache/certificates/3076.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEowIBAAKCAQEAnrQyfNJXPjIEkqAhZmccXnuw+xKeoQ0JdyYxTX+6MPeX4VNP -3fUCuDndqSO7QWSHrOQskMnUzFznVon64JUTaeZYFpDAFH+Nmxh1oRKckbypq/On -XnRK/s5H/0CebgkVcZDkGOkZpE1zkIDqpLgFgkkRFXl2rw/8giZ7gWd6R46DEms/ -k4YzFfhF6AQeH0tLkZS0Ngtjnwl1OAiqYY9pOhQfZxY12YavupZHD/ElEffHreEI -QfKDJg/nu6LtJlNZ38B2CczFUTcNhjeABvjWL67ycwpP9rhlkU2o8CY18lRmVAjq -cH8YgBrnxIF36oU0LhIYl3rLlpOKj/YNLgCKJwIDAQABAoIBAAntFVdPRJukPzr4 -fv5Lpq+WJuydLoS+LwBfyCejvH6BjeNO9ajZQTFKlT2V+YlOg1nh75OivAeILAPy -n1lamZs/B/VpWkot7CpuLjVD170Zwrb5h1dWCLbFKiWh4gbZ1JiEym9wbOUk3vyD -w6lHxThv33yrWyv54P427/SZB0HgY8T9l9CStkqUcTBev6tXrWou3xCH93uR6sGk -/rCcexIC9O/q4FCghXLemKWKATF3xM7hWDV6v4IUxcsXIt0lIoHOHxw/NHMgb+0+ -bI5HWEJOpGyHtEhT7hx0ydL7gQrFG7Ras0yohlUPtognKUD0qce6TPFWPNfnd0wP -YdHnHKECgYEAzCVaKcUIAL3CSnpm8OMQfpboJno9jRC22MFUyyY+Fwoy5TTiT7xf -LD9MnvhyixsvK8zLku19msVKU1H5Vj3adA9iYZ4BBXFwtP0iRpJgVQYC+9Sbj1jd -wwJ1is3W7jSxUBq7FNhRoBwglUT4a/brsxLZY5nP7I6EGVxfz8pKp/cCgYEAxwP2 -/dBVbCizJ6hTKntJbh6xOOVFj+L8V2qqG7ZHiR20M3V6RTNF/I5VXaNJ+B2R8baa -+t47w0p1RXqniAbDPXDl7E1sZps1Au48pUUi/pe46H5SuN7LDnRurWscYOSJY3Ns -dWR5+jJC62UC7pc8JtXkahGEQ2L5chr/+3uCg1ECgYAbTxfbpJboenoGOo+Qw99N -/+P4WbvoJgc/wcUVE/2UWXHrhYKMxhc5NRKL5ZJ1F2LdCh1lf02hKalCsiGXrtiN -VA2GH3vlfYJlQ8OVCznFxfMaOxvANlQcJTUSJ20MGpJps9m49SMeNwUI0twknTh0 -kR3xm/7bl0kGl3vdsSMBiwKBgDyEpyINrTxDsB8aH5gmf3DeInQzvBCCLMwEYpAk -wOIgR0Dys2jBq8GeIrVjx0WM8Gl5Zu1skO3VAY5MOw+xRsOzRieyb4lQHzGx8n0r -ZfXXe2Ivr8YJ8eOGYnWXwbxxIpo8ajnUgQclK5ZbVCXrlV4V4uyiQP8g5MvfDAKU -T17RAoGBAMI7b5CwsZjsyysvqT18RqGlJaW5PGUa22La2QgKksUrSJC6ueJyBUaN -gQg2ePRlz7uwMvsfsWJ4zrBasflazJo054NHlZusXiM7nvdFLd0e0+/G3k8bLT7t -241vQcHTp+hA7SNAlJQqWMGCx60v1XnnlgBNPnfzHHJ4IW2ppq4Q ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3077.crt b/apache/certificates/3077.crt deleted file mode 100644 index 2afafeb17f32..000000000000 --- a/apache/certificates/3077.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAhhUMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMjJaFw0xOTA2MjEwMjMyMjJa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBANjy9LOvXQSvsFnc/qzoXerP7VKQJcWtvFlyxq54HbxMDBlHzQQ8Ur2X -4xqxe3jDNWZIBF5BZ73rPxBObxvD0FV6lQhjsjzG49fTsgmTbVBaGlBwKKUV1dKU -bp3z4FwBG3xgiibbJFlEipklgpEUP0MuKt8bAGPBZhWMgGYNlcE5qIQ0DTAPZd7D -ZXyrVUaOoS16O+Fa6kshF9nnMG/mdPLbc69IhwlnSzSCrwVc4cfsZDXVcJnXsUh7 -MV9NDMOMPtCFKQmqdupeyv8fjiWf0K/SBIeSvPStdqIBoMDGXQcy/XsQ132ap4GD -PSSEZFka31f58YilcKI00uLbukDXWm0CAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -EvMX7uXpNT4/2YnGB7TyfExwi4XSSUmhWGudvMs9yhHgmVzFYrNDkIszd06y2QXY -1vJzmsh1nA477KRbzFq/QGtrSJ+GOFfhDDJYnDLUCDGdYZtb5odhyP3MTexwzdHx -EGAa7iYyGBwd/F2TwbTF1bq6qz3MrFvuLHUYhb+qYRfKrsU8814/jPS+u4ZQMeiO -vLjE5JIEyQCD9CXb79CMb9GgX2Djd0GrSiUzSB5V0DJLRBKZWZp0ARKJgHpmbWyo -aChCXYPkCiGsdF5V9CdokfQieqATZbxm2yPdZzgyrVi0g3F4IT9PHw92jUOUqVKm -+x6K5tvcfR/RocqKvw6u6g== ------END CERTIFICATE----- diff --git a/apache/certificates/3077.key b/apache/certificates/3077.key deleted file mode 100644 index 32baaba1bcff..000000000000 --- a/apache/certificates/3077.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEogIBAAKCAQEA2PL0s69dBK+wWdz+rOhd6s/tUpAlxa28WXLGrngdvEwMGUfN -BDxSvZfjGrF7eMM1ZkgEXkFnves/EE5vG8PQVXqVCGOyPMbj19OyCZNtUFoaUHAo -pRXV0pRunfPgXAEbfGCKJtskWUSKmSWCkRQ/Qy4q3xsAY8FmFYyAZg2VwTmohDQN -MA9l3sNlfKtVRo6hLXo74VrqSyEX2ecwb+Z08ttzr0iHCWdLNIKvBVzhx+xkNdVw -mdexSHsxX00Mw4w+0IUpCap26l7K/x+OJZ/Qr9IEh5K89K12ogGgwMZdBzL9exDX -fZqngYM9JIRkWRrfV/nxiKVwojTS4tu6QNdabQIDAQABAoIBAGUxhjReAsxRyrdP -3rb2OABz9iXBuOyo6ibq44Oz4WLYMfiExjtIi+uFclgcGxSsMTdBNlBkv6gVl7fa -bfcMchu87tEX96ZjuxkL1Iqk6qNFM+r7Neoy8iakN6iTfb5Mge6U9TvEkgLVdrSS -i4FyaUPDwBmK9baSGjTI8YcopQaYKxK//EhCfsYPu66E8/udUAxvQgb3QJTc6GQd -lHN3ac3UkbzmBm/9IRcBsBpslEpisDbCG8DqgIZVwcr22a/Ou+DRJV/nT25m1hNB -01a+mDicVotTmNwWJAXgfe8j+vggQuGgk89VxI8TiN6WvAuU3IIy9UcrtZlpDmb4 -mwh00QECgYEA+3gpXGP3yEbKHNxuoVHi3pF7RCOnGRILMZwyS0nKSqG3+LoyXZxc -v55pWEeJIcNbHeZ+V83hZjBLRqcIZMQ0lRdHdQ70fXYopcsCJZU4VXI3ee7MAL3s -BRyRbBwUI79CXRTSHytrnohbDtC6J+di7BT6ZTsYOxKUpfDQ33ujEq0CgYEA3NuT -+1pzwomKTphGqhX5TW99x2Snb2hsJ5H/BXt/XgkqQCGIMczh78k6JjGQuzpZQtBj -djKBctujH661HsrjshF/6QO9vj+ox6Jw+x8SnVK4L5GdbBkEjkVPesyxiT+J1F00 -f9xkP1vKfvS3tvxPE154lsuLx3O/93uCe/ZOHsECgYB9IGNkR5Hpo9+50K1zs+0x -Vi6Bz0O8I9BSFSipccQosqN6LhwVnFJCPq6ocJ/5nt1d2W0Qf68iS/GI7GAu07pe -XUD/LDvXmc3MAWHGFaP8UGLuVzZHQDmKqZZqtuYGi4qYCl4riE16itrUWmPmqyn7 -0sxtRqRd8HbqwxMLwNd52QKBgB3pb0VfnsX+MskqPofSqg0eyH4016hzEBLb5xoq -+7kUrLA62mNESGVdb460r9FruaMe7hmYBYg0zwb/dnBRMj1vuU8pvo0Bui4vhfW8 -45yDE4b9xcBaMw/Bu136UyEvhc9JQE8A3mLmX6qKIkeaLGuHI/XoY2oD9z/hbm6z -kSkBAoGAaocyQ3Uya2Ha0MFcAfJq2vW/CwMGRVy9XOZBSTJKHcjNBSck0U2/GzB8 -CBBxIaSZDSyORx2rhk2ZGFtPUn457n0+tGx486YSl2DTYxOL8mgjwFiA3yLQflih -q7jLd8GxI5qFh6/ZmtWarn7tdAjZQ5duR0slrrotxtCWMZrAwUw= ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3078.crt b/apache/certificates/3078.crt deleted file mode 100644 index 4e7c4bdb704d..000000000000 --- a/apache/certificates/3078.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAjmbMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMjNaFw0xOTA2MjEwMjMyMjNa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAK4KPe3u5FI+W0FxWFpeaZiTBgnJDq0yybXxmeaRIhkJhdU8z5M+6OaB -aPkMkZ2h5yJmSb8vnGJIRxvuu7TSB6v3Crd+0/n96ljKHIC+bLFUwniuySC0z2pT -kVqXD0G/JNKiapw7YHCdCYAJC887A60QBZZ6QGYqrPc6bCDMvOyI5YJRdHi2WFz9 -I3ZXjFDAu0zLjRK4tUH3yyOqkTdrMOptIORpRQeU+2MhLTnELewvQ68VE6DPpM+D -bUxoptPLjoIzavhy1Fh/RusDnl+vq2jcoyDR1Qq6Jl7aRPP2p1kzBNyPTUyJQsXi -3YxagJEuFDghZWM0Q3rCLUoEFJGac8UCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -Sx917G9rQie//PICTLZmjyw5UBNUno756a6Yb+WPPZYUO6IDMV+e44cGzzvdvB+b -aMP0pb6tCn7ZrsTDPRKmPpfZu25IMWp2/eqORrEkeg3ygE9gEC3hjFJbOcYBCtw2 -eC7O4iW4ZRwGXJyDZI9SmNxeqFLyrSQXyscc+wPMMXtYqFjvIUFpkQW9YwSdTaDU -MmnGBaDl5Hta41xHRozptSoLbpRWLtUkV4ama7UmHHPEpDTGu5b+6LLktOTZTO3P -jLn+nRh9GzE+2Py7A40g5zjmLoK9qMskTYqcjHPcYmIDCH1R8hGPaEenMvXMslj+ -RbDuAsYFp4xuQ7Q/kQKSgA== ------END CERTIFICATE----- diff --git a/apache/certificates/3078.key b/apache/certificates/3078.key deleted file mode 100644 index e0e4c7ad62a1..000000000000 --- a/apache/certificates/3078.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEowIBAAKCAQEArgo97e7kUj5bQXFYWl5pmJMGCckOrTLJtfGZ5pEiGQmF1TzP -kz7o5oFo+QyRnaHnImZJvy+cYkhHG+67tNIHq/cKt37T+f3qWMocgL5ssVTCeK7J -ILTPalORWpcPQb8k0qJqnDtgcJ0JgAkLzzsDrRAFlnpAZiqs9zpsIMy87IjlglF0 -eLZYXP0jdleMUMC7TMuNEri1QffLI6qRN2sw6m0g5GlFB5T7YyEtOcQt7C9DrxUT -oM+kz4NtTGim08uOgjNq+HLUWH9G6wOeX6+raNyjINHVCromXtpE8/anWTME3I9N -TIlCxeLdjFqAkS4UOCFlYzRDesItSgQUkZpzxQIDAQABAoIBADhPMAJPjKffbP8b -gQ6cBWZMC2QXHRyElia76KNkybd4EUkQx8hITmpl7GTH4EU0IOhMWAf3i41w/TDY -aPr0CW9mGp2L92Gm+a+IlPhCpEArwE/znTdryMAKEblRrqoDAhL0YbHytB07cdtv -EdcWrPXNfUFWhIeJvzSuPlXOaEHO8Hl8mndAOejG9TpjLMcSEGMbI3LX/HuPw1e2 -hXeIQPm7iW0DbiDJuND62m3my4BuUIz4TtdgexXn6MR95/ZLFJp4ffvyUqjnKVa7 -OfFQjKCATZgRtpQrpa/JAAKpcYGF/QxMERwoQm87NIuyZLTu1WnRjsqXmdzIjTwd -hXT1ynECgYEA1cwcyjgolfU/oTFLuSMU8hXt8FF9dyqw+yz9Wkd/faNDcUVhC4Tr -Pm5VEnm64uaBe11x8BL4xDfSWMMjmxi3a97b2+5qSjF9J5t5FbQWrItv5UiWaygK -29m3J/P4kEFYG4lbrgHwr8FFDNukfpFHaNoqojLzLqknFXZ50bXgMjcCgYEA0GUP -k6cktWcBYmFXRLAG+CQJhyTdwYBDG2c5falLv53wUwmOP1nn3x1qXfbuLxHsW6s1 -wg4EPie2gUlk9jzzEW1WZOwvSYvF+II94pW9PXCPxt70AUK2UcVViI1T8+Z1LQD+ -b1V+XknZN88A21NCis9RyXb5aMuWoDJzTZj+++MCgYEAnZhw3GtbF3cJqVOCIv2G -MhESLKSVHKN+hBgcxVCQ3NbdHwDqUShwk7uWwCC1Lw6FAZ/XHgWOFG2lg0KM24Xz -pvNHE66B8SDbxbdoISR31kaOe+/u2RxSLM8moK/JWOSiAuJUj0bk2VlZAepiLd3/ -Sn4PETMHaSzNH5gOohQ0KC8CgYAopb2vECgB1hCYDuKFvEvvtJ/DI3a5mnn8a1r0 -XsQuoPDSUYfUZYXrqAIqR9LXjYhrrO50ZmV/diGMADPYL7U9jfUPBF6I2uGHgmft -vUVHKaBxquUvJcMIGhR/6QkaBraOS6ZVMvjODVt4HkFNhmTxTFTolfM59JPxtUV2 -OkRp/wKBgGvpVwQfqit464/g7MThoN22lyZ7XKlk135XubMm+Z44ajNOZDjwklwn -osGasnbStj4969BkoGXGNatepEGLmeXRDB9NsnFCfLuoJClmmkzpDwXP42VyCoJH -kg3Iavtt4yFLSJMN9LOV6PsPz98zODPhpvKqNzu/quAXS9AwRpob ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3079.crt b/apache/certificates/3079.crt deleted file mode 100644 index 18daa8980b29..000000000000 --- a/apache/certificates/3079.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAnpCMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMjRaFw0xOTA2MjEwMjMyMjRa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAMWIoKVzDWq2sMWvzybZ1Ta5+d1iZg2xSCN2cKRBxDayK9zAotPvCL5P -pqQ+MnQvzaP50Y3attjRvce9JKXXH1WYzuC1C+XeChKBpUNdX5JON459MC0dRwUQ -yvekAOXmVGvh2Of72V8Xs7rAAatS4blVAUj9+oZrJus7lXOZq/fADP3cS+H5WTl1 -NNjaQ3fuCuGZLvycvio+/BhzIS+y/PWPhV49oic2cD/xvGXBOa8bnIkb6jYUtb3B -ExPC0SnVTYUHoqMzJu6ovptFqbi3tbGPnZTbRSiis521LqPw1uv/DE8tPWTWoqOL -5uxNg8kwSQkRNQGk2Hm3+XX7n6rU8xMCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -dE/XZMUXF22cZefgqsGHLZYM3fppP3/XQ7fansdRFU/dAKPBei9DklGygL9M94K9 -0yGD4nnn2HTMG0BboghlBbbyQN5IPtiKl3rFcAgkkUsipo6Tq6kUwkYIwQ+fePQ4 -Q11/mfeaq2oLOr3xRbTfR07LLHBTuDG1CvkJlaCd2tP5HwW8F/H1V66rgaBbGqHK -Cpfcb6rj8IhSGTvrpPzwkwuRsCcUQJKo29n18RdREMKK+nSSfjXBwUFL5WiI6bvg -Oa6FCyefSwAtmfc8c+eKBvv9kVR6WcXJg6AI6dgi1tSFvyv73hBIucGpPMI9xEsb -dWafH68YlDMCP9Siu7I0uA== ------END CERTIFICATE----- diff --git a/apache/certificates/3079.key b/apache/certificates/3079.key deleted file mode 100644 index 21d024cbd11f..000000000000 --- a/apache/certificates/3079.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEowIBAAKCAQEAxYigpXMNarawxa/PJtnVNrn53WJmDbFII3ZwpEHENrIr3MCi -0+8Ivk+mpD4ydC/No/nRjdq22NG9x70kpdcfVZjO4LUL5d4KEoGlQ11fkk43jn0w -LR1HBRDK96QA5eZUa+HY5/vZXxezusABq1LhuVUBSP36hmsm6zuVc5mr98AM/dxL -4flZOXU02NpDd+4K4Zku/Jy+Kj78GHMhL7L89Y+FXj2iJzZwP/G8ZcE5rxuciRvq -NhS1vcETE8LRKdVNhQeiozMm7qi+m0WpuLe1sY+dlNtFKKKznbUuo/DW6/8MTy09 -ZNaio4vm7E2DyTBJCRE1AaTYebf5dfufqtTzEwIDAQABAoIBACQsy07BbTmXz3PE -qKkyx2tIT8wNUyc6yj1EWYibSrXBl2rMFIW/hthjed8mTNMeVgirnYbfARFgB+Nm -bim45dIlM+3O+ijUqv+Mopldpj0C+gWsQ4BfljwFQUZs0IVJ0zgWmkSRyNMzYgTX -WPbpLNFmEeAuMw0e3nfB57LN98JdJM08zkT8aYyLAqx6T6bazv81yYu1ANibDIZj -c1uz1BAWgAd9b/601Hl/kYgF5SY+wmCrGIEvmg3aRpQg8qQgklzU1XaD1cdzoAn+ -FpKT7DSBPi4gDFK+wEtcysxmuyoOV7FCr6zHagYdmcv83vhllolcR4DP64WeKJFm -8z5EIwECgYEA9oficEY84hfnHs/9ZeYqOIPIz/M1R0XP5L0VHsPMKAVw8VVP3o9O -AoFSMzU/jW5g5ebWYPWtLp4ywu9nu1rc2bvJEPWGnaL0bucuNJlErM/2Z56a1oCq -sbO6/7cU4fZIAFKBrSCdPZr074sP0QEg2ZAmZKBuo+Zwddn23Z2f9sECgYEAzR71 -eXQBbzf7ZYUxwVi4It1Za5bk6hTa0z3Y6sN02be2JSmz4tEunwJohpiQv9ShyXV9 -hesKVTklBSNMplvZYrwqQb+QND9uXEvUNsh0uXCl0sq77A7tEIBJUDeGAdODOIgz -lb0DSQQpP3DMKS1oUWt2StUAiFNswH53PhRjEtMCgYAZlF/aZm9KxlAk0k/oksku -s/3SFdohWw0HHtdiKc61GFtvrvpqjVP6zpBI3+2ILzu+nwT/an5dp+x8bXrF5dek -f+eM6uzczluuZi5VJtIJXEqk1cAbIZ6UcaGlhsmT6Inv/p+V5xxpl/pyIGuzs/pE -mMBjEIJqXy6sC8GhnQlMAQKBgQCtUliXzLcdlE8/5EE7n8zP4PubFsDNLtwMnPj6 -vjexdDNbyZYvtRPQ1oceHDJLdc9TXIy5KPbtNkEay04MUBYrANYwAj9Gdsa5BHYH -6HAA9beYmygZei9EvzGzr4bzahc6IJR+FV1+SB7WdWh97tlz2vr0lnFBwERnjzUQ -5sckcwKBgAvZZ6kRu4rAOeB6v+aGCurl1Cpz64iLIWi0dLoZp3EOaU1YBBDgNna4 -u2wroa/lNFxhOU6tOWC+7VdUZ9DprbUnb7knOq7bZoiNTmZBDSExws2binhkJU5m -dF4/W0TVD7orUtt91tB3Jd+t6gy+AH1NaurPcs4SQhbe5N3KQg9D ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3080.crt b/apache/certificates/3080.crt deleted file mode 100644 index 9e37917b8f6a..000000000000 --- a/apache/certificates/3080.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAg5OMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMjVaFw0xOTA2MjEwMjMyMjVa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBALA0JlkptFTeFBs0IwkSWAlbdll9gb1ZPiEohXoHXZaAqvZOXTSZQPww -J0iIqMqr5ZizTAsvAaAxn2k2Z8eXhfWbWm2/MdEkaTaz6NhirbO3QkiY7LWGxt0M -E6QcXKI+eE4EJAabPstcH4/IQJ4nNPyITsF54Z2mzt2RSWIAh1sMMCeNL0vvM2ur -HJnzJxQXCOeqduGwoI+SIXsDiGLdALJa+/jEGs3zYtUwDHN5lrdrUmi7oC7jc1ps -EAiaHQ5hKEoUvU+L8TCGmz0Y086X3LXK+/82lVo81+f5SjIm7iHdB1Stfzn2R4VX -dfX8kobxxnWkrW+5bmW5XtXWqF+cCMUCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -FaG7hU9c6ELmJi9JQioDr8h2r6Hb0YALi8YJSByXupnRuTWHlkobqp6TriZo3+uF -Em83p3E92Bx6FK7h4HssTIOpKMGJJVKypcIdcf+CYbXePkdULpl9F1mWs08VPy/q -RPeWFi4OySQyRsxb5UT4FCkaj1XXUcZ4EHqV6LMbX6CwbP8HqsJFZN90JNB61NlG -6HtY+4iwmHrWnX3GKQ+3AQN1AGJLipbJ8wcCE3wYfEY6OgkrGbgM2kj+28Dqu/Rr -e45D+OiSHak7xcXmMs2hc27pKLbTEthypowpaiu7iw6mTW+1A/1ECc+sHlIVbEwu -ORfnuLkXI6xhZjlkhtHCwg== ------END CERTIFICATE----- diff --git a/apache/certificates/3080.key b/apache/certificates/3080.key deleted file mode 100644 index 4f060e563d72..000000000000 --- a/apache/certificates/3080.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEowIBAAKCAQEAsDQmWSm0VN4UGzQjCRJYCVt2WX2BvVk+ISiFegddloCq9k5d -NJlA/DAnSIioyqvlmLNMCy8BoDGfaTZnx5eF9Ztabb8x0SRpNrPo2GKts7dCSJjs -tYbG3QwTpBxcoj54TgQkBps+y1wfj8hAnic0/IhOwXnhnabO3ZFJYgCHWwwwJ40v -S+8za6scmfMnFBcI56p24bCgj5IhewOIYt0Aslr7+MQazfNi1TAMc3mWt2tSaLug -LuNzWmwQCJodDmEoShS9T4vxMIabPRjTzpfctcr7/zaVWjzX5/lKMibuId0HVK1/ -OfZHhVd19fyShvHGdaStb7luZble1daoX5wIxQIDAQABAoIBAGeq5v0CemSMHEw9 -Cnfl4QHwW9se6lway2D61D0NZFSN8wfi5xdxKzi0pAgazyQeqoCCzLSvvUcgqudd -6QUW8uujsTpsiMTBpV1X0CCvPf9ETK0lu+65EvsuhcfCIAYctu8/pGp2oCVJWBBi -AxKJgrUpBRzztnfokkDtn70XDovTz3Np2lb1WxFe0FW3/Eaq/H6QFlalyOnyk4Sl -0xS2pfhReS7hxjuOErCu+juKhRnpSRsARNC6Z3Ew/iWfOR5src1i2AO7hI8mrJtS -yebtCca+mv04zv3K8wMAK5xn/AsBEcIyDF4vFQRQ/QDXxii4TZXyv3RkvawPB/ss -vOhO+mkCgYEA4uGVEywrG6LpwDF57FeDT4L1q+45d+k0Pf9m3mr5LF8cnrcfEi3V -pfIBIHbdJuhmgaFaWZcrd6G7UcEOq5lGYxEGmOQrY+Ok3lgBMdgRfFktUH+CBsd0 -ajn2quO+siTxQlL5twtmlN0xfg3zSz69DUBKEflLgEUVjPc4hHYtpfsCgYEAxtGB -oCzjKjXQZPglnQ+gfZbQ8AiXTzaGD2n4DLtQeJ222F/H7Danm+KFhPeZmqf6FGD3 -LiBtlOTW1LrLcQxS3xN45Mi6wJCfG2LYeJalfzx3NAt6a99Ew8rbZJjqp5rxgDpW -Up/AqWfThoVN0QFjOTM6JRNQ4D72u1Itbh6ZkD8CgYA4QzCwvHdENzY4TwypK1qI -0TUTGdRuhApMhZWA+o4oDr4OLeMqouskZ8sXveJBz8f7xYOeS/qfhB/rujBlJXFr -B8HXEF4iO0WbTb+eGLLdX0/5cmVQQQ4BebZN0oRrsPWTOPhsCAu8Rs4LMHJw6nH/ -Yz37DxNGD9u0RWpijtvrGQKBgQDGMxNLT5RCfxU5ots0YOC4coHl2Fqm4A7zDMv4 -PT+yjl86Avn1tGKQl1hNvtuE/tHiQOwJMtCrLxovRewLzaJLuki5opXx4/qJPZfZ -Vyyy099tpcesBA60NOVTutGqtl7sWru1cIaLGvMW1otFwWFeI4Bid4gXlQ04nmql -raGe1wKBgEG6pegDSf8censugocU+CEgOhc7px8JQhY6FmQxAIUtee1xf0cHJLqF -IFlpreV7pZh5/1zsrF2Qn3cZBAiuVY8k486xfq5alGcqLQ/k2WsHQZj/hgwQM+TL -45+ik4IUvT6lJQbBfuh1Xz9bB+JFILhAFYsABYYt0L8Dq/JCNE3s ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3081.crt b/apache/certificates/3081.crt deleted file mode 100644 index f12f68dc8eca..000000000000 --- a/apache/certificates/3081.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAjHkMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMjVaFw0xOTA2MjEwMjMyMjVa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBANhYbScVb7oxlbvKG4xpfziWxzWySd6HRnLgQRTs90Tr0PKFxcbDD3Qf -MrAAsk29fQfwLPP5iIkLavCv38OdqWTcOXv2XJuIJlrK0oFqeqcKLei8FxMTvS2W -+tslGwc887JDjzJtjqlOdVl2KH9ZfQIZ5KIVgYvP1jBKllzN++gzEcYKlMdk78Ui -tYPrjKHujt1lKxGvGvV2crnpW8vMqSbGFrsqezfbvXvSuxS5m+Ml/6rJRvsIDVQw -Z/tmM5OKNXz9jq4uQQZNLEw+RiEhUaXdxYUYx5OKZH0gF7k12hNcAh3q1w7i/LyR -TlgA9OjPOBAMzLpGbyDiWIb1E+rhgGsCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -JK2n2tW/BprlmeZCeeci4yzrUmPxfkLInzbxILYjPo/64tNOs9MEXBJ5W35LWTHf -Cbs/wLa4K8hRdxMY/Qtgza6H00zKfw+J65/YNgkY6cd6MpG4NN/F2Pq5IKgvLcSx -cd56OG4l/+ih620jiPRkQEdoTtbP8kTEngZMEe+Ax8951habtEk6twq1OvYpeh8j -97KkSHJt8wR85l7vVBi+OiVCAQCX1nrXPFwTNRg1SrQds26FwukZzBBJcUlqwIj8 -SO64a3RS9DSGP6glUE4DyDRtIUMWZA6qQsLQYEHL4PoPB5vCMrpGjhMRVfh1AYeS -UZzxREcsZh8eOzbMHFYGOg== ------END CERTIFICATE----- diff --git a/apache/certificates/3081.key b/apache/certificates/3081.key deleted file mode 100644 index f27cdb191189..000000000000 --- a/apache/certificates/3081.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpAIBAAKCAQEA2FhtJxVvujGVu8objGl/OJbHNbJJ3odGcuBBFOz3ROvQ8oXF -xsMPdB8ysACyTb19B/As8/mIiQtq8K/fw52pZNw5e/Zcm4gmWsrSgWp6pwot6LwX -ExO9LZb62yUbBzzzskOPMm2OqU51WXYof1l9AhnkohWBi8/WMEqWXM376DMRxgqU -x2TvxSK1g+uMoe6O3WUrEa8a9XZyuelby8ypJsYWuyp7N9u9e9K7FLmb4yX/qslG -+wgNVDBn+2Yzk4o1fP2Ori5BBk0sTD5GISFRpd3FhRjHk4pkfSAXuTXaE1wCHerX -DuL8vJFOWAD06M84EAzMukZvIOJYhvUT6uGAawIDAQABAoIBAF0YR/f+gHJlreH+ -CTa1mtoV/6j6jFDmcwkxuK+xfIG629HQgJeUDk1Qs3YLBq7vMCM/VYiywu7968mg -VLCPYnoVTeMq0xTWVHLTPhwUXq0Mc07nySIbZ1d71XyBjgziTJdT/QWdITt3mIWj -k6+hKWrDC6A3kuQ/zhI/tk4/EPwMWyxlR3AG+UxJPMaBiWXnW5bimScBprde5sTA -3i4m704NERCqX0kBqOe/XSraVgv49f8EDOlxgOQVPveO/eUGU6eQYDRhu7df63Sf -IDSrAGkNCbsgJnquHe2WPWadOdJiB35jorAbEl3AHHsa2D9o0lFHvG9sM6zaqYuG -mGlFf3kCgYEA8OtDxd/DVxW94yEOlqAQ/BppqwMbmDPre9h6aTii0iQk/frBgma7 -uZwIHqDVPKlqlQoBxjP+guzR02sOfkW9/QV23ePmSPsGZAnE11TY2105m0n/B3FS -Pg75V+6XFAcllaX2+DCnuS3fpB/4ve8KRcID24hE0tRXQzFaUNu3bgUCgYEA5eNe -etVhn3tiBClYEtDdyWOVT/Lhx/klrJnZmhp+HO+UtrJhi/12BJsUd9Ar3BYcdROh -PcCdle+rdXcnAuiwOlaAT6JCFe+XxBHnRkJF5HDqODDcrezkPU8KY/13vqKBFGuU -G/tBS9jRb0sqN3IFWJwHrIMXbrOEf5ZKeGfPD68CgYEA1CwN6tUvHqHKMp6pT2Q2 -sR+90dsR0VBgYhh7bfFwC6vDXF4bT/GUAFn3GKpCQYNel1VRzLF7wug3vn75K6HW -OWA3mCEebUWOEko8LfvOZBrNIgLf9DkL2hWr6JH6QawtoIaiY1/ORpqs68kwcm1z -2Y2NgiiXnClflJCBXtaxy9UCgYEAnvb4sCu5U9S31HTaaDhyBP6Nkzk6k1Nfj9jb -Ncq4Bj5NMYBsH6dm4oxyPN+AVLIdf3/Rcagt0C5o+9Mm8MYChnSmSWrEE/MXmQdg -S58sQWkrLSvsjYBP2206nCX7laE9bOdvBWJapp4JRNJPIQQBWmKak9oaa/xK1QcR -++ycrBUCgYBPVXKDvLnvXMFmrx35DVnv7Ldb4Tkr4a66Xl9IwqBRbuNLv4q87Rg4 -7Tp8vlXEDkK614aq+dtppg8eWvb1xe4K/kShXud9ZyZNU+zOglWPyEIgNI6n/8Oh -QbOlUTVa7fPd2LXF/cLlSr9an5JPkIbuBBDh630AEv/vfUOC9YVVCg== ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3082.crt b/apache/certificates/3082.crt deleted file mode 100644 index e402187ecd72..000000000000 --- a/apache/certificates/3082.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAg+jMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMjVaFw0xOTA2MjEwMjMyMjVa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAL+oZ2E26ungGGMLNuTYZqpeA5yeQ4PxRo0B7nEgRSjtiJjE7SoL56Kf -v3xKOB1Pac0nm2GyfLhBP5jaNStFzo9YINIq84pNCB59cqPaPZh0zw7ES4ZHvVjT -NEODa+5inXTV19hgMSrF+DzZjdseu0fNIm/ynClXPJ/vDknQyYyRSkcEdfTxYCvo -rfM7fASKGuDN6wQSP0jDI2R+dr052n6l6uBSE+7DExXKg32sYi8rmKC4tuFt7KXe -ljd1IJcrmBu0L/K+cUvigIfVgfZZIOMXFNIh+BUlVG2Ct6Cpvv2F53E4MbN7fA0L -atNjvc9FEdEqnZTxNpq9m3uoYN91IJ8CAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -NZm2/3pQZfWviJ7UVaFIkcTNInAPYvAeympkMq089/jEdZ5oc5esZIv4DC3HF2YH -4/9HB1LNkw+XvQ0HuY89aDBsQRD+Ij/bm9Kn88ltQ7gozo8yAGOWG5v+f5ld/Xuh -vnbX8eSRtVPe3q6Ywk8TlNunn611PVUckTMN8a3MiVUdA1c5dRt01ltRJIwrBbqv -J2yWiuOO7RenPH/npTRtiSLjR1Fciqori0h/AmkaxiJitCHZtcpETYRySqv30TL4 -g5caJTg9dnd07pf6mUWdF/XzI6AdXYeegSD9WZ9Xz2d/CGdWj3EiDKNF0mgRY4ew -eF8drz5dT7yNiLL3aEEEiw== ------END CERTIFICATE----- diff --git a/apache/certificates/3082.key b/apache/certificates/3082.key deleted file mode 100644 index 4be0a3897730..000000000000 --- a/apache/certificates/3082.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEowIBAAKCAQEAv6hnYTbq6eAYYws25Nhmql4DnJ5Dg/FGjQHucSBFKO2ImMTt -Kgvnop+/fEo4HU9pzSebYbJ8uEE/mNo1K0XOj1gg0irzik0IHn1yo9o9mHTPDsRL -hke9WNM0Q4Nr7mKddNXX2GAxKsX4PNmN2x67R80ib/KcKVc8n+8OSdDJjJFKRwR1 -9PFgK+it8zt8BIoa4M3rBBI/SMMjZH52vTnafqXq4FIT7sMTFcqDfaxiLyuYoLi2 -4W3spd6WN3UglyuYG7Qv8r5xS+KAh9WB9lkg4xcU0iH4FSVUbYK3oKm+/YXncTgx -s3t8DQtq02O9z0UR0SqdlPE2mr2be6hg33UgnwIDAQABAoIBAGm6A7WMLxDvb2SL -1i9t9Uy8ai+m2sXZfrrguuGrFJvcVUM5Nz+/q3t5to9g/g2lNk9XLw85ADZAwE2Y -6kXBz44h5pEp4omDrxvqxif/h4UnwuV5gdRElP6AHE+2Gv85ZXUDVnvlrJnU9fjT -Zr7e+B9G2V16L41as3Xi0TYFOHoS47wkG9l9z4yHtupc/cfgx5QeR2EUC2r7vI8F -ILRv9qxb0Dbi7cjNzRC8H41cYyWNtvkXrSlDfOimQtPpl3IjiAyYjrmks0n+5ZXx -rvFdMILlws70A4AYMZRcwUTEMJRAspNpWI7CcKVBg83mNz+T/EidARPjjqXq7Eaq -sA2i+8kCgYEA4qsqNz/tT016KIxILx9NqyicMQnmROqj7Vd4TUCzMcx+vTIjjKLO -CP1kT8O/KoxHm0NUDK796f2ikgdy6YWXoAgoMeptFPbG+QLDT7mFw0uf3f4xSmLv -HOsLM3ilcXVaEKpnwdfit2rThed3ufitFwJSH6eMUzzW1qaLMNBZ83MCgYEA2HVw -aYHxYsloBH+vXwRGeVuE1wVilyJUJu1zuLP8pF/MIG1GsPabBPcA+hVXzeVYzv/r -UM6DQV9tHN0YFClB0FKXiDeUoXzhWs3njh7bm9jrsSBLx5c0+t72vIR8DCgmlDir -oUolRhrpwwk1ePBA7Tq8satH/mm1Ym40st1FCyUCgYBjcHHZwSrLwpKX3UsBmTsK -nos/HDev/jwiMGBvi7XRYAQt3iQoW3gGC5wJPjfMY7Q6UiQ6WD6+e23poGjyN5BY -PZvcohpuuwB5V5P1ks8y6SdeTVi0aIi76AWG9COojbIQY6GXMa2dh7j6IpyssoLE -+Fis2GVAUw1xJ6kiphUALwKBgQC+JENv2v6QmX1u3j7OB3Jkrlj9jLRzMGudml5Z -9HlMZv5nybYcQzQfY16PT+pGal3dz/8Eh7PS3CF8BldddnRiq/qCZNiCFrHa0x7B -wCeHOkCn4kfO9utKKEuzg+l3wFlLQJC7aOdfMsr/UXqQVvOhsEQLCft+55q28ToH -mMlKpQKBgH/7cLR20qG3a2IqTjdQvg57CO/aHNlxXHc1DIO9e3t3PbX8wo18gkRv -h+QrJs9San7Hjq3CsnUvXcLvZABJJZS3PKeCsDQdIbfkcAsR+oFnoLU548f/oAd0 -K6xQkHaU+qvONDyJkBbfMTGgBjkD0OItS8sBI5uwkMmqz1vZOIya ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3083.crt b/apache/certificates/3083.crt deleted file mode 100644 index 2a61034fa6c4..000000000000 --- a/apache/certificates/3083.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAjDyMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMjZaFw0xOTA2MjEwMjMyMjZa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAL+4f/LZtsvLaLSHZhMTtgdTPLDke8jO3SvPa6EzoHbbVx6JKX5/8PAN -BI8DEuU3c7Mtnfb99np3YQmBHEKigFBclRoE1a5WZMexEVjal5wvpb7rOoFJuer9 -rICTyXv/gjuMSlStccbrOBJ6pUnRJ2dsRu3Q7+5h5+buD3Y+hAzCJKpRGHbRJ8Ce -1dzJ1jOOgZE2AsRKQaI1o5BxHbw/KJn2PimHySnme1ACdml0/um2OLISaKXQi8uT -ARCyZ3qTLushoWi9hQJXhC6SUTgTS5UcxjF5b18YF4M5VJXc/oVcDv2pHVEX1jBt -gk0iB88cguMRn0XjdkmxH6EtXK+SPwsCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -CDsPAzGPHmP4sRQmghQmz+skSy1shMUtnHz+nnety2m24SRO2WW+ixLzUY2+8tKt -z9UDjK81GQiuAqroY4LiUkjzi77wRBqOfbiCD7Tyfo46VRZojRvtef3zyHt7dOHt -s51MOIcA6+oIk/05+FWgZjUoHsOrf2+9Sy7meGzZWafvDmFIgx8TlnQUaZeQ26m7 -F4le/7vxioldBU9jyF4MfjMNONe0a7bUiXvbo4+TdeA+Re8LSJveHjIxieGlYjrv -CdgLUM7/rdTBAulpWKu7huYWisKcS/tIojvFTaSfkKTZvP/89xBBDZCdxMN2kzEh -yE8oTVHvVVmoD55TkCiloQ== ------END CERTIFICATE----- diff --git a/apache/certificates/3083.key b/apache/certificates/3083.key deleted file mode 100644 index 5a49fbaee068..000000000000 --- a/apache/certificates/3083.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpAIBAAKCAQEAv7h/8tm2y8totIdmExO2B1M8sOR7yM7dK89roTOgdttXHokp -fn/w8A0EjwMS5Tdzsy2d9v32endhCYEcQqKAUFyVGgTVrlZkx7ERWNqXnC+lvus6 -gUm56v2sgJPJe/+CO4xKVK1xxus4EnqlSdEnZ2xG7dDv7mHn5u4Pdj6EDMIkqlEY -dtEnwJ7V3MnWM46BkTYCxEpBojWjkHEdvD8omfY+KYfJKeZ7UAJ2aXT+6bY4shJo -pdCLy5MBELJnepMu6yGhaL2FAleELpJROBNLlRzGMXlvXxgXgzlUldz+hVwO/akd -URfWMG2CTSIHzxyC4xGfReN2SbEfoS1cr5I/CwIDAQABAoIBABzlnDNoaUryT8fW -GKaLdAZKn30yEw5DT8bIrrpPY8JGcS0jE2QDuLcV3zgHCJQP9ZpuJ78QrFPtJm0e -TrokcB6stbSEQgjS8MHAiJLR78QU0nCiV+Eg0ar/rT58CARukJyVGqcEtX97+Kmg -XsVvhvbptQ8nTOKrUx7VhvMVnSWm4hg7xFyozHVCYfZjvSW3F6jE0FnJrGDEdUck -8AKblE/sJqld94rUMsFDCI+HegpywymEoaF/eA+UKwCvMwSlW72lQLOf25yi+dS5 -loQcDESdhkpM0UI5k4jZPeSsoGQLz0bA6+dXCnmGo3r4il3sQ2sU4NhUDCz/0nOo -3cLEFaECgYEA/yiF3lRtz7YzRnwfc5fNDUtTNi7pVYFrxJwF9v25AXJuZzxrPNcq -K2PGaOhG/IdekdFFWLsl+5CMBkHCK/skkso0Pr6TmBkLx/U0t4ixI27TNV7PSJrh -lPUxYhb8pKxCEDb6ZBs1GvA59SSlRQG8Md2r1iPBzFtpDEP8/zgDJeMCgYEAwFpn -pEakAHFJHJnK5WVGDrysZeNVdo+Vn2spMM++NjLesgi4zJMeO/s4OMUhh2NOb5DU -PLJLxgFiPc41IBUdORpRnsR66EkRGcoLdzlzQHEWOmxEXTcahtiLvNnurlE+ZirE -AnFdXyFHyrF6zviJR/engtE/+P/02NvVQkO7CrkCgYAOW9FsuYOUdMRd6w46CwjW -/q4oFmu7DBVscvtC8vQ+SJo95QCD4/fTiUHZFXkpLNT9j7E/VQjGJ1Q55elvYCqm -uApInaDgpkgrcHkO+vo87DemgTdY9p5LK6Ejy/dbrPXqw61DhORwJ6SbTvyd7YMR -q0/INSrqvRokPo82LYi/0QKBgQCXxHzz69yokLnL/DhPaOmu5QTtW0JqSn4Wi5mz -bqY440g8lo8gso9vahcBC+EZjqwrcM1UmqUYtKzL8TCPgLlO/coaiBIlxsjcXUNQ -rZ6W4ONV82i5V6nxbVhMCHO/TFD8kY+YEdRHI94eOoyYUxcWFnwvxmRAVcvdcw4/ -u2sP2QKBgQC6zusilppy+pn1Q+rh1Ri9ycyq7MGnr3FHsYNqsgZfig82p70RfXMl -LPauP+uxMghOojgdBNtwrv9IdcdBNJumo2tyRkJbD2NwuPWNL3MrXYPK9X4o6eXa -l9+TA/0muQSERFhvsNLDGyO3yr6IGcdljiA5QbTOO7BCVrQRRzaLlw== ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3084.crt b/apache/certificates/3084.crt deleted file mode 100644 index 748e037b1d29..000000000000 --- a/apache/certificates/3084.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAgGWMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMjZaFw0xOTA2MjEwMjMyMjZa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAOR+5wcMAUEXp2z/ls1NRYuxk+RCg+9sVfC6xKfXINn7mZ+sPvgBa+iz -+EfbBybxAgmU9kpv96fryZug2s60eB3aNFgR5LczYuqp0x1ogjb6pWvTVvA6HT79 -eLERK8+gsQTeofSzZ+/gr7XXMCh+XTOmBMNlQccy4dvds9ce7JRJ5pkvSOcTP6FT -I/P1k4drJ1MjpKlldfW9S3C14ueK7m2RXRwafgVUuTFIbaoDcuDhoBF0SBClxlHl -BZBNn+OG1q2FkA2K+ZIjs9Qh4jiuukw5zxZgNLmbKxPIQARHCKsGOepTPWeL1hgN -a1qzTywKfiPR5khB1q9V+qQ6pyGPfWkCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -kNcz2n9mmKOoE1QnOgEKfz3lmg/XjVa/rM8v1VYv/35ufULp+WMWmbR+8Iwo3RwI -2sgTeEp3HknPyyfdM31WYvUoHktzvPSs3/WEO8cwjtwe/P7hygF2AdsS1/T9u1to -2oPS+0VKqHFvKil8vG2IsuF+xsE1kCWOYXIJR4JJMXzsHsmqt/BnAgFSNSrLdETb -N0btMoKoUjVoWUN81rAVK9xatJoIJey3/3phuZqgc2RDKEa9QPDi2o7jTpoVBQF5 -3pmzeULBNXoP1dItYbD8lSc5QprlXcwpKiTyOgb8tG1Eb7ITPzq5QAiMZbOPWAJH -7Y9iTml6E3q8EZOi4SnXtg== ------END CERTIFICATE----- diff --git a/apache/certificates/3084.key b/apache/certificates/3084.key deleted file mode 100644 index a24f91943c37..000000000000 --- a/apache/certificates/3084.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpQIBAAKCAQEA5H7nBwwBQRenbP+WzU1Fi7GT5EKD72xV8LrEp9cg2fuZn6w+ -+AFr6LP4R9sHJvECCZT2Sm/3p+vJm6DazrR4Hdo0WBHktzNi6qnTHWiCNvqla9NW -8DodPv14sRErz6CxBN6h9LNn7+CvtdcwKH5dM6YEw2VBxzLh292z1x7slEnmmS9I -5xM/oVMj8/WTh2snUyOkqWV19b1LcLXi54rubZFdHBp+BVS5MUhtqgNy4OGgEXRI -EKXGUeUFkE2f44bWrYWQDYr5kiOz1CHiOK66TDnPFmA0uZsrE8hABEcIqwY56lM9 -Z4vWGA1rWrNPLAp+I9HmSEHWr1X6pDqnIY99aQIDAQABAoIBAQC60H52pnwIChza -4wUaiYjIs8EkqLVR9RM2pJzQVPUJA8oQYDWDczYUpb/ij9MDJZzy1JWhOnYTFpZY -5WTAB5EFZzfQoaCLoDnJflua+a0s4jSJOdskwX7T10zsCAv3z3urbZKgjGX4G43N -cEhxcw8kgSH31zu2b4V1y4eT5Das7UtN5N6rxbEpb/QRfYIyhGLhGSuoNxqegHqe -dxH2OAiPsBp2zVQtouRa3td8j4ZDKarc507u0t5+R20LTPScKBwt0eOXONg5qRiH -hJfUqF0Ex5nJANE0+dT+M0eHeEgZ+HH/TV3ezjEyiYAInLM4krs3Djwom/gjoapA -8Xc+EZw5AoGBAPZBeVEU5kz6hLMyjQWFfW9Y2F/PGUbttvOOo0h6a0RzsV4RwHCd -/N9I7/Ar0h4uM4yP87nLnFEBVPIRsb5Q6+XdZfTW+Tu/MFnQAlwynJ+klMSbTGh5 -MAYTjaLm+23sJNjPVGjgp9YHxvVWXTkjCn70L6F6hLNEfPPvaEd2UsuLAoGBAO2J -hcSGN7PsmocvTsGqBnXp71Kk6F0P04qKpE16ybpkxzVs++0wCmn1BSB0U58VduwK -BSD5TSlwX46L0IXEpzo1bhQVkn+/2j0vNArM3H/mH/Mw9mApUWviD6ToeUWiUQjt -0f/+a19MmuFyw9wfgNfu7U+7JyIji8Lqxe5/E8lbAoGAOz+ViMSWhH7h3puTAnkT -rO6bYLHbSw12rzLqZk3N8TJEwnVS78WTScWqtQZWD5zeGjuoUFOE0JiZb4SCV1/w -4eVa2oW+gXmGkJVTfAtRU7etc4BJ6fj+bPfXZBJe/BuM4f1AOduThhNo8y5MT6r2 -o4Ts0NVBiEA6MBax6D+3u/ECgYEAtooXVRX7mnX5rmdJc4QwoM6cTntR4ao222F9 -r9jrSyUE/WZ6FyTy68gSH4WleTwqfmuY02UhyfWESWviW9nq1M2YgTCuuyN5F8m9 -iYsy68qxxNZcjztRScGYWhcYks2QznbMCZi/dKXO4++o2fEPt2Dx13KwOQjt72Ux -o/zd/L8CgYEAjtbyWm7/fnyQUahjJkTYzJpYQuLGWJYg4YgJzBh4hjNdd8itUaXJ -TdG1Y+ZEBUWmSjSrgHZlCWz90ov7J63aPbKpOUyeWwwhpCWGs6qMbViBpnQ96Igu -XTh1FYi/uCPyDH6lwhvbbTzQsSn1QE0sP8o731R6VuOmCtp6/Luyyu0= ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3085.crt b/apache/certificates/3085.crt deleted file mode 100644 index 253dae4532b3..000000000000 --- a/apache/certificates/3085.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAkcGMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMjdaFw0xOTA2MjEwMjMyMjda -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAPbtW4knwa3ItwyRi1xVHAmCfK5tILf+B7y5bvK+kyaLEg0Yt0Wyq0yJ -GqW4uOncl6kwRuHI/zH0bgt+hNvXmO/0vaMixFGab/T99tPvYGtdXy54IAxTR3km -2NlkII+3SdWE59DW1k+5g/V0gEVLav+qeXxHAeocqpnjAel1lZ29tSeCoSxMUkdG -Rk8TNwGIhU1blCXtHUFlGOch4Casv1hDrzcQqLuTfa02qaZEKWmCQE1HqdQrasCY -Ci2YNZYgxsxTxjHH3IASq1uquQqJ4zEKhcZuAdrrZGpodicXaNpbDCgmrD8rdN0F -ODg7kwvJPswEbdzJWR7moA5uRgkCDCsCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -UTvO2/gZYoIgdhPHu1R3NZxrvKnfaVyKVkNWkMgPbfl6ULhJfBG/EQu8uYQCkeF9 -4XjCatz1PP+97XUPjHBaESgDy5PI9kMxrco+SCplqs+Jb05BVUOw8PO20ovISq5s -h4GLemEvbgXyWMIKrF3wxgD/akAUDMu4GOK9BrJdwsnfCPwpgGV3JduNp35a0UIP -0DBYWpumuexxArTOSTwSvelSXKtqNWN1A3RWUC00QCIkShLIZaG+FQd2EdZ/xjFt -RW/B3jjhanMgp3NpCP5aoMHgAMM+Da1CbiaLXWQAkePtIi3eE/IfYeB+wI98TSPX -SMdzrr+xb+yChFXhgfcrHQ== ------END CERTIFICATE----- diff --git a/apache/certificates/3085.key b/apache/certificates/3085.key deleted file mode 100644 index 1b0a70571136..000000000000 --- a/apache/certificates/3085.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEowIBAAKCAQEA9u1biSfBrci3DJGLXFUcCYJ8rm0gt/4HvLlu8r6TJosSDRi3 -RbKrTIkapbi46dyXqTBG4cj/MfRuC36E29eY7/S9oyLEUZpv9P320+9ga11fLngg -DFNHeSbY2WQgj7dJ1YTn0NbWT7mD9XSARUtq/6p5fEcB6hyqmeMB6XWVnb21J4Kh -LExSR0ZGTxM3AYiFTVuUJe0dQWUY5yHgJqy/WEOvNxCou5N9rTappkQpaYJATUep -1CtqwJgKLZg1liDGzFPGMcfcgBKrW6q5ConjMQqFxm4B2utkamh2Jxdo2lsMKCas -Pyt03QU4ODuTC8k+zARt3MlZHuagDm5GCQIMKwIDAQABAoIBAQDJWjn3OL0defuS -Oyi57QkE1CvZjFFO1831XfyT40VY+7SHi2z/X7eBnJdnJZ9bzC67nwtd2CoI0Tnf -E5dBMaibmyX8XkBaDqZWz7UzkxI72pLf8MKpaktxBnVzp8tJhfumKk9iI530uuFZ -CVwDpYEl5BxWdAyinCedftgzSFftnId/9hLinGZcQ41ksKqevWwqyzW6ca/8xjER -CKXY3uQ0naqiRbwWmxJJnn5cD7BiLIF/Obk/bwolX6bYcKegemyCH8NfF++kAmhd -TcZrdG9f7D7bG4Id3qc/FngYL2ImI7hr4Zg8Toz6fQ/0+Apq5hwGUim8+FQSmjOO -4trxsqaJAoGBAP+ZzQOTfmqC0NuRcQtKXDDR+eBCV/h58YJzWNIiFTgUElIYaC3V -HWMy8olF8ovqFF/k1IoWlfatDx8S0n+w15FUugJLTEJZm5+lM6cgzr3g8xV6B3mA -z5d0/0DhirYzTvO0/EUZAFLmv+tAncAJGxVI8GFWYKXx0PM5D/UNuAPNAoGBAPdQ -FrOzc5kiwbgONhl1JxNRbRdytMDDr3onnGUkV+1DsfufWnVQJk1FXN5eHXJHsvRo -rvF/romgQuWnGkTkIZo740yZDOsGkOSAILOftO76roqE3f9hWkj9uADbiFPVxJje -9SJHbInYSumsU6/w1XUk/FsNYYiK4f8Mqn9tDUfXAoGAWde51FP3z4CD4WnSDmHo -3dAwwL8RJOnYFj5tLg+E3d1QQ0MI+3M5jTDPR6kqhDuXRc2tV4xw0fAqrIV1MCT8 -4LyjVUMaXwgYR5lN+qTxhpSXXSkzj2XTki0xu6CLnVeTnN40/iS3lGw/cXWY/XM1 -7dlhhRVTi4DgLV4VWdGkqNECgYA94kV7++huJjtRIgU5g44ekF564pIGNjEfoO/K -gziZPzo3G13YQxECftvJLMWzhetqqxMzjN6Qw5BZxOGW4XrjDB9JWHbaDI+PDdyg -9dKhhgrM0Ih4UdT0tMApPsWzLKeAFTJDvJmVOJEuPZfHS70uDe4znnqMXyxD1NiJ -ADG1iwKBgAgv+NVOCVYAy4WsrlBNlkDO6UdhxgjtcRvJkZo2EeL5dIT2hDd0bQbX -7eaQK4ro09GMNRMK4La6QtY/Ky4CNNtUt9D4YnAycI6OTlyKkwr94RxJM1NFIKdz -9/B4hUD9pDFywweV9apf3BnagpwuQ1I1n/85dgbVZKFZ1bUoF1NY ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3086.crt b/apache/certificates/3086.crt deleted file mode 100644 index dc5e8173142e..000000000000 --- a/apache/certificates/3086.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAnFAMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMjdaFw0xOTA2MjEwMjMyMjda -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBANmPBc/DPKIwCXdYaiJDtR/cCz2Oe8kyLxyZKXcHYx39dSp8fde9Sfqd -/FrTn+6oO6N0Q/wO5bXloy9CJ71Vbeb4ohQlIuXcm1TK2LPJT2yF9iLsmTtJ7WjO -s1UX2tzgiq3nj8i8QHzNm3V4JxxKkFFyyCxfbyE69MXBWGBnAvwmQZd1sRv3TaaZ -yAKKBlA3k4BAry2EPqnKaV52tRfnhjFsbC+peYBZE+AjD/9xQsFdO/WsbZgpwGwF -owgGOxvtPILEF29IqBctAPilzgocCByMoItlSaJq0UW4vAuUA39TugV1fuAAMjen -liDiI6fg1w3jOawD8UGcvxM42sXiRSUCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -OqudMmvSambyT3ZGk0IGhA4TH3WDy/7a3MaxBoEfW2rYhkZdPG6W+YMaHILmv6Hh -ZZz9pXXRlrX1KLRnOZ3a1ktLMfZESQlVLfQGaZNnlTcwTqi9+rYeOS1dwbIycfjt -cWBLdMp+GE99bdScPwxLibFrHNZKeZFeZtJKrRmeiBX8W78TEAzUhJxDstOK07H8 -bGYGe/so+2P+7IBOrAIOj2jljKFog+jWYHM2/+DnfEWMk8dNnKfS456xzWITRVF/ -hNx5rAglZIPlUjXvdM/wd7VAoozg2eCuN8QGYH+CjRTw5fMWu6i2WISWRkq9G4g9 -9k1hdAEa9pPWYGa3JN3ECg== ------END CERTIFICATE----- diff --git a/apache/certificates/3086.key b/apache/certificates/3086.key deleted file mode 100644 index 9492e5bc28e2..000000000000 --- a/apache/certificates/3086.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpAIBAAKCAQEA2Y8Fz8M8ojAJd1hqIkO1H9wLPY57yTIvHJkpdwdjHf11Knx9 -171J+p38WtOf7qg7o3RD/A7lteWjL0InvVVt5viiFCUi5dybVMrYs8lPbIX2IuyZ -O0ntaM6zVRfa3OCKreePyLxAfM2bdXgnHEqQUXLILF9vITr0xcFYYGcC/CZBl3Wx -G/dNppnIAooGUDeTgECvLYQ+qcppXna1F+eGMWxsL6l5gFkT4CMP/3FCwV079axt -mCnAbAWjCAY7G+08gsQXb0ioFy0A+KXOChwIHIygi2VJomrRRbi8C5QDf1O6BXV+ -4AAyN6eWIOIjp+DXDeM5rAPxQZy/EzjaxeJFJQIDAQABAoIBACDkEojah2wtvwCg -CUus2NE8PybLR8OfJqg4L6CjKUT7cJ8/uvbG00xkXiaNH/zAymNnzG9rASeC1Czs -330sUTU+GaLaCnCd7Y3gLOrhYHSTvCaDhpcEEjRqK4qN1LTX7Z9lBsPeUhGMNBiK -Vb9dNnxZ0hGDTBXGCANtu6K3cCgWiRpmn79onSvgGEJF21s/CXI8Fz3o0KXdrJot -KkNmVHCUT5u8AR/vL1TH2zDSfwGTDsFze4BhNVWJzeBYWVKl/7Y/hDXstHB0ldKo -oKRwSqQE8Tp/hGf42JlGyWd/V04LT1bD/zLEypv254WjNPmEKHFP9PIKyHMX4eW8 -QCZktPECgYEA99qnMhVDJokoY2/NfUZmsIUjV3v+j5q9TywBQ9CFf3ab66FkSFKH -J9m9hqEDDQU/DiJ3z2eEQVlGOVBs3h9LUY0UWczLMLNEAXcDtlxAv/RuRRDvRI9d -y1aGtHLvSWa7t6M1nxb166v26o4UwjpTwuYvLuJ+ZIUwAXZ84x32cccCgYEA4LV5 -y93e7NAAHexj6+qlQTQ6WJJpgZ5WukqY4WZfclicnX4oVcRKcrEnN39bGCy3iwjJ -ayNmM45gp8aHBuvoPR4DZDLzbpNSW2eg+UQ1OIruyKGcmRYEBFRJ1Z5pbzv5vlNH -4oEbtM0s6UKIEWpr2j2adMYDx7Nstw8xA+LpkbMCgYEApwYODc4ORnW/ZeL90yIS -KXpO6rGARj28vRGmeJCYpeDECfHkpmgW9F/jPEpcx/V1HI1Vt8rGcVM743uzIaxt -ETPFNw6vDs5/UY1mTwm0CKcreBeFZepHBrP0ar3ZStmUPpgZlm/eoUZtSnscuhac -Q4bi3PF8wziNtS6n0lVqshkCgYA2cQFPOTP3X/WHSmxzDeh3wbWZG+/f7YLJo6Ui -hvD8/ScEqToQfXwkCXOc6IgjdUIKt1hFUtBCEW6td1XjgWhE1m6v6gA8fAjqCFNh -0Pqr9k0f4rfUBxd2DQ3OaZDV2EwLppW19N3HkiYdZXcd8RCsUVyIiikESx49w7p2 -XJWGLQKBgQCySWPojCQX9O0ij80Mnuvv9EIN/q8Ased1WjMQE8t1iU/pWyQ6e7ux -6+TNW4bcUiQc372oVxl2tdGbtOaelpCKfoDCbM8M07yAP8WnKEqzLbdMG6Ah7xh6 -Ji6rQZtZgB0wMKzvZUjWh3WflI0bO8jq4KREmvCQXuKtq+Ug1r8YuA== ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3087.crt b/apache/certificates/3087.crt deleted file mode 100644 index 5e8dd4db72c6..000000000000 --- a/apache/certificates/3087.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAkXHMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMjhaFw0xOTA2MjEwMjMyMjha -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAL7WczZWEwBFRkbvNVjmCAu7vXiUHjekTUaLPoNR4TGg8pzapcZ74MYc -YqigMTRIvH+fdSr1cZS/YmP4+Bvg7fF50gWUT570Tmkx9tyePNgLdmTgZw2ClKyu -Tx0tbwR+/dCf0S0z/oWpj0ZwW9gyc/IaYCM2gj6Do393EYOsywns1V41T337CtA7 -qdml/niMA3yJZtZiX3N6tjmIusMZTLWUJm85hc+0/bVTJfjt9JswCs3qTEUzBylX -YYqnSwPESMVVRH0Aj5FF6+680jLOrd7onU/OaKXJovmFn2HBrmZojYU443c80Qiv -2OyHfV4VMBg4Y5z+gshQd3gn5VHZ97kCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -Z2omPTsYfzAzDseQNLuW2PP15SBnILvFn39xWuTRiTqzipaCofBKMKD6yIcqy7aT -ROSh9UjrpyDEkAbp55ClhuK/cZWcSlyA3/Il8S47fHvoIyuhN4H41X0n2gZiXJcI -0d0xbjJfjkVUgiR0C7ZQMh2FL9D44RTzCMaBkUyHb5R6VTjXSh+5s672bNbantrI -+9qA0TD8huWxsgzgN+woYTM2WKwvrVwq66umLhF7nd9s2XK8ocjZcUwdhdVWfbDw -bzCBmSbNbWg4Aitnb35CqJvhndEuzeLAtMB6p7lEF7vHxfnHKg/f9cCcaFu0/Lna -6z8x15X5LfrusKurLGFnkQ== ------END CERTIFICATE----- diff --git a/apache/certificates/3087.key b/apache/certificates/3087.key deleted file mode 100644 index 5088e6a2c208..000000000000 --- a/apache/certificates/3087.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpAIBAAKCAQEAvtZzNlYTAEVGRu81WOYIC7u9eJQeN6RNRos+g1HhMaDynNql -xnvgxhxiqKAxNEi8f591KvVxlL9iY/j4G+Dt8XnSBZRPnvROaTH23J482At2ZOBn -DYKUrK5PHS1vBH790J/RLTP+hamPRnBb2DJz8hpgIzaCPoOjf3cRg6zLCezVXjVP -ffsK0Dup2aX+eIwDfIlm1mJfc3q2OYi6wxlMtZQmbzmFz7T9tVMl+O30mzAKzepM -RTMHKVdhiqdLA8RIxVVEfQCPkUXr7rzSMs6t3uidT85opcmi+YWfYcGuZmiNhTjj -dzzRCK/Y7Id9XhUwGDhjnP6CyFB3eCflUdn3uQIDAQABAoIBAB7ZR7KG43dtu1iI -HpWKSc6rwIsXVnMkKiG3LJnJyJ9fJxjX92hIaiNcP06G5q1O/LmcqzIQjxW+gkcq -3eCT0aLxUFP6j4xgbbRvkTpEkg1SfQb9h2sVqrbnTn6m84VEif8JdqTZ/NDaggCe -9RnTvg5q2ROYIiG84dcfBkPE0OV/jcNIoOyRkRUV95BAuDl3Ml8gg/rJOOfftzx6 -TjPuA/LTombV3Mp85v6ZqfK4qcmwfuI9c3zYRI0rQUJDCZ4edjcAEnb88xFbh4up -DZeg7ezFtn3UbqQzDZMA5+z/xruEGxxK2d9WsYEWMopXw9SD5oR902d379GPpP9A -0gb3ImkCgYEA6eDwcKIkJ5UBLCrr2BI5vV/sftJ8gu2k6WxlUK/Tl2wJNykQoD7M -utmmuKXptgVKw6sysup8U7kGlUsm844HRI64BFo+QS3EZmjgyG57FSLXjk4ukdWS -l6ou488pQoh7kv9sRpcLxUrMKDSVBy5Ijxm0kQFeR33fCpd3gd0wwb8CgYEA0ONU -t67hoAm2xy+dSTE4ti3xEbEhEnrl0Yhs271vLXY1gdhlzPU/BlBGrkT8f96sL+t4 -ARwuebLrAZEfTKeQWifd7ZBV5wFJV1b3N51ordA6ivteGZbOqJJoftM4AtD0BQAf -G1lKfrjrMLrKiZu5nEv6eTdDEe7fQ6GTT8p3NIcCgYEApmf768gR/W/Rg8GOSRC+ -sHWd6aaOHQJFgigz9jMEVAr0i6DWSY4lURUnwN2b6nzdc1dOHWslxtQxUOxF7Kkz -lp4NZFtpTCrqQQuCVFn3jVRbFs+d5vmU8gCOmFx/uO0vL6o5OgiiwV+03y56kr9l -tRvPFBVrJWbz2a9nwqjE1jUCgYEAlkHQYMiVV+9k4ObpNwsHBlUJwXYumgJ5aj2+ -QFqFrKgJWTt2DvaivUHlddn932UnatjwW6wP6k6/KUNgxl0KQy/GPerDQAX24bKW -5hR+hfjxA6RJThLi2PNn40LAWZZA0ZAC0ENsiLcvxr+2jUHNRBaLN8J+plmzlAyX -0J+NG+UCgYB/A3r7MH5WpMfT6EQGRrwieb4IGnhBMDnUiQeOkseVGZ1ymGuuZhEI -eo7AQRJvg7g4F/h7HDana8RBwaa4+Bfs4voKaIu2cD2knvaTWCmdmaeiO9luKdO7 -RhBzgXE5SluGx1/KnXJzQ5HeUCH+khxTp19nVOqCHOlXxqX5jMvhpw== ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3088.crt b/apache/certificates/3088.crt deleted file mode 100644 index b400430f5cf0..000000000000 --- a/apache/certificates/3088.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAjAlMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMjlaFw0xOTA2MjEwMjMyMjla -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAObBmVUrBKhWhu0mGUUQN9eWw5OTg1ZB8neEy/kXK8fcXT/xHM+9EpN5 -tPlH+/9GT3B2QzkL/ciiHN/9aYspV0aSXWox2OeL85mjsPHWw5nq0lVAIiTb/z9r -5gR2WIghJ3XcWj4seh3nh3kCKUCW8ijzSn5NU5yVwJbMB1c4RAyMG3kTgVG7Z++f -KqkqPGJY7CG717OwYMHjg3Jqe2kkVflYqSIZBN54zgGesgHPXNiRr2cf5QZ1i393 -mLLcUqHNZIU9mhFdiHW9XJISJBw1WTm2Mvi8qR5sXSPwuY8sL+JSx0kF9FEUConP -l70ZP6iuQzsMQCBhSqkkozYRi7rT55UCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -DZiKfxixeCBfo8ZnpLf6RpQN1RYXEz1Vzy4YF8cRUHgql1dlf24y8cOHHsvOJ3Ck -DVz7s+TCf0NDrBuYaBVV0noYEf4RY221rYx4th9MzDirwSyI1wbDOD4WjyjazNql -BiCHou3azKUu9+EUuoiW8TlurMCERL9PZDz15mixIqBrhXsseBIgIk6d/6uQP5Q7 -3Fk1WSk4jGFJBLAqdh9XPXQk8vUKk4/3VJYHC+coF8SW3NpU6uxvewSsDR1Daryl -OWQUchuX1qWJ5DEpRpivqlvEHMNES6WA6nkKa06fr+qQu9wP7M2IjuJ+YK5Da+n1 -E4tnkn1+dmd2BUYrtzfC6g== ------END CERTIFICATE----- diff --git a/apache/certificates/3088.key b/apache/certificates/3088.key deleted file mode 100644 index f1b572f7f825..000000000000 --- a/apache/certificates/3088.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEoAIBAAKCAQEA5sGZVSsEqFaG7SYZRRA315bDk5ODVkHyd4TL+Rcrx9xdP/Ec -z70Sk3m0+Uf7/0ZPcHZDOQv9yKIc3/1piylXRpJdajHY54vzmaOw8dbDmerSVUAi -JNv/P2vmBHZYiCEnddxaPix6HeeHeQIpQJbyKPNKfk1TnJXAlswHVzhEDIwbeROB -Ubtn758qqSo8YljsIbvXs7BgweODcmp7aSRV+VipIhkE3njOAZ6yAc9c2JGvZx/l -BnWLf3eYstxSoc1khT2aEV2Idb1ckhIkHDVZObYy+LypHmxdI/C5jywv4lLHSQX0 -URQKic+XvRk/qK5DOwxAIGFKqSSjNhGLutPnlQIDAQABAoH/V28DqkGigiZG+ZR1 -/rUmc4mskT5ThVt3g9HNd5RQAmp86r1xLUV2xGpZKBseYJtDfllRH0xr3JmQV06t -rwz7BMJwosxAY3uj0ZM0eG3nr2pKSAME7PJuxJkdjpNI+EuXqBDWILi5jJstuawX -9WE8YEfO8gxaofob/wdPwLyRDC9SAPbqihj1dHY+IHXNttRl+TJMHvt8mMUMb3Ww -sCnWYQ360sK2ebKU6W2CJnq/29wIGZDpNHLS4xLD+kmM+5b9LbjF9Rbm4bnKubhj -U+ZIx1zVsnrfVSiEn1DafUP9DqGtmgSaJCT+LRnYf4Owd7MR/f+h583yDRIBQJj+ -esKhAoGBAPfI4K+APH5K0HOfOY9yps2q8vjiBcOwMNYyOmWlGhbwTFXFFfHGxBFY -UhQQ82v+Bd8R9AmFt5eleSPMvgJjdgB1IjLChQZ5Pv9gQuNmpUKrpRU+6uXNQA38 -2c6IrjdSvfQ3id5vnw5o10Hc4D1+Ib/wBLBFC0GspYtOqAbGXdxdAoGBAO5oMGRI -OPqo+b1nGHJqENUWNFypVzH5RMR2RN3z7neqUqLcYKuKvySet7bOlPKZmUx7LnfR -m5FRB0qJm5ltecZS2Y0abKxKAy8jQxO3cXEiyuDd7+4J1ZxEjxB88NVmW3YU7QhD -xnILm+gWsep2Dw1YCzEZhe750MKZSTLv1MSZAoGASRN1ME0hih2GXJMY5rVpfD5u -afg+uve7b3BgyJlomFtGKAV381YrfPIPQtu87px8Hs2sqyJEgvTKRUScxReQNZJW -A6JamQ4pBifdkjMzifYVOa7Ul/Fwcq+fjMnCl45Pdzbp8i/5OMaytTnu6DPKwFCJ -EXNLXpMMP4lzBIx8IgECgYAJFzn5KPPbQwQ636qD+l1n8q/OdLqZcjrYDvZzTDDk -qT77bNHW2LSPLeotc1Ukpwy8aNoNwZVgBin0AqlHQXBqSpB3G/HW4/+ZFYwiPVV7 -DeuUhYH3nrJhgg++fjUkvgFw0D11mjf/80dfozXnjdbnGFtc5O9BfI8kTHoJEjIX -yQKBgFtl/vt+eLXwu2Tct/zeEYlZm9KXqx9YvJdNNbqHF66RmLO34UkP8jC1064N -EEdFhtWfEF7hKA1JUBeL9qIcItrtzdJWZ2UMaJPZxAgE3gV6voVZJkirAH6T3g3A -gu3/EHqx4i/4m5WCVxWECdvMOMuj+aWuUtNvGj0KXfplmGFq ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3089.crt b/apache/certificates/3089.crt deleted file mode 100644 index e80bd112d50d..000000000000 --- a/apache/certificates/3089.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAg0UMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMzBaFw0xOTA2MjEwMjMyMzBa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBALYTXWNI3mfNKE4NjYWr+9hBQtwZLJQXZVVgPVQtUeNY5LuUC4oInQxA -6ySA01H35Kes5g9/+2JQYcGKwEtm0x0hWHUkAY3yu//xTNsslMvH4BJyOKpxjcNl -qM+DE2/4kT6jnWp9ZJIimsqBNW++u0aTQm1ezmyXvOVtGfWrxITCCDIxOw9lI6ks -ByhKwvIzFTzDC0iKR+zXtPnXVylRKD7fqP2pNadpUWyLOZaIoYR5hv7I4lUJu8dt -4Up4y88s4j0YGVSNcybo6zfkyfqSoVuIP2zil50fTlHqKKGkSKVRC9Wn5FE2Q7BP -30leP/j3Ph5oqDSwfQidLngg+6oLZL8CAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -DphD7FiEKVj05WNFCpNbNO43nOJ4XcRMn2RbHQCo0UpNugvtlfKkWY9au5BZbSwB -jvbuFvxvtQ5lZOxRuWCl3eVMbsL00/M5fB1wLTXXt+H9SQs80Vb2KSiRu62u6FyJ -/8wC2CM4cRZI1fWNau1X/Zxs0iKvkuUEcHf3Hzshg2HiouenlmcdXek8W4oKJa2S -IXe50M91Q52A/mfLUYcj7ihtlXii9lqVGexXlir0lqIO6XOxONzjAHCarRPHbWyE -FXdY2VKZvjr1Hwe1UMNHUHZzwt2cuHDFfDE7Lrf++4271dlwCVS6v3GpQ36koUil -g4GztkadEV76+A3Od38XsA== ------END CERTIFICATE----- diff --git a/apache/certificates/3089.key b/apache/certificates/3089.key deleted file mode 100644 index 26e879b0fd7f..000000000000 --- a/apache/certificates/3089.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEowIBAAKCAQEAthNdY0jeZ80oTg2Nhav72EFC3BkslBdlVWA9VC1R41jku5QL -igidDEDrJIDTUffkp6zmD3/7YlBhwYrAS2bTHSFYdSQBjfK7//FM2yyUy8fgEnI4 -qnGNw2Woz4MTb/iRPqOdan1kkiKayoE1b767RpNCbV7ObJe85W0Z9avEhMIIMjE7 -D2UjqSwHKErC8jMVPMMLSIpH7Ne0+ddXKVEoPt+o/ak1p2lRbIs5loihhHmG/sji -VQm7x23hSnjLzyziPRgZVI1zJujrN+TJ+pKhW4g/bOKXnR9OUeoooaRIpVEL1afk -UTZDsE/fSV4/+Pc+HmioNLB9CJ0ueCD7qgtkvwIDAQABAoIBAQCc+5tENBqV0rwS -d/ryKnOMY9A6pnXaBUX4U27tOdnls8oatK0ySPTnEL3sjiok/R+nNhpxeL4MaROv -5GqhWDljX1G+RdoVQhi3tpu2SPzNqjpWjSawRhGdS/Q9Xl0O6HiKUlUx8IUavj1J -pheljgQ3+FWIqPo/hKB4CxYbzAo3DwI4CPUTDHPJlaUBVigLX0XwK8o/wOAaN+Jj -IR5lmniJ0hCGmGdDwlCmEmAJsFPpfXWthvr9wIi0Y2r9H6HIwZErxDJTU4dmIaL5 -5z+LeiS+9jJEDjQhiSTCbpsWJ3Kl3BX5wLkkrtLjwnu5SN9g24GdJoQvJDofRwLM -uI66UYwZAoGBAO1+E1V8/TbtPUXIroX3o862P4IkW4euj7zKeRpJyNPvPvwHcKw1 -05OIFjW0VnQ3aaW1fGrt1q6LGh/b731U3o358x8zBynvPuou8JyTrKm8yZx/a0Zf -4I7zffRIFlovJlBYwZkupW3F/jTqXmMgSal/SLA87ElW3TwAH8dPxforAoGBAMRD -vDHJAGI/eKimdWsklExpxelF6YPw4YIBRrw+Dxqq0Pcmxnr46Ra/r9XI4vYyTYNf -RNyc4BFSlK54CL4vsw7FVnyb7FRPUEHn4lfOCJ7f8JuM+fJNYbs1CMPf+oaS/LKu -YkS/5iu+jnfXuRHJkIhtRRYJ7qEqDdPMSjQeGpm9AoGAStar6QiWErT31gHDXVwI -Np+fq7chUMRlbyyutOYDbyW5R1pg2yOrJJaByTKm+8BqflmOd3OzbxVOijOYaHpS -F5NoVbCS1VgbD1jzYaP3iRWAwtw0Rdz4upNoYY5F3O12uWL+vvLAFrOJw8sHK12F -WPBPS5onK4U/+iRf30L4NDkCgYBJv3IN+wtr35HFPZdNhVc8R1qYxy5x56e1JCmi -PmeKi7ktxaI7PyDG7Yxy9qNiA5Dg1oGXrFL971vzGyOd42qTGE/hTu3E2HC98xY4 -DDFtEZTlvlmFVNJueAUtJRKMUtslgSVn0/v3YAlEuwjNyEHJIdYd6+mBIb5EYbVY -VB+GuQKBgFuBIU4HUkt+LcERviPScTkPrnsKIuWbZidutsDvSK9iFbfVeWImHMMJ -kNBUrQqXWSx74qS3pYkDVtCdEHO6aXKBg2yk+kACBj/7nSjgAzOhuBTfL8HpU5cc -DjLjrwxZ8ceg6X0+cz/jijv5Iuj1JtgO1nCmY/1+iVAt00scQD9N ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3090.crt b/apache/certificates/3090.crt deleted file mode 100644 index 8cb154e092c9..000000000000 --- a/apache/certificates/3090.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAlNMMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMzFaFw0xOTA2MjEwMjMyMzFa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBANqrGJdOFmfMtnMzMeROsOKC2mq7k63K7loxX/TNx93UIqQTr5zzHzKv -ij6PHiuE4pCBcwg4vJ1LjV55jy54N83jEH3HdWbUI+aD/HfH6xoDEkWOQq/dYsot -Aht0Di889YJVH6alLmjyTKU/GtQAzc2EE/ji+TqbW7heqxbmfakcB2zwKazhdW/k -mKPgrsUjy7JClJnnonf+WCwx/RFu6joLaFR7vnitp2hrX27cCFJ22povbsrwRv8h -cWsow+B35+fZ48FlOC4Z09C9DltaKP1++GOywFkeM/fYVE6nQDgOffvjM04RTq5h -ScDjk4BF4y8MoKB7cMXrHDSxndgo0HMCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -McTZEq/pS1pnJfXWw3Ohee6ICaJobS9HHTYdAS2cz5lTgq3c+qGWLjlwlmjTHWnd -tIBkpxFNIqeUWzl+F7wWu/1QWwzlit/uqqKBxzA/aorI8/EeoTGA8PUCGh8ZtMpk -dM8BeodfvhDop9c0ELgPtfTx6p2kiV/K8C/ocp+nyszcR2P2rtysF/tQh/JmAXu2 -bfALpTeM6+O5CTfEfvZVa/vnSi2J5xPKWLI09i0E5B7SU0TWDh89kdVPTnGcQcKJ -sF3dZYJ57nmmH/llq9//pgf66SGDsH9xmRIAVhiqHdoNutPKL4GyRReRdXnZSrmj -/AzrB4Y5o+xPylNtgPiMqA== ------END CERTIFICATE----- diff --git a/apache/certificates/3090.key b/apache/certificates/3090.key deleted file mode 100644 index 62ca011c5833..000000000000 --- a/apache/certificates/3090.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpAIBAAKCAQEA2qsYl04WZ8y2czMx5E6w4oLaaruTrcruWjFf9M3H3dQipBOv -nPMfMq+KPo8eK4TikIFzCDi8nUuNXnmPLng3zeMQfcd1ZtQj5oP8d8frGgMSRY5C -r91iyi0CG3QOLzz1glUfpqUuaPJMpT8a1ADNzYQT+OL5OptbuF6rFuZ9qRwHbPAp -rOF1b+SYo+CuxSPLskKUmeeid/5YLDH9EW7qOgtoVHu+eK2naGtfbtwIUnbami9u -yvBG/yFxayjD4Hfn59njwWU4LhnT0L0OW1oo/X74Y7LAWR4z99hUTqdAOA59++Mz -ThFOrmFJwOOTgEXjLwygoHtwxescNLGd2CjQcwIDAQABAoIBAQC3p4oA0lnpFjuK -p83Yher0Y5iUmjSfe9gSsnN4RTj/a8MocUxGkr96L4r5nfRl8rbjTYXSuuxXY/Q5 -C/mguuGLr5DTQymskrIQUnxCEgu4jinTd3c1A8iMK58gdanQLO+6ZkouCX/gLtkG -1OhwdLhlSvAHUoKmoYM4Z3JkynNyCoYKtQDajt+cTqQsXVCz3Ohyo5Ev99q39SAy -JcTK99apZsV25vhNhqwQF3i//zWDka8ezk6l0QyDdHPykE9/yIR9S8wCFVMJyEqk -v/Sf1rI9KIKsahOdm7di0zIded0qhAl/NOFV16VsAEJYsQnWSV9lA9AZHX9tY66T -Lc7en04hAoGBAPBLjD++5QT/qn6EX+6yqWkiiaozzMofThzqS79MDjTjPdDdMOen -RNotFxkYmvr+9/cgw0+duUpIoB3zG549tlm7bSqyzxcLqj5kN6RG8+fvvfPWnByZ -RxO0DhtoXeYdyg1Gomx2bbGSU4WK9LAX2zOuw1hCezrijMDn1VB9PipjAoGBAOj1 -tD8P2cLhKyDncEf2LKhWInuWpD0zyL7mb0yZbarh+ZI/yoBAwvYjOcd9kYUL1pLY -B3b2QtTckFBmNsNXz63M8xKA+omPlibVmwx1NOTGlRAUwbH/H6vC/CU5HCpXNQ9F -NMsgis31sJ3NvxCxOJn00FcElGUvDDQBXq9/IxaxAoGBAO59vNwDxd/5NClPjrsl -HZkYS1PfB5FQEsIGFFnvzWXWaCLldcVlMaPs/rDMx/z3k/n1zYM2gpFklW5EPBQJ -IfPbXtTzFTDFRhmYc9UbCrcXLgtV5ClKQ84ddabkJdXfmQsmIMzPmb2VAkpXiNVB -SDD6ci0mBpKCCbroHcI+G7YLAoGAQUQ9SIGvV7rv81sECRU+M7dWF9v/jaoJbvpu -aj5+DCcdXc0DdeUu+fiqgmp6r5S+fAuMI9cgqDRXNj88zoO2ipHl8+QwzQNuZNjp -hJb9x66fKo82KSE6BUwuilsyueYO1oVkIhiu6r8PyVZQVmPgYLnG+OoujR6eQ5+y -oGZ1NTECgYAWEYHqjpBZcYCpaOQDH8tlTZ6GphW+KBJjTLGqujvmKpT0HX5BpN4d -QmTYd5iADe+l6zMJ6Zoo+DDsIIW1+lVAdEpFHUJreVOuaiBPvFYdsyNV9LpcWuyC -JFz1tlPFTWoMxQ8DUvopNce0P14kB1ebLl+A2zqQPvWfd2VQg9k9uA== ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3091.crt b/apache/certificates/3091.crt deleted file mode 100644 index f41b120b343b..000000000000 --- a/apache/certificates/3091.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAlVJMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMzFaFw0xOTA2MjEwMjMyMzFa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAMlAkikVCg/tYwxq625yTISOUMxhmHBkVyhpxev/aemG/4zRjwaR8LfD -VEO2HNjtZRy8KvdOQWiRZqW84iX1jijqL8KYHtcoAMg5JWyONiPKemhi2SoXGsjG -t8iiG0bBfmHjp6Xgu1JRacnOxCI+iD+xN9Ku7p2twGjFomBP14U2t98z3uHXoroM -oA282Bypuoj0MEgH/W14g3GA9fWNA/Av65Ou+1+H0NWRZAJXUWJhVBsfqsH797q8 -IjeTPC6l8MkgVaME3CCNpLf7M+LfxY8G0KzLVRUkW8ozlqe0SayBvzu3mjRQL+8G -YwVhydudjjoWuryiiSiWgttcK8LkXVECAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -meSl11yuBowVmA+u1+6VCjTKxs5m4fC5aFPyCMROI74xHbm+kr7wvsUS971hEDhv -+MgeGUYlE5HUyLmPuUQKX8rDSFADRsNv05Fa0MHU3Zhuxuk2P/LPmTBtTvPRzvzM -K5Qpwl7tzwFrB7zGBld1GdNgVTpNlzYSCpLZ2xjdULTA3WxT8nRYqgxfWpXsIU87 -/5dCoXQUU4r3OdH8NGBwE2q540fGKFMSUXE258t08p1gk3pfO8ORP++66KHVGfeh -fChgdJTYZcIQKx89Ut0Y6Fl9ArEtexKoVXVFStuBhCpq0jbi6q8pYw75D4/1xxQo -sDs0vE0i5b1Ow2M3GOqwqw== ------END CERTIFICATE----- diff --git a/apache/certificates/3091.key b/apache/certificates/3091.key deleted file mode 100644 index 24ed9195043a..000000000000 --- a/apache/certificates/3091.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpAIBAAKCAQEAyUCSKRUKD+1jDGrrbnJMhI5QzGGYcGRXKGnF6/9p6Yb/jNGP -BpHwt8NUQ7Yc2O1lHLwq905BaJFmpbziJfWOKOovwpge1ygAyDklbI42I8p6aGLZ -KhcayMa3yKIbRsF+YeOnpeC7UlFpyc7EIj6IP7E30q7una3AaMWiYE/XhTa33zPe -4deiugygDbzYHKm6iPQwSAf9bXiDcYD19Y0D8C/rk677X4fQ1ZFkAldRYmFUGx+q -wfv3urwiN5M8LqXwySBVowTcII2kt/sz4t/FjwbQrMtVFSRbyjOWp7RJrIG/O7ea -NFAv7wZjBWHJ252OOha6vKKJKJaC21wrwuRdUQIDAQABAoIBAQC0LiZtt5N5rQw3 -yuYbzSNqrkvyoBIt1fgei4yS/OqjFKVpOxl1RWYh8DRaJwruwKP9NQ62uY5gA4XG -LzS9zXpIcVrvOuipsvv4RwmVhkE8jARJvu40+9iUFy3l6BTJpWT0WTD4lxq+2XsA -HimFizzK4WxcKRgjfbM9WmxFFFadwUVF4Nql6z6YFBFKztMQcx1WSxWhoygmVLFX -cJ9bd2pGqBDw8uvC+iZczV4zYO8/muCLXAuqzRWROYnMdE7dA5PB1QOSmgVBu5Fe -1WnLPnIt9hHpX1edPOWb0Qx88Ek8ky2lhxIXxr9AWKMbNwGntkp/ZAiogGoquMC1 -p0CmCLDdAoGBAP/Xo4nMmfA4a6BS2zJDeTbrw+sqC7FM2EG2EJKjMDI2JrYmMkeF -flvIK/zInEbbVmEL0paistiQ0zrnftvXRtsczIeNJgkMZjn0jluVJIedcviREIbK -LL3yQmV9ifBFoq9kVBvBaK702d/XTBpvoYJX7leVu0zcR5TrVjn9D1sTAoGBAMlg -UfF7DFB+gIlXEFdmcP7+dc3AJY4ToRduofPmDB0AY1vuZbykxO4ijbVxQhY7K1t3 -Ob73LFL/1jU7YYfRA8fjM7e2q9EukGdjlo15m/Yu8BnIarNue/29UO/nG1pPWTd2 -lDMv/mjXM07a4alETrmD8v4Ukc4Ek4k3METLna6LAoGAYKFgyl410k5tEBvbYIut -j7nSwNKbofbFQ2RxtADg5kYfrvKUUQExrZbYTlyy8exMHtFpU63V4QgqT/g5qO0R -fRbOhXAhao99WOxujFazemlUkF+yH0bjSUbkHxMgc1jJzncVcXpGgLZISEw4GVAK -b4GoqvoJyUj13GBarAJRt3MCgYEAlZ6YI5guBRyIegKTJKz7ZapActfBz3csKJHN -iL6y31VrfWF6e5fcraZErbvxwzzBMRs7b3SMnTpyuGhfRZ75dSmNQoFZ1XkIV5j5 -wjHJvDcRs8Zh6OE9BMEFgsmuXAI6omfbItEU8GZ8O6mLIs2axGGSSE+WKYDi8X9s -wKCcjpMCgYBiDvi1WG8hbRvH7cQJ4UdD/Hr4bpwUzGnt655RM60e/Bz1yKGZuo/K -FE+PTL7QCkaVTDGZRyqFCWhRYOd0xT/FbMEihLIaNimfgYxP+u0mSZu5/Oj6VReZ -85eGNolmmsI5VqHem/AxbQq5S7njdnweUd/ZGK/KVCyl1wigRP1xdw== ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3092.crt b/apache/certificates/3092.crt deleted file mode 100644 index 6b2c901422df..000000000000 --- a/apache/certificates/3092.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAkSDMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMzFaFw0xOTA2MjEwMjMyMzFa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAMSFGmpipoTbr68qrVVg+l+6P5uKthHX13z8rnWHcI5JQpWvgbNO3/Uu -10ncmWyL825olqfvPsJmN/96V+v6k+YBTIpEJr98U/YSZoCUWGgw23y/31dsKI5M -Do/O2q2OX8l85JkkgIT7KEJ45uuEMp6B07tndmWuQTuCcNahXSTc07groI0Ceo3c -w7gw/5uhwR+2cL8WzoXSCity6EQFMU0mzyIHJXXHIvw6iICcR/ZlnxCTt1pUQspg -0OY01uAHBvhCzLCDN5RN9nQIA9frscNkKUZvN7LwT8pUGYQ8IAnciTDnvNkqJkSn -6+EJloU4PiPunYCcMKgfmQDl0a5560UCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -V4rVmgY+8UJxveg1U1yIAvCfHanAWxphGpbr437TDMzpSL4t8RWM9uLqIQK1zePo -e2QARzbUHaQmHlkoaA/Z4ocUUmK9vKzRu745aRkWMeyhx8k73zi4yDoIGnWKBFOT -DwqLo5b6wuOZFvQsezFyXYVBQhp55kzuNvCGzXGuqnjb7/lvkWKOt15TRPBdNn7G -RtOWvQuZLuRcUtcga2SV/q6GtEEBFqAjj5Ey3l+s1LkjKHbpOtfWY9mhlGVKjlmt -xwEeHmO5OmtyvJoJC7K7qWPig/P9Dw+EejZPodHhBnS29I85YIFu0eu2UgzE7umV -7AGMSaBYqBjT17UZs/3iZg== ------END CERTIFICATE----- diff --git a/apache/certificates/3092.key b/apache/certificates/3092.key deleted file mode 100644 index 2227cf4f3d3c..000000000000 --- a/apache/certificates/3092.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEogIBAAKCAQEAxIUaamKmhNuvryqtVWD6X7o/m4q2EdfXfPyudYdwjklCla+B -s07f9S7XSdyZbIvzbmiWp+8+wmY3/3pX6/qT5gFMikQmv3xT9hJmgJRYaDDbfL/f -V2wojkwOj87arY5fyXzkmSSAhPsoQnjm64QynoHTu2d2Za5BO4Jw1qFdJNzTuCug -jQJ6jdzDuDD/m6HBH7ZwvxbOhdIKK3LoRAUxTSbPIgcldcci/DqIgJxH9mWfEJO3 -WlRCymDQ5jTW4AcG+ELMsIM3lE32dAgD1+uxw2QpRm83svBPylQZhDwgCdyJMOe8 -2SomRKfr4QmWhTg+I+6dgJwwqB+ZAOXRrnnrRQIDAQABAoIBACJtUvBaMePKfJ+K -MW1onNQSU7xS84xyrIx307RBMuWqTeDdKzKXWcKhHxQQckxCxDWOWv42el8h+yNl -cmujrS85AQij4cnf5PGRzaUu18IA9SKIln7BMuWiy1ZEHakT7RHmMEHn1B/3w9jJ -R2Lw+NEt20LUYDh163WaZ1wiTqf7PL8GUKR2h9/NUNZEy6PKla9COMXYVxiNsqAI -vMqTUCWQ6BESGIX2BL/d0WZDM19jEXLJ0xlIbGA73whhPPITngQa4myY67+WBa7h -pqZyzEbB9jQzxQRvSAckHQZNdGPEX1l4oG8X+1jvV2XrF+sn/ipnWRRHwB3gfxP6 -gNAbg80CgYEA80ls2qvDhcH4CPToKk8EBF0p1heklGfTID3XoosF1m2HiD2k5B7L -HdPjoz4GsZx6IlM/ZvKJsISnrc7ZBTwKgRQAA0Kg0EQC934hDE/u1py3piB8gWRs -PVa2o903GiAsv0z20ATXQlkLdRJna/GxkyEq+rw+RINSMn/OVVgy2rcCgYEAzsoN -juYO8RZuM/XMCPMyhPPI38aG1Nfld9Y1SVmmcBqIEr0An2PnsOtdZopY5q1CRgvm -gBkL45PTmTgKg6Lb5j8JfgH0rhNE7MpCFfchvhtogVDwTJEAQo+HViil105BMHxS -/hgTxyh9qdz1veREnXHoJhBzUcNCLKz7o/f+3eMCgYAiAAX1fYHCxLvsTIXRu988 -2ORK5lz63JO18s6bCcDUGdSSJsNPmjoavg0XOEjpM4wiFe5LbePuRmvEr57Gy4BQ -T8I8smgVExwzCG6H8PfZCGfmEK41yxoRbHfz6KuVvB9k0NXBdpu6ywT95IeNn2aI -wF7oUbyGCLBJHHFynfPlewKBgHR/Ph4oG3jU0ybwrY7JO8fM83imBmW4b20Qv5pg -KDT1rX0o/0XMacWxA0B2ZlkmeLSvlZ7K/XirWkTyXnIEePAAyV80yNycvHLOC2cG -f/ryw/A+YfIwqj3VUEBIzA0859rh33uIovPLKuhcNBFTnRg6CLgRAnaokwpKNcYN -O4dTAoGAI2/q31dskSE7Z4GsFZRMBtfETSpp/QSrgFZ5/oznkyZTLdmW6OLX2f8W -S05eoXrsz7mRuoHV1urAeEKwZVLqum+ANR9vdhnlM0xrB6OWg+nMelLcrmvalMQv -jqAS/641Jd0emOA2l75oOLobT+uugbLY+XImOoCcZ6K1PnSCg9Q= ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3093.crt b/apache/certificates/3093.crt deleted file mode 100644 index 51828ce49a31..000000000000 --- a/apache/certificates/3093.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAgfTMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMzJaFw0xOTA2MjEwMjMyMzJa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAKb0rrza00h4E+Jjm5O3i42FCWE8wsfDEY/A2M/Nes4RWN82CixQWOkB -a/z3tcr+/oAJmbNMHQANubzQW3xDxHpEtGvJtT7Z9Mi58AVDQbMR6xg5evMe/epP -3IgkBb9BUkHLythWz+1m8R5mAK/ZuySu+EP76I9mpoUjg/s9dtBd0fMqA5nRaTDS -t50dbDx6syXyCtAPv+4DIBzM8JznGd51vhhHsZEqAWASgLLxRphFO0uQn7Q6mPs2 -/yjSeE5TDiH5rCoIPwxEw9zJvfYBkVbKlwf6LDvJkWwIci9+joBTpXewt2TquVnI -wVjKn5JSVs/TEKE/g0AZMHbv+yMVRQsCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -A3wvEPNrEol/bThX2U4Xt3AvWanf70kOd72pnvoiCX3DqSLdPKcLP+BfvgVP5N0O -sTn/jRmljWOLZ/qI13FASA5Kjx+x+0dMQf8AQ7OSGMQ+ptwWPYDhXxfjPaEC9nLo -U4CJlvWIPuB+407vg4lyqbBEY1grxQgjQzXgH8pX4ZW6INq1HMy3uMoAeaBQYnZz -0DI8Lv3shZ+wrjAS215HkzQSZB4jdLBTCoA3GIzNPsOlFM/7RyuyHYcpH1UZVVWX -iV2TAwQuHb4Hyez1UA3KJ6nRkoXAyUM6fjTYYs3pSvySKf6RhOhugc6e1EDeQKA/ -aJuGLtSug7BTFNtP72M3MQ== ------END CERTIFICATE----- diff --git a/apache/certificates/3093.key b/apache/certificates/3093.key deleted file mode 100644 index e483e482016a..000000000000 --- a/apache/certificates/3093.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEowIBAAKCAQEApvSuvNrTSHgT4mObk7eLjYUJYTzCx8MRj8DYz816zhFY3zYK -LFBY6QFr/Pe1yv7+gAmZs0wdAA25vNBbfEPEekS0a8m1Ptn0yLnwBUNBsxHrGDl6 -8x796k/ciCQFv0FSQcvK2FbP7WbxHmYAr9m7JK74Q/voj2amhSOD+z120F3R8yoD -mdFpMNK3nR1sPHqzJfIK0A+/7gMgHMzwnOcZ3nW+GEexkSoBYBKAsvFGmEU7S5Cf -tDqY+zb/KNJ4TlMOIfmsKgg/DETD3Mm99gGRVsqXB/osO8mRbAhyL36OgFOld7C3 -ZOq5WcjBWMqfklJWz9MQoT+DQBkwdu/7IxVFCwIDAQABAoIBAEERf8Cu8EWANw+2 -jn3lvQfs35j8G1XLmt6R5G4owUHq1N45q4FV1zEIktPGnx18gCfalgKhGXRZ5RfH -hMBLkRmuCTsxI+hY/eP1Q6xpaAOoah3I2ThDzeYyNdsBXxQJG0v1ZxslymfWBQc5 -7e6bRyqm3q9wUFUDRscA7oFOlS3joZ1DWMlCh4wgZhTe5OOalFRxbTMr3HbTvxRn -KNd73Jcxq/JQ/FKjtkTDTsvhWG4jIiX1xTZFEwP/gLT3URo4wevgi4/vx943SEdj -PAQeymfeLF0ZpauSf0X7X2dcIlQG4OmVaRrZLOlWfo99eoPqOLiM4l91ONWG+QBC -rSpx0OECgYEA1kqgSBT5phnNV51k8fhP42EYQ/Nbd9Rj4TI7T+whYLCw3DsI81Qh -dWLMCWQH82ppkLxC612zg4yvsB4puUyquG7vOcw8PScszvXpqPjiGPDSTY+jIVE9 -G3u8twgdajQQ3lF57kOQRwPozFHGO9JnxSFeHHovnBjS+e2uK/qQIykCgYEAx3N8 -+62fPvbJ26qZFsF/Gm2JCZZarqpjT5ey3t1tLpggnmQ4uRxMgwEWj9oa+WvDP4Gd -Ay0caL/ypReHMHz6dZr2KplWn5ebROqb0DMJeaeSnURm+JUdCjCTMvpcseCGUlHo -5v7P72nn+fBOKB7iUvOeE+GMdlSPDYLJHxuzgRMCgYBcaex7iYgsSL5UhY0uCN8y -+QGE9GNC5zZ3vLj1e6jdUPXE1DTE80hGnmfNuPTw1bhW8cmORWeQWNC/jBKEVfrd -9QF4FIr5+HYLfuPYuhSPmvOm/UXlrWpD+vXknTxKO8/2gH6r8Tk8VwRDcRSjYdbc -nco/T7ZOhCogHI9bagBVGQKBgQCJtskuceRJslcQcIvBtZsQYV9EmmdEwOtPcpwT -2+neSTYEh4jO76Y4slCkxODpJSosOE90ePprrVVZ/pPeu/ynpXahVT0FdsXD4QXy -zLqXIEhQhIFg1Hy3o3CPu2SzgSbdwibBEGH8mjCNWApvE1wMEKAudAbrUVlw58P8 -0cCwtwKBgGkiKVBZ6MzX7udA13wydwc2Tx5Lf/34TqHmoDGANeB+K+T9KYBmfRpi -9Zu2Xty+NNxgSNNvYIaPCLejn8RiFh1t5OVOoerDKcW9TVYMlvfPZO6xMLJLgEuR -jVUyynTDhqpaTWsL7W7r1EFAv+K7Giexe9V3Pl/IMdyT7FPs6oKY ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3094.crt b/apache/certificates/3094.crt deleted file mode 100644 index 426e7a43f6c9..000000000000 --- a/apache/certificates/3094.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAlqTMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMzJaFw0xOTA2MjEwMjMyMzJa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAOQW03rhX0Wm0CcLSpSFDM1ZkMiihc+80gLiimaj4RL6d33LHmLub07T -7BpPdgHKbOabuOWLsCm6/5H0Kt/HP5qZft+IXVmRRwIAvSay7SJBtZcqd6dFdtgX -xLKvdd1MoClElM77rys9FT6TazB8xTgxO2K/3ul+rG4wh4cGL71quQMM3zAE3QOi -eJ0GtbvcsP+TiCmy4cYsp8REo3AZxYIX9Bwyj7kJt5Ryx3FYXfXCEpLdPk8Z4iwl -3Q3MXhLtllWnqxu0O65sztdPb+9PaHGB/R0RzPZjQZktVzNUn7iusnj/GAsd5Kd4 -G7gZMGp+P/JHeCntCfXGgh9xsevn52ECAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -LfTzIpzRugwZSC+UKfJedAEihKC3LYBNQLR838doI4eLxBPd30XMh2YrdGGu6AZ+ -LeZ++DUKOUgqYC56a3cU2ocVhCHE+G9k4AzL1ZpHnZ5Vrqt9a+yDLUHHC/iXbT/p -Awmi8670Y5qNDGKQivAhlIbgIXjrPhvQyyvM5v0PnfVPx5M8WxXgZ/hbUz0b+43U -kFmfodJB1U7eu5bUEIBuWP5hPjYfYP/QANCF/h+xC76UmOolWroVqbkyQq5as3Bs -Dkh2Ul/pgzlDWggCn1gG82k7WUt2CyVIV3k5q62YuQ0bBDQpimnVRAY6beoPMwIs -kHcuhhjV3ayeZ+sUyB4A7g== ------END CERTIFICATE----- diff --git a/apache/certificates/3094.key b/apache/certificates/3094.key deleted file mode 100644 index 4b8fbe1e24bd..000000000000 --- a/apache/certificates/3094.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpgIBAAKCAQEA5BbTeuFfRabQJwtKlIUMzVmQyKKFz7zSAuKKZqPhEvp3fcse -Yu5vTtPsGk92Acps5pu45YuwKbr/kfQq38c/mpl+34hdWZFHAgC9JrLtIkG1lyp3 -p0V22BfEsq913UygKUSUzvuvKz0VPpNrMHzFODE7Yr/e6X6sbjCHhwYvvWq5Awzf -MATdA6J4nQa1u9yw/5OIKbLhxiynxESjcBnFghf0HDKPuQm3lHLHcVhd9cISkt0+ -TxniLCXdDcxeEu2WVaerG7Q7rmzO109v709ocYH9HRHM9mNBmS1XM1SfuK6yeP8Y -Cx3kp3gbuBkwan4/8kd4Ke0J9caCH3Gx6+fnYQIDAQABAoIBAQCzPGy7Z1ciuM9h -nzHgPB2vUO7Be1WDxXGS6sqvlaBM9Z3osDEUtSGq5EXo9wBYr+Wb4ksNtxOb92LW -IvV+HGkS6AQXTGVu+Qa/wCzjuD84aEJ2o9ybCa82aJcdg1wvpwNE6qu1a3pflASZ -w+a7l5Czc5yjIPveqLh/botRw77ILRWfazlhtrHZm+FGiLlIbYxiF6B4WR/POWmB -Dsr5+uPO+GNNwCBNqizR7gpRXlWV8upU4DyuYRiDyCLom1bk3GBYIEulnWxUbHZy -A5GAv45OrF2tUN0ohXjnc/7w6g01F4cyRp7r7zOBg461xPKNFg0zLMBDk06NcsWR -G4gIKcABAoGBAPSs+SKoqljWNHalm4/s7JIyyW+mkE0G+jCMZ3cuthVaCsi9+bKU -59dO6kLZyqlx53HRT3vgwMYBMOwnqOkY4/2Ab3wB212tD8ggR3l5qErTT/FW4tCT -238CSxNq5TK2A0oj3iqiX8FUToN1M75OyK1LKUb9475bTDQTTpDqTk+BAoGBAO6l -VBhn25UOmgkIcuIehHym3x6oB+qfN+j/yoCJqBkr/MYrmgEfEdFWrbLnUqgG3SbZ -9Tm4ETeA1JPC0HIh4zxaLV5Vq9df/CjSnpAO2ZCX1uDgiVL9kZhpchH4Y6oEamgv -M6bUdgDiEd9l2minSdUtSDVs6xTriUMcsdjUp4fhAoGBALYDqz4GPNrjVpngrq3N -sVs83q7pOLWkeB//gsSdgiS2HAmjkYowzZtVAF4EyIduzZ7U940O8DkcD7nN8xCc -TJZ7ofOdKgQwxum4YZNTVkd7lR/S494H8CQ2n4TtY11rG11e+1m5+wPF5LZUTM7I -qu6HWEiQfIhSQIkIx8x0EReBAoGBAOJtz5rQgBGvpwtHDunpFr/G/RBzUf+VTlEu -0g6fjfVEPTQyDo9d0WQUn/6NaWmwCYlhaEF5mixVel0wjOKdsKOE1GMbWk6h7fk1 -zejVjiyZRPJdWS57FPfNpMPUL4wTYHq1voZeNBCmb1rNoyuE/pLbwhWe4HYa/UPG -KCCZtNNBAoGBAO/v3oMhn4/RlbmYW2FN9aU2bWEE2o+YxWxupQ3xO4V6m9GSFJuz -9+VY03USW3HGHGp6M+bbcV0So5OZmXgrvuSSqCeGpixWJ1FFDJMS1F5O88g69qsz -5EncjrGh94QAbgdG2ar+PYxdhuE9aasaH8k1aS++ml02sEwVXPMlZTAK ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3095.crt b/apache/certificates/3095.crt deleted file mode 100644 index 488b823d3f82..000000000000 --- a/apache/certificates/3095.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAhtPMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMzNaFw0xOTA2MjEwMjMyMzNa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAOSKWdVUgwkarBCj1OIfsvi8keadgkbRhNRkiaNKTVUFIxZsTDOt/THW -DfUaucSN8oVWVcCYK+NeKieSyBQVXaCYUoU8o+J+K5hSRe+8JxakJFSX+Lhtj0fn -WG+OWMWpjhomvS1afujFBlVCzxfLB+TLCDKetCc++NMLrgQOsouC8wnjendTVdx+ -isaiZVPHe/Y65rvlVkfpXSbBBz+C6u7OjcTahr0LGEAxYYf5upRClCCrwCiGuSQt -O5lGsYCmuZR5wwjuZQeTZ7i5wV56LoDzmHnmX/9hSEFmCAXSRzMpOzspwqJmnuCF -ErOVYcHyq8gCQguQ18ODDnaekCmMi+kCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -dFpegX2dWXG0yVHp+J+jHlsmzPNWPCOBuLwrzHNIzntav3UEn5oe27g4BpkxbgND -Y4cd0kruWxh5r0dOeqguX8bHwWTXSNc+Ro+MfXoP2/L9LjBhEB9xJKgMShWMf+aw -/z95s7HqV/UghHPeuZZPZrgZmz/MqHbia38QsrgSVA+w3HE4TLOrPVUE0tZSZ+6x -6MqQh0472I9r0KsCbLCNYuhD9GovQJx+fiPhXHm9rXfOoTMKZdAM11Zm09EKXnMU -Csi9AznBv9x8B8wXoeunjoPsgOs7w8AfALJdpHY2B83HtKqauAKozw9OB2BpaiNo -QKqYMafLQ4M7nq5FcY3VWQ== ------END CERTIFICATE----- diff --git a/apache/certificates/3095.key b/apache/certificates/3095.key deleted file mode 100644 index 406b9f7215f0..000000000000 --- a/apache/certificates/3095.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEogIBAAKCAQEA5IpZ1VSDCRqsEKPU4h+y+LyR5p2CRtGE1GSJo0pNVQUjFmxM -M639MdYN9Rq5xI3yhVZVwJgr414qJ5LIFBVdoJhShTyj4n4rmFJF77wnFqQkVJf4 -uG2PR+dYb45YxamOGia9LVp+6MUGVULPF8sH5MsIMp60Jz740wuuBA6yi4LzCeN6 -d1NV3H6KxqJlU8d79jrmu+VWR+ldJsEHP4Lq7s6NxNqGvQsYQDFhh/m6lEKUIKvA -KIa5JC07mUaxgKa5lHnDCO5lB5NnuLnBXnougPOYeeZf/2FIQWYIBdJHMyk7OynC -omae4IUSs5VhwfKryAJCC5DXw4MOdp6QKYyL6QIDAQABAoIBAEfkXa4GD9JlWYtC -fk1Du4ETkLIDCmBMuIQ3vDRpwznji84Z8z6ulN+AfpOD/LwgCxJ2vjL/q46yqIAa -ZGYs8m76e7r+AG/XUM9x0h5ACevNZsBVriAWFuR/mgo9tR8430LKvOfvd8yxbfSU -N6E8dRc75zBFTFasMInzOqJ8HR5VUshjJPKIm5P4I9eNbx1FOM8C5e+/XBBz2WEs -yFcD7KXwWp2YonFfKx0o7+I8K0AV/MxufxJUdodQnsO7t8zA4lhMWg7tHKqnfiMP -p41+gnCaMjGT8LLuSmCqp3BoYnPJ9q81McHxtkdZTW5AtglQo9YIHGfulmkgdpat -69UT+AECgYEA/0U0vzhXYWLygV4EY1Srh9jHZDjLTcvcmrQr3xbUc7i7TcvMbv1M -SJkqW/TsjHgAg0Adl6MzzPpYpjhJP2jrav+szPNFjNoEI/KJfMczTimHB/hXXLS7 -VOp7wQi+aOr2aAfsJ2eW804whQ6BAJaEZK6KZBBE99UL3EYhNv+5YeECgYEA5TGV -1IHe3yi8t0IOrSBVmEWjVJWDYsmJTz/xII/X2FfJ7grlXN1tmCqzz7FMygWX1dbH -byQ5exE0XxXCMem6hf+bj1N1o7qrqo9H4ON+tNdqiv7ZltNz0S3sqP/cgA46cYi5 -eMTzVKK6BQ6zkZ9gmqlDlXZw8wImI0yMBPwhewkCgYAglwZP73KAdXB+gbFPuSyZ -EF0Md4/FI+TLP3tmZPTEvW30VbOI6//EOQHGcbONj3iJSTM9+9EON1wABKmdVdjQ -dUnrdJeJjv/+UuWor4nmTbj2lIcax9wu0CzyjRo6LN0+lNxaf4gvEelx41Mm7xCC -BiKW+djER0fXXIC7E9ToIQKBgE45fknpiYfg/4gMo7WzM4OlQPm9jfpJjvPdfw7+ -CU1tqR312hK4AI/PA0//05WgExKJG8hzNKssVBOf+YfPnjnd49onQh9/ttefz4iS -HMzcOSD3mow/32elpQCJU1jhglD9uU/e6K4aXCMdwWwSWYZv/wEkS6ilMx8ZITES -XNsBAoGAOF1JbcP2QIoe7QLCr/7Lo1YSNtSydyArFEb2hhvoucxf5KIO+QMFlk1J -MojI1/W2ygyRcHf4Ca03GIprtKf16YPbphS62dic5SNFfLHSp8k+aHf+pofK/n+c -3EEZnopMC9R6AyQjaMef6Arkin24/tBUnR+XOZmRZUAHkeIL+C8= ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3096.crt b/apache/certificates/3096.crt deleted file mode 100644 index 4d94ea5b36e6..000000000000 --- a/apache/certificates/3096.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAgD0MA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMzNaFw0xOTA2MjEwMjMyMzNa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAMCb3ZuGtM1SjKAcXyMNkokpFltwsY8+X8VXizXlBo1WBieejcFdpQOO -qF5ZP98yqK8Sw73sALaCfYDVvM/OaknUWMoezJhf6U29k2dfaA2/WeVNA/IIleeq -htb0N8U+2e+Ak9Sp/vzoF7b5WAvE8CY/2EhkiV1KxIKKcO5D2KTwTk6Dlzr2ttkG -BkmU44wPAZsYs+9SsuoQ8n1xKHy8EmeODUZ7x23IMLaoXgNclsokJvZ91Yo8iN09 -9ud74tLZL3PoeyDBRg75OUDDo8w3KvE/3bzZbe+tSnZRQ2vWWPWLoIabdnid5+FB -5933tjGqmoZYSotkzqAKMGR2ge/J0a8CAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -PcmvREedgd6mTh4qBk+6YbFiXUPzTqnAL8ghkVyL9sUJb9ixXby8kupdJaygjjKq -PWfS2brH9ZqT+sJAHHdJfolB6mbB8RffUwsGKXk/SmcPtuyz05LuWpOO0WJkYDOB -qPMInfWUA/EFQnZMpH3Z1O86hi43ljUb8jWAFLoA2w6AlW2LMcNIpz70sMOd09oT -hzE6DCwLCRlB5dRMDVCKVVl99PITCp/uQT3bzo0ZcUw6Www/Spln7lpJrbX8Be4w -ygTXeA7ZIihKqtplTpuTOvmZPd4VfULhzvAesDHX1xPVsSOBKoWEMboBnT0gYmef -8+rD1Gcl1P3ughxw3XepzA== ------END CERTIFICATE----- diff --git a/apache/certificates/3096.key b/apache/certificates/3096.key deleted file mode 100644 index 98115dc745b6..000000000000 --- a/apache/certificates/3096.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEowIBAAKCAQEAwJvdm4a0zVKMoBxfIw2SiSkWW3Cxjz5fxVeLNeUGjVYGJ56N -wV2lA46oXlk/3zKorxLDvewAtoJ9gNW8z85qSdRYyh7MmF/pTb2TZ19oDb9Z5U0D -8giV56qG1vQ3xT7Z74CT1Kn+/OgXtvlYC8TwJj/YSGSJXUrEgopw7kPYpPBOToOX -Ova22QYGSZTjjA8Bmxiz71Ky6hDyfXEofLwSZ44NRnvHbcgwtqheA1yWyiQm9n3V -ijyI3T3253vi0tkvc+h7IMFGDvk5QMOjzDcq8T/dvNlt761KdlFDa9ZY9Yughpt2 -eJ3n4UHn3fe2MaqahlhKi2TOoAowZHaB78nRrwIDAQABAoIBAEmxmTmvca/5fKqq -EFCGGeH24YH8/ULUV6pW04G8biRXnKU+CfjJDqDszUjEFycb5+SMZm5dROyPwtsv -bD2KOaqj35D99cP7NnWzKhnsLBDOfOO58t+BH3HzEgJekJQcdyAm7uj4XgJ//srY -XjKqmEPaO7N/G/ug5s0XkRvow5RfXcvRcbw/JWc/6U+pY4Q68D2A84sLgeDTLZP5 -OF4TvhVu3kWmtGepIArgKp/IEs8c/yz/hVC5nMiOAJzS0VpemsQmFg7CoyUqCgRV -nGjsNojs5seJYYw2CewVVGfdT6lAdQf80E/CJTCd9+lUVPBor+vyqFkXhFYGjHlU -29PiYrkCgYEA/5YFsMcZYRyTCYrkNWr06RzcpBQXLAmZw9aEEj4UP1/RxnCKpd2h -YuAhUJjZPeeyTf0C56zbDMYC9S3gviR+GaYARtZ2lrGwuFUwAdd1Ro5ZoQw0QlFf -oktVisLEVHvOJrMlx2RSosxL/WXTFF3GGNu/RE+BN9MpeSX1AgWKa9UCgYEAwOu6 -7RogG5b3pGMa3bV4WALkq1MhgQNkKHawW6paZRLQKEiyC/ypXVIMcWWgOTaSaZm9 -Y5OJgq8tw3MbHa+M/LjwQeFkwCFU96bCVToqIAnMN2Wn3WNb0OGypdpQJXdr4TOa -WliJ/I6SsiGGOIVLYgqfBkHFYAq6M3FA1PYzXXMCgYAJdQqm3OcigcUrEDmbhGal -jYzYgWnOFljbNz/R0Pw80BXaCuYGdyn2l6aD7fPz53PgkOEfo3TDhzwqyFTNlFoa -JttRw7PFpbONTpGlL8zGHJRScjoozgwE3FbA+K39FkutgOl/9EVegsK5EKB723Bu -EQuFwo9cenLJac8kEQJrNQKBgC+z2jO4iwnnaXKHYuRBc/FnPb2zP4yUFxb+ShtQ -Yyus3DWpzAS0w/gkSplbhKPA/7EG59KQb6cVw94ZPzI270iqPhY8Mlpjo4vc+x5x -1Gq5oXptM3XFlLVwqWjjM4AgKFe2F8uRKwV9B37uVS7ynrIuaCX262QVIveHYH2I -JylLAoGBAPR7dAt/zlww3K9uukpUkh+0k79EsKujqwUjuIai+UJ2RzYo8lBOFRy5 -VbsXe1/h0QkUF4dddac7q2jt5u8dzzYeAmyX2U6WSrw1BwC4FYOYXEs33WXWH3XY -F08BVH2bAdaU3Xo7N7NJCiEOFhR7TfN17W1FaDPAfpD6On6GMCyU ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3097.crt b/apache/certificates/3097.crt deleted file mode 100644 index c344c29120b6..000000000000 --- a/apache/certificates/3097.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAhsBMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMzNaFw0xOTA2MjEwMjMyMzNa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAO9d8SDHAqlEI+ByExwFzFdTph6XcPZj0QZWV3kb3/SxeweovPgla4pr -FkHYZN5A0thB3bE/KgXEjzvIGJ7ICkSeE1U3ulOFvdwGFIisM9KDUfy7x+tDwiN2 -7c6PfJo5SS52M5a4TkH6FwaVxxBsSAlcK3bTmQH3XPRW5RvWs6R0rOLJfdrKBlwJ -/1nNGhddnma0rUJEGqb2tri0WuOB/sc90hHVNf5I2cexQ0uVY+U8Q8KF14fJfl3U -JucAnGrxbOpQUGfidpKquWrN7BTIKr7NxJTyD/FMG6U6NSigVKGCAq3brW8ow1F1 -WzpT4f5ca75pAeSQwaMw3T+w5ebGotkCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -Qrs1BPYsJuEd8p2B5YNkuoEhGo+zd5yi+st/q3TQ+UEvcJNi2CFapbhpV41wQmyD -ni44aWL3kI5foifmm1AwiEnwqD/MVf+yqpNOoQj9w9aKl6yrEQxfVlBcfEW4RD/g -0nNmJKHwoDxaow1/HSpVdL5IEhXcBbySeTdOKIaMdA223Xu4OZMlxMR3cZNFXELG -TJUD5uzNhjnDERQ6w79rRggGtz2cXHv91IbT1mS3uq1hqyw1s9diVgn1a9A76uI6 -agHJ8DZTMuo8Z7nvEtwHP9S5sHHNMWZcUobZVOzVy5ff8yqmT/eOLSlyD1iLu9U8 -fweQX15xuqtSGDRpGoONJw== ------END CERTIFICATE----- diff --git a/apache/certificates/3097.key b/apache/certificates/3097.key deleted file mode 100644 index 8c8c39a6cddc..000000000000 --- a/apache/certificates/3097.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEowIBAAKCAQEA713xIMcCqUQj4HITHAXMV1OmHpdw9mPRBlZXeRvf9LF7B6i8 -+CVrimsWQdhk3kDS2EHdsT8qBcSPO8gYnsgKRJ4TVTe6U4W93AYUiKwz0oNR/LvH -60PCI3btzo98mjlJLnYzlrhOQfoXBpXHEGxICVwrdtOZAfdc9FblG9azpHSs4sl9 -2soGXAn/Wc0aF12eZrStQkQapva2uLRa44H+xz3SEdU1/kjZx7FDS5Vj5TxDwoXX -h8l+XdQm5wCcavFs6lBQZ+J2kqq5as3sFMgqvs3ElPIP8UwbpTo1KKBUoYICrdut -byjDUXVbOlPh/lxrvmkB5JDBozDdP7Dl5sai2QIDAQABAoIBAQCl298wChXC+c8u -P30URsQ/oluSCPeiEqoMjRlRdsopAC2yse42t58bq3Yhq/LAugQfCwy1O4I/uuJQ -1yaQJyZOQ4Y730CBjUNwSNpDlabW8F2IFQnC8BF+h3LiVTROnPEje43lmtHHD6aS -zoe/znff3HjVfmsgHKnROMDKGGwjv8nBotF9O1uDm4EQyITeNubpcbe2dvv8xmN4 -kkcWV+aLY7+SsV+rGwslYracFslfwH4z18iBIsGyms0wA/0QnaPf96JM5K0ga9tp -rd3ulNujgEKc6RvJQoXitccbZ2pfEPTSkLFVB1lqTb2pY93RZP/AkfdhnwHP4xur -kaT/KHkBAoGBAP1ugyVwS079uzjRcoGCwDFu+eGX91ipfnZFCE7Yjz/e2iwA8yBf -zCjjMDjhluemEV8xRjzVtAigc2NSzkKHYP4xa5Ge+gnZdILjnvRGdv+QVericmSn -tqTxvbwceQ7OE/PPnGHjEnbsdpWhUmHGBbw+UkefFHBFpgjuTqIG1CqhAoGBAPHK -8OG1fu6TXeh8LfBBQBeWWe7QOt+We8vajOb+87AUa9zTPn2desdLD3mrVE530BpO -i/vEOTgJT5ra97Xe+KvBRJF6y9Tp0rsQ4v1CqbVdC4EpMhyHivL4fWpSUbZeRYgL -+ZVmE26fAkGHkP/to3GNqkxSZ4NtFcbhUmMUNAU5AoGABdzEk90hINalug6+Q1iu -8XXLufg19IsXLc0y///qcGPLUDFFbn5IzrlSqD4vq3Qf+r+9DDM1Uu3DPYzw0IEp -MTgbcOboicnJ9C0nxCbNIeRI2IIce0+V3gLpjKxr8He75mvrBiimiLG3nIZ6zWAz -ScN3S8jWRDKYQKSilQTra4ECgYBO1sYuQlit/90Z5guwkAYO6tZOGRVpPA8HjC5v -T2gz3KTC7xosKUIUY3QbTvMBVu3C9iOMpxGlJNwQ+R7V7WsVzcHG0cxOkyNEHaB1 -xdvCKCGNLtqJFOUIjl+OYGMGXLy9PHJX9V2Wr0A0D7kGyfyGFRQXKLNZ1iLIo0WS -ys6feQKBgE4ILaDjQtMBAikcK3QVodl07inp/BI+jxSJ87Y5IJoa9bsYo/E1rfYs -C6QRoDfXa7CDaCc2gon3jvzfUsSI5QDZwtLR40I3MfYdG2dKaf4dhKd/By2Gbb0H -agyR9evXVrq53Oe7xtKNmwp6wHFglpUYTTcSVsnW9bZIXquZ9/Tw ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3098.crt b/apache/certificates/3098.crt deleted file mode 100644 index 753496489362..000000000000 --- a/apache/certificates/3098.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAm0OMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMzRaFw0xOTA2MjEwMjMyMzRa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBANGTeGZ65sMCjTypy9vdfZz9KbUMpCj2pn2SjEytFutyf63+b6+Q/aTp -JTBkvplok+3wihIH9F+uaYnPSWdqXlBWwDGl8p/ZhWBf1/C/Jr6GiBfCQ13X1Pmt -Aq5scMOYl28czSiH3wB6sMvaBAEx0wgLs64NgXZRU/TuqGsa2AQ1mBWl5yt/vm21 -b9V8kCcE+jEBg6hm+JYEHB475Fg1A2RkYEwI0cHS0Yux6Yo1tOffhxxV3ojIHCpm -H0klzXXFMyHolbxbwSgvCS1KeNIfMltaopLpAYAQkI6pYRl0UXQ/ZGFS0ywd2AWK -PePf1Ur8q4x/Pg4Qm+aw+lQoLRSD5psCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -AY7Qbsvee9XIpHpSkJeQ34K0ziMzqXX0gkJejDu43RSVWizbbvs8Prc5lsydrQIy -pNtHVXmePNRi/6DLJC4iICDh+UU6opyeElJlVOljprtJs1vPISSf/7HW5UOLgxjv -SIkO3/baVX6y8n14W4po0wTqyfYbvl2jZvaLhgNrkv3YCgqMbjWJP7By1MNIj45D -mrzZwZWcvnAyFNi5Yt2AEeMqWSvcw4l7bFjuneb4M4Poi4yw1yhqFnasqUx8zkIr -7ok0B0rJAtBWGchr/9iDvELoxgeFVVPjznakwKITQj+IUHQQ406z+UE8wZP+rgUK -HKscRBr9F8V9EqKAbzsTYw== ------END CERTIFICATE----- diff --git a/apache/certificates/3098.key b/apache/certificates/3098.key deleted file mode 100644 index 3b4857505503..000000000000 --- a/apache/certificates/3098.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpQIBAAKCAQEA0ZN4ZnrmwwKNPKnL2919nP0ptQykKPamfZKMTK0W63J/rf5v -r5D9pOklMGS+mWiT7fCKEgf0X65pic9JZ2peUFbAMaXyn9mFYF/X8L8mvoaIF8JD -XdfU+a0Crmxww5iXbxzNKIffAHqwy9oEATHTCAuzrg2BdlFT9O6oaxrYBDWYFaXn -K3++bbVv1XyQJwT6MQGDqGb4lgQcHjvkWDUDZGRgTAjRwdLRi7HpijW059+HHFXe -iMgcKmYfSSXNdcUzIeiVvFvBKC8JLUp40h8yW1qikukBgBCQjqlhGXRRdD9kYVLT -LB3YBYo949/VSvyrjH8+DhCb5rD6VCgtFIPmmwIDAQABAoIBAQCpp4TXCPTXtrAZ -BKdHtDSkqnhh3PrjQlAi5Uh4JcKhFQ5xDsDg0jHSlv4I//UfgP4HpypOUGwuLKW4 -7rnQYtY4mRF634jaiB8lllDbzhISOBvhh9w7EqaQ+9Jo2tYqMNOeGiWmgt8upyOJ -0lJdmTTplXd+FebQniOl6rEiCxgFxthcAiRi0yQ1A4M4eMUFuXLm53wQ6uyolMgs -t++2jHfGSUeG4hcoJoZCZo7/uSeE33ZbdG8xO1QpX+tJHTf5pknlHYFzSjDVHXB0 -KNPAawYXfY/kUsSVtaRvFIbbfl9PrszhB3sU0QDjAzQS9+ELGWeZtCCpJ2R+Jo90 -ilIJp49RAoGBAP36H2LBi/hN7u8DtanTOSdXdOGNvoZsSm30WGLteweqUic6yQbn -7bksWBExckI6/AooCZC02qp6G/wwRdJ/drFhSle1sSYZBneUowHBaLhu761NHEwt -bZ10S9v8joYIBDVwTNPeJsh2BzzfPc/CmgiaNz/0gEea8XQQxYJm6SFDAoGBANM+ -z5hwdYhZXNYVbHwIJsnR4UZqW8rSX9y4nN1t7f6NBXXyvYHj94ugasLKXIbPu4/b -CwmwxHSfts5QvFg2gcEgdSMZ++1NHWUwv43B/i77rp4UMlEAThmIlOVpnW81trSD -YTmeHSxFfEM071zLc2uqoXZz5PLUoQP+DkD7xwPJAoGBALpmL1DIohTcBcdv3o1E -U8cW/dZotHNt2PZ4BcKdbtVCYMcf8thZsfRcokoEE0qehcpidhq5UV8a/Z0KRMRn -/lHTCL/0vo4qgb+T3Er2iwgJi2iSlnkmQjP0XZSX+HZQPd6GjCxW9/nZ/hfj9Dae -KXS00mXi6Z8kDZ/Ui1DYfLOHAoGATctY2jO4JPF77d9P51F9L1/ajXsHuObGpNtb -8XPVbKP0ed5eCeKxPDtkdb3eW0tPMIgjRXtSrfxPbyVuZzITkNLqMHYWP+rhQ22z -bXoeqKDJSq/3Y7swB9kztFSzxMvMMCgd+wEOj0o7m+h3qf3G0MSy15OQohjJ/1Vl -XGscfHkCgYEAmvY2eGj+4Nv23tQhKjUYVakp3BMVtuYONGJVKUSmL6KnxPiTXTyp -VgBs5Jx5iBzBVVVTce4J+zSIBpYqpBKnaFT3bxSB61I7np9trshVYX9xg9vbgqge -mmzI7v2hoe+6DHRKpfsZipxCOM/tp6SjiKRKQ8AOUpvDfqE9SKBIFS8= ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3099.crt b/apache/certificates/3099.crt deleted file mode 100644 index 3a57271a9a97..000000000000 --- a/apache/certificates/3099.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAkmIMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMzRaFw0xOTA2MjEwMjMyMzRa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAKqhfXlv3YZ3PTZwPAfaeT7n2ppTFkcs/BEqzmmS3xB4fSyCyN6Qon8I -HEHmBwJ/lAgSXkebcqvp7dZK85reByMQ55PdH0J74bp1gTcxXLQzyaOBBWR9aces -251VlbWYW7/FuX82zBr8zVambtOl/kzLF3xNiYTNe/vcwFxpeUNyx0WY2Z10O3NS -f00SGMhm+ZHkMebj8Qg8/uD+awPat1zb2xPm1t0wr52VTnkzKeI4Rd7tiKDC5qjw -ZOCr70Z/fqXreXfS6iOQhicvWz+B8CiFUTisDpfBGVU36IP8ZPu90e7w3Ulzvuvt -EpfwR/w1AzvpbIKbzSxIG8eAOuxSXL8CAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -euLiS4ZHue7ud11rfJMhQ2GSDDa1yjGj+3SrceAgK5j02XyDRiOPhJEgN8J3CMeK -ebLxy7jugIEnMUTWMaI3lJDAQnUnGisTl2udWvnwZh5IogtPrMsqpaOTbCat20j1 -kBwsEB0Wy6cr0ec4BTNTOw+U4FKhtU6LSDwZ3sXvDStgaRbuefH6rMFQzi6t9GwC -cGrbISGh+1sziLsn8dxqeoK8QZ3j5VtDBIXmLoEzOV5x+c3J6388QJ2rqRjVxd7T -b6VSeXZpl/RABxMIdu1YTaCMPel9DC7781gyIM573oIUC1wp64pFZ2VSbLT/dFOd -SUhc/8c32mAVqDSkA2N67g== ------END CERTIFICATE----- diff --git a/apache/certificates/3099.key b/apache/certificates/3099.key deleted file mode 100644 index 5c1ffb003393..000000000000 --- a/apache/certificates/3099.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEowIBAAKCAQEAqqF9eW/dhnc9NnA8B9p5PufamlMWRyz8ESrOaZLfEHh9LILI -3pCifwgcQeYHAn+UCBJeR5tyq+nt1krzmt4HIxDnk90fQnvhunWBNzFctDPJo4EF -ZH1px6zbnVWVtZhbv8W5fzbMGvzNVqZu06X+TMsXfE2JhM17+9zAXGl5Q3LHRZjZ -nXQ7c1J/TRIYyGb5keQx5uPxCDz+4P5rA9q3XNvbE+bW3TCvnZVOeTMp4jhF3u2I -oMLmqPBk4KvvRn9+pet5d9LqI5CGJy9bP4HwKIVROKwOl8EZVTfog/xk+73R7vDd -SXO+6+0Sl/BH/DUDO+lsgpvNLEgbx4A67FJcvwIDAQABAoIBACL/+x/kvVjuroSz -Iu0teD9aCbIsJt60sIPI9wwaz1yuimaN8SwOGPbbsAgoafmuN6wsMGCZ1zzCQEH7 -n9p9fpNHzWi8K8RUaun3Xmj23CAum0bJmVSSkRcfMvEj9BCKzw8YPMOGdvl2L5x9 -iTAq1W3lHs0ljnbKO4tfLaoHDJOz6rBWbI91HkV/c7Ag21DVlAHyihH+ynUISdev -Jp6fdaipsXvP+BaoAOso/9YBDH8uCmgeEGLyBHDZEeYqEba8iuGUAhyy3xcx2jtU -MX/rma3A4vwJ/dixtXeWnQbfH9+EKudzqliz/gmz3aOFDGnelHIdRC4AyTGCoDQL -v+n0txECgYEA2hOTjx6UB1bYY2lF1wwVI+YD6d0UeUxg8eOQj51IQoXiRzS5zA3e -iIz4jOoC+bcdh3G6yN593jQ73NOlVc6/s1dk0qwSlL+Swc6ygZCxP6W5dJQnvt11 -e/mlI29EcypH0Qxln+sEnqiX6pSj6Ni7b7trQ21PWHTZOF+CIrtG3EkCgYEAyE21 -I6/+qLiZi8cR8nHmc72JtbyrGvU5GVmBAkXCRNkev1txwKl/wCHi37R1UzkNkt8R -kN+42PH7VuoesRDyvhG93To44dCsQNQlsSzrIRuNLRVPqKDOBUWOwk925balqTdt -q1F6Z5YT8f+hAGsdvjjWjd/m1jaDU8mSWQ8UIMcCgYAaVKzHZhDHhhPghPB606ml -yPsF/LyhHLjD3A8zV/FGnvXAVTxtx+rrn+HO2d58GkEFfpTn9f1KnBHySte2sZzx -4YZ57W7c6PimT/e7ryXHopHu4oieAg1SZ8UpryCbqyo6sn1+vpizM3YMS+AymCCh -kAaWgJdI/erQZK/I08XtiQKBgQCpl+nTwpLKxinziGSwszGdM5DimFEDbTegOAEc -LHZVFsSK3uEMcDcjNU3DfSaNhVPx0/8qe9IllZTqPSYpY6Ezvw/TvRUmVSlTZoxX -XCHlEU/SKSYeL7DgE8nQyblwu9m90ZmAoWcTR6Wxk2/9S7SON8+ppjbrjpJZIeVQ -lIzFRwKBgEM3RzeBV7xLJB/oc1cbD0MoRfYHHIhPCwGraIk+CO6JxY1Kz+OLmwAK -CNWh+QtW/zmMP0cVlDPCFSp5FcMx7UcYlVg1ZPCJjtlPTS8oaEpTOoKRQ9wVIfUD -KVvzyCthBZMdjJR4oBJyeeO+Ttd1VTRmijfZMEXAdZmAVKLRadjE ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/3100.crt b/apache/certificates/3100.crt deleted file mode 100644 index 8aec941ef542..000000000000 --- a/apache/certificates/3100.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrDCCAZQCAjAyMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNVBAMMGGh0dHBzLWV2 -ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMyMzVaFw0xOTA2MjEwMjMyMzVa -MBQxEjAQBgNVBAMMCWxvY2FsaG9zdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAMN5UlmOZnSLQTANRzLe/hiJ9hZnb83MfXtbSqiWz7XVJcJcpPdCLFcZ -SqeoOD392ijHJUv6D8fmOS6HWnwcgoIyw/qBKoCTOOyJ1d0zkINXYdzd0Wctn133 -z2c15AGxrKLEeng/Ek51HeDl5J2J7G9UqEWb3a9x6Qwp0YDZyXt7sMJw7ZV5FKOW -qNIKQUcrs/gQsZn0s1mA1Q6SmnHaLwOVIn6pVv8JlA93b7OVlx7s42QOGBcO6WSa -Qr5nTHurJ3Gub6xLUDGyY2gFnsNiZ3uIVu1oLU2+qXfbN51zsiOQOSlHZvT+fOOe -sb+hjgZbQSBfdPX4jkA4+ZkcGKCXB/cCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -D9bfRPf7dGXfRZiZg1ERLi4M762I7cqEpdhmCiIByav58VsJ/BGec12HqJVnM5W5 -rHyDQ9BhkBWRqcfJPG+UO2cq5ra9fPNAvZVfsMlL23zaNXc3Va2WPn01fQpo9Lx7 -2FtEMOKz3X6MXLDTy1ileFal+I5fAXITHSpHdRDlpCC77neJHC456MjwwCNd49GE -w1MLbgLsTWoWS8hzdBhQXN4FCkQ5ucQO/yME3Rs6V/ImJU1+AKwZo+X/D0Mij/oP -muf8JiIfuBlTnlLCYg3x/S2y3S4cTcZvYKPyXgokxxZr/Z14rBLiwH3tynAShOiF -Q7q8MnCEcacTMRT1iRJNFw== ------END CERTIFICATE----- diff --git a/apache/certificates/3100.key b/apache/certificates/3100.key deleted file mode 100644 index 9b40f1340449..000000000000 --- a/apache/certificates/3100.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEpAIBAAKCAQEAw3lSWY5mdItBMA1HMt7+GIn2Fmdvzcx9e1tKqJbPtdUlwlyk -90IsVxlKp6g4Pf3aKMclS/oPx+Y5LodafByCgjLD+oEqgJM47InV3TOQg1dh3N3R -Zy2fXffPZzXkAbGsosR6eD8STnUd4OXknYnsb1SoRZvdr3HpDCnRgNnJe3uwwnDt -lXkUo5ao0gpBRyuz+BCxmfSzWYDVDpKacdovA5UifqlW/wmUD3dvs5WXHuzjZA4Y -Fw7pZJpCvmdMe6snca5vrEtQMbJjaAWew2Jne4hW7WgtTb6pd9s3nXOyI5A5KUdm -9P58456xv6GOBltBIF909fiOQDj5mRwYoJcH9wIDAQABAoIBAEE+EyBVCRlJCV7y -b5spFoI2Oe7MY2K7J/6uP8L5YyZ7l/jBV0Y3zfjcNjCzUuJOAiyuG2K6ed3sl5VS -E/9svJqcOxE3X2o+uTcp4jnMZiWQWtePKb9YWOLSPWVjdVCjbs186quL0Z5iNLDF -yoJScJnQFcH1/g365R/sLULmbftKfhghyRSqYl7ysUyydQ/uXOkLTqyZA0Hz+sno -uvBXhB5WZrH4lOV26R9pIs48rcVmAHs1I8n7gfK+Gi5bshSZ2RqfC7f/D2/QCu6s -+yBxD909kg8jyc0IbJDO73Mvfg0ExQqJlcEOQwgVUwSSQZn6iLQUYax11c1Zw5Dv -pB7iaJECgYEA5fVXXZmkHPMqzq+lPofsB/iPLMQgSu6ddPMFehRzcghF7Dwnnc7s -NzX11OP95qrS8coF4b2OyGwWtvHp9lywYX5wNDOUF8YTGnOZ3j30SfL9r9SXGncX -BI+igZBrl6iq8N4J7Ixlg4y/HZsOHunvlL5Q6UbSFISR9fFZXEOgUVUCgYEA2ZxA -VVIvkCU1baypSof394/mW83mAvAU6z0lSLSiEatMiA/o4+2eR8ee1ld5loqTE0UX -4hhwGJCWTrmgCyVG30VUNRG9egT3VSQr+IpX5hRDaSGAnQvDIODgrNnCgCc071sy -PU8zdS48Kbyih4WD9i1s+LQAUcOFrBsSYHBEpBsCgYBGNjSopYKQPEazuLlxcDrG -7EN63Z8mgdidnp3relcNWC1RRcSq0EUbTmRyzfH1/e5OWOqW1DPGSgpdbVuMFxzb -h6lmpuDuqVGn3+f5DV2LPp/qkbRZJkdm4xwxBxFyytL2nDTXfr53/f9UYMVc9vxp -o/o8X51BGoEeYMRyAUvvyQKBgQC1ahoIB1g3p41/PW51AB2teX3mEyUqVdRauMMY -dd6XNGO9GuZg/nvyA21b69kls6kha3yZtR3enMtyHjZalF0dTcMB6yQ3UWSQynMN -5OeanFIGlzONuXyXMGKeN3x7MjRjR3f+vMR9cGofsW8d5CU7Wmt6ezW49HPAI2GS -nIXc+QKBgQCZ5ihvhTrIvSpTKhxu1+X94/W9EfOmsM9G66m0cU6eUP+TFGI9USA+ -z84T9mkslw/rzIhi0gN02J+w1bc/iWRF7w45zJp84xo6pMYvGx4kw+/RMlSjN0s4 -ya3KevFBqjpZeEDYqqxG1ovUfR0t1HsMdCC7xlBBDasHJeZXdl5lIw== ------END RSA PRIVATE KEY----- diff --git a/apache/certificates/ca.crt b/apache/certificates/ca.crt deleted file mode 100644 index 2d01053116ba..000000000000 --- a/apache/certificates/ca.crt +++ /dev/null @@ -1,19 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDGTCCAgGgAwIBAgIJANf0lCRaPJ+aMA0GCSqGSIb3DQEBBQUAMCMxITAfBgNV -BAMMGGh0dHBzLWV2ZXJ5d2hlcmUtdGVzdC1jYTAeFw0xNDA2MjEwMjMxMzZaFw0x -OTA2MjEwMjMxMzZaMCMxITAfBgNVBAMMGGh0dHBzLWV2ZXJ5d2hlcmUtdGVzdC1j -YTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJsvWAt/C2al6QBHHyn/ -TkcqYPXM9X/rQzfrPD7wChQZviRrKTXoNp8yTRc7SSB5YIVXmZo7nYGHGSCxpWpQ -heO+OXRQo1h753US6f5D2FBD5WSUvM6YJXzQjHvj0QsAvCUFC+CZ1JxcRPEepjoh -pBdjthN/DUQeA9lif+HUR2Ehj6WFxFILV0O2liqDWmc4qyLNkUAIPb/2wK8YHQbd -Lsuyd5w4mym5KzUi4XxQaQMQD9Bae7CNJIZ3Xy0xSqeORzh7EZzU5w6i//GPLiRf -zcTaeblQUhLmm52hg5sFd2qycAk7iWqEtp0sEUlhWxq8kKIcbb0VizCNXZllNpUm -QHUCAwEAAaNQME4wHQYDVR0OBBYEFCpLlzXM+t0G92CkF3BqR1WJXHXBMB8GA1Ud -IwQYMBaAFCpLlzXM+t0G92CkF3BqR1WJXHXBMAwGA1UdEwQFMAMBAf8wDQYJKoZI -hvcNAQEFBQADggEBABHCmrp4VHCJP25Na5GrGoSkg1G4ifR8/9UuIe+y3KIDii/J -QCV++GegGKTzBWVaII5FHqRSv18X1OLLKcbtYuE8HcdB0bamYKRrP7gH1jIcs9d8 -q4QRfOvMM4fVCmLaeMB3s+2vqkYOB/SHkEcu1iTrgHvY2HMxtyqVUrElB8LiDgbt -V9gd7Yt5qyAo08skM3V10wOyIqDk3XZNctFkKRCjTZt9vKJTgaKksSbileiP+F9V -MeHMseOGTfeEKFi6P7tHDHrJqb6NCOKZrG70VzRRpauC37uIKaNkAYAqxBZjFxES -kxQ8z5wes+x5YQuhftCPDbjzv8szeM9CkbbAn/o= ------END CERTIFICATE----- diff --git a/apache/certificates/ca.key b/apache/certificates/ca.key deleted file mode 100644 index 533c2e987700..000000000000 --- a/apache/certificates/ca.key +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN RSA PRIVATE KEY----- -MIIEowIBAAKCAQEAmy9YC38LZqXpAEcfKf9ORypg9cz1f+tDN+s8PvAKFBm+JGsp -Neg2nzJNFztJIHlghVeZmjudgYcZILGlalCF4745dFCjWHvndRLp/kPYUEPlZJS8 -zpglfNCMe+PRCwC8JQUL4JnUnFxE8R6mOiGkF2O2E38NRB4D2WJ/4dRHYSGPpYXE -UgtXQ7aWKoNaZzirIs2RQAg9v/bArxgdBt0uy7J3nDibKbkrNSLhfFBpAxAP0Fp7 -sI0khndfLTFKp45HOHsRnNTnDqL/8Y8uJF/NxNp5uVBSEuabnaGDmwV3arJwCTuJ -aoS2nSwRSWFbGryQohxtvRWLMI1dmWU2lSZAdQIDAQABAoIBAD0UdmAYAiHF3Z65 -X5/FGEdUe9Njd6GAtPVWhmDzU9Qzia6F6zOHkbA5OTSSpia8/2ucXh3hpw3rYc2H -fmcJCJnqLm0ErDZQlnpzFlx40bRN9QUQsfvS0LZ+0zyUH5xoDqW3hcRCZ/efLZeG -C8FHqnF2Upz73fnYooU2isUVK38j/JDeiaguP4F+jgSsgnfcacMpB76uaQFqbkVP -nknO2xOCEQiDexV/orzlZxe2QMJihoWl3O3iLeycTIw6s0mbRUXOq0gSmbJzpqD/ -J/mlhQ7ShbbngExtz2aRyICmWBeaxOSsrc4s2CZVlu/BvnlVkYkSVZimhRJAk0XZ -zEP7uuUCgYEAzTl5WJDLdqBg/8UUUu3DYvFxKibwI8Bahj5PLIMw08OW9hXuEEVu -yn1LkZwslIZrm+CeaMDI6EYexPBtTfJ077Xl1LUw1PEpaobn12lzyT4dDAqmpemL -A9adrxiIlTi3m5wziYKmMQjXsqR9zi2edQeE5P/O7S6NxjI5QK7rRkMCgYEAwZR1 -rIY6430nkByff6Ks5GWxw3KNGnyLVIO4xtFUjjfXqEiWCBQRxEO5YU/EJ3LVkdZD -y11C7Bqcfmdyrmkm48z6FDKPt9USrT0aUDOtW6EiE5CAGN/Jf1b5/ouR9y+UWG+Y -ktaGXC7V1LOM5fKGpx1jDqO6siB4RuHRGfoKHucCgYEAtsgTvb/ol1UsT2E2Qs4l -EYC9K6/WfeEaPypL1fdai6FOWQsbJz7P+GUz4xJX2kkGmqSqMd5Skh2x1fHVSHFD -mSRG+PYP8fiAzLIu13rCd2Bs+oaZ+ndRKzAA7SxKqa0ESwIKHNVSM6YOhrtemT2k -PdNel58Gq9SkzPt6ZpPkVIUCgYB0uGtrp1QCrwgX4OpbL19IJ/lTe9KQ0d/BCdt0 -JevyBMHH+lxcap171coFXu9LSfZ0hNlD2evsKO+LWBzSBR0p5gI0A3icw6ELS/h9 -u2sgALxnR421cdoxKeR7EvTkMpAj8sXwY+GH28WbBthCHkYKpbGAtkBv/xwGwUov -e5B2qQKBgFYgPpYrG97HO+FTUw66U1mOGVUP1Zr0B6uPgM7iE0CUiKCMkGJe+zdj -r1+up0PNqf8jBRe5He3wkc9UvuClRydBn4EvN0hUWe86L8M9u0yOPStPURs1tTJb -bgZuNhYDU04/i/BtlgP4yyLXrGaiDw8FNoiXCnkYej0Vgh5KQKX7 ------END RSA PRIVATE KEY----- diff --git a/apache/index.py b/apache/index.py deleted file mode 100755 index 4a3383fe909d..000000000000 --- a/apache/index.py +++ /dev/null @@ -1,17 +0,0 @@ -#!/usr/bin/env python2.7 - -from mod_python import apache -from mod_python import util -from time import sleep - -def index(req): - return page(req) - -def page(req): - req.content_type = 'text/html' - sleep(0.5) - return "page\n" - -def submit_cert(req): - sleep(100) - return "ok cert submitted\n" diff --git a/apache/makeconfig.sh b/apache/makeconfig.sh deleted file mode 100755 index 9dcd521bccd7..000000000000 --- a/apache/makeconfig.sh +++ /dev/null @@ -1,64 +0,0 @@ -#!/bin/bash -ex -# -# Generate a local Apache config that will listen with SSL on ports 3001-3100. -# The default behavior is to respond relatively promptly on /, while sleeping -# for 100 seconds before responding on /submit_cert. - -cd $(dirname $0) -START=3001 -END=3100 - -cat <apache2.conf - ServerName https_everywhere_test - ServerRoot "." - DocumentRoot "." - PidFile ./apache2.pid - ErrorLog ./error.log - LoadModule python_module /usr/lib/apache2/modules/mod_python.so - LoadModule rewrite_module /usr/lib/apache2/modules/mod_rewrite.so - LoadModule mime_module /usr/lib/apache2/modules/mod_mime.so - LoadModule mpm_prefork_module /usr/lib/apache2/modules/mod_mpm_prefork.so - LoadModule ssl_module /usr/lib/apache2/modules/mod_ssl.so - LoadModule authz_core_module /usr/lib/apache2/modules/mod_authz_core.so - LoadModule cgi_module /usr/lib/apache2/modules/mod_cgi.so - LoadModule alias_module /usr/lib/apache2/modules/mod_alias.so - LoadModule dir_module /usr/lib/apache2/modules/mod_dir.so - - SSLVerifyDepth 1 - SSLOptions +StdEnvVars - SSLCipherSuite HIGH:MEDIUM:!aNULL:!eNULL:@STRENGTH:-DHE-RSA-AES128-SHA:-EDH-RSA-DES-CBC3-SHA:-DHE-RSA-AES256-SHA:-DHE-RSA-AES256-SHA - - - SetHandler mod_python - PythonHandler mod_python.publisher - PythonDebug On - Options +ExecCGI - DirectoryIndex index.py - -EOF - -for n in `seq $START $END` ; do cat >> apache2.conf < - SSLEngine on - SSLCertificateFile certificates/$n.crt - SSLCertificateKeyFile certificates/$n.key - -EOF -done - -mkdir -p certificates -cd certificates - -onecert() { - openssl genrsa -out $1.key 2048 - openssl req -new -key $1.key -out $1.csr -subj /CN=localhost - openssl x509 -req -days 1826 -in $1.csr -CA ca.crt -CAkey ca.key -set_serial $RANDOM -out $1.crt - rm $1.csr -} - -openssl genrsa -out ca.key 2048 -openssl req -new -x509 -days 1826 -key ca.key -out ca.crt -subj /CN=https-everywhere-test-ca -for n in `seq $START $END` ; do - onecert $n -done diff --git a/apache/mime.types b/apache/mime.types deleted file mode 100644 index 5296a6d53f1e..000000000000 --- a/apache/mime.types +++ /dev/null @@ -1 +0,0 @@ -# Dummy mime.types necessary to make test Apache happy. diff --git a/browser-dist/README.md b/browser-dist/README.md new file mode 100644 index 000000000000..47385bff828a --- /dev/null +++ b/browser-dist/README.md @@ -0,0 +1,32 @@ +# Browser Distribution Special Cases + +## Edge + +Case: +Edge does not accept CRX files for direct upload to store. + +Work around: `edge.sh` + +## Opera + +Case: +Opera does not accept `default.rulesets` due to strict MIME type restriction + +In order to not disrupt many downstream channels, we are building a separate CRX file for Opera for now. + +Work around: `opera.sh` + +## Build process + +These scripts are normally ran after main build and deployment is finished. The reason being we want a confirmed CRX file upload to Chrome to build the Edge zip and Opera crx distributions on. + +## CRX Verification of Files before Upload + +Install Node Package for CRX Verification via NPM +`[sudo] npm -g i crx3-utils` + +### Verify CRX file + +1. `crx3-info rsa 0 < $crx > public.pem` +2. `crx3-verify rsa 0 public.pem < $crx` +3. `echo "CRX verified"` diff --git a/browser-dist/edge.sh b/browser-dist/edge.sh new file mode 100755 index 000000000000..d8d62cd4a259 --- /dev/null +++ b/browser-dist/edge.sh @@ -0,0 +1,25 @@ +#!/bin/bash +# Written for transparency and reproducibility on Edge upload +# See browser-dist.md for more info + +VERSION=`python3 -c "import json ; print(json.loads(open('../chromium/manifest.json').read())['version'])"` +crx_cws="../pkg/https-everywhere-$VERSION-cws.crx" +crx_eff="../pkg/https-everywhere-$VERSION-eff.crx" + +crx3-info rsa 0 < $crx_cws > public.pem +crx3-verify rsa 0 public.pem < $crx_cws +echo "CRX verified" + +#Build Edge Zip File +echo "Building Edge Zip" +crx3-info < $crx_eff | awk '/^header/ {print $2}' \ + | xargs -I% dd if=$crx_eff iflag=skip_bytes skip=% > https-everywhere-$VERSION-edge.zip + +echo >&2 "Edge zip package has sha256sum: `openssl dgst -sha256 -binary "https-everywhere-$VERSION-edge.zip" | xxd -p`" + +mv https-everywhere-$VERSION-edge.zip ../pkg/https-everywhere-$VERSION-edge.zip + +echo "Created pkg/https-everywhere-$VERSION-edge.zip" + +#Now remove unneeded pem file +rm public.pem \ No newline at end of file diff --git a/browser-dist/opera.sh b/browser-dist/opera.sh new file mode 100755 index 000000000000..261b8ad41b6c --- /dev/null +++ b/browser-dist/opera.sh @@ -0,0 +1,168 @@ +#!/usr/bin/env bash + +# Build an HTTPS Everywhere Opera CRX Distribution +# Written for transparency and reproducibility on Opera upload +# See browser-dist.md for more info + +# To build the current state of the tree: +# +# ./browser-dist-opera.sh +# +# To build a particular tagged release: +# +# ./browser-dist-opera.sh +# +# eg: +# +# ./browser-dist-opera.sh 2017.8.15 +# +# Note that .crx files must be signed; this script makes you a +# "dummy-chromium.pem" private key for you to sign your own local releases, +# but these .crx files won't detect and upgrade to official HTTPS Everywhere +# releases signed by EFF :/. We should find a more elegant arrangement. + +! getopt --test > /dev/null +if [[ ${PIPESTATUS[0]} -ne 4 ]]; then + echo 'I’m sorry, `getopt --test` failed in this environment.' + exit 1 +fi + +OPTIONS=eck: +LONGOPTS=remove-extension-update,remove-update-channels,key: +! PARSED=$(getopt --options=$OPTIONS --longoptions=$LONGOPTS --name "$0" -- "$@") +if [[ ${PIPESTATUS[0]} -ne 0 ]]; then + # e.g. return value is 1 + # then getopt has complained about wrong arguments to stdout + exit 2 +fi + +# read getopt’s output this way to handle the quoting right: +eval set -- "$PARSED" + +REMOVE_EXTENSION_UPDATE=false +REMOVE_UPDATE_CHANNELS=false +KEY=$(pwd)/dummy-chromium.pem +while true; do + case "$1" in + -e|--remove-extension-update) + REMOVE_EXTENSION_UPDATE=true + shift + ;; + -c|--remove-update-channels) + REMOVE_UPDATE_CHANNELS=true + shift + ;; + -k|--key) + KEY="$2" + shift 2 + ;; + --) + shift + break + ;; + *) + echo "Programming error" + exit 3 + ;; + esac +done + +if [ "${KEY:0:1}" != "/" ]; then + echo "Key must be specified as an absolute path." + exit 4 +fi + +cd $(dirname $0) + +if [ -n "$1" ]; then + BRANCH=`git branch | head -n 1 | cut -d \ -f 2-` + SUBDIR=checkout + [ -d $SUBDIR ] || mkdir $SUBDIR + cp -r -f -a .git $SUBDIR + cd $SUBDIR + git reset --hard "$1" + git submodule update --recursive -f +fi + +VERSION=`python3 -c "import json ; print(json.loads(open('../chromium/manifest.json').read())['version'])"` + +echo "Building version" $VERSION + +[ -d pkg ] || mkdir -p ../pkg +[ -e pkg/crx-opera ] && rm -rf ../pkg/crx-opera + +# Clean up obsolete ruleset databases, just in case they still exist. +rm -f src/chrome/content/rules/default.rulesets src/defaults/rulesets.sqlite + +mkdir -p ../pkg/crx-opera/rules +cd ../pkg/crx-opera +cp -a ../../chromium/* ./ +# Turn the Firefox translations into the appropriate Chrome format: +rm -rf _locales/ +mkdir _locales/ +python3 ../../utils/chromium-translations.py ../../translations/ _locales/ +python3 ../../utils/chromium-translations.py ../../src/chrome/locale/ _locales/ +do_not_ship="*.py *.xml" +rm -f $do_not_ship + +mkdir wasm +cp ../../lib-wasm/pkg/*.wasm wasm +cp ../../lib-wasm/pkg/*.js wasm + +cd ../.. + +python3 ./utils/merge-rulesets.py || exit 5 + +cp src/chrome/content/rules/default.rulesets.json pkg/crx-opera/rules/default.rulesets.json + +sed -i -e "s/VERSION/$VERSION/g" pkg/crx-opera/manifest.json + +for x in `cat .build_exclusions`; do + rm -rf pkg/crx-opera/$x +done + +#Create Opera CRX caveat +cd pkg/crx-opera +sed -i 's/rules\/default.rulesets/rules\/default.rulesets.json/g' background-scripts/update.js +cd ../.. + +# Remove the 'applications' manifest key from the crx version of the extension, change the 'author' string to a hash, and add the "update_url" manifest key +# "update_url" needs to be present to avoid problems reported in https://bugs.chromium.org/p/chromium/issues/detail?id=805755 +python3 -c "import json; m=json.loads(open('pkg/crx-opera/manifest.json').read()); m['author']={'email': 'eff.software.projects@gmail.com'}; del m['applications']; open('pkg/crx-opera/manifest.json','w').write(json.dumps(m,indent=4,sort_keys=True))" + +# If the --remove-update-channels flag is set, remove all out-of-band update channels +if $REMOVE_UPDATE_CHANNELS; then + echo "Flag --remove-update-channels specified. Removing all out-of-band update channels." + echo "require.scopes.update_channels.update_channels = [];" >> pkg/crx-opera/background-scripts/update_channels.js +fi + +if [ -n "$BRANCH" ] ; then + crx_opera="pkg/https-everywhere-$VERSION-opera.crx" +else + crx_opera="pkg/https-everywhere-$VERSION-pre-opera.crx" +fi +if ! [ -f "$KEY" ] ; then + echo "Making a dummy signing key for local build purposes" + openssl genrsa -out /tmp/dummy-chromium.pem 768 + openssl pkcs8 -topk8 -nocrypt -in /tmp/dummy-chromium.pem -out $KEY +fi + +# now pack the crx'es +BROWSER="chromium-browser" +which $BROWSER || BROWSER="chromium" + +$BROWSER --no-message-box --pack-extension="pkg/crx-opera" --pack-extension-key="$KEY" 2> /dev/null + +mv pkg/crx-opera.crx $crx_opera + +echo >&2 "Opera crx package has sha256sum: `openssl dgst -sha256 -binary "$crx_opera" | xxd -p`" +echo >&2 "Total included rules: `find src/chrome/content/rules -name "*.xml" | wc -l`" +echo >&2 "Rules disabled by default: `find src/chrome/content/rules -name "*.xml" | xargs grep -F default_off | wc -l`" + +echo "Created $crx_opera" + +if [ -n "$BRANCH" ]; then + cd .. + cp $SUBDIR/$crx_opera pkg + rm -rf $SUBDIR +fi diff --git a/chromium/.eslintignore b/chromium/.eslintignore new file mode 100644 index 000000000000..6f1043967f94 --- /dev/null +++ b/chromium/.eslintignore @@ -0,0 +1 @@ +external/ diff --git a/chromium/.eslintrc.json b/chromium/.eslintrc.json index 97b53825ae30..c696ae27c66e 100644 --- a/chromium/.eslintrc.json +++ b/chromium/.eslintrc.json @@ -1,11 +1,27 @@ { - "parserOptions": { - "ecmaVersion": 2017 - }, - "env": { - "browser": true, - "commonjs": true, - "es6": true, - "node": true - } + "env": { + "browser": true, + "es6": true, + "webextensions": true + }, + "parserOptions": { + "ecmaVersion": 2019, + "sourceType": "script" + }, + "rules": { + "indent": ["error", 2, {"outerIIFEBody": 0}], + "no-unused-vars": "error", + "no-undef": "error", + "strict": ["error", "global"], + "semi": ["error", "always"], + "space-before-blocks": ["error"], + "brace-style": ["error"], + "no-invalid-regexp": "error", + "no-trailing-spaces": "error" + }, + "globals": { + "exports": true, + "require": true, + "wasm_bindgen": true + } } diff --git a/chromium/.gitignore b/chromium/.gitignore index 7f2b090f975b..94dda0257826 100644 --- a/chromium/.gitignore +++ b/chromium/.gitignore @@ -1 +1,2 @@ +.nyc_output updates.xml diff --git a/chromium/background-scripts/background.js b/chromium/background-scripts/background.js new file mode 100644 index 000000000000..331e6dc22432 --- /dev/null +++ b/chromium/background-scripts/background.js @@ -0,0 +1,976 @@ +"use strict"; + +(function(exports) { + +const rules = require('./rules'), + store = require('./store'), + incognito = require('./incognito'), + util = require('./util'), + update = require('./update'), + { update_channels } = require('./update_channels'), + wasm = require('./wasm'), + ipUtils = require('./ip_utils'), + ssl_codes = require('./ssl_codes'); + +let all_rules = new rules.RuleSets(); +let blooms = []; + +async function initialize() { + await wasm.initialize(); + await store.initialize(); + await store.performMigrations(); + await initializeStoredGlobals(); + await getUpgradeToSecureAvailable(); + await update.initialize(store, initializeAllRules); + await all_rules.loadFromBrowserStorage(store, update.applyStoredRulesets); + await update.applyStoredBlooms(blooms); + await incognito.onIncognitoDestruction(destroy_caches); +} +initialize(); + +async function initializeAllRules() { + const r = new rules.RuleSets(); + await r.loadFromBrowserStorage(store, update.applyStoredRulesets); + Object.assign(all_rules, r); + blooms.length = 0; + await update.applyStoredBlooms(blooms); +} + +/** + * Load preferences. Structure is: + * { + * httpNowhere: Boolean, + * isExtensionEnabled: Boolean + * } + */ +var httpNowhereOn = false; +var isExtensionEnabled = true; +let disabledList = new Set(); +let httpOnceList = new Set(); + +/** + * Check if HTTPS Everywhere should be ON for host + */ +function isExtensionDisabledOnSite(host) { + // make sure the host is not matched in the httpOnceList + if (httpOnceList.has(host)) { + return true; + } + + // make sure the host is not matched in the disabledList + if (disabledList.has(host)) { + return true; + } + + // make sure the host is matched by any wildcard expressions in the disabledList + const experessions = util.getWildcardExpressions(host); + for (const expression of experessions) { + if (disabledList.has(expression)) { + return true; + } + } + + // otherwise return false + return false; +} + +function initializeStoredGlobals() { + return new Promise(resolve => { + store.get({ + httpNowhere: false, + globalEnabled: true, + enableMixedRulesets: false, + disabledList: [] + }, function(item) { + httpNowhereOn = item.httpNowhere; + isExtensionEnabled = item.globalEnabled; + for (let disabledSite of item.disabledList) { + disabledList.add(disabledSite); + } + updateState(); + + rules.settings.enableMixedRulesets = item.enableMixedRulesets; + + resolve(); + }); + }); +} + +/** @type {boolean} */ +let upgradeToSecureAvailable = false; + +function getUpgradeToSecureAvailable() { + if (typeof browser !== 'undefined') { + return browser.runtime.getBrowserInfo().then(function(info) { + let version = info.version.match(/^(\d+)/)[1]; + if (info.name == "Firefox" && version >= 59) { + upgradeToSecureAvailable = true; + } else { + upgradeToSecureAvailable = false; + } + }); + } else { + return new Promise(resolve => { + upgradeToSecureAvailable = false; + resolve(); + }); + } +} + +chrome.storage.onChanged.addListener(async function(changes, areaName) { + if (areaName === 'sync' || areaName === 'local') { + if ('httpNowhere' in changes) { + httpNowhereOn = changes.httpNowhere.newValue; + updateState(); + } + if ('globalEnabled' in changes) { + isExtensionEnabled = changes.globalEnabled.newValue; + updateState(); + } + if ('enableMixedRulesets' in changes) { + // Don't require users to restart the browsers + rules.settings.enableMixedRulesets = changes.enableMixedRulesets.newValue; + initializeAllRules(); + } + if ('debugging_rulesets' in changes) { + initializeAllRules(); + } + } +}); + +if (chrome.tabs) { + chrome.tabs.onActivated.addListener(function() { + updateState(); + }); +} +if (chrome.windows) { + chrome.windows.onFocusChanged.addListener(function() { + updateState(); + }); + + // Grant access to HTTP site only during session, clear once window is closed + chrome.windows.onRemoved.addListener(function() { + chrome.windows.getAll({}, function(windows) { + if(windows.length > 0) { + return; + } else { + httpOnceList.clear(); + } + }); + }); + +} +chrome.webNavigation.onCompleted.addListener(function() { + updateState(); +}); + +/** + * Set the icon color correctly + * active: extension is enabled. + * blocking: extension is in "block all HTTP requests" mode. + * disabled: extension is disabled from the popup menu. + */ + +function updateState () { + if (!chrome.tabs) return; + + let iconState = 'active'; + + if (!isExtensionEnabled) { + iconState = 'disabled'; + } else if (httpNowhereOn) { + iconState = 'blocking'; + } + + chrome.browserAction.setTitle({ + title: 'HTTPS Everywhere' + ((iconState === 'active') ? '' : ' (' + iconState + ')') + }); + + const chromeUrl = 'chrome://'; + + chrome.tabs.query({ active: true, currentWindow: true, status: 'complete' }, function(tabs) { + if (!tabs || tabs.length === 0 || tabs[0].url.startsWith(chromeUrl) ) { + return; + } + + // tabUrl.host instead of hostname should be used to show the "disabled" status properly (#19293) + const tabUrl = new URL(tabs[0].url); + const host = util.getNormalisedHostname(tabUrl.host); + + if (isExtensionDisabledOnSite(host) || iconState == "disabled") { + if ('setIcon' in chrome.browserAction) { + chrome.browserAction.setIcon({ + path: { + 38: 'images/icons/icon-disabled-38.png' + } + }); + } + } else { + if ('setIcon' in chrome.browserAction) { + chrome.browserAction.setIcon({ + path: { + 38: 'images/icons/icon-' + iconState + '-38.png' + } + }); + } + } + }); +} + +/** + * The following allows fennec to interact with the popup ui + * */ +chrome.browserAction.onClicked.addListener(e => { + const url = chrome.runtime.getURL("/pages/popup/index.html?tabId=" + e.id); + chrome.tabs.create({ + url + }); +}); + +/** + * A centralized storage for browsing data within the browser session. + */ +function BrowserSession() { + this.tabs = new Map(); + this.requests = new Map(); + + if (chrome.tabs) { + chrome.tabs.onRemoved.addListener(tabId => { + this.deleteTab(tabId); + }); + } +} + +BrowserSession.prototype = { + putTab: function(tabId, key, value, overwrite) { + if (!this.tabs.has(tabId)) { + this.tabs.set(tabId, {}); + } + + if (!(key in this.tabs.get(tabId)) || overwrite) { + this.tabs.get(tabId)[key] = value; + } + }, + + getTab: function(tabId, key, defaultValue) { + if (this.tabs.has(tabId) && key in this.tabs.get(tabId)) { + return this.tabs.get(tabId)[key]; + } + return defaultValue; + }, + + deleteTab: function(tabId) { + if (this.tabs.has(tabId)) { + this.tabs.delete(tabId); + } + }, + + putTabAppliedRulesets: function(tabId, type, ruleset) { + this.putTab(tabId, "main_frame", false, false); + + // always show main_frame ruleset on the top + if (type == "main_frame") { + this.putTab(tabId, "main_frame", true, true); + this.putTab(tabId, "applied_rulesets", [ruleset,], true); + return ; + } + + // sort by ruleset names alphabetically, case-insensitive + if (this.getTab(tabId, "applied_rulesets", null)) { + let rulesets = this.getTab(tabId, "applied_rulesets", null); + let insertIndex = 0; + + const ruleset_name = ruleset.name.toLowerCase(); + + for (const item of rulesets) { + const item_name = item.name.toLowerCase(); + + if (item_name == ruleset_name) { + return ; + } else if (insertIndex == 0 && this.getTab(tabId, "main_frame", false)) { + insertIndex = 1; + } else if (item_name < ruleset_name) { + insertIndex++; + } + } + rulesets.splice(insertIndex, 0, ruleset); + } else { + this.putTab(tabId, "applied_rulesets", [ruleset,], true); + } + }, + + getTabAppliedRulesets: function(tabId) { + return this.getTab(tabId, "applied_rulesets", null); + }, + + putRequest: function(requestId, key, value) { + if (!this.requests.has(requestId)) { + this.requests.set(requestId, {}); + } + this.requests.get(requestId)[key] = value; + }, + + getRequest: function(requestId, key, defaultValue) { + if (this.requests.has(requestId) && key in this.requests.get(requestId)) { + return this.requests.get(requestId)[key]; + } + return defaultValue; + }, + + deleteRequest: function(requestId) { + if (this.requests.has(requestId)) { + this.requests.delete(requestId); + } + } +}; + +let browserSession = new BrowserSession(); + +var urlBlacklist = new Set(); + +const cancelUrl = chrome.runtime.getURL("/pages/cancel/index.html"); + +function redirectOnCancel(shouldCancel, originURL) { + return shouldCancel ? {redirectUrl: newCancelUrl(originURL)} : {cancel: false}; +} + +const newCancelUrl = originURL => `${cancelUrl}?originURL=${encodeURIComponent(originURL)}`; + +/** + * Called before a HTTP(s) request. Does the heavy lifting + * Cancels the request/redirects it to HTTPS. URL modification happens in here. + * @param details of the handler, see Chrome doc + * */ +function onBeforeRequest(details) { + // If HTTPSe has been disabled by the user, return immediately. + if (!isExtensionEnabled) { + return; + } + + let uri = new URL(details.url); + + // Normalise hosts with tailing dots, e.g. "www.example.com." + uri.hostname = util.getNormalisedHostname(uri.hostname); + + let ip = ipUtils.parseIp(uri.hostname); + + let isLocalIp = false; + + if (ip !== -1) { + isLocalIp = ipUtils.isLocalIp(ip); + } + + if (details.type == "main_frame") { + // Clear the content from previous browser session. + // This needed to be done before this listener returns, + // otherwise, the extension popup might include rulesets + // from previous page. + browserSession.deleteTab(details.tabId); + + // Check if an user has disabled HTTPS Everywhere on this site. We should + // ensure that all subresources are not run through HTTPS Everywhere as well. + browserSession.putTab(details.tabId, 'first_party_host', uri.host, true); + } + + if (isExtensionDisabledOnSite(browserSession.getTab(details.tabId, 'first_party_host', null))) { + return; + } + + // Should the request be canceled? + // true if the URL is a http:// connection to a remote canonical host, and not + // a tor hidden service + const shouldCancel = httpNowhereOn && + (uri.protocol === 'http:' || uri.protocol === 'ftp:') && + uri.hostname.slice(-6) !== '.onion' && + uri.hostname !== 'localhost' && + !uri.hostname.endsWith('.localhost') && + uri.hostname !== '[::1]' && + !isLocalIp; + + // If there is a username / password, put them aside during the ruleset + // analysis process + let using_credentials_in_url = false; + let tmp_user; + let tmp_pass; + if (uri.password || uri.username) { + using_credentials_in_url = true; + tmp_user = uri.username; + tmp_pass = uri.password; + uri.username = ''; + uri.password = ''; + } + + if (details.url != uri.href && !using_credentials_in_url) { + util.log(util.INFO, "Original url " + details.url + + " changed before processing to " + uri.href); + } + if (urlBlacklist.has(uri.href)) { + return redirectOnCancel(shouldCancel, details.url); + } + + if (browserSession.getRequest(details.requestId, "redirect_count", 0) >= 8) { + util.log(util.NOTE, "Redirect counter hit for " + uri.href); + urlBlacklist.add(uri.href); + rules.settings.domainBlacklist.add(uri.hostname); + util.log(util.WARN, "Domain blacklisted " + uri.hostname); + return redirectOnCancel(shouldCancel, details.url); + } + + // whether to use mozilla's upgradeToSecure BlockingResponse if available + let upgradeToSecure = false; + let newuristr = null; + + let potentiallyApplicable = all_rules.potentiallyApplicableRulesets(uri.hostname); + + for (let ruleset of potentiallyApplicable) { + if (details.url.match(ruleset.scope)) { + browserSession.putTabAppliedRulesets(details.tabId, details.type, ruleset); + if (ruleset.active && !newuristr) { + newuristr = ruleset.apply(uri.href); + } + } + } + + if (newuristr == null && blooms.length > 0 && uri.protocol === 'http:') { + for(let bloom of blooms) { + if(bloom.check(uri.hostname)) { + newuristr = uri.href.replace(/^http:/, "https:"); + break; + } + } + } + + // only use upgradeToSecure for trivial rewrites + if (upgradeToSecureAvailable && newuristr) { + // check rewritten URIs against the trivially upgraded URI + const trivialUpgradeUri = uri.href.replace(/^http:/, "https:"); + upgradeToSecure = (newuristr == trivialUpgradeUri); + } + + // re-insert userpass info which was stripped temporarily + if (using_credentials_in_url) { + if (newuristr) { + const uri_with_credentials = new URL(newuristr); + uri_with_credentials.username = tmp_user; + uri_with_credentials.password = tmp_pass; + newuristr = uri_with_credentials.href; + } else { + const url_with_credentials = new URL(uri.href); + url_with_credentials.username = tmp_user; + url_with_credentials.password = tmp_pass; + uri.href = url_with_credentials.href; + } + } + + if (httpNowhereOn) { + // If loading a main frame, try the HTTPS version as an alternative to + // failing. + if (shouldCancel) { + if (!newuristr) { + newuristr = uri.href.replace(/^http:/, "https:"); + browserSession.putRequest(details.requestId, "simple_http_nowhere_redirect", true); + upgradeToSecure = true; + } else { + newuristr = newuristr.replace(/^http:/, "https:"); + } + } + if ( + newuristr && + ( + newuristr.substring(0, 5) === "http:" || + newuristr.substring(0, 4) === "ftp:" + ) + ) { + // Abort early if we're about to redirect to HTTP or FTP in HTTP Nowhere mode + return {redirectUrl: newCancelUrl(newuristr)}; + } + } + + if (upgradeToSecureAvailable && upgradeToSecure) { + util.log(util.INFO, 'onBeforeRequest returning upgradeToSecure: true'); + return {upgradeToSecure: true}; + } else if (newuristr) { + util.log(util.INFO, 'onBeforeRequest returning redirectUrl: ' + newuristr); + return {redirectUrl: newuristr}; + } else { + util.log(util.INFO, 'onBeforeRequest returning shouldCancel: ' + shouldCancel); + return redirectOnCancel(shouldCancel, details.url); + } +} + +/** + * monitor cookie changes. Automatically convert them to secure cookies + * @param changeInfo Cookie changed info, see Chrome doc + * */ +function onCookieChanged(changeInfo) { + if (!changeInfo.removed && !changeInfo.cookie.secure && isExtensionEnabled) { + if (all_rules.shouldSecureCookie(changeInfo.cookie)) { + let cookie = { + name:changeInfo.cookie.name, + value:changeInfo.cookie.value, + path:changeInfo.cookie.path, + httpOnly:changeInfo.cookie.httpOnly, + expirationDate:changeInfo.cookie.expirationDate, + storeId:changeInfo.cookie.storeId, + secure: true + }; + + // Host-only cookies don't set the domain field. + if (!changeInfo.cookie.hostOnly) { + cookie.domain = changeInfo.cookie.domain; + } + + // Chromium cookie sameSite status, see https://tools.ietf.org/html/draft-west-first-party-cookies + if (changeInfo.cookie.sameSite) { + cookie.sameSite = changeInfo.cookie.sameSite; + } + + // Firefox first-party isolation + if (changeInfo.cookie.firstPartyDomain) { + cookie.firstPartyDomain = changeInfo.cookie.firstPartyDomain; + } + + // The cookie API is magical -- we must recreate the URL from the domain and path. + if (changeInfo.cookie.domain[0] == ".") { + cookie.url = "https://www" + changeInfo.cookie.domain + cookie.path; + } else { + cookie.url = "https://" + changeInfo.cookie.domain + cookie.path; + } + // We get repeated events for some cookies because sites change their + // value repeatedly and remove the "secure" flag. + util.log(util.DBUG, + "Securing cookie " + cookie.name + " for " + changeInfo.cookie.domain + ", was secure=" + changeInfo.cookie.secure); + chrome.cookies.set(cookie); + } + } +} + +/** + * handling redirects, breaking loops + * @param details details for the redirect (see chrome doc) + * */ +function onBeforeRedirect(details) { + // Catch redirect loops (ignoring about:blank, etc. caused by other extensions) + let prefix = details.redirectUrl.substring(0, 5); + if (prefix === "http:" || prefix === "https") { + let count = browserSession.getRequest(details.requestId, "redirect_count", 0); + if (count) { + browserSession.putRequest(details.requestId, "redirect_count", count + 1); + util.log(util.DBUG, "Got redirect id " + details.requestId + ": "+count); + } else { + browserSession.putRequest(details.requestId, "redirect_count", 1); + } + } +} + +/** + * handle webrequest.onCompleted, cleanup redirectCounter + * @param details details for the chrome.webRequest (see chrome doc) + */ +function onCompleted(details) { + browserSession.deleteRequest(details.requestId); +} + +/** + * handle webrequest.onErrorOccurred, cleanup redirectCounter + * @param details details for the chrome.webRequest (see chrome doc) + */ +function onErrorOccurred(details) { + if (httpNowhereOn && + details.type == "main_frame" && + browserSession.getRequest(details.requestId, "simple_http_nowhere_redirect", false) && + // Enumerate errors that are likely due to HTTPS misconfigurations + ssl_codes.error_list.some(message => details.error.includes(message)) + ) { + let url = new URL(details.url); + if (url.protocol == "https:") { + url.protocol = "http:"; + } + chrome.tabs.update(details.tabId, {url: newCancelUrl(url.toString())}); + } + + browserSession.deleteRequest(details.requestId); +} + +/** + * handle webrequest.onHeadersReceived, insert upgrade-insecure-requests directive and + * rewrite access-control-allow-origin if presented in HTTP Nowhere mode + * @param details details for the chrome.webRequest (see chrome doc) + */ +function onHeadersReceived(details) { + if (isExtensionEnabled && httpNowhereOn) { + // Do not upgrade the .onion requests in EASE mode, + // See https://github.com/EFForg/https-everywhere/pull/14600#discussion_r168072480 + const uri = new URL(details.url); + const hostname = util.getNormalisedHostname(uri.hostname); + if (hostname.slice(-6) == '.onion') { + return {}; + } + + // Do not upgrade resources if the first-party domain disbled EASE mode + // This is needed for HTTPS sites serve mixed content and is broken + if (isExtensionDisabledOnSite(browserSession.getTab(details.tabId, 'first_party_host', null))) { + return {}; + } + + let responseHeadersChanged = false; + let cspHeaderFound = false; + + for (const idx in details.responseHeaders) { + if (details.responseHeaders[idx].name.match(/Content-Security-Policy/i)) { + // Existing CSP headers found + cspHeaderFound = true; + const value = details.responseHeaders[idx].value; + + // Prepend if no upgrade-insecure-requests directive exists + if (!value.match(/upgrade-insecure-requests/i)) { + details.responseHeaders[idx].value = "upgrade-insecure-requests; " + value; + responseHeadersChanged = true; + } + } + + if (details.responseHeaders[idx].name.match(/Access-Control-Allow-Origin/i)) { + // Existing access-control-allow-origin header found + const value = details.responseHeaders[idx].value; + + // If HTTP protocol is used, change it to HTTPS + if (value.match(/http:/)) { + details.responseHeaders[idx].value = value.replace(/http:/g, "https:"); + responseHeadersChanged = true; + } + } + } + + if (!cspHeaderFound) { + // CSP headers not found + const upgradeInsecureRequests = { + name: 'Content-Security-Policy', + value: 'upgrade-insecure-requests' + }; + details.responseHeaders.push(upgradeInsecureRequests); + responseHeadersChanged = true; + } + + if (responseHeadersChanged) { + return {responseHeaders: details.responseHeaders}; + } + } + return {}; +} + +// Registers the handler for requests +// See: https://github.com/EFForg/https-everywhere/issues/10039 +chrome.webRequest.onBeforeRequest.addListener(onBeforeRequest, {urls: ["*://*/*", "ftp://*/*"]}, ["blocking"]); + +// Try to catch redirect loops on URLs we've redirected to HTTPS. +chrome.webRequest.onBeforeRedirect.addListener(onBeforeRedirect, {urls: ["https://*/*"]}); + +// Cleanup redirectCounter if necessary +chrome.webRequest.onCompleted.addListener(onCompleted, {urls: ["*://*/*"]}); + +// Cleanup redirectCounter if necessary +chrome.webRequest.onErrorOccurred.addListener(onErrorOccurred, {urls: ["*://*/*"]}); + +// Insert upgrade-insecure-requests directive in httpNowhere mode +chrome.webRequest.onHeadersReceived.addListener(onHeadersReceived, {urls: ["https://*/*"]}, ["blocking", "responseHeaders"]); + +// Listen for cookies set/updated and secure them if applicable. This function is async/nonblocking. +chrome.cookies.onChanged.addListener(onCookieChanged); + +// This is necessary for communication with the popup in Firefox Private +// Browsing Mode, see https://bugzilla.mozilla.org/show_bug.cgi?id=1329304 +chrome.runtime.onMessage.addListener(function(message, sender, sendResponse) { + + function get_update_channels_generic(update_channels) { + let last_updated_promises = []; + for(let update_channel of update_channels) { + last_updated_promises.push(new Promise(resolve => { + store.local.get({['uc-timestamp: ' + update_channel.name]: 0}, item => { + resolve([update_channel.name, item['uc-timestamp: ' + update_channel.name]]); + }); + })); + } + Promise.all(last_updated_promises).then(results => { + const last_updated = results.reduce((obj, item) => { + obj[item[0]] = item[1]; + return obj; + }, {}); + sendResponse({update_channels, last_updated}); + }); + } + + function storeDisabledList(message) { + + const disabledListArray = Array.from(disabledList); + const httpOnceListArray = Array.from(httpOnceList); + + if (message === 'once') { + store.set({httpOnceList: httpOnceListArray}, () => { + sendResponse(true); + }); + } else { + store.set({disabledList: disabledListArray}, () => { + sendResponse(true); + }); + } + + return true; + } + + const responses = { + get_option: () => { + store.get(message.object, sendResponse); + return true; + }, + set_option: () => { + store.set(message.object, item => { + if (sendResponse) { + sendResponse(item); + } + }); + }, + delete_from_ruleset_cache: () => { + all_rules.ruleCache.delete(message.object); + }, + get_applied_rulesets: () => { + sendResponse(browserSession.getTabAppliedRulesets(message.object)); + return true; + }, + set_ruleset_active_status: () => { + let rulesets = browserSession.getTabAppliedRulesets(message.object.tab_id); + + for (let ruleset of rulesets) { + if (ruleset.name == message.object.name) { + ruleset.active = message.object.active; + if (ruleset.default_state == message.object.active) { + message.object.active = undefined; + } + break; + } + } + + all_rules.setRuleActiveState(message.object.name, message.object.active).then(() => { + sendResponse(true); + }); + + return true; + }, + reset_to_defaults: () => { + // restore the 'default states' of the rulesets + store.set_promise('ruleActiveStates', {}).then(() => { + // clear the caches such that it becomes stateless + destroy_caches(); + // re-activate all rules according to the new states + initializeAllRules(); + // reload tabs when operations completed + chrome.tabs.reload(); + }); + }, + get_user_rules: () => { + store.get_promise(all_rules.USER_RULE_KEY, []).then(userRules => sendResponse(userRules)); + return true; + }, + add_new_rule: () => { + all_rules.addNewRuleAndStore(message.object).then(() => { + sendResponse(true); + }); + return true; + }, + remove_rule: () => { + all_rules.removeRuleAndStore(message.object.ruleset, message.object.src) + .then(() => { + /** + * FIXME: initializeAllRules is needed for calls from the option pages. + * Since message.object is not of type Ruleset, rules.removeUserRule + * is not usable... + */ + if (message.object.src === 'options') { + return initializeAllRules(); + } + }) + .then(() => { + if (sendResponse !== null) { + sendResponse(true); + } + }); + return true; + }, + get_update_channel_timestamps: () => { + update.getUpdateChannelTimestamps().then(timestamps => sendResponse(timestamps)); + return true; + }, + get_pinned_update_channels: () => { + get_update_channels_generic(update_channels); + return true; + }, + get_stored_update_channels: () => { + store.get({update_channels: []}, item => { + get_update_channels_generic(item.update_channels); + }); + return true; + }, + create_update_channel: () => { + + store.get({update_channels: []}, item => { + + const update_channel_names = update_channels.concat(item.update_channels).reduce((obj, item) => { + obj.add(item.name); + return obj; + }, new Set()); + + if(update_channel_names.has(message.object)) { + return sendResponse(false); + } + + item.update_channels.push({ + name: message.object, + jwk: {}, + update_path_prefix: '', + scope: '' + }); + + store.set({update_channels: item.update_channels}, () => { + sendResponse(true); + }); + + }); + return true; + }, + delete_update_channel: () => { + store.get({update_channels: []}, item => { + store.set({update_channels: item.update_channels.filter(update_channel => { + return (update_channel.name != message.object); + })}, () => { + store.local.remove([ + 'uc-timestamp: ' + message.object, + 'uc-stored-timestamp: ' + message.object, + 'rulesets: ' + message.object, + 'bloom: ' + message.object, + 'bloom_bitmap_bits: ' + message.object, + 'bloom_k_num: ' + message.object, + 'bloom_sip_keys_0_0: ' + message.object, + 'bloom_sip_keys_0_1: ' + message.object, + 'bloom_sip_keys_1_0: ' + message.object, + 'bloom_sip_keys_1_1: ' + message.object, + ], () => { + initializeAllRules(); + sendResponse(true); + }); + }); + }); + return true; + }, + update_update_channel: () => { + store.get({update_channels: []}, item => { + let scope_changed = false; + item.update_channels = item.update_channels.map(update_channel => { + if(update_channel.name == message.object.name) { + if(update_channel.scope != message.object.scope) { + scope_changed = true; + } + update_channel = message.object; + } + return update_channel; + }); + + // Ensure that we check for new rulesets from the update channel immediately. + // If the scope has changed, make sure that the rulesets are re-initialized. + update.removeStorageListener(); + store.set({update_channels: item.update_channels}, () => { + update.loadUpdateChannelsKeys().then(() => { + update.resetTimer(); + if(scope_changed) { + initializeAllRules(); + } + sendResponse(true); + }); + update.addStorageListener(); + }); + }); + return true; + }, + get_simple_rules_ending_with: () => { + return sendResponse(all_rules.getSimpleRulesEndingWith(message.object)); + }, + get_last_checked: () => { + store.local.get({'last-checked': false}, item => { + sendResponse(item['last-checked']); + }); + return true; + }, + disable_on_site_once: () => { + httpOnceList.add(message.object); + return storeDisabledList('once'); + }, + disable_on_site: () => { + const host = util.getNormalisedHostname(message.object); + // always validate hostname before adding it to the disabled list + if (util.isValidHostname(host)) { + disabledList.add(host); + return storeDisabledList('disable'); + } + return sendResponse(false); + }, + enable_on_site: () => { + disabledList.delete(util.getNormalisedHostname(message.object)); + return storeDisabledList('enable'); + }, + check_if_site_disabled: () => { + return sendResponse(isExtensionDisabledOnSite(util.getNormalisedHostname(message.object))); + }, + is_firefox: () => { + if(typeof(browser) != "undefined") { + browser.runtime.getBrowserInfo().then(function(info) { + if (info.name == "Firefox") { + sendResponse(true); + } else { + sendResponse(false); + } + }); + } else { + sendResponse(false); + } + return true; + } + }; + if (message.type in responses) { + return responses[message.type](); + } +}); + +/** + * @description Notify users about extension sunsetting in January 2023 and instructions turn on HTTPS natively + * @link https://www.eff.org/deeplinks/2021/09/https-actually-everywhere + */ +chrome.runtime.onInstalled.addListener(async ({reason, temporary}) => { + if (temporary) return; + switch (reason) { + case "install": + case "update": + { + const url = "https://www.eff.org/https-everywhere/set-https-default-your-browser"; + await chrome.tabs.create({ active : false, url: url }); + } + break; + } +}); + +/** + * Clear any cache/ blacklist we have. + */ +function destroy_caches() { + util.log(util.DBUG, "Destroying caches."); + all_rules.cookieHostCache.clear(); + all_rules.ruleCache.clear(); + rules.settings.domainBlacklist.clear(); + urlBlacklist.clear(); + httpOnceList.clear(); +} + +Object.assign(exports, { + all_rules, + blooms, + urlBlacklist +}); + +})(typeof exports == 'undefined' ? require.scopes.background = {} : exports); diff --git a/chromium/background-scripts/bootstrap.js b/chromium/background-scripts/bootstrap.js new file mode 100644 index 000000000000..65d7a7a24ebf --- /dev/null +++ b/chromium/background-scripts/bootstrap.js @@ -0,0 +1,9 @@ +"use strict"; + +function require(module) { + if (module.startsWith('./') && require.scopes.hasOwnProperty(module.slice(2))) { + return require.scopes[module.slice(2)]; + } + throw new Error('module: ' + module + ' not found.'); +} +require.scopes = {}; diff --git a/chromium/background-scripts/incognito.js b/chromium/background-scripts/incognito.js new file mode 100644 index 000000000000..7d4bc815c729 --- /dev/null +++ b/chromium/background-scripts/incognito.js @@ -0,0 +1,73 @@ +"use strict"; + +(function(exports) { + +// This file keeps track of incognito sessions, and clears any caches after +// an entire incognito session is closed (i.e. all incognito windows are closed). + +let state = { + incognito_session_exists: false, +}; + +function Incognito(onIncognitoDestruction) { + Object.assign(this, {onIncognitoDestruction}); + // Listen to window creation, so we can detect if an incognito window is created + if (chrome.windows) { + chrome.windows.onCreated.addListener(this.detect_incognito_creation); + } + + // Listen to window destruction, so we can clear caches if all incognito windows are destroyed + if (chrome.windows) { + chrome.windows.onRemoved.addListener(this.detect_incognito_destruction); + } +} + +Incognito.prototype = { + /** + * Detect if an incognito session is created, so we can clear caches when it's destroyed. + * + * @param window: A standard Window object. + */ + detect_incognito_creation: function(window_) { + if (window_.incognito === true) { + state.incognito_session_exists = true; + } + }, + + // If a window is destroyed, and an incognito session existed, see if it still does. + detect_incognito_destruction: async function() { + if (state.incognito_session_exists) { + if (!(await any_incognito_windows())) { + state.incognito_session_exists = false; + this.onIncognitoDestruction(); + } + } + }, +}; + +/** + * Check if any incognito window still exists + */ +function any_incognito_windows() { + return new Promise(resolve => { + chrome.windows.getAll(arrayOfWindows => { + for (let window_ of arrayOfWindows) { + if (window_.incognito === true) { + return resolve(true); + } + } + resolve(false); + }); + }); +} + +function onIncognitoDestruction(callback) { + return new Incognito(callback); +}; + +Object.assign(exports, { + onIncognitoDestruction, + state, +}); + +})(typeof exports == 'undefined' ? require.scopes.incognito = {} : exports); diff --git a/chromium/background-scripts/ip_utils.js b/chromium/background-scripts/ip_utils.js new file mode 100644 index 000000000000..90e0b1a44530 --- /dev/null +++ b/chromium/background-scripts/ip_utils.js @@ -0,0 +1,71 @@ +'use strict'; + +(function (exports) { + +/** + * Parse and convert literal IP address into numerical IP address. + * @param {string} ip + * @returns {number} + */ +const parseIp = ip => { + if (!/^[0-9.]+$/.test(ip)) { + return -1; + } + + /** @type {string[]} */ + const octets = ip.split('.'); + + if (octets.length !== 4) { + return -1; + } + + let ipN = 0; + + for (const octet of octets) { + if (octet === '') { + return -1; + } + + const octetN = parseInt(octet); + + if (octetN < 0 || octetN > 255) { + return -1; + } + + ipN = (ipN << 8) | octetN; + } + + return ipN >>> 0; +}; + +/** + * Check if the numeric IP address is within a certain range. + * @param {number} ip + * @param {number[]} range + * @returns {boolean} + */ +const isIpInRange = (ip, [rangeIp, mask]) => (ip & mask) >>> 0 === rangeIp; + +// A list of local IP address ranges +const localRanges = [ + [/* 0.0.0.0 */ 0x00000000, /* 255.255.255.255 */ 0xffffffff], + [/* 127.0.0.0 */ 0x7f000000, /* 255.0.0.0 */ 0xff000000], + [/* 10.0.0.0 */ 0x0a000000, /* 255.0.0.0 */ 0xff000000], + [/* 172.16.0.0 */ 0xac100000, /* 255.240.0.0 */ 0xfff00000], + [/* 192.168.0.0 */ 0xc0a80000, /* 255.255.0.0 */ 0xffff0000], +]; + +/** + * Check if the numeric IP address is inside the local IP address ranges. + * @param {number} ip + * @returns {boolean} + */ +const isLocalIp = ip => localRanges.some(range => isIpInRange(ip, range)); + +Object.assign(exports, { + parseIp, + isIpInRange, + isLocalIp +}); + +})(typeof exports !== 'undefined' ? exports : require.scopes.ip_utils = {}); diff --git a/chromium/background-scripts/modules/ssl_codes.js b/chromium/background-scripts/modules/ssl_codes.js new file mode 100644 index 000000000000..ed955ec8355a --- /dev/null +++ b/chromium/background-scripts/modules/ssl_codes.js @@ -0,0 +1,48 @@ +"use strict"; + +/** + * @exports error_list + * @type {array} + * @description A list of known SSL config errors to filter through and not try to upgrade the user + * @see + * Chrome SSL errors: https://github.com/chromium/chromium/blob/master/components/domain_reliability/util.cc + * Firefox SSL Errors: https://hg.mozilla.org/releases/mozilla-release/file/tip/security/manager/locales/en-US/chrome/pipnss/nsserrors.properties + */ + +(function (exports) { + +const error_list = [ + "net::ERR_SSL_PROTOCOL_ERROR", + "net::ERR_SSL_VERSION_OR_CIPHER_MISMATCH", + "net::ERR_SSL_UNRECOGNIZED_NAME_ALERT", + "net::ERR_SSL_PINNED_KEY_NOT_IN_CERT_CHAIN", + "net::ERR_CERT_COMMON_NAME_INVALID", + "net::ERR_CERT_DATE_INVALID", + "net::ERR_CERT_AUTHORITY_INVALID", + "net::ERR_CERT_REVOKED", + "net::ERR_CERT_INVALID", + "net::ERR_CONNECTION_CLOSED", + "net::ERR_CONNECTION_RESET", + "net::ERR_CONNECTION_REFUSED", + "net::ERR_CONNECTION_ABORTED", + "net::ERR_CONNECTION_FAILED", + "net::ERR_ABORTED", , + "NS_ERROR_CONNECTION_REFUSED", + "NS_ERROR_NET_ON_TLS_HANDSHAKE_ENDED", + "NS_BINDING_ABORTED", + "SSL received a record that exceeded the maximum permissible length.", + "Peer’s Certificate has expired.", + "Unable to communicate securely with peer: requested domain name does not match the server’s certificate.", + "Peer’s Certificate issuer is not recognized.", + "Peer’s Certificate has been revoked.", + "Peer reports it experienced an internal error.", + "The server uses key pinning (HPKP) but no trusted certificate chain could be constructed that matches the pinset. Key pinning violations cannot be overridden.", + "SSL received a weak ephemeral Diffie-Hellman key in Server Key Exchange handshake message.", + "The certificate was signed using a signature algorithm that is disabled because it is not secure.", + "Cannot communicate securely with peer: no common encryption algorithm(s).", + "SSL peer has no certificate for the requested DNS name." +]; + +Object.assign(exports, { error_list }); + +})(typeof exports !== 'undefined' ? exports : require.scopes.ssl_codes = {}); \ No newline at end of file diff --git a/chromium/background-scripts/rules.js b/chromium/background-scripts/rules.js new file mode 100644 index 000000000000..7f0a5b550637 --- /dev/null +++ b/chromium/background-scripts/rules.js @@ -0,0 +1,802 @@ +"use strict"; + +(function(exports) { + +const util = require('./util'), + wasm = require('./wasm'); + +let settings = { + enableMixedRulesets: false, + domainBlacklist: new Set(), +}; + +// To reduce memory usage for the numerous rules/cookies with trivial rules +const trivial_cookie_rule_c = /.+/; + +/* A map of all scope RegExp objects */ +const scopes = new Map(); + +/** + * Returns the scope object from the map for the given scope string. + * @param {string} scope ruleset scope string + * @returns {RegExp} + */ +function getScope(scope) { + if (!scopes.has(scope)) { + scopes.set(scope, new RegExp(scope)); + } + return scopes.get(scope); +} + +/** + * Constructs a single rule + * @param from + * @param to + * @constructor + */ +function Rule(from, to) { + this.from_c = new RegExp(from); + this.to = to; +} + +// To reduce memory usage for the numerous rules/cookies with trivial rules +const trivial_rule = new Rule("^http:", "https:"); + +/** + * Returns a common trivial rule or constructs a new one. + */ +function getRule(from, to) { + if (from === "^http:" && to === "https:") { + // This is a trivial rule, rewriting http->https with no complex RegExp. + return trivial_rule; + } else { + // This is a non-trivial rule. + return new Rule(from, to); + } +} + +/** + * Generates a CookieRule + * @param host The host regex to compile + * @param cookiename The cookie name Regex to compile + * @constructor + */ +function CookieRule(host, cookiename) { + if (host === '.+') { + // Some cookie rules trivially match any host. + this.host_c = trivial_cookie_rule_c; + } else { + this.host_c = new RegExp(host); + } + + if (cookiename === '.+') { + // About 50% of cookie rules trivially match any name. + this.name_c = trivial_cookie_rule_c; + } else { + this.name_c = new RegExp(cookiename); + } +} + +/** + *A collection of rules + * @param {string} set_name The name of this set + * @param {boolean} default_state activity state + * @param {string} scope ruleset scope string + * @param {string} note Note will be displayed in popup + * @constructor + */ +function RuleSet(set_name, default_state, scope, note) { + this.name = set_name; + this.rules = []; + this.exclusions = null; + this.cookierules = null; + this.active = default_state; + this.default_state = default_state; + this.scope = getScope(scope); + this.note = note; +} + +RuleSet.prototype = { + /** + * Check if a URI can be rewritten and rewrite it + * @param urispec The uri to rewrite + * @returns {*} null or the rewritten uri + */ + apply: function(urispec) { + var returl = null; + // If we're covered by an exclusion, go home + if (this.exclusions !== null && this.exclusions.test(urispec)) { + util.log(util.DBUG, "excluded uri " + urispec); + return null; + } + + // Okay, now find the first rule that triggers + for (let rule of this.rules) { + returl = urispec.replace(rule.from_c, + rule.to); + if (returl != urispec) { + return returl; + } + } + return null; + }, + + /** + * Deep equivalence comparison + * @param ruleset The ruleset to compare with + * @returns true or false, depending on whether it's deeply equivalent + */ + isEquivalentTo: function(ruleset) { + if(this.name != ruleset.name || + this.note != ruleset.note || + this.active != ruleset.active || + this.default_state != ruleset.default_state) { + return false; + } + + try { + var this_exclusions_source = this.exclusions.source; + } catch(e) { + var this_exclusions_source = null; + } + + try { + var ruleset_exclusions_source = ruleset.exclusions.source; + } catch(e) { + var ruleset_exclusions_source = null; + } + + try { + var this_rules_length = this.rules.length; + } catch(e) { + var this_rules_length = 0; + } + + try { + var ruleset_rules_length = ruleset.rules.length; + } catch(e) { + var ruleset_rules_length = 0; + } + + if(this_rules_length != ruleset_rules_length) { + return false; + } + + if (this_exclusions_source != ruleset_exclusions_source) { + return false; + } + + if(this_rules_length > 0) { + for(let x = 0; x < this.rules.length; x++) { + if(this.rules[x].to != ruleset.rules[x].to) { + return false; + } + } + } + + return true; + } + +}; + +/** + * Initialize Rule Sets + * @constructor + */ +function RuleSets() { + // Load rules into structure + this.targets = new Map(); + + // A cache for potentiallyApplicableRulesets + this.ruleCache = new Map(); + + // A cache for cookie hostnames. + this.cookieHostCache = new Map(); + + /** + * A hash of rule name -> active status (true/false). + * @type {Object} + */ + this.ruleActiveStates = {}; + + // The key to retrieve user rules from the storage api + this.USER_RULE_KEY = 'userRules'; + + return this; +} + + +RuleSets.prototype = { + + /** + * Load packaged rulesets, and rulesets in browser storage + * @param store object from store.js + */ + loadFromBrowserStorage: async function(store, applyStoredFunc) { + this.store = store; + this.ruleActiveStates = await this.store.get_promise('ruleActiveStates', {}); + try { + this.wasm_rs = wasm.RuleSets.new(); + } catch(e) { + util.log(util.WARN, 'Falling back to pure JS implementation: ' + e); + } + await applyStoredFunc(this); + await this.loadStoredUserRules(); + await this.addStoredCustomRulesets(); + }, + + /** + * Convert XML to JS and load rulesets + * @param {Document} ruleXml + * @param {string} scope + */ + addFromXml: function(ruleXml, scope) { + const rulesets_xml = ruleXml.getElementsByTagName("ruleset"); + + let rulesets = []; + for (let ruleset_xml of rulesets_xml) { + rulesets.push(this.convertOneXmlToJs(ruleset_xml)); + } + + this.addFromJson(rulesets, scope); + }, + + /** + * @param {*} ruleJson + * @param {string} scope + */ + addFromJson: function(ruleJson, scope) { + if (this.wasm_rs) { + this.wasm_rs.add_all_from_js_array( + ruleJson, + settings.enableMixedRulesets, + this.ruleActiveStates, + scope); + } else { + for (let ruleset of ruleJson) { + try { + this.parseOneJsonRuleset(ruleset, scope); + } catch(e) { + util.log(util.WARN, 'Error processing ruleset:' + e); + } + } + } + }, + + /** + * Parse one JSON format ruleset element + * @param {*} ruletag + * @param {string} scope + */ + parseOneJsonRuleset: function(ruletag, scope) { + var default_state = true; + var note = ""; + var default_off = ruletag["default_off"]; + if (default_off) { + default_state = false; + if (default_off === "user rule") { + default_state = true; + } + note += default_off + "\n"; + } + + // If a ruleset declares a platform, and we don't match it, treat it as + // off-by-default. In practice, this excludes "mixedcontent" rules. + var platform = ruletag["platform"]; + if (platform) { + default_state = false; + if (platform == "mixedcontent" && settings.enableMixedRulesets) { + default_state = true; + } + note += "Platform(s): " + platform + "\n"; + } + + var rule_set = new RuleSet(ruletag["name"], default_state, scope, note.trim()); + + // Read user prefs + if (rule_set.name in this.ruleActiveStates) { + rule_set.active = this.ruleActiveStates[rule_set.name]; + } + + var rules = ruletag["rule"]; + for (let rule of rules) { + if (rule["from"] != null && rule["to"] != null) { + rule_set.rules.push(getRule(rule["from"], rule["to"])); + } + } + + var exclusions = ruletag["exclusion"]; + if (exclusions != null) { + rule_set.exclusions = new RegExp(exclusions.join("|")); + } + + var cookierules = ruletag["securecookie"]; + if (cookierules != null) { + for (let cookierule of cookierules) { + if (cookierule["host"] != null && cookierule["name"] != null) { + if (!rule_set.cookierules) { + rule_set.cookierules = []; + } + rule_set.cookierules.push(new CookieRule(cookierule["host"], cookierule["name"])); + } + } + } + + var targets = ruletag["target"]; + for (let target of targets) { + if (target != null) { + if (!this.targets.has(target)) { + this.targets.set(target, []); + } + this.targets.get(target).push(rule_set); + } + } + }, + + /** + * Load a user rule + * @param params + * @param {string} scope + * @returns {boolean} + */ + addUserRule : function(params, scope) { + util.log(util.INFO, 'adding new user rule for ' + JSON.stringify(params)); + if (this.wasm_rs) { + this.wasm_rs.add_all_from_js_array( + [params], + settings.enableMixedRulesets, + this.ruleActiveStates, + scope); + } else { + this.parseOneJsonRuleset(params, scope); + } + + // clear cache so new rule take effect immediately + for (const target of params.target) { + this.ruleCache.delete(target); + } + + // TODO: maybe promote this rule? + util.log(util.INFO, 'done adding rule'); + return true; + }, + + /** + * Remove a user rule + * @param params + * @returns {boolean} + */ + removeUserRule: function(ruleset, src) { + /** + * FIXME: We have to use ruleset.name here because the ruleset itself + * carries no information on the target it is applying on. This also + * made it impossible for users to set custom ruleset name. + */ + util.log(util.INFO, 'removing user rule for ' + JSON.stringify(ruleset)); + + // Remove any cache from runtime + this.ruleCache.delete(ruleset.name); + + if (src === 'popup') { + + if (this.wasm_rs) { + this.wasm_rs.remove_ruleset(ruleset); + } else { + const tmp = this.targets.get(ruleset.name).filter(r => !r.isEquivalentTo(ruleset)); + this.targets.set(ruleset.name, tmp); + + if (this.targets.get(ruleset.name).length == 0) { + this.targets.delete(ruleset.name); + } + } + } + + if (src === 'options') { + /** + * FIXME: There is nothing we can do if the call comes from the + * option page because isEquivalentTo cannot work reliably. + * Leave the heavy duties to background.js to call initializeAllRules + */ + } + util.log(util.INFO, 'done removing rule'); + return true; + }, + + /** + * Retrieve stored user rules from storage api + **/ + getStoredUserRules: async function() { + return await this.store.get_promise(this.USER_RULE_KEY, []); + }, + + /** + * Load all stored user rules into this RuleSet object + */ + loadStoredUserRules: function() { + return this.getStoredUserRules() + .then(userRules => { + this.addFromJson(userRules, ''); + util.log(util.INFO, `loaded ${userRules.length} stored user rules`); + }); + }, + + /** + * Adds a new user rule + * @param params: params defining the rule + * @param cb: Callback to call after success/fail + * */ + addNewRuleAndStore: async function(params) { + if (this.addUserRule(params, '')) { + // If we successfully added the user rule, save it in the storage + // api so it's automatically applied when the extension is + // reloaded. + let userRules = await this.getStoredUserRules(); + // TODO: there's a race condition here, if this code is ever executed from multiple + // client windows in different event loops. + userRules.push(params); + // TODO: can we exceed the max size for storage? + await this.store.set_promise(this.USER_RULE_KEY, userRules); + } + }, + + /** + * Removes a user rule + * @param ruleset: the ruleset to remove + * */ + removeRuleAndStore: async function(ruleset, src) { + if (this.removeUserRule(ruleset, src)) { + let userRules = await this.getStoredUserRules(); + + if (src === 'popup') { + userRules = userRules.filter(r => + !(r.name === ruleset.name && r.rule[0].to === ruleset.rules[0].to) + ); + } + + if (src === 'options') { + userRules = userRules.filter(r => + !(r.name === ruleset.name && r.rule[0].to === ruleset.rule[0].to) + ); + } + await this.store.set_promise(this.USER_RULE_KEY, userRules); + } + }, + + addStoredCustomRulesets: function() { + return new Promise(resolve => { + this.store.get({ + legacy_custom_rulesets: [], + debugging_rulesets: "" + }, item => { + this.loadCustomRulesets(item.legacy_custom_rulesets); + this.loadCustomRuleset("" + item.debugging_rulesets + ""); + resolve(); + }); + }); + }, + + // Load in the legacy custom rulesets, if any + loadCustomRulesets: function(legacy_custom_rulesets) { + for(let legacy_custom_ruleset of legacy_custom_rulesets) { + this.loadCustomRuleset(legacy_custom_ruleset); + } + }, + + loadCustomRuleset: function(ruleset_string) { + this.addFromXml((new DOMParser()).parseFromString(ruleset_string, 'text/xml'), ''); + }, + + setRuleActiveState: async function(ruleset_name, active) { + if (active == undefined) { + delete this.ruleActiveStates[ruleset_name]; + } else { + this.ruleActiveStates[ruleset_name] = active; + } + await this.store.set_promise('ruleActiveStates', this.ruleActiveStates); + }, + + /** + * Converts an XML ruleset to a JS ruleset for parsing + * @param ruletag The whole tag to parse + */ + convertOneXmlToJs: function(ruletag) { + try { + let ruleset = {}; + + let default_off = ruletag.getAttribute("default_off"); + if (default_off) { + ruleset["default_off"] = default_off; + } + + let platform = ruletag.getAttribute("platform"); + if (platform) { + ruleset["platform"] = platform; + } + + let name = ruletag.getAttribute("name"); + if (name) { + ruleset["name"] = name; + } + + let rules = []; + for (let rule of ruletag.getElementsByTagName("rule")) { + rules.push({ + from: rule.getAttribute("from"), + to: rule.getAttribute("to") + }); + } + if (rules.length > 0) { + ruleset["rule"] = rules; + } + + let exclusions = []; + for (let exclusion of ruletag.getElementsByTagName("exclusion")) { + exclusions.push(exclusion.getAttribute("pattern")); + } + if (exclusions.length > 0) { + ruleset["exclusion"] = exclusions; + } + + let cookierules = []; + for (let cookierule of ruletag.getElementsByTagName("securecookie")) { + cookierules.push({ + host: cookierule.getAttribute("host"), + name: cookierule.getAttribute("name") + }); + } + if (cookierules.length > 0) { + ruleset["securecookie"] = cookierules; + } + + let targets = []; + for (let target of ruletag.getElementsByTagName("target")) { + targets.push(target.getAttribute("host")); + } + if (targets.length > 0) { + ruleset["target"] = targets; + } + + return ruleset; + } catch (e) { + util.log(util.WARN, 'Error converting ruleset to JS:' + e); + return {}; + } + }, + + /** + * Return a list of rulesets that apply to this host + * @param host The host to check + * @returns {*} (empty) list + */ + potentiallyApplicableRulesets: function(host) { + // Have we cached this result? If so, return it! + if (this.ruleCache.has(host)) { + let cached_item = this.ruleCache.get(host); + util.log(util.DBUG, "Ruleset cache hit for " + host + " items:" + cached_item.size); + return cached_item; + } else { + util.log(util.DBUG, "Ruleset cache miss for " + host); + } + + let results; + if (this.wasm_rs) { + let pa = this.wasm_rs.potentially_applicable(host); + results = new Set([...pa].map(ruleset => { + let rs = new RuleSet(ruleset.name, ruleset.default_state, ruleset.scope, ruleset.note); + + if (ruleset.cookierules) { + let cookierules = ruleset.cookierules.map(cookierule => { + return new CookieRule(cookierule.host, cookierule.name); + }); + rs.cookierules = cookierules; + } else { + rs.cookierules = null; + } + + let rules = ruleset.rules.map(rule => { + return getRule(rule.from, rule.to); + }); + rs.rules = rules; + + if (ruleset.exclusions) { + rs.exclusions = new RegExp(ruleset.exclusions); + } else { + rs.exclusions = null; + } + + rs.active = ruleset.active; + + return rs; + })); + } else { + // Let's begin search + results = (this.targets.has(host) ? + new Set([...this.targets.get(host)]) : + new Set()); + + let expressions = util.getWildcardExpressions(host); + for (const expression of expressions) { + results = (this.targets.has(expression) ? + new Set([...results, ...this.targets.get(expression)]) : + results); + } + + // Clean the results list, which may contain duplicates or undefined entries + results.delete(undefined); + + util.log(util.DBUG,"Applicable rules for " + host + ":"); + if (results.size == 0) { + util.log(util.DBUG, " None"); + results = util.nullIterable; + } else { + results.forEach(result => util.log(util.DBUG, " " + result.name)); + } + } + + // Insert results into the ruleset cache + this.ruleCache.set(host, results); + + // Cap the size of the cache. (Limit chosen somewhat arbitrarily) + if (this.ruleCache.size > 1000) { + // Map.prototype.keys() returns keys in insertion order, so this is a FIFO. + this.ruleCache.delete(this.ruleCache.keys().next().value); + } + + return results; + }, + + /** + * Check to see if the Cookie object c meets any of our cookierule criteria for being marked as secure. + * @param cookie The cookie to test + * @returns {*} true or false + */ + shouldSecureCookie: function(cookie) { + let hostname = cookie.domain; + // cookie domain scopes can start with . + while (hostname.charAt(0) == ".") { + hostname = hostname.slice(1); + } + + // Check if the domain might be being served over HTTP. If so, it isn't + // safe to secure a cookie! We can't always know this for sure because + // observing cookie-changed doesn't give us enough context to know the + // full origin URI. + + // First, if there are any redirect loops on this domain, don't secure + // cookies. XXX This is not a very satisfactory heuristic. Sometimes we + // would want to secure the cookie anyway, because the URLs that loop are + // not authenticated or not important. Also by the time the loop has been + // observed and the domain blacklisted, a cookie might already have been + // flagged as secure. + + if (settings.domainBlacklist.has(hostname)) { + util.log(util.INFO, "cookies for " + hostname + "blacklisted"); + return false; + } + + // Second, we need a cookie pass two tests before patching it + // (1) it is safe to secure the cookie, as per safeToSecureCookie() + // (2) it matches with the CookieRule + // + // We kept a cache of the results for (1), if we have a cached result which + // (a) is false, we should not secure the cookie for sure + // (b) is true, we need to perform test (2) + // + // Otherwise, + // (c) We need to perform (1) and (2) in place + + let safe = false; + if (this.cookieHostCache.has(hostname)) { + util.log(util.DBUG, "Cookie host cache hit for " + hostname); + safe = this.cookieHostCache.get(hostname); // true only if it is case (b) + if (!safe) { + return false; // (a) + } + } else { + util.log(util.DBUG, "Cookie host cache miss for " + hostname); + } + + const potentiallyApplicable = this.potentiallyApplicableRulesets(hostname); + for (const ruleset of potentiallyApplicable) { + if (ruleset.cookierules !== null && ruleset.active) { + // safe is false only indicate the lack of a cached result + // we cannot use it to avoid looping here + for (const cookierule of ruleset.cookierules) { + // if safe is true, it is case (b); otherwise it is case (c) + if (cookierule.host_c.test(cookie.domain) && cookierule.name_c.test(cookie.name)) { + return safe || this.safeToSecureCookie(hostname, potentiallyApplicable); + } + } + } + } + return false; + }, + + /** + * Check if it is secure to secure the cookie (=patch the secure flag in). + * @param domain The domain of the cookie + * @param potentiallyApplicable + * @returns {*} true or false + */ + safeToSecureCookie: function(domain, potentiallyApplicable) { + // Make up a random URL on the domain, and see if we would HTTPSify that. + var nonce_path = "/" + Math.random().toString(); + var test_uri = "http://" + domain + nonce_path + nonce_path; + + // Cap the size of the cookie cache (limit chosen somewhat arbitrarily) + if (this.cookieHostCache.size > 250) { + // Map.prototype.keys() returns keys in insertion order, so this is a FIFO. + this.cookieHostCache.delete(this.cookieHostCache.keys().next().value); + } + + util.log(util.INFO, "Testing securecookie applicability with " + test_uri); + for (let ruleset of potentiallyApplicable) { + if (ruleset.active && ruleset.apply(test_uri)) { + util.log(util.INFO, "Cookie domain could be secured."); + this.cookieHostCache.set(domain, true); + return true; + } + } + util.log(util.INFO, "Cookie domain could NOT be secured."); + this.cookieHostCache.set(domain, false); + return false; + }, + + /** + * Get a list of simple rules (active, with no exclusions) for all hosts that + * are in a single ruleset, and end in the specified ending. + * @param ending Target ending to search for + * @returns A list of { host, from_regex, to, scope_regex } + */ + getSimpleRulesEndingWith: function(ending) { + let results; + + if (this.wasm_rs) { + results = this.wasm_rs.get_simple_rules_ending_with(ending); + } else { + results = []; + for(let [host, rulesets] of this.targets) { + if (host.endsWith(ending) && + rulesets.length == 1 && + rulesets[0].active === true && + rulesets[0].exclusions == null + ) { + for (let rule of rulesets[0].rules) { + if (rule.from_c.test("http://" + host + "/")) { + results.push({ host, from_regex: rule.from_c.toString(), to: rule.to, scope_regex: rulesets[0].scope.toString() }); + } + } + } + } + } + return results; + }, + + /** + * Rewrite an URI + * @param urispec The uri to rewrite + * @param host The host of this uri + * @returns {*} the new uri or null + */ + rewriteURI: function(urispec, host) { + var newuri = null; + var potentiallyApplicable = this.potentiallyApplicableRulesets(host); + for (let ruleset of potentiallyApplicable) { + if (ruleset.active && (newuri = ruleset.apply(urispec))) { + return newuri; + } + } + return null; + } +}; + +Object.assign(exports, { + settings, + trivial_rule, + Rule, + RuleSet, + RuleSets, + getRule +}); + +})(typeof exports == 'undefined' ? require.scopes.rules = {} : exports); diff --git a/chromium/background-scripts/store.js b/chromium/background-scripts/store.js new file mode 100644 index 000000000000..e3af7cb8086f --- /dev/null +++ b/chromium/background-scripts/store.js @@ -0,0 +1,143 @@ +"use strict"; + +(function(exports) { + +const rules = require('./rules'); +const util = require("./util"); + +function initialize() { + return new Promise(resolve => { + if (chrome.storage.sync) { + chrome.storage.sync.set({"sync-set-test": true}, () => { + if(chrome.runtime.lastError) { + setStorage(chrome.storage.local); + } else { + setStorage(chrome.storage.sync); + } + resolve(); + }); + } else { + setStorage(chrome.storage.local); + resolve(); + } + }); +} + +/* Storage promise setters and getters */ + +function generic_get_promise(key, default_val, storage) { + return new Promise(res => storage.get({[key]: default_val}, data => res(data[key]))); +} + +function generic_set_promise(key, value, storage) { + return new Promise(res => storage.set({[key]: value}, res)); +} + +function get_promise(key, default_val) { + return generic_get_promise(key, default_val, exports); +} + +function set_promise(key, value) { + return generic_set_promise(key, value, exports); +} + +function local_get_promise(key, default_val) { + return generic_get_promise(key, default_val, chrome.storage.local); +} + +function local_set_promise(key, value) { + return generic_set_promise(key, value, chrome.storage.local); +} + + + +async function performMigrations() { + let migration_version = await get_promise('migration_version', 0); + + try { + if (migration_version === 0) { + let ls = localStorage; + let ruleActiveStates = {}; + + for (let key in ls) { + if (ls.hasOwnProperty(key)) { + if (rules.RuleSets().USER_RULE_KEY === key) { + await set_promise(rules.RuleSets().USER_RULE_KEY, JSON.parse(ls[key])); + } else { + ruleActiveStates[key] = (ls[key] === "true"); + } + } + } + migration_version = 1; + await set_promise('migration_version', migration_version); + await set_promise('ruleActiveStates', ruleActiveStates); + } + + } catch (e) { + // do nothing + } + + if (migration_version <= 1) { + await get_promise(rules.RuleSets().USER_RULE_KEY, []) + .then(userRules => { + userRules = userRules.map(userRule => { + return { + name: userRule.host, + target: [userRule.host], + rule: [{ from: userRule.urlMatcher, to: userRule.redirectTo }], + default_off: "user rule" + }; + }); + return userRules; + }) + .then(userRules => { + return set_promise(rules.RuleSets().USER_RULE_KEY, userRules); + }); + + migration_version = 2; + await set_promise('migration_version', migration_version); + } + + if (migration_version <= 2) { + await get_promise('disabledList', []) + .then(disabledList => { + disabledList = disabledList.map(item => { + return util.getNormalisedHostname(item); + }); + return disabledList; + }) + .then(disabledList => { + return set_promise('disabledList', disabledList); + }); + + migration_version = 3; + await set_promise('migration_version', migration_version); + } +} + +const local = { + get: (...args) => chrome.storage.local.get(...args), + set: (...args) => chrome.storage.local.set(...args), + remove: (...args) => chrome.storage.local.remove(...args), + get_promise: local_get_promise, + set_promise: local_set_promise +}; + +function setStorage(store) { + Object.assign(exports, { + get: store.get.bind(store), + set: store.set.bind(store), + remove: store.remove.bind(store), + get_promise, + set_promise, + local + }); + chrome.runtime.sendMessage("store_initialized"); +} + +Object.assign(exports, { + initialize, + performMigrations +}); + +})(typeof exports == 'undefined' ? require.scopes.store = {} : exports); diff --git a/chromium/background-scripts/update.js b/chromium/background-scripts/update.js new file mode 100644 index 000000000000..a0bc7fdf85e9 --- /dev/null +++ b/chromium/background-scripts/update.js @@ -0,0 +1,480 @@ +/* global pako */ + +"use strict"; + +let combined_update_channels, extension_version; +const { update_channels } = require('./update_channels'); +const wasm = require('./wasm'); + +// Determine if we're in the tests. If so, define some necessary components. +if (typeof window === "undefined") { + var WebCrypto = require("node-webcrypto-ossl"), + crypto = new WebCrypto(), + atob = require("atob"), + btoa = require("btoa"), + pako = require('../external/pako-1.0.5/pako_inflate.min.js'), + { TextDecoder } = require('text-encoding'), + chrome = require("sinon-chrome"), + window = { atob, btoa, chrome, crypto, pako, TextDecoder }, + fs = require('fs'); + + extension_version = JSON.parse(fs.readFileSync('./manifest.json')).version; + + combined_update_channels = update_channels; +} else { + extension_version = chrome.runtime.getManifest().version; +} + +(function(exports) { + +const util = require('./util'); + +let store, + background_callback; + +// how often we should check for new rulesets +const periodicity = 86400; + +const extension_date = new Date(extension_version.split('.').slice(0,3).join('-')); +const extension_timestamp = extension_date.getTime() / 1000; + +let imported_keys; + +// update channels are loaded from `background-scripts/update_channels.js` as well as the storage api +async function loadUpdateChannelsKeys() { + util.log(util.NOTE, 'Loading update channels and importing associated public keys.'); + + const stored_update_channels = await store.get_promise('update_channels', []); + const combined_update_channels_preflight = update_channels.concat(stored_update_channels); + + imported_keys = {}; + combined_update_channels = []; + + for(let update_channel of combined_update_channels_preflight) { + + try{ + imported_keys[update_channel.name] = await window.crypto.subtle.importKey( + "jwk", + update_channel.jwk, + { + name: "RSA-PSS", + hash: {name: "SHA-256"}, + }, + false, + ["verify"] + ); + combined_update_channels.push(update_channel); + util.log(util.NOTE, update_channel.name + ': Update channel key loaded.'); + } catch(err) { + util.log(util.WARN, update_channel.name + ': Could not import key. Aborting.'); + } + } +} + + +// Determine the time until we should check for new rulesets +async function timeToNextCheck() { + const last_checked = await store.local.get_promise('last-checked', false); + if(last_checked) { + const current_timestamp = Date.now() / 1000; + const secs_since_last_checked = current_timestamp - last_checked; + return Math.max(0, periodicity - secs_since_last_checked); + } else { + return 0; + } +} + +// Check for new rulesets immediately +async function resetTimer() { + await store.local.set_promise('last-checked', false); + destroyTimer(); + await createTimer(); +} + +// Check for new updates. If found, return the timestamp. If not, return false +async function checkForNewUpdates(update_channel) { + let timestamp_result = await fetch(update_channel.update_path_prefix + (update_channel.format == "bloom" ? "/latest-bloom-timestamp" : "/latest-rulesets-timestamp")); + if(timestamp_result.status == 200) { + let uc_timestamp = Number(await timestamp_result.text()); + + if((await store.local.get_promise('uc-timestamp: ' + update_channel.name, 0)) < uc_timestamp) { + return uc_timestamp; + } + } + return false; +} + +// Retrieve the timestamp for when an update channel was published +async function getUpdateChannelTimestamps() { + let timestamp_promises = []; + for(let update_channel of combined_update_channels) { + timestamp_promises.push(new Promise(async resolve => { + let timestamp = await store.local.get_promise('uc-stored-timestamp: ' + update_channel.name, 0); + resolve([update_channel, timestamp]); + })); + } + let timestamps = await Promise.all(timestamp_promises); + return timestamps; +} + +// Download and return new rulesets +async function getNewRulesets(rulesets_timestamp, update_channel) { + + store.local.set_promise('uc-timestamp: ' + update_channel.name, rulesets_timestamp); + + let signature_promise = fetch(update_channel.update_path_prefix + "/rulesets-signature." + rulesets_timestamp + ".sha256"); + let rulesets_promise = fetch(update_channel.update_path_prefix + "/default.rulesets." + rulesets_timestamp + ".gz"); + + let responses = await Promise.all([ + signature_promise, + rulesets_promise + ]); + + let resolutions = await Promise.all([ + responses[0].arrayBuffer(), + responses[1].arrayBuffer() + ]); + + return { + signature_array_buffer: resolutions[0], + rulesets_array_buffer: resolutions[1] + }; +} + +// Download and return new bloom +async function getNewBloom(bloom_timestamp, update_channel) { + store.local.set_promise('uc-timestamp: ' + update_channel.name, bloom_timestamp); + + let signature_promise = fetch(update_channel.update_path_prefix + "/bloom-signature." + bloom_timestamp + ".sha256"); + let bloom_metadata_promise = fetch(update_channel.update_path_prefix + "/bloom-metadata." + bloom_timestamp + ".json"); + let bloom_promise = fetch(update_channel.update_path_prefix + "/bloom." + bloom_timestamp + ".bin"); + + let responses = await Promise.all([ + signature_promise, + bloom_metadata_promise, + bloom_promise + ]); + + let resolutions = await Promise.all([ + responses[0].arrayBuffer(), + responses[1].arrayBuffer(), + responses[2].arrayBuffer() + ]); + + return { + signature_array_buffer: resolutions[0], + bloom_metadata_array_buffer: resolutions[1], + bloom_array_buffer: resolutions[2], + }; + +} + +// Returns a promise which verifies that the rulesets have a valid EFF +// signature, and if so, stores them and returns true. +// Otherwise, it throws an exception. +function verifyAndStoreNewRulesets(new_rulesets, rulesets_timestamp, update_channel) { + return new Promise((resolve, reject) => { + window.crypto.subtle.verify( + { + name: "RSA-PSS", + saltLength: 32 + }, + imported_keys[update_channel.name], + new_rulesets.signature_array_buffer, + new_rulesets.rulesets_array_buffer + ).then(async isvalid => { + if(isvalid) { + util.log(util.NOTE, update_channel.name + ': Downloaded ruleset signature checks out. Storing rulesets.'); + + const rulesets_gz = util.ArrayBufferToString(new_rulesets.rulesets_array_buffer); + const rulesets_byte_array = pako.inflate(rulesets_gz); + const rulesets = new TextDecoder("utf-8").decode(rulesets_byte_array); + const rulesets_json = JSON.parse(rulesets); + + if(rulesets_json.timestamp != rulesets_timestamp) { + reject(update_channel.name + ': Downloaded ruleset had an incorrect timestamp. This may be an attempted downgrade attack. Aborting.'); + } else { + await store.local.set_promise('rulesets: ' + update_channel.name, window.btoa(rulesets_gz)); + resolve(true); + } + } else { + reject(update_channel.name + ': Downloaded ruleset signature is invalid. Aborting.'); + } + }).catch(() => { + reject(update_channel.name + ': Downloaded ruleset signature could not be verified. Aborting.'); + }); + }); +} + +// Returns a promise which verifies that the bloom has a valid EFF +// signature, and if so, stores it and returns true. +// Otherwise, it throws an exception. +function verifyAndStoreNewBloom(new_bloom, bloom_timestamp, update_channel) { + return new Promise((resolve, reject) => { + window.crypto.subtle.verify( + { + name: "RSA-PSS", + saltLength: 32 + }, + imported_keys[update_channel.name], + new_bloom.signature_array_buffer, + new_bloom.bloom_metadata_array_buffer + ).then(async isvalid => { + if(isvalid) { + util.log(util.NOTE, update_channel.name + ': Bloom filter metadata signature checks out.'); + + const bloom_metadata = JSON.parse(util.ArrayBufferToString(new_bloom.bloom_metadata_array_buffer)); + const bloom_str = util.ArrayBufferToString(new_bloom.bloom_array_buffer); + + if(bloom_metadata.timestamp != bloom_timestamp) { + reject(update_channel.name + ': Downloaded bloom filter had an incorrect timestamp. This may be an attempted downgrade attack. Aborting.'); + } else if(await sha256sum(new_bloom.bloom_array_buffer) != bloom_metadata.sha256sum) { + reject(update_channel.name + ': sha256sum of the bloom filter is invalid. Aborting.'); + } else { + await store.local.set_promise('bloom: ' + update_channel.name, window.btoa(bloom_str)); + await store.local.set_promise('bloom_bitmap_bits: ' + update_channel.name, bloom_metadata.bitmap_bits); + await store.local.set_promise('bloom_k_num: ' + update_channel.name, bloom_metadata.k_num); + await store.local.set_promise('bloom_sip_keys_0_0: ' + update_channel.name, bloom_metadata.sip_keys[0][0]); + await store.local.set_promise('bloom_sip_keys_0_1: ' + update_channel.name, bloom_metadata.sip_keys[0][1]); + await store.local.set_promise('bloom_sip_keys_1_0: ' + update_channel.name, bloom_metadata.sip_keys[1][0]); + await store.local.set_promise('bloom_sip_keys_1_1: ' + update_channel.name, bloom_metadata.sip_keys[1][1]); + resolve(true); + } + } else { + reject(update_channel.name + ': Downloaded bloom filter metadata signature is invalid. Aborting.'); + } + }).catch(() => { + reject(update_channel.name + ': Downloaded bloom signature could not be verified. Aborting.'); + }); + }); +} + +async function sha256sum(buffer) { + const hashBuffer = await window.crypto.subtle.digest('SHA-256', buffer); + const hashArray = Array.from(new Uint8Array(hashBuffer)); + const hashHex = hashArray.map(b => ('00' + b.toString(16)).slice(-2)).join(''); + return hashHex; +} + +function isNotUndefined(subject) { + return (typeof subject != 'undefined'); +} + +// Apply the rulesets we have stored. +async function applyStoredRulesets(rulesets_obj) { + let rulesets_promises = []; + for(let update_channel of combined_update_channels) { + if(update_channel.format == "rulesets" || !update_channel.format) { + rulesets_promises.push(new Promise(resolve => { + const key = 'rulesets: ' + update_channel.name; + chrome.storage.local.get(key, root => { + if(root[key]) { + util.log(util.NOTE, update_channel.name + ': Applying stored rulesets.'); + + const rulesets_gz = window.atob(root[key]); + const rulesets_byte_array = pako.inflate(rulesets_gz); + const rulesets_string = new TextDecoder("utf-8").decode(rulesets_byte_array); + const rulesets_json = JSON.parse(rulesets_string); + + resolve({json: rulesets_json, scope: update_channel.scope, replaces: update_channel.replaces_default_rulesets}); + } else { + resolve(); + } + }); + })); + } + } + + const rulesets_results = (await Promise.all(rulesets_promises)).filter(isNotUndefined); + + let replaces = false; + for(const rulesets_result of rulesets_results) { + if(rulesets_result.replaces === true) { + replaces = true; + } + rulesets_obj.addFromJson(rulesets_result.json.rulesets, rulesets_result.scope); + } + + if(!replaces) { + rulesets_obj.addFromJson(util.loadExtensionFile('rules/default.rulesets', 'json'), ''); + } +} + +// Apply the blooms we have stored. +async function applyStoredBlooms(bloom_arr) { + let bloom_promises = []; + for(let update_channel of combined_update_channels) { + if(update_channel.format == "bloom") { + bloom_promises.push(new Promise(resolve => { + const key = 'bloom: ' + update_channel.name; + chrome.storage.local.get(key, async root => { + if(root[key]) { + util.log(util.NOTE, update_channel.name + ': Applying stored bloom filter.'); + const bloom = util.StringToArrayBuffer(window.atob(root[key])); + const bloom_bitmap_bits = await store.local.get_promise('bloom_bitmap_bits: ' + update_channel.name, ""); + const bloom_k_num = await store.local.get_promise('bloom_k_num: ' + update_channel.name, ""); + const bloom_sip_keys_0_0 = await store.local.get_promise('bloom_sip_keys_0_0: ' + update_channel.name, ""); + const bloom_sip_keys_0_1 = await store.local.get_promise('bloom_sip_keys_0_1: ' + update_channel.name, ""); + const bloom_sip_keys_1_0 = await store.local.get_promise('bloom_sip_keys_1_0: ' + update_channel.name, ""); + const bloom_sip_keys_1_1 = await store.local.get_promise('bloom_sip_keys_1_1: ' + update_channel.name, ""); + + try{ + resolve(wasm.Bloom.from_existing(bloom, bloom_bitmap_bits, bloom_k_num, [[bloom_sip_keys_0_0, bloom_sip_keys_0_1], [bloom_sip_keys_1_0, bloom_sip_keys_1_1]])); + } catch(_) { + resolve(); + } + } else { + resolve(); + } + }); + })); + } + } + + bloom_arr.length = 0; + const bloom_results = (await Promise.all(bloom_promises)).filter(isNotUndefined); + for(const bloom_result of bloom_results) { + bloom_arr.push(bloom_result); + } +} + + +// basic workflow for periodic checks +async function performCheck() { + util.log(util.NOTE, 'Checking for new updates.'); + + const current_timestamp = Date.now() / 1000; + store.local.set_promise('last-checked', current_timestamp); + + let num_updates = 0; + for(let update_channel of combined_update_channels) { + if(update_channel.format == "bloom") { + let new_bloom_timestamp = await checkForNewUpdates(update_channel); + if(new_bloom_timestamp) { + util.log(util.NOTE, update_channel.name + ': A new bloom filter has been released. Downloading now.'); + let new_bloom = await getNewBloom(new_bloom_timestamp, update_channel); + try{ + await verifyAndStoreNewBloom(new_bloom, new_bloom_timestamp, update_channel); + store.local.set_promise('uc-stored-timestamp: ' + update_channel.name, new_bloom_timestamp); + num_updates++; + } catch(err) { + util.log(util.WARN, update_channel.name + ': ' + err); + } + } + } else { + let new_rulesets_timestamp = await checkForNewUpdates(update_channel); + if(new_rulesets_timestamp) { + + if(update_channel.replaces_default_rulesets && extension_timestamp > new_rulesets_timestamp) { + util.log(util.NOTE, update_channel.name + ': A new ruleset bundle has been released, but it is older than the extension-bundled rulesets it replaces. Skipping.'); + continue; + } + + util.log(util.NOTE, update_channel.name + ': A new ruleset bundle has been released. Downloading now.'); + let new_rulesets = await getNewRulesets(new_rulesets_timestamp, update_channel); + try{ + await verifyAndStoreNewRulesets(new_rulesets, new_rulesets_timestamp, update_channel); + store.local.set_promise('uc-stored-timestamp: ' + update_channel.name, new_rulesets_timestamp); + num_updates++; + } catch(err) { + util.log(util.WARN, update_channel.name + ': ' + err); + } + } + } + } + if(num_updates > 0) { + background_callback(); + } +}; + +async function storageListener(changes, areaName) { + if (areaName === 'sync' || areaName === 'local') { + if ('autoUpdateRulesets' in changes) { + if (changes.autoUpdateRulesets.newValue) { + await createTimer(); + } else { + destroyTimer(); + } + } + } + + if ('update_channels' in changes) { + await loadUpdateChannelsKeys(); + } +}; + +function addStorageListener() { + chrome.storage.onChanged.addListener(storageListener); +} + +function removeStorageListener() { + chrome.storage.onChanged.removeListener(storageListener); +} + +addStorageListener(); + +let initialCheck, + subsequentChecks; + +async function createTimer() { + const time_to_next_check = await timeToNextCheck(); + + initialCheck = setTimeout(() => { + performCheck(); + subsequentChecks = setInterval(performCheck, periodicity * 1000); + }, time_to_next_check * 1000); +} + +function destroyTimer() { + if (initialCheck) { + clearTimeout(initialCheck); + } + if (subsequentChecks) { + clearInterval(subsequentChecks); + } +} + +function clear_replacement_update_channels() { + let keys = []; + for (const update_channel of combined_update_channels) { + if(update_channel.replaces_default_rulesets) { + util.log(util.NOTE, update_channel.name + ': You have a new version of the extension. Clearing any stored rulesets, which replace the new extension-bundled ones.'); + keys.push('uc-timestamp: ' + update_channel.name); + keys.push('uc-stored-timestamp: ' + update_channel.name); + keys.push('rulesets: ' + update_channel.name); + } + } + + return new Promise(resolve => { + chrome.storage.local.remove(keys, resolve); + }); +} + +async function initialize(store_param, cb) { + store = store_param; + background_callback = cb; + + await loadUpdateChannelsKeys(); + + if (await store.local.get_promise('extensionTimestamp', 0) !== extension_timestamp) { + await clear_replacement_update_channels(); + await store.local.set_promise('extensionTimestamp', extension_timestamp); + } + + if (await store.get_promise('autoUpdateRulesets', true)) { + await createTimer(); + } +} + +Object.assign(exports, { + applyStoredRulesets, + applyStoredBlooms, + initialize, + getUpdateChannelTimestamps, + resetTimer, + loadUpdateChannelsKeys, + addStorageListener, + removeStorageListener, +}); + +})(typeof exports == 'undefined' ? require.scopes.update = {} : exports); diff --git a/chromium/background-scripts/update_channels.js b/chromium/background-scripts/update_channels.js new file mode 100644 index 000000000000..80494ef0f2cc --- /dev/null +++ b/chromium/background-scripts/update_channels.js @@ -0,0 +1,44 @@ +/* exported update_channels */ + +'use strict'; + +(function (exports) { + +exports.update_channels = [ + { + name: 'EFF (Full)', + jwk: { + kty: 'RSA', + e: 'AQAB', + n: '1cwvFQu3Kw-Pz8bcEFuV5zx0ZheDsc4Tva7Qv6BL90_sDLqCW79Y543nDkPtNVfFH_89pt2kSPp_IcS5XnYiw6zBQeFuILFw5JpvZt14K0s4' + + 'e025Q9CXfhYKIBKT9PnqihwAacjMa6rQb7RTu7XxVvqxRb3b0vx2CR40LSlYZ8H_KpeaUwq2oz-fyrI6LFTeYvbO3ZuLKeK5xV1a32xeTVMF' + + 'kIj3LxnQalxq-DRHfj7LRRoTnbRDW4uoDc8aVpLFliuO79jUKbobz4slpiWJ4wjKR_O6OK13HbZUiOSxi8Bms-UqBPOyzbMVpmA7lv_zWdaL' + + 'u1IVlVXQyLVbbrqI6llRqfHdcJoEl-eC48AofuB-relQtjTEK_hyBf7sPwrbqAarjRjlyEx6Qy5gTXyxM9attfNAeupYR6jm8LKm6TFpfWky' + + 'DxUmj_f5pJMBWNTomV74f8iQ2M18_KWMUDCOf80tR0t21Q1iCWdvA3K_KJn05tTLyumlwwlQijMqRkYuao-CX9L3DJIaB3VPYPTSIPUr7oi1' + + '6agsuamOyiOtlZiRpEvoNg2ksJMZtwnj5xhBQydkdhMW2ZpHDzcLuZlhJYZL_l3_7wuzRM7vpyA9obP92CpZRFJErGZmFxJC93I4U9-0B0wg' + + '-sbyMKGJ5j1BWTnibCklDXtWzXtuiz18EgE' + }, + update_path_prefix: 'https://www.https-rulesets.org/v1/', + scope: '', + replaces_default_rulesets: true + }, + { + name: 'DuckDuckGo Smarter Encryption', + format: 'bloom', + jwk: { + kty: 'RSA', + e: 'AQAB', + n: '1cwvFQu3Kw-Pz8bcEFuV5zx0ZheDsc4Tva7Qv6BL90_sDLqCW79Y543nDkPtNVfFH_89pt2kSPp_IcS5XnYiw6zBQeFuILFw5JpvZt14K0s4' + + 'e025Q9CXfhYKIBKT9PnqihwAacjMa6rQb7RTu7XxVvqxRb3b0vx2CR40LSlYZ8H_KpeaUwq2oz-fyrI6LFTeYvbO3ZuLKeK5xV1a32xeTVMF' + + 'kIj3LxnQalxq-DRHfj7LRRoTnbRDW4uoDc8aVpLFliuO79jUKbobz4slpiWJ4wjKR_O6OK13HbZUiOSxi8Bms-UqBPOyzbMVpmA7lv_zWdaL' + + 'u1IVlVXQyLVbbrqI6llRqfHdcJoEl-eC48AofuB-relQtjTEK_hyBf7sPwrbqAarjRjlyEx6Qy5gTXyxM9attfNAeupYR6jm8LKm6TFpfWky' + + 'DxUmj_f5pJMBWNTomV74f8iQ2M18_KWMUDCOf80tR0t21Q1iCWdvA3K_KJn05tTLyumlwwlQijMqRkYuao-CX9L3DJIaB3VPYPTSIPUr7oi1' + + '6agsuamOyiOtlZiRpEvoNg2ksJMZtwnj5xhBQydkdhMW2ZpHDzcLuZlhJYZL_l3_7wuzRM7vpyA9obP92CpZRFJErGZmFxJC93I4U9-0B0wg' + + '-sbyMKGJ5j1BWTnibCklDXtWzXtuiz18EgE' + }, + update_path_prefix: 'https://www.https-rulesets.org/ddg/', + scope: '', + } +]; + +})(typeof exports === 'undefined' ? require.scopes.update_channels = {} : exports); diff --git a/chromium/background-scripts/util.js b/chromium/background-scripts/util.js new file mode 100644 index 000000000000..e2b069b8017d --- /dev/null +++ b/chromium/background-scripts/util.js @@ -0,0 +1,183 @@ +"use strict"; + +(function(exports) { + +var VERB = 1; +var DBUG = 2; +var INFO = 3; +var NOTE = 4; +var WARN = 5; +// FYI: Logging everything is /very/ slow. Chrome will log & buffer +// these console logs even when the debug tools are closed. :( + +// TODO: Add an easy UI to change the log level. +// (Developers can just type DEFAULT_LOG_LEVEL=VERB in the console) +var DEFAULT_LOG_LEVEL = NOTE; +console.log("Hey developer! Want to see more verbose logging?"); +console.log("Type this into the console: let util = require('./util'); util.setDefaultLogLevel(util.VERB);"); +console.log("Accepted levels are VERB, DBUG, INFO, NOTE and WARN, default is NOTE"); + +function log(level, str) { + if (level >= DEFAULT_LOG_LEVEL) { + if (level === WARN) { + // Show warning with a little yellow icon in Chrome. + console.warn(str); + } else { + console.log(str); + } + } +} + +function setDefaultLogLevel(level) { + DEFAULT_LOG_LEVEL = level; +} + +function getDefaultLogLevel() { + return DEFAULT_LOG_LEVEL; +} + +/** + * Load a file packaged with the extension + * + * @param url: a relative URL to local file + */ +function loadExtensionFile(url, returnType) { + var xhr = new XMLHttpRequest(); + // Use blocking XHR to ensure everything is loaded by the time + // we return. + xhr.open("GET", chrome.runtime.getURL(url), false); + xhr.send(null); + // Get file contents + if (xhr.readyState !== 4) { + return; + } + if (returnType === 'xml') { + return xhr.responseXML; + } + if (returnType === 'json') { + return JSON.parse(xhr.responseText); + } + return xhr.responseText; +} + +/** + * Remove tailing dots from hostname, e.g. "www.example.com." + * Preserve port numbers if they are used + */ +function getNormalisedHostname(host) { + let [ hostname, port ] = host.split(":"); + while (hostname && hostname[hostname.length - 1] === '.' && hostname !== '.') { + hostname = hostname.slice(0, -1); + } + if (port) { + return `${hostname}:${port}`; + } + return hostname; +} + +// Empty iterable singleton to reduce memory usage +const nullIterable = Object.create(null, { + [Symbol.iterator]: { + value: function* () { + // do nothing + } + }, + + size: { + value: 0 + }, +}); + +/** + * Return true if host is well-formed (RFC 1035) + */ +function isValidHostname(host) { + if (host && host.length > 0 && host.length <= 255 && host.indexOf("..") === -1) { + return true; + } + return false; +} + +/** + * Return a list of wildcard expressions which support + * the host under HTTPS Everywhere's implementation + */ +function getWildcardExpressions(host) { + // Ensure host is well-formed (RFC 1035) + if (!isValidHostname(host)) { + return nullIterable; + } + + // Ensure host does not contain a wildcard itself + if (host.indexOf("*") != -1) { + return nullIterable; + } + + let results = []; + + // Replace www.example.com with www.example.* + // eat away from the right for once and only once + let segmented = host.split("."); + if (segmented.length > 1) { + const tmp = [...segmented.slice(0, segmented.length - 1), "*"].join("."); + results.push(tmp); + } + + // now eat away from the left, with *, so that for x.y.z.google.com we + // check *.y.z.google.com, *.z.google.com and *.google.com + for (let i = 1; i < segmented.length - 1; i++) { + const tmp = ["*", ...segmented.slice(i, segmented.length)].join("."); + results.push(tmp); + } + return results; +} + +/** + * Convert an ArrayBuffer to string + * + * @param array: an ArrayBuffer to convert + */ +function ArrayBufferToString(ab) { + let array = new Uint8Array(ab); + let string = ""; + + for (let byte of array) { + string += String.fromCharCode(byte); + } + + return string; +} + +/** + * Convert a string to an ArrayBuffer + * + * @param string: a string to convert + */ +function StringToArrayBuffer(str) { + var byteArray = new Uint8Array(str.length); + for (var i = 0; i < str.length; i++) { + byteArray[i] = str.charCodeAt(i); + } + return byteArray; +} + + +Object.assign(exports, { + VERB, + DBUG, + INFO, + NOTE, + WARN, + log, + nullIterable, + isValidHostname, + getNormalisedHostname, + getWildcardExpressions, + setDefaultLogLevel, + getDefaultLogLevel, + loadExtensionFile, + ArrayBufferToString, + StringToArrayBuffer +}); + +})(typeof exports == 'undefined' ? require.scopes.util = {} : exports); diff --git a/chromium/background-scripts/wasm.js b/chromium/background-scripts/wasm.js new file mode 100644 index 000000000000..551b1d3ea672 --- /dev/null +++ b/chromium/background-scripts/wasm.js @@ -0,0 +1,27 @@ +"use strict"; + +(function(exports) { + +const util = require('./util'), + { RuleSets, Bloom } = wasm_bindgen; + +async function initialize() { + try { + await wasm_bindgen(chrome.runtime.getURL('wasm/https_everywhere_lib_wasm_bg.wasm')); + } catch(e) { + util.log(util.WARN, 'The wasm library has not loaded correctly: ' + e); + } +} + +function is_enabled() { + return true; +} + +Object.assign(exports, { + initialize, + RuleSets, + Bloom, + is_enabled, +}); + +})(typeof exports == 'undefined' ? require.scopes.wasm = {} : exports); diff --git a/chromium/background.js b/chromium/background.js deleted file mode 100644 index 648da2cd6fde..000000000000 --- a/chromium/background.js +++ /dev/null @@ -1,714 +0,0 @@ -"use strict"; -/** - * Fetch and parse XML to be loaded as RuleSets. - * - * @param url: a relative URL to local XML - */ -function loadExtensionFile(url, returnType) { - var xhr = new XMLHttpRequest(); - // Use blocking XHR to ensure everything is loaded by the time - // we return. - xhr.open("GET", chrome.extension.getURL(url), false); - xhr.send(null); - // Get file contents - if (xhr.readyState != 4) { - return; - } - if (returnType === 'xml') { - return xhr.responseXML; - } - return xhr.responseText; -} - - -// Rules are loaded here -var all_rules = new RuleSets(localStorage); - -// Allow users to enable `platform="mixedcontent"` rulesets -var enableMixedRulesets = false; -storage.get({enableMixedRulesets: false}, function(item) { - enableMixedRulesets = item.enableMixedRulesets; - all_rules.addFromXml(loadExtensionFile('rules/default.rulesets', 'xml')); -}); - -// Load in the legacy custom rulesets, if any -function load_legacy_custom_rulesets(legacy_custom_rulesets){ - for(let legacy_custom_ruleset of legacy_custom_rulesets){ - all_rules.addFromXml((new DOMParser()).parseFromString(legacy_custom_ruleset, 'text/xml')); - } -} -storage.get({legacy_custom_rulesets: []}, item => load_legacy_custom_rulesets(item.legacy_custom_rulesets)); - -var USER_RULE_KEY = 'userRules'; -// Records which tabId's are active in the HTTPS Switch Planner (see -// devtools-panel.js). -var switchPlannerEnabledFor = {}; -// Detailed information recorded when the HTTPS Switch Planner is active. -// Structure is: -// switchPlannerInfo[tabId]["rw"/"nrw"][resource_host][active_content][url]; -// rw / nrw stand for "rewritten" versus "not rewritten" -var switchPlannerInfo = {}; - -// Is HTTPSe enabled, or has it been manually disabled by the user? -var isExtensionEnabled = true; - -// Load prefs about whether http nowhere is on. Structure is: -// { httpNowhere: true/false } -var httpNowhereOn = false; -storage.get({httpNowhere: false}, function(item) { - httpNowhereOn = item.httpNowhere; - updateState(); -}); -chrome.storage.onChanged.addListener(function(changes, areaName) { - if (areaName === 'sync' || areaName === 'local') { - for (var key in changes) { - if (key === 'httpNowhere') { - httpNowhereOn = changes[key].newValue; - updateState(); - } - } - } -}); -if (chrome.tabs) { - chrome.tabs.onActivated.addListener(function() { - updateState(); - }); -} -if (chrome.windows) { - chrome.windows.onFocusChanged.addListener(function() { - updateState(); - }); -} -chrome.webNavigation.onCompleted.addListener(function() { - updateState(); -}); - -/** -* Load stored user rules - **/ -var getStoredUserRules = function() { - var oldUserRuleString = localStorage.getItem(USER_RULE_KEY); - var oldUserRules = []; - if (oldUserRuleString) { - oldUserRules = JSON.parse(oldUserRuleString); - } - return oldUserRules; -}; -var wr = chrome.webRequest; - -/** - * Load all stored user rules - */ -var loadStoredUserRules = function() { - var rules = getStoredUserRules(); - var i; - for (let rule of rules) { - all_rules.addUserRule(rule); - } - log('INFO', 'loaded ' + i + ' stored user rules'); -}; - -loadStoredUserRules(); - -/** - * Set the icon color correctly - * inactive: extension is enabled, but no rules were triggered on this page. - * blocking: extension is in "block all HTTP requests" mode. - * active: extension is enabled and rewrote URLs on this page. - * disabled: extension is disabled from the popup menu. - */ -var updateState = function() { - if (!chrome.tabs) { - return; - } - chrome.tabs.query({active: true, currentWindow: true}, function(tabs) { - if (!tabs || tabs.length === 0) { - return; - } - var applied = activeRulesets.getRulesets(tabs[0].id) - var iconState = "inactive"; - if (!isExtensionEnabled) { - iconState = "disabled"; - } else if (httpNowhereOn) { - iconState = "blocking"; - } else if (applied) { - iconState = "active"; - } - chrome.browserAction.setIcon({ - path: { - "38": "icons/icon-" + iconState + "-38.png" - } - }); - chrome.browserAction.setTitle({ - title: "HTTPS Everywhere (" + iconState + ")" - }); - }); -} - -/** - * Adds a new user rule - * @param params: params defining the rule - * @param cb: Callback to call after success/fail - * */ -var addNewRule = function(params, cb) { - if (all_rules.addUserRule(params)) { - // If we successfully added the user rule, save it in local - // storage so it's automatically applied when the extension is - // reloaded. - var oldUserRules = getStoredUserRules(); - // TODO: there's a race condition here, if this code is ever executed from multiple - // client windows in different event loops. - oldUserRules.push(params); - // TODO: can we exceed the max size for storage? - localStorage.setItem(USER_RULE_KEY, JSON.stringify(oldUserRules)); - cb(true); - } else { - cb(false); - } -}; - -/** - * Removes a user rule - * @param ruleset: the ruleset to remove - * */ -var removeRule = function(ruleset) { - if (all_rules.removeUserRule(ruleset)) { - // If we successfully removed the user rule, remove it in local storage too - var userRules = getStoredUserRules(); - userRules = userRules.filter(r => - !(r.host == ruleset.name && - r.redirectTo == ruleset.rules[0].to && - String(RegExp(r.urlMatcher)) == String(ruleset.rules[0].from_c)) - ); - localStorage.setItem(USER_RULE_KEY, JSON.stringify(userRules)); - } -} - -/** - * Adds a listener for removed tabs - * */ -function AppliedRulesets() { - this.active_tab_rules = {}; - - var that = this; - if (chrome.tabs) { - chrome.tabs.onRemoved.addListener(function(tabId, info) { - that.removeTab(tabId); - }); - } -} - -AppliedRulesets.prototype = { - addRulesetToTab: function(tabId, ruleset) { - if (tabId in this.active_tab_rules) { - this.active_tab_rules[tabId][ruleset.name] = ruleset; - } else { - this.active_tab_rules[tabId] = {}; - this.active_tab_rules[tabId][ruleset.name] = ruleset; - } - }, - - getRulesets: function(tabId) { - if (tabId in this.active_tab_rules) { - return this.active_tab_rules[tabId]; - } - return null; - }, - - removeTab: function(tabId) { - delete this.active_tab_rules[tabId]; - } -}; - -// FIXME: change this name -var activeRulesets = new AppliedRulesets(); - -var urlBlacklist = new Set(); -var domainBlacklist = new Set(); - -// redirect counter workaround -// TODO: Remove this code if they ever give us a real counter -var redirectCounter = {}; - -/** - * Called before a HTTP(s) request. Does the heavy lifting - * Cancels the request/redirects it to HTTPS. URL modification happens in here. - * @param details of the handler, see Chrome doc - * */ -function onBeforeRequest(details) { - // If HTTPSe has been disabled by the user, return immediately. - if (!isExtensionEnabled) { - return; - } - - const uri = new URL(details.url); - - // Should the request be canceled? - var shouldCancel = ( - httpNowhereOn && - uri.protocol === 'http:' && - !/\.onion$/.test(uri.hostname) && - !/^localhost$/.test(uri.hostname) && - !/^127(\.[0-9]{1,3}){3}$/.test(uri.hostname) && - !/^0\.0\.0\.0$/.test(uri.hostname) - ); - - // Normalise hosts such as "www.example.com." - var canonical_host = uri.hostname; - if (canonical_host.charAt(canonical_host.length - 1) == ".") { - while (canonical_host.charAt(canonical_host.length - 1) == ".") - canonical_host = canonical_host.slice(0,-1); - uri.hostname = canonical_host; - } - - // If there is a username / password, put them aside during the ruleset - // analysis process - var using_credentials_in_url = false; - if (uri.password || uri.username) { - using_credentials_in_url = true; - var tmp_user = uri.username; - var tmp_pass = uri.password; - uri.username = null; - uri.password = null; - } - - var canonical_url = uri.href; - if (details.url != canonical_url && !using_credentials_in_url) { - log(INFO, "Original url " + details.url + - " changed before processing to " + canonical_url); - } - if (urlBlacklist.has(canonical_url)) { - return {cancel: shouldCancel}; - } - - if (details.type == "main_frame") { - activeRulesets.removeTab(details.tabId); - } - - var potentiallyApplicable = all_rules.potentiallyApplicableRulesets(uri.hostname); - - if (redirectCounter[details.requestId] >= 8) { - log(NOTE, "Redirect counter hit for " + canonical_url); - urlBlacklist.add(canonical_url); - var hostname = uri.hostname; - domainBlacklist.add(hostname); - log(WARN, "Domain blacklisted " + hostname); - return {cancel: shouldCancel}; - } - - var newuristr = null; - - for (let ruleset of potentiallyApplicable) { - activeRulesets.addRulesetToTab(details.tabId, ruleset); - if (ruleset.active && !newuristr) { - newuristr = ruleset.apply(canonical_url); - } - } - - if (newuristr && using_credentials_in_url) { - // re-insert userpass info which was stripped temporarily - const uri_with_credentials = new URL(newuristr); - uri_with_credentials.username = tmp_user; - uri_with_credentials.password = tmp_pass; - newuristr = uri_with_credentials.href; - } - - // In Switch Planner Mode, record any non-rewriteable - // HTTP URIs by parent hostname, along with the resource type. - if (switchPlannerEnabledFor[details.tabId] && uri.protocol !== "https:") { - writeToSwitchPlanner(details.type, - details.tabId, - canonical_host, - details.url, - newuristr); - } - - if (httpNowhereOn) { - // If loading a main frame, try the HTTPS version as an alternative to - // failing. - if (shouldCancel) { - if (!newuristr) { - return {redirectUrl: canonical_url.replace(/^http:/, "https:")}; - } else { - return {redirectUrl: newuristr.replace(/^http:/, "https:")}; - } - } - if (newuristr && newuristr.substring(0, 5) === "http:") { - // Abort early if we're about to redirect to HTTP in HTTP Nowhere mode - return {cancel: true}; - } - } - - if (newuristr) { - return {redirectUrl: newuristr}; - } else { - return {cancel: shouldCancel}; - } -} - - -// Map of which values for the `type' enum denote active vs passive content. -// https://developer.chrome.com/extensions/webRequest.html#event-onBeforeRequest -var activeTypes = { stylesheet: 1, script: 1, object: 1, other: 1}; - -// We consider sub_frame to be passive even though it can contain JS or flash. -// This is because code running in the sub_frame cannot access the main frame's -// content, by same-origin policy. This is true even if the sub_frame is on the -// same domain but different protocol - i.e. HTTP while the parent is HTTPS - -// because same-origin policy includes the protocol. This also mimics Chrome's -// UI treatment of insecure subframes. -var passiveTypes = { main_frame: 1, sub_frame: 1, image: 1, xmlhttprequest: 1}; - -/** - * Record a non-HTTPS URL loaded by a given hostname in the Switch Planner, for - * use in determining which resources need to be ported to HTTPS. - * (Reminder: Switch planner is the pro-tool enabled by switching into debug-mode) - * - * @param type: type of the resource (see activeTypes and passiveTypes arrays) - * @param tab_id: The id of the tab - * @param resource_host: The host of the original url - * @param resource_url: the original url - * @param rewritten_url: The url rewritten to - * */ -function writeToSwitchPlanner(type, tab_id, resource_host, resource_url, rewritten_url) { - var rw = "rw"; - if (rewritten_url == null) - rw = "nrw"; - - var active_content = 0; - if (activeTypes[type]) { - active_content = 1; - } else if (passiveTypes[type]) { - active_content = 0; - } else { - log(WARN, "Unknown type from onBeforeRequest details: `" + type + "', assuming active"); - active_content = 1; - } - - if (!switchPlannerInfo[tab_id]) { - switchPlannerInfo[tab_id] = {}; - switchPlannerInfo[tab_id]["rw"] = {}; - switchPlannerInfo[tab_id]["nrw"] = {}; - } - if (!switchPlannerInfo[tab_id][rw][resource_host]) - switchPlannerInfo[tab_id][rw][resource_host] = {}; - if (!switchPlannerInfo[tab_id][rw][resource_host][active_content]) - switchPlannerInfo[tab_id][rw][resource_host][active_content] = {}; - - switchPlannerInfo[tab_id][rw][resource_host][active_content][resource_url] = 1; -} - -/** - * Return the number of properties in an object. For associative maps, this is - * their size. - * @param obj: object to calc the size for - * */ -function objSize(obj) { - if (typeof obj == 'undefined') return 0; - var size = 0, key; - for (key in obj) { - if (obj.hasOwnProperty(key)) size++; - } - return size; -} - -/** - * Make an array of asset hosts by score so we can sort them, - * presenting the most important ones first. - * */ -function sortSwitchPlanner(tab_id, rewritten) { - var asset_host_list = []; - if (typeof switchPlannerInfo[tab_id] === 'undefined' || - typeof switchPlannerInfo[tab_id][rewritten] === 'undefined') { - return []; - } - var tabInfo = switchPlannerInfo[tab_id][rewritten]; - for (var asset_host in tabInfo) { - var ah = tabInfo[asset_host]; - var activeCount = objSize(ah[1]); - var passiveCount = objSize(ah[0]); - var score = activeCount * 100 + passiveCount; - asset_host_list.push([score, activeCount, passiveCount, asset_host]); - } - asset_host_list.sort(function(a,b){return a[0]-b[0];}); - return asset_host_list; -} - -/** -* Format the switch planner output for presentation to a user. -* */ -function switchPlannerSmallHtmlSection(tab_id, rewritten) { - var asset_host_list = sortSwitchPlanner(tab_id, rewritten); - if (asset_host_list.length == 0) { - return "none"; - } - - var output = ""; - for (var i = asset_host_list.length - 1; i >= 0; i--) { - var host = asset_host_list[i][3]; - var activeCount = asset_host_list[i][1]; - var passiveCount = asset_host_list[i][2]; - - output += "" + host + ": "; - if (activeCount > 0) { - output += activeCount + " active"; - if (passiveCount > 0) - output += ", "; - } - if (passiveCount > 0) { - output += passiveCount + " passive"; - } - output += "
"; - } - return output; -} - -/** - * Create switch planner sections - * */ -function switchPlannerRenderSections(tab_id, f) { - return "Unrewritten HTTP resources loaded from this tab (enable HTTPS on " + - "these domains and add them to HTTPS Everywhere):
" + - f(tab_id, "nrw") + - "
Resources rewritten successfully from this tab (update these " + - "in your source code):
" + - f(tab_id, "rw"); -} - -/** - * Generate the small switch planner html content - * */ -function switchPlannerSmallHtml(tab_id) { - return switchPlannerRenderSections(tab_id, switchPlannerSmallHtmlSection); -} - -/** - * Generate a HTML link from urls in map - * map: the map containing the urls - * */ -function linksFromKeys(map) { - if (typeof map == 'undefined') return ""; - var output = ""; - for (var key in map) { - if (map.hasOwnProperty(key)) { - output += "" + key + "
"; - } - } - return output; -} - -/** - * Generate the detailed html fot the switch planner - * */ -function switchPlannerDetailsHtml(tab_id) { - return switchPlannerRenderSections(tab_id, switchPlannerDetailsHtmlSection); -} - -/** - * Generate the detailed html fot the switch planner, by section - * */ -function switchPlannerDetailsHtmlSection(tab_id, rewritten) { - var asset_host_list = sortSwitchPlanner(tab_id, rewritten); - var output = ""; - - for (var i = asset_host_list.length - 1; i >= 0; i--) { - var host = asset_host_list[i][3]; - var activeCount = asset_host_list[i][1]; - var passiveCount = asset_host_list[i][2]; - - output += "" + host + ": "; - if (activeCount > 0) { - output += activeCount + " active
"; - output += linksFromKeys(switchPlannerInfo[tab_id][rewritten][host][1]); - } - if (passiveCount > 0) { - output += "
" + passiveCount + " passive
"; - output += linksFromKeys(switchPlannerInfo[tab_id][rewritten][host][0]); - } - output += "
"; - } - return output; -} - -/** - * monitor cookie changes. Automatically convert them to secure cookies - * @param changeInfo Cookie changed info, see Chrome doc - * */ -function onCookieChanged(changeInfo) { - if (!changeInfo.removed && !changeInfo.cookie.secure && isExtensionEnabled) { - if (all_rules.shouldSecureCookie(changeInfo.cookie)) { - var cookie = {name:changeInfo.cookie.name, - value:changeInfo.cookie.value, - path:changeInfo.cookie.path, - httpOnly:changeInfo.cookie.httpOnly, - expirationDate:changeInfo.cookie.expirationDate, - storeId:changeInfo.cookie.storeId, - secure: true}; - - // Host-only cookies don't set the domain field. - if (!changeInfo.cookie.hostOnly) { - cookie.domain = changeInfo.cookie.domain; - } - - // The cookie API is magical -- we must recreate the URL from the domain and path. - if (changeInfo.cookie.domain[0] == ".") { - cookie.url = "https://www" + changeInfo.cookie.domain + cookie.path; - } else { - cookie.url = "https://" + changeInfo.cookie.domain + cookie.path; - } - // We get repeated events for some cookies because sites change their - // value repeatedly and remove the "secure" flag. - log(DBUG, - "Securing cookie " + cookie.name + " for " + changeInfo.cookie.domain + ", was secure=" + changeInfo.cookie.secure); - chrome.cookies.set(cookie); - } - } -} - -/** - * handling redirects, breaking loops - * @param details details for the redirect (see chrome doc) - * */ -function onBeforeRedirect(details) { - // Catch redirect loops (ignoring about:blank, etc. caused by other extensions) - var prefix = details.redirectUrl.substring(0, 5); - if (prefix === "http:" || prefix === "https") { - if (details.requestId in redirectCounter) { - redirectCounter[details.requestId] += 1; - log(DBUG, "Got redirect id "+details.requestId+ - ": "+redirectCounter[details.requestId]); - } else { - redirectCounter[details.requestId] = 1; - } - } -} - -// Registers the handler for requests -// See: https://github.com/EFForg/https-everywhere/issues/10039 -wr.onBeforeRequest.addListener(onBeforeRequest, {urls: ["*://*/*"]}, ["blocking"]); - - -// Try to catch redirect loops on URLs we've redirected to HTTPS. -wr.onBeforeRedirect.addListener(onBeforeRedirect, {urls: ["https://*/*"]}); - - -// Listen for cookies set/updated and secure them if applicable. This function is async/nonblocking. -chrome.cookies.onChanged.addListener(onCookieChanged); - -/** - * disable switch Planner - * @param tabId the Tab to disable for - */ -function disableSwitchPlannerFor(tabId) { - delete switchPlannerEnabledFor[tabId]; - // Clear stored URL info. - delete switchPlannerInfo[tabId]; -} - -/** - * Enable switch planner for specific tab - * @param tabId the tab to enable it for - */ -function enableSwitchPlannerFor(tabId) { - switchPlannerEnabledFor[tabId] = true; -} - -// Listen for connection from the DevTools panel so we can set up communication. -chrome.runtime.onConnect.addListener(function (port) { - if (port.name == "devtools-page") { - chrome.runtime.onMessage.addListener(function(message, sender, sendResponse){ - var tabId = message.tabId; - - var disableOnCloseCallback = function(port) { - log(DBUG, "Devtools window for tab " + tabId + " closed, clearing data."); - disableSwitchPlannerFor(tabId); - }; - - if (message.type === "enable") { - enableSwitchPlannerFor(tabId); - port.onDisconnect.addListener(disableOnCloseCallback); - } else if (message.type === "disable") { - disableSwitchPlannerFor(tabId); - } else if (message.type === "getSmallHtml") { - sendResponse({html: switchPlannerSmallHtml(tabId)}); - } - }); - } -}); - -// This is necessary for communication with the popup in Firefox Private -// Browsing Mode, see https://bugzilla.mozilla.org/show_bug.cgi?id=1329304 -chrome.runtime.onMessage.addListener(function(message, sender, sendResponse){ - if (message.type == "get_option") { - storage.get(message.object, function(item){ - sendResponse(item); - }); - return true; - } else if (message.type == "set_option") { - storage.set(message.object); - } else if (message.type == "get_is_extension_enabled") { - sendResponse(isExtensionEnabled); - } else if (message.type == "set_is_extension_enabled") { - isExtensionEnabled = message.object; - sendResponse(isExtensionEnabled); - } else if (message.type == "delete_from_ruleset_cache") { - all_rules.ruleCache.delete(message.object); - } else if (message.type == "get_active_rulesets") { - sendResponse(activeRulesets.getRulesets(message.object)); - } else if (message.type == "set_ruleset_active_status") { - var ruleset = activeRulesets.getRulesets(message.object.tab_id)[message.object.name]; - ruleset.active = message.object.active; - sendResponse(true); - } else if (message.type == "add_new_rule") { - addNewRule(message.object, function() { - sendResponse(true); - }); - return true; - } else if (message.type == "update_state") { - updateState(); - } else if (message.type == "remove_rule") { - removeRule(message.object); - } else if (message.type == "import_settings") { - // This is used when importing settings from the options ui - import_settings(message.object).then(() => { - sendResponse(true); - }); - } -}); - -// Send a message to the embedded webextension bootstrap.js to get settings to import -chrome.runtime.sendMessage("import-legacy-data", import_settings); - -/** - * Import extension settings (custom rulesets, ruleset toggles, globals) from an object - * @param settings the settings object - */ -async function import_settings(settings){ - if(settings.changed){ - // Load custom rulesets and add to storage - await new Promise(resolve => { - storage.set({"legacy_custom_rulesets": settings.custom_rulesets}, resolve); - }); - - // Load all the ruleset toggles into memory and store - let rule_toggle_promises = []; - for(let ruleset_name in settings.rule_toggle){ - localStorage[ruleset_name] = settings.rule_toggle[ruleset_name]; - } - - all_rules = new RuleSets(localStorage); - all_rules.addFromXml(loadExtensionFile('rules/default.rulesets', 'xml')); - load_legacy_custom_rulesets(settings.custom_rulesets); - - // Set/store globals - await new Promise(resolve => { - storage.set({'httpNowhere': settings.prefs.http_nowhere_enabled}, resolve); - }); - await new Promise(resolve => { - storage.set({'showCounter': settings.prefs.show_counter}, resolve); - }); - await new Promise(resolve => { - storage.set({'globalEnabled': settings.prefs.global_enabled}, resolve); - }); - } -} diff --git a/chromium/chrome-resources/css/chrome_shared.css b/chromium/chrome-resources/css/chrome_shared.css deleted file mode 100644 index 3f1ebbd05bc8..000000000000 --- a/chromium/chrome-resources/css/chrome_shared.css +++ /dev/null @@ -1,106 +0,0 @@ -/* Copyright (c) 2012 The Chromium Authors. All rights reserved. - * Use of this source code is governed by a BSD-style license that can be - * found in the LICENSE file. */ - -/* This file holds CSS that should be shared, in theory, by all user-visible - * chrome:// pages. */ - -@import url("widgets.css"); - - @import url("chromeos/ui_account_tweaks.css"); - - -/* Prevent CSS from overriding the hidden property. */ -[hidden] { - display: none !important; -} - -html.loading * { - -webkit-transition-delay: 0 !important; - -webkit-transition-duration: 0 !important; -} - -body { - cursor: default; - margin: 0; -} - -p { - line-height: 1.8em; -} - -h1, -h2, -h3 { - -webkit-user-select: none; - font-weight: normal; - /* Makes the vertical size of the text the same for all fonts. */ - line-height: 1; -} - -h1 { - font-size: 1.5em; -} - -h2 { - font-size: 1.3em; - margin-bottom: 0.4em; -} - -h3 { - color: black; - font-size: 1.2em; - margin-bottom: 0.8em; -} - -a { - color: rgb(17, 85, 204); - text-decoration: underline; -} - -a:active { - color: rgb(5, 37, 119); -} - -/* Elements that need to be LTR even in an RTL context, but should align - * right. (Namely, URLs, search engine names, etc.) - */ -html[dir='rtl'] .weakrtl { - direction: ltr; - text-align: right; -} - -/* Input fields in search engine table need to be weak-rtl. Since those input - * fields are generated for all cr.ListItem elements (and we only want weakrtl - * on some), the class needs to be on the enclosing div. - */ -html[dir='rtl'] div.weakrtl input { - direction: ltr; - text-align: right; -} - -html[dir='rtl'] .favicon-cell.weakrtl { - -webkit-padding-end: 22px; - -webkit-padding-start: 0; -} - -/* weakrtl for selection drop downs needs to account for the fact that - * Webkit does not honor the text-align attribute for the select element. - * (See Webkit bug #40216) - */ -html[dir='rtl'] select.weakrtl { - direction: rtl; -} - -html[dir='rtl'] select.weakrtl option { - direction: ltr; -} - -/* WebKit does not honor alignment for text specified via placeholder attribute. - * This CSS is a workaround. Please remove once WebKit bug is fixed. - * https://bugs.webkit.org/show_bug.cgi?id=63367 - */ -html[dir='rtl'] input.weakrtl::-webkit-input-placeholder, -html[dir='rtl'] .weakrtl input::-webkit-input-placeholder { - direction: rtl; -} diff --git a/chromium/chrome-resources/css/widgets.css b/chromium/chrome-resources/css/widgets.css deleted file mode 100644 index d319b049a7b1..000000000000 --- a/chromium/chrome-resources/css/widgets.css +++ /dev/null @@ -1,305 +0,0 @@ -/* Copyright (c) 2012 The Chromium Authors. All rights reserved. - * Use of this source code is governed by a BSD-style license that can be - * found in the LICENSE file. */ - -/* This file defines styles for form controls. The order of rule blocks is - * important as there are some rules with equal specificity that rely on order - * as a tiebreaker. These are marked with OVERRIDE. */ - -/* Default state **************************************************************/ - -:-webkit-any(button, - input[type='button'], - input[type='submit']):not(.custom-appearance):not(.link-button), -select, -input[type='checkbox'], -input[type='radio'] { - -webkit-appearance: none; - -webkit-user-select: none; - background-image: -webkit-linear-gradient(#ededed, #ededed 38%, #dedede); - border: 1px solid rgba(0, 0, 0, 0.25); - border-radius: 2px; - box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08), - inset 0 1px 2px rgba(255, 255, 255, 0.75); - color: #444; - font: inherit; - margin: 0 1px 0 0; - text-shadow: 0 1px 0 rgb(240, 240, 240); -} - -:-webkit-any(button, - input[type='button'], - input[type='submit']):not(.custom-appearance):not(.link-button), -select { - min-height: 2em; - min-width: 4em; - - /* The following platform-specific rule is necessary to get adjacent - * buttons, text inputs, and so forth to align on their borders while also - * aligning on the text's baselines. */ - padding-bottom: 1px; - -} - -:-webkit-any(button, - input[type='button'], - input[type='submit']):not(.custom-appearance):not(.link-button) { - -webkit-padding-end: 10px; - -webkit-padding-start: 10px; -} - -select { - -webkit-appearance: none; - -webkit-padding-end: 20px; - -webkit-padding-start: 6px; - /* OVERRIDE */ - background-image: url('../images/select.png'), - -webkit-linear-gradient(#ededed, #ededed 38%, #dedede); - background-position: right center; - background-repeat: no-repeat; -} - -html[dir='rtl'] select { - background-position: center left; -} - -input[type='checkbox'] { - bottom: 2px; - height: 13px; - position: relative; - vertical-align: middle; - width: 13px; -} - -input[type='radio'] { - /* OVERRIDE */ - border-radius: 100%; - bottom: 3px; - height: 15px; - position: relative; - vertical-align: middle; - width: 15px; -} - -/* TODO(estade): add more types here? */ -input[type='password'], -input[type='search'], -input[type='text'], -input[type='url'], -input:not([type]), -textarea { - border: 1px solid #bfbfbf; - border-radius: 2px; - box-sizing: border-box; - color: #444; - font: inherit; - margin: 0; - /* Use min-height to accommodate addditional padding for touch as needed. */ - min-height: 2em; - padding: 3px; - - /* For better alignment between adjacent buttons and inputs. */ - padding-bottom: 4px; - -} - -input[type='search'] { - -webkit-appearance: textfield; - /* NOTE: Keep a relatively high min-width for this so we don't obscure the end - * of the default text in relatively spacious languages (i.e. German). */ - min-width: 160px; -} - -/* Remove when https://bugs.webkit.org/show_bug.cgi?id=51499 is fixed. - * TODO(dbeam): are there more types that would benefit from this? */ -input[type='search']::-webkit-textfield-decoration-container { - direction: inherit; -} - -/* Checked ********************************************************************/ - -input[type='checkbox']:checked::before { - -webkit-user-select: none; - background-image: url('../images/check.png'); - background-size: 100% 100%; - content: ''; - display: block; - height: 100%; - width: 100%; -} - -input[type='radio']:checked::before { - background-color: #666; - border-radius: 100%; - bottom: 3px; - content: ''; - display: block; - left: 3px; - position: absolute; - right: 3px; - top: 3px; -} - -/* Hover **********************************************************************/ - -:enabled:hover:-webkit-any( - select, - input[type='checkbox'], - input[type='radio'], - :-webkit-any( - button, - input[type='button'], - input[type='submit']):not(.custom-appearance):not(.link-button)) { - background-image: -webkit-linear-gradient(#f0f0f0, #f0f0f0 38%, #e0e0e0); - border-color: rgba(0, 0, 0, 0.3); - box-shadow: 0 1px 0 rgba(0, 0, 0, 0.12), - inset 0 1px 2px rgba(255, 255, 255, 0.95); - color: black; -} - -:enabled:hover:-webkit-any(select) { - /* OVERRIDE */ - background-image: url('../images/select.png'), - -webkit-linear-gradient(#f0f0f0, #f0f0f0 38%, #e0e0e0); -} - -/* Active *********************************************************************/ - -:enabled:active:-webkit-any( - select, - input[type='checkbox'], - input[type='radio'], - :-webkit-any( - button, - input[type='button'], - input[type='submit']):not(.custom-appearance):not(.link-button)) { - background-image: -webkit-linear-gradient(#e7e7e7, #e7e7e7 38%, #d7d7d7); - box-shadow: none; - text-shadow: none; -} - -:enabled:active:-webkit-any(select) { - /* OVERRIDE */ - background-image: url('../images/select.png'), - -webkit-linear-gradient(#e7e7e7, #e7e7e7 38%, #d7d7d7); -} - -/* Disabled *******************************************************************/ - -:disabled:-webkit-any( - button, - input[type='button'], - input[type='submit']):not(.custom-appearance):not(.link-button), -select:disabled { - background-image: -webkit-linear-gradient(#f1f1f1, #f1f1f1 38%, #e6e6e6); - border-color: rgba(80, 80, 80, 0.2); - box-shadow: 0 1px 0 rgba(80, 80, 80, 0.08), - inset 0 1px 2px rgba(255, 255, 255, 0.75); - color: #aaa; -} - -select:disabled { - /* OVERRIDE */ - background-image: url('../images/disabled_select.png'), - -webkit-linear-gradient(#f1f1f1, #f1f1f1 38%, #e6e6e6); -} - -input:disabled:-webkit-any([type='checkbox'], - [type='radio']) { - opacity: .75; -} - -input:disabled:-webkit-any([type='password'], - [type='search'], - [type='text'], - [type='url'], - :not([type])) { - color: #999; -} - -/* Focus **********************************************************************/ - -:enabled:focus:-webkit-any( - select, - input[type='checkbox'], - input[type='password'], - input[type='radio'], - input[type='search'], - input[type='text'], - input[type='url'], - input:not([type]), - :-webkit-any( - button, - input[type='button'], - input[type='submit']):not(.custom-appearance):not(.link-button)) { - /* OVERRIDE */ - -webkit-transition: border-color 200ms; - /* We use border color because it follows the border radius (unlike outline). - * This is particularly noticeable on mac. */ - border-color: rgb(77, 144, 254); - outline: none; -} - -/* Link buttons ***************************************************************/ - -.link-button { - -webkit-box-shadow: none; - background: transparent none; - border: none; - color: rgb(17, 85, 204); - cursor: pointer; - /* Input elements have -webkit-small-control which can override the body font. - * Resolve this by using 'inherit'. */ - font: inherit; - margin: 0; - padding: 0 4px; -} - -.link-button:hover { - text-decoration: underline; -} - -.link-button:active { - color: rgb(5, 37, 119); - text-decoration: underline; -} - -.link-button[disabled] { - color: #999; - cursor: default; - text-decoration: none; -} - -/* Checkbox/radio helpers ****************************************************** - * - * .checkbox and .radio classes wrap labels. Checkboxes and radios should use - * these classes with the markup structure: - * - *
- * - *
- */ - -:-webkit-any(.checkbox, .radio) label { - /* Don't expand horizontally: . */ - display: -webkit-inline-box; - padding-bottom: 7px; - padding-top: 7px; -} - -:-webkit-any(.checkbox, .radio) label input ~ span { - -webkit-margin-start: 0.6em; - /* Make sure long spans wrap at the same horizontal position they start. */ - display: block; -} - -:-webkit-any(.checkbox, .radio) label:hover { - color: black; -} - -label > input:disabled:-webkit-any([type='checkbox'], [type='radio']) ~ span { - color: #999; -} diff --git a/chromium/chrome-resources/images/check.png b/chromium/chrome-resources/images/check.png deleted file mode 100644 index 0321d1b45d94..000000000000 Binary files a/chromium/chrome-resources/images/check.png and /dev/null differ diff --git a/chromium/chrome-resources/update-from-chrome-svn.sh b/chromium/chrome-resources/update-from-chrome-svn.sh deleted file mode 100755 index a5225ade2816..000000000000 --- a/chromium/chrome-resources/update-from-chrome-svn.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh - -HOST='https://src.chromium.org' -BASE='chrome/trunk/src/ui/webui/resources' -FILES=' -css/chrome_shared.css -css/widgets.css -images/check.png' - -for FILE in $FILES; do - wget --force-directories --no-host-directories --cut-dirs=6 $HOST/$BASE/$FILE -done - diff --git a/chromium/devtools-panel.html b/chromium/devtools-panel.html deleted file mode 100644 index 1fcb5e8026bc..000000000000 --- a/chromium/devtools-panel.html +++ /dev/null @@ -1,32 +0,0 @@ - - - - - -
- - -

-

- Switch Planner mode helps prepare for your site's switch to HTTPS by generating - a report of external HTTP resources that might not yet be available on HTTPS. -

- After enabling, navigate around your site and try to exercise all - functionality in order to get a comprehensive list of external resources. -

- For each group of resources listed as "Unrewritten," find out whether they - are available on HTTPS. If so: add a rule to HTTPS Everywhere! If not: try - to make them available over HTTPS or use a different resource or provider. - Otherwise your site will generate - Mixed Content - (passive or active) errors when you turn on HTTPS. -

- For most accurate results, disable ad blockers before using. Closing this - panel will deactivate Switch Planner mode and clear stored data. -

- -
- diff --git a/chromium/devtools-panel.js b/chromium/devtools-panel.js deleted file mode 100644 index db216dbeb27b..000000000000 --- a/chromium/devtools-panel.js +++ /dev/null @@ -1,77 +0,0 @@ -function e(id) { - return document.getElementById(id); -} - -/** - * Send message to main extension for HTML to display - * @param type: enable/disable - */ -function sendMessage(type) { - chrome.runtime.sendMessage({ - type: type, - tabId: chrome.devtools.inspectedWindow.tabId, - }); -} - -/** - * Turn on the Switch Planner recording mode, and hide the long description. - */ -function enableSwitchPlanner() { - sendMessage("enable"); - e("SwitchPlannerDescription").style.display = "none"; - e("SwitchPlannerDetails").style.display = "block"; - // Hack: Fetch and display summary information from background page - // once per second. - setInterval(display, 1000); - chrome.devtools.inspectedWindow.reload(); -} - -/** - * Disable the switch planner and reload, so any state is forgotten and - * the long description is restored. - */ -function disableSwitchPlanner() { - sendMessage("disable"); - document.location.reload(); -} - -/** - * Fetch summary HTML of the planner results from the background page for - * display in the devtools panel. - */ -function display() { - chrome.runtime.sendMessage({ - type: "getSmallHtml", - tabId: chrome.devtools.inspectedWindow.tabId, - }, function(response) { - e("SwitchPlannerDetails").innerHTML = response.html; - e("SwitchPlannerResults").style.display = "block"; - }); -} - -window.onload = function() { - // Open a connection to the background page. Right now this is only used - // by the background page so it knows when the devtools pane has closed. - // We don't receive messages from the background page currently, though that - // may be a future improvement. Sending messages to the background page doesn't - // require an existing connection. - chrome.runtime.connect({ name: "devtools-page" }); - - var checkbox = e("SwitchPlannerCheckbox"); - checkbox.addEventListener("change", function() { - if (checkbox.checked) { - enableSwitchPlanner(); - } else { - disableSwitchPlanner(); - } - }); - - e("SwitchPlannerDetailsLink").addEventListener("click", function() { - window.open("switch-planner.html?tab=" + chrome.devtools.inspectedWindow.tabId); - }); - // Since this is rendered in a devtools console, we have to make clicks on the - // link open a new window. - e("MixedContentLink").addEventListener("click", function(e) { - window.open(e.target.href); - }); -}; diff --git a/chromium/devtools.html b/chromium/devtools.html deleted file mode 100644 index e90b4905627d..000000000000 --- a/chromium/devtools.html +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/chromium/devtools.js b/chromium/devtools.js deleted file mode 100644 index 343bee094295..000000000000 --- a/chromium/devtools.js +++ /dev/null @@ -1,6 +0,0 @@ -chrome.devtools.panels.create("HTTPS Everywhere", - "icons/icon-active-38.png", - "devtools-panel.html", - function(panel) { - } -); diff --git a/chromium/external/README.md b/chromium/external/README.md new file mode 100644 index 000000000000..031cf55c1721 --- /dev/null +++ b/chromium/external/README.md @@ -0,0 +1,52 @@ +# External dependencies + +This directory contains files that are external dependencies for HTTPS Everywhere, with instructions on how to get or remake them. + +## CodeMirror 5.31.0 + +```bash +$ npm install uglify-js@3.1.9 +$ npm install uglifycss@0.0.27 +$ curl -o codemirror.zip https://codemirror.net/codemirror-5.31.0.zip +$ unzip codemirror.zip +``` + +### codemirror-5.31.0.min.js + +```bash +uglifyjs \ + --compress \ + --mangle \ + --comments '/copyright|license/' \ + --output codemirror-5.31.0.min.js \ + codemirror-5.31.0/lib/codemirror.js +``` + +### codemirror-5.31.0.xml.min.js + +```bash +uglifyjs \ + --compress \ + --mangle \ + --comments '/copyright|license/' \ + --output codemirror-5.31.0.xml.min.js \ + codemirror-5.31.0/mode/xml/xml.js +``` + +### codemirror-5.31.0.min.css + +```bash +uglifycss \ + --output codemirror-5.31.0.min.css \ + codemirror-5.31.0/lib/codemirror.css +``` + +## Pako 1.0.5 + +`$ npm install pako@1.0.5` + +### pako_inflate.min.js + +```bash + +$ cp node_modules/pako/dist/pako_inflate.js pako-1.0.5/pako_inflate.min.js diff --git a/chromium/external/codemirror/codemirror-5.31.0.min.css b/chromium/external/codemirror/codemirror-5.31.0.min.css new file mode 100644 index 000000000000..762a5dde1e76 --- /dev/null +++ b/chromium/external/codemirror/codemirror-5.31.0.min.css @@ -0,0 +1 @@ +.CodeMirror{font-family:monospace;height:300px;color:black;direction:ltr}.CodeMirror-lines{padding:4px 0}.CodeMirror pre{padding:0 4px}.CodeMirror-scrollbar-filler,.CodeMirror-gutter-filler{background-color:white}.CodeMirror-gutters{border-right:1px solid #ddd;background-color:#f7f7f7;white-space:nowrap}.CodeMirror-linenumber{padding:0 3px 0 5px;min-width:20px;text-align:right;color:#999;white-space:nowrap}.CodeMirror-guttermarker{color:black}.CodeMirror-guttermarker-subtle{color:#999}.CodeMirror-cursor{border-left:1px solid black;border-right:0;width:0}.CodeMirror div.CodeMirror-secondarycursor{border-left:1px solid silver}.cm-fat-cursor .CodeMirror-cursor{width:auto;border:0 !important;background:#7e7}.cm-fat-cursor div.CodeMirror-cursors{z-index:1}.cm-fat-cursor-mark{background-color:rgba(20,255,20,0.5);-webkit-animation:blink 1.06s steps(1) infinite;-moz-animation:blink 1.06s steps(1) infinite;animation:blink 1.06s steps(1) infinite}.cm-animate-fat-cursor{width:auto;border:0;-webkit-animation:blink 1.06s steps(1) infinite;-moz-animation:blink 1.06s steps(1) infinite;animation:blink 1.06s steps(1) infinite;background-color:#7e7}@-moz-keyframes blink{50%{background-color:transparent}}@-webkit-keyframes blink{50%{background-color:transparent}}@keyframes blink{50%{background-color:transparent}}.cm-tab{display:inline-block;text-decoration:inherit}.CodeMirror-rulers{position:absolute;left:0;right:0;top:-50px;bottom:-20px;overflow:hidden}.CodeMirror-ruler{border-left:1px solid #ccc;top:0;bottom:0;position:absolute}.cm-s-default .cm-header{color:blue}.cm-s-default .cm-quote{color:#090}.cm-negative{color:#d44}.cm-positive{color:#292}.cm-header,.cm-strong{font-weight:bold}.cm-em{font-style:italic}.cm-link{text-decoration:underline}.cm-strikethrough{text-decoration:line-through}.cm-s-default .cm-keyword{color:#708}.cm-s-default .cm-atom{color:#219}.cm-s-default .cm-number{color:#164}.cm-s-default .cm-def{color:#00f}.cm-s-default .cm-variable-2{color:#05a}.cm-s-default .cm-variable-3,.cm-s-default .cm-type{color:#085}.cm-s-default .cm-comment{color:#a50}.cm-s-default .cm-string{color:#a11}.cm-s-default .cm-string-2{color:#f50}.cm-s-default .cm-meta{color:#555}.cm-s-default .cm-qualifier{color:#555}.cm-s-default .cm-builtin{color:#30a}.cm-s-default .cm-bracket{color:#997}.cm-s-default .cm-tag{color:#170}.cm-s-default .cm-attribute{color:#00c}.cm-s-default .cm-hr{color:#999}.cm-s-default .cm-link{color:#00c}.cm-s-default .cm-error{color:red}.cm-invalidchar{color:red}.CodeMirror-composing{border-bottom:2px solid}div.CodeMirror span.CodeMirror-matchingbracket{color:#0f0}div.CodeMirror span.CodeMirror-nonmatchingbracket{color:#f22}.CodeMirror-matchingtag{background:rgba(255,150,0,.3)}.CodeMirror-activeline-background{background:#e8f2ff}.CodeMirror{position:relative;overflow:hidden;background:white}.CodeMirror-scroll{overflow:scroll !important;margin-bottom:-30px;margin-right:-30px;padding-bottom:30px;height:100%;outline:0;position:relative}.CodeMirror-sizer{position:relative;border-right:30px solid transparent}.CodeMirror-vscrollbar,.CodeMirror-hscrollbar,.CodeMirror-scrollbar-filler,.CodeMirror-gutter-filler{position:absolute;z-index:6;display:none}.CodeMirror-vscrollbar{right:0;top:0;overflow-x:hidden;overflow-y:scroll}.CodeMirror-hscrollbar{bottom:0;left:0;overflow-y:hidden;overflow-x:scroll}.CodeMirror-scrollbar-filler{right:0;bottom:0}.CodeMirror-gutter-filler{left:0;bottom:0}.CodeMirror-gutters{position:absolute;left:0;top:0;min-height:100%;z-index:3}.CodeMirror-gutter{white-space:normal;height:100%;display:inline-block;vertical-align:top;margin-bottom:-30px}.CodeMirror-gutter-wrapper{position:absolute;z-index:4;background:none !important;border:none !important}.CodeMirror-gutter-background{position:absolute;top:0;bottom:0;z-index:4}.CodeMirror-gutter-elt{position:absolute;cursor:default;z-index:4}.CodeMirror-gutter-wrapper ::selection{background-color:transparent}.CodeMirror-gutter-wrapper ::-moz-selection{background-color:transparent}.CodeMirror-lines{cursor:text;min-height:1px}.CodeMirror pre{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;border-width:0;background:transparent;font-family:inherit;font-size:inherit;margin:0;white-space:pre;word-wrap:normal;line-height:inherit;color:inherit;z-index:2;position:relative;overflow:visible;-webkit-tap-highlight-color:transparent;-webkit-font-variant-ligatures:contextual;font-variant-ligatures:contextual}.CodeMirror-wrap pre{word-wrap:break-word;white-space:pre-wrap;word-break:normal}.CodeMirror-linebackground{position:absolute;left:0;right:0;top:0;bottom:0;z-index:0}.CodeMirror-linewidget{position:relative;z-index:2;overflow:auto}.CodeMirror-rtl pre{direction:rtl}.CodeMirror-code{outline:0}.CodeMirror-scroll,.CodeMirror-sizer,.CodeMirror-gutter,.CodeMirror-gutters,.CodeMirror-linenumber{-moz-box-sizing:content-box;box-sizing:content-box}.CodeMirror-measure{position:absolute;width:100%;height:0;overflow:hidden;visibility:hidden}.CodeMirror-cursor{position:absolute;pointer-events:none}.CodeMirror-measure pre{position:static}div.CodeMirror-cursors{visibility:hidden;position:relative;z-index:3}div.CodeMirror-dragcursors{visibility:visible}.CodeMirror-focused div.CodeMirror-cursors{visibility:visible}.CodeMirror-selected{background:#d9d9d9}.CodeMirror-focused .CodeMirror-selected{background:#d7d4f0}.CodeMirror-crosshair{cursor:crosshair}.CodeMirror-line::selection,.CodeMirror-line>span::selection,.CodeMirror-line>span>span::selection{background:#d7d4f0}.CodeMirror-line::-moz-selection,.CodeMirror-line>span::-moz-selection,.CodeMirror-line>span>span::-moz-selection{background:#d7d4f0}.cm-searching{background-color:#ffa;background-color:rgba(255,255,0,.4)}.cm-force-border{padding-right:.1px}@media print{.CodeMirror div.CodeMirror-cursors{visibility:hidden}}.cm-tab-wrap-hack:after{content:''}span.CodeMirror-selectedtext{background:0} \ No newline at end of file diff --git a/chromium/external/codemirror/codemirror-5.31.0.min.js b/chromium/external/codemirror/codemirror-5.31.0.min.js new file mode 100644 index 000000000000..b3c040158f9f --- /dev/null +++ b/chromium/external/codemirror/codemirror-5.31.0.min.js @@ -0,0 +1,3 @@ +// CodeMirror, copyright (c) by Marijn Haverbeke and others +// Distributed under an MIT license: http://codemirror.net/LICENSE +!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):e.CodeMirror=t()}(this,function(){"use strict";function e(e){return new RegExp("(^|\\s)"+e+"(?:$|\\s)\\s*")}function t(e){for(var t=e.childNodes.length;t>0;--t)e.removeChild(e.firstChild);return e}function r(e,r){return t(e).appendChild(r)}function n(e,t,r,n){var i=document.createElement(e);if(r&&(i.className=r),n&&(i.style.cssText=n),"string"==typeof t)i.appendChild(document.createTextNode(t));else if(t)for(var o=0;o=t)return l+(t-o);l+=s-o,l+=r-l%r,o=s+1}}function f(e,t){for(var r=0;r=t)return n+Math.min(l,t-i);if(i+=o-n,i+=r-i%r,n=o+1,i>=t)return n}}function p(e){for(;wo.length<=e;)wo.push(g(wo)+" ");return wo[e]}function g(e){return e[e.length-1]}function v(e,t){for(var r=[],n=0;n"€"&&(e.toUpperCase()!=e.toLowerCase()||xo.test(e))}function w(e,t){return t?!!(t.source.indexOf("\\w")>-1&&b(e))||t.test(e):b(e)}function x(e){for(var t in e)if(e.hasOwnProperty(t)&&e[t])return!1;return!0}function C(e){return e.charCodeAt(0)>=768&&Co.test(e)}function S(e,t,r){for(;(r<0?t>0:tr?-1:1;;){if(t==r)return t;var i=(t+r)/2,o=n<0?Math.ceil(i):Math.floor(i);if(o==t)return e(o)?t:r;e(o)?r=o:t=o+n}}function k(e,t){if((t-=e.first)<0||t>=e.size)throw new Error("There is no line "+(t+e.first)+" in the document.");for(var r=e;!r.lines;)for(var n=0;;++n){var i=r.children[n],o=i.chunkSize();if(t=e.first&&tr?H(r,k(e,r).text.length):function(e,t){var r=e.ch;return null==r||r>t?H(e.line,t):r<0?H(e.line,0):e}(t,k(e,t.line).text.length)}function G(e,t){for(var r=[],n=0;n=t:o.to>t);(n||(n=[])).push(new U(l,o.from,s?null:o.to))}}return n}(r,i,l),a=function(e,t,r){var n;if(e)for(var i=0;i=t:o.to>t)||o.from==t&&"bookmark"==l.type&&(!r||o.marker.insertLeft)){var s=null==o.from||(l.inclusiveLeft?o.from<=t:o.from0&&s)for(var w=0;w=0&&h<=0||c<=0&&h>=0)&&(c<=0&&(a.marker.inclusiveRight&&i.inclusiveLeft?F(u.to,r)>=0:F(u.to,r)>0)||c>=0&&(a.marker.inclusiveRight&&i.inclusiveLeft?F(u.from,n)<=0:F(u.from,n)<0)))return!0}}}function re(e){for(var t;t=J(e);)e=t.find(-1,!0).line;return e}function ne(e,t){var r=k(e,t),n=re(r);return r==n?t:O(n)}function ie(e,t){if(t>e.lastLine())return t;var r,n=k(e,t);if(!oe(e,n))return t;for(;r=ee(n);)n=r.find(1,!0).line;return O(n)+1}function oe(e,t){var r=Lo&&t.markedSpans;if(r)for(var n=void 0,i=0;it.maxLineLength&&(t.maxLineLength=r,t.maxLine=e)})}function ce(e,t,r){var n;ko=null;for(var i=0;it)return i;o.to==t&&(o.from!=o.to&&"before"==r?n=i:ko=i),o.from==t&&(o.from!=o.to&&"before"!=r?n=i:ko=i)}return null!=n?n:ko}function he(e,t){var r=e.order;return null==r&&(r=e.order=To(e.text,t)),r}function fe(e,t){return e._handlers&&e._handlers[t]||Mo}function de(e,t,r){if(e.removeEventListener)e.removeEventListener(t,r,!1);else if(e.detachEvent)e.detachEvent("on"+t,r);else{var n=e._handlers,i=n&&n[t];if(i){var o=f(i,r);o>-1&&(n[t]=i.slice(0,o).concat(i.slice(o+1)))}}}function pe(e,t){var r=fe(e,t);if(r.length)for(var n=Array.prototype.slice.call(arguments,2),i=0;i0}function ye(e){e.prototype.on=function(e,t){No(this,e,t)},e.prototype.off=function(e,t){de(this,e,t)}}function be(e){e.preventDefault?e.preventDefault():e.returnValue=!1}function we(e){e.stopPropagation?e.stopPropagation():e.cancelBubble=!0}function xe(e){return null!=e.defaultPrevented?e.defaultPrevented:0==e.returnValue}function Ce(e){be(e),we(e)}function Se(e){return e.target||e.srcElement}function Le(e){var t=e.which;return null==t&&(1&e.button?t=1:2&e.button?t=3:4&e.button&&(t=2)),ro&&e.ctrlKey&&1==t&&(t=3),t}function ke(e){if(null==fo){var t=n("span","​");r(e,n("span",[t,document.createTextNode("x")])),0!=e.firstChild.offsetHeight&&(fo=t.offsetWidth<=1&&t.offsetHeight>2&&!(Ki&&ji<8))}var i=fo?n("span","​"):n("span"," ",null,"display: inline-block; width: 1px; margin-right: -1px");return i.setAttribute("cm-text",""),i}function Te(e){if(null!=po)return po;var n=r(e,document.createTextNode("AخA")),i=lo(n,0,1).getBoundingClientRect(),o=lo(n,1,2).getBoundingClientRect();return t(e),!(!i||i.left==i.right)&&(po=o.right-i.right<3)}function Me(e){if("string"==typeof e&&Po.hasOwnProperty(e))e=Po[e];else if(e&&"string"==typeof e.name&&Po.hasOwnProperty(e.name)){var t=Po[e.name];"string"==typeof t&&(t={name:t}),(e=y(t,e)).name=t.name}else{if("string"==typeof e&&/^[\w\-]+\/[\w\-]+\+xml$/.test(e))return Me("application/xml");if("string"==typeof e&&/^[\w\-]+\/[\w\-]+\+json$/.test(e))return Me("application/json")}return"string"==typeof e?{name:e}:e||{name:"null"}}function Ne(e,t){t=Me(t);var r=Fo[t.name];if(!r)return Ne(e,"text/plain");var n=r(e,t);if(Eo.hasOwnProperty(t.name)){var i=Eo[t.name];for(var o in i)i.hasOwnProperty(o)&&(n.hasOwnProperty(o)&&(n["_"+o]=n[o]),n[o]=i[o])}if(n.name=t.name,t.helperType&&(n.helperType=t.helperType),t.modeProps)for(var l in t.modeProps)n[l]=t.modeProps[l];return n}function Oe(e,t){c(t,Eo.hasOwnProperty(e)?Eo[e]:Eo[e]={})}function Ae(e,t){if(!0===t)return t;if(e.copyState)return e.copyState(t);var r={};for(var n in t){var i=t[n];i instanceof Array&&(i=i.concat([])),r[n]=i}return r}function We(e,t){for(var r;e.innerMode&&(r=e.innerMode(t))&&r.mode!=e;)t=r.state,e=r.mode;return r||{mode:e,state:t}}function De(e,t,r){return!e.startState||e.startState(t,r)}function He(e,t,r,n){var i=[e.state.modeGen],o={};Ge(e,t.text,e.doc.mode,r,function(e,t){return i.push(e,t)},o,n);for(var l=r.state,s=function(n){r.baseTokens=i;var s=e.state.overlays[n],a=1,u=0;r.state=!0,Ge(e,t.text,s.mode,r,function(e,t){for(var r=a;ue&&i.splice(a,1,e,i[a+1],n),a+=2,u=Math.min(e,n)}if(t)if(s.opaque)i.splice(r,a-r,e,"overlay "+t),a=r+2;else for(;re.options.maxHighlightLength&&Ae(e.doc.mode,n.state),o=He(e,t,n);i&&(n.state=i),t.stateAfter=n.save(!i),t.styles=o.styles,o.classes?t.styleClasses=o.classes:t.styleClasses&&(t.styleClasses=null),r===e.doc.highlightFrontier&&(e.doc.modeFrontier=Math.max(e.doc.modeFrontier,++e.doc.highlightFrontier))}return t.styles}function Pe(e,t,r){var n=e.doc,i=e.display;if(!n.mode.startState)return new Ro(n,!0,t);var o=function(e,t,r){for(var n,i,o=e.doc,l=r?-1:t-(e.doc.mode.innerMode?1e3:100),s=t;s>l;--s){if(s<=o.first)return o.first;var a=k(o,s-1),u=a.stateAfter;if(u&&(!r||s+(u instanceof Io?u.lookAhead:0)<=o.modeFrontier))return s;var c=h(a.text,null,e.options.tabSize);(null==i||n>c)&&(i=s-1,n=c)}return i}(e,t,r),l=o>n.first&&k(n,o-1).stateAfter,s=l?Ro.fromSaved(n,l,o):new Ro(n,De(n.mode),o);return n.iter(o,t,function(r){Ee(e,r.text,s);var n=s.line;r.stateAfter=n==t-1||n%5==0||n>=i.viewFrom&&nt.start)return o}throw new Error("Mode "+e.name+" failed to advance stream.")}function Re(e,t,r,n){var i,o,l=e.doc,s=l.mode,a=k(l,(t=B(l,t)).line),u=Pe(e,t.line,r),c=new zo(a.text,e.options.tabSize,u);for(n&&(o=[]);(n||c.pose.options.maxHighlightLength?(s=!1,l&&Ee(e,t,n,h.pos),h.pos=t.length,a=null):a=Be(Ie(r,h,n.state,f),o),f){var d=f[0].name;d&&(a="m-"+(a?d+" "+a:d))}if(!s||c!=a){for(;uu&&h.from<=u);f++);if(h.to>=c)return e(r,n,i,o,l,s,a);e(r,n.slice(0,h.to-u),i,o,null,s,a),o=null,n=n.slice(h.to-u),u=h.to}}}(n.addToken,s)),n.map=[];!function(e,t,r){var n=e.markedSpans,i=e.text,o=0;if(!n){for(var l=1;lg||S.collapsed&&C.to==g&&C.from==g)?(null!=C.to&&C.to!=g&&y>C.to&&(y=C.to,c=""),S.className&&(u+=" "+S.className),S.css&&(a=(a?a+";":"")+S.css),S.startStyle&&C.from==g&&(h+=" "+S.startStyle),S.endStyle&&C.to==y&&(w||(w=[])).push(S.endStyle,C.to),S.title&&!f&&(f=S.title),S.collapsed&&(!d||Z(d.marker,S)<0)&&(d=C)):C.from>g&&y>C.from&&(y=C.from)}if(w)for(var L=0;L=p)break;for(var T=Math.min(p,y);;){if(m){var M=g+m.length;if(!d){var N=M>T?m.slice(0,T-g):m;t.addToken(t,N,s?s+u:u,h,g+N.length==y?c:"",f,a)}if(M>=T){m=m.slice(T-g),g=T;break}g=M,h=""}m=i.slice(o,o=r[v++]),s=Ve(r[v++],t.cm.options)}}}(l,n,Fe(e,l,t!=e.display.externalMeasured&&O(l))),l.styleClasses&&(l.styleClasses.bgClass&&(n.bgClass=a(l.styleClasses.bgClass,n.bgClass||"")),l.styleClasses.textClass&&(n.textClass=a(l.styleClasses.textClass,n.textClass||""))),0==n.map.length&&n.map.push(0,0,n.content.appendChild(ke(e.display.measure))),0==o?(t.measure.map=n.map,t.measure.cache={}):((t.measure.maps||(t.measure.maps=[])).push(n.map),(t.measure.caches||(t.measure.caches=[])).push({}))}if(Xi){var u=n.content.lastChild;(/\bcm-tab\b/.test(u.className)||u.querySelector&&u.querySelector(".cm-tab"))&&(n.content.className="cm-tab-wrap-hack")}return pe(e,"renderLine",e,t.line,n.pre),n.pre.className&&(n.textClass=a(n.pre.className,n.textClass||"")),n}function je(e){var t=n("span","•","cm-invalidchar");return t.title="\\u"+e.charCodeAt(0).toString(16),t.setAttribute("aria-label",t.title),t}function Xe(e,t,r,i,o,l,s){if(t){var a,u=e.splitSpaces?function(e,t){if(e.length>1&&!/ /.test(e))return e;for(var r=t,n="",i=0;ir)return{map:e.measure.maps[i],cache:e.measure.caches[i],before:!0}}function gt(e,t,r,n){return yt(e,mt(e,t),r,n)}function vt(e,t){if(t>=e.display.viewFrom&&t=r.lineN&&t2&&o.push((a.bottom+u.top)/2-r.top)}}o.push(r.bottom-r.top)}}(e,t.view,t.rect),t.hasHeights=!0),(s=function(e,t,i,o){var l,s=bt(t.map,i,o),a=s.node,u=s.start,c=s.end,h=s.collapse;if(3==a.nodeType){for(var f=0;f<4;f++){for(;u&&C(t.line.text.charAt(s.coverStart+u));)--u;for(;s.coverStart+c1}(e))return t;var i=screen.logicalXDPI/screen.deviceXDPI,o=screen.logicalYDPI/screen.deviceYDPI;return{left:t.left*i,right:t.right*i,top:t.top*o,bottom:t.bottom*o}}(e.display.measure,l))}else{u>0&&(h=o="right");var d;l=e.options.lineWrapping&&(d=a.getClientRects()).length>1?d["right"==o?d.length-1:0]:a.getBoundingClientRect()}if(Ki&&ji<9&&!u&&(!l||!l.left&&!l.right)){var p=a.parentNode.getClientRects()[0];l=p?{left:p.left,right:p.left+It(e.display),top:p.top,bottom:p.bottom}:Yo}for(var g=l.top-t.rect.top,v=l.bottom-t.rect.top,m=(g+v)/2,y=t.view.measure.heights,b=0;bt)&&(i=(o=a-s)-1,t>=a&&(l="right")),null!=i){if(n=e[u+2],s==a&&r==(n.insertLeft?"left":"right")&&(l=r),"left"==r&&0==i)for(;u&&e[u-2]==e[u-3]&&e[u-1].insertLeft;)n=e[2+(u-=3)],l="left";if("right"==r&&i==a-s)for(;u=0&&(r=e[i]).left==r.right;i--);return r}function xt(e){if(e.measure&&(e.measure.cache={},e.measure.heights=null,e.rest))for(var t=0;t=n.text.length?(u=n.text.length,c="before"):u<=0&&(u=0,c="after"),!a)return l("before"==c?u-1:u,"before"==c);var h=ce(a,u,c),f=ko,d=s(u,h,"before"==c);return null!=f&&(d.other=s(u,f,"before"!=c)),d}function Wt(e,t){var r=0;t=B(e.doc,t),e.options.lineWrapping||(r=It(e.display)*t.ch);var n=k(e.doc,t.line),i=se(n)+at(e.display);return{left:r,right:r,top:i,bottom:i+n.height}}function Dt(e,t,r,n,i){var o=H(e,t,r);return o.xRel=i,n&&(o.outside=!0),o}function Ht(e,t,r){var n=e.doc;if((r+=e.display.viewOffset)<0)return Dt(n.first,0,null,!0,-1);var i=A(n,r),o=n.first+n.size-1;if(i>o)return Dt(n.first+n.size-1,k(n,o).text.length,null,!0,1);t<0&&(t=0);for(var l=k(n,i);;){var s=function(e,t,r,n,i){i-=se(t);var o=mt(e,t),l=Tt(t),s=0,a=t.text.length,u=!0,c=he(t,e.doc.direction);if(c){var h=(e.options.lineWrapping?function(e,t,r,n,i,o,l){var s=Ft(e,t,n,l),a=s.begin,u=s.end;/\s/.test(t.text.charAt(u-1))&&u--;for(var c=null,h=null,f=0;f=u||d.to<=a)){var p=1!=d.level,g=yt(e,n,p?Math.min(u,d.to)-1:Math.max(a,d.from)).right,v=gv)&&(c=d,h=v)}}c||(c=i[i.length-1]);c.fromu&&(c={from:c.from,to:u,level:c.level});return c}:function(e,t,r,n,i,o,l){var s=L(function(s){var a=i[s],u=1!=a.level;return Et(At(e,H(r,u?a.to:a.from,u?"before":"after"),"line",t,n),o,l,!0)},0,i.length-1),a=i[s];if(s>0){var u=1!=a.level,c=At(e,H(r,u?a.from:a.to,u?"after":"before"),"line",t,n);Et(c,o,l,!0)&&c.top>l&&(a=i[s-1])}return a})(e,t,r,o,c,n,i);u=1!=h.level,s=u?h.from:h.to-1,a=u?h.to:h.from-1}var f,d,p=null,g=null,v=L(function(t){var r=yt(e,o,t);return r.top+=l,r.bottom+=l,!!Et(r,n,i,!1)&&(r.top<=i&&r.left<=n&&(p=t,g=r),!0)},s,a),m=!1;if(g){var y=n-g.left=w.bottom}return v=S(t.text,v,1),Dt(r,v,d,m,n-f)}(e,l,i,t,r),a=ee(l),u=a&&a.find(0,!0);if(!a||!(s.ch>u.from.ch||s.ch==u.from.ch&&s.xRel>0))return s;i=O(l=u.to.line)}}function Ft(e,t,r,n){n-=Tt(t);var i=t.text.length,o=L(function(t){return yt(e,r,t-1).bottom<=n},i,0);return i=L(function(t){return yt(e,r,t).top>n},o,i),{begin:o,end:i}}function Pt(e,t,r,n){r||(r=mt(e,t));return Ft(e,t,r,Mt(e,t,yt(e,r,n),"line").top)}function Et(e,t,r,n){return!(e.bottom<=r)&&(e.top>r||(n?e.left:e.right)>t)}function zt(e){if(null!=e.cachedTextHeight)return e.cachedTextHeight;if(null==Uo){Uo=n("pre");for(var i=0;i<49;++i)Uo.appendChild(document.createTextNode("x")),Uo.appendChild(n("br"));Uo.appendChild(document.createTextNode("x"))}r(e.measure,Uo);var o=Uo.offsetHeight/50;return o>3&&(e.cachedTextHeight=o),t(e.measure),o||1}function It(e){if(null!=e.cachedCharWidth)return e.cachedCharWidth;var t=n("span","xxxxxxxxxx"),i=n("pre",[t]);r(e.measure,i);var o=t.getBoundingClientRect(),l=(o.right-o.left)/10;return l>2&&(e.cachedCharWidth=l),l||10}function Rt(e){for(var t=e.display,r={},n={},i=t.gutters.clientLeft,o=t.gutters.firstChild,l=0;o;o=o.nextSibling,++l)r[e.options.gutters[l]]=o.offsetLeft+o.clientLeft+i,n[e.options.gutters[l]]=o.clientWidth;return{fixedPos:Bt(t),gutterTotalWidth:t.gutters.offsetWidth,gutterLeft:r,gutterWidth:n,wrapperWidth:t.wrapper.clientWidth}}function Bt(e){return e.scroller.getBoundingClientRect().left-e.sizer.getBoundingClientRect().left}function Gt(e){var t=zt(e.display),r=e.options.lineWrapping,n=r&&Math.max(5,e.display.scroller.clientWidth/It(e.display)-3);return function(i){if(oe(e.doc,i))return 0;var o=0;if(i.widgets)for(var l=0;l=e.display.viewTo)return null;if((t-=e.display.viewFrom)<0)return null;for(var r=e.display.view,n=0;n=e.display.viewTo||a.to().linet||t==r&&l.to==t)&&(n(Math.max(l.from,t),Math.min(l.to,r),1==l.level?"rtl":"ltr",o),i=!0)}i||n(t,r,"ltr")}(g,r||0,null==n?p:n,function(e,t,s,d){var v="ltr"==s,m=o(e,v?"left":"right"),y=o(t-1,v?"right":"left"),b=null==r&&0==e,w=null==n&&t==p,x=0==d,C=!g||d==g.length-1;if(y.top-m.top<=3){var S=(f?w:b)&&C,L=(f?b:w)&&x?c:(v?m:y).left,k=S?h:(v?y:m).right;i(L,m.top,k-L,m.bottom)}else{var T,M,N,O;v?(T=f&&b&&x?c:m.left,M=f?h:l(e,s,"before"),N=f?c:l(t,s,"after"),O=f&&w&&C?h:y.right):(T=f?l(e,s,"before"):c,M=!f&&b&&x?h:m.right,N=!f&&w&&C?c:y.left,O=f?l(t,s,"after"):h),i(T,m.top,M-T,m.bottom),m.bottom0?t.blinker=setInterval(function(){return t.cursorDiv.style.visibility=(r=!r)?"":"hidden"},e.options.cursorBlinkRate):e.options.cursorBlinkRate<0&&(t.cursorDiv.style.visibility="hidden")}}function qt(e){e.state.focused||(e.display.input.focus(),Qt(e))}function Zt(e){e.state.delayingBlurEvent=!0,setTimeout(function(){e.state.delayingBlurEvent&&(e.state.delayingBlurEvent=!1,Jt(e))},100)}function Qt(e,t){e.state.delayingBlurEvent&&(e.state.delayingBlurEvent=!1),"nocursor"!=e.options.readOnly&&(e.state.focused||(pe(e,"focus",e,t),e.state.focused=!0,s(e.display.wrapper,"CodeMirror-focused"),e.curOp||e.display.selForContextMenu==e.doc.sel||(e.display.input.reset(),Xi&&setTimeout(function(){return e.display.input.reset(!0)},20)),e.display.input.receivedFocus()),$t(e))}function Jt(e,t){e.state.delayingBlurEvent||(e.state.focused&&(pe(e,"blur",e,t),e.state.focused=!1,uo(e.display.wrapper,"CodeMirror-focused")),clearInterval(e.display.blinker),setTimeout(function(){e.state.focused||(e.display.shift=!1)},150))}function er(e){for(var t=e.display,r=t.lineDiv.offsetTop,n=0;n.005||a<-.005)&&(N(i.line,o),tr(i.line),i.rest))for(var u=0;u=l&&(o=A(t,se(k(t,a))-e.wrapper.clientHeight),l=a)}return{from:o,to:Math.max(l,o+1)}}function nr(e){var t=e.display,r=t.view;if(t.alignWidgets||t.gutters.firstChild&&e.options.fixedGutter){for(var n=Bt(t)-t.scroller.scrollLeft+e.doc.scrollLeft,i=t.gutters.offsetWidth,o=n+"px",l=0;lo&&(t.bottom=t.top+o);var s=e.doc.height+ut(r),a=t.tops-n;if(t.topi+o){var c=Math.min(t.top,(u?s:t.bottom)-o);c!=i&&(l.scrollTop=c)}var h=e.curOp&&null!=e.curOp.scrollLeft?e.curOp.scrollLeft:r.scroller.scrollLeft,f=ft(e)-(e.options.fixedGutter?r.gutters.offsetWidth:0),d=t.right-t.left>f;return d&&(t.right=t.left+f),t.left<10?l.scrollLeft=0:t.leftf+h-3&&(l.scrollLeft=t.right+(d?0:10)-f),l}function lr(e,t){null!=t&&(ur(e),e.curOp.scrollTop=(null==e.curOp.scrollTop?e.doc.scrollTop:e.curOp.scrollTop)+t)}function sr(e){ur(e);var t=e.getCursor();e.curOp.scrollToPos={from:t,to:t,margin:e.options.cursorScrollMargin}}function ar(e,t,r){null==t&&null==r||ur(e),null!=t&&(e.curOp.scrollLeft=t),null!=r&&(e.curOp.scrollTop=r)}function ur(e){var t=e.curOp.scrollToPos;if(t){e.curOp.scrollToPos=null;cr(e,Wt(e,t.from),Wt(e,t.to),t.margin)}}function cr(e,t,r,n){var i=or(e,{left:Math.min(t.left,r.left),top:Math.min(t.top,r.top)-n,right:Math.max(t.right,r.right),bottom:Math.max(t.bottom,r.bottom)+n});ar(e,i.scrollLeft,i.scrollTop)}function hr(e,t){Math.abs(e.doc.scrollTop-t)<2||(Bi||Hr(e,{top:t}),fr(e,t,!0),Bi&&Hr(e),Or(e,100))}function fr(e,t,r){t=Math.min(e.display.scroller.scrollHeight-e.display.scroller.clientHeight,t),(e.display.scroller.scrollTop!=t||r)&&(e.doc.scrollTop=t,e.display.scrollbars.setScrollTop(t),e.display.scroller.scrollTop!=t&&(e.display.scroller.scrollTop=t))}function dr(e,t,r,n){t=Math.min(t,e.display.scroller.scrollWidth-e.display.scroller.clientWidth),(r?t==e.doc.scrollLeft:Math.abs(e.doc.scrollLeft-t)<2)&&!n||(e.doc.scrollLeft=t,nr(e),e.display.scroller.scrollLeft!=t&&(e.display.scroller.scrollLeft=t),e.display.scrollbars.setScrollLeft(t))}function pr(e){var t=e.display,r=t.gutters.offsetWidth,n=Math.round(e.doc.height+ut(e.display));return{clientHeight:t.scroller.clientHeight,viewHeight:t.wrapper.clientHeight,scrollWidth:t.scroller.scrollWidth,clientWidth:t.scroller.clientWidth,viewWidth:t.wrapper.clientWidth,barLeft:e.options.fixedGutter?r:0,docHeight:n,scrollHeight:n+ht(e)+t.barHeight,nativeBarWidth:t.nativeBarWidth,gutterWidth:r}}function gr(e,t){t||(t=pr(e));var r=e.display.barWidth,n=e.display.barHeight;vr(e,t);for(var i=0;i<4&&r!=e.display.barWidth||n!=e.display.barHeight;i++)r!=e.display.barWidth&&e.options.lineWrapping&&er(e),vr(e,pr(e)),r=e.display.barWidth,n=e.display.barHeight}function vr(e,t){var r=e.display,n=r.scrollbars.update(t);r.sizer.style.paddingRight=(r.barWidth=n.right)+"px",r.sizer.style.paddingBottom=(r.barHeight=n.bottom)+"px",r.heightForcer.style.borderBottom=n.bottom+"px solid transparent",n.right&&n.bottom?(r.scrollbarFiller.style.display="block",r.scrollbarFiller.style.height=n.bottom+"px",r.scrollbarFiller.style.width=n.right+"px"):r.scrollbarFiller.style.display="",n.bottom&&e.options.coverGutterNextToScrollbar&&e.options.fixedGutter?(r.gutterFiller.style.display="block",r.gutterFiller.style.height=n.bottom+"px",r.gutterFiller.style.width=t.gutterWidth+"px"):r.gutterFiller.style.display=""}function mr(e){e.display.scrollbars&&(e.display.scrollbars.clear(),e.display.scrollbars.addClass&&uo(e.display.wrapper,e.display.scrollbars.addClass)),e.display.scrollbars=new qo[e.options.scrollbarStyle](function(t){e.display.wrapper.insertBefore(t,e.display.scrollbarFiller),No(t,"mousedown",function(){e.state.focused&&setTimeout(function(){return e.display.input.focus()},0)}),t.setAttribute("cm-not-content","true")},function(t,r){"horizontal"==r?dr(e,t):hr(e,t)},e),e.display.scrollbars.addClass&&s(e.display.wrapper,e.display.scrollbars.addClass)}function yr(e){e.curOp={cm:e,viewChanged:!1,startHeight:e.doc.height,forceUpdate:!1,updateInput:null,typing:!1,changeObjs:null,cursorActivityHandlers:null,cursorActivityCalled:0,selectionChanged:!1,updateMaxLine:!1,scrollLeft:null,scrollTop:null,scrollToPos:null,focus:!1,id:++Zo},function(e){jo?jo.ops.push(e):e.ownsGroup=jo={ops:[e],delayedCallbacks:[]}}(e.curOp)}function br(e){!function(e,t){var r=e.ownsGroup;if(r)try{!function(e){var t=e.delayedCallbacks,r=0;do{for(;r=r.viewTo)||r.maxLineChanged&&t.options.lineWrapping,e.update=e.mustUpdate&&new Qo(t,e.mustUpdate&&{top:e.scrollTop,ensure:e.scrollToPos},e.forceUpdate)}(t[r]);for(var i=0;i1&&(l=!0)),null!=u.scrollLeft&&(dr(e,u.scrollLeft),Math.abs(e.doc.scrollLeft-h)>1&&(l=!0)),!l)break}return i}(t,B(i,e.scrollToPos.from),B(i,e.scrollToPos.to),e.scrollToPos.margin);!function(e,t){if(!ge(e,"scrollCursorIntoView")){var r=e.display,i=r.sizer.getBoundingClientRect(),o=null;if(t.top+i.top<0?o=!0:t.bottom+i.top>(window.innerHeight||document.documentElement.clientHeight)&&(o=!1),null!=o&&!Qi){var l=n("div","​",null,"position: absolute;\n top: "+(t.top-r.viewOffset-at(e.display))+"px;\n height: "+(t.bottom-t.top+ht(e)+r.barHeight)+"px;\n left: "+t.left+"px; width: "+Math.max(2,t.right-t.left)+"px;");e.display.lineSpace.appendChild(l),l.scrollIntoView(o),e.display.lineSpace.removeChild(l)}}}(t,o)}var l=e.maybeHiddenMarkers,s=e.maybeUnhiddenMarkers;if(l)for(var a=0;at)&&(i.updateLineNumbers=t),e.curOp.viewChanged=!0,t>=i.viewTo)Lo&&ne(e.doc,t)i.viewFrom?Tr(e):(i.viewFrom+=n,i.viewTo+=n);else if(t<=i.viewFrom&&r>=i.viewTo)Tr(e);else if(t<=i.viewFrom){var o=Mr(e,r,r+n,1);o?(i.view=i.view.slice(o.index),i.viewFrom=o.lineN,i.viewTo+=n):Tr(e)}else if(r>=i.viewTo){var l=Mr(e,t,t,-1);l?(i.view=i.view.slice(0,l.index),i.viewTo=l.lineN):Tr(e)}else{var s=Mr(e,t,t,-1),a=Mr(e,r,r+n,1);s&&a?(i.view=i.view.slice(0,s.index).concat($e(e,s.lineN,a.lineN)).concat(i.view.slice(a.index)),i.viewTo+=n):Tr(e)}var u=i.externalMeasured;u&&(r=i.lineN&&t=n.viewTo)){var o=n.view[Kt(e,t)];if(null!=o.node){var l=o.changes||(o.changes=[]);-1==f(l,r)&&l.push(r)}}}function Tr(e){e.display.viewFrom=e.display.viewTo=e.doc.first,e.display.view=[],e.display.viewOffset=0}function Mr(e,t,r,n){var i,o=Kt(e,t),l=e.display.view;if(!Lo||r==e.doc.first+e.doc.size)return{index:o,lineN:r};for(var s=e.display.viewFrom,a=0;a0){if(o==l.length-1)return null;i=s+l[o].size-t,o++}else i=s-t;t+=i,r+=i}for(;ne(e.doc,r)!=r;){if(o==(n<0?0:l.length-1))return null;r+=n*l[o-(n<0?1:0)].size,o+=n}return{index:o,lineN:r}}function Nr(e){for(var t=e.display.view,r=0,n=0;n=e.display.viewTo)){var r=+new Date+e.options.workTime,n=Pe(e,t.highlightFrontier),i=[];t.iter(n.line,Math.min(t.first+t.size,e.display.viewTo+500),function(o){if(n.line>=e.display.viewFrom){var l=o.styles,s=o.text.length>e.options.maxHighlightLength?Ae(t.mode,n.state):null,a=He(e,o,n,!0);s&&(n.state=s),o.styles=a.styles;var u=o.styleClasses,c=a.classes;c?o.styleClasses=c:u&&(o.styleClasses=null);for(var h=!l||l.length!=o.styles.length||u!=c&&(!u||!c||u.bgClass!=c.bgClass||u.textClass!=c.textClass),f=0;!h&&fr)return Or(e,e.options.workDelay),!0}),t.highlightFrontier=n.line,t.modeFrontier=Math.max(t.modeFrontier,n.line),i.length&&wr(e,function(){for(var t=0;t=n.viewFrom&&r.visible.to<=n.viewTo&&(null==n.updateLineNumbers||n.updateLineNumbers>=n.viewTo)&&n.renderedView==n.view&&0==Nr(e))return!1;ir(e)&&(Tr(e),r.dims=Rt(e));var s=i.first+i.size,a=Math.max(r.visible.from-e.options.viewportMargin,i.first),u=Math.min(s,r.visible.to+e.options.viewportMargin);n.viewFromu&&n.viewTo-u<20&&(u=Math.min(s,n.viewTo)),Lo&&(a=ne(e.doc,a),u=ie(e.doc,u));var c=a!=n.viewFrom||u!=n.viewTo||n.lastWrapHeight!=r.wrapperHeight||n.lastWrapWidth!=r.wrapperWidth;!function(e,t,r){var n=e.display;0==n.view.length||t>=n.viewTo||r<=n.viewFrom?(n.view=$e(e,t,r),n.viewFrom=t):(n.viewFrom>t?n.view=$e(e,t,n.viewFrom).concat(n.view):n.viewFromr&&(n.view=n.view.slice(0,Kt(e,r)))),n.viewTo=r}(e,a,u),n.viewOffset=se(k(e.doc,n.viewFrom)),e.display.mover.style.top=n.viewOffset+"px";var h=Nr(e);if(!c&&0==h&&!r.force&&n.renderedView==n.view&&(null==n.updateLineNumbers||n.updateLineNumbers>=n.viewTo))return!1;var d=function(e){if(e.hasFocus())return null;var t=l();if(!t||!o(e.display.lineDiv,t))return null;var r={activeElt:t};if(window.getSelection){var n=window.getSelection();n.anchorNode&&n.extend&&o(e.display.lineDiv,n.anchorNode)&&(r.anchorNode=n.anchorNode,r.anchorOffset=n.anchorOffset,r.focusNode=n.focusNode,r.focusOffset=n.focusOffset)}return r}(e);return h>4&&(n.lineDiv.style.display="none"),function(e,r,n){function i(t){var r=t.nextSibling;return Xi&&ro&&e.display.currentWheelTarget==t?t.style.display="none":t.parentNode.removeChild(t),r}var o=e.display,l=e.options.lineNumbers,s=o.lineDiv,a=s.firstChild;for(var u=o.view,c=o.viewFrom,h=0;h-1&&(p=!1),Qe(e,d,c,n)),p&&(t(d.lineNumber),d.lineNumber.appendChild(document.createTextNode(D(e.options,c)))),a=d.node.nextSibling}else{var g=nt(e,d,c,n);s.insertBefore(g,a)}c+=d.size}for(;a;)a=i(a)}(e,n.updateLineNumbers,r.dims),h>4&&(n.lineDiv.style.display=""),n.renderedView=n.view,function(e){if(e&&e.activeElt&&e.activeElt!=l()&&(e.activeElt.focus(),e.anchorNode&&o(document.body,e.anchorNode)&&o(document.body,e.focusNode))){var t=window.getSelection(),r=document.createRange();r.setEnd(e.anchorNode,e.anchorOffset),r.collapse(!1),t.removeAllRanges(),t.addRange(r),t.extend(e.focusNode,e.focusOffset)}}(d),t(n.cursorDiv),t(n.selectionDiv),n.gutters.style.height=n.sizer.style.minHeight=0,c&&(n.lastWrapHeight=r.wrapperHeight,n.lastWrapWidth=r.wrapperWidth,Or(e,400)),n.updateLineNumbers=null,!0}function Dr(e,t){for(var r=t.viewport,n=!0;(n&&e.options.lineWrapping&&t.oldDisplayWidth!=ft(e)||(r&&null!=r.top&&(r={top:Math.min(e.doc.height+ut(e.display)-dt(e),r.top)}),t.visible=rr(e.display,e.doc,r),!(t.visible.from>=e.display.viewFrom&&t.visible.to<=e.display.viewTo)))&&Wr(e,t);n=!1){er(e);var i=pr(e);jt(e),gr(e,i),Pr(e,i),t.force=!1}t.signal(e,"update",e),e.display.viewFrom==e.display.reportedViewFrom&&e.display.viewTo==e.display.reportedViewTo||(t.signal(e,"viewportChange",e,e.display.viewFrom,e.display.viewTo),e.display.reportedViewFrom=e.display.viewFrom,e.display.reportedViewTo=e.display.viewTo)}function Hr(e,t){var r=new Qo(e,t);if(Wr(e,r)){er(e),Dr(e,r);var n=pr(e);jt(e),gr(e,n),Pr(e,n),r.finish()}}function Fr(e){var t=e.display.gutters.offsetWidth;e.display.sizer.style.marginLeft=t+"px"}function Pr(e,t){e.display.sizer.style.minHeight=t.docHeight+"px",e.display.heightForcer.style.top=t.docHeight+"px",e.display.gutters.style.height=t.docHeight+e.display.barHeight+ht(e)+"px"}function Er(e){var r=e.display.gutters,i=e.options.gutters;t(r);for(var o=0;o-1&&!e.lineNumbers&&(e.gutters=e.gutters.slice(0),e.gutters.splice(t,1))}function Ir(e){var t=e.wheelDeltaX,r=e.wheelDeltaY;return null==t&&e.detail&&e.axis==e.HORIZONTAL_AXIS&&(t=e.detail),null==r&&e.detail&&e.axis==e.VERTICAL_AXIS?r=e.detail:null==r&&(r=e.wheelDelta),{x:t,y:r}}function Rr(e){var t=Ir(e);return t.x*=el,t.y*=el,t}function Br(e,t){var r=Ir(t),n=r.x,i=r.y,o=e.display,l=o.scroller,s=l.scrollWidth>l.clientWidth,a=l.scrollHeight>l.clientHeight;if(n&&s||i&&a){if(i&&ro&&Xi)e:for(var u=t.target,c=o.view;u!=l;u=u.parentNode)for(var h=0;h=0){var l=I(o.from(),i.from()),s=z(o.to(),i.to()),a=o.empty()?i.from()==i.head:o.from()==o.head;n<=t&&--t,e.splice(--n,2,new rl(a?s:l,a?l:s))}}return new tl(e,t)}function Ur(e,t){return new tl([new rl(e,t||e)],0)}function Vr(e){return e.text?H(e.from.line+e.text.length-1,g(e.text).length+(1==e.text.length?e.from.ch:0)):e.to}function Kr(e,t){if(F(e,t.from)<0)return e;if(F(e,t.to)<=0)return Vr(t);var r=e.line+t.text.length-(t.to.line-t.from.line)-1,n=e.ch;return e.line==t.to.line&&(n+=Vr(t).ch-t.to.ch),H(r,n)}function jr(e,t){for(var r=[],n=0;n1&&e.remove(s.line+1,p-1),e.insert(s.line+1,y)}qe(e,"change",e,t)}function Zr(e,t,r){function n(e,i,o){if(e.linked)for(var l=0;ls-e.cm.options.historyEventDelay||"*"==t.origin.charAt(0)))&&(o=function(e,t){return t?(rn(e.done),g(e.done)):e.done.length&&!g(e.done).ranges?g(e.done):e.done.length>1&&!e.done[e.done.length-2].ranges?(e.done.pop(),g(e.done)):void 0}(i,i.lastOp==n)))l=g(o.changes),0==F(t.from,t.to)&&0==F(t.from,l.to)?l.to=Vr(t):o.changes.push(tn(e,t));else{var a=g(i.done);for(a&&a.ranges||ln(e.sel,i.done),o={changes:[tn(e,t)],generation:i.generation},i.done.push(o);i.done.length>i.undoDepth;)i.done.shift(),i.done[0].ranges||i.done.shift()}i.done.push(r),i.generation=++i.maxGeneration,i.lastModTime=i.lastSelTime=s,i.lastOp=i.lastSelOp=n,i.lastOrigin=i.lastSelOrigin=t.origin,l||pe(e,"historyAdded")}function on(e,t,r,n){var i=e.history,o=n&&n.origin;r==i.lastSelOp||o&&i.lastSelOrigin==o&&(i.lastModTime==i.lastSelTime&&i.lastOrigin==o||function(e,t,r,n){var i=t.charAt(0);return"*"==i||"+"==i&&r.ranges.length==n.ranges.length&&r.somethingSelected()==n.somethingSelected()&&new Date-e.history.lastSelTime<=(e.cm?e.cm.options.historyEventDelay:500)}(e,o,g(i.done),t))?i.done[i.done.length-1]=t:ln(t,i.done),i.lastSelTime=+new Date,i.lastSelOrigin=o,i.lastSelOp=r,n&&!1!==n.clearRedo&&rn(i.undone)}function ln(e,t){var r=g(t);r&&r.ranges&&r.equals(e)||t.push(e)}function sn(e,t,r,n){var i=t["spans_"+e.id],o=0;e.iter(Math.max(e.first,r),Math.min(e.first+e.size,n),function(r){r.markedSpans&&((i||(i=t["spans_"+e.id]={}))[o]=r.markedSpans),++o})}function an(e){if(!e)return null;for(var t,r=0;r-1&&(g(s)[h]=u[h],delete u[h])}}}return n}function hn(e,t,r,n){if(n){var i=e.anchor;if(r){var o=F(t,i)<0;o!=F(r,i)<0?(i=t,t=r):o!=F(t,r)<0&&(t=r)}return new rl(i,t)}return new rl(r||t,t)}function fn(e,t,r,n,i){null==i&&(i=e.cm&&(e.cm.display.shift||e.extend)),mn(e,new tl([hn(e.sel.primary(),t,r,i)],0),n)}function dn(e,t,r){for(var n=[],i=e.cm&&(e.cm.display.shift||e.extend),o=0;o=t.ch:s.to>t.ch))){if(i&&(pe(a,"beforeCursorEnter"),a.explicitlyCleared)){if(o.markedSpans){--l;continue}break}if(!a.atomic)continue;if(r){var u=a.find(n<0?1:-1),c=void 0;if((n<0?a.inclusiveRight:a.inclusiveLeft)&&(u=Ln(e,u,-n,u&&u.line==t.line?o:null)),u&&u.line==t.line&&(c=F(u,r))&&(n<0?c<0:c>0))return Cn(e,u,t,n,i)}var h=a.find(n<0?-1:1);return(n<0?a.inclusiveLeft:a.inclusiveRight)&&(h=Ln(e,h,n,h.line==t.line?o:null)),h?Cn(e,h,t,n,i):null}}return t}function Sn(e,t,r,n,i){var o=n||1,l=Cn(e,t,r,o,i)||!i&&Cn(e,t,r,o,!0)||Cn(e,t,r,-o,i)||!i&&Cn(e,t,r,-o,!0);return l||(e.cantEdit=!0,H(e.first,0))}function Ln(e,t,r,n){return r<0&&0==t.ch?t.line>e.first?B(e,H(t.line-1)):null:r>0&&t.ch==(n||k(e,t.line)).text.length?t.line0)){var c=[a,1],h=F(u.from,s.from),d=F(u.to,s.to);(h<0||!l.inclusiveLeft&&!h)&&c.push({from:u.from,to:s.from}),(d>0||!l.inclusiveRight&&!d)&&c.push({from:s.to,to:u.to}),i.splice.apply(i,c),a+=c.length-3}}return i}(e,t.from,t.to);if(n)for(var i=n.length-1;i>=0;--i)Nn(e,{from:n[i].from,to:n[i].to,text:i?[""]:t.text,origin:t.origin});else Nn(e,t)}}function Nn(e,t){if(1!=t.text.length||""!=t.text[0]||0!=F(t.from,t.to)){var r=jr(e,t);nn(e,t,r,e.cm?e.cm.curOp.id:NaN),Wn(e,t,r,j(e,t));var n=[];Zr(e,function(e,r){r||-1!=f(n,e.history)||(Pn(e.history,t),n.push(e.history)),Wn(e,t,null,j(e,t))})}}function On(e,t,r){if(!e.cm||!e.cm.state.suppressEdits||r){for(var n,i=e.history,o=e.sel,l="undo"==t?i.done:i.undone,s="undo"==t?i.undone:i.done,a=0;a=0;--d){var p=h(d);if(p)return p.v}}}}function An(e,t){if(0!=t&&(e.first+=t,e.sel=new tl(v(e.sel.ranges,function(e){return new rl(H(e.anchor.line+t,e.anchor.ch),H(e.head.line+t,e.head.ch))}),e.sel.primIndex),e.cm)){Lr(e.cm,e.first,e.first-t,t);for(var r=e.cm.display,n=r.viewFrom;ne.lastLine())){if(t.from.lineo&&(t={from:t.from,to:H(o,k(e,o).text.length),text:[t.text[0]],origin:t.origin}),t.removed=T(e,t.from,t.to),r||(r=jr(e,t)),e.cm?function(e,t,r){var n=e.doc,i=e.display,o=t.from,l=t.to,s=!1,a=o.line;e.options.lineWrapping||(a=O(re(k(n,o.line))),n.iter(a,l.line+1,function(e){if(e==i.maxLine)return s=!0,!0}));n.sel.contains(t.from,t.to)>-1&&ve(e);qr(n,t,r,Gt(e)),e.options.lineWrapping||(n.iter(a,o.line+t.text.length,function(e){var t=ae(e);t>i.maxLineLength&&(i.maxLine=e,i.maxLineLength=t,i.maxLineChanged=!0,s=!1)}),s&&(e.curOp.updateMaxLine=!0));(function(e,t){if(e.modeFrontier=Math.min(e.modeFrontier,t),!(e.highlightFrontierr;n--){var i=k(e,n).stateAfter;if(i&&(!(i instanceof Io)||n+i.lookAhead0||0==s&&!1!==l.clearWhenEmpty)return l;if(l.replacedWith&&(l.collapsed=!0,l.widgetNode=i("span",[l.replacedWith],"CodeMirror-widget"),n.handleMouseEvents||l.widgetNode.setAttribute("cm-ignore-events","true"),n.insertLeft&&(l.widgetNode.insertLeft=!0)),l.collapsed){if(te(e,t.line,t,r,l)||t.line!=r.line&&te(e,r.line,t,r,l))throw new Error("Inserting collapsed marker partially overlapping an existing one");Lo=!0}l.addToHistory&&nn(e,{from:t,to:r,origin:"markText"},e.sel,NaN);var a,u=t.line,h=e.cm;if(e.iter(u,r.line+1,function(e){h&&l.collapsed&&!h.options.lineWrapping&&re(e)==h.display.maxLine&&(a=!0),l.collapsed&&u!=t.line&&N(e,0),function(e,t){e.markedSpans=e.markedSpans?e.markedSpans.concat([t]):[t],t.marker.attachLine(e)}(e,new U(l,u==t.line?t.ch:null,u==r.line?r.ch:null)),++u}),l.collapsed&&e.iter(t.line,r.line+1,function(t){oe(e,t)&&N(t,0)}),l.clearOnEnter&&No(l,"beforeCursorEnter",function(){return l.clear()}),l.readOnly&&(So=!0,(e.history.done.length||e.history.undone.length)&&e.clearHistory()),l.collapsed&&(l.id=++il,l.atomic=!0),h){if(a&&(h.curOp.updateMaxLine=!0),l.collapsed)Lr(h,t.line,r.line+1);else if(l.className||l.title||l.startStyle||l.endStyle||l.css)for(var f=t.line;f<=r.line;f++)kr(h,f,"text");l.atomic&&wn(h.doc),qe(h,"markerAdded",h,l)}return l}function Gn(e){return e.findMarks(H(e.first,0),e.clipPos(H(e.lastLine())),function(e){return e.parent})}function Un(e){for(var t=function(t){var r=e[t],n=[r.primary.doc];Zr(r.primary.doc,function(e){return n.push(e)});for(var i=0;i-1)return t.state.draggingText(e),void setTimeout(function(){return t.display.input.focus()},20);try{var u=e.dataTransfer.getData("Text");if(u){var c;if(t.state.draggingText&&!t.state.draggingText.copy&&(c=t.listSelections()),yn(t.doc,Ur(r,r)),c)for(var h=0;h=0;t--)Dn(e.doc,"",n[t].from,n[t].to,"+delete");sr(e)})}function ri(e,t,r){var n=S(e.text,t+r,r);return n<0||n>e.text.length?null:n}function ni(e,t,r){var n=ri(e,t.ch,r);return null==n?null:new H(t.line,n,r<0?"after":"before")}function ii(e,t,r,n,i){if(e){var o=he(r,t.doc.direction);if(o){var l,s=i<0?g(o):o[0],a=i<0==(1==s.level)?"after":"before";if(s.level>0||"rtl"==t.doc.direction){var u=mt(t,r);l=i<0?r.text.length-1:0;var c=yt(t,u,l).top;l=L(function(e){return yt(t,u,e).top==c},i<0==(1==s.level)?s.from:s.to-1,l),"before"==a&&(l=ri(r,l,1))}else l=i<0?s.to:s.from;return new H(n,l,a)}}return new H(n,i<0?r.text.length:0,i<0?"before":"after")}function oi(e,t){var r=k(e.doc,t),n=re(r);return n!=r&&(t=O(n)),ii(!0,e,n,t,1)}function li(e,t){var r=k(e.doc,t),n=function(e){for(var t;t=ee(e);)e=t.find(1,!0).line;return e}(r);return n!=r&&(t=O(n)),ii(!0,e,r,t,-1)}function si(e,t){var r=oi(e,t.line),n=k(e.doc,r.line),i=he(n,e.doc.direction);if(!i||0==i[0].level){var o=Math.max(0,n.text.search(/\S/)),l=t.line==r.line&&t.ch<=o&&t.ch;return H(r.line,l?0:o,r.sticky)}return r}function ai(e,t,r){if("string"==typeof t&&!(t=vl[t]))return!1;e.display.input.ensurePolled();var n=e.display.shift,i=!1;try{e.isReadOnly()&&(e.state.suppressEdits=!0),r&&(e.display.shift=!1),i=t(e)!=vo}finally{e.display.shift=n,e.state.suppressEdits=!1}return i}function ui(e,t,r,n){var i=e.state.keySeq;if(i){if(Zn(t))return"handled";ml.set(50,function(){e.state.keySeq==i&&(e.state.keySeq=null,e.display.input.reset())}),t=i+" "+t}var o=function(e,t,r){for(var n=0;n-1&&(F((i=s.ranges[i]).from(),t)<0||t.xRel>0)&&(F(i.to(),t)>0||t.xRel<0)?function(e,t,r,n){var i=e.display,o=!1,l=xr(e,function(t){Xi&&(i.scroller.draggable=!1),e.state.draggingText=!1,de(document,"mouseup",l),de(document,"mousemove",s),de(i.scroller,"dragstart",a),de(i.scroller,"drop",l),o||(be(t),n.addNew||fn(e.doc,r,null,null,n.extend),Xi||Ki&&9==ji?setTimeout(function(){document.body.focus(),i.input.focus()},20):i.input.focus())}),s=function(e){o=o||Math.abs(t.clientX-e.clientX)+Math.abs(t.clientY-e.clientY)>=10},a=function(){return o=!0};Xi&&(i.scroller.draggable=!0);e.state.draggingText=l,l.copy=!n.moveOnDrag,i.scroller.dragDrop&&i.scroller.dragDrop();No(document,"mouseup",l),No(document,"mousemove",s),No(i.scroller,"dragstart",a),No(i.scroller,"drop",l),Zt(e),setTimeout(function(){return i.input.focus()},20)}(e,n,t,o):function(e,t,r,n){function i(t){if(0!=F(m,t))if(m=t,"rectangle"==n.unit){for(var i=[],o=e.options.tabSize,l=h(k(u,r.line).text,r.ch,o),s=h(k(u,t.line).text,t.ch,o),a=Math.min(l,s),g=Math.max(l,s),v=Math.min(r.line,t.line),y=Math.min(e.lastLine(),Math.max(r.line,t.line));v<=y;v++){var b=k(u,v).text,w=d(b,a,o);a==g?i.push(new rl(H(v,w),H(v,w))):b.length>w&&i.push(new rl(H(v,w),H(v,d(b,g,o))))}i.length||i.push(new rl(r,r)),mn(u,Gr(p.ranges.slice(0,f).concat(i),f),{origin:"*mouse",scroll:!1}),e.scrollIntoView(t)}else{var x,C=c,S=gi(e,t,n.unit),L=C.anchor;F(S.anchor,L)>0?(x=S.head,L=I(C.from(),S.anchor)):(x=S.anchor,L=z(C.to(),S.head));var T=p.ranges.slice(0);T[f]=function(e,t){var r=t.anchor,n=t.head,i=k(e.doc,r.line);if(0==F(r,n)&&r.sticky==n.sticky)return t;var o=he(i);if(!o)return t;var l=ce(o,r.ch,r.sticky),s=o[l];if(s.from!=r.ch&&s.to!=r.ch)return t;var a=l+(s.from==r.ch==(1!=s.level)?0:1);if(0==a||a==o.length)return t;var u;if(n.line!=r.line)u=(n.line-r.line)*("ltr"==e.doc.direction?1:-1)>0;else{var c=ce(o,n.ch,n.sticky),h=c-l||(n.ch-r.ch)*(1==s.level?-1:1);u=c==a-1||c==a?h<0:h>0}var f=o[a+(u?-1:0)],d=u==(1==f.level),p=d?f.from:f.to,g=d?"after":"before";return r.ch==p&&r.sticky==g?t:new rl(new H(r.line,p,g),n)}(e,new rl(B(u,L),x)),mn(u,Gr(T,f),yo)}}function o(t){var r=++b,s=Vt(e,t,!0,"rectangle"==n.unit);if(s)if(0!=F(s,m)){e.curOp.focus=l(),i(s);var c=rr(a,u);(s.line>=c.to||s.liney.bottom?20:0;h&&setTimeout(xr(e,function(){b==r&&(a.scroller.scrollTop+=h,o(t))}),50)}}function s(t){e.state.selectingText=!1,b=1/0,be(t),a.input.focus(),de(document,"mousemove",w),de(document,"mouseup",x),u.history.lastSelOrigin=null}var a=e.display,u=e.doc;be(t);var c,f,p=u.sel,g=p.ranges;n.addNew&&!n.extend?(f=u.sel.contains(r),c=f>-1?g[f]:new rl(r,r)):(c=u.sel.primary(),f=u.sel.primIndex);if("rectangle"==n.unit)n.addNew||(c=new rl(r,r)),r=Vt(e,t,!0,!0),f=-1;else{var v=gi(e,r,n.unit);c=n.extend?hn(c,v.anchor,v.head,n.extend):v}n.addNew?-1==f?(f=g.length,mn(u,Gr(g.concat([c]),f),{scroll:!1,origin:"*mouse"})):g.length>1&&g[f].empty()&&"char"==n.unit&&!n.extend?(mn(u,Gr(g.slice(0,f).concat(g.slice(f+1)),0),{scroll:!1,origin:"*mouse"}),p=u.sel):pn(u,f,c,yo):(f=0,mn(u,new tl([c],0),yo),p=u.sel);var m=r;var y=a.wrapper.getBoundingClientRect(),b=0;var w=xr(e,function(e){Le(e)?o(e):s(e)}),x=xr(e,s);e.state.selectingText=x,No(document,"mousemove",w),No(document,"mouseup",x)}(e,n,t,o)}(t,n,o,e):Se(e)==r.scroller&&be(e):2==i?(n&&fn(t.doc,n),setTimeout(function(){return r.input.focus()},20)):3==i&&(ao?yi(t,e):Zt(t)))}}function gi(e,t,r){if("char"==r)return new rl(t,t);if("word"==r)return e.findWordAt(t);if("line"==r)return new rl(H(t.line,0),B(e.doc,H(t.line+1,0)));var n=r(e,t);return new rl(n.from,n.to)}function vi(e,t,r,n){var i,o;if(t.touches)i=t.touches[0].clientX,o=t.touches[0].clientY;else try{i=t.clientX,o=t.clientY}catch(t){return!1}if(i>=Math.floor(e.display.gutters.getBoundingClientRect().right))return!1;n&&be(t);var l=e.display,s=l.lineDiv.getBoundingClientRect();if(o>s.bottom||!me(e,r))return xe(t);o-=s.top-l.viewOffset;for(var a=0;a=i){return pe(e,r,e,A(e.doc,o),e.options.gutters[a],t),xe(t)}}}function mi(e,t){return vi(e,t,"gutterClick",!0)}function yi(e,t){st(e.display,t)||function(e,t){if(!me(e,"gutterContextMenu"))return!1;return vi(e,t,"gutterContextMenu",!1)}(e,t)||ge(e,t,"contextmenu")||e.display.input.onContextMenu(t)}function bi(e){e.display.wrapper.className=e.display.wrapper.className.replace(/\s*cm-s-\S+/g,"")+e.options.theme.replace(/(^|\s)\s*/g," cm-s-"),St(e)}function wi(e){Er(e),Lr(e),nr(e)}function xi(e,t,r){if(!t!=!(r&&r!=Cl)){var n=e.display.dragFunctions,i=t?No:de;i(e.display.scroller,"dragstart",n.start),i(e.display.scroller,"dragenter",n.enter),i(e.display.scroller,"dragover",n.over),i(e.display.scroller,"dragleave",n.leave),i(e.display.scroller,"drop",n.drop)}}function Ci(e){e.options.lineWrapping?(s(e.display.wrapper,"CodeMirror-wrap"),e.display.sizer.style.minWidth="",e.display.sizerWidth=null):(uo(e.display.wrapper,"CodeMirror-wrap"),ue(e)),Ut(e),Lr(e),St(e),setTimeout(function(){return gr(e)},100)}function Si(e,t){var o=this;if(!(this instanceof Si))return new Si(e,t);this.options=t=t?c(t):{},c(Sl,t,!1),zr(t);var l=t.value;"string"==typeof l&&(l=new al(l,t.mode,null,t.lineSeparator,t.direction)),this.doc=l;var s=new Si.inputStyles[t.inputStyle](this),a=this.display=new function(e,t,r){var o=this;this.input=r,o.scrollbarFiller=n("div",null,"CodeMirror-scrollbar-filler"),o.scrollbarFiller.setAttribute("cm-not-content","true"),o.gutterFiller=n("div",null,"CodeMirror-gutter-filler"),o.gutterFiller.setAttribute("cm-not-content","true"),o.lineDiv=i("div",null,"CodeMirror-code"),o.selectionDiv=n("div",null,null,"position: relative; z-index: 1"),o.cursorDiv=n("div",null,"CodeMirror-cursors"),o.measure=n("div",null,"CodeMirror-measure"),o.lineMeasure=n("div",null,"CodeMirror-measure"),o.lineSpace=i("div",[o.measure,o.lineMeasure,o.selectionDiv,o.cursorDiv,o.lineDiv],null,"position: relative; outline: none");var l=i("div",[o.lineSpace],"CodeMirror-lines");o.mover=n("div",[l],null,"position: relative"),o.sizer=n("div",[o.mover],"CodeMirror-sizer"),o.sizerWidth=null,o.heightForcer=n("div",null,null,"position: absolute; height: "+go+"px; width: 1px;"),o.gutters=n("div",null,"CodeMirror-gutters"),o.lineGutter=null,o.scroller=n("div",[o.sizer,o.heightForcer,o.gutters],"CodeMirror-scroll"),o.scroller.setAttribute("tabIndex","-1"),o.wrapper=n("div",[o.scrollbarFiller,o.gutterFiller,o.scroller],"CodeMirror"),Ki&&ji<8&&(o.gutters.style.zIndex=-1,o.scroller.style.paddingRight=0),Xi||Bi&&to||(o.scroller.draggable=!0),e&&(e.appendChild?e.appendChild(o.wrapper):e(o.wrapper)),o.viewFrom=o.viewTo=t.first,o.reportedViewFrom=o.reportedViewTo=t.first,o.view=[],o.renderedView=null,o.externalMeasured=null,o.viewOffset=0,o.lastWrapHeight=o.lastWrapWidth=0,o.updateLineNumbers=null,o.nativeBarWidth=o.barHeight=o.barWidth=0,o.scrollbarsClipped=!1,o.lineNumWidth=o.lineNumInnerWidth=o.lineNumChars=null,o.alignWidgets=!1,o.cachedCharWidth=o.cachedTextHeight=o.cachedPaddingH=null,o.maxLine=null,o.maxLineLength=0,o.maxLineChanged=!1,o.wheelDX=o.wheelDY=o.wheelStartX=o.wheelStartY=null,o.shift=!1,o.selForContextMenu=null,o.activeTouch=null,r.init(o)}(e,l,s);a.wrapper.CodeMirror=this,Er(this),bi(this),t.lineWrapping&&(this.display.wrapper.className+=" CodeMirror-wrap"),mr(this),this.state={keyMaps:[],overlays:[],modeGen:0,overwrite:!1,delayingBlurEvent:!1,focused:!1,suppressEdits:!1,pasteIncoming:!1,cutIncoming:!1,selectingText:!1,draggingText:!1,highlight:new ho,keySeq:null,specialChars:null},t.autofocus&&!to&&a.input.focus(),Ki&&ji<11&&setTimeout(function(){return o.display.input.reset(!0)},20),function(e){function t(){o.activeTouch&&(l=setTimeout(function(){return o.activeTouch=null},1e3),(s=o.activeTouch).end=+new Date)}function i(e,t){if(null==t.left)return!0;var r=t.left-e.left,n=t.top-e.top;return r*r+n*n>400}var o=e.display;No(o.scroller,"mousedown",xr(e,pi)),Ki&&ji<11?No(o.scroller,"dblclick",xr(e,function(t){if(!ge(e,t)){var r=Vt(e,t);if(r&&!mi(e,t)&&!st(e.display,t)){be(t);var n=e.findWordAt(r);fn(e.doc,n.anchor,n.head)}}})):No(o.scroller,"dblclick",function(t){return ge(e,t)||be(t)});ao||No(o.scroller,"contextmenu",function(t){return yi(e,t)});var l,s={end:0};No(o.scroller,"touchstart",function(t){if(!ge(e,t)&&!function(e){if(1!=e.touches.length)return!1;var t=e.touches[0];return t.radiusX<=1&&t.radiusY<=1}(t)&&!mi(e,t)){o.input.ensurePolled(),clearTimeout(l);var r=+new Date;o.activeTouch={start:r,moved:!1,prev:r-s.end<=300?s:null},1==t.touches.length&&(o.activeTouch.left=t.touches[0].pageX,o.activeTouch.top=t.touches[0].pageY)}}),No(o.scroller,"touchmove",function(){o.activeTouch&&(o.activeTouch.moved=!0)}),No(o.scroller,"touchend",function(r){var n=o.activeTouch;if(n&&!st(o,r)&&null!=n.left&&!n.moved&&new Date-n.start<300){var l,s=e.coordsChar(o.activeTouch,"page");l=!n.prev||i(n,n.prev)?new rl(s,s):!n.prev.prev||i(n,n.prev.prev)?e.findWordAt(s):new rl(H(s.line,0),B(e.doc,H(s.line+1,0))),e.setSelection(l.anchor,l.head),e.focus(),be(r)}t()}),No(o.scroller,"touchcancel",t),No(o.scroller,"scroll",function(){o.scroller.clientHeight&&(hr(e,o.scroller.scrollTop),dr(e,o.scroller.scrollLeft,!0),pe(e,"scroll",e))}),No(o.scroller,"mousewheel",function(t){return Br(e,t)}),No(o.scroller,"DOMMouseScroll",function(t){return Br(e,t)}),No(o.wrapper,"scroll",function(){return o.wrapper.scrollTop=o.wrapper.scrollLeft=0}),o.dragFunctions={enter:function(t){ge(e,t)||Ce(t)},over:function(t){ge(e,t)||(!function(e,t){var i=Vt(e,t);if(i){var o=document.createDocumentFragment();Yt(e,i,o),e.display.dragCursor||(e.display.dragCursor=n("div",null,"CodeMirror-cursors CodeMirror-dragcursors"),e.display.lineSpace.insertBefore(e.display.dragCursor,e.display.cursorDiv)),r(e.display.dragCursor,o)}}(e,t),Ce(t))},start:function(t){return function(e,t){if(Ki&&(!e.state.draggingText||+new Date-ul<100))Ce(t);else if(!ge(e,t)&&!st(e.display,t)&&(t.dataTransfer.setData("Text",e.getSelection()),t.dataTransfer.effectAllowed="copyMove",t.dataTransfer.setDragImage&&!qi)){var r=n("img",null,null,"position: fixed; left: 0; top: 0;");r.src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==",$i&&(r.width=r.height=1,e.display.wrapper.appendChild(r),r._top=r.offsetTop),t.dataTransfer.setDragImage(r,0,0),$i&&r.parentNode.removeChild(r)}}(e,t)},drop:xr(e,Vn),leave:function(t){ge(e,t)||Kn(e)}};var a=o.input.getField();No(a,"keyup",function(t){return fi.call(e,t)}),No(a,"keydown",xr(e,hi)),No(a,"keypress",xr(e,di)),No(a,"focus",function(t){return Qt(e,t)}),No(a,"blur",function(t){return Jt(e,t)})}(this),Xn(),yr(this),this.curOp.forceUpdate=!0,Qr(this,l),t.autofocus&&!to||this.hasFocus()?setTimeout(u(Qt,this),20):Jt(this);for(var h in Ll)Ll.hasOwnProperty(h)&&Ll[h](o,t[h],Cl);ir(this),t.finishInit&&t.finishInit(this);for(var f=0;f150)){if(!n)return;r="prev"}}else u=0,r="not";"prev"==r?u=t>o.first?h(k(o,t-1).text,null,l):0:"add"==r?u=a+e.options.indentUnit:"subtract"==r?u=a-e.options.indentUnit:"number"==typeof r&&(u=a+r),u=Math.max(0,u);var f="",d=0;if(e.options.indentWithTabs)for(var g=Math.floor(u/l);g;--g)d+=l,f+="\t";if(d1)if(Tl&&Tl.text.join("\n")==t){if(n.ranges.length%Tl.text.length==0){a=[];for(var u=0;u=0;h--){var f=n.ranges[h],d=f.from(),p=f.to();f.empty()&&(r&&r>0?d=H(d.line,d.ch-r):e.state.overwrite&&!l?p=H(p.line,Math.min(k(o,p.line).text.length,p.ch+g(s).length)):Tl&&Tl.lineWise&&Tl.text.join("\n")==t&&(d=p=H(d.line,0))),c=e.curOp.updateInput;var m={from:d,to:p,text:a?a[h%a.length]:s,origin:i||(l?"paste":e.state.cutIncoming?"cut":"+input")};Mn(e.doc,m),qe(e,"inputRead",e,m)}t&&!l&&Ni(e,t),sr(e),e.curOp.updateInput=c,e.curOp.typing=!0,e.state.pasteIncoming=e.state.cutIncoming=!1}function Mi(e,t){var r=e.clipboardData&&e.clipboardData.getData("Text");if(r)return e.preventDefault(),t.isReadOnly()||t.options.disableInput||wr(t,function(){return Ti(t,r,0,null,"paste")}),!0}function Ni(e,t){if(e.options.electricChars&&e.options.smartIndent)for(var r=e.doc.sel,n=r.ranges.length-1;n>=0;n--){var i=r.ranges[n];if(!(i.head.ch>100||n&&r.ranges[n-1].head.line==i.head.line)){var o=e.getModeAt(i.head),l=!1;if(o.electricChars){for(var s=0;s-1){l=Li(e,i.head.line,"smart");break}}else o.electricInput&&o.electricInput.test(k(e.doc,i.head.line).text.slice(0,i.head.ch))&&(l=Li(e,i.head.line,"smart"));l&&qe(e,"electricInput",e,i.head.line)}}}function Oi(e){for(var t=[],r=[],n=0;nr&&(Li(this,i.head.line,e,!0),r=i.head.line,n==this.doc.sel.primIndex&&sr(this));else{var o=i.from(),l=i.to(),s=Math.max(r,o.line);r=Math.min(this.lastLine(),l.line-(l.ch?0:1))+1;for(var a=s;a0&&pn(this.doc,n,new rl(o,u[n].to()),mo)}}}),getTokenAt:function(e,t){return Re(this,e,t)},getLineTokens:function(e,t){return Re(this,H(e),t,!0)},getTokenTypeAt:function(e){e=B(this.doc,e);var t,r=Fe(this,k(this.doc,e.line)),n=0,i=(r.length-1)/2,o=e.ch;if(0==o)t=r[2];else for(;;){var l=n+i>>1;if((l?r[2*l-1]:0)>=o)i=l;else{if(!(r[2*l+1]o&&(e=o,i=!0),n=k(this.doc,e)}else n=e;return Mt(this,n,{top:0,left:0},t||"page",r||i).top+(i?this.doc.height-se(n):0)},defaultTextHeight:function(){return zt(this.display)},defaultCharWidth:function(){return It(this.display)},getViewport:function(){return{from:this.display.viewFrom,to:this.display.viewTo}},addWidget:function(e,t,r,n,i){var o=this.display,l=(e=At(this,B(this.doc,e))).bottom,s=e.left;if(t.style.position="absolute",t.setAttribute("cm-ignore-events","true"),this.display.input.setUneditable(t),o.sizer.appendChild(t),"over"==n)l=e.top;else if("above"==n||"near"==n){var a=Math.max(o.wrapper.clientHeight,this.doc.height),u=Math.max(o.sizer.clientWidth,o.lineSpace.clientWidth);("above"==n||e.bottom+t.offsetHeight>a)&&e.top>t.offsetHeight?l=e.top-t.offsetHeight:e.bottom+t.offsetHeight<=a&&(l=e.bottom),s+t.offsetWidth>u&&(s=u-t.offsetWidth)}t.style.top=l+"px",t.style.left=t.style.right="","right"==i?(s=o.sizer.clientWidth-t.offsetWidth,t.style.right="0px"):("left"==i?s=0:"middle"==i&&(s=(o.sizer.clientWidth-t.offsetWidth)/2),t.style.left=s+"px"),r&&function(e,t){var r=or(e,t);null!=r.scrollTop&&hr(e,r.scrollTop),null!=r.scrollLeft&&dr(e,r.scrollLeft)}(this,{left:s,top:l,right:s+t.offsetWidth,bottom:l+t.offsetHeight})},triggerOnKeyDown:Cr(hi),triggerOnKeyPress:Cr(di),triggerOnKeyUp:fi,triggerOnMouseDown:Cr(pi),execCommand:function(e){if(vl.hasOwnProperty(e))return vl[e].call(null,this)},triggerElectric:Cr(function(e){Ni(this,e)}),findPosH:function(e,t,r,n){var i=1;t<0&&(i=-1,t=-t);for(var o=B(this.doc,e),l=0;l0&&l(t.charAt(r-1));)--r;for(;n.5)&&Ut(this),pe(this,"refresh",this)}),swapDoc:Cr(function(e){var t=this.doc;return t.cm=null,Qr(this,e),St(this),this.display.input.reset(),ar(this,e.scrollLeft,e.scrollTop),this.curOp.forceScroll=!0,qe(this,"swapDoc",this,t),t}),getInputField:function(){return this.display.input.getField()},getWrapperElement:function(){return this.display.wrapper},getScrollerElement:function(){return this.display.scroller},getGutterElement:function(){return this.display.gutters}},ye(e),e.registerHelper=function(t,n,i){r.hasOwnProperty(t)||(r[t]=e[t]={_global:[]}),r[t][n]=i},e.registerGlobalHelper=function(t,n,i,o){e.registerHelper(t,n,o),r[t]._global.push({pred:i,val:o})}}function Hi(e,t,r,n,i){function o(n){var o;if(null==(o=i?function(e,t,r,n){var i=he(t,e.doc.direction);if(!i)return ni(t,r,n);r.ch>=t.text.length?(r.ch=t.text.length,r.sticky="before"):r.ch<=0&&(r.ch=0,r.sticky="after");var o=ce(i,r.ch,r.sticky),l=i[o];if("ltr"==e.doc.direction&&l.level%2==0&&(n>0?l.to>r.ch:l.from=l.from&&f>=c.begin)){var d=h?"before":"after";return new H(r.line,f,d)}}var p=function(e,t,n){for(var o=function(e,t){return t?new H(r.line,a(e,1),"before"):new H(r.line,e,"after")};e>=0&&e0==(1!=l.level),u=s?n.begin:a(n.end,-1);if(l.from<=u&&u0?c.end:a(c.begin,-1);return null==v||n>0&&v==t.text.length||!(g=p(n>0?0:i.length-1,n,u(v)))?null:g}(e.cm,a,t,r):ni(a,t,r))){if(n||!function(){var n=t.line+r;return!(n=e.first+e.size)&&(t=new H(n,t.ch,t.sticky),a=k(e,n))}())return!1;t=ii(i,e.cm,a,t.line,r)}else t=o;return!0}var l=t,s=r,a=k(e,t.line);if("char"==n)o();else if("column"==n)o(!0);else if("word"==n||"group"==n)for(var u=null,c="group"==n,h=e.cm&&e.cm.getHelper(t,"wordChars"),f=!0;!(r<0)||o(!f);f=!1){var d=a.text.charAt(t.ch)||"\n",p=w(d,h)?"w":c&&"\n"==d?"n":!c||/\s/.test(d)?null:"p";if(!c||f||p||(p="s"),u&&u!=p){r<0&&(r=1,o(),t.sticky="after");break}if(p&&(u=p),r>0&&!o(!f))break}var g=Sn(e,t,l,s,!0);return P(l,g)&&(g.hitSide=!0),g}function Fi(e,t,r,n){var i,o=e.doc,l=t.left;if("page"==n){var s=Math.min(e.display.wrapper.clientHeight,window.innerHeight||document.documentElement.clientHeight),a=Math.max(s-.5*zt(e.display),3);i=(r>0?t.bottom:t.top)+r*a}else"line"==n&&(i=r>0?t.bottom+3:t.top-3);for(var u;(u=Ht(e,l,i)).outside;){if(r<0?i<=0:i>=o.height){u.hitSide=!0;break}i+=5*r}return u}function Pi(e,t){var r=vt(e,t.line);if(!r||r.hidden)return null;var n=k(e.doc,t.line),i=pt(r,n,t.line),o=he(n,e.doc.direction),l="left";if(o){l=ce(o,t.ch)%2?"right":"left"}var s=bt(i.map,t.ch,l);return s.offset="right"==s.collapse?s.end:s.start,s}function Ei(e,t){return t&&(e.bad=!0),e}function zi(e,t,r){var n;if(t==e.display.lineDiv){if(!(n=e.display.lineDiv.childNodes[r]))return Ei(e.clipPos(H(e.display.viewTo-1)),!0);t=null,r=0}else for(n=t;;n=n.parentNode){if(!n||n==e.display.lineDiv)return null;if(n.parentNode&&n.parentNode==e.display.lineDiv)break}for(var i=0;i=15&&($i=!1,Xi=!0);var lo,so=ro&&(Yi||$i&&(null==oo||oo<12.11)),ao=Bi||Ki&&ji>=9,uo=function(t,r){var n=t.className,i=e(r).exec(n);if(i){var o=n.slice(i.index+i[0].length);t.className=n.slice(0,i.index)+(o?i[1]+o:"")}};lo=document.createRange?function(e,t,r,n){var i=document.createRange();return i.setEnd(n||e,r),i.setStart(e,t),i}:function(e,t,r){var n=document.body.createTextRange();try{n.moveToElementText(e.parentNode)}catch(e){return n}return n.collapse(!0),n.moveEnd("character",r),n.moveStart("character",t),n};var co=function(e){e.select()};Ji?co=function(e){e.selectionStart=0,e.selectionEnd=e.value.length}:Ki&&(co=function(e){try{e.select()}catch(e){}});var ho=function(){this.id=null};ho.prototype.set=function(e,t){clearTimeout(this.id),this.id=setTimeout(t,e)};var fo,po,go=30,vo={toString:function(){return"CodeMirror.Pass"}},mo={scroll:!1},yo={origin:"*mouse"},bo={origin:"+move"},wo=[""],xo=/[\u00df\u0587\u0590-\u05f4\u0600-\u06ff\u3040-\u309f\u30a0-\u30ff\u3400-\u4db5\u4e00-\u9fcc\uac00-\ud7af]/,Co=/[\u0300-\u036f\u0483-\u0489\u0591-\u05bd\u05bf\u05c1\u05c2\u05c4\u05c5\u05c7\u0610-\u061a\u064b-\u065e\u0670\u06d6-\u06dc\u06de-\u06e4\u06e7\u06e8\u06ea-\u06ed\u0711\u0730-\u074a\u07a6-\u07b0\u07eb-\u07f3\u0816-\u0819\u081b-\u0823\u0825-\u0827\u0829-\u082d\u0900-\u0902\u093c\u0941-\u0948\u094d\u0951-\u0955\u0962\u0963\u0981\u09bc\u09be\u09c1-\u09c4\u09cd\u09d7\u09e2\u09e3\u0a01\u0a02\u0a3c\u0a41\u0a42\u0a47\u0a48\u0a4b-\u0a4d\u0a51\u0a70\u0a71\u0a75\u0a81\u0a82\u0abc\u0ac1-\u0ac5\u0ac7\u0ac8\u0acd\u0ae2\u0ae3\u0b01\u0b3c\u0b3e\u0b3f\u0b41-\u0b44\u0b4d\u0b56\u0b57\u0b62\u0b63\u0b82\u0bbe\u0bc0\u0bcd\u0bd7\u0c3e-\u0c40\u0c46-\u0c48\u0c4a-\u0c4d\u0c55\u0c56\u0c62\u0c63\u0cbc\u0cbf\u0cc2\u0cc6\u0ccc\u0ccd\u0cd5\u0cd6\u0ce2\u0ce3\u0d3e\u0d41-\u0d44\u0d4d\u0d57\u0d62\u0d63\u0dca\u0dcf\u0dd2-\u0dd4\u0dd6\u0ddf\u0e31\u0e34-\u0e3a\u0e47-\u0e4e\u0eb1\u0eb4-\u0eb9\u0ebb\u0ebc\u0ec8-\u0ecd\u0f18\u0f19\u0f35\u0f37\u0f39\u0f71-\u0f7e\u0f80-\u0f84\u0f86\u0f87\u0f90-\u0f97\u0f99-\u0fbc\u0fc6\u102d-\u1030\u1032-\u1037\u1039\u103a\u103d\u103e\u1058\u1059\u105e-\u1060\u1071-\u1074\u1082\u1085\u1086\u108d\u109d\u135f\u1712-\u1714\u1732-\u1734\u1752\u1753\u1772\u1773\u17b7-\u17bd\u17c6\u17c9-\u17d3\u17dd\u180b-\u180d\u18a9\u1920-\u1922\u1927\u1928\u1932\u1939-\u193b\u1a17\u1a18\u1a56\u1a58-\u1a5e\u1a60\u1a62\u1a65-\u1a6c\u1a73-\u1a7c\u1a7f\u1b00-\u1b03\u1b34\u1b36-\u1b3a\u1b3c\u1b42\u1b6b-\u1b73\u1b80\u1b81\u1ba2-\u1ba5\u1ba8\u1ba9\u1c2c-\u1c33\u1c36\u1c37\u1cd0-\u1cd2\u1cd4-\u1ce0\u1ce2-\u1ce8\u1ced\u1dc0-\u1de6\u1dfd-\u1dff\u200c\u200d\u20d0-\u20f0\u2cef-\u2cf1\u2de0-\u2dff\u302a-\u302f\u3099\u309a\ua66f-\ua672\ua67c\ua67d\ua6f0\ua6f1\ua802\ua806\ua80b\ua825\ua826\ua8c4\ua8e0-\ua8f1\ua926-\ua92d\ua947-\ua951\ua980-\ua982\ua9b3\ua9b6-\ua9b9\ua9bc\uaa29-\uaa2e\uaa31\uaa32\uaa35\uaa36\uaa43\uaa4c\uaab0\uaab2-\uaab4\uaab7\uaab8\uaabe\uaabf\uaac1\uabe5\uabe8\uabed\udc00-\udfff\ufb1e\ufe00-\ufe0f\ufe20-\ufe26\uff9e\uff9f]/,So=!1,Lo=!1,ko=null,To=function(){function e(e){return e<=247?r.charAt(e):1424<=e&&e<=1524?"R":1536<=e&&e<=1785?n.charAt(e-1536):1774<=e&&e<=2220?"r":8192<=e&&e<=8203?"w":8204==e?"b":"L"}function t(e,t,r){this.level=e,this.from=t,this.to=r}var r="bbbbbbbbbtstwsbbbbbbbbbbbbbbssstwNN%%%NNNNNN,N,N1111111111NNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNbbbbbbsbbbbbbbbbbbbbbbbbbbbbbbbbb,N%%%%NNNNLNNNNN%%11NLNNN1LNNNNNLLLLLLLLLLLLLLLLLLLLLLLNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLN",n="nnnnnnNNr%%r,rNNmmmmmmmmmmmrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrmmmmmmmmmmmmmmmmmmmmmnnnnnnnnnn%nnrrrmrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrmmmmmmmnNmmmmmmrrmmNmmmmrr1111111111",i=/[\u0590-\u05f4\u0600-\u06ff\u0700-\u08ac]/,o=/[stwN]/,l=/[LRr]/,s=/[Lb1n]/,a=/[1n]/;return function(r,n){var u="ltr"==n?"L":"R";if(0==r.length||"ltr"==n&&!i.test(r))return!1;for(var c=r.length,h=[],f=0;f=this.string.length},zo.prototype.sol=function(){return this.pos==this.lineStart},zo.prototype.peek=function(){return this.string.charAt(this.pos)||void 0},zo.prototype.next=function(){if(this.post},zo.prototype.eatSpace=function(){for(var e=this.pos;/[\s\u00a0]/.test(this.string.charAt(this.pos));)++this.pos;return this.pos>e},zo.prototype.skipToEnd=function(){this.pos=this.string.length},zo.prototype.skipTo=function(e){var t=this.string.indexOf(e,this.pos);if(t>-1)return this.pos=t,!0},zo.prototype.backUp=function(e){this.pos-=e},zo.prototype.column=function(){return this.lastColumnPos0?null:(n&&!1!==t&&(this.pos+=n[0].length),n)}var i=function(e){return r?e.toLowerCase():e};if(i(this.string.substr(this.pos,e.length))==i(e))return!1!==t&&(this.pos+=e.length),!0},zo.prototype.current=function(){return this.string.slice(this.start,this.pos)},zo.prototype.hideFirstChars=function(e,t){this.lineStart+=e;try{return t()}finally{this.lineStart-=e}},zo.prototype.lookAhead=function(e){var t=this.lineOracle;return t&&t.lookAhead(e)},zo.prototype.baseToken=function(){var e=this.lineOracle;return e&&e.baseToken(this.pos)};var Io=function(e,t){this.state=e,this.lookAhead=t},Ro=function(e,t,r,n){this.state=t,this.doc=e,this.line=r,this.maxLookAhead=n||0,this.baseTokens=null,this.baseTokenPos=1};Ro.prototype.lookAhead=function(e){var t=this.doc.getLine(this.line+e);return null!=t&&e>this.maxLookAhead&&(this.maxLookAhead=e),t},Ro.prototype.baseToken=function(e){if(!this.baseTokens)return null;for(;this.baseTokens[this.baseTokenPos]<=e;)this.baseTokenPos+=2;var t=this.baseTokens[this.baseTokenPos+1];return{type:t&&t.replace(/( |^)overlay .*/,""),size:this.baseTokens[this.baseTokenPos]-e}},Ro.prototype.nextLine=function(){this.line++,this.maxLookAhead>0&&this.maxLookAhead--},Ro.fromSaved=function(e,t,r){return t instanceof Io?new Ro(e,Ae(e.mode,t.state),r,t.lookAhead):new Ro(e,Ae(e.mode,t),r)},Ro.prototype.save=function(e){var t=!1!==e?Ae(this.doc.mode,this.state):this.state;return this.maxLookAhead>0?new Io(t,this.maxLookAhead):t};var Bo=function(e,t,r){this.start=e.start,this.end=e.pos,this.string=e.current(),this.type=t||null,this.state=r},Go=function(e,t,r){this.text=e,_(this,t),this.height=r?r(this):1};Go.prototype.lineNo=function(){return O(this)},ye(Go);var Uo,Vo={},Ko={},jo=null,Xo=null,Yo={left:0,right:0,top:0,bottom:0},_o=function(e,t,r){this.cm=r;var i=this.vert=n("div",[n("div",null,null,"min-width: 1px")],"CodeMirror-vscrollbar"),o=this.horiz=n("div",[n("div",null,null,"height: 100%; min-height: 1px")],"CodeMirror-hscrollbar");e(i),e(o),No(i,"scroll",function(){i.clientHeight&&t(i.scrollTop,"vertical")}),No(o,"scroll",function(){o.clientWidth&&t(o.scrollLeft,"horizontal")}),this.checkedZeroWidth=!1,Ki&&ji<8&&(this.horiz.style.minHeight=this.vert.style.minWidth="18px")};_o.prototype.update=function(e){var t=e.scrollWidth>e.clientWidth+1,r=e.scrollHeight>e.clientHeight+1,n=e.nativeBarWidth;if(r){this.vert.style.display="block",this.vert.style.bottom=t?n+"px":"0";var i=e.viewHeight-(t?n:0);this.vert.firstChild.style.height=Math.max(0,e.scrollHeight-e.clientHeight+i)+"px"}else this.vert.style.display="",this.vert.firstChild.style.height="0";if(t){this.horiz.style.display="block",this.horiz.style.right=r?n+"px":"0",this.horiz.style.left=e.barLeft+"px";var o=e.viewWidth-e.barLeft-(r?n:0);this.horiz.firstChild.style.width=Math.max(0,e.scrollWidth-e.clientWidth+o)+"px"}else this.horiz.style.display="",this.horiz.firstChild.style.width="0";return!this.checkedZeroWidth&&e.clientHeight>0&&(0==n&&this.zeroWidthHack(),this.checkedZeroWidth=!0),{right:r?n:0,bottom:t?n:0}},_o.prototype.setScrollLeft=function(e){this.horiz.scrollLeft!=e&&(this.horiz.scrollLeft=e),this.disableHoriz&&this.enableZeroWidthBar(this.horiz,this.disableHoriz,"horiz")},_o.prototype.setScrollTop=function(e){this.vert.scrollTop!=e&&(this.vert.scrollTop=e),this.disableVert&&this.enableZeroWidthBar(this.vert,this.disableVert,"vert")},_o.prototype.zeroWidthHack=function(){var e=ro&&!Zi?"12px":"18px";this.horiz.style.height=this.vert.style.width=e,this.horiz.style.pointerEvents=this.vert.style.pointerEvents="none",this.disableHoriz=new ho,this.disableVert=new ho},_o.prototype.enableZeroWidthBar=function(e,t,r){function n(){var i=e.getBoundingClientRect();("vert"==r?document.elementFromPoint(i.right-1,(i.top+i.bottom)/2):document.elementFromPoint((i.right+i.left)/2,i.bottom-1))!=e?e.style.pointerEvents="none":t.set(1e3,n)}e.style.pointerEvents="auto",t.set(1e3,n)},_o.prototype.clear=function(){var e=this.horiz.parentNode;e.removeChild(this.horiz),e.removeChild(this.vert)};var $o=function(){};$o.prototype.update=function(){return{bottom:0,right:0}},$o.prototype.setScrollLeft=function(){},$o.prototype.setScrollTop=function(){},$o.prototype.clear=function(){};var qo={native:_o,null:$o},Zo=0,Qo=function(e,t,r){var n=e.display;this.viewport=t,this.visible=rr(n,e.doc,t),this.editorIsHidden=!n.wrapper.offsetWidth,this.wrapperHeight=n.wrapper.clientHeight,this.wrapperWidth=n.wrapper.clientWidth,this.oldDisplayWidth=ft(e),this.force=r,this.dims=Rt(e),this.events=[]};Qo.prototype.signal=function(e,t){me(e,t)&&this.events.push(arguments)},Qo.prototype.finish=function(){for(var e=0;e=0&&F(e,n.to())<=0)return r}return-1};var rl=function(e,t){this.anchor=e,this.head=t};rl.prototype.from=function(){return I(this.anchor,this.head)},rl.prototype.to=function(){return z(this.anchor,this.head)},rl.prototype.empty=function(){return this.head.line==this.anchor.line&&this.head.ch==this.anchor.ch},zn.prototype={chunkSize:function(){return this.lines.length},removeInner:function(e,t){for(var r=e,n=e+t;r1||!(this.children[0]instanceof zn))){var s=[];this.collapse(s),this.children=[new zn(s)],this.children[0].parent=this}},collapse:function(e){for(var t=0;t50){for(var l=i.lines.length%25+25,s=l;s10);e.parent.maybeSpill()}},iterN:function(e,t,r){for(var n=0;ne.display.maxLineLength&&(e.display.maxLine=u,e.display.maxLineLength=c,e.display.maxLineChanged=!0)}null!=n&&e&&this.collapsed&&Lr(e,n,i+1),this.lines.length=0,this.explicitlyCleared=!0,this.atomic&&this.doc.cantEdit&&(this.doc.cantEdit=!1,e&&wn(e.doc)),e&&qe(e,"markerCleared",e,this,n,i),t&&br(e),this.parent&&this.parent.clear()}},ol.prototype.find=function(e,t){null==e&&"bookmark"==this.type&&(e=1);for(var r,n,i=0;i=0;a--)Mn(this,n[a]);s?vn(this,s):this.cm&&sr(this.cm)}),undo:Sr(function(){On(this,"undo")}),redo:Sr(function(){On(this,"redo")}),undoSelection:Sr(function(){On(this,"undo",!0)}),redoSelection:Sr(function(){On(this,"redo",!0)}),setExtending:function(e){this.extend=e},getExtending:function(){return this.extend},historySize:function(){for(var e=this.history,t=0,r=0,n=0;n=e.ch)&&t.push(i.marker.parent||i.marker)}return t},findMarks:function(e,t,r){e=B(this,e),t=B(this,t);var n=[],i=e.line;return this.iter(e.line,t.line+1,function(o){var l=o.markedSpans;if(l)for(var s=0;s=a.to||null==a.from&&i!=e.line||null!=a.from&&i==t.line&&a.from>=t.ch||r&&!r(a.marker)||n.push(a.marker.parent||a.marker)}++i}),n},getAllMarks:function(){var e=[];return this.iter(function(t){var r=t.markedSpans;if(r)for(var n=0;ne)return t=e,!0;e-=o,++r}),B(this,H(r,t))},indexFromPos:function(e){var t=(e=B(this,e)).ch;if(e.linet&&(t=e.from),null!=e.to&&e.to0)i=new H(i.line,i.ch+1),e.replaceRange(o.charAt(i.ch-1)+o.charAt(i.ch-2),H(i.line,i.ch-2),i,"+transpose");else if(i.line>e.doc.first){var l=k(e.doc,i.line-1).text;l&&(i=new H(i.line,1),e.replaceRange(o.charAt(0)+e.doc.lineSeparator()+l.charAt(l.length-1),H(i.line-1,l.length-1),i,"+transpose"))}r.push(new rl(i,i))}e.setSelections(r)})},newlineAndIndent:function(e){return wr(e,function(){for(var t=e.listSelections(),r=t.length-1;r>=0;r--)e.replaceRange(e.doc.lineSeparator(),t[r].anchor,t[r].head,"+input");t=e.listSelections();for(var n=0;ne&&0==F(t,this.pos)&&r==this.button};var wl,xl,Cl={toString:function(){return"CodeMirror.Init"}},Sl={},Ll={};Si.defaults=Sl,Si.optionHandlers=Ll;var kl=[];Si.defineInitHook=function(e){return kl.push(e)};var Tl=null,Ml=function(e){this.cm=e,this.lastAnchorNode=this.lastAnchorOffset=this.lastFocusNode=this.lastFocusOffset=null,this.polling=new ho,this.composing=null,this.gracePeriod=!1,this.readDOMTimeout=null};Ml.prototype.init=function(e){function t(e){if(!ge(i,e)){if(i.somethingSelected())ki({lineWise:!1,text:i.getSelections()}),"cut"==e.type&&i.replaceSelection("",null,"cut");else{if(!i.options.lineWiseCopyCut)return;var t=Oi(i);ki({lineWise:!0,text:t.text}),"cut"==e.type&&i.operation(function(){i.setSelections(t.ranges,0,mo),i.replaceSelection("",null,"cut")})}if(e.clipboardData){e.clipboardData.clearData();var r=Tl.text.join("\n");if(e.clipboardData.setData("Text",r),e.clipboardData.getData("Text")==r)return void e.preventDefault()}var l=Wi(),s=l.firstChild;i.display.lineSpace.insertBefore(l,i.display.lineSpace.firstChild),s.value=Tl.text.join("\n");var a=document.activeElement;co(s),setTimeout(function(){i.display.lineSpace.removeChild(l),a.focus(),a==o&&n.showPrimarySelection()},50)}}var r=this,n=this,i=n.cm,o=n.div=e.lineDiv;Ai(o,i.options.spellcheck),No(o,"paste",function(e){ge(i,e)||Mi(e,i)||ji<=11&&setTimeout(xr(i,function(){return r.updateFromDOM()}),20)}),No(o,"compositionstart",function(e){r.composing={data:e.data,done:!1}}),No(o,"compositionupdate",function(e){r.composing||(r.composing={data:e.data,done:!1})}),No(o,"compositionend",function(e){r.composing&&(e.data!=r.composing.data&&r.readFromDOMSoon(),r.composing.done=!0)}),No(o,"touchstart",function(){return n.forceCompositionEnd()}),No(o,"input",function(){r.composing||r.readFromDOMSoon()}),No(o,"copy",t),No(o,"cut",t)},Ml.prototype.prepareSelection=function(){var e=Xt(this.cm,!1);return e.focus=this.cm.state.focused,e},Ml.prototype.showSelection=function(e,t){e&&this.cm.display.view.length&&((e.focus||t)&&this.showPrimarySelection(),this.showMultipleSelections(e))},Ml.prototype.showPrimarySelection=function(){var e=window.getSelection(),t=this.cm,r=t.doc.sel.primary(),n=r.from(),i=r.to();if(t.display.viewTo==t.display.viewFrom||n.line>=t.display.viewTo||i.line=t.display.viewFrom&&Pi(t,n)||{node:s[0].measure.map[2],offset:0},u=i.linee.firstLine()&&(n=H(n.line-1,k(e.doc,n.line-1).length)),i.ch==k(e.doc,i.line).text.length&&i.linet.viewTo-1)return!1;var o,l,s;n.line==t.viewFrom||0==(o=Kt(e,n.line))?(l=O(t.view[0].line),s=t.view[0].node):(l=O(t.view[o].line),s=t.view[o-1].node.nextSibling);var a,u,c=Kt(e,i.line);if(c==t.view.length-1?(a=t.viewTo-1,u=t.lineDiv.lastChild):(a=O(t.view[c+1].line)-1,u=t.view[c+1].node.previousSibling),!s)return!1;for(var h=e.doc.splitLines(function(e,t,r,n,i){function o(){u&&(a+=c,u=!1)}function l(e){e&&(o(),a+=e)}function s(t){if(1==t.nodeType){var r=t.getAttribute("cm-text");if(null!=r)return void l(r||t.textContent.replace(/\u200b/g,""));var a,h=t.getAttribute("cm-marker");if(h){var f=e.findMarks(H(n,0),H(i+1,0),function(e){return function(t){return t.id==e}}(+h));return void(f.length&&(a=f[0].find(0))&&l(T(e.doc,a.from,a.to).join(c)))}if("false"==t.getAttribute("contenteditable"))return;var d=/^(pre|div|p)$/i.test(t.nodeName);d&&o();for(var p=0;p1&&f.length>1;)if(g(h)==g(f))h.pop(),f.pop(),a--;else{if(h[0]!=f[0])break;h.shift(),f.shift(),l++}for(var d=0,p=0,v=h[0],m=f[0],y=Math.min(v.length,m.length);dn.ch&&b.charCodeAt(b.length-p-1)==w.charCodeAt(w.length-p-1);)d--,p++;h[h.length-1]=b.slice(0,b.length-p).replace(/^\u200b+/,""),h[0]=h[0].slice(d).replace(/\u200b+$/,"");var C=H(l,d),S=H(a,f.length?g(f).length-p:0);return h.length>1||h[0]||F(C,S)?(Dn(e.doc,h,C,S,"+input"),!0):void 0},Ml.prototype.ensurePolled=function(){this.forceCompositionEnd()},Ml.prototype.reset=function(){this.forceCompositionEnd()},Ml.prototype.forceCompositionEnd=function(){this.composing&&(clearTimeout(this.readDOMTimeout),this.composing=null,this.updateFromDOM(),this.div.blur(),this.div.focus())},Ml.prototype.readFromDOMSoon=function(){var e=this;null==this.readDOMTimeout&&(this.readDOMTimeout=setTimeout(function(){if(e.readDOMTimeout=null,e.composing){if(!e.composing.done)return;e.composing=null}e.updateFromDOM()},80))},Ml.prototype.updateFromDOM=function(){var e=this;!this.cm.isReadOnly()&&this.pollContent()||wr(this.cm,function(){return Lr(e.cm)})},Ml.prototype.setUneditable=function(e){e.contentEditable="false"},Ml.prototype.onKeyPress=function(e){0!=e.charCode&&(e.preventDefault(),this.cm.isReadOnly()||xr(this.cm,Ti)(this.cm,String.fromCharCode(null==e.charCode?e.keyCode:e.charCode),0))},Ml.prototype.readOnlyChanged=function(e){this.div.contentEditable=String("nocursor"!=e)},Ml.prototype.onContextMenu=function(){},Ml.prototype.resetPosition=function(){},Ml.prototype.needsContentAttribute=!0;var Nl=function(e){this.cm=e,this.prevInput="",this.pollingFast=!1,this.polling=new ho,this.hasSelection=!1,this.composing=null};Nl.prototype.init=function(e){function t(e){if(!ge(i,e)){if(i.somethingSelected())ki({lineWise:!1,text:i.getSelections()});else{if(!i.options.lineWiseCopyCut)return;var t=Oi(i);ki({lineWise:!0,text:t.text}),"cut"==e.type?i.setSelections(t.ranges,null,mo):(n.prevInput="",l.value=t.text.join("\n"),co(l))}"cut"==e.type&&(i.state.cutIncoming=!0)}}var r=this,n=this,i=this.cm,o=this.wrapper=Wi(),l=this.textarea=o.firstChild;e.wrapper.insertBefore(o,e.wrapper.firstChild),Ji&&(l.style.width="0px"),No(l,"input",function(){Ki&&ji>=9&&r.hasSelection&&(r.hasSelection=null),n.poll()}),No(l,"paste",function(e){ge(i,e)||Mi(e,i)||(i.state.pasteIncoming=!0,n.fastPoll())}),No(l,"cut",t),No(l,"copy",t),No(e.scroller,"paste",function(t){st(e,t)||ge(i,t)||(i.state.pasteIncoming=!0,n.focus())}),No(e.lineSpace,"selectstart",function(t){st(e,t)||be(t)}),No(l,"compositionstart",function(){var e=i.getCursor("from");n.composing&&n.composing.range.clear(),n.composing={start:e,range:i.markText(e,i.getCursor("to"),{className:"CodeMirror-composing"})}}),No(l,"compositionend",function(){n.composing&&(n.poll(),n.composing.range.clear(),n.composing=null)})},Nl.prototype.prepareSelection=function(){var e=this.cm,t=e.display,r=e.doc,n=Xt(e);if(e.options.moveInputWithCursor){var i=At(e,r.sel.primary().head,"div"),o=t.wrapper.getBoundingClientRect(),l=t.lineDiv.getBoundingClientRect();n.teTop=Math.max(0,Math.min(t.wrapper.clientHeight-10,i.top+l.top-o.top)),n.teLeft=Math.max(0,Math.min(t.wrapper.clientWidth-10,i.left+l.left-o.left))}return n},Nl.prototype.showSelection=function(e){var t=this.cm.display;r(t.cursorDiv,e.cursors),r(t.selectionDiv,e.selection),null!=e.teTop&&(this.wrapper.style.top=e.teTop+"px",this.wrapper.style.left=e.teLeft+"px")},Nl.prototype.reset=function(e){if(!this.contextMenuPending&&!this.composing){var t=this.cm;if(t.somethingSelected()){this.prevInput="";var r=t.getSelection();this.textarea.value=r,t.state.focused&&co(this.textarea),Ki&&ji>=9&&(this.hasSelection=r)}else e||(this.prevInput=this.textarea.value="",Ki&&ji>=9&&(this.hasSelection=null))}},Nl.prototype.getField=function(){return this.textarea},Nl.prototype.supportsTouch=function(){return!1},Nl.prototype.focus=function(){if("nocursor"!=this.cm.options.readOnly&&(!to||l()!=this.textarea))try{this.textarea.focus()}catch(e){}},Nl.prototype.blur=function(){this.textarea.blur()},Nl.prototype.resetPosition=function(){this.wrapper.style.top=this.wrapper.style.left=0},Nl.prototype.receivedFocus=function(){this.slowPoll()},Nl.prototype.slowPoll=function(){var e=this;this.pollingFast||this.polling.set(this.cm.options.pollInterval,function(){e.poll(),e.cm.state.focused&&e.slowPoll()})},Nl.prototype.fastPoll=function(){function e(){r.poll()||t?(r.pollingFast=!1,r.slowPoll()):(t=!0,r.polling.set(60,e))}var t=!1,r=this;r.pollingFast=!0,r.polling.set(20,e)},Nl.prototype.poll=function(){var e=this,t=this.cm,r=this.textarea,n=this.prevInput;if(this.contextMenuPending||!t.state.focused||Wo(r)&&!n&&!this.composing||t.isReadOnly()||t.options.disableInput||t.state.keySeq)return!1;var i=r.value;if(i==n&&!t.somethingSelected())return!1;if(Ki&&ji>=9&&this.hasSelection===i||ro&&/[\uf700-\uf7ff]/.test(i))return t.display.input.reset(),!1;if(t.doc.sel==t.display.selForContextMenu){var o=i.charCodeAt(0);if(8203!=o||n||(n="​"),8666==o)return this.reset(),this.cm.execCommand("undo")}for(var l=0,s=Math.min(n.length,i.length);l1e3||i.indexOf("\n")>-1?r.value=e.prevInput="":e.prevInput=i,e.composing&&(e.composing.range.clear(),e.composing.range=t.markText(e.composing.start,t.getCursor("to"),{className:"CodeMirror-composing"}))}),!0},Nl.prototype.ensurePolled=function(){this.pollingFast&&this.poll()&&(this.pollingFast=!1)},Nl.prototype.onKeyPress=function(){Ki&&ji>=9&&(this.hasSelection=null),this.fastPoll()},Nl.prototype.onContextMenu=function(e){function t(){if(null!=l.selectionStart){var e=i.somethingSelected(),t="​"+(e?l.value:"");l.value="⇚",l.value=t,n.prevInput=e?"":"​",l.selectionStart=1,l.selectionEnd=t.length,o.selForContextMenu=i.doc.sel}}function r(){if(n.contextMenuPending=!1,n.wrapper.style.cssText=c,l.style.cssText=u,Ki&&ji<9&&o.scrollbars.setScrollTop(o.scroller.scrollTop=a),null!=l.selectionStart){(!Ki||Ki&&ji<9)&&t();var e=0,r=function(){o.selForContextMenu==i.doc.sel&&0==l.selectionStart&&l.selectionEnd>0&&"​"==n.prevInput?xr(i,kn)(i):e++<10?o.detectingSelectAll=setTimeout(r,500):(o.selForContextMenu=null,o.input.reset())};o.detectingSelectAll=setTimeout(r,200)}}var n=this,i=n.cm,o=i.display,l=n.textarea,s=Vt(i,e),a=o.scroller.scrollTop;if(s&&!$i){i.options.resetSelectionOnContextMenu&&-1==i.doc.sel.contains(s)&&xr(i,mn)(i.doc,Ur(s),mo);var u=l.style.cssText,c=n.wrapper.style.cssText;n.wrapper.style.cssText="position: absolute";var h=n.wrapper.getBoundingClientRect();l.style.cssText="position: absolute; width: 30px; height: 30px;\n top: "+(e.clientY-h.top-5)+"px; left: "+(e.clientX-h.left-5)+"px;\n z-index: 1000; background: "+(Ki?"rgba(255, 255, 255, .05)":"transparent")+";\n outline: none; border-width: 0; outline: none; overflow: hidden; opacity: .05; filter: alpha(opacity=5);";var f;if(Xi&&(f=window.scrollY),o.input.focus(),Xi&&window.scrollTo(null,f),o.input.reset(),i.somethingSelected()||(l.value=n.prevInput=" "),n.contextMenuPending=!0,o.selForContextMenu=i.doc.sel,clearTimeout(o.detectingSelectAll),Ki&&ji>=9&&t(),ao){Ce(e);var d=function(){de(window,"mouseup",d),setTimeout(r,20)};No(window,"mouseup",d)}else setTimeout(r,50)}},Nl.prototype.readOnlyChanged=function(e){e||this.reset(),this.textarea.disabled="nocursor"==e},Nl.prototype.setUneditable=function(){},Nl.prototype.needsContentAttribute=!1,function(e){function t(t,n,i,o){e.defaults[t]=n,i&&(r[t]=o?function(e,t,r){r!=Cl&&i(e,t,r)}:i)}var r=e.optionHandlers;e.defineOption=t,e.Init=Cl,t("value","",function(e,t){return e.setValue(t)},!0),t("mode",null,function(e,t){e.doc.modeOption=t,Yr(e)},!0),t("indentUnit",2,Yr,!0),t("indentWithTabs",!1),t("smartIndent",!0),t("tabSize",4,function(e){_r(e),St(e),Lr(e)},!0),t("lineSeparator",null,function(e,t){if(e.doc.lineSep=t,t){var r=[],n=e.doc.first;e.doc.iter(function(e){for(var i=0;;){var o=e.text.indexOf(t,i);if(-1==o)break;i=o+t.length,r.push(H(n,o))}n++});for(var i=r.length-1;i>=0;i--)Dn(e.doc,t,r[i],H(r[i].line,r[i].ch+t.length))}}),t("specialChars",/[\u0000-\u001f\u007f-\u009f\u00ad\u061c\u200b-\u200f\u2028\u2029\ufeff]/g,function(e,t,r){e.state.specialChars=new RegExp(t.source+(t.test("\t")?"":"|\t"),"g"),r!=Cl&&e.refresh()}),t("specialCharPlaceholder",je,function(e){return e.refresh()},!0),t("electricChars",!0),t("inputStyle",to?"contenteditable":"textarea",function(){throw new Error("inputStyle can not (yet) be changed in a running editor")},!0),t("spellcheck",!1,function(e,t){return e.getInputField().spellcheck=t},!0),t("rtlMoveVisually",!io),t("wholeLineUpdateBefore",!0),t("theme","default",function(e){bi(e),wi(e)},!0),t("keyMap","default",function(e,t,r){var n=ei(t),i=r!=Cl&&ei(r);i&&i.detach&&i.detach(e,n),n.attach&&n.attach(e,i||null)}),t("extraKeys",null),t("configureMouse",null),t("lineWrapping",!1,Ci,!0),t("gutters",[],function(e){zr(e.options),wi(e)},!0),t("fixedGutter",!0,function(e,t){e.display.gutters.style.left=t?Bt(e.display)+"px":"0",e.refresh()},!0),t("coverGutterNextToScrollbar",!1,function(e){return gr(e)},!0),t("scrollbarStyle","native",function(e){mr(e),gr(e),e.display.scrollbars.setScrollTop(e.doc.scrollTop),e.display.scrollbars.setScrollLeft(e.doc.scrollLeft)},!0),t("lineNumbers",!1,function(e){zr(e.options),wi(e)},!0),t("firstLineNumber",1,wi,!0),t("lineNumberFormatter",function(e){return e},wi,!0),t("showCursorWhenSelecting",!1,jt,!0),t("resetSelectionOnContextMenu",!0),t("lineWiseCopyCut",!0),t("pasteLinesPerSelection",!0),t("readOnly",!1,function(e,t){"nocursor"==t&&(Jt(e),e.display.input.blur()),e.display.input.readOnlyChanged(t)}),t("disableInput",!1,function(e,t){t||e.display.input.reset()},!0),t("dragDrop",!0,xi),t("allowDropFileTypes",null),t("cursorBlinkRate",530),t("cursorScrollMargin",0),t("cursorHeight",1,jt,!0),t("singleCursorHeightPerLine",!0,jt,!0),t("workTime",100),t("workDelay",100),t("flattenSpans",!0,_r,!0),t("addModeClass",!1,_r,!0),t("pollInterval",100),t("undoDepth",200,function(e,t){return e.doc.history.undoDepth=t}),t("historyEventDelay",1250),t("viewportMargin",10,function(e){return e.refresh()},!0),t("maxHighlightLength",1e4,_r,!0),t("moveInputWithCursor",!0,function(e,t){t||e.display.input.resetPosition()}),t("tabindex",null,function(e,t){return e.display.input.getField().tabIndex=t||""}),t("autofocus",null),t("direction","ltr",function(e,t){return e.doc.setDirection(t)},!0)}(Si),Di(Si);var Ol="iter insert remove copy getEditor constructor".split(" ");for(var Al in al.prototype)al.prototype.hasOwnProperty(Al)&&f(Ol,Al)<0&&(Si.prototype[Al]=function(e){return function(){return e.apply(this.doc,arguments)}}(al.prototype[Al]));return ye(al),Si.inputStyles={textarea:Nl,contenteditable:Ml},Si.defineMode=function(e){Si.defaults.mode||"null"==e||(Si.defaults.mode=e),function(e,t){arguments.length>2&&(t.dependencies=Array.prototype.slice.call(arguments,2)),Fo[e]=t}.apply(this,arguments)},Si.defineMIME=function(e,t){Po[e]=t},Si.defineMode("null",function(){return{token:function(e){return e.skipToEnd()}}}),Si.defineMIME("text/plain","null"),Si.defineExtension=function(e,t){Si.prototype[e]=t},Si.defineDocExtension=function(e,t){al.prototype[e]=t},Si.fromTextArea=function(e,t){function r(){e.value=a.getValue()}if(t=t?c(t):{},t.value=e.value,!t.tabindex&&e.tabIndex&&(t.tabindex=e.tabIndex),!t.placeholder&&e.placeholder&&(t.placeholder=e.placeholder),null==t.autofocus){var n=l();t.autofocus=n==e||null!=e.getAttribute("autofocus")&&n==document.body}var i;if(e.form&&(No(e.form,"submit",r),!t.leaveSubmitMethodAlone)){var o=e.form;i=o.submit;try{var s=o.submit=function(){r(),o.submit=i,o.submit(),o.submit=s}}catch(e){}}t.finishInit=function(t){t.save=r,t.getTextArea=function(){return e},t.toTextArea=function(){t.toTextArea=isNaN,r(),e.parentNode.removeChild(t.getWrapperElement()),e.style.display="",e.form&&(de(e.form,"submit",r),"function"==typeof e.form.submit&&(e.form.submit=i))}},e.style.display="none";var a=Si(function(t){return e.parentNode.insertBefore(t,e.nextSibling)},t);return a},function(e){e.off=de,e.on=No,e.wheelEventPixels=Rr,e.Doc=al,e.splitLines=Ao,e.countColumn=h,e.findColumn=d,e.isWordChar=b,e.Pass=vo,e.signal=pe,e.Line=Go,e.changeEnd=Vr,e.scrollbarModel=qo,e.Pos=H,e.cmpPos=F,e.modes=Fo,e.mimeModes=Po,e.resolveMode=Me,e.getMode=Ne,e.modeExtensions=Eo,e.extendMode=Oe,e.copyState=Ae,e.startState=De,e.innerMode=We,e.commands=vl,e.keyMap=gl,e.keyName=Jn,e.isModifierKey=Zn,e.lookupKey=qn,e.normalizeKeyMap=$n,e.StringStream=zo,e.SharedTextMarker=ll,e.TextMarker=ol,e.LineWidget=nl,e.e_preventDefault=be,e.e_stopPropagation=we,e.e_stop=Ce,e.addClass=s,e.contains=o,e.rmClass=uo,e.keyNames=hl}(Si),Si.version="5.31.0",Si}); \ No newline at end of file diff --git a/chromium/external/codemirror/codemirror-5.31.0.xml.min.js b/chromium/external/codemirror/codemirror-5.31.0.xml.min.js new file mode 100644 index 000000000000..1e5069152289 --- /dev/null +++ b/chromium/external/codemirror/codemirror-5.31.0.xml.min.js @@ -0,0 +1,3 @@ +// CodeMirror, copyright (c) by Marijn Haverbeke and others +// Distributed under an MIT license: http://codemirror.net/LICENSE +!function(t){"object"==typeof exports&&"object"==typeof module?t(require("../../lib/codemirror")):"function"==typeof define&&define.amd?define(["../../lib/codemirror"],t):t(CodeMirror)}(function(t){"use strict";var e={autoSelfClosers:{area:!0,base:!0,br:!0,col:!0,command:!0,embed:!0,frame:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0,menuitem:!0},implicitlyClosed:{dd:!0,li:!0,optgroup:!0,option:!0,p:!0,rp:!0,rt:!0,tbody:!0,td:!0,tfoot:!0,th:!0,tr:!0},contextGrabbers:{dd:{dd:!0,dt:!0},dt:{dd:!0,dt:!0},li:{li:!0},option:{option:!0,optgroup:!0},optgroup:{optgroup:!0},p:{address:!0,article:!0,aside:!0,blockquote:!0,dir:!0,div:!0,dl:!0,fieldset:!0,footer:!0,form:!0,h1:!0,h2:!0,h3:!0,h4:!0,h5:!0,h6:!0,header:!0,hgroup:!0,hr:!0,menu:!0,nav:!0,ol:!0,p:!0,pre:!0,section:!0,table:!0,ul:!0},rp:{rp:!0,rt:!0},rt:{rp:!0,rt:!0},tbody:{tbody:!0,tfoot:!0},td:{td:!0,th:!0},tfoot:{tbody:!0},th:{td:!0,th:!0},thead:{tbody:!0,tfoot:!0},tr:{tr:!0}},doNotIndent:{pre:!0},allowUnquoted:!0,allowMissing:!0,caseFold:!0},n={autoSelfClosers:{},implicitlyClosed:{},contextGrabbers:{},doNotIndent:{},allowUnquoted:!1,allowMissing:!1,caseFold:!1};t.defineMode("xml",function(r,o){function a(t,e){function n(n){return e.tokenize=n,n(t,e)}var r=t.next();if("<"==r)return t.eat("!")?t.eat("[")?t.match("CDATA[")?n(l("atom","]]>")):null:t.match("--")?n(l("comment","--\x3e")):t.match("DOCTYPE",!0,!0)?(t.eatWhile(/[\w\._\-]/),n(u(1))):null:t.eat("?")?(t.eatWhile(/[\w\._\-]/),e.tokenize=l("meta","?>"),"meta"):(N=t.eat("/")?"closeTag":"openTag",e.tokenize=i,"tag bracket");if("&"==r){return(t.eat("#")?t.eat("x")?t.eatWhile(/[a-fA-F\d]/)&&t.eat(";"):t.eatWhile(/[\d]/)&&t.eat(";"):t.eatWhile(/[\w\.\-:]/)&&t.eat(";"))?"atom":"error"}return t.eatWhile(/[^&<]/),null}function i(t,e){var n=t.next();if(">"==n||"/"==n&&t.eat(">"))return e.tokenize=a,N=">"==n?"endTag":"selfcloseTag","tag bracket";if("="==n)return N="equals",null;if("<"==n){e.tokenize=a,e.state=f,e.tagName=e.tagStart=null;var r=e.tokenize(t,e);return r?r+" tag error":"tag error"}return/[\'\"]/.test(n)?(e.tokenize=function(t){var e=function(e,n){for(;!e.eol();)if(e.next()==t){n.tokenize=i;break}return"string"};return e.isInAttribute=!0,e}(n),e.stringStartCol=t.column(),e.tokenize(t,e)):(t.match(/^[^\s\u00a0=<>\"\']*[^\s\u00a0=<>\"\'\/]/),"word")}function l(t,e){return function(n,r){for(;!n.eol();){if(n.match(e)){r.tokenize=a;break}n.next()}return t}}function u(t){return function(e,n){for(var r;null!=(r=e.next());){if("<"==r)return n.tokenize=u(t+1),n.tokenize(e,n);if(">"==r){if(1==t){n.tokenize=a;break}return n.tokenize=u(t-1),n.tokenize(e,n)}}return"meta"}}function d(t){t.context&&(t.context=t.context.prev)}function c(t,e){for(var n;;){if(!t.context)return;if(n=t.context.tagName,!w.contextGrabbers.hasOwnProperty(n)||!w.contextGrabbers[n].hasOwnProperty(e))return;d(t)}}function f(t,e,n){return"openTag"==t?(n.tagStart=e.column(),s):"closeTag"==t?m:f}function s(t,e,n){return"word"==t?(n.tagName=e.current(),T="tag",h):(T="error",s)}function m(t,e,n){if("word"==t){var r=e.current();return n.context&&n.context.tagName!=r&&w.implicitlyClosed.hasOwnProperty(n.context.tagName)&&d(n),n.context&&n.context.tagName==r||!1===w.matchClosing?(T="tag",g):(T="tag error",p)}return T="error",p}function g(t,e,n){return"endTag"!=t?(T="error",g):(d(n),f)}function p(t,e,n){return T="error",g(t,0,n)}function h(t,e,n){if("word"==t)return T="attribute",x;if("endTag"==t||"selfcloseTag"==t){var r=n.tagName,o=n.tagStart;return n.tagName=n.tagStart=null,"selfcloseTag"==t||w.autoSelfClosers.hasOwnProperty(r)?c(n,r):(c(n,r),n.context=new function(t,e,n){this.prev=t.context,this.tagName=e,this.indent=t.indented,this.startOfLine=n,(w.doNotIndent.hasOwnProperty(e)||t.context&&t.context.noIndent)&&(this.noIndent=!0)}(n,r,o==n.indented)),f}return T="error",h}function x(t,e,n){return"equals"==t?b:(w.allowMissing||(T="error"),h(t,0,n))}function b(t,e,n){return"string"==t?k:"word"==t&&w.allowUnquoted?(T="string",h):(T="error",h(t,0,n))}function k(t,e,n){return"string"==t?k:h(t,0,n)}var v=r.indentUnit,w={},y=o.htmlMode?e:n;for(var z in y)w[z]=y[z];for(var z in o)w[z]=o[z];var N,T;return a.isInText=!0,{startState:function(t){var e={tokenize:a,state:f,indented:t||0,tagName:null,tagStart:null,context:null};return null!=t&&(e.baseIndent=t),e},token:function(t,e){if(!e.tagName&&t.sol()&&(e.indented=t.indentation()),t.eatSpace())return null;N=null;var n=e.tokenize(t,e);return(n||N)&&"comment"!=n&&(T=null,e.state=e.state(N||n,t,e),T&&(n="error"==T?n+" error":T)),n},indent:function(e,n,r){var o=e.context;if(e.tokenize.isInAttribute)return e.tagStart==e.indented?e.stringStartCol+1:e.indented+v;if(o&&o.noIndent)return t.Pass;if(e.tokenize!=i&&e.tokenize!=a)return r?r.match(/^(\s*)/)[0].length:0;if(e.tagName)return!1!==w.multilineTagIndentPastTag?e.tagStart+e.tagName.length+2:e.tagStart+v*(w.multilineTagIndentFactor||1);if(w.alignCDATA&&/$/,blockCommentStart:"\x3c!--",blockCommentEnd:"--\x3e",configuration:w.htmlMode?"html":"xml",helperType:w.htmlMode?"html":"xml",skipAttribute:function(t){t.state==b&&(t.state=h)}}}),t.defineMIME("text/xml","xml"),t.defineMIME("application/xml","xml"),t.mimeModes.hasOwnProperty("text/html")||t.defineMIME("text/html",{name:"xml",htmlMode:!0})}); \ No newline at end of file diff --git a/chromium/external/pako-1.0.5/pako_inflate.min.js b/chromium/external/pako-1.0.5/pako_inflate.min.js new file mode 100644 index 000000000000..fdd03f31a5be --- /dev/null +++ b/chromium/external/pako-1.0.5/pako_inflate.min.js @@ -0,0 +1,3290 @@ +/* pako 1.0.5 nodeca/pako */(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.pako = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o= 252 ? 6 : q >= 248 ? 5 : q >= 240 ? 4 : q >= 224 ? 3 : q >= 192 ? 2 : 1); +} +_utf8len[254] = _utf8len[254] = 1; // Invalid sequence start + + +// convert string to array (typed, when possible) +exports.string2buf = function (str) { + var buf, c, c2, m_pos, i, str_len = str.length, buf_len = 0; + + // count binary size + for (m_pos = 0; m_pos < str_len; m_pos++) { + c = str.charCodeAt(m_pos); + if ((c & 0xfc00) === 0xd800 && (m_pos + 1 < str_len)) { + c2 = str.charCodeAt(m_pos + 1); + if ((c2 & 0xfc00) === 0xdc00) { + c = 0x10000 + ((c - 0xd800) << 10) + (c2 - 0xdc00); + m_pos++; + } + } + buf_len += c < 0x80 ? 1 : c < 0x800 ? 2 : c < 0x10000 ? 3 : 4; + } + + // allocate buffer + buf = new utils.Buf8(buf_len); + + // convert + for (i = 0, m_pos = 0; i < buf_len; m_pos++) { + c = str.charCodeAt(m_pos); + if ((c & 0xfc00) === 0xd800 && (m_pos + 1 < str_len)) { + c2 = str.charCodeAt(m_pos + 1); + if ((c2 & 0xfc00) === 0xdc00) { + c = 0x10000 + ((c - 0xd800) << 10) + (c2 - 0xdc00); + m_pos++; + } + } + if (c < 0x80) { + /* one byte */ + buf[i++] = c; + } else if (c < 0x800) { + /* two bytes */ + buf[i++] = 0xC0 | (c >>> 6); + buf[i++] = 0x80 | (c & 0x3f); + } else if (c < 0x10000) { + /* three bytes */ + buf[i++] = 0xE0 | (c >>> 12); + buf[i++] = 0x80 | (c >>> 6 & 0x3f); + buf[i++] = 0x80 | (c & 0x3f); + } else { + /* four bytes */ + buf[i++] = 0xf0 | (c >>> 18); + buf[i++] = 0x80 | (c >>> 12 & 0x3f); + buf[i++] = 0x80 | (c >>> 6 & 0x3f); + buf[i++] = 0x80 | (c & 0x3f); + } + } + + return buf; +}; + +// Helper (used in 2 places) +function buf2binstring(buf, len) { + // use fallback for big arrays to avoid stack overflow + if (len < 65537) { + if ((buf.subarray && STR_APPLY_UIA_OK) || (!buf.subarray && STR_APPLY_OK)) { + return String.fromCharCode.apply(null, utils.shrinkBuf(buf, len)); + } + } + + var result = ''; + for (var i = 0; i < len; i++) { + result += String.fromCharCode(buf[i]); + } + return result; +} + + +// Convert byte array to binary string +exports.buf2binstring = function (buf) { + return buf2binstring(buf, buf.length); +}; + + +// Convert binary string (typed, when possible) +exports.binstring2buf = function (str) { + var buf = new utils.Buf8(str.length); + for (var i = 0, len = buf.length; i < len; i++) { + buf[i] = str.charCodeAt(i); + } + return buf; +}; + + +// convert array to string +exports.buf2string = function (buf, max) { + var i, out, c, c_len; + var len = max || buf.length; + + // Reserve max possible length (2 words per char) + // NB: by unknown reasons, Array is significantly faster for + // String.fromCharCode.apply than Uint16Array. + var utf16buf = new Array(len * 2); + + for (out = 0, i = 0; i < len;) { + c = buf[i++]; + // quick process ascii + if (c < 0x80) { utf16buf[out++] = c; continue; } + + c_len = _utf8len[c]; + // skip 5 & 6 byte codes + if (c_len > 4) { utf16buf[out++] = 0xfffd; i += c_len - 1; continue; } + + // apply mask on first byte + c &= c_len === 2 ? 0x1f : c_len === 3 ? 0x0f : 0x07; + // join the rest + while (c_len > 1 && i < len) { + c = (c << 6) | (buf[i++] & 0x3f); + c_len--; + } + + // terminated by end of string? + if (c_len > 1) { utf16buf[out++] = 0xfffd; continue; } + + if (c < 0x10000) { + utf16buf[out++] = c; + } else { + c -= 0x10000; + utf16buf[out++] = 0xd800 | ((c >> 10) & 0x3ff); + utf16buf[out++] = 0xdc00 | (c & 0x3ff); + } + } + + return buf2binstring(utf16buf, out); +}; + + +// Calculate max possible position in utf8 buffer, +// that will not break sequence. If that's not possible +// - (very small limits) return max size as is. +// +// buf[] - utf8 bytes array +// max - length limit (mandatory); +exports.utf8border = function (buf, max) { + var pos; + + max = max || buf.length; + if (max > buf.length) { max = buf.length; } + + // go back from last position, until start of sequence found + pos = max - 1; + while (pos >= 0 && (buf[pos] & 0xC0) === 0x80) { pos--; } + + // Fuckup - very small and broken sequence, + // return max, because we should return something anyway. + if (pos < 0) { return max; } + + // If we came to start of buffer - that means vuffer is too small, + // return max too. + if (pos === 0) { return max; } + + return (pos + _utf8len[buf[pos]] > max) ? pos : max; +}; + +},{"./common":1}],3:[function(require,module,exports){ +'use strict'; + +// Note: adler32 takes 12% for level 0 and 2% for level 6. +// It doesn't worth to make additional optimizationa as in original. +// Small size is preferable. + +// (C) 1995-2013 Jean-loup Gailly and Mark Adler +// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin +// +// This software is provided 'as-is', without any express or implied +// warranty. In no event will the authors be held liable for any damages +// arising from the use of this software. +// +// Permission is granted to anyone to use this software for any purpose, +// including commercial applications, and to alter it and redistribute it +// freely, subject to the following restrictions: +// +// 1. The origin of this software must not be misrepresented; you must not +// claim that you wrote the original software. If you use this software +// in a product, an acknowledgment in the product documentation would be +// appreciated but is not required. +// 2. Altered source versions must be plainly marked as such, and must not be +// misrepresented as being the original software. +// 3. This notice may not be removed or altered from any source distribution. + +function adler32(adler, buf, len, pos) { + var s1 = (adler & 0xffff) |0, + s2 = ((adler >>> 16) & 0xffff) |0, + n = 0; + + while (len !== 0) { + // Set limit ~ twice less than 5552, to keep + // s2 in 31-bits, because we force signed ints. + // in other case %= will fail. + n = len > 2000 ? 2000 : len; + len -= n; + + do { + s1 = (s1 + buf[pos++]) |0; + s2 = (s2 + s1) |0; + } while (--n); + + s1 %= 65521; + s2 %= 65521; + } + + return (s1 | (s2 << 16)) |0; +} + + +module.exports = adler32; + +},{}],4:[function(require,module,exports){ +'use strict'; + +// (C) 1995-2013 Jean-loup Gailly and Mark Adler +// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin +// +// This software is provided 'as-is', without any express or implied +// warranty. In no event will the authors be held liable for any damages +// arising from the use of this software. +// +// Permission is granted to anyone to use this software for any purpose, +// including commercial applications, and to alter it and redistribute it +// freely, subject to the following restrictions: +// +// 1. The origin of this software must not be misrepresented; you must not +// claim that you wrote the original software. If you use this software +// in a product, an acknowledgment in the product documentation would be +// appreciated but is not required. +// 2. Altered source versions must be plainly marked as such, and must not be +// misrepresented as being the original software. +// 3. This notice may not be removed or altered from any source distribution. + +module.exports = { + + /* Allowed flush values; see deflate() and inflate() below for details */ + Z_NO_FLUSH: 0, + Z_PARTIAL_FLUSH: 1, + Z_SYNC_FLUSH: 2, + Z_FULL_FLUSH: 3, + Z_FINISH: 4, + Z_BLOCK: 5, + Z_TREES: 6, + + /* Return codes for the compression/decompression functions. Negative values + * are errors, positive values are used for special but normal events. + */ + Z_OK: 0, + Z_STREAM_END: 1, + Z_NEED_DICT: 2, + Z_ERRNO: -1, + Z_STREAM_ERROR: -2, + Z_DATA_ERROR: -3, + //Z_MEM_ERROR: -4, + Z_BUF_ERROR: -5, + //Z_VERSION_ERROR: -6, + + /* compression levels */ + Z_NO_COMPRESSION: 0, + Z_BEST_SPEED: 1, + Z_BEST_COMPRESSION: 9, + Z_DEFAULT_COMPRESSION: -1, + + + Z_FILTERED: 1, + Z_HUFFMAN_ONLY: 2, + Z_RLE: 3, + Z_FIXED: 4, + Z_DEFAULT_STRATEGY: 0, + + /* Possible values of the data_type field (though see inflate()) */ + Z_BINARY: 0, + Z_TEXT: 1, + //Z_ASCII: 1, // = Z_TEXT (deprecated) + Z_UNKNOWN: 2, + + /* The deflate compression method */ + Z_DEFLATED: 8 + //Z_NULL: null // Use -1 or null inline, depending on var type +}; + +},{}],5:[function(require,module,exports){ +'use strict'; + +// Note: we can't get significant speed boost here. +// So write code to minimize size - no pregenerated tables +// and array tools dependencies. + +// (C) 1995-2013 Jean-loup Gailly and Mark Adler +// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin +// +// This software is provided 'as-is', without any express or implied +// warranty. In no event will the authors be held liable for any damages +// arising from the use of this software. +// +// Permission is granted to anyone to use this software for any purpose, +// including commercial applications, and to alter it and redistribute it +// freely, subject to the following restrictions: +// +// 1. The origin of this software must not be misrepresented; you must not +// claim that you wrote the original software. If you use this software +// in a product, an acknowledgment in the product documentation would be +// appreciated but is not required. +// 2. Altered source versions must be plainly marked as such, and must not be +// misrepresented as being the original software. +// 3. This notice may not be removed or altered from any source distribution. + +// Use ordinary array, since untyped makes no boost here +function makeTable() { + var c, table = []; + + for (var n = 0; n < 256; n++) { + c = n; + for (var k = 0; k < 8; k++) { + c = ((c & 1) ? (0xEDB88320 ^ (c >>> 1)) : (c >>> 1)); + } + table[n] = c; + } + + return table; +} + +// Create table on load. Just 255 signed longs. Not a problem. +var crcTable = makeTable(); + + +function crc32(crc, buf, len, pos) { + var t = crcTable, + end = pos + len; + + crc ^= -1; + + for (var i = pos; i < end; i++) { + crc = (crc >>> 8) ^ t[(crc ^ buf[i]) & 0xFF]; + } + + return (crc ^ (-1)); // >>> 0; +} + + +module.exports = crc32; + +},{}],6:[function(require,module,exports){ +'use strict'; + +// (C) 1995-2013 Jean-loup Gailly and Mark Adler +// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin +// +// This software is provided 'as-is', without any express or implied +// warranty. In no event will the authors be held liable for any damages +// arising from the use of this software. +// +// Permission is granted to anyone to use this software for any purpose, +// including commercial applications, and to alter it and redistribute it +// freely, subject to the following restrictions: +// +// 1. The origin of this software must not be misrepresented; you must not +// claim that you wrote the original software. If you use this software +// in a product, an acknowledgment in the product documentation would be +// appreciated but is not required. +// 2. Altered source versions must be plainly marked as such, and must not be +// misrepresented as being the original software. +// 3. This notice may not be removed or altered from any source distribution. + +function GZheader() { + /* true if compressed data believed to be text */ + this.text = 0; + /* modification time */ + this.time = 0; + /* extra flags (not used when writing a gzip file) */ + this.xflags = 0; + /* operating system */ + this.os = 0; + /* pointer to extra field or Z_NULL if none */ + this.extra = null; + /* extra field length (valid if extra != Z_NULL) */ + this.extra_len = 0; // Actually, we don't need it in JS, + // but leave for few code modifications + + // + // Setup limits is not necessary because in js we should not preallocate memory + // for inflate use constant limit in 65536 bytes + // + + /* space at extra (only when reading header) */ + // this.extra_max = 0; + /* pointer to zero-terminated file name or Z_NULL */ + this.name = ''; + /* space at name (only when reading header) */ + // this.name_max = 0; + /* pointer to zero-terminated comment or Z_NULL */ + this.comment = ''; + /* space at comment (only when reading header) */ + // this.comm_max = 0; + /* true if there was or will be a header crc */ + this.hcrc = 0; + /* true when done reading gzip header (not used when writing a gzip file) */ + this.done = false; +} + +module.exports = GZheader; + +},{}],7:[function(require,module,exports){ +'use strict'; + +// (C) 1995-2013 Jean-loup Gailly and Mark Adler +// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin +// +// This software is provided 'as-is', without any express or implied +// warranty. In no event will the authors be held liable for any damages +// arising from the use of this software. +// +// Permission is granted to anyone to use this software for any purpose, +// including commercial applications, and to alter it and redistribute it +// freely, subject to the following restrictions: +// +// 1. The origin of this software must not be misrepresented; you must not +// claim that you wrote the original software. If you use this software +// in a product, an acknowledgment in the product documentation would be +// appreciated but is not required. +// 2. Altered source versions must be plainly marked as such, and must not be +// misrepresented as being the original software. +// 3. This notice may not be removed or altered from any source distribution. + +// See state defs from inflate.js +var BAD = 30; /* got a data error -- remain here until reset */ +var TYPE = 12; /* i: waiting for type bits, including last-flag bit */ + +/* + Decode literal, length, and distance codes and write out the resulting + literal and match bytes until either not enough input or output is + available, an end-of-block is encountered, or a data error is encountered. + When large enough input and output buffers are supplied to inflate(), for + example, a 16K input buffer and a 64K output buffer, more than 95% of the + inflate execution time is spent in this routine. + + Entry assumptions: + + state.mode === LEN + strm.avail_in >= 6 + strm.avail_out >= 258 + start >= strm.avail_out + state.bits < 8 + + On return, state.mode is one of: + + LEN -- ran out of enough output space or enough available input + TYPE -- reached end of block code, inflate() to interpret next block + BAD -- error in block data + + Notes: + + - The maximum input bits used by a length/distance pair is 15 bits for the + length code, 5 bits for the length extra, 15 bits for the distance code, + and 13 bits for the distance extra. This totals 48 bits, or six bytes. + Therefore if strm.avail_in >= 6, then there is enough input to avoid + checking for available input while decoding. + + - The maximum bytes that a single length/distance pair can output is 258 + bytes, which is the maximum length that can be coded. inflate_fast() + requires strm.avail_out >= 258 for each loop to avoid checking for + output space. + */ +module.exports = function inflate_fast(strm, start) { + var state; + var _in; /* local strm.input */ + var last; /* have enough input while in < last */ + var _out; /* local strm.output */ + var beg; /* inflate()'s initial strm.output */ + var end; /* while out < end, enough space available */ +//#ifdef INFLATE_STRICT + var dmax; /* maximum distance from zlib header */ +//#endif + var wsize; /* window size or zero if not using window */ + var whave; /* valid bytes in the window */ + var wnext; /* window write index */ + // Use `s_window` instead `window`, avoid conflict with instrumentation tools + var s_window; /* allocated sliding window, if wsize != 0 */ + var hold; /* local strm.hold */ + var bits; /* local strm.bits */ + var lcode; /* local strm.lencode */ + var dcode; /* local strm.distcode */ + var lmask; /* mask for first level of length codes */ + var dmask; /* mask for first level of distance codes */ + var here; /* retrieved table entry */ + var op; /* code bits, operation, extra bits, or */ + /* window position, window bytes to copy */ + var len; /* match length, unused bytes */ + var dist; /* match distance */ + var from; /* where to copy match from */ + var from_source; + + + var input, output; // JS specific, because we have no pointers + + /* copy state to local variables */ + state = strm.state; + //here = state.here; + _in = strm.next_in; + input = strm.input; + last = _in + (strm.avail_in - 5); + _out = strm.next_out; + output = strm.output; + beg = _out - (start - strm.avail_out); + end = _out + (strm.avail_out - 257); +//#ifdef INFLATE_STRICT + dmax = state.dmax; +//#endif + wsize = state.wsize; + whave = state.whave; + wnext = state.wnext; + s_window = state.window; + hold = state.hold; + bits = state.bits; + lcode = state.lencode; + dcode = state.distcode; + lmask = (1 << state.lenbits) - 1; + dmask = (1 << state.distbits) - 1; + + + /* decode literals and length/distances until end-of-block or not enough + input data or output space */ + + top: + do { + if (bits < 15) { + hold += input[_in++] << bits; + bits += 8; + hold += input[_in++] << bits; + bits += 8; + } + + here = lcode[hold & lmask]; + + dolen: + for (;;) { // Goto emulation + op = here >>> 24/*here.bits*/; + hold >>>= op; + bits -= op; + op = (here >>> 16) & 0xff/*here.op*/; + if (op === 0) { /* literal */ + //Tracevv((stderr, here.val >= 0x20 && here.val < 0x7f ? + // "inflate: literal '%c'\n" : + // "inflate: literal 0x%02x\n", here.val)); + output[_out++] = here & 0xffff/*here.val*/; + } + else if (op & 16) { /* length base */ + len = here & 0xffff/*here.val*/; + op &= 15; /* number of extra bits */ + if (op) { + if (bits < op) { + hold += input[_in++] << bits; + bits += 8; + } + len += hold & ((1 << op) - 1); + hold >>>= op; + bits -= op; + } + //Tracevv((stderr, "inflate: length %u\n", len)); + if (bits < 15) { + hold += input[_in++] << bits; + bits += 8; + hold += input[_in++] << bits; + bits += 8; + } + here = dcode[hold & dmask]; + + dodist: + for (;;) { // goto emulation + op = here >>> 24/*here.bits*/; + hold >>>= op; + bits -= op; + op = (here >>> 16) & 0xff/*here.op*/; + + if (op & 16) { /* distance base */ + dist = here & 0xffff/*here.val*/; + op &= 15; /* number of extra bits */ + if (bits < op) { + hold += input[_in++] << bits; + bits += 8; + if (bits < op) { + hold += input[_in++] << bits; + bits += 8; + } + } + dist += hold & ((1 << op) - 1); +//#ifdef INFLATE_STRICT + if (dist > dmax) { + strm.msg = 'invalid distance too far back'; + state.mode = BAD; + break top; + } +//#endif + hold >>>= op; + bits -= op; + //Tracevv((stderr, "inflate: distance %u\n", dist)); + op = _out - beg; /* max distance in output */ + if (dist > op) { /* see if copy from window */ + op = dist - op; /* distance back in window */ + if (op > whave) { + if (state.sane) { + strm.msg = 'invalid distance too far back'; + state.mode = BAD; + break top; + } + +// (!) This block is disabled in zlib defailts, +// don't enable it for binary compatibility +//#ifdef INFLATE_ALLOW_INVALID_DISTANCE_TOOFAR_ARRR +// if (len <= op - whave) { +// do { +// output[_out++] = 0; +// } while (--len); +// continue top; +// } +// len -= op - whave; +// do { +// output[_out++] = 0; +// } while (--op > whave); +// if (op === 0) { +// from = _out - dist; +// do { +// output[_out++] = output[from++]; +// } while (--len); +// continue top; +// } +//#endif + } + from = 0; // window index + from_source = s_window; + if (wnext === 0) { /* very common case */ + from += wsize - op; + if (op < len) { /* some from window */ + len -= op; + do { + output[_out++] = s_window[from++]; + } while (--op); + from = _out - dist; /* rest from output */ + from_source = output; + } + } + else if (wnext < op) { /* wrap around window */ + from += wsize + wnext - op; + op -= wnext; + if (op < len) { /* some from end of window */ + len -= op; + do { + output[_out++] = s_window[from++]; + } while (--op); + from = 0; + if (wnext < len) { /* some from start of window */ + op = wnext; + len -= op; + do { + output[_out++] = s_window[from++]; + } while (--op); + from = _out - dist; /* rest from output */ + from_source = output; + } + } + } + else { /* contiguous in window */ + from += wnext - op; + if (op < len) { /* some from window */ + len -= op; + do { + output[_out++] = s_window[from++]; + } while (--op); + from = _out - dist; /* rest from output */ + from_source = output; + } + } + while (len > 2) { + output[_out++] = from_source[from++]; + output[_out++] = from_source[from++]; + output[_out++] = from_source[from++]; + len -= 3; + } + if (len) { + output[_out++] = from_source[from++]; + if (len > 1) { + output[_out++] = from_source[from++]; + } + } + } + else { + from = _out - dist; /* copy direct from output */ + do { /* minimum length is three */ + output[_out++] = output[from++]; + output[_out++] = output[from++]; + output[_out++] = output[from++]; + len -= 3; + } while (len > 2); + if (len) { + output[_out++] = output[from++]; + if (len > 1) { + output[_out++] = output[from++]; + } + } + } + } + else if ((op & 64) === 0) { /* 2nd level distance code */ + here = dcode[(here & 0xffff)/*here.val*/ + (hold & ((1 << op) - 1))]; + continue dodist; + } + else { + strm.msg = 'invalid distance code'; + state.mode = BAD; + break top; + } + + break; // need to emulate goto via "continue" + } + } + else if ((op & 64) === 0) { /* 2nd level length code */ + here = lcode[(here & 0xffff)/*here.val*/ + (hold & ((1 << op) - 1))]; + continue dolen; + } + else if (op & 32) { /* end-of-block */ + //Tracevv((stderr, "inflate: end of block\n")); + state.mode = TYPE; + break top; + } + else { + strm.msg = 'invalid literal/length code'; + state.mode = BAD; + break top; + } + + break; // need to emulate goto via "continue" + } + } while (_in < last && _out < end); + + /* return unused bytes (on entry, bits < 8, so in won't go too far back) */ + len = bits >> 3; + _in -= len; + bits -= len << 3; + hold &= (1 << bits) - 1; + + /* update state and return */ + strm.next_in = _in; + strm.next_out = _out; + strm.avail_in = (_in < last ? 5 + (last - _in) : 5 - (_in - last)); + strm.avail_out = (_out < end ? 257 + (end - _out) : 257 - (_out - end)); + state.hold = hold; + state.bits = bits; + return; +}; + +},{}],8:[function(require,module,exports){ +'use strict'; + +// (C) 1995-2013 Jean-loup Gailly and Mark Adler +// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin +// +// This software is provided 'as-is', without any express or implied +// warranty. In no event will the authors be held liable for any damages +// arising from the use of this software. +// +// Permission is granted to anyone to use this software for any purpose, +// including commercial applications, and to alter it and redistribute it +// freely, subject to the following restrictions: +// +// 1. The origin of this software must not be misrepresented; you must not +// claim that you wrote the original software. If you use this software +// in a product, an acknowledgment in the product documentation would be +// appreciated but is not required. +// 2. Altered source versions must be plainly marked as such, and must not be +// misrepresented as being the original software. +// 3. This notice may not be removed or altered from any source distribution. + +var utils = require('../utils/common'); +var adler32 = require('./adler32'); +var crc32 = require('./crc32'); +var inflate_fast = require('./inffast'); +var inflate_table = require('./inftrees'); + +var CODES = 0; +var LENS = 1; +var DISTS = 2; + +/* Public constants ==========================================================*/ +/* ===========================================================================*/ + + +/* Allowed flush values; see deflate() and inflate() below for details */ +//var Z_NO_FLUSH = 0; +//var Z_PARTIAL_FLUSH = 1; +//var Z_SYNC_FLUSH = 2; +//var Z_FULL_FLUSH = 3; +var Z_FINISH = 4; +var Z_BLOCK = 5; +var Z_TREES = 6; + + +/* Return codes for the compression/decompression functions. Negative values + * are errors, positive values are used for special but normal events. + */ +var Z_OK = 0; +var Z_STREAM_END = 1; +var Z_NEED_DICT = 2; +//var Z_ERRNO = -1; +var Z_STREAM_ERROR = -2; +var Z_DATA_ERROR = -3; +var Z_MEM_ERROR = -4; +var Z_BUF_ERROR = -5; +//var Z_VERSION_ERROR = -6; + +/* The deflate compression method */ +var Z_DEFLATED = 8; + + +/* STATES ====================================================================*/ +/* ===========================================================================*/ + + +var HEAD = 1; /* i: waiting for magic header */ +var FLAGS = 2; /* i: waiting for method and flags (gzip) */ +var TIME = 3; /* i: waiting for modification time (gzip) */ +var OS = 4; /* i: waiting for extra flags and operating system (gzip) */ +var EXLEN = 5; /* i: waiting for extra length (gzip) */ +var EXTRA = 6; /* i: waiting for extra bytes (gzip) */ +var NAME = 7; /* i: waiting for end of file name (gzip) */ +var COMMENT = 8; /* i: waiting for end of comment (gzip) */ +var HCRC = 9; /* i: waiting for header crc (gzip) */ +var DICTID = 10; /* i: waiting for dictionary check value */ +var DICT = 11; /* waiting for inflateSetDictionary() call */ +var TYPE = 12; /* i: waiting for type bits, including last-flag bit */ +var TYPEDO = 13; /* i: same, but skip check to exit inflate on new block */ +var STORED = 14; /* i: waiting for stored size (length and complement) */ +var COPY_ = 15; /* i/o: same as COPY below, but only first time in */ +var COPY = 16; /* i/o: waiting for input or output to copy stored block */ +var TABLE = 17; /* i: waiting for dynamic block table lengths */ +var LENLENS = 18; /* i: waiting for code length code lengths */ +var CODELENS = 19; /* i: waiting for length/lit and distance code lengths */ +var LEN_ = 20; /* i: same as LEN below, but only first time in */ +var LEN = 21; /* i: waiting for length/lit/eob code */ +var LENEXT = 22; /* i: waiting for length extra bits */ +var DIST = 23; /* i: waiting for distance code */ +var DISTEXT = 24; /* i: waiting for distance extra bits */ +var MATCH = 25; /* o: waiting for output space to copy string */ +var LIT = 26; /* o: waiting for output space to write literal */ +var CHECK = 27; /* i: waiting for 32-bit check value */ +var LENGTH = 28; /* i: waiting for 32-bit length (gzip) */ +var DONE = 29; /* finished check, done -- remain here until reset */ +var BAD = 30; /* got a data error -- remain here until reset */ +var MEM = 31; /* got an inflate() memory error -- remain here until reset */ +var SYNC = 32; /* looking for synchronization bytes to restart inflate() */ + +/* ===========================================================================*/ + + + +var ENOUGH_LENS = 852; +var ENOUGH_DISTS = 592; +//var ENOUGH = (ENOUGH_LENS+ENOUGH_DISTS); + +var MAX_WBITS = 15; +/* 32K LZ77 window */ +var DEF_WBITS = MAX_WBITS; + + +function zswap32(q) { + return (((q >>> 24) & 0xff) + + ((q >>> 8) & 0xff00) + + ((q & 0xff00) << 8) + + ((q & 0xff) << 24)); +} + + +function InflateState() { + this.mode = 0; /* current inflate mode */ + this.last = false; /* true if processing last block */ + this.wrap = 0; /* bit 0 true for zlib, bit 1 true for gzip */ + this.havedict = false; /* true if dictionary provided */ + this.flags = 0; /* gzip header method and flags (0 if zlib) */ + this.dmax = 0; /* zlib header max distance (INFLATE_STRICT) */ + this.check = 0; /* protected copy of check value */ + this.total = 0; /* protected copy of output count */ + // TODO: may be {} + this.head = null; /* where to save gzip header information */ + + /* sliding window */ + this.wbits = 0; /* log base 2 of requested window size */ + this.wsize = 0; /* window size or zero if not using window */ + this.whave = 0; /* valid bytes in the window */ + this.wnext = 0; /* window write index */ + this.window = null; /* allocated sliding window, if needed */ + + /* bit accumulator */ + this.hold = 0; /* input bit accumulator */ + this.bits = 0; /* number of bits in "in" */ + + /* for string and stored block copying */ + this.length = 0; /* literal or length of data to copy */ + this.offset = 0; /* distance back to copy string from */ + + /* for table and code decoding */ + this.extra = 0; /* extra bits needed */ + + /* fixed and dynamic code tables */ + this.lencode = null; /* starting table for length/literal codes */ + this.distcode = null; /* starting table for distance codes */ + this.lenbits = 0; /* index bits for lencode */ + this.distbits = 0; /* index bits for distcode */ + + /* dynamic table building */ + this.ncode = 0; /* number of code length code lengths */ + this.nlen = 0; /* number of length code lengths */ + this.ndist = 0; /* number of distance code lengths */ + this.have = 0; /* number of code lengths in lens[] */ + this.next = null; /* next available space in codes[] */ + + this.lens = new utils.Buf16(320); /* temporary storage for code lengths */ + this.work = new utils.Buf16(288); /* work area for code table building */ + + /* + because we don't have pointers in js, we use lencode and distcode directly + as buffers so we don't need codes + */ + //this.codes = new utils.Buf32(ENOUGH); /* space for code tables */ + this.lendyn = null; /* dynamic table for length/literal codes (JS specific) */ + this.distdyn = null; /* dynamic table for distance codes (JS specific) */ + this.sane = 0; /* if false, allow invalid distance too far */ + this.back = 0; /* bits back of last unprocessed length/lit */ + this.was = 0; /* initial length of match */ +} + +function inflateResetKeep(strm) { + var state; + + if (!strm || !strm.state) { return Z_STREAM_ERROR; } + state = strm.state; + strm.total_in = strm.total_out = state.total = 0; + strm.msg = ''; /*Z_NULL*/ + if (state.wrap) { /* to support ill-conceived Java test suite */ + strm.adler = state.wrap & 1; + } + state.mode = HEAD; + state.last = 0; + state.havedict = 0; + state.dmax = 32768; + state.head = null/*Z_NULL*/; + state.hold = 0; + state.bits = 0; + //state.lencode = state.distcode = state.next = state.codes; + state.lencode = state.lendyn = new utils.Buf32(ENOUGH_LENS); + state.distcode = state.distdyn = new utils.Buf32(ENOUGH_DISTS); + + state.sane = 1; + state.back = -1; + //Tracev((stderr, "inflate: reset\n")); + return Z_OK; +} + +function inflateReset(strm) { + var state; + + if (!strm || !strm.state) { return Z_STREAM_ERROR; } + state = strm.state; + state.wsize = 0; + state.whave = 0; + state.wnext = 0; + return inflateResetKeep(strm); + +} + +function inflateReset2(strm, windowBits) { + var wrap; + var state; + + /* get the state */ + if (!strm || !strm.state) { return Z_STREAM_ERROR; } + state = strm.state; + + /* extract wrap request from windowBits parameter */ + if (windowBits < 0) { + wrap = 0; + windowBits = -windowBits; + } + else { + wrap = (windowBits >> 4) + 1; + if (windowBits < 48) { + windowBits &= 15; + } + } + + /* set number of window bits, free window if different */ + if (windowBits && (windowBits < 8 || windowBits > 15)) { + return Z_STREAM_ERROR; + } + if (state.window !== null && state.wbits !== windowBits) { + state.window = null; + } + + /* update state and reset the rest of it */ + state.wrap = wrap; + state.wbits = windowBits; + return inflateReset(strm); +} + +function inflateInit2(strm, windowBits) { + var ret; + var state; + + if (!strm) { return Z_STREAM_ERROR; } + //strm.msg = Z_NULL; /* in case we return an error */ + + state = new InflateState(); + + //if (state === Z_NULL) return Z_MEM_ERROR; + //Tracev((stderr, "inflate: allocated\n")); + strm.state = state; + state.window = null/*Z_NULL*/; + ret = inflateReset2(strm, windowBits); + if (ret !== Z_OK) { + strm.state = null/*Z_NULL*/; + } + return ret; +} + +function inflateInit(strm) { + return inflateInit2(strm, DEF_WBITS); +} + + +/* + Return state with length and distance decoding tables and index sizes set to + fixed code decoding. Normally this returns fixed tables from inffixed.h. + If BUILDFIXED is defined, then instead this routine builds the tables the + first time it's called, and returns those tables the first time and + thereafter. This reduces the size of the code by about 2K bytes, in + exchange for a little execution time. However, BUILDFIXED should not be + used for threaded applications, since the rewriting of the tables and virgin + may not be thread-safe. + */ +var virgin = true; + +var lenfix, distfix; // We have no pointers in JS, so keep tables separate + +function fixedtables(state) { + /* build fixed huffman tables if first call (may not be thread safe) */ + if (virgin) { + var sym; + + lenfix = new utils.Buf32(512); + distfix = new utils.Buf32(32); + + /* literal/length table */ + sym = 0; + while (sym < 144) { state.lens[sym++] = 8; } + while (sym < 256) { state.lens[sym++] = 9; } + while (sym < 280) { state.lens[sym++] = 7; } + while (sym < 288) { state.lens[sym++] = 8; } + + inflate_table(LENS, state.lens, 0, 288, lenfix, 0, state.work, { bits: 9 }); + + /* distance table */ + sym = 0; + while (sym < 32) { state.lens[sym++] = 5; } + + inflate_table(DISTS, state.lens, 0, 32, distfix, 0, state.work, { bits: 5 }); + + /* do this just once */ + virgin = false; + } + + state.lencode = lenfix; + state.lenbits = 9; + state.distcode = distfix; + state.distbits = 5; +} + + +/* + Update the window with the last wsize (normally 32K) bytes written before + returning. If window does not exist yet, create it. This is only called + when a window is already in use, or when output has been written during this + inflate call, but the end of the deflate stream has not been reached yet. + It is also called to create a window for dictionary data when a dictionary + is loaded. + + Providing output buffers larger than 32K to inflate() should provide a speed + advantage, since only the last 32K of output is copied to the sliding window + upon return from inflate(), and since all distances after the first 32K of + output will fall in the output data, making match copies simpler and faster. + The advantage may be dependent on the size of the processor's data caches. + */ +function updatewindow(strm, src, end, copy) { + var dist; + var state = strm.state; + + /* if it hasn't been done already, allocate space for the window */ + if (state.window === null) { + state.wsize = 1 << state.wbits; + state.wnext = 0; + state.whave = 0; + + state.window = new utils.Buf8(state.wsize); + } + + /* copy state->wsize or less output bytes into the circular window */ + if (copy >= state.wsize) { + utils.arraySet(state.window, src, end - state.wsize, state.wsize, 0); + state.wnext = 0; + state.whave = state.wsize; + } + else { + dist = state.wsize - state.wnext; + if (dist > copy) { + dist = copy; + } + //zmemcpy(state->window + state->wnext, end - copy, dist); + utils.arraySet(state.window, src, end - copy, dist, state.wnext); + copy -= dist; + if (copy) { + //zmemcpy(state->window, end - copy, copy); + utils.arraySet(state.window, src, end - copy, copy, 0); + state.wnext = copy; + state.whave = state.wsize; + } + else { + state.wnext += dist; + if (state.wnext === state.wsize) { state.wnext = 0; } + if (state.whave < state.wsize) { state.whave += dist; } + } + } + return 0; +} + +function inflate(strm, flush) { + var state; + var input, output; // input/output buffers + var next; /* next input INDEX */ + var put; /* next output INDEX */ + var have, left; /* available input and output */ + var hold; /* bit buffer */ + var bits; /* bits in bit buffer */ + var _in, _out; /* save starting available input and output */ + var copy; /* number of stored or match bytes to copy */ + var from; /* where to copy match bytes from */ + var from_source; + var here = 0; /* current decoding table entry */ + var here_bits, here_op, here_val; // paked "here" denormalized (JS specific) + //var last; /* parent table entry */ + var last_bits, last_op, last_val; // paked "last" denormalized (JS specific) + var len; /* length to copy for repeats, bits to drop */ + var ret; /* return code */ + var hbuf = new utils.Buf8(4); /* buffer for gzip header crc calculation */ + var opts; + + var n; // temporary var for NEED_BITS + + var order = /* permutation of code lengths */ + [ 16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15 ]; + + + if (!strm || !strm.state || !strm.output || + (!strm.input && strm.avail_in !== 0)) { + return Z_STREAM_ERROR; + } + + state = strm.state; + if (state.mode === TYPE) { state.mode = TYPEDO; } /* skip check */ + + + //--- LOAD() --- + put = strm.next_out; + output = strm.output; + left = strm.avail_out; + next = strm.next_in; + input = strm.input; + have = strm.avail_in; + hold = state.hold; + bits = state.bits; + //--- + + _in = have; + _out = left; + ret = Z_OK; + + inf_leave: // goto emulation + for (;;) { + switch (state.mode) { + case HEAD: + if (state.wrap === 0) { + state.mode = TYPEDO; + break; + } + //=== NEEDBITS(16); + while (bits < 16) { + if (have === 0) { break inf_leave; } + have--; + hold += input[next++] << bits; + bits += 8; + } + //===// + if ((state.wrap & 2) && hold === 0x8b1f) { /* gzip header */ + state.check = 0/*crc32(0L, Z_NULL, 0)*/; + //=== CRC2(state.check, hold); + hbuf[0] = hold & 0xff; + hbuf[1] = (hold >>> 8) & 0xff; + state.check = crc32(state.check, hbuf, 2, 0); + //===// + + //=== INITBITS(); + hold = 0; + bits = 0; + //===// + state.mode = FLAGS; + break; + } + state.flags = 0; /* expect zlib header */ + if (state.head) { + state.head.done = false; + } + if (!(state.wrap & 1) || /* check if zlib header allowed */ + (((hold & 0xff)/*BITS(8)*/ << 8) + (hold >> 8)) % 31) { + strm.msg = 'incorrect header check'; + state.mode = BAD; + break; + } + if ((hold & 0x0f)/*BITS(4)*/ !== Z_DEFLATED) { + strm.msg = 'unknown compression method'; + state.mode = BAD; + break; + } + //--- DROPBITS(4) ---// + hold >>>= 4; + bits -= 4; + //---// + len = (hold & 0x0f)/*BITS(4)*/ + 8; + if (state.wbits === 0) { + state.wbits = len; + } + else if (len > state.wbits) { + strm.msg = 'invalid window size'; + state.mode = BAD; + break; + } + state.dmax = 1 << len; + //Tracev((stderr, "inflate: zlib header ok\n")); + strm.adler = state.check = 1/*adler32(0L, Z_NULL, 0)*/; + state.mode = hold & 0x200 ? DICTID : TYPE; + //=== INITBITS(); + hold = 0; + bits = 0; + //===// + break; + case FLAGS: + //=== NEEDBITS(16); */ + while (bits < 16) { + if (have === 0) { break inf_leave; } + have--; + hold += input[next++] << bits; + bits += 8; + } + //===// + state.flags = hold; + if ((state.flags & 0xff) !== Z_DEFLATED) { + strm.msg = 'unknown compression method'; + state.mode = BAD; + break; + } + if (state.flags & 0xe000) { + strm.msg = 'unknown header flags set'; + state.mode = BAD; + break; + } + if (state.head) { + state.head.text = ((hold >> 8) & 1); + } + if (state.flags & 0x0200) { + //=== CRC2(state.check, hold); + hbuf[0] = hold & 0xff; + hbuf[1] = (hold >>> 8) & 0xff; + state.check = crc32(state.check, hbuf, 2, 0); + //===// + } + //=== INITBITS(); + hold = 0; + bits = 0; + //===// + state.mode = TIME; + /* falls through */ + case TIME: + //=== NEEDBITS(32); */ + while (bits < 32) { + if (have === 0) { break inf_leave; } + have--; + hold += input[next++] << bits; + bits += 8; + } + //===// + if (state.head) { + state.head.time = hold; + } + if (state.flags & 0x0200) { + //=== CRC4(state.check, hold) + hbuf[0] = hold & 0xff; + hbuf[1] = (hold >>> 8) & 0xff; + hbuf[2] = (hold >>> 16) & 0xff; + hbuf[3] = (hold >>> 24) & 0xff; + state.check = crc32(state.check, hbuf, 4, 0); + //=== + } + //=== INITBITS(); + hold = 0; + bits = 0; + //===// + state.mode = OS; + /* falls through */ + case OS: + //=== NEEDBITS(16); */ + while (bits < 16) { + if (have === 0) { break inf_leave; } + have--; + hold += input[next++] << bits; + bits += 8; + } + //===// + if (state.head) { + state.head.xflags = (hold & 0xff); + state.head.os = (hold >> 8); + } + if (state.flags & 0x0200) { + //=== CRC2(state.check, hold); + hbuf[0] = hold & 0xff; + hbuf[1] = (hold >>> 8) & 0xff; + state.check = crc32(state.check, hbuf, 2, 0); + //===// + } + //=== INITBITS(); + hold = 0; + bits = 0; + //===// + state.mode = EXLEN; + /* falls through */ + case EXLEN: + if (state.flags & 0x0400) { + //=== NEEDBITS(16); */ + while (bits < 16) { + if (have === 0) { break inf_leave; } + have--; + hold += input[next++] << bits; + bits += 8; + } + //===// + state.length = hold; + if (state.head) { + state.head.extra_len = hold; + } + if (state.flags & 0x0200) { + //=== CRC2(state.check, hold); + hbuf[0] = hold & 0xff; + hbuf[1] = (hold >>> 8) & 0xff; + state.check = crc32(state.check, hbuf, 2, 0); + //===// + } + //=== INITBITS(); + hold = 0; + bits = 0; + //===// + } + else if (state.head) { + state.head.extra = null/*Z_NULL*/; + } + state.mode = EXTRA; + /* falls through */ + case EXTRA: + if (state.flags & 0x0400) { + copy = state.length; + if (copy > have) { copy = have; } + if (copy) { + if (state.head) { + len = state.head.extra_len - state.length; + if (!state.head.extra) { + // Use untyped array for more conveniend processing later + state.head.extra = new Array(state.head.extra_len); + } + utils.arraySet( + state.head.extra, + input, + next, + // extra field is limited to 65536 bytes + // - no need for additional size check + copy, + /*len + copy > state.head.extra_max - len ? state.head.extra_max : copy,*/ + len + ); + //zmemcpy(state.head.extra + len, next, + // len + copy > state.head.extra_max ? + // state.head.extra_max - len : copy); + } + if (state.flags & 0x0200) { + state.check = crc32(state.check, input, copy, next); + } + have -= copy; + next += copy; + state.length -= copy; + } + if (state.length) { break inf_leave; } + } + state.length = 0; + state.mode = NAME; + /* falls through */ + case NAME: + if (state.flags & 0x0800) { + if (have === 0) { break inf_leave; } + copy = 0; + do { + // TODO: 2 or 1 bytes? + len = input[next + copy++]; + /* use constant limit because in js we should not preallocate memory */ + if (state.head && len && + (state.length < 65536 /*state.head.name_max*/)) { + state.head.name += String.fromCharCode(len); + } + } while (len && copy < have); + + if (state.flags & 0x0200) { + state.check = crc32(state.check, input, copy, next); + } + have -= copy; + next += copy; + if (len) { break inf_leave; } + } + else if (state.head) { + state.head.name = null; + } + state.length = 0; + state.mode = COMMENT; + /* falls through */ + case COMMENT: + if (state.flags & 0x1000) { + if (have === 0) { break inf_leave; } + copy = 0; + do { + len = input[next + copy++]; + /* use constant limit because in js we should not preallocate memory */ + if (state.head && len && + (state.length < 65536 /*state.head.comm_max*/)) { + state.head.comment += String.fromCharCode(len); + } + } while (len && copy < have); + if (state.flags & 0x0200) { + state.check = crc32(state.check, input, copy, next); + } + have -= copy; + next += copy; + if (len) { break inf_leave; } + } + else if (state.head) { + state.head.comment = null; + } + state.mode = HCRC; + /* falls through */ + case HCRC: + if (state.flags & 0x0200) { + //=== NEEDBITS(16); */ + while (bits < 16) { + if (have === 0) { break inf_leave; } + have--; + hold += input[next++] << bits; + bits += 8; + } + //===// + if (hold !== (state.check & 0xffff)) { + strm.msg = 'header crc mismatch'; + state.mode = BAD; + break; + } + //=== INITBITS(); + hold = 0; + bits = 0; + //===// + } + if (state.head) { + state.head.hcrc = ((state.flags >> 9) & 1); + state.head.done = true; + } + strm.adler = state.check = 0; + state.mode = TYPE; + break; + case DICTID: + //=== NEEDBITS(32); */ + while (bits < 32) { + if (have === 0) { break inf_leave; } + have--; + hold += input[next++] << bits; + bits += 8; + } + //===// + strm.adler = state.check = zswap32(hold); + //=== INITBITS(); + hold = 0; + bits = 0; + //===// + state.mode = DICT; + /* falls through */ + case DICT: + if (state.havedict === 0) { + //--- RESTORE() --- + strm.next_out = put; + strm.avail_out = left; + strm.next_in = next; + strm.avail_in = have; + state.hold = hold; + state.bits = bits; + //--- + return Z_NEED_DICT; + } + strm.adler = state.check = 1/*adler32(0L, Z_NULL, 0)*/; + state.mode = TYPE; + /* falls through */ + case TYPE: + if (flush === Z_BLOCK || flush === Z_TREES) { break inf_leave; } + /* falls through */ + case TYPEDO: + if (state.last) { + //--- BYTEBITS() ---// + hold >>>= bits & 7; + bits -= bits & 7; + //---// + state.mode = CHECK; + break; + } + //=== NEEDBITS(3); */ + while (bits < 3) { + if (have === 0) { break inf_leave; } + have--; + hold += input[next++] << bits; + bits += 8; + } + //===// + state.last = (hold & 0x01)/*BITS(1)*/; + //--- DROPBITS(1) ---// + hold >>>= 1; + bits -= 1; + //---// + + switch ((hold & 0x03)/*BITS(2)*/) { + case 0: /* stored block */ + //Tracev((stderr, "inflate: stored block%s\n", + // state.last ? " (last)" : "")); + state.mode = STORED; + break; + case 1: /* fixed block */ + fixedtables(state); + //Tracev((stderr, "inflate: fixed codes block%s\n", + // state.last ? " (last)" : "")); + state.mode = LEN_; /* decode codes */ + if (flush === Z_TREES) { + //--- DROPBITS(2) ---// + hold >>>= 2; + bits -= 2; + //---// + break inf_leave; + } + break; + case 2: /* dynamic block */ + //Tracev((stderr, "inflate: dynamic codes block%s\n", + // state.last ? " (last)" : "")); + state.mode = TABLE; + break; + case 3: + strm.msg = 'invalid block type'; + state.mode = BAD; + } + //--- DROPBITS(2) ---// + hold >>>= 2; + bits -= 2; + //---// + break; + case STORED: + //--- BYTEBITS() ---// /* go to byte boundary */ + hold >>>= bits & 7; + bits -= bits & 7; + //---// + //=== NEEDBITS(32); */ + while (bits < 32) { + if (have === 0) { break inf_leave; } + have--; + hold += input[next++] << bits; + bits += 8; + } + //===// + if ((hold & 0xffff) !== ((hold >>> 16) ^ 0xffff)) { + strm.msg = 'invalid stored block lengths'; + state.mode = BAD; + break; + } + state.length = hold & 0xffff; + //Tracev((stderr, "inflate: stored length %u\n", + // state.length)); + //=== INITBITS(); + hold = 0; + bits = 0; + //===// + state.mode = COPY_; + if (flush === Z_TREES) { break inf_leave; } + /* falls through */ + case COPY_: + state.mode = COPY; + /* falls through */ + case COPY: + copy = state.length; + if (copy) { + if (copy > have) { copy = have; } + if (copy > left) { copy = left; } + if (copy === 0) { break inf_leave; } + //--- zmemcpy(put, next, copy); --- + utils.arraySet(output, input, next, copy, put); + //---// + have -= copy; + next += copy; + left -= copy; + put += copy; + state.length -= copy; + break; + } + //Tracev((stderr, "inflate: stored end\n")); + state.mode = TYPE; + break; + case TABLE: + //=== NEEDBITS(14); */ + while (bits < 14) { + if (have === 0) { break inf_leave; } + have--; + hold += input[next++] << bits; + bits += 8; + } + //===// + state.nlen = (hold & 0x1f)/*BITS(5)*/ + 257; + //--- DROPBITS(5) ---// + hold >>>= 5; + bits -= 5; + //---// + state.ndist = (hold & 0x1f)/*BITS(5)*/ + 1; + //--- DROPBITS(5) ---// + hold >>>= 5; + bits -= 5; + //---// + state.ncode = (hold & 0x0f)/*BITS(4)*/ + 4; + //--- DROPBITS(4) ---// + hold >>>= 4; + bits -= 4; + //---// +//#ifndef PKZIP_BUG_WORKAROUND + if (state.nlen > 286 || state.ndist > 30) { + strm.msg = 'too many length or distance symbols'; + state.mode = BAD; + break; + } +//#endif + //Tracev((stderr, "inflate: table sizes ok\n")); + state.have = 0; + state.mode = LENLENS; + /* falls through */ + case LENLENS: + while (state.have < state.ncode) { + //=== NEEDBITS(3); + while (bits < 3) { + if (have === 0) { break inf_leave; } + have--; + hold += input[next++] << bits; + bits += 8; + } + //===// + state.lens[order[state.have++]] = (hold & 0x07);//BITS(3); + //--- DROPBITS(3) ---// + hold >>>= 3; + bits -= 3; + //---// + } + while (state.have < 19) { + state.lens[order[state.have++]] = 0; + } + // We have separate tables & no pointers. 2 commented lines below not needed. + //state.next = state.codes; + //state.lencode = state.next; + // Switch to use dynamic table + state.lencode = state.lendyn; + state.lenbits = 7; + + opts = { bits: state.lenbits }; + ret = inflate_table(CODES, state.lens, 0, 19, state.lencode, 0, state.work, opts); + state.lenbits = opts.bits; + + if (ret) { + strm.msg = 'invalid code lengths set'; + state.mode = BAD; + break; + } + //Tracev((stderr, "inflate: code lengths ok\n")); + state.have = 0; + state.mode = CODELENS; + /* falls through */ + case CODELENS: + while (state.have < state.nlen + state.ndist) { + for (;;) { + here = state.lencode[hold & ((1 << state.lenbits) - 1)];/*BITS(state.lenbits)*/ + here_bits = here >>> 24; + here_op = (here >>> 16) & 0xff; + here_val = here & 0xffff; + + if ((here_bits) <= bits) { break; } + //--- PULLBYTE() ---// + if (have === 0) { break inf_leave; } + have--; + hold += input[next++] << bits; + bits += 8; + //---// + } + if (here_val < 16) { + //--- DROPBITS(here.bits) ---// + hold >>>= here_bits; + bits -= here_bits; + //---// + state.lens[state.have++] = here_val; + } + else { + if (here_val === 16) { + //=== NEEDBITS(here.bits + 2); + n = here_bits + 2; + while (bits < n) { + if (have === 0) { break inf_leave; } + have--; + hold += input[next++] << bits; + bits += 8; + } + //===// + //--- DROPBITS(here.bits) ---// + hold >>>= here_bits; + bits -= here_bits; + //---// + if (state.have === 0) { + strm.msg = 'invalid bit length repeat'; + state.mode = BAD; + break; + } + len = state.lens[state.have - 1]; + copy = 3 + (hold & 0x03);//BITS(2); + //--- DROPBITS(2) ---// + hold >>>= 2; + bits -= 2; + //---// + } + else if (here_val === 17) { + //=== NEEDBITS(here.bits + 3); + n = here_bits + 3; + while (bits < n) { + if (have === 0) { break inf_leave; } + have--; + hold += input[next++] << bits; + bits += 8; + } + //===// + //--- DROPBITS(here.bits) ---// + hold >>>= here_bits; + bits -= here_bits; + //---// + len = 0; + copy = 3 + (hold & 0x07);//BITS(3); + //--- DROPBITS(3) ---// + hold >>>= 3; + bits -= 3; + //---// + } + else { + //=== NEEDBITS(here.bits + 7); + n = here_bits + 7; + while (bits < n) { + if (have === 0) { break inf_leave; } + have--; + hold += input[next++] << bits; + bits += 8; + } + //===// + //--- DROPBITS(here.bits) ---// + hold >>>= here_bits; + bits -= here_bits; + //---// + len = 0; + copy = 11 + (hold & 0x7f);//BITS(7); + //--- DROPBITS(7) ---// + hold >>>= 7; + bits -= 7; + //---// + } + if (state.have + copy > state.nlen + state.ndist) { + strm.msg = 'invalid bit length repeat'; + state.mode = BAD; + break; + } + while (copy--) { + state.lens[state.have++] = len; + } + } + } + + /* handle error breaks in while */ + if (state.mode === BAD) { break; } + + /* check for end-of-block code (better have one) */ + if (state.lens[256] === 0) { + strm.msg = 'invalid code -- missing end-of-block'; + state.mode = BAD; + break; + } + + /* build code tables -- note: do not change the lenbits or distbits + values here (9 and 6) without reading the comments in inftrees.h + concerning the ENOUGH constants, which depend on those values */ + state.lenbits = 9; + + opts = { bits: state.lenbits }; + ret = inflate_table(LENS, state.lens, 0, state.nlen, state.lencode, 0, state.work, opts); + // We have separate tables & no pointers. 2 commented lines below not needed. + // state.next_index = opts.table_index; + state.lenbits = opts.bits; + // state.lencode = state.next; + + if (ret) { + strm.msg = 'invalid literal/lengths set'; + state.mode = BAD; + break; + } + + state.distbits = 6; + //state.distcode.copy(state.codes); + // Switch to use dynamic table + state.distcode = state.distdyn; + opts = { bits: state.distbits }; + ret = inflate_table(DISTS, state.lens, state.nlen, state.ndist, state.distcode, 0, state.work, opts); + // We have separate tables & no pointers. 2 commented lines below not needed. + // state.next_index = opts.table_index; + state.distbits = opts.bits; + // state.distcode = state.next; + + if (ret) { + strm.msg = 'invalid distances set'; + state.mode = BAD; + break; + } + //Tracev((stderr, 'inflate: codes ok\n')); + state.mode = LEN_; + if (flush === Z_TREES) { break inf_leave; } + /* falls through */ + case LEN_: + state.mode = LEN; + /* falls through */ + case LEN: + if (have >= 6 && left >= 258) { + //--- RESTORE() --- + strm.next_out = put; + strm.avail_out = left; + strm.next_in = next; + strm.avail_in = have; + state.hold = hold; + state.bits = bits; + //--- + inflate_fast(strm, _out); + //--- LOAD() --- + put = strm.next_out; + output = strm.output; + left = strm.avail_out; + next = strm.next_in; + input = strm.input; + have = strm.avail_in; + hold = state.hold; + bits = state.bits; + //--- + + if (state.mode === TYPE) { + state.back = -1; + } + break; + } + state.back = 0; + for (;;) { + here = state.lencode[hold & ((1 << state.lenbits) - 1)]; /*BITS(state.lenbits)*/ + here_bits = here >>> 24; + here_op = (here >>> 16) & 0xff; + here_val = here & 0xffff; + + if (here_bits <= bits) { break; } + //--- PULLBYTE() ---// + if (have === 0) { break inf_leave; } + have--; + hold += input[next++] << bits; + bits += 8; + //---// + } + if (here_op && (here_op & 0xf0) === 0) { + last_bits = here_bits; + last_op = here_op; + last_val = here_val; + for (;;) { + here = state.lencode[last_val + + ((hold & ((1 << (last_bits + last_op)) - 1))/*BITS(last.bits + last.op)*/ >> last_bits)]; + here_bits = here >>> 24; + here_op = (here >>> 16) & 0xff; + here_val = here & 0xffff; + + if ((last_bits + here_bits) <= bits) { break; } + //--- PULLBYTE() ---// + if (have === 0) { break inf_leave; } + have--; + hold += input[next++] << bits; + bits += 8; + //---// + } + //--- DROPBITS(last.bits) ---// + hold >>>= last_bits; + bits -= last_bits; + //---// + state.back += last_bits; + } + //--- DROPBITS(here.bits) ---// + hold >>>= here_bits; + bits -= here_bits; + //---// + state.back += here_bits; + state.length = here_val; + if (here_op === 0) { + //Tracevv((stderr, here.val >= 0x20 && here.val < 0x7f ? + // "inflate: literal '%c'\n" : + // "inflate: literal 0x%02x\n", here.val)); + state.mode = LIT; + break; + } + if (here_op & 32) { + //Tracevv((stderr, "inflate: end of block\n")); + state.back = -1; + state.mode = TYPE; + break; + } + if (here_op & 64) { + strm.msg = 'invalid literal/length code'; + state.mode = BAD; + break; + } + state.extra = here_op & 15; + state.mode = LENEXT; + /* falls through */ + case LENEXT: + if (state.extra) { + //=== NEEDBITS(state.extra); + n = state.extra; + while (bits < n) { + if (have === 0) { break inf_leave; } + have--; + hold += input[next++] << bits; + bits += 8; + } + //===// + state.length += hold & ((1 << state.extra) - 1)/*BITS(state.extra)*/; + //--- DROPBITS(state.extra) ---// + hold >>>= state.extra; + bits -= state.extra; + //---// + state.back += state.extra; + } + //Tracevv((stderr, "inflate: length %u\n", state.length)); + state.was = state.length; + state.mode = DIST; + /* falls through */ + case DIST: + for (;;) { + here = state.distcode[hold & ((1 << state.distbits) - 1)];/*BITS(state.distbits)*/ + here_bits = here >>> 24; + here_op = (here >>> 16) & 0xff; + here_val = here & 0xffff; + + if ((here_bits) <= bits) { break; } + //--- PULLBYTE() ---// + if (have === 0) { break inf_leave; } + have--; + hold += input[next++] << bits; + bits += 8; + //---// + } + if ((here_op & 0xf0) === 0) { + last_bits = here_bits; + last_op = here_op; + last_val = here_val; + for (;;) { + here = state.distcode[last_val + + ((hold & ((1 << (last_bits + last_op)) - 1))/*BITS(last.bits + last.op)*/ >> last_bits)]; + here_bits = here >>> 24; + here_op = (here >>> 16) & 0xff; + here_val = here & 0xffff; + + if ((last_bits + here_bits) <= bits) { break; } + //--- PULLBYTE() ---// + if (have === 0) { break inf_leave; } + have--; + hold += input[next++] << bits; + bits += 8; + //---// + } + //--- DROPBITS(last.bits) ---// + hold >>>= last_bits; + bits -= last_bits; + //---// + state.back += last_bits; + } + //--- DROPBITS(here.bits) ---// + hold >>>= here_bits; + bits -= here_bits; + //---// + state.back += here_bits; + if (here_op & 64) { + strm.msg = 'invalid distance code'; + state.mode = BAD; + break; + } + state.offset = here_val; + state.extra = (here_op) & 15; + state.mode = DISTEXT; + /* falls through */ + case DISTEXT: + if (state.extra) { + //=== NEEDBITS(state.extra); + n = state.extra; + while (bits < n) { + if (have === 0) { break inf_leave; } + have--; + hold += input[next++] << bits; + bits += 8; + } + //===// + state.offset += hold & ((1 << state.extra) - 1)/*BITS(state.extra)*/; + //--- DROPBITS(state.extra) ---// + hold >>>= state.extra; + bits -= state.extra; + //---// + state.back += state.extra; + } +//#ifdef INFLATE_STRICT + if (state.offset > state.dmax) { + strm.msg = 'invalid distance too far back'; + state.mode = BAD; + break; + } +//#endif + //Tracevv((stderr, "inflate: distance %u\n", state.offset)); + state.mode = MATCH; + /* falls through */ + case MATCH: + if (left === 0) { break inf_leave; } + copy = _out - left; + if (state.offset > copy) { /* copy from window */ + copy = state.offset - copy; + if (copy > state.whave) { + if (state.sane) { + strm.msg = 'invalid distance too far back'; + state.mode = BAD; + break; + } +// (!) This block is disabled in zlib defailts, +// don't enable it for binary compatibility +//#ifdef INFLATE_ALLOW_INVALID_DISTANCE_TOOFAR_ARRR +// Trace((stderr, "inflate.c too far\n")); +// copy -= state.whave; +// if (copy > state.length) { copy = state.length; } +// if (copy > left) { copy = left; } +// left -= copy; +// state.length -= copy; +// do { +// output[put++] = 0; +// } while (--copy); +// if (state.length === 0) { state.mode = LEN; } +// break; +//#endif + } + if (copy > state.wnext) { + copy -= state.wnext; + from = state.wsize - copy; + } + else { + from = state.wnext - copy; + } + if (copy > state.length) { copy = state.length; } + from_source = state.window; + } + else { /* copy from output */ + from_source = output; + from = put - state.offset; + copy = state.length; + } + if (copy > left) { copy = left; } + left -= copy; + state.length -= copy; + do { + output[put++] = from_source[from++]; + } while (--copy); + if (state.length === 0) { state.mode = LEN; } + break; + case LIT: + if (left === 0) { break inf_leave; } + output[put++] = state.length; + left--; + state.mode = LEN; + break; + case CHECK: + if (state.wrap) { + //=== NEEDBITS(32); + while (bits < 32) { + if (have === 0) { break inf_leave; } + have--; + // Use '|' insdead of '+' to make sure that result is signed + hold |= input[next++] << bits; + bits += 8; + } + //===// + _out -= left; + strm.total_out += _out; + state.total += _out; + if (_out) { + strm.adler = state.check = + /*UPDATE(state.check, put - _out, _out);*/ + (state.flags ? crc32(state.check, output, _out, put - _out) : adler32(state.check, output, _out, put - _out)); + + } + _out = left; + // NB: crc32 stored as signed 32-bit int, zswap32 returns signed too + if ((state.flags ? hold : zswap32(hold)) !== state.check) { + strm.msg = 'incorrect data check'; + state.mode = BAD; + break; + } + //=== INITBITS(); + hold = 0; + bits = 0; + //===// + //Tracev((stderr, "inflate: check matches trailer\n")); + } + state.mode = LENGTH; + /* falls through */ + case LENGTH: + if (state.wrap && state.flags) { + //=== NEEDBITS(32); + while (bits < 32) { + if (have === 0) { break inf_leave; } + have--; + hold += input[next++] << bits; + bits += 8; + } + //===// + if (hold !== (state.total & 0xffffffff)) { + strm.msg = 'incorrect length check'; + state.mode = BAD; + break; + } + //=== INITBITS(); + hold = 0; + bits = 0; + //===// + //Tracev((stderr, "inflate: length matches trailer\n")); + } + state.mode = DONE; + /* falls through */ + case DONE: + ret = Z_STREAM_END; + break inf_leave; + case BAD: + ret = Z_DATA_ERROR; + break inf_leave; + case MEM: + return Z_MEM_ERROR; + case SYNC: + /* falls through */ + default: + return Z_STREAM_ERROR; + } + } + + // inf_leave <- here is real place for "goto inf_leave", emulated via "break inf_leave" + + /* + Return from inflate(), updating the total counts and the check value. + If there was no progress during the inflate() call, return a buffer + error. Call updatewindow() to create and/or update the window state. + Note: a memory error from inflate() is non-recoverable. + */ + + //--- RESTORE() --- + strm.next_out = put; + strm.avail_out = left; + strm.next_in = next; + strm.avail_in = have; + state.hold = hold; + state.bits = bits; + //--- + + if (state.wsize || (_out !== strm.avail_out && state.mode < BAD && + (state.mode < CHECK || flush !== Z_FINISH))) { + if (updatewindow(strm, strm.output, strm.next_out, _out - strm.avail_out)) { + state.mode = MEM; + return Z_MEM_ERROR; + } + } + _in -= strm.avail_in; + _out -= strm.avail_out; + strm.total_in += _in; + strm.total_out += _out; + state.total += _out; + if (state.wrap && _out) { + strm.adler = state.check = /*UPDATE(state.check, strm.next_out - _out, _out);*/ + (state.flags ? crc32(state.check, output, _out, strm.next_out - _out) : adler32(state.check, output, _out, strm.next_out - _out)); + } + strm.data_type = state.bits + (state.last ? 64 : 0) + + (state.mode === TYPE ? 128 : 0) + + (state.mode === LEN_ || state.mode === COPY_ ? 256 : 0); + if (((_in === 0 && _out === 0) || flush === Z_FINISH) && ret === Z_OK) { + ret = Z_BUF_ERROR; + } + return ret; +} + +function inflateEnd(strm) { + + if (!strm || !strm.state /*|| strm->zfree == (free_func)0*/) { + return Z_STREAM_ERROR; + } + + var state = strm.state; + if (state.window) { + state.window = null; + } + strm.state = null; + return Z_OK; +} + +function inflateGetHeader(strm, head) { + var state; + + /* check state */ + if (!strm || !strm.state) { return Z_STREAM_ERROR; } + state = strm.state; + if ((state.wrap & 2) === 0) { return Z_STREAM_ERROR; } + + /* save header structure */ + state.head = head; + head.done = false; + return Z_OK; +} + +function inflateSetDictionary(strm, dictionary) { + var dictLength = dictionary.length; + + var state; + var dictid; + var ret; + + /* check state */ + if (!strm /* == Z_NULL */ || !strm.state /* == Z_NULL */) { return Z_STREAM_ERROR; } + state = strm.state; + + if (state.wrap !== 0 && state.mode !== DICT) { + return Z_STREAM_ERROR; + } + + /* check for correct dictionary identifier */ + if (state.mode === DICT) { + dictid = 1; /* adler32(0, null, 0)*/ + /* dictid = adler32(dictid, dictionary, dictLength); */ + dictid = adler32(dictid, dictionary, dictLength, 0); + if (dictid !== state.check) { + return Z_DATA_ERROR; + } + } + /* copy dictionary to window using updatewindow(), which will amend the + existing dictionary if appropriate */ + ret = updatewindow(strm, dictionary, dictLength, dictLength); + if (ret) { + state.mode = MEM; + return Z_MEM_ERROR; + } + state.havedict = 1; + // Tracev((stderr, "inflate: dictionary set\n")); + return Z_OK; +} + +exports.inflateReset = inflateReset; +exports.inflateReset2 = inflateReset2; +exports.inflateResetKeep = inflateResetKeep; +exports.inflateInit = inflateInit; +exports.inflateInit2 = inflateInit2; +exports.inflate = inflate; +exports.inflateEnd = inflateEnd; +exports.inflateGetHeader = inflateGetHeader; +exports.inflateSetDictionary = inflateSetDictionary; +exports.inflateInfo = 'pako inflate (from Nodeca project)'; + +/* Not implemented +exports.inflateCopy = inflateCopy; +exports.inflateGetDictionary = inflateGetDictionary; +exports.inflateMark = inflateMark; +exports.inflatePrime = inflatePrime; +exports.inflateSync = inflateSync; +exports.inflateSyncPoint = inflateSyncPoint; +exports.inflateUndermine = inflateUndermine; +*/ + +},{"../utils/common":1,"./adler32":3,"./crc32":5,"./inffast":7,"./inftrees":9}],9:[function(require,module,exports){ +'use strict'; + +// (C) 1995-2013 Jean-loup Gailly and Mark Adler +// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin +// +// This software is provided 'as-is', without any express or implied +// warranty. In no event will the authors be held liable for any damages +// arising from the use of this software. +// +// Permission is granted to anyone to use this software for any purpose, +// including commercial applications, and to alter it and redistribute it +// freely, subject to the following restrictions: +// +// 1. The origin of this software must not be misrepresented; you must not +// claim that you wrote the original software. If you use this software +// in a product, an acknowledgment in the product documentation would be +// appreciated but is not required. +// 2. Altered source versions must be plainly marked as such, and must not be +// misrepresented as being the original software. +// 3. This notice may not be removed or altered from any source distribution. + +var utils = require('../utils/common'); + +var MAXBITS = 15; +var ENOUGH_LENS = 852; +var ENOUGH_DISTS = 592; +//var ENOUGH = (ENOUGH_LENS+ENOUGH_DISTS); + +var CODES = 0; +var LENS = 1; +var DISTS = 2; + +var lbase = [ /* Length codes 257..285 base */ + 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, + 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258, 0, 0 +]; + +var lext = [ /* Length codes 257..285 extra */ + 16, 16, 16, 16, 16, 16, 16, 16, 17, 17, 17, 17, 18, 18, 18, 18, + 19, 19, 19, 19, 20, 20, 20, 20, 21, 21, 21, 21, 16, 72, 78 +]; + +var dbase = [ /* Distance codes 0..29 base */ + 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, + 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, + 8193, 12289, 16385, 24577, 0, 0 +]; + +var dext = [ /* Distance codes 0..29 extra */ + 16, 16, 16, 16, 17, 17, 18, 18, 19, 19, 20, 20, 21, 21, 22, 22, + 23, 23, 24, 24, 25, 25, 26, 26, 27, 27, + 28, 28, 29, 29, 64, 64 +]; + +module.exports = function inflate_table(type, lens, lens_index, codes, table, table_index, work, opts) +{ + var bits = opts.bits; + //here = opts.here; /* table entry for duplication */ + + var len = 0; /* a code's length in bits */ + var sym = 0; /* index of code symbols */ + var min = 0, max = 0; /* minimum and maximum code lengths */ + var root = 0; /* number of index bits for root table */ + var curr = 0; /* number of index bits for current table */ + var drop = 0; /* code bits to drop for sub-table */ + var left = 0; /* number of prefix codes available */ + var used = 0; /* code entries in table used */ + var huff = 0; /* Huffman code */ + var incr; /* for incrementing code, index */ + var fill; /* index for replicating entries */ + var low; /* low bits for current root entry */ + var mask; /* mask for low root bits */ + var next; /* next available space in table */ + var base = null; /* base value table to use */ + var base_index = 0; +// var shoextra; /* extra bits table to use */ + var end; /* use base and extra for symbol > end */ + var count = new utils.Buf16(MAXBITS + 1); //[MAXBITS+1]; /* number of codes of each length */ + var offs = new utils.Buf16(MAXBITS + 1); //[MAXBITS+1]; /* offsets in table for each length */ + var extra = null; + var extra_index = 0; + + var here_bits, here_op, here_val; + + /* + Process a set of code lengths to create a canonical Huffman code. The + code lengths are lens[0..codes-1]. Each length corresponds to the + symbols 0..codes-1. The Huffman code is generated by first sorting the + symbols by length from short to long, and retaining the symbol order + for codes with equal lengths. Then the code starts with all zero bits + for the first code of the shortest length, and the codes are integer + increments for the same length, and zeros are appended as the length + increases. For the deflate format, these bits are stored backwards + from their more natural integer increment ordering, and so when the + decoding tables are built in the large loop below, the integer codes + are incremented backwards. + + This routine assumes, but does not check, that all of the entries in + lens[] are in the range 0..MAXBITS. The caller must assure this. + 1..MAXBITS is interpreted as that code length. zero means that that + symbol does not occur in this code. + + The codes are sorted by computing a count of codes for each length, + creating from that a table of starting indices for each length in the + sorted table, and then entering the symbols in order in the sorted + table. The sorted table is work[], with that space being provided by + the caller. + + The length counts are used for other purposes as well, i.e. finding + the minimum and maximum length codes, determining if there are any + codes at all, checking for a valid set of lengths, and looking ahead + at length counts to determine sub-table sizes when building the + decoding tables. + */ + + /* accumulate lengths for codes (assumes lens[] all in 0..MAXBITS) */ + for (len = 0; len <= MAXBITS; len++) { + count[len] = 0; + } + for (sym = 0; sym < codes; sym++) { + count[lens[lens_index + sym]]++; + } + + /* bound code lengths, force root to be within code lengths */ + root = bits; + for (max = MAXBITS; max >= 1; max--) { + if (count[max] !== 0) { break; } + } + if (root > max) { + root = max; + } + if (max === 0) { /* no symbols to code at all */ + //table.op[opts.table_index] = 64; //here.op = (var char)64; /* invalid code marker */ + //table.bits[opts.table_index] = 1; //here.bits = (var char)1; + //table.val[opts.table_index++] = 0; //here.val = (var short)0; + table[table_index++] = (1 << 24) | (64 << 16) | 0; + + + //table.op[opts.table_index] = 64; + //table.bits[opts.table_index] = 1; + //table.val[opts.table_index++] = 0; + table[table_index++] = (1 << 24) | (64 << 16) | 0; + + opts.bits = 1; + return 0; /* no symbols, but wait for decoding to report error */ + } + for (min = 1; min < max; min++) { + if (count[min] !== 0) { break; } + } + if (root < min) { + root = min; + } + + /* check for an over-subscribed or incomplete set of lengths */ + left = 1; + for (len = 1; len <= MAXBITS; len++) { + left <<= 1; + left -= count[len]; + if (left < 0) { + return -1; + } /* over-subscribed */ + } + if (left > 0 && (type === CODES || max !== 1)) { + return -1; /* incomplete set */ + } + + /* generate offsets into symbol table for each length for sorting */ + offs[1] = 0; + for (len = 1; len < MAXBITS; len++) { + offs[len + 1] = offs[len] + count[len]; + } + + /* sort symbols by length, by symbol order within each length */ + for (sym = 0; sym < codes; sym++) { + if (lens[lens_index + sym] !== 0) { + work[offs[lens[lens_index + sym]]++] = sym; + } + } + + /* + Create and fill in decoding tables. In this loop, the table being + filled is at next and has curr index bits. The code being used is huff + with length len. That code is converted to an index by dropping drop + bits off of the bottom. For codes where len is less than drop + curr, + those top drop + curr - len bits are incremented through all values to + fill the table with replicated entries. + + root is the number of index bits for the root table. When len exceeds + root, sub-tables are created pointed to by the root entry with an index + of the low root bits of huff. This is saved in low to check for when a + new sub-table should be started. drop is zero when the root table is + being filled, and drop is root when sub-tables are being filled. + + When a new sub-table is needed, it is necessary to look ahead in the + code lengths to determine what size sub-table is needed. The length + counts are used for this, and so count[] is decremented as codes are + entered in the tables. + + used keeps track of how many table entries have been allocated from the + provided *table space. It is checked for LENS and DIST tables against + the constants ENOUGH_LENS and ENOUGH_DISTS to guard against changes in + the initial root table size constants. See the comments in inftrees.h + for more information. + + sym increments through all symbols, and the loop terminates when + all codes of length max, i.e. all codes, have been processed. This + routine permits incomplete codes, so another loop after this one fills + in the rest of the decoding tables with invalid code markers. + */ + + /* set up for code type */ + // poor man optimization - use if-else instead of switch, + // to avoid deopts in old v8 + if (type === CODES) { + base = extra = work; /* dummy value--not used */ + end = 19; + + } else if (type === LENS) { + base = lbase; + base_index -= 257; + extra = lext; + extra_index -= 257; + end = 256; + + } else { /* DISTS */ + base = dbase; + extra = dext; + end = -1; + } + + /* initialize opts for loop */ + huff = 0; /* starting code */ + sym = 0; /* starting code symbol */ + len = min; /* starting code length */ + next = table_index; /* current table to fill in */ + curr = root; /* current table index bits */ + drop = 0; /* current bits to drop from code for index */ + low = -1; /* trigger new sub-table when len > root */ + used = 1 << root; /* use root table entries */ + mask = used - 1; /* mask for comparing low */ + + /* check available table space */ + if ((type === LENS && used > ENOUGH_LENS) || + (type === DISTS && used > ENOUGH_DISTS)) { + return 1; + } + + /* process all codes and make table entries */ + for (;;) { + /* create table entry */ + here_bits = len - drop; + if (work[sym] < end) { + here_op = 0; + here_val = work[sym]; + } + else if (work[sym] > end) { + here_op = extra[extra_index + work[sym]]; + here_val = base[base_index + work[sym]]; + } + else { + here_op = 32 + 64; /* end of block */ + here_val = 0; + } + + /* replicate for those indices with low len bits equal to huff */ + incr = 1 << (len - drop); + fill = 1 << curr; + min = fill; /* save offset to next table */ + do { + fill -= incr; + table[next + (huff >> drop) + fill] = (here_bits << 24) | (here_op << 16) | here_val |0; + } while (fill !== 0); + + /* backwards increment the len-bit code huff */ + incr = 1 << (len - 1); + while (huff & incr) { + incr >>= 1; + } + if (incr !== 0) { + huff &= incr - 1; + huff += incr; + } else { + huff = 0; + } + + /* go to next symbol, update count, len */ + sym++; + if (--count[len] === 0) { + if (len === max) { break; } + len = lens[lens_index + work[sym]]; + } + + /* create new sub-table if needed */ + if (len > root && (huff & mask) !== low) { + /* if first time, transition to sub-tables */ + if (drop === 0) { + drop = root; + } + + /* increment past last table */ + next += min; /* here min is 1 << curr */ + + /* determine length of next table */ + curr = len - drop; + left = 1 << curr; + while (curr + drop < max) { + left -= count[curr + drop]; + if (left <= 0) { break; } + curr++; + left <<= 1; + } + + /* check for enough space */ + used += 1 << curr; + if ((type === LENS && used > ENOUGH_LENS) || + (type === DISTS && used > ENOUGH_DISTS)) { + return 1; + } + + /* point entry in root table to sub-table */ + low = huff & mask; + /*table.op[low] = curr; + table.bits[low] = root; + table.val[low] = next - opts.table_index;*/ + table[low] = (root << 24) | (curr << 16) | (next - table_index) |0; + } + } + + /* fill in remaining table entry if code is incomplete (guaranteed to have + at most one remaining entry, since if the code is incomplete, the + maximum code length that was allowed to get this far is one bit) */ + if (huff !== 0) { + //table.op[next + huff] = 64; /* invalid code marker */ + //table.bits[next + huff] = len - drop; + //table.val[next + huff] = 0; + table[next + huff] = ((len - drop) << 24) | (64 << 16) |0; + } + + /* set return parameters */ + //opts.table_index += used; + opts.bits = root; + return 0; +}; + +},{"../utils/common":1}],10:[function(require,module,exports){ +'use strict'; + +// (C) 1995-2013 Jean-loup Gailly and Mark Adler +// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin +// +// This software is provided 'as-is', without any express or implied +// warranty. In no event will the authors be held liable for any damages +// arising from the use of this software. +// +// Permission is granted to anyone to use this software for any purpose, +// including commercial applications, and to alter it and redistribute it +// freely, subject to the following restrictions: +// +// 1. The origin of this software must not be misrepresented; you must not +// claim that you wrote the original software. If you use this software +// in a product, an acknowledgment in the product documentation would be +// appreciated but is not required. +// 2. Altered source versions must be plainly marked as such, and must not be +// misrepresented as being the original software. +// 3. This notice may not be removed or altered from any source distribution. + +module.exports = { + 2: 'need dictionary', /* Z_NEED_DICT 2 */ + 1: 'stream end', /* Z_STREAM_END 1 */ + 0: '', /* Z_OK 0 */ + '-1': 'file error', /* Z_ERRNO (-1) */ + '-2': 'stream error', /* Z_STREAM_ERROR (-2) */ + '-3': 'data error', /* Z_DATA_ERROR (-3) */ + '-4': 'insufficient memory', /* Z_MEM_ERROR (-4) */ + '-5': 'buffer error', /* Z_BUF_ERROR (-5) */ + '-6': 'incompatible version' /* Z_VERSION_ERROR (-6) */ +}; + +},{}],11:[function(require,module,exports){ +'use strict'; + +// (C) 1995-2013 Jean-loup Gailly and Mark Adler +// (C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin +// +// This software is provided 'as-is', without any express or implied +// warranty. In no event will the authors be held liable for any damages +// arising from the use of this software. +// +// Permission is granted to anyone to use this software for any purpose, +// including commercial applications, and to alter it and redistribute it +// freely, subject to the following restrictions: +// +// 1. The origin of this software must not be misrepresented; you must not +// claim that you wrote the original software. If you use this software +// in a product, an acknowledgment in the product documentation would be +// appreciated but is not required. +// 2. Altered source versions must be plainly marked as such, and must not be +// misrepresented as being the original software. +// 3. This notice may not be removed or altered from any source distribution. + +function ZStream() { + /* next input byte */ + this.input = null; // JS specific, because we have no pointers + this.next_in = 0; + /* number of bytes available at input */ + this.avail_in = 0; + /* total number of input bytes read so far */ + this.total_in = 0; + /* next output byte should be put there */ + this.output = null; // JS specific, because we have no pointers + this.next_out = 0; + /* remaining free space at output */ + this.avail_out = 0; + /* total number of bytes output so far */ + this.total_out = 0; + /* last error message, NULL if no error */ + this.msg = ''/*Z_NULL*/; + /* not visible by applications */ + this.state = null; + /* best guess about the data type: binary or text */ + this.data_type = 2/*Z_UNKNOWN*/; + /* adler32 value of the uncompressed data */ + this.adler = 0; +} + +module.exports = ZStream; + +},{}],"/lib/inflate.js":[function(require,module,exports){ +'use strict'; + + +var zlib_inflate = require('./zlib/inflate'); +var utils = require('./utils/common'); +var strings = require('./utils/strings'); +var c = require('./zlib/constants'); +var msg = require('./zlib/messages'); +var ZStream = require('./zlib/zstream'); +var GZheader = require('./zlib/gzheader'); + +var toString = Object.prototype.toString; + +/** + * class Inflate + * + * Generic JS-style wrapper for zlib calls. If you don't need + * streaming behaviour - use more simple functions: [[inflate]] + * and [[inflateRaw]]. + **/ + +/* internal + * inflate.chunks -> Array + * + * Chunks of output data, if [[Inflate#onData]] not overriden. + **/ + +/** + * Inflate.result -> Uint8Array|Array|String + * + * Uncompressed result, generated by default [[Inflate#onData]] + * and [[Inflate#onEnd]] handlers. Filled after you push last chunk + * (call [[Inflate#push]] with `Z_FINISH` / `true` param) or if you + * push a chunk with explicit flush (call [[Inflate#push]] with + * `Z_SYNC_FLUSH` param). + **/ + +/** + * Inflate.err -> Number + * + * Error code after inflate finished. 0 (Z_OK) on success. + * Should be checked if broken data possible. + **/ + +/** + * Inflate.msg -> String + * + * Error message, if [[Inflate.err]] != 0 + **/ + + +/** + * new Inflate(options) + * - options (Object): zlib inflate options. + * + * Creates new inflator instance with specified params. Throws exception + * on bad params. Supported options: + * + * - `windowBits` + * - `dictionary` + * + * [http://zlib.net/manual.html#Advanced](http://zlib.net/manual.html#Advanced) + * for more information on these. + * + * Additional options, for internal needs: + * + * - `chunkSize` - size of generated data chunks (16K by default) + * - `raw` (Boolean) - do raw inflate + * - `to` (String) - if equal to 'string', then result will be converted + * from utf8 to utf16 (javascript) string. When string output requested, + * chunk length can differ from `chunkSize`, depending on content. + * + * By default, when no options set, autodetect deflate/gzip data format via + * wrapper header. + * + * ##### Example: + * + * ```javascript + * var pako = require('pako') + * , chunk1 = Uint8Array([1,2,3,4,5,6,7,8,9]) + * , chunk2 = Uint8Array([10,11,12,13,14,15,16,17,18,19]); + * + * var inflate = new pako.Inflate({ level: 3}); + * + * inflate.push(chunk1, false); + * inflate.push(chunk2, true); // true -> last chunk + * + * if (inflate.err) { throw new Error(inflate.err); } + * + * console.log(inflate.result); + * ``` + **/ +function Inflate(options) { + if (!(this instanceof Inflate)) return new Inflate(options); + + this.options = utils.assign({ + chunkSize: 16384, + windowBits: 0, + to: '' + }, options || {}); + + var opt = this.options; + + // Force window size for `raw` data, if not set directly, + // because we have no header for autodetect. + if (opt.raw && (opt.windowBits >= 0) && (opt.windowBits < 16)) { + opt.windowBits = -opt.windowBits; + if (opt.windowBits === 0) { opt.windowBits = -15; } + } + + // If `windowBits` not defined (and mode not raw) - set autodetect flag for gzip/deflate + if ((opt.windowBits >= 0) && (opt.windowBits < 16) && + !(options && options.windowBits)) { + opt.windowBits += 32; + } + + // Gzip header has no info about windows size, we can do autodetect only + // for deflate. So, if window size not set, force it to max when gzip possible + if ((opt.windowBits > 15) && (opt.windowBits < 48)) { + // bit 3 (16) -> gzipped data + // bit 4 (32) -> autodetect gzip/deflate + if ((opt.windowBits & 15) === 0) { + opt.windowBits |= 15; + } + } + + this.err = 0; // error code, if happens (0 = Z_OK) + this.msg = ''; // error message + this.ended = false; // used to avoid multiple onEnd() calls + this.chunks = []; // chunks of compressed data + + this.strm = new ZStream(); + this.strm.avail_out = 0; + + var status = zlib_inflate.inflateInit2( + this.strm, + opt.windowBits + ); + + if (status !== c.Z_OK) { + throw new Error(msg[status]); + } + + this.header = new GZheader(); + + zlib_inflate.inflateGetHeader(this.strm, this.header); +} + +/** + * Inflate#push(data[, mode]) -> Boolean + * - data (Uint8Array|Array|ArrayBuffer|String): input data + * - mode (Number|Boolean): 0..6 for corresponding Z_NO_FLUSH..Z_TREE modes. + * See constants. Skipped or `false` means Z_NO_FLUSH, `true` meansh Z_FINISH. + * + * Sends input data to inflate pipe, generating [[Inflate#onData]] calls with + * new output chunks. Returns `true` on success. The last data block must have + * mode Z_FINISH (or `true`). That will flush internal pending buffers and call + * [[Inflate#onEnd]]. For interim explicit flushes (without ending the stream) you + * can use mode Z_SYNC_FLUSH, keeping the decompression context. + * + * On fail call [[Inflate#onEnd]] with error code and return false. + * + * We strongly recommend to use `Uint8Array` on input for best speed (output + * format is detected automatically). Also, don't skip last param and always + * use the same type in your code (boolean or number). That will improve JS speed. + * + * For regular `Array`-s make sure all elements are [0..255]. + * + * ##### Example + * + * ```javascript + * push(chunk, false); // push one of data chunks + * ... + * push(chunk, true); // push last chunk + * ``` + **/ +Inflate.prototype.push = function (data, mode) { + var strm = this.strm; + var chunkSize = this.options.chunkSize; + var dictionary = this.options.dictionary; + var status, _mode; + var next_out_utf8, tail, utf8str; + var dict; + + // Flag to properly process Z_BUF_ERROR on testing inflate call + // when we check that all output data was flushed. + var allowBufError = false; + + if (this.ended) { return false; } + _mode = (mode === ~~mode) ? mode : ((mode === true) ? c.Z_FINISH : c.Z_NO_FLUSH); + + // Convert data if needed + if (typeof data === 'string') { + // Only binary strings can be decompressed on practice + strm.input = strings.binstring2buf(data); + } else if (toString.call(data) === '[object ArrayBuffer]') { + strm.input = new Uint8Array(data); + } else { + strm.input = data; + } + + strm.next_in = 0; + strm.avail_in = strm.input.length; + + do { + if (strm.avail_out === 0) { + strm.output = new utils.Buf8(chunkSize); + strm.next_out = 0; + strm.avail_out = chunkSize; + } + + status = zlib_inflate.inflate(strm, c.Z_NO_FLUSH); /* no bad return value */ + + if (status === c.Z_NEED_DICT && dictionary) { + // Convert data if needed + if (typeof dictionary === 'string') { + dict = strings.string2buf(dictionary); + } else if (toString.call(dictionary) === '[object ArrayBuffer]') { + dict = new Uint8Array(dictionary); + } else { + dict = dictionary; + } + + status = zlib_inflate.inflateSetDictionary(this.strm, dict); + + } + + if (status === c.Z_BUF_ERROR && allowBufError === true) { + status = c.Z_OK; + allowBufError = false; + } + + if (status !== c.Z_STREAM_END && status !== c.Z_OK) { + this.onEnd(status); + this.ended = true; + return false; + } + + if (strm.next_out) { + if (strm.avail_out === 0 || status === c.Z_STREAM_END || (strm.avail_in === 0 && (_mode === c.Z_FINISH || _mode === c.Z_SYNC_FLUSH))) { + + if (this.options.to === 'string') { + + next_out_utf8 = strings.utf8border(strm.output, strm.next_out); + + tail = strm.next_out - next_out_utf8; + utf8str = strings.buf2string(strm.output, next_out_utf8); + + // move tail + strm.next_out = tail; + strm.avail_out = chunkSize - tail; + if (tail) { utils.arraySet(strm.output, strm.output, next_out_utf8, tail, 0); } + + this.onData(utf8str); + + } else { + this.onData(utils.shrinkBuf(strm.output, strm.next_out)); + } + } + } + + // When no more input data, we should check that internal inflate buffers + // are flushed. The only way to do it when avail_out = 0 - run one more + // inflate pass. But if output data not exists, inflate return Z_BUF_ERROR. + // Here we set flag to process this error properly. + // + // NOTE. Deflate does not return error in this case and does not needs such + // logic. + if (strm.avail_in === 0 && strm.avail_out === 0) { + allowBufError = true; + } + + } while ((strm.avail_in > 0 || strm.avail_out === 0) && status !== c.Z_STREAM_END); + + if (status === c.Z_STREAM_END) { + _mode = c.Z_FINISH; + } + + // Finalize on the last chunk. + if (_mode === c.Z_FINISH) { + status = zlib_inflate.inflateEnd(this.strm); + this.onEnd(status); + this.ended = true; + return status === c.Z_OK; + } + + // callback interim results if Z_SYNC_FLUSH. + if (_mode === c.Z_SYNC_FLUSH) { + this.onEnd(c.Z_OK); + strm.avail_out = 0; + return true; + } + + return true; +}; + + +/** + * Inflate#onData(chunk) -> Void + * - chunk (Uint8Array|Array|String): ouput data. Type of array depends + * on js engine support. When string output requested, each chunk + * will be string. + * + * By default, stores data blocks in `chunks[]` property and glue + * those in `onEnd`. Override this handler, if you need another behaviour. + **/ +Inflate.prototype.onData = function (chunk) { + this.chunks.push(chunk); +}; + + +/** + * Inflate#onEnd(status) -> Void + * - status (Number): inflate status. 0 (Z_OK) on success, + * other if not. + * + * Called either after you tell inflate that the input stream is + * complete (Z_FINISH) or should be flushed (Z_SYNC_FLUSH) + * or if an error happened. By default - join collected chunks, + * free memory and fill `results` / `err` properties. + **/ +Inflate.prototype.onEnd = function (status) { + // On success - join + if (status === c.Z_OK) { + if (this.options.to === 'string') { + // Glue & convert here, until we teach pako to send + // utf8 alligned strings to onData + this.result = this.chunks.join(''); + } else { + this.result = utils.flattenChunks(this.chunks); + } + } + this.chunks = []; + this.err = status; + this.msg = this.strm.msg; +}; + + +/** + * inflate(data[, options]) -> Uint8Array|Array|String + * - data (Uint8Array|Array|String): input data to decompress. + * - options (Object): zlib inflate options. + * + * Decompress `data` with inflate/ungzip and `options`. Autodetect + * format via wrapper header by default. That's why we don't provide + * separate `ungzip` method. + * + * Supported options are: + * + * - windowBits + * + * [http://zlib.net/manual.html#Advanced](http://zlib.net/manual.html#Advanced) + * for more information. + * + * Sugar (options): + * + * - `raw` (Boolean) - say that we work with raw stream, if you don't wish to specify + * negative windowBits implicitly. + * - `to` (String) - if equal to 'string', then result will be converted + * from utf8 to utf16 (javascript) string. When string output requested, + * chunk length can differ from `chunkSize`, depending on content. + * + * + * ##### Example: + * + * ```javascript + * var pako = require('pako') + * , input = pako.deflate([1,2,3,4,5,6,7,8,9]) + * , output; + * + * try { + * output = pako.inflate(input); + * } catch (err) + * console.log(err); + * } + * ``` + **/ +function inflate(input, options) { + var inflator = new Inflate(options); + + inflator.push(input, true); + + // That will never happens, if you don't cheat with options :) + if (inflator.err) { throw inflator.msg || msg[inflator.err]; } + + return inflator.result; +} + + +/** + * inflateRaw(data[, options]) -> Uint8Array|Array|String + * - data (Uint8Array|Array|String): input data to decompress. + * - options (Object): zlib inflate options. + * + * The same as [[inflate]], but creates raw data, without wrapper + * (header and adler32 crc). + **/ +function inflateRaw(input, options) { + options = options || {}; + options.raw = true; + return inflate(input, options); +} + + +/** + * ungzip(data[, options]) -> Uint8Array|Array|String + * - data (Uint8Array|Array|String): input data to decompress. + * - options (Object): zlib inflate options. + * + * Just shortcut to [[inflate]], because it autodetects format + * by header.content. Done for convenience. + **/ + + +exports.Inflate = Inflate; +exports.inflate = inflate; +exports.inflateRaw = inflateRaw; +exports.ungzip = inflate; + +},{"./utils/common":1,"./utils/strings":2,"./zlib/constants":4,"./zlib/gzheader":6,"./zlib/inflate":8,"./zlib/messages":10,"./zlib/zstream":11}]},{},[])("/lib/inflate.js") +}); \ No newline at end of file diff --git a/chromium/icon.jpg b/chromium/icon.jpg deleted file mode 100644 index db87ce1c7bd0..000000000000 Binary files a/chromium/icon.jpg and /dev/null differ diff --git a/chromium/icon128.png b/chromium/icon128.png deleted file mode 100644 index 8d573455c292..000000000000 Binary files a/chromium/icon128.png and /dev/null differ diff --git a/chromium/icon16.png b/chromium/icon16.png deleted file mode 100644 index 950a5862a6a3..000000000000 Binary files a/chromium/icon16.png and /dev/null differ diff --git a/chromium/icon38-red.png b/chromium/icon38-red.png deleted file mode 100644 index 8f9c685fb791..000000000000 Binary files a/chromium/icon38-red.png and /dev/null differ diff --git a/chromium/icon38.png b/chromium/icon38.png deleted file mode 100644 index 8afb9d7b00fb..000000000000 Binary files a/chromium/icon38.png and /dev/null differ diff --git a/chromium/icon48.png b/chromium/icon48.png deleted file mode 100644 index 74b8118334ed..000000000000 Binary files a/chromium/icon48.png and /dev/null differ diff --git a/chromium/icons/icon-active-128.png b/chromium/icons/icon-active-128.png deleted file mode 120000 index bfc9f4b018ee..000000000000 --- a/chromium/icons/icon-active-128.png +++ /dev/null @@ -1 +0,0 @@ -../../common/icons/icon-active-128.png \ No newline at end of file diff --git a/chromium/icons/icon-active-38.png b/chromium/icons/icon-active-38.png deleted file mode 120000 index 49c692e81d54..000000000000 --- a/chromium/icons/icon-active-38.png +++ /dev/null @@ -1 +0,0 @@ -../../common/icons/icon-active-38.png \ No newline at end of file diff --git a/chromium/icons/icon-active-48.png b/chromium/icons/icon-active-48.png deleted file mode 120000 index 90a5ddd5dce2..000000000000 --- a/chromium/icons/icon-active-48.png +++ /dev/null @@ -1 +0,0 @@ -../../common/icons/icon-active-48.png \ No newline at end of file diff --git a/chromium/icons/icon-blocking-38.png b/chromium/icons/icon-blocking-38.png deleted file mode 120000 index 93790eaeeca3..000000000000 --- a/chromium/icons/icon-blocking-38.png +++ /dev/null @@ -1 +0,0 @@ -../../common/icons/icon-blocking-38.png \ No newline at end of file diff --git a/chromium/icons/icon-disabled-38.png b/chromium/icons/icon-disabled-38.png deleted file mode 120000 index 93d63819569b..000000000000 --- a/chromium/icons/icon-disabled-38.png +++ /dev/null @@ -1 +0,0 @@ -../../common/icons/icon-disabled-38.png \ No newline at end of file diff --git a/chromium/icons/icon-inactive-38.png b/chromium/icons/icon-inactive-38.png deleted file mode 120000 index 3ba46568224b..000000000000 --- a/chromium/icons/icon-inactive-38.png +++ /dev/null @@ -1 +0,0 @@ -../../common/icons/icon-inactive-38.png \ No newline at end of file diff --git a/chromium/images/HTTPS-Everywhere-Logo.png b/chromium/images/HTTPS-Everywhere-Logo.png new file mode 100644 index 000000000000..d1ebd640731b Binary files /dev/null and b/chromium/images/HTTPS-Everywhere-Logo.png differ diff --git a/chromium/images/banner-red.svg b/chromium/images/banner-red.svg new file mode 100644 index 000000000000..5e1e54b9f800 --- /dev/null +++ b/chromium/images/banner-red.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/chromium/images/eff-logo-monogram-red.png b/chromium/images/eff-logo-monogram-red.png new file mode 100644 index 000000000000..2b91daab5203 Binary files /dev/null and b/chromium/images/eff-logo-monogram-red.png differ diff --git a/common/icons/icon-active-128.png b/chromium/images/icons/icon-active-128.png similarity index 100% rename from common/icons/icon-active-128.png rename to chromium/images/icons/icon-active-128.png diff --git a/common/icons/icon-active-38.png b/chromium/images/icons/icon-active-38.png similarity index 100% rename from common/icons/icon-active-38.png rename to chromium/images/icons/icon-active-38.png diff --git a/common/icons/icon-active-48.png b/chromium/images/icons/icon-active-48.png similarity index 100% rename from common/icons/icon-active-48.png rename to chromium/images/icons/icon-active-48.png diff --git a/common/icons/icon-blocking-38.png b/chromium/images/icons/icon-blocking-38.png similarity index 100% rename from common/icons/icon-blocking-38.png rename to chromium/images/icons/icon-blocking-38.png diff --git a/common/icons/icon-disabled-38.png b/chromium/images/icons/icon-disabled-38.png similarity index 100% rename from common/icons/icon-disabled-38.png rename to chromium/images/icons/icon-disabled-38.png diff --git a/chromium/images/onboarding/httpseverywhere-logo.png b/chromium/images/onboarding/httpseverywhere-logo.png new file mode 100644 index 000000000000..30aebc3ee763 Binary files /dev/null and b/chromium/images/onboarding/httpseverywhere-logo.png differ diff --git a/chromium/remove.png b/chromium/images/remove.png similarity index 100% rename from chromium/remove.png rename to chromium/images/remove.png diff --git a/chromium/incognito-cache-clearing.js b/chromium/incognito-cache-clearing.js deleted file mode 100644 index c0125a2bb5cf..000000000000 --- a/chromium/incognito-cache-clearing.js +++ /dev/null @@ -1,65 +0,0 @@ -"use strict"; -// This file keeps track of incognito sessions, and clears any caches after -// an entire incognito session is closed (i.e. all incognito windows are closed). - -let incognito_session_exists = false; - -/** - * Detect if an incognito session is created, so we can clear caches when it's destroyed. - * - * @param window: A standard Window object. - */ -function detect_incognito_creation(window) { - if (window.incognito === true) { - incognito_session_exists = true; - } -} - -/** - * Clear any caches we have. - * Called if an incognito session is destroyed. - */ -function destroy_caches() { - log(DBUG, "Destroying caches."); - all_rules.cookieHostCache.clear(); - all_rules.ruleCache.clear(); -} - -/** - * Check if any incognito window still exists. If not, destroy caches. - * @param arrayOfWindows: A array of all open Window objects. - */ -function check_for_incognito_session(arrayOfWindows) { - for (let window of arrayOfWindows) { - if (window.incognito === true) { - // An incognito window still exists, so don't destroy caches yet. - return; - } - } - // All incognito windows have been closed. - incognito_session_exists = false; - destroy_caches(); -} - -/** - * If a window is destroyed, and an incognito session existed, see if it still does. - * - * @param windowId: Ignored. - */ -function detect_incognito_destruction(windowId) { - if (incognito_session_exists) { - // Are any current windows incognito? - chrome.windows.getAll(check_for_incognito_session); - } -} - - -// Listen to window creation, so we can detect if an incognito window is created -if (chrome.windows) { - chrome.windows.onCreated.addListener(detect_incognito_creation); -} - -// Listen to window destruction, so we can clear caches if all incognito windows are destroyed -if (chrome.windows) { - chrome.windows.onRemoved.addListener(detect_incognito_destruction); -} diff --git a/chromium/manifest.json b/chromium/manifest.json index a5eb7afe51e3..5a1ee704713e 100644 --- a/chromium/manifest.json +++ b/chromium/manifest.json @@ -5,46 +5,59 @@ "update_url": "https://www.eff.org/files/https-everywhere-updates.json" } }, - "author": "eff.software.projects@gmail.com", + "author": "extension-devs@eff.org", "background": { "scripts": [ - "rules.js", - "storage.js", - "util.js", - "background.js", - "incognito-cache-clearing.js" + "background-scripts/bootstrap.js", + "background-scripts/util.js", + "wasm/https_everywhere_lib_wasm.js", + "background-scripts/wasm.js", + "background-scripts/update_channels.js", + "background-scripts/update.js", + "background-scripts/rules.js", + "background-scripts/store.js", + "external/pako-1.0.5/pako_inflate.min.js", + "background-scripts/incognito.js", + "background-scripts/ip_utils.js", + "background-scripts/modules/ssl_codes.js", + "background-scripts/background.js" ] - }, - "options_ui": { - "page": "options.html" }, "browser_action": { "default_icon": { - "38": "icons/icon-active-38.png" - }, - "default_popup": "popup.html", + "38": "images/icons/icon-active-38.png" + }, + "default_popup": "pages/popup/index.html", "default_title": "__MSG_about_ext_name__" - }, - "default_locale": "en", - "description": "__MSG_about_ext_description__", - "devtools_page": "devtools.html", - "homepage_url": "https://www.eff.org/https-everywhere", + }, + "content_security_policy": "script-src 'self' 'wasm-eval'; object-src 'self'", + "default_locale": "en", + "description": "__MSG_about_ext_description__", + "homepage_url": "https://www.eff.org/https-everywhere", "icons": { - "128": "icons/icon-active-128.png", - "48": "icons/icon-active-48.png" - }, - "incognito": "spanning", - "manifest_version": 2, + "128": "images/icons/icon-active-128.png", + "48": "images/icons/icon-active-48.png" + }, + "incognito": "split", + "manifest_version": 2, "minimum_chrome_version": "55", - "name": "__MSG_about_ext_name__", + "name": "__MSG_about_ext_name__", + "options_ui": { + "open_in_tab": true, + "page": "pages/options/index.html" + }, "permissions": [ - "webNavigation", - "webRequest", - "webRequestBlocking", - "tabs", - "cookies", - "storage", - "*://*/*" - ], - "version": "2017.7.18" -} + "webNavigation", + "webRequest", + "webRequestBlocking", + "tabs", + "cookies", + "storage", + "*://*/*", + "ftp://*/*" + ], + "version": "2022.5.24", + "web_accessible_resources": [ + "/pages/cancel/index.html" + ] +} \ No newline at end of file diff --git a/chromium/options.css b/chromium/options.css deleted file mode 100644 index 1e9f0418e2b9..000000000000 --- a/chromium/options.css +++ /dev/null @@ -1,17 +0,0 @@ -.section-header{ - margin-bottom: 10px; -} - -.section-header-span{ - border-bottom: 1px solid #ccc; - font-size: 15px; -} - -#import{ - margin-bottom: 10px; - float: right; -} - -#import-confirmed{ - display: none; -} diff --git a/chromium/options.html b/chromium/options.html deleted file mode 100644 index 3a7ae116aa33..000000000000 --- a/chromium/options.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - -
- -
-
-
- -
- -
- - - diff --git a/chromium/options.js b/chromium/options.js deleted file mode 100644 index d979c504e0f2..000000000000 --- a/chromium/options.js +++ /dev/null @@ -1,28 +0,0 @@ -document.addEventListener("DOMContentLoaded", () => { - - let json_data; - let import_button = document.querySelector("#import"); - - function import_json(e) { - e.preventDefault(); - - let settings = JSON.parse(json_data); - sendMessage("import_settings", settings, resp => { - document.querySelector("#import-confirmed").style.display = "block"; - document.querySelector("form").style.display = "none"; - }); - } - - document.querySelector("#import-settings").addEventListener("change", event => { - const file = event.target.files[0]; - const reader = new FileReader(); - reader.onload = event => { - json_data = event.target.result; - import_button.disabled = false; - }; - - reader.readAsText(file); - }); - - document.querySelector("form").addEventListener("submit", import_json); -}); diff --git a/chromium/package-lock.json b/chromium/package-lock.json new file mode 100644 index 000000000000..0886adcdb32c --- /dev/null +++ b/chromium/package-lock.json @@ -0,0 +1,2909 @@ +{ + "name": "https-everywhere", + "version": "1.0.0", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "@babel/code-frame": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", + "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", + "dev": true, + "requires": { + "@babel/highlight": "^7.10.4" + } + }, + "@babel/core": { + "version": "7.11.1", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.11.1.tgz", + "integrity": "sha512-XqF7F6FWQdKGGWAzGELL+aCO1p+lRY5Tj5/tbT3St1G8NaH70jhhDIKknIZaDans0OQBG5wRAldROLHSt44BgQ==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.10.4", + "@babel/generator": "^7.11.0", + "@babel/helper-module-transforms": "^7.11.0", + "@babel/helpers": "^7.10.4", + "@babel/parser": "^7.11.1", + "@babel/template": "^7.10.4", + "@babel/traverse": "^7.11.0", + "@babel/types": "^7.11.0", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.1", + "json5": "^2.1.2", + "lodash": "^4.17.19", + "resolve": "^1.3.2", + "semver": "^5.4.1", + "source-map": "^0.5.0" + }, + "dependencies": { + "debug": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", + "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true + } + } + }, + "@babel/generator": { + "version": "7.11.0", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.11.0.tgz", + "integrity": "sha512-fEm3Uzw7Mc9Xi//qU20cBKatTfs2aOtKqmvy/Vm7RkJEGFQ4xc9myCfbXxqK//ZS8MR/ciOHw6meGASJuKmDfQ==", + "dev": true, + "requires": { + "@babel/types": "^7.11.0", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + } + }, + "@babel/helper-function-name": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz", + "integrity": "sha512-YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ==", + "dev": true, + "requires": { + "@babel/helper-get-function-arity": "^7.10.4", + "@babel/template": "^7.10.4", + "@babel/types": "^7.10.4" + } + }, + "@babel/helper-get-function-arity": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz", + "integrity": "sha512-EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==", + "dev": true, + "requires": { + "@babel/types": "^7.10.4" + } + }, + "@babel/helper-member-expression-to-functions": { + "version": "7.11.0", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.11.0.tgz", + "integrity": "sha512-JbFlKHFntRV5qKw3YC0CvQnDZ4XMwgzzBbld7Ly4Mj4cbFy3KywcR8NtNctRToMWJOVvLINJv525Gd6wwVEx/Q==", + "dev": true, + "requires": { + "@babel/types": "^7.11.0" + } + }, + "@babel/helper-module-imports": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.10.4.tgz", + "integrity": "sha512-nEQJHqYavI217oD9+s5MUBzk6x1IlvoS9WTPfgG43CbMEeStE0v+r+TucWdx8KFGowPGvyOkDT9+7DHedIDnVw==", + "dev": true, + "requires": { + "@babel/types": "^7.10.4" + } + }, + "@babel/helper-module-transforms": { + "version": "7.11.0", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.11.0.tgz", + "integrity": "sha512-02EVu8COMuTRO1TAzdMtpBPbe6aQ1w/8fePD2YgQmxZU4gpNWaL9gK3Jp7dxlkUlUCJOTaSeA+Hrm1BRQwqIhg==", + "dev": true, + "requires": { + "@babel/helper-module-imports": "^7.10.4", + "@babel/helper-replace-supers": "^7.10.4", + "@babel/helper-simple-access": "^7.10.4", + "@babel/helper-split-export-declaration": "^7.11.0", + "@babel/template": "^7.10.4", + "@babel/types": "^7.11.0", + "lodash": "^4.17.19" + } + }, + "@babel/helper-optimise-call-expression": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.10.4.tgz", + "integrity": "sha512-n3UGKY4VXwXThEiKrgRAoVPBMqeoPgHVqiHZOanAJCG9nQUL2pLRQirUzl0ioKclHGpGqRgIOkgcIJaIWLpygg==", + "dev": true, + "requires": { + "@babel/types": "^7.10.4" + } + }, + "@babel/helper-replace-supers": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.10.4.tgz", + "integrity": "sha512-sPxZfFXocEymYTdVK1UNmFPBN+Hv5mJkLPsYWwGBxZAxaWfFu+xqp7b6qWD0yjNuNL2VKc6L5M18tOXUP7NU0A==", + "dev": true, + "requires": { + "@babel/helper-member-expression-to-functions": "^7.10.4", + "@babel/helper-optimise-call-expression": "^7.10.4", + "@babel/traverse": "^7.10.4", + "@babel/types": "^7.10.4" + } + }, + "@babel/helper-simple-access": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.10.4.tgz", + "integrity": "sha512-0fMy72ej/VEvF8ULmX6yb5MtHG4uH4Dbd6I/aHDb/JVg0bbivwt9Wg+h3uMvX+QSFtwr5MeItvazbrc4jtRAXw==", + "dev": true, + "requires": { + "@babel/template": "^7.10.4", + "@babel/types": "^7.10.4" + } + }, + "@babel/helper-split-export-declaration": { + "version": "7.11.0", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz", + "integrity": "sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg==", + "dev": true, + "requires": { + "@babel/types": "^7.11.0" + } + }, + "@babel/helper-validator-identifier": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", + "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==", + "dev": true + }, + "@babel/helpers": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.10.4.tgz", + "integrity": "sha512-L2gX/XeUONeEbI78dXSrJzGdz4GQ+ZTA/aazfUsFaWjSe95kiCuOZ5HsXvkiw3iwF+mFHSRUfJU8t6YavocdXA==", + "dev": true, + "requires": { + "@babel/template": "^7.10.4", + "@babel/traverse": "^7.10.4", + "@babel/types": "^7.10.4" + } + }, + "@babel/highlight": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz", + "integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==", + "dev": true, + "requires": { + "@babel/helper-validator-identifier": "^7.10.4", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + } + }, + "@babel/parser": { + "version": "7.11.3", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.11.3.tgz", + "integrity": "sha512-REo8xv7+sDxkKvoxEywIdsNFiZLybwdI7hcT5uEPyQrSMB4YQ973BfC9OOrD/81MaIjh6UxdulIQXkjmiH3PcA==", + "dev": true + }, + "@babel/runtime": { + "version": "7.12.5", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz", + "integrity": "sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==", + "dev": true, + "requires": { + "regenerator-runtime": "^0.13.4" + } + }, + "@babel/template": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.10.4.tgz", + "integrity": "sha512-ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.10.4", + "@babel/parser": "^7.10.4", + "@babel/types": "^7.10.4" + } + }, + "@babel/traverse": { + "version": "7.11.0", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.11.0.tgz", + "integrity": "sha512-ZB2V+LskoWKNpMq6E5UUCrjtDUh5IOTAyIl0dTjIEoXum/iKWkoIEKIRDnUucO6f+2FzNkE0oD4RLKoPIufDtg==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.10.4", + "@babel/generator": "^7.11.0", + "@babel/helper-function-name": "^7.10.4", + "@babel/helper-split-export-declaration": "^7.11.0", + "@babel/parser": "^7.11.0", + "@babel/types": "^7.11.0", + "debug": "^4.1.0", + "globals": "^11.1.0", + "lodash": "^4.17.19" + }, + "dependencies": { + "debug": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", + "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + } + } + }, + "@babel/types": { + "version": "7.11.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.11.0.tgz", + "integrity": "sha512-O53yME4ZZI0jO1EVGtF1ePGl0LHirG4P1ibcD80XyzZcKhcMFeCXmh4Xb1ifGBIV233Qg12x4rBfQgA+tmOukA==", + "dev": true, + "requires": { + "@babel/helper-validator-identifier": "^7.10.4", + "lodash": "^4.17.19", + "to-fast-properties": "^2.0.0" + } + }, + "@codemirror/autocomplete": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/@codemirror/autocomplete/-/autocomplete-6.0.2.tgz", + "integrity": "sha512-9PDjnllmXan/7Uax87KGORbxerDJ/cu10SB+n4Jz0zXMEvIh3+TGgZxhIvDOtaQ4jDBQEM7kHYW4vLdQB0DGZQ==", + "dev": true, + "requires": { + "@codemirror/language": "^6.0.0", + "@codemirror/state": "^6.0.0", + "@codemirror/view": "^6.0.0", + "@lezer/common": "^1.0.0" + } + }, + "@codemirror/commands": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@codemirror/commands/-/commands-6.0.1.tgz", + "integrity": "sha512-iNHDByicYqQjs0Wo1MKGfqNbMYMyhS9WV6EwMVwsHXImlFemgEUC+c5X22bXKBStN3qnwg4fArNZM+gkv22baQ==", + "dev": true, + "requires": { + "@codemirror/language": "^6.0.0", + "@codemirror/state": "^6.0.0", + "@codemirror/view": "^6.0.0", + "@lezer/common": "^1.0.0" + } + }, + "@codemirror/language": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/@codemirror/language/-/language-6.2.0.tgz", + "integrity": "sha512-tabB0Ef/BflwoEmTB4a//WZ9P90UQyne9qWB9YFsmeS4bnEqSys7UpGk/da1URMXhyfuzWCwp+AQNMhvu8SfnA==", + "dev": true, + "requires": { + "@codemirror/state": "^6.0.0", + "@codemirror/view": "^6.0.0", + "@lezer/common": "^1.0.0", + "@lezer/highlight": "^1.0.0", + "@lezer/lr": "^1.0.0", + "style-mod": "^4.0.0" + } + }, + "@codemirror/lint": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/@codemirror/lint/-/lint-6.0.0.tgz", + "integrity": "sha512-nUUXcJW1Xp54kNs+a1ToPLK8MadO0rMTnJB8Zk4Z8gBdrN0kqV7uvUraU/T2yqg+grDNR38Vmy/MrhQN/RgwiA==", + "dev": true, + "requires": { + "@codemirror/state": "^6.0.0", + "@codemirror/view": "^6.0.0", + "crelt": "^1.0.5" + } + }, + "@codemirror/search": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/@codemirror/search/-/search-6.0.0.tgz", + "integrity": "sha512-rL0rd3AhI0TAsaJPUaEwC63KHLO7KL0Z/dYozXj6E7L3wNHRyx7RfE0/j5HsIf912EE5n2PCb4Vg0rGYmDv4UQ==", + "dev": true, + "requires": { + "@codemirror/state": "^6.0.0", + "@codemirror/view": "^6.0.0", + "crelt": "^1.0.5" + } + }, + "@codemirror/state": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/@codemirror/state/-/state-6.1.0.tgz", + "integrity": "sha512-qbUr94DZTe6/V1VS7LDLz11rM/1t/nJxR1El4I6UaxDEdc0aZZvq6JCLJWiRmUf95NRAnDH6fhXn+PWp9wGCIg==", + "dev": true + }, + "@codemirror/view": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/@codemirror/view/-/view-6.0.2.tgz", + "integrity": "sha512-mnVT/q1JvKPjpmjXJNeCi/xHyaJ3abGJsumIVpdQ1nE1MXAyHf7GHWt8QpWMUvDiqF0j+inkhVR2OviTdFFX7Q==", + "dev": true, + "requires": { + "@codemirror/state": "^6.0.0", + "style-mod": "^4.0.0", + "w3c-keyname": "^2.2.4" + } + }, + "@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "dev": true, + "requires": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, + "dependencies": { + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "requires": { + "p-locate": "^4.1.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "requires": { + "p-limit": "^2.2.0" + } + }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true + } + } + }, + "@istanbuljs/schema": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.2.tgz", + "integrity": "sha512-tsAQNx32a8CoFhjhijUIhI4kccIAgmGhy8LZMZgGfmXcpMbPRUqn5LWmgRttILi6yeGmBJd2xsPkFMs0PzgPCw==", + "dev": true + }, + "@lezer/common": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@lezer/common/-/common-1.0.0.tgz", + "integrity": "sha512-ohydQe+Hb+w4oMDvXzs8uuJd2NoA3D8YDcLiuDsLqH+yflDTPEpgCsWI3/6rH5C3BAedtH1/R51dxENldQceEA==", + "dev": true + }, + "@lezer/highlight": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@lezer/highlight/-/highlight-1.0.0.tgz", + "integrity": "sha512-nsCnNtim90UKsB5YxoX65v3GEIw3iCHw9RM2DtdgkiqAbKh9pCdvi8AWNwkYf10Lu6fxNhXPpkpHbW6mihhvJA==", + "dev": true, + "requires": { + "@lezer/common": "^1.0.0" + } + }, + "@lezer/lr": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@lezer/lr/-/lr-1.1.0.tgz", + "integrity": "sha512-Iad04uVwk1PvSnj25mqj7zEEIRAsasbsTRmVzI0AUTs/+1Dz1//iYAaoLr7A+Xa7bZDfql5MKTxZmSlkYZD3Dg==", + "dev": true, + "requires": { + "@lezer/common": "^1.0.0" + } + }, + "@sinonjs/commons": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.1.tgz", + "integrity": "sha512-892K+kWUUi3cl+LlqEWIDrhvLgdL79tECi8JZUyq6IviKy/DNhuzCRlbHUjxK89f4ypPMMaFnFuR9Ie6DoIMsw==", + "dev": true, + "requires": { + "type-detect": "4.0.8" + } + }, + "@sinonjs/fake-timers": { + "version": "9.1.2", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-9.1.2.tgz", + "integrity": "sha512-BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw==", + "dev": true, + "requires": { + "@sinonjs/commons": "^1.7.0" + } + }, + "@sinonjs/samsam": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/@sinonjs/samsam/-/samsam-6.1.1.tgz", + "integrity": "sha512-cZ7rKJTLiE7u7Wi/v9Hc2fs3Ucc3jrWeMgPHbbTCeVAB2S0wOBbYlkJVeNSL04i7fdhT8wIbDq1zhC/PXTD2SA==", + "dev": true, + "requires": { + "@sinonjs/commons": "^1.6.0", + "lodash.get": "^4.4.2", + "type-detect": "^4.0.8" + } + }, + "@sinonjs/text-encoding": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/@sinonjs/text-encoding/-/text-encoding-0.7.1.tgz", + "integrity": "sha512-+iTbntw2IZPb/anVDbypzfQa+ay64MW0Zo8aJ8gZPWMMK6/OubMVb6lUPMagqjOPnmtauXnFCACVl3O7ogjeqQ==", + "dev": true + }, + "@types/color-name": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz", + "integrity": "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==", + "dev": true + }, + "@ungap/promise-all-settled": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@ungap/promise-all-settled/-/promise-all-settled-1.1.2.tgz", + "integrity": "sha512-sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q==", + "dev": true + }, + "aggregate-error": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.0.1.tgz", + "integrity": "sha512-quoaXsZ9/BLNae5yiNoUz+Nhkwz83GhWwtYFglcjEQB2NDHCIpApbqXxIFnm4Pq/Nvhrsq5sYJFyohrrxnTGAA==", + "dev": true, + "requires": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + } + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ansi-colors": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", + "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==", + "dev": true + }, + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "anymatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", + "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "dev": true, + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "append-transform": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/append-transform/-/append-transform-2.0.0.tgz", + "integrity": "sha512-7yeyCEurROLQJFv5Xj4lEGTy0borxepjFv1g22oAdqFu//SrAlDl1O1Nxx15SH1RoliUml6p8dwJW9jvZughhg==", + "dev": true, + "requires": { + "default-require-extensions": "^3.0.0" + } + }, + "archy": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz", + "integrity": "sha1-+cjBN1fMHde8N5rHeyxipcKGjEA=", + "dev": true + }, + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "requires": { + "sprintf-js": "~1.0.2" + } + }, + "array-from": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/array-from/-/array-from-2.1.1.tgz", + "integrity": "sha1-z+nYwmYoudxa7MYqn12PHzUsEZU=", + "dev": true + }, + "asn1": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", + "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", + "dev": true, + "requires": { + "safer-buffer": "~2.1.0" + } + }, + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", + "dev": true + }, + "assertion-error": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz", + "integrity": "sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==", + "dev": true + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=", + "dev": true + }, + "atob": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", + "dev": true + }, + "aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=", + "dev": true + }, + "aws4": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz", + "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==", + "dev": true + }, + "balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", + "dev": true + }, + "bcrypt-pbkdf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", + "dev": true, + "requires": { + "tweetnacl": "^0.14.3" + } + }, + "binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "requires": { + "fill-range": "^7.0.1" + } + }, + "browser-stdout": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz", + "integrity": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==", + "dev": true + }, + "btoa": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/btoa/-/btoa-1.2.1.tgz", + "integrity": "sha512-SB4/MIGlsiVkMcHmT+pSmIPoNDoHg+7cMzmt3Uxt628MTz2487DKSqK/fuhFBrkuqrYv5UCEnACpF4dTFNKc/g==", + "dev": true + }, + "caching-transform": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/caching-transform/-/caching-transform-4.0.0.tgz", + "integrity": "sha512-kpqOvwXnjjN44D89K5ccQC+RUrsy7jB/XLlRrx0D7/2HNcTPqzsb6XgYoErwko6QsV184CA2YgS1fxDiiDZMWA==", + "dev": true, + "requires": { + "hasha": "^5.0.0", + "make-dir": "^3.0.0", + "package-hash": "^4.0.0", + "write-file-atomic": "^3.0.0" + } + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true + }, + "caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=", + "dev": true + }, + "chai": { + "version": "4.3.6", + "resolved": "https://registry.npmjs.org/chai/-/chai-4.3.6.tgz", + "integrity": "sha512-bbcp3YfHCUzMOvKqsztczerVgBKSsEijCySNlHHbX3VG1nskvqjz5Rfso1gGwD6w6oOV3eI60pKuMOV5MV7p3Q==", + "dev": true, + "requires": { + "assertion-error": "^1.1.0", + "check-error": "^1.0.2", + "deep-eql": "^3.0.1", + "get-func-name": "^2.0.0", + "loupe": "^2.3.1", + "pathval": "^1.1.1", + "type-detect": "^4.0.5" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "check-error": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/check-error/-/check-error-1.0.2.tgz", + "integrity": "sha1-V00xLt2Iu13YkS6Sht1sCu1KrII=", + "dev": true + }, + "chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "dev": true, + "requires": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "fsevents": "~2.3.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + } + }, + "clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "dev": true + }, + "cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "codemirror": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/codemirror/-/codemirror-6.0.1.tgz", + "integrity": "sha512-J8j+nZ+CdWmIeFIGXEFbFPtpiYacFMDR8GlHK3IyHQJMCaVRfGx9NT+Hxivv1ckLWPvNdZqndbr/7lVhrf/Svg==", + "dev": true, + "requires": { + "@codemirror/autocomplete": "^6.0.0", + "@codemirror/commands": "^6.0.0", + "@codemirror/language": "^6.0.0", + "@codemirror/lint": "^6.0.0", + "@codemirror/search": "^6.0.0", + "@codemirror/state": "^6.0.0", + "@codemirror/view": "^6.0.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, + "requires": { + "delayed-stream": "~1.0.0" + } + }, + "commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=", + "dev": true + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + }, + "convert-source-map": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz", + "integrity": "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.1" + } + }, + "core-js": { + "version": "3.8.1", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.8.1.tgz", + "integrity": "sha512-9Id2xHY1W7m8hCl8NkhQn5CufmF/WuR30BTRewvCXc1aZd3kMECwNZ69ndLbekKfakw9Rf2Xyc+QR6E7Gg+obg==", + "dev": true + }, + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "coveralls": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/coveralls/-/coveralls-3.1.1.tgz", + "integrity": "sha512-+dxnG2NHncSD1NrqbSM3dn/lE57O6Qf/koe9+I7c+wzkqRmEvcp0kgJdxKInzYzkICKkFMZsX3Vct3++tsF9ww==", + "dev": true, + "requires": { + "js-yaml": "^3.13.1", + "lcov-parse": "^1.0.0", + "log-driver": "^1.2.7", + "minimist": "^1.2.5", + "request": "^2.88.2" + } + }, + "crelt": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/crelt/-/crelt-1.0.5.tgz", + "integrity": "sha512-+BO9wPPi+DWTDcNYhr/W90myha8ptzftZT+LwcmUbbok0rcP/fequmFYCw8NMoH7pkAZQzU78b3kYrlua5a9eA==", + "dev": true + }, + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", + "dev": true, + "requires": { + "assert-plus": "^1.0.0" + } + }, + "debug": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz", + "integrity": "sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", + "dev": true + }, + "deep-eql": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-3.0.1.tgz", + "integrity": "sha512-+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw==", + "dev": true, + "requires": { + "type-detect": "^4.0.0" + } + }, + "default-require-extensions": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/default-require-extensions/-/default-require-extensions-3.0.0.tgz", + "integrity": "sha512-ek6DpXq/SCpvjhpFsLFRVtIxJCRw6fUR42lYMVZuUMK7n8eMz4Uh5clckdBjEpLhn/gEBZo7hDJnJcwdKLKQjg==", + "dev": true, + "requires": { + "strip-bom": "^4.0.0" + } + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", + "dev": true + }, + "diff": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/diff/-/diff-5.0.0.tgz", + "integrity": "sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==", + "dev": true + }, + "ecc-jsbn": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", + "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", + "dev": true, + "requires": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + } + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "es6-error": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/es6-error/-/es6-error-4.1.1.tgz", + "integrity": "sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==", + "dev": true + }, + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "dev": true + }, + "esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true + }, + "extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "dev": true + }, + "extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=", + "dev": true + }, + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "fetch-mock": { + "version": "9.11.0", + "resolved": "https://registry.npmjs.org/fetch-mock/-/fetch-mock-9.11.0.tgz", + "integrity": "sha512-PG1XUv+x7iag5p/iNHD4/jdpxL9FtVSqRMUQhPab4hVDt80T1MH5ehzVrL2IdXO9Q2iBggArFvPqjUbHFuI58Q==", + "dev": true, + "requires": { + "@babel/core": "^7.0.0", + "@babel/runtime": "^7.0.0", + "core-js": "^3.0.0", + "debug": "^4.1.1", + "glob-to-regexp": "^0.4.0", + "is-subset": "^0.1.1", + "lodash.isequal": "^4.5.0", + "path-to-regexp": "^2.2.1", + "querystring": "^0.2.0", + "whatwg-url": "^6.5.0" + } + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "find-cache-dir": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz", + "integrity": "sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==", + "dev": true, + "requires": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + } + }, + "find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "requires": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + } + }, + "flat": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", + "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", + "dev": true + }, + "foreground-child": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-2.0.0.tgz", + "integrity": "sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==", + "dev": true, + "requires": { + "cross-spawn": "^7.0.0", + "signal-exit": "^3.0.2" + } + }, + "forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=", + "dev": true + }, + "form-data": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", + "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", + "dev": true, + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + } + }, + "fromentries": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/fromentries/-/fromentries-1.2.1.tgz", + "integrity": "sha512-Xu2Qh8yqYuDhQGOhD5iJGninErSfI9A3FrriD3tjUgV5VbJFeH8vfgZ9HnC6jWN80QDVNQK5vmxRAmEAp7Mevw==", + "dev": true + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true + }, + "fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "optional": true + }, + "gensync": { + "version": "1.0.0-beta.1", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.1.tgz", + "integrity": "sha512-r8EC6NO1sngH/zdD9fiRDLdcgnbayXah+mLgManTaIZJqEC1MZstmnox8KpnI2/fxQwrp5OpCOYWLp4rBl4Jcg==", + "dev": true + }, + "get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true + }, + "get-func-name": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.0.tgz", + "integrity": "sha1-6td0q+5y4gQJQzoGY2YCPdaIekE=", + "dev": true + }, + "get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", + "dev": true + }, + "getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", + "dev": true, + "requires": { + "assert-plus": "^1.0.0" + } + }, + "glob": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", + "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "requires": { + "is-glob": "^4.0.1" + } + }, + "glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", + "dev": true + }, + "globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true + }, + "graceful-fs": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz", + "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==", + "dev": true + }, + "har-schema": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=", + "dev": true + }, + "har-validator": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", + "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", + "dev": true, + "requires": { + "ajv": "^6.12.3", + "har-schema": "^2.0.0" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "hasha": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/hasha/-/hasha-5.2.0.tgz", + "integrity": "sha512-2W+jKdQbAdSIrggA8Q35Br8qKadTrqCTC8+XZvBWepKDK6m9XkX6Iz1a2yh2KP01kzAR/dpuMeUnocoLYDcskw==", + "dev": true, + "requires": { + "is-stream": "^2.0.0", + "type-fest": "^0.8.0" + } + }, + "he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "dev": true + }, + "html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", + "dev": true + }, + "http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", + "dev": true, + "requires": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + } + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", + "dev": true + }, + "indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "dev": true + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true + }, + "is-plain-obj": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz", + "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==", + "dev": true + }, + "is-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz", + "integrity": "sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==", + "dev": true + }, + "is-subset": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-subset/-/is-subset-0.1.1.tgz", + "integrity": "sha1-ilkRfZMt4d4A8kX83TnOQ/HpOaY=", + "dev": true + }, + "is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=", + "dev": true + }, + "is-unicode-supported": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", + "dev": true + }, + "is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "dev": true + }, + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", + "dev": true + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", + "dev": true + }, + "isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=", + "dev": true + }, + "istanbul-lib-coverage": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz", + "integrity": "sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg==", + "dev": true + }, + "istanbul-lib-hook": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-hook/-/istanbul-lib-hook-3.0.0.tgz", + "integrity": "sha512-Pt/uge1Q9s+5VAZ+pCo16TYMWPBIl+oaNIjgLQxcX0itS6ueeaA+pEfThZpH8WxhFgCiEb8sAJY6MdUKgiIWaQ==", + "dev": true, + "requires": { + "append-transform": "^2.0.0" + } + }, + "istanbul-lib-instrument": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz", + "integrity": "sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==", + "dev": true, + "requires": { + "@babel/core": "^7.7.5", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.0.0", + "semver": "^6.3.0" + } + }, + "istanbul-lib-processinfo": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/istanbul-lib-processinfo/-/istanbul-lib-processinfo-2.0.2.tgz", + "integrity": "sha512-kOwpa7z9hme+IBPZMzQ5vdQj8srYgAtaRqeI48NGmAQ+/5yKiHLV0QbYqQpxsdEF0+w14SoB8YbnHKcXE2KnYw==", + "dev": true, + "requires": { + "archy": "^1.0.0", + "cross-spawn": "^7.0.0", + "istanbul-lib-coverage": "^3.0.0-alpha.1", + "make-dir": "^3.0.0", + "p-map": "^3.0.0", + "rimraf": "^3.0.0", + "uuid": "^3.3.3" + }, + "dependencies": { + "uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "dev": true + } + } + }, + "istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", + "dev": true, + "requires": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^3.0.0", + "supports-color": "^7.1.0" + } + }, + "istanbul-lib-source-maps": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.0.tgz", + "integrity": "sha512-c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU/DisrZg==", + "dev": true, + "requires": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + }, + "dependencies": { + "debug": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", + "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "istanbul-reports": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.0.2.tgz", + "integrity": "sha512-9tZvz7AiR3PEDNGiV9vIouQ/EAcqMXFmkcA1CDFTwOB98OZVDL0PH9glHotf5Ugp6GCOTypfzGWI/OqjWNCRUw==", + "dev": true, + "requires": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + } + }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true + }, + "js-yaml": { + "version": "3.13.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz", + "integrity": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==", + "dev": true, + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + }, + "jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", + "dev": true + }, + "jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true + }, + "json-schema": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==", + "dev": true + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=", + "dev": true + }, + "json5": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.3.tgz", + "integrity": "sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==", + "dev": true, + "requires": { + "minimist": "^1.2.5" + } + }, + "jsprim": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", + "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", + "dev": true, + "requires": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.4.0", + "verror": "1.10.0" + } + }, + "just-extend": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/just-extend/-/just-extend-4.1.0.tgz", + "integrity": "sha512-ApcjaOdVTJ7y4r08xI5wIqpvwS48Q0PBG4DJROcEkH1f8MdAiNFyFxz3xoL0LWAVwjrwPYZdVHHxhRHcx/uGLA==", + "dev": true + }, + "lcov-parse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lcov-parse/-/lcov-parse-1.0.0.tgz", + "integrity": "sha1-6w1GtUER68VhrLTECO+TY73I9+A=", + "dev": true + }, + "locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "requires": { + "p-locate": "^5.0.0" + } + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true + }, + "lodash.flattendeep": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz", + "integrity": "sha1-+wMJF/hqMTTlvJvsDWngAT3f7bI=", + "dev": true + }, + "lodash.get": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz", + "integrity": "sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk=", + "dev": true + }, + "lodash.isequal": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", + "integrity": "sha1-QVxEePK8wwEgwizhDtMib30+GOA=", + "dev": true + }, + "lodash.sortby": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", + "integrity": "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=", + "dev": true + }, + "log-driver": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/log-driver/-/log-driver-1.2.7.tgz", + "integrity": "sha512-U7KCmLdqsGHBLeWqYlFA0V0Sl6P08EE1ZrmA9cxjUE0WVqT9qnyVDPz1kzpFEP0jdJuFnasWIfSd7fsaNXkpbg==", + "dev": true + }, + "log-symbols": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "dev": true, + "requires": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + } + } + }, + "lolex": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/lolex/-/lolex-4.2.0.tgz", + "integrity": "sha512-gKO5uExCXvSm6zbF562EvM+rd1kQDnB9AZBbiQVzf1ZmdDpxUSvpnAaVOP83N/31mRK8Ml8/VE8DMvsAZQ+7wg==", + "dev": true + }, + "loupe": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/loupe/-/loupe-2.3.1.tgz", + "integrity": "sha512-EN1D3jyVmaX4tnajVlfbREU4axL647hLec1h/PXAb8CPDMJiYitcWF2UeLVNttRqaIqQs4x+mRvXf+d+TlDrCA==", + "dev": true, + "requires": { + "get-func-name": "^2.0.0" + } + }, + "make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dev": true, + "requires": { + "semver": "^6.0.0" + } + }, + "mime-db": { + "version": "1.48.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.48.0.tgz", + "integrity": "sha512-FM3QwxV+TnZYQ2aRqhlKBMHxk10lTbMt3bBkMAp54ddrNeVSfcQYOOKuGuy3Ddrm38I04If834fOUSq1yzslJQ==", + "dev": true + }, + "mime-types": { + "version": "2.1.31", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.31.tgz", + "integrity": "sha512-XGZnNzm3QvgKxa8dpzyhFTHmpP3l5YNusmne07VUOXxou9CqUqYa/HBy124RqtVh/O2pECas/MOcsDgpilPOPg==", + "dev": true, + "requires": { + "mime-db": "1.48.0" + } + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", + "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==", + "dev": true + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", + "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", + "dev": true, + "requires": { + "minimist": "^1.2.5" + } + }, + "mocha": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/mocha/-/mocha-10.0.0.tgz", + "integrity": "sha512-0Wl+elVUD43Y0BqPZBzZt8Tnkw9CMUdNYnUsTfOM1vuhJVZL+kiesFYsqwBkEEuEixaiPe5ZQdqDgX2jddhmoA==", + "dev": true, + "requires": { + "@ungap/promise-all-settled": "1.1.2", + "ansi-colors": "4.1.1", + "browser-stdout": "1.3.1", + "chokidar": "3.5.3", + "debug": "4.3.4", + "diff": "5.0.0", + "escape-string-regexp": "4.0.0", + "find-up": "5.0.0", + "glob": "7.2.0", + "he": "1.2.0", + "js-yaml": "4.1.0", + "log-symbols": "4.1.0", + "minimatch": "5.0.1", + "ms": "2.1.3", + "nanoid": "3.3.3", + "serialize-javascript": "6.0.0", + "strip-json-comments": "3.1.1", + "supports-color": "8.1.1", + "workerpool": "6.2.1", + "yargs": "16.2.0", + "yargs-parser": "20.2.4", + "yargs-unparser": "2.0.0" + }, + "dependencies": { + "argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "requires": { + "ms": "2.1.2" + }, + "dependencies": { + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + } + } + }, + "escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true + }, + "glob": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", + "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "dependencies": { + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + } + } + }, + "js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "requires": { + "argparse": "^2.0.1" + } + }, + "minimatch": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.0.1.tgz", + "integrity": "sha512-nLDxIFRyhDblz3qMuq+SoRZED4+miJ/G+tdDrjkkkRnjAsBexeGpgjLEQ0blJy7rHhR2b93rhQY4SvyWu9v03g==", + "dev": true, + "requires": { + "brace-expansion": "^2.0.1" + }, + "dependencies": { + "brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0" + } + } + } + }, + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + }, + "supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "nan": { + "version": "2.16.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.16.0.tgz", + "integrity": "sha512-UdAqHyFngu7TfQKsCBgAA6pWDkT8MAO7d0jyOecVhN5354xbLqdn8mV9Tat9gepAupm0bt2DbeaSC8vS52MuFA==", + "dev": true + }, + "nanoid": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.3.tgz", + "integrity": "sha512-p1sjXuopFs0xg+fPASzQ28agW1oHD7xDsd9Xkf3T15H3c/cifrFHVwrh74PdoklAPi+i7MdRsE47vm2r6JoB+w==", + "dev": true + }, + "nise": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/nise/-/nise-5.1.1.tgz", + "integrity": "sha512-yr5kW2THW1AkxVmCnKEh4nbYkJdB3I7LUkiUgOvEkOp414mc2UMaHMA7pjq1nYowhdoJZGwEKGaQVbxfpWj10A==", + "dev": true, + "requires": { + "@sinonjs/commons": "^1.8.3", + "@sinonjs/fake-timers": ">=5", + "@sinonjs/text-encoding": "^0.7.1", + "just-extend": "^4.0.2", + "path-to-regexp": "^1.7.0" + }, + "dependencies": { + "@sinonjs/commons": { + "version": "1.8.3", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.3.tgz", + "integrity": "sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==", + "dev": true, + "requires": { + "type-detect": "4.0.8" + } + }, + "path-to-regexp": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.8.0.tgz", + "integrity": "sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==", + "dev": true, + "requires": { + "isarray": "0.0.1" + } + } + } + }, + "node-preload": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/node-preload/-/node-preload-0.2.1.tgz", + "integrity": "sha512-RM5oyBy45cLEoHqCeh+MNuFAxO0vTFBLskvQbOKnEE7YTTSN4tbN8QWDIPQ6L+WvKsB/qLEGpYe2ZZ9d4W9OIQ==", + "dev": true, + "requires": { + "process-on-spawn": "^1.0.0" + } + }, + "node-webcrypto-ossl": { + "version": "1.0.49", + "resolved": "https://registry.npmjs.org/node-webcrypto-ossl/-/node-webcrypto-ossl-1.0.49.tgz", + "integrity": "sha512-Zs73PeTWoUXUFicvAaxZC6ZyVCuq1Eg/Q4rYqiWyBY4eWIbZPFiRIi/KRM0A9GVKBPRNraaXsVmRAC83jEQ6nw==", + "dev": true, + "requires": { + "mkdirp": "^0.5.5", + "nan": "^2.14.0", + "tslib": "^1.11.1", + "webcrypto-core": "^0.1.27" + } + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true + }, + "nyc": { + "version": "15.1.0", + "resolved": "https://registry.npmjs.org/nyc/-/nyc-15.1.0.tgz", + "integrity": "sha512-jMW04n9SxKdKi1ZMGhvUTHBN0EICCRkHemEoE5jm6mTYcqcdas0ATzgUgejlQUHMvpnOZqGB5Xxsv9KxJW1j8A==", + "dev": true, + "requires": { + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "caching-transform": "^4.0.0", + "convert-source-map": "^1.7.0", + "decamelize": "^1.2.0", + "find-cache-dir": "^3.2.0", + "find-up": "^4.1.0", + "foreground-child": "^2.0.0", + "get-package-type": "^0.1.0", + "glob": "^7.1.6", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-hook": "^3.0.0", + "istanbul-lib-instrument": "^4.0.0", + "istanbul-lib-processinfo": "^2.0.2", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.0.2", + "make-dir": "^3.0.0", + "node-preload": "^0.2.1", + "p-map": "^3.0.0", + "process-on-spawn": "^1.0.0", + "resolve-from": "^5.0.0", + "rimraf": "^3.0.0", + "signal-exit": "^3.0.2", + "spawn-wrap": "^2.0.0", + "test-exclude": "^6.0.0", + "yargs": "^15.0.2" + }, + "dependencies": { + "ansi-styles": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz", + "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==", + "dev": true, + "requires": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" + } + }, + "cliui": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", + "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", + "dev": true, + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^6.2.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "requires": { + "p-locate": "^4.1.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "requires": { + "p-limit": "^2.2.0" + } + }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true + }, + "string-width": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz", + "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + } + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", + "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.0" + } + }, + "wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + }, + "y18n": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz", + "integrity": "sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ==", + "dev": true + }, + "yargs": { + "version": "15.4.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", + "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", + "dev": true, + "requires": { + "cliui": "^6.0.0", + "decamelize": "^1.2.0", + "find-up": "^4.1.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^4.2.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^18.1.2" + } + }, + "yargs-parser": { + "version": "18.1.3", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", + "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", + "dev": true, + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + } + } + }, + "oauth-sign": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", + "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", + "dev": true + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "requires": { + "wrappy": "1" + } + }, + "p-limit": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.2.1.tgz", + "integrity": "sha512-85Tk+90UCVWvbDavCLKPOLC9vvY8OwEX/RtKF+/1OADJMVlFfEHOiMTPVyxg7mk/dKa+ipdHm0OUkTvCpMTuwg==", + "dev": true, + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "requires": { + "p-limit": "^3.0.2" + }, + "dependencies": { + "p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "requires": { + "yocto-queue": "^0.1.0" + } + } + } + }, + "p-map": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-3.0.0.tgz", + "integrity": "sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==", + "dev": true, + "requires": { + "aggregate-error": "^3.0.0" + } + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true + }, + "package-hash": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/package-hash/-/package-hash-4.0.0.tgz", + "integrity": "sha512-whdkPIooSu/bASggZ96BWVvZTRMOFxnyUG5PnTSGKoJE2gd5mbVNmR2Nj20QFzxYYgAXpoqC+AiXzl+UMRh7zQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.15", + "hasha": "^5.0.0", + "lodash.flattendeep": "^4.4.0", + "release-zalgo": "^1.0.0" + } + }, + "pako": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pako/-/pako-2.0.4.tgz", + "integrity": "sha512-v8tweI900AUkZN6heMU/4Uy4cXRc2AYNRggVmTR+dEncawDJgCdLMximOVA2p4qO57WMynangsfGRb5WD6L1Bg==", + "dev": true + }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true + }, + "path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "path-to-regexp": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-2.4.0.tgz", + "integrity": "sha512-G6zHoVqC6GGTQkZwF4lkuEyMbVOjoBKAEybQUypI1WTkqinCOrq2x6U2+phkJ1XsEMTy4LjtwPI7HW+NVrRR2w==", + "dev": true + }, + "pathval": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/pathval/-/pathval-1.1.1.tgz", + "integrity": "sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==", + "dev": true + }, + "performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=", + "dev": true + }, + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true + }, + "pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "requires": { + "find-up": "^4.0.0" + }, + "dependencies": { + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "requires": { + "p-locate": "^4.1.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "requires": { + "p-limit": "^2.2.0" + } + }, + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true + } + } + }, + "process-on-spawn": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/process-on-spawn/-/process-on-spawn-1.0.0.tgz", + "integrity": "sha512-1WsPDsUSMmZH5LeMLegqkPDrsGgsWwk1Exipy2hvB0o/F0ASzbpIctSCcZIK1ykJvtTJULEH+20WOFjMvGnCTg==", + "dev": true, + "requires": { + "fromentries": "^1.2.0" + } + }, + "psl": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", + "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==", + "dev": true + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "dev": true + }, + "qs": { + "version": "6.5.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", + "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==", + "dev": true + }, + "querystring": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", + "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=", + "dev": true + }, + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "requires": { + "safe-buffer": "^5.1.0" + } + }, + "readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "requires": { + "picomatch": "^2.2.1" + } + }, + "regenerator-runtime": { + "version": "0.13.7", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", + "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==", + "dev": true + }, + "release-zalgo": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/release-zalgo/-/release-zalgo-1.0.0.tgz", + "integrity": "sha1-CXALflB0Mpc5Mw5TXFqQ+2eFFzA=", + "dev": true, + "requires": { + "es6-error": "^4.0.1" + } + }, + "request": { + "version": "2.88.2", + "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", + "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", + "dev": true, + "requires": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.3", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + } + }, + "require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", + "dev": true + }, + "require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", + "dev": true + }, + "resolve": { + "version": "1.17.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.17.0.tgz", + "integrity": "sha512-ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==", + "dev": true, + "requires": { + "path-parse": "^1.0.6" + } + }, + "resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + }, + "serialize-javascript": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz", + "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==", + "dev": true, + "requires": { + "randombytes": "^2.1.0" + } + }, + "set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", + "dev": true + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true + }, + "signal-exit": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz", + "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==", + "dev": true + }, + "sinon": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/sinon/-/sinon-14.0.0.tgz", + "integrity": "sha512-ugA6BFmE+WrJdh0owRZHToLd32Uw3Lxq6E6LtNRU+xTVBefx632h03Q7apXWRsRdZAJ41LB8aUfn2+O4jsDNMw==", + "dev": true, + "requires": { + "@sinonjs/commons": "^1.8.3", + "@sinonjs/fake-timers": "^9.1.2", + "@sinonjs/samsam": "^6.1.1", + "diff": "^5.0.0", + "nise": "^5.1.1", + "supports-color": "^7.2.0" + }, + "dependencies": { + "@sinonjs/commons": { + "version": "1.8.3", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.3.tgz", + "integrity": "sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==", + "dev": true, + "requires": { + "type-detect": "4.0.8" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "sinon-chrome": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/sinon-chrome/-/sinon-chrome-3.0.1.tgz", + "integrity": "sha512-NTEFhyuiWEMnRmIqldUiA2DhKn2EqnZxyEk5Ez5rBXj+Nl54aJ0MEmF4wjltrxecxd8zlNLxyE0HyLabev9JsQ==", + "dev": true, + "requires": { + "lodash": "^4.16.3", + "sinon": "^7.2.3", + "urijs": "^1.18.2" + }, + "dependencies": { + "@sinonjs/formatio": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/@sinonjs/formatio/-/formatio-3.2.2.tgz", + "integrity": "sha512-B8SEsgd8gArBLMD6zpRw3juQ2FVSsmdd7qlevyDqzS9WTCtvF55/gAL+h6gue8ZvPYcdiPdvueM/qm//9XzyTQ==", + "dev": true, + "requires": { + "@sinonjs/commons": "^1", + "@sinonjs/samsam": "^3.1.0" + } + }, + "@sinonjs/samsam": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/@sinonjs/samsam/-/samsam-3.3.3.tgz", + "integrity": "sha512-bKCMKZvWIjYD0BLGnNrxVuw4dkWCYsLqFOUWw8VgKF/+5Y+mE7LfHWPIYoDXowH+3a9LsWDMo0uAP8YDosPvHQ==", + "dev": true, + "requires": { + "@sinonjs/commons": "^1.3.0", + "array-from": "^2.1.1", + "lodash": "^4.17.15" + } + }, + "diff": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/diff/-/diff-3.5.0.tgz", + "integrity": "sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA==", + "dev": true + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "nise": { + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/nise/-/nise-1.5.3.tgz", + "integrity": "sha512-Ymbac/94xeIrMf59REBPOv0thr+CJVFMhrlAkW/gjCIE58BGQdCj0x7KRCb3yz+Ga2Rz3E9XXSvUyyxqqhjQAQ==", + "dev": true, + "requires": { + "@sinonjs/formatio": "^3.2.1", + "@sinonjs/text-encoding": "^0.7.1", + "just-extend": "^4.0.2", + "lolex": "^5.0.1", + "path-to-regexp": "^1.7.0" + }, + "dependencies": { + "lolex": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/lolex/-/lolex-5.1.2.tgz", + "integrity": "sha512-h4hmjAvHTmd+25JSwrtTIuwbKdwg5NzZVRMLn9saij4SZaepCrTCxPr35H/3bjwfMJtN+t3CX8672UIkglz28A==", + "dev": true, + "requires": { + "@sinonjs/commons": "^1.7.0" + } + } + } + }, + "path-to-regexp": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.8.0.tgz", + "integrity": "sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==", + "dev": true, + "requires": { + "isarray": "0.0.1" + } + }, + "sinon": { + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/sinon/-/sinon-7.5.0.tgz", + "integrity": "sha512-AoD0oJWerp0/rY9czP/D6hDTTUYGpObhZjMpd7Cl/A6+j0xBE+ayL/ldfggkBXUs0IkvIiM1ljM8+WkOc5k78Q==", + "dev": true, + "requires": { + "@sinonjs/commons": "^1.4.0", + "@sinonjs/formatio": "^3.2.1", + "@sinonjs/samsam": "^3.3.3", + "diff": "^3.5.0", + "lolex": "^4.2.0", + "nise": "^1.5.2", + "supports-color": "^5.5.0" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + }, + "spawn-wrap": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/spawn-wrap/-/spawn-wrap-2.0.0.tgz", + "integrity": "sha512-EeajNjfN9zMnULLwhZZQU3GWBoFNkbngTUPfaawT4RkMiviTxcX0qfhVbGey39mfctfDHkWtuecgQ8NJcyQWHg==", + "dev": true, + "requires": { + "foreground-child": "^2.0.0", + "is-windows": "^1.0.2", + "make-dir": "^3.0.0", + "rimraf": "^3.0.0", + "signal-exit": "^3.0.2", + "which": "^2.0.1" + } + }, + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", + "dev": true + }, + "sshpk": { + "version": "1.16.1", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", + "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==", + "dev": true, + "requires": { + "asn1": "~0.2.3", + "assert-plus": "^1.0.0", + "bcrypt-pbkdf": "^1.0.0", + "dashdash": "^1.12.0", + "ecc-jsbn": "~0.1.1", + "getpass": "^0.1.1", + "jsbn": "~0.1.0", + "safer-buffer": "^2.0.2", + "tweetnacl": "~0.14.0" + } + }, + "string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + } + }, + "strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + }, + "strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "dev": true + }, + "strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true + }, + "style-mod": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/style-mod/-/style-mod-4.0.0.tgz", + "integrity": "sha512-OPhtyEjyyN9x3nhPsu76f52yUGXiZcgvsrFVtvTkyGRQJ0XK+GPc6ov1z+lRpbeabka+MYEQxOYRnt5nF30aMw==", + "dev": true + }, + "supports-color": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.1.0.tgz", + "integrity": "sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dev": true, + "requires": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + } + }, + "text-encoding": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/text-encoding/-/text-encoding-0.7.0.tgz", + "integrity": "sha512-oJQ3f1hrOnbRLOcwKz0Liq2IcrvDeZRHXhd9RgLrsT+DjWY/nty1Hi7v3dtkaEYbPYe0mUoOfzRrMwfXXwgPUA==", + "dev": true + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", + "dev": true + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "requires": { + "is-number": "^7.0.0" + } + }, + "tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "dev": true, + "requires": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + } + }, + "tr46": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", + "integrity": "sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=", + "dev": true, + "requires": { + "punycode": "^2.1.0" + } + }, + "tslib": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.13.0.tgz", + "integrity": "sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q==", + "dev": true + }, + "tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", + "dev": true, + "requires": { + "safe-buffer": "^5.0.1" + } + }, + "tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=", + "dev": true + }, + "type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "dev": true + }, + "type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "dev": true + }, + "typedarray-to-buffer": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", + "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", + "dev": true, + "requires": { + "is-typedarray": "^1.0.0" + } + }, + "uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "requires": { + "punycode": "^2.1.0" + } + }, + "urijs": { + "version": "1.19.11", + "resolved": "https://registry.npmjs.org/urijs/-/urijs-1.19.11.tgz", + "integrity": "sha512-HXgFDgDommxn5/bIv0cnQZsPhHDA90NPHD6+c/v21U5+Sx5hoP8+dP9IZXBU1gIfvdRfhG8cel9QNPeionfcCQ==", + "dev": true + }, + "uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "dev": true + }, + "verror": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", + "dev": true, + "requires": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + } + }, + "w3c-keyname": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/w3c-keyname/-/w3c-keyname-2.2.4.tgz", + "integrity": "sha512-tOhfEwEzFLJzf6d1ZPkYfGj+FWhIpBux9ppoP3rlclw3Z0BZv3N7b7030Z1kYth+6rDuAsXUFr+d0VE6Ed1ikw==", + "dev": true + }, + "webcrypto-core": { + "version": "0.1.27", + "resolved": "https://registry.npmjs.org/webcrypto-core/-/webcrypto-core-0.1.27.tgz", + "integrity": "sha512-r0MSFxvqaIjoqIKerm80P9+7n1dWBG88PYnshJk57J4uZuXlqNX8yQixrEIe3CGqrJ7xwfGM2SQGR4AlJYr02g==", + "dev": true, + "requires": { + "tslib": "^1.7.1" + } + }, + "webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", + "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==", + "dev": true + }, + "whatwg-url": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-6.5.0.tgz", + "integrity": "sha512-rhRZRqx/TLJQWUpQ6bmrt2UV4f0HCQ463yQuONJqC6fO2VoEb1pTYddbe59SkYq87aoM5A3bdhMZiUiVws+fzQ==", + "dev": true, + "requires": { + "lodash.sortby": "^4.7.0", + "tr46": "^1.0.1", + "webidl-conversions": "^4.0.2" + } + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "which-module": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", + "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=", + "dev": true + }, + "workerpool": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/workerpool/-/workerpool-6.2.1.tgz", + "integrity": "sha512-ILEIE97kDZvF9Wb9f6h5aXK4swSlKGUcOEGiIYb2OOu/IrDU9iwj0fD//SsA6E5ibwJxpEvhullJY4Sl4GcpAw==", + "dev": true + }, + "wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + } + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + }, + "write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "dev": true, + "requires": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true + }, + "yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "requires": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + } + }, + "yargs-parser": { + "version": "20.2.4", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.4.tgz", + "integrity": "sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==", + "dev": true + }, + "yargs-unparser": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-2.0.0.tgz", + "integrity": "sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==", + "dev": true, + "requires": { + "camelcase": "^6.0.0", + "decamelize": "^4.0.0", + "flat": "^5.0.2", + "is-plain-obj": "^2.1.0" + }, + "dependencies": { + "camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true + }, + "decamelize": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-4.0.0.tgz", + "integrity": "sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==", + "dev": true + } + } + }, + "yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true + } + } +} diff --git a/chromium/package.json b/chromium/package.json new file mode 100644 index 000000000000..8918b2b89a60 --- /dev/null +++ b/chromium/package.json @@ -0,0 +1,35 @@ +{ + "name": "https-everywhere", + "version": "1.0.0", + "description": "", + "main": "utils.js", + "devDependencies": { + "atob": "^2.0.3", + "btoa": "^1.1.2", + "chai": "^4.2.0", + "coveralls": "^3.1.0", + "codemirror": "~6.0.1", + "fetch-mock": "^9.10.7", + "mocha": "^10.0.0", + "nan": "^2.14.1", + "node-webcrypto-ossl": "^1.0.49", + "nyc": "^15.1.0", + "pako": "~2.0.2", + "sinon": "^14.0.0", + "sinon-chrome": "^3.0.1", + "text-encoding": "^0.7.0" + }, + "scripts": { + "test": "mocha", + "cover": "nyc --reporter=html --reporter=text mocha", + "report": "nyc report --reporter=text-lcov | coveralls" + }, + "nyc": { + "exclude": [ + "external" + ] + }, + "keywords": [], + "author": "", + "license": "GPL-2.0+" +} diff --git a/chromium/pages/base.css b/chromium/pages/base.css new file mode 100644 index 000000000000..92adbf8a2dd6 --- /dev/null +++ b/chromium/pages/base.css @@ -0,0 +1,46 @@ +:root { + --https-blue: #0a84ff; + --darker-blue: #0060df; + --text-main: #000; + --text-secondary: #464646; + --light-grey: #ececec; + --space: 5px; + --font: 'Lucida Grande', 'Segoe UI', Tahoma, 'DejaVu Sans', Arial, sans-serif; + --code-font: 'VeraMono'; +} + +/*-------------------------------------------------------------- +# Layout +--------------------------------------------------------------*/ +.grid { + display: grid; + grid-template-columns: 1fr 1fr 1fr; + row-gap: 16px; +} + +/*-------------------------------------------------------------- +# Typography +--------------------------------------------------------------*/ +.font { + font-family: var(--font); +} + +/*-------------------------------------------------------------- +# Elements +--------------------------------------------------------------*/ +.button { + border: var(--https-blue) solid 1px; + color: var(--text-main); + display: block; + font-size: 12px; + font-weight: bold; + margin: var(--space) auto; + padding: 10px; + text-align: center; + text-decoration: none; +} + +.button:hover { + background-color: var(--darker-blue); + color: #fff; +} diff --git a/chromium/pages/cancel/index.html b/chromium/pages/cancel/index.html new file mode 100644 index 000000000000..ec2518437350 --- /dev/null +++ b/chromium/pages/cancel/index.html @@ -0,0 +1,32 @@ + + + + + + + + ⚠ HTTPS Everywhere ⚠ + + + + + + +
+ +
+

+        
+      
+ +
+ + +
+ + + + + diff --git a/chromium/pages/cancel/style.css b/chromium/pages/cancel/style.css new file mode 100644 index 000000000000..aeba151a0749 --- /dev/null +++ b/chromium/pages/cancel/style.css @@ -0,0 +1,130 @@ +@import "../main.css"; + +body { + display: grid; + grid-template-columns: 1fr 1fr 1fr; + margin: 2% auto; + font-size: 12pt; + font-family: sans-serif; + line-height: 150%; + row-gap: 16px; +} + +/*--------- +# GRID LAYOUT +---------*/ +.banner { + grid-column: 2; + grid-row: 1; +} +.explainer { + grid-column: 2; + grid-row: 2; +} +.copy_block { + grid-column: 2; + grid-row: 3; +} +.button_options { + grid-column: 2; + grid-row: 4; +} + +h1 { + display: block; +} + +h1 img { + width: 100%; + height: auto; +} + +#url-paragraph { + display: inline-flex; + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; +} + +.ease_button { + background-color: #ec1e1e; + border: 1px solid #ec1e1e; + border-radius: 4px; + color: #fff; + cursor: pointer; + padding: 0.5em 1em; + float: none; + font-size: 12pt; + font-weight: normal; + margin: 8px 0; + line-height: 150%; +} + +button:last-child { + margin: 0; +} + +#url-value{ + float: left; + font-weight: bold; + margin: 2% 2% 0 0; +} +#copy-url, #open-url-button{ + background-color: var(--light-grey) !important; + border: 1px solid var(--text-secondary) !important; +} +#copy-url { + color: var(--text-secondary) !important; + font-size: 14px; +} +#open-url-button { + color: #666666 !important; +} +#copy-url:hover, #open-url-button:hover { + background-color: var(--text-secondary) !important; + border: 1px solid var(--text-secondary) !important; + color: var(--light-grey) !important; +} + +@media screen and (max-width: 800px) { + body { + grid-template-columns: 1fr; + margin: 5%; + } + .banner { + grid-row: 1; + } + .explainer { + grid-row: 2; + } + .copy_block { + grid-row: 3; + } + .button_options { + grid-row: 4; + } + .ease_button { + width: 100%; + margin: 8px 0; + } +} + +@media (prefers-color-scheme: dark) { + body { + background-color: #202023; + color: #f9f9fa; + } + + a { + color: #45a1ff; + } + + .ease_button { + color: #202023; + } + + .ease_button:hover { + background-color: #202023; + border-color: #ec1e1e; + } +} diff --git a/chromium/pages/cancel/ux.js b/chromium/pages/cancel/ux.js new file mode 100644 index 000000000000..d13dfdfb711a --- /dev/null +++ b/chromium/pages/cancel/ux.js @@ -0,0 +1,124 @@ +/* global sendMessage */ + +"use strict"; + +let observer; +document.addEventListener("DOMContentLoaded", () => { + const explainer = document.querySelector("[data-i18n=cancel_he_blocking_explainer]"); + observer = new MutationObserver(() => { + replaceLink(explainer); + }); + if (explainer.innerText.length > 0) { + replaceLink(explainer); + } else { + observer.observe(explainer, {childList: true}); + } + displayURL(); +}); + +function replaceLink(explainer) { + observer.disconnect(); + const linkText = chrome.i18n.getMessage("cancel_he_blocking_network"); + const link = document.createElement("a"); + link.classList.add("wikilink"); + link.href = "https://en.wikipedia.org/wiki/Downgrade_attack"; + link.innerText = linkText; + explainer.innerHTML = explainer.innerHTML.replace(linkText, link.outerHTML); + + /* + In response to translation of i18n string "cancel_he_blocking_network". + Within context of the paragraph and as a standalone string can be interpreted differently + langauge to language. + + So if link fails to swap in replace, this conditional is triggered + */ + if (document.getElementsByClassName("wikilink").length === 0) { + link.innerText = linkText; + explainer.after(link); + } + +} + +function displayURL() { + const searchParams = new URLSearchParams(window.location.search); + const originURL = searchParams.get('originURL'); + const originURLLink = document.getElementById('url-value'); + const openURLButton = document.getElementById('open-url-button'); + const openHttpOnce = document.getElementById('http-once-button'); + const copyButton = document.getElementById('copy-url'); + const url = new URL(originURL); + + originURLLink.innerText = originURL; + originURLLink.href = originURL; + + openURLButton.addEventListener("click", function() { + sendMessage("disable_on_site", url.host, () => { + window.location = originURL; + }); + + return false; + }); + + // Copy URL Feature on EASE + + function copyLinkAlternate() { + let isSuccessful = false; + + const sel = window.getSelection(); + + try { + sel.removeAllRanges(); + + const range = document.createRange(); + range.selectNode(originURLLink); + + sel.addRange(range); + + isSuccessful = document.execCommand("copy"); + + sel.removeAllRanges(); + + return isSuccessful; + } catch (err) { + console.error(err); + + sel.removeAllRanges(); + + return false; + } + } + + async function copyLink() { + try { + await navigator.clipboard.writeText(originURL); + return true; + } catch (err) { + return copyLinkAlternate(); + } + } + + let restoreTimeout = null; + + copyButton.addEventListener("click", async () => { + if (await copyLink()) { + copyButton.innerText = chrome.i18n.getMessage("cancel_copied_url"); + + if (restoreTimeout !== null) { + clearTimeout(restoreTimeout); + } + + restoreTimeout = setTimeout(() => { + copyButton.innerText = chrome.i18n.getMessage("cancel_copy_url"); + restoreTimeout = null; + }, 1500); + } + }); + + openHttpOnce.addEventListener("click", function() { + sendMessage("disable_on_site_once", url.host, () => { + window.location = originURL; + }); + + return false; + }); +} diff --git a/chromium/pages/debugging-rulesets/index.html b/chromium/pages/debugging-rulesets/index.html new file mode 100644 index 000000000000..d3e91227f4c3 --- /dev/null +++ b/chromium/pages/debugging-rulesets/index.html @@ -0,0 +1,25 @@ + + + + + + + + + + + +
Debugging Rulesets
+
+ Enter ruleset XML below and click save when ready. These rulesets will be immediately activated upon saving, and will persist across restarts.
+ Warning: This should only be used for debugging rulesets. This feature is not guaranteed to work reliably for regular usage.
+ Note: Due to a bug in Chromium, it may be necessary to close the options ui before saving. +
+
There are unsaved changes! Be sure to save them for them to take effect.
+ + +
Saved!
+ + + + diff --git a/chromium/pages/debugging-rulesets/style.css b/chromium/pages/debugging-rulesets/style.css new file mode 100644 index 000000000000..e424c70b5a7b --- /dev/null +++ b/chromium/pages/debugging-rulesets/style.css @@ -0,0 +1,40 @@ +.cm-s-main{ + width: 100%; + height: 500px; +} + +.cm-s-saved{ + border: 1px solid black; +} + +.cm-s-unsaved{ + border: 1px solid red; +} + +.section-explainer{ + margin-bottom: 5px; +} + +.section-header{ + margin-bottom: 10px; +} + +.section-header-span{ + border-bottom: 1px solid #ccc; + font-size: 15px; +} + +#saved-text{ + display: none; + color: green; + font-weight: bold; + margin: 30px; +} + +#unsaved-text{ + font-weight: bold; + margin: 10px 0px; + color: red; + visibility: hidden; + text-align: center; +} diff --git a/chromium/pages/debugging-rulesets/ux.js b/chromium/pages/debugging-rulesets/ux.js new file mode 100644 index 000000000000..0df93d8dd080 --- /dev/null +++ b/chromium/pages/debugging-rulesets/ux.js @@ -0,0 +1,46 @@ +/* global sendMessage, CodeMirror */ + +"use strict"; + +const savedTextElement = document.getElementById("saved-text"); +const unsavedTextElement = document.getElementById("unsaved-text"); +const savedTitle = "Debugging Rulesets"; +const unsavedTitle = "* Debugging Rulesets"; + +document.title = savedTitle; + +const cm = CodeMirror.fromTextArea( + document.getElementById("codemirror-textarea"), + { + mode: "xml", + theme: "default main saved" + } +); + +let valueHasChanged = false; +sendMessage("get_option", { debugging_rulesets: "" }, item => { + cm.setValue(item.debugging_rulesets); + cm.on("change", cm => { + if (!(valueHasChanged)) { + valueHasChanged = true; + document.title = unsavedTitle; + cm.setOption("theme", "default main unsaved"); + unsavedTextElement.style.visibility = "visible"; + } + }); +}); + +document.getElementById("save-button").addEventListener("click", e => { + e.preventDefault(); + sendMessage("set_option", { debugging_rulesets: cm.getValue() }, () => { + savedTextElement.style.display = "block"; + setTimeout(() => { + savedTextElement.style.display = "none"; + }, 1000); + + valueHasChanged = false; + document.title = savedTitle; + cm.setOption("theme", "default main saved"); + unsavedTextElement.style.visibility = "hidden"; + }); +}); diff --git a/chromium/pages/main.css b/chromium/pages/main.css new file mode 100644 index 000000000000..2772c46141e7 --- /dev/null +++ b/chromium/pages/main.css @@ -0,0 +1,21 @@ +/*-------------------------------------------------------------- +>>> TABLE OF CONTENTS: +---------------------------------------------------------------- +# Base + - Layout + - Typography + - Elements + - Links +# Utilities + - Accessibility + +--------------------------------------------------------------*/ + +/*-------------------------------------------------------------- +# Base +--------------------------------------------------------------*/ +@import "base.css"; + +/* Utilities - TBA +--------------------------------------------- */ + diff --git a/chromium/pages/options/index.html b/chromium/pages/options/index.html new file mode 100644 index 000000000000..b6bdc337cfb3 --- /dev/null +++ b/chromium/pages/options/index.html @@ -0,0 +1,65 @@ + + + + + + + + + +
+ + + +
+
+
+ + +
+
+

+
+
+

+
+ + +
+
+
+
+ +
+
+ + +
+
+ + +
+
+ +
+
+ + +
+
+
+
+
+
+ + +
+
+ + + + + + + + diff --git a/chromium/pages/options/style.css b/chromium/pages/options/style.css new file mode 100644 index 000000000000..032a7bad7a44 --- /dev/null +++ b/chromium/pages/options/style.css @@ -0,0 +1,264 @@ +@import "../main.css"; + +body{ + display: grid; + grid-template-columns: 1fr 1fr 1fr; +} + +/*--------- +# GRID LAYOUT +---------*/ +.header-wrapper, .section-wrapper { + margin: auto; +} +.header-wrapper { + display: inline-flex; + grid-column: 2; + grid-row: 1; +} +.section-wrapper { + grid-column: 2; + grid-row: 2; +} +#add-disabled-site-wrapper { + float: left; +} +#add-update-channel-wrapper { + display: inline-block; +} + +.settings-wrapper{ + margin: 10px 0 0 0; +} + +.settings-wrapper#update-wrapper{ + margin-bottom: 20px; +} + +.settings-wrapper#show-devtools-tab-wrapper{ + margin-bottom: 20px; +} + +/** User rules Option**/ +.user-rules-wrapper-header { + font-weight: bold; + padding-left: 5px; +} +.user-rules-list-item:last-of-type { + border-bottom: none; +} +.user-rules-list-item { + border-bottom: 1px solid #ccc; + display: inline-flex; + margin-left: 5%; + width: 80%; +} +.user-rules-list-item p { + width: 100%; +} + +/** Disabled Sites Option**/ +#add-disabled-site-invalid-host { + font-weight: bold; + color: red; + display: none; +} +.disabled-rules-wrapper-header { + font-weight: bold; + padding-left: 5px; +} +img.remove{ + cursor: pointer; + float: right; + height: 15px; + margin-top: -34px; + width: 15px; +} +.disabled-rule-list-item:last-of-type { + border-bottom: none; +} +.disabled-rule-list-item { + border-bottom: 1px solid #ccc; + clear: both; +} +.disabled-rule-list-item p { + width: 80%; + word-wrap: anywhere; +} + +.section-header{ + margin-bottom: 10px; +} + +#import{ + margin-bottom: 10px; + float: right; +} + +#import-confirmed{ + display: none; +} + +.section-header-span{ + cursor: pointer; + padding: 8px; + margin-left: 0 !important; + margin-right: var(--space) !important; + display: inline-block; +} + +.section-header-span.active{ + background-color: var(--darker-blue); + color: #FFF; +} +.section-header-span.inactive{ + background-color: var(--light-grey); +} +.section-header-span.inactive:hover { + background-color: var(--darker-blue); +} + +.update-channel{ + border: 1px solid grey; + border-radius: 20px; + margin-top: 30px; + margin-bottom: 30px; + padding: 6px; +} + +.update-channel-name{ + font-weight: bold; + font-size: 14px; + margin: 10px; +} + +.update-channel-column-left { + width: 89px; + float: left; + font-size: 13px; + text-align: right; + margin-right: 10px; + min-height: 1px; +} + +.update-channel-column-right { + float: left; + width: 380px; +} + +textarea.update-channel-jwk { + width: 367px; + height: 250px; + resize: vertical; +} + +input.update-channel-path-prefix, input.update-channel-scope { + width: 367px; +} + +div.update-channel-row-scope { + margin-top: 3px; +} + +.update-channel-column-right button { + float: right; + margin: 10px; + border-radius: 7px; +} + +button#add-update-channel, button#add-disabled-site { + float: right; + height: 30px; + margin: 0px 10px 10px 10px; + padding: 6px; +} + +input#update-channel-name, input#disabled-site { + float: right; +} + +.clearer{ + clear: both; +} + +.update-channel-last-updated { + float: right; + font-weight: lighter; + font-size: 10px; +} + +div#update-channels-error, div#update-channels-warning { + margin-top: 20px; + font-weight: bold; + padding: 10px; + border-radius: 10px; +} + +div#update-channels-error { + background-color: #CC3333; + display: none; + color: white; +} + +div#update-channels-warning { + background-color: #FFCC00; + font-color: black; +} + +#update-channels-error-text{ + display: inline-block; + width: 460px; +} + +img#update-channels-error-hide { + float: right; +} + +div#update-channels-last-checked { + margin-top: 10px; + float: right; + font-weight: bold; + font-size: 10px; +} + +#update-channels-list { + display: inline-block; +} + +@keyframes flash { + from { + background: #fc0; + } + to { + background: transparent; + } +} + +#secretArea { + border-radius: 5px; + padding: 5px; +} + +.hidden { + display: none +} + +.flash { + animation: flash 1s ease-out; +} + +@media (prefers-color-scheme: dark) { + body { + background-color: #202023; + color: #f9f9fa; + } + + .section-header-span, div#update-channels-warning { + color: #000; + } + + textarea, input[type=text] { + background-color: #202023; + color: #f9f9fa; + } +} diff --git a/chromium/pages/options/ux.js b/chromium/pages/options/ux.js new file mode 100644 index 000000000000..07d94dc9928d --- /dev/null +++ b/chromium/pages/options/ux.js @@ -0,0 +1,422 @@ +/* global sendMessage */ +/* global getOption_ */ +/* global e */ +/* global show, hide */ + +"use strict"; + +document.addEventListener("DOMContentLoaded", () => { + const secretArea = document.getElementById('secretArea'); + + const onKeyDownHandler = evt => { + if (evt.ctrlKey && evt.key === 'z') { + secretArea.classList.remove('hidden'); + secretArea.classList.add('flash'); + + sendMessage('set_option', { developerMode: true }); + + document.removeEventListener('keydown', onKeyDownHandler); + + evt.preventDefault(); + } + }; + + sendMessage('get_option', { developerMode: false }, item => { + if (item.developerMode) { + secretArea.classList.remove('hidden'); + } else { + document.addEventListener('keydown', onKeyDownHandler); + } + }); + + const autoUpdateRulesets = document.getElementById("autoUpdateRulesets"); + const enableMixedRulesets = document.getElementById("enableMixedRulesets"); + const showDevtoolsTab = document.getElementById("showDevtoolsTab"); + + const defaultOptions = { + autoUpdateRulesets: true, + enableMixedRulesets: false, + showDevtoolsTab: true + }; + + sendMessage("get_option", defaultOptions, item => { + autoUpdateRulesets.checked = item.autoUpdateRulesets; + enableMixedRulesets.checked = item.enableMixedRulesets; + showDevtoolsTab.checked = item.showDevtoolsTab; + + autoUpdateRulesets.addEventListener("change", () => { + sendMessage("set_option", { autoUpdateRulesets: autoUpdateRulesets.checked }); + }); + + enableMixedRulesets.addEventListener("change", () => { + sendMessage("set_option", { enableMixedRulesets: enableMixedRulesets.checked }); + }); + + showDevtoolsTab.addEventListener("change", () => { + sendMessage("set_option", { showDevtoolsTab: showDevtoolsTab.checked }); + }); + }); + + function onlyShowSection(sectionId) { + document.querySelectorAll('.section-wrapper').forEach(sw => { + sw.style.display = "none"; + }); + document.getElementById(sectionId).style.display = "block"; + } + onlyShowSection('general-settings-wrapper'); + + document.querySelectorAll('.section-header-span').forEach(shs => { + shs.addEventListener("click", () => { + document.querySelectorAll('.section-header-span').forEach(shs => { + shs.classList.remove("active"); + shs.classList.add("inactive"); + }); + shs.classList.remove("inactive"); + shs.classList.add("active"); + onlyShowSection(shs.dataset.show); + }); + }); + + function create_update_channel_element(update_channel, last_updated, locked) { + let ruleset_version_string; + + if(last_updated) { + const ruleset_date = new Date(last_updated * 1000); + ruleset_version_string = ruleset_date.getUTCFullYear() + "." + (ruleset_date.getUTCMonth() + 1) + "." + ruleset_date.getUTCDate(); + } else { + ruleset_version_string = "n/a"; + } + + const update_channel_div = document.createElement('div'); + update_channel_div.className = "update-channel"; + + const update_channel_name = document.createElement('div'); + update_channel_name.className = "update-channel-name"; + update_channel_name.innerText = update_channel.name; + update_channel_div.appendChild(update_channel_name); + const update_channel_last_updated = document.createElement('div'); + update_channel_last_updated.className = "update-channel-last-updated"; + update_channel_last_updated.innerText = chrome.i18n.getMessage("options_storedRulesetsVersion") + ruleset_version_string; + update_channel_name.appendChild(update_channel_last_updated); + + const update_channel_row_format = document.createElement('div'); + update_channel_row_format.className = "update-channel-row-format"; + update_channel_div.appendChild(update_channel_row_format); + const update_channel_format_column_left = document.createElement('div'); + update_channel_format_column_left.className = "update-channel-column-left"; + update_channel_format_column_left.innerText = "Format:"; + update_channel_row_format.appendChild(update_channel_format_column_left); + const update_channel_format_column_right = document.createElement('div'); + update_channel_format_column_right.className = "update-channel-column-right"; + update_channel_row_format.appendChild(update_channel_format_column_right); + const update_channel_format = document.createElement('select'); + update_channel_format.className = "update-channel-format"; + update_channel_format.setAttribute("data-name", update_channel.name); + update_channel_format.disabled = locked; + update_channel_format_column_right.appendChild(update_channel_format); + const update_channel_format_option_ruleset = document.createElement('option'); + update_channel_format_option_ruleset.value = "ruleset"; + update_channel_format_option_ruleset.innerText = "ruleset"; + update_channel_format_option_ruleset.defaultSelected = true; + update_channel_format_option_ruleset.selected = (update_channel.format == "ruleset"); + update_channel_format.appendChild(update_channel_format_option_ruleset); + const update_channel_format_option_bloom = document.createElement('option'); + update_channel_format_option_bloom.value = "bloom"; + update_channel_format_option_bloom.innerText = "bloom"; + update_channel_format_option_bloom.selected = (update_channel.format == "bloom"); + update_channel_format.appendChild(update_channel_format_option_bloom); + + const update_channel_row_jwk = document.createElement('div'); + update_channel_row_jwk.className = "update-channel-row-jwk"; + update_channel_div.appendChild(update_channel_row_jwk); + const update_channel_jwk_column_left = document.createElement('div'); + update_channel_jwk_column_left.className = "update-channel-column-left"; + update_channel_jwk_column_left.innerText = "JWK:"; + update_channel_row_jwk.appendChild(update_channel_jwk_column_left); + const update_channel_jwk_column_right = document.createElement('div'); + update_channel_jwk_column_right.className = "update-channel-column-right"; + update_channel_row_jwk.appendChild(update_channel_jwk_column_right); + const update_channel_jwk = document.createElement('textarea'); + update_channel_jwk.className = "update-channel-jwk"; + update_channel_jwk.setAttribute("data-name", update_channel.name); + update_channel_jwk.disabled = locked; + update_channel_jwk.innerText = JSON.stringify(update_channel.jwk); + update_channel_jwk_column_right.appendChild(update_channel_jwk); + + const update_channel_row_path_prefix = document.createElement('div'); + update_channel_row_path_prefix.className = "update-channel-row-path-prefix"; + update_channel_div.appendChild(update_channel_row_path_prefix); + const update_channel_path_prefix_column_left = document.createElement('div'); + update_channel_path_prefix_column_left.className = "update-channel-column-left"; + update_channel_path_prefix_column_left.innerText = "Path Prefix:"; + update_channel_row_path_prefix.appendChild(update_channel_path_prefix_column_left); + const update_channel_path_prefix_column_right = document.createElement('div'); + update_channel_path_prefix_column_right.className = "update-channel-column-right"; + update_channel_row_path_prefix.appendChild(update_channel_path_prefix_column_right); + const update_channel_path_prefix = document.createElement('input'); + update_channel_path_prefix.setAttribute("type", "text"); + update_channel_path_prefix.className = "update-channel-path-prefix"; + update_channel_path_prefix.setAttribute("data-name", update_channel.name); + update_channel_path_prefix.disabled = locked; + update_channel_path_prefix.value = update_channel.update_path_prefix; + update_channel_path_prefix_column_right.appendChild(update_channel_path_prefix); + + let clearer = document.createElement('div'); + clearer.className = "clearer"; + update_channel_div.appendChild(clearer); + + const update_channel_row_scope = document.createElement('div'); + if(update_channel.format == "bloom") { + update_channel_row_scope.style.display = "none"; + } + update_channel_row_scope.className = "update-channel-row-scope"; + update_channel_div.appendChild(update_channel_row_scope); + const update_channel_scope_column_left = document.createElement('div'); + update_channel_scope_column_left.className = "update-channel-column-left"; + update_channel_scope_column_left.innerText = "Scope:"; + update_channel_row_scope.appendChild(update_channel_scope_column_left); + const update_channel_scope_column_right = document.createElement('div'); + update_channel_scope_column_right.className = "update-channel-column-right"; + update_channel_row_scope.appendChild(update_channel_scope_column_right); + const update_channel_scope = document.createElement('input'); + update_channel_scope.setAttribute("type", "text"); + update_channel_scope.className = "update-channel-scope"; + update_channel_scope.setAttribute("data-name", update_channel.name); + update_channel_scope.disabled = locked; + update_channel_scope.value = update_channel.scope; + update_channel_scope_column_right.appendChild(update_channel_scope); + + const update_channel_row_controls = document.createElement('div'); + update_channel_row_controls.className = "update-channel-row-controls"; + update_channel_div.appendChild(update_channel_row_controls); + const update_channel_controls_column_left = document.createElement('div'); + update_channel_controls_column_left.className = "update-channel-column-left"; + update_channel_controls_column_left.innerText = " "; + update_channel_row_controls.appendChild(update_channel_controls_column_left); + const update_channel_controls_column_right = document.createElement('div'); + update_channel_controls_column_right.className = "update-channel-column-right"; + update_channel_row_controls.appendChild(update_channel_controls_column_right); + const update_channel_update = document.createElement('button'); + update_channel_update.className = "update-channel-update"; + update_channel_update.setAttribute("data-name", update_channel.name); + update_channel_update.disabled = locked; + update_channel_update.innerText = chrome.i18n.getMessage("options_update"); + update_channel_controls_column_right.appendChild(update_channel_update); + const update_channel_delete = document.createElement('button'); + update_channel_delete.className = "update-channel-update"; + update_channel_delete.setAttribute("data-name", update_channel.name); + update_channel_delete.disabled = locked; + update_channel_delete.innerText = chrome.i18n.getMessage("options_delete"); + update_channel_controls_column_right.appendChild(update_channel_delete); + + clearer = document.createElement('div'); + clearer.className = "clearer"; + update_channel_div.appendChild(clearer); + + update_channel_format.addEventListener("change", () => { + if(update_channel_format.value == "bloom") { + update_channel_row_scope.style.display = "none"; + } else { + update_channel_row_scope.style.display = "block"; + } + }); + update_channel_delete.addEventListener("click", () => { + sendMessage("delete_update_channel", update_channel.name, () => { + render_update_channels(); + }); + }); + + update_channel_update.addEventListener("click", () => { + sendMessage("update_update_channel", { + name: update_channel.name, + format: update_channel_format.value, + jwk: JSON.parse(update_channel_jwk.value), + update_path_prefix: update_channel_path_prefix.value, + scope: update_channel_scope.value + }, () => { + render_update_channels(); + }); + }); + + return update_channel_div; + } + + function render_update_channels() { + const update_channels_list = document.getElementById("update-channels-list"); + while(update_channels_list.firstChild) { + update_channels_list.removeChild(update_channels_list.firstChild); + } + + sendMessage("get_pinned_update_channels", null, item => { + for(const update_channel of item.update_channels) { + update_channels_list.appendChild( + create_update_channel_element( + update_channel, + item.last_updated[update_channel.name], + true, + ) + ); + + } + }); + + sendMessage("get_stored_update_channels", null, item => { + for(const update_channel of item.update_channels) { + update_channels_list.appendChild( + create_update_channel_element( + update_channel, + item.last_updated[update_channel.name], + update_channel.locked === true, + ) + ); + } + }); + } + render_update_channels(); + + const add_update_channel = document.getElementById("add-update-channel"); + const update_channel_name_div = document.getElementById("update-channel-name"); + const update_channels_error_text = document.getElementById("update-channels-error-text"); + const update_channels_error = document.getElementById("update-channels-error"); + update_channel_name_div.setAttribute("placeholder", chrome.i18n.getMessage("options_enterUpdateChannelName")); + + function displayError(text) { + update_channels_error_text.innerText = text; + update_channels_error.style.display = "block"; + window.scrollTo(0,0); + } + + // Get a list of user Rules + sendMessage("get_user_rules", null, userRules => { + let user_rules_parent = e("user-rules-wrapper"); + + if ( 0 === userRules.length) { + hide(user_rules_parent); + return ; + } + + // img element "remove button" + let templateRemove = document.createElement("img"); + templateRemove.src = chrome.runtime.getURL("images/remove.png"); + templateRemove.className = "remove"; + + for (const userRule of userRules) { + let user_rule_host = document.createElement("div"); + let user_rule_name = document.createElement("p"); + let remove = templateRemove.cloneNode(true); + + user_rule_host.className = "user-rules-list-item"; + user_rule_name.className = "user-rules-list-item-single"; + user_rule_name.innerText = userRule.name; + user_rule_host.appendChild(user_rule_name); + user_rules_parent.appendChild(user_rule_host); + user_rule_host.appendChild(remove); + + remove.addEventListener("click", () => { + // assume the removal is successful and hide ui element + hide( user_rule_host ); + // remove the user rule + sendMessage("remove_rule", { ruleset: userRule, src: 'options' }); + }); + } + }); + + // HTTPS Everywhere Sites Disabled section in General Settings module + getOption_("disabledList", [], function(item) { + let rule_host_parent = e("disabled-rules-wrapper"); + + // img element "remove button" + let templateRemove = document.createElement("img"); + templateRemove.src = chrome.runtime.getURL("images/remove.png"); + templateRemove.className = "remove"; + + if( item ) { + for (const key of item.disabledList) { + let rule_host = document.createElement("div"); + let remove = templateRemove.cloneNode(true); + let rule_host_site_name = document.createElement("p"); + + rule_host.className = "disabled-rule-list-item"; + rule_host_site_name.className = "disabled-rule-list-item_single"; + rule_host_site_name.innerText = key; + rule_host.appendChild( rule_host_site_name); + rule_host_parent.appendChild(rule_host); + rule_host.appendChild(remove); + + remove.addEventListener("click", () => { + hide( rule_host ); + sendMessage("enable_on_site", key); + }); + } + } + }); + + const add_disabled_site = document.getElementById("add-disabled-site"); + const disabled_site_input = document.getElementById("disabled-site"); + const add_disabled_site_invalid_host = document.getElementById('add-disabled-site-invalid-host'); + disabled_site_input.setAttribute("placeholder", chrome.i18n.getMessage("options_enterDisabledSite")); + function isValidHost(host) { + try { + new URL(`http://${host}/`); + return true; + } catch { + return false; + } + } + add_disabled_site.addEventListener("click", function() { + const host = disabled_site_input.value; + + if (isValidHost(host)) { + hide(add_disabled_site_invalid_host); + sendMessage("disable_on_site", disabled_site_input.value, okay => { + if (okay) { + chrome.tabs.reload(); + } + }); + } else { + show(add_disabled_site_invalid_host); + } + }); + + add_update_channel.addEventListener("click", () => { + const update_channel_name = update_channel_name_div.value; + if(update_channel_name.trim() == "") { + displayError("Error: The update channel name is blank. Please enter another name."); + } else { + update_channel_name_div.value = ""; + sendMessage("create_update_channel", update_channel_name, result => { + if(result == true) { + render_update_channels(); + } else { + displayError("Error: There already exists an update channel with this name."); + } + }); + } + }); + + const update_channels_error_hide = document.getElementById("update-channels-error-hide"); + update_channels_error_hide.addEventListener("click", () => { + update_channels_error.style.display = "none"; + }); + + const update_channels_last_checked = document.getElementById("update-channels-last-checked"); + sendMessage("get_last_checked", null, last_checked => { + let last_checked_string; + if(last_checked) { + const last_checked_date = new Date(last_checked * 1000); + const options = { + year: '2-digit', + month: '2-digit', + day: '2-digit', + hour: '2-digit', + minute: '2-digit', + timeZoneName: 'short' + }; + const customDateTime = new Intl.DateTimeFormat('default', options).format; + last_checked_string = customDateTime(last_checked_date); + } else { + last_checked_string = chrome.i18n.getMessage("options_updatesLastCheckedNever"); + } + update_channels_last_checked.innerText = chrome.i18n.getMessage("options_updatesLastChecked") + last_checked_string; + }); +}); diff --git a/chromium/pages/popup/index.html b/chromium/pages/popup/index.html new file mode 100644 index 000000000000..d9441f2d3e9d --- /dev/null +++ b/chromium/pages/popup/index.html @@ -0,0 +1,105 @@ + + + + + + + + + + + + + +
+
+ HTTPS Everywhere logo +
+ + + Version: +
+ +
+
+ + + + + +
+
+

+

+
+
+ + +
+
+ + +
+
+

+ +
+ + +
+ +
+

+ +

+
+ +
+

+

+
+
+
+ +
+ +
+ +
+ + + +
+ + + diff --git a/chromium/pages/popup/style.css b/chromium/pages/popup/style.css new file mode 100644 index 000000000000..304f2f8bf23f --- /dev/null +++ b/chromium/pages/popup/style.css @@ -0,0 +1,313 @@ +@import "../main.css"; + +body { + color: var(--text-secondary); + font-family: 'Lucida Grande', 'Segoe UI', Tahoma, 'DejaVu Sans', Arial, sans-serif; + margin: 0; + max-width: 400px; + min-width: 360px; +} + +header { + background-color: var(--light-grey); + color: var(--text-main); + display: flex; + padding: var(--space); +} + +header h1 { + font-size: 2em; +} + +header .logo-container { + margin: var(--space); + width: 85%; +} + +header .logo-container img { + width: 100%; +} + +header small { + color: #000; + display: block; + font-size: .70em; + font-weight: bold; + margin: 1%; + width: 100%; +} + +h1 { + font-size: 16px; + margin: var(--space) auto +} + +h2 { + clear: both; + font-size: 12px; + font-weight: normal; + margin: 0; +} + +h3 { + font-size: 16px; +} + +h1, +h2 { + color: var(--text-main); +} + +footer { + display: inline-flex; + margin: var(--space); +} + +footer a.button { + margin: var(--space); +} + +/* Elements */ +.settings_block { + padding: 5px 1em 20px 1em; + border-bottom: var(--light-grey) solid 1px; +} + +.see_more__prompt { + color: var(--text-main); + cursor: pointer; + font-size: 12px; + float: right; + margin: 5px 0; + padding: 10px 0; +} + +.see_more__arrow { + border: solid var(--darker-blue); + border-width: 0 3px 3px 0; + float: right; + margin-left: 10px; + margin-top: 3px; + padding: 3px; +} + +.see_more__content.show p { + font-size: 12px; + margin: 10px 0; +} + +.down { + transform: rotate(45deg); +} + +.up { + transform: rotate(-135deg); +} + +input[type=checkbox] { + opacity: 0; +} + +label { + background: grey; + border-radius: 25px; + color: var(--text-main); + cursor: pointer; + display: block; + float: right; + font-weight: bold; + height: 30px; + position: relative; + text-indent: -400px; + width: 50px; +} + +label:after { + background: #fff; + border-radius: 90px; + content: ''; + height: 20px; + left: 5px; + position: absolute; + top: 5px; + transition: 0.3s; /* Acts on transform below */ + width: 20px; +} +input:checked+label { + background: var(--https-blue); +} +/* position when checked*/ +input:checked+label:after { + left: calc(100% - 5px); + transform: translateX(-100%); +} + +.label_nontoggle { + background: none; + border-radius: 0; + color: var(--text-main); + display: block; + font-weight: normal; + height: inherit; + position: relative; + text-indent: 0; + width: auto; +} + +.label_nontoggle:after { + background: none; + border-radius: 0; + content: none; + height: auto; + left: initial; + position: relative; + top: initial; + transition: none; + width: auto; +} + +/* Specific rules */ +.rule.checkbox { + clear: both; + margin: 5% auto; +} + +.rule.checkbox .remove { + float: left; +} + +.rule.checkbox label { + font-size: 12px; + font-weight: normal; + height: 25px; + text-indent: -285px; + width: 40px; +} +.rule.checkbox label:after { + border-radius: 20px; + height: 15px; + width: 15px; +} + +#disable-on-this-site { + clear: both; +} + +#disableButton { + display: block; +} + +#HttpNowhere h1, +#disableButton h1 { + float: left; +} + +#RuleManagement { + padding: 5px 1em 10px 1em; +} + +#settingsForThisSite h1 { + float: left; +} + +#addRuleSection label, +#addRuleSection button { + font-size: 14px; + width: 100%; +} + +#addRuleSection input { + background: #fff; + border: 1px solid #000; + float: right; + margin: 5px auto; + padding: 5px; + width: 95%; +} + +#new-rule-advanced, +#new-rule-regular-text { + margin-top: 40px; +} + +#HttpNowhere { + display: block; + padding: 5px 1em; +} + +#StableRules h3 { + float: left; + margin: 10px; +} +#StableRules h2 { + margin-left: 10px; +} +#StableRules #RuleManagement--counter { + background: var(--darker-blue); + border-radius: 20px; + color: #fff; + display: block; + float: left; + font-size: 12px; + font-weight: bold; + height: 15px; + margin-top: 8px; + padding: 5px; + text-align: center; + width: 15px; +} + +/* Event based */ +.see_more--clarified { + font-size: 12px; +} + +/* Hide rules & options if the extension is off. */ +.disabled #RuleManagement, +.disabled #HttpNowhere { + display: none; +} + +/* By default the "Add a rule" link is hidden. It's shown on HTTPS sites only. */ +#addRuleSection { + display: none; +} + +#rulesets-versions { + display: block; + clear: both; +} + +.rulesets-version { + display: block; +} + +#resetButton { + display: inline-flex; + margin: 10px; + width: 95%; +} +#reset-to-defaults { + width: 100%; +} + +/* Initially hide section (until rules get added). */ +section.rules { + display: none; +} + +/* For "see more" content */ +.hide { + height: 0; + opacity: 0; + overflow: hidden; + transition: 0s; + visibility: hidden; +} + +.show { + clear: both; + opacity: 1; + transition: visibility 0s linear 0s, opacity 300ms; + visibility: visible; +} diff --git a/chromium/pages/popup/ux.js b/chromium/pages/popup/ux.js new file mode 100644 index 000000000000..f38f22535b82 --- /dev/null +++ b/chromium/pages/popup/ux.js @@ -0,0 +1,417 @@ +/* global e */ +/* global hide */ +/* global show */ +/* global sendMessage */ +/* global getOption_ */ +/* global setOption_ */ + +"use strict"; + +/** + * Handles rule (de)activation in the popup + */ +function toggleRuleLine(event) { + getTab(activeTab => { + const set_ruleset = { + active: event.target.checked, + name: event.target.parentNode.innerText, + tab_id: activeTab.id, + }; + + sendMessage("set_ruleset_active_status", set_ruleset, () => { + // purge the name from the cache so that this unchecking is persistent. + sendMessage("delete_from_ruleset_cache", set_ruleset.name, () => { + // Now reload the selected tab of the current window. + chrome.tabs.reload(set_ruleset.tab_id); + }); + }); + }); +} + +/** + * @param {object} event + * @description Toggles content for user to view rules and explanations for different modes + */ +function toggleSeeMore(event) { + let target = event.target; + let content; + + if (target !== this) { + content = document.querySelector('.see_more__content'); + } else { + content = target.parentNode.querySelector('.see_more__content'); + } + + let arrow = target.parentNode.querySelector('.see_more__arrow'); + let text = target.parentNode.querySelector('.see_more__text'); + + if(arrow.classList.contains('down')) { + arrow.classList.replace('down', 'up'); + text.innerText = chrome.i18n.getMessage("menu_seeLess"); + } else if (arrow.classList.contains('up')) { + arrow.classList.replace('up', 'down'); + text.innerText = chrome.i18n.getMessage("menu_seeMore"); + } + + if (content.classList.contains('hide')) { + content.classList.replace('hide', 'show'); + } else if (content.classList.contains('show')) { + content.classList.replace('show', 'hide'); + } +} + +/** + * Creates rule lines (including checkbox and icon) for the popup + * @param rulesets + * @param list_div + * @param {string} ruleType + * @returns {*} + */ +function appendRulesToListDiv(rulesets, list_div, ruleType) { + if (rulesets && rulesets.length) { + // template parent block for each ruleset + let templateLine = document.createElement("div"); + templateLine.className = "rule checkbox"; + + // label "container" + let templateLabel = document.createElement("label"); + + // checkbox + let templateCheckbox = document.createElement("input"); + templateCheckbox.type = "checkbox"; + + // label text + let templateLabelText = document.createElement("span"); + + // img "remove" button + let templateRemove = document.createElement("img"); + templateRemove.src = chrome.runtime.getURL("images/remove.png"); + templateRemove.className = "remove"; + + templateLine.appendChild(templateCheckbox); + templateLabel.appendChild(templateLabelText); + templateLine.appendChild(templateLabel); + + let increment = 0; + + for (const ruleset of rulesets) { + increment++; + let line = templateLine.cloneNode(true); + let checkbox = line.querySelector("input[type=checkbox]"); + let label = line.querySelector("label"); + let text = line.querySelector("span"); + + // For each "id" attribute in each checkbox input and "for" attribute in label + checkbox.setAttribute("id", `${ruleType}_ruleset_${increment}`); + label.setAttribute("for", `${ruleType}_ruleset_${increment}`); + + checkbox.checked = ruleset.active; + text.innerText = ruleset.name; + + // Add listener to capture the toggle event + line.addEventListener("click", toggleRuleLine); + + if (ruleset.note && ruleset.note.length) { + line.title = ruleset.note; + + if (ruleset.note === "user rule") { + let remove = templateRemove.cloneNode(true); + line.appendChild(remove); + + remove.addEventListener("click", () => { + sendMessage("remove_rule", { ruleset, src: 'popup' }, () => { + list_div.removeChild(line); + }); + }); + } + } + list_div.appendChild(line); + } + show(list_div); + } +} + +function showHttpNowhereUI() { + // Set up checkbox for HTTP nowhere mode + getOption_('httpNowhere', false, function(item) { + if (item.httpNowhere) { + e('http-nowhere-checkbox').checked = true; + e('HttpNowhere__header').innerText = chrome.i18n.getMessage("menu_encryptAllSitesEligibleOn"); + e('HttpNowhere__explained').innerText = chrome.i18n.getMessage("menu_httpNoWhereExplainedBlocked"); + } else { + e('HttpNowhere__header').innerText = chrome.i18n.getMessage("menu_encryptAllSitesEligibleOff"); + e('HttpNowhere__explained').innerText = chrome.i18n.getMessage("menu_httpNoWhereExplainedAllowed"); + } + e('HttpNowhere').style.visibility = "visible"; + }); +}; + +// Change the UI to reflect extension enabled/disabled +function updateEnabledDisabledUI() { + getOption_('globalEnabled', true, function(item) { + e('onoffswitch').checked = item.globalEnabled; + e('disableButton').style.visibility = "visible"; + // Hide or show the rules sections + if (item.globalEnabled) { + document.body.className = ""; + e('onoffswitch_label').innerText = chrome.i18n.getMessage("menu_globalEnable"); + showHttpNowhereUI(); + } else { + document.body.className = "disabled"; + e('onoffswitch_label').innerText = chrome.i18n.getMessage("menu_globalDisable"); + } + }); +} + +// Toggle extension enabled/disabled status +function toggleEnabledDisabled() { + let extension_toggle_effect = function() { + updateEnabledDisabledUI(); + // The extension state changed, give some time for toggle animation and reload tab + setTimeout(function() { + chrome.tabs.reload(); + window.close(); + }, 1500); + }; + + getOption_('globalEnabled', true, function(item) { + setOption_('globalEnabled', !item.globalEnabled, extension_toggle_effect); + }); +} + +/** + * @description Create the list of rules for a specific tab + * @param activeTab + */ +function listRules(activeTab) { + sendMessage("get_applied_rulesets", activeTab.id, function(rulesets) { + if (rulesets) { + // show the number of potentially applicable rulesets + let counter = rulesets.length; + let counterElement = document.querySelector("#RuleManagement--counter"); + counterElement.innerText = counter; + + const stableRules = rulesets.filter(ruleset => ruleset.default_state); + const unstableRules = rulesets.filter(ruleset => !ruleset.default_state); + + appendRulesToListDiv(stableRules, e("StableRules"), 'stable'); + appendRulesToListDiv(unstableRules, e("UnstableRules"), 'unstable'); + } + + // Only show the "Add a rule" section if we're on an HTTPS page + if (/^https:/.test(activeTab.url)) { + show(e("addRuleSection")); + } + }); +} + +/** + * Fill in content into the popup on load + */ +document.addEventListener("DOMContentLoaded", function () { + getTab(tab => { + const url = new URL(tab.url); + sendMessage("check_if_site_disabled", url.host, disabled => { + if(!disabled) { + listRules(tab); + } + showEnableOrDisable(url, disabled); + }); + }); + + // Set up the enabled/disabled switch & hide/show rules + updateEnabledDisabledUI(); + e('onoffswitch').addEventListener('click', toggleEnabledDisabled); + e('http-nowhere-checkbox').addEventListener('click', toggleHttpNowhere, false); + e('RuleManagement__see_more--prompt').addEventListener('click', toggleSeeMore); + + e('reset-to-defaults').addEventListener('click', () => { + sendMessage("is_firefox", null, is_firefox => { + if (is_firefox) { + sendMessage("reset_to_defaults", null, () => { + window.close(); + }); + } else { + if (confirm(chrome.i18n.getMessage("prefs_reset_defaults_message"))) { + sendMessage("reset_to_defaults", null, () => { + window.close(); + }); + } + } + }); + }); + + // Print the extension's current version. + var the_manifest = chrome.runtime.getManifest(); + var version_info = e('current-version'); + version_info.innerText = the_manifest.version; + + let rulesets_versions = e('rulesets-versions'); + + rulesets_versions.addSpan = function(update_channel_name, ruleset_version_string) { + let timestamp_span = document.createElement("span"); + timestamp_span.className = "rulesets-version"; + timestamp_span.innerText = `${chrome.i18n.getMessage("about_rulesets_version")} ${update_channel_name}: ${ruleset_version_string}`; + this.appendChild(timestamp_span); + }; + + sendMessage("get_update_channel_timestamps", null, timestamps => { + let replaces = timestamps.some(([update_channel, timestamp]) => + update_channel.replaces_default_rulesets && timestamp > 0 + ); + if(!replaces) { + rulesets_versions.addSpan("EFF (Full, Bundled)", the_manifest.version); + } + for(let [update_channel, timestamp] of timestamps) { + if(timestamp > 0) { + let ruleset_date = new Date(timestamp * 1000); + let ruleset_version_string = ruleset_date.getUTCFullYear() + "." + (ruleset_date.getUTCMonth() + 1) + "." + ruleset_date.getUTCDate(); + + rulesets_versions.addSpan(update_channel.name, ruleset_version_string); + } + } + }); + e("aboutTitle").title = chrome.i18n.getMessage("about_title"); + e("add-rule-link").addEventListener("click", addManualRule); + e("disable-on-this-site").addEventListener("click", disableOnSite); + e("enable-on-this-site").addEventListener("click", enableOnSite); +}); + +var escapeForRegex = function( value ) { + return value.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g, "\\$&"); +}; + +function showEnableOrDisable(url, disabled) { + if (["http:", "https:", "ftp:"].indexOf(url.protocol) != -1) { + const disableLink = e("disable-on-this-site"); + const enableLink = e("enable-on-this-site"); + const addRuleSection = e("addRuleSection"); + const resetToDefaults = e('reset-to-defaults'); + if (disabled) { + show(enableLink); + hide(disableLink); + hide(addRuleSection); + hide(resetToDefaults); + } else { + show(disableLink); + hide(enableLink); + } + } else { + const disableEnableSection = e("disableEnableSection"); + hide(disableEnableSection); + } +} + +/** + * Handles the manual addition of rules + */ +function addManualRule() { + getTab(function(tab) { + hide(e("add-rule-link")); + show(e("add-new-rule-div")); + + const url = new URL(tab.url); + + e("new-rule-host").value = url.host; + + const escapedHost = escapeForRegex(url.host); + + e("new-rule-regex").value = `^http://${escapedHost}/`; + e("new-rule-redirect").value = `https://${url.host}/`; + e("new-rule-name").value = "Manual rule for " + url.host; + + e("add-new-rule-button").addEventListener("click", function() { + const params = { + /** + * FIXME: the current implementation forbide users setting custom + * ruleset names... + */ + name: e("new-rule-host").value, + target : [e("new-rule-host").value], + rule: [{ to: e("new-rule-redirect").value, from: e("new-rule-regex").value }], + default_off: "user rule" + }; + sendMessage("add_new_rule", params, function() { + location.reload(); + }); + }); + + e("cancel-new-rule").addEventListener("click", function() { + show(e("add-rule-link")); + hide(e("add-new-rule-div")); + }); + + e("new-rule-show-advanced-link").addEventListener("click", function() { + show(e("new-rule-advanced")); + hide(e("new-rule-regular-text")); + }); + + e("new-rule-hide-advanced-link").addEventListener("click", function() { + hide(e("new-rule-advanced")); + show(e("new-rule-regular-text")); + }); + }); +} + +/** + * Disable HTTPS Everywhere on a particular FQDN + */ +function disableOnSite() { + getTab(function(tab) { + const url = new URL(tab.url); + sendMessage("disable_on_site", url.host); + chrome.tabs.reload(tab.id); + window.close(); + }); +} + +function enableOnSite() { + getTab(function(tab) { + const url = new URL(tab.url); + sendMessage("enable_on_site", url.host); + chrome.tabs.reload(tab.id); + window.close(); + }); +} + +/** + * @description Turns EASE Mode on and off + */ +function toggleHttpNowhere() { + getTab(tab => { + getOption_('httpNowhere', false, item => { + const enabled = !item.httpNowhere; + setOption_('httpNowhere', enabled, () => { + if (enabled) { + chrome.tabs.reload(tab.id); + e('HttpNowhere__header').innerText = chrome.i18n.getMessage("menu_encryptAllSitesEligibleOn"); + e('HttpNowhere__explained').innerText = chrome.i18n.getMessage("menu_httpNoWhereExplainedBlocked"); + } else { + e('HttpNowhere__header').innerText = chrome.i18n.getMessage("menu_encryptAllSitesEligibleOff"); + e('HttpNowhere__explained').innerText = chrome.i18n.getMessage("menu_httpNoWhereExplainedAllowed"); + } + }); + }); + }); +} + +function getTab(callback) { + let url = new URL(window.location.href); + if (url.searchParams.has('tabId')) { + let parentId = Number(url.searchParams.get('tabId')); + return chrome.tabs.get(parentId, callback); + } + chrome.tabs.query({active: true, lastFocusedWindow: true}, tabs => callback(tabs[0])); +} + +// This code fixes a Chromium-specific bug that causes links in extension popup +// to open in regular tab even if the popup is opened in incognito mode. + +document.addEventListener('click', e => { + const { target } = e; + + if (target.matches('a[target="_blank"]')) { + chrome.tabs.create({ url: target.href }); + e.preventDefault(); + } +}); diff --git a/chromium/pages/translation.js b/chromium/pages/translation.js new file mode 100644 index 000000000000..c6c3163ab9a6 --- /dev/null +++ b/chromium/pages/translation.js @@ -0,0 +1,8 @@ +"use strict"; + +document.addEventListener("DOMContentLoaded", () => { + // Auto-translate all elements with data-i18n attributes + for (const element of document.querySelectorAll("[data-i18n]")) { + element.innerText = chrome.i18n.getMessage(element.getAttribute("data-i18n")).replace(/"/g,"\""); + } +}); diff --git a/chromium/pages/util.js b/chromium/pages/util.js new file mode 100644 index 000000000000..4e5aea4f9acd --- /dev/null +++ b/chromium/pages/util.js @@ -0,0 +1,46 @@ +/* exported e */ +/* exported hide */ +/* exported show */ +/* exported sendMessage */ +/* exported getOption_ */ +/* exported setOption_ */ + +"use strict"; + +/** + * Element helper functions + */ +function e(id) { + return document.getElementById(id); +} + +function hide(elem) { + elem.style.display = "none"; +} + +function show(elem) { + elem.style.display = "block"; +} + +function sendMessage(type, object, callback) { + chrome.runtime.sendMessage({ type, object }, callback); +} + +/** +* Get an option from global settings +* @param {string} opt +* @param {mixed} defaultOpt +* @param {object} callback +* @returns mixed +*/ +function getOption_(opt, defaultOpt, callback) { + let details = {}; + details[opt] = defaultOpt; + sendMessage("get_option", details, callback); +} + +function setOption_(opt, value, callback) { + var details = {}; + details[opt] = value; + sendMessage("set_option", details, callback); +} diff --git a/chromium/popup.css b/chromium/popup.css deleted file mode 100644 index 82c3dbb35b7e..000000000000 --- a/chromium/popup.css +++ /dev/null @@ -1,132 +0,0 @@ -body { - margin-left: 1em; - margin-top: 0; - margin-right: 1em; - margin-bottom: 0; - min-width: 20em; -} - -/* Don't wrap text for important stuff. */ -h1, h2, h3, .rule { - white-space: nowrap; -} - -/* Hide rules & options if the extension is off. */ -.disabled #RuleManagement, .disabled #HttpNowhere { - display: none; -} - -/* Initially hide section (until rules get added). */ -section.rules { - position: fixed; - visibility: hidden; -} - -.rule{ - height: 25px; -} - -.rule label{ - padding: 0px; - max-width: 93%; - overflow: hidden; -} - -/* Underline rules that have notes. */ -.rule [title] { - border-bottom: 1px dotted; - cursor: help; -} - -/* Favicons */ -.rule img.favicon { - width: 16px; - height: 16px; - margin-left: 0.6em; - vertical-align: bottom; -} - -/* Remove user rule icon */ -.rule img.remove { - width: 15px; - height: 15px; - float: right; - opacity: .8; -} - -.rule img.remove:hover { - opacity: 1; -} - -/*** Everything below is "reverse-engineered" from Chrome's Settings page. ***/ - -/* Override a strange pixel offset in widgets.css. */ -.rule input[type="checkbox"] { - bottom: 1px; - margin: 0px; -} - -/* Override display attribute of text labels in widgets.css. */ -.rule span { - display: inline !important; - margin-left: 0.6em; -} - -body { - /* Fonts Chrome specifies for each OS: */ - /* Linux: 'DejaVu Sans', Arial, sans-serif */ - /* Mac: 'Lucida Grande', sans-serif */ - /* Windows: 'Segoe UI', Tahoma, sans-serif */ - font-family: 'Lucida Grande', 'Segoe UI', Tahoma, 'DejaVu Sans', Arial, sans-serif; - font-size: 75%; - color: #303942; - padding-top: 55px; -} - -header { - background-image: linear-gradient(white, white 40%, rgba(255, 255, 255, 0.92)); - left: 1em; - position: fixed; - right: 1em; - top: 0; - z-index: 3; -} - -header > h1 { - margin: 0; - padding: 21px 0 13px; -} - -/* Create a border under the h1 (but before anything that gets appended - * to the end of the header). */ -header > h1::after { - background-color: #eee; - content: ' '; - display: block; - height: 1px; - position: relative; - top: 13px; -} - -section { - -webkit-padding-start: 18px; - -webkit-padding-end: 18px; - margin-bottom: 24px; - margin-top: 8px; -} - -section > h3 { - -webkit-margin-start: -18px; -} - -footer { - border-top: 1px solid #EEE; - margin-top: 16px; - padding: 8px 0; -} - -/* By default the "Add a rule" link is hidden. It's shown on HTTPS sites for - * which there is no rule. */ -#add-rule-link { - display: none; -} diff --git a/chromium/popup.html b/chromium/popup.html deleted file mode 100644 index b6c92d4cf855..000000000000 --- a/chromium/popup.html +++ /dev/null @@ -1,74 +0,0 @@ - - - - - - - - - - - - - - - - - -
-

-
- -
-
- - -
-
-
- - -
- -
-
- - -
-
-

-

-
-
-

-

-
-
- -
-

-

- -

(Version: )

-
- - - diff --git a/chromium/popup.js b/chromium/popup.js deleted file mode 100644 index 1aeea420ccc2..000000000000 --- a/chromium/popup.js +++ /dev/null @@ -1,270 +0,0 @@ -"use strict"; - -var stableRules = null; -var unstableRules = null; -var hostReg = /.*\/\/[^$/]*\//; - -function e(id) { - return document.getElementById(id); -} - -/** - * Handles rule (de)activation in the popup - * @param checkbox checkbox being clicked - * @param ruleset the ruleset tied tot he checkbox - */ -function toggleRuleLine(checkbox, ruleset, tab_id) { - var ruleset_active = checkbox.checked; - var set_ruleset = { - active: ruleset_active, - name: ruleset.name, - tab_id: tab_id - }; - - sendMessage("set_ruleset_active_status", set_ruleset, function(){ - - if (ruleset_active != ruleset.default_state) { - localStorage[ruleset.name] = ruleset_active; - } else { - delete localStorage[ruleset.name]; - // purge the name from the cache so that this unchecking is persistent. - sendMessage("delete_from_ruleset_cache", ruleset.name); - } - - // Now reload the selected tab of the current window. - chrome.tabs.reload(); - }); -} - -/** - * Creates a rule line (including checkbox and icon) for the popup - * @param ruleset the ruleset to build the line for - * @returns {*} - */ -function appendRuleLineToListDiv(ruleset, list_div) { - - // parent block for line - var line = document.createElement("div"); - line.className = "rule checkbox"; - - // label "container" - var label = document.createElement("label"); - - // checkbox - var checkbox = document.createElement("input"); - checkbox.type = "checkbox"; - if (ruleset.active) { - checkbox.setAttribute("checked", ""); - } - checkbox.onchange = function(ev) { - toggleRuleLine(checkbox, ruleset, tab_id); - }; - label.appendChild(checkbox); - - // favicon (from chrome's cache) - var favicon = document.createElement("img"); - favicon.className = "favicon"; - favicon.src = "chrome://favicon/"; - for (let rule of ruleset.rules) { - var host = hostReg.exec(rule.to); - if (host) { - favicon.src += host[0]; - break; - } - } - - if (navigator.userAgent.match("Chrome")) { - var xhr = new XMLHttpRequest(); - try { - xhr.open("GET", favicon.src, true); - label.appendChild(favicon); - } catch (e) {} - } - - // label text - var text = document.createElement("span"); - text.innerText = ruleset.name; - if (ruleset.note.length) { - text.title = ruleset.note; - } - - if(ruleset.note == "user rule") { - var remove = document.createElement("img"); - remove.src = chrome.extension.getURL("remove.png"); - remove.className = "remove"; - line.appendChild(remove); - - remove.addEventListener("click", function(){ - sendMessage("remove_rule", ruleset); - list_div.removeChild(line); - }); - } - - label.appendChild(text); - - line.appendChild(label); - - list_div.appendChild(line); -} - -// Change the UI to reflect extension enabled/disabled -function updateEnabledDisabledUI() { - sendMessage("get_is_extension_enabled", null, function(enabled){ - document.getElementById('onoffswitch').checked = enabled; - // Hide or show the rules sections - if (enabled) { - document.body.className = "" - } else { - document.body.className = "disabled" - } - sendMessage("update_state"); - }); -} - -// Toggle extension enabled/disabled status -function toggleEnabledDisabled() { - var extension_toggle_effect = function(){ - updateEnabledDisabledUI(); - // The extension state changed, so reload this tab. - chrome.tabs.reload(); - window.close(); - } - - sendMessage("get_is_extension_enabled", null, function(enabled){ - if (enabled) { - // User wants to disable us - sendMessage("set_is_extension_enabled", false, extension_toggle_effect); - } else { - // User wants to enable us - sendMessage("set_is_extension_enabled", true, extension_toggle_effect); - } - }); -} - -/** - * Create the list of rules for a specific tab - * @param tabArray - */ -function gotTab(tabArray) { - var activeTab = tabArray[0]; - - sendMessage("get_active_rulesets", activeTab.id, function(rulesets){ - for (var r in rulesets) { - var listDiv = stableRules; - if (!rulesets[r].default_state) { - listDiv = unstableRules; - } - appendRuleLineToListDiv(rulesets[r], listDiv); - listDiv.style.position = "static"; - listDiv.style.visibility = "visible"; - } - // Only show the "Add a rule" link if we're on an HTTPS page - if (/^https:/.test(activeTab.url)) { - show(e("add-rule-link")); - } - }); -} - -/** - * Fill in content into the popup on load - */ -document.addEventListener("DOMContentLoaded", function () { - stableRules = document.getElementById("StableRules"); - unstableRules = document.getElementById("UnstableRules"); - chrome.tabs.query({ active: true, currentWindow: true }, gotTab); - - // Set up the enabled/disabled switch & hide/show rules - updateEnabledDisabledUI(); - document.getElementById('onoffswitch').addEventListener('click', toggleEnabledDisabled); - - // Print the extension's current version. - var the_manifest = chrome.runtime.getManifest(); - var version_info = document.getElementById('current-version'); - version_info.innerText = the_manifest.version; - - // Set up toggle checkbox for HTTP nowhere mode - getOption_('httpNowhere', false, function(item) { - var httpNowhereCheckbox = document.getElementById('http-nowhere-checkbox'); - httpNowhereCheckbox.addEventListener('click', toggleHttpNowhere, false); - var httpNowhereEnabled = item.httpNowhere; - if (httpNowhereEnabled) { - httpNowhereCheckbox.setAttribute('checked', ''); - } - }); -}); - - -var escapeForRegex = function( value ) { - return value.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g, "\\$&"); -}; - -function hide(elem) { - elem.style.display = "none"; -} - -function show(elem) { - elem.style.display = "block"; -} - -/** - * Handles the manual addition of rules - */ -function addManualRule() { - chrome.tabs.query({ active: true, currentWindow: true }, function(tab) { - hide(e("add-rule-link")); - show(e("add-new-rule-div")); - var newUrl = document.createElement('a'); - newUrl.href = tab[0].url; - newUrl.protocol = "https:"; - e("new-rule-host").value = newUrl.host; - var oldUrl = document.createElement('a'); - oldUrl.href = tab[0].url; - oldUrl.protocol = "http:"; - var oldMatcher = "^" + escapeForRegex(oldUrl.protocol + "//" + oldUrl.host+ "/"); - e("new-rule-regex").value = oldMatcher; - var redirectPath = newUrl.protocol + "//" + newUrl.host + "/"; - e("new-rule-redirect").value = redirectPath; - e("new-rule-name").value = "Manual rule for " + oldUrl.host; - e("add-new-rule-button").addEventListener("click", function() { - var params = { - host : e("new-rule-host").value, - redirectTo : e("new-rule-redirect").value, - urlMatcher : e("new-rule-regex").value - }; - sendMessage("add_new_rule", params, function() { - location.reload(); - }); - }); - - e("cancel-new-rule").addEventListener("click", function() { - show(e("add-rule-link")); - hide(e("add-new-rule-div")); - }); - e("new-rule-show-advanced-link").addEventListener("click", function() { - show(e("new-rule-advanced")); - hide(e("new-rule-regular-text")); - }); - e("new-rule-hide-advanced-link").addEventListener("click", function() { - hide(e("new-rule-advanced")); - show(e("new-rule-regular-text")); - }); - }); -} - -function toggleHttpNowhere() { - getOption_('httpNowhere', false, function(item) { - setOption_('httpNowhere', !item.httpNowhere); - }); -} - -function getOption_(opt, defaultOpt, callback) { - var details = {}; - details[opt] = defaultOpt; - sendMessage("get_option", details, callback); -} - -function setOption_(opt, value) { - var details = {}; - details[opt] = value; - sendMessage("set_option", details); -} diff --git a/chromium/rules.js b/chromium/rules.js deleted file mode 100644 index 896ebe8670e3..000000000000 --- a/chromium/rules.js +++ /dev/null @@ -1,491 +0,0 @@ -"use strict"; -// Stubs so this runs under nodejs. They get overwritten later by util.js -var VERB=1; -var DBUG=2; -var INFO=3; -var NOTE=4; -var WARN=5; -function log(){} - -// To reduce memory usage for the numerous rules/cookies with trivial rules -const trivial_rule_to = "https:"; -const trivial_rule_from_c = new RegExp("^http:"); -const trivial_cookie_name_c = new RegExp(".*"); -const trivial_cookie_host_c = new RegExp(".*"); - -/** - * A single rule - * @param from - * @param to - * @constructor - */ -function Rule(from, to) { - if (from === "^http:" && to === "https:") { - // This is a trivial rule, rewriting http->https with no complex RegExp. - this.to = trivial_rule_to; - this.from_c = trivial_rule_from_c; - } else { - // This is a non-trivial rule. - this.to = to; - this.from_c = new RegExp(from); - } -} - -/** - * Regex-Compile a pattern - * @param pattern The pattern to compile - * @constructor - */ -function Exclusion(pattern) { - this.pattern_c = new RegExp(pattern); -} - -/** - * Generates a CookieRule - * @param host The host regex to compile - * @param cookiename The cookie name Regex to compile - * @constructor - */ -function CookieRule(host, cookiename) { - if (host === ".*" || host === ".+" || host === ".") { - // Some cookie rules trivially match any host. - this.host_c = trivial_cookie_host_c; - } else { - this.host_c = new RegExp(host); - } - - if (cookiename === ".*" || cookiename === ".+" || cookiename === ".") { - // About 50% of cookie rules trivially match any name. - this.name_c = trivial_cookie_name_c; - } else { - this.name_c = new RegExp(cookiename); - } -} - -/** - *A collection of rules - * @param set_name The name of this set - * @param default_state activity state - * @param note Note will be displayed in popup - * @constructor - */ -function RuleSet(set_name, default_state, note) { - this.name = set_name; - this.rules = []; - this.exclusions = null; - this.cookierules = null; - this.active = default_state; - this.default_state = default_state; - this.note = note; -} - -RuleSet.prototype = { - /** - * Check if a URI can be rewritten and rewrite it - * @param urispec The uri to rewrite - * @returns {*} null or the rewritten uri - */ - apply: function(urispec) { - var returl = null; - // If we're covered by an exclusion, go home - if (this.exclusions !== null) { - for (let exclusion of this.exclusions) { - if (exclusion.pattern_c.test(urispec)) { - log(DBUG, "excluded uri " + urispec); - return null; - } - } - } - - // Okay, now find the first rule that triggers - for (let rule of this.rules) { - returl = urispec.replace(rule.from_c, - rule.to); - if (returl != urispec) { - return returl; - } - } - return null; - }, - - /** - * Deep equivalence comparison - * @param ruleset The ruleset to compare with - * @returns true or false, depending on whether it's deeply equivalent - */ - isEquivalentTo: function(ruleset) { - if(this.name != ruleset.name || - this.note != ruleset.note || - this.state != ruleset.state || - this.default_state != ruleset.default_state) { - return false; - } - - try { - var this_exclusions_length = this.exclusions.length; - } catch(e) { - var this_exclusions_length = 0; - } - - try { - var ruleset_exclusions_length = ruleset.exclusions.length; - } catch(e) { - var ruleset_exclusions_length = 0; - } - - try { - var this_rules_length = this.rules.length; - } catch(e) { - var this_rules_length = 0; - } - - try { - var ruleset_rules_length = ruleset.rules.length; - } catch(e) { - var ruleset_rules_length = 0; - } - - if(this_exclusions_length != ruleset_exclusions_length || - this_rules_length != ruleset_rules_length) { - return false; - } - if(this_exclusions_length > 0) { - for(let x = 0; x < this.exclusions.length; x++){ - if(this.exclusions[x].pattern_c != ruleset.exclusions[x].pattern_c) { - return false; - } - } - } - if(this_rules_length > 0) { - for(let x = 0; x < this.rules.length; x++){ - if(this.rules[x].to != ruleset.rules[x].to) { - return false; - } - } - } - return true; - } - -}; - -/** - * Initialize Rule Sets - * @param ruleActiveStates default state for rules - * @constructor - */ -function RuleSets(ruleActiveStates) { - // Load rules into structure - this.targets = {}; - - // A cache for potentiallyApplicableRulesets - this.ruleCache = new Map(); - - // A cache for cookie hostnames. - this.cookieHostCache = new Map(); - - // A hash of rule name -> active status (true/false). - this.ruleActiveStates = ruleActiveStates; -} - - -RuleSets.prototype = { - /** - * Iterate through data XML and load rulesets - */ - addFromXml: function(ruleXml) { - var sets = ruleXml.getElementsByTagName("ruleset"); - for (let s of sets) { - try { - this.parseOneRuleset(s); - } catch (e) { - log(WARN, 'Error processing ruleset:' + e); - } - } - }, - - /** - * Load a user rule - * @param params - * @returns {boolean} - */ - addUserRule : function(params) { - log(INFO, 'adding new user rule for ' + JSON.stringify(params)); - var new_rule_set = new RuleSet(params.host, true, "user rule"); - var new_rule = new Rule(params.urlMatcher, params.redirectTo); - new_rule_set.rules.push(new_rule); - if (!(params.host in this.targets)) { - this.targets[params.host] = []; - } - this.ruleCache.delete(params.host); - // TODO: maybe promote this rule? - this.targets[params.host].push(new_rule_set); - if (new_rule_set.name in this.ruleActiveStates) { - new_rule_set.active = (this.ruleActiveStates[new_rule_set.name] == "true"); - } - log(INFO, 'done adding rule'); - return true; - }, - - /** - * Remove a user rule - * @param params - * @returns {boolean} - */ - removeUserRule: function(ruleset) { - log(INFO, 'removing user rule for ' + JSON.stringify(ruleset)); - this.ruleCache.delete(ruleset.name); - this.targets[ruleset.name] = this.targets[ruleset.name].filter(r => - !(r.isEquivalentTo(ruleset)) - ); - if (this.targets[ruleset.name].length == 0) { - delete this.targets[ruleset.name]; - } - log(INFO, 'done removing rule'); - return true; - }, - - /** - * Does the loading of a ruleset. - * @param ruletag The whole tag to parse - */ - parseOneRuleset: function(ruletag) { - var default_state = true; - var note = ""; - var default_off = ruletag.getAttribute("default_off"); - if (default_off) { - default_state = false; - note += default_off + "\n"; - } - - // If a ruleset declares a platform, and we don't match it, treat it as - // off-by-default. In practice, this excludes "mixedcontent" & "cacert" rules. - var platform = ruletag.getAttribute("platform"); - if (platform) { - default_state = false; - if (platform == "mixedcontent" && enableMixedRulesets) { - default_state = true; - } - note += "Platform(s): " + platform + "\n"; - } - - var rule_set = new RuleSet(ruletag.getAttribute("name"), - default_state, - note.trim()); - - // Read user prefs - if (rule_set.name in this.ruleActiveStates) { - rule_set.active = (this.ruleActiveStates[rule_set.name] == "true"); - } - - var rules = ruletag.getElementsByTagName("rule"); - for (let rule of rules) { - rule_set.rules.push(new Rule(rule.getAttribute("from"), - rule.getAttribute("to"))); - } - - var exclusions = ruletag.getElementsByTagName("exclusion"); - if (exclusions.length > 0) { - rule_set.exclusions = []; - for (let exclusion of exclusions) { - rule_set.exclusions.push( - new Exclusion(exclusion.getAttribute("pattern"))); - } - } - - var cookierules = ruletag.getElementsByTagName("securecookie"); - if (cookierules.length > 0) { - rule_set.cookierules = []; - for (let cookierule of cookierules) { - rule_set.cookierules.push( - new CookieRule(cookierule.getAttribute("host"), - cookierule.getAttribute("name"))); - } - } - - var targets = ruletag.getElementsByTagName("target"); - for (let target of targets) { - var host = target.getAttribute("host"); - if (!(host in this.targets)) { - this.targets[host] = []; - } - this.targets[host].push(rule_set); - } - }, - - /** - * Return a list of rulesets that apply to this host - * @param host The host to check - * @returns {*} (empty) list - */ - potentiallyApplicableRulesets: function(host) { - // Have we cached this result? If so, return it! - var cached_item = this.ruleCache.get(host); - if (cached_item !== undefined) { - log(DBUG, "Ruleset cache hit for " + host + " items:" + cached_item.length); - return cached_item; - } - log(DBUG, "Ruleset cache miss for " + host); - - var tmp; - var results = []; - if (this.targets[host]) { - // Copy the host targets so we don't modify them. - results = results.concat(this.targets[host]); - } - - // Ensure host is well-formed (RFC 1035) - if (host.indexOf("..") != -1 || host.length > 255) { - log(WARN,"Malformed host passed to potentiallyApplicableRulesets: " + host); - return null; - } - - // Replace each portion of the domain with a * in turn - var segmented = host.split("."); - for (let s of segmented) { - tmp = s; - s = "*"; - results = results.concat(this.targets[segmented.join(".")]); - s = tmp; - } - // now eat away from the left, with *, so that for x.y.z.google.com we - // check *.z.google.com and *.google.com (we did *.y.z.google.com above) - for (var i = 2; i <= segmented.length - 2; ++i) { - var t = "*." + segmented.slice(i,segmented.length).join("."); - results = results.concat(this.targets[t]); - } - - // Clean the results list, which may contain duplicates or undefined entries - var resultSet = new Set(results); - resultSet.delete(undefined); - - log(DBUG,"Applicable rules for " + host + ":"); - if (resultSet.size == 0) { - log(DBUG, " None"); - } else { - for (let target of resultSet.values()) { - log(DBUG, " " + target.name); - } - } - - // Insert results into the ruleset cache - this.ruleCache.set(host, resultSet); - - // Cap the size of the cache. (Limit chosen somewhat arbitrarily) - if (this.ruleCache.size > 1000) { - // Map.prototype.keys() returns keys in insertion order, so this is a FIFO. - this.ruleCache.delete(this.ruleCache.keys().next().value); - } - - return resultSet; - }, - - /** - * Check to see if the Cookie object c meets any of our cookierule criteria for being marked as secure. - * @param cookie The cookie to test - * @returns {*} ruleset or null - */ - shouldSecureCookie: function(cookie) { - var hostname = cookie.domain; - // cookie domain scopes can start with . - while (hostname.charAt(0) == ".") { - hostname = hostname.slice(1); - } - - if (!this.safeToSecureCookie(hostname)) { - return null; - } - - var potentiallyApplicable = this.potentiallyApplicableRulesets(hostname); - for (let ruleset of potentiallyApplicable) { - if (ruleset.cookierules !== null && ruleset.active) { - for (let cookierules of ruleset.cookierules) { - var cr = cookierules; - if (cr.host_c.test(cookie.domain) && cr.name_c.test(cookie.name)) { - return ruleset; - } - } - } - } - return null; - }, - - /** - * Check if it is secure to secure the cookie (=patch the secure flag in). - * @param domain The domain of the cookie - * @returns {*} true or false - */ - safeToSecureCookie: function(domain) { - // Check if the domain might be being served over HTTP. If so, it isn't - // safe to secure a cookie! We can't always know this for sure because - // observing cookie-changed doesn't give us enough context to know the - // full origin URI. - - // First, if there are any redirect loops on this domain, don't secure - // cookies. XXX This is not a very satisfactory heuristic. Sometimes we - // would want to secure the cookie anyway, because the URLs that loop are - // not authenticated or not important. Also by the time the loop has been - // observed and the domain blacklisted, a cookie might already have been - // flagged as secure. - - if (domainBlacklist.has(domain)) { - log(INFO, "cookies for " + domain + "blacklisted"); - return false; - } - var cached_item = this.cookieHostCache.get(domain); - if (cached_item !== undefined) { - log(DBUG, "Cookie host cache hit for " + domain); - return cached_item; - } - log(DBUG, "Cookie host cache miss for " + domain); - - // If we passed that test, make up a random URL on the domain, and see if - // we would HTTPSify that. - - var nonce_path = "/" + Math.random().toString(); - var test_uri = "http://" + domain + nonce_path + nonce_path; - - // Cap the size of the cookie cache (limit chosen somewhat arbitrarily) - if (this.cookieHostCache.size > 250) { - // Map.prototype.keys() returns keys in insertion order, so this is a FIFO. - this.cookieHostCache.delete(this.cookieHostCache.keys().next().value); - } - - log(INFO, "Testing securecookie applicability with " + test_uri); - var potentiallyApplicable = this.potentiallyApplicableRulesets(domain); - for (let ruleset of potentiallyApplicable) { - if (!ruleset.active) { - continue; - } - if (ruleset.apply(test_uri)) { - log(INFO, "Cookie domain could be secured."); - this.cookieHostCache.set(domain, true); - return true; - } - } - log(INFO, "Cookie domain could NOT be secured."); - this.cookieHostCache.set(domain, false); - return false; - }, - - /** - * Rewrite an URI - * @param urispec The uri to rewrite - * @param host The host of this uri - * @returns {*} the new uri or null - */ - rewriteURI: function(urispec, host) { - var newuri = null; - var potentiallyApplicable = this.potentiallyApplicableRulesets(host); - for (let ruleset of potentiallyApplicable) { - if (ruleset.active && (newuri = ruleset.apply(urispec))) { - return newuri; - } - } - return null; - } -}; - -// Export for HTTPS Rewriter if applicable. -if (typeof exports != 'undefined') { - exports.RuleSets = RuleSets; -} diff --git a/chromium/send-message.js b/chromium/send-message.js deleted file mode 100644 index 2ed895523d79..000000000000 --- a/chromium/send-message.js +++ /dev/null @@ -1,8 +0,0 @@ -function sendMessage(type, object, callback) { - var packet = {}; - packet.type = type; - if(object){ - packet.object = object; - } - chrome.runtime.sendMessage(packet, callback); -} diff --git a/chromium/storage.js b/chromium/storage.js deleted file mode 100644 index d75fe7794411..000000000000 --- a/chromium/storage.js +++ /dev/null @@ -1,11 +0,0 @@ -var storage = chrome.storage.local; -if (chrome.storage.sync) { - chrome.storage.sync.set({"sync-set-test": true}, () => { - if(!chrome.runtime.lastError){ - storage = chrome.storage.sync; - } - }); -} -if (typeof exports != 'undefined') { - exports = storage; -} diff --git a/chromium/switch-planner.html b/chromium/switch-planner.html deleted file mode 100644 index 87fe4b5ef13a..000000000000 --- a/chromium/switch-planner.html +++ /dev/null @@ -1,7 +0,0 @@ - - - - - -
- diff --git a/chromium/switch-planner.js b/chromium/switch-planner.js deleted file mode 100644 index 5ed4d8381f70..000000000000 --- a/chromium/switch-planner.js +++ /dev/null @@ -1,7 +0,0 @@ -window.onload = function() { - var backgroundPage = chrome.extension.getBackgroundPage(); - var tab = document.location.search.match(/tab=([^&]*)/)[1]; - document.getElementById("content").innerHTML = - backgroundPage.switchPlannerDetailsHtml(tab); -}; - diff --git a/chromium/test/.eslintrc b/chromium/test/.eslintrc new file mode 100644 index 000000000000..8a30ebae0f21 --- /dev/null +++ b/chromium/test/.eslintrc @@ -0,0 +1,6 @@ +{ + "env": { + "node": true, + "mocha": true + } +} diff --git a/chromium/test/example.rulesets.gz b/chromium/test/example.rulesets.gz new file mode 100644 index 000000000000..401811763ff8 Binary files /dev/null and b/chromium/test/example.rulesets.gz differ diff --git a/chromium/test/incognito_test.js b/chromium/test/incognito_test.js new file mode 100644 index 000000000000..64cbe5ab8aa5 --- /dev/null +++ b/chromium/test/incognito_test.js @@ -0,0 +1,59 @@ +'use strict'; + +const expect = require('chai').expect, + tu = require('./testing_utils'), + incognito = require('../background-scripts/incognito'); + +describe('incognito.js', function() { + beforeEach(function() { + tu.stubber([ + ['chrome.windows.onCreated.addListener', tu.Mock()], + ['chrome.windows.onRemoved.addListener', tu.Mock()], + ['chrome.windows.getAll', tu.Mock()], + ]); + }); + + describe('onIncognitoDestruction', function() { + beforeEach(function() { + incognito.state.incognito_session_exists = false; + this.callbackCalled = false; + this.callback = () => this.callbackCalled = true; + this.instance = incognito.onIncognitoDestruction(this.callback); + }); + + it('no incognito session by default', function() { + expect(incognito.state.incognito_session_exists).to.be.false; + }); + + it('with no incognito, callback not called', async function() { + incognito.state.incognito_session_exists = false; + + await this.instance.detect_incognito_destruction(); + + expect(this.callbackCalled).to.be.false; + }); + + it('with incognitos still open, callback not called', async function() { + incognito.state.incognito_session_exists = true; + chrome.windows.getAll = func => func([{incognito: true}]); + + await this.instance.detect_incognito_destruction(); + + expect(this.callbackCalled, 'not called').to.be.false; + }); + + it('callback called when last incognito closed', async function() { + incognito.state.incognito_session_exists = true; + chrome.windows.getAll = func => func([]); + + await this.instance.detect_incognito_destruction(); + expect(incognito.state.incognito_session_exists, 'constant changed').to.be.false; + expect(this.callbackCalled).to.be.true; + }); + + it('detects when an incognito window is created', function() { + this.instance.detect_incognito_creation({incognito: true}); + expect(incognito.state.incognito_session_exists, 'constant changed').to.be.true; + }); + }); +}); diff --git a/chromium/test/ip_utils_test.js b/chromium/test/ip_utils_test.js new file mode 100644 index 000000000000..6301872ae646 --- /dev/null +++ b/chromium/test/ip_utils_test.js @@ -0,0 +1,92 @@ +'use strict'; + +const { parseIp, isIpInRange, isLocalIp } = require('../background-scripts/ip_utils'); + +const assert = require('chai').assert; + +describe('ip_utils.js', () => { + describe('parseIp', () => { + it('rejects an empty string', () => { + assert(parseIp('') === -1); + }); + + it('rejects a string consisting entirely of dots', () => { + assert(parseIp('.') === -1); + assert(parseIp('..') === -1); + assert(parseIp('...') === -1); + assert(parseIp('....') === -1); + }); + + it('rejects a string consisting only of digits', () => { + assert(parseIp('1') === -1); + }); + + it('rejects a string not consisting of four parts separated by dots', () => { + assert(parseIp('1.1') === -1); + assert(parseIp('1.1.1') === -1); + assert(parseIp('1.1.1.1.1') === -1); + }); + + it('rejects a well-formed IP address followed by one or multiple trailing dots', () => { + assert(parseIp('1.1.1.1.') === -1); + assert(parseIp('1.1.1.1..') === -1); + assert(parseIp('1.1.1.1...') === -1); + }); + + it('rejects an IP address-like string with omitted parts', () => { + assert(parseIp('.1.1.1') === -1); + assert(parseIp('1..1.1') === -1); + assert(parseIp('1.1..1') === -1); + assert(parseIp('1.1.1.') === -1); + }); + + it('rejects an IP address-like string with invalid parts', () => { + assert(parseIp('192.168.1.256') === -1); + assert(parseIp('192.168.256.1') === -1); + assert(parseIp('192.256.1.1') === -1); + assert(parseIp('256.168.1.1') === -1); + assert(parseIp('256.168.1.-1') === -1); + }); + + it('correctly parses well-formed IP addresses', () => { + assert(parseIp('192.168.0.1') === 0xc0a80001); + assert(parseIp('127.0.0.1') === 0x7f000001); + assert(parseIp('1.1.1.1') === 0x01010101); + assert(parseIp('8.8.8.8') === 0x08080808); + }); + }); + + describe('isIpInRange', () => { + it('correctly detects if IP is in range', () => { + assert(isIpInRange(0xabadcafe, [0x00000000, 0x00000000])); + assert(isIpInRange(0x7f000001, [0x7f000000, 0xff000000])); + assert(isIpInRange(0xc0a80001, [0xc0a80000, 0xffff0000])); + assert(isIpInRange(0xc0a80101, [0xc0a80100, 0xffffff00])); + assert(isIpInRange(0xdeadbeef, [0xdeadbeef, 0xffffffff])); + }); + + it('correctly detects if IP is outside of range', () => { + assert(!isIpInRange(0xaaaaaaaa, [0xdeadbeef, 0xffffffff])); + assert(!isIpInRange(0xaaaaaaaa, [0x7f000000, 0xff000000])); + assert(!isIpInRange(0xaaaaaaaa, [0xc0a80000, 0xffff0000])); + }); + }); + + describe('isLocalIp', () => { + it('correctly detects if IP is a private network or loopback address', () => { + assert(isLocalIp(0x00000000)); + assert(isLocalIp(0x7fabcdef)); + assert(isLocalIp(0x0aabcdef)); + assert(isLocalIp(0xc0a8abcd)); + assert(isLocalIp(0xac1abcde)); + }); + + it('correctly detects if IP is not a private network or loopback address', () => { + assert(!isLocalIp(0x00abcdef)); + assert(!isLocalIp(0x01010101)); + assert(!isLocalIp(0x01000001)); + assert(!isLocalIp(0x08080808)); + assert(!isLocalIp(0x08080404)); + }); + }); +}); diff --git a/chromium/test/rules_test.js b/chromium/test/rules_test.js new file mode 100644 index 000000000000..ae31ad0060ba --- /dev/null +++ b/chromium/test/rules_test.js @@ -0,0 +1,221 @@ +'use strict'; + +const text_encoding = require('text-encoding'); +global.TextDecoder = text_encoding.TextDecoder; +global.TextEncoder = text_encoding.TextEncoder; +global.self = global; +require("../../lib-wasm/pkg/https_everywhere_lib_wasm.js"); + +const assert = require('chai').assert, + rules = require('../background-scripts/rules'); + +const Rule = rules.Rule, + RuleSet = rules.RuleSet, + RuleSets = rules.RuleSets, + getRule = rules.getRule; + + +describe('rules.js', function() { + let test_str = 'test'; + + describe('Rule', function() { + it('constructs trivial rule', function() { + let rule = new Rule('^http:', 'https:'); + assert.equal(rule.to, rules.trivial_rule.to); + assert.deepEqual(rule.from_c, rules.trivial_rule.from_c); + }); + }); + + describe('getRule', function() { + it('returns trivial rule object', function() { + let trivial = rules.trivial_rule; + let rule = getRule('^http:', 'https:'); + assert.equal(rule, trivial); + }); + }); + + describe('RuleSet', function() { + beforeEach(function() { + this.ruleset = new RuleSet('set_name', true, 'note'); + }); + + describe('#apply', function() { + it('excludes excluded uris', function() { + this.ruleset.exclusions = new RegExp(test_str); + assert.isNull(this.ruleset.apply(test_str)); + }); + + it('rewrites uris', function() { + let rule = new Rule('^http:', 'https:'); + this.ruleset.rules.push(rule); + assert.equal(this.ruleset.apply('http://example.com/'), 'https://example.com/'); + }); + + it('does nothing when empty', function() { + assert.isNull(this.ruleset.apply('http://example.com/')); + }); + }); + + describe('#isEquivalentTo', function() { + let inputs = ['a', 'b', 'c']; + + it('not equivalent with different input', function() { + let rs = new RuleSet(...inputs); + assert.isFalse( + rs.isEquivalentTo(new RuleSet('e', 'f', 'g')) + ); + }); + it('not equivalent with different exclusions', function() { + let rs_a = new RuleSet(...inputs), + rs_b = new RuleSet(...inputs); + rs_a.exclusions = new RegExp('foo'); + rs_b.exclusions = new RegExp('bar'); + + assert.isFalse(rs_a.isEquivalentTo(rs_b)); + }); + + it('not equivalent with different rules', function() { + let rs_a = new RuleSet(...inputs), + rs_b = new RuleSet(...inputs); + rs_a.rules.push(new Rule('a', 'a')); + rs_b.rules.push(new Rule('b', 'b')); + + assert.isFalse(rs_a.isEquivalentTo(rs_b)); + }); + + it('equivalent to self', function() { + let rs = new RuleSet(...inputs); + assert.isTrue(rs.isEquivalentTo(rs)); + }); + }); + }); + + describe('RuleSets', function() { + let rules_json = [{ + name: "Freerangekitten.com", + rule: [{ + to: "https:", + from: "^http:" + }], + target: ["freerangekitten.com", "www.freerangekitten.com"], + exclusion: ["foo", "bar"] + }]; + + beforeEach(function() { + this.rsets = new RuleSets(); + }); + + describe('#addFromJson', function() { + it('can add a rule', function() { + this.rsets.addFromJson(rules_json); + assert.isTrue(this.rsets.targets.has('freerangekitten.com')); + }); + + it('parses exclusions', function() { + this.rsets.addFromJson(rules_json); + let rs = [...this.rsets.targets.get('freerangekitten.com')][0]; + assert.strictEqual(rs.exclusions.source, "foo|bar"); + }); + }); + + describe('#rewriteURI', function() { + it('rewrites host added from json', function() { + let host = 'freerangekitten.com'; + this.rsets.addFromJson(rules_json); + + let newuri = this.rsets.rewriteURI('http://' + host + '/', host); + + assert.strictEqual(newuri, 'https://' + host + '/', 'protocol changed to https'); + }); + + it('does not rewrite unknown hosts', function() { + assert.isNull(this.rsets.rewriteURI('http://unknown.com/', 'unknown.com')); + }); + + it('does not rewrite excluded URLs', function() { + this.rsets.addFromJson(rules_json); + assert.isNull(this.rsets.rewriteURI('http://freerangekitten.com/foo', 'freerangekitten.com')); + assert.isNull(this.rsets.rewriteURI('http://www.freerangekitten.com/bar', 'freerangekitten.com')); + + let newuri = this.rsets.rewriteURI('http://freerangekitten.com/baz', 'freerangekitten.com'); + assert.strictEqual(newuri, 'https://freerangekitten.com/baz', 'protocol changed to https'); + }); + }); + + describe('#potentiallyApplicableRulesets', function() { + let host = 'example.com', + value = [host]; + + it('returns nothing when empty', function() { + assert.isEmpty(this.rsets.potentiallyApplicableRulesets(host)); + }); + + it('returns nothing for malformed hosts', function() { + assert.isEmpty(this.rsets.potentiallyApplicableRulesets('....')); + }); + + it('returns nothing for empty hosts', function() { + assert.isEmpty(this.rsets.potentiallyApplicableRulesets('')); + }); + + it('returns cached rulesets', function() { + this.rsets.ruleCache.set(host, value); + assert.deepEqual(this.rsets.potentiallyApplicableRulesets(host), value); + }); + + it('caches results', function() { + this.rsets.targets.set(host, value); + + assert.isEmpty(this.rsets.ruleCache); + this.rsets.potentiallyApplicableRulesets(host); + assert.isTrue(this.rsets.ruleCache.has(host)); + }); + + describe('wildcard matching', function() { + + it('no wildcard', function() { + let target = host; + this.rsets.targets.set(target, value); + + let result = this.rsets.potentiallyApplicableRulesets(target), + expected = new Set(value); + + assert.deepEqual(result, expected); + }); + + it('matches left hand side wildcards', function() { + let target = '*.' + host; + this.rsets.targets.set(target, value); + + let res1 = this.rsets.potentiallyApplicableRulesets('sub.' + host); + assert.deepEqual(res1, new Set(value), 'default case'); + + let res2 = this.rsets.potentiallyApplicableRulesets(host); + assert.isEmpty(res2, 'wildcard does not match parent domains'); + + let res3 = this.rsets.potentiallyApplicableRulesets('moresub.sub.' + host); + assert.deepEqual(res3, new Set(value), 'wildcard matches sub domains'); + }); + + it('matches right wildcards', function() { + const target = host + '.*'; + this.rsets.targets.set(target, value); + + const res1 = this.rsets.potentiallyApplicableRulesets(host + '.tld'); + assert.deepEqual(res1, new Set(value), 'default case'); + + const res2 = this.rsets.potentiallyApplicableRulesets(host + '.tld.com'); + assert.isEmpty(res2, 'wildcard matches second level domains'); + }); + + it('ignore middle wildcards', function() { + const target = 'www.*.' + host; + this.rsets.targets.set(target, value); + + const res1 = this.rsets.potentiallyApplicableRulesets('www.cdn.' + host); + assert.isEmpty(res1, 'middle wildcards are matched'); + }); + }); + }); + }); +}); diff --git a/chromium/test/testing_utils.js b/chromium/test/testing_utils.js new file mode 100644 index 000000000000..66657aa8fb93 --- /dev/null +++ b/chromium/test/testing_utils.js @@ -0,0 +1,29 @@ +'use strict'; + +function Mock() { + let out = function() { + out.calledWith = Array.from(arguments); + }; + return out; +} + +function stub(name, value) { + let parts = name.split('.'), + last = parts.pop(), + part = global; + parts.forEach(partName => { + if (!part.hasOwnProperty(partName)) { + part[partName] = {}; + } + part = part[partName]; + }); + part[last] = value; +} + +function stubber(namesValues) { + namesValues.forEach(nameValue => { + stub(...nameValue); + }); +} + +Object.assign(exports, {Mock, stub, stubber}); diff --git a/chromium/test/update_test.js b/chromium/test/update_test.js new file mode 100644 index 000000000000..33d96412168e --- /dev/null +++ b/chromium/test/update_test.js @@ -0,0 +1,71 @@ +'use strict'; + +const assert = require('chai').assert, + update = require('../background-scripts/update'), + chrome = require("sinon-chrome"), + util = require('../background-scripts/util'), + atob = require("atob"), + TextDecoder = require('text-encoding').TextDecoder, + sinon = require('sinon'); + +const fs = require('fs'), + { update_channels } = require('../background-scripts/update_channels'), + pako = require('../external/pako-1.0.5/pako_inflate.min.js'); + +util.setDefaultLogLevel(util.WARN); + +describe('update.js', function() { + const example_rulesets_gz = fs.readFileSync(__dirname + '/example.rulesets.gz'); + + describe('applyStoredRulesets', function() { + beforeEach(() => { + chrome.flush(); + if(util.loadExtensionFile.restore) { + util.loadExtensionFile.restore(); + } + }); + + it('applies compressed rulesets from chrome.storage', function(done) { + let apply_promises = []; + + for(let update_channel of update_channels) { + const key = 'rulesets: ' + update_channel.name; + chrome.storage.local.get.withArgs(key).yields({[key]: example_rulesets_gz}); + } + + update.applyStoredRulesets({addFromJson: response => { + apply_promises.push(new Promise(resolve => { + assert.isArray(response); + assert.equal(response[0].name, "Example.com"); + resolve(); + })); + + + Promise.all(apply_promises).then(() => done()); + + }}); + + }); + + it('applies rulesets from local extension file', function(done) { + for(let update_channel of update_channels) { + const key = 'rulesets: ' + update_channel.name; + chrome.storage.local.get.withArgs(key).yields({}); + } + + const example_rulesets_byte_array = pako.inflate(atob(example_rulesets_gz)); + const example_rulesets = new TextDecoder("utf-8").decode(example_rulesets_byte_array); + const example_rulesets_json = JSON.parse(example_rulesets); + + sinon.stub(util, "loadExtensionFile").returns(example_rulesets_json.rulesets); + + update.applyStoredRulesets({addFromJson: response => { + assert.isArray(response); + assert.equal(response[0].name, "Example.com"); + done(); + }}); + }); + + }); + +}); diff --git a/chromium/test/util_test.js b/chromium/test/util_test.js new file mode 100644 index 000000000000..af43df7440d1 --- /dev/null +++ b/chromium/test/util_test.js @@ -0,0 +1,105 @@ +'use strict'; + +const assert = require('chai').assert, + util = require('../background-scripts/util'); + + +describe('util.js', function() { + describe('nullIterable', function() { + it('is iterable zero times and is size 0', function() { + let count = 0; + for (let _ of util.nullIterable) { // eslint-disable-line no-unused-vars + count += 1; + } + assert.strictEqual(count, 0); + assert.strictEqual(util.nullIterable.size, 0); + assert.isEmpty(util.nullIterable); + }); + }); + + describe('isValidHostname', function() { + it('return true for common hosts', function() { + assert.strictEqual(util.isValidHostname('example.com'). true); + assert.strictEqual(util.isValidHostname('www.example.com'). true); + assert.strictEqual(util.isValidHostname('www.subdomain.example.com'). true); + }); + + it('return true for wildcard hosts', function() { + assert.strictEqual(util.isValidHostname('example.*'). true); + assert.strictEqual(util.isValidHostname('example.com.*'). true); + assert.strictEqual(util.isValidHostname('*.example.com'). true); + assert.strictEqual(util.isValidHostname('*.subdomain.example.com'). true); + }); + + it('return false for ill-formed hosts', function() { + // construct a lengthy hostname which host.length > 255 + let prefix = "e1234567890."; + let lengthyHostname = "example.com"; + + for (let i = 0; i < 100; ++i) { + lengthyHostname = (prefix + lengthyHostname); + } + + assert.strictEqual(util.isValidHostname(null), false); + assert.strictEqual(util.isValidHostname(''), false); + assert.strictEqual(util.isValidHostname(lengthyHostname), false); + assert.strictEqual(util.isValidHostname('example..com'), false); + assert.strictEqual(util.isValidHostname('www.example..com'), false); + }); + }); + + describe('getNormalisedHostname', function() { + it('preserve port numbers', function() { + assert.strictEqual(util.getNormalisedHostname('example.com'), 'example.com'); + assert.strictEqual(util.getNormalisedHostname('example.com:8080'), 'example.com:8080'); + }); + + it('removes tailing dots and preserve port numbers', function() { + assert.strictEqual(util.getNormalisedHostname('example.com.'), 'example.com'); + assert.strictEqual(util.getNormalisedHostname('example.com.:8080'), 'example.com:8080'); + assert.strictEqual(util.getNormalisedHostname('example.com..'), 'example.com'); + assert.strictEqual(util.getNormalisedHostname('example.com..:8080'), 'example.com:8080'); + }); + + it('preserves a single dot', function() { + assert.strictEqual(util.getNormalisedHostname('.'), '.'); + }); + }); + + describe('getWildcardExpressions', function() { + it('return empty result for ill-formed hosts', function() { + assert.strictEqual(util.getWildcardExpressions(null).size, 0); + assert.strictEqual(util.getWildcardExpressions('').size, 0); + assert.strictEqual(util.getWildcardExpressions('example.com..').size, 0); + }); + + it('return empty result for wildcard hosts', function() { + assert.strictEqual(util.getWildcardExpressions('example.*').size, 0); + assert.strictEqual(util.getWildcardExpressions('example.com.*').size, 0); + assert.strictEqual(util.getWildcardExpressions('*.example.com').size, 0); + assert.strictEqual(util.getWildcardExpressions('*.subdomain.example.com').size, 0); + }); + + it('return list of supported wildcard expression', function() { + const params = { + 'example.com': [ + 'example.*' + ], + 'www.example.com': [ + 'www.example.*', + '*.example.com' + ], + 'x.y.z.google.com': [ + 'x.y.z.google.*', + '*.y.z.google.com', + '*.z.google.com', + '*.google.com', + ] + }; + + for (const host in params) { + assert.deepEqual(util.getWildcardExpressions(host), params[host]); + } + }); + }); +}); diff --git a/chromium/translation.js b/chromium/translation.js deleted file mode 100644 index 61ae5ff14808..000000000000 --- a/chromium/translation.js +++ /dev/null @@ -1,11 +0,0 @@ -document.addEventListener("DOMContentLoaded", function () { - // auto-translate all elements with i18n attributes - var elem = document.querySelectorAll("[i18n]"); - for (let el of elem) { - el.innerHTML = chrome.i18n.getMessage(el.getAttribute("i18n")); - } - - // other translations - e("aboutTitle").setAttribute("title", chrome.i18n.getMessage("about_title")); - e("add-rule-link").addEventListener("click", addManualRule); -}); diff --git a/chromium/updates-master.xml b/chromium/updates-master.xml deleted file mode 100644 index da7b7a5ffbfc..000000000000 --- a/chromium/updates-master.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/chromium/util.js b/chromium/util.js deleted file mode 100644 index 6ecb52b6b2c9..000000000000 --- a/chromium/util.js +++ /dev/null @@ -1,27 +0,0 @@ -"use strict"; - -var VERB = 1; -var DBUG = 2; -var INFO = 3; -var NOTE = 4; -var WARN = 5; -// FYI: Logging everything is /very/ slow. Chrome will log & buffer -// these console logs even when the debug tools are closed. :( - -// TODO: Add an easy UI to change the log level. -// (Developers can just type DEFAULT_LOG_LEVEL=VERB in the console) -var DEFAULT_LOG_LEVEL = NOTE; -console.log("Hey developer! Want to see more verbose logging?"); -console.log("Type this into the console: DEFAULT_LOG_LEVEL=VERB"); -console.log("Accepted levels are VERB, DBUG, INFO, NOTE and WARN, default is NOTE"); - -function log(level, str) { - if (level >= DEFAULT_LOG_LEVEL) { - if (level === WARN) { - // Show warning with a little yellow icon in Chrome. - console.warn(str); - } else { - console.log(str); - } - } -} diff --git a/common/https-everywhere-banner.png b/common/https-everywhere-banner.png deleted file mode 100644 index 980c1eee3e47..000000000000 Binary files a/common/https-everywhere-banner.png and /dev/null differ diff --git a/common/icons/icon-active-16.png b/common/icons/icon-active-16.png deleted file mode 100644 index 1c2df37087e6..000000000000 Binary files a/common/icons/icon-active-16.png and /dev/null differ diff --git a/common/icons/icon-active-24.png b/common/icons/icon-active-24.png deleted file mode 100644 index cfaa83bd0e28..000000000000 Binary files a/common/icons/icon-active-24.png and /dev/null differ diff --git a/common/icons/icon-blocking-128.png b/common/icons/icon-blocking-128.png deleted file mode 100644 index 55a7fde1aa7f..000000000000 Binary files a/common/icons/icon-blocking-128.png and /dev/null differ diff --git a/common/icons/icon-blocking-16.png b/common/icons/icon-blocking-16.png deleted file mode 100644 index a9feab777af1..000000000000 Binary files a/common/icons/icon-blocking-16.png and /dev/null differ diff --git a/common/icons/icon-blocking-24.png b/common/icons/icon-blocking-24.png deleted file mode 100644 index 0fc12fb496f0..000000000000 Binary files a/common/icons/icon-blocking-24.png and /dev/null differ diff --git a/common/icons/icon-blocking-48.png b/common/icons/icon-blocking-48.png deleted file mode 100644 index ff13d72255ba..000000000000 Binary files a/common/icons/icon-blocking-48.png and /dev/null differ diff --git a/common/icons/icon-disabled-128.png b/common/icons/icon-disabled-128.png deleted file mode 100644 index 543b428ee391..000000000000 Binary files a/common/icons/icon-disabled-128.png and /dev/null differ diff --git a/common/icons/icon-disabled-16.png b/common/icons/icon-disabled-16.png deleted file mode 100644 index 505f2cf8028c..000000000000 Binary files a/common/icons/icon-disabled-16.png and /dev/null differ diff --git a/common/icons/icon-disabled-24.png b/common/icons/icon-disabled-24.png deleted file mode 100644 index a887e380b16b..000000000000 Binary files a/common/icons/icon-disabled-24.png and /dev/null differ diff --git a/common/icons/icon-disabled-48.png b/common/icons/icon-disabled-48.png deleted file mode 100644 index 2f47a2036f43..000000000000 Binary files a/common/icons/icon-disabled-48.png and /dev/null differ diff --git a/common/icons/icon-inactive-128.png b/common/icons/icon-inactive-128.png deleted file mode 100644 index 2c138333bcc4..000000000000 Binary files a/common/icons/icon-inactive-128.png and /dev/null differ diff --git a/common/icons/icon-inactive-16.png b/common/icons/icon-inactive-16.png deleted file mode 100644 index 09062f93be11..000000000000 Binary files a/common/icons/icon-inactive-16.png and /dev/null differ diff --git a/common/icons/icon-inactive-24.png b/common/icons/icon-inactive-24.png deleted file mode 100644 index 5fc8acd60738..000000000000 Binary files a/common/icons/icon-inactive-24.png and /dev/null differ diff --git a/common/icons/icon-inactive-38.png b/common/icons/icon-inactive-38.png deleted file mode 100644 index 4295ffacc77e..000000000000 Binary files a/common/icons/icon-inactive-38.png and /dev/null differ diff --git a/common/icons/icon-inactive-48.png b/common/icons/icon-inactive-48.png deleted file mode 100644 index 73287cf043fd..000000000000 Binary files a/common/icons/icon-inactive-48.png and /dev/null differ diff --git a/docs/README.md b/docs/README.md index 3a7d52816e87..129e8e6890a4 100644 --- a/docs/README.md +++ b/docs/README.md @@ -1,7 +1,13 @@ # HTTPS Everywhere Documentation -The markdown files contained in this path provide documentation for contributing to HTTPS Everywhere. These files are also templates that can be used to generate the markup for HTTPS Everywhere pages under `https://www.eff.org/https-everywhere`. To do so, install the program `pandoc` and run +The markdown files contained in this path provide documentation for +contributing to HTTPS Everywhere. These files are also templates that can be +used to generate the markup for HTTPS Everywhere pages under +`https://www.eff.org/https-everywhere`. To do so, install the program `pandoc` +and run pandoc faq.md -Copy the output, excluding the header on the first line, to the source of the relevant page within the CMS. Note that some of the pages are dynamically generated and are not generated from templates contained here. +Copy the output, excluding the header on the first line, to the source of the +relevant page within the CMS. Note that some of the pages are dynamically +generated and are not generated from templates contained here. diff --git a/docs/adrs/bloom-filter-rule-signing.md b/docs/adrs/bloom-filter-rule-signing.md new file mode 100644 index 000000000000..09b0fda6f2aa --- /dev/null +++ b/docs/adrs/bloom-filter-rule-signing.md @@ -0,0 +1,28 @@ +# Bloom Filters and Async Rust for Ruleset Signing + +* Status: Deployed +* Deciders: EFF (@zoracon and @hainish) +* Deploy Date: 2021-03-03 + +## Context and Problem Statement + +With larger ruleset lists to be signed on the DuckDuckGo Update channel, a better way to digest and form ruleset files were needed. + +## Decision Drivers + +* Bloom filters are able to ingest greater data sets at less memory expense +* Rust is already incorporated in HTTPS Everywhere and is a memory safe language + +## Decision Outcome + +Created an async Rust script that ingests DuckDuckGo's Smarter Encryption list, compares to the Majestic Million list, and forms a bloom file and associated metadata. + +### Consequences and Concerns + +An accepted false positive is declared when the filter is generated. + +[Comment](https://github.com/EFForg/https-everywhere/pull/19910#issuecomment-771102775) + +## Links for Further Context +* [Bloom Filter Script](https://github.com/EFForg/generate-smarter-encryption-bloom-filter) + diff --git a/docs/adrs/duckduckgo-smarter-encryption.md b/docs/adrs/duckduckgo-smarter-encryption.md new file mode 100644 index 000000000000..a9c49824c9ae --- /dev/null +++ b/docs/adrs/duckduckgo-smarter-encryption.md @@ -0,0 +1,33 @@ +# Incorporating DuckDuckGo Smarter Encryption + +* Status: Pending +* Deciders: EFF (@zoracon and @hainish) and DuckDuckGo +* Deploy Date: 2021-04-15 + +## Context and Problem Statement + +With the increased HTTPS traffic, the current model of listed sites that support HTTPS is no longer a maintenance task that makes sense to uphold. + +## Decision Drivers + +* Firefox has an HTTPS-Only option +* Browsers and websites are moving away from issues that created need for more granular ruleset maintenance. + * Mixed content is now blocked in major browsers + * Different domains for secure connection are now an older habit (i.e. secure.google.com) + * TLS 1.0, 1.1 deprecation +* Chrome’s Manifest V3 will force the extensions to have a ruleset cap. Instead of competing with other extensions like DuckDuckGo, if the user prefers to use HTTPS Everywhere or DuckDuckGo's privacy essentials, we will provide the same coverage. +* DuckDuckGo’s Smarter Encryption covers more domains than our current, more manual model. + +## Decision Outcome + +We chose to add the DuckDuckGo Smarter Encryption update channel, because it no longer is beneficial to diverse efforts with others with similar goals in this space. + +### Consequences and Concerns + +* We have many downstream partners supported and unofficial that rely on our current rulesets. This transition gives them time to make the needed decisions on their before we completely switch over to using DuckDuckGo's Smarter Encryption, and sunset our current rulesets in HTTPS Everywhere +* … + +## Links for Further Context + +* https://spreadprivacy.com/duckduckgo-smarter-encryption/ +* https://www.eff.org/deeplinks/2020/11/10-years-https-everywhere \ No newline at end of file diff --git a/docs/en_US/development.md b/docs/en_US/development.md index 0388e2573ea7..b6041f652a98 100644 --- a/docs/en_US/development.md +++ b/docs/en_US/development.md @@ -2,24 +2,59 @@ ### Pointers for developers -- **License:** GPL version 3+ (although most of the code is GPL-2 compatible) -- **Source code:** Available via Git with `git clone https://github.com/EFForg/https-everywhere.git`. You can fork and open pull requests using Github at [https://github.com/EFForg/https-everywhere](https://github.com/EFForg/https-everywhere). -- **Translations:** If you would like to help translate HTTPS Everywhere into another language, you can do that [through Transifex](https://www.transifex.com/otf/torproject/). -- **Bug tracker:** Use the [GitHub issue tracker](https://github.com/EFForg/https-everywhere/issues/) or the [Tor Project issue tracker](https://trac.torproject.org/projects/tor/report/19). For the Tor Project issue tracker, you can make an account or use the anonymous one — "cypherpunks"/"writecode". You won't see replies unless you put an email address in the CC field. Bugs that are caused by rulesets should be tagged "httpse-ruleset-bug", and can be viewed [in this report](https://trac.torproject.org/projects/tor/report/48). -- **Mailing lists:** The [https-everywhere](https://lists.eff.org/mailman/listinfo/https-everywhere) list ([archives](https://lists.eff.org/pipermail/https-everywhere/)) is for discussing the project as a whole; the [https-everywhere-rules](https://lists.eff.org/mailman/listinfo/https-everywhere-rules) mailing list ([archives](https://lists.eff.org/pipermail/https-everywhere-rules)) is for discussing the [rulesets](https://www.eff.org/https-everywhere/rulesets) and their contents, including patches and git pull requests. -- **IRC:** `#https-everywhere` on `irc.oftc.net`. If you ask a question, be sure to stay in the channel — someone may reply a few hours or a few days later. +* **License:** GPL version 3+ (although most of the code is GPL-2 compatible) +* **Source code:** Available via Git with `git clone + https://github.com/EFForg/https-everywhere.git`. You can fork and open pull + requests using Github at + [https://github.com/EFForg/https-everywhere](https://github.com/EFForg/https-everywhere). +* **Translations:** If you would like to help translate HTTPS Everywhere into + another language, you can do that [through + Transifex](https://www.transifex.com/otf/torproject/). +* **Bug tracker:** Use the [GitHub issue + tracker](https://github.com/EFForg/https-everywhere/issues/) or the [Tor + Project issue tracker](https://trac.torproject.org/projects/tor/report/19). + For the Tor Project issue tracker, you can make an account or use the + anonymous one — "cypherpunks"/"writecode". You won't see replies unless you + put an email address in the CC field. Bugs that are caused by rulesets + should be tagged "httpse-ruleset-bug", and can be viewed [in this + report](https://trac.torproject.org/projects/tor/report/48). +* **Mailing lists:** The + [https-everywhere](https://lists.eff.org/mailman/listinfo/https-everywhere) + list ([archives](https://lists.eff.org/pipermail/https-everywhere/)) is for + discussing the project as a whole; the + [https-everywhere-rules](https://lists.eff.org/mailman/listinfo/https-everywhere-rules) + mailing list + ([archives](https://lists.eff.org/pipermail/https-everywhere-rules)) is for + discussing the [rulesets](https://www.eff.org/https-everywhere/rulesets) + and their contents, including patches and git pull requests. +* **IRC:** `#https-everywhere` on `irc.oftc.net`; if you don't have an IRC + client application already installed, you can [use this webchat + interface](https://webchat.oftc.net/?channels=#https-everywhere). If you + ask a question, be sure to stay in the channel — someone may reply a few + hours or a few days later. ### Testing and contributing changes to the source code -HTTPS Everywhere consists of a large number of rules for switching sites from HTTP to HTTPS. You can read more about how to write these rules [here](https://www.eff.org/https-everywhere/rulesets). +HTTPS Everywhere consists of a large number of rules for switching sites from +HTTP to HTTPS. You can read more about how to write these rules +[here](https://www.eff.org/https-everywhere/rulesets). -If you want to create new rules to submit to us, we expect them to be in the src/chrome/content/rules directory. That directory also contains a useful script, make-trivial-rule, to create a simple rule for a specified domain. There is also a script called trivial-validate.py, to check all the pending rules for several common errors and oversights. For example, if you wanted to make a rule for the example.com domain, you could run +If you want to create new rules to submit to us, we expect them to be in the +src/chrome/content/rules directory. That directory also contains a useful +script, make-trivial-rule, to create a simple rule for a specified domain. +There is also a script in test/validations/special/run.py, to check all the +pending rules for several common errors and oversights. For example, if you +wanted to make a rule for the example.com domain, you could run bash ./make-trivial-rule example.com -inside the rules directory. This would create Example.com.xml, which you could then take a look at and edit based on your knowledge of any specific URLs at example.com that do or don't work in HTTPS. +inside the rules directory. This would create Example.com.xml, which you could +then take a look at and edit based on your knowledge of any specific URLs at +example.com that do or don't work in HTTPS. -Before submitting your change, you should test it in Firefox and/or Chrome, as applicable. You can build the latest version of the extension and run it in a standalone Firefox profile using: +Before submitting your change, you should test it in Firefox and/or Chrome, as +applicable. You can build the latest version of the extension and run it in a +standalone Firefox profile using: bash ./test.sh --justrun @@ -27,7 +62,9 @@ Similarly, to build and run in a standalone Chromium profile, run: bash ./run-chromium.sh -You should thoroughly test your changes on the target site: Navigate to as wide a variety of pages as you can find. Try to comment or log in if applicable. Make sure everything still works properly. +You should thoroughly test your changes on the target site: Navigate to as wide +a variety of pages as you can find. Try to comment or log in if applicable. +Make sure everything still works properly. After running your manual tests, run the automated tests and the fetch tests: @@ -35,45 +72,64 @@ After running your manual tests, run the automated tests and the fetch tests: bash ./fetch-test.sh -This will catch some of the most common types of errors, but is not a guaranteed of correctness. +This will catch some of the most common types of errors, but is not a +guaranteed of correctness. -Once you've tested your changes, you can submit them for review via any of the following: +Once you've tested your changes, you can submit them for review via any of the +following: -- Open a pull request at [https://github.com/EFForg/https-everywhere](https://github.com/EFForg/https-everywhere). -- Email https-everywhere-rules@eff.org to tell us about your changes. You can use the following command to create a patch file: `git format-patch` +* Open a pull request at + [https://github.com/EFForg/https-everywhere](https://github.com/EFForg/https-everywhere). +* Email https-everywhere-rules@eff.org to tell us about your changes. You can + use the following command to create a patch file: `git format-patch` ### A quick HOWTO on working with Git -You may want to also look at the [Git Reference](http://gitref.org/), [GitHub Help Site](https://help.github.com/) and the [Tor Project's Git documentation](https://gitweb.torproject.org/githax.git/tree/doc/Howto.txt) to fill in the gaps here, but the below should be enough to get the basics of the workflow down. +You may want to also look at the [Git Reference](http://gitref.org/), [GitHub +Help Site](https://help.github.com/) and the [Tor Project's Git +documentation](https://gitweb.torproject.org/githax.git/tree/doc/Howto.txt) to +fill in the gaps here, but the below should be enough to get the basics of the +workflow down. First, tell git your name: - git config --global user.name "Your Name" git config --global user.email "you@example.com" + git config --global user.name "Your Name" + git config --global user.email "you@example.com" Then, get a copy of the 'origin' repository: git clone https://github.com/EFForg/https-everywhere.git cd https-everywhere -Alternatively, if you already have a Github account, you can create a "fork" of the repository on Github at [https://github.com/EFForg/https-everywhere](https://github.com/EFForg/https-everywhere). See [this page](https://help.github.com/articles/fork-a-repo) for a tutorial. +Alternatively, if you already have a Github account, you can create a "fork" of +the repository on Github at +[https://github.com/EFForg/https-everywhere](https://github.com/EFForg/https-everywhere). +See [this page](https://help.github.com/articles/fork-a-repo) for a tutorial. -Once you have a local copy of the repository, create a new branch for your changes and check it out: +Once you have a local copy of the repository, create a new branch for your +changes and check it out: git checkout -b my-new-rules master -When you want to send us your work, you'll need to add any new files to the index with git add: +When you want to send us your work, you'll need to add any new files to the +index with git add: git add ./src/chrome/content/rules/MyRule1.xml git add ./src/chrome/content/rules/MyRule2.xml -You can now commit your changes to the local branch. To make things easier, you should commit each xml file individually: +You can now commit your changes to the local branch. To make things easier, you +should commit each xml file individually: git commit ./src/chrome/content/rules/MyRule1.xml git commit ./src/chrome/content/rules/MyRule2.xml -Now, you need a place to publish your changes. You can create a github account here: [https://github.com/join](https://help.github.com/). [https://help.github.com/](https://help.github.com/) describes the account creation process and some other github-specific things. +Now, you need a place to publish your changes. You can create a github account +here: [https://github.com/join](https://help.github.com/). +[https://help.github.com/](https://help.github.com/) describes the account +creation process and some other github-specific things. -Once you have created your account and added your remote in your local checkout, you want to push your branch to your github remote: +Once you have created your account and added your remote in your local +checkout, you want to push your branch to your github remote: git push github my-new-rules:my-new-rules diff --git a/docs/en_US/faq.md b/docs/en_US/faq.md index 3ca4656371d7..1a805b5bcf53 100644 --- a/docs/en_US/faq.md +++ b/docs/en_US/faq.md @@ -1,91 +1,234 @@ ## HTTPS Everywhere FAQ -This page answers frequently-asked questions about EFF's [HTTPS Everywhere](https://www.eff.org/https-everywhere) project. If your question isn't answered below, you can try the resources [listed here](https://www.eff.org/https-everywhere/development). - -- [What if HTTPS Everywhere breaks some site that I use?](#what-if-https-everywhere-breaks-some-site-that-i-use) -- [Why is HTTPS Everywhere preventing me from joining this hotel/school/other wireless network?](#why-is-https-everywhere-preventing-me-from-joining-this-hotelschoolother-wireless-network) -- [Will there be a version of HTTPS Everywhere for IE, Safari, or some other browser?](#will-there-be-a-version-of-https-everywhere-for-ie-safari-or-some-other-browser) -- [Why use a whitelist of sites that support HTTPS? Why can't you try to use HTTPS for every last site, and only fall back to HTTP if it isn't available?](#why-use-a-whitelist-of-sites-that-support-https-why-cant-you-try-to-use-https-for-every-last-site-and-only-fall-back-to-http-if-it-isnt-available) -- [How do I get rid of/move the HTTPS Everywhere button in the toolbar?](#how-do-i-get-rid-ofmove-the-https-everywhere-button-in-the-toolbar) -- [When does HTTPS Everywhere protect me? When does it not protect me?](#when-does-https-everywhere-protect-me-when-does-it-not-protect-me) -- [What does HTTPS Everywhere protect me against?](#what-does-https-everywhere-protect-me-against) -- [How do I get support for an additional site in HTTPS Everywhere?](#how-do-i-get-support-for-an-additional-site-in-https-everywhere) -- [What if the site doesn't support HTTPS, or only supports it for some activities, like entering credit card information?](#what-if-the-site-doesnt-support-https-or-only-supports-it-for-some-activities-like-entering-credit-card-information) -- [Isn't it more expensive or slower for a site to support HTTPS compared to regular HTTP?](#isnt-it-more-expensive-or-slower-for-a-site-to-support-https-compared-to-regular-http) -- [Why should I use HTTPS Everywhere instead of just typing https:// at the beginning of site names?](#why-should-i-use-https-everywhere-instead-of-just-typing-https-at-the-beginning-of-site-names) -- [Why does HTTPS Everywhere include rules for sites like PayPal that already require HTTPS on all their pages?](#why-does-https-everywhere-include-rules-for-sites-like-paypal-that-already-require-https-on-all-their-pages) -- [What do the different colors for rulesets in the Firefox toolbar menu mean?](#what-do-the-different-colors-for-rulesets-in-the-firefox-toolbar-menu-mean) -- [What do the different colors of the HTTPS Everywhere icon mean?](#what-do-the-different-colors-of-the-https-everywhere-icon-mean) -- [I'm having a problem installing the browser extension.](#im-having-a-problem-installing-the-browser-extension.) -- [How do I uninstall/remove HTTPS Everywhere?](#how-do-i-uninstallremove-https-everywhere) -- [How do I add my own site to HTTPS Everywhere?](#how-do-i-add-my-own-site-to-https-everywhere) -- [Can I help translate HTTPS Everywhere into my own language?](#can-i-help-translate-https-everywhere-into-my-own-language) +This page answers frequently-asked questions about EFF's [HTTPS +Everywhere](https://www.eff.org/https-everywhere) project. If your question +isn't answered below, you can try the resources [listed +here](https://www.eff.org/https-everywhere/development). + +* [What if HTTPS Everywhere breaks some site that I + use?](#what-if-https-everywhere-breaks-some-site-that-i-use) +* [Why is HTTPS Everywhere preventing me from joining this hotel/school/other + wireless + network?](#why-is-https-everywhere-preventing-me-from-joining-this-hotelschoolother-wireless-network) +* [Will there be a version of HTTPS Everywhere for IE, Safari, or some other + browser?](#will-there-be-a-version-of-https-everywhere-for-ie-safari-or-some-other-browser) +* [Why use a allowlist of sites that support HTTPS? Why can't you try to use + HTTPS for every last site, and only fall back to HTTP if it isn't + available?](#why-use-a-allowlist-of-sites-that-support-https-why-cant-you-try-to-use-https-for-every-last-site-and-only-fall-back-to-http-if-it-isnt-available) +* [How do I get rid of/move the HTTPS Everywhere button in the + toolbar?](#how-do-i-get-rid-ofmove-the-https-everywhere-button-in-the-toolbar) +* [When does HTTPS Everywhere protect me? When does it not protect + me?](#when-does-https-everywhere-protect-me-when-does-it-not-protect-me) +* [What does HTTPS Everywhere protect me + against?](#what-does-https-everywhere-protect-me-against) +* [How do I get support for an additional site in HTTPS + Everywhere?](#how-do-i-get-support-for-an-additional-site-in-https-everywhere) +* [What if the site doesn't support HTTPS, or only supports it for some + activities, like entering credit card + information?](#what-if-the-site-doesnt-support-https-or-only-supports-it-for-some-activities-like-entering-credit-card-information) +* [Isn't it more expensive or slower for a site to support HTTPS compared to + regular + HTTP?](#isnt-it-more-expensive-or-slower-for-a-site-to-support-https-compared-to-regular-http) +* [Why should I use HTTPS Everywhere instead of just typing https:// at the + beginning of site + names?](#why-should-i-use-https-everywhere-instead-of-just-typing-https-at-the-beginning-of-site-names) +* [Why does HTTPS Everywhere include rules for sites like PayPal that already + require HTTPS on all their + pages?](#why-does-https-everywhere-include-rules-for-sites-like-paypal-that-already-require-https-on-all-their-pages) +* [What do the different colors for rulesets in the Firefox toolbar menu + mean?](#what-do-the-different-colors-for-rulesets-in-the-firefox-toolbar-menu-mean) +* [What do the different colors of the HTTPS Everywhere icon + mean?](#what-do-the-different-colors-of-the-https-everywhere-icon-mean) +* [I'm having a problem installing the browser + extension.](#im-having-a-problem-installing-the-browser-extension.) +* [How do I uninstall/remove HTTPS + Everywhere?](#how-do-i-uninstallremove-https-everywhere) +* [How do I add my own site to HTTPS + Everywhere?](#how-do-i-add-my-own-site-to-https-everywhere) +* [Can I help translate HTTPS Everywhere into my own + language?](#can-i-help-translate-https-everywhere-into-my-own-language) ### [What if HTTPS Everywhere breaks some site that I use?](#what-if-https-everywhere-breaks-some-site-that-i-use) -This is occasionally possible because of inconsistent support for HTTPS on sites (e.g., when a site seems to support HTTPS access but makes a few, unpredictable, parts of the site unavailable in HTTPS). If you [report the problem to us](https://github.com/EFForg/https-everywhere/issues), we can try to fix it. In the meantime, you can disable the rule affecting that particular site in your own copy of HTTPS Everywhere by clicking on the HTTPS Everywhere toolbar button and unchecking the rule for that site. +This is occasionally possible because of inconsistent support for HTTPS on +sites (e.g., when a site seems to support HTTPS access but makes a few, +unpredictable, parts of the site unavailable in HTTPS). If you [report the +problem to us](https://github.com/EFForg/https-everywhere/issues), we can try +to fix it. In the meantime, you can disable the rule affecting that particular +site in your own copy of HTTPS Everywhere by clicking on the HTTPS Everywhere +toolbar button and unchecking the rule for that site. -You can also report the problem to the site, since they have the power to fix it! +You can also report the problem to the site, since they have the power to fix +it! ### [Why is HTTPS Everywhere preventing me from joining this hotel/school/other wireless network?](#why-is-https-everywhere-preventing-me-from-joining-this-hotelschoolother-wireless-network) -Some wireless networks hijack your HTTP connections when you first join them, in order to demand authentication or simply to try to make you agree to terms of use. HTTPS pages are protected against this type of hijacking, which is as it should be. If you go to a website that isn't protected by HTTPS Everywhere or by HSTS (currently, example.com is one such site), that will allow your connection to be captured and redirected to the authentication or terms of use page. +Some wireless networks hijack your HTTP connections when you first join them, +in order to demand authentication or simply to try to make you agree to terms +of use. HTTPS pages are protected against this type of hijacking, which is as +it should be. If you go to a website that isn't protected by HTTPS Everywhere +or by HSTS (currently, example.com is one such site), that will allow your +connection to be captured and redirected to the authentication or terms of use +page. ### [Will there be a version of HTTPS Everywhere for IE, Safari, or some other browser?](#will-there-be-a-version-of-https-everywhere-for-ie-safari-or-some-other-browser) -As of early 2012, the Safari extension API does not offer a way to perform secure rewriting of http requests to https. But if you happen to know a way to perform secure request rewriting in these browsers, feel free to let us know at https-everywhere at EFF.org (but note that modifying document.location or window.location in JavaScript is not secure). - -### [Why use a whitelist of sites that support HTTPS? Why can't you try to use HTTPS for every last site, and only fall back to HTTP if it isn't available?](#why-use-a-whitelist-of-sites-that-support-https-why-cant-you-try-to-use-https-for-every-last-site-and-only-fall-back-to-http-if-it-isnt-available) - -There are several problems with the idea of trying to automatically detect HTTPS on every site. There is no guarantee that sites are going to give the same response via HTTPS that they give via HTTP. Also, it's not possible to test for HTTPS in real time without introducing security vulnerabilities (What should the extension do if the HTTPS connection attempt fails? Falling back to insecure HTTP isn't safe). And in some cases, HTTPS Everywhere has to perform quite complicated transformations on URIs — for example until recently the Wikipedia rule had to turn an address like `http://en.wikipedia.org/wiki/World_Wide_Web` into one like `https://secure.wikimedia.org/wikipedia/en/wiki/World_Wide_Web` because HTTPS was not available on Wikipedia's usual domains. +As of early 2012, the Safari extension API does not offer a way to perform +secure rewriting of http requests to https. But if you happen to know a way to +perform secure request rewriting in these browsers, feel free to let us know at +https-everywhere at EFF.org (but note that modifying document.location or +window.location in JavaScript is not secure). + +### [Why use a allowlist of sites that support HTTPS? Why can't you try to use HTTPS for every last site, and only fall back to HTTP if it isn't available?](#why-use-a-allowlist-of-sites-that-support-https-why-cant-you-try-to-use-https-for-every-last-site-and-only-fall-back-to-http-if-it-isnt-available) + +There are several problems with the idea of trying to automatically detect +HTTPS on every site. There is no guarantee that sites are going to give the +same response via HTTPS that they give via HTTP. Also, it's not possible to +test for HTTPS in real time without introducing security vulnerabilities (What +should the extension do if the HTTPS connection attempt fails? Falling back to +insecure HTTP isn't safe). And in some cases, HTTPS Everywhere has to perform +quite complicated transformations on URIs — for example until recently the +Wikipedia rule had to turn an address like +`http://en.wikipedia.org/wiki/World_Wide_Web` into one like +`https://secure.wikimedia.org/wikipedia/en/wiki/World_Wide_Web` because HTTPS +was not available on Wikipedia's usual domains. ### [How do I get rid of/move the HTTPS Everywhere button in the toolbar?](#how-do-i-get-rid-ofmove-the-https-everywhere-button-in-the-toolbar) -The HTTPS Everywhere button is useful because it allows you to see, and disable, a ruleset if it happens to be causing problems with a site. But if you'd rather disable it, go to View->Toolbars->Customize, and drag the button out of the toolbar into the Addons bar at the bottom of the page. Then you can hide the Addons bar. (In theory you should be able to drag it into the tray of available icons too, but that may trigger [this bug](https://trac.torproject.org/projects/tor/ticket/6276). +The HTTPS Everywhere button is useful because it allows you to see, and +disable, a ruleset if it happens to be causing problems with a site. But if +you'd rather disable it, go to View->Toolbars->Customize, and drag the button +out of the toolbar into the Addons bar at the bottom of the page. Then you can +hide the Addons bar. (In theory you should be able to drag it into the tray of +available icons too, but that may trigger [this +bug](https://trac.torproject.org/projects/tor/ticket/6276). ### [When does HTTPS Everywhere protect me? When does it not protect me?](#when-does-https-everywhere-protect-me-when-does-it-not-protect-me) -HTTPS Everywhere protects you only when you are using _encrypted portions of supported web sites_. On a supported site, it will automatically activate HTTPS encryption for all known supported parts of the site (for some sites, this might be only a portion of the entire site). For example, if your web mail provider does not support HTTPS at all, HTTPS Everywhere can't make your access to your web mail secure. Similarly, if a site allows HTTPS for text but not images, someone might be able to see which images your browser loads and guess what you're accessing. - -HTTPS Everywhere depends entirely on the security features of the individual web sites that you use; it _activates_ those security features, but it can't _create_ them if they don't already exist. If you use a site not supported by HTTPS Everywhere or a site that provides some information in an insecure way, HTTPS Everywhere can't provide additional protection for your use of that site. Please remember to check that a particular site's security is working to the level you expect before sending or receiving confidential information, including passwords. - -One way to determine what level of protection you're getting when using a particular site is to use a packet-sniffing tool like [Wireshark](https://www.wireshark.org/) to record your own communications with the site. The resulting view of your communications is about the same as what an eavesdropper on your wifi network or at your ISP would see. This way, you can determine whether some or all of your communications would be protected; however, it may be quite time-consuming to make sense of the Wireshark output with enough care to get a definitive answer. - -You can also turn on the "Block all HTTP requests" feature for added protection. Instead of loading insecure pages or images, HTTPS Everywhere will block them outright. +HTTPS Everywhere protects you only when you are using _encrypted portions of +supported web sites_. On a supported site, it will automatically activate HTTPS +encryption for all known supported parts of the site (for some sites, this +might be only a portion of the entire site). For example, if your web mail +provider does not support HTTPS at all, HTTPS Everywhere can't make your access +to your web mail secure. Similarly, if a site allows HTTPS for text but not +images, someone might be able to see which images your browser loads and guess +what you're accessing. + +HTTPS Everywhere depends entirely on the security features of the individual +web sites that you use; it _activates_ those security features, but it can't +_create_ them if they don't already exist. If you use a site not supported by +HTTPS Everywhere or a site that provides some information in an insecure way, +HTTPS Everywhere can't provide additional protection for your use of that site. +Please remember to check that a particular site's security is working to the +level you expect before sending or receiving confidential information, +including passwords. + +One way to determine what level of protection you're getting when using a +particular site is to use a packet-sniffing tool like +[Wireshark](https://www.wireshark.org/) to record your own communications with +the site. The resulting view of your communications is about the same as what +an eavesdropper on your wifi network or at your ISP would see. This way, you +can determine whether some or all of your communications would be protected; +however, it may be quite time-consuming to make sense of the Wireshark output +with enough care to get a definitive answer. + +You can also turn on the "Block all HTTP requests" feature for added +protection. Instead of loading insecure pages or images, HTTPS Everywhere will +block them outright. ### [What does HTTPS Everywhere protect me against?](#what-does-https-everywhere-protect-me-against) -On supported parts of supported sites, HTTPS Everywhere enables the sites' HTTPS protection which can protect you against eavesdropping and tampering with the contents of the site or with the information you send to the site. Ideally, this provides some protection against an attacker learning the content of the information flowing in each direction — for instance, the text of e-mail messages you send or receive through a webmail site, the products you browse or purchase on an e-commerce site, or the particular articles you read on a reference site. - -However, HTTPS Everywhere **does not conceal the identities of the sites you access**, the amount of time you spend using them, or the amount of information you upload or download from a particular site. For example, if you access `http://www.eff.org/issues/nsa-spying` and HTTPS Everywhere rewrites it to `https://www.eff.org/issues/nsa-spying`, an eavesdropper can still trivially recognize that you are accessing www.eff.org (but might not know which issue you are reading about). In general, the entire hostname part of the URL remains exposed to the eavesdropper because this must be sent repeatedly in unencrypted form while setting up the connection. Another way of saying this is that HTTPS was never designed to conceal the identity of the sites that you visit. - -Researchers have also shown that it may be possible for someone to figure out more about what you're doing on a site merely through careful observation of the amount of data you upload and download, or the timing patterns of your use of the site. A simple example is that if the site only has one page of a certain total size, anyone downloading exactly that much data from the site is probably accessing that page. - -If you want to protect yourself against monitoring of the sites you visit, consider using HTTPS Everywhere together with software like [Tor](https://www.torproject.org/). +On supported parts of supported sites, HTTPS Everywhere enables the sites' +HTTPS protection which can protect you against eavesdropping and tampering with +the contents of the site or with the information you send to the site. Ideally, +this provides some protection against an attacker learning the content of the +information flowing in each direction — for instance, the text of e-mail +messages you send or receive through a webmail site, the products you browse or +purchase on an e-commerce site, or the particular articles you read on a +reference site. + +However, HTTPS Everywhere **does not conceal the identities of the sites you +access**, the amount of time you spend using them, or the amount of information +you upload or download from a particular site. For example, if you access +`http://www.eff.org/issues/nsa-spying` and HTTPS Everywhere rewrites it to +`https://www.eff.org/issues/nsa-spying`, an eavesdropper can still trivially +recognize that you are accessing www.eff.org (but might not know which issue +you are reading about). In general, the entire hostname part of the URL remains +exposed to the eavesdropper because this must be sent repeatedly in unencrypted +form while setting up the connection. Another way of saying this is that HTTPS +was never designed to conceal the identity of the sites that you visit. + +Researchers have also shown that it may be possible for someone to figure out +more about what you're doing on a site merely through careful observation of +the amount of data you upload and download, or the timing patterns of your use +of the site. A simple example is that if the site only has one page of a +certain total size, anyone downloading exactly that much data from the site is +probably accessing that page. + +If you want to protect yourself against monitoring of the sites you visit, +consider using HTTPS Everywhere together with software like +[Tor](https://www.torproject.org/). ### [How do I get support for an additional site in HTTPS Everywhere?](#how-do-i-get-support-for-an-additional-site-in-https-everywhere) -You can learn [how to write rules](https://www.eff.org/https-everywhere/rulesets) that teach HTTPS Everywhere to support new sites. You can install these rules in your own browser or send them to us for possible inclusion in the official version. +You can learn [how to write +rules](https://www.eff.org/https-everywhere/rulesets) that teach HTTPS +Everywhere to support new sites. You can install these rules in your own +browser or send them to us for possible inclusion in the official version. ### [What if the site doesn't support HTTPS, or only supports it for some activities, like entering credit card information?](#what-if-the-site-doesnt-support-https-or-only-supports-it-for-some-activities-like-entering-credit-card-information) -You could try to contact the site and point out that using HTTPS for all site features is an increasingly common practice nowadays and protects users (and sites) against a variety of Internet attacks. For instance, it defends against the ability of other people on a wifi network to spy on your use of the site or even take over your account. You can also point out that credit card numbers aren't the only information you consider private or sensitive. +You could try to contact the site and point out that using HTTPS for all site +features is an increasingly common practice nowadays and protects users (and +sites) against a variety of Internet attacks. For instance, it defends against +the ability of other people on a wifi network to spy on your use of the site or +even take over your account. You can also point out that credit card numbers +aren't the only information you consider private or sensitive. -Sites like Google, Twitter, and Facebook now support HTTPS for non-financial information — for general privacy and security reasons. +Sites like Google, Twitter, and Facebook now support HTTPS for non-financial +information — for general privacy and security reasons. ### [Isn't it more expensive or slower for a site to support HTTPS compared to regular HTTP?](#isnt-it-more-expensive-or-slower-for-a-site-to-support-https-compared-to-regular-http) -It can be, but some sites have been pleasantly surprised to see how practical it can be. Also, experts at Google are currently implementing several enhancements to the TLS protocol that make HTTPS dramatically faster; if these enhancements are added to the standard soon, the speed gap between the two should almost disappear. See [Adam Langley's description of the HTTPS deployment situation](https://www.imperialviolet.org/2010/06/25/overclocking-ssl.html) for more details on these issues. Notably, Langley states: "In order to [enable HTTPS by default for Gmail] we had to deploy no additional machines and no special hardware. On our production frontend machines, SSL/TLS accounts for less than 1% of the CPU load, less than 10KB of memory per connection and less than 2% of network overhead." - -It used to be expensive to purchase a certificate for HTTPS usage, but they can now be obtained for free from [Let's Encrypt](https://letsencrypt.org/) as well. +It can be, but some sites have been pleasantly surprised to see how practical +it can be. Also, experts at Google are currently implementing several +enhancements to the TLS protocol that make HTTPS dramatically faster; if these +enhancements are added to the standard soon, the speed gap between the two +should almost disappear. See [Adam Langley's description of the HTTPS +deployment +situation](https://www.imperialviolet.org/2010/06/25/overclocking-ssl.html) for +more details on these issues. Notably, Langley states: "In order to [enable +HTTPS by default for Gmail] we had to deploy no additional machines and no +special hardware. On our production frontend machines, SSL/TLS accounts for +less than 1% of the CPU load, less than 10KB of memory per connection and less +than 2% of network overhead." + +It used to be expensive to purchase a certificate for HTTPS usage, but they can +now be obtained for free from [Let's Encrypt](https://letsencrypt.org/) as +well. ### [Why should I use HTTPS Everywhere instead of just typing https:// at the beginning of site names?](#why-should-i-use-https-everywhere-instead-of-just-typing-https-at-the-beginning-of-site-names) -Even if you normally type https://, HTTPS Everywhere might protect you if you occasionally forget. Also, it can rewrite other people's links that you follow. For instance, if you click on a link to `http://en.wikipedia.org/wiki/EFF_Pioneer_Award`, HTTPS Everywhere will automatically rewrite the link to `https://en.wikimedia.org/wikipedia/en/wiki/EFF_Pioneer_Award`. Thus, you might get some protection even if you wouldn't have noticed that the target site is available in HTTPS. +Even if you normally type https://, HTTPS Everywhere might protect you if you +occasionally forget. Also, it can rewrite other people's links that you follow. +For instance, if you click on a link to +`http://en.wikipedia.org/wiki/EFF_Pioneer_Award`, HTTPS Everywhere will +automatically rewrite the link to +`https://en.wikimedia.org/wikipedia/en/wiki/EFF_Pioneer_Award`. Thus, you might +get some protection even if you wouldn't have noticed that the target site is +available in HTTPS. ### [Why does HTTPS Everywhere include rules for sites like PayPal that already require HTTPS on all their pages?](#why-does-https-everywhere-include-rules-for-sites-like-paypal-that-already-require-https-on-all-their-pages) -HTTPS Everywhere, like the [HSTS spec](https://en.wikipedia.org/wiki/HTTP_Strict_Transport_Security), tries to address an attack called [SSL stripping](https://moxie.org/software/sslstrip/). Users are only protected against the SSL stripping attack if their browsers don't even _try_ to connect to the HTTP version of the site — even if the site would have redirected them to the HTTPS version. With HTTPS Everywhere, the browser won't even attempt the insecure HTTP connection, even if that's what you ask it to do. (Note that HTTPS Everywhere currently does not include a comprehensive list of such sites, which are mainly financial institutions.) +HTTPS Everywhere, like the [HSTS +spec](https://en.wikipedia.org/wiki/HTTP_Strict_Transport_Security), tries to +address an attack called [SSL stripping](https://moxie.org/software/sslstrip/). +Users are only protected against the SSL stripping attack if their browsers +don't even _try_ to connect to the HTTP version of the site — even if the site +would have redirected them to the HTTPS version. With HTTPS Everywhere, the +browser won't even attempt the insecure HTTP connection, even if that's what +you ask it to do. (Note that HTTPS Everywhere currently does not include a +comprehensive list of such sites, which are mainly financial institutions.) ### [What do the different colors for rulesets in the Firefox toolbar menu mean?](#what-do-the-different-colors-for-rulesets-in-the-firefox-toolbar-menu-mean) @@ -93,9 +236,12 @@ The colors are: Dark Green: ruleset was active in loading the resources in the current page. -Light Green: ruleset was ready to prevent HTTP loads in the current page, but everything that the ruleset would have covered was loaded over HTTPS anyway (in the code, light green is called a "moot rule"). +Light Green: ruleset was ready to prevent HTTP loads in the current page, but +everything that the ruleset would have covered was loaded over HTTPS anyway (in +the code, light green is called a "moot rule"). -Dark Brown or Clockwise Red Arrow: broken rule -- the ruleset is active but the server is redirecting at least some URLs back from HTTPS to HTTP. +Dark Brown or Clockwise Red Arrow: broken rule -- the ruleset is active but the +server is redirecting at least some URLs back from HTTPS to HTTP. Gray: the ruleset is disabled. @@ -105,7 +251,8 @@ The colors are: Light Blue: HTTPS Everywhere is enabled. -Dark Blue: HTTPS Everywhere is both enabled and active in loading resources in the current page. +Dark Blue: HTTPS Everywhere is both enabled and active in loading resources in +the current page. Red: All unencrypted requests will be blocked by HTTPS Everywhere. @@ -113,24 +260,49 @@ Gray: HTTPS Everywhere is disabled. ### [I'm having a problem installing the browser extension.](#im-having-a-problem-installing-the-browser-extension.) -Some people report that installing HTTPS Everywhere gives them the error: "The addon could not be downloaded because of a connection failure on www.eff.org." This may be caused by Avast anti-virus, which blocks installation of browser extensions. You may be able to [install from addons.mozilla.org instead](https://addons.mozilla.org/en-US/firefox/addon/https-everywhere/). +Some people report that installing HTTPS Everywhere gives them the error: "The +addon could not be downloaded because of a connection failure on www.eff.org." +This may be caused by Avast anti-virus, which blocks installation of browser +extensions. You may be able to [install from addons.mozilla.org +instead](https://addons.mozilla.org/en-US/firefox/addon/https-everywhere/). ### [How do I uninstall/remove HTTPS Everywhere?](#how-do-i-uninstallremove-https-everywhere) -In Firefox: Click the menu button in the top right of the window at the end of the toolbar (it looks like three horizontal lines), and then click "Add-ons" (it looks like a puzzle piece). Scroll until you see HTTPS Everywhere, and then click the "Remove" button all the way on the right. You can then safely close the Add-ons tab. +In Firefox: Click the menu button in the top right of the window at the end of +the toolbar (it looks like three horizontal lines), and then click "Add-ons" +(it looks like a puzzle piece). Scroll until you see HTTPS Everywhere, and then +click the "Remove" button all the way on the right. You can then safely close +the Add-ons tab. -In Chrome: Click the menu button in the top right of the window at the end of the toolbar (it looks like three horizontal lines), and then click "Settings" near the bottom. On the left, click "Extensions". Scroll until you see HTTPS Everywhere, and then click the trash can icon on the right, and then click "Remove" to confirm removal. You can then safely close the Settings tab. +In Chrome: Click the menu button in the top right of the window at the end of +the toolbar (it looks like three horizontal lines), and then click "Settings" +near the bottom. On the left, click "Extensions". Scroll until you see HTTPS +Everywhere, and then click the trash can icon on the right, and then click +"Remove" to confirm removal. You can then safely close the Settings tab. ### [How do I add my own site to HTTPS Everywhere?](#how-do-i-add-my-own-site-to-https-everywhere) -We're excited that you want your site in HTTPS Everywhere! However, remember that not everyone who visits your site has our extension installed. If you run a web site, you can make it default to HTTPS for everyone, not just HTTPS Everywhere users. And it's less work! The steps you should take, in order, are: - -1. Set up a [redirect](https://www.sslshopper.com/apache-redirect-http-to-https.html) from HTTP to HTTPS on your site. -2. [Add the Strict-Transport-Security (HSTS) header on your site.](https://raymii.org/s/tutorials/HTTP_Strict_Transport_Security_for_Apache_NGINX_and_Lighttpd.html) -3. [Add your site to the HSTS Preload list.](https://hstspreload.appspot.com/) - -These steps will give your site much better protection than adding it to HTTPS Everywhere. Generally speaking, once you are done, there is no need to add your site to HTTPS Everywhere. However, if you would still like to, please follow the [instructions on writing rulesets](https://eff.org/https-everywhere/rulesets), and indicate that you are the author of the web site when you submit your pull request. +We're excited that you want your site in HTTPS Everywhere! However, remember +that not everyone who visits your site has our extension installed. If you run +a web site, you can make it default to HTTPS for everyone, not just HTTPS +Everywhere users. And it's less work! The steps you should take, in order, are: + +1. Set up a + [redirect](https://www.sslshopper.com/apache-redirect-http-to-https.html) + from HTTP to HTTPS on your site. +2. [Add the Strict-Transport-Security (HSTS) header on your + site.](https://raymii.org/s/tutorials/HTTP_Strict_Transport_Security_for_Apache_NGINX_and_Lighttpd.html) +3. [Add your site to the HSTS Preload list.](https://hstspreload.appspot.com/) + +These steps will give your site much better protection than adding it to HTTPS +Everywhere. Generally speaking, once you are done, there is no need to add your +site to HTTPS Everywhere. However, if you would still like to, please follow +the [instructions on writing +rulesets](https://eff.org/https-everywhere/rulesets), and indicate that you are +the author of the web site when you submit your pull request. ### [Can I help translate HTTPS Everywhere into my own language? ](#can-i-help-translate-https-everywhere-into-my-own-language) -Yes! We use the Tor Project's Transifex account for translations, please sign up to help translate at [https://www.transifex.com/otf/torproject](https://www.transifex.com/otf/torproject). +Yes! We use the Tor Project's Transifex account for translations, please sign +up to help translate at +[https://www.transifex.com/otf/torproject](https://www.transifex.com/otf/torproject). diff --git a/docs/en_US/https-everywhere-popup-updated.png b/docs/en_US/https-everywhere-popup-updated.png new file mode 100644 index 000000000000..02023090383a Binary files /dev/null and b/docs/en_US/https-everywhere-popup-updated.png differ diff --git a/docs/en_US/https-everywhere-popup.png b/docs/en_US/https-everywhere-popup.png new file mode 100644 index 000000000000..373cba228739 Binary files /dev/null and b/docs/en_US/https-everywhere-popup.png differ diff --git a/docs/en_US/https-updates.png b/docs/en_US/https-updates.png new file mode 100644 index 000000000000..61b79a28a0b5 Binary files /dev/null and b/docs/en_US/https-updates.png differ diff --git a/docs/en_US/my-lan.png b/docs/en_US/my-lan.png new file mode 100644 index 000000000000..4442b022754f Binary files /dev/null and b/docs/en_US/my-lan.png differ diff --git a/docs/en_US/options.png b/docs/en_US/options.png new file mode 100644 index 000000000000..77b8e5d5dce4 Binary files /dev/null and b/docs/en_US/options.png differ diff --git a/docs/en_US/ruleset-update-channels.md b/docs/en_US/ruleset-update-channels.md new file mode 100644 index 000000000000..24828ac0129d --- /dev/null +++ b/docs/en_US/ruleset-update-channels.md @@ -0,0 +1,180 @@ +* [Ruleset Update Channels](#ruleset-update-channels) + * [Update Channel Format & Logic](#update-channel-format--logic) + * [Publishing Custom Update Channels](#publishing-custom-update-channels) + * [1. Creating an RSA key and generating a `jwk` object from it](#1-creating-an-rsa-key-and-generating-a-jwk-object-from-it) + * [2. Signing rulesets with this key](#2-signing-rulesets-with-this-key) + * [Setup](#setup) + * [Signing](#signing) + * [3. Publishing those rulesets somewhere](#3-publishing-those-rulesets-somewhere) + * [4. Getting users to use your update channel](#4-getting-users-to-use-your-update-channel) + * [Adding and Deleting Update Channels](#adding-and-deleting-update-channels) + +# Ruleset Update Channels + +Whenever you download HTTPS Everywhere, it comes with a long list of *rulesets* that are maintained by the community. These rulesets tell HTTPS Everywhere when and how to redirect requests to the secure version of a site. HTTPS Everywhere includes tens of thousands of these rulesets, which are public and ever-changing as we expand and improve coverage. They are delivered to you with each new version of the extension, along with all the code that makes up the extension itself. Between and in addition to extension updates, code within the extension fetches regular updates to the rulesets. This ensures that you get more up-to-date coverage for sites that offer HTTPS, and you'll encounter fewer sites that break due to bugs in our list of supported sites. + +![](https-updates.png) + +We deliver these rulesets via what we call an *update channel*. Currently, HTTPS Everywhere is delivered with a single update channel, named `EFF (Full)`. You can see this channel when you click on the HTTPS Everywhere icon and look at the bottom of the popup: + +![](https-everywhere-popup.png) + +First, the extension version is shown (in this case 2018.8.22), and then the version of the rulesets for a given update channel is shown (in this case 2018.8.30). + +## Update Channel Format & Logic + +Update channels can be found in [`chromium/background-scripts/update_channels.js`](https://github.com/EFForg/https-everywhere/blob/master/chromium/background-scripts/update_channels.js), and consist of: + +1. A `name` string, which identifies it and will be displayed in the extension popup +2. A `jwk` object, which defines the RSA public key to use when verifying downloaded rulesets +3. A `update_path_prefix` string, which tells the extension where to look for new rulesets +4. A `scope` string, which is used to construct a JavaScript `RegExp` object +5. A `replaces_default_rulesets` boolean, which tells the extension whether to overwrite the rulesets bundled with the extension + +Every 24 hours, the extension checks the URL contained in `update_path_prefix` appended with `/latest-rulesets-timestamp` (in the case of `EFF (Full)`, `https://www.https-rulesets.org/v1//latest-rulesets-timestamp`). If it discovers the timestamp has updated since the last time it fetched the rulesets, it will download a new ruleset, following the format `update_path_prefix` appended with `default.rulesets.XXXXXXXXXX.gz`, where `XXXXXXXXXX` is the timestamp discovered in the previous request. At the same time, a corresponding signature for that file is downloaded, `update_path_prefix` appended with `rulesets-signature.XXXXXXXXXX.sha256`, again with the timestamp replacing the `XXXXXXXXXX`. + +It then attempts to verify the rulesets, which are signed with the private RSA key corresponding to the public key in the update channel's `jwk` object. If the signature verifies, the rulesets are stored and applied to the running instance of the extension. If it can not be verified, the rulesets are discarded and the last known good state is used. + +Once the rulesets are stored, they will be allowed to operate on URLs only within the `scope` of the update channel, as found above. URLs must match the regular expression in this string in order to be redirected. This string will be used as the first and only argument when constructing a JavaScript `RegExp` object. If you wanted to define an update channel that only operated on URLs with the `www` subdomain, you could do so by entering the string `^https?://www\\.`, for example: + +```javascript +> re = new RegExp('^https?://www\\.'); +/^https?:\/\/www\./ +> "http://www.example.com/".match(re); +[ 'http://www.', + index: 0, + input: 'http://www.example.com/', + groups: undefined ] +> "http://example.com/".match(re); +null +``` + +## Publishing Custom Update Channels + +In addition to the rulesets contained in the EFF update channel, you may want to publish your own. There are a few instances where this may be useful: + +1. You are on a corporate LAN and would rather not divulge the internal DNS records for various services by submitting rulesets to the public list +2. You are an organization that verifies `onion` services, and would like to create vanity URLs for the `onion` services that you've verified (this will make [usability of onion URLs](https://blog.torproject.org/cooking-onions-names-your-onions) much better) +3. You would like to implement tracker blocking within HTTPS Everywhere by forwarding a list of hosts to an unroutable address + +There may be additional use cases not enumerated here. For this to be effective, an organization has to publish their own custom update channel. This involves a few steps: + +1. Creating an RSA key and generating a `jwk` object from it +2. Signing rulesets with this key +3. Publishing those rulesets somewhere +4. Getting users to use your update channel + +We will go through each of these in sequence, but first, you'll want to consider if you want your signing process airgapped or not. Airgapped signing has the advantage of making it hard for malware to exfiltrate key material and thus forge a signed ruleset update, but it will also make it slightly more difficult to sign. If you decide on an airgapped signing process, you may want to copy the script [`utils/sign-rulesets/async-airgap.sh`](https://github.com/EFForg/https-everywhere/blob/master/utils/sign-rulesets/async-airgap.sh) to the airgap *before* cutting off networking for the last time. You may also want to install the `python-qr` code on this machine to easily copy the RSA public key to your development environment, once generated, as well as `qrencode` and `eog` for ease in the signing process. + +### 1. Creating an RSA key and generating a `jwk` object from it + +To create an RSA key, issue the following command (either on your development machine if you are not using an airgapped process, or the airgap if you are): + + openssl genrsa -out key.pem 4092 + +Your RSA keypair will now be stored in the file `key.pem`. To generate a corresping public key, issue this command: + + openssl rsa -in key.pem -outform PEM -pubout -out public.pem + +Your public key is now stored in `public.pem`. If you are using an airgap, copy this public key (with whatever method is safest in your setup, perhaps with the `qr` command) to your development environment. + +At this point, you will need to generate a `jwk` object from the public key. This can be done with the `pem-jwk` node package. You'll have to download node.js and npm, or just issue this command in docker: + + sudo docker run -it -v $(pwd):/opt --workdir /opt node bash + +And you will be booted into a node environment. Next, run + + npm install -g pem-jwk + +This will install the `pem-jwk` package globally. You can now run + + cat public.pem | pem-jwk + +And you should see a `jwk` object displayed. Take note of this, you will need it later. + +### 2. Signing rulesets with this key + +#### Setup + +On your development machine, clone or download the HTTPS Everywhere repository. Since it's quite large, it will suffice to do a shallow clone: + + git clone --depth=1 https://github.com/EFForg/https-everywhere.git + +or + + curl -sLO https://github.com/EFForg/https-everywhere/archive/master.zip; unzip master.zip; mv https-everywhere-master https-everywhere + +Next, + + cd https-everywhere + rm rules/*.xml + +This will remove all the rulesets bundled with the extension itself. All the rulesets you want to sign for your update channel must be in the `rules` directory before moving to the next step. Generate an example ruleset or use your own ruleset: + + cd rules + ./make-trivial-rule example.com + cd .. + +#### Signing + +You will need python 3.6 on your system or available via docker for the next step. + + sudo docker run -it -v $(pwd):/opt --workdir /opt python:3.6 bash + +Next, run + + python3 utils/merge-rulesets.py + +You should see the following output: + +```shell + * Parsing XML ruleset and constructing JSON library... + * Writing JSON library to src/chrome/content/rules/default.rulesets + * Everything is okay. +``` + +This prepares the file you are about to sign. If your do not have an airgap, run the following command: + + utils/sign-rulesets/standalone.sh /path/to/key.pem /some/output/path + +If you have an airgapped setup, run the following command on your development machine: + + utils/sign-rulesets/async-request.sh /path/to/public.pem /some/output/path + +This will display a hash for signing, as well as a metahash. On your airgap machine, run the `async-airgap.sh` script that you had previously copied to it: + + ./async-airgap.sh /path/to/key.pem SHA256_HASH + +typing the hash carefully. Check the metahash to make sure it is the same as what was displayed on your development machine. This will output base64-encoded data as well as a QR code representing that data that you can scan, and send that data to your development machine. Once you have that data from the QR code pasted into the development machine prompt, press Ctrl-D and you should have output indicating that your rulesets have been signed successfully. + +### 3. Publishing those rulesets somewhere + +Once you've signed the rulesets successfully, choose a public URL to make these rulesets accessible. You may want to use a CDN if you expect a lot of traffic on this endpoint. Your rulesets as well as their signatures are stored in `/some/output/path` you chose above, you need only to upload them to an endpoint your users can access. + +### 4. Getting users to use your update channel + +Once you've established an update channel by publishing your rulesets, you'll want to let your users know how to use them. From step 1 above, you have a `jwk` object. You may want to also only allow modification of certain URLs, using the `scope` field. The `update_path_prefix` field will simply be the public URL that you chose in step 3. + +If your users are using a custom build of HTTPS Everywhere (such as in a corporate LAN environment), you can modify [`chromium/background-scripts/update_channels.js`](https://github.com/EFForg/https-everywhere/blob/master/chromium/background-scripts/update_channels.js) to include a new update channel in the same format as the EFF update channel. + +In most cases, your users will just be using a standard HTTPS Everywhere build. In this case, they will have to add your update channel using the UX, as explained below. + +## Adding and Deleting Update Channels + +In addition to being defined in `update_channels.js`, users can add additional update channels via the extension options. + +In Firefox, enter `about:addons` into the URL bar, then click on `Extensions` on the left navbar, then click `Preferences` next to the HTTPS Everywhere extension. + +In Chrome, right-click on the HTTPS Everywhere icon and click `Options`. + +You will now see the HTTPS Everywhere options page. Click `Update Channels`. + +You will now see a list of update channels, with `EFF (Full)` being the first. Below, you can add a new update channel. Once you hit `Update`, the channel will download a new ruleset release (if available) from the channel. + +![](options.png) + +If a new ruleset update is available, after a few seconds you should now see the new ruleset version in the bottom of the extension popup: + +![](my-lan.png) + +You can also delete rulesets from the extension options. Under `Update Channels`, just click `Delete` for the channel you want to delete. This will immediately remove the rulesets from this update channel. diff --git a/docs/en_US/rulesets.md b/docs/en_US/rulesets.md index 0ebde024a717..f9f71f020f34 100644 --- a/docs/en_US/rulesets.md +++ b/docs/en_US/rulesets.md @@ -1,103 +1,208 @@ ## HTTPS Everywhere Rulesets -This page describes how to write rulesets for [HTTPS Everywhere](https://eff.org/https-everywhere), a browser extension that switches sites over from HTTP to HTTPS automatically. HTTPS Everywhere comes with [thousands](http://www.eff.org/https-everywhere/atlas/) of rulesets that tell HTTPS Everywhere which sites it should switch to HTTPS and how. If there is a site that offers HTTPS and is not handled by the extension, this guide will explain how to add that site. +This page describes how to write rulesets for [HTTPS +Everywhere](https://eff.org/https-everywhere), a browser extension that +switches sites over from HTTP to HTTPS automatically. HTTPS Everywhere comes +with [thousands](https://atlas.eff.org/index.html) of rulesets that +tell HTTPS Everywhere which sites it should switch to HTTPS and how. If there +is a site that offers HTTPS and is not handled by the extension, this guide +will explain how to add that site. #### [Rulesets](#rulesets) -A `ruleset` is an [XML](http://www.xml.com/pub/a/98/10/guide0.html?page=2) file describing behavior for a site or group of sites. A ruleset contains one or more `rules`. For example, here is [`RabbitMQ.xml`](https://github.com/efforg/https-everywhere/blob/master/src/chrome/content/rules/RabbitMQ.xml), from the addon distribution: +A `ruleset` is an [XML](https://www.xml.com/pub/a/98/10/guide0.html?page=2) file +describing behavior for a site or group of sites. A ruleset contains one or +more `rules`. For example, here is +[`RabbitMQ.xml`](https://github.com/efforg/https-everywhere/blob/master/src/chrome/content/rules/RabbitMQ.xml), +from the addon distribution: ```xml - - + + - + ``` -The `target` tag specifies which web sites the ruleset applies to. The `rule` tag specifies how URLs on those web sites should be rewritten. This rule says that any URLs on `rabbitmq.com` and `www.rabbitmq.com` should be modified by replacing "http:" with "https:". +The `target` tag specifies which web sites the ruleset applies to. The `rule` +tag specifies how URLs on those web sites should be rewritten. This rule says +that any URLs on `rabbitmq.com` and `www.rabbitmq.com` should be modified by +replacing "http:" with "https:". -When the browser loads a URL, HTTPS Everywhere takes the host name (e.g. www.rabbitmq.com) and searches its ruleset database for rulesets that match that host name. +When the browser loads a URL, HTTPS Everywhere takes the host name (e.g. +www.rabbitmq.com) and searches its ruleset database for rulesets that +match that host name. -HTTPS Everywhere then tries each rule in those rulesets against the full URL. If the [Regular Expression](http://www.regular-expressions.info/quickstart.html), or regexp, in one of those rules matches, HTTPS Everywhere [rewrites the URL](#rules-and-regular-expressions) according the `to` attribute of the rule. +HTTPS Everywhere then tries each rule in those rulesets against the full URL. +If the [Regular +Expression](https://www.regular-expressions.info/quickstart.html), or regexp, in +one of those rules matches, HTTPS Everywhere [rewrites the +URL](#rules-and-regular-expressions) according the `to` attribute of the rule. #### [Wildcard Targets](#wildcard-targets) -To cover all of a domain's subdomains, you may want to specify a wildcard target like `*.twitter.com`. Specifying this type of left-side wildcard matches any host name with `.twitter.com` as a suffix, e.g. `www.twitter.com` or `urls.api.twitter.com`. You can also specify a right-side wildcard like `www.google.*`. Right-side wildcards, unlike left-side wildcards, apply only one level deep. So if you want to cover all countries you'll generally need to specify `www.google.*`, `www.google.co.*`, and `www.google.com.*` to cover domains like `www.google.co.uk` or `www.google.com.au`. You should use wildcard targets only when you have rules that apply to the entire wildcard space. If your rules only apply to specific hosts, you should list each host as a separate target. +To cover all of a domain's subdomains, you may want to specify a wildcard +target like `*.twitter.com`. Specifying this type of left-side wildcard matches +any host name with `.twitter.com` as a suffix, e.g. `www.twitter.com` or +`urls.api.twitter.com`. You can also specify a right-side wildcard like +`www.google.*`. Right-side wildcards, unlike left-side wildcards, apply only +one level deep. So if you want to cover all countries you'll generally need to +specify `www.google.*`, `www.google.co.*`, and `www.google.com.*` to cover +domains like `www.google.co.uk` or `www.google.com.au`. You should use wildcard +targets only when you have rules that apply to the entire wildcard space. If +your rules only apply to specific hosts, you should list each host as a +separate target. #### [Rules and Regular Expressions](#rules-and-regular-expressions) -The `rule` tags do the actual rewriting work. The `from` attribute of each rule is a [regular expression](http://www.regular-expressions.info/quickstart.html) matched against a full URL. You can use rules to rewrite URLs in simple or complicated ways. Here's a simplified (and now obsolete) example for Wikipedia: +The `rule` tags do the actual rewriting work. The `from` attribute of each rule +is a [regular expression](https://www.regular-expressions.info/quickstart.html) +matched against a full URL. You can use rules to rewrite URLs in simple or +complicated ways. Here's a simplified (and now obsolete) example for Wikipedia: ```xml - + - + ``` -The `to` attribute replaces the text matched by the `from` attribute. It can contain placeholders like `$1` that are replaced with the text matched inside the parentheses. +The `to` attribute replaces the text matched by the `from` attribute. It can +contain placeholders like `$1` that are replaced with the text matched inside +the parentheses. -This rule rewrites a URL like `http://fr.wikipedia.org/wiki/Chose` to `https://secure.wikimedia.org/wikipedia/fr/wiki/Chose`. Notice, again, that the target is allowed to contain (just one) * as a wildcard meaning "any". +This rule rewrites a URL like `http://fr.wikipedia.org/wiki/Chose` to +`https://secure.wikimedia.org/wikipedia/fr/wiki/Chose`. Notice, again, that the +target is allowed to contain (just one) * as a wildcard meaning "any". -Rules are applied in the order they are listed within each ruleset. Order between rulesets is unspecified. Only the first rule or exception matching a given URL is applied. +Rules are applied in the order they are listed within each ruleset. Order +between rulesets is unspecified. Only the first rule or exception matching a +given URL is applied. -Rules are evaluated using [Javascript regular expressions](http://www.regular-expressions.info/javascript.html), which are similar but not identical to [Perl-style regular expressions.](http://www.regular-expressions.info/pcre.html) Note that if your rules include ampersands (&), they need to be appropriately XML-encoded: replace each occurrence of **&** with **&#x26;**. +Rules are evaluated using [Javascript regular +expressions](https://www.regular-expressions.info/javascript.html), which are +similar but not identical to [Perl-style regular +expressions.](https://www.regular-expressions.info/pcre.html) Note that if your +rules include ampersands (&), they need to be appropriately XML-encoded: +replace each occurrence of **&** with **&#x26;**. #### [Exclusions](#exclusions) -An exclusion specifies a pattern, using a regular expression, for URLs where the rule should **not** be applied. The Stack Exchange rule contains an exclusion for the OpenID login path, which breaks logins if it is rewritten: +An exclusion specifies a pattern, using a regular expression, for URLs where +the rule should **not** be applied. The Stack Exchange rule contains an +exclusion for the OpenID login path, which breaks logins if it is rewritten: ```xml - + ``` -Exclusions are always evaluated before rules in a given ruleset. Matching any exclusion means that a URL won't match any rules within the same ruleset. However, if other rulesets match the same target hosts, the rules in those rulesets will still be tried. +Exclusions are always evaluated before rules in a given ruleset. Matching any +exclusion means that a URL won't match any rules within the same ruleset. +However, if other rulesets match the same target hosts, the rules in those +rulesets will still be tried. #### [Style Guide](#style-guide) -There are many different ways you can write a ruleset, or regular expression within the ruleset. It's easier for everyone to understand the rulesets if they follow similar practices. You should read and follow the [Ruleset style guide](https://github.com/EFForg/https-everywhere/blob/master/CONTRIBUTING.md#ruleset-style-guide). Some of the guidelines in that document are intended to make [Ruleset testing](https://github.com/EFForg/https-everywhere/blob/master/ruleset-testing.md) less cumbersome. +There are many different ways you can write a ruleset, or regular expression +within the ruleset. It's easier for everyone to understand the rulesets if they +follow similar practices. You should read and follow the [Ruleset style +guide](https://github.com/EFForg/https-everywhere/blob/master/CONTRIBUTING.md#ruleset-style-guide). +Some of the guidelines in that document are intended to make [Ruleset +testing](https://github.com/EFForg/https-everywhere/blob/master/ruleset-testing.md) +less cumbersome. #### [Secure Cookies](#secure-cookies) -Many HTTPS websites fail to correctly set the [secure flag](https://secure.wikimedia.org/wikipedia/en/wiki/HTTP_cookie#Secure_and_HttpOnly) on authentication and/or tracking cookies. HTTPS Everywhere provides a facility for turning this flag on. For instance: +Many HTTPS websites fail to correctly set the [secure +flag](https://en.wikipedia.org/wiki/HTTP_cookie#Secure_and_HttpOnly) +on authentication and/or tracking cookies. HTTPS Everywhere provides a facility +for turning this flag on. For instance: ```xml ``` -The "host" parameter is a regexp specifying which domains should have their cookies secured; the "name" parameter is a regexp specifying which cookies should be secured. For a cookie to be secured, it must be sent by a target host for that ruleset. It must also be sent over HTTPS and match the name regexp. For cookies set by Javascript in a web page, the Firefox extension can't tell which host set the cookie and instead uses the domain attribute of the cookie to check against target hosts. A cookie whose domain attribute starts with a "." (the default, if not specified by Javascript) will be matched as if it was sent from a host name made by stripping the leading dot. +The "host" parameter is a regexp specifying which domains should have their +cookies secured; the "name" parameter is a regexp specifying which cookies +should be secured. For a cookie to be secured, it must be sent by a target host +for that ruleset. It must also be sent over HTTPS and match the name regexp. +For cookies set by Javascript in a web page, the Firefox extension can't tell +which host set the cookie and instead uses the domain attribute of the cookie +to check against target hosts. A cookie whose domain attribute starts with a +"." (the default, if not specified by Javascript) will be matched as if it was +sent from a host name made by stripping the leading dot. #### [Testing](#testing) -We use an [automated checker](https://github.com/hiviah/https-everywhere-checker) to run some basic tests on all rulesets. This is described in more detail in our [Ruleset Testing](https://github.com/EFForg/https-everywhere/blob/master/ruleset-testing.md) document, but in short there are two parts: Your ruleset must have enough test URLs to cover all the various types of URL covered by your rules. And each of those test URLs must load, both before rewriting and after rewriting. Every target host tag generates an implicit test URL unless it contains a wildcard. You can add additional test URLs manually using the `` tag. The test URLs you add this way should be real pages loaded from the site, or real images, CSS, and Javascript if you have rules that specifically affect those resources. - -You should also manually test your ruleset by placing it in the `HTTPSEverywhereUserRules/` subdirectory in [your Firefox profile directory](http://kb.mozillazine.org/Profile_folder_-_Firefox), and then restarting Firefox. While using the rule, check for messages in the Firefox Error Console to see if there are any issues with the way the site supports HTTPS. - -If you've tested your rule and are sure it would be of use to the world at large, submit it as a [pull request](https://help.github.com/articles/using-pull-requests/) on our [GitHub repository](https://github.com/EFForg/https-everywhere/) or send it to the rulesets mailing list at `https-everywhere-rules AT eff.org`. Please be aware that this is a public and publicly-archived mailing list. +We use an [automated +checker](https://github.com/hiviah/https-everywhere-checker) to run some basic +tests on all rulesets. This is described in more detail in our [Ruleset +Testing](https://github.com/EFForg/https-everywhere/blob/master/ruleset-testing.md) +document, but in short there are two parts: Your ruleset must have enough test +URLs to cover all the various types of URL covered by your rules. And each of +those test URLs must load, both before rewriting and after rewriting. Every +target host tag generates an implicit test URL unless it contains a wildcard. +You can add additional test URLs manually using the `` tag. +The test URLs you add this way should be real pages loaded from the site, or +real images, CSS, and Javascript if you have rules that specifically affect +those resources. + +You can test rulesets in the browser using a hidden debugging page, but please +be aware that this approach should only be used for debugging purposes and +should not be used for setting up personal custom rules. You can access the +hidden debugging page this way: + +* Firefox: `about:addons` > HTTPS Everywhere preferences > click under + `General Settings` > press Ctrl-Z +* Chromium/Chrome: `chrome://extensions/` > HTTPS Everywhere options > click + under `General Settings` > press Ctrl-Z + +You might need to disable popup blocking for the page to appear. Once you have +loaded the page, you might find it convenient to bookmark it for later use. + +If you've tested your rule and are sure it would be of use to the world at +large, submit it as a [pull +request](https://help.github.com/articles/using-pull-requests/) on our [GitHub +repository](https://github.com/EFForg/https-everywhere/) or send it to the +rulesets mailing list at `https-everywhere-rules AT eff.org`. Please be aware +that this is a public and publicly-archived mailing list. #### [make-trivial-rule](#make-trivial-rule) -As an alternative to writing rules by hand, there are scripts you can run from a Unix command line to automate the process of creating a simple rule for a specified domain. These scripts are not included with HTTPS Everywhere releases but are available in our development repository and are described in [our development documentation](https://www.eff.org/https-everywhere/development). +As an alternative to writing rules by hand, there are scripts you can run from +a Unix command line to automate the process of creating a simple rule for a +specified domain. These scripts are not included with HTTPS Everywhere releases +but are available in our development repository and are described in [our +development documentation](https://www.eff.org/https-everywhere/development). #### [Disabling a ruleset by default](#disabling-a-ruleset-by-default) -Sometimes rulesets are useful or interesting, but cause problems that make them unsuitable for being enabled by default in everyone's browsers. Typically when a ruleset has problems we will disable it by default until someone has time to fix it. You can do this by adding a `default_off` attribute to the ruleset element, with a value explaining why the rule is off. +Sometimes rulesets are useful or interesting, but cause problems that make them +unsuitable for being enabled by default in everyone's browsers. Typically when +a ruleset has problems we will disable it by default until someone has time to +fix it. You can do this by adding a `default_off` attribute to the ruleset +element, with a value explaining why the rule is off. ```xml - - + + ``` -You can add more details, like a link to a bug report, in the comments for the file. +You can add more details, like a link to a bug report, in the comments for the +file. #### [Mixed Content Blocking (MCB)](#mixed-content-blocking-mcb) -Some rulesets may trigger active mixed content (i.e. scripts loaded over HTTP instead of HTTPS). This type of mixed content is blocked in both [Chrome](https://trac.torproject.org/projects/tor/ticket/6975) and Firefox, before HTTPS Everywhere has a chance to rewrite the URLs to an HTTPS version. This generally breaks the site. However, the Tor Browser doesn't block mixed content, in order to allow HTTPS Everywhere to try and rewrite the URLs to an HTTPS version. - -To enable a rule only on platforms that allow mixed content (currently only the Tor Browser), you can add a `platform="mixedcontent"` attribute to the ruleset element. +Some rulesets may trigger active mixed content (i.e. scripts loaded over HTTP +instead of HTTPS). This type of mixed content is blocked in most major browsers, +before HTTPS Everywhere has a chance to rewrite the URLs to an HTTPS version. +This generally breaks the site. Depending on their configuration and threat +model, some users might however decide to enable these rulesets via a global +option in HTTPS Everywhere. To that effect, such rulesets are identified with +the specific `platform="mixedcontent"` attribute to the ruleset element. diff --git a/docs/es/faq.md b/docs/es/faq.md index e704754396c9..bdd7547fc376 100644 --- a/docs/es/faq.md +++ b/docs/es/faq.md @@ -1,101 +1,261 @@ ## Preguntas Frecuentes sobre "HTTPS Everywhere" -Esta página responde a las preguntas más frecuentes sobre el proyecto de la EFF [HTTPS Everywhere](https://www.eff.org/https-everywhere) "HTTPS en todos lados". Si no encuentra la respuesta a su pregunta, puede intentar con los recursos [enumerados aquí](https://www.eff.org/https-everywhere/development). - -- [¿Qué pasa si HTTPS Everywhere rompe algún sitio que uso?](#what-if-https-everywhere-breaks-some-site-that-i-use) -- [¿Por qué HTTPS Everywhere me impide unirme a la red del hotel/escuela u otra red inalámbrica?](#why-is-https-everywhere-preventing-me-from-joining-this-hotelschoolother-wireless-network) -- [¿Habrá una versión de HTTPS Everywhere para IE, Safari o algún otro navegador?](#will-there-be-a-version-of-https-everywhere-for-ie-safari-or-some-other-browser) -- [¿Por qué utilizar una lista blanca de sitios que admiten HTTPS? ¿Por qué no pueden intentar utilizar HTTPS para cada sitio, y sólo volver a HTTP si no está disponible?](#why-use-a-whitelist-of-sites-that-support-https-why-cant-you-try-to-use-https-for-every-last-site-and-only-fall-back-to-http-if-it-isnt-available) -- [¿Cómo puedo eliminar o mover el botón HTTPS Everywhere de la barra de herramientas?](#how-do-i-get-rid-ofmove-the-https-everywhere-button-in-the-toolbar) -- [¿Cuándo me protege HTTPS Everywhere? ¿Cuándo no me protege?](#when-does-https-everywhere-protect-me-when-does-it-not-protect-me) -- [¿De qué me protege HTTPS Everywhere?](#what-does-https-everywhere-protect-me-against) -- [¿Cómo obtengo soporte para un sitio adicional en HTTPS Everywhere?](#how-do-i-get-support-for-an-additional-site-in-https-everywhere) -- [¿Qué pasa si el sitio no admite HTTPS, o si sólo lo admite para algunas actividades, como introducir información de la tarjeta de crédito?](#what-if-the-site-doesnt-support-https-or-only-supports-it-for-some-activities-like-entering-credit-card-information) -- [¿No es más caro o lento para un sitio usar HTTPS en comparación con HTTP normal?](#isnt-it-more-expensive-or-slower-for-a-site-to-support-https-compared-to-regular-http) -- [¿Por qué debría usar HTTPS Everywhere en lugar de simplemente teclear https:// al principio del nombre de un sitio?](#why-should-i-use-https-everywhere-instead-of-just-typing-https-at-the-beginning-of-site-names) -- [¿Por qué HTTPS Everywhere incluye reglas para sitios como PayPal que ya requieren HTTPS en todas sus páginas?](#why-does-https-everywhere-include-rules-for-sites-like-paypal-that-already-require-https-on-all-their-pages) -- [¿Qué significan los diferentes colores de las reglas en el menú de la barra de herramientas en Firefox?](#what-do-the-different-colors-for-rulesets-in-the-firefox-toolbar-menu-mean) -- [¿Qué significan los diferentes colores del icono de HTTPS Everywhere?](#what-do-the-different-colors-of-the-https-everywhere-icon-mean) -- [Tengo un problema al instalar la extensión del navegador.](#im-having-a-problem-installing-the-browser-extension.) -- [¿Cómo desinstalo/elimino HTTPS Everywhere?](#how-do-i-uninstallremove-https-everywhere) -- [¿Cómo agrego mi propio sitio a HTTPS Everywhere?](#how-do-i-add-my-own-site-to-https-everywhere) -- [¿Puedo ayudar a traducir HTTPS Everywhere a mi propio idioma?](#can-i-help-translate-https-everywhere-into-my-own-language) +Esta página responde a las preguntas más frecuentes sobre el proyecto de la EFF +[HTTPS Everywhere](https://www.eff.org/https-everywhere) "HTTPS en todos +lados". Si no encuentra la respuesta a su pregunta, puede intentar con los +recursos [enumerados aquí](https://www.eff.org/https-everywhere/development). + +* [¿Qué pasa si HTTPS Everywhere rompe algún sitio que + uso?](#what-if-https-everywhere-breaks-some-site-that-i-use) +* [¿Por qué HTTPS Everywhere me impide unirme a la red del hotel/escuela u + otra red + inalámbrica?](#why-is-https-everywhere-preventing-me-from-joining-this-hotelschoolother-wireless-network) +* [¿Habrá una versión de HTTPS Everywhere para IE, Safari o algún otro + navegador?](#will-there-be-a-version-of-https-everywhere-for-ie-safari-or-some-other-browser) +* [¿Por qué utilizar una lista de sitios aprobados que admiten HTTPS? ¿Por qué + no pueden intentar utilizar HTTPS para cada sitio, y sólo volver a HTTP si + no está + disponible?](#why-use-a-allowlist-of-sites-that-support-https-why-cant-you-try-to-use-https-for-every-last-site-and-only-fall-back-to-http-if-it-isnt-available) +* [¿Cómo puedo eliminar o mover el botón HTTPS Everywhere de la barra de + herramientas?](#how-do-i-get-rid-ofmove-the-https-everywhere-button-in-the-toolbar) +* [¿Cuándo me protege HTTPS Everywhere? ¿Cuándo no me + protege?](#when-does-https-everywhere-protect-me-when-does-it-not-protect-me) +* [¿De qué me protege HTTPS + Everywhere?](#what-does-https-everywhere-protect-me-against) +* [¿Cómo obtengo soporte para un sitio adicional en HTTPS + Everywhere?](#how-do-i-get-support-for-an-additional-site-in-https-everywhere) +* [¿Qué pasa si el sitio no admite HTTPS, o si sólo lo admite para algunas + actividades, como introducir información de la tarjeta de + crédito?](#what-if-the-site-doesnt-support-https-or-only-supports-it-for-some-activities-like-entering-credit-card-information) +* [¿No es más caro o lento para un sitio usar HTTPS en comparación con HTTP + normal?](#isnt-it-more-expensive-or-slower-for-a-site-to-support-https-compared-to-regular-http) +* [¿Por qué debría usar HTTPS Everywhere en lugar de simplemente teclear + https:// al principio del nombre de un + sitio?](#why-should-i-use-https-everywhere-instead-of-just-typing-https-at-the-beginning-of-site-names) +* [¿Por qué HTTPS Everywhere incluye reglas para sitios como PayPal que ya + requieren HTTPS en todas sus + páginas?](#why-does-https-everywhere-include-rules-for-sites-like-paypal-that-already-require-https-on-all-their-pages) +* [¿Qué significan los diferentes colores de las reglas en el menú de la + barra de herramientas en + Firefox?](#what-do-the-different-colors-for-rulesets-in-the-firefox-toolbar-menu-mean) +* [¿Qué significan los diferentes colores del icono de HTTPS + Everywhere?](#what-do-the-different-colors-of-the-https-everywhere-icon-mean) +* [Tengo un problema al instalar la extensión del + navegador.](#im-having-a-problem-installing-the-browser-extension.) +* [¿Cómo desinstalo/elimino HTTPS + Everywhere?](#how-do-i-uninstallremove-https-everywhere) +* [¿Cómo agrego mi propio sitio a HTTPS + Everywhere?](#how-do-i-add-my-own-site-to-https-everywhere) +* [¿Puedo ayudar a traducir HTTPS Everywhere a mi propio + idioma?](#can-i-help-translate-https-everywhere-into-my-own-language) ### [¿Qué pasa si HTTPS Everywhere rompe algún sitio que uso?](#what-if-https-everywhere-breaks-some-site-that-i-use) -Esto es ocasionalmente posible debido al soporte inconsistente de HTTPS en sitios (por ejemplo, cuando un sitio parece soportar HTTPS pero hace algunas partes del sitio, imprededicibles, indisponibles por medio de HTTPS). Si nos [informa del problema](https://github.com/EFForg/https-everywhere/issues), podemos intentar solucionarlo. Mientras tanto, puede desactivar la regla que afecta a ese sitio en particular en su propia copia de HTTPS Everywhere haciendo clic en el botón de la barra de herramientas HTTPS Everywhere y desmarcando la regla para ese sitio. +Esto es ocasionalmente posible debido al soporte inconsistente de HTTPS en +sitios (por ejemplo, cuando un sitio parece soportar HTTPS pero hace algunas +partes del sitio, imprededicibles, indisponibles por medio de HTTPS). Si nos +[informa del problema](https://github.com/EFForg/https-everywhere/issues), +podemos intentar solucionarlo. Mientras tanto, puede desactivar la regla que +afecta a ese sitio en particular en su propia copia de HTTPS Everywhere +haciendo clic en el botón de la barra de herramientas HTTPS Everywhere y +desmarcando la regla para ese sitio. -También puede informar el problema al sitio, ya que ellos tienen el poder para solucionarlo! +También puede informar el problema al sitio, ya que ellos tienen el poder para +solucionarlo! ### [¿Por qué HTTPS Everywhere me impide unirme a la red del hotel/escuela u otra red inalámbrica?](#why-is-https-everywhere-preventing-me-from-joining-this-hotelschoolother-wireless-network) -Algunas redes inalámbricas secuestran sus conexiones HTTP cuando se une por primera vez a ellas, con el fin de exigir su autenticación o simplemente intentar hacer que acepte los términos de uso. Las páginas HTTPS están protegidas contra este tipo de secuestro, que es como debería ser. Si va a un sitio web que no está protegido por HTTPS Everywhere o por HSTS (actualmente, example.com es uno de esos sitios), permitirá que su conexión sea capturada y redirigida a la página de autenticación o términos de uso. +Algunas redes inalámbricas secuestran sus conexiones HTTP cuando se une por +primera vez a ellas, con el fin de exigir su autenticación o simplemente +intentar hacer que acepte los términos de uso. Las páginas HTTPS están +protegidas contra este tipo de secuestro, que es como debería ser. Si va a un +sitio web que no está protegido por HTTPS Everywhere o por HSTS (actualmente, +example.com es uno de esos sitios), permitirá que su conexión sea capturada y +redirigida a la página de autenticación o términos de uso. ### [¿Habrá una versión de HTTPS Everywhere para IE, Safari o algún otro navegador?](#will-there-be-a-version-of-https-everywhere-for-ie-safari-or-some-other-browser) -A principios de 2012, la API para extensiones de Safari no ofrece una forma de realizar la reescritura segura de las solicitudes HTTP a HTTPS. Pero si por casualidad conoce una forma de realizar la reescritura segura de solicitudes en estos navegadores, no dude en hacérnoslo saber en https-everywhere en EFF.org (pero tenga en cuenta que modificar document.location o window.location en JavaScript no es seguro). - -### [¿Por qué utilizar una lista blanca de sitios que admiten HTTPS? ¿Por qué no pueden intentar utilizar HTTPS para cada sitio, y sólo volver a HTTP si no está disponible?](#why-use-a-whitelist-of-sites-that-support-https-why-cant-you-try-to-use-https-for-every-last-site-and-only-fall-back-to-http-if-it-isnt-available) - -Hay varios problemas con la idea de tratar de detectar automáticamente HTTPS en cada sitio. No hay ninguna garantía de que los sitios van a dar la misma respuesta a través de HTTPS que a través de HTTP. Además, no es posible probar HTTPS en tiempo real sin introducir vulnerabilidades de seguridad (¿Qué debería hacer la extensión si falla el intento de conexión por HTTPS? Volver a un HTTP inseguro no es seguro). Y en algunos casos, HTTPS Everywhere tiene que llevar a cabo transformaciones bastante complicadas en URIs - por ejemplo, hasta recientemente la regla de Wikipedia tenía que convertir una dirección como `http://en.wikipedia.org/wiki/World_Wide_Web` en `https://secure.wikimedia.org/wikipedia/en/wiki/World_Wide_Web` por que HTTPS no estaba disponible en los dominios habituales de Wikipedia. +A principios de 2012, la API para extensiones de Safari no ofrece una forma de +realizar la reescritura segura de las solicitudes HTTP a HTTPS. Pero si por +casualidad conoce una forma de realizar la reescritura segura de solicitudes en +estos navegadores, no dude en hacérnoslo saber en https-everywhere en EFF.org +(pero tenga en cuenta que modificar document.location o window.location en +JavaScript no es seguro). + +### [¿Por qué utilizar una lista de sitios aprobados que admiten HTTPS? ¿Por qué no pueden intentar utilizar HTTPS para cada sitio, y sólo volver a HTTP si no está disponible?](#why-use-a-allowlist-of-sites-that-support-https-why-cant-you-try-to-use-https-for-every-last-site-and-only-fall-back-to-http-if-it-isnt-available) + +Hay varios problemas con la idea de tratar de detectar automáticamente HTTPS en +cada sitio. No hay ninguna garantía de que los sitios van a dar la misma +respuesta a través de HTTPS que a través de HTTP. Además, no es posible probar +HTTPS en tiempo real sin introducir vulnerabilidades de seguridad (¿Qué debería +hacer la extensión si falla el intento de conexión por HTTPS? Volver a un HTTP +inseguro no es seguro). Y en algunos casos, HTTPS Everywhere tiene que llevar a +cabo transformaciones bastante complicadas en URIs - por ejemplo, hasta +recientemente la regla de Wikipedia tenía que convertir una dirección como +`http://en.wikipedia.org/wiki/World_Wide_Web` en +`https://secure.wikimedia.org/wikipedia/en/wiki/World_Wide_Web` por que HTTPS +no estaba disponible en los dominios habituales de Wikipedia. ### [¿Cómo puedo eliminar o mover el botón HTTPS Everywhere de la barra de herramientas?](#how-do-i-get-rid-ofmove-the-https-everywhere-button-in-the-toolbar) -El botón HTTPS Everywhere es útil porque le permite ver y desactivar un conjunto de reglas si causa problemas con un sitio. Pero si prefiere desactivarla, vaya a Ver->Barras de herramientas->Personalizar y arrastre el botón fuera de la barra de herramientas y dentro en la barra de complementos en la parte inferior de la página. Después, puede ocultar la barra de complementos. (En teoría, debería poder arrastrarlo a la bandeja de iconos disponibles también, pero eso puede desencadenar [este error](https://trac.torproject.org/projects/tor/ticket/6276). +El botón HTTPS Everywhere es útil porque le permite ver y desactivar un +conjunto de reglas si causa problemas con un sitio. Pero si prefiere +desactivarla, vaya a Ver->Barras de herramientas->Personalizar y arrastre el +botón fuera de la barra de herramientas y dentro en la barra de complementos en +la parte inferior de la página. Después, puede ocultar la barra de +complementos. (En teoría, debería poder arrastrarlo a la bandeja de iconos +disponibles también, pero eso puede desencadenar [este +error](https://trac.torproject.org/projects/tor/ticket/6276). ### [¿Cuándo me protege HTTPS Everywhere? ¿Cuándo no me protege?](#when-does-https-everywhere-protect-me-when-does-it-not-protect-me) -HTTPS Everywhere lo protege sólo cuando está utilizando _porciones cifradas de sitios web soportados_. En un sitio soportado, se activará automáticamente el cifrado HTTPS para todas las partes soportadas conocidas del sitio (para algunos sitios, esto podría ser sólo una parte de todo el sitio). Por ejemplo, si su proveedor de correo web no admite HTTPS en absoluto, HTTPS Everywhere no puede hacer que su acceso a su correo web sea seguro. Del mismo modo, si un sitio permite HTTPS para texto pero no para imágenes, es posible que alguien vea las imágenes que cargue el navegador y adivine a qué está accediendo. - -HTTPS Everywhere depende completamente de las características de seguridad de los sitios web individuales que utilice; _Activa_ estas funciones de seguridad, pero no las puede _crear_ si no existen. Si utiliza un sitio no no soportado por HTTPS Everywhere o un sitio que proporciona cierta información de forma insegura, HTTPS Everywhere no puede proporcionar protección adicional para su uso de ese sitio. Por favor recuerde verificar que la seguridad de un sitio en particular está funcionando al nivel que usted espera antes de enviar o recibir información confidencial, incluyendo contraseñas. - -Una forma de determinar el nivel de protección que obtendrá al utilizar un sitio en particular es utilizar una herramienta de análisis de paquetes como [Wireshark] (https://www.wireshark.org/) para registrar sus propias comunicaciones con el sitio. La vista resultante de sus comunicaciones es aproximadamente igual a lo que un escucha secreto vería en su red wifi o en su ISP. De esta manera, puede determinar si algunas o todas sus comunicaciones estarían protegidas; Sin embargo, puede tomar bastante tiempo hacer sentido a la vista de Wireshark con suficiente cuidado para obtener una respuesta definitiva. - -También puede activar la función "Bloquear todas las solicitudes HTTP" para obtener mayor protección. En lugar de cargar páginas o imágenes inseguras, HTTPS Everywhere las bloqueará completamente. +HTTPS Everywhere lo protege sólo cuando está utilizando _porciones cifradas de +sitios web soportados_. En un sitio soportado, se activará automáticamente el +cifrado HTTPS para todas las partes soportadas conocidas del sitio (para +algunos sitios, esto podría ser sólo una parte de todo el sitio). Por ejemplo, +si su proveedor de correo web no admite HTTPS en absoluto, HTTPS Everywhere no +puede hacer que su acceso a su correo web sea seguro. Del mismo modo, si un +sitio permite HTTPS para texto pero no para imágenes, es posible que alguien +vea las imágenes que cargue el navegador y adivine a qué está accediendo. + +HTTPS Everywhere depende completamente de las características de seguridad de +los sitios web individuales que utilice; _Activa_ estas funciones de seguridad, +pero no las puede _crear_ si no existen. Si utiliza un sitio no no soportado +por HTTPS Everywhere o un sitio que proporciona cierta información de forma +insegura, HTTPS Everywhere no puede proporcionar protección adicional para su +uso de ese sitio. Por favor recuerde verificar que la seguridad de un sitio en +particular está funcionando al nivel que usted espera antes de enviar o recibir +información confidencial, incluyendo contraseñas. + +Una forma de determinar el nivel de protección que obtendrá al utilizar un +sitio en particular es utilizar una herramienta de análisis de paquetes como +[Wireshark] (https://www.wireshark.org/) para registrar sus propias +comunicaciones con el sitio. La vista resultante de sus comunicaciones es +aproximadamente igual a lo que un escucha secreto vería en su red wifi o en su +ISP. De esta manera, puede determinar si algunas o todas sus comunicaciones +estarían protegidas; Sin embargo, puede tomar bastante tiempo hacer sentido a +la vista de Wireshark con suficiente cuidado para obtener una respuesta +definitiva. + +También puede activar la función "Bloquear todas las solicitudes HTTP" para +obtener mayor protección. En lugar de cargar páginas o imágenes inseguras, +HTTPS Everywhere las bloqueará completamente. ### [¿De qué me protege HTTPS Everywhere?](#what-does-https-everywhere-protect-me-against) -En las partes compatibles de los sitios admitidos, HTTPS Everywhere habilita la protección HTTPS de los sitios, lo que le puede proteger contra la escucha y la manipulación indebida del contenido del sitio o de la información que envía al sitio. Idealmente, esto proporciona cierta protección contra un atacante que aprende el contenido de la información que fluye en ambos sentidos - por ejemplo, el texto de los mensajes de correo electrónico que envía o recibe a través de un sitio de webmail, los productos que navega o compra en un comercio electrónico Sitio o los artículos particulares que lea en un sitio de referencia. - -Sin embargo, HTTPS Everywhere **no oculta las identidades de los sitios a los que accede**, la cantidad de tiempo que pasa con ellos ni la cantidad de información que carga o descarga desde un sitio en particular. Por ejemplo, si accede a `http://www.eff.org/issues/nsa-spying` y HTTPS Everywhere vuelve a escribirlo como `https://www.eff.org/issues/nsa-spying`, un espía todavía puede reconocer de forma trivial que está accediendo a www.eff.org (pero puede que no sepa qué tema está leyendo). En general, toda la parte del nombre de dominio de una URL permanece expuesta al intruso, ya que ésta debe enviarse repetidamente en forma no cifrada durante el establecimiento de la conexión. Otra forma de decirlo es que HTTPS nunca fue diseñado para ocultar la identidad de los sitios que visita. - -Investigadores también han demostrado que es posible que alguien pueda averiguar más acerca de lo que está haciendo en un sitio simplemente a través de una cuidadosa observación de la cantidad de datos que sube y descarga, o los patrones de tiempo de su uso del sitio. Un ejemplo simple es que si el sitio sólo tiene una página de cierto tamaño total, cualquier persona que descargue exactamente esa cantidad de datos del sitio probablemente está accediendo a esa página. - -Si desea protegerse contra el monitoreo de los sitios que visita, considere usar HTTPS Everywhere junto con software como [Tor](https://www.torproject.org/). +En las partes compatibles de los sitios admitidos, HTTPS Everywhere habilita la +protección HTTPS de los sitios, lo que le puede proteger contra la escucha y la +manipulación indebida del contenido del sitio o de la información que envía al +sitio. Idealmente, esto proporciona cierta protección contra un atacante que +aprende el contenido de la información que fluye en ambos sentidos - por +ejemplo, el texto de los mensajes de correo electrónico que envía o recibe a +través de un sitio de webmail, los productos que navega o compra en un comercio +electrónico Sitio o los artículos particulares que lea en un sitio de +referencia. + +Sin embargo, HTTPS Everywhere **no oculta las identidades de los sitios a los +que accede**, la cantidad de tiempo que pasa con ellos ni la cantidad de +información que carga o descarga desde un sitio en particular. Por ejemplo, si +accede a `http://www.eff.org/issues/nsa-spying` y HTTPS Everywhere vuelve a +escribirlo como `https://www.eff.org/issues/nsa-spying`, un espía todavía puede +reconocer de forma trivial que está accediendo a www.eff.org (pero puede que no +sepa qué tema está leyendo). En general, toda la parte del nombre de dominio de +una URL permanece expuesta al intruso, ya que ésta debe enviarse repetidamente +en forma no cifrada durante el establecimiento de la conexión. Otra forma de +decirlo es que HTTPS nunca fue diseñado para ocultar la identidad de los sitios +que visita. + +Investigadores también han demostrado que es posible que alguien pueda +averiguar más acerca de lo que está haciendo en un sitio simplemente a través +de una cuidadosa observación de la cantidad de datos que sube y descarga, o los +patrones de tiempo de su uso del sitio. Un ejemplo simple es que si el sitio +sólo tiene una página de cierto tamaño total, cualquier persona que descargue +exactamente esa cantidad de datos del sitio probablemente está accediendo a esa +página. + +Si desea protegerse contra el monitoreo de los sitios que visita, considere +usar HTTPS Everywhere junto con software como +[Tor](https://www.torproject.org/). ### [¿Cómo obtengo soporte para un sitio adicional en HTTPS Everywhere?](#how-do-i-get-support-for-an-additional-site-in-https-everywhere) -Puede aprender [como escribir reglas](https://www.eff.org/https-everywhere/rulesets) que enseñan a HTTPS Everywhere a soportar nuevos sitios. Puede instalar estas reglas en su propio navegador o enviárnoslas para su posible inclusión en la versión oficial. +Puede aprender [como escribir +reglas](https://www.eff.org/https-everywhere/rulesets) que enseñan a HTTPS +Everywhere a soportar nuevos sitios. Puede instalar estas reglas en su propio +navegador o enviárnoslas para su posible inclusión en la versión oficial. ### [¿Qué pasa si el sitio no admite HTTPS, o si sólo lo admite para algunas actividades, como introducir información de la tarjeta de crédito?](#what-if-the-site-doesnt-support-https-or-only-supports-it-for-some-activities-like-entering-credit-card-information) -Podría tratar de ponerse en contacto con el sitio y señalar que el uso de HTTPS para todas las características del sitio es una práctica cada vez más común hoy en día y protege a los usuarios (y sitios) contra una variedad de ataques de Internet. Por ejemplo, le defiende contra la capacidad de otras personas en una red inalámbrica de espiar su uso del sitio o incluso tomar control de su cuenta. También puede señalar que los números de tarjetas de crédito no son la única información que usted considera privada o sensible. +Podría tratar de ponerse en contacto con el sitio y señalar que el uso de HTTPS +para todas las características del sitio es una práctica cada vez más común hoy +en día y protege a los usuarios (y sitios) contra una variedad de ataques de +Internet. Por ejemplo, le defiende contra la capacidad de otras personas en una +red inalámbrica de espiar su uso del sitio o incluso tomar control de su +cuenta. También puede señalar que los números de tarjetas de crédito no son la +única información que usted considera privada o sensible. -Sitios como Google, Twitter y Facebook ahora soportan HTTPS para información no financiera, por razones de privacidad y seguridad general. +Sitios como Google, Twitter y Facebook ahora soportan HTTPS para información no +financiera, por razones de privacidad y seguridad general. ### [¿No es más caro o lento para un sitio usar HTTPS en comparación con HTTP normal?](#isnt-it-more-expensive-or-slower-for-a-site-to-support-https-compared-to-regular-http) -Puede ser, pero algunos sitios han sido gratamente sorprendidos al ver lo práctico que puede ser. Además, los expertos de Google están actualmente implementando varias mejoras en el protocolo TLS que hacen HTTPS dramáticamente más rápido; si estas mejoras se añaden a la norma pronto, la brecha de velocidad entre los dos debería casi desaparecer. Ver [la descripción de Adam Langley de la situación de la implementación de HTTPS](https://www.imperialviolet.org/2010/06/25/overclocking-ssl.html) para más detalles sobre esta cuestión. En particular, Langley afirma: "Para [habilitar HTTPS de forma predeterminada para Gmail] no tuvimos que desplegar máquinas adicionales ni hardware especial. En nuestras máquinas frontend de producción, SSL/TLS representa menos del 1% de la carga del CPU, menos de 10KB de memoria por conexión y menos del 2% de la sobrecarga de red". - -Solía ser caro comprar un certificado para el uso de HTTPS, pero ahora se puede obtener de forma gratuita en [Let's Encrypt](https://letsencrypt.org/) de igual manera. +Puede ser, pero algunos sitios han sido gratamente sorprendidos al ver lo +práctico que puede ser. Además, los expertos de Google están actualmente +implementando varias mejoras en el protocolo TLS que hacen HTTPS dramáticamente +más rápido; si estas mejoras se añaden a la norma pronto, la brecha de +velocidad entre los dos debería casi desaparecer. Ver [la descripción de Adam +Langley de la situación de la implementación de +HTTPS](https://www.imperialviolet.org/2010/06/25/overclocking-ssl.html) para +más detalles sobre esta cuestión. En particular, Langley afirma: "Para +[habilitar HTTPS de forma predeterminada para Gmail] no tuvimos que desplegar +máquinas adicionales ni hardware especial. En nuestras máquinas frontend de +producción, SSL/TLS representa menos del 1% de la carga del CPU, menos de 10KB +de memoria por conexión y menos del 2% de la sobrecarga de red". + +Solía ser caro comprar un certificado para el uso de HTTPS, pero ahora se puede +obtener de forma gratuita en [Let's Encrypt](https://letsencrypt.org/) de igual +manera. ### [¿Por qué debría usar HTTPS Everywhere en lugar de simplemente teclear https:// al principio del nombre de un sitio?](#why-should-i-use-https-everywhere-instead-of-just-typing-https-at-the-beginning-of-site-names) -Incluso si normalmente escribe https://, HTTPS Everywhere podría protegerlo si alguna vez lo olvida. Además, puede reescribir los enlaces que siga de otras personas. Por ejemplo, si hace clic en un enlace a `http://en.wikipedia.org/wiki/EFF_Pioneer_Award`, HTTPS Everywhere volverá a escribir el enlace de forma automática como `https://en.wikimedia.org/wikipedia/en/wiki/EFF_Pioneer_Award`. Por lo tanto, puede obtener alguna protección incluso si no hubiera notado que el sitio de destino está disponible en HTTPS. +Incluso si normalmente escribe https://, HTTPS Everywhere podría protegerlo si +alguna vez lo olvida. Además, puede reescribir los enlaces que siga de otras +personas. Por ejemplo, si hace clic en un enlace a +`http://en.wikipedia.org/wiki/EFF_Pioneer_Award`, HTTPS Everywhere volverá a +escribir el enlace de forma automática como +`https://en.wikimedia.org/wikipedia/en/wiki/EFF_Pioneer_Award`. Por lo tanto, +puede obtener alguna protección incluso si no hubiera notado que el sitio de +destino está disponible en HTTPS. ### [¿Por qué HTTPS Everywhere incluye reglas para sitios como PayPal que ya requieren HTTPS en todas sus páginas?](#why-does-https-everywhere-include-rules-for-sites-like-paypal-that-already-require-https-on-all-their-pages) -HTTPS Everywhere, como la [especificación HSTS](https://en.wikipedia.org/wiki/HTTP_Strict_Transport_Security), trata de abordar un ataque llamado [SSL stripping](https://moxie.org/software/sslstrip/). Los usuarios sólo están protegidos contra un ataque "SSL stripping" si sus navegadores ni siquiera _intentan_ conectarse a la versión HTTP del sitio, incluso si el sitio los hubiera redirigido a la versión HTTPS. Con HTTPS Everywhere, el navegador ni siquiera intenta la conexión HTTP insegura, incluso si eso es lo que usted le pide que haga. (Tenga en cuenta que actualmente HTTPS Everywhere no incluye una lista completa de dichos sitios, que son principalmente instituciones financieras). +HTTPS Everywhere, como la [especificación +HSTS](https://en.wikipedia.org/wiki/HTTP_Strict_Transport_Security), trata de +abordar un ataque llamado [SSL +stripping](https://moxie.org/software/sslstrip/). Los usuarios sólo están +protegidos contra un ataque "SSL stripping" si sus navegadores ni siquiera +_intentan_ conectarse a la versión HTTP del sitio, incluso si el sitio los +hubiera redirigido a la versión HTTPS. Con HTTPS Everywhere, el navegador ni +siquiera intenta la conexión HTTP insegura, incluso si eso es lo que usted le +pide que haga. (Tenga en cuenta que actualmente HTTPS Everywhere no incluye una +lista completa de dichos sitios, que son principalmente instituciones +financieras). ### [¿Qué significan los diferentes colores de las reglas en el menú de la barra de herramientas en Firefox?](#what-do-the-different-colors-for-rulesets-in-the-firefox-toolbar-menu-mean) Los colores son: -Verde oscuro: el conjunto de reglas estaba activa durante la carga de recursos en la página actual. +Verde oscuro: el conjunto de reglas estaba activa durante la carga de recursos +en la página actual. -Verde claro: el conjunto de reglas estaba listo para evitar las cargas HTTP en la página actual, pero todo lo que el conjunto de reglas habría cubierto se cargó a través de HTTPS de todos modos (en el código, verde claro se le llama una "regla discutible"). +Verde claro: el conjunto de reglas estaba listo para evitar las cargas HTTP en +la página actual, pero todo lo que el conjunto de reglas habría cubierto se +cargó a través de HTTPS de todos modos (en el código, verde claro se le llama +una "regla discutible"). -Marrón oscuro o Flecha roja en el sentido de las agujas del reloj: regla rota -- el conjunto de reglas está activo, pero el servidor está redirigiendo al menos algunas direcciones URL de HTTPS a HTTP. +Marrón oscuro o Flecha roja en el sentido de las agujas del reloj: regla rota +-- el conjunto de reglas está activo, pero el servidor está redirigiendo al +menos algunas direcciones URL de HTTPS a HTTP. Gris: el conjunto de reglas está deshabilitado. @@ -105,7 +265,8 @@ Los colores son: Azul claro: HTTPS Everywhere está habilitado. -Azul oscuro: HTTPS Everywhere está habilitado y activo para cargar recursos en la página actual. +Azul oscuro: HTTPS Everywhere está habilitado y activo para cargar recursos en +la página actual. Rojo: Todas las peticiones sin cifrar serán bloqueadas por HTTPS Everywhere. @@ -113,24 +274,54 @@ Gris: HTTPS Everywhere está deshabilitado. ### [Tengo un problema al instalar la extensión del navegador.](#im-having-a-problem-installing-the-browser-extension.) -Algunas personas informan que la instalación de HTTPS Everywhere les da el error: "El complemento no se pudo descargar debido a un error de conexión en www.eff.org". Esto puede ser causado por el antivirus Avast, que bloquea la instalación de extensiones de navegador. Puede que pueda [instalarlo desde addons.mozilla.org](https://addons.mozilla.org/en-US/firefox/addon/https-everywhere/). +Algunas personas informan que la instalación de HTTPS Everywhere les da el +error: "El complemento no se pudo descargar debido a un error de conexión en +www.eff.org". Esto puede ser causado por el antivirus Avast, que bloquea la +instalación de extensiones de navegador. Puede que pueda [instalarlo desde +addons.mozilla.org](https://addons.mozilla.org/en-US/firefox/addon/https-everywhere/). ### [¿Cómo desinstalo/elimino HTTPS Everywhere?](#how-do-i-uninstallremove-https-everywhere) -En Firefox: Haga clic en el botón de menú en la parte superior derecha de la ventana al final de la barra de herramientas (aparece como tres líneas horizontales) y, a continuación, haga clic en "Complementos" (parece una pieza de rompecabezas). Desplácese hasta que vea HTTPS Everywhere y a continuación haga clic en el botón "Eliminar" que se encuentra completamente a la derecha. Al finalizar, puede cerrar la ventana de complementos. - -En Chrome: haga clic en el botón de menú situado en la parte superior derecha de la ventana al final de la barra de herramientas (aparece como tres líneas horizontales) y, a continuación, haz clic en "Configuración" cerca de la parte inferior. A la izquierda, haga clic en "Extensiones". Desplácese hasta que vea HTTPS Everywhere y a continuación, haga clic en el icono de la papelera de la derecha y haga clic en "Eliminar" para confirmar la eliminación. Al finalizar, puede cerrar la ventana de configuración. +En Firefox: Haga clic en el botón de menú en la parte superior derecha de la +ventana al final de la barra de herramientas (aparece como tres líneas +horizontales) y, a continuación, haga clic en "Complementos" (parece una pieza +de rompecabezas). Desplácese hasta que vea HTTPS Everywhere y a continuación +haga clic en el botón "Eliminar" que se encuentra completamente a la derecha. +Al finalizar, puede cerrar la ventana de complementos. + +En Chrome: haga clic en el botón de menú situado en la parte superior derecha +de la ventana al final de la barra de herramientas (aparece como tres líneas +horizontales) y, a continuación, haz clic en "Configuración" cerca de la parte +inferior. A la izquierda, haga clic en "Extensiones". Desplácese hasta que vea +HTTPS Everywhere y a continuación, haga clic en el icono de la papelera de la +derecha y haga clic en "Eliminar" para confirmar la eliminación. Al finalizar, +puede cerrar la ventana de configuración. ### [¿Cómo agrego mi propio sitio a HTTPS Everywhere?](#how-do-i-add-my-own-site-to-https-everywhere) -Estamos contentos de que desee que su sitio en HTTPS Everywhere! Sin embargo, recuerde que no todos los que visitan su sitio tienen instalada nuestra extensión. Si administra un sitio web, puede configurarlo para que use de forma predeterminada HTTPS para todos, no solo para los usuarios de HTTPS Everywhere. Y es menos trabajo! Los pasos que usted debe tomar, en orden, son: - -1. Configure un [redireccionamiento](https://www.sslshopper.com/apache-redirect-http-to-https.html) de HTTP a HTTPS en su sitio. -2. [Agregue el header "Strict-Transport-Security" (HSTS) en su sitio.](https://raymii.org/s/tutorials/HTTP_Strict_Transport_Security_for_Apache_NGINX_and_Lighttpd.html) -3. [Agregue su sitio a la lista de precarga de HSTS.](https://hstspreload.appspot.com/) - -Estos pasos le darán a su sitio una protección mucho mejor que añadirlo a HTTPS Everywhere. En términos generales, una vez que haya terminado, no es necesario agregar su sitio a HTTPS Everywhere. Sin embargo, si lo aún desea, siga las [instrucciones sobre escribir conjuntos de reglas](https://eff.org/https-everywhere/rulesets), e indique que usted es el autor del sitio cuando solicite un "pull request". +Estamos contentos de que desee que su sitio en HTTPS Everywhere! Sin embargo, +recuerde que no todos los que visitan su sitio tienen instalada nuestra +extensión. Si administra un sitio web, puede configurarlo para que use de forma +predeterminada HTTPS para todos, no solo para los usuarios de HTTPS Everywhere. +Y es menos trabajo! Los pasos que usted debe tomar, en orden, son: + +1. Configure un + [redireccionamiento](https://www.sslshopper.com/apache-redirect-http-to-https.html) + de HTTP a HTTPS en su sitio. +2. [Agregue el header "Strict-Transport-Security" (HSTS) en su + sitio.](https://raymii.org/s/tutorials/HTTP_Strict_Transport_Security_for_Apache_NGINX_and_Lighttpd.html) +3. [Agregue su sitio a la lista de precarga de + HSTS.](https://hstspreload.appspot.com/) + +Estos pasos le darán a su sitio una protección mucho mejor que añadirlo a HTTPS +Everywhere. En términos generales, una vez que haya terminado, no es necesario +agregar su sitio a HTTPS Everywhere. Sin embargo, si lo aún desea, siga las +[instrucciones sobre escribir conjuntos de +reglas](https://eff.org/https-everywhere/rulesets), e indique que usted es el +autor del sitio cuando solicite un "pull request". ### [¿Puedo ayudar a traducir HTTPS Everywhere a mi propio idioma? ](#can-i-help-translate-https-everywhere-into-my-own-language) -¡Sí! Utilizamos la cuenta Transifex de Tor Project para las traducciones, por favor inscríbase para ayudar a traducir en [https://www.transifex.com/otf/torproject](https://www.transifex.com/otf/torproject). +¡Sí! Utilizamos la cuenta Transifex de Tor Project para las traducciones, por +favor inscríbase para ayudar a traducir en +[https://www.transifex.com/otf/torproject](https://www.transifex.com/otf/torproject). diff --git a/dummy-chromium.pem b/dummy-chromium.pem new file mode 100644 index 000000000000..b6bb2a5ed409 --- /dev/null +++ b/dummy-chromium.pem @@ -0,0 +1,13 @@ +-----BEGIN PRIVATE KEY----- +MIIB5gIBADANBgkqhkiG9w0BAQEFAASCAdAwggHMAgEAAmEA3BZGOZsEWGEc82Yz +Ddrey4Vp8dV4AQZPu2tM32Z6ZEx2538G3bWu5g0OPzX8Oqvzqr8ZRIvxcBbL3kgZ +5wnhjVRTlWy0jxZDHCvVsATzhbhAt505zljHaRS1PrCYfV/nAgMBAAECYCQpRMCS +R9R9oFQdpqXQIGswMIgbmuwQLWmN58ONAu8X4TGIHYiwIVyLKJwaMqcxOTn753Us +7vFbGwoMnO3Krzh1Xn9z6uKnB7dDotgc9ZIQ5Ja8ExjJhl5iBMSWePYWAQIxAPRo +yZ+JdWu+/y+/F6KsiCDx8EmdV8Dd09BogXH31S2VtSUEfZd/UDUPgbRgo+c9dwIx +AOaGNJyJbHY4UCxC2hRBRZGNlic8SaFKEQAtN28gMWMDMgAh0ik8YtrPffBed+bN +EQIxAOwTAx0MItTt6YLu6x9/0wUva89PIWHzYhKdvtqcbdbYEd4tljntCUYXMktO +RUKoRQIxAL/3PHKqoc6kwGbLWO2LGVLHNCYCN1J/6j5aaRI6HcZVD9s6TteV+MA8 +D6UOFgz18QIxAJKXHDXXF+LXGsOwRMcp8nqg9Ri9daWW74JWyozFRqIsRhnhDhw9 +8f4cUAPw7BquBw== +-----END PRIVATE KEY----- diff --git a/fetch-test.sh b/fetch-test.sh deleted file mode 100755 index b6457444c00e..000000000000 --- a/fetch-test.sh +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -exec python2.7 test/rules/src/https_everywhere_checker/check_rules.py test/rules/manual.checker.config "$@" diff --git a/hooks/precommit b/hooks/precommit index 0f2873b9ca42..04c65b738ac5 100755 --- a/hooks/precommit +++ b/hooks/precommit @@ -39,7 +39,7 @@ if [ "$CHANGED_RULESETS" ]; then continue fi - ./utils/trivial-validate.py --quiet $FILE + python3 test/validations/special/run.py --quiet $FILE RESULT=$? if [ $RESULT -ne 0 ]; then diff --git a/hooks/update b/hooks/update index 40918f5c3ce9..d45a5f2d2f1d 100644 --- a/hooks/update +++ b/hooks/update @@ -42,21 +42,18 @@ echo "attempting to validate $newrev" >&2 # --- Test build -if [ -f makexpi.sh && -f makecrx.sh ]; then - ./makexpi.sh - XPIBULID=$? +if [ -f make.sh ]; then + ./make.sh + EXTBULID=$? - ./makecrx.sh - CRXBUILD=$? - - if [ "$XPIBULID" != 0 || "$CRXBUILD" != 0 ]; then + if [ "$EXTBULID" != 0 ]; then echo "*** build failed" >&2 exit 1 else exit 0 fi else - echo "*** could not find makexpi.sh or makecrx.sh." >&2 + echo "*** could not find make.sh." >&2 exit 1 fi diff --git a/image-src/https-everywhere-half-24.xcf.gz b/image-src/https-everywhere-half-24.xcf.gz deleted file mode 100644 index ee5cfaf115fe..000000000000 Binary files a/image-src/https-everywhere-half-24.xcf.gz and /dev/null differ diff --git a/image-src/https-everywhere.xcf b/image-src/https-everywhere.xcf deleted file mode 100644 index 076a49ebdf56..000000000000 Binary files a/image-src/https-everywhere.xcf and /dev/null differ diff --git a/image-src/ssl-observatory.jpg b/image-src/ssl-observatory.jpg deleted file mode 100644 index 0241bee91b55..000000000000 Binary files a/image-src/ssl-observatory.jpg and /dev/null differ diff --git a/install-dev-dependencies.sh b/install-dev-dependencies.sh index 9ce7446491be..9259d02b8676 100755 --- a/install-dev-dependencies.sh +++ b/install-dev-dependencies.sh @@ -1,50 +1,78 @@ -#!/bin/bash -ex +#!/bin/bash # Install packages that are necessary and/or useful to build and debug # HTTPS Everywhere -set -o errexit -o xtrace +set -o errexit + +if [ "$1" != "--no-prompt" ]; then + echo + echo "Warning: Installing the development dependencies for HTTPS Everywhere" + echo "may alter your system, installing requirements both within the package" + echo "management system and also external binaries." + echo + echo -n "Are you sure you want to continue? [y/N]: " + read CONTINUE + CONTINUE=`echo $CONTINUE | xargs | head -c 1 | awk '{print tolower($0)}'` + if [ "$CONTINUE" != "y" ]; then + exit + fi + echo +fi if [ $UID != 0 ]; then SUDO_SHIM=sudo fi -if type apt-get >/dev/null ; then +if [ "`uname -m`" == "x86_64" ]; then + ARCH=64 +else + ARCH=32 +fi + +# debian based installation +if type apt-get>/dev/null 2>&1; then + $SUDO_SHIM apt-get update + $SUDO_SHIM apt-get install -y lsb-release BROWSERS="firefox chromium-browser" CHROMEDRIVER="chromium-chromedriver" if [[ "$(lsb_release -is)" == "Debian" ]]; then - # Iceweasel is the rebranded Firefox that Debian ships, and Chromium - # takes the name of 'chromium' instead of 'chromium-browser' in + # Chromium takes the name of 'chromium' instead of 'chromium-browser' in # Debian 7 (wheezy) and later. - BROWSERS="iceweasel chromium" - CHROMEDRIVER="chromedriver" + BROWSERS="firefox-esr chromium" + CHROMEDRIVER="chromium-driver" fi - # In Debian, `python-` is assumed to be python 2.7, no need to specify - dkg - $SUDO_SHIM apt-get install libxml2-dev libxml2-utils libxslt1-dev \ - python-dev $BROWSERS zip sqlite3 python-pip libcurl4-openssl-dev xvfb \ + $SUDO_SHIM apt-get install -y libxml2-dev libxml2-utils libxslt1-dev \ + python3-dev $BROWSERS zip sqlite3 python3-pip libcurl4-openssl-dev xvfb \ + nodejs \ + npm \ libssl-dev git curl $CHROMEDRIVER - if ! type geckodriver >/dev/null; then - curl -LO "https://github.com/mozilla/geckodriver/releases/download/v0.16.1/geckodriver-v0.16.1-linux64.tar.gz" - tar -zxvf "geckodriver-v0.16.1-linux64.tar.gz" - rm -f "geckodriver-v0.16.1-linux64.tar.gz" + if ! type geckodriver >/dev/null 2>&1; then + curl -LO "https://github.com/mozilla/geckodriver/releases/download/v0.24.0/geckodriver-v0.24.0-linux$ARCH.tar.gz" + tar -zxvf "geckodriver-v0.24.0-linux$ARCH.tar.gz" + rm -f "geckodriver-v0.24.0-linux$ARCH.tar.gz" $SUDO_SHIM mv geckodriver /usr/bin/geckodriver $SUDO_SHIM chown root /usr/bin/geckodriver $SUDO_SHIM chmod 755 /usr/bin/geckodriver fi -elif type brew >/dev/null ; then + if [ ! -f /usr/lib/chromium-browser/chromedriver ] && [ -f `which chromedriver` ]; then + $SUDO_SHIM ln -s `which chromedriver` /usr/lib/chromium-browser/chromedriver + fi + +# macOS installation +elif type brew >/dev/null 2>&1; then brew list python &>/dev/null || brew install python - brew install libxml2 gnu-sed chromedriver + brew cask install chromedriver + brew install libxml2 gnu-sed + brew install node if ! echo $PATH | grep -ql /usr/local/bin ; then echo '/usr/local/bin not found in $PATH, please add it.' fi -elif type dnf >/dev/null ; then - $SUDO_SHIM dnf install firefox gcc git libcurl-devel libxml2-devel \ - libxslt-devel python-devel redhat-rpm-config xorg-x11-server-Xvfb which \ - findutils procps openssl chromium GConf2 + +# distros that use rpm (Fedora, Suse, CentOS) installation +elif type dnf >/dev/null 2>&1; then + $SUDO_SHIM dnf install -y firefox gcc git libcurl-devel libxml2-devel \ + libxslt-devel python3-devel redhat-rpm-config xorg-x11-server-Xvfb which \ + findutils procps openssl openssl-devel chromium GConf2 if ! type chromedriver >/dev/null; then - if [ "`uname -m`" == "x86_64" ]; then - ARCH=64 - else - ARCH=32 - fi curl -O "https://chromedriver.storage.googleapis.com/2.23/chromedriver_linux$ARCH.zip" unzip "chromedriver_linux$ARCH.zip" rm -f "chromedriver_linux$ARCH.zip" @@ -52,20 +80,31 @@ elif type dnf >/dev/null ; then $SUDO_SHIM chown root /usr/bin/chromedriver $SUDO_SHIM chmod 755 /usr/bin/chromedriver fi - if ! type geckodriver >/dev/null; then - curl -LO "https://github.com/mozilla/geckodriver/releases/download/v0.16.1/geckodriver-v0.16.1-macos.tar.gz" - tar -zxvf "geckodriver-v0.16.1-macos.tar.gz" - rm -f "geckodriver-v0.16.1-macos.tar.gz" + if ! type geckodriver >/dev/null 2>&1; then + curl -LO "https://github.com/mozilla/geckodriver/releases/download/v0.24.0/geckodriver-v0.24.0-macos.tar.gz" + tar -zxvf "geckodriver-v0.24.0-macos.tar.gz" + rm -f "geckodriver-v0.24.0-macos.tar.gz" $SUDO_SHIM mv geckodriver /usr/bin/geckodriver $SUDO_SHIM chown root /usr/bin/geckodriver $SUDO_SHIM chmod 755 /usr/bin/geckodriver fi + # This is needed for Firefox on some systems. See here for more information: # https://github.com/EFForg/https-everywhere/pull/5584#issuecomment-238655443 if [ ! -f /var/lib/dbus/machine-id ]; then $SUDO_SHIM sh -c 'dbus-uuidgen > /var/lib/dbus/machine-id' fi - export PYCURL_SSL_LIBRARY=nss + export PYCURL_SSL_LIBRARY=openssl + + #Node + curl -sL https://rpm.nodesource.com/setup_12.x | $SUDO_SHIM bash - + $SUDO_SHIM yum install -y nodejs + $SUDO_SHIM yum install gcc-c++ make +else + echo \ + "Your distro isn't supported by this script yet!"\ + "Please install dependencies manually." + exit fi # Get the addon SDK submodule and rule checker @@ -73,13 +112,16 @@ git submodule init git submodule update # Install Python packages -pip install --user --no-allow-insecure --no-allow-external -r requirements.txt +pip3 install --user -r requirements.txt cd test/rules -pip install --user -r requirements.txt +pip3 install --user -r requirements.txt cd - cd test/chromium -pip install --user -r requirements.txt +pip3 install --user -r requirements.txt cd - +# Install Node Package for CRX Verification +$SUDO_SHIM npm -g i crx3-utils + # Install git hook to run tests before pushing. ln -sf ../../test.sh .git/hooks/pre-push diff --git a/lib-wasm b/lib-wasm new file mode 160000 index 000000000000..dfad18667846 --- /dev/null +++ b/lib-wasm @@ -0,0 +1 @@ +Subproject commit dfad186678467a3f78e0d6a61400ed2f9c5d663d diff --git a/make.sh b/make.sh new file mode 100755 index 000000000000..415b80090c4a --- /dev/null +++ b/make.sh @@ -0,0 +1,235 @@ +#!/usr/bin/env bash + +# Build an HTTPS Everywhere .crx & .xpi extension +# +# To build the current state of the tree: +# +# ./make.sh +# +# To build a particular tagged release: +# +# ./make.sh +# +# eg: +# +# ./make.sh 2017.8.15 +# +# Note that .crx files must be signed; this script makes you a +# "dummy-chromium.pem" private key for you to sign your own local releases, +# but these .crx files won't detect and upgrade to official HTTPS Everywhere +# releases signed by EFF :/. We should find a more elegant arrangement. + +! getopt --test > /dev/null +if [[ ${PIPESTATUS[0]} -ne 4 ]]; then + echo 'I’m sorry, `getopt --test` failed in this environment.' + exit 1 +fi + +OPTIONS=eck: +LONGOPTS=remove-extension-update,remove-update-channels,key: +! PARSED=$(getopt --options=$OPTIONS --longoptions=$LONGOPTS --name "$0" -- "$@") +if [[ ${PIPESTATUS[0]} -ne 0 ]]; then + # e.g. return value is 1 + # then getopt has complained about wrong arguments to stdout + exit 2 +fi + +# read getopt’s output this way to handle the quoting right: +eval set -- "$PARSED" + +REMOVE_EXTENSION_UPDATE=false +REMOVE_UPDATE_CHANNELS=false +KEY=$(pwd)/dummy-chromium.pem +while true; do + case "$1" in + -e|--remove-extension-update) + REMOVE_EXTENSION_UPDATE=true + shift + ;; + -c|--remove-update-channels) + REMOVE_UPDATE_CHANNELS=true + shift + ;; + -k|--key) + KEY="$2" + shift 2 + ;; + --) + shift + break + ;; + *) + echo "Programming error" + exit 3 + ;; + esac +done + +if [ "${KEY:0:1}" != "/" ]; then + echo "Key must be specified as an absolute path." + exit 4 +fi + + + + +cd $(dirname $0) + +if [ -n "$1" ]; then + BRANCH=`git branch | head -n 1 | cut -d \ -f 2-` + SUBDIR=checkout + [ -d $SUBDIR ] || mkdir $SUBDIR + cp -r -f -a .git $SUBDIR + cd $SUBDIR + git reset --hard "$1" + git submodule update --recursive -f +fi + +VERSION=`python3 -c "import json ; print(json.loads(open('chromium/manifest.json').read())['version'])"` + +echo "Building version" $VERSION + +[ -d pkg ] || mkdir -p pkg +[ -e pkg/crx-cws ] && rm -rf pkg/crx-cws +[ -e pkg/crx-eff ] && rm -rf pkg/crx-eff +[ -e pkg/xpi-amo ] && rm -rf pkg/xpi-amo +[ -e pkg/xpi-eff ] && rm -rf pkg/xpi-eff + +# Clean up obsolete ruleset databases, just in case they still exist. +rm -f src/chrome/content/rules/default.rulesets src/defaults/rulesets.sqlite + +mkdir -p pkg/crx-cws/rules +cd pkg/crx-cws +cp -a ../../chromium/* ./ +# Turn the Firefox translations into the appropriate Chrome format: +rm -rf _locales/ +mkdir _locales/ +python3 ../../utils/chromium-translations.py ../../translations/ _locales/ +python3 ../../utils/chromium-translations.py ../../src/chrome/locale/ _locales/ +do_not_ship="*.py *.xml" +rm -f $do_not_ship + +mkdir wasm +cp ../../lib-wasm/pkg/*.wasm wasm +cp ../../lib-wasm/pkg/*.js wasm + +cd ../.. + +python3 ./utils/merge-rulesets.py || exit 5 + +cp src/chrome/content/rules/default.rulesets pkg/crx-cws/rules/default.rulesets + +sed -i -e "s/VERSION/$VERSION/g" pkg/crx-cws/manifest.json + +for x in `cat .build_exclusions`; do + rm -rf pkg/crx-cws/$x +done + +cp -a pkg/crx-cws pkg/crx-eff +cp -a pkg/crx-cws pkg/xpi-amo +cp -a pkg/crx-cws pkg/xpi-eff +cp -a src/META-INF pkg/xpi-amo +cp -a src/META-INF pkg/xpi-eff + + +# Remove the 'applications' manifest key from the crx version of the extension, change the 'author' string to a hash, and add the "update_url" manifest key +# "update_url" needs to be present to avoid problems reported in https://bugs.chromium.org/p/chromium/issues/detail?id=805755 +python3 -c "import json; m=json.loads(open('pkg/crx-cws/manifest.json').read()); m['author']={'email': 'eff.software.projects@gmail.com'}; del m['applications']; m['update_url'] = 'https://clients2.google.com/service/update2/crx'; open('pkg/crx-cws/manifest.json','w').write(json.dumps(m,indent=4,sort_keys=True))" +python3 -c "import json; m=json.loads(open('pkg/crx-eff/manifest.json').read()); m['author']={'email': 'eff.software.projects@gmail.com'}; del m['applications']; open('pkg/crx-eff/manifest.json','w').write(json.dumps(m,indent=4,sort_keys=True))" +# Remove the 'update_url' manifest key from the xpi version of the extension delivered to AMO +python3 -c "import json; m=json.loads(open('pkg/xpi-amo/manifest.json').read()); del m['applications']['gecko']['update_url']; m['applications']['gecko']['id'] = 'https-everywhere@eff.org'; open('pkg/xpi-amo/manifest.json','w').write(json.dumps(m,indent=4,sort_keys=True))" + +# Remove the incognito key in AMO packages: #16394 +python3 -c "import json; m=json.loads(open('pkg/xpi-amo/manifest.json').read()); del m['incognito']; open('pkg/xpi-amo/manifest.json','w').write(json.dumps(m,indent=4,sort_keys=True))" +python3 -c "import json; m=json.loads(open('pkg/xpi-eff/manifest.json').read()); del m['incognito']; open('pkg/xpi-eff/manifest.json','w').write(json.dumps(m,indent=4,sort_keys=True))" + +# If the --remove-extension-update flag is set, ensure the extension is unable to update +if $REMOVE_EXTENSION_UPDATE; then + echo "Flag --remove-extension-update specified. Removing the XPI extensions' ability to update." + python3 -c "import json; m=json.loads(open('pkg/xpi-amo/manifest.json').read()); m['applications']['gecko']['update_url'] = 'https://127.0.0.1'; open('pkg/xpi-amo/manifest.json','w').write(json.dumps(m,indent=4,sort_keys=True))" + python3 -c "import json; m=json.loads(open('pkg/xpi-eff/manifest.json').read()); m['applications']['gecko']['update_url'] = 'https://127.0.0.1'; open('pkg/xpi-eff/manifest.json','w').write(json.dumps(m,indent=4,sort_keys=True))" +fi + +# If the --remove-update-channels flag is set, remove all out-of-band update channels +if $REMOVE_UPDATE_CHANNELS; then + echo "Flag --remove-update-channels specified. Removing all out-of-band update channels." + echo "require.scopes.update_channels.update_channels = [];" >> pkg/crx-cws/background-scripts/update_channels.js + echo "require.scopes.update_channels.update_channels = [];" >> pkg/crx-eff/background-scripts/update_channels.js + echo "require.scopes.update_channels.update_channels = [];" >> pkg/xpi-amo/background-scripts/update_channels.js + echo "require.scopes.update_channels.update_channels = [];" >> pkg/xpi-eff/background-scripts/update_channels.js +fi + +if [ -n "$BRANCH" ] ; then + crx_cws="pkg/https-everywhere-$VERSION-cws.crx" + crx_eff="pkg/https-everywhere-$VERSION-eff.crx" + xpi_amo="pkg/https-everywhere-$VERSION-amo.xpi" + xpi_eff="pkg/https-everywhere-$VERSION-eff.xpi" + +else + crx_cws="pkg/https-everywhere-$VERSION~pre-cws.crx" + crx_eff="pkg/https-everywhere-$VERSION~pre-eff.crx" + xpi_amo="pkg/https-everywhere-$VERSION~pre-amo.xpi" + xpi_eff="pkg/https-everywhere-$VERSION~pre-eff.xpi" +fi +if ! [ -f "$KEY" ] ; then + echo "Making a dummy signing key for local build purposes" + openssl genrsa -out /tmp/dummy-chromium.pem 768 + openssl pkcs8 -topk8 -nocrypt -in /tmp/dummy-chromium.pem -out $KEY +fi + + +# now pack the crx'es +BROWSER="chromium-browser" +which $BROWSER || BROWSER="chromium" + +$BROWSER --no-message-box --pack-extension="pkg/crx-cws" --pack-extension-key="$KEY" 2> /dev/null +$BROWSER --no-message-box --pack-extension="pkg/crx-eff" --pack-extension-key="$KEY" 2> /dev/null + +mv pkg/crx-cws.crx $crx_cws +mv pkg/crx-eff.crx $crx_eff + +echo >&2 "CWS crx package has sha256sum: `openssl dgst -sha256 -binary "$crx_cws" | xxd -p`" +echo >&2 "EFF crx package has sha256sum: `openssl dgst -sha256 -binary "$crx_eff" | xxd -p`" + +# now zip up the xpi AMO dir +name=pkg/xpi-amo +dir=pkg/xpi-amo +zip="$name.zip" + +cwd=$(pwd -P) +(cd "$dir" && ../../utils/create_zip.py -n "$cwd/$zip" -x "../../.build_exclusions" .) +echo >&2 "AMO xpi package has sha256sum: `openssl dgst -sha256 -binary "$cwd/$zip" | xxd -p`" + +cp $zip $xpi_amo + +# now zip up the xpi EFF dir +name=pkg/xpi-eff +dir=pkg/xpi-eff +zip="$name.zip" + +cwd=$(pwd -P) +(cd "$dir" && ../../utils/create_zip.py -n "$cwd/$zip" -x "../../.build_exclusions" .) +echo >&2 "EFF xpi package has sha256sum: `openssl dgst -sha256 -binary "$cwd/$zip" | xxd -p`" + +cp $zip $xpi_eff + +bash utils/android-push.sh "$xpi_eff" + +echo >&2 "Total included rules: `find src/chrome/content/rules -name "*.xml" | wc -l`" +echo >&2 "Rules disabled by default: `find src/chrome/content/rules -name "*.xml" | xargs grep -F default_off | wc -l`" + +# send the following to stdout so scripts can parse it +# see test/selenium/shim.py +echo "Created $xpi_amo" +echo "Created $xpi_eff" +echo "Created $crx_cws" +echo "Created $crx_eff" + +if [ -n "$BRANCH" ]; then + cd .. + cp $SUBDIR/$crx_cws pkg + cp $SUBDIR/$crx_eff pkg + cp $SUBDIR/$xpi_amo pkg + cp $SUBDIR/$xpi_eff pkg + rm -rf $SUBDIR +fi diff --git a/makecrx.sh b/makecrx.sh deleted file mode 100755 index 4589037f3cd0..000000000000 --- a/makecrx.sh +++ /dev/null @@ -1,148 +0,0 @@ -#!/usr/bin/env bash - -# Build an HTTPS Everywhere .crx Chromium extension (for Chromium 17+) -# -# To build the current state of the tree: -# -# ./makecrx.sh -# -# To build a particular tagged release: -# -# ./makecrx.sh -# -# eg: -# -# ./makecrx.sh chrome-2012.1.26 -# -# Note that .crx files must be signed; this script makes you a -# "dummy-chromium.pem" private key for you to sign your own local releases, -# but these .crx files won't detect and upgrade to official HTTPS Everywhere -# releases signed by EFF :/. We should find a more elegant arrangement. - -cd $(dirname $0) -RULESETS_JSON=pkg/rulesets.json - -if [ -n "$1" ]; then - BRANCH=`git branch | head -n 1 | cut -d \ -f 2-` - SUBDIR=checkout - [ -d $SUBDIR ] || mkdir $SUBDIR - cp -r -f -a .git $SUBDIR - cd $SUBDIR - git reset --hard "$1" - git submodule update --recursive -f -fi - -VERSION=`python2.7 -c "import json ; print(json.loads(open('chromium/manifest.json').read())['version'])"` - -echo "Building chrome version" $VERSION - -[ -d pkg ] || mkdir -p pkg -[ -e pkg/crx ] && rm -rf pkg/crx - -# Clean up obsolete ruleset databases, just in case they still exist. -rm -f src/chrome/content/rules/default.rulesets src/defaults/rulesets.sqlite - -# Only generate the ruleset database if any rulesets have changed. Tried -# implementing this with make, but make is very slow with 15k+ input files. -needs_update() { - find src/chrome/content/rules/ -newer $RULESETS_JSON |\ - grep -q . -} -if [ ! -f "$RULESETS_JSON" ] || needs_update ; then - echo "Generating ruleset DB" - python2.7 ./utils/make-json.py && bash utils/validate.sh && cp pkg/rulesets.json src/chrome/content/rulesets.json -fi - -sed -e "s/VERSION/$VERSION/g" chromium/updates-master.xml > chromium/updates.xml - -mkdir -p pkg/crx/rules -cd pkg/crx -rsync -aL ../../chromium/ ./ -# Turn the Firefox translations into the appropriate Chrome format: -rm -rf _locales/ -mkdir _locales/ -python2.7 ../../utils/chromium-translations.py ../../translations/ _locales/ -python2.7 ../../utils/chromium-translations.py ../../src/chrome/locale/ _locales/ -do_not_ship="*.py *.xml icon.jpg" -rm -f $do_not_ship -cd ../.. - -. ./utils/merge-rulesets.sh || exit 1 - -cp src/$RULESETS pkg/crx/rules/default.rulesets - -sed -i -e "s/VERSION/$VERSION/g" pkg/crx/manifest.json -#sed -i -e "s/VERSION/$VERSION/g" pkg/crx/updates.xml -#sed -e "s/VERSION/$VERSION/g" pkg/updates-master.xml > pkg/crx/updates.xml - -if [ -n "$BRANCH" ] ; then - crx="pkg/https-everywhere-$VERSION.crx" - key=../dummy-chromium.pem -else - crx="pkg/https-everywhere-$VERSION~pre.crx" - key=dummy-chromium.pem -fi -if ! [ -f "$key" ] ; then - echo "Making a dummy signing key for local build purposes" - openssl genrsa 2048 > "$key" -fi - -## Based on https://code.google.com/chrome/extensions/crx.html - -dir=pkg/crx -name=pkg/crx -pub="$name.pub" -sig="$name.sig" -zip="$name.zip" -trap 'rm -f "$pub" "$sig" "$zip"' EXIT - -# zip up the crx dir -cwd=$(pwd -P) -(cd "$dir" && ../../utils/create_xpi.py -n "$cwd/$zip" -x "../../.build_exclusions" .) -echo >&2 "Unsigned package has sha1sum: $(openssl dgst -sha1 "$cwd/$zip" | awk '{print $2}')" - -# signature -openssl sha1 -sha1 -binary -sign "$key" < "$zip" > "$sig" - -# public key -openssl rsa -pubout -outform DER < "$key" > "$pub" 2>/dev/null - -byte_swap () { - # Take "abcdefgh" and return it as "ghefcdab" - echo "${1:6:2}${1:4:2}${1:2:2}${1:0:2}" -} - -crmagic_hex="4372 3234" # Cr24 -version_hex="0200 0000" # 2 -pub_len_hex=$(byte_swap $(printf '%08x\n' $(ls -l "$pub" | awk '{print $5}'))) -sig_len_hex=$(byte_swap $(printf '%08x\n' $(ls -l "$sig" | awk '{print $5}'))) - -# Case-insensitive matching is a GNU extension unavailable when using BSD sed. -if [[ "$(sed --version 2>&1)" =~ "GNU" ]]; then - sed="sed" -elif [[ "$(gsed --version 2>&1)" =~ "GNU" ]]; then - sed="gsed" -fi - -( - echo "$crmagic_hex $version_hex $pub_len_hex $sig_len_hex" | $sed -e 's/\s//g' -e 's/\([0-9A-F]\{2\}\)/\\\\\\x\1/gI' | xargs printf - cat "$pub" "$sig" "$zip" -) > "$crx" -#rm -rf pkg/crx - -#python2.7 githubhelper.py $VERSION - -#git add chromium/updates.xml -#git commit -m "release $VERSION" -#git tag -s chrome-$VERSION -m "release $VERSION" -#git push -#git push --tags - -echo >&2 "Total included rules: `find src/chrome/content/rules -name "*.xml" | wc -l`" -echo >&2 "Rules disabled by default: `find src/chrome/content/rules -name "*.xml" | xargs grep -F default_off | wc -l`" -echo >&2 "Created $crx" -if [ -n "$BRANCH" ]; then - cd .. - cp $SUBDIR/$crx pkg - rm -rf $SUBDIR -fi diff --git a/makexpi.sh b/makexpi.sh deleted file mode 100755 index 778826222e24..000000000000 --- a/makexpi.sh +++ /dev/null @@ -1,160 +0,0 @@ -#!/bin/bash -set -o errexit -APP_NAME=https-everywhere - -# builds a .xpi from the git repository, placing the .xpi in the root -# of the repository. -# -# invoke with no arguments to build from the current src directory. -# -# ./makexpi.sh -# -# OR, invoke with a tag name to build a specific branch or tag. -# -# e.g.: -# -# ./makexpi.sh 0.2.3.development.2 - -cd "`dirname $0`" -RULESETS_JSON=pkg/rulesets.json -ANDROID_APP_ID=org.mozilla.firefox -VERSION=`echo $1 | cut -d "-" -f 2` - -[ -d pkg ] || mkdir pkg - -# If the command line argument is a tag name, check that out and build it -if [ -n "$1" ] && [ "$2" != "--no-recurse" ] ; then - BRANCH=`git branch | head -n 1 | cut -d \ -f 2-` - SUBDIR=checkout - [ -d $SUBDIR ] || mkdir $SUBDIR - cp -r -f -a .git $SUBDIR - cd $SUBDIR - git reset --hard "$1" - # When a file is renamed, the old copy can linger in the checkout directory. - # Ensure a clean build. - git clean -fdx - - git submodule update --recursive -f - # Use the version of the build script that was current when that - # tag/release/branch was made. - ./makexpi.sh $1 --no-recurse || exit 1 - - # The fact that the above works even when the thing you are building predates - # support for --no-recurse in this script is (1) non-intuitive; (2) crazy; and (3) - # involves two pristine checkouts of $1 within each other - - # Now escape from the horrible mess we've made - cd .. - XPI_NAME="$APP_NAME-$VERSION" - cp $SUBDIR/pkg/$XPI_NAME-eff.xpi pkg/ - if ! cp $SUBDIR/pkg/$XPI_NAME-amo.xpi pkg/ 2> /dev/null ; then - echo Old version does not support AMO - fi - rm -rf $SUBDIR - exit 0 -fi - -# Clean up obsolete ruleset databases, just in case they still exist. -rm -f src/chrome/content/rules/default.rulesets src/defaults/rulesets.sqlite - -# Only generate the ruleset database if any rulesets have changed. Tried -# implementing this with make, but make is very slow with 15k+ input files. -needs_update() { - find src/chrome/content/rules/ -newer $RULESETS_JSON |\ - grep -q . -} -if [ ! -f "$RULESETS_JSON" ] || needs_update ; then - # This is an optimization to get the OS reading the rulesets into RAM ASAP; - # it's useful on machines with slow disk seek times; doing several of these - # at once allows the IO subsystem to seek more efficiently. - for firstchar in `echo {a..z} {A..Z} {0..9}` ; do - # Those cover everything but it wouldn't matter if they didn't - nohup cat src/chrome/content/rules/"$firstchar"*.xml >/dev/null 2>/dev/null & - done - echo "Generating ruleset DB" - python2.7 ./utils/make-json.py -fi - -# =============== BEGIN VALIDATION ================ -# Unless we're in a hurry, validate the ruleset library & locales - -die() { - echo >&2 "ERROR:" "$@" - exit 1 -} - -bash utils/validate.sh - -# The name/version of the XPI we're building comes from src/install.rdf -XPI_NAME="pkg/$APP_NAME-`grep em:version src/install.rdf | sed -e 's/[<>]/ /g' | cut -f3`" -if [ "$1" ]; then - XPI_NAME="$XPI_NAME" -else - # During development, generate packages named with the short hash of HEAD. - XPI_NAME="$XPI_NAME~`git rev-parse --short HEAD`" - if ! git diff-index --quiet HEAD; then - XPI_NAME="$XPI_NAME-dirty" - fi -fi - -# Prepare packages suitable for uploading to EFF and AMO, respectively. -[ -d pkg ] || mkdir pkg -rsync -aL --delete --delete-excluded --exclude /chrome/content/rules src/ pkg/xpi-eff - -# START: The next lines are for embedded WebExtensions, and can be deleted after the full transition to WebExtensions -[ -d pkg/xpi-eff/webextension ] || mkdir pkg/xpi-eff/webextension -rsync -aL --delete chromium/ pkg/xpi-eff/webextension/ - -mkdir pkg/xpi-eff/webextension/_locales/ -python2.7 utils/chromium-translations.py translations/ pkg/xpi-eff/webextension/_locales/ -python2.7 utils/chromium-translations.py src/chrome/locale/ pkg/xpi-eff/webextension/_locales/ - -cd pkg/xpi-eff/webextension -do_not_ship="*.py *.xml icon.jpg" -rm -f $do_not_ship -cd ../../.. - -rm -rf pkg/xpi-eff/chrome/content/rulesets.json -rm -rf pkg/xpi-eff/chrome/locale - -mkdir pkg/xpi-eff/webextension/rules/ -. ./utils/merge-rulesets.sh || exit 1 - -cp src/$RULESETS pkg/xpi-eff/webextension/rules/default.rulesets -# END - -rsync -a --delete pkg/xpi-eff/ pkg/xpi-amo -# The AMO version of the package cannot contain the updateKey or updateURL tags. -# Also, it has a different id than the eff-hosted version, because Firefox now -# requires us to upload the eff-hosted version to an unlisted extension on AMO -# in order to receive a signature indicating that it is not malware. -# https://github.com/efforg/https-everywhere/issues/2051 -sed -i.bak -e '/updateKey/d' -e '/updateURL/d' \ - -e 's,https-everywhere-eff@eff.org,https-everywhere@eff.org,' \ - pkg/xpi-amo/install.rdf -rm pkg/xpi-amo/install.rdf.bak - -# Used for figuring out which branch to pull from when viewing source for rules -GIT_OBJECT_FILE=".git/refs/heads/master" -export GIT_COMMIT_ID="HEAD" -if [ -e "$GIT_OBJECT_FILE" ]; then - export GIT_COMMIT_ID=$(cat "$GIT_OBJECT_FILE") -fi - -# Build the XPI! -rm -f "${XPI_NAME}.xpi" -rm -f "${XPI_NAME}-eff.xpi" -rm -f "${XPI_NAME}-amo.xpi" -python2.7 utils/create_xpi.py -n "${XPI_NAME}-eff.xpi" -x ".build_exclusions" "pkg/xpi-eff" -python2.7 utils/create_xpi.py -n "${XPI_NAME}-amo.xpi" -x ".build_exclusions" "pkg/xpi-amo" - -echo >&2 "Total included rules: `find src/chrome/content/rules -name "*.xml" | wc -l`" -echo >&2 "Rules disabled by default: `find src/chrome/content/rules -name "*.xml" | xargs grep -F default_off | wc -l`" -echo >&2 "Created ${XPI_NAME}-eff.xpi and ${XPI_NAME}-amo.xpi" - -bash utils/android-push.sh "$XPI_NAME-eff.xpi" - -if [ -n "$BRANCH" ]; then - cp $SUBDIR/${XPI_NAME}-eff.xpi $SUBDIR/${XPI_NAME}-amo.xpi pkg - rm -rf $SUBDIR -fi diff --git a/requirements.txt b/requirements.txt index 03aa65f5a7c0..6f97e1d4cd67 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1 @@ lxml>=3.3.3 -pycurl -regex -bsdiff4 -python-Levenshtein -selenium diff --git a/rewriter/package.json b/rewriter/package.json deleted file mode 100644 index 154cf45a3426..000000000000 --- a/rewriter/package.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "name": "https-everywhere-rewriter", - "version": "1.0.0", - "dependencies": { - "event-stream": "3.0.20", - "readdirp": "0.3.2", - "urijs": "^1.18.1", - "xmldom": "0.1.17" - } -} diff --git a/rewriter/rewriter.js b/rewriter/rewriter.js deleted file mode 100644 index 180468c227eb..000000000000 --- a/rewriter/rewriter.js +++ /dev/null @@ -1,126 +0,0 @@ -// HTTPS Rewriter. -// -// Uses the rulesets from HTTPS to recursively rewrite URL references in a -// given directory to HTTPS. Uses protocol-relative URLs wherever possible. -// Makes a copy of each file at filename.bak. -// -// Usage: -// cd https-everywhere -// ./makecrx.sh # to build default.rulesets -// cd rewriter -// (install node and npm) -// npm install -// node rewriter.js ~/path/to/my/webapp -// cd ~/path/to/my/webapp -// git diff - -var path = require("path"), - fs = require("fs"), - DOMParser = require('xmldom').DOMParser, - readdirp = require('readdirp'), - es = require('event-stream'), - - rules = require("../chromium/rules"), - - URI = require("urijs"); - -var ruleSets = null; - -/** - * For a given directory, recursively edit all files in it that match a filename - * pattern representing source code. Replace URLs in those files with rewritten - * ones if possible. - */ -function processDir(dir) { - var stream = readdirp({ - root: dir, - fileFilter: ['*.html', '*.js', '*.rb', '*.erb', '*.mustache', - '*.scala', '*.c', '*.cc', '*.cpp', '*.cxx', - '*.java', '*.go', '*.php', '*.css', '*.pl', '*.py', - '*.rhtml', '*.sh', '*.yaml'] - }); - - stream - .on('warn', function (err) { - console.error('non-fatal error', err); - // Optionally call stream.destroy() here in order to abort and cause 'close' to be emitted - }) - .on('error', function (err) { console.error('fatal error', err); }) - .pipe(es.mapSync(function (entry) { - var filename = path.join(dir, entry.path); - console.log("Rewriting " + filename); - try { - processFile(filename); - } catch(e) { - console.log(filename, e); - } - })); -} - -/** - * Overwrite the default URI find_uri_expression with a modified one that - * mitigates a catastrophic backtracking issue common in CSS. - * The workaround was to insist that URLs start with http, since those are the - * only ones we want to rewrite anyhow. Note that this may still go exponential - * on certain inputs. http://www.regular-expressions.info/catastrophic.html - * Example string that blows up URI.withinString: - * image:url(http://img.youtube.com/vi/x7f - */ -URI.find_uri_expression = /\b((?:http:(?:\/{1,3}|[a-z0-9%])|www\d{0,3}[.]|[a-z0-9.\-]+[.][a-z]{2,4}\/)(?:[^\s()<>]+)+(?:\(([^\s()<>]+|(\([^\s()<>]+\)))*\)|[^\s`!()\[\]{};:'".,<>?«»“”‘’]))/ig; - -function processFile(filename) { - var contents = fs.readFileSync(filename, 'utf8'); - var rewrittenFile = URI.withinString(contents, function(url) { - console.log("Found ", url); - var uri = new URI(url); - if (uri.protocol() != 'http') return url; - - uri.normalize(); - var rewritten = ruleSets.rewriteURI(uri.toString(), uri.host()); - if (rewritten) { - return rewritten; - } else { - return url; - } - }); - - fs.writeFileSync(filename + ".new", rewrittenFile); - fs.renameSync(filename, filename + ".bak"); - fs.renameSync(filename + ".new", filename); -} - -/** - * Load all rulesets for rewriting. - */ -function loadRuleSets() { - console.log("Loading rules..."); - var fileContents = fs.readFileSync(path.join(__dirname, '../pkg/crx/rules/default.rulesets'), 'utf8'); - var xml = new DOMParser().parseFromString(fileContents, 'text/xml'); - ruleSets = new rules.RuleSets({}); - ruleSets.addFromXml(xml); -} - -function usage() { - console.log("Usage: \n nodejs rewriter.js /path/to/my/webapp \n"); - process.exit(1); -} - -if (process.argv.length <= 2) { - usage(); -} - -for (var i = 2; i < process.argv.length; i++) { - var rewritePath = process.argv[i]; - if (rewritePath.indexOf('-') == 0) { - usage(); - } - if (!fs.existsSync(rewritePath)) { - console.log("Path doesn't exist: " + rewritePath); - process.exit(1); - } -} - -loadRuleSets(); -for (var i = 2; i < process.argv.length; i++) { - processDir(process.argv[i]); -} diff --git a/ruleset-testing.md b/ruleset-testing.md index 8a8c0635dbcc..9d3a6fb82304 100644 --- a/ruleset-testing.md +++ b/ruleset-testing.md @@ -5,29 +5,26 @@ still work. In order for that tester to work we need input URLs. We have additional testing in place to ensure that all rulesets have a sufficient number of test URLs to test them thoroughly. -Goal: 100% coverage of all targets and all branches of all regexes in each ruleset. +Goal: 100% coverage of all targets and all branches of all regexes in each +ruleset. Each ruleset has a number of "implicit" test URLs based on the target hosts. For -each target host e.g. example.com, there is an implicit test URL of -http://example.com/. Exception: target hosts that contain a wildcard ("*") do -not create an implicit test URL. - -Additional test URLs can be added with the new <test> tag in the XML, e.g. -<test url="http://example.com/complex-page">. - -Test URLs will be matched against the regexes in each <rule> and <exclusion>. A -test URL can only match against one <rule> and one <exclusion>. Once all the -test URLs have been matched up, we count the number of test URLs matching each -<rule> and each <exclusion>, and make sure the count meets the minimum number. -The minimum number of test URLs for each <rule> or <exclusion> is one plus the -number of '*', '+', '?', or '|' characters in the regex. Since each of these -characters increases the complexity of the regex (usually increasing the variety -of URLs it can match), we require correspondingly more test URLs to ensure good -coverage. - -TODO: We'd like to also require that there be at least three test URLs for every -target host with a left-side wildcard, and at least ten test URLs for each -target host with a right-side wildcard. But this is not yet implemented. +each target host e.g. `example.com`, there is an implicit test URL of +`http://example.com/`. Exception: target hosts that contain a wildcard ("`*`") +do not create an implicit test URL. + +Additional test URLs can be added with the new `` tag in the XML, e.g. +``. + +Test URLs will be matched against the regexes in each `` and +``. A test URL can only match against one `` and one +``. Once all the test URLs have been matched up, we count the number +of test URLs matching each `` and each ``, and make sure the +count meets the minimum number. The minimum number of test URLs for each +`` or `` is one plus the number of '`*`', '`+`', '`?`', or +'`|`' characters in the regex. Since each of these characters increases the +complexity of the regex (usually increasing the variety of URLs it can match), +we require correspondingly more test URLs to ensure good coverage. # Example: ```xml @@ -43,10 +40,10 @@ target host with a right-side wildcard. But this is not yet implemented. ``` This ruleset has one implicit test URL from a target host -("http://example.com/"). The other target host has a wildcard, so creates no -implicit test URL. There's a single rule. That rule contains a '+' and a '?', so -it requires a total of three matching test URLs. We add the necessary test URLs -using explicit <test> tags. +("`http://example.com/`"). The other target host has a wildcard, so creates no +implicit test URL. There's a single rule. That rule contains a '`+`' and a +'`?`', so it requires a total of three matching test URLs. We add the necessary +test URLs using explicit `` tags. # Testing and Continuous Build @@ -56,11 +53,10 @@ Submitting changes to any ruleset that does not meet the coverage requirements will break the build. This means that even fixes of existing rules may require additional work to bring them up to snuff. -To run the tests locally, you'll need the https-everywhere-checker, which is now -a submodule of https-everywhere. To set it up, run: +To run the tests locally, first install the development dependencies: ./install-dev-dependencies.sh To test a specific ruleset: - ./fetch-test.sh rules/Example.xml + test/manual.sh rules/Example.xml diff --git a/src/Changelog b/src/Changelog index d80a0b473de1..db2f228f30d0 100644 --- a/src/Changelog +++ b/src/Changelog @@ -1,3 +1,233 @@ +2022.5.24 +* Improved EASE mode prompt +* Add background tab on install or update to educate users on HTTPS only mode features in their browsers +* Updated dependencies + +2021.7.13 +* Amend Incognito Key for Chrome and Firefox #20092 +* Fix unexpected arithmetic operations on strings #20043 +* Remove Top Alexa Labeller #20083 +* Update deprecated log function #20101 +* Patch Chrome Test Failure #20102 + +2021.4.15 +* Add DuckDuckGo Smarter Encryption update channel +* Bloom filter for rulesets +* Firefox Fenix option page updates for Android users +* Move to Python 3 from Python 3.6 +* Fix undefined type access +* Fix empty default types + +2021.1.27 +* EASE Mode UI Changes +* NPM Dependency updates +* Geckodriver pull update +* Chromedriver pull update +* Integrate CSS Grid for Options Page and EASE UI +* Put Options in new tab + +2020.11.17 +* Copy URL in EASE interstitial +* Dependapot NPM updates +* CRX distribution scripts for transparency for Edge and Opera +* Port inclusion on allowlist for EASE +* UI change to reflect a global setting + +2020.8.13 +* Fix port based whitelsiting issue #19291 +* Update documentation +* Update dependencies (NPM and Chromedriver) +* Minor code fixes in JS + +2020.5.19 +* Reverting Onboarding page for the time being +* Patch for whitelisting rules and EASE mode issue +* Double rule load patch in update channels +* Fix minor JS and UX issues + +2020.3.16 +* EASE HTTP Once CSS fix +* Allow users to whitelist hosts from the option page +* EASE mode fixes for locale issue +* Fetch Test Prep, TLS 1.2 update +* Fetch Test Prep, Updated check rules script +* Fix options page appearance on Firefox when dark mode is on +* Dark mode adjustments + +2019.11.7 +* EASE HTTP Once Exception +* Add Private network IPs to exclusion for HTTPSE +* Revert icons back to previous state +* Optimizations to url handling and hsts prune + +2019.6.27 + * Making stylistic changes for mobile friendliness in Fennec + * Inclusion and use of the lib-wasm submodule, lowering memory overhead + * Refactor secure cookie logic + * Code cleanup + * Bundled ruleset updates + +2019.6.4 + * Fix bug where link HTML is replaced in cancel page, instead of text + * Bundled ruleset updates + +2019.5.13 + * UI nd functionality patches for stable rules + * Translations string fixes + * Minor npm updates for HSTS pruning + +2019.5.6 + * UI tweaks for spacing and font sizes + * Fix reload bug + * Patch for offline release channel + +2019.5.2 + * UI changes in extension menu (#17854) + * EASE interstitial UI tweaks (#17347) + * Remove support for wildcard in the middle (#12319) + * Update default timestamp for deterministic builds (#17623) + * Refactor and enhance trivialize-cookie-rules.js (#17438) + * Run HSTS-prune and fix impacted rulesets (#17338) + * Update HSTS preload max age (#17564) + * Fix DeprecationWarning in HTTPS Everywhere Checker (#17596 ) + * Fix Chromium local store exception (#17557) + * Remove middle wildcard support in rules.js (#17715) + + +2019.1.31 + * Change "Block all unencrypted requests" language to "Encrypt all sites eligible" + * EASE mode patches for interstitial page and reload to trigger for EASE mode + * ES Lint clean up + * Disable test for Chrome (will work in patch while disabled) + * Deprecate I.P.s in rulesets (Special case for DNS I.P.s) + +2019.1.7 + * Change "Block all unencrypted requests" language to "Encrypt all sites eligible" + * Amend check_rules.py fetch test to disable rules only if all rules are problematic, + and comment rules out if other rules are functional in the set + * HSTS Prune and updates + * Bundled ruleset updates + +2018.10.31 + * Add additional error code for 'Block all unencrypted requests' interstitial + page. + * Fix race condition when adding update channel + * Add UX to remove user rules in options page + * Bundled ruleset updates + +2018.9.19 + * Ensure the 'Block all unencrypted requests' interstitial page catches more + HTTPS misconfigurations (#16418) + * Allow users to disable HTTPS Everywhere on specific sites. Add additional + UX controls in the options page for this. (#10041) + * Adding 'scope' to update channels, which defines regex limiting the URLs + an update channel is allowed to operate on (#16430) + * Bundled ruleset updates + +2018.8.22 + * Adding a warning to pages which 'Block all unencrypted requests' is unable + to upgrade + * Adding a UX that enables users to add, delete, and edit update channels + * Reduces memory overhead by optimizing exclusion regex + * Block insecure FTP connections when 'Block all unencrypted requests' + is checked. This triggers a permissions dialogue in Firefox 57+, see + https://github.com/EFForg/https-everywhere/issues/16377#issuecomment-415492846 + for more info. + * Bundled ruleset updates + +2018.6.21 + * Fix: URLs with a hostname of '.' cause endless loop to be triggered + * Bundled ruleset updates + +2018.6.13 + * Improve popup page performance and slightly reduce memory usage + * Measure and slightly improve memory usage for rulesets + * Fix CORS issues in Firefox. This bug was previously breaking embedded + videos or css on many websites. Chrome browser was not affected by this + bug + * Add "Reset to Defaults" option to reset the default ruleset states + * Add "Show Devtools tab" option to hide CDT tab + * Bundled ruleset updates + +2018.4.11 + * Reduce out-of-band ruleset update TTL from 48 to 24 hours + * Bundled ruleset updates + +2018.4.3 + * Applies the out-of-band ruleset updates, sourced from + https://www.https-rulesets.org/. Clients perform a periodic check for new + rulesets to download, which are verified with the Web Crypto API using a + pinned key, then applied. + * Ruleset updates + +2018.3.13 + * The unused `cacert` platform was removed from rulesets for simplicity + * Organizing the add-on files into a clean directory structure + * Ruleset updates + +2018.2.26 + * Many/most mixed content blocking issues are solved when enabling the + "Block all unencrypted requests" option thanks to the injection of the + upgrade-insecure-requests header. This means this option can be more + easily used for daily browsing with less site breakage. + * Rulesets are alphabetically sorted in HTTPS Everywhere popup, with the + first-party site (if covered) at the top. + * Fixes an obscure Android bug where rulesets don't appear in popup for the + first window that is opened after restart. + * Many ruleset bugs have been solved (some dating 3 years back!) + +2018.1.29 + * Ruleset updates + +2018.1.11 + * Ruleset updates + +2017.12.6 + * Remove unnecessary files from release + * Ruleset updates + +2017.11.21 + * Ruleset updates + +2017.10.30 + * Introduce migrations, migrate settings from localStorage to storage api + * Firefox: full WebExtensions version + +2017.10.24 + * Significant code refactor + * Fixes for Fennec + * Ruleset updates + +2017.10.4 + * Markup and small UI changes + * Modularize JS, clean up control flow + * Ruleset updates + +2017.9.12 + * Decrease memory footprint by using JSON in default.rulesets + * Markup changes + * Ruleset updates + +2017.8.31 + * Add counter badge to indicate how many rulesets are active + * Use Map instead of Object for targets (improves lookups) + * Fix race condition with persistent storage + * Ruleset updates + +2017.8.19 + * Fix wildcard matching + * Remove usage of HTML string assignment + * Ruleset updates + +2017.8.17 + * Firefox: Fix localStorage reference for users with cookies disabled + +2017.8.15 + * Incorporating numerous fixes for WebExtensions to work within Firefox + * Firefox: Creating Embedded WebExtension wrapper to migrate legacy settings + * Removing legacy XPCOM codebase, unifying Firefox and Chrome codebase + * Ruleset updates + Firefox 5.2.21 / Chrome 2017.7.18 * Ruleset updates @@ -393,10 +623,10 @@ chrome-2014.1.3 * Pseudorelease, just for Tor Browser Bundle usage * Tiny ruleset tweaks (XKCD is back)! * Create an about:config setting that overrules mixedcontent ruleset disablement - + 3.4.3 (2013-12-03) * Fixes: Cloudfront / Amazon MP3 player, Cornell/Arxiv, FlickR, - AmazonAWS/spiegel.tv + AmazonAWS/spiegel.tv * Disable broken: Barns and Noble, Behance, Boards.ie, Elsevier, Kohls, OpenDNS, Spin.de, Svenskakyrkan * Deprecate the ContentPolicy API, fixing a crash bug @@ -469,10 +699,10 @@ chrome-2014.1.3 the stable branch, and changed many stable rules chrome-2013.8.17 - * Urgent bugfix release for + * Urgent bugfix release for https://trac.torproject.org/projects/tor/ticket/9507 - release from the stable / 3.0 branch, not master - - don't ship the development ruleset library, it's not ready for prime + - don't ship the development ruleset library, it's not ready for prime time yet - avoid performance hits from repeatedly re-testing rulesets - other possible weirdness @@ -542,7 +772,7 @@ chrome-2013-8.16 * Includes all fixes from 3.3 3.3 - * This major release fixed the following mixed content blocker (MCB) + * This major release fixed the following mixed content blocker (MCB) related bugs in time for Firefox 23: https://trac.torproject.org/projects/tor/ticket/9196 https://trac.torproject.org/projects/tor/ticket/8774 @@ -592,14 +822,14 @@ chrome-2012.6.4 * Fix broken ruleset dialog in Firefox 22+ https://trac.torproject.org/projects/tor/ticket/8997 * The toolbar button changes to indicate active rulesets: - https://trac.torproject.org/projects/tor/ticket/4886 + https://trac.torproject.org/projects/tor/ticket/4886 * Ship 31 new rulesets * New translations: Japanese and Sinhala * Updated translations: Hungarian, Lithuanian, Slovenian * Ruleset fixes from 3.2.2: https://www.eff.org/r.5bSj * Observatory cert whitelist update - + 3.2.2 (2013-05-22) * Quick turn-around release to unbreak support.apple.com * Fixes for a number of other ruleset bugs: @@ -683,7 +913,7 @@ chrome-2012.3.7 https://trac.torproject.org/projects/tor/ticket/8199 https://trac.torproject.org/projects/tor/ticket/8198 * Disable broken: - American Public Media (for real this time), Asymmetric Publications, + American Public Media (for real this time), Asymmetric Publications, Salsa Labs, Vimeo https://trac.torproject.org/projects/tor/ticket/7650 https://trac.torproject.org/projects/tor/ticket/8280 @@ -699,7 +929,7 @@ chrome-2013.1.18 * Fix the implementation of safeToSecureCookie - Get https://trac.torproject.org/projects/tor/ticket/7491 right(er) - Fix https://trac.torproject.org/projects/tor/ticket/7855 - * Fix a ruleset processing bug, which would prevent + * Fix a ruleset processing bug, which would prevent from matching x.y.z.com * Ship all ruleset fixes from 3.1.2 and 3.1.3 - Except Etsy, where we're trying to fix rather than disable the ruleset @@ -710,7 +940,7 @@ chrome-2013.1.18 3.1.3 (2013-1-18) * Internet Freedom Day stable bugfix release - * Fixes: CloudFront/Spotify, AmazonAWS (Amazon MP3s and product images), Libav, + * Fixes: CloudFront/Spotify, AmazonAWS (Amazon MP3s and product images), Libav, Google Maps, UserEcho https://trac.torproject.org/projects/tor/ticket/7931 https://trac.torproject.org/projects/tor/ticket/7888 @@ -752,7 +982,7 @@ chrome-2012.12.17 * Additionally disable: Automattic 4.0development.4 (2012-12-17) - * Fix nasty bug that prevented Firefox downloads from Mozilla's CDN + * Fix nasty bug that prevented Firefox downloads from Mozilla's CDN https://trac.torproject.org/projects/tor/ticket/7717 * Fix download from qt-project.org * Ship 72 new rulesets @@ -810,8 +1040,8 @@ chrome-2012.10.31 * Work around a nasty bug that was affecting some high-volume Live Youtube streams (but not other live YouTube streams) https://trac.torproject.org/projects/tor/ticket/7127 - * Other Fixes: - AdaCore, Akamai/MTV3 Katsomo, Akamai/HP, Atlassian, Bahn.de, MySQL, NPR, PBS, + * Other Fixes: + AdaCore, Akamai/MTV3 Katsomo, Akamai/HP, Atlassian, Bahn.de, MySQL, NPR, PBS, Phronoix Media/Openbenchmarking, SSRN, Spoki https://trac.torproject.org/projects/tor/ticket/7219 https://trac.torproject.org/projects/tor/ticket/7180 @@ -827,12 +1057,12 @@ chrome-2012.10.31 https://trac.torproject.org/projects/tor/ticket/7114 https://trac.torproject.org/projects/tor/ticket/7138 https://trac.torproject.org/projects/tor/ticket/7107 - + 3.0.3 (2012-10-29) * Work around a nasty bug that was affecting some high-volume Live Youtube streams (but not other live YouTube streams) https://trac.torproject.org/projects/tor/ticket/7127 - * Other Fixes: + * Other Fixes: AdaCore, Akamai/MTV3 Katsomo, Akamai/HP, Atlassian, Bahn.de, DemocracyNow, MySQL, NuGet, PBS, Phronoix Media/Openbenchmarking, SSRN, Spoki https://trac.torproject.org/projects/tor/ticket/7219 @@ -873,7 +1103,7 @@ chrome-2012.10.31 chrome-2012.10.18 * The "even more perfect" chromium alpha - * Fixes from the last two Firefox releases: + * Fixes from the last two Firefox releases: Microsoft (Bing login button), ZeniMax, Ubuntuone, TrueCrypt, Springer, Optical Society, IMDB, Facebook, EzineArticles, Broadband Reports, Apache, Akamai (exclude Zynga content to prevent breakage of some Zynga games), @@ -897,8 +1127,8 @@ chrome-2012.10.18 hundreds of others 3.0.1 and 4.0development.1: - * Fixes: adition.com, Akamai/SVTplay.se, Bahn.de, European Southern Observatory, - IEEE, Indeed, Java, Librivox, Pinterest, New York Times, Springer, Vimeo, + * Fixes: adition.com, Akamai/SVTplay.se, Bahn.de, European Southern Observatory, + IEEE, Indeed, Java, Librivox, Pinterest, New York Times, Springer, Vimeo, Shannon Health, O'Reilly Media https://trac.torproject.org/projects/tor/ticket/7080 https://mail1.eff.org/pipermail/https-everywhere/2012-October/001583.html @@ -923,7 +1153,7 @@ chrome-2012.10.9 3.0 (2012-10-04) * Since version 2.x: * 1,455 new active rulesets - * UI improvements: + * UI improvements: - right-click to view ruleset source in the config window - translate some untranslated menus - better icons in a few places (breaking/redirecting rules, @@ -937,7 +1167,7 @@ chrome-2012.10.9 * Relative to 3.0development.8: * Only promote the Decentralized SSL Observatory to 5% of non-Tor users * Update the SSL Observatory whitelist of common cert chains - * Fixes, mostly in the CDN/media playback department: + * Fixes, mostly in the CDN/media playback department: Akamai/CNN, GO.com/ABC, AWS/Amazon Zeitgeist MP3 player, AWS/Spiegel.tv, Technology Review, Cloudfront/Tunein, Akamai/Discovery Channel, Beyond Security, OCaml, Gentoo, @@ -973,14 +1203,14 @@ chrome-2012.9.21 https://trac.torproject.org/projects/tor/ticket/6848 * Replace jsURI with URI.js, fixing a number of bugs in the Chrome port - https://trac.torproject.org/projects/tor/ticket/6197 - - Also breakage on other random pages like + - Also breakage on other random pages like http://venturebeat.com/2012/09/13/how-do-not-track-could-destroy-the-internet-as-you-know-it/ * Fixes: AOL, Antispam.de, BBC, BitTorrent, Facebook, Gearhog, LinkPlus Catalog, Microsoft, Mother Jones, Mozilla, Office.co.uk, OpenDNS, PassThePopcorn, Piriform, WhatCD, uTorrent * Disable broken: Paper.li, SVT.se, Soton.ac.uk * Reenable: Referly - + chrome-2012.9.10 * The "just add eleven" chromium alpha * Time to test the updating mechanism from direct -> Chrome Web Store @@ -1068,7 +1298,7 @@ chrome-2012.8.15 Jottit * Disable broken: Project Syndicate, Alton Towers, Network for Good https://trac.torproject.org/projects/tor/ticket/6222 - * The Decentralized SSL Observatory client now saves up some certificates if + * The Decentralized SSL Observatory client now saves up some certificates if the network blocks or MITMs attempts to submit them. chrome-2012.6.21 @@ -1084,8 +1314,8 @@ chrome-2012.6.21 https://trac.torproject.org/projects/tor/ticket/5893 * Ship 217 new rulesets (frozen; new rulesets now have to wait until 4.0 development) - * Fixes: numerous, including: Boxee, CiteULike, MozillaMessaging, - Yandex, Demonoid, Pirate Party, Gentoo, NYTimes, Microsoft, + * Fixes: numerous, including: Boxee, CiteULike, MozillaMessaging, + Yandex, Demonoid, Pirate Party, Gentoo, NYTimes, Microsoft, Wikipedia, Lenovo, MyWOT https://trac.torproject.org/projects/tor/ticket/5912 https://trac.torproject.org/projects/tor/ticket/6091 @@ -1096,12 +1326,12 @@ chrome-2012.6.21 https://mail1.eff.org/pipermail/https-everywhere-rules/2012-June/001190.html https://mail1.eff.org/pipermail/https-everywhere-rules/2012-May/001186.html https://mail1.eff.org/pipermail/https-everywhere/2012-May/001433.html - * Disable broken: MarketWatch, Disqus, Magento, Lavasoft, + * Disable broken: MarketWatch, Disqus, Magento, Lavasoft, Typepad/Say Media, Thomas Cook, Thomson Reuters clients, Science Daily, BinRev, Ikea, Interpol https://trac.torproject.org/projects/tor/ticket/5899 https://trac.torproject.org/projects/tor/ticket/5496 - + chrome-2012.6.18 * The Divisible By Six Chromium Beta Release * Ship 444 new Rulesets @@ -1140,11 +1370,11 @@ chrome-2012.5.1 Everywhere protection for cookies on some domains. https://trac.torproject.org/projects/tor/ticket/5676 https://trac.torproject.org/projects/tor/ticket/2199 - * More efficient ruleset storage shrinks the .crx download by a factor of + * More efficient ruleset storage shrinks the .crx download by a factor of about 4 (thanks fauxfaux) https://trac.torproject.org/projects/tor/ticket/5275 * Disable buggy rulesets: IBM, Scribd, Wunderground, ReadWriteWeb, - Pastebin.ca + Pastebin.ca https://trac.torproject.org/projects/tor/ticket/5344 https://trac.torproject.org/projects/tor/ticket/5435 https://trac.torproject.org/projects/tor/ticket/5630 @@ -1158,7 +1388,7 @@ chrome-2012.5.1 3.0development.2 (2012-04-26) - * License change: the tree now includes some code from Convergence, which + * License change: the tree now includes some code from Convergence, which is GPL v3+. Other code remains licensable as GPLv2+ * Ship 696 new rulesets (!!!), thanks to a lot of amazing work by Negres * Fix a downgrade attack that might allow attackers to deny HTTPS @@ -1185,9 +1415,9 @@ chrome-2012.5.1 * Separate Observatory option to control self-signed cert submission * Numerous other ruleset enhancements, fixes, and probably exciting new bugs in Negres's ruleset changes - + 3.0development.1 (2012-03-14) - * By default, use https://google.co.cctld instead of + * By default, use https://google.co.cctld instead of encrypted.google.com https://trac.torproject.org/projects/tor/ticket/5152 * Add an optional ruleset to use https://www.google.com @@ -1207,7 +1437,7 @@ chrome-2012.3.14 * Add an optional ruleset to search on https://www.google.com instead of encrypted.google.com * Switch non-US google searches to country sites by default - * Better chrome context UI + * Better chrome context UI 2.2.3 (2012-09-25) * Workaround for breakage in Amazon Look Inside the Book (via Cloudfront) @@ -1216,7 +1446,7 @@ chrome-2012.3.14 * Other fixes: PassThePopcorn, WhatCD, Antispam.de, RFCeditor, Weatherspark / GoogleMaps * Disable broken: SVT.se - + 2.2.1 (2012-08-17) * Fix a configuration-parsing bug in 2.2 that would ignore default_off rules if this was a first install @@ -1252,7 +1482,7 @@ chrome-2012.3.14 2.0.5 (2012-05-16) * Rebuild 2.0.4 without a bug in the release scripts that prevented all the rulesets from being absent - + 2.0.4 (2012-05-16) * Fix for compatibility with some other Firefox extensions: https://trac.torproject.org/projects/tor/ticket/5682 @@ -1315,7 +1545,7 @@ chrome-2012.2.27 * Split Google Translate out of the Google APIs rule, and turn it off by default on Chrome only: Fixes https://trac.torproject.org/projects/tor/ticket/5196 - * Ship 19 new rulesets since last Chromium release + * Ship 19 new rulesets since last Chromium release chrome-2012.2.9 * make rulesets elements work in the Chrome version @@ -1351,9 +1581,9 @@ chrome-2012.02.06{,.01} * Ship 126 new rulesets * Fixes: Wikipedia, Identi.ca, Verizon, CCC.de, UserScripts, Yandex, Hidemyass, Mozilla, Pogo, Google, Google Images, Google Video, - The Pirate Bay, AK Vorrat, JBoss + The Pirate Bay, AK Vorrat, JBoss * Improvements: EFF, Flickr, RedHat, Diaspora, PrivatePaste, KDE, - Portugese Govt + Portugese Govt * Disable broken: NSF.gov, WHO.int, Economist * New experimental Yahoo! ruleset (off by default) * New translations: Spanish, Nederlands @@ -1368,8 +1598,8 @@ chrome-2012.02.06{,.01} * Fixes: Java.com, Yandex, Wordpress, Wikipedia, Bahn.de, UNSW, Apache, DuckDuckGo, Google Images * Improvements: Debian, Tumblr, Apple, Facebook, VeriSign, Google Services, - Flickr, Youtu.be - * Disable broken: Target, OpenUniversity, TV.com, Radio Shack, + Flickr, Youtu.be + * Disable broken: Target, OpenUniversity, TV.com, Radio Shack, Yahoo Mail :( :(, Google Cache coverage in Google Services :( :( :( @@ -1413,7 +1643,7 @@ chrome-2012.02.06{,.01} (currently opt-in, with a popup prompt if you have Tor Button installed) * Ship 164 new rulesets * Enable Google Maps by default - * Pending translations: Arabic, Dutch, German, Portugese, Latvian, Russian, + * Pending translations: Arabic, Dutch, German, Portugese, Latvian, Russian, Swedish * Fixes: OpenDNS, WordPress, Flickr * Expansions & Improvements: Google Services, Twitter, Gowalla, Apple, Bit.ly @@ -1466,9 +1696,9 @@ chrome-2012.02.06{,.01} 1.0.2 (2011-09-20) * Major improvements to the Wikipedia ruleset - * Disable broken/buggy rulesets: DeviantArt, eHow, About.me, Bandcamp, + * Disable broken/buggy rulesets: DeviantArt, eHow, About.me, Bandcamp, StudiVZ, Securityfocus, BankofAmerica :( :( :( - * Small fixes: OpenDNS, WordPress, links in the "About" page + * Small fixes: OpenDNS, WordPress, links in the "About" page * Declare incompatibility with Firefox 7 & 8 until Mozilla fixes this: https://bugzilla.mozilla.org/show_bug.cgi?id=677643 @@ -1512,7 +1742,7 @@ chrome-2012.02.06{,.01} https://trac.torproject.org/projects/tor/ticket/2199 * By default, move context menu from toolbar to addons bar * Ship 22 new rulesets - * Add support for Google Plus, Accounts and AdWdords + * Add support for Google Plus, Accounts and AdWdords * Improvements to Microsoft, Twitter and Gitorious 1.0.0development.1: (2011-06-27) @@ -1520,7 +1750,7 @@ chrome-2012.02.06{,.01} applicable to the current page (we can now stabilise the dev branch!) * Ship 42 new rulesets * Support for Google Image Search (except the very first landing page :/) - * Fixes: Netflix, Plone + * Fixes: Netflix, Plone * Improvements: Google APIs, Google Services, Mediawiki * Disable broken rules: OKCupid, Surveymonkey * Declare compatibility with recent Seamonkey releases @@ -1528,29 +1758,29 @@ chrome-2012.02.06{,.01} 0.9.9.development.6: * Optimistically declare compatibility with Firefoxes up to v 7.* * Ship 193 new rulesets - * Fixes & Improvements: Wikipedia, AmazonAWS, Google Images, Microsoft, - Mozilla, Netflix, Google User Content, Twitter, Gitorious, AdBlock Plus, + * Fixes & Improvements: Wikipedia, AmazonAWS, Google Images, Microsoft, + Mozilla, Netflix, Google User Content, Twitter, Gitorious, AdBlock Plus, Youtube, he.net, Bitcoin - * Remove broken rules: Match.com + * Remove broken rules: Match.com 0.9.9.development.5: * Compatible with Firefox 4.0.1+ * New ruleset management UI (thanks to katmagic and Stefan Tomanek) * Ship 136 new rulesets - * Fixes: reCAPTCHA, Google Images, Gentoo, Gitorious - * Improvements: Bit.ly, Yahoo, Nokia - * Disable: WashingtonPost :(, Doubleclick, OpenSSL.org (!) - + * Fixes: reCAPTCHA, Google Images, Gentoo, Gitorious + * Improvements: Bit.ly, Yahoo, Nokia + * Disable: WashingtonPost :(, Doubleclick, OpenSSL.org (!) + 0.9.9.development.4: * Ship 117 new rulesets - * Fixes: MySQL, GroupOn, country-specific Google news sites, + * Fixes: MySQL, GroupOn, country-specific Google news sites, * Improvements: mail.com, WordPress * Leave WashingtonPost ruleset on in the hope that it gets fixed soon :/ * Disable broken rules: HTC, I2P ... 0.9.9.development.3: - * In the settings dialogue, offer "Reset defaults" instead of "Enable all" + * In the settings dialogue, offer "Reset defaults" instead of "Enable all" * Merge fixes from NoScript that avoid some torbutton bugs * Ship 56 new rulesets * Numerous tweaks + fixes, including NYTimes and AddThis @@ -1558,10 +1788,10 @@ chrome-2012.02.06{,.01} 0.9.9.development.2: * Prevent the preferences window from swallowing the screen on OS X / Windows - * Stop the StartCom rule from breaking StartCom OCSP/CRLs (which can't be HTTPS) + * Stop the StartCom rule from breaking StartCom OCSP/CRLs (which can't be HTTPS) * Attempt to do the same for for CAcert * Fixes to: Reddit, Drupal.org - * Disable some problematic rulesets: Cisco, Opera + * Disable some problematic rulesets: Cisco, Opera * Enable: Reddit * Ship another 62 rulesets @@ -1609,7 +1839,7 @@ chrome-2012.02.06{,.01} * Support global installation for OS distributions (thanks dm0) 0.9.2: - * Fix a bug in our redirection loop detection that was causing trouble with + * Fix a bug in our redirection loop detection that was causing trouble with some parts of NYTimes, Facebook, and other sites (closes: https://trac.torproject.org/projects/tor/ticket/2217) @@ -1622,7 +1852,7 @@ chrome-2012.02.06{,.01} improvements! * Split the stricter parts of the Facebook rule into a "Facebook+" rule. It's what's required to protect Facebook from Firesheep and similar cookie - theft attacks, but it may break apps, because apps.facebook.com currently + theft attacks, but it may break apps, because apps.facebook.com currently has the wrong cert. * Allow rulesets to specify that the secure flag should be set on some cookies even if the site operator failed to do so @@ -1661,7 +1891,7 @@ chrome-2012.02.06{,.01} https://trac.torproject.org/projects/tor/ticket/1672 https://trac.torproject.org/projects/tor/ticket/1673 The patch breaks toolbar search suggestions. And who knows what else? - * Don't send some country homepages to https://www.google.com/webhp?hl= ; + * Don't send some country homepages to https://www.google.com/webhp?hl= ; use https://encrypted.google.com instead * Cleanup and refactor the URI replacement and rewriting code. Should hopefully fix https://trac.torproject.org/projects/tor/ticket/1649 diff --git a/src/META-INF/cose.manifest b/src/META-INF/cose.manifest new file mode 100644 index 000000000000..045ba86369fd --- /dev/null +++ b/src/META-INF/cose.manifest @@ -0,0 +1,732 @@ +Manifest-Version: 1.0 + +Name: manifest.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: X0hd0tplhCo2R8s3OE27fLAZFD8= +SHA256-Digest: iKk69TG3OJJNjjAJPTe72S+qXa4k/xL8yKmPzAGmaxg= + +Name: package.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: HQyF0Be9Z+C72YzyWk6LqTSCxkU= +SHA256-Digest: 1v7I/u/oNho1Z8rtRLepk7VY9i0r8EktoXSvvy92SsE= + +Name: _locales/ace/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: ofcr0jXThFpy+75hHp2/Q7a13Iw= +SHA256-Digest: fzhILeKwf6EXocFvocLJMDTVFY7948hKtI6L6UG8GFU= + +Name: _locales/ach/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: ofcr0jXThFpy+75hHp2/Q7a13Iw= +SHA256-Digest: fzhILeKwf6EXocFvocLJMDTVFY7948hKtI6L6UG8GFU= + +Name: _locales/af/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: iOMFMT97+EoNCW6DRomntg8GSHk= +SHA256-Digest: cw+OPqn11qIyL1P5cFnPmxrYTVKQ0oPX10+1KjXtNoc= + +Name: _locales/af_ZA/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: ofcr0jXThFpy+75hHp2/Q7a13Iw= +SHA256-Digest: fzhILeKwf6EXocFvocLJMDTVFY7948hKtI6L6UG8GFU= + +Name: _locales/ar/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: pxQQhQSkkjd9EAlMdZmvk+qmXhg= +SHA256-Digest: MORqa6PigyGRYrjsjuUVk80TAKErKzIZy9G5UnPV20U= + +Name: _locales/ar_EG/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: ofcr0jXThFpy+75hHp2/Q7a13Iw= +SHA256-Digest: fzhILeKwf6EXocFvocLJMDTVFY7948hKtI6L6UG8GFU= + +Name: _locales/ast/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: VdPNPPiC8Ro2JsmoBFkdW3TAy2c= +SHA256-Digest: 4zrpaArMxcBnUHIyLdenD/CDBXFXDgnSki4HzzEB0J8= + +Name: _locales/az/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: 3+BLldWYu7TK8cGkwWGVp8z0EUk= +SHA256-Digest: hfU635JcDvcEJzmbg2zkxSrfMEe0SVNvq8U9wj1SvNg= + +Name: _locales/be/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: /7FQnv3lG2OqZFTdc3/fmuOznX8= +SHA256-Digest: OrCo5OOtp9o91snpAQUrgUG1KbmJ7ScDZ3tncnnV2po= + +Name: _locales/bg/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: uvPzsM24ej+LdWMNASNfYE1+tBs= +SHA256-Digest: Z0AMZvlkzgDfeSMbZQ+AdhZryI8kmsdpYpvOz8lM9TI= + +Name: _locales/bn/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: dVoXHkj2UXzj4ctLQ7g2+cQu/o8= +SHA256-Digest: hTaM5b35bOJhTSV38ajtBg58bV5TdC47xttlYiZM/aU= + +Name: _locales/br/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: ZW6ty00kj6yNkgcEnnvyQjjgrWg= +SHA256-Digest: sTBK8ujpW+kR/M9mXe2ShZUChO9Ytu7gKVYQkaOwrZU= + +Name: _locales/bs/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: Vg2wDGtsbEZthKbRz9yUjj7Q8YA= +SHA256-Digest: vQgF2n0ktL3LZ1rqMaiZvCxRRt41I6PLvVHRJYvHb8o= + +Name: _locales/ca/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: /COeM2de5nZc7h2xYUdMcQqMeJw= +SHA256-Digest: otyh6c/nvuTuTZfmLv2FfYlbI6fkf9ibQ4zZYWll2Bk= + +Name: _locales/cmn/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: ofcr0jXThFpy+75hHp2/Q7a13Iw= +SHA256-Digest: fzhILeKwf6EXocFvocLJMDTVFY7948hKtI6L6UG8GFU= + +Name: _locales/cs/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: PSPcBF4f2cciaztX/tDK489gG6w= +SHA256-Digest: nhqVZbEdeQLOEfTuC4WQZqq4nVX6TLgsumEei+NDJjo= + +Name: _locales/cy/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: A9MVuoq+YeTB4AJ7qXIW2t/2reU= +SHA256-Digest: MMpP51GLMadXFrMHt8O5C2q5x9ipotM+rbjBCSAIa0k= + +Name: _locales/da/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: 6EA7b3gcz67OK5/NhNpqiv8JsRw= +SHA256-Digest: XvGrh0Pr/cIN0+h7dYRhsWrE2sbpvCGejLUk5g2cb+M= + +Name: _locales/de/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: 5DxSzfj3HAO19N93skW8074DacU= +SHA256-Digest: 6RRsp8DV8g7u3majB5LXV/HNNz9wltPP3/drftJO+t0= + +Name: _locales/el/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: cDgo3bT3QsyvgW6sNV1v7VhD+c0= +SHA256-Digest: oBZLruNBa+ryEI2AaAM1IuFsmVxF73+deXjq7P6lunM= + +Name: _locales/en/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: ofcr0jXThFpy+75hHp2/Q7a13Iw= +SHA256-Digest: fzhILeKwf6EXocFvocLJMDTVFY7948hKtI6L6UG8GFU= + +Name: _locales/en_GB/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: ofcr0jXThFpy+75hHp2/Q7a13Iw= +SHA256-Digest: fzhILeKwf6EXocFvocLJMDTVFY7948hKtI6L6UG8GFU= + +Name: _locales/en_US/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: ofcr0jXThFpy+75hHp2/Q7a13Iw= +SHA256-Digest: fzhILeKwf6EXocFvocLJMDTVFY7948hKtI6L6UG8GFU= + +Name: _locales/eo/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: cTvPwrTLEg/CLQ7vP936VGhWMBA= +SHA256-Digest: 6Tb3+j9lXyFMz+bKnJ+MnaIRIAaOIgFGgGFeLUWIHB0= + +Name: _locales/es/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: wdTXKRaKo3+lt2F/WAfhHECWQ0Q= +SHA256-Digest: 6LOKxRvSfOFCftbixNJLi3ILtnXblwVUdYoxy0KkUKE= + +Name: _locales/es_AR/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: jNe5tt2sg9FYb/CklhOA/EfCNso= +SHA256-Digest: ejlUkVhdh38l0SQqB2iuiCGTJgg/HnUZ6YB1BIowEUI= + +Name: _locales/es_MX/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: 8r5iYER0e+Z9xsXkisoWpgiV6wY= +SHA256-Digest: nNkWHeZ9eKPmXKJTHyKHmuqMNO9w7KdMoCpNtykVJSo= + +Name: _locales/et/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: RuKFi2LDlh1aZ/sgjAQHk9Dr0aU= +SHA256-Digest: kEGCDq7xq97+kttCcjDTrhV+IRBdvTdokVw5x4MjUrg= + +Name: _locales/eu/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: CfUVBO8uVqaEVg2rfNiEzhOOIxs= +SHA256-Digest: U4RrQUCTj9jzxLMjadoUZlclwDWv7StaWVTd+VfnN2I= + +Name: _locales/fa/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: Zi0T7F3MTegvevGxycGERaO+y+k= +SHA256-Digest: FppLjcJVwKmgWnEVG8DUj/OfX/mPJaRmMHYdzdQ4Qk4= + +Name: _locales/fi/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: Ijd1g6JcPeStcajdi2p49GxtL/s= +SHA256-Digest: XtP/3kb3g9EEZXkGRsQh5oEGWm5XdCCVHsY4eBWi2Lo= + +Name: _locales/fr/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: 4Kl28lQ4AxcFKuI1qPanfKBIO1I= +SHA256-Digest: JR6Ytgifw1eNfP5eEY9DW2+NyBy5t5m8jcfG1eElpos= + +Name: _locales/fr_FR/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: /siGONOTKZIcZRCh3Gjklyi6FpA= +SHA256-Digest: JOAxkWbsFpRl+/JTJ9Ii5P0ixY1UOkuZHRAjMb86eWI= + +Name: _locales/fy/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: qYt2G1hP0Cs203jLvxdBLgv4MGQ= +SHA256-Digest: cNu7cS359ufs/B5EXOMBJIvVbfB8V9sQpFxorgrRxxg= + +Name: _locales/ga/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: oNZb00MUZHcEuMm1CKosXijaWgw= +SHA256-Digest: knCNuU+/o1k+pt0GMADpt3nuzqz17npT4Olsoj8EL7o= + +Name: _locales/gd/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: ofcr0jXThFpy+75hHp2/Q7a13Iw= +SHA256-Digest: fzhILeKwf6EXocFvocLJMDTVFY7948hKtI6L6UG8GFU= + +Name: _locales/gl/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: WBkm2qWTCShjdj+kFKqzxnZIoFg= +SHA256-Digest: Y3K9ZWg9+2pL1r34SJhQYu26Viki5wqVlJmLmVfhQdo= + +Name: _locales/gu/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: cxaffBOuU3Z+D/AJ6TQAXNFki3M= +SHA256-Digest: pTrp2BlrTKilZg+sRGpeuYQVSrInYg7QtVBMrLANj4Q= + +Name: _locales/he/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: zshsgYzIwWg+jtvY4ingp8vw64c= +SHA256-Digest: BxJrAMOZ4VuFbXDVimpAN0xMEQBNZZkrmFWnTAXibks= + +Name: _locales/hi/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: QRpvL2rosEDoTdx6BxxGGJpSVmo= +SHA256-Digest: liYeP2q1gkXphKzxxJNsqTh7+T1gzKsee+6vReQMdhs= + +Name: _locales/hr/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: x/3lhb7z7CVqZZdn3midgSjn5tY= +SHA256-Digest: HHx+VP0HB42dWTZ38cR004DWeQpFRgaF5TULrZkatwI= + +Name: _locales/hu/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: 4eKsxvmbG58FfD5yjfm4b3cr+g4= +SHA256-Digest: i9dh17H4Ruxjb3oxA4GPRJvRPecXQf3U+qaBlGj2qps= + +Name: _locales/hy/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: QzXAZ5katx2Ye+1QFyFHLcMJROM= +SHA256-Digest: HSYKniubHesccfXGMZYre5wJva2MRztMYAhMHMA2+Z4= + +Name: _locales/ia/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: Mm0o9mYuk3kCk5WbKuPCFU7zpqo= +SHA256-Digest: 6ORLVTr02qalRUcK63Ir1GXjw/p+v6nrK9/zI66QL6o= + +Name: _locales/id/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: 9QctIupOryS8eWp04EJHAWNYj7c= +SHA256-Digest: NfVmJxGSWj5onjEn4//gX5P8n3QnqBXXP5Z9Lf+578M= + +Name: _locales/is/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: /P9T+vTThdd7i1pmGcYD6nOkY44= +SHA256-Digest: L1OQmFHZBhJHVvNqOh3610u1MS+SLQd9NHvYu2FkRVE= + +Name: _locales/it/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: QfqJFvpr/CghH/0gsO9h+sYKy1Y= +SHA256-Digest: vtdELbvnbICfJVOrxFLjaJq656uK7EK2pTcecgf4dNc= + +Name: _locales/ja/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: 7zImT7HvkvCQpdObYY520peFtDs= +SHA256-Digest: mjSxBaiB+SkXyspN3wi6aodH4rYgcp6da2exdiEcGU4= + +Name: _locales/ka/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: fHsD070Q4aHyxYhCNfQIYT3MKS0= +SHA256-Digest: yeIbx8SP8Wa4kvXo6Lzx9wrRj1LynhWFd2nbPUqZEsk= + +Name: _locales/kab/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: ofcr0jXThFpy+75hHp2/Q7a13Iw= +SHA256-Digest: fzhILeKwf6EXocFvocLJMDTVFY7948hKtI6L6UG8GFU= + +Name: _locales/kk/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: 8Sdjq0KMj4ANwq94weNnUQYtI+s= +SHA256-Digest: bTKB9CkWNhqawbJDhs1/GX4/z4j0Vg4cx31zKw44f5Y= + +Name: _locales/km/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: w5qIgDP+885pZJMl8FyA2yGUt1A= +SHA256-Digest: sjEA2JwKdlS1D1hQxKQedb9DYCwOSDhyxusv/cUTkvE= + +Name: _locales/kn/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: MdvnoS3SrWGvRWSyvuRqoWvRiWc= +SHA256-Digest: TaiiWa/PbBrRxhqRBYvFWtGmyyy/ovdu/yhHq/w9jk4= + +Name: _locales/ko/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: GqRtNAUwxrLDluWtx2LqjXzg+50= +SHA256-Digest: McBNqK4HaGAS0dEAMzOD8lrwecj6CFapkKhRgZpR2qU= + +Name: _locales/lt/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: cBHtxCIgs0M0vuawqYXF7qBAPZo= +SHA256-Digest: RvNH3JOZbIBt6KKPOdP91hxzpQQLbYxJxWeg36ncftU= + +Name: _locales/lv/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: ljoDEg01zL32eJF/+OECLuPZkoY= +SHA256-Digest: +pRZCbp3zfzTbM0UqTpiJd23dSymtKZxiZlqD9zNZEw= + +Name: _locales/mk/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: dHL1X/r5TNAy5AXujh48jmaBZMY= +SHA256-Digest: Fs8OnAZZqmqEZHAoYINC1qjLdniDuxjboibfVPvcxek= + +Name: _locales/ml/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: yjvR4hUOwBfI4/NLchJglHMznUY= +SHA256-Digest: /LzzQ1QQeGqOJGuwyf7hF1ynGzYojAJy8SjnfpqP8nU= + +Name: _locales/mr/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: VqbEpeDWqRRSDXueR7OXzV5Zi0c= +SHA256-Digest: DXWyMnlhjkPGEZgaBzsqFEU88IvmcrerTATrEqY+fqY= + +Name: _locales/ms_MY/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: pNrnIUMZ1KSdavj7IpvgaXtMW1Y= +SHA256-Digest: WjOfy4w9K1h+lN9Ld1JdzPwXrpU3TYqIpcQLVhzSsKM= + +Name: _locales/my/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: kPgWIxR2rynJkEykmF/T0clmLcU= +SHA256-Digest: pVtnX3UxISFA90i1ivkuL01oGhoah2AqzAJosnkZMCw= + +Name: _locales/nb/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: xCCz+aU59J3pUBQrTu8Sookw3Xc= +SHA256-Digest: aHFiDv13/G909I851CrVRUPMSAyxLABNIT5TkFPWolw= + +Name: _locales/ne/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: ofcr0jXThFpy+75hHp2/Q7a13Iw= +SHA256-Digest: fzhILeKwf6EXocFvocLJMDTVFY7948hKtI6L6UG8GFU= + +Name: _locales/nl/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: uHnFt32GmeGIWlUhV2oc0YwDBoQ= +SHA256-Digest: EPKDxQlVhuigsi6at+OnLBBaPbqbNuYdbHu3nEx6Lv8= + +Name: _locales/nl_BE/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: vpN/Tt8RJNjNrjzQhvaCLnu818Y= +SHA256-Digest: UMIycHh4OpfT6XEX5IkOJbBhBEmykK3QzilVLqxXbas= + +Name: _locales/nn/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: /uRXmVZ2hcY4LDKBmhSwYPb+v9A= +SHA256-Digest: /VRfKB4L2T8XMwAUR9UCXed+uPckbOsicnTGYCRT62U= + +Name: _locales/oc/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: LEIoVVmbjin2D0Bj5PimJENOmCQ= +SHA256-Digest: smQMMM7KSF/9lT0ryK07dEWxGtf3tYjF58E/kOIlNKY= + +Name: _locales/or/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: Ps0uvWBAvc6crMC3f7ztPoWLYHI= +SHA256-Digest: sX3swrX1p95cHWLBMrKDJ8mCOM/k+g3kR6+vKtjUlIY= + +Name: _locales/pa/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: +P2o0dGSh7jJUtVjUFU70dqtxiI= +SHA256-Digest: sHFd6kvNEbfWPpbLyIutoZkkEm0A9yWhjdbsXZ5YH5s= + +Name: _locales/pl/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: w97eXym45Cju4UUq2hDgfYZEivM= +SHA256-Digest: 8dpWSVyqOkrMcQs4Ub98uEHMtAkwdtuag9kfv31TnwY= + +Name: _locales/pt_BR/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: B9dLWSgVB9XeiQqqE9ceVH+KFqw= +SHA256-Digest: bkAA6J0bp9u83YD/Cea1ggdTUpXBl47Pb/RAgW/QO9c= + +Name: _locales/pt_PT/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: MFTtI6bvZgIBNjfsrsEes5SZWWM= +SHA256-Digest: 6Oe7CSTsLlbxPCEcuVYO5tqvl3/TLquitxYnh40167c= + +Name: _locales/ro/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: iZA4eB6bVN8w8JNfUaLiB04ZeEU= +SHA256-Digest: esk4A/1PXdU5yjo/Y/f3zS1fzrVQUIhGPFyAS1eSw+k= + +Name: _locales/ro_RO/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: iCzvlQJKPogorBRk1ZaRc1PHSzk= +SHA256-Digest: f6sPhnOcfaNWIONa4Ow+YtnAM3GXnWIG1WXDRHOtves= + +Name: _locales/ru/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: 7icD6gFZZYuaRFlZHpM3v4S4rbw= +SHA256-Digest: PsIJMB4ploNqnBAmnqfFHDXH+zFdu4P6BNZMnIwT0ok= + +Name: _locales/si/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: KM47GTd9GQqAik45v3TwGKzhUqI= +SHA256-Digest: 3PvBqbX4qA1rQB4l+mrxTb6mwA7ssWzrxjn1VJn5peA= + +Name: _locales/si_LK/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: /XRTG3mjOsamcRjwWbYUqmyS+jw= +SHA256-Digest: XbC317Ovdr7RhMsUfhfXDV1yDh+4pz86mQMG1PFGLdY= + +Name: _locales/sk/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: 8g2uM/IilbLetxLlpS1+hm+gb2w= +SHA256-Digest: bnqVDCFodbSbseUbLOrdCwprRMxbpCYHMvVbz/3KP/o= + +Name: _locales/sl/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: MdQaZFkibS04O78qFlB6kmwhF9c= +SHA256-Digest: 9pLwtRZfEy2la4LfIgkbDR/M+nNotJAA5wzEgT+AfyI= + +Name: _locales/sl_SI/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: wFhFU0upAYqmmQI/nRnGEnqP30Y= +SHA256-Digest: qx/D6APKUhcKmNWwCHD/baIjzMFQNTR4/Rt6LvOTQ4Q= + +Name: _locales/son/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: ofcr0jXThFpy+75hHp2/Q7a13Iw= +SHA256-Digest: fzhILeKwf6EXocFvocLJMDTVFY7948hKtI6L6UG8GFU= + +Name: _locales/sq/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: 87nTmcsWpoEAsJTN4/ZFf+01I8A= +SHA256-Digest: POGPrXKN5GuJ59k227ozXns25ogQdzOOgA3azEA1f94= + +Name: _locales/sr/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: zJI0kCSZIB/4rfhaGxg0aUGrbtQ= +SHA256-Digest: tfKdrL6vsCYxRU/QeEvAZC58y6qDuEKkhNi17r1e/8o= + +Name: _locales/sv/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: UI6tx0CmaOkUsjASOmQvxNRkX+c= +SHA256-Digest: WnBcBaT7T7yKHUvac2bn2q5alrsbfEiLOQUXPIQLurQ= + +Name: _locales/sw/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: JSf0a8gCwILGBI0T4d/FfWfIGDc= +SHA256-Digest: Z+oQpHb/T+I2XZ+JVJZW1KMeAP6yK/x9Quts8n64AlQ= + +Name: _locales/ta/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: CW5Q8ok59gE/ZC8A4uPqW4cIfhI= +SHA256-Digest: vOG/RBohVZklUTu6y6cjUWg5RyNIbwaB33kUr5Ko2PI= + +Name: _locales/te/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: N/QOkBiJYvqsksR5+NWuHA0/fxk= +SHA256-Digest: jZC8UbVBsT2RvDZ1uebHtr76/oRaNdlmxLKWLnDaI3A= + +Name: _locales/templates/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: ofcr0jXThFpy+75hHp2/Q7a13Iw= +SHA256-Digest: fzhILeKwf6EXocFvocLJMDTVFY7948hKtI6L6UG8GFU= + +Name: _locales/th/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: QaLDEcDBj6HdEh+eAhQ02DWS81c= +SHA256-Digest: ucjQxKDoCEwzTat3hNNjtMRJ/u85+QK47Rw93C4J8Sk= + +Name: _locales/tr/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: MDXJjWJjdDGjeYfHHa2+LsPj2tM= +SHA256-Digest: vdziBTOIPyWhvyfApPrN8jZMww3lePVgo4zDkwcv9og= + +Name: _locales/uk/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: TargN1mxonMdbvos0GBcCxU0+dI= +SHA256-Digest: 6ZRhyVruPhNEb5UPYCrb/EFcy6ArHSNqxBy4KNEhq/c= + +Name: _locales/ur/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: kUEeTx9OeiESvvWjprUjqluEhZk= +SHA256-Digest: ADAHAHlOUIGXLO2Aj5/it+lavjH4WkbjLV43yI6CO4s= + +Name: _locales/uz/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: bmGV4U+3LA14ZwC5RcRdN5RB+tk= +SHA256-Digest: SPoiBWn8W+vyUJHKfocitJ5y6RjXedgta0HxflAFB9Y= + +Name: _locales/vi/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: GMY5uzc6vq9pP9hqFNGlOgVYZ8k= +SHA256-Digest: OidbjDj9CBSxmM5oW3RagDo6ZNvA+5P9CGN8C0cbgms= + +Name: _locales/zh-Hant/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: NXT6rNViMHWrKSlecajyj80CeIg= +SHA256-Digest: 3zXYNMBhIcIsuhQRzfIAFhV3GdeGZXgyc+h5bFXMZtk= + +Name: _locales/zh/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: Vu5rZrqGhcESvjluy4x3EcMPi4o= +SHA256-Digest: karIDiNHSaijMuQkVkG71+StamzOq9ZeGiQhzwJjTAw= + +Name: _locales/zh_CN/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: HWK9jni02GGBk/XOVpL/R1rs0NI= +SHA256-Digest: Hl+NW/IGzS73WJhUVgY9cPJvMyb0ZomG7k64dzoJ1wc= + +Name: _locales/zh_HK/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: oZ9Ht83pERBafXR1h2mucibzUUo= +SHA256-Digest: Vq5s6nfmwfxvTVQlmjFCHCYlzvJanl+4I8J2h8F0hjs= + +Name: _locales/zh_TW/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: yfJJJg+Uan6mqiwEm4W0l5tT+nU= +SHA256-Digest: Xj6MJjfhW3liYqF0UIY6flSaOxnNyr4Urgu2gffF99I= + +Name: background-scripts/background.js +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: GMCKwYZnhsRm4ExhG1q6wY+DQno= +SHA256-Digest: D4ogTIq+ze3hPGkcxzkc2jFho2hACQn3iYc2oaw4egE= + +Name: background-scripts/bootstrap.js +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: TSwjfTzojZXN1Iul+mBttRl/MAg= +SHA256-Digest: WcKbJ0zQK8948MJzbMTTCf807jEGH7Bj8k7CuWCx0aM= + +Name: background-scripts/incognito.js +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: JXSvrJhaxqSgUtXqlm0r21VqSlo= +SHA256-Digest: AnGJOJ4CKWmdFZaWNzvm7NWZjbzCKkdawPc8RZCH4d0= + +Name: background-scripts/ip_utils.js +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: 8RyxTy1FNW0wvKPs+DqKNNZYvV0= +SHA256-Digest: F9Ij1ZyfnpmmCM0W3+WXfaBO/rnUAFZtXc2N305Qod8= + +Name: background-scripts/rules.js +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: 2dd1eq7Y16RvpmADSFGYSFdRvNc= +SHA256-Digest: 9Qw9Xoky6/2DvBn5nza/xBXbjaWkEBI9hPaaqAdQDqU= + +Name: background-scripts/store.js +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: IdAI+nj6uuahTeT28Xx1QJwLveM= +SHA256-Digest: lyCBwe6g79MMTtU1xyGBiIJidhqUsW/9YUXX158t6z8= + +Name: background-scripts/update.js +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: Z/kkBlC2HeS/G5zlAbeiFwLpgIQ= +SHA256-Digest: R1y7pQHEB8w7mNOn0zxEL20mys/8sOZxy5238BzhNoI= + +Name: background-scripts/update_channels.js +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: kA9YO0yjVOE6vw2mpWPePkWyt/I= +SHA256-Digest: L966QoT5hiVg5mzQq9dACJ5o8OVsROxhNRd+LebsAQQ= + +Name: background-scripts/util.js +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: pjJWekzg0QW6/0qYNf1pISXO14s= +SHA256-Digest: 1Cykm0yxo5EZs0+fZWtUPzHa38B6ZalDAOojqu5awgo= + +Name: background-scripts/wasm.js +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: 7pQTqvYA4el8WRX7FjQNUUcMUwg= +SHA256-Digest: TMk4CQYN4lxkG/ZBq+wp4erwwo8knS0H5HHBCa7LW08= + +Name: background-scripts/modules/ssl_codes.js +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: t5DE+asvCaL1VaVhVXbJDQXQaHw= +SHA256-Digest: hGKfRGrQWsXH8+9OfHcHM4I45d6DIIxClYqMSH1oBCA= + +Name: external/README.md +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: DgCQOA7tYbKkLcJ92flagYsm0nI= +SHA256-Digest: So9vbyA/ExcM/wEms+bwz/YVVa2ayDCNnJ5sYJk40tk= + +Name: external/codemirror/codemirror-5.31.0.min.css +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: 6L9PQ9XeTmwE+7WJ29O7oelFX7Y= +SHA256-Digest: fIaQYYF933S7mhBn4vqsgaawzXI4iELVCrvv83rZ5ic= + +Name: external/codemirror/codemirror-5.31.0.min.js +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: iJyQEWjgaJ3IVz2bsX+RSnjLzGw= +SHA256-Digest: yTU67I79B7rqtdoOdsJHDDK/92GDEeGj4+93U41HPgE= + +Name: external/codemirror/codemirror-5.31.0.xml.min.js +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: DMaXXHyF/jzGu8wJN2a1yHxkNHU= +SHA256-Digest: d+N19fPYNZkqDuOxqLM8MHSxTiGDF/j5WLdynJ2D8/k= + +Name: external/pako-1.0.5/pako_inflate.min.js +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: V7Fd/JcXF6Ar68Oa5X3/rO7giNs= +SHA256-Digest: h8L84MNiYQCe/szpOr1i5Cge5x/8EsvaaTlcdG9vOnE= + +Name: images/HTTPS-Everywhere-Logo.png +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: E0ESMX+oJaAutg08/RPfpc3Ix5E= +SHA256-Digest: PKyVOZS7bg8UVeQDG3npTYLKtnB5FgmmdfoW/NC02bQ= + +Name: images/banner-red.svg +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: ZnApE5t/iqGaVc0fdm7I0Rpvdsk= +SHA256-Digest: obGxFfdgfzgg0jj59ThEpLQwowcJCioxsVS/+X7Mtvg= + +Name: images/eff-logo-monogram-red.png +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: 5sbYS58Ze3MdPgDNas/ZnFn128Q= +SHA256-Digest: aPdsjK4CCl3M8HBgqCLA5vu5n+w9cCs75gs0j5x/0Ak= + +Name: images/remove.png +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: Pn9f97i3AIFlAMf420qZNzvA7DY= +SHA256-Digest: 7TrWr2ZkK0faWgDYUz9WtV3voVjEwqjLq0ROGvkU6y0= + +Name: images/icons/icon-active-128.png +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: p71skXMtghXylXMvFLnYW/jPos0= +SHA256-Digest: 1DbMnWBmqaIRzzkUyRpdRzxz8z1HtUGq6RzRKcINuEA= + +Name: images/icons/icon-active-38.png +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: EleX4C/tgOj+W71fueie7ZoXAAY= +SHA256-Digest: YgkTENwvpAo6Bb9WsTrUr+CfKY+gsQfq6uPoGdMw6kI= + +Name: images/icons/icon-active-48.png +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: VVqz4q4/4awX6PXZhnQmGFkAiqc= +SHA256-Digest: pfkIfbdzORmTjUTLb2SsmaLv4oafijkSttiU3lUcKmM= + +Name: images/icons/icon-blocking-38.png +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: IebllmIP/cUmB0piMroSEA7HnHc= +SHA256-Digest: 9oP7jvbkH3KM4VG+kAnItkvsT00o9/KKHvhexTJHCD4= + +Name: images/icons/icon-disabled-38.png +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: PJqzR54BFgNofExLbYn8DMEyvzE= +SHA256-Digest: 2PzhLQJedFJa+ZOnE/j8r+XELaoYAn5ptQCSyNbmDcE= + +Name: images/onboarding/httpseverywhere-logo.png +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: XYvqYHk+Ebepsvq4U3bo9rYMqQI= +SHA256-Digest: 292a2wZxJ/ltXI+/9OdCzMX2YZnJDWMYUoVOOnU+sUs= + +Name: pages/base.css +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: Yk+MDy/I88Qd0VMzEBIbf0fBo0s= +SHA256-Digest: D7uZfk1BrCzx3HFnEBtdaN0E6rC6pErEZAd1X85xgCo= + +Name: pages/main.css +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: UN8/2mEQ6JZ7MTJiWQN8f77AgP8= +SHA256-Digest: QhiZj5JKVR1gPvtg6EaZxI735GiFeZglzuSkTJpZvpE= + +Name: pages/translation.js +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: QMAZVa3usW8vcXwN2WP4lvIQQxQ= +SHA256-Digest: +qWz2YZH5C1UqzTixYwsS3185+wd+q8Dhlm5czDI54w= + +Name: pages/util.js +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: XzUESMiqZDZv/WRcv+j8f/R/7uw= +SHA256-Digest: tSZjbu7zilv5pujsEyp/+6HCfr7iu+KfoXNiftpAKAY= + +Name: pages/cancel/index.html +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: h94rEtsYrj+TsIBk2x+UqRhOHDM= +SHA256-Digest: Fgv98mLYPbIiOUi3HAw4YktUVkkt+7clLW2IgxTD9us= + +Name: pages/cancel/style.css +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: 0L/xbmBq8hCu58P61j4htTOA4Wk= +SHA256-Digest: ejF/rMWvajSbZFxp0hRT6SzhobQ3aILcf5pN1BTOGEE= + +Name: pages/cancel/ux.js +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: UtFAiW+HLmKUFMV/v2hPR5haiAI= +SHA256-Digest: i3Vc/dqv2XS12us9g1J5f6iMIZC0gI36g5N/FEKX1pw= + +Name: pages/debugging-rulesets/index.html +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: DuBJ5S+QY5nztsCAqOuTgKmu4no= +SHA256-Digest: J4l9PsxyBqZKSYfqo5Zp80vXBJ7mqRVKNS2KoVU9F5o= + +Name: pages/debugging-rulesets/style.css +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: 1DuOcKAihj5zxJ0CIgam4iq8YXc= +SHA256-Digest: 9H1UQpqT3UDDSt2ao6Zgr4iT5o/iQ62HolhTDqNHHCE= + +Name: pages/debugging-rulesets/ux.js +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: IyqmSEBIenfSG4Mk++ciVOvpQvI= +SHA256-Digest: OVzkDGtCe3pg65opGnboDfrFsqFsLJxa5CQxBPA9gi0= + +Name: pages/options/index.html +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: cXwoesX+lTfZgizRwhLvV5iFNDQ= +SHA256-Digest: OzLgxg/tYfU/fSAIHLxBZ/++9W6FgznEEGHflPJ9aq8= + +Name: pages/options/style.css +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: m7GC//67J6ErvL9Wp1FvAUMLk/8= +SHA256-Digest: O5CikoWfyy2E2v3es6BJGltQ+OKfeD/uIYp9xsrqsF4= + +Name: pages/options/ux.js +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: bUAAi8jBxAk5YiNWqSyiXxkSPs4= +SHA256-Digest: WzJSEmMXT7Qi7rKftAFtuD6oRK0bfaLtzqCvtgwJ+/c= + +Name: pages/popup/index.html +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: 5vBn8FGlSOjp7z4UozcN+hnm3iI= +SHA256-Digest: JoShZlQiKjzRj2JxRHXHW4Df2LsKWf568UU/oKVePpQ= + +Name: pages/popup/style.css +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: aPvKt4RXG/BofewRf4CE4mBg1lg= +SHA256-Digest: H6iKtXGZJ/o2chDo+KZtB8VNYdaadxE8+143tDhl3/U= + +Name: pages/popup/ux.js +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: 68pu62q/sp5slQO9MUxCOv+ofU0= +SHA256-Digest: 6VKXwWx0rQ6KoTh0OQ4KpscxkgcW433VAazICjc3bCM= + +Name: rules/default.rulesets +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: hqWsDDcf2fp+r/dTBZqGw2eaqb0= +SHA256-Digest: hnQbXIa2D+1lFh6i13HSkXQyYa/TxpKrPlx3QzgnnX0= + +Name: wasm/https_everywhere_lib_wasm.js +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: ELfS13+0aPyRX67301qNv6fm3pk= +SHA256-Digest: 519ILW7r7LqFtGI6M22GuXDA6xYikE6EngbvlT9//Lw= + +Name: wasm/https_everywhere_lib_wasm_bg.wasm +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: SBxLOV763w4ke4LOL1574PW9hCs= +SHA256-Digest: 7JqJ7u/5t5yGxh8p2+YCmgl+LeoRWQRlDJY9cLxWqA4= + diff --git a/src/META-INF/cose.sig b/src/META-INF/cose.sig new file mode 100644 index 000000000000..c124769c1e40 Binary files /dev/null and b/src/META-INF/cose.sig differ diff --git a/src/META-INF/manifest.mf b/src/META-INF/manifest.mf index 564f49dca484..35f49ce809b8 100644 --- a/src/META-INF/manifest.mf +++ b/src/META-INF/manifest.mf @@ -1,2957 +1,742 @@ Manifest-Version: 1.0 -Name: install.rdf -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 9sMY1Jxov5Mt9KsNyXprzA== -SHA1-Digest: NzjthkMepR56e/P253j4xU1GB3Y= - -Name: chrome.manifest -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XOIxusmpoOTFU/UqnBXGKA== -SHA1-Digest: Bhc67dKsPDaUhKWYKZqJDYj7Vjs= - -Name: Changelog -Digest-Algorithms: MD5 SHA1 -MD5-Digest: dSvfZ7y1ni1PMKn5mz7iPQ== -SHA1-Digest: ecm0UdfHBzDApzU4R3IS+YgqegY= - -Name: chrome/content/about.js -Digest-Algorithms: MD5 SHA1 -MD5-Digest: TO4DQ0ayWbNEXdYRvIy+Og== -SHA1-Digest: LLBVoXQCCBga94313zUlZ11orfw= - -Name: chrome/content/about.xul -Digest-Algorithms: MD5 SHA1 -MD5-Digest: MNOfKWlLiXbPJCajI2ygQA== -SHA1-Digest: 34N5UGM6phvNH4cv6tjAoavNIUI= - -Name: chrome/content/meta-preferences.xul -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 9YYHQqlA0cwc7IgId/YYhQ== -SHA1-Digest: jEBPCju6z4zzzNFf+2aXBXXG2C4= - -Name: chrome/content/observatory-popup.xul -Digest-Algorithms: MD5 SHA1 -MD5-Digest: F6irPzjDVHROWWIHem3Rpg== -SHA1-Digest: +HKlmq/Ykc3z4/pYQB5tSFK9mEg= - -Name: chrome/content/observatory-preferences.xul -Digest-Algorithms: MD5 SHA1 -MD5-Digest: cjUEAy6bZQXk50hudB9fgQ== -SHA1-Digest: YQ0vDF2NbI2eTfzwc2We9RIEy8Q= - -Name: chrome/content/observatory-warning.xul -Digest-Algorithms: MD5 SHA1 -MD5-Digest: jIarh8VRQf6cEhXyCztjQg== -SHA1-Digest: E/cGjIJ15VE5kuBLQvJ4Zx1HDpM= - -Name: chrome/content/observatory-xul.js -Digest-Algorithms: MD5 SHA1 -MD5-Digest: MYCySR0jAecQliNhdzBLgw== -SHA1-Digest: 7hmedEVDs2H6c3uRIjrch0w0ljU= - -Name: chrome/content/rulesets.json -Digest-Algorithms: MD5 SHA1 -MD5-Digest: ip+XlLXn1TThVGXAXSTihg== -SHA1-Digest: i4R1TziUtQdvLfIlZtMge2tGwQM= - -Name: chrome/content/toolbar_button.js -Digest-Algorithms: MD5 SHA1 -MD5-Digest: gDmDcctQUsVRqee3123UYg== -SHA1-Digest: IT0O0PLA67YK8V2IUk2G1+7/fpA= - -Name: chrome/content/toolbar_button.xul -Digest-Algorithms: MD5 SHA1 -MD5-Digest: I1Rj+S3QCQs/vRjSYZOj+w== -SHA1-Digest: Z1DUhZADFVbQP626Xn2jjhdneGg= - -Name: chrome/content/toolbar_button_binding.xml -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 2dbyVeRAL8JeouHbcLwqJw== -SHA1-Digest: WccuJ8edCmDxzDdFG8x/qbDlxH8= - -Name: chrome/content/code/AndroidUI.jsm -Digest-Algorithms: MD5 SHA1 -MD5-Digest: cTsggP2bzcEWlt/AgClFXw== -SHA1-Digest: Lj9nj0n6rIv6gVQqwLo8aeLPq4E= - -Name: chrome/content/code/ApplicableList.js -Digest-Algorithms: MD5 SHA1 -MD5-Digest: pS8R/R0wKY6Dx01Ca0dgdQ== -SHA1-Digest: mSV5FZwGi+QyHFbw84Bh5BabBOk= - -Name: chrome/content/code/commonOCSP.json -Digest-Algorithms: MD5 SHA1 -MD5-Digest: ZF5tbgWyGTGMaY+Sry/TEA== -SHA1-Digest: QyZP0mnVpfI8v9HafWSGVpggXFI= - -Name: chrome/content/code/Cookie.js -Digest-Algorithms: MD5 SHA1 -MD5-Digest: DH4CNaTV8FSkq3DqnFWIhw== -SHA1-Digest: 1x+yUhg2hREEc003OpJiu7y02lQ= - -Name: chrome/content/code/HTTPS.js -Digest-Algorithms: MD5 SHA1 -MD5-Digest: wxGtT6GsGVB8w7g8zgOBbw== -SHA1-Digest: FnJ09sncQU9gXU6lQp0iwIxCusA= - -Name: chrome/content/code/HTTPSRules.js -Digest-Algorithms: MD5 SHA1 -MD5-Digest: jAtrgN9XL+Dj+PfPSqoBcA== -SHA1-Digest: HTRDDM8QnxqUGOGbFxa9zXh5qaA= - -Name: chrome/content/code/IOUtil.js -Digest-Algorithms: MD5 SHA1 -MD5-Digest: T6SxQb3SShQEEWDdTiLqJA== -SHA1-Digest: C4jkTkoLi0eXxSoJ+mhgCfU/8Kg= - -Name: chrome/content/code/NSS.js -Digest-Algorithms: MD5 SHA1 -MD5-Digest: GC+aEgLpSeLgwscBxJtZJQ== -SHA1-Digest: HEsQvG0rqlqGuHG6I5eDKCkF03w= - -Name: chrome/content/code/Root-CAs.js -Digest-Algorithms: MD5 SHA1 -MD5-Digest: YfZ5JRnK/VVLJ3BexceymA== -SHA1-Digest: p3cDVtcEcaBW/wX7zfiUdjI4d8w= - -Name: chrome/content/code/sha256.js -Digest-Algorithms: MD5 SHA1 -MD5-Digest: feCNjWXdf8uxYzQdWKKyKg== -SHA1-Digest: id/qGgzRgxSXMMttuM2RKw+vpYY= - -Name: chrome/content/code/X509ChainWhitelist.js -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KPkL4Ra2X33APeOXMNccTA== -SHA1-Digest: zkHXCkGfUtzR8g73uRx/TVCpJQw= - -Name: chrome/locale/README.txt -Digest-Algorithms: MD5 SHA1 -MD5-Digest: xdAkPVfASJh4FQgANym6GA== -SHA1-Digest: 9FXQ1FtZw4Qp2b+iOyrFg/mGeow= - -Name: chrome/locale/ach/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/ach/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/ach/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/ady/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/ady/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/ady/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/af/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: ohLnkvt25p2An/ZCErtqdQ== -SHA1-Digest: kM/rPymcQrh8Fo5bjeSwRaU6BHk= - -Name: chrome/locale/af/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/af/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/af_ZA/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: yfo7YQeeQ66zBw59nBFIaA== -SHA1-Digest: amF5uU+jEDSlVdXfDCdz02fZr0Y= - -Name: chrome/locale/af_ZA/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/af_ZA/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: jfitnUpdvsWwJ3JxBjohGg== -SHA1-Digest: i3jufc9C9o2N98F2HpEpUn0tni8= - -Name: chrome/locale/ak/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/ak/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/ak/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/am/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XcmjCn5R7plXeqr0wDkkqA== -SHA1-Digest: yhsVHNeIg8WqMeOT7wAillouvPQ= - -Name: chrome/locale/am/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: d2gHWBuMboY/y+GU9KHD+A== -SHA1-Digest: H/f7CXhBImHoF9UO5GJVJubDamc= - -Name: chrome/locale/am/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: t85Np/mlXi6mry6DfInsGw== -SHA1-Digest: NqTGnOajiii9KcX+3kbxD/QUNDA= - -Name: chrome/locale/am_ET/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: mZvxn7jzOHJ0MuYyLNYdMQ== -SHA1-Digest: jtWo4C3lSJku19ebuJspC9kpA4U= - -Name: chrome/locale/am_ET/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/am_ET/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 9i8kbao1pCvR/8aRDRq8zA== -SHA1-Digest: kn1a9waMgWB4Rj+ISPwtraS0HII= - -Name: chrome/locale/ar/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: UgNC8iKi+d6D8d3mYhC+cw== -SHA1-Digest: DXOfbylEWMGyZyOx+Guqt/QC3PE= - -Name: chrome/locale/ar/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: rrhf/qvqYHOLnsLFKt0Elg== -SHA1-Digest: nDC6RpC/SmyAIHcYGBbrwvditoI= - -Name: chrome/locale/ar/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 6UB84SCpiNq/JeR3U7BDxQ== -SHA1-Digest: MUiPLAqQfBnl6eyDmpcNBWGJnSc= - -Name: chrome/locale/ar_AA/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: fuVaFHH7T0FcROIcYlAMfw== -SHA1-Digest: HVqbAEi7ocWsQSH0IvyfceATh6Y= - -Name: chrome/locale/ar_AA/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/ar_AA/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/arn/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/arn/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/arn/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/ast/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 0afuF+yME+PeqAY/vh9fHQ== -SHA1-Digest: yLKS+dDKPxUzSVp1iBs/8T27A+Q= - -Name: chrome/locale/ast/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/ast/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: gutO5PrRuFOLXnM1KS+ffw== -SHA1-Digest: o8FbuYhtG0JexInXq193UD3/Et8= - -Name: chrome/locale/az/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: +pL2GuChoJBTzfjx2Afn2g== -SHA1-Digest: yDGlAHMOeuMtlG4YSzOeKGuFWJY= - -Name: chrome/locale/az/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: EYKtNNxU+1z0FAiMtzk4Jg== -SHA1-Digest: MrwhPPQiP/lzVfBqPToAjAyg8rg= - -Name: chrome/locale/az/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 9YbqXUt4Z/ojNFX0SJT4fA== -SHA1-Digest: ATb4BBuHYH20LU6tN+k2LChMt9g= - -Name: chrome/locale/ba/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/ba/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/ba/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/bal/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: u2XO1hrb7HiIZHQeO1KKOg== -SHA1-Digest: 1xL3+VQY+ODQJEBatCQ6sr1dNAk= - -Name: chrome/locale/bal/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/bal/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/be/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KAbJdSZ1PvmuaozK2k5VnQ== -SHA1-Digest: PdM/5iASNzMTD6aAnbz3lmw0QoY= - -Name: chrome/locale/be/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: OzkUu2yX5EwySRsPODNezg== -SHA1-Digest: 6EhHIexamAi+wE5JXZgePdzvLPc= - -Name: chrome/locale/be/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: NI/sXLrjCbZAAS6KDNIg6w== -SHA1-Digest: bgDWGNDUTkSm85cVc2njUtknHGQ= - -Name: chrome/locale/bg/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 8v4CuU+NjvaDkhAbijZleg== -SHA1-Digest: jxZjcr6y47E5BTefu9bpdhOGZB8= - -Name: chrome/locale/bg/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: fVK+HP5SVK7c2ZZ9QyLN2g== -SHA1-Digest: t+oCLmlMw/XFMKW0on1Ws4zLqAc= - -Name: chrome/locale/bg/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Yl/JIRHnu8svCqzO3yw3Kw== -SHA1-Digest: b3tdJrWPuhxP56A8g6HAybbXCC0= - -Name: chrome/locale/bg_BG/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: yfo7YQeeQ66zBw59nBFIaA== -SHA1-Digest: amF5uU+jEDSlVdXfDCdz02fZr0Y= - -Name: chrome/locale/bg_BG/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/bn/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: pJgd5aXmamC09vGBP8pO+A== -SHA1-Digest: /JbAOEtdqI1vF2/4d2u20jPqHJ4= - -Name: chrome/locale/bn/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: MM/s3bxOsL74Ft04VgwnkA== -SHA1-Digest: Q5x5zIpYWDX+dLT5tGtuncDUizM= - -Name: chrome/locale/bn/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: IR/SuF1mGOEzxmqyaQfHrA== -SHA1-Digest: DYYoKMuzDVXEuW/XoxT99NinkOU= - -Name: chrome/locale/bn_BD/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/bn_BD/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/bn_BD/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/bn_IN/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/bn_IN/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/bn_IN/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/bo/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/bo/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/bo/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/br/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: NQ5pU6iBWI1uW2h3t1v6JQ== -SHA1-Digest: 79O9zcpMbV3AXZ2ac0Q25+OrvDE= - -Name: chrome/locale/br/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/br/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/brx/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/brx/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/brx/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/bs/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: LLQGcvcGx7y1+Fq5Oz5SHQ== -SHA1-Digest: VM3svJYwbtR4v5v0WgbBTOSd0uM= - -Name: chrome/locale/bs/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/bs/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: ZNI97feqRtbDaRb5vQJ1/w== -SHA1-Digest: sr+tDbYwOpO/hxIOMPDMQiyGl50= - -Name: chrome/locale/ca/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KomO+1hYK/OBASvxagrvjg== -SHA1-Digest: RfKHRn899fSS7JPh8P87gug7L/Q= - -Name: chrome/locale/ca/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: GxKduQIr5KGtluEExL/4xQ== -SHA1-Digest: BGQDYp/9WeRxWKy0QsrYaHYBpGM= - -Name: chrome/locale/ca/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: hn9fiwZrZmYAV6Q4lg6MJA== -SHA1-Digest: ivq7E+P2oUJfRT7rk4s4OHRCndM= - -Name: chrome/locale/ca@valencia/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: wq1ftLJI/zu00jnty2UoTg== -SHA1-Digest: W6qiQGN0W2GdUYLH5nTJLwHhdog= - -Name: chrome/locale/ca@valencia/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: JSS3FARi65XslQa5SDB16Q== -SHA1-Digest: fYOX+8CyYrFIbb+AWYrN1O7W7UI= - -Name: chrome/locale/ca@valencia/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 3rXVOdQg/xpjPErJOGQZaw== -SHA1-Digest: qnrzobq7E/EtGV23OWJiBN0i6jw= - -Name: chrome/locale/ca_ES/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: eSkZ69G/Tyu30mSw5Apjjw== -SHA1-Digest: TQzUTfn1UOTSYlF1qjXWdQJgHFo= - -Name: chrome/locale/ca_ES/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: YtS2epu01TazFPbFmpsI/g== -SHA1-Digest: Cv7tQJ78lyhjEuq0PYh91QMdi8E= - -Name: chrome/locale/ceb/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/ceb/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/ceb/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/co/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: u2XO1hrb7HiIZHQeO1KKOg== -SHA1-Digest: 1xL3+VQY+ODQJEBatCQ6sr1dNAk= - -Name: chrome/locale/co/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/co/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/cs/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: ows517CBDMYCe6jStoX9CA== -SHA1-Digest: 6Z9EEbx7z8yXMPkhNgdSCyuuR8s= - -Name: chrome/locale/cs/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: FAklnVOMlJ6kWBf/5yRs3Q== -SHA1-Digest: Q5kpJEkoPkSBImHQN1Z9+FvPMu8= - -Name: chrome/locale/cs/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: EyqSdOPe8YR5DqVwEYeZVw== -SHA1-Digest: aSS+C8mCIjRok6aMBnslgqoofWY= - -Name: chrome/locale/cs_CZ/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: fuVaFHH7T0FcROIcYlAMfw== -SHA1-Digest: HVqbAEi7ocWsQSH0IvyfceATh6Y= - -Name: chrome/locale/cs_CZ/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/cs_CZ/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/csb/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/csb/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/csb/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/cv/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/cv/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/cv/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: kIyH9l00bHAh6ADPQ5iArQ== -SHA1-Digest: QL0BuE+ti76nOKz2d1tDu1LPz9U= - -Name: chrome/locale/cy/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: laKj9nu87Mlw1pmPNmJOfQ== -SHA1-Digest: AGFXQbIYWDnOwJlxJQYPz7O72W4= - -Name: chrome/locale/cy/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: EcocIN7kKtTyJ6D2+1quVw== -SHA1-Digest: d1L7HMkwuDQVQRIgqQYy1Tw3ljQ= - -Name: chrome/locale/cy/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: UTSw9Ciit4i9CSYDYSI9Sw== -SHA1-Digest: z2vDsom0ZIFU29DtdzTgkjggKtI= - -Name: chrome/locale/cy_GB/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: fuVaFHH7T0FcROIcYlAMfw== -SHA1-Digest: HVqbAEi7ocWsQSH0IvyfceATh6Y= - -Name: chrome/locale/cy_GB/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/cy_GB/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/da/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Xw2OPN0CSgJqSfa12fTwwQ== -SHA1-Digest: IC/P+BGLJWGKd/yLATI33rtELmc= - -Name: chrome/locale/da/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: YrpnqMcAjQyfvNcdE9cQgw== -SHA1-Digest: GW/O4kRh7JrhKEMi/iwF+rWTqQc= - -Name: chrome/locale/da/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: R0LYeZTqXTaj87J35B/bQg== -SHA1-Digest: vwq7M24YsVZnMtxBTmSfXa3sBvY= - -Name: chrome/locale/da_DK/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: fuVaFHH7T0FcROIcYlAMfw== -SHA1-Digest: HVqbAEi7ocWsQSH0IvyfceATh6Y= - -Name: chrome/locale/da_DK/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/da_DK/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/de/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: vj9LtmEw4L4C0TmoTP2/zg== -SHA1-Digest: FLiizFnerB8/2ucYAbmIh8Xtb78= - -Name: chrome/locale/de/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KZ86VAGHSiDQH/sa4g2XQA== -SHA1-Digest: 2NkXR8m/i7WnKNgjyCNxv5OqnvM= - -Name: chrome/locale/de/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 1TBXajxRMovkohKGDEG6GA== -SHA1-Digest: pNalYWhhRPzcfYcRUeMEWj2c+QY= - -Name: chrome/locale/dz/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/dz/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/dz/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/el/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: wDmKGAvePM1l2WNc/oa5uA== -SHA1-Digest: uUi8QoA103W+WoxenOw9MrNaCKs= - -Name: chrome/locale/el/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 6e/6s2Z7EmaeqLFvacR/aw== -SHA1-Digest: R9ynfJDz/mmDBZUhpz6IS04gq+s= - -Name: chrome/locale/el/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: ENMfbc5OHzv11XTdP0BFrA== -SHA1-Digest: 14yclFzpoPwvG7/l69j22tOgUcw= - -Name: chrome/locale/el_GR/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: yfo7YQeeQ66zBw59nBFIaA== -SHA1-Digest: amF5uU+jEDSlVdXfDCdz02fZr0Y= - -Name: chrome/locale/el_GR/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/en/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/en/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/en/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: VdF6+z+uxg9i4YhmOpiyeA== -SHA1-Digest: NN2PnCMaroBKjX67NWSsLTCwarM= - -Name: chrome/locale/en_GB/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/en_GB/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/en_GB/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 6On/olVPNVqbKpXzW1X2XA== -SHA1-Digest: Ijz8la1nRxu5r+O6QbVZK3VSVaQ= - -Name: chrome/locale/eo/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 1Mr9YkNTwUtN0MMF8xYPaA== -SHA1-Digest: 8oyTzeNGhz9ssKzX/mI8q74ogrs= - -Name: chrome/locale/eo/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 2XoPm+5f0SZOzKRHBI8+LQ== -SHA1-Digest: Iwsh8QNdg7XdzlVkMgF7iw2fq/w= - -Name: chrome/locale/eo/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: n2z7dvkZ6211TdAPNX+RYg== -SHA1-Digest: kULfBoTjxo1aQlroleiTzRGcaDI= - -Name: chrome/locale/es/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Ar+uAi7iBJXS3hWtVqJq8w== -SHA1-Digest: AvXIq2mHCLXsOtRlm+lo+SAfMPU= - -Name: chrome/locale/es/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: DTNvpe38N9BJMblCk/vrTA== -SHA1-Digest: t+iUE39QJXMWCMX6LSVNttQ1r1w= - -Name: chrome/locale/es/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 2AN1fF2x7MuF0bHakI9pbA== -SHA1-Digest: ZQfI/8gAabB8pwylWVjU8gmP1v0= - -Name: chrome/locale/es_AR/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 1NLIfrpylqsu2wvaASQLPQ== -SHA1-Digest: 6iiitj0DWgDTM/XeaVnv8RxFTPA= - -Name: chrome/locale/es_AR/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: t197vjqc9+soRaRO2fbMFg== -SHA1-Digest: tZPETRNxL06AyoL+1QvoL1EcdRw= - -Name: chrome/locale/es_AR/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Gzt/GQ8IBHq/rN2GgV0aPw== -SHA1-Digest: y7dWPMSq5SUWR0U3hbSwiIYUKlg= - -Name: chrome/locale/es_CL/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 27M+BMd8ck6h3ZK58AshZA== -SHA1-Digest: WtmCpbNCWUekg/yy5RHq9Sh49yY= - -Name: chrome/locale/es_CL/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: ku02cJMU/CU79CCHjm68hg== -SHA1-Digest: YU/tSs5/QomJCk2jWGnFVaVRkUE= - -Name: chrome/locale/es_CL/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: +UfF4zLiXupqbEGdlIyDmQ== -SHA1-Digest: O0nzY52MgvHQ5Qw/JAkRf8rsRcQ= - -Name: chrome/locale/es_CO/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: sT8WfKeuCmwlXtLpKBrh9g== -SHA1-Digest: BgjNVBirz5hOR/QyZxhc/Igm6cI= - -Name: chrome/locale/es_CO/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: S3Sa+bBVNs2GQvqez4PdQw== -SHA1-Digest: NHaw5kmOifivBjtE//sO4YnFFJw= - -Name: chrome/locale/es_CO/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: ySvXAsxdvaxxN00GOdwaSQ== -SHA1-Digest: 95q8CXJa0vbvXY3qQpwLBzv3Ia8= - -Name: chrome/locale/es_MX/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 20VT00KvY/8+aOt+EL9NDA== -SHA1-Digest: VzmSPDlfA180I7M6CT9KIZ3K27g= - -Name: chrome/locale/es_MX/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: rqUA1PeluG53R1isxCa2lQ== -SHA1-Digest: U3LmGREUSHdlSJXdxHth/MwJV3U= - -Name: chrome/locale/es_MX/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: pIv+TbnN9kT68q2GunLqDw== -SHA1-Digest: IpSPkrtINr4YHBPVevzgwOCx5F8= - -Name: chrome/locale/es_NI/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: yfo7YQeeQ66zBw59nBFIaA== -SHA1-Digest: amF5uU+jEDSlVdXfDCdz02fZr0Y= - -Name: chrome/locale/es_NI/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/es_NI/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: jfitnUpdvsWwJ3JxBjohGg== -SHA1-Digest: i3jufc9C9o2N98F2HpEpUn0tni8= - -Name: chrome/locale/et/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: RUVbCphVi//AfFcQ1FihbA== -SHA1-Digest: 3zGpHhctDUiakqN8sqNpi8JYyFo= - -Name: chrome/locale/et/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Mx04kEuG4w0velOssyehoA== -SHA1-Digest: TM0g8+S/1iPvtCebuuIFluYODAg= - -Name: chrome/locale/et/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: IJ4NH1rf3JukYDVhbzdFAA== -SHA1-Digest: 43ZpSCgGRLmP3aNoHHjeFVpfaPM= - -Name: chrome/locale/eu/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: v2cOX4l6MRmigIjOSSMdDg== -SHA1-Digest: X5Wkf0ZJx33PrRHAUZWnTvDIz/0= - -Name: chrome/locale/eu/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Dpg9ZDE+K/Qxz6MHg2+H9g== -SHA1-Digest: 65XPAH6P2S0bCMPl8NacLrauulM= - -Name: chrome/locale/eu/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: SxQhm/CpUtMLnp4xyRO6eQ== -SHA1-Digest: aOp2ToPN/20aHh4K9cNEF9k9pes= - -Name: chrome/locale/fa/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: B9sLOLwvjeU56SEuLwA4xQ== -SHA1-Digest: WkdgExeXUo0YO1wFehvw1cgzmqI= - -Name: chrome/locale/fa/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: mGj2i2la6F155xMsd5kpQA== -SHA1-Digest: OuPLXb/wCTU7bSq5atIoquEzbKg= - -Name: chrome/locale/fa/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: /LXeOLF4ZfAEjOqOu10jew== -SHA1-Digest: oQhzbFAhEixn7dzTuy3MrrRugXI= - -Name: chrome/locale/fi/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: LO7mezOYG6OvH5bVD7SINw== -SHA1-Digest: C7BIxY4J/FR9KdDnwKPmdcmCy2s= - -Name: chrome/locale/fi/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: bMFYJJYyZNxJh9OJT8XFIA== -SHA1-Digest: ElhnambE759W6e/4hZnzIA6HrvY= - -Name: chrome/locale/fi/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: eHDtz3NDVNSAvyNKhlUhnQ== -SHA1-Digest: vp/idYkSRVaGqgusuKxyf8MjQMk= - -Name: chrome/locale/fil/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XrjBritmx+31DTwCsq2rwA== -SHA1-Digest: C/pHU1r/rwB32rXrEG3tynNpHP8= - -Name: chrome/locale/fil/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: hLhz85d1SEz5SK6wh7bwZg== -SHA1-Digest: f4j5eAOz/wsJPMS6o3xafmTXa8o= - -Name: chrome/locale/fil/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: DPJl8bozbl7SYC0CNsmYoA== -SHA1-Digest: qbKc0ZE4sX+XoKcbnabQcjXV9oQ= - -Name: chrome/locale/fo/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: SoIcSaI1B0gpG9+DebgtTQ== -SHA1-Digest: p8xj1l0H7/VVBlNIIKxIxkP0rDY= - -Name: chrome/locale/fo/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: bnmewhOUCJnKrhIMw7McbQ== -SHA1-Digest: G6fG9naOamJIThQcTfWlMyqXUXk= - -Name: chrome/locale/fo/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: SazPXSZl0Kn1DTBCSvrZEw== -SHA1-Digest: eWCdOIKeRSDiPZ7YYqSAjVb8JSY= - -Name: chrome/locale/fr/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: G3tDCgEMeWoxVtc8QuprOw== -SHA1-Digest: l0BQ0+eTJY7YVyiIftEl8IVcl5U= - -Name: chrome/locale/fr/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: R9wsIdvmqhFNrPReDZGKrg== -SHA1-Digest: 4WyZM1GLYzR97qd1OlBWtFvj07s= - -Name: chrome/locale/fr/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: SPv4n0XWaX+yGaa4CmuIhw== -SHA1-Digest: v5IvebT2RwgessxW7rlPfoBnL/0= - -Name: chrome/locale/fr_CA/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: LRSLhTx//TCi0F1si/8CIw== -SHA1-Digest: qplkBCC3XPT5oOfiGOUXo/72kk0= - -Name: chrome/locale/fr_CA/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: R9wsIdvmqhFNrPReDZGKrg== -SHA1-Digest: 4WyZM1GLYzR97qd1OlBWtFvj07s= - -Name: chrome/locale/fr_CA/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Fn+75+WAFz3kWjW0RM3wpg== -SHA1-Digest: MgoskYdDFyI+UiIlmBPcZfd7mMI= - -Name: chrome/locale/fur/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/fur/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/fur/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/fy/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: mWPgKrpSvqJYm5FtDv9TNA== -SHA1-Digest: kDfAx5aTvwb/UE+2BLSUxe6aiFI= - -Name: chrome/locale/fy/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 0iFxqKUaXCHvjSKB2sLubQ== -SHA1-Digest: KUE4+4xLxabVD/RR6f+bxIqTktw= - -Name: chrome/locale/fy/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Ph4d+XSKtqpFHskZ+aNm2g== -SHA1-Digest: TJ5/GODoHHzq+w1GlgCTxFYfPbo= - -Name: chrome/locale/ga/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Wsqpzu9T68AzkGygAuMm6Q== -SHA1-Digest: MxIa0s013pPMZVyOoiILafkk0T0= - -Name: chrome/locale/ga/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/ga/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/gd/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/gd/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/gd/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: oprdByTcKArNoAO0dhvOuQ== -SHA1-Digest: gxapAuLR9Hl/MattV/255AVF5dI= - -Name: chrome/locale/gl/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: QU8EswmZvH1hLbnEjpyNng== -SHA1-Digest: QYYJW8ABCYgArYub6wYHEVsIgQ8= - -Name: chrome/locale/gl/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 9JqPJj30dSgHjkgjb13yiA== -SHA1-Digest: ejP9WEgsZU0j0Q14th2R2mVc/IQ= - -Name: chrome/locale/gl/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: pt4hSbfv5YBKDtWzS0otLw== -SHA1-Digest: iF1/CrQStETJxcQMGTfjjOmkolM= - -Name: chrome/locale/gu/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 7BhbbNubJs/sblFKizMn4Q== -SHA1-Digest: e5lL7LDoXFRdZPFh4haEk9GBIyk= - -Name: chrome/locale/gu/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/gu/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/gu_IN/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: fUz/5PMiAcxDTvMYFjjjHA== -SHA1-Digest: OI3QZZGYwyKNWXq/wGBRis9QvNk= - -Name: chrome/locale/gu_IN/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/gu_IN/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/gun/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/gun/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/gun/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/ha/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/ha/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/ha/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/he/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Mv964Tl/Ra87m+PcrvudAQ== -SHA1-Digest: 2LhrT3DP4PrEuXuh+ZMtANQ6HAQ= - -Name: chrome/locale/he/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 4VqU0HrsUoh/aDDth1Qj9Q== -SHA1-Digest: dfMsIopYlJN006r/AzK2oY031Kk= - -Name: chrome/locale/he/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XulV0v1lVxSwzNXn5O/quw== -SHA1-Digest: VIPh7P1XAF+d1pS8X9p97ikyhCA= - -Name: chrome/locale/hi/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: d85PSY1GLqpfPwUch2Idig== -SHA1-Digest: NzmJKW5IFYPcDrd137aT+TZYmN0= - -Name: chrome/locale/hi/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: +4BZM2tBVdmfXr2LMMAWAw== -SHA1-Digest: mU3F6oBavOGN7+sEogTwTDkhLCg= - -Name: chrome/locale/hi/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Vpg1E34mBD0rbNeQH/3vsw== -SHA1-Digest: ox39/cDNLNx91ddhl2J0p4ORBqc= - -Name: chrome/locale/hr/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: JQD/sZvXjxmb4ZnxgbJBkw== -SHA1-Digest: EYdjd6fpggP26XoqbdcfQXnD738= - -Name: chrome/locale/hr/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/hr/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: JSAkBKxW/QHLYU2ihoa3NA== -SHA1-Digest: ui/FpFXIFAb3harE9U24QFkj+C4= - -Name: chrome/locale/hr_HR/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: xtAp0cQQVE/t7Izg3JXZqw== -SHA1-Digest: wNg1jN0XoxfUYCjPzsJE7wFp7PY= - -Name: chrome/locale/hr_HR/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 2v+DcfUNfPnz53j/tC2psQ== -SHA1-Digest: gl+zC8tzOdLOuwXJqY3oVtAkhbc= - -Name: chrome/locale/hr_HR/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: cfnlFxqppvNtr6TiGV+0PQ== -SHA1-Digest: MicMo3hBKxnEYc9QJv/x1wEEaaI= - -Name: chrome/locale/ht/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/ht/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/ht/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/hu/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: zKMPOvIhmITgBzX+lY+wBA== -SHA1-Digest: yxHYAIgSGEWgjy5qLiw6m49EhIg= - -Name: chrome/locale/hu/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 5g+PYjspSeEAuFavnhkmsA== -SHA1-Digest: +suJcmHMbglRrfOuYI5VL7c5S5g= - -Name: chrome/locale/hu/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: dt+eQfUDIli/ZcgRsSZrVg== -SHA1-Digest: 1tkZ17evA2V1v6VYvPMaDc2Ixk0= - -Name: chrome/locale/hy/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: OyuswA+bltNEDoRLU3o9LQ== -SHA1-Digest: /koZgsROfObcm6oJv7zrkm2O8rk= - -Name: chrome/locale/hy/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: uRfxJw28QF7kV/yRn7OtGQ== -SHA1-Digest: 53+6RIrbMrAT0biUEcfz6pjAAn0= - -Name: chrome/locale/hy/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 6y4Xb7iGSeuuUnhgF8wKMw== -SHA1-Digest: 763afPzitpDb6pHej5+8BCcVCVw= - -Name: chrome/locale/hy_AM/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: u2XO1hrb7HiIZHQeO1KKOg== -SHA1-Digest: 1xL3+VQY+ODQJEBatCQ6sr1dNAk= - -Name: chrome/locale/hy_AM/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/hy_AM/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: JIPujla3pDgt7HD3WRr06Q== -SHA1-Digest: daF8/qDlckCVuw4Pl/EiMZcftyE= - -Name: chrome/locale/ia/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: /IJqyYGWFcSyl+4QW4b14Q== -SHA1-Digest: 6UJgyDVeJL4YyTFX4sBCc8PWG0k= - -Name: chrome/locale/ia/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/ia/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: BVDxKblCch7KWR+Cp4nr5Q== -SHA1-Digest: jBjkpT6gWgExjNYzbOvRsj7SxoQ= - -Name: chrome/locale/id/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: qT7AYdESGn0nykO6v20pHw== -SHA1-Digest: 2zcSN3ygabW8jKxsFHO3gngKazg= - -Name: chrome/locale/id/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: nIazzo6ZVcyR7QVf1ldoVg== -SHA1-Digest: Z/Cz/e+N/Z4LsHb//71imDrWA7Q= - -Name: chrome/locale/id/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Jp3RgsYEZH1WLp5tasYpqQ== -SHA1-Digest: Ja/GbGGajT9UM/Vf6/ZcCN2fvnM= - -Name: chrome/locale/is/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 2IjpvJChjKDl5gi8S+Wl/A== -SHA1-Digest: CVa1UbHp4aY/Qsm7kLdn3gYcMDg= - -Name: chrome/locale/is/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Vgb9tuwyi0nU8aqZSGgQ4A== -SHA1-Digest: Z35OA/U0YcvDXFUYNI+l6NGQlgk= - -Name: chrome/locale/is/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: ZyaK1MEBXPRlV5lrSPgYbg== -SHA1-Digest: XTIk8T+ZgeD/0EZcG+07mdlBkpk= - -Name: chrome/locale/it/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: bLRZv67660LzcmgiwBVUSg== -SHA1-Digest: dc1dc0CxUnLJX3AWgQQ9vLKEqXQ= - -Name: chrome/locale/it/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: hTg05Q9CVQ4Z8MlGSjF04g== -SHA1-Digest: gPRrF/iF/AkmoXMQ32k/clDikso= - -Name: chrome/locale/it/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: vGfd68HNd0xrGHwrD6WenA== -SHA1-Digest: 4UiEsTLkXAYWq5lxdQTOilfg4bk= - -Name: chrome/locale/ja/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 8VT8VykR4ndGWhpDI9yFUA== -SHA1-Digest: qpfyODA8FEmFivs4EkFXzAotsJE= - -Name: chrome/locale/ja/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: mgEBN/VRGCQngfhHZTYqCA== -SHA1-Digest: 1RAHMOc+d29QAKSXrXSWGVGRWYc= - -Name: chrome/locale/ja/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: VQGulZ5zGPueuYwZqwZigA== -SHA1-Digest: Zn0TVKk4qrxOJ/pWx6iEi9iBpms= - -Name: chrome/locale/jbo/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: u2XO1hrb7HiIZHQeO1KKOg== -SHA1-Digest: 1xL3+VQY+ODQJEBatCQ6sr1dNAk= - -Name: chrome/locale/jbo/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/jbo/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/jv/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/jv/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/jv/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/ka/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: GvKTEKTXPraeZd+pdWArrg== -SHA1-Digest: 1SiqZ00suknMwEWqfm3ikw+vdZw= - -Name: chrome/locale/ka/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 2DOhXNct6qawoi8Wi/g9Kw== -SHA1-Digest: 6/Dsbjc0oZF7S7dof+y0i4BhMew= - -Name: chrome/locale/ka/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 0CWmUrSpiLi0e2YpSbXlPQ== -SHA1-Digest: Lm98WGxrzpU31XQB1psYok3sQWg= - -Name: chrome/locale/kk/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/kk/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/kk/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: QT+KO17Nci0AJAGtBnUVpg== -SHA1-Digest: sF7Vm7l88m+gi7PqlUyysNXz1MY= - -Name: chrome/locale/km/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: M9ZWOHyV8hV3Ine1fpxgAg== -SHA1-Digest: 7ei79ecj2e6S7mgBfFbe/1bnmcw= - -Name: chrome/locale/km/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: tPSDcmHV0pA40oO2p/OP/Q== -SHA1-Digest: ZWmEHf7TyiDR4oYBjhyReUoNENg= - -Name: chrome/locale/km/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: GsDhn77ZLv1lyuoT6qYFRQ== -SHA1-Digest: kJE9ojsNrCSskngluWsXOqXTSag= - -Name: chrome/locale/kn/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: gzRMm8E8jXvWwIPdB0e0Ag== -SHA1-Digest: zIFttmHoBepT9R3IvoHBG9ev2go= - -Name: chrome/locale/kn/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KDasH80ASwsGFTBg3JakPg== -SHA1-Digest: XOEQjUOZhjPsNik5EDfWnLY8ZyQ= - -Name: chrome/locale/kn/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: iiOIe00Y0kQ8ThT2cRAXhQ== -SHA1-Digest: ciXS3K8yC8HHIPQP8GZWfTe59zA= - -Name: chrome/locale/ko/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: NU+M5h3es80rAbQeimlzmQ== -SHA1-Digest: DMJuKM6NiQ6ljqeL5Njsq7NlCDQ= - -Name: chrome/locale/ko/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: wKv/GI+ZFYjky/pXwwRzFQ== -SHA1-Digest: Kg9jVIQ2HcuYCTFTugG6V8VoyEg= - -Name: chrome/locale/ko/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: HU9nXtcDTcxP0tTpJf9+hA== -SHA1-Digest: WmDu2SAH6My2MUZk0ZglQRAMjO8= - -Name: chrome/locale/ko_KR/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 9EJ5/FqJNaWtYsYgwHqHTA== -SHA1-Digest: tlcByaW2EDYlhQcRYMQK53mukZ0= - -Name: chrome/locale/ko_KR/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: f+cDX1veh7GedFmEXRsbmg== -SHA1-Digest: wn5Dem8Kqjhd44sBdCmvhk9y3zU= - -Name: chrome/locale/ko_KR/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 22qgVL+HquN1R/b7jBP1TA== -SHA1-Digest: Bjp/GS0ZuhNlcVf4NI3e57q8b9E= - -Name: chrome/locale/ku/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/ku/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/ku/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/ku_IQ/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 5BOKbsuCivyn4PtdpJi2Vw== -SHA1-Digest: XVzK8ICp5YQUSw691ia6+C3AUbY= - -Name: chrome/locale/ku_IQ/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 88GheqGanitadLK45jCR6Q== -SHA1-Digest: mjdYWhJtPh5Lm6FSUB3GtJz+0lM= - -Name: chrome/locale/ku_IQ/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: wInZBDmsrfzI30lkwoxnvQ== -SHA1-Digest: 5emXj7G4aihfVOc2B3N6fYtiplk= - -Name: chrome/locale/kw/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/kw/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/kw/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/ky/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: meSieWU/pXdf0EW0gxU8oA== -SHA1-Digest: t+POWoQ0Mkf9CoUOHL15cwii3N0= - -Name: chrome/locale/ky/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/ky/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/la/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XNM+LN/AXtEAVY6VVW2sDw== -SHA1-Digest: VIYRr06MTFaIUM0y5mfESQRBk3s= - -Name: chrome/locale/la/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: W4bWVVmyOMMtqxaDuBfF3A== -SHA1-Digest: km2cnVJUfbRXW6LXvPBw/M+fHuU= - -Name: chrome/locale/la/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: vfcan0XirIQxNBqnRaFwuQ== -SHA1-Digest: 9p6ev/RukbVgQY01w7ZjZb3cfDQ= - -Name: chrome/locale/lb/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: fBH+pqE70MbaSedlFxs8Gg== -SHA1-Digest: YFVS36x+SKZBCNHiCOgwD9Hawew= - -Name: chrome/locale/lb/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: uEwrmXkQ1hSHTAjDTmwIEA== -SHA1-Digest: nGUcOH8EaQaRumYvO6Bd8jMsx00= - -Name: chrome/locale/lb/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: HhI9CdH+GTVtAQgUZMakaQ== -SHA1-Digest: ALWZTiMyCBIHIq5blZDZ6TIODYw= - -Name: chrome/locale/lg/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/lg/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/lg/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/ln/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/ln/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/ln/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/lo/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: wGcUw7cq1rV6n18/AECZVA== -SHA1-Digest: d7XHRfIW6CxfDJ6S0MFQHw88NI4= - -Name: chrome/locale/lo/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 3pDJIzn4KucqRE4Z4j604w== -SHA1-Digest: 4Tfj4CW0UhVqJFodhkQwDAsEs4M= - -Name: chrome/locale/lo/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: JE3oESy9J6EYk0DkX7fytA== -SHA1-Digest: 72gqUdCBYaEkJ6EjNN/9yKVacUQ= - -Name: chrome/locale/lt/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Rvvll2P4dqiW5+425TyQzw== -SHA1-Digest: T0xVuAUO1ZZn+LmrTLLyetECBGw= - -Name: chrome/locale/lt/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: PzQ1BMMgOjEnwsOvPTz1Ow== -SHA1-Digest: bNaO89GdYUSLmLqIPvNlWEQZILQ= - -Name: chrome/locale/lt/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 0/c9vnqFxJx57zV5+SrrIA== -SHA1-Digest: WiFQ43ZlDmxqoK/XQou1yJDt4a0= - -Name: chrome/locale/lv/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: RWS+6zQg0PxRyzHX6O//QQ== -SHA1-Digest: ZTt8jjdBfZXwqy1EGV+xoc+MtZs= - -Name: chrome/locale/lv/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: F/TUbk92mmM/31oSB7bATA== -SHA1-Digest: Xm1Yg7zAg/POeJIYdV0Y6LM+834= - -Name: chrome/locale/lv/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Du7oW4VzcmYt5aZT8sAOTg== -SHA1-Digest: 8+fy38n0N4k+4BMVgz5rXMn/AMc= - -Name: chrome/locale/mg/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/mg/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/mg/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/mi/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/mi/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/mi/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/mk/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 0uIHmv5jM57RuNTl4Um9Vg== -SHA1-Digest: fwzRvGuxJSw+4iPMgD3tTxgNgd4= - -Name: chrome/locale/mk/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: /9Q3388kQaNWKXhomQCK8g== -SHA1-Digest: 5HAJL8FDcJjbOrAEOCMH4Tl4ilk= - -Name: chrome/locale/mk/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: N2bCr4XLtFSyjPXj/kSAkA== -SHA1-Digest: chz4/vdA7AByGJlOih03zoCuPwM= - -Name: chrome/locale/ml/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: TMeNXCFi6vLS073nWTCj6Q== -SHA1-Digest: pOXfekth1IauPfYhFAyB4Q9X0Fw= - -Name: chrome/locale/ml/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: nEIybj/AYZY243ChjeMt5w== -SHA1-Digest: 3laMspwCVVNqLQWIaOTnY6+mgQk= - -Name: chrome/locale/ml/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/mn/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: cNFQqvnv8rMffpzyTpaiog== -SHA1-Digest: SMMzSV20sOBSQxlcpd8MJrkDOXc= - -Name: chrome/locale/mn/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/mn/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/mr/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 17QhkXMcvAR4WYWudqE43g== -SHA1-Digest: cDx9gvBC0t0I3skf5Tj9d6TC71A= - -Name: chrome/locale/mr/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: qD8itWYxfslpATIXUKxNfw== -SHA1-Digest: 0sornCxFARkh3y9kYxXIHrguOqA= - -Name: chrome/locale/mr/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XVHo6F8EKASKG9nWiKawBA== -SHA1-Digest: RIFhf8IES3HNx+RxnOE3oVgz7Zc= - -Name: chrome/locale/ms/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: T4ZR4viMIw5OKZI3t8JkKA== -SHA1-Digest: pP4xYuQBNtO/u+RdQ8rksSjTr/M= - -Name: chrome/locale/ms/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: JSS3FARi65XslQa5SDB16Q== -SHA1-Digest: fYOX+8CyYrFIbb+AWYrN1O7W7UI= - -Name: chrome/locale/ms_MY/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: HbBQCS74vkvIk3b7Jvl56w== -SHA1-Digest: gWs3iQx0jFTz2IjhqP3G9yIkdTw= - -Name: chrome/locale/ms_MY/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 9IFlxgFWG7N37F15EPtIpg== -SHA1-Digest: LM8W64eIuAkaqqnLygTcVcSag3M= - -Name: chrome/locale/ms_MY/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: K4Iugdw8dCFfgEnGOg5ibA== -SHA1-Digest: Umlsnc7Xmj36de1+RsgrwOmXqYU= - -Name: chrome/locale/mt/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/mt/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/mt/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/my/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 82ZKdJvAWoOpYrgdkrSI7Q== -SHA1-Digest: ej9rfD4+v5/LXkYoS4k8uYOMv54= - -Name: chrome/locale/my/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/my/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: kM882ex2hbYDre3xRToDhQ== -SHA1-Digest: cRdqRXM2u8s9vw0VAFEGpFJG0dw= - -Name: chrome/locale/nah/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/nah/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/nah/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/nap/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/nap/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/nap/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/nb/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: cIUqpRgab/XdZ0esE1LT4A== -SHA1-Digest: KC5VREHdBgzkIcB/2yxhtNYsCcM= - -Name: chrome/locale/nb/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hd7KBQu0J8fhl5lbHgrtMg== -SHA1-Digest: dojP3adjsJ4YLk3jW56ccmQQOFs= - -Name: chrome/locale/nb/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: YVv+8wcxGnprb0rso+Fzqw== -SHA1-Digest: OmNdk9t0pMRv0bbNvsASxilak74= - -Name: chrome/locale/nds/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/nds/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/nds/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/ne/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/ne/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/ne/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: pfJrD7S/XgulsBYIeTTc8g== -SHA1-Digest: ObhtCDb1nIInr5TABmRe7QScg98= - -Name: chrome/locale/nl/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: jvsoyLURaTWaeK3VE/+AbA== -SHA1-Digest: jbvf4plYJAjtx8vmguXFt/rIsaU= - -Name: chrome/locale/nl/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: UnAlbkCtkg0z/e2xLucsZg== -SHA1-Digest: /xTlMI5yZFSN+7f88+5jw80yrzM= - -Name: chrome/locale/nl/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 9CJQSah09XBerDrFrei+Wg== -SHA1-Digest: TWl95SCELba/2YmUEK+YAv8sUCQ= - -Name: chrome/locale/nl_BE/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: JSud8TvUT3JJY6xmYgyMFg== -SHA1-Digest: fCsNfy23OICNt/i4JTFRuPBLbnM= - -Name: chrome/locale/nl_BE/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: YUaHn0mIW0f5ZSI8cAKIbg== -SHA1-Digest: bWMMPvccpQCDH3D4mz9vvhtqjYM= - -Name: chrome/locale/nl_BE/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: R0TwAODuSLPLyIPIXC10Jg== -SHA1-Digest: Fp+4no/koAOnPxVpMo9wW2GEwyA= - -Name: chrome/locale/nn/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 8GQa8WnO5/19eP78G/XTGQ== -SHA1-Digest: lS/y17fKtwyrYJwqGwfzVRFvc7I= - -Name: chrome/locale/nn/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: aJQYaKKWmSTHl0uupU/54g== -SHA1-Digest: Y48T8JTpb18wN6sH5A+h6zg8+pQ= - -Name: chrome/locale/nn/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: PzKZ6TQfiHGXrVALPADB7g== -SHA1-Digest: FDzhPnPSDMU7kMjUlBjRjHN3D1I= - -Name: chrome/locale/nso/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/nso/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/nso/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/oc/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/oc/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/oc/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/om/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/om/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/om/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/or/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/or/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/or/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/pa/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: teNzjEZp3ErNDY0X04ou9w== -SHA1-Digest: NgRy2IjFp+xMO9NgOyy9KtmDC+0= - -Name: chrome/locale/pa/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 0ATF2PhHDK48+KdZTVEVmg== -SHA1-Digest: TvTCefKvaQQFAnIamLsRiTZx6Iw= - -Name: chrome/locale/pa/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: HwCe4oNLmpwGLxGWpUJu8Q== -SHA1-Digest: jYMWda13xj8i4+qWT19DlV40mRs= - -Name: chrome/locale/pap/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/pap/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/pap/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/pl/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 7rJPjQ40xKy7j/S5RBVAEA== -SHA1-Digest: /Spq9+YIl+Oq0zJwfuJXO2szfY0= - -Name: chrome/locale/pl/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: PXr9Mp8ALJyigDFgjgGmzA== -SHA1-Digest: jWXBXrLZ+dd4DqDwGBfXdD7m1fA= - -Name: chrome/locale/pl/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: wPtzD/j21t03kwnnM2IU0g== -SHA1-Digest: qOQKrt2rq1D8aUy4Q83gF6Q/8bI= - -Name: chrome/locale/pl_PL/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Rj/CN4/vQ4LybAP+Ryhg4Q== -SHA1-Digest: tZw5725a2jKDv7ZU97T5UKKg2tE= - -Name: chrome/locale/pl_PL/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: zme7LDRZOJxYhP/bwo7zmg== -SHA1-Digest: mdHj+D/94Xzf3psYTbD5lEI/fBA= - -Name: chrome/locale/pl_PL/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: RztU7nkCSHzFw83ybf2vFQ== -SHA1-Digest: JbeRdNZHmf8GRWEwHeNCRlgodPY= - -Name: chrome/locale/pms/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/pms/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/pms/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/ps/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/ps/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/ps/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/pt/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: opa9ZoDHuLCvFZJ+XLmuVw== -SHA1-Digest: tB92//OaaMf5YZiEDmrAULZ8DEY= - -Name: chrome/locale/pt/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: S7iD5naV0TObELgi5cvCVw== -SHA1-Digest: dUIXSH3Tl2NudF6dkSKLSWzSmYQ= - -Name: chrome/locale/pt/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Cid/P3M1u6JVbgQ3eZuIzw== -SHA1-Digest: MdnBf3L6D+RtOyNv5CP1UHpwEz4= - -Name: chrome/locale/pt_BR/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: scBVF5IDBC+0onvCVafJmg== -SHA1-Digest: NlvkmyCAOtK27pggjAEMR0TM5ms= - -Name: chrome/locale/pt_BR/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 3N3ins+wGJJwRT//Nv2pkA== -SHA1-Digest: hsgMxmkh19jD8vWSJ+kVcZPYr9U= - -Name: chrome/locale/pt_BR/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: CVMEUEuf11PunpPaQje83w== -SHA1-Digest: hvRj+XKKphXFfCaY0LnggZiPJ3c= - -Name: chrome/locale/ro/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: v1ZQZaPeUfsyp4qDs4Diew== -SHA1-Digest: xFt8++Yutyxz8wZ35IpfuCEU7Sc= - -Name: chrome/locale/ro/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XN8nSkJSkgzKS5bevtxjdQ== -SHA1-Digest: xFlQvzeLOlNLNqGLMWgiejw1ZFc= - -Name: chrome/locale/ro/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: DR+ECAAwnaZAP/2D7KRyoQ== -SHA1-Digest: cM2h6XorZY3CuQy4Wk709ZalNz0= - -Name: chrome/locale/ru/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: x7jWLaw4KLH8UH/r0w+ASQ== -SHA1-Digest: OfFHNhpH+w8Hcq4NpuezuBuT3W8= - -Name: chrome/locale/ru/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: /F6+iAJKnq+Vy3yS+my1xQ== -SHA1-Digest: FEfKGHJ6uq9b5GuKrQxESCV0x5Q= - -Name: chrome/locale/ru/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: qpofC/71BQnTTUv7K5ocCQ== -SHA1-Digest: NSeF+Yl1w3p9HboGoYtdyPBs81s= - -Name: chrome/locale/ru@petr1708/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: FcI9lfAphSVyq0fQ4Nv+nw== -SHA1-Digest: 9lEJcWtVhv8Rum8CXReRr1XqPFw= - -Name: chrome/locale/ru@petr1708/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/ru@petr1708/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: gSjUeVoTvaEb1tTFJCutpw== -SHA1-Digest: box3vl3XacHQPuLjXz8znhT+hZI= - -Name: chrome/locale/sa/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: u2XO1hrb7HiIZHQeO1KKOg== -SHA1-Digest: 1xL3+VQY+ODQJEBatCQ6sr1dNAk= - -Name: chrome/locale/sa/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/sa/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/scn/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/scn/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/scn/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/sco/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/sco/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/sco/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/si/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: u2XO1hrb7HiIZHQeO1KKOg== -SHA1-Digest: 1xL3+VQY+ODQJEBatCQ6sr1dNAk= - -Name: chrome/locale/si/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/si/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/si_LK/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: afHwXmakk8h+cbEMzCftkw== -SHA1-Digest: knplIRS+011mMRBAD5vWcH2kyQk= - -Name: chrome/locale/si_LK/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: QBAbWMiANOng5gZjBYUbqw== -SHA1-Digest: rKpiA5gu39+Zn16haQ+EXOTgLT8= - -Name: chrome/locale/si_LK/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: /r152YECXcrDqTjVKCUPeA== -SHA1-Digest: HHqD8AsyR68mRnyINVQicYSsF0Q= - -Name: chrome/locale/sk/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: isEbJVnHE0UZr2oylzmgow== -SHA1-Digest: a2bqndvAuqdY+1vY/4p/g32RgdE= - -Name: chrome/locale/sk/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: lKnwxA5on8Kz/cswf5VylQ== -SHA1-Digest: o/4FN4e3LkR+hYzKsObVmm/zPck= - -Name: chrome/locale/sk/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 6qfkKT7I7OrIOPoWfrOm0w== -SHA1-Digest: C/M4h0f97dPcA398sipJy5ikSAs= - -Name: chrome/locale/sk_SK/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: yv+++2VVhjzDCvBF+yze5A== -SHA1-Digest: onPRe6an0M+RhTz6TycYZfg2F2I= - -Name: chrome/locale/sk_SK/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: HwneA92Jwc/9F8IbKHAakQ== -SHA1-Digest: 9LHSU7IBve61RwkSqilrZy94FR8= - -Name: chrome/locale/sk_SK/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: +L11Tqyy416WF53TGaFBjw== -SHA1-Digest: yBzn/tqFph2bebB9w6XwwlDokt0= - -Name: chrome/locale/sl/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: oKi9JjEK5XTbuAr2jIal4w== -SHA1-Digest: TO7wKxqlvHsN3F4Fz6GBHvxHty8= - -Name: chrome/locale/sl/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 54LHG55uLY/z88dQ1dAJSw== -SHA1-Digest: NrZ5lkWAwvoXiGeJyzLQfuDaI44= - -Name: chrome/locale/sl/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Ue9/httDMMeRZa/QiDTfvQ== -SHA1-Digest: jzX92Y8fjniunf9M65Ocz39Db9o= - -Name: chrome/locale/sl_SI/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: js5MALUMVAhWXmm4bkoiQQ== -SHA1-Digest: +X4ZAz4fm5pZKqG0SXwU7olnXGY= - -Name: chrome/locale/sl_SI/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: xZKb0eCw4JpOyYrn/6vW3Q== -SHA1-Digest: jEZfDS1qqJ6eTzoIOCEhsCQYjv8= - -Name: chrome/locale/sl_SI/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: vu/WZ4FQP14OQNtIWE1gUQ== -SHA1-Digest: 0KweLkZO8zbyrBzD6eWJjpgx8GI= - -Name: chrome/locale/sn/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/sn/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/sn/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/so/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/so/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/so/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/son/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/son/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/son/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/sq/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: RWnTLEg2z5AyL0tEc+UuiQ== -SHA1-Digest: iMjnWGIzyGpnJDYhsJcsZTUOQFI= - -Name: chrome/locale/sq/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: BppRzqkk0XBOJ2MrjiMrrw== -SHA1-Digest: HbwqM/DzGmq8SwbF2WmVaZEeQAc= - -Name: chrome/locale/sq/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: NKN8As0wtXOj+FJ0mGBDHQ== -SHA1-Digest: btVYnIy0eoelb8Age83pYrnRpNY= - -Name: chrome/locale/sq_AL/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: fuVaFHH7T0FcROIcYlAMfw== -SHA1-Digest: HVqbAEi7ocWsQSH0IvyfceATh6Y= - -Name: chrome/locale/sq_AL/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/sq_AL/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/sr/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: yp7AcnQaZj41CMJc2h4VDw== -SHA1-Digest: z0+mAPBEyMiTUjTW3Wq/PW3Jubk= - -Name: chrome/locale/sr/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: ZIhqn52pYMLxNhWg/B6KUA== -SHA1-Digest: ZKa0o1wlSmE+AbEIC3cl7AsZFgM= - -Name: chrome/locale/sr/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: +zFvG7y/JFqaXv7DS/Qd1A== -SHA1-Digest: WMvcAZ3M1QWK2NMRqMIQxliITqo= - -Name: chrome/locale/sr@latin/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: LLQGcvcGx7y1+Fq5Oz5SHQ== -SHA1-Digest: VM3svJYwbtR4v5v0WgbBTOSd0uM= - -Name: chrome/locale/sr@latin/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/sr@latin/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: ZNI97feqRtbDaRb5vQJ1/w== -SHA1-Digest: sr+tDbYwOpO/hxIOMPDMQiyGl50= - -Name: chrome/locale/st/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/st/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/st/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/su/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/su/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/su/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/sv/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: i4lwyBiJttoGfLwwGTnY6A== -SHA1-Digest: hQ5gIgI0xGjYlNn+a9y1utfPVoA= - -Name: chrome/locale/sv/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: dC+4uR5af9cZ5SmCp6LUMA== -SHA1-Digest: w56f9qGZ9z6TtiAtko8dgwwxnPQ= - -Name: chrome/locale/sv/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: oRhjFTNIafuNUxgYnBLYKQ== -SHA1-Digest: DPJJJtJxPtVldcWFrOS/NjLlfCQ= - -Name: chrome/locale/sv_SE/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: T4ZR4viMIw5OKZI3t8JkKA== -SHA1-Digest: pP4xYuQBNtO/u+RdQ8rksSjTr/M= - -Name: chrome/locale/sv_SE/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: JSS3FARi65XslQa5SDB16Q== -SHA1-Digest: fYOX+8CyYrFIbb+AWYrN1O7W7UI= - -Name: chrome/locale/sv_SE/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 3rXVOdQg/xpjPErJOGQZaw== -SHA1-Digest: qnrzobq7E/EtGV23OWJiBN0i6jw= - -Name: chrome/locale/sw/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/sw/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/sw/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/szl/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/szl/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/szl/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/ta/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Jnb4PDmyRdWtE9gLkKz1MA== -SHA1-Digest: qv2c79Y/Osut48mzA4edM/cOKeQ= - -Name: chrome/locale/ta/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 5tAXMVfcu/PyTiffFzyd4w== -SHA1-Digest: 59KjWJla9s0hI20sEzRYy6zanew= - -Name: chrome/locale/ta/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 2rQU2YQk3OdqU+I+iZfXTw== -SHA1-Digest: Y8WJ/4avyAarZPGj3+fAzmW9Mkw= - -Name: chrome/locale/te/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 7stWRAn0RadTV9bzdl8W8w== -SHA1-Digest: VvJ8UxHrnPw3bn5ib3l6uIWXQDE= - -Name: chrome/locale/te/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: n04vKzRhOVHNql47agNuXg== -SHA1-Digest: LOsiYDCqvh/z6u7bn0Xh0hJ5hAI= - -Name: chrome/locale/te/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/te_IN/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/te_IN/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/te_IN/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: YZmfpeKwc8C+JgfoagFODA== -SHA1-Digest: TnHPVuAz43ENCk3XbcwqHerr20g= - -Name: chrome/locale/templates/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/templates/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/templates/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/tg/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/tg/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/tg/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/th/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: qBws56socxymN7Hu5eiGng== -SHA1-Digest: A+NnvBr1pqcr29oxVnkaBmqFFCk= - -Name: chrome/locale/th/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: RCpodyFHcI5pdxfQ1Nb48Q== -SHA1-Digest: 2pBlA+gmJFu6hEbwXhuzuoyWG/s= - -Name: chrome/locale/th/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: vB404xStUBj8Ajf5sKh+Tg== -SHA1-Digest: rjnzHinIGRSLXNa4R1N/ZZS1r54= - -Name: chrome/locale/ti/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/ti/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/ti/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/tk/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/tk/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/tk/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/tl_PH/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: rvM+Qj+qM28lf7tK2w1XVw== -SHA1-Digest: DlhqAEuVJjBmNq6vEuMGgmcbRKQ= - -Name: chrome/locale/tl_PH/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/tl_PH/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/tr/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Yc/UhLn0Kf/KOpY4r6FWLQ== -SHA1-Digest: wXejoXsj41AeF+rwXN6KeG40b/M= - -Name: chrome/locale/tr/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 9uqFBlVoGQ8MPerkAD4u0w== -SHA1-Digest: C7QNZOZU2cEbZnHTLS64j5X2IPw= - -Name: chrome/locale/tr/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 5JdzO9IFTh+CGZQPfuyKsw== -SHA1-Digest: egXlgvdicJgDMnOOCCsXSodu4Q8= - -Name: chrome/locale/tzm/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/tzm/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/tzm/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/ug@Arab/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: HkT3q/n9PTm5BiViUxKMww== -SHA1-Digest: IXo9qkgMy+f4tCOBWrNYanJk9Ig= - -Name: chrome/locale/ug@Arab/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/ug@Arab/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 80GORaPaVmdy2uzwShEsHA== -SHA1-Digest: w7SqlFA6dWLcaXB2fpr6280I4Lg= - -Name: chrome/locale/uk/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: HjR9oAlzHlu662VvHz7+ZQ== -SHA1-Digest: xBujmUppDEDm5kWfGQjkdpZy5aY= - -Name: chrome/locale/uk/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: A3GITxTpo9e7ZcwrtWJwsg== -SHA1-Digest: hhkL89cihRWgrZLdC7rhKsPbMRo= - -Name: chrome/locale/uk/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: hOW3uWq4k7vBLH8KoeaCBw== -SHA1-Digest: EnkqRWIWS+95AQrtOYszOObOsP0= - -Name: chrome/locale/ur/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: blU5xSf8SqdxMhP2eXuBCQ== -SHA1-Digest: hzmctHLdMoCHUGZ4SYNC7MKwk3g= - -Name: chrome/locale/ur/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: VQfwVYoD9ke3MADuxVkdlg== -SHA1-Digest: rcxfh1ZUfAhCV1BbIungsqwfDtU= - -Name: chrome/locale/ur/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: m94i8ZULjChNY5//dbX9lA== -SHA1-Digest: vyt5fV9Wcutm7d18nP9Bb3MU0ck= - -Name: chrome/locale/ur_PK/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: nnVGmUPR81POiV9dLcaprw== -SHA1-Digest: chDIsKIB9pACCgIM5WfFjD50w7w= - -Name: chrome/locale/ur_PK/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 7xxsm3E/sDID3u700mOi/w== -SHA1-Digest: zrbYYQl7hdGbNr2gPh7JOXfAeD8= - -Name: chrome/locale/ur_PK/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 4CKi6Oazl2mQ8t+9lSiHSA== -SHA1-Digest: 5RE9UzA7gZDDsf4PXvQe6bNMvvc= - -Name: chrome/locale/uz/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: b9NBvoFe9ycJoX6YYdX7iQ== -SHA1-Digest: UFwG+s7r+ZR2QH1RFay6r+UGTFI= - -Name: chrome/locale/uz/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/uz/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: neJgGhlvW59GyqD6ZFt2Sw== -SHA1-Digest: I7PnU6BpTr1YtI1Yz1JgRFlUmT8= - -Name: chrome/locale/ve/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/ve/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/ve/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/vi/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 2Q8lK8NuxFoxwLBMXmXO5Q== -SHA1-Digest: 0IBEdOOAk5i65McTBqmtmqSq6Ec= - -Name: chrome/locale/vi/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Rdy+S/u3FG3izPdvm5I35Q== -SHA1-Digest: r+r1PemJtNXGH3aURZXQ1t8oy18= - -Name: chrome/locale/vi/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 46VZVsLhHRTknxXaM+dw6g== -SHA1-Digest: doKx+rzs6gtDuk3KBc/Z/FzR5rg= - -Name: chrome/locale/wa/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/wa/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/wa/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/wo/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/wo/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/wo/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/yo/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/yo/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/yo/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/locale/zh-CN/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: rKWxL7CKaKEkCgEsnEVLjA== -SHA1-Digest: hazhcl+QV/cBbr7WSTlvOMAlPYU= - -Name: chrome/locale/zh-CN/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 7WRDyMx26GnCJRG0z+R3IQ== -SHA1-Digest: aF/qWGBba52OatyWDhlqkFVlX8c= - -Name: chrome/locale/zh-CN/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: YWMkr4TUHtYPXGKwyvuklQ== -SHA1-Digest: hm4D1wtxncd/pRy7KEHThSIdKsg= - -Name: chrome/locale/zh/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: yfo7YQeeQ66zBw59nBFIaA== -SHA1-Digest: amF5uU+jEDSlVdXfDCdz02fZr0Y= - -Name: chrome/locale/zh/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: YtS2epu01TazFPbFmpsI/g== -SHA1-Digest: Cv7tQJ78lyhjEuq0PYh91QMdi8E= - -Name: chrome/locale/zh/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: jfitnUpdvsWwJ3JxBjohGg== -SHA1-Digest: i3jufc9C9o2N98F2HpEpUn0tni8= - -Name: chrome/locale/zh_CN/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: rKWxL7CKaKEkCgEsnEVLjA== -SHA1-Digest: hazhcl+QV/cBbr7WSTlvOMAlPYU= - -Name: chrome/locale/zh_CN/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 7WRDyMx26GnCJRG0z+R3IQ== -SHA1-Digest: aF/qWGBba52OatyWDhlqkFVlX8c= - -Name: chrome/locale/zh_CN/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: YWMkr4TUHtYPXGKwyvuklQ== -SHA1-Digest: hm4D1wtxncd/pRy7KEHThSIdKsg= - -Name: chrome/locale/zh_CN.GB2312/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: yfo7YQeeQ66zBw59nBFIaA== -SHA1-Digest: amF5uU+jEDSlVdXfDCdz02fZr0Y= - -Name: chrome/locale/zh_CN.GB2312/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: YtS2epu01TazFPbFmpsI/g== -SHA1-Digest: Cv7tQJ78lyhjEuq0PYh91QMdi8E= - -Name: chrome/locale/zh_CN.GB2312/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: jfitnUpdvsWwJ3JxBjohGg== -SHA1-Digest: i3jufc9C9o2N98F2HpEpUn0tni8= - -Name: chrome/locale/zh_HK/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: pcFB2z4hSkisYNE/o6WELw== -SHA1-Digest: 5JYdZw5kMHPoCt3vDTdlwAPWDtw= - -Name: chrome/locale/zh_HK/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: cSLK8YkCWAUqH7mLUo3Lfw== -SHA1-Digest: 1QP0dHgCiHig8fevJj7o22n2t+M= - -Name: chrome/locale/zh_HK/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 3CCd4/VtAkeu1Hdl0TP2jA== -SHA1-Digest: VYLF/rP4SmJUZmXKagkFsxIuFR4= - -Name: chrome/locale/zh_TW/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: c9eq0hnKzN5oM0YC9Uv0rw== -SHA1-Digest: H6JVDh2Psy4l6qx/RFs1gnn85OI= - -Name: chrome/locale/zh_TW/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: vKvQPNjZB8uJqtkVobQSKQ== -SHA1-Digest: DSj1lTjtWEe8XQ8Tzk6MtPk+fCE= - -Name: chrome/locale/zh_TW/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: bYXoQZMMz/OFsgFKUbmczA== -SHA1-Digest: GFJ5aPMhyUI/cwjTY/Cv3imKs5Q= - -Name: chrome/locale/zu/https-everywhere.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: KiF/M9tJWS/WE6YBbbXd+g== -SHA1-Digest: qvsiOoBXEcLppCFcsKSn647PF7g= - -Name: chrome/locale/zu/https-everywhere.properties -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XDAzRIKmfyAo2rnb6Rw+Kw== -SHA1-Digest: FyxdJkAsnBOyiBFHWAthoWu72Ds= - -Name: chrome/locale/zu/ssl-observatory.dtd -Digest-Algorithms: MD5 SHA1 -MD5-Digest: Hl9eTckPVjvEcAIp5mY7aA== -SHA1-Digest: xrBgVJCRqLeGb/wPIqZ7EdXqXgU= - -Name: chrome/skin/cross.png -Digest-Algorithms: MD5 SHA1 -MD5-Digest: nPkEpS6iSX90slXcKHifvw== -SHA1-Digest: P8AohkDMq3X+rSYT7ekpjpgFfEU= - -Name: chrome/skin/https-everywhere-banner.png -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 6pmsZHeVd5ELqIkYafTyGQ== -SHA1-Digest: gJzlY5jujTVgBY7rPScU4duAYO8= - -Name: chrome/skin/https-everywhere.css -Digest-Algorithms: MD5 SHA1 -MD5-Digest: FkK/14XwaKuuZgDLPiI8wg== -SHA1-Digest: E++ONlTEwVgUZMYMEhJ29ooTGnM= - -Name: chrome/skin/icon-active-128.png -Digest-Algorithms: MD5 SHA1 -MD5-Digest: lIl6t/HENidgZJkkLmHO8w== +Name: manifest.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: X0hd0tplhCo2R8s3OE27fLAZFD8= +SHA256-Digest: iKk69TG3OJJNjjAJPTe72S+qXa4k/xL8yKmPzAGmaxg= + +Name: package.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: HQyF0Be9Z+C72YzyWk6LqTSCxkU= +SHA256-Digest: 1v7I/u/oNho1Z8rtRLepk7VY9i0r8EktoXSvvy92SsE= + +Name: _locales/ace/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: ofcr0jXThFpy+75hHp2/Q7a13Iw= +SHA256-Digest: fzhILeKwf6EXocFvocLJMDTVFY7948hKtI6L6UG8GFU= + +Name: _locales/ach/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: ofcr0jXThFpy+75hHp2/Q7a13Iw= +SHA256-Digest: fzhILeKwf6EXocFvocLJMDTVFY7948hKtI6L6UG8GFU= + +Name: _locales/af/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: iOMFMT97+EoNCW6DRomntg8GSHk= +SHA256-Digest: cw+OPqn11qIyL1P5cFnPmxrYTVKQ0oPX10+1KjXtNoc= + +Name: _locales/af_ZA/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: ofcr0jXThFpy+75hHp2/Q7a13Iw= +SHA256-Digest: fzhILeKwf6EXocFvocLJMDTVFY7948hKtI6L6UG8GFU= + +Name: _locales/ar/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: pxQQhQSkkjd9EAlMdZmvk+qmXhg= +SHA256-Digest: MORqa6PigyGRYrjsjuUVk80TAKErKzIZy9G5UnPV20U= + +Name: _locales/ar_EG/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: ofcr0jXThFpy+75hHp2/Q7a13Iw= +SHA256-Digest: fzhILeKwf6EXocFvocLJMDTVFY7948hKtI6L6UG8GFU= + +Name: _locales/ast/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: VdPNPPiC8Ro2JsmoBFkdW3TAy2c= +SHA256-Digest: 4zrpaArMxcBnUHIyLdenD/CDBXFXDgnSki4HzzEB0J8= + +Name: _locales/az/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: 3+BLldWYu7TK8cGkwWGVp8z0EUk= +SHA256-Digest: hfU635JcDvcEJzmbg2zkxSrfMEe0SVNvq8U9wj1SvNg= + +Name: _locales/be/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: /7FQnv3lG2OqZFTdc3/fmuOznX8= +SHA256-Digest: OrCo5OOtp9o91snpAQUrgUG1KbmJ7ScDZ3tncnnV2po= + +Name: _locales/bg/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: uvPzsM24ej+LdWMNASNfYE1+tBs= +SHA256-Digest: Z0AMZvlkzgDfeSMbZQ+AdhZryI8kmsdpYpvOz8lM9TI= + +Name: _locales/bn/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: dVoXHkj2UXzj4ctLQ7g2+cQu/o8= +SHA256-Digest: hTaM5b35bOJhTSV38ajtBg58bV5TdC47xttlYiZM/aU= + +Name: _locales/br/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: ZW6ty00kj6yNkgcEnnvyQjjgrWg= +SHA256-Digest: sTBK8ujpW+kR/M9mXe2ShZUChO9Ytu7gKVYQkaOwrZU= + +Name: _locales/bs/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: Vg2wDGtsbEZthKbRz9yUjj7Q8YA= +SHA256-Digest: vQgF2n0ktL3LZ1rqMaiZvCxRRt41I6PLvVHRJYvHb8o= + +Name: _locales/ca/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: /COeM2de5nZc7h2xYUdMcQqMeJw= +SHA256-Digest: otyh6c/nvuTuTZfmLv2FfYlbI6fkf9ibQ4zZYWll2Bk= + +Name: _locales/cmn/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: ofcr0jXThFpy+75hHp2/Q7a13Iw= +SHA256-Digest: fzhILeKwf6EXocFvocLJMDTVFY7948hKtI6L6UG8GFU= + +Name: _locales/cs/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: PSPcBF4f2cciaztX/tDK489gG6w= +SHA256-Digest: nhqVZbEdeQLOEfTuC4WQZqq4nVX6TLgsumEei+NDJjo= + +Name: _locales/cy/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: A9MVuoq+YeTB4AJ7qXIW2t/2reU= +SHA256-Digest: MMpP51GLMadXFrMHt8O5C2q5x9ipotM+rbjBCSAIa0k= + +Name: _locales/da/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: 6EA7b3gcz67OK5/NhNpqiv8JsRw= +SHA256-Digest: XvGrh0Pr/cIN0+h7dYRhsWrE2sbpvCGejLUk5g2cb+M= + +Name: _locales/de/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: 5DxSzfj3HAO19N93skW8074DacU= +SHA256-Digest: 6RRsp8DV8g7u3majB5LXV/HNNz9wltPP3/drftJO+t0= + +Name: _locales/el/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: cDgo3bT3QsyvgW6sNV1v7VhD+c0= +SHA256-Digest: oBZLruNBa+ryEI2AaAM1IuFsmVxF73+deXjq7P6lunM= + +Name: _locales/en/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: ofcr0jXThFpy+75hHp2/Q7a13Iw= +SHA256-Digest: fzhILeKwf6EXocFvocLJMDTVFY7948hKtI6L6UG8GFU= + +Name: _locales/en_GB/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: ofcr0jXThFpy+75hHp2/Q7a13Iw= +SHA256-Digest: fzhILeKwf6EXocFvocLJMDTVFY7948hKtI6L6UG8GFU= + +Name: _locales/en_US/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: ofcr0jXThFpy+75hHp2/Q7a13Iw= +SHA256-Digest: fzhILeKwf6EXocFvocLJMDTVFY7948hKtI6L6UG8GFU= + +Name: _locales/eo/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: cTvPwrTLEg/CLQ7vP936VGhWMBA= +SHA256-Digest: 6Tb3+j9lXyFMz+bKnJ+MnaIRIAaOIgFGgGFeLUWIHB0= + +Name: _locales/es/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: wdTXKRaKo3+lt2F/WAfhHECWQ0Q= +SHA256-Digest: 6LOKxRvSfOFCftbixNJLi3ILtnXblwVUdYoxy0KkUKE= + +Name: _locales/es_AR/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: jNe5tt2sg9FYb/CklhOA/EfCNso= +SHA256-Digest: ejlUkVhdh38l0SQqB2iuiCGTJgg/HnUZ6YB1BIowEUI= + +Name: _locales/es_MX/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: 8r5iYER0e+Z9xsXkisoWpgiV6wY= +SHA256-Digest: nNkWHeZ9eKPmXKJTHyKHmuqMNO9w7KdMoCpNtykVJSo= + +Name: _locales/et/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: RuKFi2LDlh1aZ/sgjAQHk9Dr0aU= +SHA256-Digest: kEGCDq7xq97+kttCcjDTrhV+IRBdvTdokVw5x4MjUrg= + +Name: _locales/eu/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: CfUVBO8uVqaEVg2rfNiEzhOOIxs= +SHA256-Digest: U4RrQUCTj9jzxLMjadoUZlclwDWv7StaWVTd+VfnN2I= + +Name: _locales/fa/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: Zi0T7F3MTegvevGxycGERaO+y+k= +SHA256-Digest: FppLjcJVwKmgWnEVG8DUj/OfX/mPJaRmMHYdzdQ4Qk4= + +Name: _locales/fi/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: Ijd1g6JcPeStcajdi2p49GxtL/s= +SHA256-Digest: XtP/3kb3g9EEZXkGRsQh5oEGWm5XdCCVHsY4eBWi2Lo= + +Name: _locales/fr/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: 4Kl28lQ4AxcFKuI1qPanfKBIO1I= +SHA256-Digest: JR6Ytgifw1eNfP5eEY9DW2+NyBy5t5m8jcfG1eElpos= + +Name: _locales/fr_FR/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: /siGONOTKZIcZRCh3Gjklyi6FpA= +SHA256-Digest: JOAxkWbsFpRl+/JTJ9Ii5P0ixY1UOkuZHRAjMb86eWI= + +Name: _locales/fy/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: qYt2G1hP0Cs203jLvxdBLgv4MGQ= +SHA256-Digest: cNu7cS359ufs/B5EXOMBJIvVbfB8V9sQpFxorgrRxxg= + +Name: _locales/ga/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: oNZb00MUZHcEuMm1CKosXijaWgw= +SHA256-Digest: knCNuU+/o1k+pt0GMADpt3nuzqz17npT4Olsoj8EL7o= + +Name: _locales/gd/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: ofcr0jXThFpy+75hHp2/Q7a13Iw= +SHA256-Digest: fzhILeKwf6EXocFvocLJMDTVFY7948hKtI6L6UG8GFU= + +Name: _locales/gl/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: WBkm2qWTCShjdj+kFKqzxnZIoFg= +SHA256-Digest: Y3K9ZWg9+2pL1r34SJhQYu26Viki5wqVlJmLmVfhQdo= + +Name: _locales/gu/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: cxaffBOuU3Z+D/AJ6TQAXNFki3M= +SHA256-Digest: pTrp2BlrTKilZg+sRGpeuYQVSrInYg7QtVBMrLANj4Q= + +Name: _locales/he/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: zshsgYzIwWg+jtvY4ingp8vw64c= +SHA256-Digest: BxJrAMOZ4VuFbXDVimpAN0xMEQBNZZkrmFWnTAXibks= + +Name: _locales/hi/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: QRpvL2rosEDoTdx6BxxGGJpSVmo= +SHA256-Digest: liYeP2q1gkXphKzxxJNsqTh7+T1gzKsee+6vReQMdhs= + +Name: _locales/hr/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: x/3lhb7z7CVqZZdn3midgSjn5tY= +SHA256-Digest: HHx+VP0HB42dWTZ38cR004DWeQpFRgaF5TULrZkatwI= + +Name: _locales/hu/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: 4eKsxvmbG58FfD5yjfm4b3cr+g4= +SHA256-Digest: i9dh17H4Ruxjb3oxA4GPRJvRPecXQf3U+qaBlGj2qps= + +Name: _locales/hy/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: QzXAZ5katx2Ye+1QFyFHLcMJROM= +SHA256-Digest: HSYKniubHesccfXGMZYre5wJva2MRztMYAhMHMA2+Z4= + +Name: _locales/ia/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: Mm0o9mYuk3kCk5WbKuPCFU7zpqo= +SHA256-Digest: 6ORLVTr02qalRUcK63Ir1GXjw/p+v6nrK9/zI66QL6o= + +Name: _locales/id/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: 9QctIupOryS8eWp04EJHAWNYj7c= +SHA256-Digest: NfVmJxGSWj5onjEn4//gX5P8n3QnqBXXP5Z9Lf+578M= + +Name: _locales/is/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: /P9T+vTThdd7i1pmGcYD6nOkY44= +SHA256-Digest: L1OQmFHZBhJHVvNqOh3610u1MS+SLQd9NHvYu2FkRVE= + +Name: _locales/it/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: QfqJFvpr/CghH/0gsO9h+sYKy1Y= +SHA256-Digest: vtdELbvnbICfJVOrxFLjaJq656uK7EK2pTcecgf4dNc= + +Name: _locales/ja/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: 7zImT7HvkvCQpdObYY520peFtDs= +SHA256-Digest: mjSxBaiB+SkXyspN3wi6aodH4rYgcp6da2exdiEcGU4= + +Name: _locales/ka/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: fHsD070Q4aHyxYhCNfQIYT3MKS0= +SHA256-Digest: yeIbx8SP8Wa4kvXo6Lzx9wrRj1LynhWFd2nbPUqZEsk= + +Name: _locales/kab/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: ofcr0jXThFpy+75hHp2/Q7a13Iw= +SHA256-Digest: fzhILeKwf6EXocFvocLJMDTVFY7948hKtI6L6UG8GFU= + +Name: _locales/kk/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: 8Sdjq0KMj4ANwq94weNnUQYtI+s= +SHA256-Digest: bTKB9CkWNhqawbJDhs1/GX4/z4j0Vg4cx31zKw44f5Y= + +Name: _locales/km/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: w5qIgDP+885pZJMl8FyA2yGUt1A= +SHA256-Digest: sjEA2JwKdlS1D1hQxKQedb9DYCwOSDhyxusv/cUTkvE= + +Name: _locales/kn/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: MdvnoS3SrWGvRWSyvuRqoWvRiWc= +SHA256-Digest: TaiiWa/PbBrRxhqRBYvFWtGmyyy/ovdu/yhHq/w9jk4= + +Name: _locales/ko/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: GqRtNAUwxrLDluWtx2LqjXzg+50= +SHA256-Digest: McBNqK4HaGAS0dEAMzOD8lrwecj6CFapkKhRgZpR2qU= + +Name: _locales/lt/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: cBHtxCIgs0M0vuawqYXF7qBAPZo= +SHA256-Digest: RvNH3JOZbIBt6KKPOdP91hxzpQQLbYxJxWeg36ncftU= + +Name: _locales/lv/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: ljoDEg01zL32eJF/+OECLuPZkoY= +SHA256-Digest: +pRZCbp3zfzTbM0UqTpiJd23dSymtKZxiZlqD9zNZEw= + +Name: _locales/mk/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: dHL1X/r5TNAy5AXujh48jmaBZMY= +SHA256-Digest: Fs8OnAZZqmqEZHAoYINC1qjLdniDuxjboibfVPvcxek= + +Name: _locales/ml/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: yjvR4hUOwBfI4/NLchJglHMznUY= +SHA256-Digest: /LzzQ1QQeGqOJGuwyf7hF1ynGzYojAJy8SjnfpqP8nU= + +Name: _locales/mr/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: VqbEpeDWqRRSDXueR7OXzV5Zi0c= +SHA256-Digest: DXWyMnlhjkPGEZgaBzsqFEU88IvmcrerTATrEqY+fqY= + +Name: _locales/ms_MY/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: pNrnIUMZ1KSdavj7IpvgaXtMW1Y= +SHA256-Digest: WjOfy4w9K1h+lN9Ld1JdzPwXrpU3TYqIpcQLVhzSsKM= + +Name: _locales/my/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: kPgWIxR2rynJkEykmF/T0clmLcU= +SHA256-Digest: pVtnX3UxISFA90i1ivkuL01oGhoah2AqzAJosnkZMCw= + +Name: _locales/nb/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: xCCz+aU59J3pUBQrTu8Sookw3Xc= +SHA256-Digest: aHFiDv13/G909I851CrVRUPMSAyxLABNIT5TkFPWolw= + +Name: _locales/ne/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: ofcr0jXThFpy+75hHp2/Q7a13Iw= +SHA256-Digest: fzhILeKwf6EXocFvocLJMDTVFY7948hKtI6L6UG8GFU= + +Name: _locales/nl/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: uHnFt32GmeGIWlUhV2oc0YwDBoQ= +SHA256-Digest: EPKDxQlVhuigsi6at+OnLBBaPbqbNuYdbHu3nEx6Lv8= + +Name: _locales/nl_BE/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: vpN/Tt8RJNjNrjzQhvaCLnu818Y= +SHA256-Digest: UMIycHh4OpfT6XEX5IkOJbBhBEmykK3QzilVLqxXbas= + +Name: _locales/nn/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: /uRXmVZ2hcY4LDKBmhSwYPb+v9A= +SHA256-Digest: /VRfKB4L2T8XMwAUR9UCXed+uPckbOsicnTGYCRT62U= + +Name: _locales/oc/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: LEIoVVmbjin2D0Bj5PimJENOmCQ= +SHA256-Digest: smQMMM7KSF/9lT0ryK07dEWxGtf3tYjF58E/kOIlNKY= + +Name: _locales/or/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: Ps0uvWBAvc6crMC3f7ztPoWLYHI= +SHA256-Digest: sX3swrX1p95cHWLBMrKDJ8mCOM/k+g3kR6+vKtjUlIY= + +Name: _locales/pa/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: +P2o0dGSh7jJUtVjUFU70dqtxiI= +SHA256-Digest: sHFd6kvNEbfWPpbLyIutoZkkEm0A9yWhjdbsXZ5YH5s= + +Name: _locales/pl/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: w97eXym45Cju4UUq2hDgfYZEivM= +SHA256-Digest: 8dpWSVyqOkrMcQs4Ub98uEHMtAkwdtuag9kfv31TnwY= + +Name: _locales/pt_BR/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: B9dLWSgVB9XeiQqqE9ceVH+KFqw= +SHA256-Digest: bkAA6J0bp9u83YD/Cea1ggdTUpXBl47Pb/RAgW/QO9c= + +Name: _locales/pt_PT/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: MFTtI6bvZgIBNjfsrsEes5SZWWM= +SHA256-Digest: 6Oe7CSTsLlbxPCEcuVYO5tqvl3/TLquitxYnh40167c= + +Name: _locales/ro/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: iZA4eB6bVN8w8JNfUaLiB04ZeEU= +SHA256-Digest: esk4A/1PXdU5yjo/Y/f3zS1fzrVQUIhGPFyAS1eSw+k= + +Name: _locales/ro_RO/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: iCzvlQJKPogorBRk1ZaRc1PHSzk= +SHA256-Digest: f6sPhnOcfaNWIONa4Ow+YtnAM3GXnWIG1WXDRHOtves= + +Name: _locales/ru/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: 7icD6gFZZYuaRFlZHpM3v4S4rbw= +SHA256-Digest: PsIJMB4ploNqnBAmnqfFHDXH+zFdu4P6BNZMnIwT0ok= + +Name: _locales/si/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: KM47GTd9GQqAik45v3TwGKzhUqI= +SHA256-Digest: 3PvBqbX4qA1rQB4l+mrxTb6mwA7ssWzrxjn1VJn5peA= + +Name: _locales/si_LK/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: /XRTG3mjOsamcRjwWbYUqmyS+jw= +SHA256-Digest: XbC317Ovdr7RhMsUfhfXDV1yDh+4pz86mQMG1PFGLdY= + +Name: _locales/sk/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: 8g2uM/IilbLetxLlpS1+hm+gb2w= +SHA256-Digest: bnqVDCFodbSbseUbLOrdCwprRMxbpCYHMvVbz/3KP/o= + +Name: _locales/sl/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: MdQaZFkibS04O78qFlB6kmwhF9c= +SHA256-Digest: 9pLwtRZfEy2la4LfIgkbDR/M+nNotJAA5wzEgT+AfyI= + +Name: _locales/sl_SI/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: wFhFU0upAYqmmQI/nRnGEnqP30Y= +SHA256-Digest: qx/D6APKUhcKmNWwCHD/baIjzMFQNTR4/Rt6LvOTQ4Q= + +Name: _locales/son/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: ofcr0jXThFpy+75hHp2/Q7a13Iw= +SHA256-Digest: fzhILeKwf6EXocFvocLJMDTVFY7948hKtI6L6UG8GFU= + +Name: _locales/sq/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: 87nTmcsWpoEAsJTN4/ZFf+01I8A= +SHA256-Digest: POGPrXKN5GuJ59k227ozXns25ogQdzOOgA3azEA1f94= + +Name: _locales/sr/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: zJI0kCSZIB/4rfhaGxg0aUGrbtQ= +SHA256-Digest: tfKdrL6vsCYxRU/QeEvAZC58y6qDuEKkhNi17r1e/8o= + +Name: _locales/sv/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: UI6tx0CmaOkUsjASOmQvxNRkX+c= +SHA256-Digest: WnBcBaT7T7yKHUvac2bn2q5alrsbfEiLOQUXPIQLurQ= + +Name: _locales/sw/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: JSf0a8gCwILGBI0T4d/FfWfIGDc= +SHA256-Digest: Z+oQpHb/T+I2XZ+JVJZW1KMeAP6yK/x9Quts8n64AlQ= + +Name: _locales/ta/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: CW5Q8ok59gE/ZC8A4uPqW4cIfhI= +SHA256-Digest: vOG/RBohVZklUTu6y6cjUWg5RyNIbwaB33kUr5Ko2PI= + +Name: _locales/te/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: N/QOkBiJYvqsksR5+NWuHA0/fxk= +SHA256-Digest: jZC8UbVBsT2RvDZ1uebHtr76/oRaNdlmxLKWLnDaI3A= + +Name: _locales/templates/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: ofcr0jXThFpy+75hHp2/Q7a13Iw= +SHA256-Digest: fzhILeKwf6EXocFvocLJMDTVFY7948hKtI6L6UG8GFU= + +Name: _locales/th/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: QaLDEcDBj6HdEh+eAhQ02DWS81c= +SHA256-Digest: ucjQxKDoCEwzTat3hNNjtMRJ/u85+QK47Rw93C4J8Sk= + +Name: _locales/tr/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: MDXJjWJjdDGjeYfHHa2+LsPj2tM= +SHA256-Digest: vdziBTOIPyWhvyfApPrN8jZMww3lePVgo4zDkwcv9og= + +Name: _locales/uk/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: TargN1mxonMdbvos0GBcCxU0+dI= +SHA256-Digest: 6ZRhyVruPhNEb5UPYCrb/EFcy6ArHSNqxBy4KNEhq/c= + +Name: _locales/ur/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: kUEeTx9OeiESvvWjprUjqluEhZk= +SHA256-Digest: ADAHAHlOUIGXLO2Aj5/it+lavjH4WkbjLV43yI6CO4s= + +Name: _locales/uz/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: bmGV4U+3LA14ZwC5RcRdN5RB+tk= +SHA256-Digest: SPoiBWn8W+vyUJHKfocitJ5y6RjXedgta0HxflAFB9Y= + +Name: _locales/vi/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: GMY5uzc6vq9pP9hqFNGlOgVYZ8k= +SHA256-Digest: OidbjDj9CBSxmM5oW3RagDo6ZNvA+5P9CGN8C0cbgms= + +Name: _locales/zh-Hant/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: NXT6rNViMHWrKSlecajyj80CeIg= +SHA256-Digest: 3zXYNMBhIcIsuhQRzfIAFhV3GdeGZXgyc+h5bFXMZtk= + +Name: _locales/zh/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: Vu5rZrqGhcESvjluy4x3EcMPi4o= +SHA256-Digest: karIDiNHSaijMuQkVkG71+StamzOq9ZeGiQhzwJjTAw= + +Name: _locales/zh_CN/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: HWK9jni02GGBk/XOVpL/R1rs0NI= +SHA256-Digest: Hl+NW/IGzS73WJhUVgY9cPJvMyb0ZomG7k64dzoJ1wc= + +Name: _locales/zh_HK/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: oZ9Ht83pERBafXR1h2mucibzUUo= +SHA256-Digest: Vq5s6nfmwfxvTVQlmjFCHCYlzvJanl+4I8J2h8F0hjs= + +Name: _locales/zh_TW/messages.json +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: yfJJJg+Uan6mqiwEm4W0l5tT+nU= +SHA256-Digest: Xj6MJjfhW3liYqF0UIY6flSaOxnNyr4Urgu2gffF99I= + +Name: background-scripts/background.js +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: GMCKwYZnhsRm4ExhG1q6wY+DQno= +SHA256-Digest: D4ogTIq+ze3hPGkcxzkc2jFho2hACQn3iYc2oaw4egE= + +Name: background-scripts/bootstrap.js +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: TSwjfTzojZXN1Iul+mBttRl/MAg= +SHA256-Digest: WcKbJ0zQK8948MJzbMTTCf807jEGH7Bj8k7CuWCx0aM= + +Name: background-scripts/incognito.js +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: JXSvrJhaxqSgUtXqlm0r21VqSlo= +SHA256-Digest: AnGJOJ4CKWmdFZaWNzvm7NWZjbzCKkdawPc8RZCH4d0= + +Name: background-scripts/ip_utils.js +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: 8RyxTy1FNW0wvKPs+DqKNNZYvV0= +SHA256-Digest: F9Ij1ZyfnpmmCM0W3+WXfaBO/rnUAFZtXc2N305Qod8= + +Name: background-scripts/rules.js +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: 2dd1eq7Y16RvpmADSFGYSFdRvNc= +SHA256-Digest: 9Qw9Xoky6/2DvBn5nza/xBXbjaWkEBI9hPaaqAdQDqU= + +Name: background-scripts/store.js +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: IdAI+nj6uuahTeT28Xx1QJwLveM= +SHA256-Digest: lyCBwe6g79MMTtU1xyGBiIJidhqUsW/9YUXX158t6z8= + +Name: background-scripts/update.js +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: Z/kkBlC2HeS/G5zlAbeiFwLpgIQ= +SHA256-Digest: R1y7pQHEB8w7mNOn0zxEL20mys/8sOZxy5238BzhNoI= + +Name: background-scripts/update_channels.js +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: kA9YO0yjVOE6vw2mpWPePkWyt/I= +SHA256-Digest: L966QoT5hiVg5mzQq9dACJ5o8OVsROxhNRd+LebsAQQ= + +Name: background-scripts/util.js +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: pjJWekzg0QW6/0qYNf1pISXO14s= +SHA256-Digest: 1Cykm0yxo5EZs0+fZWtUPzHa38B6ZalDAOojqu5awgo= + +Name: background-scripts/wasm.js +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: 7pQTqvYA4el8WRX7FjQNUUcMUwg= +SHA256-Digest: TMk4CQYN4lxkG/ZBq+wp4erwwo8knS0H5HHBCa7LW08= + +Name: background-scripts/modules/ssl_codes.js +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: t5DE+asvCaL1VaVhVXbJDQXQaHw= +SHA256-Digest: hGKfRGrQWsXH8+9OfHcHM4I45d6DIIxClYqMSH1oBCA= + +Name: external/README.md +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: DgCQOA7tYbKkLcJ92flagYsm0nI= +SHA256-Digest: So9vbyA/ExcM/wEms+bwz/YVVa2ayDCNnJ5sYJk40tk= + +Name: external/codemirror/codemirror-5.31.0.min.css +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: 6L9PQ9XeTmwE+7WJ29O7oelFX7Y= +SHA256-Digest: fIaQYYF933S7mhBn4vqsgaawzXI4iELVCrvv83rZ5ic= + +Name: external/codemirror/codemirror-5.31.0.min.js +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: iJyQEWjgaJ3IVz2bsX+RSnjLzGw= +SHA256-Digest: yTU67I79B7rqtdoOdsJHDDK/92GDEeGj4+93U41HPgE= + +Name: external/codemirror/codemirror-5.31.0.xml.min.js +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: DMaXXHyF/jzGu8wJN2a1yHxkNHU= +SHA256-Digest: d+N19fPYNZkqDuOxqLM8MHSxTiGDF/j5WLdynJ2D8/k= + +Name: external/pako-1.0.5/pako_inflate.min.js +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: V7Fd/JcXF6Ar68Oa5X3/rO7giNs= +SHA256-Digest: h8L84MNiYQCe/szpOr1i5Cge5x/8EsvaaTlcdG9vOnE= + +Name: images/HTTPS-Everywhere-Logo.png +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: E0ESMX+oJaAutg08/RPfpc3Ix5E= +SHA256-Digest: PKyVOZS7bg8UVeQDG3npTYLKtnB5FgmmdfoW/NC02bQ= + +Name: images/banner-red.svg +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: ZnApE5t/iqGaVc0fdm7I0Rpvdsk= +SHA256-Digest: obGxFfdgfzgg0jj59ThEpLQwowcJCioxsVS/+X7Mtvg= + +Name: images/eff-logo-monogram-red.png +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: 5sbYS58Ze3MdPgDNas/ZnFn128Q= +SHA256-Digest: aPdsjK4CCl3M8HBgqCLA5vu5n+w9cCs75gs0j5x/0Ak= + +Name: images/remove.png +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: Pn9f97i3AIFlAMf420qZNzvA7DY= +SHA256-Digest: 7TrWr2ZkK0faWgDYUz9WtV3voVjEwqjLq0ROGvkU6y0= + +Name: images/icons/icon-active-128.png +Digest-Algorithms: SHA1 SHA256 SHA1-Digest: p71skXMtghXylXMvFLnYW/jPos0= +SHA256-Digest: 1DbMnWBmqaIRzzkUyRpdRzxz8z1HtUGq6RzRKcINuEA= -Name: chrome/skin/icon-active-16.png -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 1Fop3R06naS2pmzzYfiXvg== -SHA1-Digest: 2LAo5aMiS2XA+kBYbZhqbhCDjcc= - -Name: chrome/skin/icon-active-24.png -Digest-Algorithms: MD5 SHA1 -MD5-Digest: XPOBXrFzDvzl87XUNEpawg== -SHA1-Digest: fBPwtBrj46yxkclep2525QuC5v8= - -Name: chrome/skin/icon-active-38.png -Digest-Algorithms: MD5 SHA1 -MD5-Digest: AOpKNhC5hOWlgXEIWgONbw== +Name: images/icons/icon-active-38.png +Digest-Algorithms: SHA1 SHA256 SHA1-Digest: EleX4C/tgOj+W71fueie7ZoXAAY= +SHA256-Digest: YgkTENwvpAo6Bb9WsTrUr+CfKY+gsQfq6uPoGdMw6kI= -Name: chrome/skin/icon-active-48.png -Digest-Algorithms: MD5 SHA1 -MD5-Digest: HnL4MsWBAIFEbOdSxgbs3Q== +Name: images/icons/icon-active-48.png +Digest-Algorithms: SHA1 SHA256 SHA1-Digest: VVqz4q4/4awX6PXZhnQmGFkAiqc= +SHA256-Digest: pfkIfbdzORmTjUTLb2SsmaLv4oafijkSttiU3lUcKmM= -Name: chrome/skin/icon-blocking-16.png -Digest-Algorithms: MD5 SHA1 -MD5-Digest: ShIv41bY6hO8vDpyLgW4kw== -SHA1-Digest: XGtqToyxNs0qHY/60PSFtyaePnA= - -Name: chrome/skin/icon-blocking-24.png -Digest-Algorithms: MD5 SHA1 -MD5-Digest: A1J3pJh5dZr+5wjky4JW/Q== -SHA1-Digest: RIb345kQJlI+L8jsYonF54LAbmQ= - -Name: chrome/skin/icon-blocking-38.png -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 1lt5NoNjnQyk9V8eu7AUIg== +Name: images/icons/icon-blocking-38.png +Digest-Algorithms: SHA1 SHA256 SHA1-Digest: IebllmIP/cUmB0piMroSEA7HnHc= +SHA256-Digest: 9oP7jvbkH3KM4VG+kAnItkvsT00o9/KKHvhexTJHCD4= -Name: chrome/skin/icon-disabled-16.png -Digest-Algorithms: MD5 SHA1 -MD5-Digest: qtc1JfC3g8Ht2hTTodiNIg== -SHA1-Digest: zHomPbUeJsuDtXbD402lHx9EfqU= - -Name: chrome/skin/icon-disabled-24.png -Digest-Algorithms: MD5 SHA1 -MD5-Digest: l6OWvk5vWV3gjFPZxiYSug== -SHA1-Digest: Mpky8kVcsnTLMhU/w2tNUVyvBbA= - -Name: chrome/skin/icon-disabled-38.png -Digest-Algorithms: MD5 SHA1 -MD5-Digest: zqGLqPGDGsV629Ubs5TxxQ== +Name: images/icons/icon-disabled-38.png +Digest-Algorithms: SHA1 SHA256 SHA1-Digest: PJqzR54BFgNofExLbYn8DMEyvzE= - -Name: chrome/skin/icon-inactive-16.png -Digest-Algorithms: MD5 SHA1 -MD5-Digest: gv/BwUwrHNoSnaw92FwOKw== -SHA1-Digest: +5AvP4rQBkmBXIRKcGdpElRwNjg= - -Name: chrome/skin/icon-inactive-24.png -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 2NN+k7XNfQSJxlEJMgIpmg== -SHA1-Digest: QlcSngaIYNT9+l2BibDgD5q3L7g= - -Name: chrome/skin/icon-inactive-38.png -Digest-Algorithms: MD5 SHA1 -MD5-Digest: YSmKAAExed1mAkd5gfQzog== -SHA1-Digest: dF/ofp5XH78/7EMNtvMeTCzpjDU= - -Name: chrome/skin/loop.png -Digest-Algorithms: MD5 SHA1 -MD5-Digest: JhmXqu7bW4uq+9HnGmVpwg== -SHA1-Digest: PQem1uTMEFYpmKO7yn3BMnFSnUo= - -Name: chrome/skin/tick-moot.png -Digest-Algorithms: MD5 SHA1 -MD5-Digest: ewwzDSp1cYrWByO+7sWO3A== -SHA1-Digest: Sg+q8Gn1O6KJu49vBz/IAAUj+CY= - -Name: chrome/skin/tick.png -Digest-Algorithms: MD5 SHA1 -MD5-Digest: a8GmLX+5SSrILGWEISWLKg== -SHA1-Digest: wKpcrCI+KRe71KlW3HJsvtEnKA0= - -Name: components/https-everywhere.js -Digest-Algorithms: MD5 SHA1 -MD5-Digest: TAqejd0kU0tO35AT/MpGqw== -SHA1-Digest: 7RsFZeVPtOz6yQQa0LsCZNtuFCE= - -Name: components/ssl-observatory.js -Digest-Algorithms: MD5 SHA1 -MD5-Digest: 8qWuuppZxsi9tToIGdbvvg== -SHA1-Digest: n9qBO43i8cW3t3+4WNGvzobhaaY= - -Name: defaults/preferences/preferences.js -Digest-Algorithms: MD5 SHA1 -MD5-Digest: EykkJFjpsNoGf/s2FXYWgw== -SHA1-Digest: Y65sMAe8/tAhvaVWqnvGN1fyesc= +SHA256-Digest: 2PzhLQJedFJa+ZOnE/j8r+XELaoYAn5ptQCSyNbmDcE= + +Name: images/onboarding/httpseverywhere-logo.png +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: XYvqYHk+Ebepsvq4U3bo9rYMqQI= +SHA256-Digest: 292a2wZxJ/ltXI+/9OdCzMX2YZnJDWMYUoVOOnU+sUs= + +Name: pages/base.css +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: Yk+MDy/I88Qd0VMzEBIbf0fBo0s= +SHA256-Digest: D7uZfk1BrCzx3HFnEBtdaN0E6rC6pErEZAd1X85xgCo= + +Name: pages/main.css +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: UN8/2mEQ6JZ7MTJiWQN8f77AgP8= +SHA256-Digest: QhiZj5JKVR1gPvtg6EaZxI735GiFeZglzuSkTJpZvpE= + +Name: pages/translation.js +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: QMAZVa3usW8vcXwN2WP4lvIQQxQ= +SHA256-Digest: +qWz2YZH5C1UqzTixYwsS3185+wd+q8Dhlm5czDI54w= + +Name: pages/util.js +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: XzUESMiqZDZv/WRcv+j8f/R/7uw= +SHA256-Digest: tSZjbu7zilv5pujsEyp/+6HCfr7iu+KfoXNiftpAKAY= + +Name: pages/cancel/index.html +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: h94rEtsYrj+TsIBk2x+UqRhOHDM= +SHA256-Digest: Fgv98mLYPbIiOUi3HAw4YktUVkkt+7clLW2IgxTD9us= + +Name: pages/cancel/style.css +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: 0L/xbmBq8hCu58P61j4htTOA4Wk= +SHA256-Digest: ejF/rMWvajSbZFxp0hRT6SzhobQ3aILcf5pN1BTOGEE= + +Name: pages/cancel/ux.js +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: UtFAiW+HLmKUFMV/v2hPR5haiAI= +SHA256-Digest: i3Vc/dqv2XS12us9g1J5f6iMIZC0gI36g5N/FEKX1pw= + +Name: pages/debugging-rulesets/index.html +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: DuBJ5S+QY5nztsCAqOuTgKmu4no= +SHA256-Digest: J4l9PsxyBqZKSYfqo5Zp80vXBJ7mqRVKNS2KoVU9F5o= + +Name: pages/debugging-rulesets/style.css +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: 1DuOcKAihj5zxJ0CIgam4iq8YXc= +SHA256-Digest: 9H1UQpqT3UDDSt2ao6Zgr4iT5o/iQ62HolhTDqNHHCE= + +Name: pages/debugging-rulesets/ux.js +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: IyqmSEBIenfSG4Mk++ciVOvpQvI= +SHA256-Digest: OVzkDGtCe3pg65opGnboDfrFsqFsLJxa5CQxBPA9gi0= + +Name: pages/options/index.html +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: cXwoesX+lTfZgizRwhLvV5iFNDQ= +SHA256-Digest: OzLgxg/tYfU/fSAIHLxBZ/++9W6FgznEEGHflPJ9aq8= + +Name: pages/options/style.css +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: m7GC//67J6ErvL9Wp1FvAUMLk/8= +SHA256-Digest: O5CikoWfyy2E2v3es6BJGltQ+OKfeD/uIYp9xsrqsF4= + +Name: pages/options/ux.js +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: bUAAi8jBxAk5YiNWqSyiXxkSPs4= +SHA256-Digest: WzJSEmMXT7Qi7rKftAFtuD6oRK0bfaLtzqCvtgwJ+/c= + +Name: pages/popup/index.html +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: 5vBn8FGlSOjp7z4UozcN+hnm3iI= +SHA256-Digest: JoShZlQiKjzRj2JxRHXHW4Df2LsKWf568UU/oKVePpQ= + +Name: pages/popup/style.css +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: aPvKt4RXG/BofewRf4CE4mBg1lg= +SHA256-Digest: H6iKtXGZJ/o2chDo+KZtB8VNYdaadxE8+143tDhl3/U= + +Name: pages/popup/ux.js +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: 68pu62q/sp5slQO9MUxCOv+ofU0= +SHA256-Digest: 6VKXwWx0rQ6KoTh0OQ4KpscxkgcW433VAazICjc3bCM= + +Name: rules/default.rulesets +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: hqWsDDcf2fp+r/dTBZqGw2eaqb0= +SHA256-Digest: hnQbXIa2D+1lFh6i13HSkXQyYa/TxpKrPlx3QzgnnX0= + +Name: wasm/https_everywhere_lib_wasm.js +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: ELfS13+0aPyRX67301qNv6fm3pk= +SHA256-Digest: 519ILW7r7LqFtGI6M22GuXDA6xYikE6EngbvlT9//Lw= + +Name: wasm/https_everywhere_lib_wasm_bg.wasm +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: SBxLOV763w4ke4LOL1574PW9hCs= +SHA256-Digest: 7JqJ7u/5t5yGxh8p2+YCmgl+LeoRWQRlDJY9cLxWqA4= + +Name: META-INF/cose.manifest +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: +bvUG+miP05322u9llsWujjkaHA= +SHA256-Digest: 0Rlv88HrG62MD20B3q/kRBPi9i8RxxgbxR5fKNHkV+Q= + +Name: META-INF/cose.sig +Digest-Algorithms: SHA1 SHA256 +SHA1-Digest: AusKfF2Hd6KpGJFyy+AgY3k6fvA= +SHA256-Digest: fk2cPQJETV0QGzKdhH6cQytV8e2iU8Y7jIZoDBzOT7U= diff --git a/src/META-INF/mozilla.rsa b/src/META-INF/mozilla.rsa index 80554f650524..d9e0388cc60c 100644 Binary files a/src/META-INF/mozilla.rsa and b/src/META-INF/mozilla.rsa differ diff --git a/src/META-INF/mozilla.sf b/src/META-INF/mozilla.sf index c049dc91b6e0..98f503350eae 100644 --- a/src/META-INF/mozilla.sf +++ b/src/META-INF/mozilla.sf @@ -1,4 +1,4 @@ Signature-Version: 1.0 -MD5-Digest-Manifest: xWFp9CkfavQoMwsoxfBcYA== -SHA1-Digest-Manifest: 7B0fpcQRnK57o4Mfhf1v9lJfzks= +SHA1-Digest-Manifest: L31wgRQGJBOG3iJjSeLF4dXsod8= +SHA256-Digest-Manifest: S3HRAq2xWZ+ssLk+lltuxaJGsOPVGY0M8JJuWG6J2us= diff --git a/src/bootstrap.js b/src/bootstrap.js deleted file mode 100644 index 57f89e3969e8..000000000000 --- a/src/bootstrap.js +++ /dev/null @@ -1,118 +0,0 @@ -"use strict"; - -const CI = Components.interfaces; -const CC = Components.classes; - -function get_prefs(branch_name){ - let o_prefs = CC["@mozilla.org/preferences-service;1"] - .getService(CI.nsIPrefService); - let o_branch = o_prefs.getBranch(branch_name); - return o_branch; -} - -function get_custom_rulesets_array(){ - var loc = "ProfD"; // profile directory - var dir = - CC["@mozilla.org/file/directory_service;1"] - .getService(CI.nsIProperties) - .get(loc, CI.nsILocalFile) - .clone(); - dir.append("HTTPSEverywhereUserRules"); - // Check for existence, if not, create. - if (!dir.exists()) { - return []; - } - - var entries = dir.directoryEntries; - var files = []; - while(entries.hasMoreElements()) { - var entry = entries.getNext(); - entry.QueryInterface(CI.nsIFile); - files.push(entry); - } - - let file_data = [] - for(let file of files){ - var data = ""; - var fstream = CC["@mozilla.org/network/file-input-stream;1"] - .createInstance(CI.nsIFileInputStream); - var sstream = CC["@mozilla.org/scriptableinputstream;1"] - .createInstance(CI.nsIScriptableInputStream); - fstream.init(file, -1, 0, 0); - sstream.init(fstream); - - var str = sstream.read(4096); - while (str.length > 0) { - data += str; - str = sstream.read(4096); - } - - sstream.close(); - fstream.close(); - file_data.push(data); - } - - return file_data; -} - -function startup({webExtension}) { - webExtension.startup().then(api => { - const {browser} = api; - browser.runtime.onMessage.addListener((msg, sender, sendReply) => { - if (msg == "import-legacy-data") { - let globals = get_prefs("extensions.https_everywhere."); - if(!pref_retrieve_bool_with_default(globals, "webextension-migrated", false)){ - let changed = false; - - let prefs = { - http_nowhere_enabled: pref_retrieve_bool_with_default(globals, "http_nowhere.enabled", false), - global_enabled: pref_retrieve_bool_with_default(globals, "globalEnabled", true), - show_counter: pref_retrieve_bool_with_default(globals, "show_counter", true) - }; - - if(prefs.http_nowhere_enabled == true || - prefs.global_enabled == false || - prefs.show_counter == true - ){ - changed = true; - } - - let rule_toggle = {} - let rules = get_prefs("extensions.https_everywhere.rule_toggle."); - for(let rule_toggle_key of rules.getChildList("", {})){ - rule_toggle[rule_toggle_key] = rules.getBoolPref(rule_toggle_key); - changed = true; - } - - let custom_rulesets = get_custom_rulesets_array(); - if(custom_rulesets.length > 0){ - changed = true; - } - - sendReply({ - prefs: prefs, - rule_toggle: rule_toggle, - custom_rulesets: custom_rulesets, - changed: changed - }); - - globals.setBoolPref("webextensions-migrated", true); - } else { - sendReply({changed: false}); - } - } - }); - }); -} - -function pref_retrieve_bool_with_default(pref_branch, element, default_value){ - const pref_array = pref_branch.getChildList("", {}); - - if(pref_array.indexOf(element) !== -1){ - return pref_branch.getBoolPref(element); - } - return default_value; -} - -function shutdown(data) { -} diff --git a/src/chrome.manifest b/src/chrome.manifest deleted file mode 100644 index 8745305ff854..000000000000 --- a/src/chrome.manifest +++ /dev/null @@ -1,76 +0,0 @@ -content https-everywhere chrome/content/ - -locale https-everywhere en chrome/locale/en/ -locale https-everywhere ar chrome/locale/ar/ -locale https-everywhere bg chrome/locale/bg/ -locale https-everywhere ca chrome/locale/ca/ -locale https-everywhere cs chrome/locale/cs/ -locale https-everywhere da chrome/locale/da/ -locale https-everywhere de chrome/locale/de/ -locale https-everywhere el chrome/locale/el/ -locale https-everywhere en-GB chrome/locale/en_GB/ -locale https-everywhere es chrome/locale/es/ -locale https-everywhere et chrome/locale/et/ -locale https-everywhere eu chrome/locale/eu/ -locale https-everywhere fa chrome/locale/fa/ -locale https-everywhere fi chrome/locale/fi/ -locale https-everywhere fo chrome/locale/fo/ -locale https-everywhere fr chrome/locale/fr/ -locale https-everywhere fr-CA chrome/locale/fr_CA/ -locale https-everywhere he chrome/locale/he/ -locale https-everywhere hr-HR chrome/locale/hr_HR/ -locale https-everywhere hu chrome/locale/hu/ -locale https-everywhere it chrome/locale/it/ -locale https-everywhere ja chrome/locale/ja/ -locale https-everywhere km chrome/locale/km/ -locale https-everywhere ko chrome/locale/ko/ -locale https-everywhere lt chrome/locale/lt/ -locale https-everywhere lv chrome/locale/lv/ -locale https-everywhere ms-MY chrome/locale/ms_MY/ -locale https-everywhere nb chrome/locale/nb/ -locale https-everywhere nl chrome/locale/nl/ -locale https-everywhere pl chrome/locale/pl/ -locale https-everywhere pt chrome/locale/pt/ -locale https-everywhere pt-BR chrome/locale/pt_BR/ -locale https-everywhere ro chrome/locale/ro/ -locale https-everywhere ru chrome/locale/ru/ -locale https-everywhere si-LK chrome/locale/si_LK/ -locale https-everywhere sk chrome/locale/sk/ -locale https-everywhere sk-SK chrome/locale/sk_SK/ -locale https-everywhere sl chrome/locale/sl/ -locale https-everywhere sl-SI chrome/locale/sl_SI/ -locale https-everywhere sq chrome/locale/sq/ -locale https-everywhere sr chrome/locale/sr/ -locale https-everywhere sv chrome/locale/sv/ -locale https-everywhere th chrome/locale/th/ -locale https-everywhere tr chrome/locale/tr/ -locale https-everywhere uk chrome/locale/uk/ -locale https-everywhere zh-CN chrome/locale/zh-CN/ -locale https-everywhere zh-TW chrome/locale/zh_TW/ -locale https-everywhere ar-AA chrome/locale/ar_AA/ -locale https-everywhere bal chrome/locale/bal/ -locale https-everywhere brx chrome/locale/brx/ -locale https-everywhere ceb chrome/locale/ceb/ -locale https-everywhere co chrome/locale/co/ -locale https-everywhere da-DK chrome/locale/da-DK/ - - -skin https-everywhere classic/1.0 chrome/skin/ - -component {32c165b4-fe5e-4964-9250-603c410631b4} components/https-everywhere.js -contract @eff.org/https-everywhere;1 {32c165b4-fe5e-4964-9250-603c410631b4} - -category profile-after-change HTTPSEverywhere @eff.org/https-everywhere;1 - -# XUL gets included in every non-mobile build -# Android has some non-XUL UI that is loaded from the -# sessionstore-windows-restored observer in https-everywhere.js -overlay chrome://browser/content/browser.xul chrome://https-everywhere/content/toolbar_button.xul application={ec8030f7-c20a-464f-9b0e-13a3a9e97384} application={92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a} application={3550f703-e582-4d05-9a08-453d09bdfdc6} application={a79fe89b-6662-4ff4-8e88-09950ad4dfde} -overlay chrome://navigator/content/navigator.xul chrome://https-everywhere/content/toolbar_button.xul application={ec8030f7-c20a-464f-9b0e-13a3a9e97384} application={92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a} application={3550f703-e582-4d05-9a08-453d09bdfdc6} application={a79fe89b-6662-4ff4-8e88-09950ad4dfde} - -style chrome://global/content/customizeToolbar.xul chrome://https-everywhere/skin/https-everywhere.css - -# Observatory does not yet have mobile-friendly UI -component {0f9ab521-986d-4ad8-9c1f-6934e195c15c} components/ssl-observatory.js application={ec8030f7-c20a-464f-9b0e-13a3a9e97384} application={92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a} application={3550f703-e582-4d05-9a08-453d09bdfdc6} application={a79fe89b-6662-4ff4-8e88-09950ad4dfde} -contract @eff.org/ssl-observatory;1 {0f9ab521-986d-4ad8-9c1f-6934e195c15c} application={ec8030f7-c20a-464f-9b0e-13a3a9e97384} application={92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a} application={3550f703-e582-4d05-9a08-453d09bdfdc6} application={a79fe89b-6662-4ff4-8e88-09950ad4dfde} -category profile-after-change SSLObservatory @eff.org/ssl-observatory;1 application={ec8030f7-c20a-464f-9b0e-13a3a9e97384} application={92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a} application={3550f703-e582-4d05-9a08-453d09bdfdc6} application={a79fe89b-6662-4ff4-8e88-09950ad4dfde} diff --git a/src/chrome/content/GinjFo.com.xml b/src/chrome/content/GinjFo.com.xml deleted file mode 100644 index 462605bcf01c..000000000000 --- a/src/chrome/content/GinjFo.com.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/00f.net.xml b/src/chrome/content/rules/00f.net.xml deleted file mode 100644 index f7ea7bfd1c37..000000000000 --- a/src/chrome/content/rules/00f.net.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/01.org.xml b/src/chrome/content/rules/01.org.xml deleted file mode 100644 index 4ee07e55b3db..000000000000 --- a/src/chrome/content/rules/01.org.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/02ch.su.xml b/src/chrome/content/rules/02ch.su.xml new file mode 100644 index 000000000000..21b3eb364444 --- /dev/null +++ b/src/chrome/content/rules/02ch.su.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/0bin.net.xml b/src/chrome/content/rules/0bin.net.xml index 9958af696a90..59783a130616 100644 --- a/src/chrome/content/rules/0bin.net.xml +++ b/src/chrome/content/rules/0bin.net.xml @@ -10,7 +10,7 @@ - + diff --git a/src/chrome/content/rules/0chan.one.xml b/src/chrome/content/rules/0chan.one.xml new file mode 100644 index 000000000000..a5d94e8e6c65 --- /dev/null +++ b/src/chrome/content/rules/0chan.one.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/0nl1ne.at.xml b/src/chrome/content/rules/0nl1ne.at.xml index 7a48163de969..de2de8a6ac76 100644 --- a/src/chrome/content/rules/0nl1ne.at.xml +++ b/src/chrome/content/rules/0nl1ne.at.xml @@ -1,21 +1,25 @@ - + - + + - + diff --git a/src/chrome/content/rules/0p.no.xml b/src/chrome/content/rules/0p.no.xml index f56269cbdb1b..43ab4b74cb9e 100644 --- a/src/chrome/content/rules/0p.no.xml +++ b/src/chrome/content/rules/0p.no.xml @@ -1,19 +1,15 @@ - - + + - - - - + + diff --git a/src/chrome/content/rules/0x.co.xml b/src/chrome/content/rules/0x.co.xml index 41fccfa0e771..6439a8e10fc2 100644 --- a/src/chrome/content/rules/0x.co.xml +++ b/src/chrome/content/rules/0x.co.xml @@ -4,7 +4,7 @@ - + - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/0x539.se.xml b/src/chrome/content/rules/0x539.se.xml deleted file mode 100644 index f897ea8fdb41..000000000000 --- a/src/chrome/content/rules/0x539.se.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/1-800courier.com.xml b/src/chrome/content/rules/1-800courier.com.xml new file mode 100644 index 000000000000..fb31b46e5001 --- /dev/null +++ b/src/chrome/content/rules/1-800courier.com.xml @@ -0,0 +1,14 @@ + + + + + + + diff --git a/src/chrome/content/rules/1.0.0.1.xml b/src/chrome/content/rules/1.0.0.1.xml new file mode 100644 index 000000000000..1d46eeb11c6b --- /dev/null +++ b/src/chrome/content/rules/1.0.0.1.xml @@ -0,0 +1,12 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/1.1.1.1.xml b/src/chrome/content/rules/1.1.1.1.xml new file mode 100644 index 000000000000..c6249f83c425 --- /dev/null +++ b/src/chrome/content/rules/1.1.1.1.xml @@ -0,0 +1,12 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/100-Gute-Gruende.de.xml b/src/chrome/content/rules/100-Gute-Gruende.de.xml deleted file mode 100644 index 649a0d65945a..000000000000 --- a/src/chrome/content/rules/100-Gute-Gruende.de.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/100R.org.xml b/src/chrome/content/rules/100R.org.xml index c683f925df4f..f79f105d178d 100644 --- a/src/chrome/content/rules/100R.org.xml +++ b/src/chrome/content/rules/100R.org.xml @@ -24,7 +24,7 @@ Fetch error: http://cf9.100r.org/ => https://cf9.100r.org/: (51, "SSL: no altern * Secured by us --> - + diff --git a/src/chrome/content/rules/100_Fans.org.de.xml b/src/chrome/content/rules/100_Fans.org.de.xml index 9aafbe83747d..be89dda2c8eb 100644 --- a/src/chrome/content/rules/100_Fans.org.de.xml +++ b/src/chrome/content/rules/100_Fans.org.de.xml @@ -18,7 +18,7 @@ - + https://portuguese.101domain.com/: (60, 'SSL certificate problem: certificate has expired') -Fetch error: http://spanish.101domain.com/ => https://spanish.101domain.com/: (28, 'Connection timed out after 20001 milliseconds') - - For rules not causing false/broken MCB, see 101domain.com.xml. - ---> - - - - - - - - - diff --git a/src/chrome/content/rules/101domain.com.xml b/src/chrome/content/rules/101domain.com.xml index dbb50871c567..8fbcddd6549c 100644 --- a/src/chrome/content/rules/101domain.com.xml +++ b/src/chrome/content/rules/101domain.com.xml @@ -1,100 +1,16 @@ - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + diff --git a/src/chrome/content/rules/101weiqi.xml b/src/chrome/content/rules/101weiqi.xml index 76ec97c5ba64..5cad4e7cf343 100644 --- a/src/chrome/content/rules/101weiqi.xml +++ b/src/chrome/content/rules/101weiqi.xml @@ -1,25 +1,20 @@ - - - - - + + - - - + - diff --git a/src/chrome/content/rules/104.com.tw.xml b/src/chrome/content/rules/104.com.tw.xml index 0ec1152f43d3..5133450c3139 100644 --- a/src/chrome/content/rules/104.com.tw.xml +++ b/src/chrome/content/rules/104.com.tw.xml @@ -1,44 +1,45 @@ - - - - - - - + + + + + + + + + + + + + + - - + + + diff --git a/src/chrome/content/rules/10antz.co.jp.xml b/src/chrome/content/rules/10antz.co.jp.xml index 4b8978114d35..8ccbde29823b 100644 --- a/src/chrome/content/rules/10antz.co.jp.xml +++ b/src/chrome/content/rules/10antz.co.jp.xml @@ -4,7 +4,7 @@ - + - + https://www.1105media.com/: (60, 'SSL certificate problem: self signed certificate in certificate chain') + Other 1105 Media rulesets: - - 1105_pubs.com.xml - ADTmag.com.xml - AWSInsider.net.xml - campustechnology.com.xml @@ -26,14 +30,14 @@ --> - + - + - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/112-akersloot.nl.xml b/src/chrome/content/rules/112-akersloot.nl.xml index b0d56cad7d1c..6d7bb589b737 100644 --- a/src/chrome/content/rules/112-akersloot.nl.xml +++ b/src/chrome/content/rules/112-akersloot.nl.xml @@ -1,7 +1,7 @@ - - - - - - \ No newline at end of file + + + + + + diff --git a/src/chrome/content/rules/112-uitgeest.nl.xml b/src/chrome/content/rules/112-uitgeest.nl.xml index ea0e3e19e2d3..17ba4c4f4589 100644 --- a/src/chrome/content/rules/112-uitgeest.nl.xml +++ b/src/chrome/content/rules/112-uitgeest.nl.xml @@ -1,7 +1,7 @@ - - - - - - \ No newline at end of file + + + + + + diff --git a/src/chrome/content/rules/1177.se.xml b/src/chrome/content/rules/1177.se.xml index 88c8687566e3..bd41f6d2564f 100644 --- a/src/chrome/content/rules/1177.se.xml +++ b/src/chrome/content/rules/1177.se.xml @@ -1,13 +1,60 @@ - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/118-Information.xml b/src/chrome/content/rules/118-Information.xml index fc68c273e898..0db459913b72 100644 --- a/src/chrome/content/rules/118-Information.xml +++ b/src/chrome/content/rules/118-Information.xml @@ -11,7 +11,7 @@ - + - + https://cdn.11footballclub.com/: Fetch error: http://www.11footballclub.com/ => https://www.11footballclub.com/: (35, 'Unknown SSL protocol error in connection to www.11footballclub.com:443 ') --> - + @@ -18,4 +18,4 @@ Fetch error: http://www.11footballclub.com/ => https://www.11footballclub.com/: - \ No newline at end of file + diff --git a/src/chrome/content/rules/11street.my.xml b/src/chrome/content/rules/11street.my.xml new file mode 100644 index 000000000000..1672cbf1f5e2 --- /dev/null +++ b/src/chrome/content/rules/11street.my.xml @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/123-reg.xml b/src/chrome/content/rules/123-reg.xml index 40c8e8e28874..d29487376f73 100644 --- a/src/chrome/content/rules/123-reg.xml +++ b/src/chrome/content/rules/123-reg.xml @@ -8,10 +8,11 @@ Non-2xx HTTP code: http://ssllin1.123-secure.com/ (200) => https://ssllin1.123-s - + + + - - + + - - - - + --> + diff --git a/src/chrome/content/rules/123ContactForm.com.xml b/src/chrome/content/rules/123ContactForm.com.xml index bc29f89d9d8f..69f4e95344f8 100644 --- a/src/chrome/content/rules/123ContactForm.com.xml +++ b/src/chrome/content/rules/123ContactForm.com.xml @@ -5,7 +5,7 @@ - + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/126.com.xml b/src/chrome/content/rules/126.com.xml index 7b7dd31e2e20..da0c9639946c 100644 --- a/src/chrome/content/rules/126.com.xml +++ b/src/chrome/content/rules/126.com.xml @@ -1,13 +1,20 @@ + - + + + + + + + + - - - - - + diff --git a/src/chrome/content/rules/126.net.xml b/src/chrome/content/rules/126.net.xml index 9efb418ac629..b2a22113a66e 100644 --- a/src/chrome/content/rules/126.net.xml +++ b/src/chrome/content/rules/126.net.xml @@ -1,60 +1,59 @@ + + + + + + + - + - - + + + + - - + + - - - - - - - - - - - - - - - - - - - + + + + diff --git a/src/chrome/content/rules/1337x.org.xml b/src/chrome/content/rules/1337x.org.xml deleted file mode 100644 index 1bf758b02647..000000000000 --- a/src/chrome/content/rules/1337x.org.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/1431am.org.xml b/src/chrome/content/rules/1431am.org.xml index 560bdc25be73..c047e970c5ff 100644 --- a/src/chrome/content/rules/1431am.org.xml +++ b/src/chrome/content/rules/1431am.org.xml @@ -5,13 +5,13 @@ Fetch error: http://1431am.org/ => https://1431am.org/: (60, 'SSL certificate pr Fetch error: http://www.1431am.org/ => https://www.1431am.org/: (60, 'SSL certificate problem: certificate has expired') --> - + - + - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/16163.com.xml b/src/chrome/content/rules/16163.com.xml index c426dbe545aa..47fef755bfd6 100644 --- a/src/chrome/content/rules/16163.com.xml +++ b/src/chrome/content/rules/16163.com.xml @@ -8,10 +8,6 @@ - - - - diff --git a/src/chrome/content/rules/163.com-mixedcontent.xml b/src/chrome/content/rules/163.com-mixedcontent.xml new file mode 100644 index 000000000000..891b9b795035 --- /dev/null +++ b/src/chrome/content/rules/163.com-mixedcontent.xml @@ -0,0 +1,9 @@ + + + + + + + diff --git a/src/chrome/content/rules/163.com-problematic.xml b/src/chrome/content/rules/163.com-problematic.xml deleted file mode 100644 index 9d23de002dfb..000000000000 --- a/src/chrome/content/rules/163.com-problematic.xml +++ /dev/null @@ -1,62 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/163.com.xml b/src/chrome/content/rules/163.com.xml index f62d8d91e9a8..872e04b916a6 100644 --- a/src/chrome/content/rules/163.com.xml +++ b/src/chrome/content/rules/163.com.xml @@ -1,95 +1,70 @@ + - + + - + + + + + + - - + @@ -112,35 +87,48 @@ - + + + + + + + + - + + + + + + + - - + + - - - - + + + + diff --git a/src/chrome/content/rules/168qiquan.com.xml b/src/chrome/content/rules/168qiquan.com.xml deleted file mode 100644 index 0beadaa22210..000000000000 --- a/src/chrome/content/rules/168qiquan.com.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/16chan.nl.xml b/src/chrome/content/rules/16chan.nl.xml deleted file mode 100644 index 8ef588083958..000000000000 --- a/src/chrome/content/rules/16chan.nl.xml +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/179.ru.xml b/src/chrome/content/rules/179.ru.xml new file mode 100644 index 000000000000..14bd29d6180d --- /dev/null +++ b/src/chrome/content/rules/179.ru.xml @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/17track.net.xml b/src/chrome/content/rules/17track.net.xml index 45e481b582d3..f5c0c2e364f8 100644 --- a/src/chrome/content/rules/17track.net.xml +++ b/src/chrome/content/rules/17track.net.xml @@ -1,6 +1,8 @@ - - - + + + - + + + diff --git a/src/chrome/content/rules/1984.is.xml b/src/chrome/content/rules/1984.is.xml index 0c6819235f20..0d53019744bf 100644 --- a/src/chrome/content/rules/1984.is.xml +++ b/src/chrome/content/rules/1984.is.xml @@ -1,37 +1,13 @@ - - - - - - - - - - + + + + - + - + diff --git a/src/chrome/content/rules/1984_Hosting.com.xml b/src/chrome/content/rules/1984_Hosting.com.xml index b4df28ef26d4..4a70ef16900a 100644 --- a/src/chrome/content/rules/1984_Hosting.com.xml +++ b/src/chrome/content/rules/1984_Hosting.com.xml @@ -18,7 +18,7 @@ --> - + diff --git a/src/chrome/content/rules/1Cart.xml b/src/chrome/content/rules/1Cart.xml deleted file mode 100644 index c518a6f0a41c..000000000000 --- a/src/chrome/content/rules/1Cart.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/1LotSTP.com.xml b/src/chrome/content/rules/1LotSTP.com.xml deleted file mode 100644 index 160937820d32..000000000000 --- a/src/chrome/content/rules/1LotSTP.com.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/1PipFix.xml b/src/chrome/content/rules/1PipFix.xml index b88e35caa893..0c91ce8616af 100644 --- a/src/chrome/content/rules/1PipFix.xml +++ b/src/chrome/content/rules/1PipFix.xml @@ -5,7 +5,7 @@ Fetch error: http://1pipfix.com/ => https://1pipfix.com/: (28, 'Connection timed Fetch error: http://www.1pipfix.com/ => https://www.1pipfix.com/: (28, 'Connection timed out after 20001 milliseconds') --> - + @@ -16,4 +16,4 @@ Fetch error: http://www.1pipfix.com/ => https://www.1pipfix.com/: (28, 'Connecti - \ No newline at end of file + diff --git a/src/chrome/content/rules/1ShoppingCart.com.xml b/src/chrome/content/rules/1ShoppingCart.com.xml index e6a5a7768990..9d7f2ed5f8c1 100644 --- a/src/chrome/content/rules/1ShoppingCart.com.xml +++ b/src/chrome/content/rules/1ShoppingCart.com.xml @@ -6,7 +6,7 @@ Fetch error: http://1shoppingcart.com/ => https://1shoppingcart.com/: Too many r For other Web.com Group coverage, see Web.com.xml. --> - + diff --git a/src/chrome/content/rules/1X.xml b/src/chrome/content/rules/1X.xml index d140fde2d896..cfa766f3292b 100644 --- a/src/chrome/content/rules/1X.xml +++ b/src/chrome/content/rules/1X.xml @@ -12,7 +12,7 @@ Fetch error: http://owa.1x.com/ => https://owa.1x.com/: (60, 'SSL certificate pr ² Mismatched --> - + diff --git a/src/chrome/content/rules/1_Deg.org.xml b/src/chrome/content/rules/1_Deg.org.xml index e97d2348dfcc..ae7de6e4a9c3 100644 --- a/src/chrome/content/rules/1_Deg.org.xml +++ b/src/chrome/content/rules/1_Deg.org.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://1deg.org/ => https://1deg.org/: (28, 'Connection timed out after 20000 milliseconds') --> - + diff --git a/src/chrome/content/rules/1and1-Internet.xml b/src/chrome/content/rules/1and1-Internet.xml index 6f07de864c8a..5f6f32a58dcc 100644 --- a/src/chrome/content/rules/1and1-Internet.xml +++ b/src/chrome/content/rules/1and1-Internet.xml @@ -32,7 +32,7 @@ Fetch error: http://webdesk.1and1.com/ => https://webdesk.1and1.com/: (7, 'Faile ᵐ Mismatched --> - + @@ -69,7 +69,7 @@ Fetch error: http://webdesk.1and1.com/ => https://webdesk.1and1.com/: (7, 'Faile - + https://www.forum.1and1.ca/: (6, 'Cou ᵐ Mismatched --> - + @@ -39,7 +39,7 @@ Fetch error: http://www.forum.1and1.ca/ => https://www.forum.1and1.ca/: (6, 'Cou - + - + - + diff --git a/src/chrome/content/rules/1c-bitrix.ru.xml b/src/chrome/content/rules/1c-bitrix.ru.xml index 160be81021a2..4903e992bcbb 100644 --- a/src/chrome/content/rules/1c-bitrix.ru.xml +++ b/src/chrome/content/rules/1c-bitrix.ru.xml @@ -13,7 +13,14 @@ - + + + + + + + + @@ -22,7 +29,6 @@ - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/1d4.us.xml b/src/chrome/content/rules/1d4.us.xml index 585da30d3793..0494998650df 100644 --- a/src/chrome/content/rules/1d4.us.xml +++ b/src/chrome/content/rules/1d4.us.xml @@ -6,7 +6,7 @@ Fetch error: http://1d4.us/ => https://1d4.us/: (28, 'Operation timed out after STS header includes includeSubdomains --> - + @@ -14,7 +14,7 @@ Fetch error: http://1d4.us/ => https://1d4.us/: (28, 'Operation timed out after - + - + https://st-1.1fichier.com/: (28, 'Connection timed out after 20001 milliseconds') All non-1fichier.com URLs are mirrors of https://1fichier.com/ . - + Mismatch: - dfichiers.com --> - + diff --git a/src/chrome/content/rules/1freehosting.com.xml b/src/chrome/content/rules/1freehosting.com.xml new file mode 100644 index 000000000000..d894b26dc5e1 --- /dev/null +++ b/src/chrome/content/rules/1freehosting.com.xml @@ -0,0 +1,10 @@ + + + + + + + diff --git a/src/chrome/content/rules/1nsk.ru-problematic.xml b/src/chrome/content/rules/1nsk.ru-problematic.xml index a6975dde1b4e..20f974c0c941 100644 --- a/src/chrome/content/rules/1nsk.ru-problematic.xml +++ b/src/chrome/content/rules/1nsk.ru-problematic.xml @@ -5,7 +5,8 @@ - + + @@ -14,7 +15,6 @@ - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/1nsk.ru.xml b/src/chrome/content/rules/1nsk.ru.xml index fd48956f8b1c..3a86e6c1e5c3 100644 --- a/src/chrome/content/rules/1nsk.ru.xml +++ b/src/chrome/content/rules/1nsk.ru.xml @@ -15,7 +15,7 @@ Fetch error: http://live.1nsk.ru/ => https://live.1nsk.ru/: (28, 'Connection tim * Works; expired 2012-02-28, self-signed --> - + @@ -23,7 +23,6 @@ Fetch error: http://live.1nsk.ru/ => https://live.1nsk.ru/: (28, 'Connection tim - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/1over1.net.xml b/src/chrome/content/rules/1over1.net.xml new file mode 100644 index 000000000000..77c1e327632e --- /dev/null +++ b/src/chrome/content/rules/1over1.net.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/1s_and_0s.nl.xml b/src/chrome/content/rules/1s_and_0s.nl.xml deleted file mode 100644 index 1048be7e213d..000000000000 --- a/src/chrome/content/rules/1s_and_0s.nl.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/1src.com.xml b/src/chrome/content/rules/1src.com.xml new file mode 100644 index 000000000000..091811ed05a2 --- /dev/null +++ b/src/chrome/content/rules/1src.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/1stWarning.com.xml b/src/chrome/content/rules/1stWarning.com.xml index 4075c9fc5082..1fc53a466043 100644 --- a/src/chrome/content/rules/1stWarning.com.xml +++ b/src/chrome/content/rules/1stWarning.com.xml @@ -8,7 +8,7 @@ - + - - - - - diff --git a/src/chrome/content/rules/1tulatv.ru.xml b/src/chrome/content/rules/1tulatv.ru.xml index 9f9275a12434..decbd6147f3e 100644 --- a/src/chrome/content/rules/1tulatv.ru.xml +++ b/src/chrome/content/rules/1tulatv.ru.xml @@ -1,5 +1,8 @@ - + + + + diff --git a/src/chrome/content/rules/1tv.ru.xml b/src/chrome/content/rules/1tv.ru.xml index 160bd931d417..1dca64357676 100644 --- a/src/chrome/content/rules/1tv.ru.xml +++ b/src/chrome/content/rules/1tv.ru.xml @@ -60,7 +60,7 @@ --> - + https://apps.1und1.de/: (51, "SSL: no alternative certificate subject name matches target host name 'apps.1und1.de'") -Fetch error: http://img.1und1.de/ => https://img.1und1.de/: (6, 'Could not resolve host: img.1und1.de') -Fetch error: http://login.1und1.de/ => https://login.1und1.de/: (60, 'SSL certificate problem: unable to get local issuer certificate') -Fetch error: http://tt.1und1.de/ => https://tt.1und1.de/: (6, 'Could not resolve host: tt.1und1.de') - For other United Internet coverage, see United-Internet.xml. @@ -17,6 +10,8 @@ Fetch error: http://tt.1und1.de/ => https://tt.1und1.de/: (6, 'Could not resolve Nonfunctional subdomains: + - apps ⁴ + - login ⁴ - mirror ¹ - newsroom ² - presse ² @@ -25,6 +20,7 @@ Fetch error: http://tt.1und1.de/ => https://tt.1und1.de/: (6, 'Could not resolve ¹ Dropped ² Refused ³ 404 + ⁴ Invalid certificate Problematic subdomains: @@ -33,7 +29,6 @@ Fetch error: http://tt.1und1.de/ => https://tt.1und1.de/: (6, 'Could not resolve - erfolgscenter ¹ - i0 ² - service-center ³ - - unternehmen ¹ ¹ Mismatched ² Akamai @@ -61,11 +56,12 @@ Fetch error: http://tt.1und1.de/ => https://tt.1und1.de/: (6, 'Could not resolve ¹ Secured by us --> - + - + + @@ -77,23 +73,19 @@ Fetch error: http://tt.1und1.de/ => https://tt.1und1.de/: (6, 'Could not resolve - - - - + - @@ -113,9 +105,6 @@ Fetch error: http://tt.1und1.de/ => https://tt.1und1.de/: (6, 'Could not resolve - - @@ -131,7 +120,6 @@ Fetch error: http://tt.1und1.de/ => https://tt.1und1.de/: (6, 'Could not resolve - + diff --git a/src/chrome/content/rules/1xbet.com.xml b/src/chrome/content/rules/1xbet.com.xml deleted file mode 100644 index 14e8cf5768f3..000000000000 --- a/src/chrome/content/rules/1xbet.com.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/2020mobile.es.xml b/src/chrome/content/rules/2020mobile.es.xml index c256ffde06f0..7ae5c8dd31c6 100644 --- a/src/chrome/content/rules/2020mobile.es.xml +++ b/src/chrome/content/rules/2020mobile.es.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.2020mobile.es/ => https://www.2020mobile.es/: (35, 'error:140770FC:SSL routines:SSL23_GET_SERVER_HELLO:unknown protocol') Fetch error: http://2020mobile.es/ => https://www.2020mobile.es/: (35, 'error:140770FC:SSL routines:SSL23_GET_SERVER_HELLO:unknown protocol') --> - + diff --git a/src/chrome/content/rules/20min.ch.xml b/src/chrome/content/rules/20min.ch.xml index e32f1767010f..0a0c49462bc4 100644 --- a/src/chrome/content/rules/20min.ch.xml +++ b/src/chrome/content/rules/20min.ch.xml @@ -3,45 +3,22 @@ - 20min-tv.ch.xml - 20minuti.ch.xml - Nonfunctional hosts in *.20min.ch: - - 20min.ch (h) - - www.20min.ch (some pages redirect to http; - works with "?httpsredirect" parameter, but has mixed content issues then) - - deal.20min.ch (m) - - m.20min.ch (some pages have mixed content issues) - - tilllate.20min.ch (m) - - static01.20min.ch (r) + 20min.ch has both a wildcard DNS record and a wildcard certificate, so enumerating all subdomains is impossible. - The host has various subdomains as shortlinks to articles. - Those subdomains redirect to http and their www prefixed alias mismatches the cert. - - h: http redirect - m: certificate mismatch - r: connection refused - s: self-signed certificate - t: timeout on https + Mismatched, different cert from rest of domains: + - secretescapes + - tilllate --> + + - - - - - - - - - - - - - + - + diff --git a/src/chrome/content/rules/20minutes.fr.xml b/src/chrome/content/rules/20minutes.fr.xml index 1143959632a5..8c6a79b02988 100644 --- a/src/chrome/content/rules/20minutes.fr.xml +++ b/src/chrome/content/rules/20minutes.fr.xml @@ -2,9 +2,6 @@ Time out: 20minutes.fr - Redirect to http: - club-shopping.20minutes.fr - Refused: guide-shopping.20minutes.fr @@ -16,13 +13,13 @@ www.panel20minutes.fr Different content http/https: - mesnotices.20minutes.fr + club-shopping.20minutes.fr Secure connection failed: vosquestions.20minutes.fr --> - + @@ -30,6 +27,7 @@ + @@ -44,7 +42,7 @@ - diff --git a/src/chrome/content/rules/20minuti.ch.xml b/src/chrome/content/rules/20minuti.ch.xml index 561bce8b1020..4323316e18ca 100644 --- a/src/chrome/content/rules/20minuti.ch.xml +++ b/src/chrome/content/rules/20minuti.ch.xml @@ -1,21 +1,13 @@ - + + + + diff --git a/src/chrome/content/rules/21.co.xml b/src/chrome/content/rules/21.co.xml index aba675c3c6c3..6d75d4d28de6 100644 --- a/src/chrome/content/rules/21.co.xml +++ b/src/chrome/content/rules/21.co.xml @@ -7,7 +7,7 @@ Non-2xx HTTP code: http://slack.21.co/ (200) => https://slack.21.co/ (526) 4xx client error: - files.21.co --> - + diff --git a/src/chrome/content/rules/21jingji.com.xml b/src/chrome/content/rules/21jingji.com.xml new file mode 100644 index 000000000000..8a8c529e37ff --- /dev/null +++ b/src/chrome/content/rules/21jingji.com.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/220volt.hu.xml b/src/chrome/content/rules/220volt.hu.xml index 1154be5196b2..d3cabfc7ebb4 100644 --- a/src/chrome/content/rules/220volt.hu.xml +++ b/src/chrome/content/rules/220volt.hu.xml @@ -7,7 +7,7 @@ - + + + + + + + + diff --git a/src/chrome/content/rules/2345.com.xml b/src/chrome/content/rules/2345.com.xml index a036db34f38c..1cac12464eb9 100644 --- a/src/chrome/content/rules/2345.com.xml +++ b/src/chrome/content/rules/2345.com.xml @@ -83,7 +83,6 @@ - diff --git a/src/chrome/content/rules/23Systems.xml b/src/chrome/content/rules/23Systems.xml index b517473c8f75..cefde1351ed3 100644 --- a/src/chrome/content/rules/23Systems.xml +++ b/src/chrome/content/rules/23Systems.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/24-7_Customer.xml b/src/chrome/content/rules/24-7_Customer.xml deleted file mode 100644 index 4eecdb6aa11d..000000000000 --- a/src/chrome/content/rules/24-7_Customer.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/247exchange.com.xml b/src/chrome/content/rules/247exchange.com.xml deleted file mode 100644 index c5ddd861c198..000000000000 --- a/src/chrome/content/rules/247exchange.com.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/247filmz.xml b/src/chrome/content/rules/247filmz.xml index 73a1481ae283..3817a6e5ddf1 100644 --- a/src/chrome/content/rules/247filmz.xml +++ b/src/chrome/content/rules/247filmz.xml @@ -5,7 +5,7 @@ Fetch error: http://247filmz.com/ => https://247filmz.com/: (51, "SSL: no altern Fetch error: http://www.247filmz.com/ => https://www.247filmz.com/: (6, 'Could not resolve host: www.247filmz.com') --> - + @@ -16,4 +16,4 @@ Fetch error: http://www.247filmz.com/ => https://www.247filmz.com/: (6, 'Could n - \ No newline at end of file + diff --git a/src/chrome/content/rules/24img.com.xml b/src/chrome/content/rules/24img.com.xml index 0eb5b5692210..1f5092abe2a8 100644 --- a/src/chrome/content/rules/24img.com.xml +++ b/src/chrome/content/rules/24img.com.xml @@ -10,7 +10,7 @@ Fetch error: http://search.24img.com/ => https://search.24img.com/: (6, 'Could n ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -18,7 +18,7 @@ Fetch error: http://search.24img.com/ => https://search.24img.com/: (6, 'Could n - + - - - - - diff --git a/src/chrome/content/rules/24paybank.com.xml b/src/chrome/content/rules/24paybank.com.xml index 73940e4967bf..b75ac446040c 100644 --- a/src/chrome/content/rules/24paybank.com.xml +++ b/src/chrome/content/rules/24paybank.com.xml @@ -11,7 +11,7 @@ support2.24paybank.com ¹ ¹ mismatch --> - + diff --git a/src/chrome/content/rules/254a.com.xml b/src/chrome/content/rules/254a.com.xml deleted file mode 100644 index 7696aec103b9..000000000000 --- a/src/chrome/content/rules/254a.com.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/256stuff.com.xml b/src/chrome/content/rules/256stuff.com.xml new file mode 100644 index 000000000000..519d69ef2797 --- /dev/null +++ b/src/chrome/content/rules/256stuff.com.xml @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/25thandclement.com.xml b/src/chrome/content/rules/25thandclement.com.xml new file mode 100644 index 000000000000..dacc742d9b1f --- /dev/null +++ b/src/chrome/content/rules/25thandclement.com.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/2600.com.xml b/src/chrome/content/rules/2600.com.xml index 879f22088f6a..1bb8c5cf1cb7 100644 --- a/src/chrome/content/rules/2600.com.xml +++ b/src/chrome/content/rules/2600.com.xml @@ -23,7 +23,7 @@ --> - + - + - + http://www.2dialog.com/: Redirect for 'h Some pages redirect to http.../$ --> - + @@ -19,4 +19,4 @@ Fetch error: http://www.2dialog.com/ => http://www.2dialog.com/: Redirect for 'h - \ No newline at end of file + diff --git a/src/chrome/content/rules/2GIS.ru.xml b/src/chrome/content/rules/2GIS.ru.xml index c73c2d5c62c2..2c34c624788a 100644 --- a/src/chrome/content/rules/2GIS.ru.xml +++ b/src/chrome/content/rules/2GIS.ru.xml @@ -20,7 +20,8 @@ - + + https://autodiscover.2kgames.com/: (56, 'SSL read: error:00000000:lib(0):func(0):reason(0), errno 104') -Fetch error: http://remote.2kgames.com/ => https://remote.2kgames.com/: (60, 'SSL certificate problem: unable to get local issuer certificate') - - For other 2K Games coverage, see 2K.com.xml. - - Cert mismatch: - - 2kgnovsecfw1 - - forums - - support - - wiki - - Timeout: - - cha - - level9 - - mx1 - - mx2 - - mxout1 - - staging - + For other 2K Games coverage, see + + 2K.com.xml + + Non-functional hosts + Timeout was reached: + - cha.2kgames.com + - mx1.2kgames.com + - mx2.2kgames.com + - mxout1.2kgames.com + - staging.2kgames.com + + SSL peer certificate was not OK: + - forums.2kgames.com + - support.2kgames.com + - wiki.2kgames.com + + Incomplete certificate chain error: + - remote.2kgames.com + + Different content: + - 2kgames.com --> - - - - - + + - - + - + + - - - - + diff --git a/src/chrome/content/rules/2K_Sports.xml b/src/chrome/content/rules/2K_Sports.xml index beead9daa9b0..1e310410bdf5 100644 --- a/src/chrome/content/rules/2K_Sports.xml +++ b/src/chrome/content/rules/2K_Sports.xml @@ -7,7 +7,7 @@ Fetch error: http://www.2ksports.com/ => https://www.2ksports.com/: (35, 'error: For other 2K Games coverage, see 2K_Games.xml. --> - + diff --git a/src/chrome/content/rules/2_Ton.com.au.xml b/src/chrome/content/rules/2_Ton.com.au.xml index ac431509e373..a16e58dff5d8 100644 --- a/src/chrome/content/rules/2_Ton.com.au.xml +++ b/src/chrome/content/rules/2_Ton.com.au.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.2ton.com.au/ => https://www.2ton.com.au/: (51, "SSL: no alternative certificate subject name matches target host name 'www.2ton.com.au'") --> - + diff --git a/src/chrome/content/rules/2buntu.com.xml b/src/chrome/content/rules/2buntu.com.xml index f95da5e5163a..6170844bc3b9 100644 --- a/src/chrome/content/rules/2buntu.com.xml +++ b/src/chrome/content/rules/2buntu.com.xml @@ -13,7 +13,7 @@ - + https://2ch.cm/: (51, "SSL: no alternative certif Fetch error: http://www.2ch.cm/ => https://www.2ch.cm/: (51, "SSL: no alternative certificate subject name matches target host name 'www.2ch.cm'") --> - + - + - + - @@ -169,7 +168,6 @@ - @@ -239,7 +237,7 @@ - + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/2co.co.xml b/src/chrome/content/rules/2co.co.xml index d595601d8221..798e031df126 100644 --- a/src/chrome/content/rules/2co.co.xml +++ b/src/chrome/content/rules/2co.co.xml @@ -21,7 +21,7 @@ --> - + + + + + + + + + + + diff --git a/src/chrome/content/rules/2ememain.be.xml b/src/chrome/content/rules/2ememain.be.xml new file mode 100644 index 000000000000..32ecae7faa52 --- /dev/null +++ b/src/chrome/content/rules/2ememain.be.xml @@ -0,0 +1,37 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/2o7.net.xml b/src/chrome/content/rules/2o7.net.xml index 9bc4ee728478..a6aa5fa241d6 100644 --- a/src/chrome/content/rules/2o7.net.xml +++ b/src/chrome/content/rules/2o7.net.xml @@ -1,24 +1,25 @@ - - + + + + + - + + + + + + + - + diff --git a/src/chrome/content/rules/2shared.xml b/src/chrome/content/rules/2shared.xml index 32711803f4a4..5fa1a3b29161 100644 --- a/src/chrome/content/rules/2shared.xml +++ b/src/chrome/content/rules/2shared.xml @@ -1,11 +1,11 @@ - + - - + + - + - + diff --git a/src/chrome/content/rules/2x.com.xml b/src/chrome/content/rules/2x.com.xml deleted file mode 100644 index aec295bcdcff..000000000000 --- a/src/chrome/content/rules/2x.com.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/chrome/content/rules/3.cn.xml b/src/chrome/content/rules/3.cn.xml index 9502217fb2df..a006043699dd 100644 --- a/src/chrome/content/rules/3.cn.xml +++ b/src/chrome/content/rules/3.cn.xml @@ -1,32 +1,23 @@ - - - + - - - + - - + diff --git a/src/chrome/content/rules/32Red_Online_Casino.xml b/src/chrome/content/rules/32Red_Online_Casino.xml index 0ab17c90568b..4ec359e75102 100644 --- a/src/chrome/content/rules/32Red_Online_Casino.xml +++ b/src/chrome/content/rules/32Red_Online_Casino.xml @@ -17,7 +17,12 @@ - + + + + + + @@ -26,7 +31,6 @@ - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/33Across.xml b/src/chrome/content/rules/33Across.xml index e960828ed6e4..ec1abf8e4b5b 100644 --- a/src/chrome/content/rules/33Across.xml +++ b/src/chrome/content/rules/33Across.xml @@ -32,7 +32,7 @@ - + - - - - - - diff --git a/src/chrome/content/rules/33option.com.xml b/src/chrome/content/rules/33option.com.xml index 0c78a1874a67..d530e92b1f33 100644 --- a/src/chrome/content/rules/33option.com.xml +++ b/src/chrome/content/rules/33option.com.xml @@ -5,7 +5,7 @@ Fetch error: http://33option.com/ => https://33option.com/: (60, 'SSL certificat Fetch error: http://www.33option.com/ => https://www.33option.com/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + @@ -14,7 +14,7 @@ Fetch error: http://www.33option.com/ => https://www.33option.com/: (60, 'SSL ce - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/350zEvolution.com.xml b/src/chrome/content/rules/350zEvolution.com.xml index 94f864bb33b2..19d1aff7c7a4 100644 --- a/src/chrome/content/rules/350zEvolution.com.xml +++ b/src/chrome/content/rules/350zEvolution.com.xml @@ -8,7 +8,7 @@ - + diff --git a/src/chrome/content/rules/360.cn.xml b/src/chrome/content/rules/360.cn.xml index ec4babe55fef..9db6a5f731ff 100644 --- a/src/chrome/content/rules/360.cn.xml +++ b/src/chrome/content/rules/360.cn.xml @@ -2,8 +2,8 @@ Other Qihoo 360 Technology rulesets: - 360_Safe.com.xml - 360_Total_Security.com.xml - - Qh_img.com.xml - Qihu_CDN.com.xml + - So.com.xml Nonfunctional hosts in *360.cn: @@ -55,14 +55,6 @@ ᴵ Invalid certificate ᶠ Forbidden - Problematic hosts in *360.cn: - - www.360.cn ʷ - - wangzhan.360.cn ʷ - ʷ Configured for weak ciphers only - - Insecure cookies are set for these domains: - - .360.cn - Mixed content: - Flash, on: - shouji, c33.yunpan from yuntv.letv.com @@ -76,6 +68,8 @@ ˢ Secured by us --> + + @@ -92,7 +86,12 @@ + + + + + diff --git a/src/chrome/content/rules/360Cities.xml b/src/chrome/content/rules/360Cities.xml index 9930cd0bb0d7..a61a0136ff17 100644 --- a/src/chrome/content/rules/360Cities.xml +++ b/src/chrome/content/rules/360Cities.xml @@ -1,25 +1,15 @@ - - + + + + - - - - - + diff --git a/src/chrome/content/rules/360_Safe.com.xml b/src/chrome/content/rules/360_Safe.com.xml index f2777591444a..a528dec3cfc0 100644 --- a/src/chrome/content/rules/360_Safe.com.xml +++ b/src/chrome/content/rules/360_Safe.com.xml @@ -1,32 +1,15 @@ - + + - - - - - + diff --git a/src/chrome/content/rules/360_Total_Security.com.xml b/src/chrome/content/rules/360_Total_Security.com.xml index 56b8ea48e40c..2a00ba122805 100644 --- a/src/chrome/content/rules/360_Total_Security.com.xml +++ b/src/chrome/content/rules/360_Total_Security.com.xml @@ -20,7 +20,7 @@ - + https://origin.360yield.com/: (35, 'Unknown SSL protocol error in connection to origin.360yield.com:443 ') + Non-functional hosts + SSL connect error: + - origin.360yield.com - Cert mismatch: + SSL peer certificate was not OK: - publisher.360yield.com --> - - + - - - - - - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/360buy.com.xml b/src/chrome/content/rules/360buy.com.xml index 9cb622e4dea9..4ff7b0d251fd 100644 --- a/src/chrome/content/rules/360buy.com.xml +++ b/src/chrome/content/rules/360buy.com.xml @@ -46,7 +46,7 @@ --> - + - - - - - - - - - - - diff --git a/src/chrome/content/rules/36Kr.xml b/src/chrome/content/rules/36Kr.xml index 929ab9dd7f29..34018363174f 100644 --- a/src/chrome/content/rules/36Kr.xml +++ b/src/chrome/content/rules/36Kr.xml @@ -4,7 +4,7 @@ events.36kr.com qiye.36kr.com research.36kr.com - + krspace.cn --> @@ -18,7 +18,7 @@ - + diff --git a/src/chrome/content/rules/37Signals.xml b/src/chrome/content/rules/37Signals.xml index 9b6a3eb568ae..be544f3e0efd 100644 --- a/src/chrome/content/rules/37Signals.xml +++ b/src/chrome/content/rules/37Signals.xml @@ -5,7 +5,7 @@ - + diff --git a/src/chrome/content/rules/38.de.xml b/src/chrome/content/rules/38.de.xml index 5ef5de2652cd..3428213ee900 100644 --- a/src/chrome/content/rules/38.de.xml +++ b/src/chrome/content/rules/38.de.xml @@ -8,7 +8,7 @@ STS header includes includeSubdomains --> - + @@ -19,9 +19,9 @@ - - + + - + diff --git a/src/chrome/content/rules/38north.org.xml b/src/chrome/content/rules/38north.org.xml new file mode 100644 index 000000000000..ed2bf79139aa --- /dev/null +++ b/src/chrome/content/rules/38north.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/3Blue1Brown.com.xml b/src/chrome/content/rules/3Blue1Brown.com.xml new file mode 100644 index 000000000000..3e1f7e72e86a --- /dev/null +++ b/src/chrome/content/rules/3Blue1Brown.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/3DCenter.org.xml b/src/chrome/content/rules/3DCenter.org.xml index d7f9b5fb33c0..57b83cf6b455 100644 --- a/src/chrome/content/rules/3DCenter.org.xml +++ b/src/chrome/content/rules/3DCenter.org.xml @@ -21,6 +21,6 @@ - diff --git a/src/chrome/content/rules/3DStats.xml b/src/chrome/content/rules/3DStats.xml deleted file mode 100644 index b4425b4a5445..000000000000 --- a/src/chrome/content/rules/3DStats.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/3D_Robotics.com.xml b/src/chrome/content/rules/3D_Robotics.com.xml index ff41d350ef67..6b4c6a76482a 100644 --- a/src/chrome/content/rules/3D_Robotics.com.xml +++ b/src/chrome/content/rules/3D_Robotics.com.xml @@ -18,7 +18,7 @@ Fetch error: http://www.store.3drobotics.com/ => https://www.store.3drobotics.co * Secured by us --> - + diff --git a/src/chrome/content/rules/3D_Vision_Live.com.xml b/src/chrome/content/rules/3D_Vision_Live.com.xml deleted file mode 100644 index fa6301b5df9a..000000000000 --- a/src/chrome/content/rules/3D_Vision_Live.com.xml +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/3FM.nl.xml b/src/chrome/content/rules/3FM.nl.xml new file mode 100644 index 000000000000..785cbc402f14 --- /dev/null +++ b/src/chrome/content/rules/3FM.nl.xml @@ -0,0 +1,24 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/3FM.xml b/src/chrome/content/rules/3FM.xml deleted file mode 100644 index 6260a1a11601..000000000000 --- a/src/chrome/content/rules/3FM.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - diff --git a/src/chrome/content/rules/3M.com.xml b/src/chrome/content/rules/3M.com.xml index 4d782fc91ad3..6caa5297b33e 100644 --- a/src/chrome/content/rules/3M.com.xml +++ b/src/chrome/content/rules/3M.com.xml @@ -28,7 +28,9 @@ - + + + - + diff --git a/src/chrome/content/rules/3conline.com.xml b/src/chrome/content/rules/3conline.com.xml index 1b153bbcbfe0..44e78147d47d 100644 --- a/src/chrome/content/rules/3conline.com.xml +++ b/src/chrome/content/rules/3conline.com.xml @@ -11,8 +11,8 @@ Fetch error: http://js.3conline.com/ => https://js.3conline.com/: (28, 'Connecti - www --> - - + + diff --git a/src/chrome/content/rules/3ders.org.xml b/src/chrome/content/rules/3ders.org.xml new file mode 100644 index 000000000000..812016c74e73 --- /dev/null +++ b/src/chrome/content/rules/3ders.org.xml @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/src/chrome/content/rules/3dr.com.xml b/src/chrome/content/rules/3dr.com.xml index adfb681c681a..8ec4c41ead92 100644 --- a/src/chrome/content/rules/3dr.com.xml +++ b/src/chrome/content/rules/3dr.com.xml @@ -37,7 +37,7 @@ - + + + + + + + + + + diff --git a/src/chrome/content/rules/3min.xml b/src/chrome/content/rules/3min.xml deleted file mode 100644 index c6262867f57e..000000000000 --- a/src/chrome/content/rules/3min.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/3refe.com.xml b/src/chrome/content/rules/3refe.com.xml new file mode 100644 index 000000000000..cca7b473c762 --- /dev/null +++ b/src/chrome/content/rules/3refe.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/3sat.xml b/src/chrome/content/rules/3sat.xml index 8104f510c603..bccbd1b00f2c 100644 --- a/src/chrome/content/rules/3sat.xml +++ b/src/chrome/content/rules/3sat.xml @@ -1,15 +1,35 @@ - + + - + + + + + + + + + + + + + + + + - diff --git a/src/chrome/content/rules/3suisses.de.xml b/src/chrome/content/rules/3suisses.de.xml deleted file mode 100644 index d05d3bd2c0aa..000000000000 --- a/src/chrome/content/rules/3suisses.de.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/3taps.xml b/src/chrome/content/rules/3taps.xml index 2fe2cd365ee3..6ebb54a8ff55 100644 --- a/src/chrome/content/rules/3taps.xml +++ b/src/chrome/content/rules/3taps.xml @@ -6,7 +6,7 @@ Fetch error: http://developer.3taps.com/ => https://developer.3taps.com/: (51, " Fetch error: http://www.3taps.com/ => https://www.3taps.com/: (60, 'SSL certificate problem: certificate has expired') --> - + @@ -18,4 +18,4 @@ Fetch error: http://www.3taps.com/ => https://www.3taps.com/: (60, 'SSL certific - \ No newline at end of file + diff --git a/src/chrome/content/rules/3v1n0.net.xml b/src/chrome/content/rules/3v1n0.net.xml index 1011e615def9..d3718ff44dab 100644 --- a/src/chrome/content/rules/3v1n0.net.xml +++ b/src/chrome/content/rules/3v1n0.net.xml @@ -2,7 +2,7 @@ Mixed content: - css, on: - + - blog from fonts.googleapis.com ˢ - www from tumblelog.3v1n0.net ˢ - www from www.3v1n0.net ˢ @@ -39,7 +39,7 @@ - + https://images.42floors.com/: (6, 'C ² Secured by us --> - + diff --git a/src/chrome/content/rules/435_by_MJC.com.xml b/src/chrome/content/rules/435_by_MJC.com.xml index 7606988d6232..b12646d38f12 100644 --- a/src/chrome/content/rules/435_by_MJC.com.xml +++ b/src/chrome/content/rules/435_by_MJC.com.xml @@ -4,8 +4,6 @@ Disabled by https-everywhere-checker because: Fetch error: http://435bymjc.com/ => https://435bymjc.com/: (60, 'SSL certificate problem: certificate has expired') Fetch error: http://www.435bymjc.com/ => https://www.435bymjc.com/: (60, 'SSL certificate problem: certificate has expired') - For other Matilda Jane Clothing coverage, see Matilda_Jane_Clothing.com.xml. - Insecure cookies are set for these domains and hosts: @@ -13,7 +11,7 @@ Fetch error: http://www.435bymjc.com/ => https://www.435bymjc.com/: (60, 'SSL ce - www.435bymjc.com --> - + diff --git a/src/chrome/content/rules/43rumors.com.xml b/src/chrome/content/rules/43rumors.com.xml new file mode 100644 index 000000000000..00522c9de72e --- /dev/null +++ b/src/chrome/content/rules/43rumors.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/444.hu.xml b/src/chrome/content/rules/444.hu.xml index 86cfa71c61e7..9f4926be453d 100644 --- a/src/chrome/content/rules/444.hu.xml +++ b/src/chrome/content/rules/444.hu.xml @@ -1,16 +1,13 @@ - + + + + @@ -21,18 +18,27 @@ + + + + + + + + + + to="https:" /> diff --git a/src/chrome/content/rules/451-Group.xml b/src/chrome/content/rules/451-Group.xml index 76c850a9a9c4..1e5017b81d8c 100644 --- a/src/chrome/content/rules/451-Group.xml +++ b/src/chrome/content/rules/451-Group.xml @@ -3,7 +3,7 @@ - + diff --git a/src/chrome/content/rules/4D.com.xml b/src/chrome/content/rules/4D.com.xml index e65eac2f5652..9cea66d66c22 100644 --- a/src/chrome/content/rules/4D.com.xml +++ b/src/chrome/content/rules/4D.com.xml @@ -6,13 +6,12 @@ --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/4DO.xml b/src/chrome/content/rules/4DO.xml index 929be4efb849..fd1f5c59b2ce 100644 --- a/src/chrome/content/rules/4DO.xml +++ b/src/chrome/content/rules/4DO.xml @@ -2,17 +2,18 @@ - + + + - + - + diff --git a/src/chrome/content/rules/4Tulemar.xml b/src/chrome/content/rules/4Tulemar.xml deleted file mode 100644 index 28c9eeec7977..000000000000 --- a/src/chrome/content/rules/4Tulemar.xml +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/4_Free_Proxy.xml b/src/chrome/content/rules/4_Free_Proxy.xml deleted file mode 100644 index 855abcf4e558..000000000000 --- a/src/chrome/content/rules/4_Free_Proxy.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/4cdn.hu.xml b/src/chrome/content/rules/4cdn.hu.xml new file mode 100644 index 000000000000..2eeb1668f53b --- /dev/null +++ b/src/chrome/content/rules/4cdn.hu.xml @@ -0,0 +1,13 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/4chan.xml b/src/chrome/content/rules/4chan.xml index f6d2071badf2..2fb4acd8e0f2 100644 --- a/src/chrome/content/rules/4chan.xml +++ b/src/chrome/content/rules/4chan.xml @@ -1,61 +1,41 @@ - - - - - - - - - - + + + + + + + + + + + + + - + + + + + - + + diff --git a/src/chrome/content/rules/4dsply.com.xml b/src/chrome/content/rules/4dsply.com.xml index 02fb273a6f17..bc524422f32d 100644 --- a/src/chrome/content/rules/4dsply.com.xml +++ b/src/chrome/content/rules/4dsply.com.xml @@ -21,7 +21,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/4sevens.xml b/src/chrome/content/rules/4sevens.xml index 21c867d3f559..7828e2b4d682 100644 --- a/src/chrome/content/rules/4sevens.xml +++ b/src/chrome/content/rules/4sevens.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.4sevens.com/ => https://www.4sevens.com/: (60, 'SSL certificate problem: certificate has expired') Fetch error: http://4sevens.com/ => https://www.4sevens.com/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/5000etherhomepage.com.xml b/src/chrome/content/rules/5000etherhomepage.com.xml deleted file mode 100644 index fec2675dd568..000000000000 --- a/src/chrome/content/rules/5000etherhomepage.com.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/500px.org.xml b/src/chrome/content/rules/500px.org.xml index 2dc25d4c7780..7b8fc39a8167 100644 --- a/src/chrome/content/rules/500px.org.xml +++ b/src/chrome/content/rules/500px.org.xml @@ -1,27 +1,34 @@ - + + + + + + + - + + + + + + + + diff --git a/src/chrome/content/rules/512_Pixels.xml b/src/chrome/content/rules/512_Pixels.xml index 5718594fd48b..fdbff58ff261 100644 --- a/src/chrome/content/rules/512_Pixels.xml +++ b/src/chrome/content/rules/512_Pixels.xml @@ -4,7 +4,7 @@ - + https://static.51fanli.net/: (60, 'SSL certificate problem: unable to get local issuer certificate') + For other Fanli coverage, see Fanli.com.xml. - Mismatch: - imagefile.51fanli.com + Expired Certificate: + imagefile.51fanli.net --> - @@ -20,16 +24,11 @@ - + - - - - - + diff --git a/src/chrome/content/rules/55ch.org.xml b/src/chrome/content/rules/55ch.org.xml index acf1b118b4c9..d1bb32bf6765 100644 --- a/src/chrome/content/rules/55ch.org.xml +++ b/src/chrome/content/rules/55ch.org.xml @@ -5,7 +5,7 @@ Fetch error: http://55ch.org/ => https://55ch.org/: (35, 'error:14077410:SSL rou Fetch error: http://www.55ch.org/ => https://www.55ch.org/: (7, 'Failed to connect to www.55ch.org port 443: Connection refused') --> - + diff --git a/src/chrome/content/rules/58.com.xml b/src/chrome/content/rules/58.com.xml index d7fcc292ea27..c3b56b8d1a20 100644 --- a/src/chrome/content/rules/58.com.xml +++ b/src/chrome/content/rules/58.com.xml @@ -14,6 +14,7 @@ pic2.58.com ( https://pic2.58.com/m58/app58/m_static/home.html ) api.wireless.58.com api.wap.58.com + flash.bangbang.58.com Redirects to 404 error page: ^58.com @@ -23,14 +24,15 @@ jing.58.com verifycode.58.com (city).58.com ( bj.58.com and so on. ) + + 502 + tracklog.58.com --> - - @@ -42,8 +44,6 @@ - - @@ -51,7 +51,7 @@ - + diff --git a/src/chrome/content/rules/58CDN.com.cn.xml b/src/chrome/content/rules/58CDN.com.cn.xml index 3f6e6c6a2094..fe2ff184a651 100644 --- a/src/chrome/content/rules/58CDN.com.cn.xml +++ b/src/chrome/content/rules/58CDN.com.cn.xml @@ -27,7 +27,7 @@ - + diff --git a/src/chrome/content/rules/5NINES.xml b/src/chrome/content/rules/5NINES.xml index 78aca6ef13b3..3c9f0edad71e 100644 --- a/src/chrome/content/rules/5NINES.xml +++ b/src/chrome/content/rules/5NINES.xml @@ -9,15 +9,14 @@ Fetch error: http://portal.5ninesdata.com/ => https://portal.5ninesdata.com/: (2 - (www.)enjoy5nines.com (ditto) --> - + - + - + diff --git a/src/chrome/content/rules/5ch.xml b/src/chrome/content/rules/5ch.xml new file mode 100644 index 000000000000..dc7c80a0d85c --- /dev/null +++ b/src/chrome/content/rules/5ch.xml @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/5min.com.xml b/src/chrome/content/rules/5min.com.xml index d699dc1478b8..b7fcc5b390e4 100644 --- a/src/chrome/content/rules/5min.com.xml +++ b/src/chrome/content/rules/5min.com.xml @@ -61,7 +61,7 @@ Fetch error: http://pthumbnails.5min.com/ => https://thumbnails.5min.com/: (60, * Akamai --> - + diff --git a/src/chrome/content/rules/5vpn.net.xml b/src/chrome/content/rules/5vpn.net.xml deleted file mode 100644 index 1c49aefd7f78..000000000000 --- a/src/chrome/content/rules/5vpn.net.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/64Px.com.xml b/src/chrome/content/rules/64Px.com.xml index 93aebb596b9a..b010eaf9dbf6 100644 --- a/src/chrome/content/rules/64Px.com.xml +++ b/src/chrome/content/rules/64Px.com.xml @@ -1,14 +1,26 @@ - + - - + diff --git a/src/chrome/content/rules/66option.com.xml b/src/chrome/content/rules/66option.com.xml deleted file mode 100644 index de2db8f310f5..000000000000 --- a/src/chrome/content/rules/66option.com.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/680news.com.xml b/src/chrome/content/rules/680news.com.xml new file mode 100644 index 000000000000..a678585d2d54 --- /dev/null +++ b/src/chrome/content/rules/680news.com.xml @@ -0,0 +1,21 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/6PM.com.xml b/src/chrome/content/rules/6PM.com.xml deleted file mode 100644 index aecbef4ad1cb..000000000000 --- a/src/chrome/content/rules/6PM.com.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/6Scan.com.xml b/src/chrome/content/rules/6Scan.com.xml deleted file mode 100644 index d055c4f04fe6..000000000000 --- a/src/chrome/content/rules/6Scan.com.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/6connect.com.xml b/src/chrome/content/rules/6connect.com.xml index b7c6c6d8d84b..346041c51c13 100644 --- a/src/chrome/content/rules/6connect.com.xml +++ b/src/chrome/content/rules/6connect.com.xml @@ -4,7 +4,7 @@ - + - - - - - diff --git a/src/chrome/content/rules/6xq.net.xml b/src/chrome/content/rules/6xq.net.xml index eeb062a71207..41c0554a742a 100644 --- a/src/chrome/content/rules/6xq.net.xml +++ b/src/chrome/content/rules/6xq.net.xml @@ -3,12 +3,12 @@ SSL peer certificate was not OK: - ns.6xq.net + Connection refused: + - luna.6xq.net + --> - - - diff --git a/src/chrome/content/rules/7-Eleven.com.xml b/src/chrome/content/rules/7-Eleven.com.xml index 97428923c846..cbbdbba3b91b 100644 --- a/src/chrome/content/rules/7-Eleven.com.xml +++ b/src/chrome/content/rules/7-Eleven.com.xml @@ -1,84 +1,22 @@ - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + diff --git a/src/chrome/content/rules/7-Zip.org.xml b/src/chrome/content/rules/7-Zip.org.xml new file mode 100644 index 000000000000..de74249a118c --- /dev/null +++ b/src/chrome/content/rules/7-Zip.org.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/7Headlines.com.xml b/src/chrome/content/rules/7Headlines.com.xml deleted file mode 100644 index e0830a2a803e..000000000000 --- a/src/chrome/content/rules/7Headlines.com.xml +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/7_Elements.co.uk.xml b/src/chrome/content/rules/7_Elements.co.uk.xml index 0a416d1689cb..682ff45af2dd 100644 --- a/src/chrome/content/rules/7_Elements.co.uk.xml +++ b/src/chrome/content/rules/7_Elements.co.uk.xml @@ -9,7 +9,7 @@ Non-2xx HTTP code: http://7elements.co.uk/ (200) => https://7elements.co.uk/ (40 - www.7elements.co.uk --> - + diff --git a/src/chrome/content/rules/7eer.net.xml b/src/chrome/content/rules/7eer.net.xml index eb6e7f8c8780..b7832bd222a7 100644 --- a/src/chrome/content/rules/7eer.net.xml +++ b/src/chrome/content/rules/7eer.net.xml @@ -24,7 +24,7 @@ --> - + - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/7terminals.com.xml b/src/chrome/content/rules/7terminals.com.xml deleted file mode 100644 index d98f7fffbb5f..000000000000 --- a/src/chrome/content/rules/7terminals.com.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/800HelpFla.com.xml b/src/chrome/content/rules/800HelpFla.com.xml new file mode 100644 index 000000000000..fd2086bee703 --- /dev/null +++ b/src/chrome/content/rules/800HelpFla.com.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/80s_Purple.com.xml b/src/chrome/content/rules/80s_Purple.com.xml index df30f27eb2f9..0c6bb197559e 100644 --- a/src/chrome/content/rules/80s_Purple.com.xml +++ b/src/chrome/content/rules/80s_Purple.com.xml @@ -32,7 +32,9 @@ Fetch error: http://80spurple.com/ => https://80spurple.com/: (28, 'Operation ti - + + + @@ -41,4 +43,4 @@ Fetch error: http://80spurple.com/ => https://80spurple.com/: (28, 'Operation ti - \ No newline at end of file + diff --git a/src/chrome/content/rules/888173.net-falsemixed.xml b/src/chrome/content/rules/888173.net-falsemixed.xml index 6dce3aa9573b..fffe526cc5bd 100644 --- a/src/chrome/content/rules/888173.net-falsemixed.xml +++ b/src/chrome/content/rules/888173.net-falsemixed.xml @@ -4,13 +4,10 @@ --> - + - - - + diff --git a/src/chrome/content/rules/888VoIP.com.xml b/src/chrome/content/rules/888VoIP.com.xml index 95c888019d7b..b0824b616e25 100644 --- a/src/chrome/content/rules/888VoIP.com.xml +++ b/src/chrome/content/rules/888VoIP.com.xml @@ -5,7 +5,7 @@ Fetch error: http://888voip.com/ => https://888voip.com/: Too many redirects whi Fetch error: http://www.888voip.com/ => https://www.888voip.com/: Too many redirects while fetching 'https://www.888voip.com/' --> - + diff --git a/src/chrome/content/rules/8R.com.xml b/src/chrome/content/rules/8R.com.xml deleted file mode 100644 index 7b9f46785808..000000000000 --- a/src/chrome/content/rules/8R.com.xml +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/8ch.net.xml b/src/chrome/content/rules/8ch.net.xml index 8d44d1437753..24e9d5f9e353 100644 --- a/src/chrome/content/rules/8ch.net.xml +++ b/src/chrome/content/rules/8ch.net.xml @@ -19,7 +19,7 @@ --> - + https://media.8chan.co/: (28, 'Operation timed out after 30001 milliseconds with 0 bytes received') - ---> - - - - - - - - - diff --git a/src/chrome/content/rules/8tracks.xml b/src/chrome/content/rules/8tracks.xml index f3ece9cbf230..308b6769ec64 100644 --- a/src/chrome/content/rules/8tracks.xml +++ b/src/chrome/content/rules/8tracks.xml @@ -12,7 +12,7 @@ Fetch error: http://www.8tracks.com/ => https://www.8tracks.com/: (7, 'Failed to - imgix.8tracks.com --> - + diff --git a/src/chrome/content/rules/91.com.xml b/src/chrome/content/rules/91.com.xml index 5fba17bec7dd..f54a1bdd2f9b 100644 --- a/src/chrome/content/rules/91.com.xml +++ b/src/chrome/content/rules/91.com.xml @@ -25,7 +25,7 @@ - + - - - - - - - - - - - diff --git a/src/chrome/content/rules/95516.com.xml b/src/chrome/content/rules/95516.com.xml index 3c967fbb85ec..0fa0e5c1d607 100644 --- a/src/chrome/content/rules/95516.com.xml +++ b/src/chrome/content/rules/95516.com.xml @@ -26,7 +26,7 @@ Fetch error: http://nmg.95516.com/ => https://nmg.95516.com/: (60, 'SSL certific 502 - 62.95516.com --> - + diff --git a/src/chrome/content/rules/99Bitcoins.com.xml b/src/chrome/content/rules/99Bitcoins.com.xml index 4585483ccbd6..4289c3c18b54 100644 --- a/src/chrome/content/rules/99Bitcoins.com.xml +++ b/src/chrome/content/rules/99Bitcoins.com.xml @@ -10,7 +10,7 @@ - + diff --git a/src/chrome/content/rules/9anime.to.xml b/src/chrome/content/rules/9anime.to.xml new file mode 100644 index 000000000000..a364c0bf83f6 --- /dev/null +++ b/src/chrome/content/rules/9anime.to.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/9gag.com.xml b/src/chrome/content/rules/9gag.com.xml index 386d33da0a88..44b89bcf123f 100644 --- a/src/chrome/content/rules/9gag.com.xml +++ b/src/chrome/content/rules/9gag.com.xml @@ -1,50 +1,4 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/9p.io.xml b/src/chrome/content/rules/9p.io.xml new file mode 100644 index 000000000000..e6ccff92c248 --- /dev/null +++ b/src/chrome/content/rules/9p.io.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/src/chrome/content/rules/9tv.co.il.xml b/src/chrome/content/rules/9tv.co.il.xml index f334837fd545..001299cad4cd 100644 --- a/src/chrome/content/rules/9tv.co.il.xml +++ b/src/chrome/content/rules/9tv.co.il.xml @@ -19,7 +19,7 @@ vek.9tv.co.il mixed content ¹ mismatch ³ timed out --> - + diff --git a/src/chrome/content/rules/A1-Telekom-Austria.xml b/src/chrome/content/rules/A1-Telekom-Austria.xml index 30020a450166..d8bd5ed93666 100644 --- a/src/chrome/content/rules/A1-Telekom-Austria.xml +++ b/src/chrome/content/rules/A1-Telekom-Austria.xml @@ -38,7 +38,7 @@ --> - + diff --git a/src/chrome/content/rules/A14_Electronics.com.xml b/src/chrome/content/rules/A14_Electronics.com.xml index d239b200e61b..d4328c44642b 100644 --- a/src/chrome/content/rules/A14_Electronics.com.xml +++ b/src/chrome/content/rules/A14_Electronics.com.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://a14electronics.com/ => https://a14electronics.com/: (51, "SSL: no alternative certificate subject name matches target host name 'a14electronics.com'") --> - + diff --git a/src/chrome/content/rules/A1A_Fast_Cash.xml b/src/chrome/content/rules/A1A_Fast_Cash.xml deleted file mode 100644 index 98ebd020e18f..000000000000 --- a/src/chrome/content/rules/A1A_Fast_Cash.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/A4apphack-mismatches.xml b/src/chrome/content/rules/A4apphack-mismatches.xml index d92baf46dd23..08202c62838a 100644 --- a/src/chrome/content/rules/A4apphack-mismatches.xml +++ b/src/chrome/content/rules/A4apphack-mismatches.xml @@ -2,7 +2,8 @@ - + + diff --git a/src/chrome/content/rules/A4uexpo.com.xml b/src/chrome/content/rules/A4uexpo.com.xml index 2b47c2710bfa..6c81d0a6a1dd 100644 --- a/src/chrome/content/rules/A4uexpo.com.xml +++ b/src/chrome/content/rules/A4uexpo.com.xml @@ -30,7 +30,7 @@ - + @@ -39,4 +39,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/A8.net.xml b/src/chrome/content/rules/A8.net.xml index 82f31db724dc..578190266b39 100644 --- a/src/chrome/content/rules/A8.net.xml +++ b/src/chrome/content/rules/A8.net.xml @@ -17,7 +17,6 @@ - diff --git a/src/chrome/content/rules/AA.net.uk.xml b/src/chrome/content/rules/AA.net.uk.xml index e5f41de6e9b6..8cea07fb1174 100644 --- a/src/chrome/content/rules/AA.net.uk.xml +++ b/src/chrome/content/rules/AA.net.uk.xml @@ -29,13 +29,15 @@ --> - + + + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/AA.xml b/src/chrome/content/rules/AA.xml deleted file mode 100644 index 170833a412f5..000000000000 --- a/src/chrome/content/rules/AA.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/AAAS.org.xml b/src/chrome/content/rules/AAAS.org.xml index 389dbdf7462a..3954f329da01 100644 --- a/src/chrome/content/rules/AAAS.org.xml +++ b/src/chrome/content/rules/AAAS.org.xml @@ -4,23 +4,54 @@ - Science_Careers.org.xml - Sciencemag.org.xml - - Nonfunctional hosts in *aaas.org: - - - (www.)? ¹ - - archives ² - - promo ³ - - vivo ¹ - - ¹ Dropped - ² Plaintext reply - ³ Shows default page + Problematic hosts in *aaas.org: + + - ^ (timeout) + - archives (tls error) + - arctic (mismatch) + - atlas (tls error) + - case (tls error) + - hrdata (tls error) + - idp01 (mismatch) + - oascentral (mismatch) + - project2061 (expired) + - promo (different content) + - secureapps (cert chain) + - zserver (tls error) + + There are a further 50+ subdomains that do not support HTTPS. --> + + + + + + + + + + + + + + + + + + - + + + + + + + + diff --git a/src/chrome/content/rules/AABEST.com.xml b/src/chrome/content/rules/AABEST.com.xml new file mode 100644 index 000000000000..9d4ce04c3565 --- /dev/null +++ b/src/chrome/content/rules/AABEST.com.xml @@ -0,0 +1,11 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/AACQA.gov.au.xml b/src/chrome/content/rules/AACQA.gov.au.xml index 74724e317a7b..36b23acc4ff0 100644 --- a/src/chrome/content/rules/AACQA.gov.au.xml +++ b/src/chrome/content/rules/AACQA.gov.au.xml @@ -23,6 +23,6 @@ - diff --git a/src/chrome/content/rules/AARP.org.xml b/src/chrome/content/rules/AARP.org.xml index 315415537e10..9064a50f6b58 100644 --- a/src/chrome/content/rules/AARP.org.xml +++ b/src/chrome/content/rules/AARP.org.xml @@ -64,7 +64,7 @@ Fetch error: http://action.aarp.org/ => https://action.aarp.org/: Too many redir ² Not secured by us <= expired --> - + diff --git a/src/chrome/content/rules/AAS.org.xml b/src/chrome/content/rules/AAS.org.xml index 9dd34e0c832b..f8c3550abe99 100644 --- a/src/chrome/content/rules/AAS.org.xml +++ b/src/chrome/content/rules/AAS.org.xml @@ -43,7 +43,7 @@ Fetch error: http://apj.aas.org/ => https://iopscience.iop.org/0004-637X: (28, ' - members.aas.org --> - + diff --git a/src/chrome/content/rules/AASTOCKS.com.xml b/src/chrome/content/rules/AASTOCKS.com.xml new file mode 100644 index 000000000000..3772da297842 --- /dev/null +++ b/src/chrome/content/rules/AASTOCKS.com.xml @@ -0,0 +1,152 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ABC-Music-Publishing.xml b/src/chrome/content/rules/ABC-Music-Publishing.xml index 1696a57180c8..710d5943dd04 100644 --- a/src/chrome/content/rules/ABC-Music-Publishing.xml +++ b/src/chrome/content/rules/ABC-Music-Publishing.xml @@ -1,9 +1,3 @@ - diff --git a/src/chrome/content/rules/ABC-Online.xml b/src/chrome/content/rules/ABC-Online.xml index 7937c585203a..16ca8477add4 100644 --- a/src/chrome/content/rules/ABC-Online.xml +++ b/src/chrome/content/rules/ABC-Online.xml @@ -3,48 +3,21 @@ - ABC-Music-Publishing.xml - - CDN buckets: - - - d1ros97qkrwjf5.cloudfront.net - - d3mfbaa198drag.cloudfront.net - - cp44823.edgefcs.net - - - Nonfunctional: - - - about.abc.net.au ¹ - - mpegmedia.abc.net.au ² - - origin.abc.net.au ³ (redirects to www via http) - - (www.)abc.net.au ² - - www2b.abc.net.au ³ - - (www.)abccommercial.com.au ³ - - (www.)abccontentsales.com.au ³ - - (www.)abcdigmusic.net.au - - (www.)radioaustralianews.net.au ³ - - (www.)triplejunearthed.com ³ - - ¹ 503, akamai - ² 504, akamai - ³ Dropped - + Non-functional hosts in *.abc.net.au + Timeout: + - shop.abc.net.au --> - - - - + + + + - - - - - + + + - - + diff --git a/src/chrome/content/rules/ABCDTeam.ovh.xml b/src/chrome/content/rules/ABCDTeam.ovh.xml new file mode 100644 index 000000000000..f608f8211e41 --- /dev/null +++ b/src/chrome/content/rules/ABCDTeam.ovh.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/ABCNews.com.xml b/src/chrome/content/rules/ABCNews.com.xml new file mode 100644 index 000000000000..2175b87535a2 --- /dev/null +++ b/src/chrome/content/rules/ABCNews.com.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ABCNews.go.com.xml b/src/chrome/content/rules/ABCNews.go.com.xml new file mode 100644 index 000000000000..e59f4b268340 --- /dev/null +++ b/src/chrome/content/rules/ABCNews.go.com.xml @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/src/chrome/content/rules/ABC_News-falsemixed.xml b/src/chrome/content/rules/ABC_News-falsemixed.xml deleted file mode 100644 index a0556f6807b6..000000000000 --- a/src/chrome/content/rules/ABC_News-falsemixed.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/ABC_News.xml b/src/chrome/content/rules/ABC_News.xml deleted file mode 100644 index 54e916a19a73..000000000000 --- a/src/chrome/content/rules/ABC_News.xml +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/ABI.org.uk.xml b/src/chrome/content/rules/ABI.org.uk.xml index fcb6bd0f4ac4..349fc144046e 100644 --- a/src/chrome/content/rules/ABI.org.uk.xml +++ b/src/chrome/content/rules/ABI.org.uk.xml @@ -23,7 +23,7 @@ - + - - + diff --git a/src/chrome/content/rules/ABI_Research.xml b/src/chrome/content/rules/ABI_Research.xml index 1e9ca7c95e38..f226f9389f78 100644 --- a/src/chrome/content/rules/ABI_Research.xml +++ b/src/chrome/content/rules/ABI_Research.xml @@ -1,7 +1,6 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/ACCAN.xml b/src/chrome/content/rules/ACCAN.xml index e87354c60c01..2e4e08a95249 100644 --- a/src/chrome/content/rules/ACCAN.xml +++ b/src/chrome/content/rules/ACCAN.xml @@ -3,4 +3,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/ACI-Europe.org.xml b/src/chrome/content/rules/ACI-Europe.org.xml index 4c088a0391a4..d77851d3ab8c 100644 --- a/src/chrome/content/rules/ACI-Europe.org.xml +++ b/src/chrome/content/rules/ACI-Europe.org.xml @@ -16,7 +16,7 @@ --> - + https://www.acls.org/: (60, 'SSL certificat - ^ (dropped) --> - + @@ -29,4 +29,4 @@ Fetch error: http://www.acls.org/ => https://www.acls.org/: (60, 'SSL certificat - \ No newline at end of file + diff --git a/src/chrome/content/rules/ACLU-of-Florida.xml b/src/chrome/content/rules/ACLU-of-Florida.xml index 14c52940ef39..35518a5a3607 100644 --- a/src/chrome/content/rules/ACLU-of-Florida.xml +++ b/src/chrome/content/rules/ACLU-of-Florida.xml @@ -2,15 +2,23 @@ For other ACLU coverage, see ACLU.xml + Non-functional hosts: + Certificate expired: + - media.aclufl.org + + Certificate mismatched: + - devespanol.aclufl.org + - northeast.aclufl.org + - panhandle.aclufl.org + - tallahassee.aclufl.org + --> - - @@ -23,27 +31,15 @@ - - - - + - - - - - - - - \ No newline at end of file + diff --git a/src/chrome/content/rules/ACLU-of-Southern-California.xml b/src/chrome/content/rules/ACLU-of-Southern-California.xml deleted file mode 100644 index ba90fc9d6428..000000000000 --- a/src/chrome/content/rules/ACLU-of-Southern-California.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/ACLU-of-Texas.xml b/src/chrome/content/rules/ACLU-of-Texas.xml index 3cf4f63baa57..b28775ab5f0e 100644 --- a/src/chrome/content/rules/ACLU-of-Texas.xml +++ b/src/chrome/content/rules/ACLU-of-Texas.xml @@ -1,10 +1,9 @@ - + - + diff --git a/src/chrome/content/rules/ACLU.xml b/src/chrome/content/rules/ACLU.xml index 7e1fe34a75d2..e2421d90b3e1 100644 --- a/src/chrome/content/rules/ACLU.xml +++ b/src/chrome/content/rules/ACLU.xml @@ -1,4 +1,15 @@ + + + - + - - - + + + diff --git a/src/chrome/content/rules/ACLU_SoCal.org.xml b/src/chrome/content/rules/ACLU_SoCal.org.xml index f0ec4bb299bb..9c8478f70f4f 100644 --- a/src/chrome/content/rules/ACLU_SoCal.org.xml +++ b/src/chrome/content/rules/ACLU_SoCal.org.xml @@ -22,7 +22,7 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ACNC.gov.au.xml b/src/chrome/content/rules/ACNC.gov.au.xml index 84cccceb9614..6e1854f810f8 100644 --- a/src/chrome/content/rules/ACNC.gov.au.xml +++ b/src/chrome/content/rules/ACNC.gov.au.xml @@ -17,7 +17,7 @@ --> - + https://bugs.acpica.org/: (60, 'SSL certificate problem: unable to get local issuer certificate') - - For other Intel coverage, see Intel.xml. - - - Fully covered subdomains: - - - (www.) (www → ^) - - bugs - - lists - ---> - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/ACTION_Kooperative.xml b/src/chrome/content/rules/ACTION_Kooperative.xml index 199a15940a32..e51c28a9f031 100644 --- a/src/chrome/content/rules/ACTION_Kooperative.xml +++ b/src/chrome/content/rules/ACTION_Kooperative.xml @@ -6,7 +6,7 @@ Fetch error: http://mail.action.at/ => https://mail.action.at/: (60, 'SSL certif Disabled by https-everywhere-checker because: Fetch error: http://mail.action.at/ => https://mail.action.at/: (51, "SSL: no alternative certificate subject name matches target host name 'mail.action.at'") --> - + @@ -14,7 +14,6 @@ Fetch error: http://mail.action.at/ => https://mail.action.at/: (51, "SSL: no al - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/AD4mat.xml b/src/chrome/content/rules/AD4mat.xml index bdbb22d4d9da..3d7b38983c89 100644 --- a/src/chrome/content/rules/AD4mat.xml +++ b/src/chrome/content/rules/AD4mat.xml @@ -19,7 +19,7 @@ Cert mismatch: - gd.ad4mat.de - + TimeOut: - ch.ad4mat.info - it.ad4mat.info @@ -35,5 +35,5 @@ - + diff --git a/src/chrome/content/rules/ADCocktail.xml b/src/chrome/content/rules/ADCocktail.xml index 5c395f07d98d..3a87a35d1df9 100644 --- a/src/chrome/content/rules/ADCocktail.xml +++ b/src/chrome/content/rules/ADCocktail.xml @@ -17,4 +17,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/ADD-Assoc-Southern-Region.xml b/src/chrome/content/rules/ADD-Assoc-Southern-Region.xml index 4d3531a765a7..67386ac06618 100644 --- a/src/chrome/content/rules/ADD-Assoc-Southern-Region.xml +++ b/src/chrome/content/rules/ADD-Assoc-Southern-Region.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://adda-sr.org/ => https://www.adda-sr.org/: (7, 'Failed to connect to www.adda-sr.org port 443: Connection refused') Fetch error: http://www.adda-sr.org/ => https://www.adda-sr.org/: (7, 'Failed to connect to www.adda-sr.org port 443: Connection refused') --> - + diff --git a/src/chrome/content/rules/ADP_Retirement_Services.xml b/src/chrome/content/rules/ADP_Retirement_Services.xml index 2dce6fb2c363..f4057bb2a8ae 100644 --- a/src/chrome/content/rules/ADP_Retirement_Services.xml +++ b/src/chrome/content/rules/ADP_Retirement_Services.xml @@ -10,7 +10,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://mykplan.com/ => https://mykplan.com/: (51, "SSL: no alternative certificate subject name matches target host name 'mykplan.com'") --> - + diff --git a/src/chrome/content/rules/ADP_VirtualEdge.xml b/src/chrome/content/rules/ADP_VirtualEdge.xml deleted file mode 100644 index 70e64cca26c9..000000000000 --- a/src/chrome/content/rules/ADP_VirtualEdge.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/ADTmag.com.xml b/src/chrome/content/rules/ADTmag.com.xml index 5eccdce5871c..471ddb8d8d16 100644 --- a/src/chrome/content/rules/ADTmag.com.xml +++ b/src/chrome/content/rules/ADTmag.com.xml @@ -19,7 +19,7 @@ --> - + - - + - - - + + diff --git a/src/chrome/content/rules/AD_Security.org.xml b/src/chrome/content/rules/AD_Security.org.xml index a7957046da7b..02a16fe5feb6 100644 --- a/src/chrome/content/rules/AD_Security.org.xml +++ b/src/chrome/content/rules/AD_Security.org.xml @@ -4,7 +4,7 @@ - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/AEGEE-Enschede.nl.xml b/src/chrome/content/rules/AEGEE-Enschede.nl.xml index b4983e5dfd3b..825ca0631e98 100644 --- a/src/chrome/content/rules/AEGEE-Enschede.nl.xml +++ b/src/chrome/content/rules/AEGEE-Enschede.nl.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/AEMI.xml b/src/chrome/content/rules/AEMI.xml deleted file mode 100644 index 6d2a928f107a..000000000000 --- a/src/chrome/content/rules/AEMI.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/AFCEA.xml b/src/chrome/content/rules/AFCEA.xml index cec324232377..cf270bd43975 100644 --- a/src/chrome/content/rules/AFCEA.xml +++ b/src/chrome/content/rules/AFCEA.xml @@ -4,7 +4,7 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/AGU.org.xml b/src/chrome/content/rules/AGU.org.xml index 8305150879b9..04da98e0bc22 100644 --- a/src/chrome/content/rules/AGU.org.xml +++ b/src/chrome/content/rules/AGU.org.xml @@ -56,7 +56,23 @@ --> - + + + + + + + + + + + + + + + + + - + diff --git a/src/chrome/content/rules/AIA-Surety.xml b/src/chrome/content/rules/AIA-Surety.xml index f92895fe5001..54da7900484e 100644 --- a/src/chrome/content/rules/AIA-Surety.xml +++ b/src/chrome/content/rules/AIA-Surety.xml @@ -1,18 +1,15 @@ - + + - + - - - + diff --git a/src/chrome/content/rules/AIM.com.xml b/src/chrome/content/rules/AIM.com.xml deleted file mode 100644 index 5ba924f8d68d..000000000000 --- a/src/chrome/content/rules/AIM.com.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/AIP.org.xml b/src/chrome/content/rules/AIP.org.xml index ee8871ff01dd..ae751b49dc66 100644 --- a/src/chrome/content/rules/AIP.org.xml +++ b/src/chrome/content/rules/AIP.org.xml @@ -8,7 +8,7 @@ Fetch error: http://scitation.aip.org/images/aip/aip_logo_transparent.gif => htt ^aip.org: Mismatched --> - + @@ -42,7 +42,7 @@ Fetch error: http://scitation.aip.org/images/aip/aip_logo_transparent.gif => htt - + - - diff --git a/src/chrome/content/rules/AJs_Ski_and_Sports.xml b/src/chrome/content/rules/AJs_Ski_and_Sports.xml index dbebd3d54c27..eeb1614bde8d 100644 --- a/src/chrome/content/rules/AJs_Ski_and_Sports.xml +++ b/src/chrome/content/rules/AJs_Ski_and_Sports.xml @@ -1,21 +1,11 @@ - - - + - - - - + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/AK-Vorrat.de.xml b/src/chrome/content/rules/AK-Vorrat.de.xml index 87e6a3d93407..325f0ef16767 100644 --- a/src/chrome/content/rules/AK-Vorrat.de.xml +++ b/src/chrome/content/rules/AK-Vorrat.de.xml @@ -15,7 +15,7 @@ tuebingen.vorratsdatenspeicherung.de --> - + diff --git a/src/chrome/content/rules/AKA.ms.xml b/src/chrome/content/rules/AKA.ms.xml index 9b128f2f0895..3cb49cab2d2f 100644 --- a/src/chrome/content/rules/AKA.ms.xml +++ b/src/chrome/content/rules/AKA.ms.xml @@ -18,7 +18,7 @@ --> - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ALA.org.xml b/src/chrome/content/rules/ALA.org.xml index cb74822769a1..7b84840c9a11 100644 --- a/src/chrome/content/rules/ALA.org.xml +++ b/src/chrome/content/rules/ALA.org.xml @@ -46,7 +46,7 @@ Fetch error: http://joblist.ala.org/ => https://joblist.ala.org/: (51, "SSL: no * Secured by us --> - + diff --git a/src/chrome/content/rules/ALDI.xml b/src/chrome/content/rules/ALDI.xml index 0636cc71db2c..a3aec17cc9a1 100644 --- a/src/chrome/content/rules/ALDI.xml +++ b/src/chrome/content/rules/ALDI.xml @@ -29,7 +29,7 @@ Refused: - transparenz.aldi-nord.de - *aldi.com --> - + diff --git a/src/chrome/content/rules/ALDImobile.com.au.xml b/src/chrome/content/rules/ALDImobile.com.au.xml index eef8402717fc..c604db0486e0 100644 --- a/src/chrome/content/rules/ALDImobile.com.au.xml +++ b/src/chrome/content/rules/ALDImobile.com.au.xml @@ -4,6 +4,6 @@ - diff --git a/src/chrome/content/rules/ALPriorityUSA.com.xml b/src/chrome/content/rules/ALPriorityUSA.com.xml new file mode 100644 index 000000000000..ed7d1ab4dd60 --- /dev/null +++ b/src/chrome/content/rules/ALPriorityUSA.com.xml @@ -0,0 +1,12 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/ALTS.Trade.xml b/src/chrome/content/rules/ALTS.Trade.xml index 6869bbeae7e4..08a6a2821c74 100644 --- a/src/chrome/content/rules/ALTS.Trade.xml +++ b/src/chrome/content/rules/ALTS.Trade.xml @@ -12,7 +12,7 @@ Fetch error: http://www.alts.trade/ => https://alts.trade/: (7, 'Failed to conne - .alts.trade --> - + diff --git a/src/chrome/content/rules/ALT_Linux.org-problematic.xml b/src/chrome/content/rules/ALT_Linux.org-problematic.xml index 3a55b9ee54d6..3d1d070c9f4d 100644 --- a/src/chrome/content/rules/ALT_Linux.org-problematic.xml +++ b/src/chrome/content/rules/ALT_Linux.org-problematic.xml @@ -5,7 +5,7 @@ Server sends includeSubdomains in HSTS header. --> - + diff --git a/src/chrome/content/rules/AMC.xml b/src/chrome/content/rules/AMC.xml index 059e60ce487c..afe918873fd2 100644 --- a/src/chrome/content/rules/AMC.xml +++ b/src/chrome/content/rules/AMC.xml @@ -20,19 +20,19 @@ Fetch error: http://media.amctv.com/ => https://media.amctv.com/: (7, 'Failed to Mixed content: - css, on: - + - www from $self ˢ - www from fast.fonts.net ˢ - Images, on: - + - www from $self ˢ - www from images.amcnetworks.com ˢ ˢ Secured by us --> - + diff --git a/src/chrome/content/rules/AMCTheatres.xml b/src/chrome/content/rules/AMCTheatres.xml index d9304094fd58..14015ed51587 100644 --- a/src/chrome/content/rules/AMCTheatres.xml +++ b/src/chrome/content/rules/AMCTheatres.xml @@ -2,7 +2,7 @@ - + diff --git a/src/chrome/content/rules/AMPR.org.xml b/src/chrome/content/rules/AMPR.org.xml new file mode 100644 index 000000000000..b9a54fd51861 --- /dev/null +++ b/src/chrome/content/rules/AMPR.org.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/AMS.org.xml b/src/chrome/content/rules/AMS.org.xml index 8fefacd38a19..ced1f5703c86 100644 --- a/src/chrome/content/rules/AMS.org.xml +++ b/src/chrome/content/rules/AMS.org.xml @@ -59,9 +59,9 @@ - - diff --git a/src/chrome/content/rules/AMStat.org.xml b/src/chrome/content/rules/AMStat.org.xml new file mode 100644 index 000000000000..72af77eb008e --- /dev/null +++ b/src/chrome/content/rules/AMStat.org.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/AMetSoc.org.xml b/src/chrome/content/rules/AMetSoc.org.xml index c1ed3f136cc3..d469d853050e 100644 --- a/src/chrome/content/rules/AMetSoc.org.xml +++ b/src/chrome/content/rules/AMetSoc.org.xml @@ -41,7 +41,11 @@ - + + + + + @@ -61,7 +65,6 @@ - + diff --git a/src/chrome/content/rules/AMuseWiki.org.xml b/src/chrome/content/rules/AMuseWiki.org.xml new file mode 100644 index 000000000000..8c5e4bd1b9d0 --- /dev/null +++ b/src/chrome/content/rules/AMuseWiki.org.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ANB.xml b/src/chrome/content/rules/ANB.xml index 5cc26a93f6bc..dd067ee6eabe 100644 --- a/src/chrome/content/rules/ANB.xml +++ b/src/chrome/content/rules/ANB.xml @@ -4,10 +4,12 @@ Fetch error: http://anb.com.sa/ => https://www.anb.com.sa/: (60, 'SSL certificat --> - + + + + - + diff --git a/src/chrome/content/rules/ANU.edu.au.xml b/src/chrome/content/rules/ANU.edu.au.xml new file mode 100644 index 000000000000..09e701064628 --- /dev/null +++ b/src/chrome/content/rules/ANU.edu.au.xml @@ -0,0 +1,1159 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ANZ.co.nz.xml b/src/chrome/content/rules/ANZ.co.nz.xml new file mode 100644 index 000000000000..0a3e376e9563 --- /dev/null +++ b/src/chrome/content/rules/ANZ.co.nz.xml @@ -0,0 +1,142 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ANZ.com.au.xml b/src/chrome/content/rules/ANZ.com.au.xml new file mode 100644 index 000000000000..8a9742b66fa1 --- /dev/null +++ b/src/chrome/content/rules/ANZ.com.au.xml @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/chrome/content/rules/ANZ.com.xml b/src/chrome/content/rules/ANZ.com.xml new file mode 100644 index 000000000000..ad4891717d8f --- /dev/null +++ b/src/chrome/content/rules/ANZ.com.xml @@ -0,0 +1,402 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ANZ.xml b/src/chrome/content/rules/ANZ.xml deleted file mode 100644 index c5e03051be67..000000000000 --- a/src/chrome/content/rules/ANZ.xml +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/AOE.com.xml b/src/chrome/content/rules/AOE.com.xml index 40330abfeb81..06ff40fa07da 100644 --- a/src/chrome/content/rules/AOE.com.xml +++ b/src/chrome/content/rules/AOE.com.xml @@ -1,39 +1,10 @@ - - - - - - - + + + - + diff --git a/src/chrome/content/rules/AOK.de.xml b/src/chrome/content/rules/AOK.de.xml index 3caa416f009a..dea5416056ec 100644 --- a/src/chrome/content/rules/AOK.de.xml +++ b/src/chrome/content/rules/AOK.de.xml @@ -27,7 +27,7 @@ Fetch error: http://www.familie.san.aok.de/ => https://familie.san.aok.de/: (7, Fetch error: http://familie.san.aok.de/ => https://familie.san.aok.de/: (7, 'Failed to connect to familie.san.aok.de port 443: Connection refused') --> - + diff --git a/src/chrome/content/rules/AOL-Advertising.xml b/src/chrome/content/rules/AOL-Advertising.xml index 956ed6e9b005..a0c12c0322ac 100644 --- a/src/chrome/content/rules/AOL-Advertising.xml +++ b/src/chrome/content/rules/AOL-Advertising.xml @@ -14,7 +14,7 @@ Fetch error: http://px.at.atwola.com/ => https://px.at.atwola.com/: (6, 'Could n - an.tacoda.net.edgesuite.net --> - + @@ -24,7 +24,7 @@ Fetch error: http://px.at.atwola.com/ => https://px.at.atwola.com/: (6, 'Could n - + - - - - - - - - - - - - - - - - - + diff --git a/src/chrome/content/rules/AOL.co.uk.xml b/src/chrome/content/rules/AOL.co.uk.xml index 6d5ffe8e6cd4..72b211311c22 100644 --- a/src/chrome/content/rules/AOL.co.uk.xml +++ b/src/chrome/content/rules/AOL.co.uk.xml @@ -62,7 +62,7 @@ Fetch error: http://rs.aol.co.uk/ => https://rs.aol.co.uk/: (60, 'SSL certificat * Secured by us --> - + diff --git a/src/chrome/content/rules/AOL.xml b/src/chrome/content/rules/AOL.xml index 03385b28eed2..739e8f0a35bf 100644 --- a/src/chrome/content/rules/AOL.xml +++ b/src/chrome/content/rules/AOL.xml @@ -1,30 +1,43 @@ + - + - + - + - + - + - + - + - + @@ -190,22 +203,20 @@ - - - + + + - + - - - + - + - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/AOL_On_Network.com.xml b/src/chrome/content/rules/AOL_On_Network.com.xml index 175785bdd705..d35b503ef5f8 100644 --- a/src/chrome/content/rules/AOL_On_Network.com.xml +++ b/src/chrome/content/rules/AOL_On_Network.com.xml @@ -32,7 +32,7 @@ Fetch error: http://support.aolonnetwork.com/ => https://support.aolonnetwork.co - console.aolonnetwork.com --> - + diff --git a/src/chrome/content/rules/AOL_Platforms.com.xml b/src/chrome/content/rules/AOL_Platforms.com.xml deleted file mode 100644 index 3de627446daa..000000000000 --- a/src/chrome/content/rules/AOL_Platforms.com.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/AOMedia.org.xml b/src/chrome/content/rules/AOMedia.org.xml new file mode 100644 index 000000000000..e9dec1c79c7f --- /dev/null +++ b/src/chrome/content/rules/AOMedia.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/AP.org.xml b/src/chrome/content/rules/AP.org.xml new file mode 100644 index 000000000000..124ee57b9b02 --- /dev/null +++ b/src/chrome/content/rules/AP.org.xml @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/APA.org.xml b/src/chrome/content/rules/APA.org.xml index 97145bda284b..4becd0cd96eb 100644 --- a/src/chrome/content/rules/APA.org.xml +++ b/src/chrome/content/rules/APA.org.xml @@ -33,7 +33,7 @@ - + diff --git a/src/chrome/content/rules/APAN.org.xml b/src/chrome/content/rules/APAN.org.xml index b1f54eaee2ab..4b75578d7ecc 100644 --- a/src/chrome/content/rules/APAN.org.xml +++ b/src/chrome/content/rules/APAN.org.xml @@ -1,36 +1,4 @@ - - - - - + @@ -45,19 +13,5 @@ Fetch error: http://map.apan.org/ => https://map.apan.org/: (35, 'Unknown SSL pr - - - - - - - - - - - - - + diff --git a/src/chrome/content/rules/APC-Magazine.xml b/src/chrome/content/rules/APC-Magazine.xml index d51fe7616124..ff649f12f6af 100644 --- a/src/chrome/content/rules/APC-Magazine.xml +++ b/src/chrome/content/rules/APC-Magazine.xml @@ -1,15 +1,13 @@ - + - + - - + diff --git a/src/chrome/content/rules/API_Analytics.com.xml b/src/chrome/content/rules/API_Analytics.com.xml deleted file mode 100644 index a4c390aaae06..000000000000 --- a/src/chrome/content/rules/API_Analytics.com.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/APM.com.xml b/src/chrome/content/rules/APM.com.xml index 0016fa2aa5db..b91da56916a9 100644 --- a/src/chrome/content/rules/APM.com.xml +++ b/src/chrome/content/rules/APM.com.xml @@ -9,7 +9,7 @@ Fetch error: http://myapm.apm.com/ => https://myapm.apm.com/: (60, 'SSL certific - www --> - + diff --git a/src/chrome/content/rules/APNews.com.xml b/src/chrome/content/rules/APNews.com.xml index 567fb55c1bda..909f9f0f78bc 100644 --- a/src/chrome/content/rules/APNews.com.xml +++ b/src/chrome/content/rules/APNews.com.xml @@ -14,7 +14,7 @@ - + diff --git a/src/chrome/content/rules/APO_Box.com.xml b/src/chrome/content/rules/APO_Box.com.xml index f6e521dcbd78..01e66c0fa42c 100644 --- a/src/chrome/content/rules/APO_Box.com.xml +++ b/src/chrome/content/rules/APO_Box.com.xml @@ -1,7 +1,8 @@ - + + - + + + + + + + + diff --git a/src/chrome/content/rules/ARDMediathek.de.xml b/src/chrome/content/rules/ARDMediathek.de.xml new file mode 100644 index 000000000000..7b19a8cd5725 --- /dev/null +++ b/src/chrome/content/rules/ARDMediathek.de.xml @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ARICR.org.xml b/src/chrome/content/rules/ARICR.org.xml new file mode 100644 index 000000000000..693dadf7679a --- /dev/null +++ b/src/chrome/content/rules/ARICR.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/ARIN.net.xml b/src/chrome/content/rules/ARIN.net.xml index 0010a4f9f563..5934255c677c 100644 --- a/src/chrome/content/rules/ARIN.net.xml +++ b/src/chrome/content/rules/ARIN.net.xml @@ -29,7 +29,7 @@ Fetch error: http://updown-pilot.arin.net/ => https://updown-pilot.arin.net/: (6 - www --> - + @@ -42,4 +42,4 @@ Fetch error: http://updown-pilot.arin.net/ => https://updown-pilot.arin.net/: (6 - \ No newline at end of file + diff --git a/src/chrome/content/rules/ARIVA.DE.xml b/src/chrome/content/rules/ARIVA.DE.xml new file mode 100644 index 000000000000..d1156e80a907 --- /dev/null +++ b/src/chrome/content/rules/ARIVA.DE.xml @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ARM.com-problematic.xml b/src/chrome/content/rules/ARM.com-problematic.xml deleted file mode 100644 index 8a3d32d0d862..000000000000 --- a/src/chrome/content/rules/ARM.com-problematic.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/ARM.com.xml b/src/chrome/content/rules/ARM.com.xml new file mode 100644 index 000000000000..371168934f88 --- /dev/null +++ b/src/chrome/content/rules/ARM.com.xml @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ARM.xml b/src/chrome/content/rules/ARM.xml deleted file mode 100644 index d3ffb96f1b3d..000000000000 --- a/src/chrome/content/rules/ARM.xml +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/ARMservers.com.xml b/src/chrome/content/rules/ARMservers.com.xml deleted file mode 100644 index 683c92911fd7..000000000000 --- a/src/chrome/content/rules/ARMservers.com.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/ARPNetworks.com.xml b/src/chrome/content/rules/ARPNetworks.com.xml index b333d269b099..ecf8995b7457 100644 --- a/src/chrome/content/rules/ARPNetworks.com.xml +++ b/src/chrome/content/rules/ARPNetworks.com.xml @@ -5,10 +5,12 @@ - + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ASADA.xml b/src/chrome/content/rules/ASADA.xml index d3450d1e856e..1c625d72e705 100644 --- a/src/chrome/content/rules/ASADA.xml +++ b/src/chrome/content/rules/ASADA.xml @@ -1,7 +1,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/ASC_Trust.com.xml b/src/chrome/content/rules/ASC_Trust.com.xml index 6201b97d2a60..cd6a07cd3a2a 100644 --- a/src/chrome/content/rules/ASC_Trust.com.xml +++ b/src/chrome/content/rules/ASC_Trust.com.xml @@ -25,7 +25,7 @@ - + https://groceries.asda.com.d ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -185,7 +185,7 @@ Fetch error: http://omniture.groceries.asda.com/ => https://groceries.asda.com.d - + - + + + - \ No newline at end of file + diff --git a/src/chrome/content/rules/ASN_Bank.nl-problematic.xml b/src/chrome/content/rules/ASN_Bank.nl-problematic.xml deleted file mode 100644 index eb0ae32eee7d..000000000000 --- a/src/chrome/content/rules/ASN_Bank.nl-problematic.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/ASN_Bank.nl.xml b/src/chrome/content/rules/ASN_Bank.nl.xml index 3ddc5632588c..00d6562e6a72 100644 --- a/src/chrome/content/rules/ASN_Bank.nl.xml +++ b/src/chrome/content/rules/ASN_Bank.nl.xml @@ -1,48 +1,13 @@ - - - - - - - - - + + + - - + diff --git a/src/chrome/content/rules/ASP.NET.xml b/src/chrome/content/rules/ASP.NET.xml deleted file mode 100644 index cfc2980d38cb..000000000000 --- a/src/chrome/content/rules/ASP.NET.xml +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/ATG_Web_Commerce.xml b/src/chrome/content/rules/ATG_Web_Commerce.xml deleted file mode 100644 index 33785eda8b9d..000000000000 --- a/src/chrome/content/rules/ATG_Web_Commerce.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/ATNAME.xml b/src/chrome/content/rules/ATNAME.xml index 911b89d66ad6..d80fdf6158dc 100644 --- a/src/chrome/content/rules/ATNAME.xml +++ b/src/chrome/content/rules/ATNAME.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/ATS.aq.xml b/src/chrome/content/rules/ATS.aq.xml index f56b2561b3d8..09b86e4f9aab 100644 --- a/src/chrome/content/rules/ATS.aq.xml +++ b/src/chrome/content/rules/ATS.aq.xml @@ -13,7 +13,7 @@ - + https://static.atv.hu/: (6, 'Could not res - www.atv.hu cert mismatch - atv.hu cert mismatch --> - + - + diff --git a/src/chrome/content/rules/AT_Internet_Solutions.xml b/src/chrome/content/rules/AT_Internet_Solutions.xml index ce5f6767194c..60022d59104f 100644 --- a/src/chrome/content/rules/AT_Internet_Solutions.xml +++ b/src/chrome/content/rules/AT_Internet_Solutions.xml @@ -1,18 +1,111 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - \ No newline at end of file + diff --git a/src/chrome/content/rules/ATandT.xml b/src/chrome/content/rules/ATandT.xml index 21766f684284..bb476a5ed9fa 100644 --- a/src/chrome/content/rules/ATandT.xml +++ b/src/chrome/content/rules/ATandT.xml @@ -1,86 +1,63 @@ - + + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - + + diff --git a/src/chrome/content/rules/ATbar.xml b/src/chrome/content/rules/ATbar.xml index 6be6115abe70..51ca62f66252 100644 --- a/src/chrome/content/rules/ATbar.xml +++ b/src/chrome/content/rules/ATbar.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/ATech.io.xml b/src/chrome/content/rules/ATech.io.xml index 6de6da49c2ad..9f29f133e3f2 100644 --- a/src/chrome/content/rules/ATech.io.xml +++ b/src/chrome/content/rules/ATech.io.xml @@ -14,7 +14,7 @@ Fetch error: http://cacti.atech.io/ => https://cacti.atech.io/: (7, 'Failed to c - cacti.atech.io --> - + @@ -30,7 +30,7 @@ Fetch error: http://cacti.atech.io/ => https://cacti.atech.io/: (7, 'Failed to c --> - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/AVHT.org.xml b/src/chrome/content/rules/AVHT.org.xml new file mode 100644 index 000000000000..ad292896c51d --- /dev/null +++ b/src/chrome/content/rules/AVHT.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/AVON.cz.xml b/src/chrome/content/rules/AVON.cz.xml index 7248005852d8..c749753d5a7f 100644 --- a/src/chrome/content/rules/AVON.cz.xml +++ b/src/chrome/content/rules/AVON.cz.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://avon.cz/ => https://avon.cz/: (51, "SSL: no alternative certificate subject name matches target host name 'avon.cz'") --> - + diff --git a/src/chrome/content/rules/AWcloud.net.xml b/src/chrome/content/rules/AWcloud.net.xml deleted file mode 100644 index 33dfd89d6feb..000000000000 --- a/src/chrome/content/rules/AWcloud.net.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/AWeber-Communications.xml b/src/chrome/content/rules/AWeber-Communications.xml deleted file mode 100644 index 1ff96c77cda6..000000000000 --- a/src/chrome/content/rules/AWeber-Communications.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/AWeber-static.com.xml b/src/chrome/content/rules/AWeber-static.com.xml new file mode 100644 index 000000000000..43eb18005f54 --- /dev/null +++ b/src/chrome/content/rules/AWeber-static.com.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/AWeber.com.xml b/src/chrome/content/rules/AWeber.com.xml new file mode 100644 index 000000000000..a187687b922b --- /dev/null +++ b/src/chrome/content/rules/AWeber.com.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/AWeber.xml b/src/chrome/content/rules/AWeber.xml deleted file mode 100644 index 8478203e9735..000000000000 --- a/src/chrome/content/rules/AWeber.xml +++ /dev/null @@ -1,103 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/AXA.xml b/src/chrome/content/rules/AXA.xml index 824d8a188e86..b17581b781c4 100644 --- a/src/chrome/content/rules/AXA.xml +++ b/src/chrome/content/rules/AXA.xml @@ -1,33 +1,12 @@ - - - - - - - - - - - - + + + - \ No newline at end of file + + diff --git a/src/chrome/content/rules/A_1000_Words.com.xml b/src/chrome/content/rules/A_1000_Words.com.xml index c64bf0bd04a0..0490eb9e8771 100644 --- a/src/chrome/content/rules/A_1000_Words.com.xml +++ b/src/chrome/content/rules/A_1000_Words.com.xml @@ -5,7 +5,7 @@ - + diff --git a/src/chrome/content/rules/A_Plus_Flint_River_Ranch.xml b/src/chrome/content/rules/A_Plus_Flint_River_Ranch.xml index fddaa17a1db5..db50637f447e 100644 --- a/src/chrome/content/rules/A_Plus_Flint_River_Ranch.xml +++ b/src/chrome/content/rules/A_Plus_Flint_River_Ranch.xml @@ -8,7 +8,7 @@ Fetch error: http://aplus-flint-river-ranch.com/ => https://aplus-flint-river-ra - cats (mismatched, CN: www.aplus-flint-river-ranch.com) --> - + diff --git a/src/chrome/content/rules/Aachener_Zeitung.de.xml b/src/chrome/content/rules/Aachener_Zeitung.de.xml new file mode 100644 index 000000000000..e98db9092f42 --- /dev/null +++ b/src/chrome/content/rules/Aachener_Zeitung.de.xml @@ -0,0 +1,17 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Aalto.fi.xml b/src/chrome/content/rules/Aalto.fi.xml index 806438726aa8..3079280ca18c 100644 --- a/src/chrome/content/rules/Aalto.fi.xml +++ b/src/chrome/content/rules/Aalto.fi.xml @@ -58,7 +58,7 @@ Fetch error: http://artcoordination.aalto.fi/fi/midcom-serveattachmentguid-1e4ef - wwwcms.aalto.fi --> - + @@ -143,7 +143,7 @@ Fetch error: http://artcoordination.aalto.fi/fi/midcom-serveattachmentguid-1e4ef - + - + diff --git a/src/chrome/content/rules/Aaron_Brothers.xml b/src/chrome/content/rules/Aaron_Brothers.xml deleted file mode 100644 index 56d1af295657..000000000000 --- a/src/chrome/content/rules/Aaron_Brothers.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Aart_de_Vos.xml b/src/chrome/content/rules/Aart_de_Vos.xml index 91a13e18f553..dc531fc231df 100644 --- a/src/chrome/content/rules/Aart_de_Vos.xml +++ b/src/chrome/content/rules/Aart_de_Vos.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Aastatus.net.xml b/src/chrome/content/rules/Aastatus.net.xml index 3b94914fdebb..77f13140b139 100644 --- a/src/chrome/content/rules/Aastatus.net.xml +++ b/src/chrome/content/rules/Aastatus.net.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.aastatus.net/ => https://www.aastatus.net/: (51, "SSL: no alternative certificate subject name matches target host name 'www.aastatus.net'") --> - + diff --git a/src/chrome/content/rules/Aaulan.dk.xml b/src/chrome/content/rules/Aaulan.dk.xml index 59cfc8c8a525..2de79afa8acf 100644 --- a/src/chrome/content/rules/Aaulan.dk.xml +++ b/src/chrome/content/rules/Aaulan.dk.xml @@ -5,7 +5,7 @@ Fetch error: http://aaulan.dk/ => https://aaulan.dk/: (60, 'SSL certificate prob Fetch error: http://www.aaulan.dk/ => https://www.aaulan.dk/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/Abbo-Shop.xml b/src/chrome/content/rules/Abbo-Shop.xml index 972b875f39bf..6d8d2a42c721 100644 --- a/src/chrome/content/rules/Abbo-Shop.xml +++ b/src/chrome/content/rules/Abbo-Shop.xml @@ -1,8 +1,8 @@ - + - + diff --git a/src/chrome/content/rules/Abbott-Laboratories.xml b/src/chrome/content/rules/Abbott-Laboratories.xml deleted file mode 100644 index 5d3049d7c822..000000000000 --- a/src/chrome/content/rules/Abbott-Laboratories.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Abdullah-ocalan.com.xml b/src/chrome/content/rules/Abdullah-ocalan.com.xml index 9a7caa9afac2..5372de4ca429 100644 --- a/src/chrome/content/rules/Abdullah-ocalan.com.xml +++ b/src/chrome/content/rules/Abdullah-ocalan.com.xml @@ -1,6 +1,8 @@ - + + + diff --git a/src/chrome/content/rules/Abendblatt.de.xml b/src/chrome/content/rules/Abendblatt.de.xml new file mode 100644 index 000000000000..fda906bc67ab --- /dev/null +++ b/src/chrome/content/rules/Abendblatt.de.xml @@ -0,0 +1,118 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/AbenteuerLand.at.xml b/src/chrome/content/rules/AbenteuerLand.at.xml deleted file mode 100644 index 23f02597436f..000000000000 --- a/src/chrome/content/rules/AbenteuerLand.at.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Abercrombie.xml b/src/chrome/content/rules/Abercrombie.xml new file mode 100644 index 000000000000..da02ae8d2122 --- /dev/null +++ b/src/chrome/content/rules/Abercrombie.xml @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Aberdeen_City.gov.uk-falsemixed.xml b/src/chrome/content/rules/Aberdeen_City.gov.uk-falsemixed.xml index 4ec50ab93b5f..eea8b000a150 100644 --- a/src/chrome/content/rules/Aberdeen_City.gov.uk-falsemixed.xml +++ b/src/chrome/content/rules/Aberdeen_City.gov.uk-falsemixed.xml @@ -8,7 +8,7 @@ - + - + https://bookings.aberdeenshire.gov.uk/: (7, 'Failed to connect to bookings.aberdeenshire.gov.uk port 443: No route to host') - Aberdeenshire Council For other UK government coverage, see GOV.UK.xml. - - Nonfunctional hosts in *aberdeenshire.gov.uk: - - - aldo ᵇ - - arcadialite ² - - committees ʰ - - search ᵈ - - worksmart ² - - ² 200 404.html - ⁴ 404 - ᵇ Shows default page - ᵈ Dropped - ʰ Handshake fails - - - Problematic hosts in *aberdeenshire.gov.uk: - - - ^ ⁴ - - host1 ⁴ - - ⁴ 404 - - - Insecure cookies are set for these hosts: - + Non-functional hosts + Couldn't connect to server: - bookings.aberdeenshire.gov.uk + Timeout was reached: + - search.aberdeenshire.gov.uk - Mixed content: - - - Image on online from $self ˢ - - ˢ Secured by us + SSL peer certificate was not OK: + - aldo.aberdeenshire.gov.uk + - arcadialite.aberdeenshire.gov.uk + - worksmart.aberdeenshire.gov.uk + Status code mismatch: + - aberdeenshire.gov.uk + - host1.aberdeenshire.gov.uk --> - - - - - - - - - + + + + + + - - - - - - - - - + + diff --git a/src/chrome/content/rules/Aberystwyth-University.xml b/src/chrome/content/rules/Aberystwyth-University.xml index 799f78f8e267..3b7655256b07 100644 --- a/src/chrome/content/rules/Aberystwyth-University.xml +++ b/src/chrome/content/rules/Aberystwyth-University.xml @@ -1,55 +1,45 @@ - + - + - + + - + @@ -58,9 +48,6 @@ - - - diff --git a/src/chrome/content/rules/Abftracker.com.xml b/src/chrome/content/rules/Abftracker.com.xml deleted file mode 100644 index 8cc868f63e66..000000000000 --- a/src/chrome/content/rules/Abftracker.com.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Abila.com.xml b/src/chrome/content/rules/Abila.com.xml deleted file mode 100644 index 2f9d4485e6b8..000000000000 --- a/src/chrome/content/rules/Abila.com.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/AbleGamers.xml b/src/chrome/content/rules/AbleGamers.xml index 6b1c62f0b323..464b44862dde 100644 --- a/src/chrome/content/rules/AbleGamers.xml +++ b/src/chrome/content/rules/AbleGamers.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/About-Ads.xml b/src/chrome/content/rules/About-Ads.xml index 9c7c82664f41..902bbd009933 100644 --- a/src/chrome/content/rules/About-Ads.xml +++ b/src/chrome/content/rules/About-Ads.xml @@ -9,7 +9,7 @@ Fetch error: http://staging.aboutads.info/ => https://staging.aboutads.info/: To Mixed JS: - www.aboutads.info/choices/ --> - + diff --git a/src/chrome/content/rules/AboutMe.xml b/src/chrome/content/rules/AboutMe.xml index 7cf63f27d4fa..0b2988db1893 100644 --- a/src/chrome/content/rules/AboutMe.xml +++ b/src/chrome/content/rules/AboutMe.xml @@ -8,7 +8,7 @@ - + diff --git a/src/chrome/content/rules/AboutUs-problematic.xml b/src/chrome/content/rules/AboutUs-problematic.xml deleted file mode 100644 index 2e9c94c6cfa4..000000000000 --- a/src/chrome/content/rules/AboutUs-problematic.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/AboutUs.xml b/src/chrome/content/rules/AboutUs.xml index f0330357bb5e..372ed71a5363 100644 --- a/src/chrome/content/rules/AboutUs.xml +++ b/src/chrome/content/rules/AboutUs.xml @@ -1,34 +1,14 @@ - - - + + + + + - + + diff --git a/src/chrome/content/rules/About_My_Vote.co.uk.xml b/src/chrome/content/rules/About_My_Vote.co.uk.xml index 487678ebf945..4ad205662b0d 100644 --- a/src/chrome/content/rules/About_My_Vote.co.uk.xml +++ b/src/chrome/content/rules/About_My_Vote.co.uk.xml @@ -34,7 +34,7 @@ - + + diff --git a/src/chrome/content/rules/Above.com.xml b/src/chrome/content/rules/Above.com.xml index 025be1b24742..354a771ec68e 100644 --- a/src/chrome/content/rules/Above.com.xml +++ b/src/chrome/content/rules/Above.com.xml @@ -28,4 +28,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Abs.ch.xml b/src/chrome/content/rules/Abs.ch.xml new file mode 100644 index 000000000000..e3eba99dfafd --- /dev/null +++ b/src/chrome/content/rules/Abs.ch.xml @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Absolute.xml b/src/chrome/content/rules/Absolute.xml deleted file mode 100644 index 8d95a1fa08f8..000000000000 --- a/src/chrome/content/rules/Absolute.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/AbuAminaElias.com.xml b/src/chrome/content/rules/AbuAminaElias.com.xml new file mode 100644 index 000000000000..007a8fa183f8 --- /dev/null +++ b/src/chrome/content/rules/AbuAminaElias.com.xml @@ -0,0 +1,10 @@ + + + + + + + diff --git a/src/chrome/content/rules/Abuse.ch.xml b/src/chrome/content/rules/Abuse.ch.xml deleted file mode 100644 index 8be728043325..000000000000 --- a/src/chrome/content/rules/Abuse.ch.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/AbuseIPDB.com.xml b/src/chrome/content/rules/AbuseIPDB.com.xml index 9afb214beada..bfcd782a5949 100644 --- a/src/chrome/content/rules/AbuseIPDB.com.xml +++ b/src/chrome/content/rules/AbuseIPDB.com.xml @@ -2,8 +2,6 @@ - - diff --git a/src/chrome/content/rules/Abusix.com.xml b/src/chrome/content/rules/Abusix.com.xml index 3f31f98778ec..60cbc4866d73 100644 --- a/src/chrome/content/rules/Abusix.com.xml +++ b/src/chrome/content/rules/Abusix.com.xml @@ -1,10 +1,37 @@ - + + + + + + + - + diff --git a/src/chrome/content/rules/Abysmal.nl.xml b/src/chrome/content/rules/Abysmal.nl.xml index aef9c68b5a1f..62465e5e0e58 100644 --- a/src/chrome/content/rules/Abysmal.nl.xml +++ b/src/chrome/content/rules/Abysmal.nl.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.abysmal.nl/ => https://www.abysmal.nl/: (35, 'error:14077410:SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert handshake failure') --> - + @@ -15,4 +15,4 @@ Fetch error: http://www.abysmal.nl/ => https://www.abysmal.nl/: (35, 'error:1407 - \ No newline at end of file + diff --git a/src/chrome/content/rules/Academia-Press.xml b/src/chrome/content/rules/Academia-Press.xml deleted file mode 100644 index 72baeb7accd8..000000000000 --- a/src/chrome/content/rules/Academia-Press.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Academia-assets.com.xml b/src/chrome/content/rules/Academia-assets.com.xml index 90d457a39b3e..a8c8822f58f6 100644 --- a/src/chrome/content/rules/Academia-assets.com.xml +++ b/src/chrome/content/rules/Academia-assets.com.xml @@ -1,12 +1,10 @@ - + - diff --git a/src/chrome/content/rules/Academia.edu.xml b/src/chrome/content/rules/Academia.edu.xml index 820c0cd8bfbd..37c13aac554f 100644 --- a/src/chrome/content/rules/Academia.edu.xml +++ b/src/chrome/content/rules/Academia.edu.xml @@ -24,19 +24,19 @@ --> - - + - + - + + diff --git a/src/chrome/content/rules/AcademiaPress.be.xml b/src/chrome/content/rules/AcademiaPress.be.xml new file mode 100644 index 000000000000..9bd0c85ba466 --- /dev/null +++ b/src/chrome/content/rules/AcademiaPress.be.xml @@ -0,0 +1,17 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Academics.de.xml b/src/chrome/content/rules/Academics.de.xml index 38121c5f9eff..99ccca587016 100644 --- a/src/chrome/content/rules/Academics.de.xml +++ b/src/chrome/content/rules/Academics.de.xml @@ -1,15 +1,12 @@ - - - + - - + + @@ -22,7 +19,5 @@ Fetch error: http://squid.academics.de/ => https://squid.academics.de/: (6, 'Cou - - diff --git a/src/chrome/content/rules/Academy-of-Model-Aeronautics.xml b/src/chrome/content/rules/Academy-of-Model-Aeronautics.xml index 0e0309aecc62..df9ea33bf601 100644 --- a/src/chrome/content/rules/Academy-of-Model-Aeronautics.xml +++ b/src/chrome/content/rules/Academy-of-Model-Aeronautics.xml @@ -14,7 +14,7 @@ - xla* - Set by advertising/. --> - + - + + + + + + + + + + + + - + - diff --git a/src/chrome/content/rules/Accenture.com.xml b/src/chrome/content/rules/Accenture.com.xml deleted file mode 100644 index a59d4b0186c8..000000000000 --- a/src/chrome/content/rules/Accenture.com.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/Acceptiva.com.xml b/src/chrome/content/rules/Acceptiva.com.xml index c376a8752b9f..96ee52cefaec 100644 --- a/src/chrome/content/rules/Acceptiva.com.xml +++ b/src/chrome/content/rules/Acceptiva.com.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/AccessGuardian.com.xml b/src/chrome/content/rules/AccessGuardian.com.xml index f799e41495c1..1a0e29ea383a 100644 --- a/src/chrome/content/rules/AccessGuardian.com.xml +++ b/src/chrome/content/rules/AccessGuardian.com.xml @@ -5,7 +5,7 @@ Fetch error: http://accessguardian.com/ => https://accessguardian.com/: (60, 'SS Fetch error: http://www.accessguardian.com/ => https://www.accessguardian.com/: (60, 'SSL certificate problem: certificate has expired') --> - + @@ -16,4 +16,4 @@ Fetch error: http://www.accessguardian.com/ => https://www.accessguardian.com/: - \ No newline at end of file + diff --git a/src/chrome/content/rules/AccessPress_Themes.com.xml b/src/chrome/content/rules/AccessPress_Themes.com.xml index 4ef3587e2722..74d0ae9ee7d5 100644 --- a/src/chrome/content/rules/AccessPress_Themes.com.xml +++ b/src/chrome/content/rules/AccessPress_Themes.com.xml @@ -15,7 +15,7 @@ --> - + https://www.accessprivacy.ca/: (7, * Secured by us --> - + diff --git a/src/chrome/content/rules/Access_Office_Products.xml b/src/chrome/content/rules/Access_Office_Products.xml index c04bafe7e0fb..a93d1f8764af 100644 --- a/src/chrome/content/rules/Access_Office_Products.xml +++ b/src/chrome/content/rules/Access_Office_Products.xml @@ -7,7 +7,7 @@ Fetch error: http://www.accessofficeproducts.com/ => https://www.accessofficepro Disabled by https-everywhere-checker because: Fetch error: http://accessofficeproducts.com/ => https://accessofficeproducts.com/: (51, "SSL: no alternative certificate subject name matches target host name 'accessofficeproducts.com'") --> - + @@ -18,4 +18,4 @@ Fetch error: http://accessofficeproducts.com/ => https://accessofficeproducts.co - \ No newline at end of file + diff --git a/src/chrome/content/rules/Accessible-Information-Management.xml b/src/chrome/content/rules/Accessible-Information-Management.xml index 567937c8dcea..eb8d7a7757d7 100644 --- a/src/chrome/content/rules/Accessible-Information-Management.xml +++ b/src/chrome/content/rules/Accessible-Information-Management.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://gunadiframework.com/ => https://gunadiframework.com/: (51, "SSL: no alternative certificate subject name matches target host name 'gunadiframework.com'") --> - + diff --git a/src/chrome/content/rules/Accessorize.xml b/src/chrome/content/rules/Accessorize.xml index 7a31aa88c0d6..07fa31358141 100644 --- a/src/chrome/content/rules/Accessorize.xml +++ b/src/chrome/content/rules/Accessorize.xml @@ -6,4 +6,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Accesstrade.net.xml b/src/chrome/content/rules/Accesstrade.net.xml index 9a10d7039e80..4d588eeee07f 100644 --- a/src/chrome/content/rules/Accesstrade.net.xml +++ b/src/chrome/content/rules/Accesstrade.net.xml @@ -20,4 +20,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Accordance_Bible.com.xml b/src/chrome/content/rules/Accordance_Bible.com.xml index 9984d1345f1d..9ef0d4d36c32 100644 --- a/src/chrome/content/rules/Accordance_Bible.com.xml +++ b/src/chrome/content/rules/Accordance_Bible.com.xml @@ -5,7 +5,7 @@ - + - + diff --git a/src/chrome/content/rules/Accuvant.com.xml b/src/chrome/content/rules/Accuvant.com.xml index 48287f5a8369..2dc0ffe85993 100644 --- a/src/chrome/content/rules/Accuvant.com.xml +++ b/src/chrome/content/rules/Accuvant.com.xml @@ -28,22 +28,21 @@ Fetch error: http://accuvant.com/ => https://accuvant.com/: (60, 'SSL certificat * Secured by us --> - + - + + + - - + diff --git a/src/chrome/content/rules/Ace-analyzer.com.xml b/src/chrome/content/rules/Ace-analyzer.com.xml deleted file mode 100644 index e3c652490c8e..000000000000 --- a/src/chrome/content/rules/Ace-analyzer.com.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Ace-book.net.xml b/src/chrome/content/rules/Ace-book.net.xml new file mode 100644 index 000000000000..c9710e2f8e45 --- /dev/null +++ b/src/chrome/content/rules/Ace-book.net.xml @@ -0,0 +1,16 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Acenet.xml b/src/chrome/content/rules/Acenet.xml index e631c38dcbe6..f1a2fdac6e1e 100644 --- a/src/chrome/content/rules/Acenet.xml +++ b/src/chrome/content/rules/Acenet.xml @@ -9,11 +9,8 @@ - - - - + diff --git a/src/chrome/content/rules/Acer.com.xml b/src/chrome/content/rules/Acer.com.xml new file mode 100644 index 000000000000..246b2a8a0da3 --- /dev/null +++ b/src/chrome/content/rules/Acer.com.xml @@ -0,0 +1,20 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Acessoseguro.net.xml b/src/chrome/content/rules/Acessoseguro.net.xml index 3398fa15b23c..07c48354c49b 100644 --- a/src/chrome/content/rules/Acessoseguro.net.xml +++ b/src/chrome/content/rules/Acessoseguro.net.xml @@ -3,10 +3,10 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Acik_Akademi.com.xml b/src/chrome/content/rules/Acik_Akademi.com.xml index e76d835a4966..3324a4ab3ef1 100644 --- a/src/chrome/content/rules/Acik_Akademi.com.xml +++ b/src/chrome/content/rules/Acik_Akademi.com.xml @@ -18,7 +18,7 @@ - + https://acoustics.org/: (60, 'SSL certific Fetch error: http://www.acoustics.org/ => https://www.acoustics.org/: (60, 'SSL certificate problem: certificate has expired') --> - + @@ -13,4 +13,4 @@ Fetch error: http://www.acoustics.org/ => https://www.acoustics.org/: (60, 'SSL - \ No newline at end of file + diff --git a/src/chrome/content/rules/Acquia.xml b/src/chrome/content/rules/Acquia.xml index 4368a2dfeb8f..20de2c9376cd 100644 --- a/src/chrome/content/rules/Acquia.xml +++ b/src/chrome/content/rules/Acquia.xml @@ -1,13 +1,64 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Acrobat.com.xml b/src/chrome/content/rules/Acrobat.com.xml index 04d0a56a7f7e..3bd4770b165a 100644 --- a/src/chrome/content/rules/Acrobat.com.xml +++ b/src/chrome/content/rules/Acrobat.com.xml @@ -19,7 +19,7 @@ Fetch error: http://admin.na5.acrobat.com/ => https://admin.na5.acrobat.com/: (2 - ak-www.stage.acrobat.com --> - + diff --git a/src/chrome/content/rules/Acrobat_Users.com.xml b/src/chrome/content/rules/Acrobat_Users.com.xml index 4633afc5bced..7da48e65309d 100644 --- a/src/chrome/content/rules/Acrobat_Users.com.xml +++ b/src/chrome/content/rules/Acrobat_Users.com.xml @@ -21,7 +21,7 @@ - + - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/AcrylicDepot.com.xml b/src/chrome/content/rules/AcrylicDepot.com.xml new file mode 100644 index 000000000000..aa0bc6f62785 --- /dev/null +++ b/src/chrome/content/rules/AcrylicDepot.com.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/Acrylic_Wifi.com.xml b/src/chrome/content/rules/Acrylic_Wifi.com.xml deleted file mode 100644 index 2ee1957d84bc..000000000000 --- a/src/chrome/content/rules/Acrylic_Wifi.com.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Act-On-Software.xml b/src/chrome/content/rules/Act-On-Software.xml index 339d7dd40421..bffcb2062cd8 100644 --- a/src/chrome/content/rules/Act-On-Software.xml +++ b/src/chrome/content/rules/Act-On-Software.xml @@ -21,11 +21,11 @@ - ACTON (www) - wpNNNN (*) - - Set by + - Set by actonsoftware.com/acton/attachment/NNNN/ e.g. acton/attachment/1205/f-0005/0/-/-/-/-/file.pdf --> - + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ActBlue.com.xml b/src/chrome/content/rules/ActBlue.com.xml new file mode 100644 index 000000000000..0b9446c2861e --- /dev/null +++ b/src/chrome/content/rules/ActBlue.com.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ActBlue.xml b/src/chrome/content/rules/ActBlue.xml deleted file mode 100644 index ea8efc3e5e4e..000000000000 --- a/src/chrome/content/rules/ActBlue.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Actel.com.xml b/src/chrome/content/rules/Actel.com.xml deleted file mode 100644 index 882a059027be..000000000000 --- a/src/chrome/content/rules/Actel.com.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Action-Auto-Wreckers.xml b/src/chrome/content/rules/Action-Auto-Wreckers.xml index f4e7df8b0380..7c8e627808e2 100644 --- a/src/chrome/content/rules/Action-Auto-Wreckers.xml +++ b/src/chrome/content/rules/Action-Auto-Wreckers.xml @@ -24,7 +24,7 @@ --> - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Activatejavascript.xml b/src/chrome/content/rules/Activatejavascript.xml index d5ffb8461bb5..c6155cec7682 100644 --- a/src/chrome/content/rules/Activatejavascript.xml +++ b/src/chrome/content/rules/Activatejavascript.xml @@ -7,7 +7,7 @@ - + diff --git a/src/chrome/content/rules/Active-Events.xml b/src/chrome/content/rules/Active-Events.xml index 29ddffa86999..6e5f2c231547 100644 --- a/src/chrome/content/rules/Active-Events.xml +++ b/src/chrome/content/rules/Active-Events.xml @@ -8,10 +8,7 @@ - - - - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Active.com.xml b/src/chrome/content/rules/Active.com.xml index d4bb84132700..5a40bf7e127b 100644 --- a/src/chrome/content/rules/Active.com.xml +++ b/src/chrome/content/rules/Active.com.xml @@ -47,7 +47,17 @@ - + + + + + + + + + + + - + https://www.activestatic.net/: (56, For other Active Network coverage, see Active_Network.com.xml. --> - + diff --git a/src/chrome/content/rules/Actix.rs.xml b/src/chrome/content/rules/Actix.rs.xml new file mode 100644 index 000000000000..7cd85ecbb21a --- /dev/null +++ b/src/chrome/content/rules/Actix.rs.xml @@ -0,0 +1,10 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Acuity_Scheduling.com.xml b/src/chrome/content/rules/Acuity_Scheduling.com.xml index b38e84f83734..784a920209aa 100644 --- a/src/chrome/content/rules/Acuity_Scheduling.com.xml +++ b/src/chrome/content/rules/Acuity_Scheduling.com.xml @@ -34,7 +34,7 @@ - + - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Acxiom-online.com.xml b/src/chrome/content/rules/Acxiom-online.com.xml index 48c74f829d35..57688b915fbf 100644 --- a/src/chrome/content/rules/Acxiom-online.com.xml +++ b/src/chrome/content/rules/Acxiom-online.com.xml @@ -1,27 +1,32 @@ - + + + + diff --git a/src/chrome/content/rules/Acxiom.xml b/src/chrome/content/rules/Acxiom.xml deleted file mode 100644 index 580e73acd672..000000000000 --- a/src/chrome/content/rules/Acxiom.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Ad-Juster.xml b/src/chrome/content/rules/Ad-Juster.xml index 4a7a86da1fa5..ec6fdc1d720a 100644 --- a/src/chrome/content/rules/Ad-Juster.xml +++ b/src/chrome/content/rules/Ad-Juster.xml @@ -1,7 +1,8 @@ - + + diff --git a/src/chrome/content/rules/Ad4Game.xml b/src/chrome/content/rules/Ad4Game.xml index dc1355d5ad04..42dce51db9ec 100644 --- a/src/chrome/content/rules/Ad4Game.xml +++ b/src/chrome/content/rules/Ad4Game.xml @@ -3,11 +3,11 @@ --> - + + - + - + diff --git a/src/chrome/content/rules/Ad6media.xml b/src/chrome/content/rules/Ad6media.xml index b0dba4b46f3c..4f03b4d47b63 100644 --- a/src/chrome/content/rules/Ad6media.xml +++ b/src/chrome/content/rules/Ad6media.xml @@ -21,4 +21,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/AdAlliance.io.xml b/src/chrome/content/rules/AdAlliance.io.xml new file mode 100644 index 000000000000..29362840df0f --- /dev/null +++ b/src/chrome/content/rules/AdAlliance.io.xml @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/AdAstraArms.com.xml b/src/chrome/content/rules/AdAstraArms.com.xml new file mode 100644 index 000000000000..2efbc4cbfc5c --- /dev/null +++ b/src/chrome/content/rules/AdAstraArms.com.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/AdBit.co.xml b/src/chrome/content/rules/AdBit.co.xml index 61bf2ed9420b..249841f7e4af 100644 --- a/src/chrome/content/rules/AdBit.co.xml +++ b/src/chrome/content/rules/AdBit.co.xml @@ -10,7 +10,7 @@ Fetch error: http://www.adbit.co/ => https://www.adbit.co/: (35, 'error:14077438 - .adbit.co --> - + diff --git a/src/chrome/content/rules/AdBlock.xml b/src/chrome/content/rules/AdBlock.xml index 3c88a1532c20..4512ae67c147 100644 --- a/src/chrome/content/rules/AdBlock.xml +++ b/src/chrome/content/rules/AdBlock.xml @@ -24,6 +24,6 @@ - diff --git a/src/chrome/content/rules/AdButler.xml b/src/chrome/content/rules/AdButler.xml index c50843a43200..a526d4b40786 100644 --- a/src/chrome/content/rules/AdButler.xml +++ b/src/chrome/content/rules/AdButler.xml @@ -10,7 +10,7 @@ - + @@ -27,4 +27,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/AdExcite.xml b/src/chrome/content/rules/AdExcite.xml deleted file mode 100644 index da9a1bc9c8b7..000000000000 --- a/src/chrome/content/rules/AdExcite.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/AdExtent.com-problematic.xml b/src/chrome/content/rules/AdExtent.com-problematic.xml deleted file mode 100644 index 509e193bd1a9..000000000000 --- a/src/chrome/content/rules/AdExtent.com-problematic.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/AdExtent.com.xml b/src/chrome/content/rules/AdExtent.com.xml deleted file mode 100644 index a595d1bc222b..000000000000 --- a/src/chrome/content/rules/AdExtent.com.xml +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/AdFox.ru.xml b/src/chrome/content/rules/AdFox.ru.xml index 208b4ae9e6e4..07a842306be8 100644 --- a/src/chrome/content/rules/AdFox.ru.xml +++ b/src/chrome/content/rules/AdFox.ru.xml @@ -37,7 +37,7 @@ - + https://www.adjug.com/: (51, "SSL: no alternat - .adjug.com --> - + diff --git a/src/chrome/content/rules/AdMaster.com.cn.xml b/src/chrome/content/rules/AdMaster.com.cn.xml index dfd91ff59c4d..9afed6cadf82 100644 --- a/src/chrome/content/rules/AdMaster.com.cn.xml +++ b/src/chrome/content/rules/AdMaster.com.cn.xml @@ -45,7 +45,7 @@ Fetch error: http://e.admaster.com.cn/ => https://e.admaster.com.cn/: (6, 'Could ² Unsecurable <= 404 --> - + diff --git a/src/chrome/content/rules/AdNow.com.xml b/src/chrome/content/rules/AdNow.com.xml new file mode 100644 index 000000000000..362765fb0c86 --- /dev/null +++ b/src/chrome/content/rules/AdNow.com.xml @@ -0,0 +1,424 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/AdReactor.xml b/src/chrome/content/rules/AdReactor.xml index 03946c86a1cc..3af548a8db56 100644 --- a/src/chrome/content/rules/AdReactor.xml +++ b/src/chrome/content/rules/AdReactor.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/AdRiver.xml b/src/chrome/content/rules/AdRiver.xml index cf2f68abc191..a8494955e79f 100644 --- a/src/chrome/content/rules/AdRiver.xml +++ b/src/chrome/content/rules/AdRiver.xml @@ -35,7 +35,7 @@ Fetch error: http://masterh3.adriver.ru/ => https://masterh3.adriver.ru/: (28, ' * Secured by us --> - + @@ -58,10 +58,10 @@ Fetch error: http://masterh3.adriver.ru/ => https://masterh3.adriver.ru/: (28, ' - + - + diff --git a/src/chrome/content/rules/AdRoll-problematic.xml b/src/chrome/content/rules/AdRoll-problematic.xml deleted file mode 100644 index 2213f49e7bb0..000000000000 --- a/src/chrome/content/rules/AdRoll-problematic.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/AdRoll.xml b/src/chrome/content/rules/AdRoll.xml index 304749f34913..d2a405a3bb36 100644 --- a/src/chrome/content/rules/AdRoll.xml +++ b/src/chrome/content/rules/AdRoll.xml @@ -1,106 +1,26 @@ - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - + + + + diff --git a/src/chrome/content/rules/AdSafe.xml b/src/chrome/content/rules/AdSafe.xml index ad00a42dea11..5f6615119361 100644 --- a/src/chrome/content/rules/AdSafe.xml +++ b/src/chrome/content/rules/AdSafe.xml @@ -16,7 +16,7 @@ Fetch error: http://www.adsafecontrol.com/ => https://www.adsafecontrol.com/: (6 * Shows default page --> - + @@ -24,7 +24,7 @@ Fetch error: http://www.adsafecontrol.com/ => https://www.adsafecontrol.com/: (6 - + https://secure-js.adsonar.com/: (6, 'Coul - .adsonar.com --> - + diff --git a/src/chrome/content/rules/AdSpeed.net.xml b/src/chrome/content/rules/AdSpeed.net.xml index c3ea8d5fcc4b..04c24bb884af 100644 --- a/src/chrome/content/rules/AdSpeed.net.xml +++ b/src/chrome/content/rules/AdSpeed.net.xml @@ -19,7 +19,7 @@ - + - + https://cdn6.adspirit.de/ www.adspirit.de: Shows default page --> - + diff --git a/src/chrome/content/rules/AdSupply.xml b/src/chrome/content/rules/AdSupply.xml index 9c798748802d..04a8d9657860 100644 --- a/src/chrome/content/rules/AdSupply.xml +++ b/src/chrome/content/rules/AdSupply.xml @@ -21,7 +21,7 @@ - + - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Ada.lt.xml b/src/chrome/content/rules/Ada.lt.xml index d2b9faa2a09c..8a8fde71195c 100644 --- a/src/chrome/content/rules/Ada.lt.xml +++ b/src/chrome/content/rules/Ada.lt.xml @@ -18,4 +18,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/AdaCore.xml b/src/chrome/content/rules/AdaCore.xml index c096f80ff59b..6f6872000ffc 100644 --- a/src/chrome/content/rules/AdaCore.xml +++ b/src/chrome/content/rules/AdaCore.xml @@ -1,20 +1,9 @@ - - + + - - - - - diff --git a/src/chrome/content/rules/Adallom.com.xml b/src/chrome/content/rules/Adallom.com.xml deleted file mode 100644 index 5a79a52f03f5..000000000000 --- a/src/chrome/content/rules/Adallom.com.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Adam-Barth.xml b/src/chrome/content/rules/Adam-Barth.xml new file mode 100644 index 000000000000..771fe0bce9db --- /dev/null +++ b/src/chrome/content/rules/Adam-Barth.xml @@ -0,0 +1,7 @@ + + + + + + \ No newline at end of file diff --git a/src/chrome/content/rules/Adap.TV.xml b/src/chrome/content/rules/Adap.TV.xml index 71862b88c205..6883a9e781b0 100644 --- a/src/chrome/content/rules/Adap.TV.xml +++ b/src/chrome/content/rules/Adap.TV.xml @@ -33,7 +33,7 @@ Fetch error: http://www.adap.tv/ => https://adap.tv/: (7, 'Failed to connect to - sync --> - + @@ -49,7 +49,7 @@ Fetch error: http://www.adap.tv/ => https://adap.tv/: (7, 'Failed to connect to - + https://www.adaptec.com/: (60, 'SSL cert ** Secured by us --> - + diff --git a/src/chrome/content/rules/Adapteva.com.xml b/src/chrome/content/rules/Adapteva.com.xml index e71375e8c7d9..db5fa193ef43 100644 --- a/src/chrome/content/rules/Adapteva.com.xml +++ b/src/chrome/content/rules/Adapteva.com.xml @@ -20,7 +20,7 @@ Non-2xx HTTP code: http://shop.adapteva.com/ (200) => https://adapteva.myshopify - (www.) (http reply) --> - + @@ -28,4 +28,4 @@ Non-2xx HTTP code: http://shop.adapteva.com/ (200) => https://adapteva.myshopify - \ No newline at end of file + diff --git a/src/chrome/content/rules/Adaptive_Computing.xml b/src/chrome/content/rules/Adaptive_Computing.xml index 545a66af6eb0..5ca61de18444 100644 --- a/src/chrome/content/rules/Adaptive_Computing.xml +++ b/src/chrome/content/rules/Adaptive_Computing.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://adaptivecomputing.com/ => https://adaptivecomputing.com/: (51, "SSL: no alternative certificate subject name matches target host name 'adaptivecomputing.com'") --> - + diff --git a/src/chrome/content/rules/Adara-Media.xml b/src/chrome/content/rules/Adara-Media.xml index aff3368657e9..0c24a893c3f6 100644 --- a/src/chrome/content/rules/Adara-Media.xml +++ b/src/chrome/content/rules/Adara-Media.xml @@ -16,7 +16,7 @@ - + - + - + - + + + + to="https://cdn.adbooth.net/" /> @@ -46,4 +48,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Adbrite.xml b/src/chrome/content/rules/Adbrite.xml index 5968cb048a17..4a94f2e0502c 100644 --- a/src/chrome/content/rules/Adbrite.xml +++ b/src/chrome/content/rules/Adbrite.xml @@ -21,7 +21,7 @@ Fetch error: http://files.adbrite.com/ => https://www.adbrite.com/: (6, 'Could n - press (times out) --> - + diff --git a/src/chrome/content/rules/Adbusters.org.xml b/src/chrome/content/rules/Adbusters.org.xml index d281720e042c..40d6bf8d1868 100644 --- a/src/chrome/content/rules/Adbusters.org.xml +++ b/src/chrome/content/rules/Adbusters.org.xml @@ -1,6 +1,22 @@ + - - - + + + + + + + + diff --git a/src/chrome/content/rules/Adbuyer.com.xml b/src/chrome/content/rules/Adbuyer.com.xml index 6c31793ca145..114c008d637b 100644 --- a/src/chrome/content/rules/Adbuyer.com.xml +++ b/src/chrome/content/rules/Adbuyer.com.xml @@ -15,7 +15,7 @@ Fetch error: http://adbuyer.com/ => https://app.mbuy.com/: (7, 'Failed to connec - pixel --> - + @@ -30,4 +30,4 @@ Fetch error: http://adbuyer.com/ => https://app.mbuy.com/: (7, 'Failed to connec - \ No newline at end of file + diff --git a/src/chrome/content/rules/Add2Net-mismatches.xml b/src/chrome/content/rules/Add2Net-mismatches.xml index 7c84ca4c630a..5a707cf05d38 100644 --- a/src/chrome/content/rules/Add2Net-mismatches.xml +++ b/src/chrome/content/rules/Add2Net-mismatches.xml @@ -2,9 +2,8 @@ - + - + diff --git a/src/chrome/content/rules/Add2Net.xml b/src/chrome/content/rules/Add2Net.xml index 8434fff5d162..ef58c038d0cb 100644 --- a/src/chrome/content/rules/Add2Net.xml +++ b/src/chrome/content/rules/Add2Net.xml @@ -20,7 +20,7 @@ Fetch error: http://lunarpages.co.uk/ => https://lunarpages.co.uk/: (51, "SSL: n Fetch error: http://www.lunarpages.co.uk/ => https://www.lunarpages.co.uk/: (51, "SSL: no alternative certificate subject name matches target host name 'www.lunarpages.co.uk'") Fetch error: http://tremendesk.com/ => https://tremendesk.com/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + @@ -29,22 +29,23 @@ Fetch error: http://tremendesk.com/ => https://tremendesk.com/: (60, 'SSL certif - + + + + - + - - - + + + - @@ -52,13 +53,8 @@ Fetch error: http://tremendesk.com/ => https://tremendesk.com/: (60, 'SSL certif - - - + diff --git a/src/chrome/content/rules/AddBooks.se.xml b/src/chrome/content/rules/AddBooks.se.xml index d6362006d69f..ea854f18f989 100644 --- a/src/chrome/content/rules/AddBooks.se.xml +++ b/src/chrome/content/rules/AddBooks.se.xml @@ -5,10 +5,9 @@ Fetch error: http://www.addbooks.se/ => https://www.addbooks.se/: (7, 'Failed to Fetch error: http://addbooks.se/ => https://addbooks.se/: (7, 'Failed to connect to addbooks.se port 443: Connection timed out') --> - + - - + diff --git a/src/chrome/content/rules/AddThis.xml b/src/chrome/content/rules/AddThis.xml index 6a013057fc8f..dd6824d7e14a 100644 --- a/src/chrome/content/rules/AddThis.xml +++ b/src/chrome/content/rules/AddThis.xml @@ -1,148 +1,49 @@ - + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - + + + + diff --git a/src/chrome/content/rules/Addgene.org.xml b/src/chrome/content/rules/Addgene.org.xml new file mode 100644 index 000000000000..1efa073a30b6 --- /dev/null +++ b/src/chrome/content/rules/Addgene.org.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Addictech.xml b/src/chrome/content/rules/Addictech.xml index 985281314bb9..67028c8534df 100644 --- a/src/chrome/content/rules/Addictech.xml +++ b/src/chrome/content/rules/Addictech.xml @@ -12,7 +12,7 @@ Fetch error: http://addictech.com/ => https://www.addictech.com/: Too many redir Fetch error: http://www.addictech.com/ => https://www.addictech.com/: Too many redirects while fetching 'https://www.addictech.com/' --> - + diff --git a/src/chrome/content/rules/Addiction_Help.xml b/src/chrome/content/rules/Addiction_Help.xml deleted file mode 100644 index d9a892c0ced5..000000000000 --- a/src/chrome/content/rules/Addiction_Help.xml +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Addison.com.hk.xml b/src/chrome/content/rules/Addison.com.hk.xml index eaef1f403b0a..62f539ea5d31 100644 --- a/src/chrome/content/rules/Addison.com.hk.xml +++ b/src/chrome/content/rules/Addison.com.hk.xml @@ -13,4 +13,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Addison_Lee.xml b/src/chrome/content/rules/Addison_Lee.xml index 0d06186aa923..3247931c3464 100644 --- a/src/chrome/content/rules/Addison_Lee.xml +++ b/src/chrome/content/rules/Addison_Lee.xml @@ -8,7 +8,7 @@ Fetch error: http://addisonlee.com/ => https://www.addisonlee.com/: Too many red - + diff --git a/src/chrome/content/rules/Adecco_Way_to_Work.xml b/src/chrome/content/rules/Adecco_Way_to_Work.xml index c2355d5a67f1..ac26b427ff3f 100644 --- a/src/chrome/content/rules/Adecco_Way_to_Work.xml +++ b/src/chrome/content/rules/Adecco_Way_to_Work.xml @@ -6,4 +6,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Adelaide.edu.au.xml b/src/chrome/content/rules/Adelaide.edu.au.xml index 3f535bc6d8ab..f6fa37c480a0 100644 --- a/src/chrome/content/rules/Adelaide.edu.au.xml +++ b/src/chrome/content/rules/Adelaide.edu.au.xml @@ -61,7 +61,20 @@ - + + + + + + + + + + + + + + @@ -81,7 +94,6 @@ - + diff --git a/src/chrome/content/rules/Adestra.xml b/src/chrome/content/rules/Adestra.xml index 5bc284a1cf7f..a15672e8c1ce 100644 --- a/src/chrome/content/rules/Adestra.xml +++ b/src/chrome/content/rules/Adestra.xml @@ -10,11 +10,9 @@ - + - + diff --git a/src/chrome/content/rules/Adform.net.xml b/src/chrome/content/rules/Adform.net.xml index 6c5e546add90..5a09e14c47e3 100644 --- a/src/chrome/content/rules/Adform.net.xml +++ b/src/chrome/content/rules/Adform.net.xml @@ -1,22 +1,39 @@ + + + + + + + diff --git a/src/chrome/content/rules/Adform.xml b/src/chrome/content/rules/Adform.xml index bab5d438e125..6a10b351e238 100644 --- a/src/chrome/content/rules/Adform.xml +++ b/src/chrome/content/rules/Adform.xml @@ -1,7 +1,7 @@ diff --git a/src/chrome/content/rules/Adformdsp.net.xml b/src/chrome/content/rules/Adformdsp.net.xml index e4c66582f1ee..0758197847e4 100644 --- a/src/chrome/content/rules/Adformdsp.net.xml +++ b/src/chrome/content/rules/Adformdsp.net.xml @@ -1,7 +1,5 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Adify.xml b/src/chrome/content/rules/Adify.xml deleted file mode 100644 index f213eedc7c29..000000000000 --- a/src/chrome/content/rules/Adify.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Adigital.xml b/src/chrome/content/rules/Adigital.xml deleted file mode 100644 index dea7df7d907d..000000000000 --- a/src/chrome/content/rules/Adigital.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Adility.xml b/src/chrome/content/rules/Adility.xml index a308ee5d1673..40791d17a9e7 100644 --- a/src/chrome/content/rules/Adility.xml +++ b/src/chrome/content/rules/Adility.xml @@ -1,4 +1,8 @@ + + diff --git a/src/chrome/content/rules/Adingo.jp.xml b/src/chrome/content/rules/Adingo.jp.xml index 3215070795e5..e93cfd003ebd 100644 --- a/src/chrome/content/rules/Adingo.jp.xml +++ b/src/chrome/content/rules/Adingo.jp.xml @@ -65,6 +65,6 @@ - + diff --git a/src/chrome/content/rules/Adition.com.xml b/src/chrome/content/rules/Adition.com.xml index 80ce2e21cb68..42ec73fdd760 100644 --- a/src/chrome/content/rules/Adition.com.xml +++ b/src/chrome/content/rules/Adition.com.xml @@ -21,14 +21,14 @@ - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Adk2.xml b/src/chrome/content/rules/Adk2.xml index 73d62b51d56e..39f07a335ba6 100644 --- a/src/chrome/content/rules/Adk2.xml +++ b/src/chrome/content/rules/Adk2.xml @@ -21,21 +21,22 @@ Fetch error: http://adk2.com/ => https://adk2.com/: (60, 'SSL certificate proble - cpmrocket --> - + - + + + + - + - + diff --git a/src/chrome/content/rules/Adknowledge.xml b/src/chrome/content/rules/Adknowledge.xml deleted file mode 100644 index 9be2220727b4..000000000000 --- a/src/chrome/content/rules/Adknowledge.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Adkontekst.pl-problematic.xml b/src/chrome/content/rules/Adkontekst.pl-problematic.xml index be8f2346bd44..8afc6c47a2cf 100644 --- a/src/chrome/content/rules/Adkontekst.pl-problematic.xml +++ b/src/chrome/content/rules/Adkontekst.pl-problematic.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Adkontekst.pl.xml b/src/chrome/content/rules/Adkontekst.pl.xml index d0350a9df57e..318e2fa31449 100644 --- a/src/chrome/content/rules/Adkontekst.pl.xml +++ b/src/chrome/content/rules/Adkontekst.pl.xml @@ -15,13 +15,14 @@ --> - + + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Adlegend.com.xml b/src/chrome/content/rules/Adlegend.com.xml deleted file mode 100644 index d482ed40f637..000000000000 --- a/src/chrome/content/rules/Adlegend.com.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Adlibris.xml b/src/chrome/content/rules/Adlibris.xml index db702e9ecba5..2b19535d6273 100644 --- a/src/chrome/content/rules/Adlibris.xml +++ b/src/chrome/content/rules/Adlibris.xml @@ -1,19 +1,19 @@ - - - - - - + + + + + + + + - + + diff --git a/src/chrome/content/rules/Adlink.net.xml b/src/chrome/content/rules/Adlink.net.xml index 0af51e8ee621..d1815a714d57 100644 --- a/src/chrome/content/rules/Adlink.net.xml +++ b/src/chrome/content/rules/Adlink.net.xml @@ -4,12 +4,11 @@ Disabled by https-everywhere-checker because: Fetch error: http://js.adlink.net/ => https://js.adlink.net/: (60, 'SSL certificate problem: certificate has expired') --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Admatic.xml b/src/chrome/content/rules/Admatic.xml index f64e8fade0f1..0aeb33cee2c9 100644 --- a/src/chrome/content/rules/Admatic.xml +++ b/src/chrome/content/rules/Admatic.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Admeld.xml b/src/chrome/content/rules/Admeld.xml index 45e7031db684..0c05ffecd6a4 100644 --- a/src/chrome/content/rules/Admeld.xml +++ b/src/chrome/content/rules/Admeld.xml @@ -1,39 +1,17 @@ - - + + - + - - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Admeta-Aktiebolag.xml b/src/chrome/content/rules/Admeta-Aktiebolag.xml deleted file mode 100644 index 2a80e860dd0d..000000000000 --- a/src/chrome/content/rules/Admeta-Aktiebolag.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Admiringlight.com.xml b/src/chrome/content/rules/Admiringlight.com.xml new file mode 100644 index 000000000000..95bc1bf54f26 --- /dev/null +++ b/src/chrome/content/rules/Admiringlight.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Admission.com.xml b/src/chrome/content/rules/Admission.com.xml new file mode 100644 index 000000000000..06baeed2265b --- /dev/null +++ b/src/chrome/content/rules/Admission.com.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Admized.xml b/src/chrome/content/rules/Admized.xml deleted file mode 100644 index 43fae3b51b27..000000000000 --- a/src/chrome/content/rules/Admized.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/chrome/content/rules/Adnxs.com.xml b/src/chrome/content/rules/Adnxs.com.xml index 9be82126d31e..ea7ce78279e5 100644 --- a/src/chrome/content/rules/Adnxs.com.xml +++ b/src/chrome/content/rules/Adnxs.com.xml @@ -1,58 +1,31 @@ - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - - - - - - + diff --git a/src/chrome/content/rules/Adobe-Digital-Marketing.xml b/src/chrome/content/rules/Adobe-Digital-Marketing.xml index 7fb1cb7578ec..d70e6009560d 100644 --- a/src/chrome/content/rules/Adobe-Digital-Marketing.xml +++ b/src/chrome/content/rules/Adobe-Digital-Marketing.xml @@ -16,7 +16,7 @@ - + - - - - - - - - - - diff --git a/src/chrome/content/rules/Adobe.xml b/src/chrome/content/rules/Adobe.xml index c57d872511d0..da5652c11f21 100644 --- a/src/chrome/content/rules/Adobe.xml +++ b/src/chrome/content/rules/Adobe.xml @@ -1,6 +1,11 @@ + - + - - - @@ -248,26 +242,6 @@ - - - - - - - - - - - - - - - @@ -297,14 +271,6 @@ - - - - - @@ -314,18 +280,6 @@ - - - - - - - - @@ -337,13 +291,6 @@ - - - - - diff --git a/src/chrome/content/rules/Adobe_Connect.xml b/src/chrome/content/rules/Adobe_Connect.xml index 481de2ff8d6d..8afd17c66962 100644 --- a/src/chrome/content/rules/Adobe_Connect.xml +++ b/src/chrome/content/rules/Adobe_Connect.xml @@ -20,7 +20,7 @@ Fetch error: http://adobeconnect.com/ => https://adobeconnect.com/: (28, 'Connec - na\d+cps --> - + diff --git a/src/chrome/content/rules/Adobe_forms_central.com.xml b/src/chrome/content/rules/Adobe_forms_central.com.xml deleted file mode 100644 index 319b925aab08..000000000000 --- a/src/chrome/content/rules/Adobe_forms_central.com.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Adobetag.com.xml b/src/chrome/content/rules/Adobetag.com.xml index 914a897b4ec8..bb0abcb694d6 100644 --- a/src/chrome/content/rules/Adobetag.com.xml +++ b/src/chrome/content/rules/Adobetag.com.xml @@ -31,4 +31,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Adometry.xml b/src/chrome/content/rules/Adometry.xml deleted file mode 100644 index 697de136b1d0..000000000000 --- a/src/chrome/content/rules/Adometry.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/AdoredTV.com.xml b/src/chrome/content/rules/AdoredTV.com.xml new file mode 100644 index 000000000000..a829d406b468 --- /dev/null +++ b/src/chrome/content/rules/AdoredTV.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Adoyacademy.se.xml b/src/chrome/content/rules/Adoyacademy.se.xml deleted file mode 100644 index 119e5eea1232..000000000000 --- a/src/chrome/content/rules/Adoyacademy.se.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/src/chrome/content/rules/Adpay.com.xml b/src/chrome/content/rules/Adpay.com.xml index a8d4a8880e4e..36dbd2bd577b 100644 --- a/src/chrome/content/rules/Adpay.com.xml +++ b/src/chrome/content/rules/Adpay.com.xml @@ -12,16 +12,14 @@ --> - + + - + - - - \ No newline at end of file + diff --git a/src/chrome/content/rules/Adperium.com.xml b/src/chrome/content/rules/Adperium.com.xml index a739c720a076..6d66e3f7135f 100644 --- a/src/chrome/content/rules/Adperium.com.xml +++ b/src/chrome/content/rules/Adperium.com.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://appnexus.adperium.com/ => https://appnexus.adperium.com/: (6, 'Could not resolve host: appnexus.adperium.com') --> - + diff --git a/src/chrome/content/rules/Adscale.xml b/src/chrome/content/rules/Adscale.xml index dd957366981f..ec1f8dc91b1a 100644 --- a/src/chrome/content/rules/Adscale.xml +++ b/src/chrome/content/rules/Adscale.xml @@ -21,10 +21,13 @@ Fetch error: http://adscale.de/ => https://www.adscale.de/: (60, 'SSL certificat - rh --> - + - + + + + @@ -36,7 +39,6 @@ Fetch error: http://adscale.de/ => https://www.adscale.de/: (60, 'SSL certificat - + diff --git a/src/chrome/content/rules/Adscend-Media.xml b/src/chrome/content/rules/Adscend-Media.xml index 6adf6fbe4e27..e0d23776a714 100644 --- a/src/chrome/content/rules/Adscend-Media.xml +++ b/src/chrome/content/rules/Adscend-Media.xml @@ -1,12 +1,11 @@ - - + + - - - + - diff --git a/src/chrome/content/rules/Adseekmedia.xml b/src/chrome/content/rules/Adseekmedia.xml deleted file mode 100644 index 61014339e846..000000000000 --- a/src/chrome/content/rules/Adseekmedia.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Adserver01.de.xml b/src/chrome/content/rules/Adserver01.de.xml index 79a6da6ac119..0744fd78532c 100644 --- a/src/chrome/content/rules/Adserver01.de.xml +++ b/src/chrome/content/rules/Adserver01.de.xml @@ -1,12 +1,11 @@ - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Adsimilis.xml b/src/chrome/content/rules/Adsimilis.xml deleted file mode 100644 index 7b8bb76dd620..000000000000 --- a/src/chrome/content/rules/Adsimilis.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Adspdbl.com.xml b/src/chrome/content/rules/Adspdbl.com.xml index 5b35b381bbc4..f5cde3f06f21 100644 --- a/src/chrome/content/rules/Adspdbl.com.xml +++ b/src/chrome/content/rules/Adspdbl.com.xml @@ -17,7 +17,6 @@ - + diff --git a/src/chrome/content/rules/Adsrvmedia.com.xml b/src/chrome/content/rules/Adsrvmedia.com.xml index 5286c60a5bc5..19f4aaf615bd 100644 --- a/src/chrome/content/rules/Adsrvmedia.com.xml +++ b/src/chrome/content/rules/Adsrvmedia.com.xml @@ -18,7 +18,8 @@ --> - + + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Adsrvr.org.xml b/src/chrome/content/rules/Adsrvr.org.xml index cbcea66e9341..9db8704f7f00 100644 --- a/src/chrome/content/rules/Adsrvr.org.xml +++ b/src/chrome/content/rules/Adsrvr.org.xml @@ -7,7 +7,7 @@ - .adsrvr.org ᶜ See https://owasp.org/index.php/SecureFlag - + Cert mismatch: - euw.fb - sin.fb @@ -85,7 +85,7 @@ --> - + diff --git a/src/chrome/content/rules/Adsurve.com.xml b/src/chrome/content/rules/Adsurve.com.xml deleted file mode 100644 index 7732f2fbb44d..000000000000 --- a/src/chrome/content/rules/Adsurve.com.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Adtarget.me.xml b/src/chrome/content/rules/Adtarget.me.xml index 999bc394b0ef..235e839d2f97 100644 --- a/src/chrome/content/rules/Adtarget.me.xml +++ b/src/chrome/content/rules/Adtarget.me.xml @@ -15,7 +15,8 @@ --> - + + https://adserver-sb-fra.adtech.de/: (51, "SSL: no alternative certificate subject name matches target host name 'adserver-sb-fra.adtech.de'") - For other AOL coverage, see AOL.xml. - Banner network. - CDN buckets: - - aka-cdn-ns.adtech.de.edgesuite.net - - Problematic domains: - - - aka-cdn-ns.adtech.de (works, akamai) - - ad.dc2.adtech.de (works; mismatched, CN: *.adtech.de) - - - Fully covered subdomains: - - - adserver - - adserverams - - adserver-sb-fra - - aka-cdn - - aka-cdn-ns (→ aka-cdn) - - ad.dc2 (→ adserver) - - secserv - - ums - + Invalid certificate: + - ad.dc2.adtech.de, equivalent to adserver.adtech.de Insecure cookies are set for these domains: - - .adtech.de - --> - - + - - - - - + + - - + - - - - - - + diff --git a/src/chrome/content/rules/Adtechus.com.xml b/src/chrome/content/rules/Adtechus.com.xml index bf5f5362e38a..d318acc62427 100644 --- a/src/chrome/content/rules/Adtechus.com.xml +++ b/src/chrome/content/rules/Adtechus.com.xml @@ -49,7 +49,7 @@ - + - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Adult-Ad-World.xml b/src/chrome/content/rules/Adult-Ad-World.xml deleted file mode 100644 index 1738093d92a2..000000000000 --- a/src/chrome/content/rules/Adult-Ad-World.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Adult-FriendFinder.xml b/src/chrome/content/rules/Adult-FriendFinder.xml index 091d3f692e93..dac849596773 100644 --- a/src/chrome/content/rules/Adult-FriendFinder.xml +++ b/src/chrome/content/rules/Adult-FriendFinder.xml @@ -44,7 +44,7 @@ --> - + https://checkout.adultshopping.com/: (51, "SSL: no alternative certificate subject name matches target host name 'checkout.adultshopping.com'") -Fetch error: http://admin.adultshopping.com/ => https://admin.adultshopping.com/: (51, "SSL: no alternative certificate subject name matches target host name 'admin.adultshopping.com'") -Fetch error: http://checkout.adultshopping.com/ => https://checkout.adultshopping.com/: (51, "SSL: no alternative certificate subject name matches target host name 'checkout.adultshopping.com'") -Fetch error: http://affiliates.adultshopping.com/ => https://affiliates.adultshopping.com/: (51, "SSL: no alternative certificate subject name matches target host name 'affiliates.adultshopping.com'") -Fetch error: http://secure.adultshopping.com/ => https://secure.adultshopping.com/: (51, "SSL: no alternative certificate subject name matches target host name 'secure.adultshopping.com'") -Fetch error: http://store.adultshopping.com/ => https://checkout.adultshopping.com/: (51, "SSL: no alternative certificate subject name matches target host name 'checkout.adultshopping.com'") - - For other CNV.com coverage, see cnv.com.xml. - - - Problematic hosts in *adultshopping.com: - - - store ᵐ - - ᵐ Mismatched - - - Insecure cookies are set for these hosts: ᶜ - + Non-functional hosts + SSL peer certificate was not OK: - admin.adultshopping.com - affiliates.adultshopping.com - checkout.adultshopping.com - secure.adultshopping.com - - www.adultshopping.com - - ᶜ See https://owasp.org/index.php/SecureFlag - - - Mixed content: - - - css on www from fonts.googleapis.com ˢ - - - Images, on: - - - admin, affiliates, checkout, secure from cnvassets.s3.amazonaws.com ˢ - - admin, affiliates, checkout, secure from d1o1wlqwda3y1b.cloudfront.net ˢ - - admin, affiliates, checkout, secure from d235bdyk0zpoq6.cloudfront.net ˢ - - ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ - + - store.adultshopping.com --> - - - + - - - - - - - - - - - - - - - - - - - - - - + diff --git a/src/chrome/content/rules/AdultSwim.com.xml b/src/chrome/content/rules/AdultSwim.com.xml new file mode 100644 index 000000000000..bfd793e8fd7c --- /dev/null +++ b/src/chrome/content/rules/AdultSwim.com.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/AdultWork.com.xml b/src/chrome/content/rules/AdultWork.com.xml index c28a176e6112..2e7fe9c133a6 100644 --- a/src/chrome/content/rules/AdultWork.com.xml +++ b/src/chrome/content/rules/AdultWork.com.xml @@ -34,7 +34,7 @@ - + - + - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Advantage-Business-Media.xml b/src/chrome/content/rules/Advantage-Business-Media.xml deleted file mode 100644 index a04585026f44..000000000000 --- a/src/chrome/content/rules/Advantage-Business-Media.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Advantage.xml b/src/chrome/content/rules/Advantage.xml index 7221c0659ee7..2a93df353216 100644 --- a/src/chrome/content/rules/Advantage.xml +++ b/src/chrome/content/rules/Advantage.xml @@ -14,24 +14,22 @@ Fetch error: http://discountclick.com/ => https://www.advantageseoservices.com/: - (www.)discontclick.com (cert mismatch) --> - + - + + - - + diff --git a/src/chrome/content/rules/Advconversion.com.xml b/src/chrome/content/rules/Advconversion.com.xml index 729e68ac4759..4659b85ac483 100644 --- a/src/chrome/content/rules/Advconversion.com.xml +++ b/src/chrome/content/rules/Advconversion.com.xml @@ -1,14 +1,7 @@ - - - - - diff --git a/src/chrome/content/rules/Advel.xml b/src/chrome/content/rules/Advel.xml index 14f8f4a3c00b..2984c17f36e3 100644 --- a/src/chrome/content/rules/Advel.xml +++ b/src/chrome/content/rules/Advel.xml @@ -1,9 +1,9 @@ - + - + diff --git a/src/chrome/content/rules/Advent.com.xml b/src/chrome/content/rules/Advent.com.xml index 8b4886c84bda..3d4ef8e22143 100644 --- a/src/chrome/content/rules/Advent.com.xml +++ b/src/chrome/content/rules/Advent.com.xml @@ -28,7 +28,7 @@ Fetch error: http://start.advent.com/ => https://start.advent.com/: (6, 'Could n - www.advent.com --> - + diff --git a/src/chrome/content/rules/AdventOfCode.com.xml b/src/chrome/content/rules/AdventOfCode.com.xml new file mode 100644 index 000000000000..e14b1a7fbf76 --- /dev/null +++ b/src/chrome/content/rules/AdventOfCode.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Advert_Stream.xml b/src/chrome/content/rules/Advert_Stream.xml deleted file mode 100644 index fe0a5f5975b3..000000000000 --- a/src/chrome/content/rules/Advert_Stream.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Advertise.com.xml b/src/chrome/content/rules/Advertise.com.xml index f8f6c33b81b0..2b713f21eff6 100644 --- a/src/chrome/content/rules/Advertise.com.xml +++ b/src/chrome/content/rules/Advertise.com.xml @@ -7,7 +7,8 @@ --> - + + @@ -16,7 +17,6 @@ - + diff --git a/src/chrome/content/rules/Advertisers-OpenX.com.xml b/src/chrome/content/rules/Advertisers-OpenX.com.xml index ef907f7d7776..0b63c95498d3 100644 --- a/src/chrome/content/rules/Advertisers-OpenX.com.xml +++ b/src/chrome/content/rules/Advertisers-OpenX.com.xml @@ -14,7 +14,7 @@ Fetch error: http://d3.advertisers-openx.com/ => https://d3.advertisers-openx.co Web bugs. --> - + diff --git a/src/chrome/content/rules/Advertising.com.xml b/src/chrome/content/rules/Advertising.com.xml index 1958bab4c205..437a2074dd10 100644 --- a/src/chrome/content/rules/Advertising.com.xml +++ b/src/chrome/content/rules/Advertising.com.xml @@ -1,81 +1,215 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + - - - - - - + + + + - - - - - - - - - - + diff --git a/src/chrome/content/rules/Adverts.ie.xml b/src/chrome/content/rules/Adverts.ie.xml index 391be57d3609..5bec2e2f5bd8 100644 --- a/src/chrome/content/rules/Adverts.ie.xml +++ b/src/chrome/content/rules/Adverts.ie.xml @@ -17,4 +17,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Advg.jp.xml b/src/chrome/content/rules/Advg.jp.xml index ee96ed6738f7..0ff409cd1a0c 100644 --- a/src/chrome/content/rules/Advg.jp.xml +++ b/src/chrome/content/rules/Advg.jp.xml @@ -5,4 +5,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Adviceguide.xml b/src/chrome/content/rules/Adviceguide.xml index e84a0dc76d53..f4bb83dda9b9 100644 --- a/src/chrome/content/rules/Adviceguide.xml +++ b/src/chrome/content/rules/Adviceguide.xml @@ -24,7 +24,7 @@ --> - + https://adview.pl/: (60, 'SSL certificate - .adview.pl --> - + @@ -30,7 +30,7 @@ Fetch error: http://www.adview.pl/ => https://adview.pl/: (60, 'SSL certificate - + - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Advocate-Europe.eu.xml b/src/chrome/content/rules/Advocate-Europe.eu.xml deleted file mode 100644 index b58af25390d6..000000000000 --- a/src/chrome/content/rules/Advocate-Europe.eu.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/AdvocateAndDemocrat.com.xml b/src/chrome/content/rules/AdvocateAndDemocrat.com.xml new file mode 100644 index 000000000000..30b5bc1c6e5b --- /dev/null +++ b/src/chrome/content/rules/AdvocateAndDemocrat.com.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/Advocates_for_Youth.xml b/src/chrome/content/rules/Advocates_for_Youth.xml index 439493f63f50..3d701b2342f4 100644 --- a/src/chrome/content/rules/Advocates_for_Youth.xml +++ b/src/chrome/content/rules/Advocates_for_Youth.xml @@ -11,13 +11,13 @@ --> - + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Advolution.de.xml b/src/chrome/content/rules/Advolution.de.xml index dba1eb1d64fa..c38fbc1de739 100644 --- a/src/chrome/content/rules/Advolution.de.xml +++ b/src/chrome/content/rules/Advolution.de.xml @@ -1,12 +1,9 @@ - + - + - - - \ No newline at end of file + diff --git a/src/chrome/content/rules/Adweek.xml b/src/chrome/content/rules/Adweek.xml index b637bd6f4ff2..cf40ba9825b9 100644 --- a/src/chrome/content/rules/Adweek.xml +++ b/src/chrome/content/rules/Adweek.xml @@ -14,7 +14,7 @@ - + diff --git a/src/chrome/content/rules/AdyAdvantage.com.xml b/src/chrome/content/rules/AdyAdvantage.com.xml new file mode 100644 index 000000000000..52129882ef84 --- /dev/null +++ b/src/chrome/content/rules/AdyAdvantage.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Ady_Advantage.com-falsemixed.xml b/src/chrome/content/rules/Ady_Advantage.com-falsemixed.xml deleted file mode 100644 index 9437f7cd0f4e..000000000000 --- a/src/chrome/content/rules/Ady_Advantage.com-falsemixed.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Ady_Advantage.com.xml b/src/chrome/content/rules/Ady_Advantage.com.xml deleted file mode 100644 index ce135dba7d5d..000000000000 --- a/src/chrome/content/rules/Ady_Advantage.com.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Adyen.com.xml b/src/chrome/content/rules/Adyen.com.xml new file mode 100644 index 000000000000..b40eae7232db --- /dev/null +++ b/src/chrome/content/rules/Adyen.com.xml @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Adzerk.net.xml b/src/chrome/content/rules/Adzerk.net.xml index 69b92f187ccb..c7c3c20e23aa 100644 --- a/src/chrome/content/rules/Adzerk.net.xml +++ b/src/chrome/content/rules/Adzerk.net.xml @@ -31,7 +31,7 @@ Fetch error: http://secure.adzerk.net/ => https://secure.adzerk.net/: (51, "SSL: - .adzerk.net --> - + diff --git a/src/chrome/content/rules/Adzip.co.xml b/src/chrome/content/rules/Adzip.co.xml index 80f481fa1763..99275da119eb 100644 --- a/src/chrome/content/rules/Adzip.co.xml +++ b/src/chrome/content/rules/Adzip.co.xml @@ -5,4 +5,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Aea.se.xml b/src/chrome/content/rules/Aea.se.xml index cd8711a7b97f..22055f6433ea 100644 --- a/src/chrome/content/rules/Aea.se.xml +++ b/src/chrome/content/rules/Aea.se.xml @@ -1,7 +1,9 @@ - - - - - - + + + + + + + + diff --git a/src/chrome/content/rules/Aeinstein.org.xml b/src/chrome/content/rules/Aeinstein.org.xml new file mode 100644 index 000000000000..e45c4bf9092f --- /dev/null +++ b/src/chrome/content/rules/Aeinstein.org.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/AerLingus.xml b/src/chrome/content/rules/AerLingus.xml deleted file mode 100644 index 542b61b5e1d9..000000000000 --- a/src/chrome/content/rules/AerLingus.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - diff --git a/src/chrome/content/rules/Aer_Lingus.com.xml b/src/chrome/content/rules/Aer_Lingus.com.xml new file mode 100644 index 000000000000..d83fd609204c --- /dev/null +++ b/src/chrome/content/rules/Aer_Lingus.com.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Aereo.com-problematic.xml b/src/chrome/content/rules/Aereo.com-problematic.xml index e400216229b1..348c2934f05c 100644 --- a/src/chrome/content/rules/Aereo.com-problematic.xml +++ b/src/chrome/content/rules/Aereo.com-problematic.xml @@ -7,7 +7,6 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Aereo.com.xml b/src/chrome/content/rules/Aereo.com.xml index 8eb8239a9e30..c7b9a7ea9376 100644 --- a/src/chrome/content/rules/Aereo.com.xml +++ b/src/chrome/content/rules/Aereo.com.xml @@ -27,10 +27,11 @@ Fetch error: http://aereo.com/ => https://aereo.com/: (6, 'Could not resolve hos - blog (works; expired 2013-04-08; mismatched, CN: *.bamboom.com) --> - + - + + @@ -42,4 +43,4 @@ Fetch error: http://aereo.com/ => https://aereo.com/: (6, 'Could not resolve hos - \ No newline at end of file + diff --git a/src/chrome/content/rules/Aeriagames.xml b/src/chrome/content/rules/Aeriagames.xml index 64bd2e13e3c9..c6b659c61b25 100644 --- a/src/chrome/content/rules/Aeriagames.xml +++ b/src/chrome/content/rules/Aeriagames.xml @@ -1,37 +1,16 @@ - - - - - - - - - - - + + + + + + + diff --git a/src/chrome/content/rules/AerisWeather.com.xml b/src/chrome/content/rules/AerisWeather.com.xml new file mode 100644 index 000000000000..b8c51898a0c3 --- /dev/null +++ b/src/chrome/content/rules/AerisWeather.com.xml @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/AeroFS.xml b/src/chrome/content/rules/AeroFS.xml index e1d43464e20e..d21d9aa81eff 100644 --- a/src/chrome/content/rules/AeroFS.xml +++ b/src/chrome/content/rules/AeroFS.xml @@ -19,7 +19,7 @@ Fetch error: http://my.aerofs.com/ => https://my.aerofs.com/: (6, 'Could not res - support --> - + diff --git a/src/chrome/content/rules/Aeroports_de_Montreal.xml b/src/chrome/content/rules/Aeroports_de_Montreal.xml index 0489908a43bd..2853d7f13962 100644 --- a/src/chrome/content/rules/Aeroports_de_Montreal.xml +++ b/src/chrome/content/rules/Aeroports_de_Montreal.xml @@ -1,17 +1,26 @@ - - + - + + + + + + + + + + + + - - + diff --git a/src/chrome/content/rules/Aeryon_Labs.xml b/src/chrome/content/rules/Aeryon_Labs.xml index 5da41b0c1baf..f6f76a1bb172 100644 --- a/src/chrome/content/rules/Aeryon_Labs.xml +++ b/src/chrome/content/rules/Aeryon_Labs.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/AetherFlyff.com.xml b/src/chrome/content/rules/AetherFlyff.com.xml index bd47da9a1e0f..dc48c306c40b 100644 --- a/src/chrome/content/rules/AetherFlyff.com.xml +++ b/src/chrome/content/rules/AetherFlyff.com.xml @@ -6,7 +6,7 @@ Fetch error: http://basilisk.aetherflyff.com/ => https://basilisk.aetherflyff.co Fetch error: http://www.aetherflyff.com/ => https://www.aetherflyff.com/: (28, 'Operation timed out after 30002 milliseconds with 0 bytes received') --> - + @@ -14,7 +14,7 @@ Fetch error: http://www.aetherflyff.com/ => https://www.aetherflyff.com/: (28, ' - + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/AffUtd.com.xml b/src/chrome/content/rules/AffUtd.com.xml index f9e8f4169938..a86bcebbcec9 100644 --- a/src/chrome/content/rules/AffUtd.com.xml +++ b/src/chrome/content/rules/AffUtd.com.xml @@ -13,17 +13,17 @@ Fetch error: http://www.affutd.com/ => https://www.affutd.com/: (60, 'SSL certif For other William Hill coverage, see William-Hill.xml. --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/AffaireRelig.net.xml b/src/chrome/content/rules/AffaireRelig.net.xml new file mode 100644 index 000000000000..5ebf6d3fc5ef --- /dev/null +++ b/src/chrome/content/rules/AffaireRelig.net.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Affec.tv.xml b/src/chrome/content/rules/Affec.tv.xml index 0c562b058131..991eef619dbd 100644 --- a/src/chrome/content/rules/Affec.tv.xml +++ b/src/chrome/content/rules/Affec.tv.xml @@ -24,7 +24,7 @@ --> - + - + https://www.afiestas.org/: (51, "SSL: n * Secured by us --> - + diff --git a/src/chrome/content/rules/Afilias.xml b/src/chrome/content/rules/Afilias.xml index dd38688c3e94..98f2daf97011 100644 --- a/src/chrome/content/rules/Afilias.xml +++ b/src/chrome/content/rules/Afilias.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/African-Network-Information-Center.xml b/src/chrome/content/rules/African-Network-Information-Center.xml index 7bf151fedd33..0ecb53440062 100644 --- a/src/chrome/content/rules/African-Network-Information-Center.xml +++ b/src/chrome/content/rules/African-Network-Information-Center.xml @@ -1,15 +1,10 @@ - - + - - - - - - - + + + - + + diff --git a/src/chrome/content/rules/African_Grey_Parrot_Centre.xml b/src/chrome/content/rules/African_Grey_Parrot_Centre.xml index 5a19ce2c7a2b..8d66ca630d65 100644 --- a/src/chrome/content/rules/African_Grey_Parrot_Centre.xml +++ b/src/chrome/content/rules/African_Grey_Parrot_Centre.xml @@ -5,7 +5,7 @@ Fetch error: http://africangreyparrotcentre.co.uk/ => https://africangreyparrotc Fetch error: http://www.africangreyparrotcentre.co.uk/ => https://www.africangreyparrotcentre.co.uk/: (60, 'SSL certificate problem: self signed certificate') --> - + @@ -16,4 +16,4 @@ Fetch error: http://www.africangreyparrotcentre.co.uk/ => https://www.africangre - \ No newline at end of file + diff --git a/src/chrome/content/rules/Aftenbladet.no.xml b/src/chrome/content/rules/Aftenbladet.no.xml new file mode 100644 index 000000000000..a164f7587fa4 --- /dev/null +++ b/src/chrome/content/rules/Aftenbladet.no.xml @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Aftenposten.no-falsemixed.xml b/src/chrome/content/rules/Aftenposten.no-falsemixed.xml deleted file mode 100644 index fee082feb8e3..000000000000 --- a/src/chrome/content/rules/Aftenposten.no-falsemixed.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Aftenposten.xml b/src/chrome/content/rules/Aftenposten.xml index d9ade956cfd3..4c75de46f2f9 100644 --- a/src/chrome/content/rules/Aftenposten.xml +++ b/src/chrome/content/rules/Aftenposten.xml @@ -1,123 +1,28 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Afterdawn.com.xml b/src/chrome/content/rules/Afterdawn.com.xml new file mode 100644 index 000000000000..d3080c2c1b62 --- /dev/null +++ b/src/chrome/content/rules/Afterdawn.com.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Afterpay.co.nz.xml b/src/chrome/content/rules/Afterpay.co.nz.xml new file mode 100644 index 000000000000..92a38fa1bd1b --- /dev/null +++ b/src/chrome/content/rules/Afterpay.co.nz.xml @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Afterpay.com.au.xml b/src/chrome/content/rules/Afterpay.com.au.xml new file mode 100644 index 000000000000..8ae9dfead234 --- /dev/null +++ b/src/chrome/content/rules/Afterpay.com.au.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Afton_Trial_Run.xml b/src/chrome/content/rules/Afton_Trial_Run.xml index 2f55ae5d34a2..3759c1aca8e9 100644 --- a/src/chrome/content/rules/Afton_Trial_Run.xml +++ b/src/chrome/content/rules/Afton_Trial_Run.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Aftonbladet.xml b/src/chrome/content/rules/Aftonbladet.xml index ad9e5822c6e5..f8e087d298a6 100644 --- a/src/chrome/content/rules/Aftonbladet.xml +++ b/src/chrome/content/rules/Aftonbladet.xml @@ -1,89 +1,51 @@ + - + + + + - - - - - - - - - - - - - - - - + + + - - + - - - + - - - - - + + diff --git a/src/chrome/content/rules/Afx.ms.xml b/src/chrome/content/rules/Afx.ms.xml index bb451b67e995..70567b73952c 100644 --- a/src/chrome/content/rules/Afx.ms.xml +++ b/src/chrome/content/rules/Afx.ms.xml @@ -18,7 +18,7 @@ Fetch error: http://bay176.afx.ms/ => https://bay176.afx.ms/: (6, 'Could not res - dub12[0-4] --> - + diff --git a/src/chrome/content/rules/AgKn.com.xml b/src/chrome/content/rules/AgKn.com.xml index d61028406e96..8ab3b3d0f3d8 100644 --- a/src/chrome/content/rules/AgKn.com.xml +++ b/src/chrome/content/rules/AgKn.com.xml @@ -24,7 +24,7 @@ --> - + https://agari.com/: (51, "SSL: no alternative - + + + @@ -21,4 +23,4 @@ Fetch error: http://agari.com/ => https://agari.com/: (51, "SSL: no alternative - \ No newline at end of file + diff --git a/src/chrome/content/rules/Agariomods.com.xml b/src/chrome/content/rules/Agariomods.com.xml index 2b577edaaadb..61c2d24bed25 100644 --- a/src/chrome/content/rules/Agariomods.com.xml +++ b/src/chrome/content/rules/Agariomods.com.xml @@ -12,8 +12,8 @@ - + - + diff --git a/src/chrome/content/rules/Age_of_Mine.com.xml b/src/chrome/content/rules/Age_of_Mine.com.xml index 5377d6022863..35675863aff4 100644 --- a/src/chrome/content/rules/Age_of_Mine.com.xml +++ b/src/chrome/content/rules/Age_of_Mine.com.xml @@ -5,7 +5,7 @@ Fetch error: http://ageofmine.com/ => https://ageofmine.com/: (28, 'Operation ti Fetch error: http://www.ageofmine.com/ => https://www.ageofmine.com/: (28, 'Operation timed out after 30001 milliseconds with 0 bytes received') --> - + diff --git a/src/chrome/content/rules/Agence-France-Presse.xml b/src/chrome/content/rules/Agence-France-Presse.xml index 1f3c47669abc..d145d43f256d 100644 --- a/src/chrome/content/rules/Agence-France-Presse.xml +++ b/src/chrome/content/rules/Agence-France-Presse.xml @@ -4,10 +4,9 @@ - + - + diff --git a/src/chrome/content/rules/Agentbot.net.xml b/src/chrome/content/rules/Agentbot.net.xml new file mode 100644 index 000000000000..9990239dcb3f --- /dev/null +++ b/src/chrome/content/rules/Agentbot.net.xml @@ -0,0 +1,66 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Aggregate_Knowledge.xml b/src/chrome/content/rules/Aggregate_Knowledge.xml index de3e77980a4f..da849e397d43 100644 --- a/src/chrome/content/rules/Aggregate_Knowledge.xml +++ b/src/chrome/content/rules/Aggregate_Knowledge.xml @@ -43,7 +43,7 @@ Fetch error: http://www-stage.aggregateknowledge.com/ => https://www.aggregatekn - .aggregateknowledge.com --> - + diff --git a/src/chrome/content/rules/Agmk.net.xml b/src/chrome/content/rules/Agmk.net.xml index 1b8c552ef104..a5c6ec2bda09 100644 --- a/src/chrome/content/rules/Agmk.net.xml +++ b/src/chrome/content/rules/Agmk.net.xml @@ -5,7 +5,7 @@ - + diff --git a/src/chrome/content/rules/Agra-net.com.xml b/src/chrome/content/rules/Agra-net.com.xml index c8c46619d84d..3d5e540231dd 100644 --- a/src/chrome/content/rules/Agra-net.com.xml +++ b/src/chrome/content/rules/Agra-net.com.xml @@ -34,7 +34,7 @@ Fetch error: http://store.agra-net.com/ => https://store.agra-net.com/: (60, 'SS * Secured by us --> - + diff --git a/src/chrome/content/rules/Agri_Supply.com.xml b/src/chrome/content/rules/Agri_Supply.com.xml index 29f9dcda10a1..2e192d4aa95c 100644 --- a/src/chrome/content/rules/Agri_Supply.com.xml +++ b/src/chrome/content/rules/Agri_Supply.com.xml @@ -13,4 +13,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/AhadithNotes.com.xml b/src/chrome/content/rules/AhadithNotes.com.xml new file mode 100644 index 000000000000..eb756a773105 --- /dev/null +++ b/src/chrome/content/rules/AhadithNotes.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Ahegao.online.xml b/src/chrome/content/rules/Ahegao.online.xml new file mode 100644 index 000000000000..79a538440c6a --- /dev/null +++ b/src/chrome/content/rules/Ahegao.online.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Ahm.com.au.xml b/src/chrome/content/rules/Ahm.com.au.xml index b31cc56cb49f..89a28b119520 100644 --- a/src/chrome/content/rules/Ahm.com.au.xml +++ b/src/chrome/content/rules/Ahm.com.au.xml @@ -1,7 +1,9 @@ - + + + @@ -19,7 +21,6 @@ - + diff --git a/src/chrome/content/rules/Ahmia.fi.xml b/src/chrome/content/rules/Ahmia.fi.xml index cd4d399fca22..bebbe546c387 100644 --- a/src/chrome/content/rules/Ahmia.fi.xml +++ b/src/chrome/content/rules/Ahmia.fi.xml @@ -1,15 +1,18 @@ - - + + - + + diff --git a/src/chrome/content/rules/AhnLab.com.xml b/src/chrome/content/rules/AhnLab.com.xml new file mode 100644 index 000000000000..e56f5778b17a --- /dev/null +++ b/src/chrome/content/rules/AhnLab.com.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Ahnlab.com.xml b/src/chrome/content/rules/Ahnlab.com.xml deleted file mode 100644 index ec9f1d9fc1cb..000000000000 --- a/src/chrome/content/rules/Ahnlab.com.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Aidsmap.com.xml b/src/chrome/content/rules/Aidsmap.com.xml index 254c7337816c..da604b40392f 100644 --- a/src/chrome/content/rules/Aidsmap.com.xml +++ b/src/chrome/content/rules/Aidsmap.com.xml @@ -16,7 +16,7 @@ Fetch error: http://aidsmap.com/ => https://www.aidsmap.com/: (35, 'Unknown SSL * Secured by us --> - + diff --git a/src/chrome/content/rules/Aim4Media.com.xml b/src/chrome/content/rules/Aim4Media.com.xml index 2609b1db5b78..486bd32e7021 100644 --- a/src/chrome/content/rules/Aim4Media.com.xml +++ b/src/chrome/content/rules/Aim4Media.com.xml @@ -21,7 +21,7 @@ Non-2xx HTTP code: http://ad.aim4media.com/ (200) => https://ad.yieldmanager.com - ad (→ ad.yieldmanager.com) --> - + @@ -29,4 +29,4 @@ Non-2xx HTTP code: http://ad.aim4media.com/ (200) => https://ad.yieldmanager.com - \ No newline at end of file + diff --git a/src/chrome/content/rules/Air-Canada-Pilots-Association.xml b/src/chrome/content/rules/Air-Canada-Pilots-Association.xml index 7ecddf72df7f..b5b059396517 100644 --- a/src/chrome/content/rules/Air-Canada-Pilots-Association.xml +++ b/src/chrome/content/rules/Air-Canada-Pilots-Association.xml @@ -7,7 +7,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://secure.acpa.ca/ => https://secure.acpa.ca/: (51, "SSL: no alternative certificate subject name matches target host name 'www.acpa.ca'") secure.... homepage redirects to www other pages redirect to http://secure... --> - + diff --git a/src/chrome/content/rules/AirAsia.xml b/src/chrome/content/rules/AirAsia.xml index 43657f2a87c2..856919e9833b 100644 --- a/src/chrome/content/rules/AirAsia.xml +++ b/src/chrome/content/rules/AirAsia.xml @@ -1,13 +1,52 @@ - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/AirMalta.com.xml b/src/chrome/content/rules/AirMalta.com.xml new file mode 100644 index 000000000000..694d10608882 --- /dev/null +++ b/src/chrome/content/rules/AirMalta.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/AirMap.xml b/src/chrome/content/rules/AirMap.xml index 5b65c66e8f41..6f55a6ea0555 100644 --- a/src/chrome/content/rules/AirMap.xml +++ b/src/chrome/content/rules/AirMap.xml @@ -21,9 +21,9 @@ - + - + diff --git a/src/chrome/content/rules/AirVPN.xml b/src/chrome/content/rules/AirVPN.xml deleted file mode 100644 index b93c35ec5435..000000000000 --- a/src/chrome/content/rules/AirVPN.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Airbnb.xml b/src/chrome/content/rules/Airbnb.xml deleted file mode 100644 index 0d2d80e31adb..000000000000 --- a/src/chrome/content/rules/Airbnb.xml +++ /dev/null @@ -1,106 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Aircrack-ng.org-problematic.xml b/src/chrome/content/rules/Aircrack-ng.org-problematic.xml deleted file mode 100644 index b6307e0929ce..000000000000 --- a/src/chrome/content/rules/Aircrack-ng.org-problematic.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/AirportBanking.com.xml b/src/chrome/content/rules/AirportBanking.com.xml new file mode 100644 index 000000000000..d44beaf6d458 --- /dev/null +++ b/src/chrome/content/rules/AirportBanking.com.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/AirshipVentures.xml b/src/chrome/content/rules/AirshipVentures.xml index 1212beb92121..e809b2642ab9 100644 --- a/src/chrome/content/rules/AirshipVentures.xml +++ b/src/chrome/content/rules/AirshipVentures.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.airshipventures.com/ => https://www.airshipventures.com/: (35, 'Unknown SSL protocol error in connection to www.airshipventures.com:443 ') Fetch error: http://airshipventures.com/ => https://www.airshipventures.com/: (35, 'Unknown SSL protocol error in connection to www.airshipventures.com:443 ') --> - + diff --git a/src/chrome/content/rules/AirsoftGI.com.xml b/src/chrome/content/rules/AirsoftGI.com.xml index c2d78c634a1f..c25e69f6a97f 100644 --- a/src/chrome/content/rules/AirsoftGI.com.xml +++ b/src/chrome/content/rules/AirsoftGI.com.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://airsoftgi.com/ => https://airsoftgi.com/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + @@ -15,4 +15,4 @@ Fetch error: http://airsoftgi.com/ => https://airsoftgi.com/: (60, 'SSL certific - \ No newline at end of file + diff --git a/src/chrome/content/rules/Airtricity.xml b/src/chrome/content/rules/Airtricity.xml deleted file mode 100644 index 45344cae11f0..000000000000 --- a/src/chrome/content/rules/Airtricity.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/AkademikerForsakring.se.xml b/src/chrome/content/rules/AkademikerForsakring.se.xml index 86c59deba309..44c71a7899f7 100644 --- a/src/chrome/content/rules/AkademikerForsakring.se.xml +++ b/src/chrome/content/rules/AkademikerForsakring.se.xml @@ -1,12 +1,16 @@ - + - - - + + + + + diff --git a/src/chrome/content/rules/AkademiskaHus.se.xml b/src/chrome/content/rules/AkademiskaHus.se.xml index 7fb3b3a8ce50..b3f86bb825e9 100644 --- a/src/chrome/content/rules/AkademiskaHus.se.xml +++ b/src/chrome/content/rules/AkademiskaHus.se.xml @@ -1,18 +1,50 @@ - - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Akamai.com.xml b/src/chrome/content/rules/Akamai.com.xml index b8cb4895eace..5c32e8a73c4f 100644 --- a/src/chrome/content/rules/Akamai.com.xml +++ b/src/chrome/content/rules/Akamai.com.xml @@ -39,7 +39,7 @@ Non-2xx HTTP code: http://community-uat.akamai.com/ (200) => https://community-u ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -59,7 +59,7 @@ Non-2xx HTTP code: http://community-uat.akamai.com/ (200) => https://community-u - + - - + - - + diff --git a/src/chrome/content/rules/Akb.ch.xml b/src/chrome/content/rules/Akb.ch.xml new file mode 100644 index 000000000000..374d8948a605 --- /dev/null +++ b/src/chrome/content/rules/Akb.ch.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Akinator.com.xml b/src/chrome/content/rules/Akinator.com.xml new file mode 100644 index 000000000000..8cc12b09da6e --- /dev/null +++ b/src/chrome/content/rules/Akinator.com.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Akira.org.xml b/src/chrome/content/rules/Akira.org.xml index 7eda290b0bbf..beccce20b3e9 100644 --- a/src/chrome/content/rules/Akira.org.xml +++ b/src/chrome/content/rules/Akira.org.xml @@ -10,4 +10,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Aklamio.com.xml b/src/chrome/content/rules/Aklamio.com.xml index 55cdea0eeb15..bea0c4618f96 100644 --- a/src/chrome/content/rules/Aklamio.com.xml +++ b/src/chrome/content/rules/Aklamio.com.xml @@ -9,7 +9,7 @@ - + + + + + + + + diff --git a/src/chrome/content/rules/Akola_Project.org.xml b/src/chrome/content/rules/Akola_Project.org.xml deleted file mode 100644 index bad6e3cac49f..000000000000 --- a/src/chrome/content/rules/Akola_Project.org.xml +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Aktion-Deutschland-Hilft.de.xml b/src/chrome/content/rules/Aktion-Deutschland-Hilft.de.xml index f88ac9358693..bafdae6b040a 100644 --- a/src/chrome/content/rules/Aktion-Deutschland-Hilft.de.xml +++ b/src/chrome/content/rules/Aktion-Deutschland-Hilft.de.xml @@ -18,7 +18,8 @@ - + + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Aktivix.org.xml b/src/chrome/content/rules/Aktivix.org.xml index 60b621fc33bf..1e6691e18525 100644 --- a/src/chrome/content/rules/Aktivix.org.xml +++ b/src/chrome/content/rules/Aktivix.org.xml @@ -17,7 +17,7 @@ Fetch error: http://lists.aktivix.org/ => https://lists.aktivix.org/: (60, 'SSL - owncloud.aktivix.org --> - + @@ -35,7 +35,7 @@ Fetch error: http://lists.aktivix.org/ => https://lists.aktivix.org/: (60, 'SSL --> - + + + + + + + + + diff --git a/src/chrome/content/rules/Al-Maktaba.org.xml b/src/chrome/content/rules/Al-Maktaba.org.xml new file mode 100644 index 000000000000..ed0598a21fc6 --- /dev/null +++ b/src/chrome/content/rules/Al-Maktaba.org.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Al-Mostafa.info.xml b/src/chrome/content/rules/Al-Mostafa.info.xml new file mode 100644 index 000000000000..f3cfc1c385ef --- /dev/null +++ b/src/chrome/content/rules/Al-Mostafa.info.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Al-Sabeel.net.xml b/src/chrome/content/rules/Al-Sabeel.net.xml new file mode 100644 index 000000000000..b511470fcbe2 --- /dev/null +++ b/src/chrome/content/rules/Al-Sabeel.net.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Al-Shia.org.xml b/src/chrome/content/rules/Al-Shia.org.xml new file mode 100644 index 000000000000..6069d5445a89 --- /dev/null +++ b/src/chrome/content/rules/Al-Shia.org.xml @@ -0,0 +1,155 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Al-akhbar.xml b/src/chrome/content/rules/Al-akhbar.xml index d2e515b00f83..c01ccb8b97b4 100644 --- a/src/chrome/content/rules/Al-akhbar.xml +++ b/src/chrome/content/rules/Al-akhbar.xml @@ -10,4 +10,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/AlAdhan.com.xml b/src/chrome/content/rules/AlAdhan.com.xml new file mode 100644 index 000000000000..5f96beb6e597 --- /dev/null +++ b/src/chrome/content/rules/AlAdhan.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/AlDiwan.net.xml b/src/chrome/content/rules/AlDiwan.net.xml new file mode 100644 index 000000000000..65dce1f20310 --- /dev/null +++ b/src/chrome/content/rules/AlDiwan.net.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/AlFaseeh.com.xml b/src/chrome/content/rules/AlFaseeh.com.xml new file mode 100644 index 000000000000..2c7dc33e4e68 --- /dev/null +++ b/src/chrome/content/rules/AlFaseeh.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/AlFeker.net.xml b/src/chrome/content/rules/AlFeker.net.xml new file mode 100644 index 000000000000..cf79081b2a4d --- /dev/null +++ b/src/chrome/content/rules/AlFeker.net.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/AlImam.ws.xml b/src/chrome/content/rules/AlImam.ws.xml new file mode 100644 index 000000000000..1db7ac07c4ff --- /dev/null +++ b/src/chrome/content/rules/AlImam.ws.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/AlJamaa.net.xml b/src/chrome/content/rules/AlJamaa.net.xml new file mode 100644 index 000000000000..c5a1b084fab8 --- /dev/null +++ b/src/chrome/content/rules/AlJamaa.net.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/AlJazeera.com.xml b/src/chrome/content/rules/AlJazeera.com.xml new file mode 100644 index 000000000000..8e7cdb8487b4 --- /dev/null +++ b/src/chrome/content/rules/AlJazeera.com.xml @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/AlMasdarNews.com.xml b/src/chrome/content/rules/AlMasdarNews.com.xml new file mode 100644 index 000000000000..02195f8ab05c --- /dev/null +++ b/src/chrome/content/rules/AlMasdarNews.com.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/AlMohawer.com.xml b/src/chrome/content/rules/AlMohawer.com.xml new file mode 100644 index 000000000000..790e7e07fe72 --- /dev/null +++ b/src/chrome/content/rules/AlMohawer.com.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/AlMostaneer.com.xml b/src/chrome/content/rules/AlMostaneer.com.xml new file mode 100644 index 000000000000..2c0c75128951 --- /dev/null +++ b/src/chrome/content/rules/AlMostaneer.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/AlNawawiForty.com.xml b/src/chrome/content/rules/AlNawawiForty.com.xml new file mode 100644 index 000000000000..c823a98f7c14 --- /dev/null +++ b/src/chrome/content/rules/AlNawawiForty.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/AlRadNet.com.xml b/src/chrome/content/rules/AlRadNet.com.xml new file mode 100644 index 000000000000..b9bcd58142a7 --- /dev/null +++ b/src/chrome/content/rules/AlRadNet.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/AlRo7.net.xml b/src/chrome/content/rules/AlRo7.net.xml new file mode 100644 index 000000000000..d2e7ca8be1fe --- /dev/null +++ b/src/chrome/content/rules/AlRo7.net.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/AlTadabbur.com.xml b/src/chrome/content/rules/AlTadabbur.com.xml new file mode 100644 index 000000000000..0bde512e4832 --- /dev/null +++ b/src/chrome/content/rules/AlTadabbur.com.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/AlTafsir.com.xml b/src/chrome/content/rules/AlTafsir.com.xml new file mode 100644 index 000000000000..d2750d0ec9af --- /dev/null +++ b/src/chrome/content/rules/AlTafsir.com.xml @@ -0,0 +1,17 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Alaalam.org.xml b/src/chrome/content/rules/Alaalam.org.xml new file mode 100644 index 000000000000..439cefbfa32b --- /dev/null +++ b/src/chrome/content/rules/Alaalam.org.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/Alamy.xml b/src/chrome/content/rules/Alamy.xml index 7f1facf2a53a..a290d54f6c44 100644 --- a/src/chrome/content/rules/Alamy.xml +++ b/src/chrome/content/rules/Alamy.xml @@ -10,4 +10,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/AlanWalker.com.xml b/src/chrome/content/rules/AlanWalker.com.xml new file mode 100644 index 000000000000..0636587eabfb --- /dev/null +++ b/src/chrome/content/rules/AlanWalker.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Alandroidnet.com.xml b/src/chrome/content/rules/Alandroidnet.com.xml index 782f802ea61a..31fda1fcc2e8 100644 --- a/src/chrome/content/rules/Alandroidnet.com.xml +++ b/src/chrome/content/rules/Alandroidnet.com.xml @@ -6,7 +6,7 @@ - + diff --git a/src/chrome/content/rules/Alaska-Robotics.xml b/src/chrome/content/rules/Alaska-Robotics.xml index 3029c1713260..2b36325cbe7a 100644 --- a/src/chrome/content/rules/Alaska-Robotics.xml +++ b/src/chrome/content/rules/Alaska-Robotics.xml @@ -5,7 +5,7 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/AlaskaAirlines.xml b/src/chrome/content/rules/AlaskaAirlines.xml index 15a7fca3a90d..dbff470f12ba 100644 --- a/src/chrome/content/rules/AlaskaAirlines.xml +++ b/src/chrome/content/rules/AlaskaAirlines.xml @@ -1,9 +1,10 @@ - - - + + + + + - - + + + \ No newline at end of file diff --git a/src/chrome/content/rules/Alastairs-Place.xml b/src/chrome/content/rules/Alastairs-Place.xml deleted file mode 100644 index cfb27b5c2484..000000000000 --- a/src/chrome/content/rules/Alastairs-Place.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Albalagh.net.xml b/src/chrome/content/rules/Albalagh.net.xml new file mode 100644 index 000000000000..298b0c13d329 --- /dev/null +++ b/src/chrome/content/rules/Albalagh.net.xml @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/AlbalaghBooks.com.xml b/src/chrome/content/rules/AlbalaghBooks.com.xml new file mode 100644 index 000000000000..0d1e4045e5c1 --- /dev/null +++ b/src/chrome/content/rules/AlbalaghBooks.com.xml @@ -0,0 +1,12 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Albennet.com.xml b/src/chrome/content/rules/Albennet.com.xml index 0d7a854f6f25..bb0834b7ed27 100644 --- a/src/chrome/content/rules/Albennet.com.xml +++ b/src/chrome/content/rules/Albennet.com.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://alb.albennet.com/ => https://alb.albennet.com/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/Albinoloverats.xml b/src/chrome/content/rules/Albinoloverats.xml index 3126e0d6b4bd..ca071298fdbe 100644 --- a/src/chrome/content/rules/Albinoloverats.xml +++ b/src/chrome/content/rules/Albinoloverats.xml @@ -6,4 +6,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/AlbumArsiv.com.xml b/src/chrome/content/rules/AlbumArsiv.com.xml deleted file mode 100644 index 59ce72ed6719..000000000000 --- a/src/chrome/content/rules/AlbumArsiv.com.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Alchemy_Global.com.xml b/src/chrome/content/rules/Alchemy_Global.com.xml index d32b0591978a..568f60645877 100644 --- a/src/chrome/content/rules/Alchemy_Global.com.xml +++ b/src/chrome/content/rules/Alchemy_Global.com.xml @@ -21,7 +21,7 @@ --> - + http://wl.easydategroup.com/: (6, ' Fetch error: http://cdn.wl.easydategroup.com/ => http://cdn.wl.easydategroup.com/: (6, 'Could not resolve host: cdn.wl.easydategroup.com') --> - + @@ -16,12 +16,13 @@ Fetch error: http://cdn.wl.easydategroup.com/ => http://cdn.wl.easydategroup.com - + + - + https://alecomm.com/: (51, "SSL: no alternat Fetch error: http://www.alecomm.com/ => https://www.alecomm.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.alecomm.com'") --> - + diff --git a/src/chrome/content/rules/Alert_Investor_Relations.xml b/src/chrome/content/rules/Alert_Investor_Relations.xml index 57d286602391..eccd7d47c4f3 100644 --- a/src/chrome/content/rules/Alert_Investor_Relations.xml +++ b/src/chrome/content/rules/Alert_Investor_Relations.xml @@ -19,4 +19,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Alert_Online.nl.xml b/src/chrome/content/rules/Alert_Online.nl.xml deleted file mode 100644 index d6626bddcac3..000000000000 --- a/src/chrome/content/rules/Alert_Online.nl.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Alexa.xml b/src/chrome/content/rules/Alexa.xml index 5ded5b51cc59..72c5f4c95d50 100644 --- a/src/chrome/content/rules/Alexa.xml +++ b/src/chrome/content/rules/Alexa.xml @@ -1,68 +1,41 @@ - + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + diff --git a/src/chrome/content/rules/Alfa-Media-Partner.xml b/src/chrome/content/rules/Alfa-Media-Partner.xml index 38441699b6fc..a153c7bd6bf2 100644 --- a/src/chrome/content/rules/Alfa-Media-Partner.xml +++ b/src/chrome/content/rules/Alfa-Media-Partner.xml @@ -14,10 +14,6 @@ Fetch error: http://sso.alfa-openmedia.de/ => https://sso.alfa-openmedia.de/: (7 - - - + diff --git a/src/chrome/content/rules/Alfabank.ru.xml b/src/chrome/content/rules/Alfabank.ru.xml index d88fa15fe769..4acb042f447c 100644 --- a/src/chrome/content/rules/Alfabank.ru.xml +++ b/src/chrome/content/rules/Alfabank.ru.xml @@ -24,7 +24,7 @@ alfabank.kz protocol error www.alfabank.kz protocol error alfaportal.kz mismatch www.alfaportal.kz mismatch --> - + @@ -49,12 +49,12 @@ www.alfaportal.kz mismatch --> - + - + diff --git a/src/chrome/content/rules/Alfresco.com.xml b/src/chrome/content/rules/Alfresco.com.xml index 027b4e447409..82af7d04cfb6 100644 --- a/src/chrome/content/rules/Alfresco.com.xml +++ b/src/chrome/content/rules/Alfresco.com.xml @@ -18,7 +18,7 @@ Fetch error: http://wiki.alfresco.com/ => https://wiki.alfresco.com/: (60, 'SSL Wrong content: - dev --> - + diff --git a/src/chrome/content/rules/Alftwa.com.xml b/src/chrome/content/rules/Alftwa.com.xml new file mode 100644 index 000000000000..253566c2d69d --- /dev/null +++ b/src/chrome/content/rules/Alftwa.com.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Algonquin-College.xml b/src/chrome/content/rules/Algonquin-College.xml index f7b1bd69ad2b..826c255c904e 100644 --- a/src/chrome/content/rules/Algonquin-College.xml +++ b/src/chrome/content/rules/Algonquin-College.xml @@ -4,15 +4,15 @@ - + - + - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Alhaqlah.com.xml b/src/chrome/content/rules/Alhaqlah.com.xml new file mode 100644 index 000000000000..c975b80fad96 --- /dev/null +++ b/src/chrome/content/rules/Alhaqlah.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/AliCDN.com.xml b/src/chrome/content/rules/AliCDN.com.xml index fcc18ad15477..543ab6b7bd3d 100644 --- a/src/chrome/content/rules/AliCDN.com.xml +++ b/src/chrome/content/rules/AliCDN.com.xml @@ -29,10 +29,10 @@ ¹ Mismatched ² Akamai / mismatched - + Time out: - im - + Check encoding error: - static-src @@ -99,7 +99,7 @@ - + diff --git a/src/chrome/content/rules/AliExpress.com.xml b/src/chrome/content/rules/AliExpress.com.xml index 1e09ad9713bc..14cd496bd84d 100644 --- a/src/chrome/content/rules/AliExpress.com.xml +++ b/src/chrome/content/rules/AliExpress.com.xml @@ -7,46 +7,30 @@ Nonfunctional hosts in *aliexpress.com: - bbs.seller ¹ + - escrow + - m.fulfillment ² ¹ Dropped + ² Invalid certificate Problematic hosts in *aliexpress.com: + - $self ˣ + - www ˣ - activities ˣ - - gw.api ˣ - - brands ᵐ - - s.click ᵐ - - collections ˣ - daxue ˣ - - es ᵐ ˣ - - escrow ˣ - fulfillment ˣ - - fuwu ˣ - - gaga ˣ - - group ˣ - - he ᵐ - - hz ˣ - - id ˣ - - ja ᵐ - - m ᵐ - - mai ˣ - open ˣ - - page ˣ - - pt ᵐ - - ru ᵐ ˣ - - sale ᵐ ˣ - seller ˣ - - superdeals ˣ - - www ᵐ ˣ - ᵐ Mismatched - ˣ Mixed css, see https://www.paulirish.com/2010/the-protocol-relative-url/ + ˣ Active mixed content, see https://www.paulirish.com/2010/the-protocol-relative-url/ Insecure cookies are set for these domains and hosts: ᶜ - .aliexpress.com + - www.aliexpress.com - best.aliexpress.com - coupon.aliexpress.com - group.aliexpress.com @@ -54,7 +38,6 @@ - promotion.aliexpress.com - shoppingcart.aliexpress.com - university.aliexpress.com - - www.aliexpress.com - (locale_vhost).aliexpress.com ᶜ See https://owasp.org/index.php/SecureFlag @@ -66,22 +49,28 @@ - css, on: - - activities, collections, daxue, es, fuwu, gaga, group, hz, id, it, mai, open, page, pl, superdeals, th, www from style.aliunicorn.com ˢ - - escrow, fulfillment from style.alibaba.com ˢ - - gw.api from style.c.aliimg.com ˢ - - mai img.alibaba.com ˢ + - www from style.aliunicorn.com + - activities, daxue, open, th from style.aliunicorn.com ˢ + - fulfillment from style.alibaba.com ˢ + - seller from style.alibaba.com - sale from i0\d.i.aliimg.com ˢ + - js, on: + + - seller from style.alibaba.com + - www, seller from style.aliexpress.com + - www, open from style.aliunicorn.com + - Images, on: - - activities, gw.api, ar, de, es, group, he, id, ja, ko, mai, nl, pl, pt, ru, tr, vi, www from img.alibaba.com ˢ - - activities, escrow, fulfillment, gaga, seller from i0\d.i.aliimg.com ˢ - - activities, www from style.aliunicorn.com ˢ - - ar, best, brands, de, coupon, group, hz, it, ja, ko, nl, page, pl, ru, sale, th, tr, vi from g0\d.a.alicdn.com ˢ - - escrow, fulfillment, hz from img.alibaba.com ˢ + - activities, open from img.alibaba.com ˢ + - activities, fulfillment, seller from i0\d.i.aliimg.com ˢ + - activities from style.aliunicorn.com ˢ + - fulfillment, hz from img.alibaba.com ˢ + - open from gtms01.alicdn.com - university from gtms04.alicdn.com ˢ - - Bug on activities, collections, coupon, daxue, de, es, escrow, fr, fulfillment, fuwu, gaga, group, he, id, it, ja, ko, mai, nl, open, page, pl, pt, ru, seller, superdeals, th, tr, trade, university, vi, www from dmtracking2.alibaba.com ˢ + - Bug on activities, daxue, fulfillment, open, seller from dmtracking2.alibaba.com ˢ ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ @@ -89,53 +78,89 @@ + - + - + + + - + + + + + - - + + + + - + + + + + + + + - + + + - + + + + + - + + + + + + - + + + - + + + + + + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Alibaba.xml b/src/chrome/content/rules/Alibaba.xml index 425e7b7f5a47..b2f12135f9ee 100644 --- a/src/chrome/content/rules/Alibaba.xml +++ b/src/chrome/content/rules/Alibaba.xml @@ -34,6 +34,10 @@ - style.alibaba.com + Invalid certificates: + - portal.manjushri.alibaba.com (expired) + + Nonfunctional domains: - (www.)alibaba.co.jp ¹ @@ -70,6 +74,7 @@ Problematic hosts in *alibaba.com: + - gw.api ˣ - www.bd * - img.china * - www.[^.]+.en * @@ -79,6 +84,7 @@ * Mismatched ² Akamai / mismatched + ˣ Mixed css, see https://www.paulirish.com/2010/the-protocol-relative-url/ Insecure cookies are set for these domains and hosts: ᶜ @@ -93,7 +99,6 @@ - cluster.alibaba.com - dai.alibaba.com - data.alibaba.com - - ecredit.alibaba.com - fuwu.alibaba.com - globalexpo.alibaba.com - hzmy.alibaba.com @@ -127,12 +132,14 @@ Mixed content: - - css on india from style.aliunicorn.com ˢ + - css, on: + - gw.api from style.c.aliimg.com ˢ + - india from style.aliunicorn.com ˢ - Images, on: - chnwh.en, resources from g0\d.s.alicdn.com ˢ - - ggs from img.alibaba.com ˢ + - gw.api, ggs from img.alibaba.com ˢ - potal.manjushri from $self ˢ - potal.manjushri from crm-kms.alibaba-inc.com - potal.manjushri, open, resources, security, seller from gtms0\d.alicdn.com ˢ @@ -158,6 +165,7 @@ + @@ -176,7 +184,6 @@ - @@ -209,7 +216,7 @@ - + @@ -254,6 +261,11 @@ + + + + diff --git a/src/chrome/content/rules/AliceDSL.xml b/src/chrome/content/rules/AliceDSL.xml index eb7cae63a1c4..40da09b5cc2d 100644 --- a/src/chrome/content/rules/AliceDSL.xml +++ b/src/chrome/content/rules/AliceDSL.xml @@ -10,14 +10,13 @@ Fetch error: http://alice.de/ => https://www.alice-dsl.de/: (7, 'Failed to conne Fetch error: http://alice-dsl.de/ => https://www.alice-dsl.de/: (7, 'Failed to connect to www.alice-dsl.de port 443: No route to host') Fetch error: http://www.alice-dsl.de/ => https://www.alice-dsl.de/: (7, 'Failed to connect to www.alice-dsl.de port 443: No route to host') --> - + - + - - + - + diff --git a/src/chrome/content/rules/Alien.net.au.xml b/src/chrome/content/rules/Alien.net.au.xml index 0cf53e089fe9..58106913b7c5 100644 --- a/src/chrome/content/rules/Alien.net.au.xml +++ b/src/chrome/content/rules/Alien.net.au.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://alien.net.au/ => https://alien.net.au/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/AlienVault.xml b/src/chrome/content/rules/AlienVault.xml index 175bceb68484..b88087028d5e 100644 --- a/src/chrome/content/rules/AlienVault.xml +++ b/src/chrome/content/rules/AlienVault.xml @@ -8,10 +8,14 @@ - + + + + + - + + diff --git a/src/chrome/content/rules/AliorBank.pl.xml b/src/chrome/content/rules/AliorBank.pl.xml new file mode 100644 index 000000000000..57ea761623e4 --- /dev/null +++ b/src/chrome/content/rules/AliorBank.pl.xml @@ -0,0 +1,161 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Alipay.com.xml b/src/chrome/content/rules/Alipay.com.xml index 51d9ecc36923..979e930055c0 100644 --- a/src/chrome/content/rules/Alipay.com.xml +++ b/src/chrome/content/rules/Alipay.com.xml @@ -72,7 +72,7 @@ - + @@ -85,11 +85,11 @@ - + - - diff --git a/src/chrome/content/rules/Alivenotdead.com.xml b/src/chrome/content/rules/Alivenotdead.com.xml deleted file mode 100644 index 8e937788db2b..000000000000 --- a/src/chrome/content/rules/Alivenotdead.com.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Aliyun.com.xml b/src/chrome/content/rules/Aliyun.com.xml index 9e85e617c00a..63b469d7ea1f 100644 --- a/src/chrome/content/rules/Aliyun.com.xml +++ b/src/chrome/content/rules/Aliyun.com.xml @@ -146,7 +146,7 @@ - + + + + + + + + diff --git a/src/chrome/content/rules/Alkasir.com.xml b/src/chrome/content/rules/Alkasir.com.xml deleted file mode 100644 index 4c8476a0ddb5..000000000000 --- a/src/chrome/content/rules/Alkasir.com.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/All-Above-Offers.xml b/src/chrome/content/rules/All-Above-Offers.xml deleted file mode 100644 index 746e1f12a499..000000000000 --- a/src/chrome/content/rules/All-Above-Offers.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/All4xs.net.xml b/src/chrome/content/rules/All4xs.net.xml index 4457e4ff1912..f155d0abc5b1 100644 --- a/src/chrome/content/rules/All4xs.net.xml +++ b/src/chrome/content/rules/All4xs.net.xml @@ -4,7 +4,7 @@ - + diff --git a/src/chrome/content/rules/AllCoin.com.xml b/src/chrome/content/rules/AllCoin.com.xml deleted file mode 100644 index 72c9a4f5a835..000000000000 --- a/src/chrome/content/rules/AllCoin.com.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/AllDebrid.com.xml b/src/chrome/content/rules/AllDebrid.com.xml index aa3bf5a3bddb..09da24ce1c08 100644 --- a/src/chrome/content/rules/AllDebrid.com.xml +++ b/src/chrome/content/rules/AllDebrid.com.xml @@ -35,7 +35,7 @@ - + - - - - - - - - - diff --git a/src/chrome/content/rules/AllMyChanges.com.xml b/src/chrome/content/rules/AllMyChanges.com.xml index d9f6021102ae..21100ffd993f 100644 --- a/src/chrome/content/rules/AllMyChanges.com.xml +++ b/src/chrome/content/rules/AllMyChanges.com.xml @@ -8,7 +8,7 @@ Fetch error: http://www.allmychanges.com/ => https://www.allmychanges.com/: (51, - allmychanges.com --> - + @@ -18,7 +18,7 @@ Fetch error: http://www.allmychanges.com/ => https://www.allmychanges.com/: (51, --> - + - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/AllSeen_Alliance.org.xml b/src/chrome/content/rules/AllSeen_Alliance.org.xml deleted file mode 100644 index 89ae54e106a8..000000000000 --- a/src/chrome/content/rules/AllSeen_Alliance.org.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/AllShare_Play.xml b/src/chrome/content/rules/AllShare_Play.xml index 1679a0ba72d3..193c1acc5ffc 100644 --- a/src/chrome/content/rules/AllShare_Play.xml +++ b/src/chrome/content/rules/AllShare_Play.xml @@ -10,12 +10,12 @@ Fetch error: http://www.allshareplay.com/ => https://www.allshareplay.com/: (6, Fetch error: http://fwk.allshareplay.com/ => https://fwk.allshareplay.com/: (6, 'Could not resolve host: fwk.allshareplay.com') For other Samsung coverage, see Samsung.com.xml. - + Mismatch: sw.* --> - + @@ -25,14 +25,14 @@ Fetch error: http://fwk.allshareplay.com/ => https://fwk.allshareplay.com/: (6, - + - + - + diff --git a/src/chrome/content/rules/AllUnmanaged.com.xml b/src/chrome/content/rules/AllUnmanaged.com.xml deleted file mode 100644 index a901d29e86cd..000000000000 --- a/src/chrome/content/rules/AllUnmanaged.com.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/AllYouCanArcade.com.xml b/src/chrome/content/rules/AllYouCanArcade.com.xml new file mode 100644 index 000000000000..4b4c24163c68 --- /dev/null +++ b/src/chrome/content/rules/AllYouCanArcade.com.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/All_American_Trains.xml b/src/chrome/content/rules/All_American_Trains.xml index 6419977a9fba..2179f7a92418 100644 --- a/src/chrome/content/rules/All_American_Trains.xml +++ b/src/chrome/content/rules/All_American_Trains.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/All_Day_Calm.xml b/src/chrome/content/rules/All_Day_Calm.xml index 34296d2837e0..17d0694564c7 100644 --- a/src/chrome/content/rules/All_Day_Calm.xml +++ b/src/chrome/content/rules/All_Day_Calm.xml @@ -6,4 +6,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/All_Star_Tire.xml b/src/chrome/content/rules/All_Star_Tire.xml index 1d6af8a7d0b0..33d5f1aa6efd 100644 --- a/src/chrome/content/rules/All_Star_Tire.xml +++ b/src/chrome/content/rules/All_Star_Tire.xml @@ -4,9 +4,9 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/All_You_Can_Arcade.com.xml b/src/chrome/content/rules/All_You_Can_Arcade.com.xml deleted file mode 100644 index 3641ace75f28..000000000000 --- a/src/chrome/content/rules/All_You_Can_Arcade.com.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Allegro.pl.xml b/src/chrome/content/rules/Allegro.pl.xml new file mode 100644 index 000000000000..e81b36ab94f3 --- /dev/null +++ b/src/chrome/content/rules/Allegro.pl.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Allegro.xml b/src/chrome/content/rules/Allegro.xml deleted file mode 100644 index fc4bec30e895..000000000000 --- a/src/chrome/content/rules/Allegro.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Allegrolokalnie.pl.xml b/src/chrome/content/rules/Allegrolokalnie.pl.xml new file mode 100644 index 000000000000..3d11e088ead2 --- /dev/null +++ b/src/chrome/content/rules/Allegrolokalnie.pl.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/AllemandFacile.com.xml b/src/chrome/content/rules/AllemandFacile.com.xml new file mode 100644 index 000000000000..3ddc1d4ba0f4 --- /dev/null +++ b/src/chrome/content/rules/AllemandFacile.com.xml @@ -0,0 +1,11 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Alliance-90-The-Greens.xml b/src/chrome/content/rules/Alliance-90-The-Greens.xml index 8ad83d0ba2fa..4be9397af5dd 100644 --- a/src/chrome/content/rules/Alliance-90-The-Greens.xml +++ b/src/chrome/content/rules/Alliance-90-The-Greens.xml @@ -10,7 +10,7 @@ - + diff --git a/src/chrome/content/rules/AllianceBernstein.xml b/src/chrome/content/rules/AllianceBernstein.xml index 766b02454801..fd833ee4a394 100644 --- a/src/chrome/content/rules/AllianceBernstein.xml +++ b/src/chrome/content/rules/AllianceBernstein.xml @@ -1,7 +1,6 @@ + + + - + - + + + + - + + + + + + + + + - - - - - - - - - - - - - - - + - + diff --git a/src/chrome/content/rules/Allmystery.de.xml b/src/chrome/content/rules/Allmystery.de.xml new file mode 100644 index 000000000000..8c3b7f14198d --- /dev/null +++ b/src/chrome/content/rules/Allmystery.de.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Allmyvideos.net.xml b/src/chrome/content/rules/Allmyvideos.net.xml index 7ff122908264..fb8e5d937412 100644 --- a/src/chrome/content/rules/Allmyvideos.net.xml +++ b/src/chrome/content/rules/Allmyvideos.net.xml @@ -26,7 +26,7 @@ Fetch error: http://www.allmyvideos.net/ => https://www.allmyvideos.net/: (60, ' * Unsecurable --> - + diff --git a/src/chrome/content/rules/Alloscomp.com.xml b/src/chrome/content/rules/Alloscomp.com.xml index ca94a9ea8150..bae6d3fe9301 100644 --- a/src/chrome/content/rules/Alloscomp.com.xml +++ b/src/chrome/content/rules/Alloscomp.com.xml @@ -13,6 +13,6 @@ - diff --git a/src/chrome/content/rules/Alloy_Digital.xml b/src/chrome/content/rules/Alloy_Digital.xml index 1a9ccca765a8..cd29b05b85fa 100644 --- a/src/chrome/content/rules/Alloy_Digital.xml +++ b/src/chrome/content/rules/Alloy_Digital.xml @@ -56,7 +56,7 @@ Fetch error: http://cdn.thegrindstone.com/ => https://d176o63igdzvgd.cloudfront. - (www.)thegrindstone.com (ditto) --> - + diff --git a/src/chrome/content/rules/Allpoetry.xml b/src/chrome/content/rules/Allpoetry.xml index ace8d38835a7..e2365c5f8a8b 100644 --- a/src/chrome/content/rules/Allpoetry.xml +++ b/src/chrome/content/rules/Allpoetry.xml @@ -11,7 +11,8 @@ - + + diff --git a/src/chrome/content/rules/Alltop.com.xml b/src/chrome/content/rules/Alltop.com.xml index 71c914d19d26..4e7a0795b8fb 100644 --- a/src/chrome/content/rules/Alltop.com.xml +++ b/src/chrome/content/rules/Alltop.com.xml @@ -1,5 +1,5 @@ diff --git a/src/chrome/content/rules/AlltubeDownload.xml b/src/chrome/content/rules/AlltubeDownload.xml deleted file mode 100644 index 6d717a747ac3..000000000000 --- a/src/chrome/content/rules/AlltubeDownload.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Allure.com.xml b/src/chrome/content/rules/Allure.com.xml new file mode 100644 index 000000000000..3138edf85ba1 --- /dev/null +++ b/src/chrome/content/rules/Allure.com.xml @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Alluremedia.com.xml b/src/chrome/content/rules/Alluremedia.com.xml new file mode 100644 index 000000000000..5550b054d859 --- /dev/null +++ b/src/chrome/content/rules/Alluremedia.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Alluremedia.xml b/src/chrome/content/rules/Alluremedia.xml deleted file mode 100644 index 0ae96dc834f6..000000000000 --- a/src/chrome/content/rules/Alluremedia.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Ally_Financial-problematic.xml b/src/chrome/content/rules/Ally_Financial-problematic.xml index 5df8ec1c3a09..09145d05960e 100644 --- a/src/chrome/content/rules/Ally_Financial-problematic.xml +++ b/src/chrome/content/rules/Ally_Financial-problematic.xml @@ -7,7 +7,6 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Ally_Financial.xml b/src/chrome/content/rules/Ally_Financial.xml index d5f74ba59749..a2b4583967db 100644 --- a/src/chrome/content/rules/Ally_Financial.xml +++ b/src/chrome/content/rules/Ally_Financial.xml @@ -39,10 +39,16 @@ Fetch error: http://www.smartauction.biz/ => https://www.smartauction.biz/: (60, - www.smartauction.biz --> - + - + + + + + + + @@ -51,13 +57,10 @@ Fetch error: http://www.smartauction.biz/ => https://www.smartauction.biz/: (60, - - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Alonetone.xml b/src/chrome/content/rules/Alonetone.xml deleted file mode 100644 index 93380b81420e..000000000000 --- a/src/chrome/content/rules/Alonetone.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/AlphaSSL.xml b/src/chrome/content/rules/AlphaSSL.xml index addb81cc6f5f..3ee86fc959d0 100644 --- a/src/chrome/content/rules/AlphaSSL.xml +++ b/src/chrome/content/rules/AlphaSSL.xml @@ -7,4 +7,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/AlpineLinux.org.xml b/src/chrome/content/rules/AlpineLinux.org.xml new file mode 100644 index 000000000000..6efe18dcc27a --- /dev/null +++ b/src/chrome/content/rules/AlpineLinux.org.xml @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Alpine_Linux.org.xml b/src/chrome/content/rules/Alpine_Linux.org.xml deleted file mode 100644 index 255adfa37a75..000000000000 --- a/src/chrome/content/rules/Alpine_Linux.org.xml +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/AlreadyHosting.com.xml b/src/chrome/content/rules/AlreadyHosting.com.xml deleted file mode 100644 index 30627f0d95e1..000000000000 --- a/src/chrome/content/rules/AlreadyHosting.com.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Alta_Ski_Area.xml b/src/chrome/content/rules/Alta_Ski_Area.xml index 8c55c4159912..47b62b6a5800 100644 --- a/src/chrome/content/rules/Alta_Ski_Area.xml +++ b/src/chrome/content/rules/Alta_Ski_Area.xml @@ -5,7 +5,8 @@ - + + @@ -14,7 +15,6 @@ - + diff --git a/src/chrome/content/rules/Alteeve.ca.xml b/src/chrome/content/rules/Alteeve.ca.xml index 370a48552a31..85b03c80aa80 100644 --- a/src/chrome/content/rules/Alteeve.ca.xml +++ b/src/chrome/content/rules/Alteeve.ca.xml @@ -1,16 +1,13 @@ - + + + - - - - - + diff --git a/src/chrome/content/rules/AlterNet.xml b/src/chrome/content/rules/AlterNet.xml index 3fd2e07525b4..84211c400a64 100644 --- a/src/chrome/content/rules/AlterNet.xml +++ b/src/chrome/content/rules/AlterNet.xml @@ -6,7 +6,7 @@ files.alternet.org - (but website sometimes links to https even though it is + (but website sometimes links to https even though it is broken.) --> diff --git a/src/chrome/content/rules/Altera.com.xml b/src/chrome/content/rules/Altera.com.xml index 93ce705a8d89..b5b2dd1f2d99 100644 --- a/src/chrome/content/rules/Altera.com.xml +++ b/src/chrome/content/rules/Altera.com.xml @@ -21,4 +21,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Altera_Praxis.com.xml b/src/chrome/content/rules/Altera_Praxis.com.xml deleted file mode 100644 index cc2a6c8371c0..000000000000 --- a/src/chrome/content/rules/Altera_Praxis.com.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/AlternC.xml b/src/chrome/content/rules/AlternC.xml index 6b59638a5cbe..a175519cdfbc 100644 --- a/src/chrome/content/rules/AlternC.xml +++ b/src/chrome/content/rules/AlternC.xml @@ -9,7 +9,7 @@ Fetch error: http://www.alternc.org/ => https://www.alternc.org/: (51, "SSL: no - mail.demo (redirects to demo) --> - + @@ -21,4 +21,4 @@ Fetch error: http://www.alternc.org/ => https://www.alternc.org/: (51, "SSL: no - \ No newline at end of file + diff --git a/src/chrome/content/rules/Alternate.xml b/src/chrome/content/rules/Alternate.xml index 6ad5acad8767..f7c5e734db9c 100644 --- a/src/chrome/content/rules/Alternate.xml +++ b/src/chrome/content/rules/Alternate.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://alternate-b2b.nl/ => https://alternate-b2b.nl/: (51, "SSL: no alternative certificate subject name matches target host name 'alternate-b2b.nl'") --> - + diff --git a/src/chrome/content/rules/Alternatiba.eu.xml b/src/chrome/content/rules/Alternatiba.eu.xml new file mode 100644 index 000000000000..896951b22fb8 --- /dev/null +++ b/src/chrome/content/rules/Alternatiba.eu.xml @@ -0,0 +1,16 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/AlternativeTo.net.xml b/src/chrome/content/rules/AlternativeTo.net.xml new file mode 100644 index 000000000000..ef82f10c5b00 --- /dev/null +++ b/src/chrome/content/rules/AlternativeTo.net.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Alternatives-Economiques.fr.xml b/src/chrome/content/rules/Alternatives-Economiques.fr.xml new file mode 100644 index 000000000000..48453b6275e5 --- /dev/null +++ b/src/chrome/content/rules/Alternatives-Economiques.fr.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Alternativeto.net.xml b/src/chrome/content/rules/Alternativeto.net.xml deleted file mode 100644 index d0efab351e1c..000000000000 --- a/src/chrome/content/rules/Alternativeto.net.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Alternativlos.org.xml b/src/chrome/content/rules/Alternativlos.org.xml index f32d70e1061c..1852055f3429 100644 --- a/src/chrome/content/rules/Alternativlos.org.xml +++ b/src/chrome/content/rules/Alternativlos.org.xml @@ -4,7 +4,7 @@ - + https://d2qpxedcu5ji30.cloudfront.net/: (28 - css on www from cdn.altex.ro * - Images, on: - + - www from admin.altex.ro - www from cdn.altex.ro * * Secured by us --> - + @@ -52,13 +52,9 @@ Fetch error: http://cdn.altex.ro/ => https://d2qpxedcu5ji30.cloudfront.net/: (28 - - + - - + diff --git a/src/chrome/content/rules/Altimate_Wellness.xml b/src/chrome/content/rules/Altimate_Wellness.xml deleted file mode 100644 index 58c6deceae99..000000000000 --- a/src/chrome/content/rules/Altimate_Wellness.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Altoona-Mirror.xml b/src/chrome/content/rules/Altoona-Mirror.xml index 69b5edbf04ad..0cca40e21767 100644 --- a/src/chrome/content/rules/Altoona-Mirror.xml +++ b/src/chrome/content/rules/Altoona-Mirror.xml @@ -44,7 +44,7 @@ - + + + + + + + + + + diff --git a/src/chrome/content/rules/AlumFX.com.xml b/src/chrome/content/rules/AlumFX.com.xml index c2471499a39a..b9f387ef5022 100644 --- a/src/chrome/content/rules/AlumFX.com.xml +++ b/src/chrome/content/rules/AlumFX.com.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Alumniconnections.com.xml b/src/chrome/content/rules/Alumniconnections.com.xml index a009642addaf..298ef27607e0 100644 --- a/src/chrome/content/rules/Alumniconnections.com.xml +++ b/src/chrome/content/rules/Alumniconnections.com.xml @@ -6,16 +6,16 @@ Fetch error: http://alumniconnections.com/ => https://alumniconnections.com/: (2 For other iModules coverage, see IModules.xml. --> - + - + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Alwaysdata.com-problematic.xml b/src/chrome/content/rules/Alwaysdata.com-problematic.xml deleted file mode 100644 index 2c8c1159054a..000000000000 --- a/src/chrome/content/rules/Alwaysdata.com-problematic.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Alwaysdata.com.xml b/src/chrome/content/rules/Alwaysdata.com.xml index 865482c244a6..c14b7163d666 100644 --- a/src/chrome/content/rules/Alwaysdata.com.xml +++ b/src/chrome/content/rules/Alwaysdata.com.xml @@ -1,67 +1,26 @@ - - + - - - - - - - + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Alzheimers_Association.xml b/src/chrome/content/rules/Alzheimers_Association.xml index d9715a97cf44..610b46b226f8 100644 --- a/src/chrome/content/rules/Alzheimers_Association.xml +++ b/src/chrome/content/rules/Alzheimers_Association.xml @@ -26,7 +26,9 @@ - + + + @@ -43,7 +45,6 @@ - + diff --git a/src/chrome/content/rules/Alzheimers_Society.xml b/src/chrome/content/rules/Alzheimers_Society.xml index c34e6275b427..9b1d6368d7a1 100644 --- a/src/chrome/content/rules/Alzheimers_Society.xml +++ b/src/chrome/content/rules/Alzheimers_Society.xml @@ -13,7 +13,8 @@ Fetch error: http://alzheimers.org.uk/ => https://www.alzheimers.org.uk/: (60, ' - + + @@ -25,4 +26,4 @@ Fetch error: http://alzheimers.org.uk/ => https://www.alzheimers.org.uk/: (60, ' - \ No newline at end of file + diff --git a/src/chrome/content/rules/AmEx_Travel.com.xml b/src/chrome/content/rules/AmEx_Travel.com.xml deleted file mode 100644 index 47c016f34371..000000000000 --- a/src/chrome/content/rules/AmEx_Travel.com.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/AmExserve-static.com.xml b/src/chrome/content/rules/AmExserve-static.com.xml deleted file mode 100644 index bf155552c691..000000000000 --- a/src/chrome/content/rules/AmExserve-static.com.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Amahi.org.xml b/src/chrome/content/rules/Amahi.org.xml index 1411c3560eeb..3c62463a1d02 100644 --- a/src/chrome/content/rules/Amahi.org.xml +++ b/src/chrome/content/rules/Amahi.org.xml @@ -1,78 +1,56 @@ - - + - - - - + + + + + + + + - - - - - - - + + + + + + + + + diff --git a/src/chrome/content/rules/AmamiyaSora.jp.xml b/src/chrome/content/rules/AmamiyaSora.jp.xml new file mode 100644 index 000000000000..53cf18a4c833 --- /dev/null +++ b/src/chrome/content/rules/AmamiyaSora.jp.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Amazingweb.xml b/src/chrome/content/rules/Amazingweb.xml index cbc6ca75d183..21d95feeb956 100644 --- a/src/chrome/content/rules/Amazingweb.xml +++ b/src/chrome/content/rules/Amazingweb.xml @@ -6,4 +6,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Amazon-Adsystem.com.xml b/src/chrome/content/rules/Amazon-Adsystem.com.xml index c54a87f87714..af4b57af2f8f 100644 --- a/src/chrome/content/rules/Amazon-Adsystem.com.xml +++ b/src/chrome/content/rules/Amazon-Adsystem.com.xml @@ -1,8 +1,4 @@ - - + + + + + + + + + + - + + - + https://kindlescout.amazon.com/: (28, 'Resolving timed out after 20530 milliseconds') +Fetch error: http://storywriter.amazon.com/ => https://storywriter.amazon.com/: (7, 'Failed to connect to storywriter.amazon.com port 443: Connection refused') +Fetch error: http://vendorexpress.amazon.com/ => https://vendorexpress.amazon.com/: (28, 'Resolving timed out after 20528 milliseconds') +Fetch error: http://widgets.amazon.com/ => https://widgets.amazon.com/: (35, 'error:14171102:SSL routines:tls_process_server_hello:unsupported protocol') + + Other Amazon rulesets: - AWS_Trust.com.xml - AbeBooks.co.uk.xml - AbeBooks.xml - Amazon-Adsystem.com.xml - Amazon.jobs.xml - - AmazonWebServices.xml + - AmazonAWS.com.xml + - AmazonWebServices.com.xml - AmazonSupply.com.xml - Amazon_Trust.com.xml - Amazon_blogs.com.xml @@ -21,11 +28,10 @@ - BeautyBar.com.xml - ComiXology.com.xml - CreateSpace.xml - - Images-CreateSpace.com.xml - - Junglee.com.xml + - Images-Amazon.com.xml - MTurk.com.xml - Soap.com.xml - - TenMarks.com.xml + - SSL-Images-Amazon.com.xml - amazon.ca.xml - amazon.cn.xml - amazon.co.jp.xml @@ -42,82 +48,65 @@ - casa.com.xml - diapers.com.xml - eastdane.com.xml - - q-assets.com.xml - quidsi.com.xml - shopbop.com.xml - wag.com.xml - yoyo.com.xml + Non-functional hosts + Timeout was reached: + - pda-bes.amazon.com Amazon appears to operate in 7 countries, and does not hold the domains for some others, like .se or .be. In other cases there is an http-only site that redirects to one of these 7 countries. - - - Insecure cookies are set for these domains and hosts: ᶜ - - - .amazon.com - - www.amazon.com - - ᶜ See https://owasp.org/index.php/SecureFlag - --> - + + + + + - + + + + + - + - - + - + + + - + - - - - - - - - - - - - - - - - + + + - - - - - - - + + + - diff --git a/src/chrome/content/rules/AmazonAWS.com.xml b/src/chrome/content/rules/AmazonAWS.com.xml new file mode 100644 index 000000000000..00b8a2e63ffd --- /dev/null +++ b/src/chrome/content/rules/AmazonAWS.com.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/AmazonSupply.com.xml b/src/chrome/content/rules/AmazonSupply.com.xml index 46634a1dc971..c503edb0da4c 100644 --- a/src/chrome/content/rules/AmazonSupply.com.xml +++ b/src/chrome/content/rules/AmazonSupply.com.xml @@ -33,7 +33,7 @@ - + - - - - - - diff --git a/src/chrome/content/rules/AmazonWebServices.com.xml b/src/chrome/content/rules/AmazonWebServices.com.xml new file mode 100644 index 000000000000..7885f44a79c8 --- /dev/null +++ b/src/chrome/content/rules/AmazonWebServices.com.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/AmazonWebServices.xml b/src/chrome/content/rules/AmazonWebServices.xml deleted file mode 100644 index 531bcc741fdd..000000000000 --- a/src/chrome/content/rules/AmazonWebServices.xml +++ /dev/null @@ -1,351 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Amazon_blogs.com.xml b/src/chrome/content/rules/Amazon_blogs.com.xml index 8b31d82e8764..80eb8c263540 100644 --- a/src/chrome/content/rules/Amazon_blogs.com.xml +++ b/src/chrome/content/rules/Amazon_blogs.com.xml @@ -7,7 +7,7 @@ Fetch error: http://cdn.amazonblogs.com/ => https://cdn.amazonblogs.com/: (6, 'C For other Amazon coverage, see Amazon.xml. --> - + diff --git a/src/chrome/content/rules/Amber_Swann_Publishing.xml b/src/chrome/content/rules/Amber_Swann_Publishing.xml index cc5e6cae47fb..23d2f294dd77 100644 --- a/src/chrome/content/rules/Amber_Swann_Publishing.xml +++ b/src/chrome/content/rules/Amber_Swann_Publishing.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Amblin.io.xml b/src/chrome/content/rules/Amblin.io.xml deleted file mode 100644 index 56828152ba01..000000000000 --- a/src/chrome/content/rules/Amblin.io.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Ambotis.ru.xml b/src/chrome/content/rules/Ambotis.ru.xml new file mode 100644 index 000000000000..c6d60d748a0b --- /dev/null +++ b/src/chrome/content/rules/Ambotis.ru.xml @@ -0,0 +1,24 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Amd.co.at.xml b/src/chrome/content/rules/Amd.co.at.xml index 49d752ea6ed7..aece83e43a0d 100644 --- a/src/chrome/content/rules/Amd.co.at.xml +++ b/src/chrome/content/rules/Amd.co.at.xml @@ -23,7 +23,9 @@ - + + + diff --git a/src/chrome/content/rules/Amd.com.xml b/src/chrome/content/rules/Amd.com.xml index 4f2a5a41eb41..ac9e36d10c28 100644 --- a/src/chrome/content/rules/Amd.com.xml +++ b/src/chrome/content/rules/Amd.com.xml @@ -1,4 +1,16 @@ + - - - - - - - + + + - - - - + + + + - diff --git a/src/chrome/content/rules/Ameba.xml b/src/chrome/content/rules/Ameba.xml index 8c8fb700efe5..8742344f7081 100644 --- a/src/chrome/content/rules/Ameba.xml +++ b/src/chrome/content/rules/Ameba.xml @@ -48,7 +48,7 @@ - + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/American-Association-of-Neurological-Surgeons.xml b/src/chrome/content/rules/American-Association-of-Neurological-Surgeons.xml index 7549e44444e6..1f2d2fafc8f8 100644 --- a/src/chrome/content/rules/American-Association-of-Neurological-Surgeons.xml +++ b/src/chrome/content/rules/American-Association-of-Neurological-Surgeons.xml @@ -13,13 +13,13 @@ Fetch error: http://aans.org/ => https://aans.org/: (60, 'SSL certificate proble - www.aansneurosurgeon.org --> - + - + - + @@ -180,7 +180,7 @@ Fetch error: http://www.profed.acs.org/ => https://www.profed.acs.org/: (51, "SS - + - + - + diff --git a/src/chrome/content/rules/American-University.xml b/src/chrome/content/rules/American-University.xml index a1cc10ac373a..06b1c2f6cf6f 100644 --- a/src/chrome/content/rules/American-University.xml +++ b/src/chrome/content/rules/American-University.xml @@ -1,41 +1,64 @@ - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/AmericanDreamCoalition.org.xml b/src/chrome/content/rules/AmericanDreamCoalition.org.xml new file mode 100644 index 000000000000..3f8c03b20820 --- /dev/null +++ b/src/chrome/content/rules/AmericanDreamCoalition.org.xml @@ -0,0 +1,10 @@ + + + + + + + + diff --git a/src/chrome/content/rules/AmericanExpress.xml b/src/chrome/content/rules/AmericanExpress.xml index 30e54755ceab..a364ee38fde3 100644 --- a/src/chrome/content/rules/AmericanExpress.xml +++ b/src/chrome/content/rules/AmericanExpress.xml @@ -1,11 +1,18 @@ + - + - - - - + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/AmericanScientist.org.xml b/src/chrome/content/rules/AmericanScientist.org.xml new file mode 100644 index 000000000000..eac8a2f5fe20 --- /dev/null +++ b/src/chrome/content/rules/AmericanScientist.org.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/American_Academy_of_Neurology.xml b/src/chrome/content/rules/American_Academy_of_Neurology.xml index ad82357b50e3..441e4d1f0c85 100644 --- a/src/chrome/content/rules/American_Academy_of_Neurology.xml +++ b/src/chrome/content/rules/American_Academy_of_Neurology.xml @@ -10,7 +10,8 @@ - + + diff --git a/src/chrome/content/rules/American_Airlines.xml b/src/chrome/content/rules/American_Airlines.xml new file mode 100644 index 000000000000..1f1cd6ec799c --- /dev/null +++ b/src/chrome/content/rules/American_Airlines.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/American_Center_for_Law_and_Justice.xml b/src/chrome/content/rules/American_Center_for_Law_and_Justice.xml index b46e9f582d67..ac6cced5dee7 100644 --- a/src/chrome/content/rules/American_Center_for_Law_and_Justice.xml +++ b/src/chrome/content/rules/American_Center_for_Law_and_Justice.xml @@ -30,7 +30,10 @@ - + + + + @@ -49,4 +52,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/American_College_of_Radiology.xml b/src/chrome/content/rules/American_College_of_Radiology.xml index 9b9d92fb7f1a..e89500dde543 100644 --- a/src/chrome/content/rules/American_College_of_Radiology.xml +++ b/src/chrome/content/rules/American_College_of_Radiology.xml @@ -18,7 +18,9 @@ - + + + diff --git a/src/chrome/content/rules/American_Freedom.com.xml b/src/chrome/content/rules/American_Freedom.com.xml index b5b4e296ec31..0741d469897a 100644 --- a/src/chrome/content/rules/American_Freedom.com.xml +++ b/src/chrome/content/rules/American_Freedom.com.xml @@ -10,7 +10,7 @@ Fetch error: http://www.americanfreedom.com/ => https://www.americanfreedom.com/ Center for American Freedom --> - + @@ -21,4 +21,4 @@ Fetch error: http://www.americanfreedom.com/ => https://www.americanfreedom.com/ - \ No newline at end of file + diff --git a/src/chrome/content/rules/American_Scientist.org.xml b/src/chrome/content/rules/American_Scientist.org.xml deleted file mode 100644 index f6ed23eba410..000000000000 --- a/src/chrome/content/rules/American_Scientist.org.xml +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/American_Society_of_Media_Photographers.xml b/src/chrome/content/rules/American_Society_of_Media_Photographers.xml index 870b5f455a90..1e663d5d3672 100644 --- a/src/chrome/content/rules/American_Society_of_Media_Photographers.xml +++ b/src/chrome/content/rules/American_Society_of_Media_Photographers.xml @@ -4,17 +4,17 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.admin.asmp.org/ => https://www.admin.asmp.org/: (51, "SSL: no alternative certificate subject name matches target host name 'www.admin.asmp.org'") --> - + - + + - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/AmericanaExchange.xml b/src/chrome/content/rules/AmericanaExchange.xml index c4376c015ca4..38d7ec1dfaf6 100644 --- a/src/chrome/content/rules/AmericanaExchange.xml +++ b/src/chrome/content/rules/AmericanaExchange.xml @@ -8,9 +8,9 @@ Disabled by https-everywhere-checker because: Fetch error: http://americanaexchange.com/ => https://www.americanaexchange.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.americanaexchange.com'") Fetch error: http://www.americanaexchange.com/ => https://www.americanaexchange.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.americanaexchange.com'") --> - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Americans_United.xml b/src/chrome/content/rules/Americans_United.xml index d5a8a31e645d..1f1fa8469cc1 100644 --- a/src/chrome/content/rules/Americans_United.xml +++ b/src/chrome/content/rules/Americans_United.xml @@ -12,4 +12,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Amgdgt.com.xml b/src/chrome/content/rules/Amgdgt.com.xml index 42a59515a310..040aa1e024b9 100644 --- a/src/chrome/content/rules/Amgdgt.com.xml +++ b/src/chrome/content/rules/Amgdgt.com.xml @@ -28,7 +28,7 @@ --> - + - + - + - diff --git a/src/chrome/content/rules/Amica.com.xml b/src/chrome/content/rules/Amica.com.xml index dd0efef63df0..b6b1e448212f 100644 --- a/src/chrome/content/rules/Amica.com.xml +++ b/src/chrome/content/rules/Amica.com.xml @@ -1,19 +1,16 @@ - - - - - - diff --git a/src/chrome/content/rules/Amigaroms.com.xml b/src/chrome/content/rules/Amigaroms.com.xml new file mode 100644 index 000000000000..ceed92b0a1d5 --- /dev/null +++ b/src/chrome/content/rules/Amigaroms.com.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Amnesty-International.xml b/src/chrome/content/rules/Amnesty-International.xml index 9041d3f208b3..9d3c2c872599 100644 --- a/src/chrome/content/rules/Amnesty-International.xml +++ b/src/chrome/content/rules/Amnesty-International.xml @@ -12,7 +12,6 @@ Fetch error: http://livewire.amnesty.org/ => https://livewire.amnesty.org/: (6, - Amnesty.fi.xml - Amnesty.fr.xml - Amnesty.gr.xml - - Amnesty.ie.xml - Amnesty.it.xml - Amnesty.or.jp.xml - Amnesty.org.nz.xml @@ -48,7 +47,7 @@ Fetch error: http://livewire.amnesty.org/ => https://livewire.amnesty.org/: (6, - .www.amnesty.org --> - + @@ -64,7 +63,7 @@ Fetch error: http://livewire.amnesty.org/ => https://livewire.amnesty.org/: (6, --> - + - + - + - + - + - + - + diff --git a/src/chrome/content/rules/Amnesty.gr.xml b/src/chrome/content/rules/Amnesty.gr.xml index 6e0d87283064..30812cdb8bb2 100644 --- a/src/chrome/content/rules/Amnesty.gr.xml +++ b/src/chrome/content/rules/Amnesty.gr.xml @@ -16,7 +16,7 @@ - + - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Amnesty.it.xml b/src/chrome/content/rules/Amnesty.it.xml index db9c0f50820e..25fa667bac85 100644 --- a/src/chrome/content/rules/Amnesty.it.xml +++ b/src/chrome/content/rules/Amnesty.it.xml @@ -56,7 +56,7 @@ - + - + https://supporterservic ^amnesty.org.nz: Mismatched --> - + @@ -21,7 +21,7 @@ Fetch error: http://supporterservices.amnesty.org.nz/ => https://supporterservic - + - + - + - + - + - + - + - + - + - + - + https://www.amoena.us/: (60, 'SSL certificate Fetch error: http://www.amoena.us/ => https://www.amoena.us/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + diff --git a/src/chrome/content/rules/Anadolu.edu.tr.xml b/src/chrome/content/rules/Anadolu.edu.tr.xml index 6c15b274c6e9..83490d7c6764 100644 --- a/src/chrome/content/rules/Anadolu.edu.tr.xml +++ b/src/chrome/content/rules/Anadolu.edu.tr.xml @@ -103,7 +103,7 @@ Fetch error: http://ogrenci.anadolu.edu.tr/ => https://ogrenci.anadolu.edu.tr/: * www.yillik.eogrenme.anadolu.edu.tr * yemekhane.anadolu.edu.tr --> - + diff --git a/src/chrome/content/rules/Analyst_One.com.xml b/src/chrome/content/rules/Analyst_One.com.xml index 261d946e450d..57b326891877 100644 --- a/src/chrome/content/rules/Analyst_One.com.xml +++ b/src/chrome/content/rules/Analyst_One.com.xml @@ -20,7 +20,7 @@ - + diff --git a/src/chrome/content/rules/AnandTech.com.xml b/src/chrome/content/rules/AnandTech.com.xml new file mode 100644 index 000000000000..1fb6b84cbcac --- /dev/null +++ b/src/chrome/content/rules/AnandTech.com.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/AnarchistNews.xml b/src/chrome/content/rules/AnarchistNews.xml deleted file mode 100644 index 9b26185db760..000000000000 --- a/src/chrome/content/rules/AnarchistNews.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Anarplex.net.xml b/src/chrome/content/rules/Anarplex.net.xml index a99344423c0a..a73840117628 100644 --- a/src/chrome/content/rules/Anarplex.net.xml +++ b/src/chrome/content/rules/Anarplex.net.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.anarplex.net/ => https://www.anarplex.net/: (51, "SSL: no alternative certificate subject name matches target host name 'www.anarplex.net'") --> - + diff --git a/src/chrome/content/rules/Anaxago.com.xml b/src/chrome/content/rules/Anaxago.com.xml new file mode 100644 index 000000000000..66597066d3a4 --- /dev/null +++ b/src/chrome/content/rules/Anaxago.com.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Ancestry.xml b/src/chrome/content/rules/Ancestry.xml index 9ad6b8c44a19..3ece664ed963 100644 --- a/src/chrome/content/rules/Ancestry.xml +++ b/src/chrome/content/rules/Ancestry.xml @@ -32,7 +32,7 @@ Fetch error: http://help.ancestry.com/ => https://help.ancestry.com/: (60, 'SSL - c.mfccreative.com (causes CORS issues) --> - + diff --git a/src/chrome/content/rules/Ancud.de.xml b/src/chrome/content/rules/Ancud.de.xml index 1c90013ee0e9..4567fb1a9a27 100644 --- a/src/chrome/content/rules/Ancud.de.xml +++ b/src/chrome/content/rules/Ancud.de.xml @@ -1,11 +1,4 @@ - - + @@ -14,7 +7,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Andalucia_Property_Rentals.com.xml b/src/chrome/content/rules/Andalucia_Property_Rentals.com.xml deleted file mode 100644 index 015f0be95348..000000000000 --- a/src/chrome/content/rules/Andalucia_Property_Rentals.com.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Andesi.org.xml b/src/chrome/content/rules/Andesi.org.xml deleted file mode 100644 index 900b12f7e8dc..000000000000 --- a/src/chrome/content/rules/Andesi.org.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Andor.com.xml b/src/chrome/content/rules/Andor.com.xml index fc70573b4786..c3c48f542dec 100644 --- a/src/chrome/content/rules/Andor.com.xml +++ b/src/chrome/content/rules/Andor.com.xml @@ -10,7 +10,7 @@ Fetch error: http://andor.com/ => https://andor.com/: (51, "SSL: no alternative * Secured by us --> - + diff --git a/src/chrome/content/rules/Andrea_Fabrizi.it.xml b/src/chrome/content/rules/Andrea_Fabrizi.it.xml index 094577331b97..840a8c43f31b 100644 --- a/src/chrome/content/rules/Andrea_Fabrizi.it.xml +++ b/src/chrome/content/rules/Andrea_Fabrizi.it.xml @@ -19,7 +19,7 @@ - + ---> - - - diff --git a/src/chrome/content/rules/Android.xml b/src/chrome/content/rules/Android.xml index e529e464c404..50ab3683302e 100644 --- a/src/chrome/content/rules/Android.xml +++ b/src/chrome/content/rules/Android.xml @@ -1,33 +1,24 @@ - - - - - - + + + + + + + - - - - - + + + diff --git a/src/chrome/content/rules/AndroidPolice.xml b/src/chrome/content/rules/AndroidPolice.xml index a30309fc1a13..7b184ae8c79e 100644 --- a/src/chrome/content/rules/AndroidPolice.xml +++ b/src/chrome/content/rules/AndroidPolice.xml @@ -1,16 +1,6 @@ - - + - + - diff --git a/src/chrome/content/rules/Androidfilehost.com.xml b/src/chrome/content/rules/Androidfilehost.com.xml index c2f4da833975..3127462c9211 100644 --- a/src/chrome/content/rules/Androidfilehost.com.xml +++ b/src/chrome/content/rules/Androidfilehost.com.xml @@ -18,11 +18,11 @@ - + - + diff --git a/src/chrome/content/rules/Androidpit.xml b/src/chrome/content/rules/Androidpit.xml index 13f26d4d95c7..9933e7954b0e 100644 --- a/src/chrome/content/rules/Androidpit.xml +++ b/src/chrome/content/rules/Androidpit.xml @@ -10,7 +10,7 @@ Fetch error: http://www.fs02.androidpit.info/ => https://www.fs02.androidpit.inf - androidpit.de - jobs -> wrong domain --> - + diff --git a/src/chrome/content/rules/Andy_Tyson.com.xml b/src/chrome/content/rules/Andy_Tyson.com.xml index ed18c447fbb2..4b1eab07f804 100644 --- a/src/chrome/content/rules/Andy_Tyson.com.xml +++ b/src/chrome/content/rules/Andy_Tyson.com.xml @@ -5,7 +5,7 @@ Fetch error: http://andytyson.com/ => https://andytyson.com/: (28, 'Connection t Fetch error: http://www.andytyson.com/ => https://www.andytyson.com/: (28, 'Connection timed out after 20000 milliseconds') --> - + @@ -13,7 +13,7 @@ Fetch error: http://www.andytyson.com/ => https://www.andytyson.com/: (28, 'Conn - + - + + + + + + + + + + + diff --git a/src/chrome/content/rules/Anglomedia.net.xml b/src/chrome/content/rules/Anglomedia.net.xml index f0fdc816ebe3..35db8d97f31e 100644 --- a/src/chrome/content/rules/Anglomedia.net.xml +++ b/src/chrome/content/rules/Anglomedia.net.xml @@ -18,7 +18,8 @@ - + + @@ -30,4 +31,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Angreifer.org.xml b/src/chrome/content/rules/Angreifer.org.xml index b8a3ef066f30..9f7d5e73708b 100644 --- a/src/chrome/content/rules/Angreifer.org.xml +++ b/src/chrome/content/rules/Angreifer.org.xml @@ -1,5 +1,8 @@ - + + - + + + diff --git a/src/chrome/content/rules/Angular-Gantt.com.xml b/src/chrome/content/rules/Angular-Gantt.com.xml index 3c5b30ca0145..b281586fda6e 100644 --- a/src/chrome/content/rules/Angular-Gantt.com.xml +++ b/src/chrome/content/rules/Angular-Gantt.com.xml @@ -31,7 +31,7 @@ --> - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Angus.gov.uk.xml b/src/chrome/content/rules/Angus.gov.uk.xml index b21416999909..ce331aaced45 100644 --- a/src/chrome/content/rules/Angus.gov.uk.xml +++ b/src/chrome/content/rules/Angus.gov.uk.xml @@ -7,7 +7,7 @@ Nonfunctional hosts in *angus.gov.uk: - www.fosteringandadoption * - + * 200 blank page @@ -63,8 +63,8 @@ - - + + - - - - - - diff --git a/src/chrome/content/rules/Animeanime.jp.xml b/src/chrome/content/rules/Animeanime.jp.xml new file mode 100644 index 000000000000..838bea458d07 --- /dev/null +++ b/src/chrome/content/rules/Animeanime.jp.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Animenfo.com.xml b/src/chrome/content/rules/Animenfo.com.xml deleted file mode 100644 index 5ad8852c7fc0..000000000000 --- a/src/chrome/content/rules/Animenfo.com.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Aniview.com.xml b/src/chrome/content/rules/Aniview.com.xml new file mode 100644 index 000000000000..fbeefbb988f2 --- /dev/null +++ b/src/chrome/content/rules/Aniview.com.xml @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Ann_Summers.xml b/src/chrome/content/rules/Ann_Summers.xml index 0990ac93668e..fd0cf260c717 100644 --- a/src/chrome/content/rules/Ann_Summers.xml +++ b/src/chrome/content/rules/Ann_Summers.xml @@ -23,7 +23,7 @@ Fetch error: http://www.annsummers.com/webapp/wcs/stores/servlet/OrderItemDispla ᶜ See https://owasp.org/index.php/SecureFlag --> - + diff --git a/src/chrome/content/rules/AnnualCreditReport.com.xml b/src/chrome/content/rules/AnnualCreditReport.com.xml index f37319d888fe..89b216f27660 100644 --- a/src/chrome/content/rules/AnnualCreditReport.com.xml +++ b/src/chrome/content/rules/AnnualCreditReport.com.xml @@ -8,7 +8,7 @@ --> - + https://www.anon-ib.com/: (7, 'Failed to * Secured by us --> - + diff --git a/src/chrome/content/rules/Anon.click.xml b/src/chrome/content/rules/Anon.click.xml deleted file mode 100644 index 3e38c0661e9c..000000000000 --- a/src/chrome/content/rules/Anon.click.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/AnonFiles.com.xml b/src/chrome/content/rules/AnonFiles.com.xml index 00d6b6909143..2287284cfdbc 100644 --- a/src/chrome/content/rules/AnonFiles.com.xml +++ b/src/chrome/content/rules/AnonFiles.com.xml @@ -6,7 +6,7 @@ Fetch error: http://cdn.anonfiles.com/ => https://cdn.anonfiles.com/: (7, 'Faile Fetch error: http://www.anonfiles.com/ => https://www.anonfiles.com/: (7, 'Failed to connect to www.anonfiles.com port 443: Connection refused') --> - + diff --git a/src/chrome/content/rules/AnonOps.com.xml b/src/chrome/content/rules/AnonOps.com.xml index 46fc939f2d33..ece0cdcf7265 100644 --- a/src/chrome/content/rules/AnonOps.com.xml +++ b/src/chrome/content/rules/AnonOps.com.xml @@ -32,7 +32,7 @@ --> - + https://anonabox.com/: (51, "SSL: no altern * Secured by us --> - + diff --git a/src/chrome/content/rules/AnonySurfer.com.xml b/src/chrome/content/rules/AnonySurfer.com.xml index 34dbfe80b88a..d7fd8c4220e9 100644 --- a/src/chrome/content/rules/AnonySurfer.com.xml +++ b/src/chrome/content/rules/AnonySurfer.com.xml @@ -5,7 +5,7 @@ Fetch error: http://anonysurfer.com/ => https://anonysurfer.com/: (28, 'Connecti Fetch error: http://www.anonysurfer.com/ => https://www.anonysurfer.com/: (28, 'Connection timed out after 20008 milliseconds') --> - + diff --git a/src/chrome/content/rules/Anonymix.io.xml b/src/chrome/content/rules/Anonymix.io.xml new file mode 100644 index 000000000000..13b9463306d9 --- /dev/null +++ b/src/chrome/content/rules/Anonymix.io.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Anonymizer.xml b/src/chrome/content/rules/Anonymizer.xml index 27e0a9392d26..b10c09fd3fff 100644 --- a/src/chrome/content/rules/Anonymizer.xml +++ b/src/chrome/content/rules/Anonymizer.xml @@ -1,10 +1,10 @@ - + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/AnonymoX.xml b/src/chrome/content/rules/AnonymoX.xml index 28daf1358892..256ee683ee74 100644 --- a/src/chrome/content/rules/AnonymoX.xml +++ b/src/chrome/content/rules/AnonymoX.xml @@ -4,9 +4,9 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/AnonymousForTheVoiceless.org.xml b/src/chrome/content/rules/AnonymousForTheVoiceless.org.xml new file mode 100644 index 000000000000..46fa642cdb2d --- /dev/null +++ b/src/chrome/content/rules/AnonymousForTheVoiceless.org.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Anonymouse.xml b/src/chrome/content/rules/Anonymouse.xml deleted file mode 100644 index a1fff6fa5200..000000000000 --- a/src/chrome/content/rules/Anonymouse.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Ansible.com.xml b/src/chrome/content/rules/Ansible.com.xml index 4403598487e4..3b0e11bd5e9a 100644 --- a/src/chrome/content/rules/Ansible.com.xml +++ b/src/chrome/content/rules/Ansible.com.xml @@ -42,7 +42,7 @@ - + https://www.ansibleworks.com/: (28, - www.galaxy.ansibleworks.com --> - + - + - + diff --git a/src/chrome/content/rules/AntennaPod.org.xml b/src/chrome/content/rules/AntennaPod.org.xml new file mode 100644 index 000000000000..b2946d2b85d6 --- /dev/null +++ b/src/chrome/content/rules/AntennaPod.org.xml @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Antergos.com.xml b/src/chrome/content/rules/Antergos.com.xml deleted file mode 100644 index fc84e72d1633..000000000000 --- a/src/chrome/content/rules/Antergos.com.xml +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Antevenio.xml b/src/chrome/content/rules/Antevenio.xml index 0ad4a9a74872..17967c42fdeb 100644 --- a/src/chrome/content/rules/Antevenio.xml +++ b/src/chrome/content/rules/Antevenio.xml @@ -10,7 +10,7 @@ Fetch error: http://reachandrich.antevenio.com/ => https://reachandrich.anteveni - (www.) (times out) --> - + @@ -18,7 +18,6 @@ Fetch error: http://reachandrich.antevenio.com/ => https://reachandrich.anteveni - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Anti-Phishing_Working_Group.xml b/src/chrome/content/rules/Anti-Phishing_Working_Group.xml index c77f9a76d81c..b4f966153fcc 100644 --- a/src/chrome/content/rules/Anti-Phishing_Working_Group.xml +++ b/src/chrome/content/rules/Anti-Phishing_Working_Group.xml @@ -38,7 +38,11 @@ - + + + + + @@ -47,7 +51,6 @@ - + diff --git a/src/chrome/content/rules/AntiPornGroup.com.xml b/src/chrome/content/rules/AntiPornGroup.com.xml new file mode 100644 index 000000000000..3183cf5ed2de --- /dev/null +++ b/src/chrome/content/rules/AntiPornGroup.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/AntiqueAppliances.com.xml b/src/chrome/content/rules/AntiqueAppliances.com.xml new file mode 100644 index 000000000000..b68e9887f85a --- /dev/null +++ b/src/chrome/content/rules/AntiqueAppliances.com.xml @@ -0,0 +1,12 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/AntiqueMotorcycle.org.xml b/src/chrome/content/rules/AntiqueMotorcycle.org.xml new file mode 100644 index 000000000000..d2cf1717e2ca --- /dev/null +++ b/src/chrome/content/rules/AntiqueMotorcycle.org.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/Antispam.de.xml b/src/chrome/content/rules/Antispam.de.xml index 1c7940a0378a..083f9c593301 100644 --- a/src/chrome/content/rules/Antispam.de.xml +++ b/src/chrome/content/rules/Antispam.de.xml @@ -1,8 +1,8 @@ - - + + diff --git a/src/chrome/content/rules/Antivigilancia.org.xml b/src/chrome/content/rules/Antivigilancia.org.xml index 5069e3febcec..72510a322b0d 100644 --- a/src/chrome/content/rules/Antivigilancia.org.xml +++ b/src/chrome/content/rules/Antivigilancia.org.xml @@ -13,7 +13,7 @@ - + - + https://support.anubisnetwork ² Akamai/mismatched --> - + diff --git a/src/chrome/content/rules/Anunciou.com.xml b/src/chrome/content/rules/Anunciou.com.xml index c889d2e34de6..939d0a0719c5 100644 --- a/src/chrome/content/rules/Anunciou.com.xml +++ b/src/chrome/content/rules/Anunciou.com.xml @@ -5,7 +5,7 @@ - + + + + + + + + diff --git a/src/chrome/content/rules/Anybalance.com.xml b/src/chrome/content/rules/Anybalance.com.xml index 9c2687facea6..13d531c1de66 100644 --- a/src/chrome/content/rules/Anybalance.com.xml +++ b/src/chrome/content/rules/Anybalance.com.xml @@ -5,7 +5,7 @@ Fetch error: http://anybalance.com/ => https://anybalance.com/: (6, 'Could not r Fetch error: http://www.anybalance.com/ => https://www.anybalance.com/: (6, 'Could not resolve host: www.anybalance.com') --> - + diff --git a/src/chrome/content/rules/Anybots.com.xml b/src/chrome/content/rules/Anybots.com.xml deleted file mode 100644 index 7507d481ee41..000000000000 --- a/src/chrome/content/rules/Anybots.com.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Anyfi.net.xml b/src/chrome/content/rules/Anyfi.net.xml index 511ba02c1ea8..a754615da935 100644 --- a/src/chrome/content/rules/Anyfi.net.xml +++ b/src/chrome/content/rules/Anyfi.net.xml @@ -8,13 +8,13 @@ Disabled by https-everywhere-checker because: Fetch error: http://anyfi.net/ => https://anyfi.net/: Cycle detected - URL already encountered: https://anyfi.net/ Fetch error: http://www.anyfi.net/ => https://anyfi.net/: Cycle detected - URL already encountered: https://anyfi.net/ --> - + - + diff --git a/src/chrome/content/rules/Anyoption.com.xml b/src/chrome/content/rules/Anyoption.com.xml deleted file mode 100644 index 3bd5805864e0..000000000000 --- a/src/chrome/content/rules/Anyoption.com.xml +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Anyproz.xml b/src/chrome/content/rules/Anyproz.xml index 4b15cde034a4..9943abbfd250 100644 --- a/src/chrome/content/rules/Anyproz.xml +++ b/src/chrome/content/rules/Anyproz.xml @@ -5,13 +5,13 @@ Fetch error: http://anonyproz.com/ => https://anonyproz.com/: (7, 'Failed to con Fetch error: http://www.anonyproz.com/ => https://www.anonyproz.com/: (7, 'Failed to connect to www.anonyproz.com port 443: Connection refused') --> - + - + diff --git a/src/chrome/content/rules/AoSABook.org.xml b/src/chrome/content/rules/AoSABook.org.xml new file mode 100644 index 000000000000..015e522f3591 --- /dev/null +++ b/src/chrome/content/rules/AoSABook.org.xml @@ -0,0 +1,10 @@ + + + + + + + diff --git a/src/chrome/content/rules/Apa.at.xml b/src/chrome/content/rules/Apa.at.xml new file mode 100644 index 000000000000..3a02e3c82565 --- /dev/null +++ b/src/chrome/content/rules/Apa.at.xml @@ -0,0 +1,203 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Apache.org-falsemixed.xml b/src/chrome/content/rules/Apache.org-falsemixed.xml index c3326d7ab343..fe1f8028b36d 100644 --- a/src/chrome/content/rules/Apache.org-falsemixed.xml +++ b/src/chrome/content/rules/Apache.org-falsemixed.xml @@ -6,17 +6,11 @@ - - - - - - + diff --git a/src/chrome/content/rules/Apache.xml b/src/chrome/content/rules/Apache.xml index ef7e47bc574f..0b2dcbface6c 100644 --- a/src/chrome/content/rules/Apache.xml +++ b/src/chrome/content/rules/Apache.xml @@ -6,7 +6,6 @@ - ApacheCon.com.xml - Apache-OpenOffice.xml - - Apache-SSL.org.xml Nonfunctional subdomains: @@ -24,8 +23,6 @@ - activemq ˣ - aries ˣ - geronimo ˣ - - helix ˣ - - lucy ˣ - mail-archives (incomplete cert chain) - santuario ˣ - tuscany ˣ @@ -40,8 +37,6 @@ - activemq ˣ - aries ˣ - geronimo ˣ - - helix ˣ - - lucy ˣ - santuario ˣ - tuscany ˣ @@ -60,12 +55,12 @@ - airavata - allura - ambari - - analysis - ant - any23 - apr - archiva - archive + - attic - avro - axis - bigtop @@ -114,6 +109,7 @@ - hama - hbase - hc + - helix - hive - httpd - incubator @@ -121,6 +117,7 @@ - tez.incubator - isis - issues + - jackrabbit - jakarta - james - jclouds @@ -137,6 +134,7 @@ - logging - lucene - lucenenet + - lucy - mahout - manifoldcf - marmotta @@ -230,8 +228,6 @@ - aries from $self ¹ - creadur, drill, kafka, marmotta, synapse, trafficserver, www from fonts.googleapis.com ¹ - geronimo from $self ¹ - - helix from netdna.bootstrapcdn.com ¹ - - lucy from $self ¹ - santuario from cxf ¹ - sis and xmlgraphics from www ¹ - tuscany from $self ¹ @@ -251,7 +247,6 @@ - geronimo from $self ¹ - karaf from $self ¹ - knox from $self ¹ - - lucy from $self ¹ - mahout from $self ¹ - openoffice from www.openoffice.org ¹ - santuario from activemq ¹ @@ -303,21 +298,18 @@ - - + - - @@ -326,10 +318,9 @@ - - + @@ -338,7 +329,6 @@ - @@ -507,7 +497,7 @@ - + diff --git a/src/chrome/content/rules/ApacheCon.com.xml b/src/chrome/content/rules/ApacheCon.com.xml index b039f4e2e7ea..647c32349401 100644 --- a/src/chrome/content/rules/ApacheCon.com.xml +++ b/src/chrome/content/rules/ApacheCon.com.xml @@ -1,16 +1,23 @@ - + - - + diff --git a/src/chrome/content/rules/Apester.com.xml b/src/chrome/content/rules/Apester.com.xml new file mode 100644 index 000000000000..d49f83310fc0 --- /dev/null +++ b/src/chrome/content/rules/Apester.com.xml @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Aphyr.com.xml b/src/chrome/content/rules/Aphyr.com.xml index 695edf707dcf..5fa4094536be 100644 --- a/src/chrome/content/rules/Aphyr.com.xml +++ b/src/chrome/content/rules/Aphyr.com.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.aphyr.com/ => https://www.aphyr.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.aphyr.com'") --> - + diff --git a/src/chrome/content/rules/Apica.xml b/src/chrome/content/rules/Apica.xml index d8fc31aad8b4..159d61d07308 100644 --- a/src/chrome/content/rules/Apica.xml +++ b/src/chrome/content/rules/Apica.xml @@ -5,7 +5,8 @@ - + + @@ -14,7 +15,6 @@ - + diff --git a/src/chrome/content/rules/Apigee.xml b/src/chrome/content/rules/Apigee.xml index 36c66d020984..2f758949c84c 100644 --- a/src/chrome/content/rules/Apigee.xml +++ b/src/chrome/content/rules/Apigee.xml @@ -19,4 +19,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Apkmirror.com.xml b/src/chrome/content/rules/Apkmirror.com.xml index 2b8391090307..28f86fa12a1f 100644 --- a/src/chrome/content/rules/Apkmirror.com.xml +++ b/src/chrome/content/rules/Apkmirror.com.xml @@ -5,7 +5,7 @@ Fetch error: http://apkmirror.com/ => https://apkmirror.com/: Too many redirects --> - + diff --git a/src/chrome/content/rules/Apna_India.xml b/src/chrome/content/rules/Apna_India.xml index c0427165dead..d3d57c8356b8 100644 --- a/src/chrome/content/rules/Apna_India.xml +++ b/src/chrome/content/rules/Apna_India.xml @@ -5,7 +5,7 @@ Fetch error: http://media.apnaindia.com/ => https://media.apnaindia.com/: (6, 'C Fetch error: http://yellowpages.apnaindia.com/ => https://yellowpages.apnaindia.com/: (28, 'Operation timed out after 30001 milliseconds with 0 bytes received') --> - + @@ -18,4 +18,4 @@ Fetch error: http://yellowpages.apnaindia.com/ => https://yellowpages.apnaindia. - \ No newline at end of file + diff --git a/src/chrome/content/rules/Apoteket.se.xml b/src/chrome/content/rules/Apoteket.se.xml index 012cf1418de0..6ab789419d63 100644 --- a/src/chrome/content/rules/Apoteket.se.xml +++ b/src/chrome/content/rules/Apoteket.se.xml @@ -1,8 +1,13 @@ - - - - + + + + + + + + + diff --git a/src/chrome/content/rules/AppDynamics.xml b/src/chrome/content/rules/AppDynamics.xml index 3a970037ba2b..dc40414529cf 100644 --- a/src/chrome/content/rules/AppDynamics.xml +++ b/src/chrome/content/rules/AppDynamics.xml @@ -6,4 +6,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/AppGratis.xml b/src/chrome/content/rules/AppGratis.xml index 3ec98bf1546a..839954ceafcb 100644 --- a/src/chrome/content/rules/AppGratis.xml +++ b/src/chrome/content/rules/AppGratis.xml @@ -5,7 +5,7 @@ Fetch error: http://appgratis.com/ => https://appgratis.com/: (7, 'Failed to con Fetch error: http://www.appgratis.com/ => https://www.appgratis.com/: (7, 'Failed to connect to www.appgratis.com port 443: Connection refused') --> - + @@ -13,4 +13,4 @@ Fetch error: http://www.appgratis.com/ => https://www.appgratis.com/: (7, 'Faile - \ No newline at end of file + diff --git a/src/chrome/content/rules/AppNexus.xml b/src/chrome/content/rules/AppNexus.xml index ee243d9435c3..fe25f07a7795 100644 --- a/src/chrome/content/rules/AppNexus.xml +++ b/src/chrome/content/rules/AppNexus.xml @@ -35,7 +35,7 @@ Fetch error: http://ux-eco.corp.appnexus.com/ => https://ux-eco.corp.appnexus.co - Bug on www from instansive.com --> - + @@ -54,7 +54,7 @@ Fetch error: http://ux-eco.corp.appnexus.com/ => https://ux-eco.corp.appnexus.co - + - + + + + + + + + - + diff --git a/src/chrome/content/rules/AppVault.xml b/src/chrome/content/rules/AppVault.xml index 3d17037f86cd..fbe5f7795f67 100644 --- a/src/chrome/content/rules/AppVault.xml +++ b/src/chrome/content/rules/AppVault.xml @@ -14,7 +14,7 @@ - + @@ -23,7 +23,6 @@ - + diff --git a/src/chrome/content/rules/Appcelerator.xml b/src/chrome/content/rules/Appcelerator.xml index f730ef2db072..0dfee058a341 100644 --- a/src/chrome/content/rules/Appcelerator.xml +++ b/src/chrome/content/rules/Appcelerator.xml @@ -59,7 +59,7 @@ Fetch error: http://thinkmobile.appcelerator.com/ => https://thinkmobile.appcele * Secured by us --> - + diff --git a/src/chrome/content/rules/Appear.in.xml b/src/chrome/content/rules/Appear.in.xml index 0885b1829580..a50e5c3af40d 100644 --- a/src/chrome/content/rules/Appear.in.xml +++ b/src/chrome/content/rules/Appear.in.xml @@ -28,7 +28,7 @@ --> - + https://www.appiehein.com/: (60, 'SSL * Secured by us --> - + diff --git a/src/chrome/content/rules/Appinn.xml b/src/chrome/content/rules/Appinn.xml deleted file mode 100644 index f75ec423d100..000000000000 --- a/src/chrome/content/rules/Appinn.xml +++ /dev/null @@ -1,58 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Appkb.ch.xml b/src/chrome/content/rules/Appkb.ch.xml new file mode 100644 index 000000000000..5000f150158d --- /dev/null +++ b/src/chrome/content/rules/Appkb.ch.xml @@ -0,0 +1,25 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Apple.com.xml b/src/chrome/content/rules/Apple.com.xml index b95b13a97065..a4ed3ecb4602 100644 --- a/src/chrome/content/rules/Apple.com.xml +++ b/src/chrome/content/rules/Apple.com.xml @@ -5,7 +5,6 @@ - Apple_CDN_buckets.xml - Appsto.re.xml - CDN-Apple.com.xml - - iCloud.com.xml - iTunes.com.xml - iWork.com.xml - ME.com.xml @@ -32,12 +31,18 @@ - a\d+.phobos.apple.com.edgesuite.net Nonfunctional hosts in *apple.com: + - daw (timeout) + - onetoone (timeout) - deimos3 (403/404, akamai) - init.ess (503, akamai) + - genius-upload.itunes.apple.com (403/404) - userprofile.itunes * - rss.lists (shows lists; mismatched, CN: lists.apple.com) - rss.itunes (redirects to HTTP for Travis) - mynews * + - reseller (timeout) + - ssl (timeout) + - supportprofile (timeout) - uptodate (timeout) * Refused @@ -54,14 +59,17 @@ - signin.info * - www.info * - www0.info * + - c.itunes ³ - dzc.itunes (data differ) - ping.itunes * - - prod.lists ³ - - www.lists (mismatched, CN: lists.apple.com) + - lists (cert-chain) + - prod.lists (cert-chain) + - www.lists (cert-chain) - mypage (incomplete cert chain) - a1.phobos * - a1721.phobos * - a1980.phobos * + - reportingitsc2 (cert-chain) - service.ess (self-signed cert in chain) - service[12].ess (self-signed cert in chain) - static-mynews * @@ -69,7 +77,7 @@ - support (Blocks Tor users) - wsidecar ( The certificate expired on 2017/03/10 23:59 ) * Akamai - ³ Mismatched, CN: lists.apple.com + ³ Mismatched At least some pages redirect to http: - www @@ -108,17 +116,12 @@ - - - - - @@ -142,7 +145,6 @@ - @@ -151,7 +153,6 @@ - @@ -195,25 +196,17 @@ - - - - - - - - @@ -221,7 +214,6 @@ - @@ -231,28 +223,17 @@ - - - - - - - - - + diff --git a/src/chrome/content/rules/Apple_Parts_Store.xml b/src/chrome/content/rules/Apple_Parts_Store.xml index 2d1e91ce5fe0..94131f1d5cec 100644 --- a/src/chrome/content/rules/Apple_Parts_Store.xml +++ b/src/chrome/content/rules/Apple_Parts_Store.xml @@ -12,12 +12,12 @@ Fetch error: http://re-pear.com/ => https://www.re-pear.com/: (51, "SSL: no alte - re-pear.com (mismatched, CN: www.applepartsstore.com) --> - + - + - + diff --git a/src/chrome/content/rules/Applebees.xml b/src/chrome/content/rules/Applebees.xml index 2da893008521..fbcd687b6ee3 100644 --- a/src/chrome/content/rules/Applebees.xml +++ b/src/chrome/content/rules/Applebees.xml @@ -1,9 +1,7 @@ - + + - - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Appledaily.com.hk.xml b/src/chrome/content/rules/Appledaily.com.hk.xml new file mode 100644 index 000000000000..dec72cc6dccb --- /dev/null +++ b/src/chrome/content/rules/Appledaily.com.hk.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Appledaily.com.tw.xml b/src/chrome/content/rules/Appledaily.com.tw.xml new file mode 100644 index 000000000000..ceab129c6f0f --- /dev/null +++ b/src/chrome/content/rules/Appledaily.com.tw.xml @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Appledaily.com.xml b/src/chrome/content/rules/Appledaily.com.xml new file mode 100644 index 000000000000..d6d45219b59a --- /dev/null +++ b/src/chrome/content/rules/Appledaily.com.xml @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Applicom.xml b/src/chrome/content/rules/Applicom.xml index 361d413faf5e..a056c87eb31d 100644 --- a/src/chrome/content/rules/Applicom.xml +++ b/src/chrome/content/rules/Applicom.xml @@ -3,7 +3,7 @@ - + diff --git a/src/chrome/content/rules/AppliedPrivacy.net.xml b/src/chrome/content/rules/AppliedPrivacy.net.xml new file mode 100644 index 000000000000..9a1cb71a8c86 --- /dev/null +++ b/src/chrome/content/rules/AppliedPrivacy.net.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Apply2Jobs.com.xml b/src/chrome/content/rules/Apply2Jobs.com.xml index 66887e1a9893..baa4b660120b 100644 --- a/src/chrome/content/rules/Apply2Jobs.com.xml +++ b/src/chrome/content/rules/Apply2Jobs.com.xml @@ -14,13 +14,13 @@ - + + - + diff --git a/src/chrome/content/rules/ApplyYourself.xml b/src/chrome/content/rules/ApplyYourself.xml index 84d3e1ee108f..d63f8421e242 100644 --- a/src/chrome/content/rules/ApplyYourself.xml +++ b/src/chrome/content/rules/ApplyYourself.xml @@ -8,4 +8,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Appolicious.com.xml b/src/chrome/content/rules/Appolicious.com.xml index bcf686b1eb1a..f4e75cb40df1 100644 --- a/src/chrome/content/rules/Appolicious.com.xml +++ b/src/chrome/content/rules/Appolicious.com.xml @@ -1,6 +1,6 @@ - + - + + + diff --git a/src/chrome/content/rules/Appseccalifornia.org.xml b/src/chrome/content/rules/Appseccalifornia.org.xml index b63ddce3b0c7..3505e2d48b54 100644 --- a/src/chrome/content/rules/Appseccalifornia.org.xml +++ b/src/chrome/content/rules/Appseccalifornia.org.xml @@ -6,7 +6,7 @@ Fetch error: http://2016.appseccalifornia.org/ => https://2016.appseccalifornia. www.appseccalifornia.org: Mismatched --> - + diff --git a/src/chrome/content/rules/Appsecute.xml b/src/chrome/content/rules/Appsecute.xml index c6f90b276b67..78ed3ce9cbfb 100644 --- a/src/chrome/content/rules/Appsecute.xml +++ b/src/chrome/content/rules/Appsecute.xml @@ -7,7 +7,7 @@ Fetch error: http://www.appsecute.com/ => https://www.appsecute.com/: (51, "SSL: Disabled by https-everywhere-checker because: Fetch error: http://appsecute.com/ => https://appsecute.com/: (6, 'Could not resolve host: appsecute.com') --> - + @@ -18,4 +18,4 @@ Fetch error: http://appsecute.com/ => https://appsecute.com/: (6, 'Could not res - \ No newline at end of file + diff --git a/src/chrome/content/rules/Appsites.com.xml b/src/chrome/content/rules/Appsites.com.xml deleted file mode 100644 index c6d269d417c2..000000000000 --- a/src/chrome/content/rules/Appsites.com.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Apress.com.xml b/src/chrome/content/rules/Apress.com.xml index c6ee4068d4c7..82131de5555f 100644 --- a/src/chrome/content/rules/Apress.com.xml +++ b/src/chrome/content/rules/Apress.com.xml @@ -13,7 +13,7 @@ Fetch error: http://apress.com/ => https://apress.com/: (51, "SSL: no alternativ - Images from springeruploads.com --> - + diff --git a/src/chrome/content/rules/Apture.com.xml b/src/chrome/content/rules/Apture.com.xml new file mode 100644 index 000000000000..76a78d82c513 --- /dev/null +++ b/src/chrome/content/rules/Apture.com.xml @@ -0,0 +1,12 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Aqicn.org.xml b/src/chrome/content/rules/Aqicn.org.xml new file mode 100644 index 000000000000..7b7c96f1f400 --- /dev/null +++ b/src/chrome/content/rules/Aqicn.org.xml @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/AquaBounty.com.xml b/src/chrome/content/rules/AquaBounty.com.xml index e43370658ada..10e49d4f92f7 100644 --- a/src/chrome/content/rules/AquaBounty.com.xml +++ b/src/chrome/content/rules/AquaBounty.com.xml @@ -17,7 +17,7 @@ --> - + https://img1.aquagear.com/ (403) --> - + diff --git a/src/chrome/content/rules/Aquafina.com.xml b/src/chrome/content/rules/Aquafina.com.xml new file mode 100644 index 000000000000..3cf55acabe99 --- /dev/null +++ b/src/chrome/content/rules/Aquafina.com.xml @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Aquapel.ca.xml b/src/chrome/content/rules/Aquapel.ca.xml new file mode 100644 index 000000000000..98d2fc44e013 --- /dev/null +++ b/src/chrome/content/rules/Aquapel.ca.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Aquent.xml b/src/chrome/content/rules/Aquent.xml index 3a726e385416..8fe1201e0480 100644 --- a/src/chrome/content/rules/Aquent.xml +++ b/src/chrome/content/rules/Aquent.xml @@ -2,11 +2,11 @@ - + - + diff --git a/src/chrome/content/rules/AquilaClothing.co.uk.xml b/src/chrome/content/rules/AquilaClothing.co.uk.xml index 7a4b2c86158f..2d2950aeff1a 100644 --- a/src/chrome/content/rules/AquilaClothing.co.uk.xml +++ b/src/chrome/content/rules/AquilaClothing.co.uk.xml @@ -5,7 +5,7 @@ Fetch error: http://aquilaclothing.co.uk/ => https://aquilaclothing.co.uk/: (51, Fetch error: http://www.aquilaclothing.co.uk/ => https://www.aquilaclothing.co.uk/: (51, "SSL: no alternative certificate subject name matches target host name 'www.aquilaclothing.co.uk'") --> - + diff --git a/src/chrome/content/rules/Aquiss.xml b/src/chrome/content/rules/Aquiss.xml index 94b3dd4aa589..6fd7ca2bd6e8 100644 --- a/src/chrome/content/rules/Aquiss.xml +++ b/src/chrome/content/rules/Aquiss.xml @@ -17,13 +17,13 @@ --> - + + - + - + diff --git a/src/chrome/content/rules/ArXiv2Bibtex.org.xml b/src/chrome/content/rules/ArXiv2Bibtex.org.xml new file mode 100644 index 000000000000..af9c00c305b3 --- /dev/null +++ b/src/chrome/content/rules/ArXiv2Bibtex.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Arachnys.xml b/src/chrome/content/rules/Arachnys.xml index c5ee7af0e4d4..0b4af44ba339 100644 --- a/src/chrome/content/rules/Arachnys.xml +++ b/src/chrome/content/rules/Arachnys.xml @@ -10,4 +10,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Aral_Balkan.com.xml b/src/chrome/content/rules/Aral_Balkan.com.xml index 6bf6c6c5f082..b112eadbfc3a 100644 --- a/src/chrome/content/rules/Aral_Balkan.com.xml +++ b/src/chrome/content/rules/Aral_Balkan.com.xml @@ -5,7 +5,7 @@ Fetch error: http://aralbalkan.com/ => https://aralbalkan.com/: (60, 'SSL certif Fetch error: http://www.aralbalkan.com/ => https://www.aralbalkan.com/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/Arbeitsagentur.xml b/src/chrome/content/rules/Arbeitsagentur.xml index 64e2e1c43928..c01b934abfc2 100644 --- a/src/chrome/content/rules/Arbeitsagentur.xml +++ b/src/chrome/content/rules/Arbeitsagentur.xml @@ -1,8 +1,11 @@ - - - - + + + + + + + + + - - diff --git a/src/chrome/content/rules/Arbor-Netscout.xml b/src/chrome/content/rules/Arbor-Netscout.xml new file mode 100644 index 000000000000..6c1cc51b444b --- /dev/null +++ b/src/chrome/content/rules/Arbor-Netscout.xml @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Arbor-Networks.xml b/src/chrome/content/rules/Arbor-Networks.xml deleted file mode 100644 index 06500e1b1d6b..000000000000 --- a/src/chrome/content/rules/Arbor-Networks.xml +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/ArcGIS.xml b/src/chrome/content/rules/ArcGIS.xml index 9856a79f5176..697a9af1a586 100644 --- a/src/chrome/content/rules/ArcGIS.xml +++ b/src/chrome/content/rules/ArcGIS.xml @@ -192,18 +192,18 @@ - + - + - + - + - + + + - + diff --git a/src/chrome/content/rules/Architects_Journal.xml b/src/chrome/content/rules/Architects_Journal.xml index f4c182fa4f36..9457230ff947 100644 --- a/src/chrome/content/rules/Architects_Journal.xml +++ b/src/chrome/content/rules/Architects_Journal.xml @@ -24,4 +24,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Archive-It.org.xml b/src/chrome/content/rules/Archive-It.org.xml index 8c3e752d5971..54cb1b1430fe 100644 --- a/src/chrome/content/rules/Archive-It.org.xml +++ b/src/chrome/content/rules/Archive-It.org.xml @@ -22,7 +22,7 @@ --> - + - + - + + - + + + + + + + - - - + + diff --git a/src/chrome/content/rules/ArchiveTeam.org.xml b/src/chrome/content/rules/ArchiveTeam.org.xml new file mode 100644 index 000000000000..af07d07549fc --- /dev/null +++ b/src/chrome/content/rules/ArchiveTeam.org.xml @@ -0,0 +1,17 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Archives-ouvertes.fr.xml b/src/chrome/content/rules/Archives-ouvertes.fr.xml index 2bf3a5e7d7e2..788e0dcb41c7 100644 --- a/src/chrome/content/rules/Archives-ouvertes.fr.xml +++ b/src/chrome/content/rules/Archives-ouvertes.fr.xml @@ -1,48 +1,33 @@ - - - - - + + + + + + + + + + + + + + + + + + + + - - - - diff --git a/src/chrome/content/rules/Archomedia.xml b/src/chrome/content/rules/Archomedia.xml index eb6df3686c75..bbc6bbcfa095 100644 --- a/src/chrome/content/rules/Archomedia.xml +++ b/src/chrome/content/rules/Archomedia.xml @@ -14,4 +14,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/ArcorCentralLogin.xml b/src/chrome/content/rules/ArcorCentralLogin.xml deleted file mode 100644 index 569b32e8395c..000000000000 --- a/src/chrome/content/rules/ArcorCentralLogin.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/Ardour.xml b/src/chrome/content/rules/Ardour.xml index ba78e387a93b..3d8c1d8bc3e4 100644 --- a/src/chrome/content/rules/Ardour.xml +++ b/src/chrome/content/rules/Ardour.xml @@ -15,13 +15,14 @@ - + + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Arduino.cc.xml b/src/chrome/content/rules/Arduino.cc.xml index b62c4143e678..04b838c8d70f 100644 --- a/src/chrome/content/rules/Arduino.cc.xml +++ b/src/chrome/content/rules/Arduino.cc.xml @@ -1,26 +1,25 @@ - + + + + + + + + + + + - + + - diff --git a/src/chrome/content/rules/AreWeCompressedYet.com.xml b/src/chrome/content/rules/AreWeCompressedYet.com.xml new file mode 100644 index 000000000000..eb91705ce62b --- /dev/null +++ b/src/chrome/content/rules/AreWeCompressedYet.com.xml @@ -0,0 +1,16 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/AreWeFluentYet.com.xml b/src/chrome/content/rules/AreWeFluentYet.com.xml new file mode 100644 index 000000000000..6e2582d8e5b0 --- /dev/null +++ b/src/chrome/content/rules/AreWeFluentYet.com.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/AreWeLearningYet.com.xml b/src/chrome/content/rules/AreWeLearningYet.com.xml new file mode 100644 index 000000000000..3f953934d6a9 --- /dev/null +++ b/src/chrome/content/rules/AreWeLearningYet.com.xml @@ -0,0 +1,9 @@ + + + + + + diff --git a/src/chrome/content/rules/AreWeWebYet.org.xml b/src/chrome/content/rules/AreWeWebYet.org.xml new file mode 100644 index 000000000000..acfcc5c1d295 --- /dev/null +++ b/src/chrome/content/rules/AreWeWebYet.org.xml @@ -0,0 +1,9 @@ + + + + + + diff --git a/src/chrome/content/rules/Are_We_Slim_Yet.com.xml b/src/chrome/content/rules/Are_We_Slim_Yet.com.xml deleted file mode 100644 index e571b86c6fb3..000000000000 --- a/src/chrome/content/rules/Are_We_Slim_Yet.com.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Are_Wecompressed_Yet.com.xml b/src/chrome/content/rules/Are_Wecompressed_Yet.com.xml deleted file mode 100644 index 0bd5d285049f..000000000000 --- a/src/chrome/content/rules/Are_Wecompressed_Yet.com.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/ArenaofValor.com.xml b/src/chrome/content/rules/ArenaofValor.com.xml new file mode 100644 index 000000000000..268f423cdabd --- /dev/null +++ b/src/chrome/content/rules/ArenaofValor.com.xml @@ -0,0 +1,10 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Argonne-National-Laboratory.xml b/src/chrome/content/rules/Argonne-National-Laboratory.xml index 9d05c9a3947e..d1fb50e87ac9 100644 --- a/src/chrome/content/rules/Argonne-National-Laboratory.xml +++ b/src/chrome/content/rules/Argonne-National-Laboratory.xml @@ -13,8 +13,14 @@ --> - - + + + + + + + + - + diff --git a/src/chrome/content/rules/Argos.xml b/src/chrome/content/rules/Argos.xml index cf226a6b7f1f..8c893658e7b8 100644 --- a/src/chrome/content/rules/Argos.xml +++ b/src/chrome/content/rules/Argos.xml @@ -30,11 +30,10 @@ Fetch error: http://www.wearechoosy.com/ => https://www.wearechoosy.com/: (60, ' - (www.)?argos-spain.co.uk (→ www.argosonline.es) --> - + - @@ -50,13 +49,13 @@ Fetch error: http://www.wearechoosy.com/ => https://www.wearechoosy.com/: (60, ' - - - - - - - + + + + + + + diff --git a/src/chrome/content/rules/Argus.ch.xml b/src/chrome/content/rules/Argus.ch.xml deleted file mode 100644 index 03017ea49754..000000000000 --- a/src/chrome/content/rules/Argus.ch.xml +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Argus_Leader.xml b/src/chrome/content/rules/Argus_Leader.xml index 34757ef7b1b5..762def4bb052 100644 --- a/src/chrome/content/rules/Argus_Leader.xml +++ b/src/chrome/content/rules/Argus_Leader.xml @@ -1,25 +1,34 @@ - + Mixed content blocking (MCB) triggered: + - realestate.argusleader.com +--> + - - - - - - - - + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Argyle-Social-mismatches.xml b/src/chrome/content/rules/Argyle-Social-mismatches.xml index ab53c98af1ab..45bef942e34e 100644 --- a/src/chrome/content/rules/Argyle-Social-mismatches.xml +++ b/src/chrome/content/rules/Argyle-Social-mismatches.xml @@ -3,7 +3,6 @@ - + diff --git a/src/chrome/content/rules/Ariejan.net.xml b/src/chrome/content/rules/Ariejan.net.xml index ebf4f1cd8720..a60146f89914 100644 --- a/src/chrome/content/rules/Ariejan.net.xml +++ b/src/chrome/content/rules/Ariejan.net.xml @@ -1,7 +1,8 @@ - + + - - - - - - - - - diff --git a/src/chrome/content/rules/Arizona-State-University.xml b/src/chrome/content/rules/Arizona-State-University.xml index 4b15905c3e4f..4dd12471e347 100644 --- a/src/chrome/content/rules/Arizona-State-University.xml +++ b/src/chrome/content/rules/Arizona-State-University.xml @@ -228,7 +228,7 @@ Fetch error: http://www.geodacenter.org/ => https://www.geodacenter.org/: (28, ' - libguides (→ libguides.com, $ redirects to http) --> - + diff --git a/src/chrome/content/rules/Arkena.com.xml b/src/chrome/content/rules/Arkena.com.xml deleted file mode 100644 index 1ca95d86ffc5..000000000000 --- a/src/chrome/content/rules/Arkena.com.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Arlanda.se.xml b/src/chrome/content/rules/Arlanda.se.xml index e7a67eea03de..8958473e3429 100644 --- a/src/chrome/content/rules/Arlanda.se.xml +++ b/src/chrome/content/rules/Arlanda.se.xml @@ -1,8 +1,9 @@ - - - - + + + + + diff --git a/src/chrome/content/rules/Arlt.com.xml b/src/chrome/content/rules/Arlt.com.xml index 894021c39e85..ed1e62fa3297 100644 --- a/src/chrome/content/rules/Arlt.com.xml +++ b/src/chrome/content/rules/Arlt.com.xml @@ -1,5 +1,14 @@ + - + + - + diff --git a/src/chrome/content/rules/Armorgames.com.xml b/src/chrome/content/rules/Armorgames.com.xml new file mode 100644 index 000000000000..31c29f0cf79f --- /dev/null +++ b/src/chrome/content/rules/Armorgames.com.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ArmoryBids.com.xml b/src/chrome/content/rules/ArmoryBids.com.xml index abe5c3315f84..d48934c5499f 100644 --- a/src/chrome/content/rules/ArmoryBids.com.xml +++ b/src/chrome/content/rules/ArmoryBids.com.xml @@ -5,7 +5,7 @@ Fetch error: http://armorybids.com/ => https://armorybids.com/: (28, 'Connection Fetch error: http://www.armorybids.com/ => https://www.armorybids.com/: (28, 'Connection timed out after 20001 milliseconds') --> - + diff --git a/src/chrome/content/rules/ArmsWiki.org.xml b/src/chrome/content/rules/ArmsWiki.org.xml new file mode 100644 index 000000000000..1a398861ad77 --- /dev/null +++ b/src/chrome/content/rules/ArmsWiki.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Armscontrolcenter.org.xml b/src/chrome/content/rules/Armscontrolcenter.org.xml new file mode 100644 index 000000000000..e5bdd7f303b6 --- /dev/null +++ b/src/chrome/content/rules/Armscontrolcenter.org.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/ArmyTimes.com.xml b/src/chrome/content/rules/ArmyTimes.com.xml new file mode 100644 index 000000000000..d8df93eb2168 --- /dev/null +++ b/src/chrome/content/rules/ArmyTimes.com.xml @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Army_Times.xml b/src/chrome/content/rules/Army_Times.xml deleted file mode 100644 index cc031f62103a..000000000000 --- a/src/chrome/content/rules/Army_Times.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Arozus.xml b/src/chrome/content/rules/Arozus.xml index 167b74462a05..9a93b06f1d5f 100644 --- a/src/chrome/content/rules/Arozus.xml +++ b/src/chrome/content/rules/Arozus.xml @@ -18,4 +18,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Arpxs.com.xml b/src/chrome/content/rules/Arpxs.com.xml index 5eb8c2199a66..80cd7ad62433 100644 --- a/src/chrome/content/rules/Arpxs.com.xml +++ b/src/chrome/content/rules/Arpxs.com.xml @@ -11,7 +11,7 @@ Fetch error: http://www.arpxs.com/ => https://www.arpxs.com/: (51, "SSL: no alte - www.arpxs.com --> - + diff --git a/src/chrome/content/rules/Arquetype.org.xml b/src/chrome/content/rules/Arquetype.org.xml index 4527f4fc4511..7c1f010168e4 100644 --- a/src/chrome/content/rules/Arquetype.org.xml +++ b/src/chrome/content/rules/Arquetype.org.xml @@ -5,7 +5,7 @@ Fetch error: http://arquetype.org/ => https://arquetype.org/: (60, 'SSL certific Fetch error: http://www.arquetype.org/ => https://www.arquetype.org/: (60, 'SSL certificate problem: self signed certificate') --> - + @@ -13,7 +13,7 @@ Fetch error: http://www.arquetype.org/ => https://www.arquetype.org/: (60, 'SSL - + - + - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Arris.com.xml b/src/chrome/content/rules/Arris.com.xml index 6cd32b763951..c015ce4880bf 100644 --- a/src/chrome/content/rules/Arris.com.xml +++ b/src/chrome/content/rules/Arris.com.xml @@ -21,7 +21,7 @@ --> - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/ArsTechnica.co.uk.xml b/src/chrome/content/rules/ArsTechnica.co.uk.xml new file mode 100644 index 000000000000..17ca26df542c --- /dev/null +++ b/src/chrome/content/rules/ArsTechnica.co.uk.xml @@ -0,0 +1,11 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/ArsTechnica.com.xml b/src/chrome/content/rules/ArsTechnica.com.xml new file mode 100644 index 000000000000..a72caf50bdf8 --- /dev/null +++ b/src/chrome/content/rules/ArsTechnica.com.xml @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ArsTechnica.net.xml b/src/chrome/content/rules/ArsTechnica.net.xml new file mode 100644 index 000000000000..534e88851bbc --- /dev/null +++ b/src/chrome/content/rules/ArsTechnica.net.xml @@ -0,0 +1,14 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Art-Practical.xml b/src/chrome/content/rules/Art-Practical.xml index b1be04756d7a..2e67f621baad 100644 --- a/src/chrome/content/rules/Art-Practical.xml +++ b/src/chrome/content/rules/Art-Practical.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Non-2xx HTTP code: http://artpractical.com/ (200) => https://artpractical.com/ (404) Non-2xx HTTP code: http://www.artpractical.com/ (200) => https://artpractical.com/ (404) --> - + diff --git a/src/chrome/content/rules/Art.com.xml b/src/chrome/content/rules/Art.com.xml index 25f62ff0cc3a..0729abdf7b8c 100644 --- a/src/chrome/content/rules/Art.com.xml +++ b/src/chrome/content/rules/Art.com.xml @@ -30,7 +30,7 @@ Fetch error: http://art.com/ => https://art.com/: (28, 'Connection timed out aft - Ads on eu from cache1.artprintimages.com --> - + diff --git a/src/chrome/content/rules/Art2pO.com.xml b/src/chrome/content/rules/Art2pO.com.xml deleted file mode 100644 index b24e633f3e8b..000000000000 --- a/src/chrome/content/rules/Art2pO.com.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/ArtChristina.xml b/src/chrome/content/rules/ArtChristina.xml index 01b1af1fd359..64374c8bab9a 100644 --- a/src/chrome/content/rules/ArtChristina.xml +++ b/src/chrome/content/rules/ArtChristina.xml @@ -12,4 +12,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/ArtOfProblemSolving.com.xml b/src/chrome/content/rules/ArtOfProblemSolving.com.xml new file mode 100644 index 000000000000..6b86a84a7bf5 --- /dev/null +++ b/src/chrome/content/rules/ArtOfProblemSolving.com.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/ArtSkills.xml b/src/chrome/content/rules/ArtSkills.xml index ad06bbe293b9..9edc1f563479 100644 --- a/src/chrome/content/rules/ArtSkills.xml +++ b/src/chrome/content/rules/ArtSkills.xml @@ -10,4 +10,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Art_Lebedev.ru.xml b/src/chrome/content/rules/Art_Lebedev.ru.xml index bbfdb7f03ee5..d2693fc2f770 100644 --- a/src/chrome/content/rules/Art_Lebedev.ru.xml +++ b/src/chrome/content/rules/Art_Lebedev.ru.xml @@ -36,7 +36,10 @@ - + + + + @@ -49,7 +52,6 @@ - + diff --git a/src/chrome/content/rules/Art_Schools.com.xml b/src/chrome/content/rules/Art_Schools.com.xml deleted file mode 100644 index 37668fc0b735..000000000000 --- a/src/chrome/content/rules/Art_Schools.com.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Artday.xml b/src/chrome/content/rules/Artday.xml index 767c07c626b6..eb23b557f4aa 100644 --- a/src/chrome/content/rules/Artday.xml +++ b/src/chrome/content/rules/Artday.xml @@ -8,10 +8,11 @@ Fetch error: http://artday.co.kr/ => https://auction.artday.co.kr/: (51, "SSL: n - (www.) (expired 2013-04-06) --> - + - + + @@ -22,4 +23,4 @@ Fetch error: http://artday.co.kr/ => https://auction.artday.co.kr/: (51, "SSL: n - \ No newline at end of file + diff --git a/src/chrome/content/rules/Artemis.net.xml b/src/chrome/content/rules/Artemis.net.xml index af0729c5e3ae..a968b8766660 100644 --- a/src/chrome/content/rules/Artemis.net.xml +++ b/src/chrome/content/rules/Artemis.net.xml @@ -5,18 +5,17 @@ Fetch error: http://artemis.net/ => https://artemis.net/: (60, 'SSL certificate Fetch error: http://artemisinternet.com/ => https://artemisinternet.com/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + - - + + - + diff --git a/src/chrome/content/rules/Artfiles_New_Media.xml b/src/chrome/content/rules/Artfiles_New_Media.xml index aecaefc8fdfd..f6eb946257c6 100644 --- a/src/chrome/content/rules/Artfiles_New_Media.xml +++ b/src/chrome/content/rules/Artfiles_New_Media.xml @@ -25,7 +25,11 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Arvixe.xml b/src/chrome/content/rules/Arvixe.xml index 0b73bb383fa5..ecc88514923e 100644 --- a/src/chrome/content/rules/Arvixe.xml +++ b/src/chrome/content/rules/Arvixe.xml @@ -27,16 +27,19 @@ - + + + + + - + - + diff --git a/src/chrome/content/rules/Arxiv-Vanity.com.xml b/src/chrome/content/rules/Arxiv-Vanity.com.xml new file mode 100644 index 000000000000..fc3e82aa53ba --- /dev/null +++ b/src/chrome/content/rules/Arxiv-Vanity.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/AsSeenOnTV.com.xml b/src/chrome/content/rules/AsSeenOnTV.com.xml deleted file mode 100644 index 759d6abc29d8..000000000000 --- a/src/chrome/content/rules/AsSeenOnTV.com.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Asahi_Shimbun.xml b/src/chrome/content/rules/Asahi_Shimbun.xml index 14ecdc199fe1..36e9405eea6b 100644 --- a/src/chrome/content/rules/Asahi_Shimbun.xml +++ b/src/chrome/content/rules/Asahi_Shimbun.xml @@ -19,14 +19,13 @@ --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Asana.xml b/src/chrome/content/rules/Asana.xml deleted file mode 100644 index 57d33c729ccf..000000000000 --- a/src/chrome/content/rules/Asana.xml +++ /dev/null @@ -1,413 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/AsbestosSafetyandEradicationAgency.xml b/src/chrome/content/rules/AsbestosSafetyandEradicationAgency.xml index b566f98d3e06..c0ee57d6bcd6 100644 --- a/src/chrome/content/rules/AsbestosSafetyandEradicationAgency.xml +++ b/src/chrome/content/rules/AsbestosSafetyandEradicationAgency.xml @@ -1,7 +1,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Asbury_Park_Press.xml b/src/chrome/content/rules/Asbury_Park_Press.xml index 488b54b7c24f..f7810f173e6b 100644 --- a/src/chrome/content/rules/Asbury_Park_Press.xml +++ b/src/chrome/content/rules/Asbury_Park_Press.xml @@ -16,7 +16,8 @@ - + + diff --git a/src/chrome/content/rules/AscenderFonts.com.xml b/src/chrome/content/rules/AscenderFonts.com.xml deleted file mode 100644 index 8f73dca7f09f..000000000000 --- a/src/chrome/content/rules/AscenderFonts.com.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Asciinema.org.xml b/src/chrome/content/rules/Asciinema.org.xml index bcfd11679d3f..8963103c2c8c 100644 --- a/src/chrome/content/rules/Asciinema.org.xml +++ b/src/chrome/content/rules/Asciinema.org.xml @@ -1,50 +1,12 @@ - - - + - - - - - - - - - - - - - - - - + + + - + diff --git a/src/chrome/content/rules/Asecus.xml b/src/chrome/content/rules/Asecus.xml deleted file mode 100644 index 3a8bf86a27ce..000000000000 --- a/src/chrome/content/rules/Asecus.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - diff --git a/src/chrome/content/rules/Asfar.org.uk.xml b/src/chrome/content/rules/Asfar.org.uk.xml new file mode 100644 index 000000000000..2c68e672cfc6 --- /dev/null +++ b/src/chrome/content/rules/Asfar.org.uk.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Ashampoo.com.xml b/src/chrome/content/rules/Ashampoo.com.xml index 52224695bebb..12220fee99ee 100644 --- a/src/chrome/content/rules/Ashampoo.com.xml +++ b/src/chrome/content/rules/Ashampoo.com.xml @@ -41,7 +41,7 @@ Fetch error: http://vpn.ashampoo.com/ => https://vpn.ashampoo.com/: (60, 'SSL ce - awstats.ashampoo.com --> - + @@ -68,7 +68,7 @@ Fetch error: http://vpn.ashampoo.com/ => https://vpn.ashampoo.com/: (60, 'SSL ce - + - + + diff --git a/src/chrome/content/rules/Ashland_Fiber.net.xml b/src/chrome/content/rules/Ashland_Fiber.net.xml index 1507f79c5ce5..a81b5d57e2dd 100644 --- a/src/chrome/content/rules/Ashland_Fiber.net.xml +++ b/src/chrome/content/rules/Ashland_Fiber.net.xml @@ -14,4 +14,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Ashlands.net.xml b/src/chrome/content/rules/Ashlands.net.xml new file mode 100644 index 000000000000..ff48105866b5 --- /dev/null +++ b/src/chrome/content/rules/Ashlands.net.xml @@ -0,0 +1,12 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Ashley_Madison.com-falsemixed.xml b/src/chrome/content/rules/Ashley_Madison.com-falsemixed.xml deleted file mode 100644 index a21665406acd..000000000000 --- a/src/chrome/content/rules/Ashley_Madison.com-falsemixed.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Ashleymadison.com.xml b/src/chrome/content/rules/Ashleymadison.com.xml deleted file mode 100644 index f7f5cc883699..000000000000 --- a/src/chrome/content/rules/Ashleymadison.com.xml +++ /dev/null @@ -1,105 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Asia-Pacific-Network-Information-Centre-mismatches.xml b/src/chrome/content/rules/Asia-Pacific-Network-Information-Centre-mismatches.xml deleted file mode 100644 index 52e2edcbe722..000000000000 --- a/src/chrome/content/rules/Asia-Pacific-Network-Information-Centre-mismatches.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Asia-Pacific-Network-Information-Centre.xml b/src/chrome/content/rules/Asia-Pacific-Network-Information-Centre.xml index 02e6657f6859..07d985905f5b 100644 --- a/src/chrome/content/rules/Asia-Pacific-Network-Information-Centre.xml +++ b/src/chrome/content/rules/Asia-Pacific-Network-Information-Centre.xml @@ -1,33 +1,29 @@ - + - + + + + + + + + + + + + + - - - - - - - - - - + diff --git a/src/chrome/content/rules/Asianfanfics.xml b/src/chrome/content/rules/Asianfanfics.xml index baa21b9abdf6..168ccb046a27 100644 --- a/src/chrome/content/rules/Asianfanfics.xml +++ b/src/chrome/content/rules/Asianfanfics.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Ask.com.xml b/src/chrome/content/rules/Ask.com.xml new file mode 100644 index 000000000000..90ecd1740034 --- /dev/null +++ b/src/chrome/content/rules/Ask.com.xml @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Ask.fm.xml b/src/chrome/content/rules/Ask.fm.xml index a5099b650361..a917da1905a3 100644 --- a/src/chrome/content/rules/Ask.fm.xml +++ b/src/chrome/content/rules/Ask.fm.xml @@ -1,10 +1,23 @@ - + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/AskAMathematician.com.xml b/src/chrome/content/rules/AskAMathematician.com.xml new file mode 100644 index 000000000000..8aeb6675a2e3 --- /dev/null +++ b/src/chrome/content/rules/AskAMathematician.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/AskWoody.com.xml b/src/chrome/content/rules/AskWoody.com.xml new file mode 100644 index 000000000000..8a64eecb5ece --- /dev/null +++ b/src/chrome/content/rules/AskWoody.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Ask_the_Builder.com.xml b/src/chrome/content/rules/Ask_the_Builder.com.xml index 406407639897..d8af8490085e 100644 --- a/src/chrome/content/rules/Ask_the_Builder.com.xml +++ b/src/chrome/content/rules/Ask_the_Builder.com.xml @@ -9,10 +9,8 @@ Problematic hosts in *askthebuilder.com: - - shop ᶜ - sod1 ˢ - ᶜ Server sends no certificate chain, see https://whatsmychaincert.com ˢ Self-signed @@ -21,17 +19,13 @@ - .shop.askthebuilder.com --> - + - - - - - + + - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Asnetworks.com.xml b/src/chrome/content/rules/Asnetworks.com.xml index cafb7638308f..d8978019bc66 100644 --- a/src/chrome/content/rules/Asnetworks.com.xml +++ b/src/chrome/content/rules/Asnetworks.com.xml @@ -8,7 +8,6 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Aspen.com.xml b/src/chrome/content/rules/Aspen.com.xml index 289edf686db0..2532f62e44d7 100644 --- a/src/chrome/content/rules/Aspen.com.xml +++ b/src/chrome/content/rules/Aspen.com.xml @@ -17,7 +17,7 @@ - + @@ -32,4 +32,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Aspiration_Tech.org.xml b/src/chrome/content/rules/Aspiration_Tech.org.xml index 01ba3596e3da..a71b3391d43b 100644 --- a/src/chrome/content/rules/Aspiration_Tech.org.xml +++ b/src/chrome/content/rules/Aspiration_Tech.org.xml @@ -6,7 +6,7 @@ - + - + + + + + + + + + + diff --git a/src/chrome/content/rules/Assakina.com.xml b/src/chrome/content/rules/Assakina.com.xml new file mode 100644 index 000000000000..03b9a19cea84 --- /dev/null +++ b/src/chrome/content/rules/Assakina.com.xml @@ -0,0 +1,11 @@ + + + + + + + diff --git a/src/chrome/content/rules/Assayassured.co.uk.xml b/src/chrome/content/rules/Assayassured.co.uk.xml index 8dcb85884857..349ba68cd7bc 100644 --- a/src/chrome/content/rules/Assayassured.co.uk.xml +++ b/src/chrome/content/rules/Assayassured.co.uk.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Asseenonresponsetv.com.xml b/src/chrome/content/rules/Asseenonresponsetv.com.xml index 19896bab65e0..91340f2fcc55 100644 --- a/src/chrome/content/rules/Asseenonresponsetv.com.xml +++ b/src/chrome/content/rules/Asseenonresponsetv.com.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://asseenonresponsetv.com/ => https://asseenonresponsetv.com/: (60, 'SSL certificate problem: self signed certificate') Fetch error: http://www.asseenonresponsetv.com/ => https://www.asseenonresponsetv.com/: (60, 'SSL certificate problem: self signed certificate') --> - + @@ -19,4 +19,4 @@ Fetch error: http://www.asseenonresponsetv.com/ => https://www.asseenonresponset - \ No newline at end of file + diff --git a/src/chrome/content/rules/Assembla-mismatches.xml b/src/chrome/content/rules/Assembla-mismatches.xml index 32dcc1a71630..3cad6154ceb9 100644 --- a/src/chrome/content/rules/Assembla-mismatches.xml +++ b/src/chrome/content/rules/Assembla-mismatches.xml @@ -11,7 +11,6 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Assembla.xml b/src/chrome/content/rules/Assembla.xml index 5b52bfd02e6c..7cc616c5e30f 100644 --- a/src/chrome/content/rules/Assembla.xml +++ b/src/chrome/content/rules/Assembla.xml @@ -36,7 +36,7 @@ - + - + - + + - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Associated_Press.xml b/src/chrome/content/rules/Associated_Press.xml deleted file mode 100644 index b14a881fba04..000000000000 --- a/src/chrome/content/rules/Associated_Press.xml +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Associatedcontent.com.xml b/src/chrome/content/rules/Associatedcontent.com.xml index 0761449dbf7d..3483bb1cee84 100644 --- a/src/chrome/content/rules/Associatedcontent.com.xml +++ b/src/chrome/content/rules/Associatedcontent.com.xml @@ -5,7 +5,7 @@ Fetch error: http://associatedcontent.com/ => https://www.associatedcontent.com/ Disabled by https-everywhere-checker because: Fetch error: http://associatedcontent.com/ => https://www.associatedcontent.com/: (28, 'Connection timed out after 10000 milliseconds') uses data from i.acdn.us that doesnt allow https. --> - + diff --git a/src/chrome/content/rules/Association-for-Progressive-Communications.xml b/src/chrome/content/rules/Association-for-Progressive-Communications.xml index 6163207f3912..093d909c938a 100644 --- a/src/chrome/content/rules/Association-for-Progressive-Communications.xml +++ b/src/chrome/content/rules/Association-for-Progressive-Communications.xml @@ -37,7 +37,7 @@ Fetch error: http://lists.apc.org/ => https://lists.apc.org/: (60, 'SSL certific * Secured by us --> - + diff --git a/src/chrome/content/rules/Association_for_Learning_Technology.xml b/src/chrome/content/rules/Association_for_Learning_Technology.xml index 63c8b9677ee9..259f4383f41a 100644 --- a/src/chrome/content/rules/Association_for_Learning_Technology.xml +++ b/src/chrome/content/rules/Association_for_Learning_Technology.xml @@ -17,4 +17,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Association_of_National_Advertisers.xml b/src/chrome/content/rules/Association_of_National_Advertisers.xml index 574acd6169d0..55a5f59aec0c 100644 --- a/src/chrome/content/rules/Association_of_National_Advertisers.xml +++ b/src/chrome/content/rules/Association_of_National_Advertisers.xml @@ -1,7 +1,7 @@ - + diff --git a/src/chrome/content/rules/Astaro.com.xml b/src/chrome/content/rules/Astaro.com.xml index 9d7deb0c374d..6250163f858a 100644 --- a/src/chrome/content/rules/Astaro.com.xml +++ b/src/chrome/content/rules/Astaro.com.xml @@ -32,7 +32,7 @@ --> - + https://asterisk.org/: (51, "SSL: no alternative certificate subject name matches target host name 'asterisk.org'") - -Disabled by https-everywhere-checker because: -Fetch error: http://asterisk.org/ => https://asterisk.org/: (51, "SSL: no alternative certificate subject name matches target host name 'asterisk.org'") For other Digium coverage, see Digium.xml. - - Nonfunctional subdomains: - - - downloads ¹ - - doxygen ² - - forge ³ - - forums ² - - packages ¹ - - www ⁴ - - ¹ Shows another domain - ² Redirects to login.diguim.com - ³ 403, CN: *.digium.com - ⁴ Redirects to http, valid cert - - - Fully covered subdomains: - - - ^ - - ari - - bamboo - - issues - - profiles - - reviewboard - - signup - - wiki - - - Mixed content: - - - favicon on signup from www * - - * Unsecurable <= redirects to http - + Invalid certificate: + - answers.asterisk.org + - forge.asterisk.org + - git.asterisk.org + - svn.asterisk.org --> - + - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Asterisk_Exchange.xml b/src/chrome/content/rules/Asterisk_Exchange.xml index c60957f43c8a..2b23f46a4ccb 100644 --- a/src/chrome/content/rules/Asterisk_Exchange.xml +++ b/src/chrome/content/rules/Asterisk_Exchange.xml @@ -14,4 +14,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Astra.io.xml b/src/chrome/content/rules/Astra.io.xml index e958b1979107..a92f89f290dc 100644 --- a/src/chrome/content/rules/Astra.io.xml +++ b/src/chrome/content/rules/Astra.io.xml @@ -7,7 +7,7 @@ Fetch error: http://www.astra.io/ => https://astra.io/: (28, 'Connection timed o www: cert only matches ^astra.io --> - + diff --git a/src/chrome/content/rules/Astrill.com.xml b/src/chrome/content/rules/Astrill.com.xml index 347a396f8e25..cb446b10652f 100644 --- a/src/chrome/content/rules/Astrill.com.xml +++ b/src/chrome/content/rules/Astrill.com.xml @@ -8,10 +8,10 @@ - + + - + diff --git a/src/chrome/content/rules/Astrocentro.com.xml b/src/chrome/content/rules/Astrocentro.com.xml deleted file mode 100644 index 0a26998b895e..000000000000 --- a/src/chrome/content/rules/Astrocentro.com.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/AstronomicalTours.xml b/src/chrome/content/rules/AstronomicalTours.xml index 0dc80d52552a..bdafe5f2bc94 100644 --- a/src/chrome/content/rules/AstronomicalTours.xml +++ b/src/chrome/content/rules/AstronomicalTours.xml @@ -4,7 +4,7 @@ - + - + http://aswirlgirl.com/: (6, 'Could not re Fetch error: http://www.aswirlgirl.com/ => http://www.aswirlgirl.com/: (6, 'Could not resolve host: www.aswirlgirl.com') --> - + diff --git a/src/chrome/content/rules/AtariAge.xml b/src/chrome/content/rules/AtariAge.xml index 4269fd0226e7..cdac056d5633 100644 --- a/src/chrome/content/rules/AtariAge.xml +++ b/src/chrome/content/rules/AtariAge.xml @@ -1,9 +1,9 @@ - + - + diff --git a/src/chrome/content/rules/Atb-online.ru.xml b/src/chrome/content/rules/Atb-online.ru.xml deleted file mode 100644 index 054cabd199f1..000000000000 --- a/src/chrome/content/rules/Atb-online.ru.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/Atgsvcs.com.xml b/src/chrome/content/rules/Atgsvcs.com.xml index e188ba716e26..fd0f48e5a7fa 100644 --- a/src/chrome/content/rules/Atgsvcs.com.xml +++ b/src/chrome/content/rules/Atgsvcs.com.xml @@ -10,4 +10,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Athaliasoft.xml b/src/chrome/content/rules/Athaliasoft.xml deleted file mode 100644 index ae1601d6327d..000000000000 --- a/src/chrome/content/rules/Athaliasoft.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Atipso.com.xml b/src/chrome/content/rules/Atipso.com.xml index 6e18593f2e5b..19820a123a00 100644 --- a/src/chrome/content/rules/Atipso.com.xml +++ b/src/chrome/content/rules/Atipso.com.xml @@ -15,13 +15,15 @@ Fetch error: http://atipso.com/ => https://atipso.com/: (60, 'SSL certificate pr - + + + + - + diff --git a/src/chrome/content/rules/Atlantic-Media.xml b/src/chrome/content/rules/Atlantic-Media.xml index 0b0f3965b8f8..e5a9c42f1d86 100644 --- a/src/chrome/content/rules/Atlantic-Media.xml +++ b/src/chrome/content/rules/Atlantic-Media.xml @@ -42,17 +42,19 @@ Fetch error: http://admin.theatlanticwire.com/ => https://admin.theatlanticwire. ¹ Refused --> - + - + + - + + - - + + - + + + + + + + + diff --git a/src/chrome/content/rules/Atlantic.net.xml b/src/chrome/content/rules/Atlantic.net.xml index c3b13f3344db..71f77f519431 100644 --- a/src/chrome/content/rules/Atlantic.net.xml +++ b/src/chrome/content/rules/Atlantic.net.xml @@ -26,7 +26,7 @@ --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Atlas_of_Prejudice.com.xml b/src/chrome/content/rules/Atlas_of_Prejudice.com.xml index db35cfa6a211..f76ed57b5be4 100644 --- a/src/chrome/content/rules/Atlas_of_Prejudice.com.xml +++ b/src/chrome/content/rules/Atlas_of_Prejudice.com.xml @@ -6,7 +6,7 @@ - + - + - - + + diff --git a/src/chrome/content/rules/Atomic-Cowlick.xml b/src/chrome/content/rules/Atomic-Cowlick.xml deleted file mode 100644 index 1cb283324b76..000000000000 --- a/src/chrome/content/rules/Atomic-Cowlick.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Atomic_Object.com.xml b/src/chrome/content/rules/Atomic_Object.com.xml index 2b4fd692f2e2..d5f0e363a229 100644 --- a/src/chrome/content/rules/Atomic_Object.com.xml +++ b/src/chrome/content/rules/Atomic_Object.com.xml @@ -16,7 +16,7 @@ Fetch error: http://craft-staging.atomicobject.com/ => https://craft-staging.ato - www.atomicobject.com --> - + diff --git a/src/chrome/content/rules/Atomicorp.xml b/src/chrome/content/rules/Atomicorp.xml index 756bd5dd4582..1f82c7b8451b 100644 --- a/src/chrome/content/rules/Atomicorp.xml +++ b/src/chrome/content/rules/Atomicorp.xml @@ -49,7 +49,7 @@ - + https://www.atomz.com/: (6, 'Could not res Disabled by https-everywhere-checker because: Fetch error: http://atomz.com/ => https://atomz.com/: (56, 'Recv failure: Connection reset by peer') --> - + @@ -17,4 +17,4 @@ Fetch error: http://atomz.com/ => https://atomz.com/: (56, 'Recv failure: Connec - \ No newline at end of file + diff --git a/src/chrome/content/rules/Atos.net.xml b/src/chrome/content/rules/Atos.net.xml index 2ff911a63dd9..1a1aced4f4c3 100644 --- a/src/chrome/content/rules/Atos.net.xml +++ b/src/chrome/content/rules/Atos.net.xml @@ -51,13 +51,53 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + diff --git a/src/chrome/content/rules/Atrativa.com.br.xml b/src/chrome/content/rules/Atrativa.com.br.xml index 65f1471cf0a3..91d49abfd57a 100644 --- a/src/chrome/content/rules/Atrativa.com.br.xml +++ b/src/chrome/content/rules/Atrativa.com.br.xml @@ -14,7 +14,8 @@ - + + diff --git a/src/chrome/content/rules/Atstuff.xml b/src/chrome/content/rules/Atstuff.xml index 03fc752f14ec..8e1587876454 100644 --- a/src/chrome/content/rules/Atstuff.xml +++ b/src/chrome/content/rules/Atstuff.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Attachmate-Group.xml b/src/chrome/content/rules/Attachmate-Group.xml index a810ead96715..0b7ecbf1ca6c 100644 --- a/src/chrome/content/rules/Attachmate-Group.xml +++ b/src/chrome/content/rules/Attachmate-Group.xml @@ -25,7 +25,7 @@ Fetch error: http://login.attachmategroup.com/ => https://login.attachmategroup. - login.attachmategroup.com --> - + diff --git a/src/chrome/content/rules/Attachmate.xml b/src/chrome/content/rules/Attachmate.xml index 5ec19e1ce0f8..8b3cba99abdb 100644 --- a/src/chrome/content/rules/Attachmate.xml +++ b/src/chrome/content/rules/Attachmate.xml @@ -12,7 +12,7 @@ Fetch error: http://download.attachmate.com/ => https://download.attachmate.com/ - support (no https) --> - + diff --git a/src/chrome/content/rules/AtticTV.com.xml b/src/chrome/content/rules/AtticTV.com.xml index f7e75c088339..b5a8cc2a36b7 100644 --- a/src/chrome/content/rules/AtticTV.com.xml +++ b/src/chrome/content/rules/AtticTV.com.xml @@ -5,7 +5,6 @@ Fetch error: http://attictv.com/ => https://attictv.com/: (6, 'Could not resolve Other AtticTV rulesets: - - Kpopstage.co.xml Insecure cookies are set for these domains: @@ -20,7 +19,7 @@ Fetch error: http://attictv.com/ => https://attictv.com/: (6, 'Could not resolve * Secured by us --> - + diff --git a/src/chrome/content/rules/Attorney-GeneralsDepartment.xml b/src/chrome/content/rules/Attorney-GeneralsDepartment.xml index 4dcec3c73367..612eb607331a 100644 --- a/src/chrome/content/rules/Attorney-GeneralsDepartment.xml +++ b/src/chrome/content/rules/Attorney-GeneralsDepartment.xml @@ -1,7 +1,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/AttorneySteveLee.com.xml b/src/chrome/content/rules/AttorneySteveLee.com.xml new file mode 100644 index 000000000000..62054057e9fe --- /dev/null +++ b/src/chrome/content/rules/AttorneySteveLee.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Attracta.xml b/src/chrome/content/rules/Attracta.xml index 3ad4bf703916..deca3d32a15e 100644 --- a/src/chrome/content/rules/Attracta.xml +++ b/src/chrome/content/rules/Attracta.xml @@ -16,7 +16,7 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Atypon.xml b/src/chrome/content/rules/Atypon.xml index f1da261e2859..0aeef440af08 100644 --- a/src/chrome/content/rules/Atypon.xml +++ b/src/chrome/content/rules/Atypon.xml @@ -3,9 +3,9 @@ - - + + diff --git a/src/chrome/content/rules/Au.dk.xml b/src/chrome/content/rules/Au.dk.xml new file mode 100644 index 000000000000..6aae6f3a67e5 --- /dev/null +++ b/src/chrome/content/rules/Au.dk.xml @@ -0,0 +1,875 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Auctionbunker.xml b/src/chrome/content/rules/Auctionbunker.xml deleted file mode 100644 index 9b9676209378..000000000000 --- a/src/chrome/content/rules/Auctionbunker.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Auctiva.com.xml b/src/chrome/content/rules/Auctiva.com.xml index 8d69771df5e6..7d37f62d7f9f 100644 --- a/src/chrome/content/rules/Auctiva.com.xml +++ b/src/chrome/content/rules/Auctiva.com.xml @@ -1,15 +1,35 @@ - + + + + + + + + + + + + + - + diff --git a/src/chrome/content/rules/Audemars_Piguet.com.xml b/src/chrome/content/rules/Audemars_Piguet.com.xml index 666e1f1adbc2..d5ccc4e0ea69 100644 --- a/src/chrome/content/rules/Audemars_Piguet.com.xml +++ b/src/chrome/content/rules/Audemars_Piguet.com.xml @@ -14,7 +14,7 @@ - + @@ -23,4 +23,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Audible.de.xml b/src/chrome/content/rules/Audible.de.xml index 2f901a407da8..727b62d3cdf6 100644 --- a/src/chrome/content/rules/Audible.de.xml +++ b/src/chrome/content/rules/Audible.de.xml @@ -4,9 +4,9 @@ Fetch error: http://audible.de/ => https://www.audible.de/: Cycle detected - URL --> - + - + diff --git a/src/chrome/content/rules/Audicon.net.xml b/src/chrome/content/rules/Audicon.net.xml index 82d4ee511bdf..acf6350f3e00 100644 --- a/src/chrome/content/rules/Audicon.net.xml +++ b/src/chrome/content/rules/Audicon.net.xml @@ -5,11 +5,11 @@ Fetch error: http://audicon.net/ => https://audicon.net/: (60, 'SSL certificate Fetch error: http://www.audicon.net/ => https://www.audicon.net/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + - + diff --git a/src/chrome/content/rules/Audience-Ad-Network.xml b/src/chrome/content/rules/Audience-Ad-Network.xml index 993f10416e7a..c12f922c5e5b 100644 --- a/src/chrome/content/rules/Audience-Ad-Network.xml +++ b/src/chrome/content/rules/Audience-Ad-Network.xml @@ -6,7 +6,7 @@ Fetch error: http://manage.audienceadnetwork.com/ => https://manage.audienceadne Disabled by https-everywhere-checker because: Fetch error: http://manage.audienceadnetwork.com/ => https://manage.audienceadnetwork.com/: (28, 'Resolving timed out after 10520 milliseconds') --> - + @@ -17,7 +17,7 @@ Fetch error: http://manage.audienceadnetwork.com/ => https://manage.audienceadne - - + + diff --git a/src/chrome/content/rules/AudienceScience.xml b/src/chrome/content/rules/AudienceScience.xml index 35e4639ef970..b7d3d4791d23 100644 --- a/src/chrome/content/rules/AudienceScience.xml +++ b/src/chrome/content/rules/AudienceScience.xml @@ -2,13 +2,13 @@ Other AudienceScience rulesets: - Audience_Targeting.xml - - RevSci.net.xml Nonfunctional subdomains: - (www.) ¹ - login ² + - gateway ¹ Shows default page ² Reset @@ -35,27 +35,13 @@ --> - - - - + - - + - - - - - - diff --git a/src/chrome/content/rules/Audience_Amplify.com.xml b/src/chrome/content/rules/Audience_Amplify.com.xml deleted file mode 100644 index 0f2d64c66b1f..000000000000 --- a/src/chrome/content/rules/Audience_Amplify.com.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Audiko.net.xml b/src/chrome/content/rules/Audiko.net.xml new file mode 100644 index 000000000000..a14de8891dd6 --- /dev/null +++ b/src/chrome/content/rules/Audiko.net.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Audiko.xml b/src/chrome/content/rules/Audiko.xml deleted file mode 100644 index dfd2275fc16c..000000000000 --- a/src/chrome/content/rules/Audiko.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/AudioBooks.com.xml b/src/chrome/content/rules/AudioBooks.com.xml new file mode 100644 index 000000000000..c67ce833bc4c --- /dev/null +++ b/src/chrome/content/rules/AudioBooks.com.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/AudioGO.xml b/src/chrome/content/rules/AudioGO.xml index 58171793fd63..e6948037f8c8 100644 --- a/src/chrome/content/rules/AudioGO.xml +++ b/src/chrome/content/rules/AudioGO.xml @@ -8,10 +8,10 @@ Fetch error: http://audiogo.com/ => https://www.audiogo.com/: (7, 'Failed to con !www: times out --> - + - + @@ -20,4 +20,4 @@ Fetch error: http://audiogo.com/ => https://www.audiogo.com/: (7, 'Failed to con - \ No newline at end of file + diff --git a/src/chrome/content/rules/Audioboo.fm.xml b/src/chrome/content/rules/Audioboo.fm.xml index 89e63c68fcd1..816e19c9a41f 100644 --- a/src/chrome/content/rules/Audioboo.fm.xml +++ b/src/chrome/content/rules/Audioboo.fm.xml @@ -6,7 +6,7 @@ Non-2xx HTTP code: http://www.audioboo.fm/ (200) => https://www.audioboo.fm/ (50 support: zendesk --> - + diff --git a/src/chrome/content/rules/Audioz.download.xml b/src/chrome/content/rules/Audioz.download.xml new file mode 100644 index 000000000000..e8be1627f9f6 --- /dev/null +++ b/src/chrome/content/rules/Audioz.download.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/AuditShark.com.xml b/src/chrome/content/rules/AuditShark.com.xml deleted file mode 100644 index 46555295cc53..000000000000 --- a/src/chrome/content/rules/AuditShark.com.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Audubon.org.xml b/src/chrome/content/rules/Audubon.org.xml index a334884ad14d..a5bf35870586 100644 --- a/src/chrome/content/rules/Audubon.org.xml +++ b/src/chrome/content/rules/Audubon.org.xml @@ -8,7 +8,7 @@ Fetch error: http://audubon.org/ => https://www.audubon.org/: Too many redirects ^audubon.org: Mismatched --> - + @@ -21,7 +21,7 @@ Fetch error: http://audubon.org/ => https://www.audubon.org/: Too many redirects - + - + diff --git a/src/chrome/content/rules/August.com.xml b/src/chrome/content/rules/August.com.xml new file mode 100644 index 000000000000..f4f8b47ae608 --- /dev/null +++ b/src/chrome/content/rules/August.com.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Aulani.jobs.xml b/src/chrome/content/rules/Aulani.jobs.xml deleted file mode 100644 index eddb76f44cad..000000000000 --- a/src/chrome/content/rules/Aulani.jobs.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Aulo.in.xml b/src/chrome/content/rules/Aulo.in.xml index bdec16b64274..cf84b4ef3ea6 100644 --- a/src/chrome/content/rules/Aulo.in.xml +++ b/src/chrome/content/rules/Aulo.in.xml @@ -1,9 +1,20 @@ - + + + - + diff --git a/src/chrome/content/rules/Aurous.me.xml b/src/chrome/content/rules/Aurous.me.xml index 913b56cd268d..5c97c42e7e98 100644 --- a/src/chrome/content/rules/Aurous.me.xml +++ b/src/chrome/content/rules/Aurous.me.xml @@ -11,7 +11,7 @@ Fetch error: http://www.aurous.me/ => https://www.aurous.me/: (60, 'SSL certific * Tumblr --> - + diff --git a/src/chrome/content/rules/AusGamers.com.xml b/src/chrome/content/rules/AusGamers.com.xml index ba59cfaffe56..81c8af65cd54 100644 --- a/src/chrome/content/rules/AusGamers.com.xml +++ b/src/chrome/content/rules/AusGamers.com.xml @@ -1,14 +1,26 @@ - - + - - + + + - - + diff --git a/src/chrome/content/rules/AusPost.com.au.xml b/src/chrome/content/rules/AusPost.com.au.xml new file mode 100644 index 000000000000..c92e997ade17 --- /dev/null +++ b/src/chrome/content/rules/AusPost.com.au.xml @@ -0,0 +1,289 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/AusRegistry.xml b/src/chrome/content/rules/AusRegistry.xml index dc4e6c9cbd3a..1e834b8b6e0e 100644 --- a/src/chrome/content/rules/AusRegistry.xml +++ b/src/chrome/content/rules/AusRegistry.xml @@ -11,7 +11,7 @@ - + diff --git a/src/chrome/content/rules/Austin_Fit_Magazine.com.xml b/src/chrome/content/rules/Austin_Fit_Magazine.com.xml deleted file mode 100644 index 1e24c9a682b7..000000000000 --- a/src/chrome/content/rules/Austin_Fit_Magazine.com.xml +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Austiners.com.xml b/src/chrome/content/rules/Austiners.com.xml index 94fefd581055..04e80e664edd 100644 --- a/src/chrome/content/rules/Austiners.com.xml +++ b/src/chrome/content/rules/Austiners.com.xml @@ -11,7 +11,7 @@ - + diff --git a/src/chrome/content/rules/Austrade.xml b/src/chrome/content/rules/Austrade.xml index 221957431cc3..7a23dd7f65c8 100644 --- a/src/chrome/content/rules/Austrade.xml +++ b/src/chrome/content/rules/Austrade.xml @@ -1,7 +1,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Australia.gov.au.xml b/src/chrome/content/rules/Australia.gov.au.xml new file mode 100644 index 000000000000..049c0ebf869d --- /dev/null +++ b/src/chrome/content/rules/Australia.gov.au.xml @@ -0,0 +1,12 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/AustraliaUNSC.xml b/src/chrome/content/rules/AustraliaUNSC.xml deleted file mode 100644 index 9195b610736d..000000000000 --- a/src/chrome/content/rules/AustraliaUNSC.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/AustralianAntarcticDataCentre.xml b/src/chrome/content/rules/AustralianAntarcticDataCentre.xml deleted file mode 100644 index 3b8800d951ea..000000000000 --- a/src/chrome/content/rules/AustralianAntarcticDataCentre.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/AustralianBusinessRegister.xml b/src/chrome/content/rules/AustralianBusinessRegister.xml index fd3c6e53c760..966ccc85c409 100644 --- a/src/chrome/content/rules/AustralianBusinessRegister.xml +++ b/src/chrome/content/rules/AustralianBusinessRegister.xml @@ -1,7 +1,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/AustralianClinicalTrials.xml b/src/chrome/content/rules/AustralianClinicalTrials.xml deleted file mode 100644 index cb493d826ace..000000000000 --- a/src/chrome/content/rules/AustralianClinicalTrials.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/AustralianCompetitionandConsumerCommission.xml b/src/chrome/content/rules/AustralianCompetitionandConsumerCommission.xml index dd1dff812036..28d4d0680667 100644 --- a/src/chrome/content/rules/AustralianCompetitionandConsumerCommission.xml +++ b/src/chrome/content/rules/AustralianCompetitionandConsumerCommission.xml @@ -1,7 +1,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/AustralianCrimeCommission.xml b/src/chrome/content/rules/AustralianCrimeCommission.xml index a543ad0d176d..bc34242e2c89 100644 --- a/src/chrome/content/rules/AustralianCrimeCommission.xml +++ b/src/chrome/content/rules/AustralianCrimeCommission.xml @@ -4,10 +4,10 @@ Disabled by https-everywhere-checker because: Fetch error: http://crimecommission.gov.au/ => https://www.crimecommission.gov.au/: (60, 'SSL certificate problem: certificate has expired') --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/AustralianDataArchive.xml b/src/chrome/content/rules/AustralianDataArchive.xml index e7fa005ecf19..3f43302d2d4e 100644 --- a/src/chrome/content/rules/AustralianDataArchive.xml +++ b/src/chrome/content/rules/AustralianDataArchive.xml @@ -4,10 +4,10 @@ Disabled by https-everywhere-checker because: Fetch error: http://ada.edu.au/ => https://www.ada.edu.au/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/AustralianEarlyDevelopmentCensus.xml b/src/chrome/content/rules/AustralianEarlyDevelopmentCensus.xml index 9b48596a8059..3a6dce2317b5 100644 --- a/src/chrome/content/rules/AustralianEarlyDevelopmentCensus.xml +++ b/src/chrome/content/rules/AustralianEarlyDevelopmentCensus.xml @@ -1,7 +1,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/AustralianEmergencyManagement.xml b/src/chrome/content/rules/AustralianEmergencyManagement.xml index 6ab02da4bf4f..be1929048bbe 100644 --- a/src/chrome/content/rules/AustralianEmergencyManagement.xml +++ b/src/chrome/content/rules/AustralianEmergencyManagement.xml @@ -5,15 +5,15 @@ Fetch error: http://em.gov.au/ => https://www.em.gov.au/: (6, 'Could not resolve Fetch error: http://emknowledge.gov.au/ => https://www.emknowledge.gov.au/: (60, 'SSL certificate problem: certificate has expired') --> - + - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/AustralianEnergyRegulator.xml b/src/chrome/content/rules/AustralianEnergyRegulator.xml index b2b69dc68357..01fef7193478 100644 --- a/src/chrome/content/rules/AustralianEnergyRegulator.xml +++ b/src/chrome/content/rules/AustralianEnergyRegulator.xml @@ -1,7 +1,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/AustralianExportAwards.xml b/src/chrome/content/rules/AustralianExportAwards.xml index 234780c38988..74b237ad513f 100644 --- a/src/chrome/content/rules/AustralianExportAwards.xml +++ b/src/chrome/content/rules/AustralianExportAwards.xml @@ -1,7 +1,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/AustralianFinancialSecurityAuthority.xml b/src/chrome/content/rules/AustralianFinancialSecurityAuthority.xml index aa2ba26d5225..7c0bb0bec9be 100644 --- a/src/chrome/content/rules/AustralianFinancialSecurityAuthority.xml +++ b/src/chrome/content/rules/AustralianFinancialSecurityAuthority.xml @@ -1,7 +1,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/AustralianGovernmentBoards.xml b/src/chrome/content/rules/AustralianGovernmentBoards.xml deleted file mode 100644 index ffa1342bd60a..000000000000 --- a/src/chrome/content/rules/AustralianGovernmentBoards.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/AustralianHealthPractitionerRegulationAgency.xml b/src/chrome/content/rules/AustralianHealthPractitionerRegulationAgency.xml index fd936cd08ebf..aaef95c946c7 100644 --- a/src/chrome/content/rules/AustralianHealthPractitionerRegulationAgency.xml +++ b/src/chrome/content/rules/AustralianHealthPractitionerRegulationAgency.xml @@ -1,7 +1,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/AustralianHumanRightsCommission.xml b/src/chrome/content/rules/AustralianHumanRightsCommission.xml index 0cd2d4c66fad..c62ad65e3571 100644 --- a/src/chrome/content/rules/AustralianHumanRightsCommission.xml +++ b/src/chrome/content/rules/AustralianHumanRightsCommission.xml @@ -1,7 +1,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/AustralianLawReformCommission.xml b/src/chrome/content/rules/AustralianLawReformCommission.xml index f637d43cc97e..7a4c14cb0fed 100644 --- a/src/chrome/content/rules/AustralianLawReformCommission.xml +++ b/src/chrome/content/rules/AustralianLawReformCommission.xml @@ -1,7 +1,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/AustralianMaritimeSafetyAuthority.xml b/src/chrome/content/rules/AustralianMaritimeSafetyAuthority.xml index 12020d1f234a..729e5506c4ab 100644 --- a/src/chrome/content/rules/AustralianMaritimeSafetyAuthority.xml +++ b/src/chrome/content/rules/AustralianMaritimeSafetyAuthority.xml @@ -1,7 +1,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/AustralianPassportOffice.xml b/src/chrome/content/rules/AustralianPassportOffice.xml index 422e41915eac..f59ffc8b34f6 100644 --- a/src/chrome/content/rules/AustralianPassportOffice.xml +++ b/src/chrome/content/rules/AustralianPassportOffice.xml @@ -1,7 +1,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/AustralianPlantsBotanyandHorticulture.xml b/src/chrome/content/rules/AustralianPlantsBotanyandHorticulture.xml index b09de81c4536..b445a7dfa21b 100644 --- a/src/chrome/content/rules/AustralianPlantsBotanyandHorticulture.xml +++ b/src/chrome/content/rules/AustralianPlantsBotanyandHorticulture.xml @@ -1,7 +1,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/AustralianStrategicPolicyInstitute.xml b/src/chrome/content/rules/AustralianStrategicPolicyInstitute.xml index b614f398f555..0fb2791cc2ba 100644 --- a/src/chrome/content/rules/AustralianStrategicPolicyInstitute.xml +++ b/src/chrome/content/rules/AustralianStrategicPolicyInstitute.xml @@ -1,7 +1,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/AustralianTaxationOffice.xml b/src/chrome/content/rules/AustralianTaxationOffice.xml index 5fd8123f6039..d44689601825 100644 --- a/src/chrome/content/rules/AustralianTaxationOffice.xml +++ b/src/chrome/content/rules/AustralianTaxationOffice.xml @@ -1,7 +1,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/AustralianTransportSafetyBureau.xml b/src/chrome/content/rules/AustralianTransportSafetyBureau.xml index 80ea89331971..1482f7ca80b5 100644 --- a/src/chrome/content/rules/AustralianTransportSafetyBureau.xml +++ b/src/chrome/content/rules/AustralianTransportSafetyBureau.xml @@ -1,7 +1,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/AustralianValuationOffice.xml b/src/chrome/content/rules/AustralianValuationOffice.xml deleted file mode 100644 index bbf758df9f49..000000000000 --- a/src/chrome/content/rules/AustralianValuationOffice.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/AustralianWarMemorial.xml b/src/chrome/content/rules/AustralianWarMemorial.xml index f6990a552373..4ac8f296a517 100644 --- a/src/chrome/content/rules/AustralianWarMemorial.xml +++ b/src/chrome/content/rules/AustralianWarMemorial.xml @@ -1,7 +1,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/AustrianAirlines.xml b/src/chrome/content/rules/AustrianAirlines.xml index b70daaa56c8f..3ece0489150a 100644 --- a/src/chrome/content/rules/AustrianAirlines.xml +++ b/src/chrome/content/rules/AustrianAirlines.xml @@ -3,4 +3,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Auth0.com.xml b/src/chrome/content/rules/Auth0.com.xml index ca370f5b964b..1bfc4bcc0691 100644 --- a/src/chrome/content/rules/Auth0.com.xml +++ b/src/chrome/content/rules/Auth0.com.xml @@ -1,13 +1,9 @@ - - - + + - - + diff --git a/src/chrome/content/rules/Authbox.io.xml b/src/chrome/content/rules/Authbox.io.xml index 430443652f6a..e7a13bff87ce 100644 --- a/src/chrome/content/rules/Authbox.io.xml +++ b/src/chrome/content/rules/Authbox.io.xml @@ -18,7 +18,7 @@ Fetch error: http://www.authbox.io/ => https://www.authbox.io/: (51, "SSL: no al * Secured by us --> - + diff --git a/src/chrome/content/rules/Authorize.com.xml b/src/chrome/content/rules/Authorize.com.xml new file mode 100644 index 000000000000..032289f48bcd --- /dev/null +++ b/src/chrome/content/rules/Authorize.com.xml @@ -0,0 +1,12 @@ + + + + + + + diff --git a/src/chrome/content/rules/Authorize.net.xml b/src/chrome/content/rules/Authorize.net.xml index f246b2b0183b..a2392bd45850 100644 --- a/src/chrome/content/rules/Authorize.net.xml +++ b/src/chrome/content/rules/Authorize.net.xml @@ -1,48 +1,44 @@ - - + - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - + diff --git a/src/chrome/content/rules/Autistic_Self-Advocacy_Network.xml b/src/chrome/content/rules/Autistic_Self-Advocacy_Network.xml index 467edc622522..4c285248db56 100644 --- a/src/chrome/content/rules/Autistic_Self-Advocacy_Network.xml +++ b/src/chrome/content/rules/Autistic_Self-Advocacy_Network.xml @@ -13,4 +13,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Autistici-Inventati.xml b/src/chrome/content/rules/Autistici-Inventati.xml index 3d523231c89a..5b9893a2cc69 100644 --- a/src/chrome/content/rules/Autistici-Inventati.xml +++ b/src/chrome/content/rules/Autistici-Inventati.xml @@ -1,14 +1,41 @@ - + + + + + + + + + - - - - + + diff --git a/src/chrome/content/rules/Auto.ro.xml b/src/chrome/content/rules/Auto.ro.xml index 44f98c095f11..b6bbaf86f01c 100644 --- a/src/chrome/content/rules/Auto.ro.xml +++ b/src/chrome/content/rules/Auto.ro.xml @@ -57,7 +57,7 @@ ³ Not secured by us <= mismatched --> - + diff --git a/src/chrome/content/rules/AutoBuzz.my.xml b/src/chrome/content/rules/AutoBuzz.my.xml new file mode 100644 index 000000000000..711544fb107e --- /dev/null +++ b/src/chrome/content/rules/AutoBuzz.my.xml @@ -0,0 +1,14 @@ + + + + + + + + diff --git a/src/chrome/content/rules/AutoHits.vn.xml b/src/chrome/content/rules/AutoHits.vn.xml index f278feaf826a..40c69208ee47 100644 --- a/src/chrome/content/rules/AutoHits.vn.xml +++ b/src/chrome/content/rules/AutoHits.vn.xml @@ -11,7 +11,7 @@ - + diff --git a/src/chrome/content/rules/AutoIt-CDN.com.xml b/src/chrome/content/rules/AutoIt-CDN.com.xml index bce54162718d..2c68f717dce5 100644 --- a/src/chrome/content/rules/AutoIt-CDN.com.xml +++ b/src/chrome/content/rules/AutoIt-CDN.com.xml @@ -6,12 +6,11 @@ Fetch error: http://static1.autoit-cdn.com/ => https://static1.autoit-cdn.com/: For other AutoIt coverage, see AutoIt_script.com.xml. --> - + - + diff --git a/src/chrome/content/rules/AutoTrack.nl.xml b/src/chrome/content/rules/AutoTrack.nl.xml index 580dd021098d..90a103431dd0 100644 --- a/src/chrome/content/rules/AutoTrack.nl.xml +++ b/src/chrome/content/rules/AutoTrack.nl.xml @@ -9,10 +9,11 @@ - + + + - + diff --git a/src/chrome/content/rules/AutoTrader.com.xml b/src/chrome/content/rules/AutoTrader.com.xml index 0833b9868c91..76e7786a6d69 100644 --- a/src/chrome/content/rules/AutoTrader.com.xml +++ b/src/chrome/content/rules/AutoTrader.com.xml @@ -5,26 +5,17 @@ Fetch error: http://autotraderstatic.com/ => https://www.autotraderstatic.com/: - - + + + - - - - + + - - - - - + diff --git a/src/chrome/content/rules/Auto_Ad_Manager.com.xml b/src/chrome/content/rules/Auto_Ad_Manager.com.xml index 2bf67d911470..4ea7cf7a0681 100644 --- a/src/chrome/content/rules/Auto_Ad_Manager.com.xml +++ b/src/chrome/content/rules/Auto_Ad_Manager.com.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Auto_Blog.com.xml b/src/chrome/content/rules/Auto_Blog.com.xml index 7a364c12c4fd..3a981c340ab2 100644 --- a/src/chrome/content/rules/Auto_Blog.com.xml +++ b/src/chrome/content/rules/Auto_Blog.com.xml @@ -29,7 +29,7 @@ Fetch error: http://autoblog.com/ => https://www.autoblog.com/: Too many redirec - www.blogsmithmedia.com --> - + diff --git a/src/chrome/content/rules/Auto_Rims_and_Accessories.xml b/src/chrome/content/rules/Auto_Rims_and_Accessories.xml deleted file mode 100644 index 69c53e8dabd0..000000000000 --- a/src/chrome/content/rules/Auto_Rims_and_Accessories.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/AutomaticChickenCoopDoor.com.xml b/src/chrome/content/rules/AutomaticChickenCoopDoor.com.xml new file mode 100644 index 000000000000..c603bf53fc60 --- /dev/null +++ b/src/chrome/content/rules/AutomaticChickenCoopDoor.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Automatic_Data_Processing.xml b/src/chrome/content/rules/Automatic_Data_Processing.xml index dc303a27c38f..f0f8a0ac883b 100644 --- a/src/chrome/content/rules/Automatic_Data_Processing.xml +++ b/src/chrome/content/rules/Automatic_Data_Processing.xml @@ -1,3 +1,4 @@ + - + diff --git a/src/chrome/content/rules/Autopilot_HQ.com.xml b/src/chrome/content/rules/Autopilot_HQ.com.xml index 8f3f5a92cd70..dd716c55af4e 100644 --- a/src/chrome/content/rules/Autopilot_HQ.com.xml +++ b/src/chrome/content/rules/Autopilot_HQ.com.xml @@ -22,7 +22,7 @@ Mixed content: - css on developers from $self ᵐ - - Images on developers from $self ᵐ + - Images on developers from $self ᵐ ᵐ Not secured by us <= mismatched diff --git a/src/chrome/content/rules/AvaHost.xml b/src/chrome/content/rules/AvaHost.xml index 8434b3f19289..2baf205e3d3e 100644 --- a/src/chrome/content/rules/AvaHost.xml +++ b/src/chrome/content/rules/AvaHost.xml @@ -6,17 +6,13 @@ Fetch error: http://www.secure.avahost.net/ => https://www.secure.avahost.net/: Disabled by https-everywhere-checker because: Fetch error: http://secure.avahost.net/ => https://secure.avahost.net/: (60, 'SSL certificate problem: unable to get local issuer certificate') Fetch error: http://www.secure.avahost.net/ => https://www.secure.avahost.net/: (60, 'SSL certificate problem: unable to get local issuer certificate') - Other AvaHost rulesets: - - - AvaDomains.com.xml - Nonfunctional subdomains: - (www.) (shows an old revision; mismatched, CN: www.avadomains.com) --> - + @@ -27,4 +23,4 @@ Fetch error: http://www.secure.avahost.net/ => https://www.secure.avahost.net/: - \ No newline at end of file + diff --git a/src/chrome/content/rules/Avahi.org.xml b/src/chrome/content/rules/Avahi.org.xml new file mode 100644 index 000000000000..62d24f66e946 --- /dev/null +++ b/src/chrome/content/rules/Avahi.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Avangard.ru.xml b/src/chrome/content/rules/Avangard.ru.xml index 79936269def6..e94aaeb216ae 100644 --- a/src/chrome/content/rules/Avangard.ru.xml +++ b/src/chrome/content/rules/Avangard.ru.xml @@ -4,7 +4,7 @@ corporate. timed out--> - + diff --git a/src/chrome/content/rules/Avangate.xml b/src/chrome/content/rules/Avangate.xml index 907bc17855c8..d12e71bc8864 100644 --- a/src/chrome/content/rules/Avangate.xml +++ b/src/chrome/content/rules/Avangate.xml @@ -5,11 +5,16 @@ - + + + + + + - + - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Avantar.com.xml b/src/chrome/content/rules/Avantar.com.xml index a62b3a32aac3..85cfdb2ff2ae 100644 --- a/src/chrome/content/rules/Avantar.com.xml +++ b/src/chrome/content/rules/Avantar.com.xml @@ -2,13 +2,13 @@ NB: Server sends no certificate chain, see https://whatsmychaincert.com --> - + - + - - - - - - - - diff --git a/src/chrome/content/rules/Avanza.se.xml b/src/chrome/content/rules/Avanza.se.xml index 70d42fda023f..1a06794b0735 100644 --- a/src/chrome/content/rules/Avanza.se.xml +++ b/src/chrome/content/rules/Avanza.se.xml @@ -1,8 +1,8 @@ - - - - + + + + diff --git a/src/chrome/content/rules/Avast.com.xml b/src/chrome/content/rules/Avast.com.xml index 1d14100b3a0f..fdba321d76de 100644 --- a/src/chrome/content/rules/Avast.com.xml +++ b/src/chrome/content/rules/Avast.com.xml @@ -1,7 +1,4 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Avenatti.com.xml b/src/chrome/content/rules/Avenatti.com.xml new file mode 100644 index 000000000000..65c0443a5e24 --- /dev/null +++ b/src/chrome/content/rules/Avenatti.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Avid.com.xml b/src/chrome/content/rules/Avid.com.xml new file mode 100644 index 000000000000..85efc563123c --- /dev/null +++ b/src/chrome/content/rules/Avid.com.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Avidemux.org.xml b/src/chrome/content/rules/Avidemux.org.xml new file mode 100644 index 000000000000..e560d791960c --- /dev/null +++ b/src/chrome/content/rules/Avidemux.org.xml @@ -0,0 +1,15 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Avinc.com.xml b/src/chrome/content/rules/Avinc.com.xml index 3d44a7d726d5..bb2a6e55ebbd 100644 --- a/src/chrome/content/rules/Avinc.com.xml +++ b/src/chrome/content/rules/Avinc.com.xml @@ -28,7 +28,9 @@ - + + + @@ -40,4 +42,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Avios.com.xml b/src/chrome/content/rules/Avios.com.xml new file mode 100644 index 000000000000..f992a6552330 --- /dev/null +++ b/src/chrome/content/rules/Avios.com.xml @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Avira.xml b/src/chrome/content/rules/Avira.xml index 1be1504c7caa..6c60d9c7c131 100644 --- a/src/chrome/content/rules/Avira.xml +++ b/src/chrome/content/rules/Avira.xml @@ -13,7 +13,7 @@ Fetch error: http://www.myaccount.avira.com/ => https://myaccount.avira.com/: (6 - www.avira.com --> - + diff --git a/src/chrome/content/rules/Avis-Japan.com.xml b/src/chrome/content/rules/Avis-Japan.com.xml new file mode 100644 index 000000000000..21ea07d9f108 --- /dev/null +++ b/src/chrome/content/rules/Avis-Japan.com.xml @@ -0,0 +1,29 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Avis-Tahiti.com.xml b/src/chrome/content/rules/Avis-Tahiti.com.xml new file mode 100644 index 000000000000..074b455e4d9d --- /dev/null +++ b/src/chrome/content/rules/Avis-Tahiti.com.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Avis-Taiwan.com.xml b/src/chrome/content/rules/Avis-Taiwan.com.xml new file mode 100644 index 000000000000..914b7f5a677b --- /dev/null +++ b/src/chrome/content/rules/Avis-Taiwan.com.xml @@ -0,0 +1,26 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Avis-sxm.com.xml b/src/chrome/content/rules/Avis-sxm.com.xml new file mode 100644 index 000000000000..a8354563b6e2 --- /dev/null +++ b/src/chrome/content/rules/Avis-sxm.com.xml @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Avis.at.xml b/src/chrome/content/rules/Avis.at.xml new file mode 100644 index 000000000000..840ce8b9b35d --- /dev/null +++ b/src/chrome/content/rules/Avis.at.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Avis.be.xml b/src/chrome/content/rules/Avis.be.xml new file mode 100644 index 000000000000..9b7c0aebecbf --- /dev/null +++ b/src/chrome/content/rules/Avis.be.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Avis.ca.xml b/src/chrome/content/rules/Avis.ca.xml new file mode 100644 index 000000000000..0c5b96cc0b81 --- /dev/null +++ b/src/chrome/content/rules/Avis.ca.xml @@ -0,0 +1,26 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Avis.ch.xml b/src/chrome/content/rules/Avis.ch.xml new file mode 100644 index 000000000000..508f2ce03707 --- /dev/null +++ b/src/chrome/content/rules/Avis.ch.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Avis.cl.xml b/src/chrome/content/rules/Avis.cl.xml new file mode 100644 index 000000000000..3e49399b99fb --- /dev/null +++ b/src/chrome/content/rules/Avis.cl.xml @@ -0,0 +1,29 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Avis.co.il.xml b/src/chrome/content/rules/Avis.co.il.xml new file mode 100644 index 000000000000..7be09fce7f20 --- /dev/null +++ b/src/chrome/content/rules/Avis.co.il.xml @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Avis.co.nz.xml b/src/chrome/content/rules/Avis.co.nz.xml new file mode 100644 index 000000000000..98046691f32d --- /dev/null +++ b/src/chrome/content/rules/Avis.co.nz.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Avis.co.uk.xml b/src/chrome/content/rules/Avis.co.uk.xml new file mode 100644 index 000000000000..a3b39ae12100 --- /dev/null +++ b/src/chrome/content/rules/Avis.co.uk.xml @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Avis.co.za.xml b/src/chrome/content/rules/Avis.co.za.xml new file mode 100644 index 000000000000..7176222d3456 --- /dev/null +++ b/src/chrome/content/rules/Avis.co.za.xml @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Avis.com.ar.xml b/src/chrome/content/rules/Avis.com.ar.xml new file mode 100644 index 000000000000..b304e9a7afba --- /dev/null +++ b/src/chrome/content/rules/Avis.com.ar.xml @@ -0,0 +1,27 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Avis.com.au.xml b/src/chrome/content/rules/Avis.com.au.xml new file mode 100644 index 000000000000..1200a1f13821 --- /dev/null +++ b/src/chrome/content/rules/Avis.com.au.xml @@ -0,0 +1,32 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Avis.com.co.xml b/src/chrome/content/rules/Avis.com.co.xml new file mode 100644 index 000000000000..63368b91f641 --- /dev/null +++ b/src/chrome/content/rules/Avis.com.co.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Avis.com.do.xml b/src/chrome/content/rules/Avis.com.do.xml new file mode 100644 index 000000000000..444f11877a3f --- /dev/null +++ b/src/chrome/content/rules/Avis.com.do.xml @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Avis.com.ec.xml b/src/chrome/content/rules/Avis.com.ec.xml new file mode 100644 index 000000000000..f2ad477bd6b3 --- /dev/null +++ b/src/chrome/content/rules/Avis.com.ec.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Avis.com.hk.xml b/src/chrome/content/rules/Avis.com.hk.xml new file mode 100644 index 000000000000..695eeea935c8 --- /dev/null +++ b/src/chrome/content/rules/Avis.com.hk.xml @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Avis.com.hr.xml b/src/chrome/content/rules/Avis.com.hr.xml new file mode 100644 index 000000000000..a1d993d3ff4a --- /dev/null +++ b/src/chrome/content/rules/Avis.com.hr.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Avis.com.jm.xml b/src/chrome/content/rules/Avis.com.jm.xml new file mode 100644 index 000000000000..083192681bba --- /dev/null +++ b/src/chrome/content/rules/Avis.com.jm.xml @@ -0,0 +1,26 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Avis.com.lb.xml b/src/chrome/content/rules/Avis.com.lb.xml new file mode 100644 index 000000000000..7f1f49b8dc65 --- /dev/null +++ b/src/chrome/content/rules/Avis.com.lb.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Avis.com.pa.xml b/src/chrome/content/rules/Avis.com.pa.xml new file mode 100644 index 000000000000..6939be0b148b --- /dev/null +++ b/src/chrome/content/rules/Avis.com.pa.xml @@ -0,0 +1,25 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Avis.com.ph.xml b/src/chrome/content/rules/Avis.com.ph.xml new file mode 100644 index 000000000000..ceb2cc893755 --- /dev/null +++ b/src/chrome/content/rules/Avis.com.ph.xml @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Avis.com.pt.xml b/src/chrome/content/rules/Avis.com.pt.xml new file mode 100644 index 000000000000..4a8edb590bdb --- /dev/null +++ b/src/chrome/content/rules/Avis.com.pt.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Avis.com.sa.xml b/src/chrome/content/rules/Avis.com.sa.xml new file mode 100644 index 000000000000..00815ad2a694 --- /dev/null +++ b/src/chrome/content/rules/Avis.com.sa.xml @@ -0,0 +1,29 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Avis.com.sg.xml b/src/chrome/content/rules/Avis.com.sg.xml new file mode 100644 index 000000000000..7d740302f30b --- /dev/null +++ b/src/chrome/content/rules/Avis.com.sg.xml @@ -0,0 +1,26 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Avis.com.tr.xml b/src/chrome/content/rules/Avis.com.tr.xml new file mode 100644 index 000000000000..8eeeb9dd233a --- /dev/null +++ b/src/chrome/content/rules/Avis.com.tr.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Avis.com.ua.xml b/src/chrome/content/rules/Avis.com.ua.xml new file mode 100644 index 000000000000..a37bfa60a7cc --- /dev/null +++ b/src/chrome/content/rules/Avis.com.ua.xml @@ -0,0 +1,29 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Avis.com.xml b/src/chrome/content/rules/Avis.com.xml index 7b78496e0319..0454e445a305 100644 --- a/src/chrome/content/rules/Avis.com.xml +++ b/src/chrome/content/rules/Avis.com.xml @@ -1,25 +1,92 @@ + + + + + + + - - - - - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Avis.de.xml b/src/chrome/content/rules/Avis.de.xml new file mode 100644 index 000000000000..1d5502e467bc --- /dev/null +++ b/src/chrome/content/rules/Avis.de.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Avis.dk.xml b/src/chrome/content/rules/Avis.dk.xml new file mode 100644 index 000000000000..e07b3aa07514 --- /dev/null +++ b/src/chrome/content/rules/Avis.dk.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Avis.es.xml b/src/chrome/content/rules/Avis.es.xml new file mode 100644 index 000000000000..8714e85ab3de --- /dev/null +++ b/src/chrome/content/rules/Avis.es.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Avis.fi.xml b/src/chrome/content/rules/Avis.fi.xml new file mode 100644 index 000000000000..bd619082e070 --- /dev/null +++ b/src/chrome/content/rules/Avis.fi.xml @@ -0,0 +1,29 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Avis.fr.xml b/src/chrome/content/rules/Avis.fr.xml new file mode 100644 index 000000000000..89cc0f7fcfb6 --- /dev/null +++ b/src/chrome/content/rules/Avis.fr.xml @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Avis.ie.xml b/src/chrome/content/rules/Avis.ie.xml new file mode 100644 index 000000000000..9539c40dcd93 --- /dev/null +++ b/src/chrome/content/rules/Avis.ie.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Avis.ma.xml b/src/chrome/content/rules/Avis.ma.xml new file mode 100644 index 000000000000..a886f67d54a2 --- /dev/null +++ b/src/chrome/content/rules/Avis.ma.xml @@ -0,0 +1,29 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Avis.nl.xml b/src/chrome/content/rules/Avis.nl.xml new file mode 100644 index 000000000000..0d544a5ba471 --- /dev/null +++ b/src/chrome/content/rules/Avis.nl.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Avis.no.xml b/src/chrome/content/rules/Avis.no.xml new file mode 100644 index 000000000000..4cb72488de98 --- /dev/null +++ b/src/chrome/content/rules/Avis.no.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Avis.pl.xml b/src/chrome/content/rules/Avis.pl.xml new file mode 100644 index 000000000000..b84895c8789c --- /dev/null +++ b/src/chrome/content/rules/Avis.pl.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Avis.se.xml b/src/chrome/content/rules/Avis.se.xml new file mode 100644 index 000000000000..6b579c03a4d3 --- /dev/null +++ b/src/chrome/content/rules/Avis.se.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Avis.tc.xml b/src/chrome/content/rules/Avis.tc.xml new file mode 100644 index 000000000000..f03b79d6d66b --- /dev/null +++ b/src/chrome/content/rules/Avis.tc.xml @@ -0,0 +1,15 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Avisautonoleggio.it.xml b/src/chrome/content/rules/Avisautonoleggio.it.xml new file mode 100644 index 000000000000..1286f1602759 --- /dev/null +++ b/src/chrome/content/rules/Avisautonoleggio.it.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Avisservices.com.xml b/src/chrome/content/rules/Avisservices.com.xml deleted file mode 100644 index fba745b9d2ba..000000000000 --- a/src/chrome/content/rules/Avisservices.com.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Avissuriname.com.xml b/src/chrome/content/rules/Avissuriname.com.xml new file mode 100644 index 000000000000..dd39b84a9f3d --- /dev/null +++ b/src/chrome/content/rules/Avissuriname.com.xml @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Avm.de.xml b/src/chrome/content/rules/Avm.de.xml index d5e60fc7c231..215dee8218b7 100644 --- a/src/chrome/content/rules/Avm.de.xml +++ b/src/chrome/content/rules/Avm.de.xml @@ -1,68 +1,89 @@ - + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + - - + - + diff --git a/src/chrome/content/rules/Avogadr.io.xml b/src/chrome/content/rules/Avogadr.io.xml new file mode 100644 index 000000000000..7ee0bfc537cd --- /dev/null +++ b/src/chrome/content/rules/Avogadr.io.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Avonmaquiagem.com.br.xml b/src/chrome/content/rules/Avonmaquiagem.com.br.xml index fd07e4f772d6..67f92980e11a 100644 --- a/src/chrome/content/rules/Avonmaquiagem.com.br.xml +++ b/src/chrome/content/rules/Avonmaquiagem.com.br.xml @@ -6,7 +6,7 @@ Fetch error: http://static5.avonmaquiagem.com.br/ => https://static5.avonmaquiag Fetch error: http://www.avonmaquiagem.com.br/ => https://www.avonmaquiagem.com.br/: (28, 'Connection timed out after 20005 milliseconds') --> - + @@ -18,4 +18,4 @@ Fetch error: http://www.avonmaquiagem.com.br/ => https://www.avonmaquiagem.com.b - \ No newline at end of file + diff --git a/src/chrome/content/rules/Awe.sm.xml b/src/chrome/content/rules/Awe.sm.xml index dee8318eaa94..6d1b6334b6a8 100644 --- a/src/chrome/content/rules/Awe.sm.xml +++ b/src/chrome/content/rules/Awe.sm.xml @@ -34,7 +34,7 @@ Fetch error: http://widgets.awe.sm/ => https://totally.awe.sm/: (28, 'Connection - .awe.sm --> - + diff --git a/src/chrome/content/rules/AwesomeStuffToBuy.com.xml b/src/chrome/content/rules/AwesomeStuffToBuy.com.xml new file mode 100644 index 000000000000..373e8f617993 --- /dev/null +++ b/src/chrome/content/rules/AwesomeStuffToBuy.com.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Awio-Web-Services-mismatches.xml b/src/chrome/content/rules/Awio-Web-Services-mismatches.xml index e0580bedab1f..4b24b26087d8 100644 --- a/src/chrome/content/rules/Awio-Web-Services-mismatches.xml +++ b/src/chrome/content/rules/Awio-Web-Services-mismatches.xml @@ -4,7 +4,7 @@ - + diff --git a/src/chrome/content/rules/Awio-Web-Services.xml b/src/chrome/content/rules/Awio-Web-Services.xml index 3e1c2e61408f..20ff96b3ca6c 100644 --- a/src/chrome/content/rules/Awio-Web-Services.xml +++ b/src/chrome/content/rules/Awio-Web-Services.xml @@ -14,24 +14,21 @@ Fetch error: http://app.dialshield.com/ => https://app.dialshield.com/: (51, "SS - Improvely.com.xml --> - + - + - + - - + + - - + diff --git a/src/chrome/content/rules/AwkwardZombie.com.xml b/src/chrome/content/rules/AwkwardZombie.com.xml new file mode 100644 index 000000000000..d9fe0312c68b --- /dev/null +++ b/src/chrome/content/rules/AwkwardZombie.com.xml @@ -0,0 +1,16 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Axamba.xml b/src/chrome/content/rules/Axamba.xml index e56d1669f8d4..1d5f53955da4 100644 --- a/src/chrome/content/rules/Axamba.xml +++ b/src/chrome/content/rules/Axamba.xml @@ -6,13 +6,12 @@ Fetch error: http://my.webtapestry.net/ => https://my.webtapestry.net/: (28, 'Co Disabled by https-everywhere-checker because: Fetch error: http://my.webtapestry.net/ => https://my.webtapestry.net/: (28, 'Connection timed out after 10000 milliseconds') --> - + - + - + diff --git a/src/chrome/content/rules/Axboe.xml b/src/chrome/content/rules/Axboe.xml index 70716236c50b..db1a932a719d 100644 --- a/src/chrome/content/rules/Axboe.xml +++ b/src/chrome/content/rules/Axboe.xml @@ -10,15 +10,14 @@ Fetch error: http://webmail.axboe.dk/ => https://webmail.axboe.dk/: (60, 'SSL ce (www.) (cert valid for !www; shows webmail) --> - + - + - + diff --git a/src/chrome/content/rules/Axel_Simon.net.xml b/src/chrome/content/rules/Axel_Simon.net.xml deleted file mode 100644 index 6a44aaf6251f..000000000000 --- a/src/chrome/content/rules/Axel_Simon.net.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Axelname.ru.xml b/src/chrome/content/rules/Axelname.ru.xml deleted file mode 100644 index 6bfa08899d5a..000000000000 --- a/src/chrome/content/rules/Axelname.ru.xml +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Axeso5.com-falsemixed.xml b/src/chrome/content/rules/Axeso5.com-falsemixed.xml deleted file mode 100644 index 6ad8f618b40f..000000000000 --- a/src/chrome/content/rules/Axeso5.com-falsemixed.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Axeso5.com.xml b/src/chrome/content/rules/Axeso5.com.xml index 40b42a7018cb..6df71c1ac54a 100644 --- a/src/chrome/content/rules/Axeso5.com.xml +++ b/src/chrome/content/rules/Axeso5.com.xml @@ -1,94 +1,40 @@ - - + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Axios.com.xml b/src/chrome/content/rules/Axios.com.xml new file mode 100644 index 000000000000..dfcc06865417 --- /dev/null +++ b/src/chrome/content/rules/Axios.com.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/AxisBank.co.in.xml b/src/chrome/content/rules/AxisBank.co.in.xml new file mode 100644 index 000000000000..82207855f389 --- /dev/null +++ b/src/chrome/content/rules/AxisBank.co.in.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/AxisBank.com.xml b/src/chrome/content/rules/AxisBank.com.xml new file mode 100644 index 000000000000..65fe4528a914 --- /dev/null +++ b/src/chrome/content/rules/AxisBank.com.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Axis_Bank.xml b/src/chrome/content/rules/Axis_Bank.xml deleted file mode 100644 index b4311d228ac2..000000000000 --- a/src/chrome/content/rules/Axis_Bank.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Axosoft.com.xml b/src/chrome/content/rules/Axosoft.com.xml index e54a5ccf4984..67327acdad16 100644 --- a/src/chrome/content/rules/Axosoft.com.xml +++ b/src/chrome/content/rules/Axosoft.com.xml @@ -5,12 +5,12 @@ Fetch error: http://iloyal.axosoft.com/ => https://iloyal.axosoft.com/: (6, 'Cou Other Axosoft rulesets: - Pure_Chat.com.xml - + Mismatched: - promos.axosoft.com - blog.axosoft.com --> - + diff --git a/src/chrome/content/rules/Azahera.net.xml b/src/chrome/content/rules/Azahera.net.xml new file mode 100644 index 000000000000..49941d84fb78 --- /dev/null +++ b/src/chrome/content/rules/Azahera.net.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Azcentral.com.xml b/src/chrome/content/rules/Azcentral.com.xml index 7cb26e4d7290..44a8c30cc144 100644 --- a/src/chrome/content/rules/Azcentral.com.xml +++ b/src/chrome/content/rules/Azcentral.com.xml @@ -28,10 +28,12 @@ Fetch error: http://azcentral.com/ => https://azcentral.com/: (51, "SSL: no alte - l (→ ^) --> - + - + + + diff --git a/src/chrome/content/rules/Azet.sk.xml b/src/chrome/content/rules/Azet.sk.xml index e206455740e7..c98a2f260332 100644 --- a/src/chrome/content/rules/Azet.sk.xml +++ b/src/chrome/content/rules/Azet.sk.xml @@ -1,6 +1,5 @@ - + + + + + + + + + diff --git a/src/chrome/content/rules/B2bmediaportal.com.xml b/src/chrome/content/rules/B2bmediaportal.com.xml index 86e331890b51..0339e5d69aac 100644 --- a/src/chrome/content/rules/B2bmediaportal.com.xml +++ b/src/chrome/content/rules/B2bmediaportal.com.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/BA.xml b/src/chrome/content/rules/BA.xml deleted file mode 100644 index 3fd731f343b5..000000000000 --- a/src/chrome/content/rules/BA.xml +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/BAG-Jugendschutz.de.xml b/src/chrome/content/rules/BAG-Jugendschutz.de.xml new file mode 100644 index 000000000000..2bc52d046475 --- /dev/null +++ b/src/chrome/content/rules/BAG-Jugendschutz.de.xml @@ -0,0 +1,12 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/BAGKJS.de.xml b/src/chrome/content/rules/BAGKJS.de.xml new file mode 100644 index 000000000000..2f60cdcfb247 --- /dev/null +++ b/src/chrome/content/rules/BAGKJS.de.xml @@ -0,0 +1,14 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/BALPA.org.xml b/src/chrome/content/rules/BALPA.org.xml new file mode 100644 index 000000000000..88097d0d968b --- /dev/null +++ b/src/chrome/content/rules/BALPA.org.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/BAM.de.xml b/src/chrome/content/rules/BAM.de.xml new file mode 100644 index 000000000000..c0a2604a2677 --- /dev/null +++ b/src/chrome/content/rules/BAM.de.xml @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/BAPCo.com.xml b/src/chrome/content/rules/BAPCo.com.xml index 01ea12717564..06b066598c47 100644 --- a/src/chrome/content/rules/BAPCo.com.xml +++ b/src/chrome/content/rules/BAPCo.com.xml @@ -4,7 +4,7 @@ - + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/BATS_Exchange.xml b/src/chrome/content/rules/BATS_Exchange.xml index b134998e4318..27602522e593 100644 --- a/src/chrome/content/rules/BATS_Exchange.xml +++ b/src/chrome/content/rules/BATS_Exchange.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/BAW.de.xml b/src/chrome/content/rules/BAW.de.xml new file mode 100644 index 000000000000..420b697b305a --- /dev/null +++ b/src/chrome/content/rules/BAW.de.xml @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/BAuA.de.xml b/src/chrome/content/rules/BAuA.de.xml new file mode 100644 index 000000000000..c8f65da0f63e --- /dev/null +++ b/src/chrome/content/rules/BAuA.de.xml @@ -0,0 +1,15 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/BBC-mismatches.xml b/src/chrome/content/rules/BBC-mismatches.xml deleted file mode 100644 index 010f07d06e4a..000000000000 --- a/src/chrome/content/rules/BBC-mismatches.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/BBC.co.uk.xml b/src/chrome/content/rules/BBC.co.uk.xml new file mode 100644 index 000000000000..4dd798d0876c --- /dev/null +++ b/src/chrome/content/rules/BBC.co.uk.xml @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/BBC.com-falsemixed.xml b/src/chrome/content/rules/BBC.com-falsemixed.xml deleted file mode 100644 index b5e42ac81f9c..000000000000 --- a/src/chrome/content/rules/BBC.com-falsemixed.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/BBC.com.xml b/src/chrome/content/rules/BBC.com.xml index 4283d01ce89f..e43d47971ce5 100644 --- a/src/chrome/content/rules/BBC.com.xml +++ b/src/chrome/content/rules/BBC.com.xml @@ -1,44 +1,47 @@ - - + + + + + + + + + + + + + + + + + + + + + - - - - - - - - + diff --git a/src/chrome/content/rules/BBC.xml b/src/chrome/content/rules/BBC.xml deleted file mode 100644 index bf12db7376ea..000000000000 --- a/src/chrome/content/rules/BBC.xml +++ /dev/null @@ -1,173 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/BBC_Children_In_Need.xml b/src/chrome/content/rules/BBC_Children_In_Need.xml index 63ff3e6f8753..a9eab0cab62e 100644 --- a/src/chrome/content/rules/BBC_Children_In_Need.xml +++ b/src/chrome/content/rules/BBC_Children_In_Need.xml @@ -1,11 +1,11 @@ - - - + + + + + + - - diff --git a/src/chrome/content/rules/BBVA-Bancomer.xml b/src/chrome/content/rules/BBVA-Bancomer.xml deleted file mode 100644 index 9a1418b9f3b7..000000000000 --- a/src/chrome/content/rules/BBVA-Bancomer.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/BBacon.org.xml b/src/chrome/content/rules/BBacon.org.xml new file mode 100644 index 000000000000..d06ac5637e64 --- /dev/null +++ b/src/chrome/content/rules/BBacon.org.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/BCGolf.com-mismatches.xml b/src/chrome/content/rules/BCGolf.com-mismatches.xml index bb9b5fe473b9..6cf169b2ce6e 100644 --- a/src/chrome/content/rules/BCGolf.com-mismatches.xml +++ b/src/chrome/content/rules/BCGolf.com-mismatches.xml @@ -5,7 +5,7 @@ - + diff --git a/src/chrome/content/rules/BCGolf.com.xml b/src/chrome/content/rules/BCGolf.com.xml deleted file mode 100644 index 2d90b9e579f5..000000000000 --- a/src/chrome/content/rules/BCGolf.com.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/BCIX.de.xml b/src/chrome/content/rules/BCIX.de.xml new file mode 100644 index 000000000000..be1df16f1a5f --- /dev/null +++ b/src/chrome/content/rules/BCIX.de.xml @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/BCLA_Connect.ca.xml b/src/chrome/content/rules/BCLA_Connect.ca.xml index 9d7ecee6c481..3241ed110dbb 100644 --- a/src/chrome/content/rules/BCLA_Connect.ca.xml +++ b/src/chrome/content/rules/BCLA_Connect.ca.xml @@ -13,7 +13,7 @@ - + + + + + + + + + + diff --git a/src/chrome/content/rules/BDOCodex.com.xml b/src/chrome/content/rules/BDOCodex.com.xml new file mode 100644 index 000000000000..f3cfef8dc94b --- /dev/null +++ b/src/chrome/content/rules/BDOCodex.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/BECU.xml b/src/chrome/content/rules/BECU.xml index 60b8e5b1e81d..14bfd3d98750 100644 --- a/src/chrome/content/rules/BECU.xml +++ b/src/chrome/content/rules/BECU.xml @@ -10,7 +10,7 @@ Fetch error: http://accessassistant.becu.org/ => https://accessassistant.becu.or Mismatched: - locatorsearch --> - + diff --git a/src/chrome/content/rules/BEL.fi.xml b/src/chrome/content/rules/BEL.fi.xml index 55f982fb61b9..0d0e58ef77cd 100644 --- a/src/chrome/content/rules/BEL.fi.xml +++ b/src/chrome/content/rules/BEL.fi.xml @@ -14,7 +14,7 @@ Fetch error: http://bacchus.bel.fi/ => https://bacchus.bel.fi/: (7, 'Failed to c Invalid certificates: - asp.bel.fi --> - + diff --git a/src/chrome/content/rules/BEM.info.xml b/src/chrome/content/rules/BEM.info.xml index d30687fe00fb..6270529e398a 100644 --- a/src/chrome/content/rules/BEM.info.xml +++ b/src/chrome/content/rules/BEM.info.xml @@ -12,7 +12,7 @@ Fetch error: http://www.bem.info/ => https://www.bem.info/: (60, 'SSL certificat - ru --> - + diff --git a/src/chrome/content/rules/BEV.bund.de.xml b/src/chrome/content/rules/BEV.bund.de.xml new file mode 100644 index 000000000000..67b082839834 --- /dev/null +++ b/src/chrome/content/rules/BEV.bund.de.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/BE_One_Spark.com.xml b/src/chrome/content/rules/BE_One_Spark.com.xml deleted file mode 100644 index 551194320e18..000000000000 --- a/src/chrome/content/rules/BE_One_Spark.com.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/BGPStream.com.xml b/src/chrome/content/rules/BGPStream.com.xml index 7b9a8c07655a..848862bdc0af 100644 --- a/src/chrome/content/rules/BGPStream.com.xml +++ b/src/chrome/content/rules/BGPStream.com.xml @@ -8,7 +8,7 @@ - + + + + + + + + + diff --git a/src/chrome/content/rules/BGPmon.net.xml b/src/chrome/content/rules/BGPmon.net.xml index d6bf914cb4eb..0f907c11f87d 100644 --- a/src/chrome/content/rules/BGPmon.net.xml +++ b/src/chrome/content/rules/BGPmon.net.xml @@ -10,9 +10,11 @@ --> - + + - + + @@ -20,8 +22,7 @@ - - + + diff --git a/src/chrome/content/rules/BGR.bund.de.xml b/src/chrome/content/rules/BGR.bund.de.xml new file mode 100644 index 000000000000..815468088ced --- /dev/null +++ b/src/chrome/content/rules/BGR.bund.de.xml @@ -0,0 +1,11 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/BGR.com.xml b/src/chrome/content/rules/BGR.com.xml index 789515e081ac..8f18b235d500 100644 --- a/src/chrome/content/rules/BGR.com.xml +++ b/src/chrome/content/rules/BGR.com.xml @@ -1,32 +1,56 @@ - - - + - - - + + + + + + + + + + + + + + + + + - + - + + + diff --git a/src/chrome/content/rules/BGR.de.xml b/src/chrome/content/rules/BGR.de.xml new file mode 100644 index 000000000000..3e6d8c43cb9f --- /dev/null +++ b/src/chrome/content/rules/BGR.de.xml @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/BGamed.de.xml b/src/chrome/content/rules/BGamed.de.xml index 45a2030cf5e4..757afc378e07 100644 --- a/src/chrome/content/rules/BGamed.de.xml +++ b/src/chrome/content/rules/BGamed.de.xml @@ -31,4 +31,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/BHosted.nl.xml b/src/chrome/content/rules/BHosted.nl.xml deleted file mode 100644 index e8873a7b5084..000000000000 --- a/src/chrome/content/rules/BHosted.nl.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/BHosting.ru.xml b/src/chrome/content/rules/BHosting.ru.xml index adce66231989..bd89e807a2f0 100644 --- a/src/chrome/content/rules/BHosting.ru.xml +++ b/src/chrome/content/rules/BHosting.ru.xml @@ -14,4 +14,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/BIBB.de.xml b/src/chrome/content/rules/BIBB.de.xml new file mode 100644 index 000000000000..610f3fe84a6a --- /dev/null +++ b/src/chrome/content/rules/BIBB.de.xml @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/BIGO.xml b/src/chrome/content/rules/BIGO.xml index 94e72a6be707..131d44ae7772 100644 --- a/src/chrome/content/rules/BIGO.xml +++ b/src/chrome/content/rules/BIGO.xml @@ -1,8 +1,7 @@ - + - + - diff --git a/src/chrome/content/rules/BIKT.xml b/src/chrome/content/rules/BIKT.xml index 767e2af346df..d2b012d72c80 100644 --- a/src/chrome/content/rules/BIKT.xml +++ b/src/chrome/content/rules/BIKT.xml @@ -14,4 +14,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/BIO-International-Convention.xml b/src/chrome/content/rules/BIO-International-Convention.xml index 9f7b5c73aa43..c9161b68a769 100644 --- a/src/chrome/content/rules/BIO-International-Convention.xml +++ b/src/chrome/content/rules/BIO-International-Convention.xml @@ -37,7 +37,7 @@ Fetch error: http://bio.org/ => https://bio.org/: (51, "SSL: no alternative cert * Secured by us --> - + @@ -54,7 +54,7 @@ Fetch error: http://bio.org/ => https://bio.org/: (51, "SSL: no alternative cert - + - + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/BKGE.de.xml b/src/chrome/content/rules/BKGE.de.xml new file mode 100644 index 000000000000..45f43dec68a6 --- /dev/null +++ b/src/chrome/content/rules/BKGE.de.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/BLOX.xml b/src/chrome/content/rules/BLOX.xml index d72aeaa4426b..5d9c40708aca 100644 --- a/src/chrome/content/rules/BLOX.xml +++ b/src/chrome/content/rules/BLOX.xml @@ -6,4 +6,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/BMAS.de.xml b/src/chrome/content/rules/BMAS.de.xml new file mode 100644 index 000000000000..7eba2e0490d2 --- /dev/null +++ b/src/chrome/content/rules/BMAS.de.xml @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/BMC.com.xml b/src/chrome/content/rules/BMC.com.xml index 36ab335cafdf..5e4e952716c4 100644 --- a/src/chrome/content/rules/BMC.com.xml +++ b/src/chrome/content/rules/BMC.com.xml @@ -24,7 +24,11 @@ - + + + + + - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/BME.hu.xml b/src/chrome/content/rules/BME.hu.xml deleted file mode 100644 index b76b3955637e..000000000000 --- a/src/chrome/content/rules/BME.hu.xml +++ /dev/null @@ -1,154 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/BME.hu_incomplete.xml b/src/chrome/content/rules/BME.hu_incomplete.xml deleted file mode 100644 index ffba1d993f6d..000000000000 --- a/src/chrome/content/rules/BME.hu_incomplete.xml +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/BMF-Steuerrechner.de.xml b/src/chrome/content/rules/BMF-Steuerrechner.de.xml index b85b111f8478..ab9812537b4a 100644 --- a/src/chrome/content/rules/BMF-Steuerrechner.de.xml +++ b/src/chrome/content/rules/BMF-Steuerrechner.de.xml @@ -2,7 +2,7 @@ - + diff --git a/src/chrome/content/rules/BMFSFJ.de.xml b/src/chrome/content/rules/BMFSFJ.de.xml new file mode 100644 index 000000000000..7b6821af518b --- /dev/null +++ b/src/chrome/content/rules/BMFSFJ.de.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/BMU.de.xml b/src/chrome/content/rules/BMU.de.xml new file mode 100644 index 000000000000..b963dfe41770 --- /dev/null +++ b/src/chrome/content/rules/BMU.de.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/BMVg.de.xml b/src/chrome/content/rules/BMVg.de.xml new file mode 100644 index 000000000000..c47836be48cd --- /dev/null +++ b/src/chrome/content/rules/BMVg.de.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/BMWi.de.xml b/src/chrome/content/rules/BMWi.de.xml new file mode 100644 index 000000000000..077ba79fef27 --- /dev/null +++ b/src/chrome/content/rules/BMWi.de.xml @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/BMZ.de.xml b/src/chrome/content/rules/BMZ.de.xml new file mode 100644 index 000000000000..286da2935230 --- /dev/null +++ b/src/chrome/content/rules/BMZ.de.xml @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/BM_Pharmacy.xml b/src/chrome/content/rules/BM_Pharmacy.xml deleted file mode 100644 index bccc90f74299..000000000000 --- a/src/chrome/content/rules/BM_Pharmacy.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/BNN.de.xml b/src/chrome/content/rules/BNN.de.xml new file mode 100644 index 000000000000..a8bd9f58a263 --- /dev/null +++ b/src/chrome/content/rules/BNN.de.xml @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/BNZ.xml b/src/chrome/content/rules/BNZ.xml index f44194187e11..ccbce5026dcc 100644 --- a/src/chrome/content/rules/BNZ.xml +++ b/src/chrome/content/rules/BNZ.xml @@ -12,7 +12,7 @@ - + - + - + diff --git a/src/chrome/content/rules/BPS.xml b/src/chrome/content/rules/BPS.xml index 8ef41f761eff..3f64e9b56ee6 100644 --- a/src/chrome/content/rules/BPS.xml +++ b/src/chrome/content/rules/BPS.xml @@ -40,7 +40,7 @@ - + + + + + + + + + + + + - + + + + + + + + + + + + diff --git a/src/chrome/content/rules/BRChan.xml b/src/chrome/content/rules/BRChan.xml index 68558eefcf0a..f11a7a49580e 100644 --- a/src/chrome/content/rules/BRChan.xml +++ b/src/chrome/content/rules/BRChan.xml @@ -1,7 +1,7 @@ - - - - - - + + + + + + diff --git a/src/chrome/content/rules/BSD.lv.xml b/src/chrome/content/rules/BSD.lv.xml new file mode 100644 index 000000000000..92897f4c0dcf --- /dev/null +++ b/src/chrome/content/rules/BSD.lv.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/BSD_Consulting.co.jp.xml b/src/chrome/content/rules/BSD_Consulting.co.jp.xml index fbf84745da9f..dacfe2e9f0b1 100644 --- a/src/chrome/content/rules/BSD_Consulting.co.jp.xml +++ b/src/chrome/content/rules/BSD_Consulting.co.jp.xml @@ -6,12 +6,11 @@ Fetch error: http://www.bsdconsulting.co.jp/ => https://www.bsdconsulting.co.jp/ ^bsdconsulting.co.jp doesn't exist. --> - + - + diff --git a/src/chrome/content/rules/BSH.de.xml b/src/chrome/content/rules/BSH.de.xml new file mode 100644 index 000000000000..efef9a2a61e6 --- /dev/null +++ b/src/chrome/content/rules/BSH.de.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/BSWA.xml b/src/chrome/content/rules/BSWA.xml deleted file mode 100644 index 5de49a3d58f7..000000000000 --- a/src/chrome/content/rules/BSWA.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/BSidesLV.org.xml b/src/chrome/content/rules/BSidesLV.org.xml index 38f507104bbe..70b0400f7592 100644 --- a/src/chrome/content/rules/BSidesLV.org.xml +++ b/src/chrome/content/rules/BSidesLV.org.xml @@ -25,7 +25,7 @@ --> - + https://www.bsidesslc.org/: (60, 'SSL * Secured by us --> - + @@ -19,7 +19,7 @@ Fetch error: http://www.bsidesslc.org/ => https://www.bsidesslc.org/: (60, 'SSL - + - + - + https://www.redcare.com/: (7, 'Failed ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -153,7 +153,7 @@ Fetch error: http://www.redcare.bt.com/ => https://www.redcare.com/: (7, 'Failed - + https://btcbuy.info/: (7, 'Failed to connect to btcbuy.info port 443: Connection refused') -Fetch error: http://www.btcbuy.info/ => https://www.btcbuy.info/: (7, 'Failed to connect to www.btcbuy.info port 443: Connection refused') - -Disabled by https-everywhere-checker because: -Fetch error: http://btcbuy.info/ => https://btcbuy.info/: (28, 'Connection timed out after 10000 milliseconds') -Fetch error: http://www.btcbuy.info/ => https://www.btcbuy.info/: (28, 'Connection timed out after 10000 milliseconds') ---> - - - - - - - - diff --git a/src/chrome/content/rules/BTC100.com.xml b/src/chrome/content/rules/BTC100.com.xml index b2376df499dd..505742cae28c 100644 --- a/src/chrome/content/rules/BTC100.com.xml +++ b/src/chrome/content/rules/BTC100.com.xml @@ -2,7 +2,7 @@ NB: Server sends no certificate chain, see https://whatsmychaincert.com --> - + diff --git a/src/chrome/content/rules/BTCChina.com.xml b/src/chrome/content/rules/BTCChina.com.xml deleted file mode 100644 index 3bd710fd3fa3..000000000000 --- a/src/chrome/content/rules/BTCChina.com.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/BTCGreece.com.xml b/src/chrome/content/rules/BTCGreece.com.xml index 5533fac3e3a0..4c31f0f6a476 100644 --- a/src/chrome/content/rules/BTCGreece.com.xml +++ b/src/chrome/content/rules/BTCGreece.com.xml @@ -12,7 +12,7 @@ Fetch error: http://www.btcgreece.com/ => https://www.btcgreece.com/: (35, 'erro ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -22,7 +22,7 @@ Fetch error: http://www.btcgreece.com/ => https://www.btcgreece.com/: (35, 'erro --> - + - - - - - - - - - - - - + + diff --git a/src/chrome/content/rules/BTCKan.com.xml b/src/chrome/content/rules/BTCKan.com.xml index 7430ac3aa443..f78c07d01b59 100644 --- a/src/chrome/content/rules/BTCKan.com.xml +++ b/src/chrome/content/rules/BTCKan.com.xml @@ -5,7 +5,7 @@ Fetch error: http://btckan.com/ => https://btckan.com/: (51, "SSL: no alternativ Fetch error: http://www.btckan.com/ => https://www.btckan.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.btckan.com'") --> - + @@ -14,7 +14,7 @@ Fetch error: http://www.btckan.com/ => https://www.btckan.com/: (51, "SSL: no al - + https://btczone.com/: (28, 'Connection timed out after 10000 milliseconds') -Fetch error: http://www.btczone.com/ => https://www.btczone.com/: (28, 'Connection timed out after 10000 milliseconds') - ---> - - - - - - - - - - - - diff --git a/src/chrome/content/rules/BTC_Gear.com.xml b/src/chrome/content/rules/BTC_Gear.com.xml index 48182cc70f55..cbd23ae20bc3 100644 --- a/src/chrome/content/rules/BTC_Gear.com.xml +++ b/src/chrome/content/rules/BTC_Gear.com.xml @@ -13,7 +13,7 @@ Fetch error: http://btcgear.com/ => https://btcgear.com/: (60, 'SSL certificate * Secured by us --> - + diff --git a/src/chrome/content/rules/BTC_Media.org.xml b/src/chrome/content/rules/BTC_Media.org.xml index 69c63982ed2f..700428b81f4c 100644 --- a/src/chrome/content/rules/BTC_Media.org.xml +++ b/src/chrome/content/rules/BTC_Media.org.xml @@ -1,7 +1,6 @@ - + - + - + + + - + diff --git a/src/chrome/content/rules/BTR_static.com.xml b/src/chrome/content/rules/BTR_static.com.xml index f8de78a73e71..40646876640d 100644 --- a/src/chrome/content/rules/BTR_static.com.xml +++ b/src/chrome/content/rules/BTR_static.com.xml @@ -9,10 +9,11 @@ --> - + + + - + diff --git a/src/chrome/content/rules/BTToronto.ca.xml b/src/chrome/content/rules/BTToronto.ca.xml new file mode 100644 index 000000000000..7a670dd3831e --- /dev/null +++ b/src/chrome/content/rules/BTToronto.ca.xml @@ -0,0 +1,18 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/BT_Sport.xml b/src/chrome/content/rules/BT_Sport.xml index 688bb8e2c807..6d130f308ee9 100644 --- a/src/chrome/content/rules/BT_Sport.xml +++ b/src/chrome/content/rules/BT_Sport.xml @@ -19,7 +19,7 @@ - + - + - + - + + + + + + - - - - - - - - + - \ No newline at end of file + + diff --git a/src/chrome/content/rules/BTunnel.xml b/src/chrome/content/rules/BTunnel.xml index 619efeac4d37..d51f36d1cd3d 100644 --- a/src/chrome/content/rules/BTunnel.xml +++ b/src/chrome/content/rules/BTunnel.xml @@ -5,11 +5,11 @@ Fetch error: http://btunnel.com/ => https://btunnel.com/: (51, "SSL: no alternat Fetch error: http://www.btunnel.com/ => https://btunnel.com/: (51, "SSL: no alternative certificate subject name matches target host name 'btunnel.com'") --> - + - + diff --git a/src/chrome/content/rules/BU.edu.xml b/src/chrome/content/rules/BU.edu.xml new file mode 100644 index 000000000000..9e5460d1a755 --- /dev/null +++ b/src/chrome/content/rules/BU.edu.xml @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/BUNTE.de.xml b/src/chrome/content/rules/BUNTE.de.xml new file mode 100644 index 000000000000..9fb55ac5d417 --- /dev/null +++ b/src/chrome/content/rules/BUNTE.de.xml @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/BVG.de.xml b/src/chrome/content/rules/BVG.de.xml index 283b9d440f91..1e4f42a59c02 100644 --- a/src/chrome/content/rules/BVG.de.xml +++ b/src/chrome/content/rules/BVG.de.xml @@ -9,7 +9,7 @@ Fetch error: http://track.bvg.de/ => https://track.bvg.de/: (60, 'SSL certificat - owa.bvg.de (not working) - unternehmen.prelive.bvg.de (cert mismatch) --> - + diff --git a/src/chrome/content/rules/BVI_Photo_Video.com.xml b/src/chrome/content/rules/BVI_Photo_Video.com.xml deleted file mode 100644 index aebead1e0c86..000000000000 --- a/src/chrome/content/rules/BVI_Photo_Video.com.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/BX.in.th.xml b/src/chrome/content/rules/BX.in.th.xml deleted file mode 100644 index 6fe180799718..000000000000 --- a/src/chrome/content/rules/BX.in.th.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/BYO.com.xml b/src/chrome/content/rules/BYO.com.xml index fa03ae3e6a7a..9df3caa203dd 100644 --- a/src/chrome/content/rules/BYO.com.xml +++ b/src/chrome/content/rules/BYO.com.xml @@ -3,7 +3,7 @@ - + diff --git a/src/chrome/content/rules/BYU.edu.xml b/src/chrome/content/rules/BYU.edu.xml index d29a6bdabde2..981ab818610e 100644 --- a/src/chrome/content/rules/BYU.edu.xml +++ b/src/chrome/content/rules/BYU.edu.xml @@ -21,7 +21,6 @@ - dvagalleries.byu.edu SSL peer certificate was not OK: - - aims.byu.edu - asiane.byu.edu - cal.byu.edu - english.byu.edu @@ -41,16 +40,22 @@ Peer certificate cannot be authenticated with given CA certificates: - afrotc.byu.edu - - art.byu.edu - - designdept.byu.edu + - unicomm.byu.edu + Incomplete certificate chain error: - www.law.byu.edu - studentratings.byu.edu + - education.byu.edu + - ece.byu.edu + - www.ece.byu.edu + - ee.byu.edu + - www.ee.byu.edu Status code mismatch: - econ.byu.edu - mpc.byu.edu + - geography.byu.edu Different content: - core.byu.edu @@ -69,11 +74,13 @@ + + @@ -92,10 +99,12 @@ - + + + + + - - @@ -106,7 +115,6 @@ - @@ -155,8 +163,6 @@ - - diff --git a/src/chrome/content/rules/BZ-Berlin.de.xml b/src/chrome/content/rules/BZ-Berlin.de.xml new file mode 100644 index 000000000000..b3977294059f --- /dev/null +++ b/src/chrome/content/rules/BZ-Berlin.de.xml @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/B_E_Smith.xml b/src/chrome/content/rules/B_E_Smith.xml index 00e4b211b821..d44cbcad48aa 100644 --- a/src/chrome/content/rules/B_E_Smith.xml +++ b/src/chrome/content/rules/B_E_Smith.xml @@ -9,16 +9,19 @@ Fetch error: http://besmith.com/ => https://besmith.com/: (51, "SSL: no alternat - + + + + + - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Babbel.com-falsemixed.xml b/src/chrome/content/rules/Babbel.com-falsemixed.xml index be6a20e1eca1..bf455972a66a 100644 --- a/src/chrome/content/rules/Babbel.com-falsemixed.xml +++ b/src/chrome/content/rules/Babbel.com-falsemixed.xml @@ -7,7 +7,7 @@ - + - + + + + + + + + + diff --git a/src/chrome/content/rules/BabyMed.com.xml b/src/chrome/content/rules/BabyMed.com.xml index 2992eda07e1c..0fc8fd74f9c6 100644 --- a/src/chrome/content/rules/BabyMed.com.xml +++ b/src/chrome/content/rules/BabyMed.com.xml @@ -16,4 +16,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Babylon.xml b/src/chrome/content/rules/Babylon.xml index def1456c6221..20da1492870c 100644 --- a/src/chrome/content/rules/Babylon.xml +++ b/src/chrome/content/rules/Babylon.xml @@ -13,7 +13,7 @@ - + diff --git a/src/chrome/content/rules/Backcountry.com.xml b/src/chrome/content/rules/Backcountry.com.xml index c1b4b8443785..cbb98722788a 100644 --- a/src/chrome/content/rules/Backcountry.com.xml +++ b/src/chrome/content/rules/Backcountry.com.xml @@ -12,7 +12,12 @@ - + + + + + + diff --git a/src/chrome/content/rules/Backdrift.org.xml b/src/chrome/content/rules/Backdrift.org.xml new file mode 100644 index 000000000000..f0a4d5903673 --- /dev/null +++ b/src/chrome/content/rules/Backdrift.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Backloggery.com.xml b/src/chrome/content/rules/Backloggery.com.xml index e320c2f38a49..5733417218c5 100644 --- a/src/chrome/content/rules/Backloggery.com.xml +++ b/src/chrome/content/rules/Backloggery.com.xml @@ -2,6 +2,6 @@ - diff --git a/src/chrome/content/rules/Backpack.tf.xml b/src/chrome/content/rules/Backpack.tf.xml index 924850c755bb..7ef43779efcf 100644 --- a/src/chrome/content/rules/Backpack.tf.xml +++ b/src/chrome/content/rules/Backpack.tf.xml @@ -1,14 +1,11 @@ - - - + + + diff --git a/src/chrome/content/rules/BackpackersLucerne.ch.xml b/src/chrome/content/rules/BackpackersLucerne.ch.xml new file mode 100644 index 000000000000..c8c96b708b33 --- /dev/null +++ b/src/chrome/content/rules/BackpackersLucerne.ch.xml @@ -0,0 +1,11 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Backpackers_Lucerne.xml b/src/chrome/content/rules/Backpackers_Lucerne.xml deleted file mode 100644 index 1bd50fc3b162..000000000000 --- a/src/chrome/content/rules/Backpackers_Lucerne.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Backstreet-International-Merchandise.xml b/src/chrome/content/rules/Backstreet-International-Merchandise.xml index 86e31f74900f..95a347ae5cb6 100644 --- a/src/chrome/content/rules/Backstreet-International-Merchandise.xml +++ b/src/chrome/content/rules/Backstreet-International-Merchandise.xml @@ -30,7 +30,7 @@ --> - + - + diff --git a/src/chrome/content/rules/BadgeKit.org.xml b/src/chrome/content/rules/BadgeKit.org.xml index cd86e2e42e66..efa0ad0f4504 100644 --- a/src/chrome/content/rules/BadgeKit.org.xml +++ b/src/chrome/content/rules/BadgeKit.org.xml @@ -24,7 +24,7 @@ Fetch error: http://api.badgekit.org/ => https://api.badgekit.org/: (6, 'Could n - badgekit.org --> - + diff --git a/src/chrome/content/rules/Badgeville.com-problematic.xml b/src/chrome/content/rules/Badgeville.com-problematic.xml index 872794e1d0b5..db0830936ff2 100644 --- a/src/chrome/content/rules/Badgeville.com-problematic.xml +++ b/src/chrome/content/rules/Badgeville.com-problematic.xml @@ -5,7 +5,8 @@ - + + @@ -14,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Badgeville.com.xml b/src/chrome/content/rules/Badgeville.com.xml deleted file mode 100644 index b885031bf18d..000000000000 --- a/src/chrome/content/rules/Badgeville.com.xml +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Bagatoo.se.xml b/src/chrome/content/rules/Bagatoo.se.xml index 413a40934dc5..01cb8fcde661 100644 --- a/src/chrome/content/rules/Bagatoo.se.xml +++ b/src/chrome/content/rules/Bagatoo.se.xml @@ -8,10 +8,9 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.bagatoo.se/ => https://www.bagatoo.se/: Cycle detected - URL already encountered: https://bagatoo.se/ Fetch error: http://bagatoo.se/ => https://bagatoo.se/: Cycle detected - URL already encountered: https://bagatoo.se/ --> - + - - + diff --git a/src/chrome/content/rules/Bagnet.org.xml b/src/chrome/content/rules/Bagnet.org.xml index a52286c78873..25dbd83dfbfd 100644 --- a/src/chrome/content/rules/Bagnet.org.xml +++ b/src/chrome/content/rules/Bagnet.org.xml @@ -11,7 +11,7 @@ Fetch error: http://bagnet.org/ => https://bagnet.org/: (7, 'Failed to connect t * Shows www --> - + diff --git a/src/chrome/content/rules/Bahiaoui.net.xml b/src/chrome/content/rules/Bahiaoui.net.xml new file mode 100644 index 000000000000..3f462e285d7f --- /dev/null +++ b/src/chrome/content/rules/Bahiaoui.net.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Bahn.de.xml b/src/chrome/content/rules/Bahn.de.xml index 67a037dc85b4..e705dbafbb14 100644 --- a/src/chrome/content/rules/Bahn.de.xml +++ b/src/chrome/content/rules/Bahn.de.xml @@ -16,9 +16,9 @@ - + - + diff --git a/src/chrome/content/rules/Bahnhof.se.xml b/src/chrome/content/rules/Bahnhof.se.xml new file mode 100644 index 000000000000..d762a5e6c983 --- /dev/null +++ b/src/chrome/content/rules/Bahnhof.se.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Baidu.xml b/src/chrome/content/rules/Baidu.xml index 5f25b5fb375f..d0900b9850d7 100644 --- a/src/chrome/content/rules/Baidu.xml +++ b/src/chrome/content/rules/Baidu.xml @@ -1,190 +1,129 @@ - - + - - - + + - - - - + + + + @@ -194,12 +133,20 @@ - + + + + + + + + + @@ -214,39 +161,40 @@ + + - - - + + - - + + + + + + - - - @@ -258,20 +206,77 @@ + + + + + + + + + + + + + + - + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + @@ -281,17 +286,5 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Baidu_CN.xml b/src/chrome/content/rules/Baidu_CN.xml deleted file mode 100644 index affa451b32e4..000000000000 --- a/src/chrome/content/rules/Baidu_CN.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Baker-and-Taylor.xml b/src/chrome/content/rules/Baker-and-Taylor.xml index 93ae2fe8163d..49204177ce98 100644 --- a/src/chrome/content/rules/Baker-and-Taylor.xml +++ b/src/chrome/content/rules/Baker-and-Taylor.xml @@ -10,7 +10,7 @@ - + https://ipd.aws.bakerlab.org/: (60, 'SSL certificate problem: certificate has expired') -Fetch error: http://tools.bakerlab.org/ => https://tools.bakerlab.org/: (28, 'Connection timed out after 20000 milliseconds') -Fetch error: http://ws1.bakerlab.org/ => https://ws1.bakerlab.org/: (28, 'Connection timed out after 20000 milliseconds') -Fetch error: http://ws2.bakerlab.org/ => https://ws2.bakerlab.org/: (28, 'Connection timed out after 20000 milliseconds') - Timeout: - (d)?ns[\d].bakerlab.org @@ -16,11 +9,11 @@ Fetch error: http://ws2.bakerlab.org/ => https://ws2.bakerlab.org/: (28, 'Connec - robetta.bakerlab.org - rosettaserver.bakerlab.org --> - + + - @@ -30,10 +23,6 @@ Fetch error: http://ws2.bakerlab.org/ => https://ws2.bakerlab.org/: (28, 'Connec - - - - diff --git a/src/chrome/content/rules/BalaBit.com.xml b/src/chrome/content/rules/BalaBit.com.xml index a1e690406160..263d461fba44 100644 --- a/src/chrome/content/rules/BalaBit.com.xml +++ b/src/chrome/content/rules/BalaBit.com.xml @@ -45,7 +45,7 @@ - + - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Baldershage.se.xml b/src/chrome/content/rules/Baldershage.se.xml index 93708805bf6c..fbeec94c6c3f 100644 --- a/src/chrome/content/rules/Baldershage.se.xml +++ b/src/chrome/content/rules/Baldershage.se.xml @@ -4,10 +4,9 @@ Disabled by https-everywhere-checker because: Non-2xx HTTP code: http://baldershage.se/ (200) => https://baldershage.se/ (404) --> - + - - + diff --git a/src/chrome/content/rules/Balkan_Leaks.xml b/src/chrome/content/rules/Balkan_Leaks.xml index ba3b4c2c53ed..22641a042587 100644 --- a/src/chrome/content/rules/Balkan_Leaks.xml +++ b/src/chrome/content/rules/Balkan_Leaks.xml @@ -7,7 +7,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://balkanleaks.eu/ => https://balkanleaks.eu/: (60, 'SSL certificate problem: certificate has expired') Fetch error: http://www.balkanleaks.eu/ => https://www.balkanleaks.eu/: (60, 'SSL certificate problem: certificate has expired') --> - + @@ -18,4 +18,4 @@ Fetch error: http://www.balkanleaks.eu/ => https://www.balkanleaks.eu/: (60, 'SS - \ No newline at end of file + diff --git a/src/chrome/content/rules/Balkongshoppen.se.xml b/src/chrome/content/rules/Balkongshoppen.se.xml index ff271067490a..ed0e7676262e 100644 --- a/src/chrome/content/rules/Balkongshoppen.se.xml +++ b/src/chrome/content/rules/Balkongshoppen.se.xml @@ -1,7 +1,6 @@ - - + diff --git a/src/chrome/content/rules/Ballot_Measure_Domains.xml b/src/chrome/content/rules/Ballot_Measure_Domains.xml index 731700872af9..771ac1f395d3 100644 --- a/src/chrome/content/rules/Ballot_Measure_Domains.xml +++ b/src/chrome/content/rules/Ballot_Measure_Domains.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://ballotmeasuredomains.com/ => https://ballotmeasuredomains.com/: (28, 'Connection timed out after 10001 milliseconds') Fetch error: http://www.ballotmeasuredomains.com/ => https://www.ballotmeasuredomains.com/: (28, 'Connection timed out after 10000 milliseconds') --> - + @@ -19,4 +19,4 @@ Fetch error: http://www.ballotmeasuredomains.com/ => https://www.ballotmeasuredo - \ No newline at end of file + diff --git a/src/chrome/content/rules/Ballou.xml b/src/chrome/content/rules/Ballou.xml index f6496b4a6393..c90c652c6eeb 100644 --- a/src/chrome/content/rules/Ballou.xml +++ b/src/chrome/content/rules/Ballou.xml @@ -32,16 +32,23 @@ - + + + + + + + + + - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Banca-Intesa-Beograd.xml b/src/chrome/content/rules/Banca-Intesa-Beograd.xml new file mode 100644 index 000000000000..a85a38261dcd --- /dev/null +++ b/src/chrome/content/rules/Banca-Intesa-Beograd.xml @@ -0,0 +1,17 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Bancomer.com.xml b/src/chrome/content/rules/Bancomer.com.xml new file mode 100644 index 000000000000..0faddd48ef8f --- /dev/null +++ b/src/chrome/content/rules/Bancomer.com.xml @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Bandcamp.xml b/src/chrome/content/rules/Bandcamp.xml index 3f0d4172b67d..862f031afe0b 100644 --- a/src/chrome/content/rules/Bandcamp.xml +++ b/src/chrome/content/rules/Bandcamp.xml @@ -32,4 +32,4 @@ - + diff --git a/src/chrome/content/rules/Bandinelli.net.xml b/src/chrome/content/rules/Bandinelli.net.xml index 6e91f2cb6cc0..a2d0c963da6e 100644 --- a/src/chrome/content/rules/Bandinelli.net.xml +++ b/src/chrome/content/rules/Bandinelli.net.xml @@ -11,7 +11,7 @@ Fetch error: http://www.bandinelli.net/ => https://www.bandinelli.net/: (51, "SS * Secured by us --> - + diff --git a/src/chrome/content/rules/Bandisoft.xml b/src/chrome/content/rules/Bandisoft.xml index ea9af1e6780e..685303b4fb7b 100644 --- a/src/chrome/content/rules/Bandisoft.xml +++ b/src/chrome/content/rules/Bandisoft.xml @@ -7,7 +7,7 @@ Fetch error: http://bandisoft-dl.bandicam.cn/ => https://bandisoft-dl.bandicam.c - blog. --> - + @@ -15,11 +15,11 @@ Fetch error: http://bandisoft-dl.bandicam.cn/ => https://bandisoft-dl.bandicam.c - + - - + + diff --git a/src/chrome/content/rules/Banggood.com.xml b/src/chrome/content/rules/Banggood.com.xml new file mode 100644 index 000000000000..ec6abe9ebe2e --- /dev/null +++ b/src/chrome/content/rules/Banggood.com.xml @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Bangor-University-self-signed.xml b/src/chrome/content/rules/Bangor-University-self-signed.xml index c20dec341e5d..03d650dfd1cc 100644 --- a/src/chrome/content/rules/Bangor-University-self-signed.xml +++ b/src/chrome/content/rules/Bangor-University-self-signed.xml @@ -8,7 +8,6 @@ - + diff --git a/src/chrome/content/rules/Bangor-University.xml b/src/chrome/content/rules/Bangor-University.xml index 2080f235864a..3669157bff32 100644 --- a/src/chrome/content/rules/Bangor-University.xml +++ b/src/chrome/content/rules/Bangor-University.xml @@ -21,6 +21,13 @@ - repository - studyskills (cert: www.bangor.ac.uk; shows www's data) + Connection Refused + - bangorportal.bangor + - forum + - inside + - intranet + - webmail + - (www.)edeandravenscroft.co.uk (ssl_error_rx_record_too_long) - (www.)www.pontio.co.uk (cert: www.bangor.ac.uk; shows that domain's data) @@ -32,21 +39,19 @@ - - - - - + + + + - - - + + + diff --git a/src/chrome/content/rules/BangorDailyNews.com.xml b/src/chrome/content/rules/BangorDailyNews.com.xml new file mode 100644 index 000000000000..96ff6aa7f047 --- /dev/null +++ b/src/chrome/content/rules/BangorDailyNews.com.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Bangor_Daily_News.xml b/src/chrome/content/rules/Bangor_Daily_News.xml deleted file mode 100644 index 17082bdb81f4..000000000000 --- a/src/chrome/content/rules/Bangor_Daily_News.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Bank_of_America.com.xml b/src/chrome/content/rules/Bank_of_America.com.xml index 994b18b3b67f..914681f038f9 100644 --- a/src/chrome/content/rules/Bank_of_America.com.xml +++ b/src/chrome/content/rules/Bank_of_America.com.xml @@ -27,7 +27,7 @@ Secure connection redirects to plaintext: - about.bankofamerica.com - promo.bankofamerica.com - + Mixed content blocking (MCB) tiggered: - homeloanhelp.bankofamerica.com --> diff --git a/src/chrome/content/rules/Bank_of_Taipei.com.tw.xml b/src/chrome/content/rules/Bank_of_Taipei.com.tw.xml deleted file mode 100644 index f62d633d46f1..000000000000 --- a/src/chrome/content/rules/Bank_of_Taipei.com.tw.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Banki.ru.xml b/src/chrome/content/rules/Banki.ru.xml index f6f9c623edd3..bd2a624d4cd3 100644 --- a/src/chrome/content/rules/Banki.ru.xml +++ b/src/chrome/content/rules/Banki.ru.xml @@ -9,6 +9,6 @@ - + diff --git a/src/chrome/content/rules/Banking.co.at.xml b/src/chrome/content/rules/Banking.co.at.xml index b63d1a428766..2afc4a94e0f4 100644 --- a/src/chrome/content/rules/Banking.co.at.xml +++ b/src/chrome/content/rules/Banking.co.at.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://banking.co.at/ => https://banking.co.at/: (6, 'Could not resolve host: banking.co.at') --> - + diff --git a/src/chrome/content/rules/Bankinter.com.xml b/src/chrome/content/rules/Bankinter.com.xml index 9db20e9c5315..232fe9039c40 100644 --- a/src/chrome/content/rules/Bankinter.com.xml +++ b/src/chrome/content/rules/Bankinter.com.xml @@ -20,7 +20,7 @@ Fetch error: http://www.gneis.bankinter.com/ => https://www.gneis.bankinter.com/ * validator.bankinter.com * www.masterclassoceanosazules.bankinter.com --> - + diff --git a/src/chrome/content/rules/Bankrate.com.xml b/src/chrome/content/rules/Bankrate.com.xml index e73a5222d97f..fc76ebec1bff 100644 --- a/src/chrome/content/rules/Bankrate.com.xml +++ b/src/chrome/content/rules/Bankrate.com.xml @@ -8,12 +8,12 @@ Disabled by https-everywhere-checker because: Fetch error: http://bankrate.com/ => https://origin.bankrate.com/: Cycle detected - URL already encountered: https://origin.bankrate.com/ Fetch error: http://www.bankrate.com/ => https://origin.bankrate.com/: Cycle detected - URL already encountered: https://origin.bankrate.com/ --> - + - + diff --git a/src/chrome/content/rules/Bankuralsib.ru.xml b/src/chrome/content/rules/Bankuralsib.ru.xml deleted file mode 100644 index d4b3a670eaec..000000000000 --- a/src/chrome/content/rules/Bankuralsib.ru.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/BannerSnack.com.xml b/src/chrome/content/rules/BannerSnack.com.xml index 4e46d03d7a17..6d6738b83d49 100644 --- a/src/chrome/content/rules/BannerSnack.com.xml +++ b/src/chrome/content/rules/BannerSnack.com.xml @@ -1,39 +1,16 @@ - - - - - - - - + - + + diff --git a/src/chrome/content/rules/Banque_CIC.xml b/src/chrome/content/rules/Banque_CIC.xml index 58ca7983e121..94954d0bdbfe 100644 --- a/src/chrome/content/rules/Banque_CIC.xml +++ b/src/chrome/content/rules/Banque_CIC.xml @@ -2,7 +2,7 @@ - + diff --git a/src/chrome/content/rules/Banque_CIC_Suisse.xml b/src/chrome/content/rules/Banque_CIC_Suisse.xml index f61d75132532..184729d33b3b 100644 --- a/src/chrome/content/rules/Banque_CIC_Suisse.xml +++ b/src/chrome/content/rules/Banque_CIC_Suisse.xml @@ -3,7 +3,7 @@ - + diff --git a/src/chrome/content/rules/Banque_Cantonale_du_Valais.xml b/src/chrome/content/rules/Banque_Cantonale_du_Valais.xml index e7a11bcfb99e..316a6f7355b5 100644 --- a/src/chrome/content/rules/Banque_Cantonale_du_Valais.xml +++ b/src/chrome/content/rules/Banque_Cantonale_du_Valais.xml @@ -1,17 +1,35 @@ + - - - - + + + + + + + + + + + + + + - + - - - - + + + + diff --git a/src/chrome/content/rules/Banu.com.xml b/src/chrome/content/rules/Banu.com.xml index db6442d41674..a5bac6d35b91 100644 --- a/src/chrome/content/rules/Banu.com.xml +++ b/src/chrome/content/rules/Banu.com.xml @@ -29,13 +29,17 @@ Fetch error: http://banu.com/ => https://banu.com/: (28, 'Connection timed out a - + + + + + + - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Banx.io.xml b/src/chrome/content/rules/Banx.io.xml deleted file mode 100644 index 8a4b0aa5f645..000000000000 --- a/src/chrome/content/rules/Banx.io.xml +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Barclays.co.uk.xml b/src/chrome/content/rules/Barclays.co.uk.xml new file mode 100644 index 000000000000..57b08001092a --- /dev/null +++ b/src/chrome/content/rules/Barclays.co.uk.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Barclays.xml b/src/chrome/content/rules/Barclays.xml deleted file mode 100644 index 6e8d859d647e..000000000000 --- a/src/chrome/content/rules/Barclays.xml +++ /dev/null @@ -1,72 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Barclays_Corporate.com.xml b/src/chrome/content/rules/Barclays_Corporate.com.xml index dd5331a110b2..c9fe2507f277 100644 --- a/src/chrome/content/rules/Barclays_Corporate.com.xml +++ b/src/chrome/content/rules/Barclays_Corporate.com.xml @@ -11,7 +11,7 @@ Fetch error: http://barclayscorporate.com/ => https://www.barclayscorporate.com/ ^barclayscorporate.com: Mismatched --> - + diff --git a/src/chrome/content/rules/Barcleycard.co.uk.xml b/src/chrome/content/rules/Barcleycard.co.uk.xml index 7b73686ff551..e8a394873ab3 100644 --- a/src/chrome/content/rules/Barcleycard.co.uk.xml +++ b/src/chrome/content/rules/Barcleycard.co.uk.xml @@ -43,7 +43,7 @@ - + http://bardwilhome.com/: Redirect for 'h - \ No newline at end of file + diff --git a/src/chrome/content/rules/BareMetal.xml b/src/chrome/content/rules/BareMetal.xml index 118d1ac36c49..62f6015ad4d4 100644 --- a/src/chrome/content/rules/BareMetal.xml +++ b/src/chrome/content/rules/BareMetal.xml @@ -7,13 +7,13 @@ - + + - + - + diff --git a/src/chrome/content/rules/Bareos.xml b/src/chrome/content/rules/Bareos.xml index a6da4469fbba..860751ca7d75 100644 --- a/src/chrome/content/rules/Bareos.xml +++ b/src/chrome/content/rules/Bareos.xml @@ -13,4 +13,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Barfi.ch.xml b/src/chrome/content/rules/Barfi.ch.xml deleted file mode 100644 index f4d9df135174..000000000000 --- a/src/chrome/content/rules/Barfi.ch.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/BarkerJr.net.xml b/src/chrome/content/rules/BarkerJr.net.xml index ff50292586b3..6c821a722b8f 100644 --- a/src/chrome/content/rules/BarkerJr.net.xml +++ b/src/chrome/content/rules/BarkerJr.net.xml @@ -6,12 +6,11 @@ Fetch error: http://www.barkerjr.net/ => https://www.barkerjr.net/: (51, "SSL: n ^barkerjr.net doesn't exist. --> - + - + diff --git a/src/chrome/content/rules/Barnard_College.xml b/src/chrome/content/rules/Barnard_College.xml index 6b4222a56a1b..e4b60229897c 100644 --- a/src/chrome/content/rules/Barnard_College.xml +++ b/src/chrome/content/rules/Barnard_College.xml @@ -6,4 +6,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Barnebys.com.xml b/src/chrome/content/rules/Barnebys.com.xml index 0dc18495bcdc..639cd4ec5683 100644 --- a/src/chrome/content/rules/Barnebys.com.xml +++ b/src/chrome/content/rules/Barnebys.com.xml @@ -29,10 +29,6 @@ - - - + diff --git a/src/chrome/content/rules/Barnes-Jewish_Hospital.xml b/src/chrome/content/rules/Barnes-Jewish_Hospital.xml index 2f5af3078bdc..703a50375aab 100644 --- a/src/chrome/content/rules/Barnes-Jewish_Hospital.xml +++ b/src/chrome/content/rules/Barnes-Jewish_Hospital.xml @@ -13,7 +13,7 @@ Fetch error: http://www.barnesjewish.org/ => http://www.barnesjewish.org/: (60, Some pages redirect to http --> - + @@ -22,4 +22,4 @@ Fetch error: http://www.barnesjewish.org/ => http://www.barnesjewish.org/: (60, - \ No newline at end of file + diff --git a/src/chrome/content/rules/Barnskospecialisten.se.xml b/src/chrome/content/rules/Barnskospecialisten.se.xml index 9122784b6e69..0f2e10206440 100644 --- a/src/chrome/content/rules/Barnskospecialisten.se.xml +++ b/src/chrome/content/rules/Barnskospecialisten.se.xml @@ -1,7 +1,8 @@ - - - - - - + + + + + + + diff --git a/src/chrome/content/rules/Barnsley.gov.uk.xml b/src/chrome/content/rules/Barnsley.gov.uk.xml new file mode 100644 index 000000000000..5c26f3a87c4b --- /dev/null +++ b/src/chrome/content/rules/Barnsley.gov.uk.xml @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Bart.gov.xml b/src/chrome/content/rules/Bart.gov.xml index 860bcc94e82d..44ee0adb265e 100644 --- a/src/chrome/content/rules/Bart.gov.xml +++ b/src/chrome/content/rules/Bart.gov.xml @@ -10,7 +10,7 @@ Fetch error: http://ws8.bart.gov/ => https://ws8.bart.gov/: (35, 'Unknown SSL pr - ws15.bart.gov (incomplete certificate chain) --> - + diff --git a/src/chrome/content/rules/Barter.vg.xml b/src/chrome/content/rules/Barter.vg.xml deleted file mode 100644 index a3b291d7262f..000000000000 --- a/src/chrome/content/rules/Barter.vg.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/Bash.im.xml b/src/chrome/content/rules/Bash.im.xml new file mode 100644 index 000000000000..5f5057be0c64 --- /dev/null +++ b/src/chrome/content/rules/Bash.im.xml @@ -0,0 +1,12 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Bashy.io.xml b/src/chrome/content/rules/Bashy.io.xml new file mode 100644 index 000000000000..bece358e6aeb --- /dev/null +++ b/src/chrome/content/rules/Bashy.io.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Basilisk-Browser.org.xml b/src/chrome/content/rules/Basilisk-Browser.org.xml new file mode 100644 index 000000000000..22c507b7611c --- /dev/null +++ b/src/chrome/content/rules/Basilisk-Browser.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Bassetlaw.gov.uk.xml b/src/chrome/content/rules/Bassetlaw.gov.uk.xml index f4085e127ddd..45295e2ec5d1 100644 --- a/src/chrome/content/rules/Bassetlaw.gov.uk.xml +++ b/src/chrome/content/rules/Bassetlaw.gov.uk.xml @@ -49,7 +49,7 @@ - + https://capita.bathnes.gov.uk/: (2 - ess ᶜ - mss ᶜ - + ᶜ Server sends no certificate chain, see https://whatsmychaincert.com @@ -48,7 +48,7 @@ Fetch error: http://capita.bathnes.gov.uk/ => https://capita.bathnes.gov.uk/: (2 - secure.bathnes.gov.uk --> - + @@ -91,7 +91,7 @@ Fetch error: http://capita.bathnes.gov.uk/ => https://capita.bathnes.gov.uk/: (2 - + - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Batmanarkhamorigins.com.xml b/src/chrome/content/rules/Batmanarkhamorigins.com.xml index e08b1ea30550..f1a2e2ccfc6c 100644 --- a/src/chrome/content/rules/Batmanarkhamorigins.com.xml +++ b/src/chrome/content/rules/Batmanarkhamorigins.com.xml @@ -5,7 +5,7 @@ Fetch error: http://batmanarkhamorigins.com/ => https://www.batmanarkhamorigins. Fetch error: http://www.batmanarkhamorigins.com/ => https://www.batmanarkhamorigins.com/: (7, 'Failed to connect to www.batmanarkhamorigins.com port 443: Connection timed out') --> - + diff --git a/src/chrome/content/rules/Battelle.xml b/src/chrome/content/rules/Battelle.xml index 4c1e739ce55f..cab7d92b5931 100644 --- a/src/chrome/content/rules/Battelle.xml +++ b/src/chrome/content/rules/Battelle.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Battle.net.xml b/src/chrome/content/rules/Battle.net.xml index 3887420710f5..94dd383e5439 100644 --- a/src/chrome/content/rules/Battle.net.xml +++ b/src/chrome/content/rules/Battle.net.xml @@ -32,17 +32,23 @@ - + + + + + + + + - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Battle_Creek_Enquirer.xml b/src/chrome/content/rules/Battle_Creek_Enquirer.xml index 49e68ef900e5..f2dc1483b1a1 100644 --- a/src/chrome/content/rules/Battle_Creek_Enquirer.xml +++ b/src/chrome/content/rules/Battle_Creek_Enquirer.xml @@ -11,7 +11,8 @@ - + + diff --git a/src/chrome/content/rules/Bauhaus-University_Weimar.xml b/src/chrome/content/rules/Bauhaus-University_Weimar.xml index 3bc10e308d11..2086bed02b0e 100644 --- a/src/chrome/content/rules/Bauhaus-University_Weimar.xml +++ b/src/chrome/content/rules/Bauhaus-University_Weimar.xml @@ -9,14 +9,13 @@ --> - - + + - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Baxter_Bulletin.xml b/src/chrome/content/rules/Baxter_Bulletin.xml index 77d37b13cdf2..4df02e1268ca 100644 --- a/src/chrome/content/rules/Baxter_Bulletin.xml +++ b/src/chrome/content/rules/Baxter_Bulletin.xml @@ -11,7 +11,8 @@ - + + diff --git a/src/chrome/content/rules/BayFiles.xml b/src/chrome/content/rules/BayFiles.xml index 67c23658a8fa..76a3eb40ceb8 100644 --- a/src/chrome/content/rules/BayFiles.xml +++ b/src/chrome/content/rules/BayFiles.xml @@ -12,7 +12,7 @@ Fetch error: http://www.bayfiles.com/ => https://bayfiles.net/: (28, 'Resolving Fetch error: http://bayfiles.net/ => https://bayfiles.net/: (28, 'Resolving timed out after 10519 milliseconds') Fetch error: http://www.bayfiles.net/ => https://www.bayfiles.net/: (28, 'Resolving timed out after 10518 milliseconds') --> - + diff --git a/src/chrome/content/rules/BayLeaks.com.xml b/src/chrome/content/rules/BayLeaks.com.xml index ee23fb961973..359699fc42df 100644 --- a/src/chrome/content/rules/BayLeaks.com.xml +++ b/src/chrome/content/rules/BayLeaks.com.xml @@ -5,7 +5,7 @@ Fetch error: http://bayleaks.com/ => https://bayleaks.com/: (7, 'Failed to conne Fetch error: http://www.bayleaks.com/ => https://www.bayleaks.com/: (7, 'Failed to connect to www.bayleaks.com port 443: Connection refused') --> - + diff --git a/src/chrome/content/rules/BayLibre.com.xml b/src/chrome/content/rules/BayLibre.com.xml index f663ac5daa50..2e319d073463 100644 --- a/src/chrome/content/rules/BayLibre.com.xml +++ b/src/chrome/content/rules/BayLibre.com.xml @@ -16,7 +16,7 @@ Fetch error: http://www.baylibre.com/ => https://www.baylibre.com/: (51, "SSL: n * Secured by us --> - + diff --git a/src/chrome/content/rules/Bay_Area_Amusements.xml b/src/chrome/content/rules/Bay_Area_Amusements.xml index 564ed48965fc..421835b5fa07 100644 --- a/src/chrome/content/rules/Bay_Area_Amusements.xml +++ b/src/chrome/content/rules/Bay_Area_Amusements.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Bay_Citizen.org.xml b/src/chrome/content/rules/Bay_Citizen.org.xml index 63f079beb1b6..81df65ff5900 100644 --- a/src/chrome/content/rules/Bay_Citizen.org.xml +++ b/src/chrome/content/rules/Bay_Citizen.org.xml @@ -7,7 +7,7 @@ Fetch error: http://www.baycitizen.org/ => https://www.baycitizen.org/: (60, 'SS ^: dropped --> - + diff --git a/src/chrome/content/rules/Bayan.ir-expired.xml b/src/chrome/content/rules/Bayan.ir-expired.xml index 4432eadf49db..4863e0c54eca 100644 --- a/src/chrome/content/rules/Bayan.ir-expired.xml +++ b/src/chrome/content/rules/Bayan.ir-expired.xml @@ -7,7 +7,6 @@ - + diff --git a/src/chrome/content/rules/Baylor.edu.xml b/src/chrome/content/rules/Baylor.edu.xml index fcbffe394796..d018a88d9bf3 100644 --- a/src/chrome/content/rules/Baylor.edu.xml +++ b/src/chrome/content/rules/Baylor.edu.xml @@ -23,7 +23,9 @@ - + + + - + @@ -89,7 +89,7 @@ Non-2xx HTTP code: http://resources.bazaarvoice.com/rs/bazaarvoice/images/logo_b - + - + @@ -18,4 +18,4 @@ Fetch error: http://baztab.net/ => https://baztab.net/: (6, 'Could not resolve h - \ No newline at end of file + diff --git a/src/chrome/content/rules/BazzApp.xml b/src/chrome/content/rules/BazzApp.xml deleted file mode 100644 index a4180d252782..000000000000 --- a/src/chrome/content/rules/BazzApp.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Bbelements.com.xml b/src/chrome/content/rules/Bbelements.com.xml index 0311b2bc47fe..e4f617c6d363 100644 --- a/src/chrome/content/rules/Bbelements.com.xml +++ b/src/chrome/content/rules/Bbelements.com.xml @@ -26,7 +26,7 @@ Fetch error: http://go.pol.bbelements.com/ => https://go.pol.bbelements.com/: (6 - . . . --> - + @@ -46,7 +46,7 @@ Fetch error: http://go.pol.bbelements.com/ => https://go.pol.bbelements.com/: (6 --> - + . - + There are many domain names related to bbva.es which have not been studied yet. Some of them are: * bancaresponsable.com @@ -18,7 +18,7 @@ * fundacionmicrofinanzasbbva.org * ligabbva.com * rutaquetzalbbva.com - + Subdomains of bbva.es that do not support HTTPS or use an invalid certificate: * blog.bbva.es * info.bbva.es diff --git a/src/chrome/content/rules/BdAdam.com.xml b/src/chrome/content/rules/BdAdam.com.xml new file mode 100644 index 000000000000..d8d95800cc63 --- /dev/null +++ b/src/chrome/content/rules/BdAdam.com.xml @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Bdimg.com.xml b/src/chrome/content/rules/Bdimg.com.xml index cb90909e83de..85f45b300c59 100644 --- a/src/chrome/content/rules/Bdimg.com.xml +++ b/src/chrome/content/rules/Bdimg.com.xml @@ -1,51 +1,53 @@ - + + + + + + - - - - - - + + + + + + + + + - - - - - - - - + + + + diff --git a/src/chrome/content/rules/BeNaughty.com.xml b/src/chrome/content/rules/BeNaughty.com.xml index da0db824e523..340e5a6bc049 100644 --- a/src/chrome/content/rules/BeNaughty.com.xml +++ b/src/chrome/content/rules/BeNaughty.com.xml @@ -17,17 +17,18 @@ - + + + - + - + diff --git a/src/chrome/content/rules/BeSTGRID.org.xml b/src/chrome/content/rules/BeSTGRID.org.xml deleted file mode 100644 index eb980b5f5cc6..000000000000 --- a/src/chrome/content/rules/BeSTGRID.org.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Be_Diff.com.br.xml b/src/chrome/content/rules/Be_Diff.com.br.xml index 95bff8c9560b..a5e7ad6ea25e 100644 --- a/src/chrome/content/rules/Be_Diff.com.br.xml +++ b/src/chrome/content/rules/Be_Diff.com.br.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://bediff.com.br/ => https://bediff.com.br/: (28, 'Operation timed out after 30001 milliseconds with 0 bytes received') --> - + diff --git a/src/chrome/content/rules/Be_Mobile.ua.xml b/src/chrome/content/rules/Be_Mobile.ua.xml index 550726c2f1be..a5fd47f3c218 100644 --- a/src/chrome/content/rules/Be_Mobile.ua.xml +++ b/src/chrome/content/rules/Be_Mobile.ua.xml @@ -18,7 +18,7 @@ ² Unsecurable <= refused --> - + @@ -29,7 +29,7 @@ --> - + https://beaconinitiative.com/: (28, 'Operation timed out after 15001 milliseconds with 0 bytes received') --> - + @@ -22,4 +22,4 @@ Fetch error: http://beaconinitiative.com/ => https://beaconinitiative.com/: (28, - \ No newline at end of file + diff --git a/src/chrome/content/rules/BeagleBoard.org.xml b/src/chrome/content/rules/BeagleBoard.org.xml new file mode 100644 index 000000000000..295329fbcbb2 --- /dev/null +++ b/src/chrome/content/rules/BeagleBoard.org.xml @@ -0,0 +1,15 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Beagle_Street.xml b/src/chrome/content/rules/Beagle_Street.xml index 21298a4cbbc5..aafe17d7706c 100644 --- a/src/chrome/content/rules/Beagle_Street.xml +++ b/src/chrome/content/rules/Beagle_Street.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/BeamYourScreen.xml b/src/chrome/content/rules/BeamYourScreen.xml index 159e581790ce..549bb206faa5 100644 --- a/src/chrome/content/rules/BeamYourScreen.xml +++ b/src/chrome/content/rules/BeamYourScreen.xml @@ -8,7 +8,7 @@ Fetch error: http://www.beamyourscreen.de/ => https://www.beamyourscreen.de/: (6 Disabled by https-everywhere-checker because: Fetch error: http://beamyourscreen.de/ => https://beamyourscreen.de/: (60, 'SSL certificate problem: certificate has expired') --> - + @@ -17,4 +17,4 @@ Fetch error: http://beamyourscreen.de/ => https://beamyourscreen.de/: (60, 'SSL - \ No newline at end of file + diff --git a/src/chrome/content/rules/Beanstock_Media.xml b/src/chrome/content/rules/Beanstock_Media.xml deleted file mode 100644 index 51f3109edbbe..000000000000 --- a/src/chrome/content/rules/Beanstock_Media.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Bear.im.xml b/src/chrome/content/rules/Bear.im.xml index f3ad70e6f753..b2774407b8ed 100644 --- a/src/chrome/content/rules/Bear.im.xml +++ b/src/chrome/content/rules/Bear.im.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.bear.im/ => https://www.bear.im/: (51, "SSL: no alternative certificate subject name matches target host name 'www.bear.im'") --> - + diff --git a/src/chrome/content/rules/Beardoholic.com.xml b/src/chrome/content/rules/Beardoholic.com.xml new file mode 100644 index 000000000000..7b2b13d1e40a --- /dev/null +++ b/src/chrome/content/rules/Beardoholic.com.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/BeastNode-problematic.xml b/src/chrome/content/rules/BeastNode-problematic.xml index 62f970206169..c6eae1996ac1 100644 --- a/src/chrome/content/rules/BeastNode-problematic.xml +++ b/src/chrome/content/rules/BeastNode-problematic.xml @@ -7,7 +7,6 @@ - + diff --git a/src/chrome/content/rules/Beatport.com.xml b/src/chrome/content/rules/Beatport.com.xml new file mode 100644 index 000000000000..261682620471 --- /dev/null +++ b/src/chrome/content/rules/Beatport.com.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Beatport.xml b/src/chrome/content/rules/Beatport.xml deleted file mode 100644 index 24fd2e358ef8..000000000000 --- a/src/chrome/content/rules/Beatport.xml +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Beatsmedia.xml b/src/chrome/content/rules/Beatsmedia.xml index ac8498ed0282..329c40c1ffd8 100644 --- a/src/chrome/content/rules/Beatsmedia.xml +++ b/src/chrome/content/rules/Beatsmedia.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://beatsmedia.com/ => https://beatsmedia.com/: (35, 'error:140770FC:SSL routines:SSL23_GET_SERVER_HELLO:unknown protocol') Fetch error: http://www.beatsmedia.com/ => https://www.beatsmedia.com/: (35, 'error:140770FC:SSL routines:SSL23_GET_SERVER_HELLO:unknown protocol') --> - + diff --git a/src/chrome/content/rules/Beauteprivee.fr.xml b/src/chrome/content/rules/Beauteprivee.fr.xml index cc52d11889bf..c8052f773d23 100644 --- a/src/chrome/content/rules/Beauteprivee.fr.xml +++ b/src/chrome/content/rules/Beauteprivee.fr.xml @@ -48,7 +48,7 @@ --> - + https://www.beautifuldecay.com/: * Secured by us --> - + diff --git a/src/chrome/content/rules/BeautyBar.com.xml b/src/chrome/content/rules/BeautyBar.com.xml index c7b0b77152a5..bab20213d9b2 100644 --- a/src/chrome/content/rules/BeautyBar.com.xml +++ b/src/chrome/content/rules/BeautyBar.com.xml @@ -34,9 +34,9 @@ - + - + - + + @@ -58,4 +59,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Bebo.com.xml b/src/chrome/content/rules/Bebo.com.xml deleted file mode 100644 index 7b6f83a1aca0..000000000000 --- a/src/chrome/content/rules/Bebo.com.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/Beck_PC.ch.xml b/src/chrome/content/rules/Beck_PC.ch.xml index e3e9217f5cdd..75780e1d8fd1 100644 --- a/src/chrome/content/rules/Beck_PC.ch.xml +++ b/src/chrome/content/rules/Beck_PC.ch.xml @@ -12,7 +12,7 @@ - .pcp.ch --> - + diff --git a/src/chrome/content/rules/BedfordshirePolice.xml b/src/chrome/content/rules/BedfordshirePolice.xml new file mode 100644 index 000000000000..03df4f67e3fc --- /dev/null +++ b/src/chrome/content/rules/BedfordshirePolice.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Bedis.eu.xml b/src/chrome/content/rules/Bedis.eu.xml index c0d39a40413b..4e78bb5d8e95 100644 --- a/src/chrome/content/rules/Bedis.eu.xml +++ b/src/chrome/content/rules/Bedis.eu.xml @@ -19,7 +19,7 @@ --> - + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Beeimg.com.xml b/src/chrome/content/rules/Beeimg.com.xml new file mode 100644 index 000000000000..14744273885b --- /dev/null +++ b/src/chrome/content/rules/Beeimg.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/BeenVerified.xml b/src/chrome/content/rules/BeenVerified.xml index d81c499e9c52..fe0aaab60233 100644 --- a/src/chrome/content/rules/BeenVerified.xml +++ b/src/chrome/content/rules/BeenVerified.xml @@ -22,7 +22,12 @@ - + + + + + + diff --git a/src/chrome/content/rules/Beender.co.xml b/src/chrome/content/rules/Beender.co.xml deleted file mode 100644 index eb7b11f71d77..000000000000 --- a/src/chrome/content/rules/Beender.co.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Beetailer.com.xml b/src/chrome/content/rules/Beetailer.com.xml index 75c5dfcfee39..da91d95b17f4 100644 --- a/src/chrome/content/rules/Beetailer.com.xml +++ b/src/chrome/content/rules/Beetailer.com.xml @@ -27,16 +27,16 @@ - + + - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/BeginLinux.com.xml b/src/chrome/content/rules/BeginLinux.com.xml index 65a9dd058956..4feb47cb84ef 100644 --- a/src/chrome/content/rules/BeginLinux.com.xml +++ b/src/chrome/content/rules/BeginLinux.com.xml @@ -24,7 +24,7 @@ --> - + https://www.beginnertriathlet - ox (shows www; mismatched, CN: ox.beginnertriathlete.com) --> - + @@ -23,4 +23,4 @@ Fetch error: http://www.beginnertriathlete.com/ => https://www.beginnertriathlet - \ No newline at end of file + diff --git a/src/chrome/content/rules/Begun.xml b/src/chrome/content/rules/Begun.xml index 73ec74f5e3ef..6b032a5aae06 100644 --- a/src/chrome/content/rules/Begun.xml +++ b/src/chrome/content/rules/Begun.xml @@ -7,7 +7,7 @@ - my2 - smart - - + - Insecure cookies are set for these domains and hosts: - .begun.ru diff --git a/src/chrome/content/rules/Behance.xml b/src/chrome/content/rules/Behance.xml index 21a7328169f6..783a70149053 100644 --- a/src/chrome/content/rules/Behance.xml +++ b/src/chrome/content/rules/Behance.xml @@ -10,7 +10,9 @@ - + + + - + - + diff --git a/src/chrome/content/rules/BehavEcol.com.xml b/src/chrome/content/rules/BehavEcol.com.xml new file mode 100644 index 000000000000..56567f4fdb82 --- /dev/null +++ b/src/chrome/content/rules/BehavEcol.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Behavioral_Policy.org.xml b/src/chrome/content/rules/Behavioral_Policy.org.xml index f2ff3e907bd5..2e7158086590 100644 --- a/src/chrome/content/rules/Behavioral_Policy.org.xml +++ b/src/chrome/content/rules/Behavioral_Policy.org.xml @@ -17,7 +17,7 @@ --> - + https://www.behr.com/: Too many redirects w Disabled by https-everywhere-checker because: Fetch error: http://behr.com/ => https://behr.com/: Cycle detected - URL already encountered: https://www.behr.com/ --> - + @@ -17,4 +17,4 @@ Fetch error: http://behr.com/ => https://behr.com/: Cycle detected - URL already - \ No newline at end of file + diff --git a/src/chrome/content/rules/Beleza_na_Web.xml b/src/chrome/content/rules/Beleza_na_Web.xml index ed2791d8c7fc..92f78d8150c2 100644 --- a/src/chrome/content/rules/Beleza_na_Web.xml +++ b/src/chrome/content/rules/Beleza_na_Web.xml @@ -24,7 +24,7 @@ Fetch error: http://belezanaweb.net.br/ => http://belezanaweb.net.br/: (28, 'Con - static[123] (→ d33827d8ipi614.cloudfront.net) --> - + @@ -41,4 +41,4 @@ Fetch error: http://belezanaweb.net.br/ => http://belezanaweb.net.br/: (28, 'Con - \ No newline at end of file + diff --git a/src/chrome/content/rules/Belkin.xml b/src/chrome/content/rules/Belkin.xml index 5cab829f6d3b..c96e25c0c7b6 100644 --- a/src/chrome/content/rules/Belkin.xml +++ b/src/chrome/content/rules/Belkin.xml @@ -12,4 +12,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/BellSouth.xml b/src/chrome/content/rules/BellSouth.xml index 7c23f6ed60a6..83555f14993c 100644 --- a/src/chrome/content/rules/BellSouth.xml +++ b/src/chrome/content/rules/BellSouth.xml @@ -13,10 +13,11 @@ Fetch error: http://bellsouth.com/ => https://www.bellsouth.com/: (35, 'Unknown - $ (cert only matches www) --> - + - + + @@ -25,7 +26,6 @@ Fetch error: http://bellsouth.com/ => https://www.bellsouth.com/: (35, 'Unknown - + diff --git a/src/chrome/content/rules/Bellazon.com.xml b/src/chrome/content/rules/Bellazon.com.xml new file mode 100644 index 000000000000..84073043243e --- /dev/null +++ b/src/chrome/content/rules/Bellazon.com.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Bellingham_School_District.xml b/src/chrome/content/rules/Bellingham_School_District.xml index 4076758cb475..a05a7338f053 100644 --- a/src/chrome/content/rules/Bellingham_School_District.xml +++ b/src/chrome/content/rules/Bellingham_School_District.xml @@ -11,10 +11,9 @@ - + + + - - - \ No newline at end of file + diff --git a/src/chrome/content/rules/Belpino.se.xml b/src/chrome/content/rules/Belpino.se.xml index f242a9b4e93c..d327a58002f7 100644 --- a/src/chrome/content/rules/Belpino.se.xml +++ b/src/chrome/content/rules/Belpino.se.xml @@ -8,10 +8,9 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.belpino.se/ => https://www.belpino.se/: (28, 'Connection timed out after 10001 milliseconds') Fetch error: http://belpino.se/ => https://belpino.se/: (28, 'Connection timed out after 10001 milliseconds') --> - + - - + diff --git a/src/chrome/content/rules/Beltelecom.by.xml b/src/chrome/content/rules/Beltelecom.by.xml deleted file mode 100644 index cd135181e149..000000000000 --- a/src/chrome/content/rules/Beltelecom.by.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - diff --git a/src/chrome/content/rules/BendigoBank.xml b/src/chrome/content/rules/BendigoBank.xml index 506df7fc09da..22e5612aaae3 100644 --- a/src/chrome/content/rules/BendigoBank.xml +++ b/src/chrome/content/rules/BendigoBank.xml @@ -1,9 +1,11 @@ - + + + + - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Benedikt-Bitterli.me.xml b/src/chrome/content/rules/Benedikt-Bitterli.me.xml index 3692b839df21..808de615f3ed 100644 --- a/src/chrome/content/rules/Benedikt-Bitterli.me.xml +++ b/src/chrome/content/rules/Benedikt-Bitterli.me.xml @@ -4,7 +4,7 @@ - + - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Benefitsweb.com.xml b/src/chrome/content/rules/Benefitsweb.com.xml index 898ea4c86191..73f219507472 100644 --- a/src/chrome/content/rules/Benefitsweb.com.xml +++ b/src/chrome/content/rules/Benefitsweb.com.xml @@ -5,7 +5,7 @@ - + @@ -14,4 +14,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Benetech.xml b/src/chrome/content/rules/Benetech.xml index 193ad7b5e048..47caa49bb050 100644 --- a/src/chrome/content/rules/Benetech.xml +++ b/src/chrome/content/rules/Benetech.xml @@ -6,4 +6,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Bennetts.xml b/src/chrome/content/rules/Bennetts.xml index 0d4251d8182a..dff421e9471d 100644 --- a/src/chrome/content/rules/Bennetts.xml +++ b/src/chrome/content/rules/Bennetts.xml @@ -8,8 +8,9 @@ Fetch error: http://bennetts.co.uk/ => http://bennetts.co.uk/: Redirect for 'htt - - + + + diff --git a/src/chrome/content/rules/Bentley_University.xml b/src/chrome/content/rules/Bentley_University.xml deleted file mode 100644 index 750280c83777..000000000000 --- a/src/chrome/content/rules/Bentley_University.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Bepo.fr.xml b/src/chrome/content/rules/Bepo.fr.xml new file mode 100644 index 000000000000..67e684149450 --- /dev/null +++ b/src/chrome/content/rules/Bepo.fr.xml @@ -0,0 +1,15 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Bepress.xml b/src/chrome/content/rules/Bepress.xml index fe3d3e3f576f..4b110f70b3bd 100644 --- a/src/chrome/content/rules/Bepress.xml +++ b/src/chrome/content/rules/Bepress.xml @@ -35,7 +35,7 @@ - + + + + + + + + + + + diff --git a/src/chrome/content/rules/Berkshire-Hathaway.xml b/src/chrome/content/rules/Berkshire-Hathaway.xml index 820df0a4405a..1b481905b1a9 100644 --- a/src/chrome/content/rules/Berkshire-Hathaway.xml +++ b/src/chrome/content/rules/Berkshire-Hathaway.xml @@ -5,12 +5,12 @@ - + - - + + diff --git a/src/chrome/content/rules/BerliOS.de.xml b/src/chrome/content/rules/BerliOS.de.xml deleted file mode 100644 index 93fa998a181f..000000000000 --- a/src/chrome/content/rules/BerliOS.de.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Berlin-Airport.de.xml b/src/chrome/content/rules/Berlin-Airport.de.xml index 4217f7c4c25f..603087b8f476 100644 --- a/src/chrome/content/rules/Berlin-Airport.de.xml +++ b/src/chrome/content/rules/Berlin-Airport.de.xml @@ -6,7 +6,7 @@ Fetch error: http://berlin-airport.de/ => https://www.berlin-airport.de/: Too ma Disabled by https-everywhere-checker because: Fetch error: http://berlin-airport.de/ => https://www.berlin-airport.de/: Redirect for 'http://www.berlin-airport.de/' missing Location --> - + diff --git a/src/chrome/content/rules/Berliner-Energietisch.xml b/src/chrome/content/rules/Berliner-Energietisch.xml index 092f8e9c5a5f..82345b6a40ed 100644 --- a/src/chrome/content/rules/Berliner-Energietisch.xml +++ b/src/chrome/content/rules/Berliner-Energietisch.xml @@ -3,7 +3,7 @@ - + diff --git a/src/chrome/content/rules/Berliner-Zeitung.de.xml b/src/chrome/content/rules/Berliner-Zeitung.de.xml new file mode 100644 index 000000000000..59f939d1a6fb --- /dev/null +++ b/src/chrome/content/rules/Berliner-Zeitung.de.xml @@ -0,0 +1,65 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Berlinonline.de.xml b/src/chrome/content/rules/Berlinonline.de.xml index 2c912bb0e96a..56c5253f111d 100644 --- a/src/chrome/content/rules/Berlinonline.de.xml +++ b/src/chrome/content/rules/Berlinonline.de.xml @@ -8,5 +8,5 @@ - + diff --git a/src/chrome/content/rules/Bernal_Bucks.xml b/src/chrome/content/rules/Bernal_Bucks.xml index 927073997ce9..5f5de36af62a 100644 --- a/src/chrome/content/rules/Bernal_Bucks.xml +++ b/src/chrome/content/rules/Bernal_Bucks.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Bernard_Hodes_Group.xml b/src/chrome/content/rules/Bernard_Hodes_Group.xml index f4cb33dafacc..e0cd0428f86e 100644 --- a/src/chrome/content/rules/Bernard_Hodes_Group.xml +++ b/src/chrome/content/rules/Bernard_Hodes_Group.xml @@ -10,7 +10,7 @@ Fetch error: http://jobmatcher.hodesiq.com/ => https://jobmatcher.hodesiq.com/: - (www.)hodes.co.uk (times out) --> - + @@ -25,4 +25,4 @@ Fetch error: http://jobmatcher.hodesiq.com/ => https://jobmatcher.hodesiq.com/: - \ No newline at end of file + diff --git a/src/chrome/content/rules/Berniw.org.xml b/src/chrome/content/rules/Berniw.org.xml index 91f2c525ae98..25ecfd4a9309 100644 --- a/src/chrome/content/rules/Berniw.org.xml +++ b/src/chrome/content/rules/Berniw.org.xml @@ -5,7 +5,7 @@ - + - + + + @@ -24,15 +26,12 @@ - - + diff --git a/src/chrome/content/rules/Best-Lawyers.xml b/src/chrome/content/rules/Best-Lawyers.xml index 0f8fe761f635..e53bdd981309 100644 --- a/src/chrome/content/rules/Best-Lawyers.xml +++ b/src/chrome/content/rules/Best-Lawyers.xml @@ -4,7 +4,7 @@ - + diff --git a/src/chrome/content/rules/Best-Masters-Degrees.xml b/src/chrome/content/rules/Best-Masters-Degrees.xml index 519f4e66e950..6ef03fed9f23 100644 --- a/src/chrome/content/rules/Best-Masters-Degrees.xml +++ b/src/chrome/content/rules/Best-Masters-Degrees.xml @@ -4,7 +4,7 @@ - + https://www.bestofferbuy.com/: (60, 'SS ^: cert only matches www --> - + - + diff --git a/src/chrome/content/rules/Best_Olive_Oils.xml b/src/chrome/content/rules/Best_Olive_Oils.xml deleted file mode 100644 index 545dddd9479f..000000000000 --- a/src/chrome/content/rules/Best_Olive_Oils.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Bestcovery.com.xml b/src/chrome/content/rules/Bestcovery.com.xml index 86429e59259d..1cbea82868ba 100644 --- a/src/chrome/content/rules/Bestcovery.com.xml +++ b/src/chrome/content/rules/Bestcovery.com.xml @@ -34,7 +34,14 @@ - + + + + + + + + - + - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/BetCoin.tm.xml b/src/chrome/content/rules/BetCoin.tm.xml index 9ed5df87d806..a07e744b265c 100644 --- a/src/chrome/content/rules/BetCoin.tm.xml +++ b/src/chrome/content/rules/BetCoin.tm.xml @@ -10,7 +10,7 @@ Fetch error: http://luck.betcoin.tm/ => https://luck.betcoin.tm/: (6, 'Could not - www.betcoin.tm --> - + diff --git a/src/chrome/content/rules/Beta-and-Cie-mismatches.xml b/src/chrome/content/rules/Beta-and-Cie-mismatches.xml index 232a4c92ee08..ad9540e0a9d7 100644 --- a/src/chrome/content/rules/Beta-and-Cie-mismatches.xml +++ b/src/chrome/content/rules/Beta-and-Cie-mismatches.xml @@ -3,7 +3,6 @@ - + diff --git a/src/chrome/content/rules/Beta-and-Cie.xml b/src/chrome/content/rules/Beta-and-Cie.xml index 9280add583f8..f33e76113cbd 100644 --- a/src/chrome/content/rules/Beta-and-Cie.xml +++ b/src/chrome/content/rules/Beta-and-Cie.xml @@ -19,7 +19,7 @@ Fetch error: http://cdn.betacie.net/ => https://cdn.betacie.net/: (51, "SSL: no cdn.betacie.com (cert: betaci.net) img.tweetimg.se (CDNetworks) --> - + diff --git a/src/chrome/content/rules/Betanews.xml b/src/chrome/content/rules/Betanews.xml deleted file mode 100644 index 36fcd95a9e8d..000000000000 --- a/src/chrome/content/rules/Betanews.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - diff --git a/src/chrome/content/rules/Bethsoft.com.xml b/src/chrome/content/rules/Bethsoft.com.xml index 2246b8124152..6e236423d315 100644 --- a/src/chrome/content/rules/Bethsoft.com.xml +++ b/src/chrome/content/rules/Bethsoft.com.xml @@ -15,7 +15,7 @@ - forums from static.zenimax.com * - * Secured by us + * Secured by us Mixed content (secured in Bethsoft.com-falsemixed.xml): adam.bethsoft.com @@ -66,7 +66,7 @@ - + - - - - - - - diff --git a/src/chrome/content/rules/Better-Business-Bureau.xml b/src/chrome/content/rules/Better-Business-Bureau.xml index be0ed5e7e4e7..070f0f109e24 100644 --- a/src/chrome/content/rules/Better-Business-Bureau.xml +++ b/src/chrome/content/rules/Better-Business-Bureau.xml @@ -118,7 +118,7 @@ - + - - - - - - - diff --git a/src/chrome/content/rules/BetterExplained.com.xml b/src/chrome/content/rules/BetterExplained.com.xml new file mode 100644 index 000000000000..c59ab72981a5 --- /dev/null +++ b/src/chrome/content/rules/BetterExplained.com.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/BetterFap.com.xml b/src/chrome/content/rules/BetterFap.com.xml index c4abba61c7a8..5437885e63a4 100644 --- a/src/chrome/content/rules/BetterFap.com.xml +++ b/src/chrome/content/rules/BetterFap.com.xml @@ -1,12 +1,16 @@ - - - - - + + + + + + + + + - - + diff --git a/src/chrome/content/rules/Better_Sales.se.xml b/src/chrome/content/rules/Better_Sales.se.xml index 16bf8c5007df..d5886925f570 100644 --- a/src/chrome/content/rules/Better_Sales.se.xml +++ b/src/chrome/content/rules/Better_Sales.se.xml @@ -14,4 +14,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Bettershopping.eu.xml b/src/chrome/content/rules/Bettershopping.eu.xml deleted file mode 100644 index 3420031d5684..000000000000 --- a/src/chrome/content/rules/Bettershopping.eu.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/Betts.xml b/src/chrome/content/rules/Betts.xml index 119d463f9cae..81b2f4dbaf8c 100644 --- a/src/chrome/content/rules/Betts.xml +++ b/src/chrome/content/rules/Betts.xml @@ -5,10 +5,10 @@ Fetch error: http://betts.com.au/ => https://betts.com.au/: (51, "SSL: no altern Fetch error: http://www.betts.com.au/ => https://www.betts.com.au/: Too many redirects while fetching 'https://www.betts.com.au/' --> - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Beuc.net.xml b/src/chrome/content/rules/Beuc.net.xml new file mode 100644 index 000000000000..e032046751ca --- /dev/null +++ b/src/chrome/content/rules/Beuc.net.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Beyond-Security.xml b/src/chrome/content/rules/Beyond-Security.xml index 9202fb085a1b..9407bbb81546 100644 --- a/src/chrome/content/rules/Beyond-Security.xml +++ b/src/chrome/content/rules/Beyond-Security.xml @@ -61,7 +61,7 @@ --> - + https://newchat.bezeqint.net/: (6, - www.bezeqint.net --> - + @@ -48,7 +48,7 @@ Fetch error: http://newchat.bezeqint.net/ => https://newchat.bezeqint.net/: (6, - + https://www.bezosexpeditions.co !www doesn't work. --> - + diff --git a/src/chrome/content/rules/BfArM.de.xml b/src/chrome/content/rules/BfArM.de.xml new file mode 100644 index 000000000000..523bdc31f52c --- /dev/null +++ b/src/chrome/content/rules/BfArM.de.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/BfDI.bund.de.xml b/src/chrome/content/rules/BfDI.bund.de.xml new file mode 100644 index 000000000000..deb4d88c8376 --- /dev/null +++ b/src/chrome/content/rules/BfDI.bund.de.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/BfR.bund.de.xml b/src/chrome/content/rules/BfR.bund.de.xml new file mode 100644 index 000000000000..044f1e3d5b18 --- /dev/null +++ b/src/chrome/content/rules/BfR.bund.de.xml @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Bgentry.io.xml b/src/chrome/content/rules/Bgentry.io.xml index 8aaebc29d504..92b6ab3ef15a 100644 --- a/src/chrome/content/rules/Bgentry.io.xml +++ b/src/chrome/content/rules/Bgentry.io.xml @@ -31,7 +31,7 @@ --> - + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Bhiab.se.xml b/src/chrome/content/rules/Bhiab.se.xml deleted file mode 100644 index 41e3afc36db8..000000000000 --- a/src/chrome/content/rules/Bhiab.se.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/src/chrome/content/rules/BiB.bund.de.xml b/src/chrome/content/rules/BiB.bund.de.xml new file mode 100644 index 000000000000..c423e07fb595 --- /dev/null +++ b/src/chrome/content/rules/BiB.bund.de.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Biapy.fr.xml b/src/chrome/content/rules/Biapy.fr.xml index 5b84d471c6d1..6f5221dcb2aa 100644 --- a/src/chrome/content/rules/Biapy.fr.xml +++ b/src/chrome/content/rules/Biapy.fr.xml @@ -23,13 +23,14 @@ Fetch error: http://biapy.fr/ => https://biapy.fr/: (51, "SSL: no alternative ce * Secured by us --> - + - + + + - + diff --git a/src/chrome/content/rules/Bibbitec.xml b/src/chrome/content/rules/Bibbitec.xml index a4e218c417bf..51d5339982a3 100644 --- a/src/chrome/content/rules/Bibbitec.xml +++ b/src/chrome/content/rules/Bibbitec.xml @@ -5,7 +5,7 @@ Fetch error: http://bibbitec.com/ => https://bibbitec.com/: (28, 'Connection tim Fetch error: http://www.bibbitec.com/ => https://www.bibbitec.com/: (28, 'Connection timed out after 20008 milliseconds') --> - + @@ -16,4 +16,4 @@ Fetch error: http://www.bibbitec.com/ => https://www.bibbitec.com/: (28, 'Connec - \ No newline at end of file + diff --git a/src/chrome/content/rules/Bible.com.xml b/src/chrome/content/rules/Bible.com.xml new file mode 100644 index 000000000000..e1dd6575262d --- /dev/null +++ b/src/chrome/content/rules/Bible.com.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/BibleSociety.co.za.xml b/src/chrome/content/rules/BibleSociety.co.za.xml new file mode 100644 index 000000000000..25276761b305 --- /dev/null +++ b/src/chrome/content/rules/BibleSociety.co.za.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/BiblioCommons.com.xml b/src/chrome/content/rules/BiblioCommons.com.xml new file mode 100644 index 000000000000..a01521f9b144 --- /dev/null +++ b/src/chrome/content/rules/BiblioCommons.com.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/BidBubble.com.xml b/src/chrome/content/rules/BidBubble.com.xml index 9503fead44f3..5faa856fc4f9 100644 --- a/src/chrome/content/rules/BidBubble.com.xml +++ b/src/chrome/content/rules/BidBubble.com.xml @@ -23,7 +23,7 @@ Fetch error: http://bidbubble.com/ => https://bidbubble.com/: (51, "SSL: no alte * Secured by us --> - + diff --git a/src/chrome/content/rules/Biddeal.xml b/src/chrome/content/rules/Biddeal.xml index 0acc9de05254..1fa27895b08a 100644 --- a/src/chrome/content/rules/Biddeal.xml +++ b/src/chrome/content/rules/Biddeal.xml @@ -6,7 +6,7 @@ Fetch error: http://www.biddeal.com/ => https://www.biddeal.com/: (60, 'SSL cert ^biddeal.com redirects to notset.com over http --> - + @@ -14,7 +14,6 @@ Fetch error: http://www.biddeal.com/ => https://www.biddeal.com/: (60, 'SSL cert - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Bidtellect.com.xml b/src/chrome/content/rules/Bidtellect.com.xml index 00f0a31b5de9..0f2bfef1570a 100644 --- a/src/chrome/content/rules/Bidtellect.com.xml +++ b/src/chrome/content/rules/Bidtellect.com.xml @@ -23,14 +23,14 @@ Fetch error: http://bidtellect.com/ => https://bidtellect.com/: (7, 'Failed to c ˢ Secured by us --> - + - + https://www.bidz.com/: (7, 'Failed to connect t - + diff --git a/src/chrome/content/rules/Big-Cartel.xml b/src/chrome/content/rules/Big-Cartel.xml deleted file mode 100644 index c6ca64b0e7a1..000000000000 --- a/src/chrome/content/rules/Big-Cartel.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Big-Change.xml b/src/chrome/content/rules/Big-Change.xml index fc47536f9a82..c12aaf230b52 100644 --- a/src/chrome/content/rules/Big-Change.xml +++ b/src/chrome/content/rules/Big-Change.xml @@ -3,10 +3,10 @@ - - + + diff --git a/src/chrome/content/rules/BigCartel.com.xml b/src/chrome/content/rules/BigCartel.com.xml new file mode 100644 index 000000000000..b017f64dfd67 --- /dev/null +++ b/src/chrome/content/rules/BigCartel.com.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/BigHugeLabs.xml b/src/chrome/content/rules/BigHugeLabs.xml index 7dad49cd1a0e..4dc9a38d6488 100644 --- a/src/chrome/content/rules/BigHugeLabs.xml +++ b/src/chrome/content/rules/BigHugeLabs.xml @@ -5,7 +5,7 @@ - + diff --git a/src/chrome/content/rules/BigV.io.xml b/src/chrome/content/rules/BigV.io.xml index 5881b0fc762c..23957a698444 100644 --- a/src/chrome/content/rules/BigV.io.xml +++ b/src/chrome/content/rules/BigV.io.xml @@ -6,7 +6,7 @@ Fetch error: http://manager.bigv.io/ => https://manager.bigv.io/: (7, 'Failed to For other Bytemark Hosting coverage, see Bytemark.co.uk.xml. --> - + diff --git a/src/chrome/content/rules/Big_Brother.se.xml b/src/chrome/content/rules/Big_Brother.se.xml deleted file mode 100644 index a5faed0949a4..000000000000 --- a/src/chrome/content/rules/Big_Brother.se.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Big_Brother_Watch.xml b/src/chrome/content/rules/Big_Brother_Watch.xml index 8d674f0c7bb2..3d3e6abdac7a 100644 --- a/src/chrome/content/rules/Big_Brother_Watch.xml +++ b/src/chrome/content/rules/Big_Brother_Watch.xml @@ -12,7 +12,7 @@ - + - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Bigdinosaur.org.xml b/src/chrome/content/rules/Bigdinosaur.org.xml deleted file mode 100644 index b3c16205e20d..000000000000 --- a/src/chrome/content/rules/Bigdinosaur.org.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Biggest_Loser_Club.com.xml b/src/chrome/content/rules/Biggest_Loser_Club.com.xml index 3695767d48aa..0ec06dc5d92d 100644 --- a/src/chrome/content/rules/Biggest_Loser_Club.com.xml +++ b/src/chrome/content/rules/Biggest_Loser_Club.com.xml @@ -6,10 +6,10 @@ Fetch error: http://biggestloserclub.com/ => https://www.biggestloserclub.com/: ^: refused --> - + - + diff --git a/src/chrome/content/rules/Bigjocker.com.xml b/src/chrome/content/rules/Bigjocker.com.xml index 9efeaed5e6d1..715a2bed9ff9 100644 --- a/src/chrome/content/rules/Bigjocker.com.xml +++ b/src/chrome/content/rules/Bigjocker.com.xml @@ -12,7 +12,7 @@ Fetch error: http://bigjocker.com/ => https://bigjocker.com/: (35, 'error:140770 Fetch error: http://www.bigjocker.com/ => https://www.bigjocker.com/: (35, 'error:140770FC:SSL routines:SSL23_GET_SERVER_HELLO:unknown protocol') --> - + diff --git a/src/chrome/content/rules/Bigmir.net-falsemixed.xml b/src/chrome/content/rules/Bigmir.net-falsemixed.xml index cbff8e65f734..306449b5b62e 100644 --- a/src/chrome/content/rules/Bigmir.net-falsemixed.xml +++ b/src/chrome/content/rules/Bigmir.net-falsemixed.xml @@ -22,13 +22,23 @@ --> - - - - - - - + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Bigmirnet.xml b/src/chrome/content/rules/Bigmirnet.xml index 2929e459dc76..b48b34056a53 100644 --- a/src/chrome/content/rules/Bigmirnet.xml +++ b/src/chrome/content/rules/Bigmirnet.xml @@ -109,7 +109,7 @@ Fetch error: http://s.bigmir.net/ => https://s.bigmir.net/: (7, 'Failed to conne ⁵ Unsecurable <= reset --> - + diff --git a/src/chrome/content/rules/Bigstock.xml b/src/chrome/content/rules/Bigstock.xml index a452615061f6..21b9a0e2400f 100644 --- a/src/chrome/content/rules/Bigstock.xml +++ b/src/chrome/content/rules/Bigstock.xml @@ -21,7 +21,7 @@ static6.bigstockphoto.com static7.bigstockphoto.com - + static8.bigstockphoto.com static9.bigstockphoto.com diff --git a/src/chrome/content/rules/Biicode.com.xml b/src/chrome/content/rules/Biicode.com.xml index e6bebb3e5f49..9be480f5df34 100644 --- a/src/chrome/content/rules/Biicode.com.xml +++ b/src/chrome/content/rules/Biicode.com.xml @@ -7,7 +7,7 @@ Fetch error: http://www.biicode.com/ => https://www.biicode.com/: (28, 'Connecti ^: Refused --> - + diff --git a/src/chrome/content/rules/Bike24.com.xml b/src/chrome/content/rules/Bike24.com.xml index 0c0c65eceec6..90b09d5e5381 100644 --- a/src/chrome/content/rules/Bike24.com.xml +++ b/src/chrome/content/rules/Bike24.com.xml @@ -1,7 +1,7 @@ - + diff --git a/src/chrome/content/rules/Bikeji.com.xml b/src/chrome/content/rules/Bikeji.com.xml index 687658c32fdc..0a6dd5888c84 100644 --- a/src/chrome/content/rules/Bikeji.com.xml +++ b/src/chrome/content/rules/Bikeji.com.xml @@ -5,7 +5,7 @@ Fetch error: http://bikeji.com/ => https://bikeji.com/: (7, 'Failed to connect t Fetch error: http://www.bikeji.com/ => https://www.bikeji.com/: (7, 'Failed to connect to www.bikeji.com port 443: Connection refused') --> - + @@ -13,7 +13,7 @@ Fetch error: http://www.bikeji.com/ => https://www.bikeji.com/: (7, 'Failed to c - + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Bild.de.xml b/src/chrome/content/rules/Bild.de.xml index 552bcd3ab07c..b7bda52e1627 100644 --- a/src/chrome/content/rules/Bild.de.xml +++ b/src/chrome/content/rules/Bild.de.xml @@ -14,14 +14,11 @@ ^ ¹ - epaper ³ - impressum ¹ - - wetter ⁴ - www ² ¹ Dropped ² 504, akamai ³ Redirects to http; expired 2012-06-01, mismatched, CN: shop.fussball.de - ⁴ 503, akamai - Problematic subdomains: @@ -57,6 +54,10 @@ + + + + @@ -69,4 +70,5 @@ + diff --git a/src/chrome/content/rules/Bilibili.com.xml b/src/chrome/content/rules/Bilibili.com.xml index f5c523ddb713..391ea8359138 100644 --- a/src/chrome/content/rules/Bilibili.com.xml +++ b/src/chrome/content/rules/Bilibili.com.xml @@ -17,7 +17,6 @@ - bmall.bilibili.com ( css from static.hdslb.com , seems no Broken.) - bml.bilibili.com - h.bilibili.com - - search.bilibili.com * Test in https://big.bilibili.com/site/big.html , click the blue button "积分兑换大会员", requested an insecure resource 'http://vip.bilibili.com/site/vip-exchange-plugin.html?'. This request has been blocked, and now all buttons in the page are broken. Mismatch: @@ -95,7 +94,7 @@ - + diff --git a/src/chrome/content/rules/Bilio.com.xml b/src/chrome/content/rules/Bilio.com.xml index fd733381a6cf..50ba4e76e01a 100644 --- a/src/chrome/content/rules/Bilio.com.xml +++ b/src/chrome/content/rules/Bilio.com.xml @@ -18,7 +18,7 @@ Fetch error: http://bilio.com/ => https://www.bilio.com/: (60, 'SSL certificate * Mismatched --> - + diff --git a/src/chrome/content/rules/BillDesk.com.xml b/src/chrome/content/rules/BillDesk.com.xml index a27d865f35fa..22ffe96d6325 100644 --- a/src/chrome/content/rules/BillDesk.com.xml +++ b/src/chrome/content/rules/BillDesk.com.xml @@ -1,7 +1,7 @@ - + diff --git a/src/chrome/content/rules/Bill_Maher.com.xml b/src/chrome/content/rules/Bill_Maher.com.xml index b0a141447571..e5487a76b01d 100644 --- a/src/chrome/content/rules/Bill_Maher.com.xml +++ b/src/chrome/content/rules/Bill_Maher.com.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://billmaher.com/ => https://billmaher.com/: (28, 'Connection timed out after 10001 milliseconds') Fetch error: http://www.billmaher.com/ => https://www.billmaher.com/: (28, 'Connection timed out after 10000 milliseconds') --> - + diff --git a/src/chrome/content/rules/Billboard.com.xml b/src/chrome/content/rules/Billboard.com.xml index c9371457b868..f9ad19da02bd 100644 --- a/src/chrome/content/rules/Billboard.com.xml +++ b/src/chrome/content/rules/Billboard.com.xml @@ -1,63 +1,40 @@ - - - - - - - - - - - - - - - - - - - - - - - - + + + + + diff --git a/src/chrome/content/rules/Billetten.dk.xml b/src/chrome/content/rules/Billetten.dk.xml index d2c94a3900d6..e1cabc84e461 100644 --- a/src/chrome/content/rules/Billetten.dk.xml +++ b/src/chrome/content/rules/Billetten.dk.xml @@ -2,7 +2,7 @@ - - + + diff --git a/src/chrome/content/rules/Billiger.de.xml b/src/chrome/content/rules/Billiger.de.xml index a16fff5eb79d..68cd498dc1e6 100644 --- a/src/chrome/content/rules/Billiger.de.xml +++ b/src/chrome/content/rules/Billiger.de.xml @@ -10,7 +10,8 @@ - + + - + diff --git a/src/chrome/content/rules/Billiongraves.com.xml b/src/chrome/content/rules/Billiongraves.com.xml index 63ccf624eaff..dc270578f085 100644 --- a/src/chrome/content/rules/Billiongraves.com.xml +++ b/src/chrome/content/rules/Billiongraves.com.xml @@ -18,7 +18,6 @@ - diff --git a/src/chrome/content/rules/Billund.dk.xml b/src/chrome/content/rules/Billund.dk.xml index 74f2b30ee37e..bf30e1b7b23f 100644 --- a/src/chrome/content/rules/Billund.dk.xml +++ b/src/chrome/content/rules/Billund.dk.xml @@ -12,7 +12,7 @@ Fetch error: http://www.billund.dk/ => https://www.billund.dk/: Too many redirec --> - + diff --git a/src/chrome/content/rules/Bin-Store.com.xml b/src/chrome/content/rules/Bin-Store.com.xml index 77bc43b2edc4..1e8b6b63949d 100644 --- a/src/chrome/content/rules/Bin-Store.com.xml +++ b/src/chrome/content/rules/Bin-Store.com.xml @@ -1,13 +1,13 @@ - + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/BinBayyah.net.xml b/src/chrome/content/rules/BinBayyah.net.xml new file mode 100644 index 000000000000..a22481f46643 --- /dev/null +++ b/src/chrome/content/rules/BinBayyah.net.xml @@ -0,0 +1,23 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/BinBaz.org.sa.xml b/src/chrome/content/rules/BinBaz.org.sa.xml new file mode 100644 index 000000000000..97d670aad0c8 --- /dev/null +++ b/src/chrome/content/rules/BinBaz.org.sa.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/BinRev.xml b/src/chrome/content/rules/BinRev.xml index 5f0a5a793ead..5317bfdcf294 100644 --- a/src/chrome/content/rules/BinRev.xml +++ b/src/chrome/content/rules/BinRev.xml @@ -1,6 +1,8 @@ - - - + + + + + - + diff --git a/src/chrome/content/rules/BinSearch.xml b/src/chrome/content/rules/BinSearch.xml index c676647a68b2..faebb1f13b9f 100644 --- a/src/chrome/content/rules/BinSearch.xml +++ b/src/chrome/content/rules/BinSearch.xml @@ -15,7 +15,7 @@ - diff --git a/src/chrome/content/rules/Binary-Biz.xml b/src/chrome/content/rules/Binary-Biz.xml index 3729c87bd0e2..277f1b7e1fb0 100644 --- a/src/chrome/content/rules/Binary-Biz.xml +++ b/src/chrome/content/rules/Binary-Biz.xml @@ -5,7 +5,7 @@ - + diff --git a/src/chrome/content/rules/BinaryTurf.xml b/src/chrome/content/rules/BinaryTurf.xml index f2acd3617b54..53983aaf3f4e 100644 --- a/src/chrome/content/rules/BinaryTurf.xml +++ b/src/chrome/content/rules/BinaryTurf.xml @@ -12,7 +12,7 @@ --> - + diff --git a/src/chrome/content/rules/Bing.xml b/src/chrome/content/rules/Bing.xml index 9f592959de7b..fa62f923143d 100644 --- a/src/chrome/content/rules/Bing.xml +++ b/src/chrome/content/rules/Bing.xml @@ -63,7 +63,7 @@ - + - + - + - + diff --git a/src/chrome/content/rules/BioOne.org.xml b/src/chrome/content/rules/BioOne.org.xml new file mode 100644 index 000000000000..54127ae6302f --- /dev/null +++ b/src/chrome/content/rules/BioOne.org.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/BioShock_Infinite.xml b/src/chrome/content/rules/BioShock_Infinite.xml index d4bb45ab20c1..341689fa9ba2 100644 --- a/src/chrome/content/rules/BioShock_Infinite.xml +++ b/src/chrome/content/rules/BioShock_Infinite.xml @@ -33,7 +33,7 @@ --> - + - - + - - + - - - - - - - - - - + diff --git a/src/chrome/content/rules/BioXFEL.org.xml b/src/chrome/content/rules/BioXFEL.org.xml deleted file mode 100644 index 11c9c73ff865..000000000000 --- a/src/chrome/content/rules/BioXFEL.org.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Bioconductor.org.xml b/src/chrome/content/rules/Bioconductor.org.xml index 3fe491b46e45..fbd7f7c07b87 100644 --- a/src/chrome/content/rules/Bioconductor.org.xml +++ b/src/chrome/content/rules/Bioconductor.org.xml @@ -15,7 +15,7 @@ --> - + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Biofitt.com.xml b/src/chrome/content/rules/Biofitt.com.xml index 0bd94db63c5a..1c9b860029e8 100644 --- a/src/chrome/content/rules/Biofitt.com.xml +++ b/src/chrome/content/rules/Biofitt.com.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Biologo.ru.xml b/src/chrome/content/rules/Biologo.ru.xml new file mode 100644 index 000000000000..4f196d02d838 --- /dev/null +++ b/src/chrome/content/rules/Biologo.ru.xml @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Bip.IO.xml b/src/chrome/content/rules/Bip.IO.xml deleted file mode 100644 index 943876795606..000000000000 --- a/src/chrome/content/rules/Bip.IO.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Biqle.com.xml b/src/chrome/content/rules/Biqle.com.xml new file mode 100644 index 000000000000..297284b3a0bf --- /dev/null +++ b/src/chrome/content/rules/Biqle.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Bircko.com.xml b/src/chrome/content/rules/Bircko.com.xml index 2354924d1ce0..624052de544b 100644 --- a/src/chrome/content/rules/Bircko.com.xml +++ b/src/chrome/content/rules/Bircko.com.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/BirdLife.org-problematic.xml b/src/chrome/content/rules/BirdLife.org-problematic.xml new file mode 100644 index 000000000000..a855f45e6044 --- /dev/null +++ b/src/chrome/content/rules/BirdLife.org-problematic.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/BirdLife.org.xml b/src/chrome/content/rules/BirdLife.org.xml new file mode 100644 index 000000000000..a354c9ef0033 --- /dev/null +++ b/src/chrome/content/rules/BirdLife.org.xml @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Birds-Are-Nice.me.xml b/src/chrome/content/rules/Birds-Are-Nice.me.xml index 2674e3af3932..4ea302705210 100644 --- a/src/chrome/content/rules/Birds-Are-Nice.me.xml +++ b/src/chrome/content/rules/Birds-Are-Nice.me.xml @@ -1,14 +1,11 @@ - + - - - diff --git a/src/chrome/content/rules/Birdtree.org.xml b/src/chrome/content/rules/Birdtree.org.xml new file mode 100644 index 000000000000..1510742b7d30 --- /dev/null +++ b/src/chrome/content/rules/Birdtree.org.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Bison-Fute.gouv.fr.xml b/src/chrome/content/rules/Bison-Fute.gouv.fr.xml new file mode 100644 index 000000000000..aff271c5c56e --- /dev/null +++ b/src/chrome/content/rules/Bison-Fute.gouv.fr.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/BitCalm.com.xml b/src/chrome/content/rules/BitCalm.com.xml index a1b524390a61..fe85ff0b297f 100644 --- a/src/chrome/content/rules/BitCalm.com.xml +++ b/src/chrome/content/rules/BitCalm.com.xml @@ -9,7 +9,7 @@ Fetch error: http://www.bitcalm.com/ => https://www.bitcalm.com/: (6, 'Could not - bitcalm.com --> - + diff --git a/src/chrome/content/rules/BitFlyer.jp.xml b/src/chrome/content/rules/BitFlyer.jp.xml index 82d79b822920..03f284643032 100644 --- a/src/chrome/content/rules/BitFlyer.jp.xml +++ b/src/chrome/content/rules/BitFlyer.jp.xml @@ -42,7 +42,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/BitHubLab.org.xml b/src/chrome/content/rules/BitHubLab.org.xml new file mode 100644 index 000000000000..f3e7a4ee389c --- /dev/null +++ b/src/chrome/content/rules/BitHubLab.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/BitInstant.xml b/src/chrome/content/rules/BitInstant.xml index 61388104b016..e40cb78a4d72 100644 --- a/src/chrome/content/rules/BitInstant.xml +++ b/src/chrome/content/rules/BitInstant.xml @@ -11,7 +11,7 @@ Fetch error: http://bitinstant.com/ => https://bitinstant.com/: (6, 'Could not r - blog (some [most?] pages redirect to http) --> - + diff --git a/src/chrome/content/rules/BitKeeper.org.xml b/src/chrome/content/rules/BitKeeper.org.xml new file mode 100644 index 000000000000..c78a08e7106d --- /dev/null +++ b/src/chrome/content/rules/BitKeeper.org.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/BitMarket.pl.xml b/src/chrome/content/rules/BitMarket.pl.xml deleted file mode 100644 index 7bbced346e41..000000000000 --- a/src/chrome/content/rules/BitMarket.pl.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/BitMissile-mismatches.xml b/src/chrome/content/rules/BitMissile-mismatches.xml index d4501dffe239..ab970b728de4 100644 --- a/src/chrome/content/rules/BitMissile-mismatches.xml +++ b/src/chrome/content/rules/BitMissile-mismatches.xml @@ -12,7 +12,6 @@ - + diff --git a/src/chrome/content/rules/BitMissile.xml b/src/chrome/content/rules/BitMissile.xml index 8488d7b9118a..5476c2f99f64 100644 --- a/src/chrome/content/rules/BitMissile.xml +++ b/src/chrome/content/rules/BitMissile.xml @@ -10,13 +10,13 @@ Fetch error: http://live.bitmissile.com/ => https://live.bitmissile.com/: (6, 'C For problematic rules, see BitMissile-mismatches.xml. --> - + - + diff --git a/src/chrome/content/rules/BitMitigate.com.xml b/src/chrome/content/rules/BitMitigate.com.xml new file mode 100644 index 000000000000..d1bcd56b9d48 --- /dev/null +++ b/src/chrome/content/rules/BitMitigate.com.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/BitNZ.com.xml b/src/chrome/content/rules/BitNZ.com.xml index c415a2fca7ea..6c4a46d7cdb4 100644 --- a/src/chrome/content/rules/BitNZ.com.xml +++ b/src/chrome/content/rules/BitNZ.com.xml @@ -10,7 +10,7 @@ Fetch error: http://www.bitnz.com/ => https://www.bitnz.com/: (28, 'Connection t - www.bitnz.com --> - + diff --git a/src/chrome/content/rules/BitQuick.me.xml b/src/chrome/content/rules/BitQuick.me.xml deleted file mode 100644 index b8892c26d20c..000000000000 --- a/src/chrome/content/rules/BitQuick.me.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/BitQuick.xml b/src/chrome/content/rules/BitQuick.xml index c628f96945b7..aa385cdfddfd 100644 --- a/src/chrome/content/rules/BitQuick.xml +++ b/src/chrome/content/rules/BitQuick.xml @@ -6,18 +6,13 @@ Fetch error: http://www.bitquick.in/ => https://www.bitquick.in/: (6, 'Could not Fetch error: http://bitquick.tw/ => https://bitquick.tw/: (7, 'Failed to connect to bitquick.tw port 443: Connection refused') Fetch error: http://www.bitquick.tw/ => https://www.bitquick.tw/: (6, 'Could not resolve host: www.bitquick.tw') - Other BitQuick rulesets: - - - BitQuick.me.xml - - Insecure cookies are set for these domains and hosts: - .bitquick.co - www.bitquick.co --> - + diff --git a/src/chrome/content/rules/BitRock-mismatches.xml b/src/chrome/content/rules/BitRock-mismatches.xml index 73e6fb335e02..9bd00128ced7 100644 --- a/src/chrome/content/rules/BitRock-mismatches.xml +++ b/src/chrome/content/rules/BitRock-mismatches.xml @@ -1,7 +1,8 @@ - + + diff --git a/src/chrome/content/rules/BitRock.xml b/src/chrome/content/rules/BitRock.xml index d041608c6451..766585176f87 100644 --- a/src/chrome/content/rules/BitRock.xml +++ b/src/chrome/content/rules/BitRock.xml @@ -6,17 +6,17 @@ Fetch error: http://bitnamihosting.com/ => https://bitnamihosting.com/: (51, "SS Disabled by https-everywhere-checker because: Fetch error: http://bitnamihosting.com/ => https://bitnamihosting.com/: (51, "SSL: no alternative certificate subject name matches target host name 'bitnamihosting.com'") --> - + - + + - + - + diff --git a/src/chrome/content/rules/BitSight_Tech.com.xml b/src/chrome/content/rules/BitSight_Tech.com.xml index 056a41b119ae..5aac2daddff6 100644 --- a/src/chrome/content/rules/BitSight_Tech.com.xml +++ b/src/chrome/content/rules/BitSight_Tech.com.xml @@ -30,7 +30,7 @@ - + https://sync-push-proxy.bittorrent.com/: (51, "SSL: no alternative certificate subject name matches target host name 'sync-push-proxy.bittorrent.com'") Other BitTorrent rulesets: @@ -111,7 +108,7 @@ Fetch error: http://sync-push-proxy.bittorrent.com/ => https://sync-push-proxy.b - regserver.bittorrent.com - search.bittorrent.com --> - + @@ -122,7 +119,6 @@ Fetch error: http://sync-push-proxy.bittorrent.com/ => https://sync-push-proxy.b - diff --git a/src/chrome/content/rules/BitVC.com.xml b/src/chrome/content/rules/BitVC.com.xml index 73f4996520e7..f4302e66d237 100644 --- a/src/chrome/content/rules/BitVC.com.xml +++ b/src/chrome/content/rules/BitVC.com.xml @@ -9,7 +9,7 @@ Fetch error: http://bitvc.com/ => https://bitvc.com/: (7, 'Failed to connect to - .www.bitvc.com --> - + diff --git a/src/chrome/content/rules/BitVisor.org.xml b/src/chrome/content/rules/BitVisor.org.xml index 248943921178..7e8276eb9b7e 100644 --- a/src/chrome/content/rules/BitVisor.org.xml +++ b/src/chrome/content/rules/BitVisor.org.xml @@ -1,19 +1,4 @@ - - + diff --git a/src/chrome/content/rules/BitYes.com.xml b/src/chrome/content/rules/BitYes.com.xml index cc408ebc0ea8..cdcf1996eb10 100644 --- a/src/chrome/content/rules/BitYes.com.xml +++ b/src/chrome/content/rules/BitYes.com.xml @@ -16,7 +16,7 @@ Fetch error: http://www.bityes.com/ => https://www.bityes.com/: (60, 'SSL certif - .bityes.com --> - + diff --git a/src/chrome/content/rules/Bitbucket-mismatches.xml b/src/chrome/content/rules/Bitbucket-mismatches.xml deleted file mode 100644 index 8b8e360dbfb1..000000000000 --- a/src/chrome/content/rules/Bitbucket-mismatches.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Bitbucket.xml b/src/chrome/content/rules/Bitbucket.xml deleted file mode 100644 index f1f13f583f49..000000000000 --- a/src/chrome/content/rules/Bitbucket.xml +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Bitch_Magazine.org.xml b/src/chrome/content/rules/Bitch_Magazine.org.xml index 1b427ea582f4..6a549cd4514d 100644 --- a/src/chrome/content/rules/Bitch_Magazine.org.xml +++ b/src/chrome/content/rules/Bitch_Magazine.org.xml @@ -29,7 +29,7 @@ Fetch error: http://www.bitchmagazine.org/ => https://bitchmagazine.org/: (51, " ² Unsecurable <= 522 --> - + diff --git a/src/chrome/content/rules/Bitcoin-Borse.xml b/src/chrome/content/rules/Bitcoin-Borse.xml index 1c2c6a2170ac..b834dc49a24c 100644 --- a/src/chrome/content/rules/Bitcoin-Borse.xml +++ b/src/chrome/content/rules/Bitcoin-Borse.xml @@ -8,7 +8,7 @@ - + diff --git a/src/chrome/content/rules/Bitcoin-Contact.org.xml b/src/chrome/content/rules/Bitcoin-Contact.org.xml index 02bce55ae1d0..698e7eb87d59 100644 --- a/src/chrome/content/rules/Bitcoin-Contact.org.xml +++ b/src/chrome/content/rules/Bitcoin-Contact.org.xml @@ -8,7 +8,7 @@ Fetch error: http://mail.bitcoin-contact.org/ => https://mail.bitcoin-contact.or Mixed Content Blocking (MCB) tiggered: - bitcoin-contact.org --> - + diff --git a/src/chrome/content/rules/Bitcoin-Forum.xml b/src/chrome/content/rules/Bitcoin-Forum.xml index 9e2dc9f09592..a5fa3c38bde5 100644 --- a/src/chrome/content/rules/Bitcoin-Forum.xml +++ b/src/chrome/content/rules/Bitcoin-Forum.xml @@ -13,7 +13,7 @@ - + diff --git a/src/chrome/content/rules/Bitcoin-VPS.xml b/src/chrome/content/rules/Bitcoin-VPS.xml deleted file mode 100644 index 9aea597511a5..000000000000 --- a/src/chrome/content/rules/Bitcoin-VPS.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Bitcoin-Wiki.xml b/src/chrome/content/rules/Bitcoin-Wiki.xml index b88e8466a2bb..1ca523c430a2 100644 --- a/src/chrome/content/rules/Bitcoin-Wiki.xml +++ b/src/chrome/content/rules/Bitcoin-Wiki.xml @@ -28,7 +28,7 @@ Fetch error: http://www.bitcoin.in/ => https://www.bitcoin.in/: (28, 'Connection - en --> - + @@ -40,7 +40,7 @@ Fetch error: http://www.bitcoin.in/ => https://www.bitcoin.in/: (28, 'Connection - + + + + + + diff --git a/src/chrome/content/rules/Bitcoin.Co.th.xml b/src/chrome/content/rules/Bitcoin.Co.th.xml deleted file mode 100644 index 91f310b088ed..000000000000 --- a/src/chrome/content/rules/Bitcoin.Co.th.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Bitcoin.pl.xml b/src/chrome/content/rules/Bitcoin.pl.xml index 178339ff7cac..508a8f797590 100644 --- a/src/chrome/content/rules/Bitcoin.pl.xml +++ b/src/chrome/content/rules/Bitcoin.pl.xml @@ -18,7 +18,7 @@ Fetch error: http://www.bitcoin.pl/ => https://www.bitcoin.pl/: (60, 'SSL certif - .forum.bitcoin.pl --> - + diff --git a/src/chrome/content/rules/BitcoinCash.org.xml b/src/chrome/content/rules/BitcoinCash.org.xml new file mode 100644 index 000000000000..86d0fb369a08 --- /dev/null +++ b/src/chrome/content/rules/BitcoinCash.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/BitcoinPool.xml b/src/chrome/content/rules/BitcoinPool.xml index 84fa478a71d5..ef9517ff3c48 100644 --- a/src/chrome/content/rules/BitcoinPool.xml +++ b/src/chrome/content/rules/BitcoinPool.xml @@ -10,7 +10,7 @@ - + https://bitcoinstore.com/: (7, 'Failed to connect to bitcoinstore.com port 443: Connection refused') -Fetch error: http://www.bitcoinstore.com/ => https://www.bitcoinstore.com/: (7, 'Failed to connect to www.bitcoinstore.com port 443: Connection refused') - -Disabled by https-everywhere-checker because: -Fetch error: http://bitcoinstore.com/ => https://bitcoinstore.com/: (51, "SSL: no alternative certificate subject name matches target host name 'bitcoinstore.com'") ---> - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/BitcoinWisdom.com.xml b/src/chrome/content/rules/BitcoinWisdom.com.xml deleted file mode 100644 index 70f2892f09a6..000000000000 --- a/src/chrome/content/rules/BitcoinWisdom.com.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/BitcoinXT.software.xml b/src/chrome/content/rules/BitcoinXT.software.xml deleted file mode 100644 index d398bdb48be0..000000000000 --- a/src/chrome/content/rules/BitcoinXT.software.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Bitcoin_Foundation.org.xml b/src/chrome/content/rules/Bitcoin_Foundation.org.xml deleted file mode 100644 index 1740d2b4e09c..000000000000 --- a/src/chrome/content/rules/Bitcoin_Foundation.org.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Bitcoin_Plus.xml b/src/chrome/content/rules/Bitcoin_Plus.xml index 4217714f229b..80530b644c18 100644 --- a/src/chrome/content/rules/Bitcoin_Plus.xml +++ b/src/chrome/content/rules/Bitcoin_Plus.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Bitcoinmixer.org.xml b/src/chrome/content/rules/Bitcoinmixer.org.xml new file mode 100644 index 000000000000..1fe7096eeb9a --- /dev/null +++ b/src/chrome/content/rules/Bitcoinmixer.org.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/BitcointoYou.com.xml b/src/chrome/content/rules/BitcointoYou.com.xml index 2fc96378959a..e5002c9de766 100644 --- a/src/chrome/content/rules/BitcointoYou.com.xml +++ b/src/chrome/content/rules/BitcointoYou.com.xml @@ -19,7 +19,7 @@ - + https://www.bitcurex.com/: (28, 'Operat - pln --> - + diff --git a/src/chrome/content/rules/Bitdefender.com.xml b/src/chrome/content/rules/Bitdefender.com.xml index 5f634ffbd3b6..aaea4c955c1a 100644 --- a/src/chrome/content/rules/Bitdefender.com.xml +++ b/src/chrome/content/rules/Bitdefender.com.xml @@ -25,7 +25,7 @@ - + https://bitdeli.com/: (28, 'Connection timed out after 20000 milliseconds') --> - + - - + diff --git a/src/chrome/content/rules/Bite.lt.xml b/src/chrome/content/rules/Bite.lt.xml index 53c9a153f4b5..b4bf910e6dbd 100644 --- a/src/chrome/content/rules/Bite.lt.xml +++ b/src/chrome/content/rules/Bite.lt.xml @@ -4,7 +4,7 @@ - sms.bite.lt * - soap.bite.lt ** - wap.bite.lt ** - + * mismatched cert ** connection times out/is refused/fails on HTTPS --> @@ -14,7 +14,7 @@ - + diff --git a/src/chrome/content/rules/Biteasy.com.xml b/src/chrome/content/rules/Biteasy.com.xml deleted file mode 100644 index b36cd0f3ea8c..000000000000 --- a/src/chrome/content/rules/Biteasy.com.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Bitfun.co.xml b/src/chrome/content/rules/Bitfun.co.xml new file mode 100644 index 000000000000..6e460b78dc7b --- /dev/null +++ b/src/chrome/content/rules/Bitfun.co.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/src/chrome/content/rules/Bitin.io.xml b/src/chrome/content/rules/Bitin.io.xml deleted file mode 100644 index 6c96b0c8ee31..000000000000 --- a/src/chrome/content/rules/Bitin.io.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Bitinvest.com.br.xml b/src/chrome/content/rules/Bitinvest.com.br.xml index b5e04c3dac8d..02d8585514a7 100644 --- a/src/chrome/content/rules/Bitinvest.com.br.xml +++ b/src/chrome/content/rules/Bitinvest.com.br.xml @@ -20,7 +20,7 @@ Fetch error: http://developers.bitinvest.com.br/ => https://developers.bitinvest - www.bitinvest.com.br --> - + diff --git a/src/chrome/content/rules/Bitlove.xml b/src/chrome/content/rules/Bitlove.xml deleted file mode 100644 index e1aac9e740b1..000000000000 --- a/src/chrome/content/rules/Bitlove.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Bitly.com.xml b/src/chrome/content/rules/Bitly.com.xml index a917eacad10a..5e57755d9c1f 100644 --- a/src/chrome/content/rules/Bitly.com.xml +++ b/src/chrome/content/rules/Bitly.com.xml @@ -1,54 +1,23 @@ - - - - - - - - + + + - - - diff --git a/src/chrome/content/rules/Bitly.xml b/src/chrome/content/rules/Bitly.xml index c00b06f72731..7cd903a6e927 100644 --- a/src/chrome/content/rules/Bitly.xml +++ b/src/chrome/content/rules/Bitly.xml @@ -6,21 +6,22 @@ - Bitly_branded_short_domains.xml - Insecure cookies are set for these domains: - - - .bit.ly + Non-functional hosts: + Certificate misatched: + - pix.bit.ly + - www.bit.ly --> - - - - + + + diff --git a/src/chrome/content/rules/Bitly_branded_short_domains.xml b/src/chrome/content/rules/Bitly_branded_short_domains.xml index 09cb2fd2ad4e..93fd0c95e97d 100644 --- a/src/chrome/content/rules/Bitly_branded_short_domains.xml +++ b/src/chrome/content/rules/Bitly_branded_short_domains.xml @@ -3,7 +3,7 @@ For other Bitly coverage, see Bitly.xml. -This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC +This file generated by Bitly on Fri, 10 Nov 2017 17:24:38 UTC --> @@ -12,369 +12,354 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC + + - + - + + - + - + + + - - + + - - - + + - - - + - - - - - - + + + + - + + + + + + - - - + - + - - - - - - - - - - - + + + + + + - - + - + + + + + - + + - - - + + + - - + + - - - - - + + - - - - - - + + + - - - - - + - - - - + + + + + + - + + + - - - + + - - + + + + - - - + + - - - + - + - - - + - - - - - - - - - + + + - + - - + - + + + - - - + - - - + + + + - + + + - + - - + + + - - + + + - - - + - + + - - - + - - + - + - - + + + + - - - - + + - + - - + - - - + + + - - - - + + + + + + + - - - + + - - - - - - + + + + @@ -383,114 +368,105 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - - + - + + - + + - - - + - - + - + + + + - - - + - - - - - - - - - + + - - - - - + + + + + - + - - - - - - + + + + + - - - - - - + + + + + + @@ -498,311 +474,281 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC + + - - - - - - + - - - - - - - + + - + - - - + + - - + + - + - - + - + - - + + + - - - - - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - + - + + + - + + - - - + - - + - - - + + + - - - - + - - - - - - - + - - + - - + + - - - + - + + - - - + + + - - - - - + - + - - + + + - - - + - - - + + - + + - - + + + - - + - - - - - - - - - - + + - + - - - - - + + + - - + + - - - - + - + - - + + - + + - + - + - - + - - - - - - + - + + - - - - - - + + + - - - + - - - - - - + - - + - - + - @@ -812,290 +758,255 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - - - + - + + + + - - - - + - - - + - + + + - + - - - - + - + + + - + + + + + - - - - + - + + - + - - - - - + - - - - - + + + + + - - - - + - - + - - + - - + + - + - - - - + - + - - + - - + - - - - - - - - - - + + - - - + + - + + - - + - + - - - + - - + - - - - + + + + + - + + + - - - - - + + + + + + + - - - - - + + - - + - - - - + + + + + - - - - - + - + + - - - - - - + + + - + + + + - + + + - - + - - + - - - - - - + + + - + - - + - - - @@ -1103,18 +1014,16 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC + - - - - + + - @@ -1123,454 +1032,421 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - - - - - + - + + + - + - - - - - - + - - + + + - - - - - + - + + - - - + + + + + + - - - - - - + + + - + + + + - - - + - - - + + - + - - - + - - + + - - - + + + - - - + + + - + + - - - - + + - - + + - - + - + - - - - + + - + - - + + - + - + - - + + + - - - - + - + - + - - + + + + + - - + + - - + - - - + + - - - - - - + + + + + + - - + - + - - + + - + + + - - - + + + + + + + - - - + + + + + - - - - - + + + + - - - - - - + - - - - - + + - - + + - - - - + + + + + - - + - - - - + + + + - + - + - - + + - + - - - - + - - - - - - + - + + + + - + + + + + + + - + - - - - - + - - + - - - - + - + + - + - - - + - + - + + - - + + - - - - + + + + - - - + - + - + - + - - - - - - @@ -1579,907 +1455,898 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - + + + + + + + - + - - + + + + - + + - + + - - + + - - + + + + + + + + + - + + - - - + - - - - + + + + - - - - + - - - - - - + - - + - - - + - + + + + - - - - + + + + + + + - + + + + - - - - - - - - + + + + - - + + - - - - + + - + - + + + + - - + + - + + - - + + + - + + + - + + - + - - + - - - + - - - - + + + - - - - - + + + + + + + + + - - + + + + + + - + + + + + + + - + + + - - + + - + + - + + + + + + + + - - - - + + - + - - + + + - - + - - - + + - + + - + + + - + + - + + + + + + + - + + - - - - + + + + - - - + + - - - - + - - + + + - - - - - - + + + + + + + + - - + + + + + - - + + + - - - - - - + + - + - - - - + + + - + + + - + - + - + + + - + + - - + - + - - + - - - + - - + + + + - - - - - - - - - - - - + + - - - - - - - + + + + - + - + + - - + + - + - - + + - - + + + + + - - - + - - + + + - - + + + + + + - - - - + + - - - - - - + - - - - + + + - + + - + - + + + + - - + + + + + - - - - - - + - + + + + - + - - - + + - + - - - + - - - - - - - - - + + - + - - + + + + + - - - - - + + + - - - - - - - + - - - - - - + + + + + + + + - - - - - + + - - - - - + + + + - + + - + - - - - - - + + - - + + - - - + - - + + - - - - - + + + + - - - - - - - - + - + - - - - - - - + + + - - + - - - + + - - + + - - - - - + - + - - - + - + + + - - - + + + + - - - + + + + + - - - + - - - - + + - + - - + - + - + - - - - + + + - + + - - - - + - + - - + - - - - - + + + - - + + - + + + + + + - - - - + - - - - + + + - - + + + + - - + - + + - + + + - - - + - - - + - + - + + + @@ -2487,30 +2354,32 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC + + + + - + + - + + - - - + - - @@ -2520,802 +2389,721 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC + - + - - + - + - + - + + + + + - - + - - + + - + + + + - - - + - - + - - + + - - - + - + + - + + - - + + + - - - - + - - - + + + + + - - - + + - - + - - - - - - + + - - + - + + + - + + - - - + + + + - + - - - + - - + + - - - - + - + + + - - - + + - - - - + - + + - - + + - + + - - - - + - - + - - - - - + + - + - - - + + + - - - - + + + - - + + + + - - + - - - + - - - - - - + - - + - + - + - - - - + + - - - - - - - - - + + - - - - + - - - - - - - - - - - - + + - - - - + + - + + - + + + - + + - - - - - - + + + + - - + + + + + - + - - - + + + + - - + + + + - - + + + - + + + - + + - - - - - - - - - - + + + + + + + + - - + - + - + + - - + + - - + + - + - - - + + - - + + - - - + + + + - + - + - + + + - + - - - - - + + + + - + - - - - + + - + + + + - + + + + + + - - - - - - + - - + - - + - - + - - - - - - - - + + + + + - - - - - - - - - - + + + - - - + + + + + - - + + - - - + - - - - + + + + - + + + - - - - - + + + - - - - - - - + - - + + + - - - - + + + - - - - + - - - - - + - + + + + - - - - - + - + - + + + + - - - + + + - + - + - - - + + + - + - - - - + + - - - - + - - - + - + + + + - - + + - - - + + + + + - - - - - + + + - - + - - - - - + + - + - + - - - - + - - - - - - - - - - + - - - - + + - - - + + - - - + @@ -3323,302 +3111,289 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - - + + - - - + - - - - + + + - - - - + + + + + + - - + - - + - - - + + - + - - + - - + + + - - - - + + + + - - - - - - + - - + + - + - + + - - - - - - - + - + - - + + + + - + + + + + + - - + + + + + - - - + + + - - + + + - - - - - - + + - + - - - - + - + + - - - - - + + + + - - + - - - - - - - + - - - - - - + + + + + - - + - - - + + - + + + - + + + + - + - - - - - + + + + + + + + + + + + + + - + - - + + + + + + + - - + + + + - - - + + - - - - + + - + - - - - + + + - - - - - + - - + + + + - - - - + + + + - - - - - - - - - - + + + - @@ -3626,90 +3401,78 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - - - - - + - - - - + - - - - - - - + + - - + - + - - + - - - + - + - - + + - - + + + + + + + - - - + - - + + - - - + + + + @@ -3717,441 +3480,435 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - + - - + + + - - + - + + - + - - - - - + + - + - + + + + + - - - + + + - + - - - + + + - - + - + + - + - - - + - - - - - - - + - + - - - + + + + + + - - - - - + + + - + - - + + - + + + + - + + + + - - + + - - - - + + + + - + + - - - - + + - + + - - - - + + - + - + + - - - + - + - - - - + + + - + + - - - - - + + + + + + - - - + - - - - + + + + - + + + - - - + + + - - - + + + - - - + + - - - + + + + - - - + - - - - + + + + + - - - - - + + + + + - + - - + + - + - + - - - + - - - - + + + + - - + + + - - + + + - + - - + + - - - - + - - - - + + + + + + + + + + - + + - - + - + - + + + - - - + - - + - - - - - - - + + - + + + - - - - - + + - + + - - + @@ -4159,14 +3916,11 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - - + - - - - + + @@ -4174,751 +3928,721 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - + - - - + - - + + - - - + + + - + - - + - - + + - + - - + + + + - - - + + + - - + - - - - - + + - - + - + + + + + - - - + + + - - - - - - - + + + + - + + - - - - + - - + + - - - + + + + + - - - + + + - - + + + - - - - - + + + + + + - - + + + - + - - - - + - + - + - - - - - + + - - + - - + + + - - - - + + + + + - + - + + - - + + - + + - - + - - - - - - - + - + - - - + - - - - - + - - - - + + + - - - - + - - - + - + + + - - + - - + - - + - + + + - + - - + + + + + - - - - - + + - - + - - + - - + + + - + - + - - - + - - - - + + - - - - - + + - - - - - + - + - - + + + + - - + + + + + - + + - + + + - - + + + + + + + + + + + - - - - + + - - - + - + + - - - - + + - - - + + + + + + - - - - - + - - + + + + + - - - + - - - - + + - - + + + + + + + - - - - - - - - - + + + - - + + - + - - + - + - - + + - + + - - - + - + - - - - + - + - + - - + - + + - - - - + - - - - - + + - - + + - + + + + - + - + + - - - - + - - + + + + - + - + - - + + + + + + + + + - - + + + + - - - + + + - - + - - + + + + - - + - + + - - + + - + - + - + - - + + - + + - - - + - - - - + - - + + + + + + + + - - - - - - + + + + + - - - - + + - - - + + - + + - - - - - + + - - - - + - + + @@ -4926,151 +4650,143 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - + + - + + + - - - - - + + + - + - + + - - - + - + + + + - - - + + + + + - - - - - + + + + + + - + + - + - - - - - - + + + - + + + - - + + - - - + - - - + + - - - - - + - - - - - - - - - + + + + + + - - + + - - - - - - - + + + + + + + - - - - @@ -5078,589 +4794,593 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - + + + + + - + - + + + + + + - + - - - + - + - - - + + + + - - - + + - - - - - + + + - + + - + - - + + + + + - - + + + - + - - + + + + + + - - + + + + - - - - - - + - + + - - - - - + + - - - + + - + + + + + - + + + + - - + + + - - + - + - - - - + + + - + + + + + + - - - - - - - + - - - + + + + + + + + - + + + + + - - + - + - - - - + + - + - + - - + + - - + + + + - - - - + + + - - + - - - + + + + + + + + + + + - + - - + - + + + - - - - - - + - + + + + - + + - - + - - - - + + + + - - - - + - - - - - - + + + + - - - + - + - + + + + + + + - - + + + - + - - + - - - - - - - - - + + - - + + + - + - + + + - - - + - + - - + - - - - + + + - - - + - - - - + + + + - - - + + - + + - + - + + + + - + + - - + - + - - - + + + + + + - - - - - + - + - - + + - - + + - - - - + - - - - + - - - - + + + - - - - - - - - + + + - + + - - - - - + - - - - + - - - + + - + + + + + - - - - + + + + + + - - + + @@ -5668,572 +5388,541 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - + + + + - - + - - - + - + - - + - - - - - + + + + + + + - - + - - + - - - - - - - + - + + - - - - + + - - + - - - - - + - - - + - + - + + - - - + - - + + + - - + + + - + - - - - + + + - - + - + - - + + + - - - + + + + + - + - - - + - - - + + + + + + + + - - - - - + - - + + + + + + + + - + + - - - + + + + - + + + - - - - + + + - + - - - - - + + - - + - + + + + + - - + + - - + + - - - - - - - + - + - - - + - - - - - - - + + + - - - - - - - - - - + + + + + - - - + - - - - + + - - + - - - + + + + - - + - + + + - - + + - - - - - + + + - + + + - + - - + + - - - - + + + + + - - - - - + + + - + - + - + + - + - - - - + - + + + - + + - - - - - + + + + + - + + + + + + - + + + + + + - - - + + + + + - - - - - + - - - + - - + + - - + - - - + - - + - - + + + - - - + + - - - - + + - + + - - + - - - + + + - - - + + - + - - - - - - + + + + + + + - - - + - - - + + + - - - - + + - - - + + - + - - - + + + + - - + - - + - + + - - + - + + - + + - - @@ -6241,210 +5930,223 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC + + + + - - - + + + + - - - + - - - - + + + + + + - - - + - + + + - + + + + + - - - + - - + + - + - + - - + + + + + - + + + + - - + - - - + + + + - - - - + + + - + + + + - - - + - + + + - - + - - - + + + + + + + + + + + + + - + - - - + + - - + + + - - - - - - + + + + + - + - - - - + - - - - + - - - + - - - - + + + - - + + + - + - - - - + + + + - - - - - + + + - + @@ -6452,93 +6154,72 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - + + - - - + + + + - + - + + + - - + + - - + + + - - - + + - - - - - - - - - - - - - - - - - - - + - + - - - - - + - - - @@ -6548,804 +6229,756 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - + - - - - + + - - - + + + - - - - + + + + + - + + + + + + - - - - + + + - - - - - + + + - - - + - - + - - - + + + + - + + - + - + - - - - - + - + + + - - - + + + - - - - + - - - - - - + - - - - - + + + - - - + + + + - + - + - - + - - + + + + - - - - + + + + - - - + - - - + + + + + + - - + + + - - - + + - - - - - + - - - + + + + - - - - - - - + - - + + - - + + - + - + + - + - + - - + - - + - - + - + + - + + - - + - - + + - - + - + - + - - + - - + + - + + - + + + - - - - + + + + - + - + - - + + + + + - + - + - - - - + + + + + + - + + + - - - - - - - - + + - - - + + + + + - + - - - + + - - + - - + + - - - - + - - - - - - - - - + + + + - + - + - + - - + + + + - - - + + + - - - - + - + - - + + - - - + + - - - - - - - - - - + - + + - - - - - - - + - - - + + + + - + + + - + + - - - - - - - + - - + + - + - + + - + - - - - - + + + + + + + + - - + - - - - + - + - - - - - - - + + + - - - + + + - - - - + + + + - - - + + - - + - - - - - - - + + + + + + + + + - - - - - + + + + + + + + + + + - - + + - - - + - + - - - - - - - - - + + + - + + + - - - + - - + - + + - - - - + + - - - + + + - - - + + - - + - + - - + + + - + - - - + + + - + + - - - - - - - + + + + - + - + + + + - - - - + + + + - + - - - - + + + + - + + - - - + + + + + @@ -7354,1900 +6987,1763 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - + - + + - - - - + + - + - - + - + + + - - - + + - - - + + + - - + + - + - + + + - - - - - + + - + - - + + + - + - + - - + - - - - - + - + - + - - - - - - - - - + + - + - + + - - + - + - + + + - + - - + + - - + + - - - + - - - + + + + + + - - + - + - - + - - - + + - - + - - - - - - - - - - + + - - - - + + + - - - + + + - - + - + - - - + - - + + - + - - + + + - - - - - - - + + - - - - - - - - - - - + + - - + - - - - + + + - + + - - - - + - + + - + + + - + + + + - + + + - - - + + + - - + - - + - + + + + - - + + - - - - - - - - - - - + + + + - - - + + - - + + - + - - + + - + - - + + + + - + + - - - - - - - + - + - - + - + - - - + - - - - - + + + + + + - + - - + - - + - + - - + - + - - - - - + - - - + - + + + - - + + - + - + + - - - + - - + + + - + - + - + - - + + + - + - - + + - + - + - - + + + - - - + + + - + + - - - + - - - - + - + + + - - - + + + - - + - - + - - + + - + + + + - - + + + - - + - + - + - - - + - + + + - - - - - - + + + - - - - + + - - - - - + + + - + + + + + - - + + + + - - - + + - + + + - - - - - + + + - - + + + - - + + - - + - - + - - - - + + + - - + - - - - - - - + - + + - - - - - + + + + + + + - - - - - - + - + + - - - + + + + + - - - + - + + - + + + + + - - - - + + + - + + + - - + + - - - + + + + - - + + - - - - - - - - - - + + - - - - - - - + + + + + + - - - - - + - - - - + + - - + + - - - + - - - + - - - - + + - - + + + - + + - - - - + - - - - + + + - + - + - - - - - - - + + - + + - + - + + + + + - - - + + - + - - - + - - - - - - - + - + - - - + + + - + - - + - - + - - - + - + - - - + - + - - + - - - - - + - - - - + - + - + + + + + + + + - + - - - + + - - - - + + + + - - + + + - + + + + + - - - + + + - + + - + + + + - - - - - + + - + + + - - + - - - + + - + + + - - + + + + - - - - + + - - + + - - - + - - - + + - + - + - - - + + + - - + - + + - - + + - - + + - - - - + - - - - - + + - - - - + - - + + + + + - + - - - + + + - + + + + + + + + + - - - - + - - - + - - - - + - - - + + + - - - + - - - - - + + + + + + - - - + - - + + + + - - - - - - + - + + + + - + + - - + + + - - - + + - - - + + - - - - - + - - - - - + - + + - - + + - + - - - + - - - - + - + + - - + + - - + - + + + + - + + - - - - + - - - + - - - - + + + - - - - - + + + - + + - - - + + + + - - - + + + - + + - + - - - - + - + - + - + + - - - - - - - - - + + - - + + - - + + + + + + - - + + + - - - - + + + + + + + - - - + - + + + - - - + + - - - - + - - - - - + + - - + - - - + + + + + - - + + + - - - - + + - - - - + - - + + - - - - - - - - + + - - + - - - - + + + + + + - - - - - - - - - - - - + - - + + - + + - - + - - + + - + - - - - + + + - + + + + - - + + - + - - + + + + - + - + - - - - + + + - - - + + + - - - + + + - - + + - - - - - - + + - - - + + + + + + - + + - + + + + + + + - - + - - + - - + - - + + - - - - - - - + + - + + + - + - + + + + - - - + + + + + + - - + - - + + - - - - + + - - - + + + - - + - - - + + + - + - - - - + - + + - - + + - + + + - - - - + + + + + - - - + - - + - + + + + + + + - + + + + + + - - + + - - - - - + - - - - + - - + - @@ -9255,835 +8751,768 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - - + + + + + - - - - - + - + + + - + + + - - + - - - - + - - - - + + - - + + - - - - - - - + + + + + - - - + - - + + + - + + - - - - + + + + + + - + + + - - - - + + - - + + - + - - + - - + + - - - - + + + - - + - - - - - + + + + + - - - - + + - + - + + + - - - + - - - - - + + + + + - - - - + - + - + + - - - - + + + + - - - - - + + - - - + + + - - - + + - + - - + + + - - - + + + + + - - - - + + - + + + - - + + - + + - - + + + + - + - - + - + - + + - - - + + - + + - - + + + + + - - + - - - - - - - - + + + + - - + + + - - - - - + + + - + - - - - - - - - - - + - - + - - + + + - + + + - + + - - - - - + + - - - - - + - - - + + + + - + + + + + + - + - - - - - - - + + - - - - - - - + + - - - - + + + - - + + - - - - - + - - - + - + + - + + - - + - - + + - - + + + + + - - - + + - - - - - - - - + + - - - - - + - + - - - - - - - + - + + - + - - + + - + + + + + - - + - - - + + - - - - + + + + + + - - + + + - + - - - - - - - - + + + + + - + + - - - - - - - - + - + + - - + - + + + + - + - - - - - - + + + + - - - - + + - - + + + - - - - - - + + + + + + - - - - - - - - - - + - - + - - + + - - + + - - - - - - + + - - + - - + + - - + + + + - - - - + + + + + + + + + - + + - - + - - + - + - + - + + + + - - - - - + + + - - - - - - + + + - - - - - - - - - - + + + - - - + - - + + + - + + + + + - - + @@ -10091,735 +9520,683 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - + - - - + + - - - - - - - - - - - + - - - - - + - - - - - + + + + + + + + + + + - - + + - - - - + - + - - + + - + - - + - + + + - + - - + - - - - + - - - - - + - + + - - - + - + - - - + + + - + - - + - - - - - - - - - + + - - - - - - - - + - - - + + - - - - - - - - - - - - + + + + - + - - - - - - - - + - - + + - - - - - - + - + + - + - - - - + - - + + + - - - - + + + + + - - - + + - - - - - + + + - - - - + - + + + - - - - + + + + + - - + + - - + - - + - - + + + - + + - - - - + + + + + - + - - - + + - - - - + + - + - - - - - - - - - - + - - - + - - - + + - + - - - + - - - - - + + + + - - - - + + - - - + - - - + + + + + - - - - - - + + + + + + + + + + + + - - - - - - - - - + + + + + + - + + + + - + - - + - + + - - + + + - - - - - + + + - + + + - + - - - + + + + + - - - - + - + + + - - - + + + - - - + + + + + + - - + + + + + - + + + - - - + + + - + - - - - + - - - - + - - - - - + - - - - + - + - - - - - - + - - - - - - - + + + + + - - - - - - - - + + + + + + + + + + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - + - - + - + - + - - - + + + - + + - - - - - + - + + - - - - + + + + + + + - - + - - + - + - - - + + - - + + + - + + - + + - + - + - - + - - + + - - - + + + - + + - - + + - + + + - - - + + @@ -10827,42 +10204,39 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - - - + + + + + - + - - - - - + - - + + + - - + + - - @@ -10871,899 +10245,873 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - - - + - - - - - + - - - + - - - - + + - + + - - - - - + + + + + - - - - - + + - + + + + + + + + - - - + - - - - + + + + - + + - - - + + - - - - + - + + + + + + - + + + + - - - + - + + + + - - + + - - + + - - - - - + + + + + - - + - - + - - + - - - - - + + + + + + + - - - - - - - + + - - + - + + + - - - - + - - - + - + - - - + - + - + + + - - - + + - - - + + - - - + - + + - - - - - - + + - - - - - + + + - - + + - - - + - - - + + + + - + - + + + - - - - + - + + + + - + + - - - - + + + - - - - + + + + + - + + - - - - + + - - - - - + + + - - + + + - - - - + - - - - - - + + + + + - - + - - + + + + + + - - + + + - - - + + - - - - + + + - - + + - - - - - - + + + + + - - - - + + + - + - - + + + + + - + - - + + + + + - - + + - - + - - - + - + - - - + - - - + + + - - + + + + + - - - - + - - - - - + + + + + + - + - - + + + - - - - + - + + + + - - - - + - - - - + + - - - - - - - - - - - - - - - + + + + - + + - - - + + + + + - - - - - - - + + + + + - - - - - + + - - - - - - - - - + - + + - - + - + - + + + - + - - - - - - + + - - + + - + + - + - + - + + - + - - - - - + + - - - - + - - + + + - - - + + + - + - - + + - - - + + + - - - + + + + + + - - - + + - - + + + + + + - + + - + - - - + + + + + - + + - + + - - - + + + + + + - + + + - + - - - - + + - - + + + - - - + + + + - - - + + - + - - - + + - - + + - + - - + + + + - - - + - + + - + + + + - - - - + + + - - + + + + + + + + - - - + + + - - - - - + + + + - + + + + - + + + + - - + - - - - + - - + + + - - - - + + + + + + - @@ -11771,128 +11119,163 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - + + - + + - + - + + - - + + + + + + + - + + - - - + + + + + - - + + - - + + + + + + - + - - + - + - + + - - + + + - + + + + - + + + - + - + + + + + - + + + + + + + - + + + + - + + - - + - + + @@ -11900,82 +11283,106 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC + + - - - + + - + + + + + + - + + + + - - + + + + + + + + + - - - - + - - - + - + + + - - + + - + + + + + - + + + + - + + - + + - - - + + + + + - - + + @@ -11983,8 +11390,14 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - + + + + + + + @@ -11992,238 +11405,284 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - - + + - + + + + + + - + - + - + - - - + - - - + + - + + + + + + + - + + + + - - - + + + + + + + - + + - + + - + - + - - + + + - - + + + + + - - - - + + - + + - - + - + + - + - - - + + + + + - + + + - - + + + - - + - - + + - + + + + - - + + + + + + + + + + + - - + + + - + - + - - + + + + - + + - + + + + + - - - - - - + + - + - - - + + - + + + - + + + + + + - - - - + - + - + - + + + + - + @@ -12232,80 +11691,98 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC + - + + + - + - - - + + + + + + + - + - + - - + - + - - - - + - - + + + + + - + - + + + + + + + + + - + + - + + - - + + + + @@ -12313,170 +11790,196 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC + + - + + - - + + - + + + - - + + + + + + + - - - - - + + + + + + + + + - + + + - + + - + + + + + - - - - + + + + + - - - + - + - - + - + - - + - - - - - + + + - - + - - + + - - - + + - + + + + + + + - - + + + - + - + - + + - + + + - + + - + + @@ -12485,263 +11988,338 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC + - + + + + + + + + - + - + + + + + + - - + + + - + + + + + - + - - + - + - - - + + + + + + + + + + + - + + + + + + + + + + + + + + + - - + + + - + + + + + + + + + + - + + - + + - + + + + + + + + - + + + + + + + - + + + - - - + + + + + + + + - + + - + + + + - - - - + + + + - + + + + + + + + - + + + - - - - + + + - + + + + - + - - - + - - + - - - - + - - + - + - - - - - + + + - + - - - - - - - + + + + + + + - - + - + - @@ -12750,351 +12328,356 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - + + - + + + - + + - + - - - - - + + + + + - - - - - - - - + + + + + + - - - + - - + + - - - + - - - + + + + - + + - - + - - + - + + - - - - - - + + + + - - - - + + - + + - - - + - - + - - + + - + - + + + - + - - + + - - + + + - + - - + - - - - + - - + + + + - - + + + + + - - - + - - + + - + - + + - + - - + - + + - - + + + + + + + - - - + + - - + + + - - + + + + - - + - + + + + - + + + + - - + - - - - - + + + + + + - + + - - + + + + - - + - + + - - + - - + - - - + - - - - - - - - - + + - - - - + + + + - - + + - - - - + + - + - + - - + - + - + + + + + - + + + + + - + @@ -13102,662 +12685,637 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - + + - - + + - - + + - + - - + - + + - + - - + + + + + + + + + - + + - - - + + + - + + + - - - + - + + - + + + - - + - - - + + - - + - - - - + - - - - - - - - - - + + + + - + - + - + + + - - + - - + - - - + - - - - - + + + + - - - - - - - - - - + + + - - - - - + + + + + + - - - - - + + + - - - - - - + - + + + - - + + + - - - + + + + - - - - + + + + + + - + - + - - + + - - + + + - - - + - - - - + - - - - + + - - - + + + + + - - - - + - - + + + + + + + + + - + - - - - - - - - - + + - - - - - - + + - - + - - + + - + - - + + + - - - + - + + + + + + + - + + + + + + + + + - - + - + - - - + + - - - - + + + + + + + + + + - - - - + + + + + + + + + + + + - + + + - - - - + - + + + + + - - - + - - + - - - + - - + - - + - - - + + - + - + + - - + - + + + - - + - - - - - + - + + + + + - + + + + - - - - - + + + - - - - - + + + + - + + - - + - - + - + + + - + - - - - + - - - + + - - + - + + - + - + - - - - + - - + + - + + - - - + + - + - - - - - + + + + - + - - - - + + + - + - - + - - + + - - - - - + - + - - - - - - + + - + - + + - - + + + - + + - - - - - + + - - - - + + - - + + - - - - + - - + - - + + + - - - + @@ -13765,257 +13323,247 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - + - - - + + + + - + - + + + - - + - - + + - - - + + + - - + + + + - + + - + + - - + - + + - - + + - + + + - - - - - - - - - + + + + + + + - - - - - - + - + - - + + + + - - - - - - - - - - - - + + + + + - - + + - + - + + - + - - + - + - - - - + - - - - - - - - - - + + + + + + - + - - + + - + + + - - + + - + + - - - - + + - - + + - - - - - - + - - - + + - + + - - + + + + + + - + + - + + - - - + + + + - - @@ -14023,1037 +13571,966 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - - - - - - + - + + - - - + + - - - - + + - - - - - + + + + - - - + + + - + + - - - - + - - + + - - - - + - + + + - - + + - - - + - - + + + - - - - - - + + - + + - - - + + + + - - + - + + + - - - - - + - + - - - - + + + + + - - - + + - + + + + + + + - - - + + + - - + - - + - - + - - + - - - - - + + + - - - - + + + - - - - - - + + + + - + - - - + + + + - + + + + + + - - - + + - + - - + - + + - + - - - - - - - + + + - - - - - - + + - + + - + + - - - - - - - - + - + - + - - - - - + - - - + - + + - - + + - - - + + + - - + - - + + + - + + - - - + - - - - - + + + + + - + + - + + - - - - - + - + - - - + + + + + + + + + + - - - + - - - - - - - - - + + + - - - - - - + - + - + + - + - + + + + + - + - - - + + + - + - + - - - - - - - - - + + - - + - - - + + + + - - - + - + + + - + + - - + + - - - - - - - - - + + + + - - - - - - + - - - - - + - - - - - + - + + - + + - - + + + - - - - + + + + - + + + + + - + + - - - + - - + + - - - + + + + - + - - + + + + + - + - - + + - - + + + + + - - + - + + - - - - - + + + + - + + + - + + + - - - + + - + - - - + + - + + - - - - - + - - - - + - - - + - - - - + - - + - + + - - + - - - - + + + + + - - - - - - - + + + - - - + + - + + + - - - - + + + + + - - - + - - - - - - + + + + + + - - + + + + + + + - + - + - - + - - - + + + - - + - - + + + - + + + + + - - + + + - - + + + - - - - - + + - - + - - - + + - - + + + - + - - - - - - - + + + - + + - - + + - + - - - - + + - - + + - - + + + + + + - - - + + + + - - + + - - - - - - - - - - - + + - - + - - - + - + + - - + - - - - + + + + + - - - - @@ -15062,39 +14539,36 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC + + - + - + - + - - - + + + + - - - - + - - + - - + - @@ -15103,313 +14577,303 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - - + + - - - - + + + + + + + + + + + - + + - - - - + + + + + - - - + - - + - - - + + + + - - - + - - + - + - + + - + + - + - + + + - - + + - + - - + - + + - - - - - - - - + + + + + - - - + + + - - - - - + + - + + + - - + - + + + - - - + - - + - + + + - + + - - + + - + - + + - - - - + + + + + - - + - - - - + - - + - + + - - + - + - - - - + + + - - - - + + - - - - - - + + - - - + - - - - + + + + - - - + - - + + - + + + + + - - - + - - + - - + - + - @@ -15417,77 +14881,72 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC + + - + - + + - - - - - - - + + + - - - - + + + + - - + - - - + + - - - + + + - + - - @@ -15495,275 +14954,239 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC + - - + - - + - + - - - + + - - - - - - + - - - - + - + + + - - - - - + + - - + - + + + - - - - + + + + - + - + - - + + + + + + + + - - - + - + - + + - + - - - - - - - + + + - - - - - - + - - + + - + + + - + - - + - + + + - - + + + + + - - - - + + - - - - - + + + - - - - - + + - - - - + - - - - + + + - - - + - + - - - - - + + - - + + + - - - + - - - - - - - + + - - - - - - + - - - - - + + + + - - + + @@ -15771,314 +15194,270 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC + - - - - + + + - - - - + - - - - - - - + - - + + - - + + + - - + - - - - - + + + + - - - + + + + + - + + - - - - - - - - - + - - - - - - - + - - - - - + + - + + + - + + + + + + + + - - - - + + + + + - - - + - + + - - + + - - - + + - - - - + + - - + + + - - - - + - - + + - - - - + + + - - - + + - - - - + + + - + + - - - + - + - - - - - - - - + - - - - - - + + + - - + - + + - - - - - - - - + - + - - - + + - - - - + + @@ -16088,1081 +15467,983 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - - + - - - - + + - + - - - + + + + + + + + + + - - - + - + + - + - - - - - - - - + + + - - - - + + - + - + + + + - - - + - + - - - - - + - - - - + + + - - - - + + - + - - + - - + - + - - - - + - - - - - - - - - - - - + + - - - - - - - - + - - + + - + + - - + - + + + + - - + + + - - - - - + - + - - - + - - - - - - + - - - + - + + + + + - - - - + + - - - + + - + - + - - + - - + - - + + - + - - - + + - - - + - + + - - + + - - - + - + - + - - + - + + - - - - - + + + + - - - - - + - - + - - + + - - + + - - - + + - + + + - - - + + + + - - + + + - - - - - - - + + + - - - + + + + + + - - + + - - - - - - - + + + + + + + - - + - - - + + + - - - - - + + + - - - - - - + - + + + + + + - + + + - - - + + + + - - + + - - - - - - + + + + + + - + + + + + - - + - - - - - - + + + + - - - - + - - - - + - - + - + - - - + + - - - - + - - - - - - - + + + + + - + - - + + + + - + - - + + + - - + - - - - + - - + - - + - - - - + + + + + + - + - + - + - - + - + - - - - - - + + + + - - - - + + - - + - - - - - - - - - + - + + + - + - - - - + + + - - - - - - - - - + - - + + - + - + + - - - + + + - - + + + - - - - - - - + + + - - + - - - - - - - - + + - - - - + + - - + + - - - - + - - - + + + - - + - + - - + + + - - + - + - - + + + + - + - + - + + - + - - - + + - + - - - + + - - - + + + - - - + + - - - - + + - - - - - - - - + + + + - - - + - - - + + - + - + + - + + + - + + + - + - + - - - - - - - + + - + + + + + + + - - + + + + + - - - - - + + - - + - - + + + + + - - - - + - - + - + + + - - + + - + - - + - - + + + - - + + - + + - - - + - - - - + + + + - - - + + + - + + - + + - - - - - + + + - - - + + - - - - - + + - + + + - + + + - - - - + - + + + + + - - - + + - + + - + + + - + + + + + + - - - - - - + + + - + - + @@ -17171,75 +16452,67 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC + - - - - - + + - - - - - + - - - - + + + - - + - - - - + + - + - - + - + - - - - + - - - + + + + - + + + + + + @@ -17247,361 +16520,388 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - + + + - + - + - - - - - + + + + + - + - + + + + - + + - + + + + + + - + - + + - - + + + + - + + + + + - - - + + - + + - - + - + + - - - - - - - + + - - + + + - + - - - + + - - - + - + - - + - - + + - + - + - + - - + - - + + - - - + + + + + + + + - + + + - - - - - - + + - + + + - - + - - - - + - - - - - - + + - + - - - + + + - - + + - + + + + - + + - + + + + - + + - + + + - + + + - - - - - - + + + + + - - + + + + + - + - + + + + - + + + + - + + - - + + + - - + - + + - - - + + + + - - - + @@ -17609,226 +16909,248 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC + + + + - + + - + + + + + - - - - - - + - + - - - + - - - - - + - + + + + + - - + - - + + + + - + - - + + - - - - - + + - - - + + + + + - + + + + + - + + + + + - + - + + - - - - - - + + - - + + + - + + + + - + - + + - - - - + + + + + + - - - + + - - + + + + + - + + + - - + - - + + - + + + + - + + + + - - - + + @@ -17836,47 +17158,56 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - - + - + - - + - + + + - + + + + - + + + + + + + @@ -17884,251 +17215,217 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - - + + + + + + + - - - + + + - - - - - - - - - - - - + - - - - - - - + + + + + + + - - - + + - + - + - + + + - - - - + + + - + - + + - - + + + + - - - - - - - - + + - + - - - - - - + - - - - + + - - - + + + + + - - - - - - - - + + - + + - - + - + - + + - - - - - + + - - - - - - + - - - - - - + - + - - - + - + + - - - + + - - - - - + - + - - - + + - - + + - + + + + + - + + @@ -18136,46 +17433,45 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - - - - - - + + + + + - + + - - - - + + + + - - + + + + - - - @@ -18184,40 +17480,41 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC + + - - - + + + + + - - + - - - - - + - + - + + - - - + + - + + - + + @@ -18225,48 +17522,33 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - + - - - - - - + - - - + + + + - + - - - - + - - - - + - + - - - - - @@ -18274,136 +17556,138 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC + + - + - - - - + + + - + + + - - - + + - + + + - - - - + - + - - + - + + + - - - - - + - + + + + - - + + + + - - - + + + - - - + + + - - + - - - - - + - - + + + + + + @@ -18411,168 +17695,186 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC + - - + + + - - + + - - + - + + - - + - - + - + + - + + + + + + + + + - - + - + + + - - + + + - - + - - - - - - - - - + + + - + + - - + + + + + + - - + - - + - - + + + - - - - + + + + - - + + + + + - - + + + + - - + + + - + - - - + + + + + - + + + - - - - - + - + + + + + @@ -18580,409 +17882,467 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - + + + + + - - + - + - - - + + - + + + - + + + + - - - - + + + - + + - + - - + + + + + - + + + - - - + + + - + + + + + + + - + + + + - + + + + - - - + + + + - + + + - + + + + + - + + + + + - + + + + + - + - - - - + + + + + + - + - + + - - + + + + + + - - + + + - - - - - + + + - + - - - - - + + + + - + - + + - - - + + + + + - - + + + - - + + + - - - + + - - + + + - - - - + - + + + - - - + + + - - + + - - - - + - - - + + + + + + + + + + + - - + + + - - - - + + + + + - - + - - - - + + + + + + + + + + + + - - - - - - - + + - + - + - - - - + + + - - - + + + - + + + - + + + - - - - - + + - - - - - - + + + + + + + - + - + - + - - - - + - - - + + + - - - + + + - + - + - - + + + + - + - - - - + + - - + + - + + - + - + + - - + - + + - + + @@ -18990,2001 +18350,1934 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC + - - + + - - + - - + + + + - + + + + - - + - - - - - + - - - - - - + + + - - + - - + - - + + - + - - - - - - - - - + + + - + + + - - - - + + + + - + - - - - - - + + + + + + + - + - - + + + - + - - - - - + + - - - - + + + + + + - - - + - + + - - - - - - + + + + + + - + + - - - + + + + + - + + - + - + + + + + - + + - - + + + + + + - - - - + + + + - - - - - - + + + - - + + + + - - + - + - + + + + + - - + - - - + - - - + + - - - - + + - + + + + - - - + - - - + + - + + + + - - + + - - - - + + - - - - - + + + - - - + + + + + + + + - - + + + + - - + + - + - - + - - - + + + - + - - - + + + + - + + - + + + - - - + - + + - - - + + + - - + - - + + + - - + + - - - - + - - - - - - - - - - - + + + + + + - - - - - - - - - + + + - + + + - - + + - - - - + + + - - - - + + - - + - + - - + - + + - + + + + + + + + + - + + - + - - + - + + + + - + - - - + + + + - - - - + - - - - + + - - - + - - - - - - - + - + - + - - + - - + + + - - - + + + - + + - - + + + - - - + + + + - - - - + + + - - - + + + - + + - - - - - - - - + - - + - + - + + + - + - - + - - - - - + + - + + + + - - + - - - + + - + - - - + - - - - - + + + + - - + - - + - + - - + + + - + - - - - - + + + - - - - - - + - - - + + - - + - - - + - - + - - - + + + - - + + + + + - - - + + + + + + + - - - - + + + + + + + + - - - - + - - - - + + + + + - - - + + + - - - - + + + + - + + - + - - + - - - - - + + + - - + + + + - - - - - + + + + + - + + - + - - - - + + - + - + - - + + + + - - + - - + + + + - + - - + + - + - + + + - + + - - - - - - - - - + + + - - - - - + - + + - - + - - - - + + - + - - + + - - + + - - - + - - + + - - - + - + + + + + + + + - + + - + - - + + - - + + - - + + + - - - + + + + - - + - + - - + + - - - + + - + - - + - - + + - - - - + - + + - + + + + - - - - - - - - + + + - + + - - - - + + + - - - + - + + + - - - - + + - + - - - - - - - + - - + - - - - - - + + + - - - - - - + + + + - - - - - - + + + + + - + - - - - - + + - - - + - + + - + + - - - - - - - + - + + - - + + - - - - - - + + + + + - + + + - - - + + + - - + + + + - + + - + - + - - - - - + + - + - + - + + + - + - + + + + - - - + + - - - - + + - - + - - - - - + + + + - - - - + + + + + + + - - - - + + + + - + - + - - - - - + + - - - - - - - - - - + + - - + + - + - + + - + + + - - - + - - + - - - - + + + + + + + + - + + + - + + - - + - + - + - - + - - - - - - + - - + + - - + - - - + + + + - + - - - - + + + - - - + + + + + + - - - + + - + + - + + - - + + - - - - - - + + + - + + - - + + - - - - - + - - - - - - - + - - + - - + + + + + + - - - - - + - - - - - - - - + + - - - + - - - - - + + - - - - + + - - + + - - - + - - - + + + + - + - - - - - - - - - + + + + - + + + + + + + - - - + - + + + + + - + + + + + - - - - - - - - + - - - - + - + - + - - - + + + - - - - + - - - - + + + + - - - + + + - - - - - - + - - + - + - - - - - + + + - + + + - + + + + + + + + + - - - - - - + - - - + + + + + + - - + + - + + + + - - - - - - - - - - + + + + + + + - + - + - - - + + + + + + - - + + + - - + + + - - + + + + + - - + + + + - - + + + + - - + + + + - - + + - - - - - + + + + + + + + + - - - - - + + - + - + - + + + - - - + - - - - + + - - + + - - - - - - - + + - - + + + - - - - - + + + + + + - + + + + + + - - - - - + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + - - + - + - - - - + - - - + + - - + - - - - - - + + + + + - - - - - + - - + + + - + + - - - - - - + - - @@ -20993,177 +20286,167 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - - - - - - + + - - + + + - + - - - + - - + + - - - + + + + - - - + - - - - - + + + + + - - + - - - + + - + + - - + + - + + - + - + + + - - - - + + - + - + + + - - + + + - + - + + + - + - + - - + + - - - - - + + + - - - - + - - - - - + - - - + + + @@ -21172,21 +20455,23 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC + + + + - + + - - - + - - + + - @@ -21194,511 +20479,464 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - - - - + + - - - - - - + + + + - + - - + + + + - + + + + - + - + + - + + - + - + - + - + + + - - - - - + - - - - - + + - + + + - - + - - + + + + + + - - - + - - - + - - - + - - - - - - - - - + + - - - + + + + - - + + + - + + - + - + + - - - - - - + + - + + + + + - + + + - + - + + + - + + + - - + - + + - - - + + - - + + - + - + + - + + + + + - - - - - + - - - - - - + + + - + - - - + - + + + - - - + - - - - + + - + - - - + + - - - - - - + - - + + + - - - - - + + - - - - - - - + + + - - - + - - - - - - + - + - - + + - - - - - - - + + + + - - + + - - - - + + + + - - - - - + + + - - - - + + - - - - - + + + - - + - - - + - - - - + + + - - + - + + + + - - - - + + - + + - + - - + - + - - - + - - - - - - - - - - - + + - - - - - - + + - - - + + + + + + - + + - - + + + - + - + + + - - + + + - + + + - - - - - + + @@ -21707,681 +20945,655 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC + + + - + + + - - - - - - - - - + - - - - + + - - - - + - + + - - + - - - - - + + - - - - - + + - - - + + + - - - - - + - - - - + + + + - + + + - - - - - + - - + + + - - + + + + + - + + - - - + + - + + + + + + - + + - + + + + - + + - + + - - + + - - - + - - + - - + - - - + + + + + + + + - - - + + - - - + + + + - + + + - - - - - - + + + + + + + + - - - + - + - - + + + - + + - - + - - - - + + - - + + - - - - - - + + - - - + - - - - + + + + + + - - - + + - - - - + + + - + + + + + + - - - + - - + + - - - - + - + + - - - - + + - - + - - + + - + + + + - + - + - + + - - - - - - - + - + - - + - - + - - - - + + - + - + - - - + - + - - - - - + + + + + - - + - - - + + + - - - - + - - - + - + + - + - - - - + + - + + - - - - - - - - - + + + - - + - - + + + + - - - + + - - - - + + - - + - - - - - - + + + + + - - - + - + + + + + + + + + + + + + - - - - - - + + + + - - + + + - + + + - - - - - + + + + - - - - + + + + + - - - + - + - - + + + + + + - - - + - - - - + + + + + - - + + + + + - - + - + - - + + + + - + + - + - - - + + - + - - + - - - - - + + + + + + - - + + + - - - + - - - - - + + - - - - - + + + + - - - + - - - + - - + + + + @@ -22391,604 +21603,541 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - - - - + - - - - - - - + + + + + - + + - - - + - - - + + + - - + - - + - - + - - + + - - - - + + + + + + + + + + - - - - - + + + - + - - + + + - - - - - + - - + - - + - + - + - - + - + + + - + + - - - - - + + - - - - - - + + - - - + + - - + - - - - - - - - - - - - + - - - - + + + + - - - - - - + + + - + + + + - - - + - - - - + - + - - + + + + + - - - + - - - - + + - - - - + + + + + + + - + - - + + - - + + + + - - - - - + + + - + + - - - - + - - - + - - - + - - - + + - + + + - - - - + + + + - + + - + - + - - - - - - - + - + + + - - + + - + + + - + - + - - - - + + + + + - + + - + - - - - - + - - - + - - - - - + + - - + + + - + + - - + + + + - - - - - - + + + - - - + + - - - - - - - - - - - - - + + + + - - - + + - - + - - - - - + + + + + + + + + + - - - + - + + - - - - - - - - - + - - - + + - - - + + + - - - + + + - + - + + + - + - - - - - - - - - - + - + + + + - + + + - - - - - - - - - - - - - - + + + + + + - + - + + + - - - + + - - + + + + + + + - + + @@ -23000,7 +22149,9 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - + + + @@ -23015,30 +22166,38 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - + + + + - - + - + + + + - + - - + + + - + + + @@ -23047,175 +22206,190 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - - + - - + + - + + + - + - - + - + + + + + - - - - + - + + + + - - + + - + - + + + - + + - - + + + + - + - + + + - - + + - + - - + + + + - - + + - + - + - + - - + + - - + + + + - + @@ -23235,32 +22409,30 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC + - - + - - - - + + - + - + @@ -23268,144 +22440,164 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - + - - + + - - - + - - - + + + + - + + + + + + + - + + + + - + + + + + - - - + + - + - + + - + - - + - + - - + + - + + - + - - - + + + - + + + + + + + - + - + - + - + + - - + - + + + @@ -23415,32 +22607,30 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - - - - - + - - + + + + - + - + + - + - @@ -23448,29 +22638,30 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - + + - - + - - + + - - + + + @@ -23478,12 +22669,12 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC + - - + @@ -23491,6 +22682,8 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC + + @@ -23500,14 +22693,18 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC + + + + @@ -23519,282 +22716,278 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC + + - - - - - + + + + + + - - - - + + - + + + + - + + + + + + + - - - + - - + + - - + - + - + + - - + + + + + + + + + + + + - - + - + - - - - - + + - + + - + - + + - + + + + + + + + - + + + + + + - - + - + + - - - - - - - + + + + + + + - - - - + - + - - - - - - - + + + - - - - - + - - - - - + - + + + - + + + + + + - - - - + - - - - - - - - + - + + - - - - - + - + + + - - - - - - - + + + + - + + - - - - + + + - - + - + - + - - - - - - - + + - - + + - - - - - - + + @@ -23802,58 +22995,54 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - + + + - - + + + - - - - - + + + + - + + - - - + + + - - - - + - - - + - - - + - - - + + + @@ -23863,749 +23052,679 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - - + + - - - + - - + - + - + - - + + + - + + - - + - - - - - - - + + + + + + - - - - - - - - - - + + + - - - + - - - - + - - + + + - - - - - - - + - + + + - - + - - + - + - - - - + - - - + - - - - + + + + - - - + - - - + - - - + + - + + - - - - - + - - - - - + + + + + + - + + + - + + - + + + - - - + + - + - + - - + + + + + + + - + - + + + + + - + + + + - - + + - + - - - - + + + - - - + - - - - + + + + + + - + + + + + - - - + - - + - - - - + + + + + - + - - + + + + - - + + + - - - - + - - + - - - + + + - - - - + + - - - - + - - - + + - + + - + - - - + - - + + - - + - - - - + + - + - - - + - - - + - + - - - - - - - - - - + + + - + + + + - - + + + + - - - + + + - - + + - + + + - - - + + - - + + + + - + + + - + - + + - + - + + + - + - - - - - - - - - + + + - + + - - - + + + + - + - + - - + + + - - + + + + - + - + - + - + + + - - - + - + + - - - + + - + + + - - + + + + + + - - + + - + + + - - - - - - - - - + - + + + - + - - - - - - - - - - - - - - + - - - - + + - - - - - - - - - - - - - - - - - - - + + + + - - - - - + + + + + + - - - + + - + + - + + + - + - - + + - - + - - - - - - - + - - + + - - - - - - - - - + - + + + + - - - - + + - - + + + - - - - - - - @@ -24614,422 +23733,403 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC + - - + + + - - - + + - - - - + + - - - - - - + + + + + + - + + + - - - + - - + + + + + + - + + + + + - + + + + + + + + - + + + + - + + - + - - - - - - - - + + - - + + - - - - + + - + - - + + + - - - - + + + + - - - - + - - + + + + + - + - + - + + + + + + - - + + - + - - + + - - - - - + + + - - - + + + + + - + - - - - - - + - - + - - + - - - - + + - - - + - + - - + + - + + - - - - - - + + + - - + + - - - - + - - + + + - - + + + - - + - - - - + - + - - - - - + + + + + + + + + + - - - - + - - + + + - - - - - - + + - - - + + - + + + - + + + - + - + - + + - - - - + - - - - - + - - + + - - - - + + + - - - + + + - - - + + - + + + + - - - + + - - - - - - + + + + - - - - + + + - - - - - + + + + - - + - - + - + + + - + - + - - - + + - - - - + + + + - - + + - - - - - - - - @@ -25038,625 +24138,582 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - + - + + + + - - - + + - - - - - + + + + - + - - + + + - + - + + - - + - - + + + + - + + + + + + - - + - + + + - - - + + - - + + + + + + - + - - - - - + + - - + + - + - + + - + + + + + - - + - - - - - - - - + + + + + - - - + + - - + + - - + - - - - + + + + - - - + + - + - + + - - + + + + - - + - - - - - - + - - - + + - + + - - + + - - - + + + + - - - - + + + + + - - - + - - + + + - - - + + - - - - - - - + + + - + - + - - - - + + - - - - - - - + + + + + + + + + + + - - + + + + + - - + - + + + + + - + - - + + + - - - + + + - - - + + + - - - - - + + + - + - - - + - - - - - + + + - + - - - + + + - + + + + - + + - + + - + - - - - + + - - + - - - - - - - - - - - - - + - + - - - - - - + + - - + - + - - - - - + - - - - + + - - - - - - - + + + - - - - - - - + + + + + - - + + - - - - + - - - - - - - + + + + - + + + - - + + + + + + - - + - - - - - + + + + + - - + - - + - + + - + - + - - - - + - + + - - - - - - - + + + - - - - - + + - + - - - - - + + - - - + + + + + - - - + + + - + - - + + - - + - - - - - - + + + - - + - - + + - - + - - + + - - + - + - @@ -25664,263 +24721,253 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - - + + + + + + + - + - - + + - - + + + + - - + - + + + + + + - - - + + - + + - - - - - - + + + + - + - + - + - - - - - - + + - + - + + - + - - - - + + + - - - + - - + - + + + - + - - - - - - - + + - - + + - - + - - - - - + + - - - - - + + + + - - - + + + + + + + + - - - - - - - - + + + + + - - + + - - - - + - + + - + - - - + + + - - + - - + - + + - - - - + - - + - - - + + - + + + + + - + + - - - - - + + - + @@ -25928,168 +24975,160 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - - + - + + - + - - - + + + + + - - - - - - - - - - + + + + - + - + - - + + + + + - - + + - - + - - - + + + + - - - + - + + + - - - - - - - + - - - - - - - - - + + + - + - - - + + - - + + - + + + + + + + - - + + - - + + - + - - + + - - + + - + @@ -26099,252 +25138,248 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC + - + - - + - - - - - + - + + - - - - - - - + + + - - + - - + - + + + - - + + + - - + + + - + - + + - + + + + - - - + + + + - + - + + + + - + + + + - + - - + + + - + + + - - - - - + - + - - + + - + - - - + + - - - - + + + + - + + + + - - + - - - + + - - + + - + + - - + + + + + - - - - - - - - - - + + + - - + - + + + - - - - + - - + + + - + - - + + - + - + + - - + + - + - + - + + + - - - - - - - - - + + - - - + - + + @@ -26352,272 +25387,263 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC + - + - + - - - - - + + - - + - - - - - + + + + - - - + - - - - + - - + - - - - + + + + + + - + - - - + + + + + - + + - + - + - - - - + + - - - - - + - - + + + + - - + + - - - - + + + + - + - + - + + + - + + + + - + - - - + + + - - + - + - - + + - - + + - - - + + + - - + + + + - - - - - + - - - + - + + - - - + + + - - + + - - - + - + + - - - + - - + + - + - - - - - + + + + - - + - + - + + - - - + + + + + + @@ -26626,319 +25652,312 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - - - - - - - - - - + - + - - - + - - - - - - - - + + - - + + + + - - - + + + - - + + - - - - - + + + + - - - + + + + + + - + + - - + - + + - - - - - - + + - - - + - - + - - - + + + - + - - + - - + + - - - - + + - + + + - + + + - - + + - + - - - + + - + - + + + - + + + - + + - + + - - + + + + + + + + - - + - - + + + - + + - + - - - - - - + + + + + - + - - - - - + + - - - + + - + + - - - - + + - - - - + + - - - - + + - + + + + - + + + - + + + + + @@ -26949,52 +25968,41 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - - + + - - + - - - - - - - - - - - + + - + + - - - - + + @@ -27003,130 +26011,142 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC + - + + - + + + - - - + + - - - - - - + - + + - - + - - + - + + + + - + + + + - + + - - + + + + + + + - - + - - + - - - - + - + + + + - + - - - - - + - + + + + + + + - + + + + + - - - + + @@ -27137,16 +26157,19 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - + + + - + + @@ -27154,30 +26177,37 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC + + + + + + - - - - + + + + + - - - - + + + - + + @@ -27185,163 +26215,177 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - - - + + - - - + + + + + - + + - - + - - + + + + + - + + - + + + + + - - + + - - - - - + + - - + - - + - + + - - + + - + + + + - + + + + - - - + + + - + - - + + - - - + + + - - + - + + + + - + + @@ -27351,96 +26395,120 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - - + + - + + - + - + + + - + + + - + + - - - + - + + + - - + - + + - - - + + + + + + + + - + + - - + + + + + + + + + + + - + - + - + + + + @@ -27448,271 +26516,280 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - - + - - - + - - - - + + + - + - + + + - - + + + - + + - + + + - - + + + - - - + + + - + - - + + + + + - - + + + + + - - - + + + + - - - + - + - - + - - + + - - + - - + + + + + - - - + + + + - - + + - - + + - - - - + - - + - - - + - - + + + + - - - - + + + + + + + + - - - - - + + + - + - + + + - - - - + + + - - - - + + + - - - - - - - - + + + + + - + + + + - - - - + + + + + @@ -27720,1185 +26797,1166 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - - + - + - + + + - - + + + + + - + - + - - + + - + + - + + - - - - + + + - + - + - + + + - + + + - + + + + - - + + + - - - + + - - - - + - + + - + - - - + - - + + - - + + - - + - - - + + + + + + - - + - - - + + - + - - + - - - + + - - - + + - - + + - + - - - + - + + + + - - - + + - - + - - + - + - + - - - + + + + + - - + - - - - - + - - - + + - - - + - - - + + - - + + + + + - - - - - - - + + + + + + - + - + - + + + - - - - + + + + + + + + + + + - - - + - - - + + + - - + + + - - + + + + - + - - + - - + + + + - + + - - + - - + - + + + - + - + - - + - - + + - - - + + + - - - + - - - - - - - - + - - - - - + + + - + - - + + - - - - + + - - - + + + - - + - + - - - - + - - - + + + - - - + + - - - - + + - - + - - - - - - - - - - - - - - + - - - - + - - - - - + + + - - + + + - - + + + + + - - - + + - - - - + - - + - - + + - - + - - - - - + + + - - + - - - - - + - - - - - + + + + + - + - - + - - + + - + + + + - - + - + - + + + + + + + + + - - - - + + - - - - + - + - - - - - + + + + - - - + - - - - - - + - - + - + - + + + + + + + + + + + - + - - - + - - - - + - - + - - + + - - + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + + - + + + - - - - + + - - - - + + + + - - - - - + + - + + - + - - - + + - - + - - - + - - - - - - + + - + - - - + - + + - - + + + - - + + - - - + + - + + - - - - + + - - + - - - + + + - - - - - + + + + + + - + + - + - + + + - - - - - - + - - + + + + - - + - - - + - - - + - - - - + - + - - - + + - - - - + + + + + + - - - + + + + + + - - + + - - - - - + - - - - - - - + + + - - + + - - - - + + - + + - - + + + - - - + + + + - + - + + + - - - + + + - - - - - + - + + + - - - + - + + - - - - - + + + + + + + - - - - - - + + + + + - + - - - + - - - - + - + - - - + + - + - - - + - - - + + - + - - + + + + - - - + - + - - - - - - + + + + + + - - + + - + + + + + + + + + + + + + + + + + + + + + + + + - - - - + + - + + - - + - - - - + + + - + + + + + - + + + + - + - - - + + - + - - + - - - + + - - - - + + + @@ -28908,390 +27966,368 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC + + + + + - - + + + - + - - + + - - - - - - - - - + + + + + + + - - + - - - + + + + - - - + + + - + + - - + + - + - - + - - - + + + + + - + + + + + + + - + + - + + + - + + + + + - + - - - + - - + + + - - + - - + - - - - + - - + - - - - - - - - - + + + - + + - - + + + + - - + - - - - + - - - - - + + - - + - + + - - - - - + - + + + - - - - - + - - + + + - + + - - - - + + + - - - + - - - + + - - + - - - - + + + + - - + + + - - - - - - - - - + + + - - + - - - - - - - - - - - - - - + + - - - - - - + + - + + + + + - - - + + + + + - + - + - + + - - - + + - - + + + + - - - + + - - + - + + @@ -29299,536 +28335,503 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - + + + - + + + - + - + + - - - - + + - - + - - - - - + + + - + - - - - - + - + + - - - + - + + + - - + + + + + - + + - - - + - - - - - + + - - + + - - - - + + - + + + + - + + - + - - + - + - - - - + + + + - - - - + + - - + - - - - + - - + + + - - - - + + - - - + + + + - - + - - + - - - - + + + - + - - + + + + + - - - + + + + - + - + + + + - - + + + - - - - - + + + - - - + + + + - + + - - + - - - + - + + - + - - + - - + + - + - - - - + + - + + + - - + + + - - - + - + + - + + - + - - - - - - - + - + + - + + + - - - - - + - + + - - + + + - - - - + - + + + + - - + + - - - + + + - - + + - - + + - - + - - - + - - - + - - + - + + - + - - - + - + + + + + - + - - + + - - + + + - - + - - - - - - - - + + - - + + - - + + - + + + + - - - + + - - - - - + + + - - + - - - - - - - + - - - + - - - - + - - + @@ -29836,818 +28839,804 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC + - + + - - + + - - + + - - - + - + + + - - - + - + + - + + + - + + + - - - - - - - + + + + + - + - - - + + + + - - + - + + - - - + - - + + + + - - + + + + + + - + + - - - - + + - + - - - - + + - + - - - + + + + - - + + + - - + + - - + + + + - - + - + + + + + + - - - + + + + + - + - - + + + + + + + + + + - - + + - - + + + + + - - + - + - + - - - + - + + + - + + + - - + - + - - + - - - + - - - + - - + + - - + + + + - - + - - + + + - - - + + + - - - - - - - - + + - - - + - - - - + + - + - + + - + + + + - - + - + - - - - - - + - + - - + + - - - + - + + + - + + + - - - + + + + + + + + + - + + + + + + + + + + + + - + + + - + - - + - + - - + - - - - - + - - - - + - - + - - - - + + + + - - - - - - - + + + + - + + - - - - - - - - - - + - - - - + - - - - + + - + + - - - - - - + - - - - - + + - - + + - - - + + + + + + + + + - - - + - - - + - - + + - - + + - + + - - - - - - + + + - - - + - - - + - + + + + - - - + + + + - - + + + + + - - - - - - - - + + + + - + + - + + - - - - - + + - + + - - - - - + + + + + - + - - - + - + + - - + - + + + - - - - - + + + + - + - - + + + - - - + - + - + + + - - + + - + + - - - + + - - - - - - + + - - - + - + - - - - + + + - - - - - + + + - - + - - + - + - + - - - - + - + + - - + - + + + + - + - - + - - - + - - + - + + + + - + + - - + @@ -30655,1280 +29644,1168 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC + + - + + - + + - + - + - + + + - + + + - + - + + - + + + + - - + - - - + + - + + - - - - + + - + - - - + + + + + - - - + + - - - + + - - - - - - + - - - + - - + + + - - - - - + + + - - - + + - - + - + - + + - - - - - - - + - - + + - - + + - - - + + + + + + + + - - - - + + + + - + - + + + - + - + + + + + - + + + - - - - - - - - + - - - - - - + - + + + + - + - - + + - + + - + + + + + + + + + - + + + - - + - - - - - - + + - + - - - - - - - - + + - - - - - + + + - - + - - + - - + - - - + + + + - - - - + + - - - - + + - - - - + - - - - + - + - - + + - - + + + + - - - - - - + + - - - - - + + - + + + - + + - - - - - - + + + - - - - + + - - - - + - - - - + - + + - + - + + - - - - - + - - - - - - + - - - - - - - - - - - + - - - + - - - + - + + - - + + + - - + + - - + - + + + + + + + + - - - + + - + - - - - - - + + - - - + + + + - + - + - - + + - - - - - - - - - + - + + + + - - - - - - + - - - + + - - + + - - - - - - - - - + - - - - + + + + + + + - - - - + + + + - - - - + - - - - + - - - + + + - - + - - + - - - - + - + - - + - + + + - - - - + + + - - - - - - - - + - - - + + - - - + + - + - + - - - - + + - - + + - + + - - - - - + - + - + - - - - + - - - + + + + + - - + - + + - + - - + - + + - - - - + + + + - - - + + + - - - - - - - + + + + + + - + - + + + - - - - - - - + + - - - - - - + + + + - - - - - - - + - + - - + - - - - - + - - - + + + - + + + + - - + - - - + + - - - + - - + + + + + + - + + - + + + + + - - - - - - - - + + + - - - + - - - - + - + + + + - - + + + - - + + - - + + + - - + - - - - + + + - - - + - - - + + - - - - + + + + + - - + + + - - - + + - - - - + + - - - - + + + - - + + - - - - - - + + + + + + + + - - + - - - - - + + + + + + - - + - + - + - - - - - + + - + + + + - + - + - + + + + + - - + - - - - + + - - + + + + - + + + - + + - - - - + + - - - - - - - - - - - + + - + + - + - + - - - - + + + + - - - - - - + + + + + + - - + + - - + + @@ -31936,40 +30813,50 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - + - + + + + + - + + + + + + - + - - - - + + + + + @@ -31978,364 +30865,357 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC + + + + - - + + - - - - - - + + + - + - - - + - - - + + + + - - - + - + + + - + - - - - + - - - - - + - + - + + + + + + + + - - + - - + + + - + + + - - - - - - - + + + - - - + + - - + + + + - - + + + + - - - - + + + - - - - - + + - + + - + - - - - + + - - - + + - - + - - + + - - + + + - + + - + + + - - - + + - - - + + + - - - + - - + - + + + - - - + + + + - + - + + - - - - - + + - + + - - + + + - + + - - - - - - + + - - - - - + + + - - - - - + - + + + + - - - - + + - - - + + + - + + + - + + + + - - + + + - - - - + + + + - + + + - + + - - - + + - - + + - - + - + + + - + - - - + + + - - - - - - - + + @@ -32343,400 +31223,432 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - - + - - + - - - - + - + + + + + + - - + - - + + - + - - - + - + + + + - - + + - - + - - + + + - - - - - - + - - + + + - + - - - - - + - - - - + + - + + - + + + - - - + - - - - - - - + + + - - + - - - - - + + - - + - - - + + - - + + + - - - - - + + - + + - + + + + + + + + - + - - + - + - - - + + + + + - - + + + + + - - + - + - + - - - + + - - - + + - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + - + + + - - - + + + + + + + + + + + + + + + + + + + + + - - - - + + + + + + + + - - + - - + - + - - + - - - + + + - + - - - - + + - - + + - - + + + + - + + + - + + - - - - - - - - + - - - + + + - - + - - - + - - - - - - - - - + + + + - + + - - - + - + - - + + + + + + - + - - + - + - - - - - - - + + + - + - + @@ -32744,6 +31656,7 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC + @@ -32753,88 +31666,80 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - + + - - - - + + + - - + - + - + - - + + - - - - + - - - - - + + - + - - + + - - + - + + - - - + - + + + - + - - + - - - + + + @@ -32842,200 +31747,195 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - - + + + - - - - + + + - - + + - - - - + + - + + - + + + - - - - + + + - - + - + - - - - - - - - - - - - + - - - - + + - - - - + - - + - + - + + - - - - + - + + - + - + - - - + + + + + + + - + + + + - + + - + + - - + - + + - - + + - + - - + + - - + - - - - - + + + - + + - + + - + - - + - - - - + + + + + + + + + + + + - + - @@ -33047,94 +31947,93 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - + - - - + + + - - + + - - + + + + - + + + - - + + + + + - - - - - - + + - + + + - - + - - - - - - - - + + + - - - - - - + + + + - + + + + - @@ -33142,368 +32041,379 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - - - - + + + - + - - + - - - - - - + + + + + - - + + - + + + - - - + + - - - - - - - - + + + + + + - + + - + - - + + + + + + - - - + - + - + - - + + + - - - - - - + + + - - - - - - + + + + - - + + + - + + + + + + + + + + + + + - - - - - + + + - + - + - - - + - - - + - + - + - + + - - + + + - + + + - - - + - - + + + - - + + + - + + - - + - - - - + + + + + + - + - + - - + + + + - + - + + - + + + - - - - - + + + + + - - - + + - + + + + + + - + + + + - - - - + - - + - + + - + - + - - - + + - - - - + - - + + + - - - + + - - + - - - - - + + + + @@ -33511,149 +32421,147 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - - + + - - - + + + + + - - + + - + + + - - - + + + + - + - + + - - - - - - + - + - - + + - - + + - - - + - - + + + + - - + + + - + - + - - - - - - + + + + + + + + - - - - - + + + - - - - + + - - - + - + + + - - + - - - - + - - - + + - - + + + - - + - - - + - + + + + + + @@ -33663,549 +32571,545 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC + - - + + + + - - - + + + + + - - - - - - - - - - + + - + + + + + + + + + - - + + + - - - + + - - - + - - + - + - - + - + - - + - + + - + + - - - - - + + + + - - - - - + - + + - + + + + + + - - + + + + - - - + + - + + - - - - + - + + - - - - - - + - - + + - + + - - - - - - - - - + + + + - + + + + + + + + + + - + - + + - - + - + + - - - - + + - - - + - + + + + + + + + + + + + - + + + + + - + - - + + - + - + - - + + + - + + + - - - + + - - + + - - - + + - + + - - - - - + + + - + + - + + - + - - + + + - - - - + + + - - + - - - - - - + - + - - - + - - - + + - - - + + - - - - + - - - + + - - - - + + + - - + - + + + - - - + - + - - + + + - + - + + - + + + - + - + + + - + - - - + - - + + - - + - + + + - - - + + + + - - + - + + - + + + + - - - - - - + + - - - - + - + - - - - + + + - - + + + + + - - - - - - - - + + - + + + + + + + - + + + - - - - - - - - - - + - + - - @@ -34213,6 +33117,7 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC + @@ -34224,865 +33129,844 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - - - + - + - - - - - - - + + + + + + - - - - - - - + + - - - + + - - - - - - - - - - + + + + + - - + - - - - + - + + - + - + + + + - - + + + - - - - + + + + - - - - + - + + + - - + + - - - + - - - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + - - - + + - - + + - - + + + + + + - + - + - - - - - - - + - + - - - + - - + - - + - - - - - - - + + - + - + + - + + + - - - - - - + - - - + + + + + - + + - + + + + + + + - - + - + - - - + - - - - - + - - - - - + + + + + + + + - - + + - - + + + + + + + + + - + + - - + + - - - + - + + + - + + - + - + + + - - + - - - - - - + + + - - - + + + + + + - - - - - - - + + + + + + - - - - - + + + - - + + - + - - - - + + + + + + - - - - + + + - - - - - - - + - - - - + + - - - - + - - - + - + + - - - - + + - - + - - - - - - + + - + - - - - - - - - - - + + - - + + - + - - + + + + - - - - + - - + + + + - - - - - + + + - - - - + - - - + - - - + + + - + - + + - - - - - + - - + + + - - - - + + + + - - - - - + + - + - - + + + + - - - + + - - - - - + - - - - - + + - - + + + - - - - + + - + + + - - + - - - - - + + + + + + + + - - + - - + - - - + + - - + + + - - + + - - + - - - - + + + - + - - + + - + + + + - - - + + - + + + - - - - + + - + + + - - - + - - - - - - + - - + + - - - - - + + + - - - + + + + + + + + - + + - - - - - + + + + - - + - - + - - - - + + - - + - - - - + - - + + @@ -35090,167 +33974,164 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - + - - - - - + - + - - - + - + + + - - - - - + + + + + + - + - + + - - + - - + - - - + + + - - + - + + - - - - - + - - + + + + - - + + + + - + - + - - + + + + + - - - - - - + + + + + - + - + + - - + + - + - - - + @@ -35258,30 +34139,27 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - - - - + + + + - - + - - - + @@ -35289,640 +34167,640 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - + + + + + + - - + - - + + + + + + - + - + - - + + - - - + - + + - + + + + - - - - - - - - - - - - - + - + + - + + - - - + + + + + - + - - + + - - + - - + + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + + + + - + + + - - - + - + + - + - - - - + - - + + + - - + + - - + - - - - - - + + - - - - + + - - + + + - - - - + - - - + + - - - + - + - - - - - - - - - - - + + + - - - + - - + + + - - - - - + + + - + - - + - + + - - - + - - - + - - - - - + - - - - - - + + + + - + + + - - - - - - - + - - - - - + + + - + - - - + + + - - - + - - + - - - - - - + + - - - - + + + + - - + + - - + + + + + + + - - - + - + + + - + + - - + - - + - - + + - - - - - - - + + + + + + + + + - - - - - + - - + + - + + - + + + + + - - - - + + + + + + - - - + + - + + + - + - - + + - - - + + - + + - - + - + + + + - - + + - + + - - + + + - - + + + - - + - - + + + - + + + - + + - - - - + + - - + - - - - - - + + - + - - - - - + + + - - - + - - - - + + - + - + - + - - - + - - - + + + + - - + + + + - - - + - - + + + + - - - - + - + + + + - + + - + + + + - + - - - - @@ -35932,118 +34810,98 @@ This file generated by Bitly on Wed, 06 Jul 2016 14:16:32 UTC - + + - - - + - - - - + - + + - - - + - - + - - - + - - - + - + + + - - - - + + + - - + - - - - - - - - - - - - + + - - + + - - + - - + + + + + + - - + + + + - + - + - - - - - - + diff --git a/src/chrome/content/rules/Bitmain.com.xml b/src/chrome/content/rules/Bitmain.com.xml index ec5a363cfb83..e76e4dd6a761 100644 --- a/src/chrome/content/rules/Bitmain.com.xml +++ b/src/chrome/content/rules/Bitmain.com.xml @@ -16,7 +16,7 @@ Fetch error: http://support.bitmain.com/ => https://support.bitmain.com/: (51, " * Secured by us --> - + @@ -27,7 +27,7 @@ Fetch error: http://support.bitmain.com/ => https://support.bitmain.com/: (51, " - + - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Bitmask.net.xml b/src/chrome/content/rules/Bitmask.net.xml index 1121525a369b..78941f8cf638 100644 --- a/src/chrome/content/rules/Bitmask.net.xml +++ b/src/chrome/content/rules/Bitmask.net.xml @@ -12,7 +12,7 @@ Fetch error: http://api.demo.bitmask.net/ => https://api.demo.bitmask.net/: (51, - unstable.bitmask.net --> - + diff --git a/src/chrome/content/rules/Bitmazk.com.xml b/src/chrome/content/rules/Bitmazk.com.xml index 39185d6cd7f9..2c248befb944 100644 --- a/src/chrome/content/rules/Bitmazk.com.xml +++ b/src/chrome/content/rules/Bitmazk.com.xml @@ -9,7 +9,7 @@ Fetch error: http://www.bitmazk.com/ => https://www.bitmazk.com/: (60, 'SSL cert - bitmazk.com --> - + diff --git a/src/chrome/content/rules/Bitmit.xml b/src/chrome/content/rules/Bitmit.xml deleted file mode 100644 index 465d35525a7d..000000000000 --- a/src/chrome/content/rules/Bitmit.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Bitnik.org.xml b/src/chrome/content/rules/Bitnik.org.xml index 20de828778b1..84d572be7e3c 100644 --- a/src/chrome/content/rules/Bitnik.org.xml +++ b/src/chrome/content/rules/Bitnik.org.xml @@ -32,7 +32,7 @@ --> - + - + diff --git a/src/chrome/content/rules/Bitsnoop.com.xml b/src/chrome/content/rules/Bitsnoop.com.xml index ce847681a403..1b883941ba73 100644 --- a/src/chrome/content/rules/Bitsnoop.com.xml +++ b/src/chrome/content/rules/Bitsnoop.com.xml @@ -12,7 +12,7 @@ - + https://about.bitso.com/: (6, 'Could not resolve host: about.bitso.com') - - Insecure cookies are set for these domains: - - - .bitso.com - - - Mixed content: - - - css on about from fonts.googleapis.com * - - * Secured by us - ---> - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Bitsontherun.com.xml b/src/chrome/content/rules/Bitsontherun.com.xml index eca4ad9469d4..69d6c3d4a2af 100644 --- a/src/chrome/content/rules/Bitsontherun.com.xml +++ b/src/chrome/content/rules/Bitsontherun.com.xml @@ -17,13 +17,13 @@ --> - + + - + diff --git a/src/chrome/content/rules/Bittiraha.fi.xml b/src/chrome/content/rules/Bittiraha.fi.xml deleted file mode 100644 index bc1ef5a9e707..000000000000 --- a/src/chrome/content/rules/Bittiraha.fi.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Bittorrent.org.xml b/src/chrome/content/rules/Bittorrent.org.xml index e350307f0643..13145517680f 100644 --- a/src/chrome/content/rules/Bittorrent.org.xml +++ b/src/chrome/content/rules/Bittorrent.org.xml @@ -1,8 +1,13 @@ - - + + - - + + diff --git a/src/chrome/content/rules/Bivol.xml b/src/chrome/content/rules/Bivol.xml index 09d62751076b..66e5dadd822a 100644 --- a/src/chrome/content/rules/Bivol.xml +++ b/src/chrome/content/rules/Bivol.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/BizLand.com.xml b/src/chrome/content/rules/BizLand.com.xml index 68d980e7bae5..039dea50230a 100644 --- a/src/chrome/content/rules/BizLand.com.xml +++ b/src/chrome/content/rules/BizLand.com.xml @@ -21,7 +21,7 @@ --> - + - + diff --git a/src/chrome/content/rules/Bizo_graphics.com.xml b/src/chrome/content/rules/Bizo_graphics.com.xml index a105b3adce90..f002d0117404 100644 --- a/src/chrome/content/rules/Bizo_graphics.com.xml +++ b/src/chrome/content/rules/Bizo_graphics.com.xml @@ -44,7 +44,7 @@ --> - + https://adverising.bizrate.com/: ᶜ See https://owasp.org/index.php/SecureFlag --> - + diff --git a/src/chrome/content/rules/Bizshark.xml b/src/chrome/content/rules/Bizshark.xml index 2dce79096b6e..e277290d1557 100644 --- a/src/chrome/content/rules/Bizshark.xml +++ b/src/chrome/content/rules/Bizshark.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/BlackDiamondEquipment.com.xml b/src/chrome/content/rules/BlackDiamondEquipment.com.xml new file mode 100644 index 000000000000..ac7cf5f1a2af --- /dev/null +++ b/src/chrome/content/rules/BlackDiamondEquipment.com.xml @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/BlackMesh.com.xml b/src/chrome/content/rules/BlackMesh.com.xml index dad273505f8b..7bd92c2b5f12 100644 --- a/src/chrome/content/rules/BlackMesh.com.xml +++ b/src/chrome/content/rules/BlackMesh.com.xml @@ -13,7 +13,11 @@ Fetch error: http://blackmesh.com/ => https://www.blackmesh.com/: Cycle detected - + + + + + @@ -31,7 +35,6 @@ Fetch error: http://blackmesh.com/ => https://www.blackmesh.com/: Cycle detected - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/BlackPearl_PDM.com.xml b/src/chrome/content/rules/BlackPearl_PDM.com.xml index 34ce93d9e711..2770c479d183 100644 --- a/src/chrome/content/rules/BlackPearl_PDM.com.xml +++ b/src/chrome/content/rules/BlackPearl_PDM.com.xml @@ -5,13 +5,13 @@ Fetch error: http://blackpearlpdm.com/ => https://blackpearlpdm.com/: (28, 'Conn Fetch error: http://www.blackpearlpdm.com/ => https://www.blackpearlpdm.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.blackpearlpdm.com'") --> - + - + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/BlackTonic.com.xml b/src/chrome/content/rules/BlackTonic.com.xml index cf8a21421cdb..3e514861764d 100644 --- a/src/chrome/content/rules/BlackTonic.com.xml +++ b/src/chrome/content/rules/BlackTonic.com.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/BlackVPN.xml b/src/chrome/content/rules/BlackVPN.xml index 0762523a7888..6996f826d9cd 100644 --- a/src/chrome/content/rules/BlackVPN.xml +++ b/src/chrome/content/rules/BlackVPN.xml @@ -9,7 +9,8 @@ - + + diff --git a/src/chrome/content/rules/BlackZNC.net.xml b/src/chrome/content/rules/BlackZNC.net.xml deleted file mode 100644 index 2d60b4d7cc15..000000000000 --- a/src/chrome/content/rules/BlackZNC.net.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Black_Duck_Software.com.xml b/src/chrome/content/rules/Black_Duck_Software.com.xml index 6add39a855fb..5042051d7a4d 100644 --- a/src/chrome/content/rules/Black_Duck_Software.com.xml +++ b/src/chrome/content/rules/Black_Duck_Software.com.xml @@ -28,7 +28,10 @@ - + + + + @@ -38,8 +41,7 @@ - + diff --git a/src/chrome/content/rules/Black_Lotus.xml b/src/chrome/content/rules/Black_Lotus.xml index 48fbaecaa523..6bda209dad67 100644 --- a/src/chrome/content/rules/Black_Lotus.xml +++ b/src/chrome/content/rules/Black_Lotus.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.blacklotus.net/ => https://www.blacklotus.net/: (51, "SSL: no alternative certificate subject name matches target host name 'www.blacklotus.net'") --> - + @@ -12,4 +12,4 @@ Fetch error: http://www.blacklotus.net/ => https://www.blacklotus.net/: (51, "SS - \ No newline at end of file + diff --git a/src/chrome/content/rules/Black_Phone.ch.xml b/src/chrome/content/rules/Black_Phone.ch.xml deleted file mode 100644 index 7db94b6d6861..000000000000 --- a/src/chrome/content/rules/Black_Phone.ch.xml +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Blackbaud.xml b/src/chrome/content/rules/Blackbaud.xml index 18e52aba8735..a17faa221df0 100644 --- a/src/chrome/content/rules/Blackbaud.xml +++ b/src/chrome/content/rules/Blackbaud.xml @@ -17,7 +17,7 @@ - + https://supportforums.bla * Secured by us --> - + @@ -132,7 +132,7 @@ Fetch error: http://developerforums.blackberry.com/ => https://supportforums.bla - + - + - - - - - - + diff --git a/src/chrome/content/rules/Blackfire.io.xml b/src/chrome/content/rules/Blackfire.io.xml deleted file mode 100644 index 340414362763..000000000000 --- a/src/chrome/content/rules/Blackfire.io.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Blackfoot.co.uk.xml b/src/chrome/content/rules/Blackfoot.co.uk.xml index b941f6aca160..57a4e5857e1b 100644 --- a/src/chrome/content/rules/Blackfoot.co.uk.xml +++ b/src/chrome/content/rules/Blackfoot.co.uk.xml @@ -6,7 +6,6 @@ Fetch error: http://www.blackfoot.co.uk/ => https://www.blackfoot.co.uk/: (60, ' Other Blackfoot Hosting rulesets: - - Secureuk.net.xml Mixed content: @@ -18,7 +17,7 @@ Fetch error: http://www.blackfoot.co.uk/ => https://www.blackfoot.co.uk/: (60, ' * Secured by us --> - + diff --git a/src/chrome/content/rules/Blacknight-Internet-Solutions.xml b/src/chrome/content/rules/Blacknight-Internet-Solutions.xml index a6b827139abe..5f73c7d30f7e 100644 --- a/src/chrome/content/rules/Blacknight-Internet-Solutions.xml +++ b/src/chrome/content/rules/Blacknight-Internet-Solutions.xml @@ -18,13 +18,15 @@ - + + + + - + - + diff --git a/src/chrome/content/rules/Blackout_Congress.org.xml b/src/chrome/content/rules/Blackout_Congress.org.xml index e63c9a2a5bda..e1696de99a25 100644 --- a/src/chrome/content/rules/Blackout_Congress.org.xml +++ b/src/chrome/content/rules/Blackout_Congress.org.xml @@ -31,7 +31,7 @@ --> - + - + + + + + + + diff --git a/src/chrome/content/rules/BlameStella.xml b/src/chrome/content/rules/BlameStella.xml deleted file mode 100644 index 77fe2cc7d985..000000000000 --- a/src/chrome/content/rules/BlameStella.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Blank_Slate.io.xml b/src/chrome/content/rules/Blank_Slate.io.xml index fa269c273b93..2a39ba99ec86 100644 --- a/src/chrome/content/rules/Blank_Slate.io.xml +++ b/src/chrome/content/rules/Blank_Slate.io.xml @@ -1,33 +1,16 @@ - + - - - - - - diff --git a/src/chrome/content/rules/Blasze.com.xml b/src/chrome/content/rules/Blasze.com.xml new file mode 100644 index 000000000000..030df2ddcca5 --- /dev/null +++ b/src/chrome/content/rules/Blasze.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Blasze.tk.xml b/src/chrome/content/rules/Blasze.tk.xml new file mode 100644 index 000000000000..95a9e27942e4 --- /dev/null +++ b/src/chrome/content/rules/Blasze.tk.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Blau.de.xml b/src/chrome/content/rules/Blau.de.xml index 7995042786fc..5f56623f8a3d 100644 --- a/src/chrome/content/rules/Blau.de.xml +++ b/src/chrome/content/rules/Blau.de.xml @@ -16,7 +16,7 @@ - + - + + + + - + diff --git a/src/chrome/content/rules/BlazeKing.com.xml b/src/chrome/content/rules/BlazeKing.com.xml new file mode 100644 index 000000000000..7cc1cda693a3 --- /dev/null +++ b/src/chrome/content/rules/BlazeKing.com.xml @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Blazing-Thyme.xml b/src/chrome/content/rules/Blazing-Thyme.xml index 71e914e00687..fdb40ef5e240 100644 --- a/src/chrome/content/rules/Blazing-Thyme.xml +++ b/src/chrome/content/rules/Blazing-Thyme.xml @@ -10,13 +10,13 @@ Fetch error: http://www.blazingthyme.com/ => https://www.blazingthyme.com/: (28, shop.blazingthyme.com is handled in Nexternal-clients.xml. --> - + - + diff --git a/src/chrome/content/rules/Blazonco.com.xml b/src/chrome/content/rules/Blazonco.com.xml index 759a818f6c27..0b38a88e72bb 100644 --- a/src/chrome/content/rules/Blazonco.com.xml +++ b/src/chrome/content/rules/Blazonco.com.xml @@ -14,10 +14,10 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Blekko.xml b/src/chrome/content/rules/Blekko.xml deleted file mode 100644 index 4b1689bdb7dd..000000000000 --- a/src/chrome/content/rules/Blekko.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Blendle.xml b/src/chrome/content/rules/Blendle.xml deleted file mode 100644 index cb1b113576d8..000000000000 --- a/src/chrome/content/rules/Blendle.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Blesta.com.xml b/src/chrome/content/rules/Blesta.com.xml index c39205debd8f..2a6d13e7ebfd 100644 --- a/src/chrome/content/rules/Blesta.com.xml +++ b/src/chrome/content/rules/Blesta.com.xml @@ -25,7 +25,7 @@ - + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Blick.xml b/src/chrome/content/rules/Blick.xml index 42ea62f2a074..e79d25d1ac7c 100644 --- a/src/chrome/content/rules/Blick.xml +++ b/src/chrome/content/rules/Blick.xml @@ -1,67 +1,24 @@ - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - + + - - + diff --git a/src/chrome/content/rules/Blickamabend.ch.xml b/src/chrome/content/rules/Blickamabend.ch.xml new file mode 100644 index 000000000000..f2067b3c383c --- /dev/null +++ b/src/chrome/content/rules/Blickamabend.ch.xml @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Blinkeye.ch.xml b/src/chrome/content/rules/Blinkeye.ch.xml index f50d4023dd22..c7f17794f8ef 100644 --- a/src/chrome/content/rules/Blinkeye.ch.xml +++ b/src/chrome/content/rules/Blinkeye.ch.xml @@ -1,9 +1,9 @@ - + - + diff --git a/src/chrome/content/rules/Blip.xml b/src/chrome/content/rules/Blip.xml deleted file mode 100644 index c49c96a1d83c..000000000000 --- a/src/chrome/content/rules/Blip.xml +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/BlockExplorer.nu.xml b/src/chrome/content/rules/BlockExplorer.nu.xml index a2744a303d1d..49d45b5cbd06 100644 --- a/src/chrome/content/rules/BlockExplorer.nu.xml +++ b/src/chrome/content/rules/BlockExplorer.nu.xml @@ -9,7 +9,7 @@ Fetch error: http://www.blockexplorer.nu/ => https://www.blockexplorer.nu/: (7, - .blockexplorer.nu --> - + diff --git a/src/chrome/content/rules/BlockScript.xml b/src/chrome/content/rules/BlockScript.xml index 8fb297e9f7c0..9a2cee8569af 100644 --- a/src/chrome/content/rules/BlockScript.xml +++ b/src/chrome/content/rules/BlockScript.xml @@ -3,7 +3,7 @@ - + + + + + + + + + diff --git a/src/chrome/content/rules/Block_Together.org.xml b/src/chrome/content/rules/Block_Together.org.xml deleted file mode 100644 index c91b44555eeb..000000000000 --- a/src/chrome/content/rules/Block_Together.org.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Blockchainbdgpzk.onion.xml b/src/chrome/content/rules/Blockchainbdgpzk.onion.xml deleted file mode 100644 index 0bed62be86c3..000000000000 --- a/src/chrome/content/rules/Blockchainbdgpzk.onion.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Blocket.se.xml b/src/chrome/content/rules/Blocket.se.xml index 9a57fab7e825..adcccb1be143 100644 --- a/src/chrome/content/rules/Blocket.se.xml +++ b/src/chrome/content/rules/Blocket.se.xml @@ -2,7 +2,6 @@ Other Blocket rulesets: - Blocket.com.xml - - Blockets_Annonswebb.se.xml ^blocket.se: Mismatched diff --git a/src/chrome/content/rules/Blockets_Annonswebb.se.xml b/src/chrome/content/rules/Blockets_Annonswebb.se.xml deleted file mode 100644 index b0872ad49fbd..000000000000 --- a/src/chrome/content/rules/Blockets_Annonswebb.se.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Blockr.io.xml b/src/chrome/content/rules/Blockr.io.xml deleted file mode 100644 index 18a8ad985c8a..000000000000 --- a/src/chrome/content/rules/Blockr.io.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Blockstream.com.xml b/src/chrome/content/rules/Blockstream.com.xml deleted file mode 100644 index 70bc923de0a7..000000000000 --- a/src/chrome/content/rules/Blockstream.com.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Blog.ir.xml b/src/chrome/content/rules/Blog.ir.xml new file mode 100644 index 000000000000..432cbde07919 --- /dev/null +++ b/src/chrome/content/rules/Blog.ir.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/BlogCatalog.xml b/src/chrome/content/rules/BlogCatalog.xml index b0622fc7a4ac..cbe5aba34462 100644 --- a/src/chrome/content/rules/BlogCatalog.xml +++ b/src/chrome/content/rules/BlogCatalog.xml @@ -9,18 +9,18 @@ Fetch error: http://blogcatalog.com/ => https://blogcatalog.com/: Cycle detected - + + - + - + diff --git a/src/chrome/content/rules/BlogGeek.me.xml b/src/chrome/content/rules/BlogGeek.me.xml index 43c2a2e6675b..d35dcd134060 100644 --- a/src/chrome/content/rules/BlogGeek.me.xml +++ b/src/chrome/content/rules/BlogGeek.me.xml @@ -8,7 +8,7 @@ Fetch error: http://www.bloggeek.me/ => https://www.bloggeek.me/: Too many redir - .bloggeek.me --> - + diff --git a/src/chrome/content/rules/Blog_Top_Sites.xml b/src/chrome/content/rules/Blog_Top_Sites.xml index 3485ee8559de..8f72a8f11f04 100644 --- a/src/chrome/content/rules/Blog_Top_Sites.xml +++ b/src/chrome/content/rules/Blog_Top_Sites.xml @@ -28,7 +28,7 @@ --> - + - + + + + + - + diff --git a/src/chrome/content/rules/BloggingTheology.com.xml b/src/chrome/content/rules/BloggingTheology.com.xml new file mode 100644 index 000000000000..e491a9931138 --- /dev/null +++ b/src/chrome/content/rules/BloggingTheology.com.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/BloggingTheology.net.xml b/src/chrome/content/rules/BloggingTheology.net.xml index 53f316910f04..b114022384de 100644 --- a/src/chrome/content/rules/BloggingTheology.net.xml +++ b/src/chrome/content/rules/BloggingTheology.net.xml @@ -2,5 +2,7 @@ + + diff --git a/src/chrome/content/rules/Blogmint.com.xml b/src/chrome/content/rules/Blogmint.com.xml deleted file mode 100644 index f00aaf81d5c9..000000000000 --- a/src/chrome/content/rules/Blogmint.com.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Blogo.xml b/src/chrome/content/rules/Blogo.xml index b2ebe0480784..5205e2d6e4d1 100644 --- a/src/chrome/content/rules/Blogo.xml +++ b/src/chrome/content/rules/Blogo.xml @@ -1,49 +1,14 @@ + - - - - - - - - - - - + diff --git a/src/chrome/content/rules/Blogspot.com_blogs.xml b/src/chrome/content/rules/Blogspot.com_blogs.xml index a01b82d2f96c..60ab8353228f 100644 --- a/src/chrome/content/rules/Blogspot.com_blogs.xml +++ b/src/chrome/content/rules/Blogspot.com_blogs.xml @@ -82,6 +82,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -150,6 +218,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Blogto.com.xml b/src/chrome/content/rules/Blogto.com.xml new file mode 100644 index 000000000000..60ffc27d42ae --- /dev/null +++ b/src/chrome/content/rules/Blogto.com.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Blogtrottr.com.xml b/src/chrome/content/rules/Blogtrottr.com.xml new file mode 100644 index 000000000000..3e155627af26 --- /dev/null +++ b/src/chrome/content/rules/Blogtrottr.com.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Bloo.ie.xml b/src/chrome/content/rules/Bloo.ie.xml index 5e44ba455b17..be19a08ee096 100644 --- a/src/chrome/content/rules/Bloo.ie.xml +++ b/src/chrome/content/rules/Bloo.ie.xml @@ -11,10 +11,12 @@ Fetch error: http://bloo.ie/ => https://bloo.ie/: (6, 'Could not resolve host: b - .bloo.ie --> - + - + + + - + - + + + @@ -20,7 +22,6 @@ Fetch error: http://bloodhoundgang.com/ => https://www.bloodhoundgang.com/: (51, - + diff --git a/src/chrome/content/rules/Bloomberg.com-problematic.xml b/src/chrome/content/rules/Bloomberg.com-problematic.xml deleted file mode 100644 index a79fb324d726..000000000000 --- a/src/chrome/content/rules/Bloomberg.com-problematic.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Bloomberg.net.xml b/src/chrome/content/rules/Bloomberg.net.xml index 54325f4788e2..cbb013d42764 100644 --- a/src/chrome/content/rules/Bloomberg.net.xml +++ b/src/chrome/content/rules/Bloomberg.net.xml @@ -17,7 +17,7 @@ Fetch error: http://nybba2csg.bloomberg.net/ => https://nybba2csg.bloomberg.net/ ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -28,7 +28,7 @@ Fetch error: http://nybba2csg.bloomberg.net/ => https://nybba2csg.bloomberg.net/ --> - + - + + + + + + + + + + + + + + + + - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + + diff --git a/src/chrome/content/rules/Bloomberg_Sports.com.xml b/src/chrome/content/rules/Bloomberg_Sports.com.xml index a064c124bc45..0852b7ecfed6 100644 --- a/src/chrome/content/rules/Bloomberg_Sports.com.xml +++ b/src/chrome/content/rules/Bloomberg_Sports.com.xml @@ -9,10 +9,10 @@ Fetch error: http://bloombergsports.com/ => https://www.bloombergsports.com/: (7 ^: self-signed --> - + - + - + diff --git a/src/chrome/content/rules/Blue-Movie.xml b/src/chrome/content/rules/Blue-Movie.xml index 53569e40431d..fceb671de9a0 100644 --- a/src/chrome/content/rules/Blue-Movie.xml +++ b/src/chrome/content/rules/Blue-Movie.xml @@ -12,7 +12,7 @@ Fetch error: http://bluemovie.eu/ => https://www.bluemovie.eu/: (60, 'SSL certif ^bluemovie.eu: Cert only matches www --> - + @@ -26,7 +26,7 @@ Fetch error: http://bluemovie.eu/ => https://www.bluemovie.eu/: (60, 'SSL certif - + - + + + + + + + + diff --git a/src/chrome/content/rules/BlueCava.xml b/src/chrome/content/rules/BlueCava.xml deleted file mode 100644 index 166f84b4a703..000000000000 --- a/src/chrome/content/rules/BlueCava.xml +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/BlueCoat.xml b/src/chrome/content/rules/BlueCoat.xml index 88c893a9364c..ea8a9b9ae327 100644 --- a/src/chrome/content/rules/BlueCoat.xml +++ b/src/chrome/content/rules/BlueCoat.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://bluecoat.com/ => https://bluecoat.com/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/BlueHost-clients.xml b/src/chrome/content/rules/BlueHost-clients.xml deleted file mode 100644 index 1e25fe1ec6f9..000000000000 --- a/src/chrome/content/rules/BlueHost-clients.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/BlueKrypt.be.xml b/src/chrome/content/rules/BlueKrypt.be.xml new file mode 100644 index 000000000000..9b7098ebf81d --- /dev/null +++ b/src/chrome/content/rules/BlueKrypt.be.xml @@ -0,0 +1,12 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/BlueKrypt.com.xml b/src/chrome/content/rules/BlueKrypt.com.xml deleted file mode 100644 index b22fafc69c46..000000000000 --- a/src/chrome/content/rules/BlueKrypt.com.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/BluePoint.com.ph.xml b/src/chrome/content/rules/BluePoint.com.ph.xml deleted file mode 100644 index d4c2568147be..000000000000 --- a/src/chrome/content/rules/BluePoint.com.ph.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/BlueSnap.com.xml b/src/chrome/content/rules/BlueSnap.com.xml index c729bac8e7ed..2aeb49c0556a 100644 --- a/src/chrome/content/rules/BlueSnap.com.xml +++ b/src/chrome/content/rules/BlueSnap.com.xml @@ -1,7 +1,6 @@ - + diff --git a/src/chrome/content/rules/Blue_Man_Ticketing.xml b/src/chrome/content/rules/Blue_Man_Ticketing.xml deleted file mode 100644 index 692b500e3c81..000000000000 --- a/src/chrome/content/rules/Blue_Man_Ticketing.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Blue_Origin.com.xml b/src/chrome/content/rules/Blue_Origin.com.xml index 9d2ef8d1f005..a62fa61ed12b 100644 --- a/src/chrome/content/rules/Blue_Origin.com.xml +++ b/src/chrome/content/rules/Blue_Origin.com.xml @@ -18,7 +18,7 @@ - + https://www.bluechip.hu/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + - + diff --git a/src/chrome/content/rules/Bluefly.xml b/src/chrome/content/rules/Bluefly.xml deleted file mode 100644 index 6b0dbd12a55b..000000000000 --- a/src/chrome/content/rules/Bluefly.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Bluehost-CDN.com.xml b/src/chrome/content/rules/Bluehost-CDN.com.xml index df092b4d9175..d226e3011bb2 100644 --- a/src/chrome/content/rules/Bluehost-CDN.com.xml +++ b/src/chrome/content/rules/Bluehost-CDN.com.xml @@ -1,21 +1,14 @@ - - - + - - - - - + - + + diff --git a/src/chrome/content/rules/Bluehost.xml b/src/chrome/content/rules/Bluehost.xml index 7f5c7336b766..a9ffc8dcbf32 100644 --- a/src/chrome/content/rules/Bluehost.xml +++ b/src/chrome/content/rules/Bluehost.xml @@ -48,7 +48,7 @@ - + diff --git a/src/chrome/content/rules/Bluehosting.pl.xml b/src/chrome/content/rules/Bluehosting.pl.xml index ee153569fd6b..1e16c52787fe 100644 --- a/src/chrome/content/rules/Bluehosting.pl.xml +++ b/src/chrome/content/rules/Bluehosting.pl.xml @@ -16,4 +16,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Bluerazor.com.xml b/src/chrome/content/rules/Bluerazor.com.xml new file mode 100644 index 000000000000..bd2aff26b1a3 --- /dev/null +++ b/src/chrome/content/rules/Bluerazor.com.xml @@ -0,0 +1,10 @@ + + + + + + + diff --git a/src/chrome/content/rules/Bluetooth.org.xml b/src/chrome/content/rules/Bluetooth.org.xml deleted file mode 100644 index cf35bf35ba8c..000000000000 --- a/src/chrome/content/rules/Bluetooth.org.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Bluewin-HostCenter.xml b/src/chrome/content/rules/Bluewin-HostCenter.xml index 6d444cd0f629..b353c0c919c9 100644 --- a/src/chrome/content/rules/Bluewin-HostCenter.xml +++ b/src/chrome/content/rules/Bluewin-HostCenter.xml @@ -9,7 +9,7 @@ Fetch error: http://www.hostcenter.com/ => https://www.hostcenter.com/: (60, 'SS For other Swisscom coverage, see Swisscom.ch.xml. --> - + diff --git a/src/chrome/content/rules/Bluewin.ch.xml b/src/chrome/content/rules/Bluewin.ch.xml index 073e9ae60a4e..389aac5be0b1 100644 --- a/src/chrome/content/rules/Bluewin.ch.xml +++ b/src/chrome/content/rules/Bluewin.ch.xml @@ -31,7 +31,7 @@ Fetch error: http://xtrazone.sso.bluewin.ch/ => https://xtrazone.sso.bluewin.ch/ - rich --> - + diff --git a/src/chrome/content/rules/Blumenthals.xml b/src/chrome/content/rules/Blumenthals.xml index 3a395003dc1f..7aeee3c6fc7e 100644 --- a/src/chrome/content/rules/Blumenthals.xml +++ b/src/chrome/content/rules/Blumenthals.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Blutmagie.de.xml b/src/chrome/content/rules/Blutmagie.de.xml index 9c30cdf46b58..4386dc9318a4 100644 --- a/src/chrome/content/rules/Blutmagie.de.xml +++ b/src/chrome/content/rules/Blutmagie.de.xml @@ -32,4 +32,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Bmmetrix.com.xml b/src/chrome/content/rules/Bmmetrix.com.xml index 96835a1ed8c6..99af0437230a 100644 --- a/src/chrome/content/rules/Bmmetrix.com.xml +++ b/src/chrome/content/rules/Bmmetrix.com.xml @@ -30,16 +30,17 @@ - + + + - + diff --git a/src/chrome/content/rules/Bnc4free.com-falsemixed.xml b/src/chrome/content/rules/Bnc4free.com-falsemixed.xml index 75dc4f1a2fa0..9ae1604b1a26 100644 --- a/src/chrome/content/rules/Bnc4free.com-falsemixed.xml +++ b/src/chrome/content/rules/Bnc4free.com-falsemixed.xml @@ -6,7 +6,7 @@ Fetch error: http://wiki.bnc4free.com/ => https://wiki.bnc4free.com/: (28, 'Conn For rules not causing false/broken MCB, see Bnc4free.com.xml. --> - + diff --git a/src/chrome/content/rules/Bnc4free.com.xml b/src/chrome/content/rules/Bnc4free.com.xml index 9134795df713..e099b88c5e77 100644 --- a/src/chrome/content/rules/Bnc4free.com.xml +++ b/src/chrome/content/rules/Bnc4free.com.xml @@ -24,7 +24,7 @@ Fetch error: http://www.bnc4free.com/ => https://www.bnc4free.com/: (35, 'error: * Secured by us --> - + diff --git a/src/chrome/content/rules/Bnotk.de.xml b/src/chrome/content/rules/Bnotk.de.xml new file mode 100644 index 000000000000..dce03bf7acb5 --- /dev/null +++ b/src/chrome/content/rules/Bnotk.de.xml @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/BoCA.gov.tw.xml b/src/chrome/content/rules/BoCA.gov.tw.xml index f8beb5799076..00b5a782c6a2 100644 --- a/src/chrome/content/rules/BoCA.gov.tw.xml +++ b/src/chrome/content/rules/BoCA.gov.tw.xml @@ -7,7 +7,7 @@ Fetch error: http://www.boca.gov.tw/ => https://www.boca.gov.tw/: (60, 'SSL cert ^: Mismatched --> - + diff --git a/src/chrome/content/rules/Boards.ie.xml b/src/chrome/content/rules/Boards.ie.xml deleted file mode 100644 index 84539d079998..000000000000 --- a/src/chrome/content/rules/Boards.ie.xml +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Boathouse_Crew_Shop.xml b/src/chrome/content/rules/Boathouse_Crew_Shop.xml index 35300acfe9c5..2e66c63ea8ce 100644 --- a/src/chrome/content/rules/Boathouse_Crew_Shop.xml +++ b/src/chrome/content/rules/Boathouse_Crew_Shop.xml @@ -7,7 +7,7 @@ Fetch error: http://www.boathousecrewshop.com/ => https://www.boathousecrewshop. Mixed images from photobucket --> - + @@ -18,4 +18,4 @@ Fetch error: http://www.boathousecrewshop.com/ => https://www.boathousecrewshop. - \ No newline at end of file + diff --git a/src/chrome/content/rules/Boba_Family.xml b/src/chrome/content/rules/Boba_Family.xml index e84670487587..b0ffced0e93d 100644 --- a/src/chrome/content/rules/Boba_Family.xml +++ b/src/chrome/content/rules/Boba_Family.xml @@ -8,16 +8,16 @@ Fetch error: http://www.bobafamily.com/ => https://www.bobafamily.com/: (28, 'Co Disabled by https-everywhere-checker because: Fetch error: http://bobafamily.com/ => https://bobafamily.com/: (51, "SSL: no alternative certificate subject name matches target host name 'bobafamily.com'") --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Bobcares.com.xml b/src/chrome/content/rules/Bobcares.com.xml index 6be16d9a0440..d88c1b0d42d0 100644 --- a/src/chrome/content/rules/Bobcares.com.xml +++ b/src/chrome/content/rules/Bobcares.com.xml @@ -18,7 +18,7 @@ Fetch error: http://portal.bobcares.com/ => https://portal.bobcares.com/: (6, 'C ˢ Secured by us --> - + @@ -26,7 +26,7 @@ Fetch error: http://portal.bobcares.com/ => https://portal.bobcares.com/: (6, 'C - + - + diff --git a/src/chrome/content/rules/BodyBuilding.com.xml b/src/chrome/content/rules/BodyBuilding.com.xml deleted file mode 100644 index ab03f8fe6061..000000000000 --- a/src/chrome/content/rules/BodyBuilding.com.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Boell.de.xml b/src/chrome/content/rules/Boell.de.xml index 77bf5af7feec..7e1935a51ae8 100644 --- a/src/chrome/content/rules/Boell.de.xml +++ b/src/chrome/content/rules/Boell.de.xml @@ -32,7 +32,7 @@ themen.boell.de different content ³ timed out ⁴ self signed --> - + diff --git a/src/chrome/content/rules/Boing-Boing.xml b/src/chrome/content/rules/Boing-Boing.xml deleted file mode 100644 index 11806d3099f3..000000000000 --- a/src/chrome/content/rules/Boing-Boing.xml +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Boingo.xml b/src/chrome/content/rules/Boingo.xml index 778c5e063950..5cd0a4d2867a 100644 --- a/src/chrome/content/rules/Boingo.xml +++ b/src/chrome/content/rules/Boingo.xml @@ -7,7 +7,7 @@ Fetch error: http://boingohotspot.net/ => http://boingohotspot.net/: (28, 'Conne Disabled by https-everywhere-checker because: Fetch error: http://boingo.com/ => https://www.boingo.com/: (7, 'Failed to connect to www.boingo.com port 443: Connection timed out') --> - + diff --git a/src/chrome/content/rules/Boiron.ca.xml b/src/chrome/content/rules/Boiron.ca.xml new file mode 100644 index 000000000000..ef7aa524bf53 --- /dev/null +++ b/src/chrome/content/rules/Boiron.ca.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/Bokborgen.se.xml b/src/chrome/content/rules/Bokborgen.se.xml index 50e226164924..3fcb4a29990c 100644 --- a/src/chrome/content/rules/Bokborgen.se.xml +++ b/src/chrome/content/rules/Bokborgen.se.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.bokborgen.se/ => https://bokborgen.se/: (51, "SSL: no alternative certificate subject name matches target host name 'bokborgen.se'") Fetch error: http://bokborgen.se/ => https://bokborgen.se/: (51, "SSL: no alternative certificate subject name matches target host name 'bokborgen.se'") --> - + diff --git a/src/chrome/content/rules/Bokelskere.no.xml b/src/chrome/content/rules/Bokelskere.no.xml new file mode 100644 index 000000000000..0da59c9759f9 --- /dev/null +++ b/src/chrome/content/rules/Bokelskere.no.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Bokelskere.xml b/src/chrome/content/rules/Bokelskere.xml deleted file mode 100644 index 4898aa51f470..000000000000 --- a/src/chrome/content/rules/Bokelskere.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/src/chrome/content/rules/BoldChat.com.xml b/src/chrome/content/rules/BoldChat.com.xml index 4f67b31d9299..d2c88dafa14d 100644 --- a/src/chrome/content/rules/BoldChat.com.xml +++ b/src/chrome/content/rules/BoldChat.com.xml @@ -55,7 +55,7 @@ --> - + - + diff --git a/src/chrome/content/rules/Boligportal.dk-mixedcontent.xml b/src/chrome/content/rules/Boligportal.dk-mixedcontent.xml deleted file mode 100644 index 551879b1942e..000000000000 --- a/src/chrome/content/rules/Boligportal.dk-mixedcontent.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Boligportal.dk.xml b/src/chrome/content/rules/Boligportal.dk.xml index 34252c701e2e..4bae2351c183 100644 --- a/src/chrome/content/rules/Boligportal.dk.xml +++ b/src/chrome/content/rules/Boligportal.dk.xml @@ -5,14 +5,14 @@ ¹: Bad cert - Mixed content issues on pages that load JS via - Leaflet (such as individual apartment info - pages). These are dealt with in the ruleset in - Boligportal.dk-mixedcontent.xml. - --> + + + + + diff --git a/src/chrome/content/rules/Bolos_Computer_Museum.xml b/src/chrome/content/rules/Bolos_Computer_Museum.xml index 9493f8ae72f9..6bec6c199890 100644 --- a/src/chrome/content/rules/Bolos_Computer_Museum.xml +++ b/src/chrome/content/rules/Bolos_Computer_Museum.xml @@ -6,4 +6,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Bonadza.com.xml b/src/chrome/content/rules/Bonadza.com.xml deleted file mode 100644 index 77465851b621..000000000000 --- a/src/chrome/content/rules/Bonadza.com.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Bonneville_Power_Administration.xml b/src/chrome/content/rules/Bonneville_Power_Administration.xml deleted file mode 100644 index 8a6258415e2f..000000000000 --- a/src/chrome/content/rules/Bonneville_Power_Administration.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/BookJuices.com.xml b/src/chrome/content/rules/BookJuices.com.xml new file mode 100644 index 000000000000..7c247f0ba543 --- /dev/null +++ b/src/chrome/content/rules/BookJuices.com.xml @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/BookerAndDax.com.xml b/src/chrome/content/rules/BookerAndDax.com.xml new file mode 100644 index 000000000000..6a2f72755dae --- /dev/null +++ b/src/chrome/content/rules/BookerAndDax.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Bookie.io.xml b/src/chrome/content/rules/Bookie.io.xml index b461982bddda..c35577ade54e 100644 --- a/src/chrome/content/rules/Bookie.io.xml +++ b/src/chrome/content/rules/Bookie.io.xml @@ -6,7 +6,7 @@ Fetch error: http://bookie.io/ => https://bookie.io/: (28, 'Connection timed out www.bookie.io doesn't exist. --> - + diff --git a/src/chrome/content/rules/Booklog.jp.xml b/src/chrome/content/rules/Booklog.jp.xml index dfafed92d23c..42178938218b 100644 --- a/src/chrome/content/rules/Booklog.jp.xml +++ b/src/chrome/content/rules/Booklog.jp.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://booklog.jp/ => https://www.booklog.jp/: (51, "SSL: no alternative certificate subject name matches target host name 'www.booklog.jp'") Fetch error: http://www.booklog.jp/ => https://www.booklog.jp/: (51, "SSL: no alternative certificate subject name matches target host name 'www.booklog.jp'") --> - + diff --git a/src/chrome/content/rules/Booklooker.de.xml b/src/chrome/content/rules/Booklooker.de.xml index d099131bd574..e55cf210b7b6 100644 --- a/src/chrome/content/rules/Booklooker.de.xml +++ b/src/chrome/content/rules/Booklooker.de.xml @@ -1,9 +1,20 @@ - - - + + + + + + + + + + - - + diff --git a/src/chrome/content/rules/BooksOnline.website.xml b/src/chrome/content/rules/BooksOnline.website.xml new file mode 100644 index 000000000000..3f3d956a9865 --- /dev/null +++ b/src/chrome/content/rules/BooksOnline.website.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Bookworm.xml b/src/chrome/content/rules/Bookworm.xml deleted file mode 100644 index 6c05013262a1..000000000000 --- a/src/chrome/content/rules/Bookworm.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Boom.lgbt.xml b/src/chrome/content/rules/Boom.lgbt.xml new file mode 100644 index 000000000000..b7325994f210 --- /dev/null +++ b/src/chrome/content/rules/Boom.lgbt.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Boomerang.com.xml b/src/chrome/content/rules/Boomerang.com.xml new file mode 100644 index 000000000000..880fb0f7e3af --- /dev/null +++ b/src/chrome/content/rules/Boomerang.com.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Boomerang.xml b/src/chrome/content/rules/Boomerang.xml deleted file mode 100644 index 6844092b2f15..000000000000 --- a/src/chrome/content/rules/Boomerang.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/BoordatWork.com.xml b/src/chrome/content/rules/BoordatWork.com.xml index d1b3b7b5e2a5..49fbce4371e7 100644 --- a/src/chrome/content/rules/BoordatWork.com.xml +++ b/src/chrome/content/rules/BoordatWork.com.xml @@ -1,10 +1,11 @@ - + + - + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Boost.xml b/src/chrome/content/rules/Boost.xml deleted file mode 100644 index 0dca4b4d7939..000000000000 --- a/src/chrome/content/rules/Boost.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Boost_by_Benz.com.xml b/src/chrome/content/rules/Boost_by_Benz.com.xml index 748fe9fe7cb8..18f2e62c36fd 100644 --- a/src/chrome/content/rules/Boost_by_Benz.com.xml +++ b/src/chrome/content/rules/Boost_by_Benz.com.xml @@ -13,7 +13,7 @@ Fetch error: http://www.boostbybenz.com/ => https://www.boostbybenz.com/: (60, ' - stage.boostbybenz.com --> - + diff --git a/src/chrome/content/rules/BootCDN.xml b/src/chrome/content/rules/BootCDN.xml index ee6c550f1d80..1d902dc8a43f 100644 --- a/src/chrome/content/rules/BootCDN.xml +++ b/src/chrome/content/rules/BootCDN.xml @@ -19,7 +19,7 @@ w3schools.bootcss.com wenda.bootcss.com www.bootcss.com - + *bootcss.com blog.bootcss.cn www.bootcss.cn @@ -29,7 +29,7 @@ - + diff --git a/src/chrome/content/rules/Boots.com.xml b/src/chrome/content/rules/Boots.com.xml index 76317898d4e4..a97e108c2dee 100644 --- a/src/chrome/content/rules/Boots.com.xml +++ b/src/chrome/content/rules/Boots.com.xml @@ -50,9 +50,13 @@ - + + + + - + + diff --git a/src/chrome/content/rules/Boots.no.xml b/src/chrome/content/rules/Boots.no.xml index 1a4925b997da..65da5bec0a85 100644 --- a/src/chrome/content/rules/Boots.no.xml +++ b/src/chrome/content/rules/Boots.no.xml @@ -10,7 +10,7 @@ - + diff --git a/src/chrome/content/rules/Boots_Thai.com.xml b/src/chrome/content/rules/Boots_Thai.com.xml index 45d61dd76987..b18238a1e192 100644 --- a/src/chrome/content/rules/Boots_Thai.com.xml +++ b/src/chrome/content/rules/Boots_Thai.com.xml @@ -11,12 +11,11 @@ Fetch error: http://www.bootsthai.com/ => https://www.bootsthai.com/: (60, 'SSL ^bootsthai.com times out over both http and https. --> - + - + diff --git a/src/chrome/content/rules/BootstrapCDN.xml b/src/chrome/content/rules/BootstrapCDN.xml index bef0a4e1a900..8373872a088c 100644 --- a/src/chrome/content/rules/BootstrapCDN.xml +++ b/src/chrome/content/rules/BootstrapCDN.xml @@ -1,19 +1,24 @@ - + + + + + + diff --git a/src/chrome/content/rules/Boounce.xml b/src/chrome/content/rules/Boounce.xml index 638737b6f240..30e575be4c5b 100644 --- a/src/chrome/content/rules/Boounce.xml +++ b/src/chrome/content/rules/Boounce.xml @@ -8,7 +8,7 @@ Fetch error: http://www.boounce.com/ => https://www.boounce.com/: (7, 'Failed to Automatically by https-everywhere-checker because: Fetch error: http://boounce.com/ => https://boounce.com/: (60, 'SSL certificate problem: certificate has expired') --> - + @@ -20,4 +20,4 @@ Fetch error: http://boounce.com/ => https://boounce.com/: (60, 'SSL certificate - \ No newline at end of file + diff --git a/src/chrome/content/rules/Booz_Allen.com.xml b/src/chrome/content/rules/Booz_Allen.com.xml index 08a97cb59ba0..8ddaddb7b4fd 100644 --- a/src/chrome/content/rules/Booz_Allen.com.xml +++ b/src/chrome/content/rules/Booz_Allen.com.xml @@ -23,7 +23,8 @@ - + + - - - - - - + + + + - + + + - + diff --git a/src/chrome/content/rules/Bortarsasag.xml b/src/chrome/content/rules/Bortarsasag.xml index 21da4a20d185..68dc669d184c 100644 --- a/src/chrome/content/rules/Bortarsasag.xml +++ b/src/chrome/content/rules/Bortarsasag.xml @@ -3,6 +3,6 @@ - + diff --git a/src/chrome/content/rules/Bosch.com.xml b/src/chrome/content/rules/Bosch.com.xml index cd312a8ec939..1e9cbe7b541f 100644 --- a/src/chrome/content/rules/Bosch.com.xml +++ b/src/chrome/content/rules/Bosch.com.xml @@ -36,10 +36,17 @@ --> - - - - + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Bose.co.uk.xml b/src/chrome/content/rules/Bose.co.uk.xml index 445742fbc0ef..f5191e5e4c1e 100644 --- a/src/chrome/content/rules/Bose.co.uk.xml +++ b/src/chrome/content/rules/Bose.co.uk.xml @@ -1,22 +1,28 @@ - + - - + + - + - + + - + diff --git a/src/chrome/content/rules/Bose.com.xml b/src/chrome/content/rules/Bose.com.xml new file mode 100644 index 000000000000..2e37a0c86972 --- /dev/null +++ b/src/chrome/content/rules/Bose.com.xml @@ -0,0 +1,187 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/BosslandGmbH.xml b/src/chrome/content/rules/BosslandGmbH.xml index 5e74fae4ddd6..d795e721b63b 100644 --- a/src/chrome/content/rules/BosslandGmbH.xml +++ b/src/chrome/content/rules/BosslandGmbH.xml @@ -1,6 +1,10 @@ + + + + @@ -13,4 +17,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Boston_University.xml b/src/chrome/content/rules/Boston_University.xml deleted file mode 100644 index a184aade4598..000000000000 --- a/src/chrome/content/rules/Boston_University.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/BotBot.me.xml b/src/chrome/content/rules/BotBot.me.xml index da4863a648d1..39853c457bfe 100644 --- a/src/chrome/content/rules/BotBot.me.xml +++ b/src/chrome/content/rules/BotBot.me.xml @@ -8,7 +8,7 @@ Fetch error: http://www.botbot.me/ => https://www.botbot.me/: (51, "SSL: no alte - botbot.me --> - + diff --git a/src/chrome/content/rules/Botconf.eu.xml b/src/chrome/content/rules/Botconf.eu.xml index a02feef7ad9f..63b4c790888e 100644 --- a/src/chrome/content/rules/Botconf.eu.xml +++ b/src/chrome/content/rules/Botconf.eu.xml @@ -9,7 +9,7 @@ - + + + + + + + + diff --git a/src/chrome/content/rules/Boum.org.xml b/src/chrome/content/rules/Boum.org.xml index 3f8ee88a1f54..f5c016ff469c 100644 --- a/src/chrome/content/rules/Boum.org.xml +++ b/src/chrome/content/rules/Boum.org.xml @@ -50,13 +50,13 @@ - - diff --git a/src/chrome/content/rules/Boun.cr.xml b/src/chrome/content/rules/Boun.cr.xml new file mode 100644 index 000000000000..907915610932 --- /dev/null +++ b/src/chrome/content/rules/Boun.cr.xml @@ -0,0 +1,16 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Bounce.io.xml b/src/chrome/content/rules/Bounce.io.xml index 3ef1092679c0..f693fe5a1212 100644 --- a/src/chrome/content/rules/Bounce.io.xml +++ b/src/chrome/content/rules/Bounce.io.xml @@ -4,10 +4,10 @@ Disabled by https-everywhere-checker because: Fetch error: http://bounce.io/ => https://bounce.io/: (7, 'Failed to connect to bounce.io port 443: Connection refused') --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Bourgeois.me.xml b/src/chrome/content/rules/Bourgeois.me.xml index 0c73a1984364..330b22a712e6 100644 --- a/src/chrome/content/rules/Bourgeois.me.xml +++ b/src/chrome/content/rules/Bourgeois.me.xml @@ -11,7 +11,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://bourgeois.me/ => https://bourgeois.me/: (51, "SSL: no alternative certificate subject name matches target host name 'bourgeois.me'") --> - + diff --git a/src/chrome/content/rules/Bournemouth.gov.uk.xml b/src/chrome/content/rules/Bournemouth.gov.uk.xml index d83a26977a8a..cf3ec34c845b 100644 --- a/src/chrome/content/rules/Bournemouth.gov.uk.xml +++ b/src/chrome/content/rules/Bournemouth.gov.uk.xml @@ -44,7 +44,7 @@ Fetch error: http://bournemouth.gov.uk/ => https://www.bournemouth.gov.uk/: (28, ˢ Secured by us --> - + @@ -69,7 +69,7 @@ Fetch error: http://bournemouth.gov.uk/ => https://www.bournemouth.gov.uk/: (28, - + + + + + + + + + + diff --git a/src/chrome/content/rules/BoxOffice.xml b/src/chrome/content/rules/BoxOffice.xml index 95a048d5157c..c5f630f6b0d9 100644 --- a/src/chrome/content/rules/BoxOffice.xml +++ b/src/chrome/content/rules/BoxOffice.xml @@ -16,4 +16,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/BoxUK.xml b/src/chrome/content/rules/BoxUK.xml index 6fcff5b35b23..572dc0aac52e 100644 --- a/src/chrome/content/rules/BoxUK.xml +++ b/src/chrome/content/rules/BoxUK.xml @@ -2,7 +2,7 @@ - + diff --git a/src/chrome/content/rules/BoxeeTV.xml b/src/chrome/content/rules/BoxeeTV.xml index f25c664b3004..7cb0b7b3a288 100644 --- a/src/chrome/content/rules/BoxeeTV.xml +++ b/src/chrome/content/rules/BoxeeTV.xml @@ -11,10 +11,13 @@ Fetch error: http://boxee.tv/ => https://boxee.tv/: (7, 'Failed to connect to ww - my (refused) --> - + - + + + + - + diff --git a/src/chrome/content/rules/Boxwood_Technology.xml b/src/chrome/content/rules/Boxwood_Technology.xml index 43562cf6e6d6..2517e0621d8a 100644 --- a/src/chrome/content/rules/Boxwood_Technology.xml +++ b/src/chrome/content/rules/Boxwood_Technology.xml @@ -7,16 +7,16 @@ Fetch error: http://www.boxwoodtech.com/ => https://www.boxwoodtech.com/: (28, ' Disabled by https-everywhere-checker because: Fetch error: http://boxwoodtech.com/ => https://boxwoodtech.com/: Cycle detected - URL already encountered: https://www.boxwoodtech.com/ --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Bpaste.net.xml b/src/chrome/content/rules/Bpaste.net.xml deleted file mode 100644 index 07070d3de5dc..000000000000 --- a/src/chrome/content/rules/Bpaste.net.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Brabysads.com.xml b/src/chrome/content/rules/Brabysads.com.xml index 71ba3137b26a..f3153f820fd4 100644 --- a/src/chrome/content/rules/Brabysads.com.xml +++ b/src/chrome/content/rules/Brabysads.com.xml @@ -12,7 +12,7 @@ - + - + - - - - - - - - diff --git a/src/chrome/content/rules/Braincert.org.xml b/src/chrome/content/rules/Braincert.org.xml index 5cd3eea8640a..03d6f8f97da9 100644 --- a/src/chrome/content/rules/Braincert.org.xml +++ b/src/chrome/content/rules/Braincert.org.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://braincert.org/ => https://braincert.org/: (51, "SSL: no alternative certificate subject name matches target host name 'braincert.org'") --> - + @@ -15,4 +15,4 @@ Fetch error: http://braincert.org/ => https://braincert.org/: (51, "SSL: no alte - \ No newline at end of file + diff --git a/src/chrome/content/rules/Brainshark.xml b/src/chrome/content/rules/Brainshark.xml index e1cf5d5551f7..692916e0e229 100644 --- a/src/chrome/content/rules/Brainshark.xml +++ b/src/chrome/content/rules/Brainshark.xml @@ -11,7 +11,7 @@ - + diff --git a/src/chrome/content/rules/Brainsonic.xml b/src/chrome/content/rules/Brainsonic.xml index 111dba8067ab..61d2a973d32e 100644 --- a/src/chrome/content/rules/Brainsonic.xml +++ b/src/chrome/content/rules/Brainsonic.xml @@ -19,7 +19,10 @@ - + + + + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Braintree.gov.uk.xml b/src/chrome/content/rules/Braintree.gov.uk.xml index 6137bed67820..548255561dc1 100644 --- a/src/chrome/content/rules/Braintree.gov.uk.xml +++ b/src/chrome/content/rules/Braintree.gov.uk.xml @@ -42,7 +42,7 @@ - + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Branch.xml b/src/chrome/content/rules/Branch.xml index d90e0d961ed9..398c77a3ddab 100644 --- a/src/chrome/content/rules/Branch.xml +++ b/src/chrome/content/rules/Branch.xml @@ -17,10 +17,12 @@ Fetch error: http://branch.com/ => https://secure.branch.com/: (6, 'Could not re - www (mismatched, CN: *.herokuapp.com) --> - + - + + + diff --git a/src/chrome/content/rules/Brand-server.com.xml b/src/chrome/content/rules/Brand-server.com.xml deleted file mode 100644 index c26ff8f35be3..000000000000 --- a/src/chrome/content/rules/Brand-server.com.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Brand_Embassy.xml b/src/chrome/content/rules/Brand_Embassy.xml index 736c611d8a6b..ed8d0cc28cd6 100644 --- a/src/chrome/content/rules/Brand_Embassy.xml +++ b/src/chrome/content/rules/Brand_Embassy.xml @@ -7,13 +7,12 @@ --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Brand_New_Booty.xml b/src/chrome/content/rules/Brand_New_Booty.xml deleted file mode 100644 index c14e38931140..000000000000 --- a/src/chrome/content/rules/Brand_New_Booty.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Brandfolder.com.xml b/src/chrome/content/rules/Brandfolder.com.xml deleted file mode 100644 index 7bdbf7de02c9..000000000000 --- a/src/chrome/content/rules/Brandfolder.com.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Brandify.xml b/src/chrome/content/rules/Brandify.xml index e1e345e2e6f2..cc1f20c17488 100644 --- a/src/chrome/content/rules/Brandify.xml +++ b/src/chrome/content/rules/Brandify.xml @@ -10,12 +10,11 @@ Fetch error: http://secure.brandify.com.au/ => https://secure.brandify.com.au/: - (www.) (shows secure; mismatched, CN: secure.brandify.com.au) --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/BrandweerUitgeest.nl.xml b/src/chrome/content/rules/BrandweerUitgeest.nl.xml deleted file mode 100644 index cfa4a3045561..000000000000 --- a/src/chrome/content/rules/BrandweerUitgeest.nl.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Branson_Zipline.xml b/src/chrome/content/rules/Branson_Zipline.xml deleted file mode 100644 index e74b61b05f20..000000000000 --- a/src/chrome/content/rules/Branson_Zipline.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Brasil_24-7.xml b/src/chrome/content/rules/Brasil_24-7.xml index cb13ac5d66f1..6542fa49e187 100644 --- a/src/chrome/content/rules/Brasil_24-7.xml +++ b/src/chrome/content/rules/Brasil_24-7.xml @@ -10,4 +10,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Brave-Media.xml b/src/chrome/content/rules/Brave-Media.xml index a87ad3a273b0..52826d03657c 100644 --- a/src/chrome/content/rules/Brave-Media.xml +++ b/src/chrome/content/rules/Brave-Media.xml @@ -1,5 +1,5 @@ - + + + + @@ -18,7 +21,7 @@ - + - - - - - diff --git a/src/chrome/content/rules/Bravenet_Media.xml b/src/chrome/content/rules/Bravenet_Media.xml index 190725be6501..91b53cb2f65f 100644 --- a/src/chrome/content/rules/Bravenet_Media.xml +++ b/src/chrome/content/rules/Bravenet_Media.xml @@ -21,7 +21,7 @@ Fetch error: http://redvase.bravenet.com/ => https://redvase.bravenet.com/: (60, - www.bravenetmedia.com --> - + @@ -29,7 +29,6 @@ Fetch error: http://redvase.bravenet.com/ => https://redvase.bravenet.com/: (60, - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/BreNet-mismatches.xml b/src/chrome/content/rules/BreNet-mismatches.xml index 80d871c34783..5f7c16289358 100644 --- a/src/chrome/content/rules/BreNet-mismatches.xml +++ b/src/chrome/content/rules/BreNet-mismatches.xml @@ -13,7 +13,6 @@ - + diff --git a/src/chrome/content/rules/BreNet.xml b/src/chrome/content/rules/BreNet.xml index 9044288adc41..d759d4b08ba8 100644 --- a/src/chrome/content/rules/BreNet.xml +++ b/src/chrome/content/rules/BreNet.xml @@ -12,18 +12,16 @@ Fetch error: http://brenet.de/ => https://brenet.de/: (60, 'SSL certificate prob - + - - + - + diff --git a/src/chrome/content/rules/Break.com.xml b/src/chrome/content/rules/Break.com.xml deleted file mode 100644 index debc43a54cd9..000000000000 --- a/src/chrome/content/rules/Break.com.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Breakfast-Quay.xml b/src/chrome/content/rules/Breakfast-Quay.xml index 1353404dfdfe..4c456f740242 100644 --- a/src/chrome/content/rules/Breakfast-Quay.xml +++ b/src/chrome/content/rules/Breakfast-Quay.xml @@ -6,13 +6,12 @@ Fetch error: http://code.breakfastquay.com/ => https://code.breakfastquay.com/: Disabled by https-everywhere-checker because: Fetch error: http://code.breakfastquay.com/ => https://code.breakfastquay.com/: (7, 'Failed to connect to code.breakfastquay.com port 443: Connection refused') --> - + - + - + diff --git a/src/chrome/content/rules/BreakoutBand.com.xml b/src/chrome/content/rules/BreakoutBand.com.xml index 45bd94b8e513..b9348f7e89a3 100644 --- a/src/chrome/content/rules/BreakoutBand.com.xml +++ b/src/chrome/content/rules/BreakoutBand.com.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://breakoutband.com/ => https://breakoutband.com/: (28, 'Connection timed out after 10001 milliseconds') Fetch error: http://www.breakoutband.com/ => https://www.breakoutband.com/: (28, 'Connection timed out after 10000 milliseconds') --> - + @@ -19,4 +19,4 @@ Fetch error: http://www.breakoutband.com/ => https://www.breakoutband.com/: (28, - \ No newline at end of file + diff --git a/src/chrome/content/rules/Breathe.com.xml b/src/chrome/content/rules/Breathe.com.xml new file mode 100644 index 000000000000..4af2d490c7a0 --- /dev/null +++ b/src/chrome/content/rules/Breathe.com.xml @@ -0,0 +1,14 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Bremer-Bank.xml b/src/chrome/content/rules/Bremer-Bank.xml index 97f15b632b77..ab4efc51ed03 100644 --- a/src/chrome/content/rules/Bremer-Bank.xml +++ b/src/chrome/content/rules/Bremer-Bank.xml @@ -4,14 +4,13 @@ Disabled by https-everywhere-checker because: Fetch error: http://rdc.bremer.com/ => https://rdc.bremer.com/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + - + diff --git a/src/chrome/content/rules/Brennan_Novak.com.xml b/src/chrome/content/rules/Brennan_Novak.com.xml deleted file mode 100644 index 33d0ad7953d4..000000000000 --- a/src/chrome/content/rules/Brennan_Novak.com.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Brent.gov.uk.xml b/src/chrome/content/rules/Brent.gov.uk.xml index 335f184cfe47..8201a7e5b342 100644 --- a/src/chrome/content/rules/Brent.gov.uk.xml +++ b/src/chrome/content/rules/Brent.gov.uk.xml @@ -10,7 +10,7 @@ - server2 ᵃ ᵃ Shows another domain - ᵈ Dropped + ᵈ Dropped Problematic hosts in *brent.gov.uk: @@ -81,7 +81,7 @@ - + - - - - - - - - - - - - diff --git a/src/chrome/content/rules/BrianSmith.org.xml b/src/chrome/content/rules/BrianSmith.org.xml deleted file mode 100644 index a27a2733c33f..000000000000 --- a/src/chrome/content/rules/BrianSmith.org.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Briandunning.xml b/src/chrome/content/rules/Briandunning.xml index 1b991cfdd106..d0594ce41f3a 100644 --- a/src/chrome/content/rules/Briandunning.xml +++ b/src/chrome/content/rules/Briandunning.xml @@ -3,7 +3,7 @@ - + diff --git a/src/chrome/content/rules/Bridges-Foundation.org.xml b/src/chrome/content/rules/Bridges-Foundation.org.xml new file mode 100644 index 000000000000..ae42a7bfb7fa --- /dev/null +++ b/src/chrome/content/rules/Bridges-Foundation.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Bridgew.edu.xml b/src/chrome/content/rules/Bridgew.edu.xml new file mode 100644 index 000000000000..0574af58acf3 --- /dev/null +++ b/src/chrome/content/rules/Bridgew.edu.xml @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Bridgeways.com.xml b/src/chrome/content/rules/Bridgeways.com.xml index 5a91dbedb67e..45849b05e456 100644 --- a/src/chrome/content/rules/Bridgeways.com.xml +++ b/src/chrome/content/rules/Bridgeways.com.xml @@ -11,7 +11,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://bridgeways.com/ => https://bridgeways.com/: (7, 'Failed to connect to bridgeways.com port 443: Connection timed out') --> - + diff --git a/src/chrome/content/rules/BrieHost.com.xml b/src/chrome/content/rules/BrieHost.com.xml deleted file mode 100644 index 0bb021801fbb..000000000000 --- a/src/chrome/content/rules/BrieHost.com.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/BrightContext.com.xml b/src/chrome/content/rules/BrightContext.com.xml index d9719aca3f58..34629e3ef419 100644 --- a/src/chrome/content/rules/BrightContext.com.xml +++ b/src/chrome/content/rules/BrightContext.com.xml @@ -1,23 +1,4 @@ - - + diff --git a/src/chrome/content/rules/BrightRoll.xml b/src/chrome/content/rules/BrightRoll.xml deleted file mode 100644 index 1597ecdf0495..000000000000 --- a/src/chrome/content/rules/BrightRoll.xml +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/BrightTALK.com.xml b/src/chrome/content/rules/BrightTALK.com.xml index 57336ca21320..5584b9739f79 100644 --- a/src/chrome/content/rules/BrightTALK.com.xml +++ b/src/chrome/content/rules/BrightTALK.com.xml @@ -1,15 +1,5 @@ - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/BrightTag-problematic.xml b/src/chrome/content/rules/BrightTag-problematic.xml index f33b8b8b068d..d1b6063a2c5b 100644 --- a/src/chrome/content/rules/BrightTag-problematic.xml +++ b/src/chrome/content/rules/BrightTag-problematic.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/BrightTag.xml b/src/chrome/content/rules/BrightTag.xml index 5821393e7218..062d69a51438 100644 --- a/src/chrome/content/rules/BrightTag.xml +++ b/src/chrome/content/rules/BrightTag.xml @@ -5,7 +5,6 @@ Other BrightTag rulesets: - BTstatic.com.xml - - SiteTagger.co.uk.xml CDN buckets: @@ -75,7 +74,7 @@ - + https://s.brighthub.com/: (51, "SSL: no * Works, akamai --> - + diff --git a/src/chrome/content/rules/Bright_Kids_NYC.xml b/src/chrome/content/rules/Bright_Kids_NYC.xml index 84041795e2c3..a941d57e499d 100644 --- a/src/chrome/content/rules/Bright_Kids_NYC.xml +++ b/src/chrome/content/rules/Bright_Kids_NYC.xml @@ -8,10 +8,10 @@ Fetch error: http://brightkidsnyc.com/ => https://www.brightkidsnyc.com/: (7, 'F - ^ (expired 2012-04-18) --> - + - + diff --git a/src/chrome/content/rules/Brightcove.xml b/src/chrome/content/rules/Brightcove.xml index fab0af65ddee..1509d63abe3b 100644 --- a/src/chrome/content/rules/Brightcove.xml +++ b/src/chrome/content/rules/Brightcove.xml @@ -130,7 +130,7 @@ - - + - + + + @@ -51,7 +53,6 @@ - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Britcoin.co.uk.xml b/src/chrome/content/rules/Britcoin.co.uk.xml index 61b96d9383d0..281c1deecca5 100644 --- a/src/chrome/content/rules/Britcoin.co.uk.xml +++ b/src/chrome/content/rules/Britcoin.co.uk.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://britcoin.co.uk/ => https://www.britcoin.co.uk/: (51, "SSL: no alternative certificate subject name matches target host name 'www.britcoin.co.uk'") Fetch error: http://www.britcoin.co.uk/ => https://www.britcoin.co.uk/: (51, "SSL: no alternative certificate subject name matches target host name 'www.britcoin.co.uk'") --> - + diff --git a/src/chrome/content/rules/BriteObjects.xml b/src/chrome/content/rules/BriteObjects.xml index 80753507c5c3..bc6562ff399c 100644 --- a/src/chrome/content/rules/BriteObjects.xml +++ b/src/chrome/content/rules/BriteObjects.xml @@ -23,4 +23,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/British-Airways.xml b/src/chrome/content/rules/British-Airways.xml new file mode 100644 index 000000000000..4d80e816977f --- /dev/null +++ b/src/chrome/content/rules/British-Airways.xml @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/BritishEcologicalSociety.org.xml b/src/chrome/content/rules/BritishEcologicalSociety.org.xml new file mode 100644 index 000000000000..ec9ca4946cbf --- /dev/null +++ b/src/chrome/content/rules/BritishEcologicalSociety.org.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/British_Airline_Pilots_Association.xml b/src/chrome/content/rules/British_Airline_Pilots_Association.xml deleted file mode 100644 index 702009cb81ad..000000000000 --- a/src/chrome/content/rules/British_Airline_Pilots_Association.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - diff --git a/src/chrome/content/rules/British_National_Formulary.xml b/src/chrome/content/rules/British_National_Formulary.xml index f846d958796a..152982b6fd45 100644 --- a/src/chrome/content/rules/British_National_Formulary.xml +++ b/src/chrome/content/rules/British_National_Formulary.xml @@ -16,4 +16,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/British_Red_Cross.xml b/src/chrome/content/rules/British_Red_Cross.xml index 47a8090eacbe..cc19ff1c27cc 100644 --- a/src/chrome/content/rules/British_Red_Cross.xml +++ b/src/chrome/content/rules/British_Red_Cross.xml @@ -28,7 +28,12 @@ - + + + + + + @@ -41,7 +46,6 @@ - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Brixwork.com.xml b/src/chrome/content/rules/Brixwork.com.xml index 6680ea03b567..8f75080ba5ff 100644 --- a/src/chrome/content/rules/Brixwork.com.xml +++ b/src/chrome/content/rules/Brixwork.com.xml @@ -32,4 +32,4 @@ Fetch error: http://www.brixwork.com/ => https://www.brixwork.com/: Cycle detect - \ No newline at end of file + diff --git a/src/chrome/content/rules/Brmlab.cz.xml b/src/chrome/content/rules/Brmlab.cz.xml index e8e842c9ed6e..b4d7fb3048dd 100644 --- a/src/chrome/content/rules/Brmlab.cz.xml +++ b/src/chrome/content/rules/Brmlab.cz.xml @@ -2,7 +2,7 @@ - + diff --git a/src/chrome/content/rules/Broad-Institute.xml b/src/chrome/content/rules/Broad-Institute.xml index 00cfbd425e8b..f188fbe70755 100644 --- a/src/chrome/content/rules/Broad-Institute.xml +++ b/src/chrome/content/rules/Broad-Institute.xml @@ -2,10 +2,10 @@ - + - + https://broadband-forum.org/: (51, "SSL: no alternative certificate subject name matches target host name 'broadband-forum.org'") --> - + diff --git a/src/chrome/content/rules/Broadband_Convergent.xml b/src/chrome/content/rules/Broadband_Convergent.xml index ba155a7d294f..1ede5484572a 100644 --- a/src/chrome/content/rules/Broadband_Convergent.xml +++ b/src/chrome/content/rules/Broadband_Convergent.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Broadband_Map.gov.xml b/src/chrome/content/rules/Broadband_Map.gov.xml deleted file mode 100644 index c029b77965bb..000000000000 --- a/src/chrome/content/rules/Broadband_Map.gov.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Broadbandchoices.co.uk.xml b/src/chrome/content/rules/Broadbandchoices.co.uk.xml deleted file mode 100644 index 0bd9b027d9ab..000000000000 --- a/src/chrome/content/rules/Broadbandchoices.co.uk.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Broadcast.ch.xml b/src/chrome/content/rules/Broadcast.ch.xml new file mode 100644 index 000000000000..3684f788e304 --- /dev/null +++ b/src/chrome/content/rules/Broadcast.ch.xml @@ -0,0 +1,15 @@ + + + + + + + diff --git a/src/chrome/content/rules/BroadcastJobs.co.uk.xml b/src/chrome/content/rules/BroadcastJobs.co.uk.xml index 6e7ae71fd4f9..8f416a4cdb6c 100644 --- a/src/chrome/content/rules/BroadcastJobs.co.uk.xml +++ b/src/chrome/content/rules/BroadcastJobs.co.uk.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Broadcasthe.net.xml b/src/chrome/content/rules/Broadcasthe.net.xml index a2815e65b97a..71d1d85f43cf 100644 --- a/src/chrome/content/rules/Broadcasthe.net.xml +++ b/src/chrome/content/rules/Broadcasthe.net.xml @@ -1,23 +1,12 @@ - - - + - - - - - - - - + + + + + - + diff --git a/src/chrome/content/rules/Broadcom.xml b/src/chrome/content/rules/Broadcom.xml index 73010eba0895..21b191f4d79c 100644 --- a/src/chrome/content/rules/Broadcom.xml +++ b/src/chrome/content/rules/Broadcom.xml @@ -36,7 +36,7 @@ Fetch error: http://jobs.broadcom.com/ => https://jobs.broadcom.com/: (28, 'Conn ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -50,7 +50,7 @@ Fetch error: http://jobs.broadcom.com/ => https://jobs.broadcom.com/: (28, 'Conn - + https://www.broadcomfoundatio * Secured by us --> - + diff --git a/src/chrome/content/rules/Broadland.gov.uk.xml b/src/chrome/content/rules/Broadland.gov.uk.xml index 1cb777553a00..c99ca7da8b5c 100644 --- a/src/chrome/content/rules/Broadland.gov.uk.xml +++ b/src/chrome/content/rules/Broadland.gov.uk.xml @@ -59,7 +59,7 @@ - + + + + + + + + + + diff --git a/src/chrome/content/rules/Brookings_Institution.xml b/src/chrome/content/rules/Brookings_Institution.xml index 3280de4c0e3c..050c6e9113f4 100644 --- a/src/chrome/content/rules/Brookings_Institution.xml +++ b/src/chrome/content/rules/Brookings_Institution.xml @@ -1,54 +1,22 @@ - - - + + + - - - - - - + + diff --git a/src/chrome/content/rules/Brookline_College.edu.xml b/src/chrome/content/rules/Brookline_College.edu.xml index ceb52b7d0d74..235b867ba652 100644 --- a/src/chrome/content/rules/Brookline_College.edu.xml +++ b/src/chrome/content/rules/Brookline_College.edu.xml @@ -12,10 +12,14 @@ Non-2xx HTTP code: http://brooklinecollege.edu/ (200) => https://brooklinecolleg * Secured by us --> - + - + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Brookside_Capital.xml b/src/chrome/content/rules/Brookside_Capital.xml index 0a0366961dc6..fb4575e5324f 100644 --- a/src/chrome/content/rules/Brookside_Capital.xml +++ b/src/chrome/content/rules/Brookside_Capital.xml @@ -6,15 +6,15 @@ Fetch error: http://brooksidefund.com/ => https://brooksidefund.com/: (51, "SSL: Disabled by https-everywhere-checker because: Fetch error: http://brooksidefund.com/ => https://brooksidefund.com/: (51, "SSL: no alternative certificate subject name matches target host name 'brooksidefund.com'") --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/BroomeCC.xml b/src/chrome/content/rules/BroomeCC.xml index 8f93e9270848..526887bc4a7c 100644 --- a/src/chrome/content/rules/BroomeCC.xml +++ b/src/chrome/content/rules/BroomeCC.xml @@ -41,7 +41,7 @@ Fetch error: http://bccserve.sunybroome.edu/ => https://bccserve.sunybroome.edu/ ¹ Secured by us --> - + diff --git a/src/chrome/content/rules/Brown-Paper-Tickets.xml b/src/chrome/content/rules/Brown-Paper-Tickets.xml index 701c4557bebd..8b717d9ba611 100644 --- a/src/chrome/content/rules/Brown-Paper-Tickets.xml +++ b/src/chrome/content/rules/Brown-Paper-Tickets.xml @@ -15,12 +15,12 @@ Fetch error: http://brownpapertickets.com/ => https://www.brownpapertickets.com/ - - - + + diff --git a/src/chrome/content/rules/Brown_University.xml b/src/chrome/content/rules/Brown_University.xml index 364e7592ea8c..e7b701ea3d54 100644 --- a/src/chrome/content/rules/Brown_University.xml +++ b/src/chrome/content/rules/Brown_University.xml @@ -1,10 +1,4 @@ - - - - + - @@ -39,6 +31,7 @@ Fetch error: http://dl.lib.brown.edu/ => https://dl.lib.brown.edu/: (51, "SSL: n + @@ -47,6 +40,9 @@ Fetch error: http://dl.lib.brown.edu/ => https://dl.lib.brown.edu/: (51, "SSL: n + + diff --git a/src/chrome/content/rules/BrowseAloud.com.xml b/src/chrome/content/rules/BrowseAloud.com.xml index c6cca392fb6c..59ffba778978 100644 --- a/src/chrome/content/rules/BrowseAloud.com.xml +++ b/src/chrome/content/rules/BrowseAloud.com.xml @@ -4,13 +4,13 @@ Disabled by https-everywhere-checker because: Fetch error: http://browsealoud.com/ => https://browsealoud.com/: (28, 'Connection timed out after 20000 milliseconds') --> - + - + - - - - - - - - diff --git a/src/chrome/content/rules/BrowserShots.xml b/src/chrome/content/rules/BrowserShots.xml index 7ac4b3aa8d05..0810431b50dd 100644 --- a/src/chrome/content/rules/BrowserShots.xml +++ b/src/chrome/content/rules/BrowserShots.xml @@ -8,11 +8,11 @@ Disabled by https-everywhere-checker because: Fetch error: http://browsershots.org/ => https://browsershots.org/: (60, 'SSL certificate problem: unable to get local issuer certificate') Fetch error: http://www.browsershots.org/ => https://browsershots.org/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + - + diff --git a/src/chrome/content/rules/Browser_Hacker.com.xml b/src/chrome/content/rules/Browser_Hacker.com.xml index d4cc029a9df2..c15fdec063ee 100644 --- a/src/chrome/content/rules/Browser_Hacker.com.xml +++ b/src/chrome/content/rules/Browser_Hacker.com.xml @@ -7,7 +7,7 @@ Fetch error: http://www.browserhacker.com/ => https://browserhacker.com/: (6, 'C www.browserhacker.com: Refused --> - + diff --git a/src/chrome/content/rules/Browserprint.info.xml b/src/chrome/content/rules/Browserprint.info.xml new file mode 100644 index 000000000000..3f4d1f0158d4 --- /dev/null +++ b/src/chrome/content/rules/Browserprint.info.xml @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Browsersafetymark.io.xml b/src/chrome/content/rules/Browsersafetymark.io.xml index 6e0d52762c82..65d0f8466b9a 100644 --- a/src/chrome/content/rules/Browsersafetymark.io.xml +++ b/src/chrome/content/rules/Browsersafetymark.io.xml @@ -6,7 +6,7 @@ Fetch error: http://fpd3a.browsersafetymark.io/ => https://fpd3a.browsersafetyma Fetch error: http://fp3a.websafetymark.io/ => https://fp3a.websafetymark.io/: (6, 'Could not resolve host: fp3a.websafetymark.io') Fetch error: http://fpd3a.websafetymark.io/ => https://fpd3a.websafetymark.io/: (6, 'Could not resolve host: fpd3a.websafetymark.io') This is for a site testing for installation of HTTPS Everywhere --> - + diff --git a/src/chrome/content/rules/BruCON.org.xml b/src/chrome/content/rules/BruCON.org.xml index 17990ffe1f90..922be0b9c3c2 100644 --- a/src/chrome/content/rules/BruCON.org.xml +++ b/src/chrome/content/rules/BruCON.org.xml @@ -13,7 +13,6 @@ - + diff --git a/src/chrome/content/rules/Bruno-Postle.xml b/src/chrome/content/rules/Bruno-Postle.xml index 73e509d236a0..5e3f1b0d4a39 100644 --- a/src/chrome/content/rules/Bruno-Postle.xml +++ b/src/chrome/content/rules/Bruno-Postle.xml @@ -7,7 +7,6 @@ - !www shows CentOS Apache 2 test page over https - !www 302s to www over http --> - + diff --git a/src/chrome/content/rules/BtcTrade.com.xml b/src/chrome/content/rules/BtcTrade.com.xml deleted file mode 100644 index e3ac4fe3c067..000000000000 --- a/src/chrome/content/rules/BtcTrade.com.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Bter.com.xml b/src/chrome/content/rules/Bter.com.xml deleted file mode 100644 index 34750b1bc7e9..000000000000 --- a/src/chrome/content/rules/Bter.com.xml +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Bttrack.com.xml b/src/chrome/content/rules/Bttrack.com.xml index ab11cd6ebb59..87003419ea86 100644 --- a/src/chrome/content/rules/Bttrack.com.xml +++ b/src/chrome/content/rules/Bttrack.com.xml @@ -22,7 +22,7 @@ --> - + + + + + + + + + + + diff --git a/src/chrome/content/rules/Bucket_Explorer.com.xml b/src/chrome/content/rules/Bucket_Explorer.com.xml deleted file mode 100644 index b84ac2c0294f..000000000000 --- a/src/chrome/content/rules/Bucket_Explorer.com.xml +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Bucknell_University.xml b/src/chrome/content/rules/Bucknell_University.xml index b5f833d3c8e8..6884c2f5f8a7 100644 --- a/src/chrome/content/rules/Bucknell_University.xml +++ b/src/chrome/content/rules/Bucknell_University.xml @@ -1,4 +1,13 @@ + - - - + + + @@ -52,19 +64,16 @@ - + - + - - - diff --git a/src/chrome/content/rules/Bucyrus_Telegraph_Forum.xml b/src/chrome/content/rules/Bucyrus_Telegraph_Forum.xml index 2786818e3689..2644b6bd87cd 100644 --- a/src/chrome/content/rules/Bucyrus_Telegraph_Forum.xml +++ b/src/chrome/content/rules/Bucyrus_Telegraph_Forum.xml @@ -11,7 +11,8 @@ - + + diff --git a/src/chrome/content/rules/Budget-Belize.com.xml b/src/chrome/content/rules/Budget-Belize.com.xml new file mode 100644 index 000000000000..b092f2635387 --- /dev/null +++ b/src/chrome/content/rules/Budget-Belize.com.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Budget-Jamaica.com.xml b/src/chrome/content/rules/Budget-Jamaica.com.xml new file mode 100644 index 000000000000..ba66f4147a5d --- /dev/null +++ b/src/chrome/content/rules/Budget-Jamaica.com.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Budget-Martinique.com.xml b/src/chrome/content/rules/Budget-Martinique.com.xml new file mode 100644 index 000000000000..3dca00bda958 --- /dev/null +++ b/src/chrome/content/rules/Budget-Martinique.com.xml @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Budget-Panama.com.xml b/src/chrome/content/rules/Budget-Panama.com.xml new file mode 100644 index 000000000000..8fd15fd1969d --- /dev/null +++ b/src/chrome/content/rules/Budget-Panama.com.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Budget-Peru.com.xml b/src/chrome/content/rules/Budget-Peru.com.xml new file mode 100644 index 000000000000..3f9f80837e5d --- /dev/null +++ b/src/chrome/content/rules/Budget-Peru.com.xml @@ -0,0 +1,25 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Budget.ba.xml b/src/chrome/content/rules/Budget.ba.xml new file mode 100644 index 000000000000..6f227df14f2c --- /dev/null +++ b/src/chrome/content/rules/Budget.ba.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Budget.ca.xml b/src/chrome/content/rules/Budget.ca.xml new file mode 100644 index 000000000000..7ec74e56e09a --- /dev/null +++ b/src/chrome/content/rules/Budget.ca.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Budget.co.cr.xml b/src/chrome/content/rules/Budget.co.cr.xml new file mode 100644 index 000000000000..3141869ce20a --- /dev/null +++ b/src/chrome/content/rules/Budget.co.cr.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Budget.co.nz.xml b/src/chrome/content/rules/Budget.co.nz.xml new file mode 100644 index 000000000000..dabbaabd4fb4 --- /dev/null +++ b/src/chrome/content/rules/Budget.co.nz.xml @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Budget.co.uk.xml b/src/chrome/content/rules/Budget.co.uk.xml new file mode 100644 index 000000000000..187fc0d49867 --- /dev/null +++ b/src/chrome/content/rules/Budget.co.uk.xml @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Budget.co.za.xml b/src/chrome/content/rules/Budget.co.za.xml new file mode 100644 index 000000000000..dfb87ab1eb8c --- /dev/null +++ b/src/chrome/content/rules/Budget.co.za.xml @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Budget.com.ar.xml b/src/chrome/content/rules/Budget.com.ar.xml new file mode 100644 index 000000000000..0c543d7e4dbe --- /dev/null +++ b/src/chrome/content/rules/Budget.com.ar.xml @@ -0,0 +1,26 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Budget.com.au.xml b/src/chrome/content/rules/Budget.com.au.xml new file mode 100644 index 000000000000..65b4a655ee4c --- /dev/null +++ b/src/chrome/content/rules/Budget.com.au.xml @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Budget.com.do.xml b/src/chrome/content/rules/Budget.com.do.xml new file mode 100644 index 000000000000..f0692f5cec13 --- /dev/null +++ b/src/chrome/content/rules/Budget.com.do.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Budget.com.fj.xml b/src/chrome/content/rules/Budget.com.fj.xml new file mode 100644 index 000000000000..f01f1784f897 --- /dev/null +++ b/src/chrome/content/rules/Budget.com.fj.xml @@ -0,0 +1,12 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Budget.com.gt.xml b/src/chrome/content/rules/Budget.com.gt.xml new file mode 100644 index 000000000000..c628cd5d63e8 --- /dev/null +++ b/src/chrome/content/rules/Budget.com.gt.xml @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Budget.com.mx.xml b/src/chrome/content/rules/Budget.com.mx.xml new file mode 100644 index 000000000000..1bf8a86b65cd --- /dev/null +++ b/src/chrome/content/rules/Budget.com.mx.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Budget.com.pt.xml b/src/chrome/content/rules/Budget.com.pt.xml new file mode 100644 index 000000000000..12119a6af9a4 --- /dev/null +++ b/src/chrome/content/rules/Budget.com.pt.xml @@ -0,0 +1,29 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Budget.com.sv.xml b/src/chrome/content/rules/Budget.com.sv.xml new file mode 100644 index 000000000000..2aab9b8b4ea3 --- /dev/null +++ b/src/chrome/content/rules/Budget.com.sv.xml @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Budget.com.tr.xml b/src/chrome/content/rules/Budget.com.tr.xml new file mode 100644 index 000000000000..cfd8a637f915 --- /dev/null +++ b/src/chrome/content/rules/Budget.com.tr.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Budget.com.xml b/src/chrome/content/rules/Budget.com.xml new file mode 100644 index 000000000000..a62039ce27e7 --- /dev/null +++ b/src/chrome/content/rules/Budget.com.xml @@ -0,0 +1,108 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Budget.de.xml b/src/chrome/content/rules/Budget.de.xml new file mode 100644 index 000000000000..e5907220ab4a --- /dev/null +++ b/src/chrome/content/rules/Budget.de.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Budget.dk.xml b/src/chrome/content/rules/Budget.dk.xml new file mode 100644 index 000000000000..c4b83f87ee2d --- /dev/null +++ b/src/chrome/content/rules/Budget.dk.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Budget.ee.xml b/src/chrome/content/rules/Budget.ee.xml new file mode 100644 index 000000000000..3d16d7135576 --- /dev/null +++ b/src/chrome/content/rules/Budget.ee.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Budget.es.xml b/src/chrome/content/rules/Budget.es.xml new file mode 100644 index 000000000000..b6780410dd66 --- /dev/null +++ b/src/chrome/content/rules/Budget.es.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Budget.fr.xml b/src/chrome/content/rules/Budget.fr.xml new file mode 100644 index 000000000000..913b26604694 --- /dev/null +++ b/src/chrome/content/rules/Budget.fr.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Budget.ie.xml b/src/chrome/content/rules/Budget.ie.xml new file mode 100644 index 000000000000..b65aaa5d5b59 --- /dev/null +++ b/src/chrome/content/rules/Budget.ie.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Budget.lu.xml b/src/chrome/content/rules/Budget.lu.xml new file mode 100644 index 000000000000..5f1c27399a32 --- /dev/null +++ b/src/chrome/content/rules/Budget.lu.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Budget.lv.xml b/src/chrome/content/rules/Budget.lv.xml new file mode 100644 index 000000000000..b8d5387f3f15 --- /dev/null +++ b/src/chrome/content/rules/Budget.lv.xml @@ -0,0 +1,29 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Budget.ma.xml b/src/chrome/content/rules/Budget.ma.xml new file mode 100644 index 000000000000..5a9afa97629d --- /dev/null +++ b/src/chrome/content/rules/Budget.ma.xml @@ -0,0 +1,29 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Budget.nl.xml b/src/chrome/content/rules/Budget.nl.xml new file mode 100644 index 000000000000..81c3f25596c7 --- /dev/null +++ b/src/chrome/content/rules/Budget.nl.xml @@ -0,0 +1,29 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Budget.no.xml b/src/chrome/content/rules/Budget.no.xml new file mode 100644 index 000000000000..5dff156c23d7 --- /dev/null +++ b/src/chrome/content/rules/Budget.no.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Budget.se.xml b/src/chrome/content/rules/Budget.se.xml new file mode 100644 index 000000000000..96caaaac0586 --- /dev/null +++ b/src/chrome/content/rules/Budget.se.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Budget_Insurance.xml b/src/chrome/content/rules/Budget_Insurance.xml index 64d655ecceca..4e96bbf033d7 100644 --- a/src/chrome/content/rules/Budget_Insurance.xml +++ b/src/chrome/content/rules/Budget_Insurance.xml @@ -14,7 +14,7 @@ - + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Budgetgolf.se.xml b/src/chrome/content/rules/Budgetgolf.se.xml index 02e17daa29b8..395a7a2868f2 100644 --- a/src/chrome/content/rules/Budgetgolf.se.xml +++ b/src/chrome/content/rules/Budgetgolf.se.xml @@ -1,7 +1,8 @@ - - - - - - + + + + + + + diff --git a/src/chrome/content/rules/Budgetkredit.ch.xml b/src/chrome/content/rules/Budgetkredit.ch.xml index eff82b024944..a20f18491cd0 100644 --- a/src/chrome/content/rules/Budgetkredit.ch.xml +++ b/src/chrome/content/rules/Budgetkredit.ch.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Buds_Gun_Shop.xml b/src/chrome/content/rules/Buds_Gun_Shop.xml index c83601b353af..601c8932670f 100644 --- a/src/chrome/content/rules/Buds_Gun_Shop.xml +++ b/src/chrome/content/rules/Buds_Gun_Shop.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Buerger-CERT.xml b/src/chrome/content/rules/Buerger-CERT.xml index 8b22a7d23ab9..0fc6de363290 100644 --- a/src/chrome/content/rules/Buerger-CERT.xml +++ b/src/chrome/content/rules/Buerger-CERT.xml @@ -1,15 +1,11 @@ - + - + + + - + - - diff --git a/src/chrome/content/rules/Bues.ch.xml b/src/chrome/content/rules/Bues.ch.xml new file mode 100644 index 000000000000..d5a1699703fa --- /dev/null +++ b/src/chrome/content/rules/Bues.ch.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Buffalo-Global.com.xml b/src/chrome/content/rules/Buffalo-Global.com.xml index 593839e11ed6..654680acb13f 100644 --- a/src/chrome/content/rules/Buffalo-Global.com.xml +++ b/src/chrome/content/rules/Buffalo-Global.com.xml @@ -11,7 +11,7 @@ - + - + - + https://static.bufferapp.com/: (60, * Secured by us --> - + diff --git a/src/chrome/content/rules/Bufferbloat.xml b/src/chrome/content/rules/Bufferbloat.xml index ab67483efa4f..170b041b349e 100644 --- a/src/chrome/content/rules/Bufferbloat.xml +++ b/src/chrome/content/rules/Bufferbloat.xml @@ -3,18 +3,15 @@ - snapon.lab (refused) - - Expired 2014. - --> - + - + diff --git a/src/chrome/content/rules/BugMeNot.com.xml b/src/chrome/content/rules/BugMeNot.com.xml index 71d285036e38..f272eb3af87f 100644 --- a/src/chrome/content/rules/BugMeNot.com.xml +++ b/src/chrome/content/rules/BugMeNot.com.xml @@ -15,7 +15,7 @@ Fetch error: http://bugmenot.com/ => https://bugmenot.com/: Cycle detected - URL * Secured by us --> - + diff --git a/src/chrome/content/rules/BuildItBreakIt.org.xml b/src/chrome/content/rules/BuildItBreakIt.org.xml new file mode 100644 index 000000000000..26205ac2ad2a --- /dev/null +++ b/src/chrome/content/rules/BuildItBreakIt.org.xml @@ -0,0 +1,13 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Build_Better.Software.xml b/src/chrome/content/rules/Build_Better.Software.xml deleted file mode 100644 index e0ced586506d..000000000000 --- a/src/chrome/content/rules/Build_Better.Software.xml +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Build_it_Break_it.org.xml b/src/chrome/content/rules/Build_it_Break_it.org.xml deleted file mode 100644 index 8ce0c739a7a4..000000000000 --- a/src/chrome/content/rules/Build_it_Break_it.org.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Bukalapak.com.xml b/src/chrome/content/rules/Bukalapak.com.xml new file mode 100644 index 000000000000..0a2db4683370 --- /dev/null +++ b/src/chrome/content/rules/Bukalapak.com.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/BulbaGarden.net.xml b/src/chrome/content/rules/BulbaGarden.net.xml new file mode 100644 index 000000000000..e09387ff3336 --- /dev/null +++ b/src/chrome/content/rules/BulbaGarden.net.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Bulbman.xml b/src/chrome/content/rules/Bulbman.xml index ebbf454a7674..8e804f2b9763 100644 --- a/src/chrome/content/rules/Bulbman.xml +++ b/src/chrome/content/rules/Bulbman.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://bulbman.com/ => https://www.bulbman.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.bulbman.com'") Fetch error: http://www.bulbman.com/ => https://www.bulbman.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.bulbman.com'") --> - + diff --git a/src/chrome/content/rules/BulkSMS.xml b/src/chrome/content/rules/BulkSMS.xml deleted file mode 100644 index e411e2138da0..000000000000 --- a/src/chrome/content/rules/BulkSMS.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/BulletProof_Meteor.com.xml b/src/chrome/content/rules/BulletProof_Meteor.com.xml index a5b7cef202c9..6e250da9f462 100644 --- a/src/chrome/content/rules/BulletProof_Meteor.com.xml +++ b/src/chrome/content/rules/BulletProof_Meteor.com.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://bulletproofmeteor.com/ => https://bulletproofmeteor.com/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/Bulletin_Messenger.net.xml b/src/chrome/content/rules/Bulletin_Messenger.net.xml index 9df2a95961f6..1a2cd37a1321 100644 --- a/src/chrome/content/rules/Bulletin_Messenger.net.xml +++ b/src/chrome/content/rules/Bulletin_Messenger.net.xml @@ -17,7 +17,8 @@ - + + @@ -27,7 +28,6 @@ to="https://www.bulletinmessenger.net/" /> - + diff --git a/src/chrome/content/rules/Bullguard.com.xml b/src/chrome/content/rules/Bullguard.com.xml index 6f4c39cc6b17..50c5b832b013 100644 --- a/src/chrome/content/rules/Bullguard.com.xml +++ b/src/chrome/content/rules/Bullguard.com.xml @@ -1,8 +1,26 @@ - - + + - - - + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Bum.org.xml b/src/chrome/content/rules/Bum.org.xml new file mode 100644 index 000000000000..e70075f6d724 --- /dev/null +++ b/src/chrome/content/rules/Bum.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Bunadformenn.info.xml b/src/chrome/content/rules/Bunadformenn.info.xml deleted file mode 100644 index 6edc16524e56..000000000000 --- a/src/chrome/content/rules/Bunadformenn.info.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Bunchball.com.xml b/src/chrome/content/rules/Bunchball.com.xml index f36e40b86f72..0c6aefc7099b 100644 --- a/src/chrome/content/rules/Bunchball.com.xml +++ b/src/chrome/content/rules/Bunchball.com.xml @@ -28,7 +28,7 @@ Fetch error: http://go.bunchball.com/ => https://www.bunchball.com/: (51, "SSL: - (www.)? --> - + diff --git a/src/chrome/content/rules/Bunchball.xml b/src/chrome/content/rules/Bunchball.xml index 70daaffc94d5..020cb068ab5f 100644 --- a/src/chrome/content/rules/Bunchball.xml +++ b/src/chrome/content/rules/Bunchball.xml @@ -13,7 +13,7 @@ Fetch error: http://www.bunchball.net/ => https://www.bunchball.net/: (51, "SSL: - assets --> - + diff --git a/src/chrome/content/rules/BundanonTrust.xml b/src/chrome/content/rules/BundanonTrust.xml index 16802703367f..fef34efa7170 100644 --- a/src/chrome/content/rules/BundanonTrust.xml +++ b/src/chrome/content/rules/BundanonTrust.xml @@ -10,10 +10,10 @@ Disabled by https-everywhere-checker because: Fetch error: http://bundanon.com.au/ => https://www.bundanon.com.au/: (52, 'Empty reply from server') --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Bundesamt_fuer_Kartographie_und_Geodaesie.xml b/src/chrome/content/rules/Bundesamt_fuer_Kartographie_und_Geodaesie.xml new file mode 100644 index 000000000000..b42ca1b7627c --- /dev/null +++ b/src/chrome/content/rules/Bundesamt_fuer_Kartographie_und_Geodaesie.xml @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Bundesamt_fuer_Verfassungsschutz.xml b/src/chrome/content/rules/Bundesamt_fuer_Verfassungsschutz.xml index 0b35932a8238..7a307735a997 100644 --- a/src/chrome/content/rules/Bundesamt_fuer_Verfassungsschutz.xml +++ b/src/chrome/content/rules/Bundesamt_fuer_Verfassungsschutz.xml @@ -1,9 +1,12 @@ - - - - + + + + + + + + diff --git a/src/chrome/content/rules/Bundesamt_fuer_Wirtschaft_und_Ausfuhrkontrolle.xml b/src/chrome/content/rules/Bundesamt_fuer_Wirtschaft_und_Ausfuhrkontrolle.xml new file mode 100644 index 000000000000..2411fd898be6 --- /dev/null +++ b/src/chrome/content/rules/Bundesamt_fuer_Wirtschaft_und_Ausfuhrkontrolle.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Bundesanzeiger.de.xml b/src/chrome/content/rules/Bundesanzeiger.de.xml new file mode 100644 index 000000000000..ce4fbde4663e --- /dev/null +++ b/src/chrome/content/rules/Bundesanzeiger.de.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Bundesarbeitsgericht.de.xml b/src/chrome/content/rules/Bundesarbeitsgericht.de.xml new file mode 100644 index 000000000000..20a65e45f353 --- /dev/null +++ b/src/chrome/content/rules/Bundesarbeitsgericht.de.xml @@ -0,0 +1,12 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Bundesarchiv.de.xml b/src/chrome/content/rules/Bundesarchiv.de.xml new file mode 100644 index 000000000000..a3768b8571c7 --- /dev/null +++ b/src/chrome/content/rules/Bundesarchiv.de.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Bundesbank.de.xml b/src/chrome/content/rules/Bundesbank.de.xml new file mode 100644 index 000000000000..76ace03b8b0b --- /dev/null +++ b/src/chrome/content/rules/Bundesbank.de.xml @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Bundesdruckerei.de.xml b/src/chrome/content/rules/Bundesdruckerei.de.xml new file mode 100644 index 000000000000..0be449dd881b --- /dev/null +++ b/src/chrome/content/rules/Bundesdruckerei.de.xml @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Bundesfinanzhof.de.xml b/src/chrome/content/rules/Bundesfinanzhof.de.xml new file mode 100644 index 000000000000..9eadf3d96a13 --- /dev/null +++ b/src/chrome/content/rules/Bundesfinanzhof.de.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Bundesfinanzministerium.de.xml b/src/chrome/content/rules/Bundesfinanzministerium.de.xml new file mode 100644 index 000000000000..76c095b9e1fb --- /dev/null +++ b/src/chrome/content/rules/Bundesfinanzministerium.de.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Bundesgerichtshof.de.xml b/src/chrome/content/rules/Bundesgerichtshof.de.xml new file mode 100644 index 000000000000..a15999165b2b --- /dev/null +++ b/src/chrome/content/rules/Bundesgerichtshof.de.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Bundesgesundheitsministerium.de.xml b/src/chrome/content/rules/Bundesgesundheitsministerium.de.xml new file mode 100644 index 000000000000..52c94e007e7a --- /dev/null +++ b/src/chrome/content/rules/Bundesgesundheitsministerium.de.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Bundesimmobilien.de.xml b/src/chrome/content/rules/Bundesimmobilien.de.xml new file mode 100644 index 000000000000..6dacedacdd57 --- /dev/null +++ b/src/chrome/content/rules/Bundesimmobilien.de.xml @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Bundeskartellamt.de.xml b/src/chrome/content/rules/Bundeskartellamt.de.xml new file mode 100644 index 000000000000..51e675fd0d1c --- /dev/null +++ b/src/chrome/content/rules/Bundeskartellamt.de.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Bundesnetzagentur.xml b/src/chrome/content/rules/Bundesnetzagentur.xml index d60aa87de9be..803459b26d11 100644 --- a/src/chrome/content/rules/Bundesnetzagentur.xml +++ b/src/chrome/content/rules/Bundesnetzagentur.xml @@ -37,7 +37,7 @@ - + diff --git a/src/chrome/content/rules/Bundespatentgericht.de.xml b/src/chrome/content/rules/Bundespatentgericht.de.xml new file mode 100644 index 000000000000..0f6b391d14ba --- /dev/null +++ b/src/chrome/content/rules/Bundespatentgericht.de.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Bundespraesident.de.xml b/src/chrome/content/rules/Bundespraesident.de.xml new file mode 100644 index 000000000000..b6d6e1398d0c --- /dev/null +++ b/src/chrome/content/rules/Bundespraesident.de.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Bundesrechnungshof.de.xml b/src/chrome/content/rules/Bundesrechnungshof.de.xml new file mode 100644 index 000000000000..751532bb72d7 --- /dev/null +++ b/src/chrome/content/rules/Bundesrechnungshof.de.xml @@ -0,0 +1,12 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Bundesverband_IT-Mittelstand.xml b/src/chrome/content/rules/Bundesverband_IT-Mittelstand.xml index 21daecdbfc7b..285531be87ba 100644 --- a/src/chrome/content/rules/Bundesverband_IT-Mittelstand.xml +++ b/src/chrome/content/rules/Bundesverband_IT-Mittelstand.xml @@ -12,4 +12,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Bundeswehr-Karriere.de.xml b/src/chrome/content/rules/Bundeswehr-Karriere.de.xml new file mode 100644 index 000000000000..5493680ff8e0 --- /dev/null +++ b/src/chrome/content/rules/Bundeswehr-Karriere.de.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Bundeswehr.de.xml b/src/chrome/content/rules/Bundeswehr.de.xml new file mode 100644 index 000000000000..b22832cec612 --- /dev/null +++ b/src/chrome/content/rules/Bundeswehr.de.xml @@ -0,0 +1,58 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/BundeswehrEntdecken.de.xml b/src/chrome/content/rules/BundeswehrEntdecken.de.xml new file mode 100644 index 000000000000..45d6de7e455d --- /dev/null +++ b/src/chrome/content/rules/BundeswehrEntdecken.de.xml @@ -0,0 +1,11 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/BundeswehrKarriere.de.xml b/src/chrome/content/rules/BundeswehrKarriere.de.xml new file mode 100644 index 000000000000..819a14aa4f06 --- /dev/null +++ b/src/chrome/content/rules/BundeswehrKarriere.de.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/BureauofInfrastructureTransportandRegionalEconomics.xml b/src/chrome/content/rules/BureauofInfrastructureTransportandRegionalEconomics.xml index f0265866ac2e..3b5ab12aeced 100644 --- a/src/chrome/content/rules/BureauofInfrastructureTransportandRegionalEconomics.xml +++ b/src/chrome/content/rules/BureauofInfrastructureTransportandRegionalEconomics.xml @@ -1,7 +1,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Burlington_Free_Press.xml b/src/chrome/content/rules/Burlington_Free_Press.xml index 8d117a6f8c0b..8527d2686733 100644 --- a/src/chrome/content/rules/Burlington_Free_Press.xml +++ b/src/chrome/content/rules/Burlington_Free_Press.xml @@ -11,7 +11,8 @@ - + + diff --git a/src/chrome/content/rules/BurmaMuslims.org.xml b/src/chrome/content/rules/BurmaMuslims.org.xml new file mode 100644 index 000000000000..e5bbf428b31e --- /dev/null +++ b/src/chrome/content/rules/BurmaMuslims.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Burning-Shed.xml b/src/chrome/content/rules/Burning-Shed.xml index 85978063e4c6..3c253e29da8c 100644 --- a/src/chrome/content/rules/Burning-Shed.xml +++ b/src/chrome/content/rules/Burning-Shed.xml @@ -4,9 +4,7 @@ - + - + diff --git a/src/chrome/content/rules/BurningSeries.xml b/src/chrome/content/rules/BurningSeries.xml deleted file mode 100644 index 34c69e331769..000000000000 --- a/src/chrome/content/rules/BurningSeries.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Burnley.gov.uk-falsemixed.xml b/src/chrome/content/rules/Burnley.gov.uk-falsemixed.xml index f1ce9aaf071b..fceb219b879c 100644 --- a/src/chrome/content/rules/Burnley.gov.uk-falsemixed.xml +++ b/src/chrome/content/rules/Burnley.gov.uk-falsemixed.xml @@ -8,7 +8,7 @@ - + - + https://burstnet.eu/: (28, 'Connection timed - forums.burst.net (times out) --> - + @@ -35,4 +35,4 @@ Fetch error: http://burstnet.eu/ => https://burstnet.eu/: (28, 'Connection timed - \ No newline at end of file + diff --git a/src/chrome/content/rules/Burst_Media.xml b/src/chrome/content/rules/Burst_Media.xml index 51b758790f4a..60036aa8f2e8 100644 --- a/src/chrome/content/rules/Burst_Media.xml +++ b/src/chrome/content/rules/Burst_Media.xml @@ -8,20 +8,16 @@ Fetch error: http://burstmedia.com/ => https://www.burstmedia.com/: (28, 'Connec Disabled by https-everywhere-checker because: Fetch error: http://burstmedia.co.uk/ => https://www.burstmedia.co.uk/: (7, 'Failed to connect to www.burstmedia.co.uk port 443: Connection refused') Fetch error: http://www.burstmedia.co.uk/ => https://www.burstmedia.co.uk/: (7, 'Failed to connect to www.burstmedia.co.uk port 443: Connection refused') - Other Burst Media rulesets: - - - Burstnet.xml - !www: cert only matches www --> - + - + @@ -30,4 +26,4 @@ Fetch error: http://www.burstmedia.co.uk/ => https://www.burstmedia.co.uk/: (7, - \ No newline at end of file + diff --git a/src/chrome/content/rules/Burstnet.com.xml b/src/chrome/content/rules/Burstnet.com.xml index 74ee0d232043..d892552d087c 100644 --- a/src/chrome/content/rules/Burstnet.com.xml +++ b/src/chrome/content/rules/Burstnet.com.xml @@ -7,15 +7,12 @@ --> - + - + - - - \ No newline at end of file + diff --git a/src/chrome/content/rules/Burt.xml b/src/chrome/content/rules/Burt.xml deleted file mode 100644 index 790315c409be..000000000000 --- a/src/chrome/content/rules/Burt.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Burt_hub.com.xml b/src/chrome/content/rules/Burt_hub.com.xml index 53461105cd64..117162309e85 100644 --- a/src/chrome/content/rules/Burt_hub.com.xml +++ b/src/chrome/content/rules/Burt_hub.com.xml @@ -8,7 +8,6 @@ Fetch error: http://help.burthub.com/ => https://help.burthub.com/: Too many red Other Burt rulesets: - - Burt.xml - Burt.io.xml @@ -29,7 +28,7 @@ Fetch error: http://help.burthub.com/ => https://help.burthub.com/: Too many red * Secured by us --> - + diff --git a/src/chrome/content/rules/BusinessAU.xml b/src/chrome/content/rules/BusinessAU.xml deleted file mode 100644 index 945727aebb3b..000000000000 --- a/src/chrome/content/rules/BusinessAU.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/BusinessWeek.com.xml b/src/chrome/content/rules/BusinessWeek.com.xml deleted file mode 100644 index e8f3d05076f0..000000000000 --- a/src/chrome/content/rules/BusinessWeek.com.xml +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Business_2_Community.xml b/src/chrome/content/rules/Business_2_Community.xml index b3484d6c6e8d..7a83717f88fd 100644 --- a/src/chrome/content/rules/Business_2_Community.xml +++ b/src/chrome/content/rules/Business_2_Community.xml @@ -20,4 +20,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Business_Catalyst.com-problematic.xml b/src/chrome/content/rules/Business_Catalyst.com-problematic.xml index 283eb5328f08..1c2d9f559afc 100644 --- a/src/chrome/content/rules/Business_Catalyst.com-problematic.xml +++ b/src/chrome/content/rules/Business_Catalyst.com-problematic.xml @@ -5,7 +5,7 @@ - + diff --git a/src/chrome/content/rules/Business_Companion.info.xml b/src/chrome/content/rules/Business_Companion.info.xml index 3f17fc20bd64..41200138e777 100644 --- a/src/chrome/content/rules/Business_Companion.info.xml +++ b/src/chrome/content/rules/Business_Companion.info.xml @@ -4,7 +4,7 @@ - + https://online.contractsfinder.businesslink.gov.uk/: (60, 'SSL certificate problem: certificate has expired') - For other UK government coverage, see GOV.UK.xml. ---> - + Non-functional hosts + Mismatch: + - businesslink.gov.uk - - + Expired: + - online.contractsfinder.businesslink.gov.uk +--> + + + - - - - - + to="https://www.businesslink.gov.uk/" /> - + to="https:" /> diff --git a/src/chrome/content/rules/Buttercoin.com.xml b/src/chrome/content/rules/Buttercoin.com.xml deleted file mode 100644 index e13b77716349..000000000000 --- a/src/chrome/content/rules/Buttercoin.com.xml +++ /dev/null @@ -1,64 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Butterfly_Labs.com.xml b/src/chrome/content/rules/Butterfly_Labs.com.xml deleted file mode 100644 index 12e0f137e406..000000000000 --- a/src/chrome/content/rules/Butterfly_Labs.com.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/ButtonNoses.com.xml b/src/chrome/content/rules/ButtonNoses.com.xml new file mode 100644 index 000000000000..f7938d96b242 --- /dev/null +++ b/src/chrome/content/rules/ButtonNoses.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Buy-Premium-Tech.xml b/src/chrome/content/rules/Buy-Premium-Tech.xml deleted file mode 100644 index 41901bd6e0bc..000000000000 --- a/src/chrome/content/rules/Buy-Premium-Tech.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/BuyBoard.xml b/src/chrome/content/rules/BuyBoard.xml index 20c25955ebf6..fa2ae7233ed7 100644 --- a/src/chrome/content/rules/BuyBoard.xml +++ b/src/chrome/content/rules/BuyBoard.xml @@ -10,13 +10,13 @@ Disabled by https-everywhere-checker because: Fetch error: http://buyboard.com/ => https://buyboard.com/: (51, "SSL: no alternative certificate subject name matches target host name 'buyboard.com'") --> - + - + diff --git a/src/chrome/content/rules/BuyMeACoffee.com.xml b/src/chrome/content/rules/BuyMeACoffee.com.xml new file mode 100644 index 000000000000..f52c8f76e53e --- /dev/null +++ b/src/chrome/content/rules/BuyMeACoffee.com.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/BuySellAds.xml b/src/chrome/content/rules/BuySellAds.xml index 7546f86bdf24..bebc5a58518a 100644 --- a/src/chrome/content/rules/BuySellAds.xml +++ b/src/chrome/content/rules/BuySellAds.xml @@ -12,7 +12,8 @@ - + + - + diff --git a/src/chrome/content/rules/Buy_Veteran.xml b/src/chrome/content/rules/Buy_Veteran.xml index 3fd968ba30ad..687ecc58757e 100644 --- a/src/chrome/content/rules/Buy_Veteran.xml +++ b/src/chrome/content/rules/Buy_Veteran.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/BuzzFeed.xml b/src/chrome/content/rules/BuzzFeed.xml index ecd0b734385f..a815ff5faa71 100644 --- a/src/chrome/content/rules/BuzzFeed.xml +++ b/src/chrome/content/rules/BuzzFeed.xml @@ -24,7 +24,7 @@ - diff --git a/src/chrome/content/rules/Buzzdock.xml b/src/chrome/content/rules/Buzzdock.xml deleted file mode 100644 index 541a953783c5..000000000000 --- a/src/chrome/content/rules/Buzzdock.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Buzzdoes.com.xml b/src/chrome/content/rules/Buzzdoes.com.xml index 77432afb0eb9..32cc8133e893 100644 --- a/src/chrome/content/rules/Buzzdoes.com.xml +++ b/src/chrome/content/rules/Buzzdoes.com.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://buzzdoes.com/ => https://buzzdoes.com/: (28, 'Connection timed out after 10000 milliseconds') Fetch error: http://www.buzzdoes.com/ => https://www.buzzdoes.com/: (28, 'Connection timed out after 10000 milliseconds') --> - + @@ -19,4 +19,4 @@ Fetch error: http://www.buzzdoes.com/ => https://www.buzzdoes.com/: (28, 'Connec - \ No newline at end of file + diff --git a/src/chrome/content/rules/Buzzhosting.org.xml b/src/chrome/content/rules/Buzzhosting.org.xml deleted file mode 100644 index 4322b43720d4..000000000000 --- a/src/chrome/content/rules/Buzzhosting.org.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Buzzurl.xml b/src/chrome/content/rules/Buzzurl.xml index 938cf0df6ee7..5dadee748733 100644 --- a/src/chrome/content/rules/Buzzurl.xml +++ b/src/chrome/content/rules/Buzzurl.xml @@ -22,10 +22,11 @@ Fetch error: http://buzzurl.jp.eimg.jp/ => https://buzzurl.jp/: (28, 'Connection - buzzurl.jp.eimg.jp (cert: jpssl.cdngc.net; 403) --> - + - + + diff --git a/src/chrome/content/rules/ByCraft.cz.xml b/src/chrome/content/rules/ByCraft.cz.xml deleted file mode 100644 index 411becbefbae..000000000000 --- a/src/chrome/content/rules/ByCraft.cz.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/By_David_Wittig.com.xml b/src/chrome/content/rules/By_David_Wittig.com.xml deleted file mode 100644 index ccadcd688e26..000000000000 --- a/src/chrome/content/rules/By_David_Wittig.com.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Byrdie.com.au.xml b/src/chrome/content/rules/Byrdie.com.au.xml new file mode 100644 index 000000000000..14a10030633f --- /dev/null +++ b/src/chrome/content/rules/Byrdie.com.au.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Byte.nl.xml b/src/chrome/content/rules/Byte.nl.xml deleted file mode 100644 index f0b5811ac28f..000000000000 --- a/src/chrome/content/rules/Byte.nl.xml +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Bytemark.co.uk.xml b/src/chrome/content/rules/Bytemark.co.uk.xml index 6439a4fce563..aaca5111d37f 100644 --- a/src/chrome/content/rules/Bytemark.co.uk.xml +++ b/src/chrome/content/rules/Bytemark.co.uk.xml @@ -21,7 +21,7 @@ Fetch error: http://status.bytemark.co.uk/ => https://status.bytemark.co.uk/: (6 - status.bytemark.co.uk --> - + diff --git a/src/chrome/content/rules/Bytenoc.nl.xml b/src/chrome/content/rules/Bytenoc.nl.xml deleted file mode 100644 index a7ec817a93bc..000000000000 --- a/src/chrome/content/rules/Bytenoc.nl.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Byuu.org.xml b/src/chrome/content/rules/Byuu.org.xml new file mode 100644 index 000000000000..d5fe1a460961 --- /dev/null +++ b/src/chrome/content/rules/Byuu.org.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/C-Base.org.xml b/src/chrome/content/rules/C-Base.org.xml index 501fee44cc16..69f41c205fab 100644 --- a/src/chrome/content/rules/C-Base.org.xml +++ b/src/chrome/content/rules/C-Base.org.xml @@ -1,5 +1,5 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/C-and-a.com.xml b/src/chrome/content/rules/C-and-a.com.xml index c89bc5296131..96838ba83ed9 100644 --- a/src/chrome/content/rules/C-and-a.com.xml +++ b/src/chrome/content/rules/C-and-a.com.xml @@ -16,7 +16,8 @@ - + + @@ -25,7 +26,6 @@ - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/C-ware.de.xml b/src/chrome/content/rules/C-ware.de.xml index 218c9aab37ff..aebc7af2718e 100644 --- a/src/chrome/content/rules/C-ware.de.xml +++ b/src/chrome/content/rules/C-ware.de.xml @@ -14,7 +14,7 @@ - + - + https://vpn.c3noc.net/: (7, 'Failed to con Fetch error: http://www.c3noc.net/ => https://www.c3noc.net/: (51, "SSL: no alternative certificate subject name matches target host name 'www.c3noc.net'") --> - + diff --git a/src/chrome/content/rules/C3tag.com.xml b/src/chrome/content/rules/C3tag.com.xml index e65ead701b1b..5afc01f63fca 100644 --- a/src/chrome/content/rules/C3tag.com.xml +++ b/src/chrome/content/rules/C3tag.com.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/C4tw.net.xml b/src/chrome/content/rules/C4tw.net.xml index f68f1acf32e9..fea286c84602 100644 --- a/src/chrome/content/rules/C4tw.net.xml +++ b/src/chrome/content/rules/C4tw.net.xml @@ -28,7 +28,7 @@ Fetch error: http://c4tw.net/ => https://c4tw.net/: (7, 'Failed to connect to c4 www doesn't exist. --> - + diff --git a/src/chrome/content/rules/CA-Browser_Forum.xml b/src/chrome/content/rules/CA-Browser_Forum.xml deleted file mode 100644 index 4dec8c5d0d7f..000000000000 --- a/src/chrome/content/rules/CA-Browser_Forum.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/CA-PCA.fr.xml b/src/chrome/content/rules/CA-PCA.fr.xml index def55e72b9ea..e95a6d0a4cb9 100644 --- a/src/chrome/content/rules/CA-PCA.fr.xml +++ b/src/chrome/content/rules/CA-PCA.fr.xml @@ -11,7 +11,7 @@ - - - - - - - - - - + diff --git a/src/chrome/content/rules/CA-Technologies.xml b/src/chrome/content/rules/CA-Technologies.xml deleted file mode 100644 index 087021add5ab..000000000000 --- a/src/chrome/content/rules/CA-Technologies.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/CA-mpr.jp.xml b/src/chrome/content/rules/CA-mpr.jp.xml deleted file mode 100644 index 542dc5ef16b8..000000000000 --- a/src/chrome/content/rules/CA-mpr.jp.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/CA.com.xml b/src/chrome/content/rules/CA.com.xml index 3d507c0cdb17..e68cdb1891ac 100644 --- a/src/chrome/content/rules/CA.com.xml +++ b/src/chrome/content/rules/CA.com.xml @@ -55,7 +55,7 @@ Non-2xx HTTP code: http://trials.ca.com/us/~/media/trials/images/icons/google-pl * Secured by us --> - + diff --git a/src/chrome/content/rules/CAD-Comic.com.xml b/src/chrome/content/rules/CAD-Comic.com.xml new file mode 100644 index 000000000000..0b7a262fd374 --- /dev/null +++ b/src/chrome/content/rules/CAD-Comic.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/CAE.edu.au.xml b/src/chrome/content/rules/CAE.edu.au.xml new file mode 100644 index 000000000000..04942b302690 --- /dev/null +++ b/src/chrome/content/rules/CAE.edu.au.xml @@ -0,0 +1,36 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/CAGE.ngo.xml b/src/chrome/content/rules/CAGE.ngo.xml new file mode 100644 index 000000000000..d717c1c797f1 --- /dev/null +++ b/src/chrome/content/rules/CAGE.ngo.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/CAGW.org.xml b/src/chrome/content/rules/CAGW.org.xml deleted file mode 100644 index 7e469095b0e5..000000000000 --- a/src/chrome/content/rules/CAGW.org.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/CAIR.com.xml b/src/chrome/content/rules/CAIR.com.xml index a9a434ab7ef8..89d03a61a1b6 100644 --- a/src/chrome/content/rules/CAIR.com.xml +++ b/src/chrome/content/rules/CAIR.com.xml @@ -1,4 +1,7 @@ + + + + + + diff --git a/src/chrome/content/rules/CAREpackage.xml b/src/chrome/content/rules/CAREpackage.xml index 0075fcc9197b..9266787ef623 100644 --- a/src/chrome/content/rules/CAREpackage.xml +++ b/src/chrome/content/rules/CAREpackage.xml @@ -8,7 +8,7 @@ - + - + diff --git a/src/chrome/content/rules/CARI.net.xml b/src/chrome/content/rules/CARI.net.xml index 73fb73127a35..a78e0e29ede5 100644 --- a/src/chrome/content/rules/CARI.net.xml +++ b/src/chrome/content/rules/CARI.net.xml @@ -6,14 +6,14 @@ Fetch error: http://chat.cari.net/ => https://chat.cari.net/: (60, 'SSL certific For problematic rules, see CARI.net-self-signed.xml. --> - + - + diff --git a/src/chrome/content/rules/CA_Security_Council.xml b/src/chrome/content/rules/CA_Security_Council.xml deleted file mode 100644 index 36d559d36a3c..000000000000 --- a/src/chrome/content/rules/CA_Security_Council.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/CAcert.xml b/src/chrome/content/rules/CAcert.xml index 5a6f4ded2efc..e285b31b1471 100644 --- a/src/chrome/content/rules/CAcert.xml +++ b/src/chrome/content/rules/CAcert.xml @@ -14,7 +14,7 @@ Fetch error: http://cacert.com/ => https://cacert.com/: (60, 'SSL certificate pr Fetch error: http://www.cacert.com/ => https://www.cacert.com/: (60, 'SSL certificate problem: self signed certificate in certificate chain') --> - + diff --git a/src/chrome/content/rules/CBC_Blueprint.xml b/src/chrome/content/rules/CBC_Blueprint.xml index c9ce8d2ac5d7..ec7ca4f8b2b7 100644 --- a/src/chrome/content/rules/CBC_Blueprint.xml +++ b/src/chrome/content/rules/CBC_Blueprint.xml @@ -16,4 +16,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/CBCrypt.com.xml b/src/chrome/content/rules/CBCrypt.com.xml deleted file mode 100644 index 2110c6c7cc74..000000000000 --- a/src/chrome/content/rules/CBCrypt.com.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/CBP.gov.xml b/src/chrome/content/rules/CBP.gov.xml index 15a3e6686d2e..a01a987fb70b 100644 --- a/src/chrome/content/rules/CBP.gov.xml +++ b/src/chrome/content/rules/CBP.gov.xml @@ -41,7 +41,7 @@ --> - + - - - + - - - - - - + + - - + + diff --git a/src/chrome/content/rules/CBS.xml b/src/chrome/content/rules/CBS.xml index b0d5351dcaee..2c7d66721edd 100644 --- a/src/chrome/content/rules/CBS.xml +++ b/src/chrome/content/rules/CBS.xml @@ -1,168 +1,40 @@ - - + - - - - - - - - - - - - - - - - - - - - - - - - - + + + + diff --git a/src/chrome/content/rules/CBSInteractive.com.au.xml b/src/chrome/content/rules/CBSInteractive.com.au.xml new file mode 100644 index 000000000000..1695d7934d62 --- /dev/null +++ b/src/chrome/content/rules/CBSInteractive.com.au.xml @@ -0,0 +1,14 @@ + + + + + + + diff --git a/src/chrome/content/rules/CBSInteractive.com.xml b/src/chrome/content/rules/CBSInteractive.com.xml new file mode 100644 index 000000000000..88578b70df06 --- /dev/null +++ b/src/chrome/content/rules/CBSInteractive.com.xml @@ -0,0 +1,12 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/CBSNews.com.xml b/src/chrome/content/rules/CBSNews.com.xml new file mode 100644 index 000000000000..63ff075f774e --- /dev/null +++ b/src/chrome/content/rules/CBSNews.com.xml @@ -0,0 +1,140 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/CBSStatic.com.xml b/src/chrome/content/rules/CBSStatic.com.xml new file mode 100644 index 000000000000..24f0d4c7ef5f --- /dev/null +++ b/src/chrome/content/rules/CBSStatic.com.xml @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/CBS_Local.xml b/src/chrome/content/rules/CBS_Local.xml index e57bfca44d6c..77078c99266a 100644 --- a/src/chrome/content/rules/CBS_Local.xml +++ b/src/chrome/content/rules/CBS_Local.xml @@ -6,7 +6,6 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/CBS_Store.xml b/src/chrome/content/rules/CBS_Store.xml index 128fe098cf98..47682e35419d 100644 --- a/src/chrome/content/rules/CBS_Store.xml +++ b/src/chrome/content/rules/CBS_Store.xml @@ -1,30 +1,20 @@ - - - + + + - - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/CBSi.com.au.xml b/src/chrome/content/rules/CBSi.com.au.xml new file mode 100644 index 000000000000..50131f982dfb --- /dev/null +++ b/src/chrome/content/rules/CBSi.com.au.xml @@ -0,0 +1,15 @@ + + + + + + + diff --git a/src/chrome/content/rules/CBSimg.net.xml b/src/chrome/content/rules/CBSimg.net.xml new file mode 100644 index 000000000000..cf02e018f2dc --- /dev/null +++ b/src/chrome/content/rules/CBSimg.net.xml @@ -0,0 +1,16 @@ + + + + + + diff --git a/src/chrome/content/rules/CC.com.xml b/src/chrome/content/rules/CC.com.xml index 96209cd59fb5..dfd61d4cd092 100644 --- a/src/chrome/content/rules/CC.com.xml +++ b/src/chrome/content/rules/CC.com.xml @@ -1,38 +1,27 @@ - + + - - - - - - - - - + diff --git a/src/chrome/content/rules/CCAvenue.xml b/src/chrome/content/rules/CCAvenue.xml index 93a84605d2ed..1c03fb989ab6 100644 --- a/src/chrome/content/rules/CCAvenue.xml +++ b/src/chrome/content/rules/CCAvenue.xml @@ -7,7 +7,9 @@ - + + + @@ -16,7 +18,6 @@ - + diff --git a/src/chrome/content/rules/CCC-Mannheim.de.xml b/src/chrome/content/rules/CCC-Mannheim.de.xml index c132d360023e..df79bcdbc7b3 100644 --- a/src/chrome/content/rules/CCC-Mannheim.de.xml +++ b/src/chrome/content/rules/CCC-Mannheim.de.xml @@ -5,13 +5,13 @@ Fetch error: http://ccc-mannheim.de/ => https://ccc-mannheim.de/: (60, 'SSL cert Fetch error: http://www.ccc-mannheim.de/ => https://www.ccc-mannheim.de/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/CCC.xml b/src/chrome/content/rules/CCC.xml deleted file mode 100644 index f060ddfe9b6f..000000000000 --- a/src/chrome/content/rules/CCC.xml +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/CCC_cloud.com.xml b/src/chrome/content/rules/CCC_cloud.com.xml index 1072a8e8131f..11f0384588da 100644 --- a/src/chrome/content/rules/CCC_cloud.com.xml +++ b/src/chrome/content/rules/CCC_cloud.com.xml @@ -13,7 +13,7 @@ - + - - - - - - - - - diff --git a/src/chrome/content/rules/CCCure.training.xml b/src/chrome/content/rules/CCCure.training.xml index 67983cb6ab75..7f71006110b8 100644 --- a/src/chrome/content/rules/CCCure.training.xml +++ b/src/chrome/content/rules/CCCure.training.xml @@ -1,29 +1,9 @@ - - + - - - - + diff --git a/src/chrome/content/rules/CCDCoE.xml b/src/chrome/content/rules/CCDCoE.xml index f8432d4f5297..653d71603bf3 100644 --- a/src/chrome/content/rules/CCDCoE.xml +++ b/src/chrome/content/rules/CCDCoE.xml @@ -14,7 +14,7 @@ --> - + - + + + - + + + + + - @@ -35,7 +38,6 @@ - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/CCS.xml b/src/chrome/content/rules/CCS.xml index d77c92206baa..4ea156425079 100644 --- a/src/chrome/content/rules/CCS.xml +++ b/src/chrome/content/rules/CCS.xml @@ -29,7 +29,7 @@ Fetch error: http://m.ccs.com/ => https://m.ccs.com/: (6, 'Could not resolve hos - .shop.ccs.com --> - + @@ -51,7 +51,7 @@ Fetch error: http://m.ccs.com/ => https://m.ccs.com/: (6, 'Could not resolve hos - + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/CDG_Commerce.com.xml b/src/chrome/content/rules/CDG_Commerce.com.xml index 44e712d585a0..8ec818d0638a 100644 --- a/src/chrome/content/rules/CDG_Commerce.com.xml +++ b/src/chrome/content/rules/CDG_Commerce.com.xml @@ -19,7 +19,7 @@ Fetch error: http://www.cdgcommerce.com/ => https://www.cdgcommerce.com/: Too ma - www.cdgcommerce.com --> - + diff --git a/src/chrome/content/rules/CDIC-SADC.xml b/src/chrome/content/rules/CDIC-SADC.xml new file mode 100644 index 000000000000..9abea24610b5 --- /dev/null +++ b/src/chrome/content/rules/CDIC-SADC.xml @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/src/chrome/content/rules/CDJapan.xml b/src/chrome/content/rules/CDJapan.xml new file mode 100644 index 000000000000..84aa64c0324d --- /dev/null +++ b/src/chrome/content/rules/CDJapan.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/CDMediaWorld.com.xml b/src/chrome/content/rules/CDMediaWorld.com.xml new file mode 100644 index 000000000000..4f114be511d9 --- /dev/null +++ b/src/chrome/content/rules/CDMediaWorld.com.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/CDN-Redfin.com.xml b/src/chrome/content/rules/CDN-Redfin.com.xml index 286353f30631..a63dfb7e6b9e 100644 --- a/src/chrome/content/rules/CDN-Redfin.com.xml +++ b/src/chrome/content/rules/CDN-Redfin.com.xml @@ -6,7 +6,7 @@ Fetch error: http://ssl.cdn-redfin.com/ => https://ssl.cdn-redfin.com/: Too many For other Redfin coverage, see Redfin.com.xml. --> - + diff --git a/src/chrome/content/rules/CDN77.com-problematic.xml b/src/chrome/content/rules/CDN77.com-problematic.xml index 977c70028447..5911243153e4 100644 --- a/src/chrome/content/rules/CDN77.com-problematic.xml +++ b/src/chrome/content/rules/CDN77.com-problematic.xml @@ -10,4 +10,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/CDN77.com.xml b/src/chrome/content/rules/CDN77.com.xml index 0f9c969ff967..502862993bbe 100644 --- a/src/chrome/content/rules/CDN77.com.xml +++ b/src/chrome/content/rules/CDN77.com.xml @@ -28,4 +28,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/CDN_Instagram.com.xml b/src/chrome/content/rules/CDN_Instagram.com.xml index f0cbce4219c2..60caf822b68f 100644 --- a/src/chrome/content/rules/CDN_Instagram.com.xml +++ b/src/chrome/content/rules/CDN_Instagram.com.xml @@ -1,5 +1,5 @@ @@ -7,9 +7,9 @@ + + - - + diff --git a/src/chrome/content/rules/CDON.COM.xml b/src/chrome/content/rules/CDON.COM.xml index e60ed54d332e..9f0592921660 100644 --- a/src/chrome/content/rules/CDON.COM.xml +++ b/src/chrome/content/rules/CDON.COM.xml @@ -1,3 +1,7 @@ + @@ -8,16 +12,14 @@ - - - + - + diff --git a/src/chrome/content/rules/CDS-Global-mismatches.xml b/src/chrome/content/rules/CDS-Global-mismatches.xml index 03e04a03a748..9a48115172c7 100644 --- a/src/chrome/content/rules/CDS-Global-mismatches.xml +++ b/src/chrome/content/rules/CDS-Global-mismatches.xml @@ -8,7 +8,7 @@ - + - - + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/CD_Universe.xml b/src/chrome/content/rules/CD_Universe.xml index d9d58496f4ea..5332ea605ec7 100644 --- a/src/chrome/content/rules/CD_Universe.xml +++ b/src/chrome/content/rules/CD_Universe.xml @@ -26,7 +26,8 @@ - + + @@ -37,7 +38,8 @@ --> - + + - + diff --git a/src/chrome/content/rules/CERIT.cz.xml b/src/chrome/content/rules/CERIT.cz.xml index b67d6df9f103..e318d3bf53b7 100644 --- a/src/chrome/content/rules/CERIT.cz.xml +++ b/src/chrome/content/rules/CERIT.cz.xml @@ -14,7 +14,7 @@ Fetch error: http://prototyp.cerit.cz/ => https://prototyp.cerit.cz/: (51, "SSL: - www.cerit.cz --> - + diff --git a/src/chrome/content/rules/CERN.ch-problematic.xml b/src/chrome/content/rules/CERN.ch-problematic.xml index ca54dadf1a7a..f5310fa415e3 100644 --- a/src/chrome/content/rules/CERN.ch-problematic.xml +++ b/src/chrome/content/rules/CERN.ch-problematic.xml @@ -2,31 +2,18 @@ For rules that are on by default, see CERN.xml. --> - + - + + - - - - - - - - - - diff --git a/src/chrome/content/rules/CERN.xml b/src/chrome/content/rules/CERN.xml index c11c3711d805..0ea7eade7b89 100644 --- a/src/chrome/content/rules/CERN.xml +++ b/src/chrome/content/rules/CERN.xml @@ -15,26 +15,29 @@ - in *web: - aida2020 ᵈ - - educard2 ᵈ + - alice-collaboration ᵈ - alpha ᵈ - atlas-outreach ᵈ - avc-dashboard ᵈ + - educard2 ᵈ - first-website ᵈ - gs-dep ᵈ - home ᵈ - information-technology ᵈ + - isolde-project-rilis ᵈ - library ᵈ - ombuds ᵈ - photoclub ᵈ - press ᵈ + - rilis ᵈ - user ʰ - cerncourier.org ʰ - - (www.)?cernland.net (prints "cernland.net does not exist") + - (www.)?cernland.net (mismatched, prints "cernland.net does not exist") ᵃ Shows another domain ʳ Refused - ᵈ Redirects to login.cern.ch, valid cert + ᵈ Different content (redirects to login.cern.ch) ᵈ Dropped ʰ Redirects to http @@ -50,12 +53,11 @@ - info ⁴ - invenio-demo ᵉ ˢ - savannah ᵐ - - sft.its ˢ - photoclub ᵐ - - root ˢ ($ 403s, drupal/ works) - vocms0153 ᵘ - web ᵐ - cvs.web ˣ + - hie-isolde.web ᵐ - hr-dept.web ᵐ - indico.web ᵐ - it-dep.web ᵐ @@ -142,6 +144,8 @@ + + @@ -149,7 +153,6 @@ - @@ -169,12 +172,11 @@ - + - @@ -213,7 +215,6 @@ - @@ -274,10 +275,6 @@ - - - diff --git a/src/chrome/content/rules/CERT-Bund.xml b/src/chrome/content/rules/CERT-Bund.xml index 3c9688056b9a..064927e344b9 100644 --- a/src/chrome/content/rules/CERT-Bund.xml +++ b/src/chrome/content/rules/CERT-Bund.xml @@ -2,7 +2,7 @@ - + diff --git a/src/chrome/content/rules/CERT-Polska.xml b/src/chrome/content/rules/CERT-Polska.xml index d8a7f531793f..08d5affd843b 100644 --- a/src/chrome/content/rules/CERT-Polska.xml +++ b/src/chrome/content/rules/CERT-Polska.xml @@ -30,10 +30,10 @@ - - + + diff --git a/src/chrome/content/rules/CERT-UK.xml b/src/chrome/content/rules/CERT-UK.xml deleted file mode 100644 index cba3ac4f672c..000000000000 --- a/src/chrome/content/rules/CERT-UK.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/CERT-Verbund.xml b/src/chrome/content/rules/CERT-Verbund.xml index 119f431260ec..b183e1beb61c 100644 --- a/src/chrome/content/rules/CERT-Verbund.xml +++ b/src/chrome/content/rules/CERT-Verbund.xml @@ -8,7 +8,7 @@ - + diff --git a/src/chrome/content/rules/CERT.at.xml b/src/chrome/content/rules/CERT.at.xml index 9c2c8960f123..867d20a3b3a7 100644 --- a/src/chrome/content/rules/CERT.at.xml +++ b/src/chrome/content/rules/CERT.at.xml @@ -2,7 +2,7 @@ - + diff --git a/src/chrome/content/rules/CERT.se.xml b/src/chrome/content/rules/CERT.se.xml index 439be616beae..65b98618f782 100644 --- a/src/chrome/content/rules/CERT.se.xml +++ b/src/chrome/content/rules/CERT.se.xml @@ -1,7 +1,9 @@ - - - - - + + + + + + + diff --git a/src/chrome/content/rules/CERT.xml b/src/chrome/content/rules/CERT.xml index f26f805f513d..a28078c5b365 100644 --- a/src/chrome/content/rules/CERT.xml +++ b/src/chrome/content/rules/CERT.xml @@ -8,7 +8,7 @@ - + - - - - - diff --git a/src/chrome/content/rules/CETIC.be.xml b/src/chrome/content/rules/CETIC.be.xml index 2da5486bc2b6..8dda7eec1739 100644 --- a/src/chrome/content/rules/CETIC.be.xml +++ b/src/chrome/content/rules/CETIC.be.xml @@ -44,13 +44,18 @@ - + + + + + + + - + diff --git a/src/chrome/content/rules/CEntrance.xml b/src/chrome/content/rules/CEntrance.xml index d316346cee47..cf0f747a97f5 100644 --- a/src/chrome/content/rules/CEntrance.xml +++ b/src/chrome/content/rules/CEntrance.xml @@ -36,10 +36,10 @@ - store/cart.php?target=profile - store/images/ - store/skins/ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/CEtrk.com.xml b/src/chrome/content/rules/CEtrk.com.xml deleted file mode 100644 index 3b0be18647c2..000000000000 --- a/src/chrome/content/rules/CEtrk.com.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/CFINotebook.net.xml b/src/chrome/content/rules/CFINotebook.net.xml new file mode 100644 index 000000000000..19ae3a67c1e2 --- /dev/null +++ b/src/chrome/content/rules/CFINotebook.net.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/CFWGroup.ca.xml b/src/chrome/content/rules/CFWGroup.ca.xml new file mode 100644 index 000000000000..8e2119009047 --- /dev/null +++ b/src/chrome/content/rules/CFWGroup.ca.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/CHDK.xml b/src/chrome/content/rules/CHDK.xml index 3a26aa1718b1..07725303b75e 100644 --- a/src/chrome/content/rules/CHDK.xml +++ b/src/chrome/content/rules/CHDK.xml @@ -4,7 +4,7 @@ - Someserver.xml --> - + diff --git a/src/chrome/content/rules/CHIP-Online-mismatches.xml b/src/chrome/content/rules/CHIP-Online-mismatches.xml index 462d4359ee32..21c3244de2a9 100644 --- a/src/chrome/content/rules/CHIP-Online-mismatches.xml +++ b/src/chrome/content/rules/CHIP-Online-mismatches.xml @@ -7,7 +7,6 @@ - + diff --git a/src/chrome/content/rules/CHIP.de.xml b/src/chrome/content/rules/CHIP.de.xml new file mode 100644 index 000000000000..87615ab0cde0 --- /dev/null +++ b/src/chrome/content/rules/CHIP.de.xml @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/CICLOPS.xml b/src/chrome/content/rules/CICLOPS.xml index bfbd36ca797f..98087c679810 100644 --- a/src/chrome/content/rules/CICLOPS.xml +++ b/src/chrome/content/rules/CICLOPS.xml @@ -5,7 +5,7 @@ - + https://www.bizchannel.cimbbank.com.kh/: (51, "SSL: no alternative certificate subject name matches target host name 'www.bizchannel.cimbbank.com.kh'") -Fetch error: http://www.bizchannel.cimbbank.com.kh/ => https://www.bizchannel.cimbbank.com.kh/: (51, "SSL: no alternative certificate subject name matches target host name 'www.bizchannel.cimbbank.com.kh'") - + For other CIMB coverage, see CIMB.com.xml - Other CIMB Group rulesets: - - CIMB-Malaysia.xml - - CIMB-Singapore.xml - - CIMB-Indonesia.xml - - CIMB-Thailand.xml - Non-functional domain: - - (www.)cimbbank.com.kh (¹², CN: www.cimbbank.com.my) + Non-functional subdomains: + - (www.)bizchannel (certificate mismatch) --> - - - - + - + + + - - + - + diff --git a/src/chrome/content/rules/CIMB-Indonesia.xml b/src/chrome/content/rules/CIMB-Indonesia.xml index eb5fec6d6a1c..15eb665204fc 100644 --- a/src/chrome/content/rules/CIMB-Indonesia.xml +++ b/src/chrome/content/rules/CIMB-Indonesia.xml @@ -1,43 +1,42 @@ - - - - - - - - - + + + + - - + + - + - + - + diff --git a/src/chrome/content/rules/CIMB-Malaysia.xml b/src/chrome/content/rules/CIMB-Malaysia.xml deleted file mode 100644 index 8b922b151500..000000000000 --- a/src/chrome/content/rules/CIMB-Malaysia.xml +++ /dev/null @@ -1,79 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/CIMB-Singapore.xml b/src/chrome/content/rules/CIMB-Singapore.xml index ba73484a7a40..d8c81e7f1089 100644 --- a/src/chrome/content/rules/CIMB-Singapore.xml +++ b/src/chrome/content/rules/CIMB-Singapore.xml @@ -1,45 +1,43 @@ + + Non-functional hosts: + - (www.)cimb.com.sg (t) + - m.cimbclicks.com.sg (m) + + e: expired certificate + h: http redirect + i: invalid certificate chain + m: certificate mismatch + r: connection refused + s: self-signed certificate + t: timeout on https +--> - + + + + + + + - + - - - - - - - - - - - - - - - + + - + + diff --git a/src/chrome/content/rules/CIMB-Thailand.xml b/src/chrome/content/rules/CIMB-Thailand.xml index 31e1223304b3..f2b16ba9e7bf 100644 --- a/src/chrome/content/rules/CIMB-Thailand.xml +++ b/src/chrome/content/rules/CIMB-Thailand.xml @@ -1,52 +1,37 @@ - - + - - - - - - - - - - - - - - - - - + + - + + + + + + - + - + diff --git a/src/chrome/content/rules/CIMB.com.xml b/src/chrome/content/rules/CIMB.com.xml new file mode 100644 index 000000000000..4b4c2f578078 --- /dev/null +++ b/src/chrome/content/rules/CIMB.com.xml @@ -0,0 +1,167 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/CIMBBank.com.my.xml b/src/chrome/content/rules/CIMBBank.com.my.xml new file mode 100644 index 000000000000..0332c0753a72 --- /dev/null +++ b/src/chrome/content/rules/CIMBBank.com.my.xml @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/CIMBClicks.com.my.xml b/src/chrome/content/rules/CIMBClicks.com.my.xml new file mode 100644 index 000000000000..4d67999b9540 --- /dev/null +++ b/src/chrome/content/rules/CIMBClicks.com.my.xml @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/CIMBIslamic.com.xml b/src/chrome/content/rules/CIMBIslamic.com.xml new file mode 100644 index 000000000000..cff7e12ba8ba --- /dev/null +++ b/src/chrome/content/rules/CIMBIslamic.com.xml @@ -0,0 +1,27 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/CIMBPreferred.com.xml b/src/chrome/content/rules/CIMBPreferred.com.xml new file mode 100644 index 000000000000..e77609c5781c --- /dev/null +++ b/src/chrome/content/rules/CIMBPreferred.com.xml @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/CIO.com.xml b/src/chrome/content/rules/CIO.com.xml index 11540a0aa8ea..8c46c7fd2aa1 100644 --- a/src/chrome/content/rules/CIO.com.xml +++ b/src/chrome/content/rules/CIO.com.xml @@ -34,7 +34,8 @@ --> - + + https://www.cirt.net/: (51, "SSL: no alternative certificate subject name matches target host name 'www.cirt.net'") --> - + diff --git a/src/chrome/content/rules/CIR_Online.org.xml b/src/chrome/content/rules/CIR_Online.org.xml index e12ab8bb3741..9f1bc8c204e9 100644 --- a/src/chrome/content/rules/CIR_Online.org.xml +++ b/src/chrome/content/rules/CIR_Online.org.xml @@ -5,7 +5,7 @@ Fetch error: http://beta.cironline.org/ => https://beta.cironline.org/: (28, 'Co Fetch error: http://www.cironline.org/ => https://www.cironline.org/: (60, 'SSL certificate problem: certificate has expired') --> - + @@ -18,7 +18,7 @@ Fetch error: http://www.cironline.org/ => https://www.cironline.org/: (60, 'SSL Exceptions: --> - + diff --git a/src/chrome/content/rules/CISOfy.com.xml b/src/chrome/content/rules/CISOfy.com.xml deleted file mode 100644 index 5301f414bd18..000000000000 --- a/src/chrome/content/rules/CISOfy.com.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/CJ2.nl.xml b/src/chrome/content/rules/CJ2.nl.xml index 6e8aa227764f..c28f8f585a1d 100644 --- a/src/chrome/content/rules/CJ2.nl.xml +++ b/src/chrome/content/rules/CJ2.nl.xml @@ -14,7 +14,7 @@ Fetch error: http://admin.cj2.nl/ => https://admin.cj2.nl/: (28, 'Connection tim - www.cj2.nl --> - + diff --git a/src/chrome/content/rules/CJS-CDKeys.com-mixed.xml b/src/chrome/content/rules/CJS-CDKeys.com-mixed.xml deleted file mode 100644 index d8c093cf06f9..000000000000 --- a/src/chrome/content/rules/CJS-CDKeys.com-mixed.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/CJS-CDKeys.com.xml b/src/chrome/content/rules/CJS-CDKeys.com.xml index cd8e9b0c4b2e..9546cd3b9899 100644 --- a/src/chrome/content/rules/CJS-CDKeys.com.xml +++ b/src/chrome/content/rules/CJS-CDKeys.com.xml @@ -1,30 +1,9 @@ - - + - - - - - - - - - - - - - - - - - + diff --git a/src/chrome/content/rules/CKSource.com.xml b/src/chrome/content/rules/CKSource.com.xml index 1e0dd092c171..7a6b777f43ce 100644 --- a/src/chrome/content/rules/CKSource.com.xml +++ b/src/chrome/content/rules/CKSource.com.xml @@ -53,10 +53,6 @@ - - - diff --git a/src/chrome/content/rules/CLIC-study.xml b/src/chrome/content/rules/CLIC-study.xml index b1e7a9d2c5a2..8c8a78a5b181 100644 --- a/src/chrome/content/rules/CLIC-study.xml +++ b/src/chrome/content/rules/CLIC-study.xml @@ -14,4 +14,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/CLP.com.hk.xml b/src/chrome/content/rules/CLP.com.hk.xml index 97d2554230b7..9703b426565f 100644 --- a/src/chrome/content/rules/CLP.com.hk.xml +++ b/src/chrome/content/rules/CLP.com.hk.xml @@ -62,9 +62,9 @@ - - diff --git a/src/chrome/content/rules/CLTglobal.com.xml b/src/chrome/content/rules/CLTglobal.com.xml index 14823fe1459c..24245a5a0e28 100644 --- a/src/chrome/content/rules/CLTglobal.com.xml +++ b/src/chrome/content/rules/CLTglobal.com.xml @@ -13,7 +13,7 @@ Fetch error: http://cltglobal.com/ => https://cltglobal.com/: (60, 'SSL certific * Secured by us --> - + diff --git a/src/chrome/content/rules/CMAS_Center.org.xml b/src/chrome/content/rules/CMAS_Center.org.xml index 2319c4be5f79..6fe889abd753 100644 --- a/src/chrome/content/rules/CMAS_Center.org.xml +++ b/src/chrome/content/rules/CMAS_Center.org.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://cmascenter.org/ => https://cmascenter.org/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + diff --git a/src/chrome/content/rules/CMBChina.com.xml b/src/chrome/content/rules/CMBChina.com.xml index e0ebf0d85790..3babf7e97276 100644 --- a/src/chrome/content/rules/CMBChina.com.xml +++ b/src/chrome/content/rules/CMBChina.com.xml @@ -1,4 +1,19 @@ + + + - - + @@ -57,6 +70,7 @@ + @@ -68,8 +82,7 @@ - - + @@ -80,33 +93,17 @@ - - - - - - - - - - - - - + - - - - + - diff --git a/src/chrome/content/rules/CMP.xml b/src/chrome/content/rules/CMP.xml index 5c9499d18e06..5bc935c38593 100644 --- a/src/chrome/content/rules/CMP.xml +++ b/src/chrome/content/rules/CMP.xml @@ -13,7 +13,7 @@ Non-2xx HTTP code: http://cookies.cmpnet.com/ (200) => https://i.cmpnet.com/ (40 * Mismatched --> - + diff --git a/src/chrome/content/rules/CMPXCHG8B.xml b/src/chrome/content/rules/CMPXCHG8B.xml deleted file mode 100644 index 9fc1d3b1a9d0..000000000000 --- a/src/chrome/content/rules/CMPXCHG8B.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/CMSWire.xml b/src/chrome/content/rules/CMSWire.xml index a2a529540551..9bbc9b250737 100644 --- a/src/chrome/content/rules/CMSWire.xml +++ b/src/chrome/content/rules/CMSWire.xml @@ -12,7 +12,7 @@ Fetch error: http://www.cmswire.com/ => https://www.cmswire.com/: Too many redir Fetch error: http://cmswire.com/ => https://www.cmswire.com/: Too many redirects while fetching 'https://www.cmswire.com/' --> - + diff --git a/src/chrome/content/rules/CM_Dev.com.xml b/src/chrome/content/rules/CM_Dev.com.xml index c17f8363c30e..f1c443a8db6c 100644 --- a/src/chrome/content/rules/CM_Dev.com.xml +++ b/src/chrome/content/rules/CM_Dev.com.xml @@ -5,7 +5,7 @@ Fetch error: http://cmdev.com/ => https://cmdev.com/: (60, 'SSL certificate prob Fetch error: http://www.cmdev.com/ => https://www.cmdev.com/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/CNBC.com.xml b/src/chrome/content/rules/CNBC.com.xml index 6386403d3295..56a314692207 100644 --- a/src/chrome/content/rules/CNBC.com.xml +++ b/src/chrome/content/rules/CNBC.com.xml @@ -17,7 +17,6 @@ - bigdata.cnbc.com Secure connection redirects to plaintext: - - www.cnbc.com - deliveringalpha.cnbc.com - futuresnow.cnbc.com - watchlist.cnbc.com @@ -29,12 +28,6 @@ - - - - - - @@ -56,13 +49,7 @@ - - - - - + + diff --git a/src/chrome/content/rules/CNDP.fr.xml b/src/chrome/content/rules/CNDP.fr.xml deleted file mode 100644 index 1eb2036904b6..000000000000 --- a/src/chrome/content/rules/CNDP.fr.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/CNES.fr.xml b/src/chrome/content/rules/CNES.fr.xml index 9065f61a6b09..357d05b123fe 100644 --- a/src/chrome/content/rules/CNES.fr.xml +++ b/src/chrome/content/rules/CNES.fr.xml @@ -5,14 +5,14 @@ Nonfunctional hosts in *cnes.fr: - videotheque * - + * Shows another domain Problematic hosts in *cnes.fr: - cosparhq * - + * Server sends no certificate chain, see https://whatsmychaincert.com @@ -56,7 +56,7 @@ - + + + + + + diff --git a/src/chrome/content/rules/CNET.com.xml b/src/chrome/content/rules/CNET.com.xml new file mode 100644 index 000000000000..cc35a3a7126f --- /dev/null +++ b/src/chrome/content/rules/CNET.com.xml @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/CNETFrance.fr.xml b/src/chrome/content/rules/CNETFrance.fr.xml new file mode 100644 index 000000000000..160cdf213f7c --- /dev/null +++ b/src/chrome/content/rules/CNETFrance.fr.xml @@ -0,0 +1,9 @@ + + + + + + + diff --git a/src/chrome/content/rules/CNN.com.xml b/src/chrome/content/rules/CNN.com.xml index d54325f2df02..7b7834153bbf 100644 --- a/src/chrome/content/rules/CNN.com.xml +++ b/src/chrome/content/rules/CNN.com.xml @@ -1,61 +1,43 @@ + + + + + + @@ -64,7 +46,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/CNN.io.xml b/src/chrome/content/rules/CNN.io.xml new file mode 100644 index 000000000000..d9e6f5aa42f8 --- /dev/null +++ b/src/chrome/content/rules/CNN.io.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/CNNIC.net.cn.xml b/src/chrome/content/rules/CNNIC.net.cn.xml new file mode 100644 index 000000000000..fed35d2f7565 --- /dev/null +++ b/src/chrome/content/rules/CNNIC.net.cn.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/COSPAR-Assembly.org.xml b/src/chrome/content/rules/COSPAR-Assembly.org.xml index 7257103b1f1f..061a16415373 100644 --- a/src/chrome/content/rules/COSPAR-Assembly.org.xml +++ b/src/chrome/content/rules/COSPAR-Assembly.org.xml @@ -4,7 +4,7 @@ - + https://adfs.coct.edu/: (6, 'Could not resolve host: adfs.coct.edu') - - Central Ohio Technical College - ---> - - - - - - - - - - - diff --git a/src/chrome/content/rules/COZmedics.com.au.xml b/src/chrome/content/rules/COZmedics.com.au.xml index 3cc75e759ee3..682fcb05dd8f 100644 --- a/src/chrome/content/rules/COZmedics.com.au.xml +++ b/src/chrome/content/rules/COZmedics.com.au.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://cozmedics.com.au/ => https://cozmedics.com.au/: (7, 'Failed to connect to cozmedics.com.au port 443: Connection refused') Fetch error: http://www.cozmedics.com.au/ => https://www.cozmedics.com.au/: Cycle detected - URL already encountered: https://www.cozmedics.com.au/ --> - + diff --git a/src/chrome/content/rules/CPAN.org.xml b/src/chrome/content/rules/CPAN.org.xml new file mode 100644 index 000000000000..b15c180911d3 --- /dev/null +++ b/src/chrome/content/rules/CPAN.org.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/CPDB.co.xml b/src/chrome/content/rules/CPDB.co.xml new file mode 100644 index 000000000000..9ab038c1e826 --- /dev/null +++ b/src/chrome/content/rules/CPDB.co.xml @@ -0,0 +1,16 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/CPDP.co.xml b/src/chrome/content/rules/CPDP.co.xml new file mode 100644 index 000000000000..206b9b969be8 --- /dev/null +++ b/src/chrome/content/rules/CPDP.co.xml @@ -0,0 +1,14 @@ + + + + + + + + diff --git a/src/chrome/content/rules/CPIB.ac.uk.xml b/src/chrome/content/rules/CPIB.ac.uk.xml index e4e74ca15ddd..8efe5924a596 100644 --- a/src/chrome/content/rules/CPIB.ac.uk.xml +++ b/src/chrome/content/rules/CPIB.ac.uk.xml @@ -10,7 +10,7 @@ - + - + https://forum.cpmstar.com/: (6, 'Could not resolve host: forum.cpmstar.com') - CDN buckets: - cpmstar.vo.llnwd.net - - cdn - Problematic subdomains: - cdn (400, CN: *.hs.llnwd.net) - Insecure cookies are set for these domains and hosts: ᶜ - ssl.cdne.cpmstar.com @@ -23,27 +16,26 @@ Fetch error: http://forum.cpmstar.com/ => https://forum.cpmstar.com/: (6, 'Could ᶜ See https://owasp.org/index.php/SecureFlag --> - + + + - - - - + https://d38cp5x90nxyo0.cloudfront. - (www.) (dropped) --> - + diff --git a/src/chrome/content/rules/CPS-Datensysteme.de.xml b/src/chrome/content/rules/CPS-Datensysteme.de.xml new file mode 100644 index 000000000000..6b24e0266c33 --- /dev/null +++ b/src/chrome/content/rules/CPS-Datensysteme.de.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/CPSC.xml b/src/chrome/content/rules/CPSC.xml deleted file mode 100644 index aa60f75c2d6c..000000000000 --- a/src/chrome/content/rules/CPSC.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/CPanel.com.xml b/src/chrome/content/rules/CPanel.com.xml index 710efa6f3f26..c4323defd8bd 100644 --- a/src/chrome/content/rules/CPanel.com.xml +++ b/src/chrome/content/rules/CPanel.com.xml @@ -2,7 +2,7 @@ Nonfunctional hosts in *cpanel.com: - conference15 * - + * Shows default page diff --git a/src/chrome/content/rules/CPanel.guru.xml b/src/chrome/content/rules/CPanel.guru.xml index f54c1810d957..9bd2525c766b 100644 --- a/src/chrome/content/rules/CPanel.guru.xml +++ b/src/chrome/content/rules/CPanel.guru.xml @@ -7,7 +7,7 @@ Fetch error: http://www.cpanel.guru/ => https://www.cpanel.guru/: (60, 'SSL cert Disabled by https-everywhere-checker because: Non-2xx HTTP code: http://cpanel.guru/ (200) => https://cpanel.guru/ (401) --> - + diff --git a/src/chrome/content/rules/CPanel.xml b/src/chrome/content/rules/CPanel.xml index 324c2795a1ba..cee3ce1409fd 100644 --- a/src/chrome/content/rules/CPanel.xml +++ b/src/chrome/content/rules/CPanel.xml @@ -43,7 +43,7 @@ Fetch error: http://podcast.cpanel.net/ => https://podcast.cpanel.net/: (6, 'Cou * Secured by us --> - + @@ -79,7 +79,7 @@ Fetch error: http://podcast.cpanel.net/ => https://podcast.cpanel.net/: (6, 'Cou - + + + + + + + diff --git a/src/chrome/content/rules/CQ_Roll_Call.xml b/src/chrome/content/rules/CQ_Roll_Call.xml index 8c4a8a4236eb..2fc04f1495de 100644 --- a/src/chrome/content/rules/CQ_Roll_Call.xml +++ b/src/chrome/content/rules/CQ_Roll_Call.xml @@ -3,44 +3,31 @@ - Capwiz.com.xml + Expired hosts in *cqrollcall.com: - Problematic hosts in *cqrollcall.com: + - ae + - connectivity + - insightnews - - (www.) ¹ ² - - corporate ¹ + Mismatched hosts in *cqrollcall.com: - ¹ Server sends no certificate chain, see https://whatsmychaincert.com - ² Mixed css - - - Mixed content: - - - css, on ^ from: - - - $self - - fonts.googleapis.com ² - - - Images on ^ from $self - - ² Secured by us + - info + - link --> - - - - - + - - + + + + + + + - - - + + diff --git a/src/chrome/content/rules/CREW.xml b/src/chrome/content/rules/CREW.xml index 863f3f79fdc5..65879020972c 100644 --- a/src/chrome/content/rules/CREW.xml +++ b/src/chrome/content/rules/CREW.xml @@ -8,7 +8,7 @@ Fetch error: http://www.secure.citizensforethics.org/ => https://www.secure.citi - (www.) (shows secure; mismatched, CN: secure.citizensforethics.org) --> - + @@ -19,4 +19,4 @@ Fetch error: http://www.secure.citizensforethics.org/ => https://www.secure.citi - \ No newline at end of file + diff --git a/src/chrome/content/rules/CRMMetrix.xml b/src/chrome/content/rules/CRMMetrix.xml deleted file mode 100644 index 7aae9d5a164f..000000000000 --- a/src/chrome/content/rules/CRMMetrix.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/CRN.xml b/src/chrome/content/rules/CRN.xml index d35b17cbae7f..9967504a1a2f 100644 --- a/src/chrome/content/rules/CRN.xml +++ b/src/chrome/content/rules/CRN.xml @@ -10,10 +10,12 @@ Fetch error: http://crn.verticalsearchworks.com/ => https://ad-secure.firstlight For other UBM coverage, see UBM-mismatches.xml. --> - + - + + + @@ -28,10 +30,9 @@ Fetch error: http://crn.verticalsearchworks.com/ => https://ad-secure.firstlight - + diff --git a/src/chrome/content/rules/CRON-O-Meter.xml b/src/chrome/content/rules/CRON-O-Meter.xml deleted file mode 100644 index accfaed23d06..000000000000 --- a/src/chrome/content/rules/CRON-O-Meter.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/CRU-Inc.com.xml b/src/chrome/content/rules/CRU-Inc.com.xml index a681e6383cc3..5c4d0162376d 100644 --- a/src/chrome/content/rules/CRU-Inc.com.xml +++ b/src/chrome/content/rules/CRU-Inc.com.xml @@ -35,7 +35,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/CSBA_Academy.com.xml b/src/chrome/content/rules/CSBA_Academy.com.xml index d260b0229954..803ef3a2e61d 100644 --- a/src/chrome/content/rules/CSBA_Academy.com.xml +++ b/src/chrome/content/rules/CSBA_Academy.com.xml @@ -14,7 +14,7 @@ Fetch error: http://www.csbaacademy.com/ => http://www.csbaacademy.com/: (6, 'Co * Unsecurable --> - + diff --git a/src/chrome/content/rules/CSC-Visa-Information-Service.xml b/src/chrome/content/rules/CSC-Visa-Information-Service.xml index 9854245a647d..5b3636df85fd 100644 --- a/src/chrome/content/rules/CSC-Visa-Information-Service.xml +++ b/src/chrome/content/rules/CSC-Visa-Information-Service.xml @@ -4,7 +4,7 @@ - + diff --git a/src/chrome/content/rules/CSC.com.xml b/src/chrome/content/rules/CSC.com.xml new file mode 100644 index 000000000000..6f32d7e7e8e7 --- /dev/null +++ b/src/chrome/content/rules/CSC.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/CSC.xml b/src/chrome/content/rules/CSC.xml deleted file mode 100644 index b8e8b0a8a300..000000000000 --- a/src/chrome/content/rules/CSC.xml +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/CSCtrustedsecure.com.xml b/src/chrome/content/rules/CSCtrustedsecure.com.xml deleted file mode 100644 index 8a17108f67df..000000000000 --- a/src/chrome/content/rules/CSCtrustedsecure.com.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/CSDb.dk.xml b/src/chrome/content/rules/CSDb.dk.xml index 6fe5f8471003..ab3614d083e8 100644 --- a/src/chrome/content/rules/CSDb.dk.xml +++ b/src/chrome/content/rules/CSDb.dk.xml @@ -12,7 +12,7 @@ - + diff --git a/src/chrome/content/rules/CSGO-Skins.com.xml b/src/chrome/content/rules/CSGO-Skins.com.xml new file mode 100644 index 000000000000..fdbd357e5529 --- /dev/null +++ b/src/chrome/content/rules/CSGO-Skins.com.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/CSIAC.org.xml b/src/chrome/content/rules/CSIAC.org.xml index 53cf8da08518..427d78e504d4 100644 --- a/src/chrome/content/rules/CSIAC.org.xml +++ b/src/chrome/content/rules/CSIAC.org.xml @@ -15,7 +15,7 @@ Fetch error: http://store.csiac.org/ => https://store.csiac.org/: (51, "SSL: no - .csiac.org --> - + diff --git a/src/chrome/content/rules/CSIS.dk.xml b/src/chrome/content/rules/CSIS.dk.xml deleted file mode 100644 index ae852e29f16d..000000000000 --- a/src/chrome/content/rules/CSIS.dk.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/CSIS.org.xml b/src/chrome/content/rules/CSIS.org.xml index 56c01379c53d..e01bd31da838 100644 --- a/src/chrome/content/rules/CSIS.org.xml +++ b/src/chrome/content/rules/CSIS.org.xml @@ -8,7 +8,8 @@ - + + https://www.cspforum.eu/: (60, 'SSL certific ^: plaintext reply --> - + - + - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/CSdata1.com.xml b/src/chrome/content/rules/CSdata1.com.xml deleted file mode 100644 index 46def7930925..000000000000 --- a/src/chrome/content/rules/CSdata1.com.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/CT.gov.xml b/src/chrome/content/rules/CT.gov.xml index f90feb7cc853..6fb57c32ddb6 100644 --- a/src/chrome/content/rules/CT.gov.xml +++ b/src/chrome/content/rules/CT.gov.xml @@ -56,7 +56,7 @@ Non-2xx HTTP code: http://www.ct.gov/ (200) => https://www.ct.egov.com/ (404) ˢ Secured by us --> - + @@ -83,7 +83,7 @@ Non-2xx HTTP code: http://www.ct.gov/ (200) => https://www.ct.egov.com/ (404) - + - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/CTERA-Networks.xml b/src/chrome/content/rules/CTERA-Networks.xml index 27be2b6a5c27..4d2d055c48cd 100644 --- a/src/chrome/content/rules/CTERA-Networks.xml +++ b/src/chrome/content/rules/CTERA-Networks.xml @@ -8,12 +8,12 @@ Disabled by https-everywhere-checker because: Fetch error: http://ctera.com/ => https://ctera.com/: (51, "SSL: no alternative certificate subject name matches target host name 'ctera.com'") Fetch error: http://www.ctera.com/ => https://www.ctera.com/: Cycle detected - URL already encountered: https://www.ctera.com/ --> - + - + diff --git a/src/chrome/content/rules/CTFtime.com.xml b/src/chrome/content/rules/CTFtime.com.xml index a699b6c7e8cd..6c747fa8ca76 100644 --- a/src/chrome/content/rules/CTFtime.com.xml +++ b/src/chrome/content/rules/CTFtime.com.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.ctftime.org/ => https://www.ctftime.org/: (51, "SSL: no alternative certificate subject name matches target host name 'www.ctftime.org'") --> - + diff --git a/src/chrome/content/rules/CTS_Wholesale_Sunglasses.xml b/src/chrome/content/rules/CTS_Wholesale_Sunglasses.xml index d648607a4b7e..14fd5e5b3d78 100644 --- a/src/chrome/content/rules/CTS_Wholesale_Sunglasses.xml +++ b/src/chrome/content/rules/CTS_Wholesale_Sunglasses.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/CTunnel.xml b/src/chrome/content/rules/CTunnel.xml deleted file mode 100644 index 6c975ec5f011..000000000000 --- a/src/chrome/content/rules/CTunnel.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/CUFP.org.xml b/src/chrome/content/rules/CUFP.org.xml index 4a4537845e26..8e2ad00ab401 100644 --- a/src/chrome/content/rules/CUFP.org.xml +++ b/src/chrome/content/rules/CUFP.org.xml @@ -5,7 +5,7 @@ - + diff --git a/src/chrome/content/rules/CUHK.xml b/src/chrome/content/rules/CUHK.xml index de21bcb7a6ec..be04462cc49f 100644 --- a/src/chrome/content/rules/CUHK.xml +++ b/src/chrome/content/rules/CUHK.xml @@ -1,17 +1,11 @@ - + - - + + - - + - - - - - - - - - - - - - - - - - - + - + diff --git a/src/chrome/content/rules/CVIMellesGriot.com.xml b/src/chrome/content/rules/CVIMellesGriot.com.xml index e0b3e1d9cf05..6ecc64ff553e 100644 --- a/src/chrome/content/rules/CVIMellesGriot.com.xml +++ b/src/chrome/content/rules/CVIMellesGriot.com.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.cvimellesgriot.com/ => https://www.cvimellesgriot.com/: (28, 'Connection timed out after 10001 milliseconds') Fetch error: http://cvimellesgriot.com/ => https://www.cvimellesgriot.com/: (28, 'Connection timed out after 10001 milliseconds') --> - + diff --git a/src/chrome/content/rules/CVS.com.xml b/src/chrome/content/rules/CVS.com.xml new file mode 100644 index 000000000000..ce926606cc9a --- /dev/null +++ b/src/chrome/content/rules/CVS.com.xml @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/CWSPOD_Music.xml b/src/chrome/content/rules/CWSPOD_Music.xml index 2238b4f65cc7..cb958ad2dac4 100644 --- a/src/chrome/content/rules/CWSPOD_Music.xml +++ b/src/chrome/content/rules/CWSPOD_Music.xml @@ -7,7 +7,7 @@ Non-2xx HTTP code: http://www.cwspodmusic.com/ (200) => https://www.cwspodmusic. Disabled by https-everywhere-checker because: Fetch error: http://cwspodmusic.com/ => https://cwspodmusic.com/: Cycle detected - URL already encountered: http://cwspodmusic.com/ --> - + @@ -18,4 +18,4 @@ Fetch error: http://cwspodmusic.com/ => https://cwspodmusic.com/: Cycle detected - \ No newline at end of file + diff --git a/src/chrome/content/rules/CXense.com.xml b/src/chrome/content/rules/CXense.com.xml index 6cf4db7c8d96..e4a93b3b0f5b 100644 --- a/src/chrome/content/rules/CXense.com.xml +++ b/src/chrome/content/rules/CXense.com.xml @@ -2,7 +2,6 @@ Other Cxense rulesets: - Emediate.dk.xml - - Emediate.eu.xml - Emediate.se.xml diff --git a/src/chrome/content/rules/CYBERsitter.xml b/src/chrome/content/rules/CYBERsitter.xml index 8aa80d328e37..3a231c22c128 100644 --- a/src/chrome/content/rules/CYBERsitter.xml +++ b/src/chrome/content/rules/CYBERsitter.xml @@ -2,13 +2,13 @@ Note: This website blocks Tor users. --> - + - + - - - - - - - - diff --git a/src/chrome/content/rules/Cabal_WS.xml b/src/chrome/content/rules/Cabal_WS.xml index 2cb89bec45fc..b80511473dfa 100644 --- a/src/chrome/content/rules/Cabal_WS.xml +++ b/src/chrome/content/rules/Cabal_WS.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Cabinet_Office.xml b/src/chrome/content/rules/Cabinet_Office.xml index e0ad6a389925..14af1ee5f442 100644 --- a/src/chrome/content/rules/Cabinet_Office.xml +++ b/src/chrome/content/rules/Cabinet_Office.xml @@ -49,7 +49,7 @@ Fetch error: http://umbr3.cabinetoffice.gov.uk/ => https://umbr3.cabinetoffice.g - umbr3.cabinetoffice.gov.uk --> - + @@ -109,7 +109,7 @@ Fetch error: http://umbr3.cabinetoffice.gov.uk/ => https://umbr3.cabinetoffice.g - + - + diff --git a/src/chrome/content/rules/CableForum.co.uk.xml b/src/chrome/content/rules/CableForum.co.uk.xml deleted file mode 100644 index b7316aa3cac8..000000000000 --- a/src/chrome/content/rules/CableForum.co.uk.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Cables.com.xml b/src/chrome/content/rules/Cables.com.xml index 575be739e78d..e6d9f20da75f 100644 --- a/src/chrome/content/rules/Cables.com.xml +++ b/src/chrome/content/rules/Cables.com.xml @@ -7,7 +7,7 @@ - + diff --git a/src/chrome/content/rules/Cablesurf.de.xml b/src/chrome/content/rules/Cablesurf.de.xml deleted file mode 100644 index 77dc719ca9f2..000000000000 --- a/src/chrome/content/rules/Cablesurf.de.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/CaceTech.xml b/src/chrome/content/rules/CaceTech.xml deleted file mode 100644 index 14693724c7c3..000000000000 --- a/src/chrome/content/rules/CaceTech.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/CacheBrowser.info.xml b/src/chrome/content/rules/CacheBrowser.info.xml deleted file mode 100644 index 3a0de31d7329..000000000000 --- a/src/chrome/content/rules/CacheBrowser.info.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Cactus_Complete_Commerce.xml b/src/chrome/content/rules/Cactus_Complete_Commerce.xml index 0b4d21f57016..91956692ad77 100644 --- a/src/chrome/content/rules/Cactus_Complete_Commerce.xml +++ b/src/chrome/content/rules/Cactus_Complete_Commerce.xml @@ -11,7 +11,7 @@ Fetch error: http://app.cactuscompletecommerce.com/ => https://app.cactuscomplet - (www.) (replies with http) --> - + @@ -19,7 +19,6 @@ Fetch error: http://app.cactuscompletecommerce.com/ => https://app.cactuscomplet - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/CadSoft.xml b/src/chrome/content/rules/CadSoft.xml deleted file mode 100644 index 9dae44077648..000000000000 --- a/src/chrome/content/rules/CadSoft.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Caddy_server.com.xml b/src/chrome/content/rules/Caddy_server.com.xml index 7e49f8a3b9fe..714e8be9b1e3 100644 --- a/src/chrome/content/rules/Caddy_server.com.xml +++ b/src/chrome/content/rules/Caddy_server.com.xml @@ -4,7 +4,7 @@ - + + + + + + + + + + + diff --git a/src/chrome/content/rules/Cadence.moe.xml b/src/chrome/content/rules/Cadence.moe.xml new file mode 100644 index 000000000000..e71e6ed1d501 --- /dev/null +++ b/src/chrome/content/rules/Cadence.moe.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/CafePharma.com.xml b/src/chrome/content/rules/CafePharma.com.xml new file mode 100644 index 000000000000..c073f578a2a5 --- /dev/null +++ b/src/chrome/content/rules/CafePharma.com.xml @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/src/chrome/content/rules/CafePlus.com.tr.xml b/src/chrome/content/rules/CafePlus.com.tr.xml new file mode 100644 index 000000000000..d5e0507058a1 --- /dev/null +++ b/src/chrome/content/rules/CafePlus.com.tr.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/CafePress.xml b/src/chrome/content/rules/CafePress.xml deleted file mode 100644 index cba8b17015ea..000000000000 --- a/src/chrome/content/rules/CafePress.xml +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Cafegate.com.xml b/src/chrome/content/rules/Cafegate.com.xml index d0eff2ad14d7..df5b22e5e30b 100644 --- a/src/chrome/content/rules/Cafegate.com.xml +++ b/src/chrome/content/rules/Cafegate.com.xml @@ -7,7 +7,7 @@ Fetch error: http://www.cafegate.com/ => https://www.cafegate.com/: (60, 'SSL ce Disabled by https-everywhere-checker because: Fetch error: http://cafegate.com/ => https://cafegate.com/: (60, 'SSL certificate problem: certificate has expired') --> - + @@ -18,4 +18,4 @@ Fetch error: http://cafegate.com/ => https://cafegate.com/: (60, 'SSL certificat - \ No newline at end of file + diff --git a/src/chrome/content/rules/Cafemakers.xml b/src/chrome/content/rules/Cafemakers.xml index ebb06d7fdb05..ae4ed89828bf 100644 --- a/src/chrome/content/rules/Cafemakers.xml +++ b/src/chrome/content/rules/Cafemakers.xml @@ -5,7 +5,7 @@ Fetch error: http://cafemakers.com/ => https://cafemakers.com/: (35, 'Unknown SS Fetch error: http://www.cafemakers.com/ => https://www.cafemakers.com/: (35, 'Unknown SSL protocol error in connection to www.cafemakers.com:443 ') --> - + @@ -16,4 +16,4 @@ Fetch error: http://www.cafemakers.com/ => https://www.cafemakers.com/: (35, 'Un - \ No newline at end of file + diff --git a/src/chrome/content/rules/Caimao.com.xml b/src/chrome/content/rules/Caimao.com.xml deleted file mode 100644 index c79291b8fa5c..000000000000 --- a/src/chrome/content/rules/Caimao.com.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/CainTV.xml b/src/chrome/content/rules/CainTV.xml index a8c28df84f12..420ca8d1752a 100644 --- a/src/chrome/content/rules/CainTV.xml +++ b/src/chrome/content/rules/CainTV.xml @@ -13,4 +13,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/CakeCentral.com.xml b/src/chrome/content/rules/CakeCentral.com.xml new file mode 100644 index 000000000000..13d68acf6388 --- /dev/null +++ b/src/chrome/content/rules/CakeCentral.com.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Cake_Central.com.xml b/src/chrome/content/rules/Cake_Central.com.xml deleted file mode 100644 index ef5a9e1251dc..000000000000 --- a/src/chrome/content/rules/Cake_Central.com.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Caktus_Group.com.xml b/src/chrome/content/rules/Caktus_Group.com.xml index fad2603225d6..76abf33a63c0 100644 --- a/src/chrome/content/rules/Caktus_Group.com.xml +++ b/src/chrome/content/rules/Caktus_Group.com.xml @@ -4,7 +4,7 @@ - + - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/CalChamber.com.xml b/src/chrome/content/rules/CalChamber.com.xml index be14a5fa7b1b..aea463025197 100644 --- a/src/chrome/content/rules/CalChamber.com.xml +++ b/src/chrome/content/rules/CalChamber.com.xml @@ -3,14 +3,14 @@ email.calchamber.com links.email.calchamber.com www.store.calchamber.com - + No working URL known: images.calchamber.com - + Time out: chat.calchamber.com - ---> + +--> diff --git a/src/chrome/content/rules/Cal_Poly.edu-falsemixed.xml b/src/chrome/content/rules/Cal_Poly.edu-falsemixed.xml index 4453caf5bb08..511278acf4d3 100644 --- a/src/chrome/content/rules/Cal_Poly.edu-falsemixed.xml +++ b/src/chrome/content/rules/Cal_Poly.edu-falsemixed.xml @@ -8,7 +8,7 @@ - + - + https://sso.calacademy.org/: (35, 'Un s: self-signed certificate t: timeout on https --> - + diff --git a/src/chrome/content/rules/Calazan.com.xml b/src/chrome/content/rules/Calazan.com.xml index 17a00c8fedaa..0c2585fb10da 100644 --- a/src/chrome/content/rules/Calazan.com.xml +++ b/src/chrome/content/rules/Calazan.com.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://calazan.com/ => https://calazan.com/: (51, "SSL: no alternative certificate subject name matches target host name 'calazan.com'") --> - + diff --git a/src/chrome/content/rules/Calculator.net.xml b/src/chrome/content/rules/Calculator.net.xml new file mode 100644 index 000000000000..6373c35dca79 --- /dev/null +++ b/src/chrome/content/rules/Calculator.net.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Calderdale.gov.uk-falsemixed.xml b/src/chrome/content/rules/Calderdale.gov.uk-falsemixed.xml index b0e3b5046055..67b5f6dff545 100644 --- a/src/chrome/content/rules/Calderdale.gov.uk-falsemixed.xml +++ b/src/chrome/content/rules/Calderdale.gov.uk-falsemixed.xml @@ -8,7 +8,7 @@ - + - + + + + + + + + + diff --git a/src/chrome/content/rules/CalendarWiz.xml b/src/chrome/content/rules/CalendarWiz.xml index a911e87d6624..a863151c8331 100644 --- a/src/chrome/content/rules/CalendarWiz.xml +++ b/src/chrome/content/rules/CalendarWiz.xml @@ -2,9 +2,8 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Calendario.cc.xml b/src/chrome/content/rules/Calendario.cc.xml deleted file mode 100644 index ffa86965fc4f..000000000000 --- a/src/chrome/content/rules/Calendario.cc.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Calendars.com.xml b/src/chrome/content/rules/Calendars.com.xml index 25b5b73a0e89..28b9474c9bdc 100644 --- a/src/chrome/content/rules/Calendars.com.xml +++ b/src/chrome/content/rules/Calendars.com.xml @@ -7,12 +7,12 @@ - + - + @@ -20,9 +20,9 @@ - - - + + + @@ -33,5 +33,5 @@ - + diff --git a/src/chrome/content/rules/Calguns_Foundation.org.xml b/src/chrome/content/rules/Calguns_Foundation.org.xml index 26ee7e4a81ea..2fcda55bc3ec 100644 --- a/src/chrome/content/rules/Calguns_Foundation.org.xml +++ b/src/chrome/content/rules/Calguns_Foundation.org.xml @@ -5,7 +5,7 @@ Fetch error: http://calgunsfoundation.org/ => https://calgunsfoundation.org/: (6 Fetch error: http://store.calgunsfoundation.org/ => https://store.calgunsfoundation.org/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + @@ -17,4 +17,4 @@ Fetch error: http://store.calgunsfoundation.org/ => https://store.calgunsfoundat - \ No newline at end of file + diff --git a/src/chrome/content/rules/California-Department-of-Motor-Vehicles.xml b/src/chrome/content/rules/California-Department-of-Motor-Vehicles.xml deleted file mode 100644 index c9f9c0da4f47..000000000000 --- a/src/chrome/content/rules/California-Department-of-Motor-Vehicles.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/California-Franchise-Tax-Board.xml b/src/chrome/content/rules/California-Franchise-Tax-Board.xml index cbbe038489e0..e17144319e7a 100644 --- a/src/chrome/content/rules/California-Franchise-Tax-Board.xml +++ b/src/chrome/content/rules/California-Franchise-Tax-Board.xml @@ -4,14 +4,10 @@ - + - - - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/California-STD-HIV-Training.xml b/src/chrome/content/rules/California-STD-HIV-Training.xml deleted file mode 100644 index eebf6e6b1bd1..000000000000 --- a/src/chrome/content/rules/California-STD-HIV-Training.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/California-State-University.xml b/src/chrome/content/rules/California-State-University.xml index fe3bbfde4e2d..d9cae69d594b 100644 --- a/src/chrome/content/rules/California-State-University.xml +++ b/src/chrome/content/rules/California-State-University.xml @@ -1,12 +1,48 @@ - + - + Mixed content blocking (MCB) triggered: + - careers.csulb.edu + - web.csulb.edu +--> + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/California_Department_of_Justice.xml b/src/chrome/content/rules/California_Department_of_Justice.xml index 5dc44a05718f..60f23583efa4 100644 --- a/src/chrome/content/rules/California_Department_of_Justice.xml +++ b/src/chrome/content/rules/California_Department_of_Justice.xml @@ -6,4 +6,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/California_Legislative_Information.xml b/src/chrome/content/rules/California_Legislative_Information.xml index e24363761eff..09ec42093e5c 100644 --- a/src/chrome/content/rules/California_Legislative_Information.xml +++ b/src/chrome/content/rules/California_Legislative_Information.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/California_Polytechnic_State_University.xml b/src/chrome/content/rules/California_Polytechnic_State_University.xml index 9035936dac43..54616006acaa 100644 --- a/src/chrome/content/rules/California_Polytechnic_State_University.xml +++ b/src/chrome/content/rules/California_Polytechnic_State_University.xml @@ -120,7 +120,7 @@ Fetch error: http://xerxes.calpoly.edu/ => https://xerxes.calpoly.edu/: (6, 'Cou - servicedesk from www.calpoly.edu --> - + @@ -154,7 +154,7 @@ Fetch error: http://xerxes.calpoly.edu/ => https://xerxes.calpoly.edu/: (6, 'Cou - + - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/California_United_Bank.xml b/src/chrome/content/rules/California_United_Bank.xml index 25ff0c61ea75..63903a6a3793 100644 --- a/src/chrome/content/rules/California_United_Bank.xml +++ b/src/chrome/content/rules/California_United_Bank.xml @@ -8,26 +8,25 @@ Disabled by https-everywhere-checker because: Fetch error: http://pcboc.com/ => https://pcboc.com/: (51, "SSL: no alternative certificate subject name matches target host name 'pcboc.com'") Problematic domains: - - www.pcboc.com (mismatched, CN: + - www.pcboc.com (mismatched, CN: --> - + - + - + - + - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Caller.com.xml b/src/chrome/content/rules/Caller.com.xml index 7ca1cd5dbce7..b59a805c8d41 100644 --- a/src/chrome/content/rules/Caller.com.xml +++ b/src/chrome/content/rules/Caller.com.xml @@ -51,8 +51,6 @@ - - diff --git a/src/chrome/content/rules/CallingChristians.com.xml b/src/chrome/content/rules/CallingChristians.com.xml new file mode 100644 index 000000000000..d8f42921ddef --- /dev/null +++ b/src/chrome/content/rules/CallingChristians.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Caltech-mismatches.xml b/src/chrome/content/rules/Caltech-mismatches.xml index 4b3e7244fa6d..3807b3d64bba 100644 --- a/src/chrome/content/rules/Caltech-mismatches.xml +++ b/src/chrome/content/rules/Caltech-mismatches.xml @@ -9,7 +9,7 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Caltech.xml b/src/chrome/content/rules/Caltech.xml deleted file mode 100644 index 07b90569acbd..000000000000 --- a/src/chrome/content/rules/Caltech.xml +++ /dev/null @@ -1,192 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Calvin_College.xml b/src/chrome/content/rules/Calvin_College.xml index da67ee9ebd29..fdd09c10c424 100644 --- a/src/chrome/content/rules/Calvin_College.xml +++ b/src/chrome/content/rules/Calvin_College.xml @@ -8,4 +8,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Calyx-Institute.xml b/src/chrome/content/rules/Calyx-Institute.xml deleted file mode 100644 index f53ae738042a..000000000000 --- a/src/chrome/content/rules/Calyx-Institute.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/CalyxInstitute.xml b/src/chrome/content/rules/CalyxInstitute.xml new file mode 100644 index 000000000000..4f54c3e3e356 --- /dev/null +++ b/src/chrome/content/rules/CalyxInstitute.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Cam.ac.uk-falsemixed.xml b/src/chrome/content/rules/Cam.ac.uk-falsemixed.xml deleted file mode 100644 index cba1418ab221..000000000000 --- a/src/chrome/content/rules/Cam.ac.uk-falsemixed.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Cam.ac.uk-problematic.xml b/src/chrome/content/rules/Cam.ac.uk-problematic.xml deleted file mode 100644 index e9b7d5f6ad1d..000000000000 --- a/src/chrome/content/rules/Cam.ac.uk-problematic.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Cambey-and-West.xml b/src/chrome/content/rules/Cambey-and-West.xml index c2667b1a4904..006b77ad87ae 100644 --- a/src/chrome/content/rules/Cambey-and-West.xml +++ b/src/chrome/content/rules/Cambey-and-West.xml @@ -42,7 +42,7 @@ --> - + - - - - - - - - - diff --git a/src/chrome/content/rules/Cambridge-University-Press.xml b/src/chrome/content/rules/Cambridge-University-Press.xml index eae095ac9285..637e28ef76d3 100644 --- a/src/chrome/content/rules/Cambridge-University-Press.xml +++ b/src/chrome/content/rules/Cambridge-University-Press.xml @@ -1,101 +1,33 @@ - - + - - - - - - - - - - - - - - + + + + + + + + + + - - - + diff --git a/src/chrome/content/rules/Cambridgeincolour.com.xml b/src/chrome/content/rules/Cambridgeincolour.com.xml new file mode 100644 index 000000000000..046ce63bc2f5 --- /dev/null +++ b/src/chrome/content/rules/Cambridgeincolour.com.xml @@ -0,0 +1,10 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Camden.gov.uk-falsemixed.xml b/src/chrome/content/rules/Camden.gov.uk-falsemixed.xml index f2804bf9ee28..e4f55c3ad54b 100644 --- a/src/chrome/content/rules/Camden.gov.uk-falsemixed.xml +++ b/src/chrome/content/rules/Camden.gov.uk-falsemixed.xml @@ -12,7 +12,7 @@ - + - + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/CamelHost.net.xml b/src/chrome/content/rules/CamelHost.net.xml index 835615e1cf68..c655cd9b774d 100644 --- a/src/chrome/content/rules/CamelHost.net.xml +++ b/src/chrome/content/rules/CamelHost.net.xml @@ -8,12 +8,11 @@ Fetch error: http://billing.camelhost.net/ => https://billing.camelhost.net/: (5 - (www.) (refused) --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Camelcamelcamel.xml b/src/chrome/content/rules/Camelcamelcamel.xml deleted file mode 100644 index 69bbba9b00eb..000000000000 --- a/src/chrome/content/rules/Camelcamelcamel.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Cameralabs.com.xml b/src/chrome/content/rules/Cameralabs.com.xml new file mode 100644 index 000000000000..597c575edd38 --- /dev/null +++ b/src/chrome/content/rules/Cameralabs.com.xml @@ -0,0 +1,9 @@ + + + + + + + diff --git a/src/chrome/content/rules/Camp_Staff_USA.xml b/src/chrome/content/rules/Camp_Staff_USA.xml index 58392ac2babf..e86851af9fea 100644 --- a/src/chrome/content/rules/Camp_Staff_USA.xml +++ b/src/chrome/content/rules/Camp_Staff_USA.xml @@ -7,9 +7,9 @@ - + - + @@ -19,7 +19,6 @@ - + diff --git a/src/chrome/content/rules/CampaignEQ.com.xml b/src/chrome/content/rules/CampaignEQ.com.xml deleted file mode 100644 index a6fdfb15b0f4..000000000000 --- a/src/chrome/content/rules/CampaignEQ.com.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Campaigner.xml b/src/chrome/content/rules/Campaigner.xml index a6cfc41a74e1..2899ee446ba0 100644 --- a/src/chrome/content/rules/Campaigner.xml +++ b/src/chrome/content/rules/Campaigner.xml @@ -41,7 +41,9 @@ - + + + @@ -50,7 +52,6 @@ - + diff --git a/src/chrome/content/rules/CampaignerCRM.com.xml b/src/chrome/content/rules/CampaignerCRM.com.xml index 920542eaf2d8..24b78e0b5d0a 100644 --- a/src/chrome/content/rules/CampaignerCRM.com.xml +++ b/src/chrome/content/rules/CampaignerCRM.com.xml @@ -31,10 +31,12 @@ Fetch error: http://campaignercrm.com/ => https://www.campaignercrm.com/: (60, ' ² Unsecurable --> - + - + + + @@ -43,7 +45,6 @@ Fetch error: http://campaignercrm.com/ => https://www.campaignercrm.com/: (60, ' - + diff --git a/src/chrome/content/rules/Campina-mismatches.xml b/src/chrome/content/rules/Campina-mismatches.xml index 616e5f1b72f5..48eaa930527a 100644 --- a/src/chrome/content/rules/Campina-mismatches.xml +++ b/src/chrome/content/rules/Campina-mismatches.xml @@ -32,8 +32,8 @@ - - - + + + diff --git a/src/chrome/content/rules/Campina.xml b/src/chrome/content/rules/Campina.xml index 51da9217c54a..f1f229669bdd 100644 --- a/src/chrome/content/rules/Campina.xml +++ b/src/chrome/content/rules/Campina.xml @@ -33,7 +33,7 @@ Fetch error: http://www.mycampina.com/ => https://www.mycampina.com/: (51, "SSL: * Handshake fails --> - + @@ -70,10 +70,10 @@ Fetch error: http://www.mycampina.com/ => https://www.mycampina.com/: (51, "SSL: - - - - - + + + + + diff --git a/src/chrome/content/rules/Campus_Pack.xml b/src/chrome/content/rules/Campus_Pack.xml index 207b23f70297..05b1d545cd96 100644 --- a/src/chrome/content/rules/Campus_Pack.xml +++ b/src/chrome/content/rules/Campus_Pack.xml @@ -16,7 +16,7 @@ Fetch error: http://campuspack.eu/ => https://campuspack.eu/: (51, "SSL: no alte - .+.campuspack.net (at least some pages redirect to http) --> - + @@ -37,4 +37,4 @@ Fetch error: http://campuspack.eu/ => https://campuspack.eu/: (51, "SSL: no alte - \ No newline at end of file + diff --git a/src/chrome/content/rules/Campuslabs.com.xml b/src/chrome/content/rules/Campuslabs.com.xml index 5ac2dbd0b214..91a70a85f7d5 100644 --- a/src/chrome/content/rules/Campuslabs.com.xml +++ b/src/chrome/content/rules/Campuslabs.com.xml @@ -35,7 +35,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/CanSecWest.xml b/src/chrome/content/rules/CanSecWest.xml index f1b1706543e8..13c4f4745860 100644 --- a/src/chrome/content/rules/CanSecWest.xml +++ b/src/chrome/content/rules/CanSecWest.xml @@ -1,10 +1,10 @@ - + - + - + diff --git a/src/chrome/content/rules/Canadian_Broadcasting_Corporation-mixedcontent.xml b/src/chrome/content/rules/Canadian_Broadcasting_Corporation-mixedcontent.xml deleted file mode 100644 index 1b85400c759e..000000000000 --- a/src/chrome/content/rules/Canadian_Broadcasting_Corporation-mixedcontent.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Canadian_Broadcasting_Corporation.xml b/src/chrome/content/rules/Canadian_Broadcasting_Corporation.xml deleted file mode 100644 index e089094f43d1..000000000000 --- a/src/chrome/content/rules/Canadian_Broadcasting_Corporation.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Canadian_Institute_of_Chartered_Accountants.xml b/src/chrome/content/rules/Canadian_Institute_of_Chartered_Accountants.xml index d04f5024007d..9dd977225e8c 100644 --- a/src/chrome/content/rules/Canadian_Institute_of_Chartered_Accountants.xml +++ b/src/chrome/content/rules/Canadian_Institute_of_Chartered_Accountants.xml @@ -10,7 +10,7 @@ Fetch error: http://secure.cica.ca/ => https://secure.cica.ca/: (60, 'SSL certif - (www.) (redirects to secure; mismatched, CN: secure.cica.ca) --> - + @@ -18,7 +18,6 @@ Fetch error: http://secure.cica.ca/ => https://secure.cica.ca/: (60, 'SSL certif - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Canadian_Light_Source.xml b/src/chrome/content/rules/Canadian_Light_Source.xml index fb85fe56c2c0..650dff77035f 100644 --- a/src/chrome/content/rules/Canadian_Light_Source.xml +++ b/src/chrome/content/rules/Canadian_Light_Source.xml @@ -14,4 +14,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Canadian_Security_Intelligence_Service.xml b/src/chrome/content/rules/Canadian_Security_Intelligence_Service.xml deleted file mode 100644 index 2b8cffea0bbd..000000000000 --- a/src/chrome/content/rules/Canadian_Security_Intelligence_Service.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/CanalDigital.xml b/src/chrome/content/rules/CanalDigital.xml index a09e6b8b2e6c..7fa0d78c8b8f 100644 --- a/src/chrome/content/rules/CanalDigital.xml +++ b/src/chrome/content/rules/CanalDigital.xml @@ -11,7 +11,7 @@ Fetch error: http://foreninger.canaldigital.dk/ => https://foreninger.canaldigit Fetch error: http://iptv.canaldigital.dk/ => https://iptv.canaldigital.dk/: (60, 'SSL certificate problem: unable to get local issuer certificate') Fetch error: http://kabel.canaldigital.se/ => https://kabel.canaldigital.se/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/Canary_Watch.org.xml b/src/chrome/content/rules/Canary_Watch.org.xml index 7789f51c6c94..562d2e4eabcb 100644 --- a/src/chrome/content/rules/Canary_Watch.org.xml +++ b/src/chrome/content/rules/Canary_Watch.org.xml @@ -5,7 +5,7 @@ Fetch error: http://canarywatch.org/ => https://canarywatch.org/: (7, 'Failed to Fetch error: http://www.canarywatch.org/ => https://www.canarywatch.org/: (7, 'Failed to connect to www.canarywatch.org port 443: No route to host') --> - + diff --git a/src/chrome/content/rules/Cancer.gov.xml b/src/chrome/content/rules/Cancer.gov.xml index 964bf9b18892..08370dd7cdd8 100644 --- a/src/chrome/content/rules/Cancer.gov.xml +++ b/src/chrome/content/rules/Cancer.gov.xml @@ -189,7 +189,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/CannabisLegality.com.xml b/src/chrome/content/rules/CannabisLegality.com.xml new file mode 100644 index 000000000000..7f75ebd820e3 --- /dev/null +++ b/src/chrome/content/rules/CannabisLegality.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Canon.xml b/src/chrome/content/rules/Canon.xml index 36c4684e6e0a..7cf9bd9a03a3 100644 --- a/src/chrome/content/rules/Canon.xml +++ b/src/chrome/content/rules/Canon.xml @@ -4,11 +4,6 @@ Disabled by https-everywhere-checker because: Fetch error: http://forums.usa.canon.com/ => https://forums.usa.canon.com/: (51, "SSL: no alternative certificate subject name matches target host name 'forums.usa.canon.com'") Fetch error: http://newsletter.canon-europe.com/ => https://newsletter.canon-europe.com/: (28, 'Operation timed out after 30001 milliseconds with 0 bytes received') - Other Canon rulesets: - - - Canon.com.au.xml - - ^canon.com: Dropped www.canon.com: 504 @@ -38,7 +33,7 @@ Fetch error: http://newsletter.canon-europe.com/ => https://newsletter.canon-eur ˢ Secured by us --> - + @@ -151,7 +146,7 @@ Fetch error: http://newsletter.canon-europe.com/ => https://newsletter.canon-eur - + https://forms.canonical.com/: (60, 'SSL certificate problem: unable to get local issuer certificate') Other Canonical rulesets: - Launchpad.xml - Nonfunctional subdomains: - - - (www.) * - - bazaar ² - - doc.bazaar ³ - - wiki.bazaar ² - - design ² - - partners * - - people * - - zinc * - - * Dropped - ² Redirects to http - ³ Shows bazaar - - - Fully covered subdomains: - - - blog.bazaar - - certification - - forms - - irclogs - - landscape - - shop - - support - - - These altnames don't exist: - - - www.certification.canonical.com - - www.forms.canonical.com - - www.shop.canonical.com + Secure Connection Failed: + canonical.com + Invalid Certificate: + doc.bazaar.canonical.com + wiki.bazaar.canonical.com + Timeout: + partners.canonical.com --> - - - + + + + + - + + - - - - - - - - + + - + + diff --git a/src/chrome/content/rules/Canonwatch.com.xml b/src/chrome/content/rules/Canonwatch.com.xml new file mode 100644 index 000000000000..a37b52e397bc --- /dev/null +++ b/src/chrome/content/rules/Canonwatch.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Canterbury.gov.uk.xml b/src/chrome/content/rules/Canterbury.gov.uk.xml index 950c5409414f..7b5f9db3d8c2 100644 --- a/src/chrome/content/rules/Canterbury.gov.uk.xml +++ b/src/chrome/content/rules/Canterbury.gov.uk.xml @@ -64,8 +64,8 @@ - - + + - + + + + + + + + + diff --git a/src/chrome/content/rules/Canvas_LMS.com.xml b/src/chrome/content/rules/Canvas_LMS.com.xml index ad909bca9af1..c8d162d4c0d3 100644 --- a/src/chrome/content/rules/Canvas_LMS.com.xml +++ b/src/chrome/content/rules/Canvas_LMS.com.xml @@ -19,7 +19,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Capetown.gov.za.xml b/src/chrome/content/rules/Capetown.gov.za.xml new file mode 100644 index 000000000000..b79cd1cbb2f2 --- /dev/null +++ b/src/chrome/content/rules/Capetown.gov.za.xml @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/CapitalOne360.com.xml b/src/chrome/content/rules/CapitalOne360.com.xml index bee572a96bbb..9fd4cbc15b59 100644 --- a/src/chrome/content/rules/CapitalOne360.com.xml +++ b/src/chrome/content/rules/CapitalOne360.com.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://secure.capitalone360.com/ => https://secure.capitalone360.com/: (28, 'Operation timed out after 30000 milliseconds with 0 bytes received') --> - + diff --git a/src/chrome/content/rules/Capitol_Machine.com.xml b/src/chrome/content/rules/Capitol_Machine.com.xml deleted file mode 100644 index e312eb149b4e..000000000000 --- a/src/chrome/content/rules/Capitol_Machine.com.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Capstone-engine.org.xml b/src/chrome/content/rules/Capstone-engine.org.xml new file mode 100644 index 000000000000..69ac41f1dbfe --- /dev/null +++ b/src/chrome/content/rules/Capstone-engine.org.xml @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Captura-Group.xml b/src/chrome/content/rules/Captura-Group.xml deleted file mode 100644 index abeb02c85eb5..000000000000 --- a/src/chrome/content/rules/Captura-Group.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/CarAdvice.xml b/src/chrome/content/rules/CarAdvice.xml index 42c79355f125..f893658e96b6 100644 --- a/src/chrome/content/rules/CarAdvice.xml +++ b/src/chrome/content/rules/CarAdvice.xml @@ -6,10 +6,11 @@ Fetch error: http://caradvice.com.au/ => https://caradvice.com.au/: (7, 'Failed Automatically by https-everywhere-checker because: Fetch error: http://caradvice.com.au/ => https://caradvice.com.au/: (7, 'Failed to connect to caradvice.com.au port 443: Connection refused') --> - + - + + + + + + + diff --git a/src/chrome/content/rules/CarProMods.com.xml b/src/chrome/content/rules/CarProMods.com.xml index 9906e8c4bf1c..6016cab7f512 100644 --- a/src/chrome/content/rules/CarProMods.com.xml +++ b/src/chrome/content/rules/CarProMods.com.xml @@ -1,7 +1,7 @@ - + diff --git a/src/chrome/content/rules/CaravanOfHope.lgbt.xml b/src/chrome/content/rules/CaravanOfHope.lgbt.xml new file mode 100644 index 000000000000..72c191237181 --- /dev/null +++ b/src/chrome/content/rules/CaravanOfHope.lgbt.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Carbonfund.org.xml b/src/chrome/content/rules/Carbonfund.org.xml index 25bc3276f739..85d7b4bdba7d 100644 --- a/src/chrome/content/rules/Carbonfund.org.xml +++ b/src/chrome/content/rules/Carbonfund.org.xml @@ -21,4 +21,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Carbonwind.net.xml b/src/chrome/content/rules/Carbonwind.net.xml index 38e384f11430..c0d41222458a 100644 --- a/src/chrome/content/rules/Carbonwind.net.xml +++ b/src/chrome/content/rules/Carbonwind.net.xml @@ -5,7 +5,7 @@ Fetch error: http://carbonwind.net/ => https://carbonwind.net/: (35, 'Unknown SS Fetch error: http://www.carbonwind.net/ => https://www.carbonwind.net/: (35, 'Unknown SSL protocol error in connection to www.carbonwind.net:443 ') --> - + diff --git a/src/chrome/content/rules/Cardiff-University.xml b/src/chrome/content/rules/Cardiff-University.xml index 42d5e20e3cf5..78786cc9bcdb 100644 --- a/src/chrome/content/rules/Cardiff-University.xml +++ b/src/chrome/content/rules/Cardiff-University.xml @@ -1,4 +1,7 @@ - - - - - - @@ -66,15 +66,12 @@ - - - - diff --git a/src/chrome/content/rules/CardsAgainstHumanityStopsTheWall.com.xml b/src/chrome/content/rules/CardsAgainstHumanityStopsTheWall.com.xml new file mode 100644 index 000000000000..1e41423cb26b --- /dev/null +++ b/src/chrome/content/rules/CardsAgainstHumanityStopsTheWall.com.xml @@ -0,0 +1,11 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Cards_Against_Humanity.com.xml b/src/chrome/content/rules/Cards_Against_Humanity.com.xml index 08cd6d33544a..cc1bc2427553 100644 --- a/src/chrome/content/rules/Cards_Against_Humanity.com.xml +++ b/src/chrome/content/rules/Cards_Against_Humanity.com.xml @@ -1,6 +1,7 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Care-Net.xml b/src/chrome/content/rules/Care-Net.xml deleted file mode 100644 index 3e8228907d64..000000000000 --- a/src/chrome/content/rules/Care-Net.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Care2.com.xml b/src/chrome/content/rules/Care2.com.xml index bf6849529d69..c68a5ceb2fa3 100644 --- a/src/chrome/content/rules/Care2.com.xml +++ b/src/chrome/content/rules/Care2.com.xml @@ -29,7 +29,7 @@ Fetch error: http://care2.com/ => https://www.care2.com/: (60, 'SSL certificate - volunteer (→ www) --> - + @@ -56,4 +56,4 @@ Fetch error: http://care2.com/ => https://www.care2.com/: (60, 'SSL certificate - \ No newline at end of file + diff --git a/src/chrome/content/rules/Carecareers.com.au.xml b/src/chrome/content/rules/Carecareers.com.au.xml index efc7c36a24e3..bc57cd794bb6 100644 --- a/src/chrome/content/rules/Carecareers.com.au.xml +++ b/src/chrome/content/rules/Carecareers.com.au.xml @@ -20,7 +20,7 @@ Fetch error: http://jobs.carecareers.com.au/ => https://jobs.carecareers.com.au/ * Secured by us, doesn't trip MCB anyway --> - + @@ -28,7 +28,6 @@ Fetch error: http://jobs.carecareers.com.au/ => https://jobs.carecareers.com.au/ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/CareerBuilder.xml b/src/chrome/content/rules/CareerBuilder.xml index e9dbcbeeb4d5..8aa677162c9b 100644 --- a/src/chrome/content/rules/CareerBuilder.xml +++ b/src/chrome/content/rules/CareerBuilder.xml @@ -54,7 +54,7 @@ Fetch error: http://aol.careerbuilder.com/ => https://aol.careerbuilder.com/: (6 - Bug on www from centro.pixel.ad --> - + @@ -97,7 +97,7 @@ Fetch error: http://aol.careerbuilder.com/ => https://aol.careerbuilder.com/: (6 - + - + diff --git a/src/chrome/content/rules/CareerPerfect.xml b/src/chrome/content/rules/CareerPerfect.xml deleted file mode 100644 index ae06607e0b18..000000000000 --- a/src/chrome/content/rules/CareerPerfect.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Careers.fi.xml b/src/chrome/content/rules/Careers.fi.xml deleted file mode 100644 index 5f1dff7bcac5..000000000000 --- a/src/chrome/content/rules/Careers.fi.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Carestream.com.xml b/src/chrome/content/rules/Carestream.com.xml index 2155834e5407..85a0bbd6ed67 100644 --- a/src/chrome/content/rules/Carestream.com.xml +++ b/src/chrome/content/rules/Carestream.com.xml @@ -10,7 +10,7 @@ - + @@ -19,4 +19,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Cargo.xml b/src/chrome/content/rules/Cargo.xml index b500c0d27f62..1997c05ab3a9 100644 --- a/src/chrome/content/rules/Cargo.xml +++ b/src/chrome/content/rules/Cargo.xml @@ -140,7 +140,39 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Carl_Zeiss.xml b/src/chrome/content/rules/Carl_Zeiss.xml index 9b31d9a9dc68..53c6fba3ef6a 100644 --- a/src/chrome/content/rules/Carl_Zeiss.xml +++ b/src/chrome/content/rules/Carl_Zeiss.xml @@ -24,7 +24,7 @@ - + - + + + + + + + + + + + + + + + + + + + + + + + @@ -108,7 +130,6 @@ - + diff --git a/src/chrome/content/rules/Carleton_College.xml b/src/chrome/content/rules/Carleton_College.xml index 67977b5a3623..924b38a8018c 100644 --- a/src/chrome/content/rules/Carleton_College.xml +++ b/src/chrome/content/rules/Carleton_College.xml @@ -7,7 +7,9 @@ - + + + @@ -16,7 +18,6 @@ - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Carlosprioglio.com.xml b/src/chrome/content/rules/Carlosprioglio.com.xml index 7657cb54dc03..adfca5c11602 100644 --- a/src/chrome/content/rules/Carlosprioglio.com.xml +++ b/src/chrome/content/rules/Carlosprioglio.com.xml @@ -4,7 +4,7 @@ - + https://vpn.carnegiescience.edu/ * Secured by us --> - + diff --git a/src/chrome/content/rules/Carnegie-Mellon-University-mismatches.xml b/src/chrome/content/rules/Carnegie-Mellon-University-mismatches.xml index f33655eecc52..bdc54a24d98f 100644 --- a/src/chrome/content/rules/Carnegie-Mellon-University-mismatches.xml +++ b/src/chrome/content/rules/Carnegie-Mellon-University-mismatches.xml @@ -14,7 +14,6 @@ repository cookie is handled in Carnegie-Mellon-University.xml. --> - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Carnegie-Mellon-University.xml b/src/chrome/content/rules/Carnegie-Mellon-University.xml index 3d4545a04088..a70643b2d189 100644 --- a/src/chrome/content/rules/Carnegie-Mellon-University.xml +++ b/src/chrome/content/rules/Carnegie-Mellon-University.xml @@ -126,20 +126,113 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - @@ -151,4 +244,5 @@ from="^http://(www\.)?((?:directory\.|webiso\.)?andrew|cylab|ece|(?:sparrow|user + diff --git a/src/chrome/content/rules/Carphone_Warehouse.com.xml b/src/chrome/content/rules/Carphone_Warehouse.com.xml index e046ba1cfe40..0be0bb21a56d 100644 --- a/src/chrome/content/rules/Carphone_Warehouse.com.xml +++ b/src/chrome/content/rules/Carphone_Warehouse.com.xml @@ -1,12 +1,13 @@ - - - - - - - - - - - - - - - - - @@ -94,8 +72,8 @@ - - + + - + - + - - - - - - - diff --git a/src/chrome/content/rules/CarterCenter.org.xml b/src/chrome/content/rules/CarterCenter.org.xml index c84beb8da75a..8d5d6657114d 100644 --- a/src/chrome/content/rules/CarterCenter.org.xml +++ b/src/chrome/content/rules/CarterCenter.org.xml @@ -85,7 +85,7 @@ - + - + diff --git a/src/chrome/content/rules/Casale-Media.xml b/src/chrome/content/rules/Casale-Media.xml index 7a361f2bf5d3..32f885990cd7 100644 --- a/src/chrome/content/rules/Casale-Media.xml +++ b/src/chrome/content/rules/Casale-Media.xml @@ -1,55 +1,47 @@ - - + + + + + + + + + + + + + + - - - - - - - - - - + + - + diff --git a/src/chrome/content/rules/Casascius.xml b/src/chrome/content/rules/Casascius.xml deleted file mode 100644 index a02ed6b6a5f4..000000000000 --- a/src/chrome/content/rules/Casascius.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Case_Western_Reserve_University.xml b/src/chrome/content/rules/Case_Western_Reserve_University.xml deleted file mode 100644 index 0d3d60ba020e..000000000000 --- a/src/chrome/content/rules/Case_Western_Reserve_University.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Caseking.de.xml b/src/chrome/content/rules/Caseking.de.xml index 7495568232b5..88fe760cf301 100644 --- a/src/chrome/content/rules/Caseking.de.xml +++ b/src/chrome/content/rules/Caseking.de.xml @@ -5,7 +5,7 @@ - + diff --git a/src/chrome/content/rules/Cases_Ladder.xml b/src/chrome/content/rules/Cases_Ladder.xml index 883725e86383..4fa7f93ddd5a 100644 --- a/src/chrome/content/rules/Cases_Ladder.xml +++ b/src/chrome/content/rules/Cases_Ladder.xml @@ -13,4 +13,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/CashTravel.info.xml b/src/chrome/content/rules/CashTravel.info.xml new file mode 100644 index 000000000000..432779cf66bf --- /dev/null +++ b/src/chrome/content/rules/CashTravel.info.xml @@ -0,0 +1,18 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Cash_for_Contracts.xml b/src/chrome/content/rules/Cash_for_Contracts.xml index 1b8e1bf01fd8..aefab97d38e1 100644 --- a/src/chrome/content/rules/Cash_for_Contracts.xml +++ b/src/chrome/content/rules/Cash_for_Contracts.xml @@ -8,7 +8,8 @@ - + + diff --git a/src/chrome/content/rules/Cashback.co.uk.xml b/src/chrome/content/rules/Cashback.co.uk.xml index 0aabd51dfe57..6c4fbc2b4833 100644 --- a/src/chrome/content/rules/Cashback.co.uk.xml +++ b/src/chrome/content/rules/Cashback.co.uk.xml @@ -1,16 +1,12 @@ + + + - - - - - - - - - - + diff --git a/src/chrome/content/rules/CasinoAffiliatePrograms.xml b/src/chrome/content/rules/CasinoAffiliatePrograms.xml index e76f663e7e25..7685aa9f9e3f 100644 --- a/src/chrome/content/rules/CasinoAffiliatePrograms.xml +++ b/src/chrome/content/rules/CasinoAffiliatePrograms.xml @@ -8,12 +8,12 @@ Automatically by https-everywhere-checker because: Fetch error: http://casinoaffiliateprograms.com/ => https://casinoaffiliateprograms.com/: Cycle detected - URL already encountered: https://casinoaffiliateprograms.com/ Fetch error: http://www.casinoaffiliateprograms.com/ => https://casinoaffiliateprograms.com/: Cycle detected - URL already encountered: https://casinoaffiliateprograms.com/ --> - + - + diff --git a/src/chrome/content/rules/CasinoEstrella.com.xml b/src/chrome/content/rules/CasinoEstrella.com.xml index f9911a91d544..858d3a841ae1 100644 --- a/src/chrome/content/rules/CasinoEstrella.com.xml +++ b/src/chrome/content/rules/CasinoEstrella.com.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Casper.com.xml b/src/chrome/content/rules/Casper.com.xml index ad68fad5d5c0..d081330c1e3a 100644 --- a/src/chrome/content/rules/Casper.com.xml +++ b/src/chrome/content/rules/Casper.com.xml @@ -16,7 +16,7 @@ --> - + - - - - - - - - - - - - diff --git a/src/chrome/content/rules/CassinoEstrela.xml b/src/chrome/content/rules/CassinoEstrela.xml index ee99e200d6ed..afdbad983b50 100644 --- a/src/chrome/content/rules/CassinoEstrela.xml +++ b/src/chrome/content/rules/CassinoEstrela.xml @@ -7,7 +7,7 @@ Fetch error: http://www.cassinoestrela.com/ => https://www.cassinoestrela.com/: Disabled by https-everywhere-checker because: Fetch error: http://cassinoestrela.com/ => https://cassinoestrela.com/: (35, 'error:140770FC:SSL routines:SSL23_GET_SERVER_HELLO:unknown protocol') --> - + @@ -18,4 +18,4 @@ Fetch error: http://cassinoestrela.com/ => https://cassinoestrela.com/: (35, 'er - \ No newline at end of file + diff --git a/src/chrome/content/rules/Castel-Bayart.xml b/src/chrome/content/rules/Castel-Bayart.xml deleted file mode 100644 index 8cd61fe2f9cd..000000000000 --- a/src/chrome/content/rules/Castel-Bayart.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Casual-Effects.com.xml b/src/chrome/content/rules/Casual-Effects.com.xml new file mode 100644 index 000000000000..c9f2b035a045 --- /dev/null +++ b/src/chrome/content/rules/Casual-Effects.com.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/CatN.com.xml b/src/chrome/content/rules/CatN.com.xml index 39cf587c70fb..54a85c88e2f0 100644 --- a/src/chrome/content/rules/CatN.com.xml +++ b/src/chrome/content/rules/CatN.com.xml @@ -1,7 +1,7 @@ - + - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Catalyst-IT.xml b/src/chrome/content/rules/Catalyst-IT.xml index 578985958c27..01c53759f3b2 100644 --- a/src/chrome/content/rules/Catalyst-IT.xml +++ b/src/chrome/content/rules/Catalyst-IT.xml @@ -4,6 +4,6 @@ - + diff --git a/src/chrome/content/rules/Catalyst_Host.com.xml b/src/chrome/content/rules/Catalyst_Host.com.xml index 99551bd9d094..5a76d79a378e 100644 --- a/src/chrome/content/rules/Catalyst_Host.com.xml +++ b/src/chrome/content/rules/Catalyst_Host.com.xml @@ -14,7 +14,9 @@ - + + + diff --git a/src/chrome/content/rules/Catalyst_Technology_Group.xml b/src/chrome/content/rules/Catalyst_Technology_Group.xml index ec950db9e149..d1bea0b4d8c6 100644 --- a/src/chrome/content/rules/Catalyst_Technology_Group.xml +++ b/src/chrome/content/rules/Catalyst_Technology_Group.xml @@ -8,16 +8,16 @@ Fetch error: http://www.catalysttg.com/ => https://www.catalysttg.com/: (51, "SS Disabled by https-everywhere-checker because: Fetch error: http://catalysttg.com/ => https://catalysttg.com/: (51, "SSL: no alternative certificate subject name matches target host name 'catalysttg.com'") --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Catch.com.au.xml b/src/chrome/content/rules/Catch.com.au.xml new file mode 100644 index 000000000000..a34b3843c5bd --- /dev/null +++ b/src/chrome/content/rules/Catch.com.au.xml @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Catch22.net.xml b/src/chrome/content/rules/Catch22.net.xml new file mode 100644 index 000000000000..29e5ccea6334 --- /dev/null +++ b/src/chrome/content/rules/Catch22.net.xml @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/src/chrome/content/rules/CatchConnect.com.au.xml b/src/chrome/content/rules/CatchConnect.com.au.xml new file mode 100644 index 000000000000..4c8b8b187122 --- /dev/null +++ b/src/chrome/content/rules/CatchConnect.com.au.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Cateee.net.xml b/src/chrome/content/rules/Cateee.net.xml index 71d1099154b0..963b4b5a8b2c 100644 --- a/src/chrome/content/rules/Cateee.net.xml +++ b/src/chrome/content/rules/Cateee.net.xml @@ -4,7 +4,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/CathayPacific.com.xml b/src/chrome/content/rules/CathayPacific.com.xml new file mode 100644 index 000000000000..0762ffc1b1a0 --- /dev/null +++ b/src/chrome/content/rules/CathayPacific.com.xml @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/CathayPacificCargo.com.xml b/src/chrome/content/rules/CathayPacificCargo.com.xml new file mode 100644 index 000000000000..3e9c08096e34 --- /dev/null +++ b/src/chrome/content/rules/CathayPacificCargo.com.xml @@ -0,0 +1,15 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Cathay_Pacific.xml b/src/chrome/content/rules/Cathay_Pacific.xml deleted file mode 100644 index be39695ea7d2..000000000000 --- a/src/chrome/content/rules/Cathay_Pacific.xml +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Catlin_Sea_Survey.xml b/src/chrome/content/rules/Catlin_Sea_Survey.xml index eecf9642a37c..5d392a8d4dce 100644 --- a/src/chrome/content/rules/Catlin_Sea_Survey.xml +++ b/src/chrome/content/rules/Catlin_Sea_Survey.xml @@ -19,7 +19,7 @@ Fetch error: http://catlinseaviewsurvey.com/ => https://www.catlinseaviewsurvey. - www.catlinseaviewsurvey.com --> - + diff --git a/src/chrome/content/rules/Cato-Institute.xml b/src/chrome/content/rules/Cato-Institute.xml index 0838d714e730..24c6b1f09223 100644 --- a/src/chrome/content/rules/Cato-Institute.xml +++ b/src/chrome/content/rules/Cato-Institute.xml @@ -22,7 +22,7 @@ Fetch error: http://secure.cato.org/ => https://secure.cato.org/: (51, "SSL: no ^: cert only matches www --> - + @@ -48,7 +48,6 @@ Fetch error: http://secure.cato.org/ => https://secure.cato.org/: (51, "SSL: no - + diff --git a/src/chrome/content/rules/Catraca_Livre.com.br.xml b/src/chrome/content/rules/Catraca_Livre.com.br.xml index e096f0dbfb49..f692fb600504 100644 --- a/src/chrome/content/rules/Catraca_Livre.com.br.xml +++ b/src/chrome/content/rules/Catraca_Livre.com.br.xml @@ -15,7 +15,7 @@ Fetch error: http://fazedores.catracalivre.com.br/ => https://fazedores.catracal * Secured by us --> - + diff --git a/src/chrome/content/rules/Causes.xml b/src/chrome/content/rules/Causes.xml index 273cd0b36e82..9ed53543b730 100644 --- a/src/chrome/content/rules/Causes.xml +++ b/src/chrome/content/rules/Causes.xml @@ -6,14 +6,14 @@ Fetch error: http://causes.presscdn.com/ => https://exchange.causes.com/: (6, 'C Disabled by https-everywhere-checker because: Fetch error: http://causes.presscdn.com/ => https://exchange.causes.com/: (51, "SSL: no alternative certificate subject name matches target host name 'exchange.causes.com'") s3.amazonaws.com/causes-prod/ --> - + - + diff --git a/src/chrome/content/rules/Cavatoyota.com.xml b/src/chrome/content/rules/Cavatoyota.com.xml new file mode 100644 index 000000000000..65303591efdf --- /dev/null +++ b/src/chrome/content/rules/Cavatoyota.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Cavemancirus.com.xml b/src/chrome/content/rules/Cavemancirus.com.xml new file mode 100644 index 000000000000..8a6af8569d98 --- /dev/null +++ b/src/chrome/content/rules/Cavemancirus.com.xml @@ -0,0 +1,25 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Cavirtex.com.xml b/src/chrome/content/rules/Cavirtex.com.xml index 59227c99a9b8..25b679ad6263 100644 --- a/src/chrome/content/rules/Cavirtex.com.xml +++ b/src/chrome/content/rules/Cavirtex.com.xml @@ -12,7 +12,7 @@ Fetch error: http://www.cavirtex.com/ => https://www.cavirtex.com/: (7, 'Failed * Shows default page --> - + diff --git a/src/chrome/content/rules/Cchtml.com.xml b/src/chrome/content/rules/Cchtml.com.xml index 8a5d38b26b19..119823e4f1b6 100644 --- a/src/chrome/content/rules/Cchtml.com.xml +++ b/src/chrome/content/rules/Cchtml.com.xml @@ -1,10 +1,11 @@ - + + - + - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Cdn-net.com.xml b/src/chrome/content/rules/Cdn-net.com.xml index 8cfa9fe59370..f75b7ec5611b 100644 --- a/src/chrome/content/rules/Cdn-net.com.xml +++ b/src/chrome/content/rules/Cdn-net.com.xml @@ -5,8 +5,8 @@ - + - + diff --git a/src/chrome/content/rules/Cdnads.com.xml b/src/chrome/content/rules/Cdnads.com.xml index bcf699259b53..5a004c7d4ab2 100644 --- a/src/chrome/content/rules/Cdnads.com.xml +++ b/src/chrome/content/rules/Cdnads.com.xml @@ -8,18 +8,9 @@ --> - + - - - - - - diff --git a/src/chrome/content/rules/Cdncomputer.com.xml b/src/chrome/content/rules/Cdncomputer.com.xml index ffb526af422f..75e5869e2295 100644 --- a/src/chrome/content/rules/Cdncomputer.com.xml +++ b/src/chrome/content/rules/Cdncomputer.com.xml @@ -16,7 +16,7 @@ Fetch error: http://cdn.cdncomputer.com/ => https://d1eiwcwqdd4h4w.cloudfront.ne (www.) does not exist. --> - + @@ -24,4 +24,4 @@ Fetch error: http://cdn.cdncomputer.com/ => https://d1eiwcwqdd4h4w.cloudfront.ne - \ No newline at end of file + diff --git a/src/chrome/content/rules/Cdngeek.net.xml b/src/chrome/content/rules/Cdngeek.net.xml index ddcf8f21c9b1..34d173d6f8ac 100644 --- a/src/chrome/content/rules/Cdngeek.net.xml +++ b/src/chrome/content/rules/Cdngeek.net.xml @@ -7,7 +7,6 @@ - + diff --git a/src/chrome/content/rules/Ceddit.com.xml b/src/chrome/content/rules/Ceddit.com.xml new file mode 100644 index 000000000000..0cf9e7cfe1c4 --- /dev/null +++ b/src/chrome/content/rules/Ceddit.com.xml @@ -0,0 +1,12 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/CedricVillani.org.xml b/src/chrome/content/rules/CedricVillani.org.xml new file mode 100644 index 000000000000..d9918d4e32c7 --- /dev/null +++ b/src/chrome/content/rules/CedricVillani.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/CeeJay.net.xml b/src/chrome/content/rules/CeeJay.net.xml deleted file mode 100644 index 7505acbb4b22..000000000000 --- a/src/chrome/content/rules/CeeJay.net.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Cefas.co.uk.xml b/src/chrome/content/rules/Cefas.co.uk.xml index 70d7c679d4ab..6822a7247906 100644 --- a/src/chrome/content/rules/Cefas.co.uk.xml +++ b/src/chrome/content/rules/Cefas.co.uk.xml @@ -25,7 +25,7 @@ --> - + - - - - - diff --git a/src/chrome/content/rules/Celiac-Foundation.xml b/src/chrome/content/rules/Celiac-Foundation.xml deleted file mode 100644 index 4d4da07677fe..000000000000 --- a/src/chrome/content/rules/Celiac-Foundation.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Celiac.org.xml b/src/chrome/content/rules/Celiac.org.xml new file mode 100644 index 000000000000..851b8b9bd603 --- /dev/null +++ b/src/chrome/content/rules/Celiac.org.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Cellarmasters.com.au.xml b/src/chrome/content/rules/Cellarmasters.com.au.xml new file mode 100644 index 000000000000..cd90269b4660 --- /dev/null +++ b/src/chrome/content/rules/Cellarmasters.com.au.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Cendio.com.xml b/src/chrome/content/rules/Cendio.com.xml index b62b22a208db..94ff8e65c6e1 100644 --- a/src/chrome/content/rules/Cendio.com.xml +++ b/src/chrome/content/rules/Cendio.com.xml @@ -6,7 +6,7 @@ - + https://cengagebrain.co.uk/: Cycle de Fetch error: http://multivu.com/ => https://www.multivu.com/: Redirect for 'http://multivu.com/' missing Location !functional: - gdc.gale.com --> - + - + + - + - - + + + - + + - - - + + + diff --git a/src/chrome/content/rules/Censorship.govt.nz.xml b/src/chrome/content/rules/Censorship.govt.nz.xml index 77a97027aa05..3b11557e2d68 100644 --- a/src/chrome/content/rules/Censorship.govt.nz.xml +++ b/src/chrome/content/rules/Censorship.govt.nz.xml @@ -8,7 +8,7 @@ Automatically by https-everywhere-checker because: Fetch error: http://censorship.govt.nz/ => https://www.censorship.govt.nz/: (51, "SSL: no alternative certificate subject name matches target host name 'www.censorship.govt.nz'") Fetch error: http://www.censorship.govt.nz/ => https://www.censorship.govt.nz/: (51, "SSL: no alternative certificate subject name matches target host name 'www.censorship.govt.nz'") --> - + diff --git a/src/chrome/content/rules/Census.xml b/src/chrome/content/rules/Census.xml index 018a2c5c4157..f48fbe11c376 100644 --- a/src/chrome/content/rules/Census.xml +++ b/src/chrome/content/rules/Census.xml @@ -4,7 +4,7 @@ - + - + + + + + + + + + + - + + + + + + + + + + - - - - - - - - + - + diff --git a/src/chrome/content/rules/Center-for-Responsive-Politics.xml b/src/chrome/content/rules/Center-for-Responsive-Politics.xml deleted file mode 100644 index 78382a0a7f84..000000000000 --- a/src/chrome/content/rules/Center-for-Responsive-Politics.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Center_for_Early_Childhood_Professional_Development.xml b/src/chrome/content/rules/Center_for_Early_Childhood_Professional_Development.xml index 2a4efb74d37e..a424691ae4ba 100644 --- a/src/chrome/content/rules/Center_for_Early_Childhood_Professional_Development.xml +++ b/src/chrome/content/rules/Center_for_Early_Childhood_Professional_Development.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Center_for_Individual_Freedom.xml b/src/chrome/content/rules/Center_for_Individual_Freedom.xml index 7cda08fe7f73..c912574bb1f1 100644 --- a/src/chrome/content/rules/Center_for_Individual_Freedom.xml +++ b/src/chrome/content/rules/Center_for_Individual_Freedom.xml @@ -8,7 +8,7 @@ Non-2xx HTTP code: http://vs.cfif.org/ (200) => https://vs.cfif.org/ (403) - mailserver (data differs) --> - + @@ -20,4 +20,4 @@ Non-2xx HTTP code: http://vs.cfif.org/ (200) => https://vs.cfif.org/ (403) - \ No newline at end of file + diff --git a/src/chrome/content/rules/Center_for_Land_Use_Interpretation.xml b/src/chrome/content/rules/Center_for_Land_Use_Interpretation.xml index d93a8a199482..ab285a775a74 100644 --- a/src/chrome/content/rules/Center_for_Land_Use_Interpretation.xml +++ b/src/chrome/content/rules/Center_for_Land_Use_Interpretation.xml @@ -5,7 +5,7 @@ - + @@ -14,4 +14,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/CentraFoods.com.xml b/src/chrome/content/rules/CentraFoods.com.xml new file mode 100644 index 000000000000..b40cdb53a325 --- /dev/null +++ b/src/chrome/content/rules/CentraFoods.com.xml @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Centralfield.com.xml b/src/chrome/content/rules/Centralfield.com.xml index b846f1e71331..8d64ca6cf514 100644 --- a/src/chrome/content/rules/Centralfield.com.xml +++ b/src/chrome/content/rules/Centralfield.com.xml @@ -1,21 +1,22 @@ - - + - + + diff --git a/src/chrome/content/rules/Centralparkzoo.com.xml b/src/chrome/content/rules/Centralparkzoo.com.xml new file mode 100644 index 000000000000..4cf7cca68791 --- /dev/null +++ b/src/chrome/content/rules/Centralparkzoo.com.xml @@ -0,0 +1,14 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Centralreg.ru.xml b/src/chrome/content/rules/Centralreg.ru.xml deleted file mode 100644 index c3548c99a8c0..000000000000 --- a/src/chrome/content/rules/Centralreg.ru.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/Centre_for_the_Protection_of_National_Infrastructure.xml b/src/chrome/content/rules/Centre_for_the_Protection_of_National_Infrastructure.xml index 7357dd8c1d8f..d6d57c5b728e 100644 --- a/src/chrome/content/rules/Centre_for_the_Protection_of_National_Infrastructure.xml +++ b/src/chrome/content/rules/Centre_for_the_Protection_of_National_Infrastructure.xml @@ -6,7 +6,7 @@ Fetch error: http://cpni.gov.uk/ => https://www.cpni.gov.uk/: (6, 'Could not res - + diff --git a/src/chrome/content/rules/Centreon.com.xml b/src/chrome/content/rules/Centreon.com.xml index 604745072fdf..493c4142ba64 100644 --- a/src/chrome/content/rules/Centreon.com.xml +++ b/src/chrome/content/rules/Centreon.com.xml @@ -36,7 +36,7 @@ Fetch error: http://login.centreon.com/ => https://login.centreon.com/: (6, 'Cou * Secured by us --> - + @@ -61,7 +61,7 @@ Fetch error: http://login.centreon.com/ => https://login.centreon.com/: (6, 'Cou - + - + - + + + + + + + + diff --git a/src/chrome/content/rules/Ceredigion.gov.uk.xml b/src/chrome/content/rules/Ceredigion.gov.uk.xml index 264dc4e8be7b..f7bb4847eabd 100644 --- a/src/chrome/content/rules/Ceredigion.gov.uk.xml +++ b/src/chrome/content/rules/Ceredigion.gov.uk.xml @@ -49,7 +49,7 @@ - + + + + + + + + + + diff --git a/src/chrome/content/rules/Certificate_Monitor.org.xml b/src/chrome/content/rules/Certificate_Monitor.org.xml deleted file mode 100644 index d27cbe594bb1..000000000000 --- a/src/chrome/content/rules/Certificate_Monitor.org.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/CertifiedAccessories.com.xml b/src/chrome/content/rules/CertifiedAccessories.com.xml new file mode 100644 index 000000000000..a88a4441dd34 --- /dev/null +++ b/src/chrome/content/rules/CertifiedAccessories.com.xml @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Certified_Secure.com.xml b/src/chrome/content/rules/Certified_Secure.com.xml index 88251819d3b8..335dc713060b 100644 --- a/src/chrome/content/rules/Certified_Secure.com.xml +++ b/src/chrome/content/rules/Certified_Secure.com.xml @@ -5,7 +5,7 @@ - + diff --git a/src/chrome/content/rules/Certigna.fr.xml b/src/chrome/content/rules/Certigna.fr.xml index 0e6645e573fd..a99d2fc844a1 100644 --- a/src/chrome/content/rules/Certigna.fr.xml +++ b/src/chrome/content/rules/Certigna.fr.xml @@ -23,7 +23,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Cesium_JS.org.xml b/src/chrome/content/rules/Cesium_JS.org.xml index b89eb53e3548..7c1e988bc9fe 100644 --- a/src/chrome/content/rules/Cesium_JS.org.xml +++ b/src/chrome/content/rules/Cesium_JS.org.xml @@ -13,7 +13,7 @@ - + - diff --git a/src/chrome/content/rules/CetteSemaine.info.xml b/src/chrome/content/rules/CetteSemaine.info.xml new file mode 100644 index 000000000000..328f348bb534 --- /dev/null +++ b/src/chrome/content/rules/CetteSemaine.info.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Cg_Marketing_Systems.com.xml b/src/chrome/content/rules/Cg_Marketing_Systems.com.xml index 0e0dac0ffbfa..0b6c14c4c3d4 100644 --- a/src/chrome/content/rules/Cg_Marketing_Systems.com.xml +++ b/src/chrome/content/rules/Cg_Marketing_Systems.com.xml @@ -6,7 +6,7 @@ - + + + + + + + + diff --git a/src/chrome/content/rules/Chain.com.xml b/src/chrome/content/rules/Chain.com.xml index 5b639c80b5d5..763a6e0c069f 100644 --- a/src/chrome/content/rules/Chain.com.xml +++ b/src/chrome/content/rules/Chain.com.xml @@ -23,7 +23,7 @@ Fetch error: http://api.chain.com/ => https://api.chain.com/: (6, 'Could not res - api --> - + diff --git a/src/chrome/content/rules/Chainlove.com.xml b/src/chrome/content/rules/Chainlove.com.xml index 98a3a9600763..313a15927745 100644 --- a/src/chrome/content/rules/Chainlove.com.xml +++ b/src/chrome/content/rules/Chainlove.com.xml @@ -13,7 +13,7 @@ Fetch error: http://images.chainlove.com/ => https://www.chainlove.com/: (6, 'Co * Akamai --> - + diff --git a/src/chrome/content/rules/Chaiscript.com.xml b/src/chrome/content/rules/Chaiscript.com.xml new file mode 100644 index 000000000000..05059ac3ac0e --- /dev/null +++ b/src/chrome/content/rules/Chaiscript.com.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/ChakraOS.org.xml b/src/chrome/content/rules/ChakraOS.org.xml index eaa2c8961d77..af46bee906ed 100644 --- a/src/chrome/content/rules/ChakraOS.org.xml +++ b/src/chrome/content/rules/ChakraOS.org.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.chakraos.org/ => https://www.chakraos.org/: (51, "SSL: no alternative certificate subject name matches target host name 'www.chakraos.org'") --> - + @@ -12,7 +12,7 @@ Fetch error: http://www.chakraos.org/ => https://www.chakraos.org/: (51, "SSL: n - + https://staging-api.challenge. - www.challenge.gov --> - + @@ -26,7 +26,7 @@ Fetch error: http://staging-api.challenge.gov/ => https://staging-api.challenge. - + https://challengepost.com/: Cycle dete - (www.)assetspost.com (at least some pages redirect to http) --> - + diff --git a/src/chrome/content/rules/Chalmers.se.xml b/src/chrome/content/rules/Chalmers.se.xml index ec4834ff64a0..fd83200003d6 100644 --- a/src/chrome/content/rules/Chalmers.se.xml +++ b/src/chrome/content/rules/Chalmers.se.xml @@ -1,13 +1,22 @@ + + - - + + + + + + + - + diff --git a/src/chrome/content/rules/Chambal.xml b/src/chrome/content/rules/Chambal.xml deleted file mode 100644 index 7c080e0605b4..000000000000 --- a/src/chrome/content/rules/Chambal.xml +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Chameleon.ad.xml b/src/chrome/content/rules/Chameleon.ad.xml index 71a34e798eb1..82409957f04a 100644 --- a/src/chrome/content/rules/Chameleon.ad.xml +++ b/src/chrome/content/rules/Chameleon.ad.xml @@ -1,4 +1,4 @@ - + + - - - - - - - + - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Champs_Sports.xml b/src/chrome/content/rules/Champs_Sports.xml index 78ab0d5dae37..33733661dcbb 100644 --- a/src/chrome/content/rules/Champs_Sports.xml +++ b/src/chrome/content/rules/Champs_Sports.xml @@ -22,9 +22,11 @@ - - - + + + + + @@ -39,7 +41,6 @@ - + diff --git a/src/chrome/content/rules/Change.org.xml b/src/chrome/content/rules/Change.org.xml index 89638b45c105..333bcbffdb94 100644 --- a/src/chrome/content/rules/Change.org.xml +++ b/src/chrome/content/rules/Change.org.xml @@ -14,7 +14,8 @@ - + + - + @@ -55,7 +55,7 @@ Fetch error: http://chango.com/ => https://www.chango.com/: (51, "SSL: no altern - + - - - - - - - - - diff --git a/src/chrome/content/rules/ChannelAdvisor.com.xml b/src/chrome/content/rules/ChannelAdvisor.com.xml index a87f126b4b7a..15306aa52ce8 100644 --- a/src/chrome/content/rules/ChannelAdvisor.com.xml +++ b/src/chrome/content/rules/ChannelAdvisor.com.xml @@ -1,16 +1,70 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + diff --git a/src/chrome/content/rules/ChannelIntelligence.com.xml b/src/chrome/content/rules/ChannelIntelligence.com.xml deleted file mode 100644 index 22baf07b1b7b..000000000000 --- a/src/chrome/content/rules/ChannelIntelligence.com.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Channel_4-falsemixed.xml b/src/chrome/content/rules/Channel_4-falsemixed.xml index f2c61c66bf8d..53d9029457fe 100644 --- a/src/chrome/content/rules/Channel_4-falsemixed.xml +++ b/src/chrome/content/rules/Channel_4-falsemixed.xml @@ -6,7 +6,7 @@ Fetch error: http://mailing.channel4.com/ => https://mailing.channel4.com/: (51, For rules not causing false/broken MCB, see Channel_4.xml. --> - + diff --git a/src/chrome/content/rules/Channelme.tv.xml b/src/chrome/content/rules/Channelme.tv.xml index d72391fd4ee1..126b69890f2f 100644 --- a/src/chrome/content/rules/Channelme.tv.xml +++ b/src/chrome/content/rules/Channelme.tv.xml @@ -6,10 +6,11 @@ --> - + + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Channelx.biz.xml b/src/chrome/content/rules/Channelx.biz.xml deleted file mode 100644 index e45632e0750c..000000000000 --- a/src/chrome/content/rules/Channelx.biz.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Chaos-Reigns.xml b/src/chrome/content/rules/Chaos-Reigns.xml index b1c33e7e9de1..9c024e2b9306 100644 --- a/src/chrome/content/rules/Chaos-Reigns.xml +++ b/src/chrome/content/rules/Chaos-Reigns.xml @@ -12,10 +12,11 @@ - + + - + - + + + + - + diff --git a/src/chrome/content/rules/Chapter1.io.xml b/src/chrome/content/rules/Chapter1.io.xml new file mode 100644 index 000000000000..28fcbd590165 --- /dev/null +++ b/src/chrome/content/rules/Chapter1.io.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/src/chrome/content/rules/CharityChoice.co.uk.xml b/src/chrome/content/rules/CharityChoice.co.uk.xml new file mode 100644 index 000000000000..c9738272adc1 --- /dev/null +++ b/src/chrome/content/rules/CharityChoice.co.uk.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/CharityWeb.xml b/src/chrome/content/rules/CharityWeb.xml index 08e3dbfc8b31..14bd7d8c8781 100644 --- a/src/chrome/content/rules/CharityWeb.xml +++ b/src/chrome/content/rules/CharityWeb.xml @@ -7,14 +7,11 @@ - + - - - + diff --git a/src/chrome/content/rules/Charlie.bz.xml b/src/chrome/content/rules/Charlie.bz.xml index 65574cc50ea8..b17d824194c4 100644 --- a/src/chrome/content/rules/Charlie.bz.xml +++ b/src/chrome/content/rules/Charlie.bz.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.charlie.bz/ => https://www.charlie.bz/: (51, "SSL: no alternative certificate subject name matches target host name 'www.charlie.bz'") --> - + diff --git a/src/chrome/content/rules/CharlotteNatureMuseum.xml b/src/chrome/content/rules/CharlotteNatureMuseum.xml index b7db1a1e6f29..7236349e2100 100644 --- a/src/chrome/content/rules/CharlotteNatureMuseum.xml +++ b/src/chrome/content/rules/CharlotteNatureMuseum.xml @@ -1,81 +1,8 @@ - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Charnwood.gov.uk.xml b/src/chrome/content/rules/Charnwood.gov.uk.xml index 983bce6cb945..586d0573848d 100644 --- a/src/chrome/content/rules/Charnwood.gov.uk.xml +++ b/src/chrome/content/rules/Charnwood.gov.uk.xml @@ -63,7 +63,7 @@ - + https://ads.chartbeat.com/: (6, 'Could not resolve host: ads.chartbeat.com') -Fetch error: http://post.update.chartbeat.com/ => https://post.update.chartbeat.com/: (51, "SSL: no alternative certificate subject name matches target host name 'post.update.chartbeat.com'") -Fetch error: http://s.update.chartbeat.com/ => https://s.update.chartbeat.com/: (51, "SSL: no alternative certificate subject name matches target host name 's.update.chartbeat.com'") blog.chartbeat.com is handled in WordPress-blogs.xml. @@ -45,6 +40,8 @@ Fetch error: http://s.update.chartbeat.com/ => https://s.update.chartbeat.com/: Problematic domains: - status.chartbeat.com * + - post.update.chartbeat.com * + - s.update.chartbeat.com * * Mismatched @@ -52,12 +49,9 @@ Fetch error: http://s.update.chartbeat.com/ => https://s.update.chartbeat.com/: Fully covered hosts in *chartbeat.com: - (www.) - - ads - static - static2 - status (→ chartbeat.statuspage.io) - - post.update - - s.update Insecure cookies are set for these hosts: @@ -65,16 +59,13 @@ Fetch error: http://s.update.chartbeat.com/ => https://s.update.chartbeat.com/: - chartbeat.com --> - + - - - - + diff --git a/src/chrome/content/rules/Charter.com.xml b/src/chrome/content/rules/Charter.com.xml index a4b7e9e5863c..bdb7d03e5c56 100644 --- a/src/chrome/content/rules/Charter.com.xml +++ b/src/chrome/content/rules/Charter.com.xml @@ -12,7 +12,6 @@ Fetch error: http://myaccount.charter.com/ => https://www.myaccount.charter.com/ - Charter-Business.com.xml - Charter_our_Community.com.xml - CharterBusiness.com.xml - - Spectrum.com.xml - SpectrumBusiness.net.xml - Spectrum_Business_Insights.com.xml @@ -59,7 +58,7 @@ Fetch error: http://myaccount.charter.com/ => https://www.myaccount.charter.com/ * Secured by us --> - + diff --git a/src/chrome/content/rules/CharterBusiness.com.xml b/src/chrome/content/rules/CharterBusiness.com.xml index 70298f790ce6..5b024029dd3a 100644 --- a/src/chrome/content/rules/CharterBusiness.com.xml +++ b/src/chrome/content/rules/CharterBusiness.com.xml @@ -23,7 +23,7 @@ Fetch error: http://media.charterbusiness.com/ => https://media.charterbusiness. - www2.charterbusiness.com --> - + diff --git a/src/chrome/content/rules/Charter_our_Community.com.xml b/src/chrome/content/rules/Charter_our_Community.com.xml index 895846283246..83e8aefb63a8 100644 --- a/src/chrome/content/rules/Charter_our_Community.com.xml +++ b/src/chrome/content/rules/Charter_our_Community.com.xml @@ -12,7 +12,7 @@ Fetch error: http://www.charterourcommunity.com/ => https://www.charterourcommun - www.charterourcommunity.com --> - + diff --git a/src/chrome/content/rules/Charts_in_France.xml b/src/chrome/content/rules/Charts_in_France.xml index a6ded4c13482..d2bc49ec3293 100644 --- a/src/chrome/content/rules/Charts_in_France.xml +++ b/src/chrome/content/rules/Charts_in_France.xml @@ -1,9 +1,4 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Chase.xml b/src/chrome/content/rules/Chase.xml deleted file mode 100644 index 29041df3b466..000000000000 --- a/src/chrome/content/rules/Chase.xml +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Chat-Place.xml b/src/chrome/content/rules/Chat-Place.xml index f639c034162c..5d6646aef420 100644 --- a/src/chrome/content/rules/Chat-Place.xml +++ b/src/chrome/content/rules/Chat-Place.xml @@ -3,7 +3,7 @@ - + diff --git a/src/chrome/content/rules/Chatango.com.xml b/src/chrome/content/rules/Chatango.com.xml index 973312a1f891..d3fbd3a9bce0 100644 --- a/src/chrome/content/rules/Chatango.com.xml +++ b/src/chrome/content/rules/Chatango.com.xml @@ -1,31 +1,39 @@ + + + + + + + + + + + + + - + diff --git a/src/chrome/content/rules/Chatelaine.com.xml b/src/chrome/content/rules/Chatelaine.com.xml new file mode 100644 index 000000000000..84d0b39b0105 --- /dev/null +++ b/src/chrome/content/rules/Chatelaine.com.xml @@ -0,0 +1,50 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Chatham_House.org.xml b/src/chrome/content/rules/Chatham_House.org.xml index 8760511fb74c..18a1ec851e49 100644 --- a/src/chrome/content/rules/Chatham_House.org.xml +++ b/src/chrome/content/rules/Chatham_House.org.xml @@ -16,7 +16,7 @@ --> - + - + + @@ -19,7 +20,6 @@ - + diff --git a/src/chrome/content/rules/Chaturbate.com.xml b/src/chrome/content/rules/Chaturbate.com.xml deleted file mode 100644 index 6c7571368b6a..000000000000 --- a/src/chrome/content/rules/Chaturbate.com.xml +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Cheap-Ass-Gamer.xml b/src/chrome/content/rules/Cheap-Ass-Gamer.xml index dd2274c35fa6..bb908fbb349d 100644 --- a/src/chrome/content/rules/Cheap-Ass-Gamer.xml +++ b/src/chrome/content/rules/Cheap-Ass-Gamer.xml @@ -3,9 +3,7 @@ - + - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/CheapCheapLah.com.xml b/src/chrome/content/rules/CheapCheapLah.com.xml new file mode 100644 index 000000000000..9cd000bdb5f2 --- /dev/null +++ b/src/chrome/content/rules/CheapCheapLah.com.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Cheap_Airport_Parking.xml b/src/chrome/content/rules/Cheap_Airport_Parking.xml index 88c44d7962e7..dc7b11ff651f 100644 --- a/src/chrome/content/rules/Cheap_Airport_Parking.xml +++ b/src/chrome/content/rules/Cheap_Airport_Parking.xml @@ -7,7 +7,7 @@ Fetch error: http://www.cheapairportparkingbirmingham.com/ => https://www.cheapa Disabled by https-everywhere-checker because: Fetch error: http://cheapairportparkingbirmingham.com/ => https://cheapairportparkingbirmingham.com/: (60, 'SSL certificate problem: self signed certificate') --> - + @@ -18,4 +18,4 @@ Fetch error: http://cheapairportparkingbirmingham.com/ => https://cheapairportpa - \ No newline at end of file + diff --git a/src/chrome/content/rules/Cheapass_Fiction.com.xml b/src/chrome/content/rules/Cheapass_Fiction.com.xml deleted file mode 100644 index f22e4b61c646..000000000000 --- a/src/chrome/content/rules/Cheapass_Fiction.com.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Cheapshark.com.xml b/src/chrome/content/rules/Cheapshark.com.xml new file mode 100644 index 000000000000..0a88a1a54d47 --- /dev/null +++ b/src/chrome/content/rules/Cheapshark.com.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Check24.de.xml b/src/chrome/content/rules/Check24.de.xml index b91582526f00..0dea492b7565 100644 --- a/src/chrome/content/rules/Check24.de.xml +++ b/src/chrome/content/rules/Check24.de.xml @@ -4,4 +4,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/CheckM8.com.xml b/src/chrome/content/rules/CheckM8.com.xml new file mode 100644 index 000000000000..80ce7ac07027 --- /dev/null +++ b/src/chrome/content/rules/CheckM8.com.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/CheckM8.xml b/src/chrome/content/rules/CheckM8.xml deleted file mode 100644 index a4f29850f4d4..000000000000 --- a/src/chrome/content/rules/CheckM8.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/CheckShortURL.com.xml b/src/chrome/content/rules/CheckShortURL.com.xml new file mode 100644 index 000000000000..01e43d0dc443 --- /dev/null +++ b/src/chrome/content/rules/CheckShortURL.com.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Check_Point-problematic.xml b/src/chrome/content/rules/Check_Point-problematic.xml deleted file mode 100644 index e3c802fac557..000000000000 --- a/src/chrome/content/rules/Check_Point-problematic.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Check_Point.xml b/src/chrome/content/rules/Check_Point.xml deleted file mode 100644 index a3512ecb2ba2..000000000000 --- a/src/chrome/content/rules/Check_Point.xml +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Checkdomain.xml b/src/chrome/content/rules/Checkdomain.xml deleted file mode 100644 index 73589fa9ef02..000000000000 --- a/src/chrome/content/rules/Checkdomain.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Checkmarx.com-problematic.xml b/src/chrome/content/rules/Checkmarx.com-problematic.xml index ec219b544a67..179ab90957cf 100644 --- a/src/chrome/content/rules/Checkmarx.com-problematic.xml +++ b/src/chrome/content/rules/Checkmarx.com-problematic.xml @@ -4,13 +4,10 @@ --> - + - - - + diff --git a/src/chrome/content/rules/Checkmyping.com.xml b/src/chrome/content/rules/Checkmyping.com.xml index 18f48bce2aaa..79bd43275435 100644 --- a/src/chrome/content/rules/Checkmyping.com.xml +++ b/src/chrome/content/rules/Checkmyping.com.xml @@ -5,7 +5,7 @@ Fetch error: http://checkmyping.com/ => https://checkmyping.com/: (60, 'SSL cert Fetch error: http://www.checkmyping.com/ => https://www.checkmyping.com/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/Checktls.com.xml b/src/chrome/content/rules/Checktls.com.xml index e1efa42df4d9..8ab5cc6ac16c 100644 --- a/src/chrome/content/rules/Checktls.com.xml +++ b/src/chrome/content/rules/Checktls.com.xml @@ -3,4 +3,4 @@ - + diff --git a/src/chrome/content/rules/Cheema.com.xml b/src/chrome/content/rules/Cheema.com.xml index eae30aa61d18..10102afd6ee5 100644 --- a/src/chrome/content/rules/Cheema.com.xml +++ b/src/chrome/content/rules/Cheema.com.xml @@ -4,7 +4,7 @@ - + diff --git a/src/chrome/content/rules/CheetahMail.xml b/src/chrome/content/rules/CheetahMail.xml index a89a8241ed11..8c7fd1790125 100644 --- a/src/chrome/content/rules/CheetahMail.xml +++ b/src/chrome/content/rules/CheetahMail.xml @@ -10,7 +10,8 @@ - + + @@ -18,10 +19,7 @@ - - + diff --git a/src/chrome/content/rules/Cheezburger.xml b/src/chrome/content/rules/Cheezburger.xml index 043b69ce8378..7df1807113fb 100644 --- a/src/chrome/content/rules/Cheezburger.xml +++ b/src/chrome/content/rules/Cheezburger.xml @@ -1,67 +1,51 @@ - - + + + + + - + - - - - - + to="https://cheezburger.freshdesk.com/" /> + diff --git a/src/chrome/content/rules/Chef.io.xml b/src/chrome/content/rules/Chef.io.xml index 4f16c8b531f3..76a4ba4ab7b9 100644 --- a/src/chrome/content/rules/Chef.io.xml +++ b/src/chrome/content/rules/Chef.io.xml @@ -20,11 +20,11 @@ Fetch error: http://happylaptop.chef.io/ => https://happylaptop.chef.io/: (6, 'C Problematic hosts in *chef.io: - friends * - + * Mismatched --> - + @@ -63,7 +63,7 @@ Fetch error: http://happylaptop.chef.io/ => https://happylaptop.chef.io/: (6, 'C - + https://emskr.chefkoch-cdn.de/: (6, 'Could not resolve host: emskr.chefkoch-cdn.de') + Invalid certificate: + chefkoch-blog.de + www.chefkoch-blog.de --> - + - - - - - - - - + + - + + - + + - - - + to="https:" /> diff --git a/src/chrome/content/rules/Chefmansousvide.com.xml b/src/chrome/content/rules/Chefmansousvide.com.xml new file mode 100644 index 000000000000..93fc07d379ff --- /dev/null +++ b/src/chrome/content/rules/Chefmansousvide.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/ChemSpider.com.xml b/src/chrome/content/rules/ChemSpider.com.xml new file mode 100644 index 000000000000..c410f09cc3a3 --- /dev/null +++ b/src/chrome/content/rules/ChemSpider.com.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Chemical_Abstracts_Service.xml b/src/chrome/content/rules/Chemical_Abstracts_Service.xml index 4eb661dac568..7ce8608bb661 100644 --- a/src/chrome/content/rules/Chemical_Abstracts_Service.xml +++ b/src/chrome/content/rules/Chemical_Abstracts_Service.xml @@ -23,7 +23,11 @@ - + + + + + @@ -33,7 +37,6 @@ - + diff --git a/src/chrome/content/rules/ChemistWarehouse.xml b/src/chrome/content/rules/ChemistWarehouse.xml index 84760f2ccf6b..234dad0e66a6 100644 --- a/src/chrome/content/rules/ChemistWarehouse.xml +++ b/src/chrome/content/rules/ChemistWarehouse.xml @@ -18,4 +18,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Cherenkov_Telescope_Array.xml b/src/chrome/content/rules/Cherenkov_Telescope_Array.xml index a7784611f6f0..d0e66d284e96 100644 --- a/src/chrome/content/rules/Cherenkov_Telescope_Array.xml +++ b/src/chrome/content/rules/Cherenkov_Telescope_Array.xml @@ -5,13 +5,11 @@ - - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Cherwell.gov.uk.xml b/src/chrome/content/rules/Cherwell.gov.uk.xml index 925127dd614a..a956e8f256ef 100644 --- a/src/chrome/content/rules/Cherwell.gov.uk.xml +++ b/src/chrome/content/rules/Cherwell.gov.uk.xml @@ -1,91 +1,25 @@ - - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - + diff --git a/src/chrome/content/rules/Cheshire.gov.uk-falsemixed.xml b/src/chrome/content/rules/Cheshire.gov.uk-falsemixed.xml deleted file mode 100644 index 83a96d55969c..000000000000 --- a/src/chrome/content/rules/Cheshire.gov.uk-falsemixed.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Cheshire.gov.uk.xml b/src/chrome/content/rules/Cheshire.gov.uk.xml index 5920bd8d6947..11115442836f 100644 --- a/src/chrome/content/rules/Cheshire.gov.uk.xml +++ b/src/chrome/content/rules/Cheshire.gov.uk.xml @@ -55,7 +55,7 @@ --> - + - + - + + + + + + + + + + diff --git a/src/chrome/content/rules/Chicago_Fed.org.xml b/src/chrome/content/rules/Chicago_Fed.org.xml index fe2009dbfffd..8114620ea76d 100644 --- a/src/chrome/content/rules/Chicago_Fed.org.xml +++ b/src/chrome/content/rules/Chicago_Fed.org.xml @@ -9,7 +9,7 @@ - + https://chickensoup.com/: Too many redirects while fetching 'https://chickensoup.com/' --> - + @@ -22,4 +22,4 @@ Fetch error: http://chickensoup.com/ => https://chickensoup.com/: Too many redir - \ No newline at end of file + diff --git a/src/chrome/content/rules/Childrens_Mutual.xml b/src/chrome/content/rules/Childrens_Mutual.xml deleted file mode 100644 index 110e552bce92..000000000000 --- a/src/chrome/content/rules/Childrens_Mutual.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/ChiliProject.org.xml b/src/chrome/content/rules/ChiliProject.org.xml index 0f642888c5d0..19a82d1103b9 100644 --- a/src/chrome/content/rules/ChiliProject.org.xml +++ b/src/chrome/content/rules/ChiliProject.org.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Chillicothe_Gazette.xml b/src/chrome/content/rules/Chillicothe_Gazette.xml index f6f38eec540b..46c6407d0d75 100644 --- a/src/chrome/content/rules/Chillicothe_Gazette.xml +++ b/src/chrome/content/rules/Chillicothe_Gazette.xml @@ -11,7 +11,8 @@ - + + diff --git a/src/chrome/content/rules/ChimeriC.de.xml b/src/chrome/content/rules/ChimeriC.de.xml index 06005e6e4e82..03568144054d 100644 --- a/src/chrome/content/rules/ChimeriC.de.xml +++ b/src/chrome/content/rules/ChimeriC.de.xml @@ -24,7 +24,7 @@ - + - - - - - - - - - - - diff --git a/src/chrome/content/rules/Chinadialogue.net.xml b/src/chrome/content/rules/Chinadialogue.net.xml index 9e7c038eae31..081dbbbbaf2a 100644 --- a/src/chrome/content/rules/Chinadialogue.net.xml +++ b/src/chrome/content/rules/Chinadialogue.net.xml @@ -19,7 +19,7 @@ - + - - - - - - - - diff --git a/src/chrome/content/rules/ChipLand.hu.xml b/src/chrome/content/rules/ChipLand.hu.xml index e0d3e752fd98..86a3327be6d8 100644 --- a/src/chrome/content/rules/ChipLand.hu.xml +++ b/src/chrome/content/rules/ChipLand.hu.xml @@ -6,9 +6,9 @@ Fetch error: http://www.chipland.hu/ => https://www.chipland.hu/: (51, "SSL: no Disabled by https-everywhere-checker because: Fetch error: http://www.chipland.hu/ => https://www.chipland.hu/: (60, 'SSL certificate problem: certificate has expired') --> - + - + diff --git a/src/chrome/content/rules/Chipmixer.com.xml b/src/chrome/content/rules/Chipmixer.com.xml new file mode 100644 index 000000000000..c26163b32a04 --- /dev/null +++ b/src/chrome/content/rules/Chipmixer.com.xml @@ -0,0 +1,10 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Chipworks.xml b/src/chrome/content/rules/Chipworks.xml index 8d1fa39f76fb..93bc95223132 100644 --- a/src/chrome/content/rules/Chipworks.xml +++ b/src/chrome/content/rules/Chipworks.xml @@ -8,7 +8,7 @@ Fetch error: http://chipworks.com/ => https://chipworks.com/: (60, 'SSL certific chipworks.secure.force.com --> - + @@ -20,4 +20,4 @@ Fetch error: http://chipworks.com/ => https://chipworks.com/: (60, 'SSL certific - \ No newline at end of file + diff --git a/src/chrome/content/rules/Chistes_Cortos_Buenos.com.xml b/src/chrome/content/rules/Chistes_Cortos_Buenos.com.xml deleted file mode 100644 index 6ab66c9a22c6..000000000000 --- a/src/chrome/content/rules/Chistes_Cortos_Buenos.com.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Chitika.net.xml b/src/chrome/content/rules/Chitika.net.xml deleted file mode 100644 index 0dc699fefb17..000000000000 --- a/src/chrome/content/rules/Chitika.net.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Chitika.xml b/src/chrome/content/rules/Chitika.xml index 97ab2ab9632d..82e1ba8a64dd 100644 --- a/src/chrome/content/rules/Chitika.xml +++ b/src/chrome/content/rules/Chitika.xml @@ -1,7 +1,13 @@ + + + - + - - + diff --git a/src/chrome/content/rules/Chloe.re.xml b/src/chrome/content/rules/Chloe.re.xml deleted file mode 100644 index d4c39767e05b..000000000000 --- a/src/chrome/content/rules/Chloe.re.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/ChoiceStream.com.xml b/src/chrome/content/rules/ChoiceStream.com.xml deleted file mode 100644 index 7b8978f9803d..000000000000 --- a/src/chrome/content/rules/ChoiceStream.com.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Choon.net.xml b/src/chrome/content/rules/Choon.net.xml index 4dfa72156d7c..a801a5295938 100644 --- a/src/chrome/content/rules/Choon.net.xml +++ b/src/chrome/content/rules/Choon.net.xml @@ -11,13 +11,13 @@ Fetch error: http://www.choon.net/ => https://www.choon.net/: (60, 'SSL certific * Refused --> - + - + - + + + + + + diff --git a/src/chrome/content/rules/Choualbox.com.xml b/src/chrome/content/rules/Choualbox.com.xml new file mode 100644 index 000000000000..4c57c29140cf --- /dev/null +++ b/src/chrome/content/rules/Choualbox.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Chris.lu.xml b/src/chrome/content/rules/Chris.lu.xml index dbe2a22fa8b3..229bc1db4edd 100644 --- a/src/chrome/content/rules/Chris.lu.xml +++ b/src/chrome/content/rules/Chris.lu.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.chris.lu/ => https://www.chris.lu/: (51, "SSL: no alternative certificate subject name matches target host name 'www.chris.lu'") --> - + diff --git a/src/chrome/content/rules/Chris_Cowley.me.uk.xml b/src/chrome/content/rules/Chris_Cowley.me.uk.xml deleted file mode 100644 index 6bc3d63f2acf..000000000000 --- a/src/chrome/content/rules/Chris_Cowley.me.uk.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Chrisanthemums.xml b/src/chrome/content/rules/Chrisanthemums.xml index 214e3a436c62..c9e71e4d562d 100644 --- a/src/chrome/content/rules/Chrisanthemums.xml +++ b/src/chrome/content/rules/Chrisanthemums.xml @@ -5,7 +5,7 @@ - + diff --git a/src/chrome/content/rules/Chrismatic.io.xml b/src/chrome/content/rules/Chrismatic.io.xml index b389230f5221..1e66ddf11c6f 100644 --- a/src/chrome/content/rules/Chrismatic.io.xml +++ b/src/chrome/content/rules/Chrismatic.io.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.chrismatic.io/ => https://www.chrismatic.io/: (6, 'Could not resolve host: www.chrismatic.io') --> - + diff --git a/src/chrome/content/rules/ChristianForums.com.xml b/src/chrome/content/rules/ChristianForums.com.xml deleted file mode 100644 index 07f3715d09cd..000000000000 --- a/src/chrome/content/rules/ChristianForums.com.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - diff --git a/src/chrome/content/rules/Christianbook.com.xml b/src/chrome/content/rules/Christianbook.com.xml index 2ab20a0e5fe3..cd4e5f516045 100644 --- a/src/chrome/content/rules/Christianbook.com.xml +++ b/src/chrome/content/rules/Christianbook.com.xml @@ -34,7 +34,7 @@ - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/ChromeStatus.com.xml b/src/chrome/content/rules/ChromeStatus.com.xml new file mode 100644 index 000000000000..6ca712fa4221 --- /dev/null +++ b/src/chrome/content/rules/ChromeStatus.com.xml @@ -0,0 +1,16 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Chrome_Data.xml b/src/chrome/content/rules/Chrome_Data.xml index 2affb04b63df..30a5b447dea9 100644 --- a/src/chrome/content/rules/Chrome_Data.xml +++ b/src/chrome/content/rules/Chrome_Data.xml @@ -2,17 +2,18 @@ - + + + + + - - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Chrome_Status.com.xml b/src/chrome/content/rules/Chrome_Status.com.xml deleted file mode 100644 index c8b73a051d91..000000000000 --- a/src/chrome/content/rules/Chrome_Status.com.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Chromium.org.xml b/src/chrome/content/rules/Chromium.org.xml index abc8c485c923..68293bfc4363 100644 --- a/src/chrome/content/rules/Chromium.org.xml +++ b/src/chrome/content/rules/Chromium.org.xml @@ -1,13 +1,12 @@ + + - - - @@ -31,20 +29,9 @@ - - - - - - - - - + - + diff --git a/src/chrome/content/rules/ChroniX_Radio.com.xml b/src/chrome/content/rules/ChroniX_Radio.com.xml index 9b59336cebf5..c026fef61dc4 100644 --- a/src/chrome/content/rules/ChroniX_Radio.com.xml +++ b/src/chrome/content/rules/ChroniX_Radio.com.xml @@ -19,7 +19,7 @@ Fetch error: http://chronixradio.com/ => https://chronixradio.com/: (7, 'Failed ** Unsecurable --> - + diff --git a/src/chrome/content/rules/Chronicle-Store.com.xml b/src/chrome/content/rules/Chronicle-Store.com.xml index 1ebdac00d011..11c9a17272a2 100644 --- a/src/chrome/content/rules/Chronicle-Store.com.xml +++ b/src/chrome/content/rules/Chronicle-Store.com.xml @@ -7,7 +7,7 @@ Fetch error: http://www.chronicle-store.com/ => https://www.chronicle-store.com/ For other Chronicle of Higher Education coverage, see Chronicle.xml. --> - + diff --git a/src/chrome/content/rules/Chronicle.xml b/src/chrome/content/rules/Chronicle.xml index a8efd41429ef..f0c43ea34581 100644 --- a/src/chrome/content/rules/Chronicle.xml +++ b/src/chrome/content/rules/Chronicle.xml @@ -23,7 +23,7 @@ Fetch error: http://www.chronicle.com/ => https://chronicle.com/: Too many redir ² Rule disabled by default --> - + diff --git a/src/chrome/content/rules/Chronicle_Vitae.com.xml b/src/chrome/content/rules/Chronicle_Vitae.com.xml index ce624f2827c8..d5c0d0b30740 100644 --- a/src/chrome/content/rules/Chronicle_Vitae.com.xml +++ b/src/chrome/content/rules/Chronicle_Vitae.com.xml @@ -4,7 +4,7 @@ - + diff --git a/src/chrome/content/rules/Chronicled.org.xml b/src/chrome/content/rules/Chronicled.org.xml new file mode 100644 index 000000000000..126ffac14230 --- /dev/null +++ b/src/chrome/content/rules/Chronicled.org.xml @@ -0,0 +1,17 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Cht.sh.xml b/src/chrome/content/rules/Cht.sh.xml new file mode 100644 index 000000000000..180a16d48879 --- /dev/null +++ b/src/chrome/content/rules/Cht.sh.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Church_Hill_Classics.xml b/src/chrome/content/rules/Church_Hill_Classics.xml index 71f1aed4a8cd..9e75deda2fea 100644 --- a/src/chrome/content/rules/Church_Hill_Classics.xml +++ b/src/chrome/content/rules/Church_Hill_Classics.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Ciety.com.xml b/src/chrome/content/rules/Ciety.com.xml index fcf19632be7b..90f3763781d6 100644 --- a/src/chrome/content/rules/Ciety.com.xml +++ b/src/chrome/content/rules/Ciety.com.xml @@ -6,12 +6,11 @@ Fetch error: http://ciety.com/ => https://ciety.com/: (60, 'SSL certificate prob www doesn't exist. --> - + - + diff --git a/src/chrome/content/rules/Cihar.com.xml b/src/chrome/content/rules/Cihar.com.xml deleted file mode 100644 index 6afaf66e10f4..000000000000 --- a/src/chrome/content/rules/Cihar.com.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Cilk_Plus.org.xml b/src/chrome/content/rules/Cilk_Plus.org.xml index 72442a70214e..eb0eb90c7b3e 100644 --- a/src/chrome/content/rules/Cilk_Plus.org.xml +++ b/src/chrome/content/rules/Cilk_Plus.org.xml @@ -6,7 +6,7 @@ Fetch error: http://cilkplus.org/ => https://cilkplus.org/: (7, 'Failed to conne For other Intel coverage, see Intel.xml. --> - + diff --git a/src/chrome/content/rules/CinCHouse.com.xml b/src/chrome/content/rules/CinCHouse.com.xml index ff95ee779c24..640633008dcf 100644 --- a/src/chrome/content/rules/CinCHouse.com.xml +++ b/src/chrome/content/rules/CinCHouse.com.xml @@ -14,4 +14,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Cinapalace.com.xml b/src/chrome/content/rules/Cinapalace.com.xml deleted file mode 100644 index ec64daa32d05..000000000000 --- a/src/chrome/content/rules/Cinapalace.com.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Cincinnati.com.xml b/src/chrome/content/rules/Cincinnati.com.xml index 846cb66a9e44..46873dd18848 100644 --- a/src/chrome/content/rules/Cincinnati.com.xml +++ b/src/chrome/content/rules/Cincinnati.com.xml @@ -114,7 +114,7 @@ Fetch error: http://cincinnati.com/ => https://cincinnati.com/: (51, "SSL: no al ³ Unsecurable --> - + diff --git a/src/chrome/content/rules/Cinder.xml b/src/chrome/content/rules/Cinder.xml index 8c1632a1a26b..847b23173056 100644 --- a/src/chrome/content/rules/Cinder.xml +++ b/src/chrome/content/rules/Cinder.xml @@ -14,4 +14,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/CineStar.xml b/src/chrome/content/rules/CineStar.xml index 2b24c9044995..fedaf529006e 100644 --- a/src/chrome/content/rules/CineStar.xml +++ b/src/chrome/content/rules/CineStar.xml @@ -9,7 +9,7 @@ Fetch error: http://cinestar.de/ => https://cinestar.de/: Too many redirects whi - .shop.cinestar.de --> - + diff --git a/src/chrome/content/rules/Cineble.com.xml b/src/chrome/content/rules/Cineble.com.xml index 5ffc968bef39..fd46fa0fdcc8 100644 --- a/src/chrome/content/rules/Cineble.com.xml +++ b/src/chrome/content/rules/Cineble.com.xml @@ -16,4 +16,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/CinemaNow.xml b/src/chrome/content/rules/CinemaNow.xml index 1fc463381117..b2c9d96b1b17 100644 --- a/src/chrome/content/rules/CinemaNow.xml +++ b/src/chrome/content/rules/CinemaNow.xml @@ -5,7 +5,8 @@ - + + @@ -14,7 +15,6 @@ - + diff --git a/src/chrome/content/rules/Cinemas-Utopia.org.xml b/src/chrome/content/rules/Cinemas-Utopia.org.xml new file mode 100644 index 000000000000..52c859f9aec4 --- /dev/null +++ b/src/chrome/content/rules/Cinemas-Utopia.org.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/CinemasGaumontPathe.com.xml b/src/chrome/content/rules/CinemasGaumontPathe.com.xml new file mode 100644 index 000000000000..4b5759835e0b --- /dev/null +++ b/src/chrome/content/rules/CinemasGaumontPathe.com.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Cinfu.com.xml b/src/chrome/content/rules/Cinfu.com.xml index f61bb16ff151..4b2ed7be048a 100644 --- a/src/chrome/content/rules/Cinfu.com.xml +++ b/src/chrome/content/rules/Cinfu.com.xml @@ -14,7 +14,7 @@ Non-2xx HTTP code: http://cinfu.com/ (200) => https://cinfu.com/ (404) - www (redirects to http) --> - + diff --git a/src/chrome/content/rules/Cint.com.xml b/src/chrome/content/rules/Cint.com.xml deleted file mode 100644 index 07643f66887e..000000000000 --- a/src/chrome/content/rules/Cint.com.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/CipherLaw.xml b/src/chrome/content/rules/CipherLaw.xml deleted file mode 100644 index 2a84bc37ad96..000000000000 --- a/src/chrome/content/rules/CipherLaw.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/CipherShed.org.xml b/src/chrome/content/rules/CipherShed.org.xml deleted file mode 100644 index aca7ebd3d585..000000000000 --- a/src/chrome/content/rules/CipherShed.org.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Cir.ca.xml b/src/chrome/content/rules/Cir.ca.xml index 4b087265f51c..73d12e18146f 100644 --- a/src/chrome/content/rules/Cir.ca.xml +++ b/src/chrome/content/rules/Cir.ca.xml @@ -35,7 +35,7 @@ Fetch error: http://www.cir.ca/ => https://circanews.com/: (51, "SSL: no alterna * Secured by us --> - + diff --git a/src/chrome/content/rules/Circa_News.com.xml b/src/chrome/content/rules/Circa_News.com.xml index 193c68455de9..41d1e6fc4d92 100644 --- a/src/chrome/content/rules/Circa_News.com.xml +++ b/src/chrome/content/rules/Circa_News.com.xml @@ -15,7 +15,7 @@ Fetch error: http://www.circanews.com/ => https://www.circanews.com/: (51, "SSL: - www.circanews.com --> - + diff --git a/src/chrome/content/rules/Circl.lu.xml b/src/chrome/content/rules/Circl.lu.xml new file mode 100644 index 000000000000..23a834371222 --- /dev/null +++ b/src/chrome/content/rules/Circl.lu.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/CircleCI.com.xml b/src/chrome/content/rules/CircleCI.com.xml index 0d5348709ac2..a70b817b221b 100644 --- a/src/chrome/content/rules/CircleCI.com.xml +++ b/src/chrome/content/rules/CircleCI.com.xml @@ -1,39 +1,14 @@ - - + - - - - - - + + + + - + - + diff --git a/src/chrome/content/rules/Circle_of_Moms.xml b/src/chrome/content/rules/Circle_of_Moms.xml index 5ee1c0813676..8e9d13bcb36d 100644 --- a/src/chrome/content/rules/Circle_of_Moms.xml +++ b/src/chrome/content/rules/Circle_of_Moms.xml @@ -20,7 +20,9 @@ Fetch error: http://circleofmoms.com/ => https://www.circleofmoms.com/: Cycle de - + + + @@ -29,10 +31,7 @@ Fetch error: http://circleofmoms.com/ => https://www.circleofmoms.com/: Cycle de - - + diff --git a/src/chrome/content/rules/Circular_Hub.xml b/src/chrome/content/rules/Circular_Hub.xml index 8fb564cd243a..d771ff2d09d5 100644 --- a/src/chrome/content/rules/Circular_Hub.xml +++ b/src/chrome/content/rules/Circular_Hub.xml @@ -1,40 +1,16 @@ - - - - - + - + - + diff --git a/src/chrome/content/rules/Cirrus-CI.com.xml b/src/chrome/content/rules/Cirrus-CI.com.xml new file mode 100644 index 000000000000..e4dfef248e21 --- /dev/null +++ b/src/chrome/content/rules/Cirrus-CI.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Cirw.in.xml b/src/chrome/content/rules/Cirw.in.xml index b21fdfdb29d1..481e621992d3 100644 --- a/src/chrome/content/rules/Cirw.in.xml +++ b/src/chrome/content/rules/Cirw.in.xml @@ -31,7 +31,7 @@ --> - + https://cln.cisco.mobi/: (28, 'Connection ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -35,7 +35,7 @@ Fetch error: http://cln.cisco.mobi/ => https://cln.cisco.mobi/: (28, 'Connection - + https://csc-test1.cisco.com/: (35, 'error:14094410:SSL routines:ssl3_read_bytes:sslv3 alert handshake failure') + Other Cisco rulesets: - Cisco.mobi.xml - - Cisco_Connect_Cloud.com.xml - Cisco_Learning_System.com.xml - Cisco_Live.com.xml - Sourcefire.com.xml @@ -25,6 +29,10 @@ - investor ʳ - mkto ᴹ - newsroom ᵈ + - solutionpartnerdashboard (refused) + - www1 (timeout) + - www2 (timeout) + - www3 (timeout) ᴹ Marketo / shows another domain ⁴ 404 @@ -34,11 +42,10 @@ Problematic hosts in *cisco.com: + - cisco-images (mismatched) - csc-test2 ᵉ ᵐ ᵘ - csc-test[3-5] ᵐ - eir-stage ˢ - - home ᵈ - - homesupport ᵈ - solucionespyme ᵐ - sso-marketplace ᵉ - video ᵐ ˣ @@ -50,15 +57,6 @@ ᵘ Untrusted root ˣ Mixed css, see https://www.paulirish.com/2010/the-protocol-relative-url/ - - Partially covered hosts in *cisco.com: - - - csr * - - www - - * Some pages redirect to http - - These altnames don't exist: - cloudsso3.cisco.com @@ -94,28 +92,24 @@ ᵐ Not secured by us <= mismatched --> - + - - - + + - - @@ -128,76 +122,9 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + diff --git a/src/chrome/content/rules/Cisco_Connect_Cloud.com.xml b/src/chrome/content/rules/Cisco_Connect_Cloud.com.xml deleted file mode 100644 index ef328045cff8..000000000000 --- a/src/chrome/content/rules/Cisco_Connect_Cloud.com.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Cisco_Learning_System.com.xml b/src/chrome/content/rules/Cisco_Learning_System.com.xml index d29f6f365743..bee8fc7cd25e 100644 --- a/src/chrome/content/rules/Cisco_Learning_System.com.xml +++ b/src/chrome/content/rules/Cisco_Learning_System.com.xml @@ -14,7 +14,7 @@ --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Citi_Alumni_Network.xml b/src/chrome/content/rules/Citi_Alumni_Network.xml index 68432dd678c3..2d0d3966b18b 100644 --- a/src/chrome/content/rules/Citi_Alumni_Network.xml +++ b/src/chrome/content/rules/Citi_Alumni_Network.xml @@ -19,4 +19,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Citibank.xml b/src/chrome/content/rules/Citibank.xml index fd4a4c22a206..0cfe8adbd197 100644 --- a/src/chrome/content/rules/Citibank.xml +++ b/src/chrome/content/rules/Citibank.xml @@ -11,7 +11,7 @@ Fetch error: http://content22.online.citibank.com/ => https://content22.online.c - .citibank.com --> - + diff --git a/src/chrome/content/rules/Citigroup.com.xml b/src/chrome/content/rules/Citigroup.com.xml index 788a8568f24b..09713808d9bb 100644 --- a/src/chrome/content/rules/Citigroup.com.xml +++ b/src/chrome/content/rules/Citigroup.com.xml @@ -7,23 +7,18 @@ - Citibank-Australia.xml - ThankYou.com.xml - Nonfunctional hosts in *citigroup.com: - jobs * * Handshake fails - --> - - - - - + - + + + diff --git a/src/chrome/content/rules/CitizenPost.fr.xml b/src/chrome/content/rules/CitizenPost.fr.xml index d99440e6c78f..9b2cca72cc0b 100644 --- a/src/chrome/content/rules/CitizenPost.fr.xml +++ b/src/chrome/content/rules/CitizenPost.fr.xml @@ -3,7 +3,7 @@ - diff --git a/src/chrome/content/rules/CitizensForEthics.org.xml b/src/chrome/content/rules/CitizensForEthics.org.xml new file mode 100644 index 000000000000..e5bf9f76e205 --- /dev/null +++ b/src/chrome/content/rules/CitizensForEthics.org.xml @@ -0,0 +1,12 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Citrix.com-falsemixed.xml b/src/chrome/content/rules/Citrix.com-falsemixed.xml index 1ab723e4ff52..be518dda87c6 100644 --- a/src/chrome/content/rules/Citrix.com-falsemixed.xml +++ b/src/chrome/content/rules/Citrix.com-falsemixed.xml @@ -9,7 +9,7 @@ - + https://tarpon.citrix.com/: (6, 'Could Other Citrix rulesets: - Citrix_Online.com.xml - - Citrix_Online_CDN.com.xml - GoToAssist.com.xml - GoToMeeting.com.xml - GoToTraining.com.xml @@ -72,7 +71,7 @@ Fetch error: http://tarpon.citrix.com/ => https://tarpon.citrix.com/: (6, 'Could * Secured by us --> - + @@ -123,7 +122,7 @@ Fetch error: http://tarpon.citrix.com/ => https://tarpon.citrix.com/: (6, 'Could - + - + - - - - - - - - - - diff --git a/src/chrome/content/rules/City-Link.xml b/src/chrome/content/rules/City-Link.xml index d660eea7c79f..3a0ea246ba38 100644 --- a/src/chrome/content/rules/City-Link.xml +++ b/src/chrome/content/rules/City-Link.xml @@ -12,7 +12,7 @@ Fetch error: http://city-link.co.uk/ => https://www.city-link.co.uk/: (28, 'Conn Fetch error: http://www.city-link.co.uk/ => https://www.city-link.co.uk/: (28, 'Connection timed out after 10001 milliseconds') --> - + diff --git a/src/chrome/content/rules/City-Mail.xml b/src/chrome/content/rules/City-Mail.xml deleted file mode 100644 index 569e5b6f2a31..000000000000 --- a/src/chrome/content/rules/City-Mail.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/City-of-Chicago.xml b/src/chrome/content/rules/City-of-Chicago.xml index 6a8fd2199042..1311af2b6e92 100644 --- a/src/chrome/content/rules/City-of-Chicago.xml +++ b/src/chrome/content/rules/City-of-Chicago.xml @@ -13,12 +13,14 @@ - + + + - + @@ -37,10 +39,9 @@ - - + + diff --git a/src/chrome/content/rules/City.com.ua.xml b/src/chrome/content/rules/City.com.ua.xml index 74953b91c074..8903060c609a 100644 --- a/src/chrome/content/rules/City.com.ua.xml +++ b/src/chrome/content/rules/City.com.ua.xml @@ -26,7 +26,7 @@ - + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/CityNews.ca.xml b/src/chrome/content/rules/CityNews.ca.xml new file mode 100644 index 000000000000..e929dbef2195 --- /dev/null +++ b/src/chrome/content/rules/CityNews.ca.xml @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/City_University_London.xml b/src/chrome/content/rules/City_University_London.xml index 12d0b8b5e875..c77aec418f5b 100644 --- a/src/chrome/content/rules/City_University_London.xml +++ b/src/chrome/content/rules/City_University_London.xml @@ -11,12 +11,13 @@ Fetch error: http://www.soi.city.ac.uk/ => https://www.soi.city.ac.uk/: (28, 'Co - soi --> - + - + + - + @@ -25,7 +26,6 @@ Fetch error: http://www.soi.city.ac.uk/ => https://www.soi.city.ac.uk/: (28, 'Co - + diff --git a/src/chrome/content/rules/City_University_of_New_York-problematic.xml b/src/chrome/content/rules/City_University_of_New_York-problematic.xml index 1abed081828c..a1d1545a2bba 100644 --- a/src/chrome/content/rules/City_University_of_New_York-problematic.xml +++ b/src/chrome/content/rules/City_University_of_New_York-problematic.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/City_University_of_New_York.xml b/src/chrome/content/rules/City_University_of_New_York.xml index b9771d187aba..548a08ba7c1a 100644 --- a/src/chrome/content/rules/City_University_of_New_York.xml +++ b/src/chrome/content/rules/City_University_of_New_York.xml @@ -40,4 +40,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/City_of_London.gov.uk.xml b/src/chrome/content/rules/City_of_London.gov.uk.xml index bf92439d9278..70e3428417bd 100644 --- a/src/chrome/content/rules/City_of_London.gov.uk.xml +++ b/src/chrome/content/rules/City_of_London.gov.uk.xml @@ -53,7 +53,7 @@ --> - + https://www.mountainview.gov/: (28, Cert only matches www --> - + diff --git a/src/chrome/content/rules/City_of_Seattle.xml b/src/chrome/content/rules/City_of_Seattle.xml index 60a28402f69c..a36aeaa6f1a8 100644 --- a/src/chrome/content/rules/City_of_Seattle.xml +++ b/src/chrome/content/rules/City_of_Seattle.xml @@ -34,7 +34,14 @@ Non-2xx HTTP code: http://seattle.gov/ (200) => https://www.seattle.gov/ (303) - + + + + + + + + @@ -46,10 +53,9 @@ Non-2xx HTTP code: http://seattle.gov/ (200) => https://www.seattle.gov/ (303) - + diff --git a/src/chrome/content/rules/Cityam.com.xml b/src/chrome/content/rules/Cityam.com.xml new file mode 100644 index 000000000000..1869a9c8872b --- /dev/null +++ b/src/chrome/content/rules/Cityam.com.xml @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Citymapper.xml b/src/chrome/content/rules/Citymapper.xml index a1d8d771d8b2..4950c3970055 100644 --- a/src/chrome/content/rules/Citymapper.xml +++ b/src/chrome/content/rules/Citymapper.xml @@ -13,6 +13,6 @@ - diff --git a/src/chrome/content/rules/CityofPortland.xml b/src/chrome/content/rules/CityofPortland.xml index 9a5a3268b9ba..7381c96004c5 100644 --- a/src/chrome/content/rules/CityofPortland.xml +++ b/src/chrome/content/rules/CityofPortland.xml @@ -4,13 +4,11 @@ - - + + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Citypaketet.xml b/src/chrome/content/rules/Citypaketet.xml deleted file mode 100644 index ad7794be199d..000000000000 --- a/src/chrome/content/rules/Citypaketet.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Citywerkz.com.xml b/src/chrome/content/rules/Citywerkz.com.xml index 057aec05c5f6..2641d2bd3b9b 100644 --- a/src/chrome/content/rules/Citywerkz.com.xml +++ b/src/chrome/content/rules/Citywerkz.com.xml @@ -7,7 +7,7 @@ Fetch error: http://www.citywerkz.com/ => https://www.citywerkz.com/: (60, 'SSL Disabled by https-everywhere-checker because: Fetch error: http://citywerkz.com/ => https://citywerkz.com/: (51, "SSL: no alternative certificate subject name matches target host name 'citywerkz.com'") --> - + diff --git a/src/chrome/content/rules/Ciuvo.com.xml b/src/chrome/content/rules/Ciuvo.com.xml index 116f3254bdfa..e48aa6f801c0 100644 --- a/src/chrome/content/rules/Ciuvo.com.xml +++ b/src/chrome/content/rules/Ciuvo.com.xml @@ -1,10 +1,11 @@ - + + + - + diff --git a/src/chrome/content/rules/CiviCRM.xml b/src/chrome/content/rules/CiviCRM.xml index b99687d8c8e2..cad390a5a1c0 100644 --- a/src/chrome/content/rules/CiviCRM.xml +++ b/src/chrome/content/rules/CiviCRM.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/CivicScience.xml b/src/chrome/content/rules/CivicScience.xml index 6082b44a70a3..f6b58e724202 100644 --- a/src/chrome/content/rules/CivicScience.xml +++ b/src/chrome/content/rules/CivicScience.xml @@ -19,7 +19,9 @@ - + + + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Civica_ePay.co.uk.xml b/src/chrome/content/rules/Civica_ePay.co.uk.xml index f6b19cddc04a..0ad35e6bc5f7 100644 --- a/src/chrome/content/rules/Civica_ePay.co.uk.xml +++ b/src/chrome/content/rules/Civica_ePay.co.uk.xml @@ -23,7 +23,7 @@ --> - + https://cjdns.info/: (35, 'error:14077410:SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert handshake failure') -Fetch error: http://www.cjdns.info/ => https://www.cjdns.info/: (35, 'error:14077410:SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert handshake failure') - - Mixed content: - - - Bug from ghbtns.com * - - * Unsecurable <= refused - ---> - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Ckgs.us.xml b/src/chrome/content/rules/Ckgs.us.xml new file mode 100644 index 000000000000..10d7875717df --- /dev/null +++ b/src/chrome/content/rules/Ckgs.us.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Cl.ly.xml b/src/chrome/content/rules/Cl.ly.xml index 7337b60419ed..a3f093e72874 100644 --- a/src/chrome/content/rules/Cl.ly.xml +++ b/src/chrome/content/rules/Cl.ly.xml @@ -1,48 +1,17 @@ - - + - - - - - - - - - - - - - - - - + + - + + diff --git a/src/chrome/content/rules/Claessens-Donadello.eu.xml b/src/chrome/content/rules/Claessens-Donadello.eu.xml new file mode 100644 index 000000000000..c149957b940c --- /dev/null +++ b/src/chrome/content/rules/Claessens-Donadello.eu.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Claim_Forms_Plus.xml b/src/chrome/content/rules/Claim_Forms_Plus.xml index fd2944845a1b..08a2fbf7481b 100644 --- a/src/chrome/content/rules/Claim_Forms_Plus.xml +++ b/src/chrome/content/rules/Claim_Forms_Plus.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Claranet-mismatches.xml b/src/chrome/content/rules/Claranet-mismatches.xml index 5e549d69c92a..3c40dfc22cbe 100644 --- a/src/chrome/content/rules/Claranet-mismatches.xml +++ b/src/chrome/content/rules/Claranet-mismatches.xml @@ -3,12 +3,8 @@ - + - - - + diff --git a/src/chrome/content/rules/Claranet.xml b/src/chrome/content/rules/Claranet.xml index 6b05f2a00afa..77b786cb8e54 100644 --- a/src/chrome/content/rules/Claranet.xml +++ b/src/chrome/content/rules/Claranet.xml @@ -9,41 +9,33 @@ Fetch error: http://pop.claranet.de/ => https://pop.claranet.de/: (6, 'Could not Fetch error: http://webmail.claranet.pt/ => https://webmail.claranet.pt/: (60, 'SSL certificate problem: unable to get local issuer certificate') Fetch error: http://secure.claranetsoho.co.uk/ => https://secure.claranetsoho.co.uk/: (28, 'Connection timed out after 10000 milliseconds') --> - - - - - - + + + + + + + + - + + - - - - - - + + + + + + - - - - - - + diff --git a/src/chrome/content/rules/Clarion-Ledger.xml b/src/chrome/content/rules/Clarion-Ledger.xml index 885106277d13..ea896c75e542 100644 --- a/src/chrome/content/rules/Clarion-Ledger.xml +++ b/src/chrome/content/rules/Clarion-Ledger.xml @@ -16,7 +16,8 @@ - + + diff --git a/src/chrome/content/rules/ClarityRay.xml b/src/chrome/content/rules/ClarityRay.xml deleted file mode 100644 index c4a605e1b197..000000000000 --- a/src/chrome/content/rules/ClarityRay.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Clarkvision.com.xml b/src/chrome/content/rules/Clarkvision.com.xml new file mode 100644 index 000000000000..4654f2555384 --- /dev/null +++ b/src/chrome/content/rules/Clarkvision.com.xml @@ -0,0 +1,13 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Class-Central.com.xml b/src/chrome/content/rules/Class-Central.com.xml index 4b4ef9da6796..845d4c52a2ed 100644 --- a/src/chrome/content/rules/Class-Central.com.xml +++ b/src/chrome/content/rules/Class-Central.com.xml @@ -22,7 +22,7 @@ --> - + + + + + + + diff --git a/src/chrome/content/rules/Claws-Mail.org.xml b/src/chrome/content/rules/Claws-Mail.org.xml index 038e9fad08a3..20c0ec22b5db 100644 --- a/src/chrome/content/rules/Claws-Mail.org.xml +++ b/src/chrome/content/rules/Claws-Mail.org.xml @@ -13,9 +13,12 @@ + + + + - - + diff --git a/src/chrome/content/rules/Cld.me.xml b/src/chrome/content/rules/Cld.me.xml new file mode 100644 index 000000000000..23a650aba819 --- /dev/null +++ b/src/chrome/content/rules/Cld.me.xml @@ -0,0 +1,16 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Cldlr.com.xml b/src/chrome/content/rules/Cldlr.com.xml deleted file mode 100644 index 83c071873bc2..000000000000 --- a/src/chrome/content/rules/Cldlr.com.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Clean-Energy-Experts.xml b/src/chrome/content/rules/Clean-Energy-Experts.xml index a2431019e473..0c806849c532 100644 --- a/src/chrome/content/rules/Clean-Energy-Experts.xml +++ b/src/chrome/content/rules/Clean-Energy-Experts.xml @@ -5,7 +5,7 @@ - + diff --git a/src/chrome/content/rules/CleanEnergyFinanceCorporation.xml b/src/chrome/content/rules/CleanEnergyFinanceCorporation.xml deleted file mode 100644 index 1352520585f0..000000000000 --- a/src/chrome/content/rules/CleanEnergyFinanceCorporation.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/CleanPrint.net.xml b/src/chrome/content/rules/CleanPrint.net.xml index d8103a06eed9..44310713b9a3 100644 --- a/src/chrome/content/rules/CleanPrint.net.xml +++ b/src/chrome/content/rules/CleanPrint.net.xml @@ -26,16 +26,13 @@ Fetch error: http://cleanprint.net/ => https://cleanprint.net/: (51, "SSL: no al - cache-02 (→ www) --> - + - + + - + - - - \ No newline at end of file + diff --git a/src/chrome/content/rules/Clear-Code.com.xml b/src/chrome/content/rules/Clear-Code.com.xml index 48fddb4faefa..cba409f20878 100644 --- a/src/chrome/content/rules/Clear-Code.com.xml +++ b/src/chrome/content/rules/Clear-Code.com.xml @@ -23,6 +23,6 @@ - diff --git a/src/chrome/content/rules/ClearQuran.com.xml b/src/chrome/content/rules/ClearQuran.com.xml new file mode 100644 index 000000000000..0dafe0c8e764 --- /dev/null +++ b/src/chrome/content/rules/ClearQuran.com.xml @@ -0,0 +1,17 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Clear_Linux.org.xml b/src/chrome/content/rules/Clear_Linux.org.xml deleted file mode 100644 index e82450add48f..000000000000 --- a/src/chrome/content/rules/Clear_Linux.org.xml +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/CleverCoin.com.xml b/src/chrome/content/rules/CleverCoin.com.xml deleted file mode 100644 index aa33fe391384..000000000000 --- a/src/chrome/content/rules/CleverCoin.com.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/CleverPush.com.xml b/src/chrome/content/rules/CleverPush.com.xml new file mode 100644 index 000000000000..8aecbdeb83e4 --- /dev/null +++ b/src/chrome/content/rules/CleverPush.com.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Cleverbridge.xml b/src/chrome/content/rules/Cleverbridge.xml index 154df8274e42..7c6a8bdee9b4 100644 --- a/src/chrome/content/rules/Cleverbridge.xml +++ b/src/chrome/content/rules/Cleverbridge.xml @@ -18,7 +18,7 @@ Fetch error: http://message.cleverbridge.com/ => https://message.cleverbridge.co * Mismatched --> - + @@ -54,7 +54,7 @@ Fetch error: http://message.cleverbridge.com/ => https://message.cleverbridge.co - + https://click-sec.com/: (6, 'Could not res - www.click-sec.com --> - + diff --git a/src/chrome/content/rules/Click4Wheels.cn.xml b/src/chrome/content/rules/Click4Wheels.cn.xml new file mode 100644 index 000000000000..fe0ced30189a --- /dev/null +++ b/src/chrome/content/rules/Click4Wheels.cn.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Click4Wheels.co.kr.xml b/src/chrome/content/rules/Click4Wheels.co.kr.xml new file mode 100644 index 000000000000..4e531226ebe0 --- /dev/null +++ b/src/chrome/content/rules/Click4Wheels.co.kr.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Click4Wheels.com.xml b/src/chrome/content/rules/Click4Wheels.com.xml new file mode 100644 index 000000000000..01618c1d6e66 --- /dev/null +++ b/src/chrome/content/rules/Click4Wheels.com.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Click4Wheels.jp.xml b/src/chrome/content/rules/Click4Wheels.jp.xml new file mode 100644 index 000000000000..65ccc0ba3835 --- /dev/null +++ b/src/chrome/content/rules/Click4Wheels.jp.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ClickEquations.net.xml b/src/chrome/content/rules/ClickEquations.net.xml index 81ec4e235bf9..9d69d75b348a 100644 --- a/src/chrome/content/rules/ClickEquations.net.xml +++ b/src/chrome/content/rules/ClickEquations.net.xml @@ -16,16 +16,17 @@ Fetch error: http://clickequations.net/ => https://clickequations.net/: (7, 'Fai whichever domain it is loaded from. --> - + - + + + - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/ClickFunnels.com.xml b/src/chrome/content/rules/ClickFunnels.com.xml index 3fa3475f7223..bb39aaada933 100644 --- a/src/chrome/content/rules/ClickFunnels.com.xml +++ b/src/chrome/content/rules/ClickFunnels.com.xml @@ -17,7 +17,7 @@ --> - + https://origin-assets.clic * Akamai --> - + diff --git a/src/chrome/content/rules/ClickTale.xml b/src/chrome/content/rules/ClickTale.xml index 5c15c50b7d7f..727bd64c3f1b 100644 --- a/src/chrome/content/rules/ClickTale.xml +++ b/src/chrome/content/rules/ClickTale.xml @@ -2,46 +2,53 @@ CDN buckets: - clicktalecdn.sslcs.cdngc.net - - clicktale.pantherssl.com - Problematic domains: - clicktale.com (interrupted) - cdn.clicktale.net (403, mismatched, CN: ssl2.cdngc.net) - s.clicktale.net (403; mismatched, CN: ssl2.cdngc.net) + - www07.clicktale.net (unable to get local issuer certificate) + + Connection Refused/Unresolved Hosts + - s.clicktale.net + - clicktale.pantherssl.com --> - - - + + + + + - - - + + - Times out + --> - - + + diff --git a/src/chrome/content/rules/Click_and_Pledge.com.xml b/src/chrome/content/rules/Click_and_Pledge.com.xml index 4d760185235f..7ad490380987 100644 --- a/src/chrome/content/rules/Click_and_Pledge.com.xml +++ b/src/chrome/content/rules/Click_and_Pledge.com.xml @@ -39,7 +39,7 @@ - + https://clickfuncasino.com/: (51, "SSL: no alternative certificate subject name matches target host name 'clickfuncasino.com'") --> - + - - + + + + - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Clickmatic.pl.xml b/src/chrome/content/rules/Clickmatic.pl.xml new file mode 100644 index 000000000000..73defb25445f --- /dev/null +++ b/src/chrome/content/rules/Clickmatic.pl.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Clicksor.com.xml b/src/chrome/content/rules/Clicksor.com.xml deleted file mode 100644 index a0aa116b3121..000000000000 --- a/src/chrome/content/rules/Clicksor.com.xml +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Clicktools.xml b/src/chrome/content/rules/Clicktools.xml index ce984027ae5b..f8b99c217e91 100644 --- a/src/chrome/content/rules/Clicktools.xml +++ b/src/chrome/content/rules/Clicktools.xml @@ -22,7 +22,7 @@ --> - + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Client.foldingathome.org.xml b/src/chrome/content/rules/Client.foldingathome.org.xml new file mode 100644 index 000000000000..295b755a734e --- /dev/null +++ b/src/chrome/content/rules/Client.foldingathome.org.xml @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Climate-Central.xml b/src/chrome/content/rules/Climate-Central.xml index 18b5ad18e6e4..0fa18e96f20a 100644 --- a/src/chrome/content/rules/Climate-Central.xml +++ b/src/chrome/content/rules/Climate-Central.xml @@ -1,11 +1,11 @@ - + - + diff --git a/src/chrome/content/rules/Climate-Diplomacy.org.xml b/src/chrome/content/rules/Climate-Diplomacy.org.xml index fc748f94768b..da57faccad8e 100644 --- a/src/chrome/content/rules/Climate-Diplomacy.org.xml +++ b/src/chrome/content/rules/Climate-Diplomacy.org.xml @@ -8,7 +8,7 @@ - + + + + + + + + diff --git a/src/chrome/content/rules/ClinicalKey.com.xml b/src/chrome/content/rules/ClinicalKey.com.xml index 76cea5dc1191..1f5d308a59df 100644 --- a/src/chrome/content/rules/ClinicalKey.com.xml +++ b/src/chrome/content/rules/ClinicalKey.com.xml @@ -21,7 +21,7 @@ - + https://clinkle.com/: (60, 'SSL certificate Fetch error: http://www.clinkle.com/ => https://www.clinkle.com/: (60, 'SSL certificate problem: certificate has expired') --> - + @@ -13,4 +13,4 @@ Fetch error: http://www.clinkle.com/ => https://www.clinkle.com/: (60, 'SSL cert - \ No newline at end of file + diff --git a/src/chrome/content/rules/Clkads.com.xml b/src/chrome/content/rules/Clkads.com.xml index df732176d807..0d3125e7f6e2 100644 --- a/src/chrome/content/rules/Clkads.com.xml +++ b/src/chrome/content/rules/Clkads.com.xml @@ -1,26 +1,6 @@ - - - - - - @@ -28,7 +8,7 @@ - + diff --git a/src/chrome/content/rules/Clockworkmod.com.xml b/src/chrome/content/rules/Clockworkmod.com.xml index 8570b679d687..3824514b7953 100644 --- a/src/chrome/content/rules/Clockworkmod.com.xml +++ b/src/chrome/content/rules/Clockworkmod.com.xml @@ -27,4 +27,4 @@ - + diff --git a/src/chrome/content/rules/Clothing_at_Tesco.com.xml b/src/chrome/content/rules/Clothing_at_Tesco.com.xml index ef24b6bf213d..58a27e52a30f 100644 --- a/src/chrome/content/rules/Clothing_at_Tesco.com.xml +++ b/src/chrome/content/rules/Clothing_at_Tesco.com.xml @@ -20,7 +20,7 @@ Fetch error: http://www.clothingattesco.com/ => https://www.clothingattesco.com/ * Secured by us --> - + diff --git a/src/chrome/content/rules/ClouDNS.net.xml b/src/chrome/content/rules/ClouDNS.net.xml deleted file mode 100644 index e2df7d006f62..000000000000 --- a/src/chrome/content/rules/ClouDNS.net.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/ClouToday.nl.xml b/src/chrome/content/rules/ClouToday.nl.xml index e6feaf08bfc9..e20a12dc0e3b 100644 --- a/src/chrome/content/rules/ClouToday.nl.xml +++ b/src/chrome/content/rules/ClouToday.nl.xml @@ -24,7 +24,7 @@ - + - + - - - - - - - - diff --git a/src/chrome/content/rules/Cloud9.xml b/src/chrome/content/rules/Cloud9.xml index 8a9d518220ee..60bbb7b38fda 100644 --- a/src/chrome/content/rules/Cloud9.xml +++ b/src/chrome/content/rules/Cloud9.xml @@ -11,8 +11,8 @@ Fetch error: http://cdn.c9.io/ => https://cdn.c9.io/: Too many redirects while f - docs.c9.io --> - - + + diff --git a/src/chrome/content/rules/CloudAtCost.com.xml b/src/chrome/content/rules/CloudAtCost.com.xml index 555f3ccef112..5d8575bdfa11 100644 --- a/src/chrome/content/rules/CloudAtCost.com.xml +++ b/src/chrome/content/rules/CloudAtCost.com.xml @@ -15,14 +15,9 @@ - - - - - diff --git a/src/chrome/content/rules/CloudControl.com.xml b/src/chrome/content/rules/CloudControl.com.xml index 03fdb7b3b4e4..80acd9fe890e 100644 --- a/src/chrome/content/rules/CloudControl.com.xml +++ b/src/chrome/content/rules/CloudControl.com.xml @@ -31,7 +31,7 @@ Fetch error: http://cloudcontrol.com/ => https://www.cloudcontrol.com/: (35, 'Un * Secured by us, changes alignment slightly --> - + diff --git a/src/chrome/content/rules/CloudCracker.xml b/src/chrome/content/rules/CloudCracker.xml index 4413dd91d43d..1a72b5aa5a8d 100644 --- a/src/chrome/content/rules/CloudCracker.xml +++ b/src/chrome/content/rules/CloudCracker.xml @@ -9,7 +9,7 @@ Fetch error: http://www.wpacracker.com/ => https://cloudcracker.com/: (7, 'Faile (www.)?wpacracker.com: Expired --> - + diff --git a/src/chrome/content/rules/CloudFlare.xml b/src/chrome/content/rules/CloudFlare.xml deleted file mode 100644 index 7a0e53136f81..000000000000 --- a/src/chrome/content/rules/CloudFlare.xml +++ /dev/null @@ -1,58 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/CloudFlare_Challenge.com.xml b/src/chrome/content/rules/CloudFlare_Challenge.com.xml deleted file mode 100644 index dc0c6ff18a01..000000000000 --- a/src/chrome/content/rules/CloudFlare_Challenge.com.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/CloudLinux.com-falsemixed.xml b/src/chrome/content/rules/CloudLinux.com-falsemixed.xml deleted file mode 100644 index 76467e0490f5..000000000000 --- a/src/chrome/content/rules/CloudLinux.com-falsemixed.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/CloudMagic.xml b/src/chrome/content/rules/CloudMagic.xml index 1aff1cd1778d..6797260cdba4 100644 --- a/src/chrome/content/rules/CloudMagic.xml +++ b/src/chrome/content/rules/CloudMagic.xml @@ -16,5 +16,5 @@ - + diff --git a/src/chrome/content/rules/CloudSigma.xml b/src/chrome/content/rules/CloudSigma.xml index 08f0aa1b95af..fd633881280d 100644 --- a/src/chrome/content/rules/CloudSigma.xml +++ b/src/chrome/content/rules/CloudSigma.xml @@ -4,19 +4,22 @@ Disabled by https-everywhere-checker because: Fetch error: http://cloudsigma.com/ => https://cloudsigma.com/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + - + + + + + - + - + diff --git a/src/chrome/content/rules/CloudSwitch.xml b/src/chrome/content/rules/CloudSwitch.xml index 6257a91a6fff..3dc4b643860f 100644 --- a/src/chrome/content/rules/CloudSwitch.xml +++ b/src/chrome/content/rules/CloudSwitch.xml @@ -6,12 +6,12 @@ Fetch error: http://cloudswitch.com/ => https://cloudswitch.com/: (60, 'SSL cert Disabled by https-everywhere-checker because: Fetch error: http://cloudswitch.com/ => https://cloudswitch.com/: (51, "SSL: no alternative certificate subject name matches target host name 'cloudswitch.com'") Bucket at d1jyhm1p20pq9z.cloudfront.net --> - + - + diff --git a/src/chrome/content/rules/Cloud_Foundry.org.xml b/src/chrome/content/rules/Cloud_Foundry.org.xml index 9e511aea2154..19d5363acd84 100644 --- a/src/chrome/content/rules/Cloud_Foundry.org.xml +++ b/src/chrome/content/rules/Cloud_Foundry.org.xml @@ -18,7 +18,7 @@ Fetch error: http://blog.cloudfoundry.org/wp-content/themes/custom-org14/images/ - blog (→ i0.wp.com) --> - + diff --git a/src/chrome/content/rules/Cloud_Foundry.xml b/src/chrome/content/rules/Cloud_Foundry.xml index 52dc48914e46..6bd29e3c094d 100644 --- a/src/chrome/content/rules/Cloud_Foundry.xml +++ b/src/chrome/content/rules/Cloud_Foundry.xml @@ -15,7 +15,7 @@ Fetch error: http://www.cloudfoundry.com/ => https://www.cloudfoundry.com/: (28, - docs - i[012].wp.com/blog.cloudfoundry.com/ - + Nonfunctional subdomains: @@ -38,7 +38,7 @@ Fetch error: http://www.cloudfoundry.com/ => https://www.cloudfoundry.com/: (28, - blog (→ blog.pivotal.io) --> - + diff --git a/src/chrome/content/rules/Cloud_Proven.net.xml b/src/chrome/content/rules/Cloud_Proven.net.xml index 3395e3f5926a..d10115b4e931 100644 --- a/src/chrome/content/rules/Cloud_Proven.net.xml +++ b/src/chrome/content/rules/Cloud_Proven.net.xml @@ -10,7 +10,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://cloudproven.net/ => https://cloudproven.net/: Too many redirects while fetching 'https://cloudproven.net/' --> - + diff --git a/src/chrome/content/rules/Cloudera.com.xml b/src/chrome/content/rules/Cloudera.com.xml index 9e50ad29bf62..4cc9b6067e0c 100644 --- a/src/chrome/content/rules/Cloudera.com.xml +++ b/src/chrome/content/rules/Cloudera.com.xml @@ -1,98 +1,24 @@ - - - + - - - - - - - - - - - - - - - - - - + + + + + - - - - - - + + diff --git a/src/chrome/content/rules/Cloudflare-ipfs.com.xml b/src/chrome/content/rules/Cloudflare-ipfs.com.xml new file mode 100644 index 000000000000..b90527b4c233 --- /dev/null +++ b/src/chrome/content/rules/Cloudflare-ipfs.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Cloudflare.com.xml b/src/chrome/content/rules/Cloudflare.com.xml new file mode 100644 index 000000000000..dd3154994a91 --- /dev/null +++ b/src/chrome/content/rules/Cloudflare.com.xml @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/CloudflareStatus.com.xml b/src/chrome/content/rules/CloudflareStatus.com.xml new file mode 100644 index 000000000000..1fd5c067b82f --- /dev/null +++ b/src/chrome/content/rules/CloudflareStatus.com.xml @@ -0,0 +1,17 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Cloudflarestatus.com.xml b/src/chrome/content/rules/Cloudflarestatus.com.xml deleted file mode 100644 index c91723d045c9..000000000000 --- a/src/chrome/content/rules/Cloudflarestatus.com.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Cloudfront.xml b/src/chrome/content/rules/Cloudfront.xml index 3b8cd0bb8793..9886a8f80fd7 100644 --- a/src/chrome/content/rules/Cloudfront.xml +++ b/src/chrome/content/rules/Cloudfront.xml @@ -8,6 +8,10 @@ + + + + @@ -19,6 +23,11 @@ + + + + @@ -47,7 +56,7 @@ - + @@ -55,4 +64,17 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Cloudhexa_Network.xml b/src/chrome/content/rules/Cloudhexa_Network.xml deleted file mode 100644 index c0d97bbdd9f7..000000000000 --- a/src/chrome/content/rules/Cloudhexa_Network.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Cloudinary.xml b/src/chrome/content/rules/Cloudinary.xml index 925f9b09faf5..1f1be4d7a7e0 100644 --- a/src/chrome/content/rules/Cloudinary.xml +++ b/src/chrome/content/rules/Cloudinary.xml @@ -1,101 +1,39 @@ - - - + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + - - - - - - - - - - + diff --git a/src/chrome/content/rules/Cloudmark.xml b/src/chrome/content/rules/Cloudmark.xml index 03aa9a589b25..9a5f846278aa 100644 --- a/src/chrome/content/rules/Cloudmark.xml +++ b/src/chrome/content/rules/Cloudmark.xml @@ -5,6 +5,6 @@ - + diff --git a/src/chrome/content/rules/Cloudmining.guru.xml b/src/chrome/content/rules/Cloudmining.guru.xml deleted file mode 100644 index 04c622e60478..000000000000 --- a/src/chrome/content/rules/Cloudmining.guru.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Cloudmutt.com.xml b/src/chrome/content/rules/Cloudmutt.com.xml new file mode 100644 index 000000000000..e2448c5b2513 --- /dev/null +++ b/src/chrome/content/rules/Cloudmutt.com.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/Cloudscaling.com.xml b/src/chrome/content/rules/Cloudscaling.com.xml index 309d1b1f459a..4a826175ad0a 100644 --- a/src/chrome/content/rules/Cloudscaling.com.xml +++ b/src/chrome/content/rules/Cloudscaling.com.xml @@ -11,7 +11,7 @@ Fetch error: http://cloudscaling.com/ => https://cloudscaling.com/: (60, 'SSL ce - engineering --> - + @@ -24,4 +24,4 @@ Fetch error: http://cloudscaling.com/ => https://cloudscaling.com/: (60, 'SSL ce - \ No newline at end of file + diff --git a/src/chrome/content/rules/Cloudset.net.xml b/src/chrome/content/rules/Cloudset.net.xml index ac446bef5240..ad7ea6f916b7 100644 --- a/src/chrome/content/rules/Cloudset.net.xml +++ b/src/chrome/content/rules/Cloudset.net.xml @@ -9,10 +9,12 @@ --> - + + + + - + diff --git a/src/chrome/content/rules/Cloudwear.com.xml b/src/chrome/content/rules/Cloudwear.com.xml index 4b8e9bcfbab2..03c7eff2b539 100644 --- a/src/chrome/content/rules/Cloudwear.com.xml +++ b/src/chrome/content/rules/Cloudwear.com.xml @@ -5,7 +5,7 @@ Fetch error: http://cloudwear.com/ => https://cloudwear.com/: (28, 'Connection t Fetch error: http://www.cloudwear.com/ => https://www.cloudwear.com/: (28, 'Connection timed out after 20000 milliseconds') --> - + diff --git a/src/chrome/content/rules/ClubNix.fr.xml b/src/chrome/content/rules/ClubNix.fr.xml index a22d849df8c4..fe50ec4e111f 100644 --- a/src/chrome/content/rules/ClubNix.fr.xml +++ b/src/chrome/content/rules/ClubNix.fr.xml @@ -4,7 +4,7 @@ - + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ClusterHQ.com.xml b/src/chrome/content/rules/ClusterHQ.com.xml index 0acf1bb58d1b..e406ebcdb465 100644 --- a/src/chrome/content/rules/ClusterHQ.com.xml +++ b/src/chrome/content/rules/ClusterHQ.com.xml @@ -20,7 +20,7 @@ Fetch error: http://docs.clusterhq.com/ => https://docs.clusterhq.com/: (6, 'Cou * Secured by us --> - + diff --git a/src/chrome/content/rules/Clusters.de.xml b/src/chrome/content/rules/Clusters.de.xml index 09d6577b8403..45ea14aaaa56 100644 --- a/src/chrome/content/rules/Clusters.de.xml +++ b/src/chrome/content/rules/Clusters.de.xml @@ -1,7 +1,9 @@ - + + + - + @@ -33,7 +33,7 @@ Fetch error: http://s.cmcdn.net/ => https://d1gyuuidj3lauh.cloudfront.net/: (6, + to="https://media.cmcdn.net/" /> diff --git a/src/chrome/content/rules/Cmtt.ru.xml b/src/chrome/content/rules/Cmtt.ru.xml deleted file mode 100644 index 90bf2375e2b9..000000000000 --- a/src/chrome/content/rules/Cmtt.ru.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Cnchost.com.xml b/src/chrome/content/rules/Cnchost.com.xml index df97ebacd0c5..edc645527ab2 100644 --- a/src/chrome/content/rules/Cnchost.com.xml +++ b/src/chrome/content/rules/Cnchost.com.xml @@ -22,7 +22,7 @@ Non-2xx HTTP code: http://secure.cnchost.com/ (200) => https://secure.cnchost.co - secure --> - + @@ -30,7 +30,7 @@ Non-2xx HTTP code: http://secure.cnchost.com/ (200) => https://secure.cnchost.co - + - + + - + - + diff --git a/src/chrome/content/rules/Co3_Sys.com.xml b/src/chrome/content/rules/Co3_Sys.com.xml deleted file mode 100644 index b422bba6df3a..000000000000 --- a/src/chrome/content/rules/Co3_Sys.com.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/CoCubes.com-falsemixed.xml b/src/chrome/content/rules/CoCubes.com-falsemixed.xml deleted file mode 100644 index 613088b5dad2..000000000000 --- a/src/chrome/content/rules/CoCubes.com-falsemixed.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/CoCubes.com.xml b/src/chrome/content/rules/CoCubes.com.xml deleted file mode 100644 index 00cc42498bcd..000000000000 --- a/src/chrome/content/rules/CoCubes.com.xml +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/CoGen-Media.xml b/src/chrome/content/rules/CoGen-Media.xml index 7a5fa8396ec2..7089db721077 100644 --- a/src/chrome/content/rules/CoGen-Media.xml +++ b/src/chrome/content/rules/CoGen-Media.xml @@ -38,7 +38,7 @@ ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -64,7 +64,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Coalition-S.org.xml b/src/chrome/content/rules/Coalition-S.org.xml new file mode 100644 index 000000000000..6aae3eb55bdb --- /dev/null +++ b/src/chrome/content/rules/Coalition-S.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Coast-Capital-Savings.xml b/src/chrome/content/rules/Coast-Capital-Savings.xml index 56bb433da846..ca50c882b5bf 100644 --- a/src/chrome/content/rules/Coast-Capital-Savings.xml +++ b/src/chrome/content/rules/Coast-Capital-Savings.xml @@ -10,7 +10,7 @@ Fetch error: http://vote.coastcapitalsavings.com/ => https://vote.coastcapitalsa - www.copsforcancer.coastcapitalsavings.com --> - + diff --git a/src/chrome/content/rules/Coast-Digital.xml b/src/chrome/content/rules/Coast-Digital.xml index 793367971c39..c0ac9f1f7d87 100644 --- a/src/chrome/content/rules/Coast-Digital.xml +++ b/src/chrome/content/rules/Coast-Digital.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://coastdigital.co.uk/ => https://coastdigital.co.uk/: (60, 'SSL certificate problem: self signed certificate') Fetch error: http://www.coastdigital.co.uk/ => https://coastdigital.co.uk/: (60, 'SSL certificate problem: self signed certificate') --> - + @@ -16,6 +16,6 @@ Fetch error: http://www.coastdigital.co.uk/ => https://coastdigital.co.uk/: (60, - + diff --git a/src/chrome/content/rules/Coastal_Micro_Supply.xml b/src/chrome/content/rules/Coastal_Micro_Supply.xml index 927062badb7f..8cd9274eefb6 100644 --- a/src/chrome/content/rules/Coastal_Micro_Supply.xml +++ b/src/chrome/content/rules/Coastal_Micro_Supply.xml @@ -10,7 +10,7 @@ Fetch error: http://www.coastalmicrosupply.com/ => https://www.coastalmicrosuppl Some (most)? pages redirect to http. --> - + @@ -19,4 +19,4 @@ Fetch error: http://www.coastalmicrosupply.com/ => https://www.coastalmicrosuppl - \ No newline at end of file + diff --git a/src/chrome/content/rules/CoasterForce.com.xml b/src/chrome/content/rules/CoasterForce.com.xml new file mode 100644 index 000000000000..e394efcccb2c --- /dev/null +++ b/src/chrome/content/rules/CoasterForce.com.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Cobalt_Mania.com.xml b/src/chrome/content/rules/Cobalt_Mania.com.xml index e3a9c73e1208..969f0a998ad5 100644 --- a/src/chrome/content/rules/Cobalt_Mania.com.xml +++ b/src/chrome/content/rules/Cobalt_Mania.com.xml @@ -4,10 +4,10 @@ Disabled by https-everywhere-checker because: Fetch error: http://cobaltmania.com/ => https://www.cobaltmania.com/: (7, 'Failed to connect to www.cobaltmania.com port 443: Connection refused') --> - + - + diff --git a/src/chrome/content/rules/Coccoc.com.xml b/src/chrome/content/rules/Coccoc.com.xml index a953523368b7..d73bbea27152 100644 --- a/src/chrome/content/rules/Coccoc.com.xml +++ b/src/chrome/content/rules/Coccoc.com.xml @@ -3,7 +3,6 @@ - diff --git a/src/chrome/content/rules/Cock.li.xml b/src/chrome/content/rules/Cock.li.xml new file mode 100644 index 000000000000..c29d93a2feae --- /dev/null +++ b/src/chrome/content/rules/Cock.li.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Cockbox.org.xml b/src/chrome/content/rules/Cockbox.org.xml new file mode 100644 index 000000000000..ad5812986e07 --- /dev/null +++ b/src/chrome/content/rules/Cockbox.org.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/CodeAurora.xml b/src/chrome/content/rules/CodeAurora.xml index 8e6172e32f8b..09686d7c77ec 100644 --- a/src/chrome/content/rules/CodeAurora.xml +++ b/src/chrome/content/rules/CodeAurora.xml @@ -8,7 +8,7 @@ - + - diff --git a/src/chrome/content/rules/Code_Mill_Tech.com.xml b/src/chrome/content/rules/Code_Mill_Tech.com.xml index ff15fede8c53..29939e63072f 100644 --- a/src/chrome/content/rules/Code_Mill_Tech.com.xml +++ b/src/chrome/content/rules/Code_Mill_Tech.com.xml @@ -23,7 +23,7 @@ - + diff --git a/src/chrome/content/rules/Code_for_America.org.xml b/src/chrome/content/rules/Code_for_America.org.xml index 7027e96901be..5ff587aacae6 100644 --- a/src/chrome/content/rules/Code_for_America.org.xml +++ b/src/chrome/content/rules/Code_for_America.org.xml @@ -23,7 +23,7 @@ Fetch error: http://people.codeforamerica.org/ => https://people.codeforamerica. ˢ Secured by us --> - + @@ -37,7 +37,7 @@ Fetch error: http://people.codeforamerica.org/ => https://people.codeforamerica. --> - + https://codebasehq.com/: (7, 'Failed to c - www.codebasehq.com --> - + @@ -27,7 +27,7 @@ Fetch error: http://codebasehq.com/ => https://codebasehq.com/: (7, 'Failed to c - + + + + + + + + + + diff --git a/src/chrome/content/rules/CodecGuide.com.xml b/src/chrome/content/rules/CodecGuide.com.xml new file mode 100644 index 000000000000..c2a74e961413 --- /dev/null +++ b/src/chrome/content/rules/CodecGuide.com.xml @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Codecombat.com.xml b/src/chrome/content/rules/Codecombat.com.xml index b0aba90dcb5e..03699d1c8bad 100644 --- a/src/chrome/content/rules/Codecombat.com.xml +++ b/src/chrome/content/rules/Codecombat.com.xml @@ -9,11 +9,11 @@ - + - + diff --git a/src/chrome/content/rules/Codecoon.com.xml b/src/chrome/content/rules/Codecoon.com.xml index 16e65b7ac270..c4b31a84a2fa 100644 --- a/src/chrome/content/rules/Codecoon.com.xml +++ b/src/chrome/content/rules/Codecoon.com.xml @@ -18,7 +18,7 @@ Fetch error: http://www.codecoon.com/ => https://www.codecoon.com/: (51, "SSL: n * Secured by us --> - + diff --git a/src/chrome/content/rules/Codeforces.com.xml b/src/chrome/content/rules/Codeforces.com.xml new file mode 100644 index 000000000000..ee61d3843830 --- /dev/null +++ b/src/chrome/content/rules/Codeforces.com.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Codefund.io.xml b/src/chrome/content/rules/Codefund.io.xml deleted file mode 100644 index cb7d0453ea6d..000000000000 --- a/src/chrome/content/rules/Codefund.io.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Codehaus.org.xml b/src/chrome/content/rules/Codehaus.org.xml index ed2aa3d6104f..a03beccf68e9 100644 --- a/src/chrome/content/rules/Codehaus.org.xml +++ b/src/chrome/content/rules/Codehaus.org.xml @@ -24,7 +24,7 @@ Fetch error: http://jira.codehaus.org/ => https://jira.codehaus.org/: (28, 'Conn - Image on jira from www.codehaus.org --> - + diff --git a/src/chrome/content/rules/Codeplex.xml b/src/chrome/content/rules/Codeplex.xml index 1eb745bd6395..928c7373cc03 100644 --- a/src/chrome/content/rules/Codeplex.xml +++ b/src/chrome/content/rules/Codeplex.xml @@ -25,7 +25,7 @@ --> - + https://www.coderbits.com/: (28, 'Conn - (www.)? --> - + diff --git a/src/chrome/content/rules/Coderouge.co.xml b/src/chrome/content/rules/Coderouge.co.xml index 7f96a6e80d90..337efa6036ae 100644 --- a/src/chrome/content/rules/Coderouge.co.xml +++ b/src/chrome/content/rules/Coderouge.co.xml @@ -5,7 +5,7 @@ Fetch error: http://cdn.coderouge.co/ => https://cdn.coderouge.co/: (6, 'Could n Fetch error: http://git.coderouge.co/ => https://git.coderouge.co/: (6, 'Could not resolve host: git.coderouge.co') --> - + diff --git a/src/chrome/content/rules/Coderwall.xml b/src/chrome/content/rules/Coderwall.xml index e50b22d4c892..5d47273ab2ae 100644 --- a/src/chrome/content/rules/Coderwall.xml +++ b/src/chrome/content/rules/Coderwall.xml @@ -26,7 +26,7 @@ Fetch error: http://www.coderwall.com/ => https://www.coderwall.com/: (7, 'Faile - cdn (→ d2h0j0bhq7ad3b.cloudfront.net) --> - + diff --git a/src/chrome/content/rules/Codex_NS.io.xml b/src/chrome/content/rules/Codex_NS.io.xml index b2fda35e1d64..5d1d6db97e5e 100644 --- a/src/chrome/content/rules/Codex_NS.io.xml +++ b/src/chrome/content/rules/Codex_NS.io.xml @@ -11,7 +11,7 @@ Fetch error: http://rc.codexns.io/ => https://rc.codexns.io/: (60, 'SSL certific - dev.codexns.io --> - + diff --git a/src/chrome/content/rules/CodiMD.org.xml b/src/chrome/content/rules/CodiMD.org.xml new file mode 100644 index 000000000000..05a8055f713b --- /dev/null +++ b/src/chrome/content/rules/CodiMD.org.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/CodingTeam.net.xml b/src/chrome/content/rules/CodingTeam.net.xml index 133bf7ff28b8..e5551484efeb 100644 --- a/src/chrome/content/rules/CodingTeam.net.xml +++ b/src/chrome/content/rules/CodingTeam.net.xml @@ -1,8 +1,20 @@ - - - + + + + + + + + + - diff --git a/src/chrome/content/rules/Codinghorror.com.xml b/src/chrome/content/rules/Codinghorror.com.xml index e7dce456e5c9..05f3262f4047 100644 --- a/src/chrome/content/rules/Codinghorror.com.xml +++ b/src/chrome/content/rules/Codinghorror.com.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://codinghorror.com/ => https://codinghorror.com/: (51, "SSL: no alternative certificate subject name matches target host name 'codinghorror.com'") --> - + diff --git a/src/chrome/content/rules/Cognesia.net.xml b/src/chrome/content/rules/Cognesia.net.xml index b7d697c4a261..774231911092 100644 --- a/src/chrome/content/rules/Cognesia.net.xml +++ b/src/chrome/content/rules/Cognesia.net.xml @@ -9,13 +9,12 @@ --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/CohnReznick.com.xml b/src/chrome/content/rules/CohnReznick.com.xml index 149d5b720db9..047c8962be84 100644 --- a/src/chrome/content/rules/CohnReznick.com.xml +++ b/src/chrome/content/rules/CohnReznick.com.xml @@ -6,4 +6,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Coin-Swap.net.xml b/src/chrome/content/rules/Coin-Swap.net.xml deleted file mode 100644 index aa57bfb93b8e..000000000000 --- a/src/chrome/content/rules/Coin-Swap.net.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/CoinPayments.com.xml b/src/chrome/content/rules/CoinPayments.com.xml new file mode 100644 index 000000000000..cf3be4309c58 --- /dev/null +++ b/src/chrome/content/rules/CoinPayments.com.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/CoinPayments.net.xml b/src/chrome/content/rules/CoinPayments.net.xml new file mode 100644 index 000000000000..23215fea3edc --- /dev/null +++ b/src/chrome/content/rules/CoinPayments.net.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/CoinURL.com.xml b/src/chrome/content/rules/CoinURL.com.xml deleted file mode 100644 index ab7a4000bf7c..000000000000 --- a/src/chrome/content/rules/CoinURL.com.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/CoinWallet.eu.xml b/src/chrome/content/rules/CoinWallet.eu.xml deleted file mode 100644 index 7d10b69ba6e9..000000000000 --- a/src/chrome/content/rules/CoinWallet.eu.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/CoinWorker.xml b/src/chrome/content/rules/CoinWorker.xml deleted file mode 100644 index 324377644ca0..000000000000 --- a/src/chrome/content/rules/CoinWorker.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Coinkite.com.xml b/src/chrome/content/rules/Coinkite.com.xml index a8122df98511..87a510ac4b57 100644 --- a/src/chrome/content/rules/Coinkite.com.xml +++ b/src/chrome/content/rules/Coinkite.com.xml @@ -30,7 +30,7 @@ Fetch error: http://docs.coinkite.com/ => https://docs.coinkite.com/: (6, 'Could - .coinkite.com --> - + @@ -41,7 +41,7 @@ Fetch error: http://docs.coinkite.com/ => https://docs.coinkite.com/: (6, 'Could --> - + - - - - - - - - - diff --git a/src/chrome/content/rules/Coinsecure.in.xml b/src/chrome/content/rules/Coinsecure.in.xml deleted file mode 100644 index 681dbf68195b..000000000000 --- a/src/chrome/content/rules/Coinsecure.in.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Coinsh.red.xml b/src/chrome/content/rules/Coinsh.red.xml new file mode 100644 index 000000000000..e4893614d6c4 --- /dev/null +++ b/src/chrome/content/rules/Coinsh.red.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Cointelegraph.com.xml b/src/chrome/content/rules/Cointelegraph.com.xml new file mode 100644 index 000000000000..a0ad3e24d2e4 --- /dev/null +++ b/src/chrome/content/rules/Cointelegraph.com.xml @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Cointrader.net.xml b/src/chrome/content/rules/Cointrader.net.xml deleted file mode 100644 index 1121393a77a1..000000000000 --- a/src/chrome/content/rules/Cointrader.net.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Colchester.gov.uk.xml b/src/chrome/content/rules/Colchester.gov.uk.xml index cd6080b36319..2df06763e891 100644 --- a/src/chrome/content/rules/Colchester.gov.uk.xml +++ b/src/chrome/content/rules/Colchester.gov.uk.xml @@ -1,59 +1,26 @@ - - - - + - - - - - - - - - - - - - - - + diff --git a/src/chrome/content/rules/Coles.com.au.xml b/src/chrome/content/rules/Coles.com.au.xml new file mode 100644 index 000000000000..0c500145845e --- /dev/null +++ b/src/chrome/content/rules/Coles.com.au.xml @@ -0,0 +1,172 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ColesExpress.com.au.xml b/src/chrome/content/rules/ColesExpress.com.au.xml new file mode 100644 index 000000000000..8a5751f4ed4d --- /dev/null +++ b/src/chrome/content/rules/ColesExpress.com.au.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Coletivos.org.xml b/src/chrome/content/rules/Coletivos.org.xml new file mode 100644 index 000000000000..435a1db045d6 --- /dev/null +++ b/src/chrome/content/rules/Coletivos.org.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/CollabNet.xml b/src/chrome/content/rules/CollabNet.xml index 34e9db7ae052..7150325fa31a 100644 --- a/src/chrome/content/rules/CollabNet.xml +++ b/src/chrome/content/rules/CollabNet.xml @@ -38,7 +38,13 @@ - + + + + + + + diff --git a/src/chrome/content/rules/Collabnix.com.xml b/src/chrome/content/rules/Collabnix.com.xml new file mode 100644 index 000000000000..923beae69d81 --- /dev/null +++ b/src/chrome/content/rules/Collabnix.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Collabora-mismatches.xml b/src/chrome/content/rules/Collabora-mismatches.xml deleted file mode 100644 index 8729496d6630..000000000000 --- a/src/chrome/content/rules/Collabora-mismatches.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Collabora.xml b/src/chrome/content/rules/Collabora.xml deleted file mode 100644 index 80f6ee2ed5eb..000000000000 --- a/src/chrome/content/rules/Collabora.xml +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Collateral_Murder.xml b/src/chrome/content/rules/Collateral_Murder.xml index b502baae3381..eb033f725e56 100644 --- a/src/chrome/content/rules/Collateral_Murder.xml +++ b/src/chrome/content/rules/Collateral_Murder.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Collective-Media.xml b/src/chrome/content/rules/Collective-Media.xml index 12586a6e113b..d147f39ee85f 100644 --- a/src/chrome/content/rules/Collective-Media.xml +++ b/src/chrome/content/rules/Collective-Media.xml @@ -28,7 +28,7 @@ - + - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/CollegeNET.com.xml b/src/chrome/content/rules/CollegeNET.com.xml index 086af8d253f8..8c40f69ac1a3 100644 --- a/src/chrome/content/rules/CollegeNET.com.xml +++ b/src/chrome/content/rules/CollegeNET.com.xml @@ -19,7 +19,7 @@ - + https://ufl.collegiatelink.net/: ^collegiatelink.net does not exist. --> - + @@ -114,7 +114,7 @@ Fetch error: http://ufl.collegiatelink.net/ => https://ufl.collegiatelink.net/: - + - - - - diff --git a/src/chrome/content/rules/Collings_Foundation.org.xml b/src/chrome/content/rules/Collings_Foundation.org.xml index 6ff1acc22379..109252f191ca 100644 --- a/src/chrome/content/rules/Collings_Foundation.org.xml +++ b/src/chrome/content/rules/Collings_Foundation.org.xml @@ -9,7 +9,7 @@ - + https://mail.collyers.ac.uk/: (6, 'Could not resolve host: mail.collyers.ac.uk') --> - - - - - - - - - - - - - - + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Colocation_America.com.xml b/src/chrome/content/rules/Colocation_America.com.xml index 1596aad2261c..9be5aa92c963 100644 --- a/src/chrome/content/rules/Colocation_America.com.xml +++ b/src/chrome/content/rules/Colocation_America.com.xml @@ -20,13 +20,6 @@ - - - - - - @@ -54,9 +47,6 @@ - - diff --git a/src/chrome/content/rules/Colocore.ch.xml b/src/chrome/content/rules/Colocore.ch.xml index 8f33c414b30e..57b915d861c5 100644 --- a/src/chrome/content/rules/Colocore.ch.xml +++ b/src/chrome/content/rules/Colocore.ch.xml @@ -1,13 +1,7 @@ - - - + + diff --git a/src/chrome/content/rules/Color-Of-Change.xml b/src/chrome/content/rules/Color-Of-Change.xml index 102d5f37caf6..42475963d461 100644 --- a/src/chrome/content/rules/Color-Of-Change.xml +++ b/src/chrome/content/rules/Color-Of-Change.xml @@ -1,27 +1,15 @@ - - - + - - - - - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Colorado-Attorney-General.xml b/src/chrome/content/rules/Colorado-Attorney-General.xml index efd6599da1f7..1283cd4a8fdb 100644 --- a/src/chrome/content/rules/Colorado-Attorney-General.xml +++ b/src/chrome/content/rules/Colorado-Attorney-General.xml @@ -5,9 +5,9 @@ Fetch error: http://coloradoattorneygeneral.gov/ => https://www.coloradoattorney Fetch error: http://www.coloradoattorneygeneral.gov/ => https://www.coloradoattorneygeneral.gov/: (51, "SSL: no alternative certificate subject name matches target host name 'www.coloradoattorneygeneral.gov'") --> - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Colorado-No-Call-List.xml b/src/chrome/content/rules/Colorado-No-Call-List.xml index a7750cdc4d33..801f512d1149 100644 --- a/src/chrome/content/rules/Colorado-No-Call-List.xml +++ b/src/chrome/content/rules/Colorado-No-Call-List.xml @@ -3,4 +3,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Colorado_Captures.xml b/src/chrome/content/rules/Colorado_Captures.xml index d69917a9cc2d..c02641b95b60 100644 --- a/src/chrome/content/rules/Colorado_Captures.xml +++ b/src/chrome/content/rules/Colorado_Captures.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Coloradoan.xml b/src/chrome/content/rules/Coloradoan.xml index 8410edc3a1ed..131b038570bd 100644 --- a/src/chrome/content/rules/Coloradoan.xml +++ b/src/chrome/content/rules/Coloradoan.xml @@ -26,10 +26,11 @@ - + + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Colordiff.org.xml b/src/chrome/content/rules/Colordiff.org.xml new file mode 100644 index 000000000000..a4386135f522 --- /dev/null +++ b/src/chrome/content/rules/Colordiff.org.xml @@ -0,0 +1,17 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Colors-il.com.xml b/src/chrome/content/rules/Colors-il.com.xml index 4cfb128b3582..c97edcbb4c32 100644 --- a/src/chrome/content/rules/Colors-il.com.xml +++ b/src/chrome/content/rules/Colors-il.com.xml @@ -7,7 +7,7 @@ Fetch error: http://www.colors-il.com/ => https://www.colors-il.com/: (51, "SSL: Disabled by https-everywhere-checker because: Fetch error: http://colors-il.com/ => https://colors-il.com/: (51, "SSL: no alternative certificate subject name matches target host name 'colors-il.com'") --> - + @@ -18,4 +18,4 @@ Fetch error: http://colors-il.com/ => https://colors-il.com/: (51, "SSL: no alte - \ No newline at end of file + diff --git a/src/chrome/content/rules/Columbia_University-problematic.xml b/src/chrome/content/rules/Columbia_University-problematic.xml index 37e780165c95..53cbfedd380e 100644 --- a/src/chrome/content/rules/Columbia_University-problematic.xml +++ b/src/chrome/content/rules/Columbia_University-problematic.xml @@ -13,8 +13,7 @@ - - + @@ -22,13 +21,12 @@ - + - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Columbia_University.xml b/src/chrome/content/rules/Columbia_University.xml index 637ae670fdbf..7944cf358642 100644 --- a/src/chrome/content/rules/Columbia_University.xml +++ b/src/chrome/content/rules/Columbia_University.xml @@ -4,7 +4,7 @@ cu.custhelp.com columbia.studioabroad.com - academiccommons.uservoice.com + academiccommons.uservoice.com Nonfunctional subdomains: @@ -42,6 +42,7 @@ - (www.)energy ⁴ - (www.)environment *** - events ⁹ + - hr (403/404) - share.facil - (www.)mailman.hs ⁷ - irvinginstitute @@ -50,7 +51,7 @@ - (www.)learn ⁶ - (www.)mailmain ⁷ - (www.)neighbors * - - (www.)pathology *** + - (www.)pathology *** - (www.)publichealth - (www.)sas ⁹ - search @@ -71,7 +72,7 @@ ⁶ Times out ⁷ record_too_long ⁸ Shows columbiadoctors, mismatched, CN: columbiadoctors - ⁹ Prints "Incorrect URL" + ⁹ Prints 'Incorrect URL' Problematic subdomains: @@ -282,7 +283,7 @@ - .procurement.columbia.edu --> - + - + @@ -11,7 +7,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/ComCav.com.xml b/src/chrome/content/rules/ComCav.com.xml index 3c53a3e06d0a..7d28970bc744 100644 --- a/src/chrome/content/rules/ComCav.com.xml +++ b/src/chrome/content/rules/ComCav.com.xml @@ -6,7 +6,7 @@ Fetch error: http://comcav.com/ => https://comcav.com/: (51, "SSL: no alternativ Disabled by https-everywhere-checker because: Fetch error: http://comcav.com/ => https://comcav.com/: (6, 'Could not resolve host: comcav.com') --> - + @@ -17,4 +17,4 @@ Fetch error: http://comcav.com/ => https://comcav.com/: (6, 'Could not resolve h - \ No newline at end of file + diff --git a/src/chrome/content/rules/ComNews-Conferences.xml b/src/chrome/content/rules/ComNews-Conferences.xml index c575e87be687..a9ce3ad03ad6 100644 --- a/src/chrome/content/rules/ComNews-Conferences.xml +++ b/src/chrome/content/rules/ComNews-Conferences.xml @@ -11,7 +11,7 @@ - + - + - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/ComSuper.xml b/src/chrome/content/rules/ComSuper.xml deleted file mode 100644 index 3f5f2db360c8..000000000000 --- a/src/chrome/content/rules/ComSuper.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Comcast.net.xml b/src/chrome/content/rules/Comcast.net.xml index 14813c46d1f9..bbf43a90ce1e 100644 --- a/src/chrome/content/rules/Comcast.net.xml +++ b/src/chrome/content/rules/Comcast.net.xml @@ -49,7 +49,7 @@ Fetch error: http://voice.connect.comcast.net/ => https://voice.connect.comcast. - Images on login from por-img.cimcontent.net --> - + @@ -75,7 +75,7 @@ Fetch error: http://voice.connect.comcast.net/ => https://voice.connect.comcast. - + https://www.comcast.com/ (40 ᵐ Not secured by us <= mismatched --> - + @@ -108,7 +108,7 @@ Non-2xx HTTP code: http://www.comcast.com/ (200) => https://www.comcast.com/ (40 - + - - - - - - diff --git a/src/chrome/content/rules/Comegacity.com.xml b/src/chrome/content/rules/Comegacity.com.xml new file mode 100644 index 000000000000..cdecab7da50b --- /dev/null +++ b/src/chrome/content/rules/Comegacity.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/ComiXology.com.xml b/src/chrome/content/rules/ComiXology.com.xml index 4c013ff0572b..7560050fd2ba 100644 --- a/src/chrome/content/rules/ComiXology.com.xml +++ b/src/chrome/content/rules/ComiXology.com.xml @@ -1,95 +1,51 @@ - - + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + - - - - - - - - - - - - - - - - - - - - - - + diff --git a/src/chrome/content/rules/Comic-Con-Intl.xml b/src/chrome/content/rules/Comic-Con-Intl.xml index 25f030e7ba35..0ee51800f839 100644 --- a/src/chrome/content/rules/Comic-Con-Intl.xml +++ b/src/chrome/content/rules/Comic-Con-Intl.xml @@ -1,18 +1,16 @@ - - - - + + + - - - - - - + + + - + diff --git a/src/chrome/content/rules/ComicFury.xml b/src/chrome/content/rules/ComicFury.xml index 70b8689af348..944287de283f 100644 --- a/src/chrome/content/rules/ComicFury.xml +++ b/src/chrome/content/rules/ComicFury.xml @@ -1,26 +1,26 @@ - + diff --git a/src/chrome/content/rules/Comiket.co.jp.xml b/src/chrome/content/rules/Comiket.co.jp.xml new file mode 100644 index 000000000000..c1d3ca596e95 --- /dev/null +++ b/src/chrome/content/rules/Comiket.co.jp.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Comkort.com.xml b/src/chrome/content/rules/Comkort.com.xml index b9478b52e689..25fbb92945bf 100644 --- a/src/chrome/content/rules/Comkort.com.xml +++ b/src/chrome/content/rules/Comkort.com.xml @@ -14,7 +14,7 @@ Fetch error: http://www.comkort.com/ => https://www.comkort.com/: (6, 'Could not - .comkort.com --> - + diff --git a/src/chrome/content/rules/Comm100.cn.xml b/src/chrome/content/rules/Comm100.cn.xml deleted file mode 100644 index 02d755b718db..000000000000 --- a/src/chrome/content/rules/Comm100.cn.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/CommScope.com.xml b/src/chrome/content/rules/CommScope.com.xml index bf75526e9fd2..562dd5506627 100644 --- a/src/chrome/content/rules/CommScope.com.xml +++ b/src/chrome/content/rules/CommScope.com.xml @@ -19,7 +19,7 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Commando_Boxing.com.xml b/src/chrome/content/rules/Commando_Boxing.com.xml index fb5e01e26d7b..509e896e884d 100644 --- a/src/chrome/content/rules/Commando_Boxing.com.xml +++ b/src/chrome/content/rules/Commando_Boxing.com.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.commandoboxing.com/ => https://www.commandoboxing.com/: (6, 'Could not resolve host: www.commandoboxing.com') --> - + diff --git a/src/chrome/content/rules/Commbank.com.au.xml b/src/chrome/content/rules/Commbank.com.au.xml new file mode 100644 index 000000000000..f5ee61855f35 --- /dev/null +++ b/src/chrome/content/rules/Commbank.com.au.xml @@ -0,0 +1,247 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Commbank.xml b/src/chrome/content/rules/Commbank.xml deleted file mode 100644 index aecba6db15a7..000000000000 --- a/src/chrome/content/rules/Commbank.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Commentary_Magazine.com.xml b/src/chrome/content/rules/Commentary_Magazine.com.xml index cc45e0c48d37..b4d6da763c84 100644 --- a/src/chrome/content/rules/Commentary_Magazine.com.xml +++ b/src/chrome/content/rules/Commentary_Magazine.com.xml @@ -26,7 +26,7 @@ --> - + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Commindo-media.xml b/src/chrome/content/rules/Commindo-media.xml deleted file mode 100644 index 747b4c58e534..000000000000 --- a/src/chrome/content/rules/Commindo-media.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Commission_Junction.xml b/src/chrome/content/rules/Commission_Junction.xml index fca844c691a2..ec1d2e2f1908 100644 --- a/src/chrome/content/rules/Commission_Junction.xml +++ b/src/chrome/content/rules/Commission_Junction.xml @@ -30,7 +30,6 @@ - @@ -44,7 +43,7 @@ - + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Commodity_Futures_Trading_Commission.xml b/src/chrome/content/rules/Commodity_Futures_Trading_Commission.xml deleted file mode 100644 index ba9006dc724f..000000000000 --- a/src/chrome/content/rules/Commodity_Futures_Trading_Commission.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Common-App.xml b/src/chrome/content/rules/Common-App.xml deleted file mode 100644 index 432dd2f88183..000000000000 --- a/src/chrome/content/rules/Common-App.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/CommonCrawl.xml b/src/chrome/content/rules/CommonCrawl.xml index d0b49db5bca1..84f7dd767aac 100644 --- a/src/chrome/content/rules/CommonCrawl.xml +++ b/src/chrome/content/rules/CommonCrawl.xml @@ -6,4 +6,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/CommonDreams.org.xml b/src/chrome/content/rules/CommonDreams.org.xml index 17b22f37804d..b9969c0bb265 100644 --- a/src/chrome/content/rules/CommonDreams.org.xml +++ b/src/chrome/content/rules/CommonDreams.org.xml @@ -9,7 +9,7 @@ - + diff --git a/src/chrome/content/rules/Common_Criteria_Portal.xml b/src/chrome/content/rules/Common_Criteria_Portal.xml index e867a20b98f5..8ef7ac2d55ea 100644 --- a/src/chrome/content/rules/Common_Criteria_Portal.xml +++ b/src/chrome/content/rules/Common_Criteria_Portal.xml @@ -8,7 +8,7 @@ - + diff --git a/src/chrome/content/rules/CommonwealthCourtsPortal.xml b/src/chrome/content/rules/CommonwealthCourtsPortal.xml index a3c207e373da..345db6763489 100644 --- a/src/chrome/content/rules/CommonwealthCourtsPortal.xml +++ b/src/chrome/content/rules/CommonwealthCourtsPortal.xml @@ -1,7 +1,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/CommonwealthGITC.xml b/src/chrome/content/rules/CommonwealthGITC.xml index cf62b48c63ad..d97cb3879be6 100644 --- a/src/chrome/content/rules/CommonwealthGITC.xml +++ b/src/chrome/content/rules/CommonwealthGITC.xml @@ -6,10 +6,10 @@ Fetch error: http://gitc.finance.gov.au/ => https://www.gitc.finance.gov.au/: (2 Automatically by https-everywhere-checker because: Fetch error: http://gitc.finance.gov.au/ => https://www.gitc.finance.gov.au/: (6, 'Could not resolve host: gitc.finance.gov.au') --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/CommonwealthGrantsCommission.xml b/src/chrome/content/rules/CommonwealthGrantsCommission.xml index 3a5c05ce4a42..ba389ae12f74 100644 --- a/src/chrome/content/rules/CommonwealthGrantsCommission.xml +++ b/src/chrome/content/rules/CommonwealthGrantsCommission.xml @@ -1,7 +1,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/CommonwealthSuperannuationCorporation.xml b/src/chrome/content/rules/CommonwealthSuperannuationCorporation.xml index 8abf04ba42ca..3e07bc4c29a1 100644 --- a/src/chrome/content/rules/CommonwealthSuperannuationCorporation.xml +++ b/src/chrome/content/rules/CommonwealthSuperannuationCorporation.xml @@ -1,7 +1,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Commotionwireless.net.xml b/src/chrome/content/rules/Commotionwireless.net.xml index 320192cfb191..961e01622007 100644 --- a/src/chrome/content/rules/Commotionwireless.net.xml +++ b/src/chrome/content/rules/Commotionwireless.net.xml @@ -6,7 +6,7 @@ Fetch error: http://wiki.commotionwireless.net/ => https://wiki.commotionwireles Mismatch: - code --> - + diff --git a/src/chrome/content/rules/CommuniGate.xml b/src/chrome/content/rules/CommuniGate.xml index d4eb09f280fd..eecff69c9b8d 100644 --- a/src/chrome/content/rules/CommuniGate.xml +++ b/src/chrome/content/rules/CommuniGate.xml @@ -1,6 +1,6 @@ - + diff --git a/src/chrome/content/rules/CommuniGator.co.uk.xml b/src/chrome/content/rules/CommuniGator.co.uk.xml index 397c0c715e77..fd4d61b264ed 100644 --- a/src/chrome/content/rules/CommuniGator.co.uk.xml +++ b/src/chrome/content/rules/CommuniGator.co.uk.xml @@ -16,13 +16,13 @@ - + + - + diff --git a/src/chrome/content/rules/Communicate_Live.xml b/src/chrome/content/rules/Communicate_Live.xml index a5e9decf16ba..ce934f722212 100644 --- a/src/chrome/content/rules/Communicate_Live.xml +++ b/src/chrome/content/rules/Communicate_Live.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Community.wbgames.com.xml b/src/chrome/content/rules/Community.wbgames.com.xml index 2d091d6f8906..36937a09ea55 100644 --- a/src/chrome/content/rules/Community.wbgames.com.xml +++ b/src/chrome/content/rules/Community.wbgames.com.xml @@ -11,7 +11,7 @@ Fetch error: http://wbplay.wbgames.com/ => https://wbplay.wbgames.com/: (60, 'SS - community.wbgames.com --> - + diff --git a/src/chrome/content/rules/Community_Matters.xml b/src/chrome/content/rules/Community_Matters.xml index eb143e08ca6b..0277d8147906 100644 --- a/src/chrome/content/rules/Community_Matters.xml +++ b/src/chrome/content/rules/Community_Matters.xml @@ -13,7 +13,7 @@ Fetch error: http://trac.hohndel.org/ => https://trac.hohndel.org/: (51, "SSL: n * Shows subsurface --> - + @@ -25,4 +25,4 @@ Fetch error: http://trac.hohndel.org/ => https://trac.hohndel.org/: (51, "SSL: n - \ No newline at end of file + diff --git a/src/chrome/content/rules/Comodo.xml b/src/chrome/content/rules/Comodo.xml index aafbd2006bb8..fbe07039ec06 100644 --- a/src/chrome/content/rules/Comodo.xml +++ b/src/chrome/content/rules/Comodo.xml @@ -59,7 +59,30 @@ - + + + + + + + + + + + + + + + + + + + + + + + + @@ -72,14 +95,10 @@ - - @@ -87,11 +106,10 @@ to="https://app.webinspector.com/" /> - + diff --git a/src/chrome/content/rules/CompEx.xml b/src/chrome/content/rules/CompEx.xml index aa2288136a05..5421bdca58e0 100644 --- a/src/chrome/content/rules/CompEx.xml +++ b/src/chrome/content/rules/CompEx.xml @@ -1,12 +1,12 @@ - + - + - - + + diff --git a/src/chrome/content/rules/CompaniesHouse.xml b/src/chrome/content/rules/CompaniesHouse.xml index abd5003aba8b..0eb79153d13b 100644 --- a/src/chrome/content/rules/CompaniesHouse.xml +++ b/src/chrome/content/rules/CompaniesHouse.xml @@ -99,7 +99,7 @@ - + - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Compaq.com.xml b/src/chrome/content/rules/Compaq.com.xml deleted file mode 100644 index e49b6374260c..000000000000 --- a/src/chrome/content/rules/Compaq.com.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/CompareTheMarket.xml b/src/chrome/content/rules/CompareTheMarket.xml index 014cce6c58b6..214b9d9412c6 100644 --- a/src/chrome/content/rules/CompareTheMarket.xml +++ b/src/chrome/content/rules/CompareTheMarket.xml @@ -41,7 +41,7 @@ Fetch error: http://contact.comparethemarket.com/ => https://contact.comparethem - www.comparethemarket.com --> - + @@ -74,7 +74,7 @@ Fetch error: http://contact.comparethemarket.com/ => https://contact.comparethem - + - + diff --git a/src/chrome/content/rules/CompassIslam.com.xml b/src/chrome/content/rules/CompassIslam.com.xml deleted file mode 100644 index aa14273bf26e..000000000000 --- a/src/chrome/content/rules/CompassIslam.com.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Compasscard.ca.xml b/src/chrome/content/rules/Compasscard.ca.xml deleted file mode 100644 index b388deafb0f5..000000000000 --- a/src/chrome/content/rules/Compasscard.ca.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Compendium.com.xml b/src/chrome/content/rules/Compendium.com.xml index b2b0bdaf1dfe..1348998a3eb0 100644 --- a/src/chrome/content/rules/Compendium.com.xml +++ b/src/chrome/content/rules/Compendium.com.xml @@ -15,7 +15,7 @@ Fetch error: http://www.compendium.com/ => https://www.oracle.com/us/corporate/a - imagefilter.app.compendium.com --> - + diff --git a/src/chrome/content/rules/Compendium.xml b/src/chrome/content/rules/Compendium.xml deleted file mode 100644 index 826eafd745d6..000000000000 --- a/src/chrome/content/rules/Compendium.xml +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Compete.xml b/src/chrome/content/rules/Compete.xml index 3bcb309e3e89..48c8e206be6f 100644 --- a/src/chrome/content/rules/Compete.xml +++ b/src/chrome/content/rules/Compete.xml @@ -23,7 +23,7 @@ Fetch error: http://c.compete.com/ => https://c.compete.com/: (6, 'Could not res - srp --> - + @@ -47,7 +47,7 @@ Fetch error: http://c.compete.com/ => https://c.compete.com/: (6, 'Could not res - + + + + + + + diff --git a/src/chrome/content/rules/Competitive_Enterprise_Institute-problematic.xml b/src/chrome/content/rules/Competitive_Enterprise_Institute-problematic.xml index 35ad0e759ed4..f4892140b3fe 100644 --- a/src/chrome/content/rules/Competitive_Enterprise_Institute-problematic.xml +++ b/src/chrome/content/rules/Competitive_Enterprise_Institute-problematic.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Competitive_Enterprise_Institute.xml b/src/chrome/content/rules/Competitive_Enterprise_Institute.xml index efc67498aee9..a7058e435a7a 100644 --- a/src/chrome/content/rules/Competitive_Enterprise_Institute.xml +++ b/src/chrome/content/rules/Competitive_Enterprise_Institute.xml @@ -13,7 +13,7 @@ Fetch error: http://shop.cei.org/ => https://shop.cei.org/: (60, 'SSL certificat - (www.) (expired 2011-06-12, CN: plesk) --> - + @@ -21,7 +21,6 @@ Fetch error: http://shop.cei.org/ => https://shop.cei.org/: (60, 'SSL certificat - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Compiz-themes.org.xml b/src/chrome/content/rules/Compiz-themes.org.xml deleted file mode 100644 index f4f216ed130e..000000000000 --- a/src/chrome/content/rules/Compiz-themes.org.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Compiz.xml b/src/chrome/content/rules/Compiz.xml index d5583b007192..80c2b5b171cb 100644 --- a/src/chrome/content/rules/Compiz.xml +++ b/src/chrome/content/rules/Compiz.xml @@ -1,9 +1,23 @@ - + + + + + + + + - + + + + + + + + @@ -11,6 +25,6 @@ - + diff --git a/src/chrome/content/rules/CompletelyPrivateFiles.com.xml b/src/chrome/content/rules/CompletelyPrivateFiles.com.xml index 793cf4289e53..1b6a59c2fdeb 100644 --- a/src/chrome/content/rules/CompletelyPrivateFiles.com.xml +++ b/src/chrome/content/rules/CompletelyPrivateFiles.com.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://completelyprivatefiles.com/ => https://completelyprivatefiles.com/: (35, 'error:14094410:SSL routines:SSL3_READ_BYTES:sslv3 alert handshake failure') Fetch error: http://www.completelyprivatefiles.com/ => https://www.completelyprivatefiles.com/: (35, 'error:14094410:SSL routines:SSL3_READ_BYTES:sslv3 alert handshake failure') --> - + @@ -16,4 +16,4 @@ Fetch error: http://www.completelyprivatefiles.com/ => https://www.completelypri - \ No newline at end of file + diff --git a/src/chrome/content/rules/ComplianceSigns.com.xml b/src/chrome/content/rules/ComplianceSigns.com.xml index 2c51336f04c2..8454b8327b2f 100644 --- a/src/chrome/content/rules/ComplianceSigns.com.xml +++ b/src/chrome/content/rules/ComplianceSigns.com.xml @@ -36,7 +36,8 @@ - + + - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Comprehensive-C-Archive-Network.xml b/src/chrome/content/rules/Comprehensive-C-Archive-Network.xml deleted file mode 100644 index 0a84139edbeb..000000000000 --- a/src/chrome/content/rules/Comprehensive-C-Archive-Network.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Compteur.fr.xml b/src/chrome/content/rules/Compteur.fr.xml index 4f77274ea777..fd540e587599 100644 --- a/src/chrome/content/rules/Compteur.fr.xml +++ b/src/chrome/content/rules/Compteur.fr.xml @@ -18,7 +18,7 @@ --> - + - + - + diff --git a/src/chrome/content/rules/Computer-Steroids.xml b/src/chrome/content/rules/Computer-Steroids.xml index 9235a788acad..7e668b699645 100644 --- a/src/chrome/content/rules/Computer-Steroids.xml +++ b/src/chrome/content/rules/Computer-Steroids.xml @@ -33,7 +33,7 @@ - + diff --git a/src/chrome/content/rules/ComputerCraft.ru.xml b/src/chrome/content/rules/ComputerCraft.ru.xml new file mode 100644 index 000000000000..9ce070d77ffe --- /dev/null +++ b/src/chrome/content/rules/ComputerCraft.ru.xml @@ -0,0 +1,20 @@ + + + + + + + + diff --git a/src/chrome/content/rules/ComputerWoche.de.xml b/src/chrome/content/rules/ComputerWoche.de.xml new file mode 100644 index 000000000000..5ebb39836ba8 --- /dev/null +++ b/src/chrome/content/rules/ComputerWoche.de.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ComputerWorld.xml b/src/chrome/content/rules/ComputerWorld.xml index 99ba80a9e451..7aea1c16cdd2 100644 --- a/src/chrome/content/rules/ComputerWorld.xml +++ b/src/chrome/content/rules/ComputerWorld.xml @@ -1,133 +1,63 @@ - - - + - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - - - - + to="https://eiseverywhere.com/ehome/Computerworld/" /> + diff --git a/src/chrome/content/rules/Computer_Fulfillment.xml b/src/chrome/content/rules/Computer_Fulfillment.xml index 324d0c747000..d430cbb5e4e4 100644 --- a/src/chrome/content/rules/Computer_Fulfillment.xml +++ b/src/chrome/content/rules/Computer_Fulfillment.xml @@ -11,7 +11,7 @@ Fetch error: http://computerfulfillment.com/ => https://www.computerfulfillment. - ^ (cert only matches www) --> - + @@ -20,4 +20,4 @@ Fetch error: http://computerfulfillment.com/ => https://www.computerfulfillment. - \ No newline at end of file + diff --git a/src/chrome/content/rules/Computer_Libya.xml b/src/chrome/content/rules/Computer_Libya.xml deleted file mode 100644 index d031075d0a8b..000000000000 --- a/src/chrome/content/rules/Computer_Libya.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/ComputersnYou.com.xml b/src/chrome/content/rules/ComputersnYou.com.xml index b5d37a5c25ff..b9fb53335398 100644 --- a/src/chrome/content/rules/ComputersnYou.com.xml +++ b/src/chrome/content/rules/ComputersnYou.com.xml @@ -31,7 +31,7 @@ --> - + https://www.gomez.com/: (28, 'Connection t - ^gomez.com (expired, self-signed) --> - + diff --git a/src/chrome/content/rules/Comunio.de.xml b/src/chrome/content/rules/Comunio.de.xml new file mode 100644 index 000000000000..0aca484823c0 --- /dev/null +++ b/src/chrome/content/rules/Comunio.de.xml @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Comviq.se.xml b/src/chrome/content/rules/Comviq.se.xml index f54faa32ad90..6aa2f2ced077 100644 --- a/src/chrome/content/rules/Comviq.se.xml +++ b/src/chrome/content/rules/Comviq.se.xml @@ -2,7 +2,6 @@ - - + diff --git a/src/chrome/content/rules/Con-tech.de.xml b/src/chrome/content/rules/Con-tech.de.xml index e504a568bd33..0ac68a23dea9 100644 --- a/src/chrome/content/rules/Con-tech.de.xml +++ b/src/chrome/content/rules/Con-tech.de.xml @@ -15,7 +15,7 @@ Fetch error: http://ct-cds.con-tech.de/ => https://ct-cds.con-tech.de/: (7, 'Fai - stat02 (works; expired 2012-03-01, self-signed, CN: Parallels Panel) --> - + @@ -23,7 +23,6 @@ Fetch error: http://ct-cds.con-tech.de/ => https://ct-cds.con-tech.de/: (7, 'Fai - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/ConSecur.xml b/src/chrome/content/rules/ConSecur.xml index 7e71508aacd0..1b118d4d2490 100644 --- a/src/chrome/content/rules/ConSecur.xml +++ b/src/chrome/content/rules/ConSecur.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Concrete5.xml b/src/chrome/content/rules/Concrete5.xml index 4bca3f99bac4..ab78d56ebeb0 100644 --- a/src/chrome/content/rules/Concrete5.xml +++ b/src/chrome/content/rules/Concrete5.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/ConcreteConstruction.net.xml b/src/chrome/content/rules/ConcreteConstruction.net.xml new file mode 100644 index 000000000000..2ecb8c7bd325 --- /dev/null +++ b/src/chrome/content/rules/ConcreteConstruction.net.xml @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Concur.com.xml b/src/chrome/content/rules/Concur.com.xml index 9be3c81ee9ea..04eacb1d18f2 100644 --- a/src/chrome/content/rules/Concur.com.xml +++ b/src/chrome/content/rules/Concur.com.xml @@ -13,7 +13,10 @@ - + + + + - - - - - - - - - - - - + @@ -58,14 +33,6 @@ - - - - + diff --git a/src/chrome/content/rules/Conde-Nast.xml b/src/chrome/content/rules/Conde-Nast.xml index 6f32153fa3bd..f102612d09dd 100644 --- a/src/chrome/content/rules/Conde-Nast.xml +++ b/src/chrome/content/rules/Conde-Nast.xml @@ -1,24 +1,19 @@ - - - - - - + - + + + - - - + diff --git a/src/chrome/content/rules/Conde_Nast.co.uk.xml b/src/chrome/content/rules/Conde_Nast.co.uk.xml deleted file mode 100644 index 2c039465d217..000000000000 --- a/src/chrome/content/rules/Conde_Nast.co.uk.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Conde_Nast_Digital.com.xml b/src/chrome/content/rules/Conde_Nast_Digital.com.xml index db68808d2a03..1d88343e8cd1 100644 --- a/src/chrome/content/rules/Conde_Nast_Digital.com.xml +++ b/src/chrome/content/rules/Conde_Nast_Digital.com.xml @@ -1,15 +1,76 @@ - + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Conde_Nast_Traveler-problematic.xml b/src/chrome/content/rules/Conde_Nast_Traveler-problematic.xml index 9cf6b8f400f5..5e363b14b8e1 100644 --- a/src/chrome/content/rules/Conde_Nast_Traveler-problematic.xml +++ b/src/chrome/content/rules/Conde_Nast_Traveler-problematic.xml @@ -23,4 +23,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Conde_Nast_Traveler.xml b/src/chrome/content/rules/Conde_Nast_Traveler.xml index 1c07a0156a83..782df38563b7 100644 --- a/src/chrome/content/rules/Conde_Nast_Traveler.xml +++ b/src/chrome/content/rules/Conde_Nast_Traveler.xml @@ -29,7 +29,8 @@ --> - + + - + diff --git a/src/chrome/content/rules/Condenet.com.xml b/src/chrome/content/rules/Condenet.com.xml index f04503378b81..ac351acc8fa1 100644 --- a/src/chrome/content/rules/Condenet.com.xml +++ b/src/chrome/content/rules/Condenet.com.xml @@ -12,7 +12,7 @@ - Bug on subscribe from condenast.112.2o7.net * * Secured by us - - + - --> diff --git a/src/chrome/content/rules/Condominiums_for_Everyone.xml b/src/chrome/content/rules/Condominiums_for_Everyone.xml index e36dafe8cd0f..370593e2d049 100644 --- a/src/chrome/content/rules/Condominiums_for_Everyone.xml +++ b/src/chrome/content/rules/Condominiums_for_Everyone.xml @@ -8,10 +8,10 @@ Fetch error: http://condosforeveryone.com/ => https://www.condosforeveryone.com/ !www times out. --> - + - + diff --git a/src/chrome/content/rules/Conduit-data.com.xml b/src/chrome/content/rules/Conduit-data.com.xml index dd3818adc995..00aaa0080b07 100644 --- a/src/chrome/content/rules/Conduit-data.com.xml +++ b/src/chrome/content/rules/Conduit-data.com.xml @@ -23,4 +23,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Conduit-problematic.xml b/src/chrome/content/rules/Conduit-problematic.xml index 5f5dc80f724d..c701640b6455 100644 --- a/src/chrome/content/rules/Conduit-problematic.xml +++ b/src/chrome/content/rules/Conduit-problematic.xml @@ -7,7 +7,6 @@ - + diff --git a/src/chrome/content/rules/Conduit.xml b/src/chrome/content/rules/Conduit.xml index 1c7e2aaebfd3..d1ba48ddc939 100644 --- a/src/chrome/content/rules/Conduit.xml +++ b/src/chrome/content/rules/Conduit.xml @@ -45,10 +45,18 @@ Fetch error: http://conduit.com/ => https://conduit.com/: (60, 'SSL certificate ² Secured by us --> - + - + + + + + + + + + diff --git a/src/chrome/content/rules/Confederation_of_Danish_Industry.xml b/src/chrome/content/rules/Confederation_of_Danish_Industry.xml index 02809b420a32..27113940ee4d 100644 --- a/src/chrome/content/rules/Confederation_of_Danish_Industry.xml +++ b/src/chrome/content/rules/Confederation_of_Danish_Industry.xml @@ -8,7 +8,7 @@ Non-2xx HTTP code: http://itek.di.dk/ (200) => https://itek.di.dk/ (503) - (www.) ($ & sitecollectionimages/ 404) --> - + @@ -21,4 +21,4 @@ Non-2xx HTTP code: http://itek.di.dk/ (200) => https://itek.di.dk/ (503) - \ No newline at end of file + diff --git a/src/chrome/content/rules/Confirmit.xml b/src/chrome/content/rules/Confirmit.xml index f17e77e078ac..aecfaf63e30a 100644 --- a/src/chrome/content/rules/Confirmit.xml +++ b/src/chrome/content/rules/Confirmit.xml @@ -18,13 +18,22 @@ - + + + + + + + + + + + - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Conformal-Systems.xml b/src/chrome/content/rules/Conformal-Systems.xml index c4229dcaa442..d5e88137fd48 100644 --- a/src/chrome/content/rules/Conformal-Systems.xml +++ b/src/chrome/content/rules/Conformal-Systems.xml @@ -17,7 +17,7 @@ Fetch error: http://www.conformal.com/ => https://www.conformal.com/: (6, 'Could - opensource --> - + @@ -27,7 +27,7 @@ Fetch error: http://www.conformal.com/ => https://www.conformal.com/: (6, 'Could - + - + https://mgm.congstar.de/: (51, "SSL: no alternative certificate subject name matches target host name 'mgm.congstar.de'") - Other congstar rulesets: - Congstar-media.de.xml @@ -26,15 +22,30 @@ Fetch error: http://mgm.congstar.de/ => https://mgm.congstar.de/: (51, "SSL: no * Secured by us + No alternative certificate subject name matches target host name: + - adventskalender.congstar.de + - handyhilfe.congstar.de + --> - + + + + + + + + + - + + + + - + - + diff --git a/src/chrome/content/rules/Connect.gov.xml b/src/chrome/content/rules/Connect.gov.xml index 2e5bbdcf134d..f42e086db225 100644 --- a/src/chrome/content/rules/Connect.gov.xml +++ b/src/chrome/content/rules/Connect.gov.xml @@ -24,7 +24,7 @@ --> - + - - - - + diff --git a/src/chrome/content/rules/ConnectMyPhone.com.xml b/src/chrome/content/rules/ConnectMyPhone.com.xml index c2b1dc5f8723..85e91f955878 100644 --- a/src/chrome/content/rules/ConnectMyPhone.com.xml +++ b/src/chrome/content/rules/ConnectMyPhone.com.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/ConnectiCon.org.xml b/src/chrome/content/rules/ConnectiCon.org.xml index 7e9c10029973..8e9bd2277ff7 100644 --- a/src/chrome/content/rules/ConnectiCon.org.xml +++ b/src/chrome/content/rules/ConnectiCon.org.xml @@ -1,8 +1,4 @@ - - + @@ -11,9 +7,7 @@ - - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Connectify.me.xml b/src/chrome/content/rules/Connectify.me.xml new file mode 100644 index 000000000000..a55a3acc6576 --- /dev/null +++ b/src/chrome/content/rules/Connectify.me.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Connexity.com.xml b/src/chrome/content/rules/Connexity.com.xml index 1773e18307ab..2e4cbbdf6578 100644 --- a/src/chrome/content/rules/Connexity.com.xml +++ b/src/chrome/content/rules/Connexity.com.xml @@ -45,7 +45,7 @@ --> - + https://connexity.net/: (52, 'Empty reply from server') - - Nonfunctional subdomains: - - - www (reset; mismatched, CN: pro.connexity.net) - - - Insecure cookies are set for these domains: ᶜ - - - .connexity.net - - ᶜ See https://owasp.org/index.php/SecureFlag - + Empty reply: + - connexity.net + - cse.connexity.net + - pxl.connexity.net + + Cert mismatch: + - www.connexity.net + - cse.prod.connexity.net + - link.connexity.net + - s.connexity.net + - t.connexity.net + - u.connexity.net + + Cert expired: + - pm-rtb-fkb.connexity.net + + Timeout: + - ax-rtb-fkb.connexity.net + - cm-rtb-fkb.connexity.net + - ox-rtb-fkb.connexity.net + - pp-rtb-fkb.connexity.net + - rtb.connexity.net + - yax-rtb-fkb.connexity.net --> - + - + + + + + + - - - - - - - - - - + diff --git a/src/chrome/content/rules/ConnochaetOS.org.xml b/src/chrome/content/rules/ConnochaetOS.org.xml deleted file mode 100644 index 2d77d183ae0d..000000000000 --- a/src/chrome/content/rules/ConnochaetOS.org.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Conrad_Electronic.xml b/src/chrome/content/rules/Conrad_Electronic.xml new file mode 100644 index 000000000000..eb4d0e8c3a5a --- /dev/null +++ b/src/chrome/content/rules/Conrad_Electronic.xml @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Consensus911.org.xml b/src/chrome/content/rules/Consensus911.org.xml new file mode 100644 index 000000000000..a95cc82027aa --- /dev/null +++ b/src/chrome/content/rules/Consensus911.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/ConsoleBackup.com.xml b/src/chrome/content/rules/ConsoleBackup.com.xml new file mode 100644 index 000000000000..4eead1f1bdfb --- /dev/null +++ b/src/chrome/content/rules/ConsoleBackup.com.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Consortium_Library.xml b/src/chrome/content/rules/Consortium_Library.xml index 2077acb65d64..05de442c6ef8 100644 --- a/src/chrome/content/rules/Consortium_Library.xml +++ b/src/chrome/content/rules/Consortium_Library.xml @@ -1,13 +1,29 @@ + + + + + + - - - - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Constant-Contact.xml b/src/chrome/content/rules/Constant-Contact.xml index d3fa849a6c7a..bbb54e5f0ba2 100644 --- a/src/chrome/content/rules/Constant-Contact.xml +++ b/src/chrome/content/rules/Constant-Contact.xml @@ -77,7 +77,7 @@ Fetch error: http://news.constantcontact.com/sites/constantcontact.newshq.busine - Images on about from static.ctctcdn.com --> - + diff --git a/src/chrome/content/rules/ConsuWijzer.nl.xml b/src/chrome/content/rules/ConsuWijzer.nl.xml deleted file mode 100644 index 80a54bd436fd..000000000000 --- a/src/chrome/content/rules/ConsuWijzer.nl.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Consumentenbond.nl.xml b/src/chrome/content/rules/Consumentenbond.nl.xml index a4951fcd542a..fc4a9393e647 100644 --- a/src/chrome/content/rules/Consumentenbond.nl.xml +++ b/src/chrome/content/rules/Consumentenbond.nl.xml @@ -4,7 +4,6 @@ - diff --git a/src/chrome/content/rules/Consumer.org.hk.xml b/src/chrome/content/rules/Consumer.org.hk.xml index b03136918906..20b5d86dcd45 100644 --- a/src/chrome/content/rules/Consumer.org.hk.xml +++ b/src/chrome/content/rules/Consumer.org.hk.xml @@ -30,7 +30,7 @@ Fetch error: http://www4.consumer.org.hk/ => https://www4.consumer.org.hk/: (28, Different content: - shopsmart.consumer.org.hk --> - + diff --git a/src/chrome/content/rules/ConsumerAffairs.com.xml b/src/chrome/content/rules/ConsumerAffairs.com.xml index 31264a095f44..03615e1f62da 100644 --- a/src/chrome/content/rules/ConsumerAffairs.com.xml +++ b/src/chrome/content/rules/ConsumerAffairs.com.xml @@ -25,7 +25,7 @@ - + - - + + + + + - - - - - - - - + + + + + + - - - - - - - - - - + - diff --git a/src/chrome/content/rules/ConsumerSniper.com.xml b/src/chrome/content/rules/ConsumerSniper.com.xml deleted file mode 100644 index f0dc96203500..000000000000 --- a/src/chrome/content/rules/ConsumerSniper.com.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Consumer_Finance.gov.xml b/src/chrome/content/rules/Consumer_Finance.gov.xml index 54786fadfe49..29c74b04575d 100644 --- a/src/chrome/content/rules/Consumer_Finance.gov.xml +++ b/src/chrome/content/rules/Consumer_Finance.gov.xml @@ -13,7 +13,7 @@ ʳ Refused - + ^consumerfinance.gov Refused www.consumerfinance.gov: Akamai @@ -38,7 +38,7 @@ - + - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Consumers_Union.org.xml b/src/chrome/content/rules/Consumers_Union.org.xml index 4e7edfbd634f..c6c300b41575 100644 --- a/src/chrome/content/rules/Consumers_Union.org.xml +++ b/src/chrome/content/rules/Consumers_Union.org.xml @@ -11,7 +11,8 @@ - + + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Contactual.xml b/src/chrome/content/rules/Contactual.xml deleted file mode 100644 index f7bdfa371dec..000000000000 --- a/src/chrome/content/rules/Contactual.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Content.ad.xml b/src/chrome/content/rules/Content.ad.xml index 613b46ddc792..5c4478d360fb 100644 --- a/src/chrome/content/rules/Content.ad.xml +++ b/src/chrome/content/rules/Content.ad.xml @@ -17,7 +17,8 @@ - + + @@ -26,7 +27,6 @@ - + diff --git a/src/chrome/content/rules/Content_Watch.xml b/src/chrome/content/rules/Content_Watch.xml index 4f59b672dd46..04f911170d75 100644 --- a/src/chrome/content/rules/Content_Watch.xml +++ b/src/chrome/content/rules/Content_Watch.xml @@ -17,7 +17,7 @@ --> - + - + - + - + diff --git a/src/chrome/content/rules/Contretemps.eu.xml b/src/chrome/content/rules/Contretemps.eu.xml new file mode 100644 index 000000000000..f1377215862d --- /dev/null +++ b/src/chrome/content/rules/Contretemps.eu.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Contributor-Covenant.org.xml b/src/chrome/content/rules/Contributor-Covenant.org.xml new file mode 100644 index 000000000000..42c66f29c748 --- /dev/null +++ b/src/chrome/content/rules/Contributor-Covenant.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Contributoria.com.xml b/src/chrome/content/rules/Contributoria.com.xml index 1cbbbf1c0d32..1efaadfbaec0 100644 --- a/src/chrome/content/rules/Contributoria.com.xml +++ b/src/chrome/content/rules/Contributoria.com.xml @@ -14,7 +14,7 @@ Fetch error: http://www.contributoria.com/ => https://www.contributoria.com/: (5 - .contributoria.com --> - + diff --git a/src/chrome/content/rules/ControlScan.com.xml b/src/chrome/content/rules/ControlScan.com.xml index 6f4753f2f257..894bfa7aaad2 100644 --- a/src/chrome/content/rules/ControlScan.com.xml +++ b/src/chrome/content/rules/ControlScan.com.xml @@ -15,7 +15,10 @@ Fetch error: http://controlscan.com/ => https://controlscan.com/: (51, "SSL: no - + + + + - + @@ -20,8 +20,8 @@ Fetch error: http://www.tuvdotcom.com/ => https://www.tuvdotcom.com/: (7, 'Faile - - + + https://www.conversejs.org/: (51, "SSL: no alternative certificate subject name matches target host name 'www.conversejs.org'") --> - + diff --git a/src/chrome/content/rules/Convert-JPG-to-PDF.net.xml b/src/chrome/content/rules/Convert-JPG-to-PDF.net.xml new file mode 100644 index 000000000000..5bc3e77fc139 --- /dev/null +++ b/src/chrome/content/rules/Convert-JPG-to-PDF.net.xml @@ -0,0 +1,10 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Convio.xml b/src/chrome/content/rules/Convio.xml index 1b307bd8c5b4..707651fe689b 100644 --- a/src/chrome/content/rules/Convio.xml +++ b/src/chrome/content/rules/Convio.xml @@ -16,18 +16,18 @@ Fetch error: http://secure.commonground.convio.com/ => https://secure.commongrou Nonfunctional hosts in *convio.net: - service * - + * 503 Problematic domains: - resources.convio.com * - + * Redirects to www.blackbaud.com; mismatched, CN: *.marketo.com --> - + @@ -48,7 +48,7 @@ Fetch error: http://secure.commonground.convio.com/ => https://secure.commongrou - + - + - + diff --git a/src/chrome/content/rules/CookMinute.com.xml b/src/chrome/content/rules/CookMinute.com.xml new file mode 100644 index 000000000000..b3c3803c74c3 --- /dev/null +++ b/src/chrome/content/rules/CookMinute.com.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Cookie_Reports.com.xml b/src/chrome/content/rules/Cookie_Reports.com.xml index 1200a076a4ae..e644d1ef41d9 100644 --- a/src/chrome/content/rules/Cookie_Reports.com.xml +++ b/src/chrome/content/rules/Cookie_Reports.com.xml @@ -5,4 +5,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Cooking_Schools.com.xml b/src/chrome/content/rules/Cooking_Schools.com.xml deleted file mode 100644 index 35ffb00c1e6c..000000000000 --- a/src/chrome/content/rules/Cooking_Schools.com.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/CoolBackgrounds.io.xml b/src/chrome/content/rules/CoolBackgrounds.io.xml new file mode 100644 index 000000000000..ba03232b39bb --- /dev/null +++ b/src/chrome/content/rules/CoolBackgrounds.io.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/CoolCart.Net.xml b/src/chrome/content/rules/CoolCart.Net.xml deleted file mode 100644 index 466b33b472e8..000000000000 --- a/src/chrome/content/rules/CoolCart.Net.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/CoolLib.com.xml b/src/chrome/content/rules/CoolLib.com.xml new file mode 100644 index 000000000000..3403bbdfad5a --- /dev/null +++ b/src/chrome/content/rules/CoolLib.com.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/CoolMiniOrNot.com.xml b/src/chrome/content/rules/CoolMiniOrNot.com.xml deleted file mode 100644 index f3e944268942..000000000000 --- a/src/chrome/content/rules/CoolMiniOrNot.com.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/CoolWebScripts.com.xml b/src/chrome/content/rules/CoolWebScripts.com.xml index 28309b31eebb..7ee3292baa68 100644 --- a/src/chrome/content/rules/CoolWebScripts.com.xml +++ b/src/chrome/content/rules/CoolWebScripts.com.xml @@ -18,7 +18,7 @@ --> - + https://cdn.cooldestinations.ne - www.cooldestinations.net --> - + diff --git a/src/chrome/content/rules/Cool_Key_West.xml b/src/chrome/content/rules/Cool_Key_West.xml index 1a082da4c973..31add8a19df2 100644 --- a/src/chrome/content/rules/Cool_Key_West.xml +++ b/src/chrome/content/rules/Cool_Key_West.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Cooliris.com.xml b/src/chrome/content/rules/Cooliris.com.xml deleted file mode 100644 index a1e3d7817c95..000000000000 --- a/src/chrome/content/rules/Cooliris.com.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Coop.no.xml b/src/chrome/content/rules/Coop.no.xml index 33043ec3c6fa..61eb2a875189 100644 --- a/src/chrome/content/rules/Coop.no.xml +++ b/src/chrome/content/rules/Coop.no.xml @@ -25,7 +25,7 @@ - + - - - - - - - - - - - diff --git a/src/chrome/content/rules/Cope-IT.xml b/src/chrome/content/rules/Cope-IT.xml index 6c7ce7729dbe..d07061291e2d 100644 --- a/src/chrome/content/rules/Cope-IT.xml +++ b/src/chrome/content/rules/Cope-IT.xml @@ -12,4 +12,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Copenhagenmarathon.dk-falsemixed.xml b/src/chrome/content/rules/Copenhagenmarathon.dk-falsemixed.xml deleted file mode 100644 index 3816feeba659..000000000000 --- a/src/chrome/content/rules/Copenhagenmarathon.dk-falsemixed.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Copenhagenmarathon.dk.xml b/src/chrome/content/rules/Copenhagenmarathon.dk.xml index eee37b22fabb..a45b73f0bebc 100644 --- a/src/chrome/content/rules/Copenhagenmarathon.dk.xml +++ b/src/chrome/content/rules/Copenhagenmarathon.dk.xml @@ -1,12 +1,10 @@ - + + + diff --git a/src/chrome/content/rules/Copernic.com.xml b/src/chrome/content/rules/Copernic.com.xml index 89e7f28608a7..7e426aa14906 100644 --- a/src/chrome/content/rules/Copernic.com.xml +++ b/src/chrome/content/rules/Copernic.com.xml @@ -27,7 +27,10 @@ - + + + + @@ -36,8 +39,6 @@ - @@ -45,4 +46,5 @@ - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Copernico.net.xml b/src/chrome/content/rules/Copernico.net.xml index 9b16d82ae52b..395ce6a7a067 100644 --- a/src/chrome/content/rules/Copernico.net.xml +++ b/src/chrome/content/rules/Copernico.net.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://pims.copernico.net/ => https://pims.copernico.net/: (6, 'Could not resolve host: pims.copernico.net') --> - + @@ -13,7 +13,7 @@ Fetch error: http://pims.copernico.net/ => https://pims.copernico.net/: (6, 'Cou - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Copy.com.xml b/src/chrome/content/rules/Copy.com.xml index 76b1bc48073e..43979a3ae630 100644 --- a/src/chrome/content/rules/Copy.com.xml +++ b/src/chrome/content/rules/Copy.com.xml @@ -20,16 +20,18 @@ - + + + + - + diff --git a/src/chrome/content/rules/Copyright_Clearance_Center.xml b/src/chrome/content/rules/Copyright_Clearance_Center.xml index 382a7f9e15e1..588e59caafdf 100644 --- a/src/chrome/content/rules/Copyright_Clearance_Center.xml +++ b/src/chrome/content/rules/Copyright_Clearance_Center.xml @@ -10,4 +10,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Corban_Works.com.xml b/src/chrome/content/rules/Corban_Works.com.xml index d40a9f174b74..def72a3004b8 100644 --- a/src/chrome/content/rules/Corban_Works.com.xml +++ b/src/chrome/content/rules/Corban_Works.com.xml @@ -1,9 +1,4 @@ - + + - + diff --git a/src/chrome/content/rules/CoreCommerce.xml b/src/chrome/content/rules/CoreCommerce.xml index 0becbc131818..40f5fa3f5b77 100644 --- a/src/chrome/content/rules/CoreCommerce.xml +++ b/src/chrome/content/rules/CoreCommerce.xml @@ -8,13 +8,14 @@ - + + + - + diff --git a/src/chrome/content/rules/CoreInfrastructure.org.xml b/src/chrome/content/rules/CoreInfrastructure.org.xml new file mode 100644 index 000000000000..36a8767b3ec6 --- /dev/null +++ b/src/chrome/content/rules/CoreInfrastructure.org.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/CoreMetrics.xml b/src/chrome/content/rules/CoreMetrics.xml index d99d41c5f386..3edf724d4b38 100644 --- a/src/chrome/content/rules/CoreMetrics.xml +++ b/src/chrome/content/rules/CoreMetrics.xml @@ -26,7 +26,7 @@ Fetch error: http://stats.surfaid.ihost.com/ => https://stats.surfaid.ihost.com/ ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -63,7 +63,7 @@ Fetch error: http://stats.surfaid.ihost.com/ => https://stats.surfaid.ihost.com/ --> - + diff --git a/src/chrome/content/rules/CoreMotives.com.xml b/src/chrome/content/rules/CoreMotives.com.xml deleted file mode 100644 index 542a88fdcc02..000000000000 --- a/src/chrome/content/rules/CoreMotives.com.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/CoreSite.com.xml b/src/chrome/content/rules/CoreSite.com.xml deleted file mode 100644 index f6ab1e6f0af2..000000000000 --- a/src/chrome/content/rules/CoreSite.com.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Coreboot.xml b/src/chrome/content/rules/Coreboot.xml index 1ff73b096482..afce2a2dde23 100644 --- a/src/chrome/content/rules/Coreboot.xml +++ b/src/chrome/content/rules/Coreboot.xml @@ -1,41 +1,32 @@ - + - + + + + + + + + + + + + - - - - - - - - - + - + - + diff --git a/src/chrome/content/rules/Coreix.xml b/src/chrome/content/rules/Coreix.xml index f7d7af70d2fd..2df0e91edd40 100644 --- a/src/chrome/content/rules/Coreix.xml +++ b/src/chrome/content/rules/Coreix.xml @@ -22,4 +22,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Corlan-Team.xml b/src/chrome/content/rules/Corlan-Team.xml index 0d0cddeef4a2..efbcdb01d06e 100644 --- a/src/chrome/content/rules/Corlan-Team.xml +++ b/src/chrome/content/rules/Corlan-Team.xml @@ -33,7 +33,7 @@ --> - + - + @@ -302,7 +302,7 @@ Fetch error: http://news.cornell.edu/ => https://www.news.cornell.edu/: Too many - + - - - - - diff --git a/src/chrome/content/rules/Corpimages.de.xml b/src/chrome/content/rules/Corpimages.de.xml index 8f03f16f6afc..9d4c670a1ec0 100644 --- a/src/chrome/content/rules/Corpimages.de.xml +++ b/src/chrome/content/rules/Corpimages.de.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Corporate-ir.net.xml b/src/chrome/content/rules/Corporate-ir.net.xml index 951e936fff18..d1778d886691 100644 --- a/src/chrome/content/rules/Corporate-ir.net.xml +++ b/src/chrome/content/rules/Corporate-ir.net.xml @@ -32,7 +32,9 @@ --> - + + + diff --git a/src/chrome/content/rules/Corporate_Card_Application.com.xml b/src/chrome/content/rules/Corporate_Card_Application.com.xml deleted file mode 100644 index 236f65cdf28c..000000000000 --- a/src/chrome/content/rules/Corporate_Card_Application.com.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Corporation_Service_Company.xml b/src/chrome/content/rules/Corporation_Service_Company.xml index 6c5cd4023dbb..c64945c6c077 100644 --- a/src/chrome/content/rules/Corporation_Service_Company.xml +++ b/src/chrome/content/rules/Corporation_Service_Company.xml @@ -1,7 +1,10 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Corrent.org.xml b/src/chrome/content/rules/Corrent.org.xml index 9a640098c8e7..e078b9facecf 100644 --- a/src/chrome/content/rules/Corrent.org.xml +++ b/src/chrome/content/rules/Corrent.org.xml @@ -9,7 +9,7 @@ Fetch error: http://www.corrent.org/ => https://www.corrent.org/: (28, 'Connecti - .corrent.org --> - + diff --git a/src/chrome/content/rules/Cosmo.org.xml b/src/chrome/content/rules/Cosmo.org.xml index 274a2551380b..ab4d0d487216 100644 --- a/src/chrome/content/rules/Cosmo.org.xml +++ b/src/chrome/content/rules/Cosmo.org.xml @@ -12,7 +12,7 @@ Fetch error: http://www.cosmo.org/ => https://www.cosmo.org/: (60, 'SSL certific - ^ (works, cert only matches www) --> - + @@ -24,4 +24,4 @@ Fetch error: http://www.cosmo.org/ => https://www.cosmo.org/: (60, 'SSL certific - \ No newline at end of file + diff --git a/src/chrome/content/rules/Cosmopolitan.xml b/src/chrome/content/rules/Cosmopolitan.xml index 7fc3311ae40b..fb64f6707ce8 100644 --- a/src/chrome/content/rules/Cosmopolitan.xml +++ b/src/chrome/content/rules/Cosmopolitan.xml @@ -2,8 +2,6 @@ Other Hearst Corporation rulesets: - Delish.xml - - Hearst-Corporation.xml - - Hearst-Corporation-mismatches.xml Nonfunctional hosts in *cosmopolitan.com: @@ -29,7 +27,7 @@ - + - + diff --git a/src/chrome/content/rules/Cossack_Labs.com.xml b/src/chrome/content/rules/Cossack_Labs.com.xml index 06e50b02d08c..eec4855aeb65 100644 --- a/src/chrome/content/rules/Cossack_Labs.com.xml +++ b/src/chrome/content/rules/Cossack_Labs.com.xml @@ -7,7 +7,7 @@ - + https://www.costco.com/ (403) Other Costco rulesets: - Costco-static.com.xml - ^: mismatched, CN: www2.costco.com - - Nonfunctional hosts in *costco.com: - video * @@ -37,33 +31,12 @@ Non-2xx HTTP code: http://www.costco.com/ (200) => https://www.costco.com/ (403) - www.costco.com --> - - - - + + + - - - - - - - - - - - - - - - - + + diff --git a/src/chrome/content/rules/Cotera.xml b/src/chrome/content/rules/Cotera.xml index fb74dec417e4..21fb235ee147 100644 --- a/src/chrome/content/rules/Cotera.xml +++ b/src/chrome/content/rules/Cotera.xml @@ -1,7 +1,10 @@ - + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Cottages4you.co.uk.xml b/src/chrome/content/rules/Cottages4you.co.uk.xml new file mode 100644 index 000000000000..b5f00cfd73e5 --- /dev/null +++ b/src/chrome/content/rules/Cottages4you.co.uk.xml @@ -0,0 +1,17 @@ + + + + + + + diff --git a/src/chrome/content/rules/Cottagesdirect.co.uk.xml b/src/chrome/content/rules/Cottagesdirect.co.uk.xml new file mode 100644 index 000000000000..24bc6909e1d9 --- /dev/null +++ b/src/chrome/content/rules/Cottagesdirect.co.uk.xml @@ -0,0 +1,17 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Coub.com.xml b/src/chrome/content/rules/Coub.com.xml index 6ee0eeede535..9ca0ddd73742 100644 --- a/src/chrome/content/rules/Coub.com.xml +++ b/src/chrome/content/rules/Coub.com.xml @@ -36,7 +36,7 @@ --> - + https://www.couchpota.to/: (51, "SSL: n * Secured by us --> - + diff --git a/src/chrome/content/rules/Couchbase.xml b/src/chrome/content/rules/Couchbase.xml index 66776a839d09..fbcc385725c6 100644 --- a/src/chrome/content/rules/Couchbase.xml +++ b/src/chrome/content/rules/Couchbase.xml @@ -39,6 +39,6 @@ Fetch error: http://couchbase.com/ => https://couchbase.com/: Cycle detected - U to="https://na-a.marketo.com/" /> + to="https://packages.couchbase.com/" /> diff --git a/src/chrome/content/rules/Council_of_Europe.xml b/src/chrome/content/rules/Council_of_Europe.xml index 80b4ea4db823..1925a6d5dccd 100644 --- a/src/chrome/content/rules/Council_of_Europe.xml +++ b/src/chrome/content/rules/Council_of_Europe.xml @@ -25,7 +25,9 @@ - + + + @@ -34,7 +36,6 @@ - + diff --git a/src/chrome/content/rules/Council_on_Foreign_Relations.xml b/src/chrome/content/rules/Council_on_Foreign_Relations.xml index cbc6d23c16e8..bc7454323557 100644 --- a/src/chrome/content/rules/Council_on_Foreign_Relations.xml +++ b/src/chrome/content/rules/Council_on_Foreign_Relations.xml @@ -28,9 +28,11 @@ - - + + + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Countdown.co.nz.xml b/src/chrome/content/rules/Countdown.co.nz.xml new file mode 100644 index 000000000000..31a329b7ce2c --- /dev/null +++ b/src/chrome/content/rules/Countdown.co.nz.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/CounterMail.com.xml b/src/chrome/content/rules/CounterMail.com.xml new file mode 100644 index 000000000000..b40a664b8137 --- /dev/null +++ b/src/chrome/content/rules/CounterMail.com.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/CounterPunch.org.xml b/src/chrome/content/rules/CounterPunch.org.xml index 388af8bd8395..ce477c62710d 100644 --- a/src/chrome/content/rules/CounterPunch.org.xml +++ b/src/chrome/content/rules/CounterPunch.org.xml @@ -23,7 +23,6 @@ - + diff --git a/src/chrome/content/rules/Countquest.se.xml b/src/chrome/content/rules/Countquest.se.xml index 97bcca2c0517..7be6ba78917c 100644 --- a/src/chrome/content/rules/Countquest.se.xml +++ b/src/chrome/content/rules/Countquest.se.xml @@ -3,8 +3,8 @@ Disabled by https-everywhere-checker because: Fetch error: http://sdc.countquest.se/ => https://sdc.countquest.se/: (28, 'Connection timed out after 20006 milliseconds') Another tracking firm --> - + - + diff --git a/src/chrome/content/rules/County_Star.xml b/src/chrome/content/rules/County_Star.xml deleted file mode 100644 index a734d24fa437..000000000000 --- a/src/chrome/content/rules/County_Star.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Couponese.com.xml b/src/chrome/content/rules/Couponese.com.xml new file mode 100644 index 000000000000..cb87e6c4ec16 --- /dev/null +++ b/src/chrome/content/rules/Couponese.com.xml @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Coupons-Inc.xml b/src/chrome/content/rules/Coupons-Inc.xml index 25e7f9532fae..a05c9688212c 100644 --- a/src/chrome/content/rules/Coupons-Inc.xml +++ b/src/chrome/content/rules/Coupons-Inc.xml @@ -1,19 +1,15 @@ + - - - - + + + + - - - + + - + diff --git a/src/chrome/content/rules/Courier-Post.xml b/src/chrome/content/rules/Courier-Post.xml index fb2875172a51..4a085493f9f6 100644 --- a/src/chrome/content/rules/Courier-Post.xml +++ b/src/chrome/content/rules/Courier-Post.xml @@ -47,7 +47,7 @@ Fetch error: http://localsearch.courierpostonline.com/sf_frameworks/gdev/css/scr * Secured by us --> - + diff --git a/src/chrome/content/rules/Cours_Crypto.org.xml b/src/chrome/content/rules/Cours_Crypto.org.xml index 9ed07c19cbdf..cfcf8215267e 100644 --- a/src/chrome/content/rules/Cours_Crypto.org.xml +++ b/src/chrome/content/rules/Cours_Crypto.org.xml @@ -5,7 +5,7 @@ Fetch error: http://courscrypto.org/ => https://courscrypto.org/: (60, 'SSL cert Fetch error: http://www.courscrypto.org/ => https://www.courscrypto.org/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/CourseFinder.io.xml b/src/chrome/content/rules/CourseFinder.io.xml index 2a534351c7f1..73818d0c6845 100644 --- a/src/chrome/content/rules/CourseFinder.io.xml +++ b/src/chrome/content/rules/CourseFinder.io.xml @@ -23,7 +23,7 @@ Fetch error: http://www.coursefinder.io/ => https://www.coursefinder.io/: (6, 'C ˢ Secured by us --> - + @@ -33,7 +33,7 @@ Fetch error: http://www.coursefinder.io/ => https://www.coursefinder.io/: (6, 'C --> - + - + - - - - - - - - - - - diff --git a/src/chrome/content/rules/CourthouseNews.com.xml b/src/chrome/content/rules/CourthouseNews.com.xml new file mode 100644 index 000000000000..471a9ea21714 --- /dev/null +++ b/src/chrome/content/rules/CourthouseNews.com.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Cov.com.xml b/src/chrome/content/rules/Cov.com.xml index a94c379005f0..c8d109df2717 100644 --- a/src/chrome/content/rules/Cov.com.xml +++ b/src/chrome/content/rules/Cov.com.xml @@ -22,7 +22,7 @@ --> - + https://my.covad.com/: (60, 'SSL certificat ² Not secured by us <= expired & self-signed --> - + diff --git a/src/chrome/content/rules/CoverStand.com.xml b/src/chrome/content/rules/CoverStand.com.xml index 7e552e4c9a22..5ab70369f499 100644 --- a/src/chrome/content/rules/CoverStand.com.xml +++ b/src/chrome/content/rules/CoverStand.com.xml @@ -5,7 +5,7 @@ Fetch error: http://coverstand.com/ => https://coverstand.com/: (7, 'Failed to c Fetch error: http://www.coverstand.com/ => https://www.coverstand.com/: (7, 'Failed to connect to www.coverstand.com port 443: Connection refused') --> - + diff --git a/src/chrome/content/rules/Covered-California.xml b/src/chrome/content/rules/Covered-California.xml index 781cea7cff1a..23027f16bde5 100644 --- a/src/chrome/content/rules/Covered-California.xml +++ b/src/chrome/content/rules/Covered-California.xml @@ -1,46 +1,54 @@ - + + + + + + + + + + + + + - - - - - - - - - - + + + + diff --git a/src/chrome/content/rules/Coverforyou.com.xml b/src/chrome/content/rules/Coverforyou.com.xml index 2a489de2ebd6..44f3e59dabc4 100644 --- a/src/chrome/content/rules/Coverforyou.com.xml +++ b/src/chrome/content/rules/Coverforyou.com.xml @@ -1,9 +1,15 @@ + - - - - + + + + + diff --git a/src/chrome/content/rules/Coverity.com.xml b/src/chrome/content/rules/Coverity.com.xml index 1f30b1529e9d..2fb039ddaa39 100644 --- a/src/chrome/content/rules/Coverity.com.xml +++ b/src/chrome/content/rules/Coverity.com.xml @@ -54,7 +54,7 @@ Fetch error: http://trial.coverity.com/ => https://trial.coverity.com/: (28, 'Co * Secured by us --> - + @@ -97,7 +97,7 @@ Fetch error: http://trial.coverity.com/ => https://trial.coverity.com/: (28, 'Co - + https://covisint.com/ (500) - + + + - + - + diff --git a/src/chrome/content/rules/Cox-Digital-Solutions-problematic.xml b/src/chrome/content/rules/Cox-Digital-Solutions-problematic.xml index 52b00c7c7630..78fed6f6e165 100644 --- a/src/chrome/content/rules/Cox-Digital-Solutions-problematic.xml +++ b/src/chrome/content/rules/Cox-Digital-Solutions-problematic.xml @@ -10,7 +10,6 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Cox-Digital-Solutions.xml b/src/chrome/content/rules/Cox-Digital-Solutions.xml index 032690fb4da0..a014fe57e066 100644 --- a/src/chrome/content/rules/Cox-Digital-Solutions.xml +++ b/src/chrome/content/rules/Cox-Digital-Solutions.xml @@ -8,12 +8,14 @@ Fetch error: http://coxds.com/ => https://www.coxdigitalsolutions.com/: (28, 'Co For problematic rules, see Cox-Digital-Solutions-problematic.xml. --> - + - + + + diff --git a/src/chrome/content/rules/Cox_Communications.xml b/src/chrome/content/rules/Cox_Communications.xml index 87ae5a961f51..1d6ad4d9716d 100644 --- a/src/chrome/content/rules/Cox_Communications.xml +++ b/src/chrome/content/rules/Cox_Communications.xml @@ -45,13 +45,19 @@ Fetch error: http://cox.com/ => https://ww2.cox.com/: Cycle detected - URL alrea - + + + + + + - - + - + + + @@ -63,16 +69,11 @@ Fetch error: http://cox.com/ => https://ww2.cox.com/: Cycle detected - URL alrea - - - + diff --git a/src/chrome/content/rules/Coy.IM.xml b/src/chrome/content/rules/Coy.IM.xml index 9387822dd57a..24d25bdcee55 100644 --- a/src/chrome/content/rules/Coy.IM.xml +++ b/src/chrome/content/rules/Coy.IM.xml @@ -4,7 +4,7 @@ - + https://www.cp.fonality.com/: (6, 'Could not resolve host: www.cp.fonality.com') --> - + diff --git a/src/chrome/content/rules/Cppinstitute.org.xml b/src/chrome/content/rules/Cppinstitute.org.xml new file mode 100644 index 000000000000..e74cd9424989 --- /dev/null +++ b/src/chrome/content/rules/Cppinstitute.org.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/Cpunks.org.xml b/src/chrome/content/rules/Cpunks.org.xml index 72dd702db7d6..02a4e894d596 100644 --- a/src/chrome/content/rules/Cpunks.org.xml +++ b/src/chrome/content/rules/Cpunks.org.xml @@ -1,17 +1,9 @@ - - - - + + + - - + diff --git a/src/chrome/content/rules/Cqc.org.uk.xml b/src/chrome/content/rules/Cqc.org.uk.xml new file mode 100644 index 000000000000..b3dde4f39f53 --- /dev/null +++ b/src/chrome/content/rules/Cqc.org.uk.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Cr.yp.to.xml b/src/chrome/content/rules/Cr.yp.to.xml index f3ce1fbfd68a..2c3970c11c2b 100644 --- a/src/chrome/content/rules/Cr.yp.to.xml +++ b/src/chrome/content/rules/Cr.yp.to.xml @@ -46,7 +46,7 @@ - + diff --git a/src/chrome/content/rules/CrackSAT.net.xml b/src/chrome/content/rules/CrackSAT.net.xml new file mode 100644 index 000000000000..50d36cc8ef1e --- /dev/null +++ b/src/chrome/content/rules/CrackSAT.net.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Cracked.com.xml b/src/chrome/content/rules/Cracked.com.xml new file mode 100644 index 000000000000..2ebdacd550b5 --- /dev/null +++ b/src/chrome/content/rules/Cracked.com.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/CrackedCDN.com.xml b/src/chrome/content/rules/CrackedCDN.com.xml new file mode 100644 index 000000000000..b7913e776ce1 --- /dev/null +++ b/src/chrome/content/rules/CrackedCDN.com.xml @@ -0,0 +1,11 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Crackedconsole.com.xml b/src/chrome/content/rules/Crackedconsole.com.xml index 8a0411cb2e27..4de954c67175 100644 --- a/src/chrome/content/rules/Crackedconsole.com.xml +++ b/src/chrome/content/rules/Crackedconsole.com.xml @@ -5,7 +5,7 @@ Fetch error: http://crackedconsole.com/ => https://crackedconsole.com/: (60, 'SS Fetch error: http://www.crackedconsole.com/ => https://www.crackedconsole.com/: (60, 'SSL certificate problem: certificate has expired') --> - + @@ -16,4 +16,4 @@ Fetch error: http://www.crackedconsole.com/ => https://www.crackedconsole.com/: - \ No newline at end of file + diff --git a/src/chrome/content/rules/CraftBanter.xml b/src/chrome/content/rules/CraftBanter.xml index d8d85b788500..846aa9626fda 100644 --- a/src/chrome/content/rules/CraftBanter.xml +++ b/src/chrome/content/rules/CraftBanter.xml @@ -5,7 +5,7 @@ - + diff --git a/src/chrome/content/rules/CraftStats.com.xml b/src/chrome/content/rules/CraftStats.com.xml index 6c3b5ae52825..44c21a2262da 100644 --- a/src/chrome/content/rules/CraftStats.com.xml +++ b/src/chrome/content/rules/CraftStats.com.xml @@ -11,10 +11,10 @@ Fetch error: http://craftstats.com/ => https://www.craftstats.com/: (7, 'Failed --> - + - + @@ -23,4 +23,4 @@ Fetch error: http://craftstats.com/ => https://www.craftstats.com/: (7, 'Failed - \ No newline at end of file + diff --git a/src/chrome/content/rules/Crafty_Syntax.com.xml b/src/chrome/content/rules/Crafty_Syntax.com.xml index 1f021168206d..55559320970e 100644 --- a/src/chrome/content/rules/Crafty_Syntax.com.xml +++ b/src/chrome/content/rules/Crafty_Syntax.com.xml @@ -1,8 +1,4 @@ - - + diff --git a/src/chrome/content/rules/Crain-Communications.xml b/src/chrome/content/rules/Crain-Communications.xml index a8bacd004b04..55f66a96b91d 100644 --- a/src/chrome/content/rules/Crain-Communications.xml +++ b/src/chrome/content/rules/Crain-Communications.xml @@ -25,21 +25,23 @@ Fetch error: http://www.creativity-online.com/ => https://creativity-online.com/ - (www.)idea2009.org (ssl_error_rx_record_too_long) --> - + - + + + - + - - + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Craphound.xml b/src/chrome/content/rules/Craphound.xml deleted file mode 100644 index 6f6fac239bdb..000000000000 --- a/src/chrome/content/rules/Craphound.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Crash-Space.xml b/src/chrome/content/rules/Crash-Space.xml index 9ab9d62bf51c..a6e66bb4a73f 100644 --- a/src/chrome/content/rules/Crash-Space.xml +++ b/src/chrome/content/rules/Crash-Space.xml @@ -1,7 +1,8 @@ - + + - + + - - + diff --git a/src/chrome/content/rules/CrazyHD.com.xml b/src/chrome/content/rules/CrazyHD.com.xml new file mode 100644 index 000000000000..56f02787e8cd --- /dev/null +++ b/src/chrome/content/rules/CrazyHD.com.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/Crazzed.com.xml b/src/chrome/content/rules/Crazzed.com.xml index ca975da627d1..ed53fc99745d 100644 --- a/src/chrome/content/rules/Crazzed.com.xml +++ b/src/chrome/content/rules/Crazzed.com.xml @@ -7,7 +7,7 @@ Fetch error: http://www.crazzed.com/ => https://www.crazzed.com/: (7, 'Failed to Disabled by https-everywhere-checker because: Fetch error: http://crazzed.com/ => https://crazzed.com/: Cycle detected - URL already encountered: http://crazzed.com/ --> - + diff --git a/src/chrome/content/rules/Creare.co.uk.xml b/src/chrome/content/rules/Creare.co.uk.xml index b630f8e44d1c..f5407b6d6f09 100644 --- a/src/chrome/content/rules/Creare.co.uk.xml +++ b/src/chrome/content/rules/Creare.co.uk.xml @@ -23,7 +23,7 @@ Fetch error: http://creare.co.uk/ => https://creare.co.uk/: (60, 'SSL certificat - .creare.co.uk --> - + diff --git a/src/chrome/content/rules/Creatavist.com.xml b/src/chrome/content/rules/Creatavist.com.xml deleted file mode 100644 index 815962bce5f7..000000000000 --- a/src/chrome/content/rules/Creatavist.com.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/CreateSpace.xml b/src/chrome/content/rules/CreateSpace.xml index d6b7d2aa0cf2..89cdc64eb1b7 100644 --- a/src/chrome/content/rules/CreateSpace.xml +++ b/src/chrome/content/rules/CreateSpace.xml @@ -18,7 +18,7 @@ Fetch error: http://createspace.com/ => https://createspace.com/: (7, 'Failed to - www.createspace.com --> - + diff --git a/src/chrome/content/rules/Creation.xml b/src/chrome/content/rules/Creation.xml index 4ea25d603e8c..99ba52fc1d06 100644 --- a/src/chrome/content/rules/Creation.xml +++ b/src/chrome/content/rules/Creation.xml @@ -33,7 +33,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/CreativeCommons.xml b/src/chrome/content/rules/CreativeCommons.xml deleted file mode 100644 index 8dcf038c28a9..000000000000 --- a/src/chrome/content/rules/CreativeCommons.xml +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/CreativeCow.net.xml b/src/chrome/content/rules/CreativeCow.net.xml index 17095c016a15..c056ce060912 100644 --- a/src/chrome/content/rules/CreativeCow.net.xml +++ b/src/chrome/content/rules/CreativeCow.net.xml @@ -5,21 +5,21 @@ Fetch error: http://creativecow.net/ => https://creativecow.net/: (51, "SSL: no Fetch error: http://creativecow.com/ => https://creativecow.com/: (51, "SSL: no alternative certificate subject name matches target host name 'creativecow.com'") --> - + - + - + - + diff --git a/src/chrome/content/rules/CreativePartnershipsAustralia.xml b/src/chrome/content/rules/CreativePartnershipsAustralia.xml index b4403c8e036a..7c985e23c598 100644 --- a/src/chrome/content/rules/CreativePartnershipsAustralia.xml +++ b/src/chrome/content/rules/CreativePartnershipsAustralia.xml @@ -1,7 +1,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/CreativeSyndicator.xml b/src/chrome/content/rules/CreativeSyndicator.xml index c3f15c3c1035..25be73da5fbc 100644 --- a/src/chrome/content/rules/CreativeSyndicator.xml +++ b/src/chrome/content/rules/CreativeSyndicator.xml @@ -6,7 +6,7 @@ Fetch error: http://ads-creativesyndicator.com/ => https://ads-creativesyndicato Disabled by https-everywhere-checker because: Fetch error: http://ads-creativesyndicator.com/ => https://ads-creativesyndicator.com/: (28, 'Connection timed out after 10000 milliseconds') --> - + @@ -18,4 +18,4 @@ Fetch error: http://ads-creativesyndicator.com/ => https://ads-creativesyndicato - \ No newline at end of file + diff --git a/src/chrome/content/rules/Creative_CDN.com.xml b/src/chrome/content/rules/Creative_CDN.com.xml index b336acb3d532..59920b3780a1 100644 --- a/src/chrome/content/rules/Creative_CDN.com.xml +++ b/src/chrome/content/rules/Creative_CDN.com.xml @@ -24,7 +24,7 @@ --> - + - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Creative_Little_Readers.com.xml b/src/chrome/content/rules/Creative_Little_Readers.com.xml deleted file mode 100644 index cc955a4b305e..000000000000 --- a/src/chrome/content/rules/Creative_Little_Readers.com.xml +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Creative_Virtual.com.xml b/src/chrome/content/rules/Creative_Virtual.com.xml index 51106d9d04b9..91ae2f652882 100644 --- a/src/chrome/content/rules/Creative_Virtual.com.xml +++ b/src/chrome/content/rules/Creative_Virtual.com.xml @@ -1,37 +1,12 @@ - - + - - + + - - - - - - - + diff --git a/src/chrome/content/rules/CredAbility.com.xml b/src/chrome/content/rules/CredAbility.com.xml index b818af41c945..c125c81f846f 100644 --- a/src/chrome/content/rules/CredAbility.com.xml +++ b/src/chrome/content/rules/CredAbility.com.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://intake.credability.org/ => https://intake.credability.org/: Too many redirects while fetching 'https://intake.credability.org/' --> - + diff --git a/src/chrome/content/rules/CreditDisputeProgram.com.xml b/src/chrome/content/rules/CreditDisputeProgram.com.xml deleted file mode 100644 index 1d185374ece5..000000000000 --- a/src/chrome/content/rules/CreditDisputeProgram.com.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Credit_Repair_Trust.com.xml b/src/chrome/content/rules/Credit_Repair_Trust.com.xml deleted file mode 100644 index 9a48ac0f7042..000000000000 --- a/src/chrome/content/rules/Credit_Repair_Trust.com.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Credit_Report_Nation.xml b/src/chrome/content/rules/Credit_Report_Nation.xml index 32e9bd54c9e3..75cf36ec1489 100644 --- a/src/chrome/content/rules/Credit_Report_Nation.xml +++ b/src/chrome/content/rules/Credit_Report_Nation.xml @@ -5,15 +5,15 @@ Fetch error: http://creditreportnation.com/ => https://creditreportnation.com/: Fetch error: http://www.creditreportnation.com/ => https://www.creditreportnation.com/: (28, 'Connection timed out after 20001 milliseconds') --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Credo_Action.com.xml b/src/chrome/content/rules/Credo_Action.com.xml index 24dde8e6a766..b3aba0745a29 100644 --- a/src/chrome/content/rules/Credo_Action.com.xml +++ b/src/chrome/content/rules/Credo_Action.com.xml @@ -25,7 +25,7 @@ --> - + - + https://crikey.com.au/: Too many redirects - offers (works; mismatched, CN: *.unbounce.com) --> - + @@ -26,4 +26,4 @@ Fetch error: http://crikey.com.au/ => https://crikey.com.au/: Too many redirects - \ No newline at end of file + diff --git a/src/chrome/content/rules/Crimtan.xml b/src/chrome/content/rules/Crimtan.xml deleted file mode 100644 index 36d766b24bb8..000000000000 --- a/src/chrome/content/rules/Crimtan.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Criosweb.xml b/src/chrome/content/rules/Criosweb.xml index 8a5e054f7531..0075045da21e 100644 --- a/src/chrome/content/rules/Criosweb.xml +++ b/src/chrome/content/rules/Criosweb.xml @@ -6,7 +6,6 @@ - @@ -30,7 +29,6 @@ - @@ -42,7 +40,5 @@ - - diff --git a/src/chrome/content/rules/Crisco.com.xml b/src/chrome/content/rules/Crisco.com.xml new file mode 100644 index 000000000000..9df7f5ca6a35 --- /dev/null +++ b/src/chrome/content/rules/Crisco.com.xml @@ -0,0 +1,29 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Crisis.org.uk.xml b/src/chrome/content/rules/Crisis.org.uk.xml deleted file mode 100644 index 20ac5740f7eb..000000000000 --- a/src/chrome/content/rules/Crisis.org.uk.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Criteo.com.xml b/src/chrome/content/rules/Criteo.com.xml new file mode 100644 index 000000000000..5c54f8dc1530 --- /dev/null +++ b/src/chrome/content/rules/Criteo.com.xml @@ -0,0 +1,185 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Criteo.xml b/src/chrome/content/rules/Criteo.xml deleted file mode 100644 index 10a8b0083388..000000000000 --- a/src/chrome/content/rules/Criteo.xml +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Critical-Mass.xml b/src/chrome/content/rules/Critical-Mass.xml deleted file mode 100644 index 4adde8945824..000000000000 --- a/src/chrome/content/rules/Critical-Mass.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Crittercism.com.xml b/src/chrome/content/rules/Crittercism.com.xml index cc8508d98aea..3e5e01cf08ea 100644 --- a/src/chrome/content/rules/Crittercism.com.xml +++ b/src/chrome/content/rules/Crittercism.com.xml @@ -6,13 +6,13 @@ --> - + + - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Criu.org.xml b/src/chrome/content/rules/Criu.org.xml new file mode 100644 index 000000000000..e3f969590fbf --- /dev/null +++ b/src/chrome/content/rules/Criu.org.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/Crockotec.xml b/src/chrome/content/rules/Crockotec.xml index 85ac8e584d06..c02626857502 100644 --- a/src/chrome/content/rules/Crockotec.xml +++ b/src/chrome/content/rules/Crockotec.xml @@ -6,7 +6,7 @@ - + https://espanol.crocs.com/: (51, "SSL: - images --> - + diff --git a/src/chrome/content/rules/Cronius.net.xml b/src/chrome/content/rules/Cronius.net.xml index 9a7696f129e0..c2dbfa4f859e 100644 --- a/src/chrome/content/rules/Cronius.net.xml +++ b/src/chrome/content/rules/Cronius.net.xml @@ -28,7 +28,6 @@ - + diff --git a/src/chrome/content/rules/CrooksAndLiars.com.xml b/src/chrome/content/rules/CrooksAndLiars.com.xml new file mode 100644 index 000000000000..33f941f55ba4 --- /dev/null +++ b/src/chrome/content/rules/CrooksAndLiars.com.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Cross-Pixel-Media-problematic.xml b/src/chrome/content/rules/Cross-Pixel-Media-problematic.xml index c295c31a37e5..4a90f91e86c9 100644 --- a/src/chrome/content/rules/Cross-Pixel-Media-problematic.xml +++ b/src/chrome/content/rules/Cross-Pixel-Media-problematic.xml @@ -10,7 +10,6 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Cross-Pixel-Media.xml b/src/chrome/content/rules/Cross-Pixel-Media.xml index b7f7402562b8..2453593ce460 100644 --- a/src/chrome/content/rules/Cross-Pixel-Media.xml +++ b/src/chrome/content/rules/Cross-Pixel-Media.xml @@ -21,7 +21,8 @@ - + + @@ -32,7 +33,6 @@ - + diff --git a/src/chrome/content/rules/CrossRef.org.xml b/src/chrome/content/rules/CrossRef.org.xml index 40c3c52eddce..a703b2873be0 100644 --- a/src/chrome/content/rules/CrossRef.org.xml +++ b/src/chrome/content/rules/CrossRef.org.xml @@ -17,7 +17,6 @@ dx.crossref.org eventdata.crossref.org hdl.crossref.org - help.crossref.org labs.crossref.org api.labs.crossref.org www.citation.labs.crossref.org @@ -32,10 +31,6 @@ oxford.crossref.org prospect.crossref.org - Redirects to *.crosscite: - data.crossref.org - id.crossref.org - No working URL known: api.eventdata.crossref.org (503) archive.eventdata.crossref.org (503) @@ -43,7 +38,6 @@ mailserv.crossref.org pix_active.crossref.org pix_standby.crossref.org - help.crossref.org --> @@ -56,26 +50,32 @@ + + + + + + - + - + - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Crossrider.xml b/src/chrome/content/rules/Crossrider.xml index 6dc056be8981..d1d6b00a616f 100644 --- a/src/chrome/content/rules/Crossrider.xml +++ b/src/chrome/content/rules/Crossrider.xml @@ -13,10 +13,10 @@ Fetch error: http://crossrider.com/ => https://crossrider.com/: (7, 'Failed to c - www (400) --> - + - + diff --git a/src/chrome/content/rules/Crowd-Factory.xml b/src/chrome/content/rules/Crowd-Factory.xml index ecb8d36b2ee3..c9584c83c2fe 100644 --- a/src/chrome/content/rules/Crowd-Factory.xml +++ b/src/chrome/content/rules/Crowd-Factory.xml @@ -20,26 +20,25 @@ Fetch error: http://www.socialcampaign.com/ => https://www.socialcampaign.com/: pages.crowdfactory.com cert: *.marketo.com --> - + - + + + - - + + - - + diff --git a/src/chrome/content/rules/Crowd-Science.xml b/src/chrome/content/rules/Crowd-Science.xml index 9f3a338333ae..86199be276d0 100644 --- a/src/chrome/content/rules/Crowd-Science.xml +++ b/src/chrome/content/rules/Crowd-Science.xml @@ -40,7 +40,11 @@ --> - + + + + + diff --git a/src/chrome/content/rules/CrowdCulture.se.xml b/src/chrome/content/rules/CrowdCulture.se.xml index 80830f128b89..3aca904d1b2e 100644 --- a/src/chrome/content/rules/CrowdCulture.se.xml +++ b/src/chrome/content/rules/CrowdCulture.se.xml @@ -19,4 +19,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/CrowdJustice.co.uk.xml b/src/chrome/content/rules/CrowdJustice.co.uk.xml index d28972ca8d53..4d0b8a4af93a 100644 --- a/src/chrome/content/rules/CrowdJustice.co.uk.xml +++ b/src/chrome/content/rules/CrowdJustice.co.uk.xml @@ -16,7 +16,7 @@ --> - + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/CrowdTangle.xml b/src/chrome/content/rules/CrowdTangle.xml index 97235e286d4f..1dbbaa459f9f 100644 --- a/src/chrome/content/rules/CrowdTangle.xml +++ b/src/chrome/content/rules/CrowdTangle.xml @@ -1,19 +1,18 @@ - + - - - - + + + + + - + + diff --git a/src/chrome/content/rules/Crowd_Supply.com.xml b/src/chrome/content/rules/Crowd_Supply.com.xml index 0dad2f8276d2..e790d18b707b 100644 --- a/src/chrome/content/rules/Crowd_Supply.com.xml +++ b/src/chrome/content/rules/Crowd_Supply.com.xml @@ -21,7 +21,7 @@ --> - + - + diff --git a/src/chrome/content/rules/Crowdin.com.xml b/src/chrome/content/rules/Crowdin.com.xml index 433ffe8c7ece..2c6331bdb014 100644 --- a/src/chrome/content/rules/Crowdin.com.xml +++ b/src/chrome/content/rules/Crowdin.com.xml @@ -1,20 +1,35 @@ + + + + + + + @@ -23,7 +38,10 @@ + + + - + diff --git a/src/chrome/content/rules/Crowdin.net.xml b/src/chrome/content/rules/Crowdin.net.xml deleted file mode 100644 index 4fac32923216..000000000000 --- a/src/chrome/content/rules/Crowdin.net.xml +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Cru.fr.xml b/src/chrome/content/rules/Cru.fr.xml index 88e622a7caed..d1d7166c1e52 100644 --- a/src/chrome/content/rules/Cru.fr.xml +++ b/src/chrome/content/rules/Cru.fr.xml @@ -15,7 +15,7 @@ Non-2xx HTTP code: http://git.cru.fr/ (200) => https://git.renater.fr/ (403) ^cru.fr does not exist --> - + @@ -30,7 +30,7 @@ Non-2xx HTTP code: http://git.cru.fr/ (200) => https://git.renater.fr/ (403) - + - - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Crucial.xml b/src/chrome/content/rules/Crucial.xml index 56449b0e586d..9f6a114cbc44 100644 --- a/src/chrome/content/rules/Crucial.xml +++ b/src/chrome/content/rules/Crucial.xml @@ -35,7 +35,7 @@ - (www.)?crucial.fr some pages redirect to http - (www.)?crucial.jp some pages redirect to http --> - + diff --git a/src/chrome/content/rules/CruisersForum.com.xml b/src/chrome/content/rules/CruisersForum.com.xml index c06cb63895a1..892278a34ee9 100644 --- a/src/chrome/content/rules/CruisersForum.com.xml +++ b/src/chrome/content/rules/CruisersForum.com.xml @@ -21,7 +21,8 @@ - + + @@ -30,4 +31,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Crunchyroll.com.xml b/src/chrome/content/rules/Crunchyroll.com.xml new file mode 100644 index 000000000000..38b477f3a9fb --- /dev/null +++ b/src/chrome/content/rules/Crunchyroll.com.xml @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Crux.nu.xml b/src/chrome/content/rules/Crux.nu.xml index e9e185299e29..027824f5cc1a 100644 --- a/src/chrome/content/rules/Crux.nu.xml +++ b/src/chrome/content/rules/Crux.nu.xml @@ -10,7 +10,7 @@ Fetch error: http://www.crux.nu/ => https://www.crux.nu/: (60, 'SSL certificate ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -25,7 +25,7 @@ Fetch error: http://www.crux.nu/ => https://www.crux.nu/: (60, 'SSL certificate --> - + - + diff --git a/src/chrome/content/rules/CryptAd.com.xml b/src/chrome/content/rules/CryptAd.com.xml deleted file mode 100644 index 3a9e3bec399a..000000000000 --- a/src/chrome/content/rules/CryptAd.com.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Cryptalloy.de-problematic.xml b/src/chrome/content/rules/Cryptalloy.de-problematic.xml index 6f2c1d25a965..a7a80b270fbc 100644 --- a/src/chrome/content/rules/Cryptalloy.de-problematic.xml +++ b/src/chrome/content/rules/Cryptalloy.de-problematic.xml @@ -5,7 +5,7 @@ - + @@ -14,4 +14,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Cryptalloy.de.xml b/src/chrome/content/rules/Cryptalloy.de.xml index cf60fa012d7f..21591cd1cd96 100644 --- a/src/chrome/content/rules/Cryptalloy.de.xml +++ b/src/chrome/content/rules/Cryptalloy.de.xml @@ -22,4 +22,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Cryptanalysis.xml b/src/chrome/content/rules/Cryptanalysis.xml index 75f86bb28ec5..e0e4777e18ec 100644 --- a/src/chrome/content/rules/Cryptanalysis.xml +++ b/src/chrome/content/rules/Cryptanalysis.xml @@ -4,12 +4,12 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.cryptanalysis.eu/ => https://www.cryptanalysis.eu/: (51, "SSL: no alternative certificate subject name matches target host name 'www.cryptanalysis.eu'") --> - + - + diff --git a/src/chrome/content/rules/Cryptbin.com.xml b/src/chrome/content/rules/Cryptbin.com.xml index bd023bea5860..61c5ff600219 100644 --- a/src/chrome/content/rules/Cryptbin.com.xml +++ b/src/chrome/content/rules/Cryptbin.com.xml @@ -9,7 +9,7 @@ Fetch error: http://www.cryptbin.com/ => https://www.cryptbin.com/: (60, 'SSL ce - cryptbin.com --> - + diff --git a/src/chrome/content/rules/CryptedMemo.com.xml b/src/chrome/content/rules/CryptedMemo.com.xml index 235beb5a34e0..b7e4c0d31f1b 100644 --- a/src/chrome/content/rules/CryptedMemo.com.xml +++ b/src/chrome/content/rules/CryptedMemo.com.xml @@ -6,12 +6,11 @@ Fetch error: http://cryptedmemo.com/ => https://cryptedmemo.com/: (60, 'SSL cert www doesn't exist. --> - + - + diff --git a/src/chrome/content/rules/Crypteia_Networks.com.xml b/src/chrome/content/rules/Crypteia_Networks.com.xml deleted file mode 100644 index 90be5383ae9c..000000000000 --- a/src/chrome/content/rules/Crypteia_Networks.com.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Crypto.cat.xml b/src/chrome/content/rules/Crypto.cat.xml index 1d2a646cf1b0..b7b1c1db213c 100644 --- a/src/chrome/content/rules/Crypto.cat.xml +++ b/src/chrome/content/rules/Crypto.cat.xml @@ -4,7 +4,6 @@ - lists --> - diff --git a/src/chrome/content/rules/CryptoCoinsNews.com.xml b/src/chrome/content/rules/CryptoCoinsNews.com.xml index 7882db1b51b4..eae58b26699c 100644 --- a/src/chrome/content/rules/CryptoCoinsNews.com.xml +++ b/src/chrome/content/rules/CryptoCoinsNews.com.xml @@ -4,7 +4,7 @@ - + https://cryptolux.org/: (51, "SSL: no alternative certificate subject name matches target host name 'cryptolux.org'") --> - + - + - + diff --git a/src/chrome/content/rules/CryptoSeal.com.xml b/src/chrome/content/rules/CryptoSeal.com.xml index 380702d9eb30..d517761b5203 100644 --- a/src/chrome/content/rules/CryptoSeal.com.xml +++ b/src/chrome/content/rules/CryptoSeal.com.xml @@ -11,7 +11,7 @@ Fetch error: http://www.cryptoseal.com/ => https://www.cryptoseal.com/: (28, 'Op - connect --> - + diff --git a/src/chrome/content/rules/CryptoVPN.com.xml b/src/chrome/content/rules/CryptoVPN.com.xml deleted file mode 100644 index 0051e279e6fe..000000000000 --- a/src/chrome/content/rules/CryptoVPN.com.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Crypto_Design.org.xml b/src/chrome/content/rules/Crypto_Design.org.xml deleted file mode 100644 index bb6213e672f8..000000000000 --- a/src/chrome/content/rules/Crypto_Design.org.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Crypto_Santa.xyz.xml b/src/chrome/content/rules/Crypto_Santa.xyz.xml index 9d5b5c9071d6..b6811d8eb709 100644 --- a/src/chrome/content/rules/Crypto_Santa.xyz.xml +++ b/src/chrome/content/rules/Crypto_Santa.xyz.xml @@ -9,7 +9,7 @@ Fetch error: http://www.cryptosanta.xyz/ => https://www.cryptosanta.xyz/: (28, ' - .cryptosanta.xyz --> - + diff --git a/src/chrome/content/rules/Cryptohaze.xml b/src/chrome/content/rules/Cryptohaze.xml index d91ee3975242..72a6105fdfd0 100644 --- a/src/chrome/content/rules/Cryptohaze.xml +++ b/src/chrome/content/rules/Cryptohaze.xml @@ -18,7 +18,7 @@ - + - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Cryptome.xml b/src/chrome/content/rules/Cryptome.xml index 68f4c9bb80a3..152773c65eed 100644 --- a/src/chrome/content/rules/Cryptome.xml +++ b/src/chrome/content/rules/Cryptome.xml @@ -1,20 +1,13 @@ - - - - - - - - - - + + + - + + diff --git a/src/chrome/content/rules/Cryptomonkeys.com.xml b/src/chrome/content/rules/Cryptomonkeys.com.xml index 009d81e91b64..4953d46c1c98 100644 --- a/src/chrome/content/rules/Cryptomonkeys.com.xml +++ b/src/chrome/content/rules/Cryptomonkeys.com.xml @@ -10,7 +10,7 @@ - + - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Cryptopals.com.xml b/src/chrome/content/rules/Cryptopals.com.xml index a697b37f5408..cd5fab544219 100644 --- a/src/chrome/content/rules/Cryptopals.com.xml +++ b/src/chrome/content/rules/Cryptopals.com.xml @@ -7,9 +7,9 @@ - - diff --git a/src/chrome/content/rules/Cryptoparty.xml b/src/chrome/content/rules/Cryptoparty.xml index 93e6f1487c87..8ce9445a48d1 100644 --- a/src/chrome/content/rules/Cryptoparty.xml +++ b/src/chrome/content/rules/Cryptoparty.xml @@ -1,25 +1,16 @@ + + - - - - - - - - - - diff --git a/src/chrome/content/rules/Cryptostocks.com.xml b/src/chrome/content/rules/Cryptostocks.com.xml index 184a4628b1c5..3fde9b68cd40 100644 --- a/src/chrome/content/rules/Cryptostocks.com.xml +++ b/src/chrome/content/rules/Cryptostocks.com.xml @@ -9,7 +9,7 @@ Fetch error: http://www.cryptostocks.com/ => https://www.cryptostocks.com/: Too - .cryptostocks.com --> - + diff --git a/src/chrome/content/rules/Cryptsy.com.xml b/src/chrome/content/rules/Cryptsy.com.xml index aa85c25b8c82..280601381ca6 100644 --- a/src/chrome/content/rules/Cryptsy.com.xml +++ b/src/chrome/content/rules/Cryptsy.com.xml @@ -17,7 +17,7 @@ Fetch error: http://www.cryptsy.com/ => https://www.cryptsy.com/: (28, 'Connecti - www.cryptsy.com --> - + diff --git a/src/chrome/content/rules/Crystal_Delights.com.xml b/src/chrome/content/rules/Crystal_Delights.com.xml index 8512c0451d33..fd5d02bcfd20 100644 --- a/src/chrome/content/rules/Crystal_Delights.com.xml +++ b/src/chrome/content/rules/Crystal_Delights.com.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Crystal_Singing_Bowls.xml b/src/chrome/content/rules/Crystal_Singing_Bowls.xml index 32597b4fc964..e41c2054da38 100644 --- a/src/chrome/content/rules/Crystal_Singing_Bowls.xml +++ b/src/chrome/content/rules/Crystal_Singing_Bowls.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Crytography.com.xml b/src/chrome/content/rules/Crytography.com.xml index f09f00ad2dfe..874c37f5fd34 100644 --- a/src/chrome/content/rules/Crytography.com.xml +++ b/src/chrome/content/rules/Crytography.com.xml @@ -18,7 +18,7 @@ Fetch error: http://www.cryptography.com/ => https://www.cryptography.com/: (28, * Secured by us --> - + diff --git a/src/chrome/content/rules/Csair.com.xml b/src/chrome/content/rules/Csair.com.xml new file mode 100644 index 000000000000..b3171c688c8f --- /dev/null +++ b/src/chrome/content/rules/Csair.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Csob.sk.xml b/src/chrome/content/rules/Csob.sk.xml index 5933a465d919..3996bd3c2219 100644 --- a/src/chrome/content/rules/Csob.sk.xml +++ b/src/chrome/content/rules/Csob.sk.xml @@ -1,26 +1,8 @@ - - - + - - - - - - - + diff --git a/src/chrome/content/rules/CspBuilder.info.xml b/src/chrome/content/rules/CspBuilder.info.xml index d3b1d348c5b6..ee613c2529fb 100644 --- a/src/chrome/content/rules/CspBuilder.info.xml +++ b/src/chrome/content/rules/CspBuilder.info.xml @@ -5,7 +5,7 @@ Fetch error: http://cspbuilder.info/ => https://cspbuilder.info/: (28, 'Connecti Fetch error: http://www.cspbuilder.info/ => https://www.cspbuilder.info/: (28, 'Connection timed out after 20001 milliseconds') --> - + diff --git a/src/chrome/content/rules/Css3test.com.xml b/src/chrome/content/rules/Css3test.com.xml new file mode 100644 index 000000000000..3472ce8341ff --- /dev/null +++ b/src/chrome/content/rules/Css3test.com.xml @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Cstatic-images.com.xml b/src/chrome/content/rules/Cstatic-images.com.xml deleted file mode 100644 index e1cf5b851c12..000000000000 --- a/src/chrome/content/rules/Cstatic-images.com.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Cstatic.net.xml b/src/chrome/content/rules/Cstatic.net.xml index 9984ad2234f4..f61cdc841718 100644 --- a/src/chrome/content/rules/Cstatic.net.xml +++ b/src/chrome/content/rules/Cstatic.net.xml @@ -14,7 +14,7 @@ Fetch error: http://cdn.cstatic.net/ => https://dzbb4sjawljdv.cloudfront.net/: ( ^cstatic.net: Refused --> - + diff --git a/src/chrome/content/rules/Ctrl_Alt_Del.xml b/src/chrome/content/rules/Ctrl_Alt_Del.xml deleted file mode 100644 index 68e013ba51ba..000000000000 --- a/src/chrome/content/rules/Ctrl_Alt_Del.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/CtsCDN.com.xml b/src/chrome/content/rules/CtsCDN.com.xml deleted file mode 100644 index 8357ed84c2e6..000000000000 --- a/src/chrome/content/rules/CtsCDN.com.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Ctt.org.xml b/src/chrome/content/rules/Ctt.org.xml index 52adc770f322..89393130dfe6 100644 --- a/src/chrome/content/rules/Ctt.org.xml +++ b/src/chrome/content/rules/Ctt.org.xml @@ -7,7 +7,7 @@ Fetch error: http://www.ctt.org/ => https://www.ctt.org/: (28, 'Connection timed ^: cert only matches www --> - + diff --git a/src/chrome/content/rules/Ctwatch.net.xml b/src/chrome/content/rules/Ctwatch.net.xml deleted file mode 100644 index 7f2e49443172..000000000000 --- a/src/chrome/content/rules/Ctwatch.net.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Cubana.cu.xml b/src/chrome/content/rules/Cubana.cu.xml new file mode 100644 index 000000000000..5cebbf51cbb1 --- /dev/null +++ b/src/chrome/content/rules/Cubana.cu.xml @@ -0,0 +1,12 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Cubics.xml b/src/chrome/content/rules/Cubics.xml index c923f6b41a52..5044ab06307c 100644 --- a/src/chrome/content/rules/Cubics.xml +++ b/src/chrome/content/rules/Cubics.xml @@ -15,23 +15,21 @@ Fetch error: http://cubics.com/ => https://cubplat.bidsystem.com/signup/: (60, ' - (www.)cubics.com (mismatched, CN: *.bidsystem.com) --> - + - + + - - + diff --git a/src/chrome/content/rules/Cubify.com.xml b/src/chrome/content/rules/Cubify.com.xml new file mode 100644 index 000000000000..952df83d0b54 --- /dev/null +++ b/src/chrome/content/rules/Cubify.com.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Cubify.xml b/src/chrome/content/rules/Cubify.xml deleted file mode 100644 index 29089b403e52..000000000000 --- a/src/chrome/content/rules/Cubify.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Cucumber.io.xml b/src/chrome/content/rules/Cucumber.io.xml new file mode 100644 index 000000000000..15b54cd1697a --- /dev/null +++ b/src/chrome/content/rules/Cucumber.io.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/CufonFonts.com.xml b/src/chrome/content/rules/CufonFonts.com.xml new file mode 100644 index 000000000000..cde81b75d3bc --- /dev/null +++ b/src/chrome/content/rules/CufonFonts.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/CuidadoDeSalud.gov.xml b/src/chrome/content/rules/CuidadoDeSalud.gov.xml index 10c0a83a6a14..5955cc9959b0 100644 --- a/src/chrome/content/rules/CuidadoDeSalud.gov.xml +++ b/src/chrome/content/rules/CuidadoDeSalud.gov.xml @@ -2,8 +2,7 @@ - + diff --git a/src/chrome/content/rules/Cultura.no.xml b/src/chrome/content/rules/Cultura.no.xml index 36c45af2b5c8..56ddfe029a9b 100644 --- a/src/chrome/content/rules/Cultura.no.xml +++ b/src/chrome/content/rules/Cultura.no.xml @@ -2,7 +2,6 @@ - - + diff --git a/src/chrome/content/rules/Cultural_Survival.org.xml b/src/chrome/content/rules/Cultural_Survival.org.xml index 47fd58f25af0..ed1891c882b8 100644 --- a/src/chrome/content/rules/Cultural_Survival.org.xml +++ b/src/chrome/content/rules/Cultural_Survival.org.xml @@ -19,7 +19,7 @@ - + - + + + diff --git a/src/chrome/content/rules/Cupid_plc.com.xml b/src/chrome/content/rules/Cupid_plc.com.xml deleted file mode 100644 index 1a94641e7a7f..000000000000 --- a/src/chrome/content/rules/Cupid_plc.com.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Cupid_plc_CDN.xml b/src/chrome/content/rules/Cupid_plc_CDN.xml index e4487a56f20e..38b52d041c5a 100644 --- a/src/chrome/content/rules/Cupid_plc_CDN.xml +++ b/src/chrome/content/rules/Cupid_plc_CDN.xml @@ -44,7 +44,7 @@ Fetch error: http://cdn.statimgs2.com/ => https://cdn.static2img.com/: (51, "SSL Used on multiple Cupid plc sites. --> - + diff --git a/src/chrome/content/rules/Curbed.cc.xml b/src/chrome/content/rules/Curbed.cc.xml index 217f308c24e1..810d03e51da7 100644 --- a/src/chrome/content/rules/Curbed.cc.xml +++ b/src/chrome/content/rules/Curbed.cc.xml @@ -6,7 +6,7 @@ Fetch error: http://f.curbed.cc/ => https://f.curbed.cc/: (28, 'Connection timed For other Vox Media coverage, see Vox.com.xml. --> - + diff --git a/src/chrome/content/rules/CureSec.com.xml b/src/chrome/content/rules/CureSec.com.xml index da907ee11830..37a5087f4bd1 100644 --- a/src/chrome/content/rules/CureSec.com.xml +++ b/src/chrome/content/rules/CureSec.com.xml @@ -11,7 +11,7 @@ Fetch error: http://curesec.com/ => https://curesec.com/: (60, 'SSL certificate * Mismatched --> - + diff --git a/src/chrome/content/rules/Curiouscat.me.xml b/src/chrome/content/rules/Curiouscat.me.xml deleted file mode 100644 index 56900f2abf27..000000000000 --- a/src/chrome/content/rules/Curiouscat.me.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Curo.co.za.xml b/src/chrome/content/rules/Curo.co.za.xml index b39ef7596470..215f7d6dfd24 100644 --- a/src/chrome/content/rules/Curo.co.za.xml +++ b/src/chrome/content/rules/Curo.co.za.xml @@ -13,7 +13,7 @@ - + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Currys.co.uk.xml b/src/chrome/content/rules/Currys.co.uk.xml deleted file mode 100644 index 5f73f97cbc93..000000000000 --- a/src/chrome/content/rules/Currys.co.uk.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Curse.xml b/src/chrome/content/rules/Curse.xml index 90f0712b5daa..c6b8d430fc23 100644 --- a/src/chrome/content/rules/Curse.xml +++ b/src/chrome/content/rules/Curse.xml @@ -1,8 +1,4 @@ - - + @@ -84,7 +89,6 @@ Non-2xx HTTP code: http://xcom2.curse.com/ (200) => https://xcom2.curse.com/ (40 - @@ -115,17 +119,14 @@ Non-2xx HTTP code: http://xcom2.curse.com/ (200) => https://xcom2.curse.com/ (40 - - - @@ -136,22 +137,17 @@ Non-2xx HTTP code: http://xcom2.curse.com/ (200) => https://xcom2.curse.com/ (40 - - - - - diff --git a/src/chrome/content/rules/Curso_de_Italiano.xml b/src/chrome/content/rules/Curso_de_Italiano.xml index ad87f1b1a2b8..b7fa155fa451 100644 --- a/src/chrome/content/rules/Curso_de_Italiano.xml +++ b/src/chrome/content/rules/Curso_de_Italiano.xml @@ -1,7 +1,7 @@ - + diff --git a/src/chrome/content/rules/CustomWheelConnection.com.xml b/src/chrome/content/rules/CustomWheelConnection.com.xml index 4ab02f73e63d..d7b4f0c64a52 100644 --- a/src/chrome/content/rules/CustomWheelConnection.com.xml +++ b/src/chrome/content/rules/CustomWheelConnection.com.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Custom_Tiburon.xml b/src/chrome/content/rules/Custom_Tiburon.xml deleted file mode 100644 index 1e530b36ea8d..000000000000 --- a/src/chrome/content/rules/Custom_Tiburon.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Customer-Lobby.xml b/src/chrome/content/rules/Customer-Lobby.xml index 9965ed8e90cf..bf01e6494e94 100644 --- a/src/chrome/content/rules/Customer-Lobby.xml +++ b/src/chrome/content/rules/Customer-Lobby.xml @@ -6,9 +6,9 @@ - - + + diff --git a/src/chrome/content/rules/Customer.io.xml b/src/chrome/content/rules/Customer.io.xml index f77e44604aaf..7f4b3bb5359b 100644 --- a/src/chrome/content/rules/Customer.io.xml +++ b/src/chrome/content/rules/Customer.io.xml @@ -13,4 +13,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Customersaas.com.xml b/src/chrome/content/rules/Customersaas.com.xml index 44b80e8d0496..b8bb88286fb4 100644 --- a/src/chrome/content/rules/Customersaas.com.xml +++ b/src/chrome/content/rules/Customersaas.com.xml @@ -14,13 +14,10 @@ --> - + + - - - + diff --git a/src/chrome/content/rules/Customersvc.com.xml b/src/chrome/content/rules/Customersvc.com.xml deleted file mode 100644 index c90fb59771e4..000000000000 --- a/src/chrome/content/rules/Customersvc.com.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Custy.com.xml b/src/chrome/content/rules/Custy.com.xml new file mode 100644 index 000000000000..918d7d4e7b32 --- /dev/null +++ b/src/chrome/content/rules/Custy.com.xml @@ -0,0 +1,13 @@ + + + + + + + diff --git a/src/chrome/content/rules/CuteDigi.xml b/src/chrome/content/rules/CuteDigi.xml index 207c0d04f4c2..3d5c5f2de77a 100644 --- a/src/chrome/content/rules/CuteDigi.xml +++ b/src/chrome/content/rules/CuteDigi.xml @@ -5,7 +5,7 @@ Fetch error: http://cutedigi.com/ => https://cutedigi.com/: (60, 'SSL certificat Fetch error: http://www.cutedigi.com/ => https://www.cutedigi.com/: (60, 'SSL certificate problem: certificate has expired') --> - + @@ -16,4 +16,4 @@ Fetch error: http://www.cutedigi.com/ => https://www.cutedigi.com/: (60, 'SSL ce - \ No newline at end of file + diff --git a/src/chrome/content/rules/Cuttlefish.com.xml b/src/chrome/content/rules/Cuttlefish.com.xml index 9f6bacb84a2d..fdcaa66be752 100644 --- a/src/chrome/content/rules/Cuttlefish.com.xml +++ b/src/chrome/content/rules/Cuttlefish.com.xml @@ -1,7 +1,13 @@ - + + - diff --git a/src/chrome/content/rules/Cuusoo.xml b/src/chrome/content/rules/Cuusoo.xml index 51f817d0fefe..8f03b5afd55d 100644 --- a/src/chrome/content/rules/Cuusoo.xml +++ b/src/chrome/content/rules/Cuusoo.xml @@ -19,7 +19,7 @@ Non-2xx HTTP code: http://www.cuusoo.com/ (200) => https://www.cuusoo.com/ (404) - lego.cuusoo.com (expired; empty page, but https working) --> - + diff --git a/src/chrome/content/rules/Cvent.com.xml b/src/chrome/content/rules/Cvent.com.xml index 780f2d187d00..9187ef261455 100644 --- a/src/chrome/content/rules/Cvent.com.xml +++ b/src/chrome/content/rules/Cvent.com.xml @@ -21,13 +21,17 @@ - + + + diff --git a/src/chrome/content/rules/Cxcloud.com.xml b/src/chrome/content/rules/Cxcloud.com.xml index c433beb32114..f90e6b78c6b8 100644 --- a/src/chrome/content/rules/Cxcloud.com.xml +++ b/src/chrome/content/rules/Cxcloud.com.xml @@ -10,7 +10,7 @@ Fetch error: http://www.cxcloud.com/ => https://www.cxcloud.com/: (56, 'Recv fai For other Checkmarx coverage, see Checkmarx.com.xml. --> - + diff --git a/src/chrome/content/rules/Cxt.ms.xml b/src/chrome/content/rules/Cxt.ms.xml deleted file mode 100644 index 9e72e1cd24d7..000000000000 --- a/src/chrome/content/rules/Cxt.ms.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Cyber-Security-Challenge.xml b/src/chrome/content/rules/Cyber-Security-Challenge.xml index aecb7b2ca6a5..d59a1bbd8351 100644 --- a/src/chrome/content/rules/Cyber-Security-Challenge.xml +++ b/src/chrome/content/rules/Cyber-Security-Challenge.xml @@ -8,7 +8,7 @@ Fetch error: http://www.cybersecuritychallenge.org.uk/ => https://www.cybersecur - + diff --git a/src/chrome/content/rules/CyberAces.xml b/src/chrome/content/rules/CyberAces.xml index c87fa41fe4f7..037d4b29ac66 100644 --- a/src/chrome/content/rules/CyberAces.xml +++ b/src/chrome/content/rules/CyberAces.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://online.cyberaces.org/ => https://www.online.cyberaces.org/: (6, 'Could not resolve host: www.online.cyberaces.org') Fetch error: http://www.online.cyberaces.org/ => https://www.online.cyberaces.org/: (6, 'Could not resolve host: www.online.cyberaces.org') --> - + diff --git a/src/chrome/content/rules/CyberGhost.xml b/src/chrome/content/rules/CyberGhost.xml index 3c930fc0d4e0..9f59bea6af07 100644 --- a/src/chrome/content/rules/CyberGhost.xml +++ b/src/chrome/content/rules/CyberGhost.xml @@ -6,7 +6,7 @@ - + - + https://www.cyberphoto.fi/: (6, 'Could not resolve host: www.cyberphoto.fi') --> - + - + - + diff --git a/src/chrome/content/rules/Cyberciti.org.xml b/src/chrome/content/rules/Cyberciti.org.xml index dc02ebddf55e..4b9bedeb0aca 100644 --- a/src/chrome/content/rules/Cyberciti.org.xml +++ b/src/chrome/content/rules/Cyberciti.org.xml @@ -1,20 +1,10 @@ - - + + + - - + diff --git a/src/chrome/content/rules/Cybercon.xml b/src/chrome/content/rules/Cybercon.xml index 52ce046ad91b..6e0084d838f5 100644 --- a/src/chrome/content/rules/Cybercon.xml +++ b/src/chrome/content/rules/Cybercon.xml @@ -19,4 +19,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Cyberduck.io.xml b/src/chrome/content/rules/Cyberduck.io.xml deleted file mode 100644 index d44358b18560..000000000000 --- a/src/chrome/content/rules/Cyberduck.io.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Cybergolf.com-mixedcontent.xml b/src/chrome/content/rules/Cybergolf.com-mixedcontent.xml index 394ea0da3224..16e2091ea0e7 100644 --- a/src/chrome/content/rules/Cybergolf.com-mixedcontent.xml +++ b/src/chrome/content/rules/Cybergolf.com-mixedcontent.xml @@ -10,7 +10,7 @@ - + - + - + diff --git a/src/chrome/content/rules/Cyberplat.ru.xml b/src/chrome/content/rules/Cyberplat.ru.xml index 0d7c10170cc7..b9c9fcc22d00 100644 --- a/src/chrome/content/rules/Cyberplat.ru.xml +++ b/src/chrome/content/rules/Cyberplat.ru.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://info.cyberplat.ru/ => https://info.cyberplat.ru/: (60, 'SSL certificate problem: unable to get local issuer certificate') kz. mismatch card. mixed content--> - + diff --git a/src/chrome/content/rules/Cyberstreetwise.xml b/src/chrome/content/rules/Cyberstreetwise.xml index 813269b93993..a2b840bf7780 100644 --- a/src/chrome/content/rules/Cyberstreetwise.xml +++ b/src/chrome/content/rules/Cyberstreetwise.xml @@ -6,7 +6,7 @@ - + diff --git a/src/chrome/content/rules/Cybertip.ca.xml b/src/chrome/content/rules/Cybertip.ca.xml index 19644e6b3a2d..23d1cd8955e8 100644 --- a/src/chrome/content/rules/Cybertip.ca.xml +++ b/src/chrome/content/rules/Cybertip.ca.xml @@ -3,13 +3,11 @@ - + + + - - - + diff --git a/src/chrome/content/rules/Cyberus-Technology.de.xml b/src/chrome/content/rules/Cyberus-Technology.de.xml new file mode 100644 index 000000000000..ad30afc3671a --- /dev/null +++ b/src/chrome/content/rules/Cyberus-Technology.de.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/Cyberwar.nl.xml b/src/chrome/content/rules/Cyberwar.nl.xml index 2bcc8f8cbc11..1e84159addb4 100644 --- a/src/chrome/content/rules/Cyberwar.nl.xml +++ b/src/chrome/content/rules/Cyberwar.nl.xml @@ -7,10 +7,11 @@ - + + + - + diff --git a/src/chrome/content/rules/Cygwin.com.xml b/src/chrome/content/rules/Cygwin.com.xml index dc0fc26a2c8f..1c57d813edd0 100644 --- a/src/chrome/content/rules/Cygwin.com.xml +++ b/src/chrome/content/rules/Cygwin.com.xml @@ -1,21 +1,17 @@ - - - - - - + + + + + + + + diff --git a/src/chrome/content/rules/Cykloserver.cz.xml b/src/chrome/content/rules/Cykloserver.cz.xml new file mode 100644 index 000000000000..592761183b7d --- /dev/null +++ b/src/chrome/content/rules/Cykloserver.cz.xml @@ -0,0 +1,13 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Cyngn.com.xml b/src/chrome/content/rules/Cyngn.com.xml index f5fca925c029..f9a821708fc8 100644 --- a/src/chrome/content/rules/Cyngn.com.xml +++ b/src/chrome/content/rules/Cyngn.com.xml @@ -25,7 +25,7 @@ Fetch error: http://builds.cyngn.com/ => https://d199yez36w5w8l.cloudfront.net/: - builds (→ d199yez36w5w8l.cloudfront.net) --> - + diff --git a/src/chrome/content/rules/Cyphar.com.xml b/src/chrome/content/rules/Cyphar.com.xml deleted file mode 100644 index bc97570639b4..000000000000 --- a/src/chrome/content/rules/Cyphar.com.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Cyphdbyhiddenbhs.onion.xml b/src/chrome/content/rules/Cyphdbyhiddenbhs.onion.xml index 3dea4d2581d3..d245a185ee37 100644 --- a/src/chrome/content/rules/Cyphdbyhiddenbhs.onion.xml +++ b/src/chrome/content/rules/Cyphdbyhiddenbhs.onion.xml @@ -1,35 +1,13 @@ - - + - - - - - - - + diff --git a/src/chrome/content/rules/Cyphertite.com.xml b/src/chrome/content/rules/Cyphertite.com.xml index 594fab680294..3fd210089743 100644 --- a/src/chrome/content/rules/Cyphertite.com.xml +++ b/src/chrome/content/rules/Cyphertite.com.xml @@ -14,14 +14,14 @@ Fetch error: http://www.cyphertite.com/ => https://www.cyphertite.com/: (6, 'Cou - blog --> - + - + https://forums.satellitecypru - (www.) (shows default H-Sphere page; mismatched, CN: *.hostica.com) --> - + @@ -18,7 +18,6 @@ Fetch error: http://forums.satellitecyprus.com/ => https://forums.satellitecypru - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Cyscon.net.xml b/src/chrome/content/rules/Cyscon.net.xml index 589d78220572..b849c7077233 100644 --- a/src/chrome/content/rules/Cyscon.net.xml +++ b/src/chrome/content/rules/Cyscon.net.xml @@ -6,7 +6,7 @@ Fetch error: http://stats.cyscon.net/ => https://stats.cyscon.net/: (6, 'Could n (www.): dropped --> - + @@ -16,7 +16,6 @@ Fetch error: http://stats.cyscon.net/ => https://stats.cyscon.net/: (6, 'Could n - + diff --git a/src/chrome/content/rules/Cysec_Labs.com.xml b/src/chrome/content/rules/Cysec_Labs.com.xml index 0d2ef51139a1..08a9511ed620 100644 --- a/src/chrome/content/rules/Cysec_Labs.com.xml +++ b/src/chrome/content/rules/Cysec_Labs.com.xml @@ -5,13 +5,13 @@ Fetch error: http://cyseclabs.com/ => https://cyseclabs.com/: (60, 'SSL certific Fetch error: http://www.cyseclabs.com/ => https://www.cyseclabs.com/: (60, 'SSL certificate problem: certificate has expired') --> - + - + https://www.cvut.cz/: (60, 'SSL certificate prob - + + + + + - + - + diff --git a/src/chrome/content/rules/D.me.xml b/src/chrome/content/rules/D.me.xml index 67195ebecb6c..01ea055aede6 100644 --- a/src/chrome/content/rules/D.me.xml +++ b/src/chrome/content/rules/D.me.xml @@ -16,7 +16,7 @@ Fetch error: http://d.me/ => https://delicious.com/: (6, 'Could not resolve host - d.me (→ delicious.com) --> - + diff --git a/src/chrome/content/rules/D0wn.biz.xml b/src/chrome/content/rules/D0wn.biz.xml index 3369f83471de..0fe1c6054747 100644 --- a/src/chrome/content/rules/D0wn.biz.xml +++ b/src/chrome/content/rules/D0wn.biz.xml @@ -1,14 +1,8 @@ - - - diff --git a/src/chrome/content/rules/D2jsp.org.xml b/src/chrome/content/rules/D2jsp.org.xml index 8b3e2dceb315..a868fdfb1941 100644 --- a/src/chrome/content/rules/D2jsp.org.xml +++ b/src/chrome/content/rules/D2jsp.org.xml @@ -5,7 +5,7 @@ Fetch error: http://d2jsp.com/ => https://d2jsp.com/: Too many redirects while f Fetch error: http://www.d2jsp.com/ => https://www.d2jsp.com/: Too many redirects while fetching 'https://www.d2jsp.com/' --> - + diff --git a/src/chrome/content/rules/D3.ru.xml b/src/chrome/content/rules/D3.ru.xml index ae920ef1ac2b..f1769e727e47 100644 --- a/src/chrome/content/rules/D3.ru.xml +++ b/src/chrome/content/rules/D3.ru.xml @@ -1,7 +1,6 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/DALnet.xml b/src/chrome/content/rules/DALnet.xml index ce2ffaf8d544..7a6b8e3a584f 100644 --- a/src/chrome/content/rules/DALnet.xml +++ b/src/chrome/content/rules/DALnet.xml @@ -4,7 +4,7 @@ - + diff --git a/src/chrome/content/rules/DANTE.net.xml b/src/chrome/content/rules/DANTE.net.xml deleted file mode 100644 index 062cad346688..000000000000 --- a/src/chrome/content/rules/DANTE.net.xml +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/DAR.fm.xml b/src/chrome/content/rules/DAR.fm.xml index 043b6c733e89..2d553b8a25dd 100644 --- a/src/chrome/content/rules/DAR.fm.xml +++ b/src/chrome/content/rules/DAR.fm.xml @@ -29,7 +29,7 @@ - + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/DATACM.com.xml b/src/chrome/content/rules/DATACM.com.xml new file mode 100644 index 000000000000..f6d4932223e8 --- /dev/null +++ b/src/chrome/content/rules/DATACM.com.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/DBA.dk.xml b/src/chrome/content/rules/DBA.dk.xml new file mode 100644 index 000000000000..e30268eca9a5 --- /dev/null +++ b/src/chrome/content/rules/DBA.dk.xml @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/DBS.xml b/src/chrome/content/rules/DBS.xml index 7ff4c26d17f9..071831e1088e 100644 --- a/src/chrome/content/rules/DBS.xml +++ b/src/chrome/content/rules/DBS.xml @@ -1,35 +1,35 @@ - + - + - + - + - + - - + + - + - + diff --git a/src/chrome/content/rules/DBforums.xml b/src/chrome/content/rules/DBforums.xml index 81b8d602d8a4..4f89fa66b763 100644 --- a/src/chrome/content/rules/DBforums.xml +++ b/src/chrome/content/rules/DBforums.xml @@ -18,7 +18,7 @@ * Secured by us --> - + diff --git a/src/chrome/content/rules/DCBoEE.org.xml b/src/chrome/content/rules/DCBoEE.org.xml deleted file mode 100644 index e5a5723caefd..000000000000 --- a/src/chrome/content/rules/DCBoEE.org.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/DC_Comics.com.xml b/src/chrome/content/rules/DC_Comics.com.xml index b0f3d34e2c97..fb789797ace4 100644 --- a/src/chrome/content/rules/DC_Comics.com.xml +++ b/src/chrome/content/rules/DC_Comics.com.xml @@ -1,16 +1,36 @@ - + Timeout was reached: + - assets.dccomics.com + SSL peer certificate was not OK: + - dccomics.com + - batmanvsuperman.dccomics.com + - dcu.blog.dccomics.com + - mad.blog.dccomics.com + - vertigo.blog.dccomics.com + - wildstorm.blog.dccomics.com + - zuda.blog.dccomics.com + - dcublog.dccomics.com + - experienceatlantis.dccomics.com + - jointheleague.dccomics.com + - beta.jointheleague.dccomics.com + - dev.jointheleague.dccomics.com + - promo.dccomics.com + - read.dccomics.com + - www.read.dccomics.com +--> + + + - - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/DC_Power.eu.xml b/src/chrome/content/rules/DC_Power.eu.xml deleted file mode 100644 index ef70ab061d2d..000000000000 --- a/src/chrome/content/rules/DC_Power.eu.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/DC_Vote.org.xml b/src/chrome/content/rules/DC_Vote.org.xml index ca953d3e3cd6..7937308909fb 100644 --- a/src/chrome/content/rules/DC_Vote.org.xml +++ b/src/chrome/content/rules/DC_Vote.org.xml @@ -11,7 +11,7 @@ Fetch error: http://www.dcvote.org/ => https://www.dcvote.org/: (60, 'SSL certif * Secured by us --> - + diff --git a/src/chrome/content/rules/DD-WRT.xml b/src/chrome/content/rules/DD-WRT.xml index 7722b880516a..292fa8e0f08f 100644 --- a/src/chrome/content/rules/DD-WRT.xml +++ b/src/chrome/content/rules/DD-WRT.xml @@ -23,7 +23,7 @@ - + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/DDS2DDS.com.xml b/src/chrome/content/rules/DDS2DDS.com.xml index a82886f722d5..61c3d27b86e0 100644 --- a/src/chrome/content/rules/DDS2DDS.com.xml +++ b/src/chrome/content/rules/DDS2DDS.com.xml @@ -7,12 +7,12 @@ Fetch error: http://www.dds2dds.com/ => https://www.dds2dds.com/: (28, 'Connecti Disabled by https-everywhere-checker because: Fetch error: http://kaizencrossfit.com/ => https://kaizencrossfit.com/: (51, "SSL: no alternative certificate subject name matches target host name 'kaizencrossfit.com'") --> - + - + - + @@ -16,4 +16,4 @@ Fetch error: http://www.ddosbreak.com/ => https://www.ddosbreak.com/: (28, 'Oper - \ No newline at end of file + diff --git a/src/chrome/content/rules/DEEWR.xml b/src/chrome/content/rules/DEEWR.xml index b0eb4befadc1..e74bdabffbe8 100644 --- a/src/chrome/content/rules/DEEWR.xml +++ b/src/chrome/content/rules/DEEWR.xml @@ -4,10 +4,10 @@ Disabled by https-everywhere-checker because: Fetch error: http://prisms.deewr.gov.au/ => https://prisms.deewr.gov.au/: (51, "SSL: no alternative certificate subject name matches target host name 'prisms.deewr.gov.au'") --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/DEF_CON_Groups.org.xml b/src/chrome/content/rules/DEF_CON_Groups.org.xml deleted file mode 100644 index d8a970f99d11..000000000000 --- a/src/chrome/content/rules/DEF_CON_Groups.org.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/DEMO.xml b/src/chrome/content/rules/DEMO.xml index 9d727f6d6a27..685f384bafe4 100644 --- a/src/chrome/content/rules/DEMO.xml +++ b/src/chrome/content/rules/DEMO.xml @@ -9,7 +9,7 @@ - + - - - - + Login required: + - gitlab.denx.de + - owncloud.denx.de + MCB: + - theia.denx.de - + Passive mixed content: + - denx.de + - www.denx.de + - theia.denx.de + Service unavailable: + - jabber.denx.de +--> + + + + + + - - + diff --git a/src/chrome/content/rules/DF.eu.xml b/src/chrome/content/rules/DF.eu.xml index 35b92e2e65ab..d7ff1889228c 100644 --- a/src/chrome/content/rules/DF.eu.xml +++ b/src/chrome/content/rules/DF.eu.xml @@ -4,7 +4,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/DGEX.com.xml b/src/chrome/content/rules/DGEX.com.xml index a0edc2c5f1e0..8c2eb635ebef 100644 --- a/src/chrome/content/rules/DGEX.com.xml +++ b/src/chrome/content/rules/DGEX.com.xml @@ -4,12 +4,12 @@ Disabled by https-everywhere-checker because: Fetch error: http://dgex.com/ => https://dgex.com/: (28, 'Operation timed out after 30007 milliseconds with 0 bytes received') Fetch error: http://www.dgex.com/ => https://www.dgex.com/: (28, 'Operation timed out after 30001 milliseconds with 0 bytes received') - Insecure cookies are set for these + Insecure cookies are set for these - .dgex.com --> - + diff --git a/src/chrome/content/rules/DGzRS_Die_Seenotretter.xml b/src/chrome/content/rules/DGzRS_Die_Seenotretter.xml new file mode 100644 index 000000000000..5b1abc650481 --- /dev/null +++ b/src/chrome/content/rules/DGzRS_Die_Seenotretter.xml @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/DHL.de.xml b/src/chrome/content/rules/DHL.de.xml index 92428c85118c..f3379e4aa548 100644 --- a/src/chrome/content/rules/DHL.de.xml +++ b/src/chrome/content/rules/DHL.de.xml @@ -9,7 +9,7 @@ - + diff --git a/src/chrome/content/rules/DHgate.com.xml b/src/chrome/content/rules/DHgate.com.xml index b6c384d9ba56..2636ec0aff37 100644 --- a/src/chrome/content/rules/DHgate.com.xml +++ b/src/chrome/content/rules/DHgate.com.xml @@ -1,47 +1,76 @@ - + - - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/DIYbanter.xml b/src/chrome/content/rules/DIYbanter.xml index e276a84d9597..b4b82679eb82 100644 --- a/src/chrome/content/rules/DIYbanter.xml +++ b/src/chrome/content/rules/DIYbanter.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/DIYbookscanner.org.xml b/src/chrome/content/rules/DIYbookscanner.org.xml new file mode 100644 index 000000000000..5f9b900b8702 --- /dev/null +++ b/src/chrome/content/rules/DIYbookscanner.org.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/DJI.xml b/src/chrome/content/rules/DJI.xml index 6682c867d0d0..f7af8ec3fdc3 100644 --- a/src/chrome/content/rules/DJI.xml +++ b/src/chrome/content/rules/DJI.xml @@ -49,7 +49,7 @@ Fetch error: http://www-dji-china.dji.com/ => https://www-dji-china.dji.com/: (2 wiki.dji.com --> - + diff --git a/src/chrome/content/rules/DJKit.xml b/src/chrome/content/rules/DJKit.xml index 2cd794dd7286..9c6fd5da3ae5 100644 --- a/src/chrome/content/rules/DJKit.xml +++ b/src/chrome/content/rules/DJKit.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/DKWiki.com.xml b/src/chrome/content/rules/DKWiki.com.xml new file mode 100644 index 000000000000..cb1f2db8f484 --- /dev/null +++ b/src/chrome/content/rules/DKWiki.com.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/DKiT.ie.xml b/src/chrome/content/rules/DKiT.ie.xml index a8cc92b857ed..3ce626857717 100644 --- a/src/chrome/content/rules/DKiT.ie.xml +++ b/src/chrome/content/rules/DKiT.ie.xml @@ -55,7 +55,7 @@ Fetch error: http://passwordreset.dkit.ie/ => https://passwordreset.dkit.ie/: (6 * Secured by us --> - + diff --git a/src/chrome/content/rules/DLsite.com.xml b/src/chrome/content/rules/DLsite.com.xml new file mode 100644 index 000000000000..5a15fd314bee --- /dev/null +++ b/src/chrome/content/rules/DLsite.com.xml @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/DLsite.jp.xml b/src/chrome/content/rules/DLsite.jp.xml new file mode 100644 index 000000000000..e6ecdafcdfbe --- /dev/null +++ b/src/chrome/content/rules/DLsite.jp.xml @@ -0,0 +1,10 @@ + + + + + + + diff --git a/src/chrome/content/rules/DMCA_Services.xml b/src/chrome/content/rules/DMCA_Services.xml index 64566b17f7a9..792dfa4089c2 100644 --- a/src/chrome/content/rules/DMCA_Services.xml +++ b/src/chrome/content/rules/DMCA_Services.xml @@ -24,7 +24,8 @@ - + + @@ -33,7 +34,6 @@ - + diff --git a/src/chrome/content/rules/DMLP.org.xml b/src/chrome/content/rules/DMLP.org.xml index c679b8194a6e..59a6579ab861 100644 --- a/src/chrome/content/rules/DMLP.org.xml +++ b/src/chrome/content/rules/DMLP.org.xml @@ -1,36 +1,23 @@ - - + + + - - - + diff --git a/src/chrome/content/rules/DMS-Sweden.com.xml b/src/chrome/content/rules/DMS-Sweden.com.xml deleted file mode 100644 index 8fc89b240d0f..000000000000 --- a/src/chrome/content/rules/DMS-Sweden.com.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/DMU.xml b/src/chrome/content/rules/DMU.xml index f3077aac93fb..aeddaa34d3f5 100644 --- a/src/chrome/content/rules/DMU.xml +++ b/src/chrome/content/rules/DMU.xml @@ -22,7 +22,13 @@ - + + + + + + + diff --git a/src/chrome/content/rules/DM_mailing_list.com.xml b/src/chrome/content/rules/DM_mailing_list.com.xml index 012a3e398e5f..c18b91effc63 100644 --- a/src/chrome/content/rules/DM_mailing_list.com.xml +++ b/src/chrome/content/rules/DM_mailing_list.com.xml @@ -8,7 +8,7 @@ - + - - - - - - - - - - - diff --git a/src/chrome/content/rules/DN.com.xml b/src/chrome/content/rules/DN.com.xml deleted file mode 100644 index 776d4d9506a5..000000000000 --- a/src/chrome/content/rules/DN.com.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/DN.dk.xml b/src/chrome/content/rules/DN.dk.xml index 29f86c116fbb..b11b51aa4f41 100644 --- a/src/chrome/content/rules/DN.dk.xml +++ b/src/chrome/content/rules/DN.dk.xml @@ -13,7 +13,7 @@ Fetch error: http://www.dn.dk/ => https://www.dn.dk/: (7, 'Failed to connect to ¹: Refused --> - + diff --git a/src/chrome/content/rules/DN.no.xml b/src/chrome/content/rules/DN.no.xml index df84ad213ecc..d0a5d84dd678 100644 --- a/src/chrome/content/rules/DN.no.xml +++ b/src/chrome/content/rules/DN.no.xml @@ -1,8 +1,15 @@ + - + + + - + + diff --git a/src/chrome/content/rules/DNA.Land.xml b/src/chrome/content/rules/DNA.Land.xml index b7f7be37d6e1..8219d1a3f4de 100644 --- a/src/chrome/content/rules/DNA.Land.xml +++ b/src/chrome/content/rules/DNA.Land.xml @@ -17,7 +17,7 @@ --> - + https://dnaserum.com/: (60, 'SSL certificate problem: certificate has expired') --> - + @@ -29,4 +29,4 @@ Fetch error: http://dnaserum.com/ => https://dnaserum.com/: (60, 'SSL certificat - \ No newline at end of file + diff --git a/src/chrome/content/rules/DNB.no.xml b/src/chrome/content/rules/DNB.no.xml index 4fd938e0f814..d9419cb004f0 100644 --- a/src/chrome/content/rules/DNB.no.xml +++ b/src/chrome/content/rules/DNB.no.xml @@ -4,7 +4,6 @@ Other DNB Bank rulesets: - Deltager.no.xml - - DnBNor.xml Problematic hosts in *dnb.no: @@ -60,7 +59,7 @@ --> - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/DNSCurve.xml b/src/chrome/content/rules/DNSCurve.xml index c453138586c6..ada5e0335947 100644 --- a/src/chrome/content/rules/DNSCurve.xml +++ b/src/chrome/content/rules/DNSCurve.xml @@ -8,4 +8,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/DNSQuery.org.xml b/src/chrome/content/rules/DNSQuery.org.xml index d67a2531aa50..58d6c4075117 100644 --- a/src/chrome/content/rules/DNSQuery.org.xml +++ b/src/chrome/content/rules/DNSQuery.org.xml @@ -23,7 +23,7 @@ --> - + - + diff --git a/src/chrome/content/rules/DNSdynamic.xml b/src/chrome/content/rules/DNSdynamic.xml deleted file mode 100644 index 433e46e22b34..000000000000 --- a/src/chrome/content/rules/DNSdynamic.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/DNSstuff.com.xml b/src/chrome/content/rules/DNSstuff.com.xml index d990aef13278..4a808243da40 100644 --- a/src/chrome/content/rules/DNSstuff.com.xml +++ b/src/chrome/content/rules/DNSstuff.com.xml @@ -9,7 +9,7 @@ Fetch error: http://www.dnsstuff.com/member/register/ => https://www.dnsstuff.co Fetch error: http://www.dnsstuff.com/templates/system/css/general.css => https://www.dnsstuff.com/templates/system/css/general.css: Too many redirects while fetching 'https://www.dnsstuff.com/templates/system/css/general.css' --> - + diff --git a/src/chrome/content/rules/DNTX.com.xml b/src/chrome/content/rules/DNTX.com.xml index 8008facbc9a7..c14a6976c9b5 100644 --- a/src/chrome/content/rules/DNTX.com.xml +++ b/src/chrome/content/rules/DNTX.com.xml @@ -1,9 +1,7 @@ @@ -15,13 +13,6 @@ - - - - - + diff --git a/src/chrome/content/rules/DNTrck.com.xml b/src/chrome/content/rules/DNTrck.com.xml deleted file mode 100644 index 14e0f2ad00dd..000000000000 --- a/src/chrome/content/rules/DNTrck.com.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/DNV.com.xml b/src/chrome/content/rules/DNV.com.xml deleted file mode 100644 index 4c56babb9eaa..000000000000 --- a/src/chrome/content/rules/DNV.com.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/DOCLIX.xml b/src/chrome/content/rules/DOCLIX.xml deleted file mode 100644 index 268a32afc778..000000000000 --- a/src/chrome/content/rules/DOCLIX.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/DOI.org.xml b/src/chrome/content/rules/DOI.org.xml deleted file mode 100644 index fef6a09ef8d1..000000000000 --- a/src/chrome/content/rules/DOI.org.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/DONGEnergy.xml b/src/chrome/content/rules/DONGEnergy.xml index a689a5db5177..16236fe55370 100644 --- a/src/chrome/content/rules/DONGEnergy.xml +++ b/src/chrome/content/rules/DONGEnergy.xml @@ -37,7 +37,7 @@ Fetch error: http://ditgadelys.dongenergy.dk/ => https://ditgadelys.dongenergy.d ⁴: Refused --> - + diff --git a/src/chrome/content/rules/DPB.sk.xml b/src/chrome/content/rules/DPB.sk.xml new file mode 100644 index 000000000000..f9421204f8db --- /dev/null +++ b/src/chrome/content/rules/DPB.sk.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/DPMC.xml b/src/chrome/content/rules/DPMC.xml index e75823470515..0f3d42a94566 100644 --- a/src/chrome/content/rules/DPMC.xml +++ b/src/chrome/content/rules/DPMC.xml @@ -19,7 +19,7 @@ --> - + https://www.dr.com.tr/: Too many redirects Fetch error: http://dr.com.tr/ => https://www.dr.com.tr/: Too many redirects while fetching 'https://www.dr.com.tr/' --> - + - + diff --git a/src/chrome/content/rules/DR.dk.xml b/src/chrome/content/rules/DR.dk.xml index cf496bd9e7e8..69e9a629a7c1 100644 --- a/src/chrome/content/rules/DR.dk.xml +++ b/src/chrome/content/rules/DR.dk.xml @@ -22,7 +22,5 @@ - - diff --git a/src/chrome/content/rules/DRS.ch.xml b/src/chrome/content/rules/DRS.ch.xml new file mode 100644 index 000000000000..7cd78a15710d --- /dev/null +++ b/src/chrome/content/rules/DRS.ch.xml @@ -0,0 +1,26 @@ + + + + + + diff --git a/src/chrome/content/rules/DSF.my.xml b/src/chrome/content/rules/DSF.my.xml new file mode 100644 index 000000000000..a8e6bd22594b --- /dev/null +++ b/src/chrome/content/rules/DSF.my.xml @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/src/chrome/content/rules/DSLReports.xml b/src/chrome/content/rules/DSLReports.xml index 607f0171277a..76105aeed5ff 100644 --- a/src/chrome/content/rules/DSLReports.xml +++ b/src/chrome/content/rules/DSLReports.xml @@ -3,13 +3,13 @@ --> - - - + + + @@ -20,8 +20,10 @@ + + - + @@ -29,7 +31,6 @@ - diff --git a/src/chrome/content/rules/DSNR-Media-Group.xml b/src/chrome/content/rules/DSNR-Media-Group.xml index 4acec2a8463c..e0a35e207cd7 100644 --- a/src/chrome/content/rules/DSNR-Media-Group.xml +++ b/src/chrome/content/rules/DSNR-Media-Group.xml @@ -12,7 +12,7 @@ Fetch error: http://ad.z5x.net/ => https://ad.rmxads.net/: (28, 'Resolving timed - (www.)z5x.net (times out) --> - + diff --git a/src/chrome/content/rules/DS_Internals.com.xml b/src/chrome/content/rules/DS_Internals.com.xml index 6918a46d82a6..65d08a84b52f 100644 --- a/src/chrome/content/rules/DS_Internals.com.xml +++ b/src/chrome/content/rules/DS_Internals.com.xml @@ -17,7 +17,7 @@ - + - - - - - - - - - diff --git a/src/chrome/content/rules/DTInt.com.xml b/src/chrome/content/rules/DTInt.com.xml index 895456ea791d..066e72fc2578 100644 --- a/src/chrome/content/rules/DTInt.com.xml +++ b/src/chrome/content/rules/DTInt.com.xml @@ -11,7 +11,7 @@ Fetch error: http://customersonly.dtint.com/ => https://customersonly.dtint.com/ - customersonly.dtint.com --> - + @@ -20,7 +20,7 @@ Fetch error: http://customersonly.dtint.com/ => https://customersonly.dtint.com/ --> - + https://dtunnel.com/: (6, 'Could not resolve host: dtunnel.com') -Fetch error: http://www.dtunnel.com/ => https://dtunnel.com/: (6, 'Could not resolve host: dtunnel.com') - ---> - - - - - - - - diff --git a/src/chrome/content/rules/DUG.net.pl.xml b/src/chrome/content/rules/DUG.net.pl.xml deleted file mode 100644 index 4cc60fe63807..000000000000 --- a/src/chrome/content/rules/DUG.net.pl.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/DW-World.de.xml b/src/chrome/content/rules/DW-World.de.xml new file mode 100644 index 000000000000..a1ece54b3931 --- /dev/null +++ b/src/chrome/content/rules/DW-World.de.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/DW.com.xml b/src/chrome/content/rules/DW.com.xml new file mode 100644 index 000000000000..8d30baeed1ed --- /dev/null +++ b/src/chrome/content/rules/DW.com.xml @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/DW.de.xml b/src/chrome/content/rules/DW.de.xml index c4f870ed3fda..200156b1fd59 100644 --- a/src/chrome/content/rules/DW.de.xml +++ b/src/chrome/content/rules/DW.de.xml @@ -1,34 +1,19 @@ + + + + + + - \ No newline at end of file + diff --git a/src/chrome/content/rules/DWheeler.xml b/src/chrome/content/rules/DWheeler.xml index be3e2cfe0a1e..625f3cd28269 100644 --- a/src/chrome/content/rules/DWheeler.xml +++ b/src/chrome/content/rules/DWheeler.xml @@ -4,6 +4,6 @@ + to="https://dwheeler.com/"/> diff --git a/src/chrome/content/rules/DWin1.com.xml b/src/chrome/content/rules/DWin1.com.xml index 155b65f2351f..8559d4a7d2ff 100644 --- a/src/chrome/content/rules/DWin1.com.xml +++ b/src/chrome/content/rules/DWin1.com.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/DZone.com.xml b/src/chrome/content/rules/DZone.com.xml index 6ef7766aac82..2711c0e17eda 100644 --- a/src/chrome/content/rules/DZone.com.xml +++ b/src/chrome/content/rules/DZone.com.xml @@ -16,7 +16,7 @@ - + - - - - - - - - diff --git a/src/chrome/content/rules/Da.gd.xml b/src/chrome/content/rules/Da.gd.xml index 33646679eb8a..997b177ab488 100644 --- a/src/chrome/content/rules/Da.gd.xml +++ b/src/chrome/content/rules/Da.gd.xml @@ -1,11 +1,4 @@ - - - + diff --git a/src/chrome/content/rules/DaButtonFactory.com.xml b/src/chrome/content/rules/DaButtonFactory.com.xml deleted file mode 100644 index bd7d56e7163e..000000000000 --- a/src/chrome/content/rules/DaButtonFactory.com.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/DaWanda.xml b/src/chrome/content/rules/DaWanda.xml index ea5c521b2a2f..1d4d032ecb7f 100644 --- a/src/chrome/content/rules/DaWanda.xml +++ b/src/chrome/content/rules/DaWanda.xml @@ -42,15 +42,23 @@ --> - + + + + + + + + + - + + - + diff --git a/src/chrome/content/rules/Dabplus.ch.xml b/src/chrome/content/rules/Dabplus.ch.xml new file mode 100644 index 000000000000..b97292bf5a44 --- /dev/null +++ b/src/chrome/content/rules/Dabplus.ch.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Dabplus.de.xml b/src/chrome/content/rules/Dabplus.de.xml new file mode 100644 index 000000000000..7fb0436b8ae4 --- /dev/null +++ b/src/chrome/content/rules/Dabplus.de.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/DaemonPage.com.xml b/src/chrome/content/rules/DaemonPage.com.xml new file mode 100644 index 000000000000..f688e082126e --- /dev/null +++ b/src/chrome/content/rules/DaemonPage.com.xml @@ -0,0 +1,15 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Dafatiri.com.xml b/src/chrome/content/rules/Dafatiri.com.xml new file mode 100644 index 000000000000..20ddcfe9efae --- /dev/null +++ b/src/chrome/content/rules/Dafatiri.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Dafdirect.org.xml b/src/chrome/content/rules/Dafdirect.org.xml index 9d49f8700cb7..9a0f679d0155 100644 --- a/src/chrome/content/rules/Dafdirect.org.xml +++ b/src/chrome/content/rules/Dafdirect.org.xml @@ -10,7 +10,7 @@ Non-2xx HTTP code: http://www.dafdirect.org/ (200) => https://www.dafdirect.org/ ^: cert only matches www --> - + diff --git a/src/chrome/content/rules/Dafont.com.xml b/src/chrome/content/rules/Dafont.com.xml deleted file mode 100644 index be3c5f42472a..000000000000 --- a/src/chrome/content/rules/Dafont.com.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Daft.ie.xml b/src/chrome/content/rules/Daft.ie.xml index c68a1c1af339..3639becc7501 100644 --- a/src/chrome/content/rules/Daft.ie.xml +++ b/src/chrome/content/rules/Daft.ie.xml @@ -8,7 +8,7 @@ - + diff --git a/src/chrome/content/rules/Daft_Media.xml b/src/chrome/content/rules/Daft_Media.xml index 306df75a1f53..7eaaec7d55ee 100644 --- a/src/chrome/content/rules/Daft_Media.xml +++ b/src/chrome/content/rules/Daft_Media.xml @@ -6,14 +6,12 @@ --> - - + + + + - + - - - \ No newline at end of file + diff --git a/src/chrome/content/rules/Dagbladet.no-falsemixed.xml b/src/chrome/content/rules/Dagbladet.no-falsemixed.xml index d4e3f08f17de..507bd3faab23 100644 --- a/src/chrome/content/rules/Dagbladet.no-falsemixed.xml +++ b/src/chrome/content/rules/Dagbladet.no-falsemixed.xml @@ -6,7 +6,7 @@ Fetch error: http://livebeta.dagbladet.no/ => https://livebeta.dagbladet.no/: (6 For rules not causing false/broken MCB, see Dagbladet.no.xml. --> - + @@ -22,7 +22,7 @@ Fetch error: http://livebeta.dagbladet.no/ => https://livebeta.dagbladet.no/: (6 - + https://konto.dagbladet.no/: (6, 'Cou ² Unsecurable <= refused --> - + @@ -107,7 +107,7 @@ Fetch error: http://konto.dagbladet.no/ => https://konto.dagbladet.no/: (6, 'Cou - + https://dagensbedste-dbapp.netdna-ssl.com/images/dagensbedste/logo.png: (6, 'Could not resolve host: dagensbedste-dbapp.netdna-ssl.com') -Fetch error: http://dagensbedste-dbapp.netdna-ssl.com/images/dagensbedste/logo.png => https://dagensbedste-dbapp.netdna-ssl.com/images/dagensbedste/logo.png: (6, 'Could not resolve host: dagensbedste-dbapp.netdna-ssl.com') -Fetch error: http://dagensbedste.dbapp.netdna-cdn.com/public/images/icons/email.png => https://dagensbedste-dbapp.netdna-ssl.com/public/images/icons/email.png: (6, 'Could not resolve host: dagensbedste-dbapp.netdna-ssl.com') -Fetch error: http://dagensbedste-dbapp.netdna-ssl.com/public/images/icons/email.png => https://dagensbedste-dbapp.netdna-ssl.com/public/images/icons/email.png: (6, 'Could not resolve host: dagensbedste-dbapp.netdna-ssl.com') -Fetch error: http://dagensgetaway.dbapp.netdna-cdn.com/images/dagensgetaway/background-time-small-offer.png => https://dagensgetaway-dbapp.netdna-ssl.com/images/dagensgetaway/background-time-small-offer.png: (6, 'Could not resolve host: dagensgetaway-dbapp.netdna-ssl.com') -Fetch error: http://dagensgetaway-dbapp.netdna-ssl.com/images/dagensgetaway/background-time-small-offer.png => https://dagensgetaway-dbapp.netdna-ssl.com/images/dagensgetaway/background-time-small-offer.png: (6, 'Could not resolve host: dagensgetaway-dbapp.netdna-ssl.com') -Fetch error: http://cdn-retailers.dbapp.netdna-cdn.com/houseofhansenlogof7171-retailer.jpg => https://cdn-retailers-dbapp.netdna-ssl.com/houseofhansenlogof7171-retailer.jpg: (6, 'Could not resolve host: cdn-retailers-dbapp.netdna-ssl.com') -Fetch error: http://cdn-retailers-dbapp.netdna-ssl.com/houseofhansenlogof7171-retailer.jpg => https://cdn-retailers-dbapp.netdna-ssl.com/houseofhansenlogof7171-retailer.jpg: (6, 'Could not resolve host: cdn-retailers-dbapp.netdna-ssl.com') -Fetch error: http://cdn-dbapp.netdna-ssl.com/ => https://cdn-dbapp.netdna-ssl.com/: (6, 'Could not resolve host: cdn-dbapp.netdna-ssl.com') -Fetch error: http://cdn-retailers-dbapp.netdna-ssl.com/ => https://cdn-retailers-dbapp.netdna-ssl.com/: (6, 'Could not resolve host: cdn-retailers-dbapp.netdna-ssl.com') -Fetch error: http://lokaldealen-dbapp.netdna-ssl.com/ => https://lokaldealen-dbapp.netdna-ssl.com/: (6, 'Could not resolve host: lokaldealen-dbapp.netdna-ssl.com') -Fetch error: http://dagensbedste-dbapp.netdna-ssl.com/ => https://dagensbedste-dbapp.netdna-ssl.com/: (6, 'Could not resolve host: dagensbedste-dbapp.netdna-ssl.com') -Fetch error: http://dagensgetaway-dbapp.netdna-ssl.com/ => https://dagensgetaway-dbapp.netdna-ssl.com/: (6, 'Could not resolve host: dagensgetaway-dbapp.netdna-ssl.com') - - Other Dagens Bedste rulesets: - - - Dagensgetaway.dk.xml - - - CDN buckets: - - - cdn.dbapp.netdna-cdn.com - - cdn-retailers.dbapp.netdna-cdn.com - - dagensbedste.dbapp.netdna-cdn.com - - - Nonfunctional domains: - - - (www.)?dagensbedste.dk * - - business.dagensbedste.dk ² - - * Handshake fails - ² 401 - - - CN: www.lokaldealen.se - ---> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Dagenssamhalle.se.xml b/src/chrome/content/rules/Dagenssamhalle.se.xml new file mode 100644 index 000000000000..acb7e50d83f0 --- /dev/null +++ b/src/chrome/content/rules/Dagenssamhalle.se.xml @@ -0,0 +1,15 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Daily-Herald.xml b/src/chrome/content/rules/Daily-Herald.xml index 7554c16097a1..3783f73c6249 100644 --- a/src/chrome/content/rules/Daily-Herald.xml +++ b/src/chrome/content/rules/Daily-Herald.xml @@ -8,13 +8,16 @@ Fetch error: http://dailyherald.com/ => https://dailyherald.com/: (7, 'Failed to - blogs (times out) --> - + - + + + + - + https://d1gdw8d643djmp.clo ³ Cloudfront --> - + diff --git a/src/chrome/content/rules/DailyCaller.com.xml b/src/chrome/content/rules/DailyCaller.com.xml new file mode 100644 index 000000000000..cecab011c933 --- /dev/null +++ b/src/chrome/content/rules/DailyCaller.com.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/DailyDot.xml b/src/chrome/content/rules/DailyDot.xml index 94f60b5acbd0..926abf660cfe 100644 --- a/src/chrome/content/rules/DailyDot.xml +++ b/src/chrome/content/rules/DailyDot.xml @@ -41,25 +41,15 @@ - - - - - - - - diff --git a/src/chrome/content/rules/DailyHiit.com.xml b/src/chrome/content/rules/DailyHiit.com.xml index 079478720760..0e4fde850198 100644 --- a/src/chrome/content/rules/DailyHiit.com.xml +++ b/src/chrome/content/rules/DailyHiit.com.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/DailyHive.com.xml b/src/chrome/content/rules/DailyHive.com.xml new file mode 100644 index 000000000000..a161debbc881 --- /dev/null +++ b/src/chrome/content/rules/DailyHive.com.xml @@ -0,0 +1,14 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/DailyKos.com-problematic.xml b/src/chrome/content/rules/DailyKos.com-problematic.xml deleted file mode 100644 index c229e064e439..000000000000 --- a/src/chrome/content/rules/DailyKos.com-problematic.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/DailyKos.xml b/src/chrome/content/rules/DailyKos.xml deleted file mode 100644 index 686008da2dd6..000000000000 --- a/src/chrome/content/rules/DailyKos.xml +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/DailyMail.co.uk.xml b/src/chrome/content/rules/DailyMail.co.uk.xml new file mode 100644 index 000000000000..5542daa5bfd3 --- /dev/null +++ b/src/chrome/content/rules/DailyMail.co.uk.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Daily_Fantasy_Radio.xml b/src/chrome/content/rules/Daily_Fantasy_Radio.xml index 33887e39ce82..46cc00c8bc29 100644 --- a/src/chrome/content/rules/Daily_Fantasy_Radio.xml +++ b/src/chrome/content/rules/Daily_Fantasy_Radio.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://dailyfantasyradio.com/ => https://dailyfantasyradio.com/: (51, "SSL: no alternative certificate subject name matches target host name 'dailyfantasyradio.com'") Fetch error: http://www.dailyfantasyradio.com/ => https://www.dailyfantasyradio.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.dailyfantasyradio.com'") --> - + @@ -16,4 +16,4 @@ Fetch error: http://www.dailyfantasyradio.com/ => https://www.dailyfantasyradio. - \ No newline at end of file + diff --git a/src/chrome/content/rules/Daily_Mail-problematic.xml b/src/chrome/content/rules/Daily_Mail-problematic.xml deleted file mode 100644 index 069343905f2d..000000000000 --- a/src/chrome/content/rules/Daily_Mail-problematic.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Daily_Mail_and_General_Trust.xml b/src/chrome/content/rules/Daily_Mail_and_General_Trust.xml index d14ab50e5d88..1e6a14d271e4 100644 --- a/src/chrome/content/rules/Daily_Mail_and_General_Trust.xml +++ b/src/chrome/content/rules/Daily_Mail_and_General_Trust.xml @@ -14,4 +14,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Daily_Star-problematic.xml b/src/chrome/content/rules/Daily_Star-problematic.xml index 6187cfba52fe..15d88c82318e 100644 --- a/src/chrome/content/rules/Daily_Star-problematic.xml +++ b/src/chrome/content/rules/Daily_Star-problematic.xml @@ -13,7 +13,7 @@ - + - + - + - - - - - - + + + + + - + - securecookie host="^.*\.dailymotion\.com$" name=".+" /--> - + - - + + + - - - - - - - - + + + diff --git a/src/chrome/content/rules/Dailynous.com.xml b/src/chrome/content/rules/Dailynous.com.xml new file mode 100644 index 000000000000..72545ad4b752 --- /dev/null +++ b/src/chrome/content/rules/Dailynous.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Daisy.net.au.xml b/src/chrome/content/rules/Daisy.net.au.xml new file mode 100644 index 000000000000..abdf3b86fcd6 --- /dev/null +++ b/src/chrome/content/rules/Daisy.net.au.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/DalailCentre.com.xml b/src/chrome/content/rules/DalailCentre.com.xml new file mode 100644 index 000000000000..e6276191fa0b --- /dev/null +++ b/src/chrome/content/rules/DalailCentre.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Damballa.com.xml b/src/chrome/content/rules/Damballa.com.xml index e3bdda55551f..92242dde4d4e 100644 --- a/src/chrome/content/rules/Damballa.com.xml +++ b/src/chrome/content/rules/Damballa.com.xml @@ -11,12 +11,12 @@ Fetch error: http://www.damballa.com/ => https://www.damballa.com/: (60, 'SSL ce * Mismatched - Insecure cookies are set for these + Insecure cookies are set for these - .damballa.com --> - + diff --git a/src/chrome/content/rules/Dan-Bull.xml b/src/chrome/content/rules/Dan-Bull.xml index f431c632f631..10245ed761d5 100644 --- a/src/chrome/content/rules/Dan-Bull.xml +++ b/src/chrome/content/rules/Dan-Bull.xml @@ -6,7 +6,7 @@ - + diff --git a/src/chrome/content/rules/DanFleisch.com.xml b/src/chrome/content/rules/DanFleisch.com.xml new file mode 100644 index 000000000000..30029f97abd1 --- /dev/null +++ b/src/chrome/content/rules/DanFleisch.com.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/DanID.dk.xml b/src/chrome/content/rules/DanID.dk.xml index 149be2d38047..f2a04a00f23a 100644 --- a/src/chrome/content/rules/DanID.dk.xml +++ b/src/chrome/content/rules/DanID.dk.xml @@ -20,7 +20,7 @@ --> - + - - - - - - - - - - diff --git a/src/chrome/content/rules/Dancing_Astronaut.xml b/src/chrome/content/rules/Dancing_Astronaut.xml index e3eaf8d19078..bf2b9857c80f 100644 --- a/src/chrome/content/rules/Dancing_Astronaut.xml +++ b/src/chrome/content/rules/Dancing_Astronaut.xml @@ -12,4 +12,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/DandB.com.xml b/src/chrome/content/rules/DandB.com.xml index 648d687b0b79..125d43d87f5f 100644 --- a/src/chrome/content/rules/DandB.com.xml +++ b/src/chrome/content/rules/DandB.com.xml @@ -7,7 +7,7 @@ Fetch error: http://careers.dandb.com/ => https://careers.dandb.com/: (28, 'Conn Mixed content: - Images, on: - + - blog from $self * - blog from assets.dandb.com * - careers from $self * @@ -15,7 +15,7 @@ Fetch error: http://careers.dandb.com/ => https://careers.dandb.com/: (28, 'Conn * Secured by us --> - + diff --git a/src/chrome/content/rules/DandB.xml b/src/chrome/content/rules/DandB.xml index 4dffe31e838e..05ae507af046 100644 --- a/src/chrome/content/rules/DandB.xml +++ b/src/chrome/content/rules/DandB.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Dangpu.com.xml b/src/chrome/content/rules/Dangpu.com.xml index 85f33f7b291d..e239c5e03be0 100644 --- a/src/chrome/content/rules/Dangpu.com.xml +++ b/src/chrome/content/rules/Dangpu.com.xml @@ -17,7 +17,7 @@ Fetch error: http://www.dangpu.com/ => https://www.dangpu.com/: (6, 'Could not r - .dangpu.com --> - + diff --git a/src/chrome/content/rules/Danhlode.com.xml b/src/chrome/content/rules/Danhlode.com.xml index c20298d8348d..5ed09d7c37e5 100644 --- a/src/chrome/content/rules/Danhlode.com.xml +++ b/src/chrome/content/rules/Danhlode.com.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/DaniWeb.com.xml b/src/chrome/content/rules/DaniWeb.com.xml deleted file mode 100644 index 128011b0a3a9..000000000000 --- a/src/chrome/content/rules/DaniWeb.com.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Daniel_Miessler.com.xml b/src/chrome/content/rules/Daniel_Miessler.com.xml deleted file mode 100644 index e22187317638..000000000000 --- a/src/chrome/content/rules/Daniel_Miessler.com.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/DanskeBank.xml b/src/chrome/content/rules/DanskeBank.xml index 8bef5102f115..40b640a6dfda 100644 --- a/src/chrome/content/rules/DanskeBank.xml +++ b/src/chrome/content/rules/DanskeBank.xml @@ -13,7 +13,7 @@ Other Danske Bank rulesets: --> - + @@ -31,7 +31,7 @@ Other Danske Bank rulesets: - + diff --git a/src/chrome/content/rules/Danze.com.xml b/src/chrome/content/rules/Danze.com.xml new file mode 100644 index 000000000000..c4a8349bd7c2 --- /dev/null +++ b/src/chrome/content/rules/Danze.com.xml @@ -0,0 +1,21 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Dap.com.xml b/src/chrome/content/rules/Dap.com.xml new file mode 100644 index 000000000000..040026aaff73 --- /dev/null +++ b/src/chrome/content/rules/Dap.com.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Dar-us-Salam-Texas-USA.xml b/src/chrome/content/rules/Dar-us-Salam-Texas-USA.xml new file mode 100644 index 000000000000..51489599f571 --- /dev/null +++ b/src/chrome/content/rules/Dar-us-Salam-Texas-USA.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/DarAnNor.com.xml b/src/chrome/content/rules/DarAnNor.com.xml new file mode 100644 index 000000000000..fb9e87448431 --- /dev/null +++ b/src/chrome/content/rules/DarAnNor.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Darjeelin.fr.xml b/src/chrome/content/rules/Darjeelin.fr.xml index ad70eb6cb1f8..493bae2d5957 100644 --- a/src/chrome/content/rules/Darjeelin.fr.xml +++ b/src/chrome/content/rules/Darjeelin.fr.xml @@ -11,7 +11,7 @@ Fetch error: http://www.darjeelin.fr/ => https://www.darjeelin.fr/: (35, 'error: - .darjeelin.fr --> - + @@ -23,7 +23,7 @@ Fetch error: http://www.darjeelin.fr/ => https://www.darjeelin.fr/: (35, 'error: --> - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Dark_Reading.com.xml b/src/chrome/content/rules/Dark_Reading.com.xml index 54167e0a95c4..b0871000e81d 100644 --- a/src/chrome/content/rules/Dark_Reading.com.xml +++ b/src/chrome/content/rules/Dark_Reading.com.xml @@ -30,7 +30,7 @@ Fetch error: http://events.darkreading.com/ => https://events.darkreading.com/: - events.darkreading.com - w1.darkreading.com --> - + diff --git a/src/chrome/content/rules/Darkmail.info.xml b/src/chrome/content/rules/Darkmail.info.xml index b210a27cf02c..e8b7e093f9d9 100644 --- a/src/chrome/content/rules/Darkmail.info.xml +++ b/src/chrome/content/rules/Darkmail.info.xml @@ -3,4 +3,4 @@ - + diff --git a/src/chrome/content/rules/Darktable.org.xml b/src/chrome/content/rules/Darktable.org.xml index fcbd2cc4b32f..ae10a199649e 100644 --- a/src/chrome/content/rules/Darktable.org.xml +++ b/src/chrome/content/rules/Darktable.org.xml @@ -5,7 +5,7 @@ - + https://darlinghq.com/: (6, 'Could not resolve host: darlinghq.com') -Fetch error: http://www.darlinghq.com/ => https://www.darlinghq.com/: (6, 'Could not resolve host: www.darlinghq.com') - ---> - - - - - - - - - - diff --git a/src/chrome/content/rules/Darmstadt_University_of_Applied_Sciences.xml b/src/chrome/content/rules/Darmstadt_University_of_Applied_Sciences.xml index 768352c8ebad..e91e21df3d1e 100644 --- a/src/chrome/content/rules/Darmstadt_University_of_Applied_Sciences.xml +++ b/src/chrome/content/rules/Darmstadt_University_of_Applied_Sciences.xml @@ -40,4 +40,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/DartSearch.net.xml b/src/chrome/content/rules/DartSearch.net.xml new file mode 100644 index 000000000000..a9e4f7534375 --- /dev/null +++ b/src/chrome/content/rules/DartSearch.net.xml @@ -0,0 +1,16 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/DarwinProject.ac.uk.xml b/src/chrome/content/rules/DarwinProject.ac.uk.xml new file mode 100644 index 000000000000..963fb6bd402b --- /dev/null +++ b/src/chrome/content/rules/DarwinProject.ac.uk.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Darwinsys.com.xml b/src/chrome/content/rules/Darwinsys.com.xml new file mode 100644 index 000000000000..3aaabaa946cb --- /dev/null +++ b/src/chrome/content/rules/Darwinsys.com.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/DasErste.de.xml b/src/chrome/content/rules/DasErste.de.xml new file mode 100644 index 000000000000..b84d0c1356ff --- /dev/null +++ b/src/chrome/content/rules/DasErste.de.xml @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Das_Parlament.xml b/src/chrome/content/rules/Das_Parlament.xml index e8a0329e90df..d54c46a403ac 100644 --- a/src/chrome/content/rules/Das_Parlament.xml +++ b/src/chrome/content/rules/Das_Parlament.xml @@ -11,12 +11,11 @@ Fetch error: http://www.das-parlament.de/ => https://www.das-parlament.de/: (28, ^das-parlament.de doesn't exist. --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Dasezna.lgbt.xml b/src/chrome/content/rules/Dasezna.lgbt.xml new file mode 100644 index 000000000000..f72425026b78 --- /dev/null +++ b/src/chrome/content/rules/Dasezna.lgbt.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Dash-Player.com.xml b/src/chrome/content/rules/Dash-Player.com.xml index 69f7c9e0f56e..4d0029713620 100644 --- a/src/chrome/content/rules/Dash-Player.com.xml +++ b/src/chrome/content/rules/Dash-Player.com.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.dash-player.com/ => https://www.dash-player.com/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/Dash.org.xml b/src/chrome/content/rules/Dash.org.xml index 745b97923c81..27ce7577e6f7 100644 --- a/src/chrome/content/rules/Dash.org.xml +++ b/src/chrome/content/rules/Dash.org.xml @@ -4,7 +4,7 @@ - + - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Dashpay.io.xml b/src/chrome/content/rules/Dashpay.io.xml index 87ab48d690b6..d8896302540b 100644 --- a/src/chrome/content/rules/Dashpay.io.xml +++ b/src/chrome/content/rules/Dashpay.io.xml @@ -1,35 +1,15 @@ - - + - - - - - - - + diff --git a/src/chrome/content/rules/Dask.org.xml b/src/chrome/content/rules/Dask.org.xml new file mode 100644 index 000000000000..2829ad1de88e --- /dev/null +++ b/src/chrome/content/rules/Dask.org.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Dassault_Falcon.xml b/src/chrome/content/rules/Dassault_Falcon.xml index 6bea3c5e810b..e2d1c6fe3792 100644 --- a/src/chrome/content/rules/Dassault_Falcon.xml +++ b/src/chrome/content/rules/Dassault_Falcon.xml @@ -10,9 +10,20 @@ - + + + + + - + + + + + + + + @@ -21,10 +32,7 @@ - - + diff --git a/src/chrome/content/rules/Dassault_Systemes.xml b/src/chrome/content/rules/Dassault_Systemes.xml index b5be60767cda..f6aa33c7729b 100644 --- a/src/chrome/content/rules/Dassault_Systemes.xml +++ b/src/chrome/content/rules/Dassault_Systemes.xml @@ -24,4 +24,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Dastelefonbuch.de.xml b/src/chrome/content/rules/Dastelefonbuch.de.xml deleted file mode 100644 index f1c7bb1eec49..000000000000 --- a/src/chrome/content/rules/Dastelefonbuch.de.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Data-Design-mismatches.xml b/src/chrome/content/rules/Data-Design-mismatches.xml index 51e18fc47580..81b49874e08e 100644 --- a/src/chrome/content/rules/Data-Design-mismatches.xml +++ b/src/chrome/content/rules/Data-Design-mismatches.xml @@ -6,7 +6,7 @@ - + diff --git a/src/chrome/content/rules/Data-Design.xml b/src/chrome/content/rules/Data-Design.xml index 0c881da90ac2..699575eda739 100644 --- a/src/chrome/content/rules/Data-Design.xml +++ b/src/chrome/content/rules/Data-Design.xml @@ -2,7 +2,7 @@ - + diff --git a/src/chrome/content/rules/Data-Protection-Commissioner.xml b/src/chrome/content/rules/Data-Protection-Commissioner.xml index 0db4538b230b..763b1afcae50 100644 --- a/src/chrome/content/rules/Data-Protection-Commissioner.xml +++ b/src/chrome/content/rules/Data-Protection-Commissioner.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Data.com.xml b/src/chrome/content/rules/Data.com.xml index 868388e3faa9..c31feb7996d0 100644 --- a/src/chrome/content/rules/Data.com.xml +++ b/src/chrome/content/rules/Data.com.xml @@ -15,7 +15,11 @@ - + + + + + @@ -24,7 +28,6 @@ - + diff --git a/src/chrome/content/rules/Data.fm.xml b/src/chrome/content/rules/Data.fm.xml index 29bf0324b656..4770359cf392 100644 --- a/src/chrome/content/rules/Data.fm.xml +++ b/src/chrome/content/rules/Data.fm.xml @@ -4,12 +4,12 @@ Disabled by https-everywhere-checker because: Fetch error: http://data.fm/ => https://data.fm/: (28, 'Connection timed out after 20000 milliseconds') --> - + - + diff --git a/src/chrome/content/rules/DataCamp.com.xml b/src/chrome/content/rules/DataCamp.com.xml index e8cc493b83b6..9ca9f9a6b8c3 100644 --- a/src/chrome/content/rules/DataCamp.com.xml +++ b/src/chrome/content/rules/DataCamp.com.xml @@ -5,7 +5,8 @@ - + + - + - + + diff --git a/src/chrome/content/rules/DataGovAU.xml b/src/chrome/content/rules/DataGovAU.xml deleted file mode 100644 index fd075a00e4b4..000000000000 --- a/src/chrome/content/rules/DataGovAU.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/DataHub.io.xml b/src/chrome/content/rules/DataHub.io.xml new file mode 100644 index 000000000000..67631a75fa40 --- /dev/null +++ b/src/chrome/content/rules/DataHub.io.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/DataMineLab.com.xml b/src/chrome/content/rules/DataMineLab.com.xml index b0e3317cecfe..7370b7ec0d12 100644 --- a/src/chrome/content/rules/DataMineLab.com.xml +++ b/src/chrome/content/rules/DataMineLab.com.xml @@ -1,15 +1,19 @@ - + + + + - - + + - + diff --git a/src/chrome/content/rules/DataSavesLives.eu.xml b/src/chrome/content/rules/DataSavesLives.eu.xml index 5b726d5b1996..19293a65dfc2 100644 --- a/src/chrome/content/rules/DataSavesLives.eu.xml +++ b/src/chrome/content/rules/DataSavesLives.eu.xml @@ -5,7 +5,7 @@ Fetch error: http://datasaveslives.eu/ => https://datasaveslives.eu/: (51, "SSL: Fetch error: http://www.datasaveslives.eu/ => https://www.datasaveslives.eu/: (51, "SSL: no alternative certificate subject name matches target host name 'www.datasaveslives.eu'") --> - + diff --git a/src/chrome/content/rules/DataSpace.pl.xml b/src/chrome/content/rules/DataSpace.pl.xml deleted file mode 100644 index 0c26ae48240f..000000000000 --- a/src/chrome/content/rules/DataSpace.pl.xml +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Data_Conservancy.org.xml b/src/chrome/content/rules/Data_Conservancy.org.xml index 8dd6c46d883e..4c4b338c37d5 100644 --- a/src/chrome/content/rules/Data_Conservancy.org.xml +++ b/src/chrome/content/rules/Data_Conservancy.org.xml @@ -5,7 +5,7 @@ Fetch error: http://dataconservancy.org/ => https://dataconservancy.org/: (35, ' Fetch error: http://www.dataconservancy.org/ => https://www.dataconservancy.org/: (35, 'error:14077410:SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert handshake failure') --> - + diff --git a/src/chrome/content/rules/Data_Informed.xml b/src/chrome/content/rules/Data_Informed.xml index e6a5262f093e..f721ddf91349 100644 --- a/src/chrome/content/rules/Data_Informed.xml +++ b/src/chrome/content/rules/Data_Informed.xml @@ -14,4 +14,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Database.com.xml b/src/chrome/content/rules/Database.com.xml index 32cb6b50f627..698abdd626d6 100644 --- a/src/chrome/content/rules/Database.com.xml +++ b/src/chrome/content/rules/Database.com.xml @@ -47,10 +47,12 @@ --> - + + + + - + diff --git a/src/chrome/content/rules/Databits.net.xml b/src/chrome/content/rules/Databits.net.xml index a8c814da15ff..0cd1c9c7a160 100644 --- a/src/chrome/content/rules/Databits.net.xml +++ b/src/chrome/content/rules/Databits.net.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://databits.net/ => https://databits.net/: (60, 'SSL certificate problem: certificate has expired') Fetch error: http://www.databits.net/ => https://www.databits.net/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/Databricks.com.xml b/src/chrome/content/rules/Databricks.com.xml deleted file mode 100644 index 3b26bc696f84..000000000000 --- a/src/chrome/content/rules/Databricks.com.xml +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Datacard.com.xml b/src/chrome/content/rules/Datacard.com.xml index aa13db445673..6c7899a1875f 100644 --- a/src/chrome/content/rules/Datacard.com.xml +++ b/src/chrome/content/rules/Datacard.com.xml @@ -5,31 +5,18 @@ - Entrust.com.xml - ^: cert only matches www - - - These altnames don't exist: - - - www.careers.datacard.com + Non-functional hosts: + Timeout: + - careers.datacard.com --> - - - - - - - - + - + - + diff --git a/src/chrome/content/rules/DatacentrumGids.nl.xml b/src/chrome/content/rules/DatacentrumGids.nl.xml deleted file mode 100644 index d124d47ad38c..000000000000 --- a/src/chrome/content/rules/DatacentrumGids.nl.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Datalogix.com.xml b/src/chrome/content/rules/Datalogix.com.xml index 5423fb3e787c..60af0c74d0f3 100644 --- a/src/chrome/content/rules/Datalogix.com.xml +++ b/src/chrome/content/rules/Datalogix.com.xml @@ -17,7 +17,7 @@ Fetch error: http://www.datalogix.com/ => http://www.datalogix.com/: Too many re Some pages redirect to http. --> - + @@ -26,4 +26,4 @@ Fetch error: http://www.datalogix.com/ => http://www.datalogix.com/: Too many re - \ No newline at end of file + diff --git a/src/chrome/content/rules/Datamappi.fi.xml b/src/chrome/content/rules/Datamappi.fi.xml index 7ddddff2703f..a1356a322a5d 100644 --- a/src/chrome/content/rules/Datamappi.fi.xml +++ b/src/chrome/content/rules/Datamappi.fi.xml @@ -14,10 +14,11 @@ Fetch error: http://datamappi.fi/ => https://www.datamappi.fi/: (7, 'Failed to c - owa --> - + - + + @@ -26,7 +27,6 @@ Fetch error: http://datamappi.fi/ => https://www.datamappi.fi/: (7, 'Failed to c - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Datamind.ru.xml b/src/chrome/content/rules/Datamind.ru.xml index 1c02a18297e0..16e557cb2156 100644 --- a/src/chrome/content/rules/Datamind.ru.xml +++ b/src/chrome/content/rules/Datamind.ru.xml @@ -1,12 +1,9 @@ - + - - - + diff --git a/src/chrome/content/rules/Datamonitor.com.xml b/src/chrome/content/rules/Datamonitor.com.xml index 08889fe2164f..5e75645fb788 100644 --- a/src/chrome/content/rules/Datamonitor.com.xml +++ b/src/chrome/content/rules/Datamonitor.com.xml @@ -14,7 +14,7 @@ - + - + - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Datapipe.com.xml b/src/chrome/content/rules/Datapipe.com.xml index ba17caa5ec94..093e7907f1a9 100644 --- a/src/chrome/content/rules/Datapipe.com.xml +++ b/src/chrome/content/rules/Datapipe.com.xml @@ -9,6 +9,7 @@ Nonfunctional domains: - (www.)?datapipe.net * + - mirror.datapipe.(com|net) * * Refused @@ -48,6 +49,8 @@ + + diff --git a/src/chrome/content/rules/Datared.dk.xml b/src/chrome/content/rules/Datared.dk.xml index d2531d6e59d9..3f2384aeb980 100644 --- a/src/chrome/content/rules/Datared.dk.xml +++ b/src/chrome/content/rules/Datared.dk.xml @@ -10,7 +10,7 @@ Fetch error: http://www.datared.dk/ => https://datared.dk/: (60, 'SSL certificat ¹: Bad CN in cert --> - + diff --git a/src/chrome/content/rules/Datasheet_Catalog.com.xml b/src/chrome/content/rules/Datasheet_Catalog.com.xml index 02a691a622c7..b0c2886f6b39 100644 --- a/src/chrome/content/rules/Datasheet_Catalog.com.xml +++ b/src/chrome/content/rules/Datasheet_Catalog.com.xml @@ -15,7 +15,7 @@ - + - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Datenschutz-ist-Burgerrecht.xml b/src/chrome/content/rules/Datenschutz-ist-Burgerrecht.xml index 334962dafef7..6c910b4b2ea3 100644 --- a/src/chrome/content/rules/Datenschutz-ist-Burgerrecht.xml +++ b/src/chrome/content/rules/Datenschutz-ist-Burgerrecht.xml @@ -8,7 +8,7 @@ - + - - - - - - - - - diff --git a/src/chrome/content/rules/David_Gold.xml b/src/chrome/content/rules/David_Gold.xml index d80f582be7eb..07f6e1f1cfd7 100644 --- a/src/chrome/content/rules/David_Gold.xml +++ b/src/chrome/content/rules/David_Gold.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/David_Lazar.org.xml b/src/chrome/content/rules/David_Lazar.org.xml index 9082abf4d079..0b5acf812579 100644 --- a/src/chrome/content/rules/David_Lazar.org.xml +++ b/src/chrome/content/rules/David_Lazar.org.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.davidlazar.org/ => https://www.davidlazar.org/: (51, "SSL: no alternative certificate subject name matches target host name 'www.davidlazar.org'") --> - + diff --git a/src/chrome/content/rules/David_Sopas.com.xml b/src/chrome/content/rules/David_Sopas.com.xml deleted file mode 100644 index c4f524b589db..000000000000 --- a/src/chrome/content/rules/David_Sopas.com.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/DavidsonTutoring.com.xml b/src/chrome/content/rules/DavidsonTutoring.com.xml new file mode 100644 index 000000000000..483fc5f07550 --- /dev/null +++ b/src/chrome/content/rules/DavidsonTutoring.com.xml @@ -0,0 +1,17 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Davidson_Tutoring.com-falsemixed.xml b/src/chrome/content/rules/Davidson_Tutoring.com-falsemixed.xml deleted file mode 100644 index b8ae22b75978..000000000000 --- a/src/chrome/content/rules/Davidson_Tutoring.com-falsemixed.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Davidson_Tutoring.com.xml b/src/chrome/content/rules/Davidson_Tutoring.com.xml deleted file mode 100644 index 3219d81fe5a2..000000000000 --- a/src/chrome/content/rules/Davidson_Tutoring.com.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Davinci_Vaporizor.xml b/src/chrome/content/rules/Davinci_Vaporizor.xml index b391d5eb75bc..2fb7c3911bf1 100644 --- a/src/chrome/content/rules/Davinci_Vaporizor.xml +++ b/src/chrome/content/rules/Davinci_Vaporizor.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/DavisSystem.xml b/src/chrome/content/rules/DavisSystem.xml index 3dad78a8c188..f77618109326 100644 --- a/src/chrome/content/rules/DavisSystem.xml +++ b/src/chrome/content/rules/DavisSystem.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Davis_Instruments.xml b/src/chrome/content/rules/Davis_Instruments.xml index f7657fe1e296..88db09af5a83 100644 --- a/src/chrome/content/rules/Davis_Instruments.xml +++ b/src/chrome/content/rules/Davis_Instruments.xml @@ -1,7 +1,8 @@ - + + - + - - - - - - - - - - diff --git a/src/chrome/content/rules/Dditscdn.com.xml b/src/chrome/content/rules/Dditscdn.com.xml index a3f527e6f6b0..80b48a0b57aa 100644 --- a/src/chrome/content/rules/Dditscdn.com.xml +++ b/src/chrome/content/rules/Dditscdn.com.xml @@ -7,7 +7,7 @@ Fetch error: http://resourcex4.dditscdn.com/ => https://resourcex4.dditscdn.com/ --> - + diff --git a/src/chrome/content/rules/De-Captcher.com.xml b/src/chrome/content/rules/De-Captcher.com.xml index e264bd0a0f49..c8bc43329e61 100644 --- a/src/chrome/content/rules/De-Captcher.com.xml +++ b/src/chrome/content/rules/De-Captcher.com.xml @@ -20,7 +20,7 @@ - + diff --git a/src/chrome/content/rules/De-Centralize.com.xml b/src/chrome/content/rules/De-Centralize.com.xml deleted file mode 100644 index 00a1016203d4..000000000000 --- a/src/chrome/content/rules/De-Centralize.com.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/De17a.com.xml b/src/chrome/content/rules/De17a.com.xml index d468276553fe..d9168e963142 100644 --- a/src/chrome/content/rules/De17a.com.xml +++ b/src/chrome/content/rules/De17a.com.xml @@ -7,13 +7,11 @@ - - + diff --git a/src/chrome/content/rules/DeNA.com.xml b/src/chrome/content/rules/DeNA.com.xml new file mode 100644 index 000000000000..fc909466f9ac --- /dev/null +++ b/src/chrome/content/rules/DeNA.com.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/DeSmuME.xml b/src/chrome/content/rules/DeSmuME.xml index 44ae7775b67d..87cc94770862 100644 --- a/src/chrome/content/rules/DeSmuME.xml +++ b/src/chrome/content/rules/DeSmuME.xml @@ -15,7 +15,7 @@ - + - - - - - - - - - diff --git a/src/chrome/content/rules/De_Correspondent.nl.xml b/src/chrome/content/rules/De_Correspondent.nl.xml index b7fd521a029a..9e3c2f700a8a 100644 --- a/src/chrome/content/rules/De_Correspondent.nl.xml +++ b/src/chrome/content/rules/De_Correspondent.nl.xml @@ -1,7 +1,9 @@ - + + + - + diff --git a/src/chrome/content/rules/Deaconess-Health-System.xml b/src/chrome/content/rules/Deaconess-Health-System.xml index 9c485200e003..1eee1fb566c1 100644 --- a/src/chrome/content/rules/Deaconess-Health-System.xml +++ b/src/chrome/content/rules/Deaconess-Health-System.xml @@ -8,7 +8,7 @@ - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/DealExtreme.xml b/src/chrome/content/rules/DealExtreme.xml index ec06a9672a19..03711068421f 100644 --- a/src/chrome/content/rules/DealExtreme.xml +++ b/src/chrome/content/rules/DealExtreme.xml @@ -8,22 +8,27 @@ Fetch error: http://dx.com/ => https://dx.com/: (28, 'Operation timed out after - + + + + - + + + + + + + + - - - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/DealTime.xml b/src/chrome/content/rules/DealTime.xml deleted file mode 100644 index e84e7d5efcd2..000000000000 --- a/src/chrome/content/rules/DealTime.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Dealer.com-mismatches.xml b/src/chrome/content/rules/Dealer.com-mismatches.xml index a37ee1ba895f..dc596d4d2bf4 100644 --- a/src/chrome/content/rules/Dealer.com-mismatches.xml +++ b/src/chrome/content/rules/Dealer.com-mismatches.xml @@ -25,7 +25,7 @@ --> - + - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/DealerRater.com.xml b/src/chrome/content/rules/DealerRater.com.xml index 1131ba584227..d0e5b38232bf 100644 --- a/src/chrome/content/rules/DealerRater.com.xml +++ b/src/chrome/content/rules/DealerRater.com.xml @@ -1,36 +1,15 @@ - + - - - - - - - - + + - + diff --git a/src/chrome/content/rules/DealerTrend.com.xml b/src/chrome/content/rules/DealerTrend.com.xml index bef61725b032..2d4aca1f2a99 100644 --- a/src/chrome/content/rules/DealerTrend.com.xml +++ b/src/chrome/content/rules/DealerTrend.com.xml @@ -1,24 +1,24 @@ - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Dealfish.co.th.xml b/src/chrome/content/rules/Dealfish.co.th.xml index acd4603e94f5..da9ebadbadde 100644 --- a/src/chrome/content/rules/Dealfish.co.th.xml +++ b/src/chrome/content/rules/Dealfish.co.th.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://dealfish.co.th/ => https://www.dealfish.co.th/: (7, 'Failed to connect to www.dealfish.co.th port 443: Connection refused') Fetch error: http://www.dealfish.co.th/ => https://www.dealfish.co.th/: (7, 'Failed to connect to www.dealfish.co.th port 443: Connection refused') --> - + diff --git a/src/chrome/content/rules/Dean-Evans-and-Associates.xml b/src/chrome/content/rules/Dean-Evans-and-Associates.xml index 92a3c033afe2..cfaf6adb5e69 100644 --- a/src/chrome/content/rules/Dean-Evans-and-Associates.xml +++ b/src/chrome/content/rules/Dean-Evans-and-Associates.xml @@ -24,7 +24,7 @@ Non-2xx HTTP code: http://pages.dea.com/rs/deanevansassoc/images/DEA-2001-LP-TY- ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -59,7 +59,7 @@ Non-2xx HTTP code: http://pages.dea.com/rs/deanevansassoc/images/DEA-2001-LP-TY- - + + + + + + + + diff --git a/src/chrome/content/rules/DeathMask.net.xml b/src/chrome/content/rules/DeathMask.net.xml index 130b3ca68585..dbe56702f219 100644 --- a/src/chrome/content/rules/DeathMask.net.xml +++ b/src/chrome/content/rules/DeathMask.net.xml @@ -1,23 +1,23 @@ - + + - - - - - - - - - - - + - - - + diff --git a/src/chrome/content/rules/Deb-multimedia.org.xml b/src/chrome/content/rules/Deb-multimedia.org.xml new file mode 100644 index 000000000000..c9ec4f241b38 --- /dev/null +++ b/src/chrome/content/rules/Deb-multimedia.org.xml @@ -0,0 +1,10 @@ + + + + + + + diff --git a/src/chrome/content/rules/Debian-Facile.org.xml b/src/chrome/content/rules/Debian-Facile.org.xml index 1e4c602de548..fc2b1b494156 100644 --- a/src/chrome/content/rules/Debian-Facile.org.xml +++ b/src/chrome/content/rules/Debian-Facile.org.xml @@ -1,20 +1,25 @@ - - - - - - + + + + + + diff --git a/src/chrome/content/rules/Debian-fr.xml b/src/chrome/content/rules/Debian-fr.xml index d1542cd29f66..3dede6e67f66 100644 --- a/src/chrome/content/rules/Debian-fr.xml +++ b/src/chrome/content/rules/Debian-fr.xml @@ -29,7 +29,7 @@ - + - + + + @@ -50,27 +36,22 @@ + - - + - - - - - + diff --git a/src/chrome/content/rules/Debian.org-problematic.xml b/src/chrome/content/rules/Debian.org-problematic.xml deleted file mode 100644 index f21700b6a0e6..000000000000 --- a/src/chrome/content/rules/Debian.org-problematic.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Debian.xml b/src/chrome/content/rules/Debian.xml index 6e49c3fc6347..e54b7f3ff75c 100644 --- a/src/chrome/content/rules/Debian.xml +++ b/src/chrome/content/rules/Debian.xml @@ -1,7 +1,4 @@ - + - - - - - @@ -83,15 +41,12 @@ - - - @@ -100,10 +55,10 @@ + - @@ -113,6 +68,7 @@ + @@ -122,7 +78,9 @@ + + @@ -130,13 +88,14 @@ + + - @@ -172,11 +131,13 @@ - + + diff --git a/src/chrome/content/rules/Debianforum.de.xml b/src/chrome/content/rules/Debianforum.de.xml index 68a88d88efc4..9dce30610caf 100644 --- a/src/chrome/content/rules/Debianforum.de.xml +++ b/src/chrome/content/rules/Debianforum.de.xml @@ -16,7 +16,7 @@ - + - + + + diff --git a/src/chrome/content/rules/Debuggex.com.xml b/src/chrome/content/rules/Debuggex.com.xml index 5eee9763503e..fb6c0fd5d7e9 100644 --- a/src/chrome/content/rules/Debuggex.com.xml +++ b/src/chrome/content/rules/Debuggex.com.xml @@ -5,7 +5,7 @@ Fetch error: http://debuggex.com/ => https://debuggex.com/: (60, 'SSL certificat Fetch error: http://www.debuggex.com/ => https://www.debuggex.com/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + diff --git a/src/chrome/content/rules/Decdna.net.xml b/src/chrome/content/rules/Decdna.net.xml index 9b86b841e47d..9fb5f5127a60 100644 --- a/src/chrome/content/rules/Decdna.net.xml +++ b/src/chrome/content/rules/Decdna.net.xml @@ -5,9 +5,9 @@ Fetch error: http://na.decdna.net/ => https://na.decdna.net/: (6, 'Could not res Fetch error: http://eu.link.decdna.net/ => https://eu.link.decdna.net/: (6, 'Could not resolve host: eu.link.decdna.net') --> - + - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Decipher_Inc.com.xml b/src/chrome/content/rules/Decipher_Inc.com.xml index 2519c3404b03..894e8e044360 100644 --- a/src/chrome/content/rules/Decipher_Inc.com.xml +++ b/src/chrome/content/rules/Decipher_Inc.com.xml @@ -14,16 +14,17 @@ - + + + - + diff --git a/src/chrome/content/rules/DecisionBriefs.xml b/src/chrome/content/rules/DecisionBriefs.xml index fb67ad86c2a0..ee7884c6d559 100644 --- a/src/chrome/content/rules/DecisionBriefs.xml +++ b/src/chrome/content/rules/DecisionBriefs.xml @@ -1,13 +1,14 @@ - + + + - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Declaration-of-Russian-Hosting-Providers.xml b/src/chrome/content/rules/Declaration-of-Russian-Hosting-Providers.xml index 303cb06d3b13..d3b295726f16 100644 --- a/src/chrome/content/rules/Declaration-of-Russian-Hosting-Providers.xml +++ b/src/chrome/content/rules/Declaration-of-Russian-Hosting-Providers.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://hostdeclaration.ru/ => https://hostdeclaration.ru/: (51, "SSL: no alternative certificate subject name matches target host name 'hostdeclaration.ru'") Fetch error: http://www.hostdeclaration.ru/ => https://hostdeclaration.ru/: (51, "SSL: no alternative certificate subject name matches target host name 'hostdeclaration.ru'") --> - + diff --git a/src/chrome/content/rules/DecorAdventures.com.xml b/src/chrome/content/rules/DecorAdventures.com.xml new file mode 100644 index 000000000000..7f7392086186 --- /dev/null +++ b/src/chrome/content/rules/DecorAdventures.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Decrypt_CryptoLocker.com.xml b/src/chrome/content/rules/Decrypt_CryptoLocker.com.xml index a04f478ee246..9a6d414165df 100644 --- a/src/chrome/content/rules/Decrypt_CryptoLocker.com.xml +++ b/src/chrome/content/rules/Decrypt_CryptoLocker.com.xml @@ -5,7 +5,7 @@ Fetch error: http://decryptcryptolocker.com/ => https://decryptcryptolocker.com/ Fetch error: http://www.decryptcryptolocker.com/ => https://www.decryptcryptolocker.com/: (6, 'Could not resolve host: www.decryptcryptolocker.com') --> - + diff --git a/src/chrome/content/rules/Dedicated_Gaming.xml b/src/chrome/content/rules/Dedicated_Gaming.xml index 1896f19d10e4..5977cec4fc33 100644 --- a/src/chrome/content/rules/Dedicated_Gaming.xml +++ b/src/chrome/content/rules/Dedicated_Gaming.xml @@ -10,4 +10,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Dedikuoti.lt.xml b/src/chrome/content/rules/Dedikuoti.lt.xml index 81b4948f3dab..5faf94b82400 100644 --- a/src/chrome/content/rules/Dedikuoti.lt.xml +++ b/src/chrome/content/rules/Dedikuoti.lt.xml @@ -1,7 +1,7 @@ - + diff --git a/src/chrome/content/rules/Dediserve.com.xml b/src/chrome/content/rules/Dediserve.com.xml index a6313d3049ba..5efb4c14320d 100644 --- a/src/chrome/content/rules/Dediserve.com.xml +++ b/src/chrome/content/rules/Dediserve.com.xml @@ -15,7 +15,7 @@ - + https://www.deekayen.net/: (51, "SSL: no alternative certificate subject name matches target host name 'www.deekayen.net'") --> - + diff --git a/src/chrome/content/rules/DeepDyve.xml b/src/chrome/content/rules/DeepDyve.xml index 64c95ac0f19b..2acfd269dfc7 100644 --- a/src/chrome/content/rules/DeepDyve.xml +++ b/src/chrome/content/rules/DeepDyve.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/DeepField-Networks.xml b/src/chrome/content/rules/DeepField-Networks.xml index 290dd7b5e452..9a2581cb5fa8 100644 --- a/src/chrome/content/rules/DeepField-Networks.xml +++ b/src/chrome/content/rules/DeepField-Networks.xml @@ -1,7 +1,8 @@ - + + - + - - - - - - - - - diff --git a/src/chrome/content/rules/Defora.org.xml b/src/chrome/content/rules/Defora.org.xml index e4b614579c7e..d8043aba4ced 100644 --- a/src/chrome/content/rules/Defora.org.xml +++ b/src/chrome/content/rules/Defora.org.xml @@ -1,17 +1,21 @@ - + Problematic hosts in *defora.org: - - + - ^ (mismatched) + - mahce (no https) + - imap (no https) + - lists (no https) + - mx (no https) + - ftp (no https) + - preach (mismatched) - - +--> + + + + diff --git a/src/chrome/content/rules/Defra.gov.uk.xml b/src/chrome/content/rules/Defra.gov.uk.xml index de96a416c893..58632745df7b 100644 --- a/src/chrome/content/rules/Defra.gov.uk.xml +++ b/src/chrome/content/rules/Defra.gov.uk.xml @@ -75,7 +75,7 @@ --> - + https://dein.dk/: (35, 'Unknown SSL protocol err Fetch error: http://www.dein.dk/ => https://www.dein.dk/: (35, 'Unknown SSL protocol error in connection to www.dein.dk:443 ') --> - + diff --git a/src/chrome/content/rules/Deis.com.xml b/src/chrome/content/rules/Deis.com.xml deleted file mode 100644 index 0612f070cfa4..000000000000 --- a/src/chrome/content/rules/Deis.com.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/DejaLu.me.xml b/src/chrome/content/rules/DejaLu.me.xml new file mode 100644 index 000000000000..b396bb166620 --- /dev/null +++ b/src/chrome/content/rules/DejaLu.me.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Delaware_Online.xml b/src/chrome/content/rules/Delaware_Online.xml index 44bee0f27af5..3d86bc8403e9 100644 --- a/src/chrome/content/rules/Delaware_Online.xml +++ b/src/chrome/content/rules/Delaware_Online.xml @@ -26,7 +26,7 @@ - + diff --git a/src/chrome/content/rules/Delfogo_Rx.xml b/src/chrome/content/rules/Delfogo_Rx.xml deleted file mode 100644 index 6a8c9d615346..000000000000 --- a/src/chrome/content/rules/Delfogo_Rx.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Delft-University-of-Technology-mismatches.xml b/src/chrome/content/rules/Delft-University-of-Technology-mismatches.xml index 045fb585815f..09a4af48fa76 100644 --- a/src/chrome/content/rules/Delft-University-of-Technology-mismatches.xml +++ b/src/chrome/content/rules/Delft-University-of-Technology-mismatches.xml @@ -8,7 +8,6 @@ - + diff --git a/src/chrome/content/rules/Delft-University-of-Technology.xml b/src/chrome/content/rules/Delft-University-of-Technology.xml index c98ef7459372..326692fb2358 100644 --- a/src/chrome/content/rules/Delft-University-of-Technology.xml +++ b/src/chrome/content/rules/Delft-University-of-Technology.xml @@ -35,7 +35,7 @@ - + diff --git a/src/chrome/content/rules/Delicious_Green_Coffee.com.xml b/src/chrome/content/rules/Delicious_Green_Coffee.com.xml deleted file mode 100644 index 8b0d7a711a27..000000000000 --- a/src/chrome/content/rules/Delicious_Green_Coffee.com.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Delico.se.xml b/src/chrome/content/rules/Delico.se.xml index c547e99c8b87..9d93ae356417 100644 --- a/src/chrome/content/rules/Delico.se.xml +++ b/src/chrome/content/rules/Delico.se.xml @@ -1,7 +1,6 @@ - - + diff --git a/src/chrome/content/rules/Delish.xml b/src/chrome/content/rules/Delish.xml index 191c4467fa1f..2478f3750cac 100644 --- a/src/chrome/content/rules/Delish.xml +++ b/src/chrome/content/rules/Delish.xml @@ -1,8 +1,6 @@ diff --git a/src/chrome/content/rules/Deliveras.gr.xml b/src/chrome/content/rules/Deliveras.gr.xml index 508f7d356eb0..1a0b63a5ad21 100644 --- a/src/chrome/content/rules/Deliveras.gr.xml +++ b/src/chrome/content/rules/Deliveras.gr.xml @@ -18,7 +18,7 @@ * Ruleset disabled by default --> - + @@ -30,7 +30,7 @@ --> - + - + diff --git a/src/chrome/content/rules/Dell.com-falsemixed.xml b/src/chrome/content/rules/Dell.com-falsemixed.xml deleted file mode 100644 index 4a750122dfb1..000000000000 --- a/src/chrome/content/rules/Dell.com-falsemixed.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Dell.xml b/src/chrome/content/rules/Dell.xml index 3140be54a8a5..3d3a18a1c396 100644 --- a/src/chrome/content/rules/Dell.xml +++ b/src/chrome/content/rules/Dell.xml @@ -1,120 +1,52 @@ - - - accessories, deals, downloads, partnerdirect, channels.us, www from i.dell.com * - - www from si.cdn.dell.com * - - www from www-cdn1.dell.com * + - - + + - - - - - - - + + + + + - - - - + + - - - - + + @@ -122,80 +54,17 @@ - - - + + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + diff --git a/src/chrome/content/rules/DellCDN.com.xml b/src/chrome/content/rules/DellCDN.com.xml new file mode 100644 index 000000000000..c78227b8be69 --- /dev/null +++ b/src/chrome/content/rules/DellCDN.com.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Deltager.no.xml b/src/chrome/content/rules/Deltager.no.xml index f34c8aed0af2..a2be11c2aecc 100644 --- a/src/chrome/content/rules/Deltager.no.xml +++ b/src/chrome/content/rules/Deltager.no.xml @@ -19,7 +19,7 @@ --> - + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Deluge.xml b/src/chrome/content/rules/Deluge.xml deleted file mode 100644 index 40326ecb44ee..000000000000 --- a/src/chrome/content/rules/Deluge.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/DemWorks.org.xml b/src/chrome/content/rules/DemWorks.org.xml index 87dcd93363b3..89d735395a57 100644 --- a/src/chrome/content/rules/DemWorks.org.xml +++ b/src/chrome/content/rules/DemWorks.org.xml @@ -8,7 +8,7 @@ --> - + https://leads.demandbase.com/: (6, * Secured by us --> - + @@ -60,7 +60,7 @@ Fetch error: http://leads.demandbase.com/ => https://leads.demandbase.com/: (6, - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Demand-Media.xml b/src/chrome/content/rules/Demand-Media.xml index 7f23dacb2d9c..493e82beb33d 100644 --- a/src/chrome/content/rules/Demand-Media.xml +++ b/src/chrome/content/rules/Demand-Media.xml @@ -1,67 +1,31 @@ - - - - - - - - - - - - - - - - + + + + diff --git a/src/chrome/content/rules/Demand-driver.com.xml b/src/chrome/content/rules/Demand-driver.com.xml deleted file mode 100644 index 4fc8b6d7fd8e..000000000000 --- a/src/chrome/content/rules/Demand-driver.com.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/DemandStudios.com.xml b/src/chrome/content/rules/DemandStudios.com.xml new file mode 100644 index 000000000000..afa48cdff586 --- /dev/null +++ b/src/chrome/content/rules/DemandStudios.com.xml @@ -0,0 +1,23 @@ + + + + + + + diff --git a/src/chrome/content/rules/Demandware.net.xml b/src/chrome/content/rules/Demandware.net.xml deleted file mode 100644 index 9e362c36fad1..000000000000 --- a/src/chrome/content/rules/Demandware.net.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Demandware.xml b/src/chrome/content/rules/Demandware.xml index b4f7fadd21b9..242f30382f2a 100644 --- a/src/chrome/content/rules/Demandware.xml +++ b/src/chrome/content/rules/Demandware.xml @@ -1,14 +1,14 @@ - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + - - - - + - + diff --git a/src/chrome/content/rules/Demdex.com.xml b/src/chrome/content/rules/Demdex.com.xml deleted file mode 100644 index 16bcf76bf9eb..000000000000 --- a/src/chrome/content/rules/Demdex.com.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Demdex.net.xml b/src/chrome/content/rules/Demdex.net.xml index e18cb48dfa2e..2f9821586fa3 100644 --- a/src/chrome/content/rules/Demdex.net.xml +++ b/src/chrome/content/rules/Demdex.net.xml @@ -33,7 +33,7 @@ - + https://blog.demisto.com/: (51, "SSL: n - www.blog.demisto.com --> - + diff --git a/src/chrome/content/rules/Democrat_and_Chronicle.xml b/src/chrome/content/rules/Democrat_and_Chronicle.xml index 1b8c2e1d7f48..890df88ca889 100644 --- a/src/chrome/content/rules/Democrat_and_Chronicle.xml +++ b/src/chrome/content/rules/Democrat_and_Chronicle.xml @@ -11,9 +11,12 @@ Fetch error: http://democratandchronicle.com/ => https://www.democratandchronicl - feeds (redirects to ipad; mismatched, CN: roctoday.democratandchronicle.com) - rocdocs (no https) - tablet (403, akamai) + - localshopping (403) - democratandchronicle.gannettonline.com - + - meetthebabies.democratandchronicle.com (no alternative SSL cert) + - roctoday.democratandchronicle.com (host unresolved) + - findnsave.democratandchronicle.com (no alternative SSL cert) Problematic subdomains: @@ -21,8 +24,6 @@ Fetch error: http://democratandchronicle.com/ => https://www.democratandchronicl - cmsimg (503, akamai) - findnsave (pages redirect to http; mismatched, CN: *.findnsave.com) - ipad (works; mismatched, CN: roctoday.democratandchronicle.com) - - localshopping (works; mismatched, CN: *.shoplocal.com) - Mixed images from: @@ -32,12 +33,17 @@ Fetch error: http://democratandchronicle.com/ => https://www.democratandchronicl No insecure css nor scripts. + Timeout + - classifieds + --> - - + + + + - - - - - - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Demonoid.xml b/src/chrome/content/rules/Demonoid.xml deleted file mode 100644 index e4b1a5a70979..000000000000 --- a/src/chrome/content/rules/Demonoid.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Demonsaw.com.xml b/src/chrome/content/rules/Demonsaw.com.xml index f108e83065c4..aed9d47ec56c 100644 --- a/src/chrome/content/rules/Demonsaw.com.xml +++ b/src/chrome/content/rules/Demonsaw.com.xml @@ -44,7 +44,7 @@ --> - + + + + + + + + + diff --git a/src/chrome/content/rules/Denfri.dk.xml b/src/chrome/content/rules/Denfri.dk.xml index eae449736770..fcd56e7dc234 100644 --- a/src/chrome/content/rules/Denfri.dk.xml +++ b/src/chrome/content/rules/Denfri.dk.xml @@ -5,7 +5,7 @@ Fetch error: http://denfri.dk/ => https://denfri.dk/: (60, 'SSL certificate prob Fetch error: http://www.denfri.dk/ => https://www.denfri.dk/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/Denh.am.xml b/src/chrome/content/rules/Denh.am.xml deleted file mode 100644 index 555546d8f979..000000000000 --- a/src/chrome/content/rules/Denh.am.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Denic.de.xml b/src/chrome/content/rules/Denic.de.xml index e60ab2b4dd38..1fdbdea67a61 100644 --- a/src/chrome/content/rules/Denic.de.xml +++ b/src/chrome/content/rules/Denic.de.xml @@ -5,11 +5,11 @@ Fetch error: http://www.secure.denic.de/ => https://www.secure.denic.de/: (6, 'C Announcement: - https://denic.de/en/denic-in-dialogue/news/4079.html - + Nonfunctional subdomains: - secure -> DNS resolve error --> - + diff --git a/src/chrome/content/rules/Denis_Matsuev.xml b/src/chrome/content/rules/Denis_Matsuev.xml index bc976ad0032c..2569427a0359 100644 --- a/src/chrome/content/rules/Denis_Matsuev.xml +++ b/src/chrome/content/rules/Denis_Matsuev.xml @@ -5,7 +5,7 @@ Fetch error: http://matsuev.com/ => https://matsuev.com/: (60, 'SSL certificate Fetch error: http://www.matsuev.com/ => https://www.matsuev.com/: (60, 'SSL certificate problem: self signed certificate') --> - + @@ -16,4 +16,4 @@ Fetch error: http://www.matsuev.com/ => https://www.matsuev.com/: (60, 'SSL cert - \ No newline at end of file + diff --git a/src/chrome/content/rules/Denpa.moe.xml b/src/chrome/content/rules/Denpa.moe.xml deleted file mode 100644 index b9cefc096838..000000000000 --- a/src/chrome/content/rules/Denpa.moe.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/DepFile.com.xml b/src/chrome/content/rules/DepFile.com.xml deleted file mode 100644 index bb26ed1aa82a..000000000000 --- a/src/chrome/content/rules/DepFile.com.xml +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/DepartmentofEducation.xml b/src/chrome/content/rules/DepartmentofEducation.xml index b224b201d7c7..eda0e32c2ef6 100644 --- a/src/chrome/content/rules/DepartmentofEducation.xml +++ b/src/chrome/content/rules/DepartmentofEducation.xml @@ -1,7 +1,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/DepartmentofEmployment.xml b/src/chrome/content/rules/DepartmentofEmployment.xml index 8ef530ea032f..a9d0f224c6d4 100644 --- a/src/chrome/content/rules/DepartmentofEmployment.xml +++ b/src/chrome/content/rules/DepartmentofEmployment.xml @@ -1,7 +1,7 @@ - + + - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/DepartmentofForeignAffairsandTrade.xml b/src/chrome/content/rules/DepartmentofForeignAffairsandTrade.xml index 53322d7bb009..c642bebad117 100644 --- a/src/chrome/content/rules/DepartmentofForeignAffairsandTrade.xml +++ b/src/chrome/content/rules/DepartmentofForeignAffairsandTrade.xml @@ -4,13 +4,15 @@ Disabled by https-everywhere-checker because: Fetch error: http://dfat.gov.au/ => https://www.dfat.gov.au/: Too many redirects while fetching 'https://www.dfat.gov.au/' --> - + - + + + - \ No newline at end of file + diff --git a/src/chrome/content/rules/DepartmentofImmigrationandBorderProtection.xml b/src/chrome/content/rules/DepartmentofImmigrationandBorderProtection.xml new file mode 100644 index 000000000000..fce21c873c74 --- /dev/null +++ b/src/chrome/content/rules/DepartmentofImmigrationandBorderProtection.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/DepartmentofInfrastructureandRegionalDevelopment.xml b/src/chrome/content/rules/DepartmentofInfrastructureandRegionalDevelopment.xml index 62a31ae94c6f..0ef278abc63b 100644 --- a/src/chrome/content/rules/DepartmentofInfrastructureandRegionalDevelopment.xml +++ b/src/chrome/content/rules/DepartmentofInfrastructureandRegionalDevelopment.xml @@ -1,7 +1,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Dephormation.org.uk.xml b/src/chrome/content/rules/Dephormation.org.uk.xml index dc1ff15b571f..db33a2f91c13 100644 --- a/src/chrome/content/rules/Dephormation.org.uk.xml +++ b/src/chrome/content/rules/Dephormation.org.uk.xml @@ -3,4 +3,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Deposit-Files.xml b/src/chrome/content/rules/Deposit-Files.xml index bafa73d5a00d..323a4d2f2aac 100644 --- a/src/chrome/content/rules/Deposit-Files.xml +++ b/src/chrome/content/rules/Deposit-Files.xml @@ -24,7 +24,7 @@ - + diff --git a/src/chrome/content/rules/DepositProtection.xml b/src/chrome/content/rules/DepositProtection.xml index 3996a41adbb7..906ac9cd72c4 100644 --- a/src/chrome/content/rules/DepositProtection.xml +++ b/src/chrome/content/rules/DepositProtection.xml @@ -20,7 +20,7 @@ --> - + https://deprexis.com/: (51, "SSL: no altern - (www.)deprexis.eu (refused) --> - + @@ -22,4 +22,4 @@ Fetch error: http://deprexis.com/ => https://deprexis.com/: (51, "SSL: no altern - \ No newline at end of file + diff --git a/src/chrome/content/rules/Der-preis-jaeger.de.xml b/src/chrome/content/rules/Der-preis-jaeger.de.xml index 1f77b64e31ee..fb4cf4bb3038 100644 --- a/src/chrome/content/rules/Der-preis-jaeger.de.xml +++ b/src/chrome/content/rules/Der-preis-jaeger.de.xml @@ -15,7 +15,7 @@ Fetch error: http://www.der-preis-jaeger.de/ => https://www.der-preis-jaeger.de/ - myclipster.com --> - + diff --git a/src/chrome/content/rules/Derby.gov.uk.xml b/src/chrome/content/rules/Derby.gov.uk.xml index 18f7efb8dfc4..74f4fe1414a0 100644 --- a/src/chrome/content/rules/Derby.gov.uk.xml +++ b/src/chrome/content/rules/Derby.gov.uk.xml @@ -1,84 +1,35 @@ - - - + + - + + - - - - - - - - - - - - - - - - - - - + diff --git a/src/chrome/content/rules/Derpibooru.xml b/src/chrome/content/rules/Derpibooru.xml index 5f37b7248906..6279bcb36269 100644 --- a/src/chrome/content/rules/Derpibooru.xml +++ b/src/chrome/content/rules/Derpibooru.xml @@ -4,11 +4,9 @@ Disabled by https-everywhere-checker because: Fetch error: http://img5.derpicdn.net/img/view/2015/1/18/808969.png => https://img5.derpicdn.net/img/view/2015/1/18/808969.png: (6, 'Could not resolve host: img5.derpicdn.net') --> - + - - diff --git a/src/chrome/content/rules/Derpy.me.xml b/src/chrome/content/rules/Derpy.me.xml index 0579ff321d3c..f539eb923544 100644 --- a/src/chrome/content/rules/Derpy.me.xml +++ b/src/chrome/content/rules/Derpy.me.xml @@ -15,7 +15,7 @@ Fetch error: http://piwik.derpy.me/ => https://piwik.derpy.me/: (60, 'SSL certif * Secured by us --> - + diff --git a/src/chrome/content/rules/Derwesten.de.xml b/src/chrome/content/rules/Derwesten.de.xml index 7bf9c8b1198f..eee8c4461627 100644 --- a/src/chrome/content/rules/Derwesten.de.xml +++ b/src/chrome/content/rules/Derwesten.de.xml @@ -1,10 +1,12 @@ - + + + - + diff --git a/src/chrome/content/rules/Desert_News.xml b/src/chrome/content/rules/Desert_News.xml deleted file mode 100644 index c58474467984..000000000000 --- a/src/chrome/content/rules/Desert_News.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Desertory_Media.xml b/src/chrome/content/rules/Desertory_Media.xml deleted file mode 100644 index 903b96ba71b2..000000000000 --- a/src/chrome/content/rules/Desertory_Media.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/DesignAddict.xml b/src/chrome/content/rules/DesignAddict.xml index 992c476d91f4..fdc841862add 100644 --- a/src/chrome/content/rules/DesignAddict.xml +++ b/src/chrome/content/rules/DesignAddict.xml @@ -7,20 +7,19 @@ Fetch error: http://generationawake.eu/ => https://generationawake.eu/: (60, 'SS Disabled by https-everywhere-checker because: Fetch error: http://designaddict.com/ => https://designaddict.com/: (60, 'SSL certificate problem: self signed certificate') --> - + - - + + - + - + diff --git a/src/chrome/content/rules/Designer_News.co.xml b/src/chrome/content/rules/Designer_News.co.xml index f8d79f9a0837..5c10c7c8798b 100644 --- a/src/chrome/content/rules/Designer_News.co.xml +++ b/src/chrome/content/rules/Designer_News.co.xml @@ -22,7 +22,7 @@ --> - + https://www.designova.net/: (60, 'SSL * Secured by us --> - + - + https://desire2learn.com/: (60, 'SSL ce - + + + + - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Desjardins.xml b/src/chrome/content/rules/Desjardins.xml index 7ff38658e47a..e325088be102 100644 --- a/src/chrome/content/rules/Desjardins.xml +++ b/src/chrome/content/rules/Desjardins.xml @@ -2,7 +2,7 @@ blogues.desjardins.com does not work with https at this time - + --> @@ -10,7 +10,7 @@ - + @@ -18,7 +18,7 @@ - + diff --git a/src/chrome/content/rules/Desk.com.xml b/src/chrome/content/rules/Desk.com.xml index 7d2f1609e949..9950d60a233f 100644 --- a/src/chrome/content/rules/Desk.com.xml +++ b/src/chrome/content/rules/Desk.com.xml @@ -1,87 +1,634 @@ - - - - - + - - - - - - - - - - - - - - - - - + + + + + + diff --git a/src/chrome/content/rules/Despora.de.xml b/src/chrome/content/rules/Despora.de.xml deleted file mode 100644 index d058dbbc3729..000000000000 --- a/src/chrome/content/rules/Despora.de.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Destructoid.xml b/src/chrome/content/rules/Destructoid.xml index 735f5f085248..5e9531ee8850 100644 --- a/src/chrome/content/rules/Destructoid.xml +++ b/src/chrome/content/rules/Destructoid.xml @@ -1,14 +1,12 @@ - + - - - - + + diff --git a/src/chrome/content/rules/Desura.xml b/src/chrome/content/rules/Desura.xml deleted file mode 100644 index a298cb7b546e..000000000000 --- a/src/chrome/content/rules/Desura.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Desy.de.xml b/src/chrome/content/rules/Desy.de.xml index 978bb8010090..034769cf176a 100644 --- a/src/chrome/content/rules/Desy.de.xml +++ b/src/chrome/content/rules/Desy.de.xml @@ -63,7 +63,7 @@ Fetch error: http://wof-piwik2.desy.de/ => https://wof-piwik2.desy.de/: (60, 'SS * Secured by us --> - + @@ -110,7 +110,7 @@ Fetch error: http://wof-piwik2.desy.de/ => https://wof-piwik2.desy.de/: (60, 'SS --> - + https://wp-poc.details.com/: (6, 'Cou For rules not causing false/broken MCB, see Details.com.xml. --> - + - + diff --git a/src/chrome/content/rules/Details.xml b/src/chrome/content/rules/Details.xml index 07bb14d14100..c402bfae2a1a 100644 --- a/src/chrome/content/rules/Details.xml +++ b/src/chrome/content/rules/Details.xml @@ -44,7 +44,9 @@ - + + + diff --git a/src/chrome/content/rules/DeusM-clients.xml b/src/chrome/content/rules/DeusM-clients.xml deleted file mode 100644 index 22bbc17da2a0..000000000000 --- a/src/chrome/content/rules/DeusM-clients.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/DeusM.xml b/src/chrome/content/rules/DeusM.xml index ff600cd91473..d2f152d5d689 100644 --- a/src/chrome/content/rules/DeusM.xml +++ b/src/chrome/content/rules/DeusM.xml @@ -1,9 +1,6 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Deutsche-Rohstoffagentur.de.xml b/src/chrome/content/rules/Deutsche-Rohstoffagentur.de.xml new file mode 100644 index 000000000000..5998c3a69499 --- /dev/null +++ b/src/chrome/content/rules/Deutsche-Rohstoffagentur.de.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Deutsche_Boerse.xml b/src/chrome/content/rules/Deutsche_Boerse.xml index 748281a4cb6e..5fb034cc421a 100644 --- a/src/chrome/content/rules/Deutsche_Boerse.xml +++ b/src/chrome/content/rules/Deutsche_Boerse.xml @@ -14,7 +14,7 @@ Fetch error: http://www.deutsche-boerse.com/ => https://www.deutsche-boerse.com/ --> - + diff --git a/src/chrome/content/rules/Deutsche_Telekom.xml b/src/chrome/content/rules/Deutsche_Telekom.xml index f053ce64fc3b..f615ad78dee9 100644 --- a/src/chrome/content/rules/Deutsche_Telekom.xml +++ b/src/chrome/content/rules/Deutsche_Telekom.xml @@ -11,7 +11,6 @@ Fetch error: http://videomeet.telekom.de/ => https://videomeet.telekom.de/: (6, Other Deutsche Telekom rulesets: - T-Mobile.xml - - T-Mobile.co.uk.xml - T-Online.xml - TMobile.com.xml - TMobile.nl.xml @@ -20,7 +19,6 @@ Fetch error: http://videomeet.telekom.de/ => https://videomeet.telekom.de/: (6, - Telekom-Partnerwelt.de.xml - Telekom-Profis.de.xml - Telekom-dienste.de.xml - - Wtpx-Telekom.com.xml Insecure cookies are set for these domains and hosts: @@ -35,7 +33,7 @@ Fetch error: http://videomeet.telekom.de/ => https://videomeet.telekom.de/: (6, - Bug on (www.)?forum from stats.t-online.de --> - + @@ -64,7 +62,7 @@ Fetch error: http://videomeet.telekom.de/ => https://videomeet.telekom.de/: (6, - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + diff --git a/src/chrome/content/rules/Deutschen-Forschungsgemeinschaft.xml b/src/chrome/content/rules/Deutschen-Forschungsgemeinschaft.xml index e795fba9f833..4d71a3f6ec66 100644 --- a/src/chrome/content/rules/Deutschen-Forschungsgemeinschaft.xml +++ b/src/chrome/content/rules/Deutschen-Forschungsgemeinschaft.xml @@ -15,10 +15,9 @@ - + - + diff --git a/src/chrome/content/rules/Deutscher_Bundestag.xml b/src/chrome/content/rules/Deutscher_Bundestag.xml index 3ec48890992c..7090c3cdfb94 100644 --- a/src/chrome/content/rules/Deutscher_Bundestag.xml +++ b/src/chrome/content/rules/Deutscher_Bundestag.xml @@ -1,19 +1,28 @@ - - + + + + + + + + + + + + + + - - - \ No newline at end of file + diff --git a/src/chrome/content/rules/Deutsches_Forschungsnetz.xml b/src/chrome/content/rules/Deutsches_Forschungsnetz.xml index 6256787d170f..6cb002c621da 100644 --- a/src/chrome/content/rules/Deutsches_Forschungsnetz.xml +++ b/src/chrome/content/rules/Deutsches_Forschungsnetz.xml @@ -23,7 +23,7 @@ - + + + + + + + diff --git a/src/chrome/content/rules/DeutschlandRadio.xml b/src/chrome/content/rules/DeutschlandRadio.xml deleted file mode 100644 index 2070219db274..000000000000 --- a/src/chrome/content/rules/DeutschlandRadio.xml +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Deutschlandfunk.de.xml b/src/chrome/content/rules/Deutschlandfunk.de.xml new file mode 100644 index 000000000000..aa033bda91c7 --- /dev/null +++ b/src/chrome/content/rules/Deutschlandfunk.de.xml @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Deutschlandfunkkultur.de.xml b/src/chrome/content/rules/Deutschlandfunkkultur.de.xml new file mode 100644 index 000000000000..7ab3342ca8fc --- /dev/null +++ b/src/chrome/content/rules/Deutschlandfunkkultur.de.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Deutschlandfunknova.de.xml b/src/chrome/content/rules/Deutschlandfunknova.de.xml new file mode 100644 index 000000000000..92bce48d613c --- /dev/null +++ b/src/chrome/content/rules/Deutschlandfunknova.de.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Deutschlandradio.de.xml b/src/chrome/content/rules/Deutschlandradio.de.xml new file mode 100644 index 000000000000..71c15eb1ba04 --- /dev/null +++ b/src/chrome/content/rules/Deutschlandradio.de.xml @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/DevStructure.xml b/src/chrome/content/rules/DevStructure.xml index 003122f67101..8d223f77532f 100644 --- a/src/chrome/content/rules/DevStructure.xml +++ b/src/chrome/content/rules/DevStructure.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://devstructure.com/ => https://devstructure.com/: (51, "SSL: no alternative certificate subject name matches target host name 'devstructure.com'") Fetch error: http://www.devstructure.com/ => https://devstructure.com/: (51, "SSL: no alternative certificate subject name matches target host name 'devstructure.com'") --> - + diff --git a/src/chrome/content/rules/DevZing.com.xml b/src/chrome/content/rules/DevZing.com.xml index e7e24af899df..08ee82c58c72 100644 --- a/src/chrome/content/rules/DevZing.com.xml +++ b/src/chrome/content/rules/DevZing.com.xml @@ -22,4 +22,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Devast.io.xml b/src/chrome/content/rules/Devast.io.xml new file mode 100644 index 000000000000..454fbc6eee0e --- /dev/null +++ b/src/chrome/content/rules/Devast.io.xml @@ -0,0 +1,23 @@ + + + + + + + diff --git a/src/chrome/content/rules/DeveloperMail.io.xml b/src/chrome/content/rules/DeveloperMail.io.xml deleted file mode 100644 index efac1b060105..000000000000 --- a/src/chrome/content/rules/DeveloperMail.io.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Deverge.com.xml b/src/chrome/content/rules/Deverge.com.xml new file mode 100644 index 000000000000..5247ec5c780a --- /dev/null +++ b/src/chrome/content/rules/Deverge.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Devever.net.xml b/src/chrome/content/rules/Devever.net.xml index 480f87fe9992..8e250199a90c 100644 --- a/src/chrome/content/rules/Devever.net.xml +++ b/src/chrome/content/rules/Devever.net.xml @@ -10,7 +10,7 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Deviantart-mismatches.xml b/src/chrome/content/rules/Deviantart-mismatches.xml deleted file mode 100644 index 27c7886a1e6b..000000000000 --- a/src/chrome/content/rules/Deviantart-mismatches.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Deviantart.xml b/src/chrome/content/rules/Deviantart.xml deleted file mode 100644 index 4b9645eb8e90..000000000000 --- a/src/chrome/content/rules/Deviantart.xml +++ /dev/null @@ -1,158 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Devil_Team.pl.xml b/src/chrome/content/rules/Devil_Team.pl.xml index 0325ab4cc96c..63969fa35379 100644 --- a/src/chrome/content/rules/Devil_Team.pl.xml +++ b/src/chrome/content/rules/Devil_Team.pl.xml @@ -13,7 +13,7 @@ - + - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Devon.gov.uk.xml b/src/chrome/content/rules/Devon.gov.uk.xml index 6da81e397268..c12cd730200c 100644 --- a/src/chrome/content/rules/Devon.gov.uk.xml +++ b/src/chrome/content/rules/Devon.gov.uk.xml @@ -1,63 +1,33 @@ - - + SSL peer certificate was not OK: + - alpha.devon.gov.uk + - www.directory.devon.gov.uk - + Incomplete certificate chain error: + - services.devon.gov.uk +--> + + + - - - - - - - - - - - - - - - - + - + to="https:" /> diff --git a/src/chrome/content/rules/DevonandCornwallPolice.xml b/src/chrome/content/rules/DevonandCornwallPolice.xml index c43ae96b39f8..5c82a507a845 100644 --- a/src/chrome/content/rules/DevonandCornwallPolice.xml +++ b/src/chrome/content/rules/DevonandCornwallPolice.xml @@ -17,7 +17,7 @@ Fetch error: http://devon-cornwall.police.uk/ => https://devon-cornwall.police.u - digitalmediablog.devon-cornwall.police.uk --> - + diff --git a/src/chrome/content/rules/Devpen.io.xml b/src/chrome/content/rules/Devpen.io.xml new file mode 100644 index 000000000000..a991acf78e14 --- /dev/null +++ b/src/chrome/content/rules/Devpen.io.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Devprom.ru.xml b/src/chrome/content/rules/Devprom.ru.xml index 80f8999b52a2..460c97b694bf 100644 --- a/src/chrome/content/rules/Devprom.ru.xml +++ b/src/chrome/content/rules/Devprom.ru.xml @@ -11,13 +11,13 @@ NB: Server sends no certificate chain, see https://whatsmychaincert.com --> - + - + https://dezertdepot.com/: (35, 'error:14077410:SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert handshake failure') -Fetch error: http://www.dezertdepot.com/ => https://www.dezertdepot.com/: (7, 'Failed to connect to www.dezertdepot.com port 443: Connection refused') - ---> - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Dhaval_Kapil.com.xml b/src/chrome/content/rules/Dhaval_Kapil.com.xml index acb87f2320b9..cb47c6fb1e7f 100644 --- a/src/chrome/content/rules/Dhaval_Kapil.com.xml +++ b/src/chrome/content/rules/Dhaval_Kapil.com.xml @@ -29,7 +29,7 @@ --> - + diff --git a/src/chrome/content/rules/Diakonie.de.xml b/src/chrome/content/rules/Diakonie.de.xml new file mode 100644 index 000000000000..1b5397276773 --- /dev/null +++ b/src/chrome/content/rules/Diakonie.de.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Dianomi.com.xml b/src/chrome/content/rules/Dianomi.com.xml new file mode 100644 index 000000000000..54155cdc5d73 --- /dev/null +++ b/src/chrome/content/rules/Dianomi.com.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Dianomi.xml b/src/chrome/content/rules/Dianomi.xml deleted file mode 100644 index 3dafb7d14562..000000000000 --- a/src/chrome/content/rules/Dianomi.xml +++ /dev/null @@ -1,65 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Diasp.eu.xml b/src/chrome/content/rules/Diasp.eu.xml index f8e352c9ebc2..94300c36e61e 100644 --- a/src/chrome/content/rules/Diasp.eu.xml +++ b/src/chrome/content/rules/Diasp.eu.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.diasp.eu/ => https://www.diasp.eu/: (51, "SSL: no alternative certificate subject name matches target host name 'www.diasp.eu'") --> - + diff --git a/src/chrome/content/rules/Diaspora_Brazil.org.xml b/src/chrome/content/rules/Diaspora_Brazil.org.xml index 9df01d7d6746..d2564a2bd7a9 100644 --- a/src/chrome/content/rules/Diaspora_Brazil.org.xml +++ b/src/chrome/content/rules/Diaspora_Brazil.org.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.diasporabrazil.org/ => https://www.diasporabrazil.org/: (51, "SSL: no alternative certificate subject name matches target host name 'www.diasporabrazil.org'") --> - + diff --git a/src/chrome/content/rules/Dice-problematic.xml b/src/chrome/content/rules/Dice-problematic.xml deleted file mode 100644 index 3235dab79b11..000000000000 --- a/src/chrome/content/rules/Dice-problematic.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Dice.com.xml b/src/chrome/content/rules/Dice.com.xml new file mode 100644 index 000000000000..d87918b34c36 --- /dev/null +++ b/src/chrome/content/rules/Dice.com.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Dice.xml b/src/chrome/content/rules/Dice.xml deleted file mode 100644 index 43efab846868..000000000000 --- a/src/chrome/content/rules/Dice.xml +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Dict.cn.xml b/src/chrome/content/rules/Dict.cn.xml new file mode 100644 index 000000000000..871464899840 --- /dev/null +++ b/src/chrome/content/rules/Dict.cn.xml @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/chrome/content/rules/Dictionary.com.xml b/src/chrome/content/rules/Dictionary.com.xml new file mode 100644 index 000000000000..b135493b1410 --- /dev/null +++ b/src/chrome/content/rules/Dictionary.com.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/DidierStevens.xml b/src/chrome/content/rules/DidierStevens.xml new file mode 100644 index 000000000000..a9899301438b --- /dev/null +++ b/src/chrome/content/rules/DidierStevens.xml @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/DieTrollDie.com.xml b/src/chrome/content/rules/DieTrollDie.com.xml deleted file mode 100644 index 75a72d376f6e..000000000000 --- a/src/chrome/content/rules/DieTrollDie.com.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Diesel.rs.xml b/src/chrome/content/rules/Diesel.rs.xml new file mode 100644 index 000000000000..482ef345b13d --- /dev/null +++ b/src/chrome/content/rules/Diesel.rs.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/DieselNet.com.xml b/src/chrome/content/rules/DieselNet.com.xml index 17ba0205364a..6a6e0e6839e7 100644 --- a/src/chrome/content/rules/DieselNet.com.xml +++ b/src/chrome/content/rules/DieselNet.com.xml @@ -4,7 +4,7 @@ - + + + + + + + + diff --git a/src/chrome/content/rules/Difference_Between.xml b/src/chrome/content/rules/Difference_Between.xml index a09c5a255cfe..5b6c7cddc81e 100644 --- a/src/chrome/content/rules/Difference_Between.xml +++ b/src/chrome/content/rules/Difference_Between.xml @@ -6,7 +6,8 @@ - + + https://stat.difi.no/: (6, 'Could not resol --> - + @@ -78,7 +78,7 @@ Fetch error: http://stat.difi.no/ => https://stat.difi.no/: (6, 'Could not resol - + @@ -99,7 +99,7 @@ Fetch error: http://stat.difi.no/ => https://stat.difi.no/: (6, 'Could not resol --> - + - + https://www.digcoin.com/: (7, 'Failed to - digcoin.com --> - + diff --git a/src/chrome/content/rules/Digg.xml b/src/chrome/content/rules/Digg.xml index 4739302d9462..bbc7607c8cab 100644 --- a/src/chrome/content/rules/Digg.xml +++ b/src/chrome/content/rules/Digg.xml @@ -1,33 +1,20 @@ - + - - + + + - - - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Digi-Key.xml b/src/chrome/content/rules/Digi-Key.xml index 4b5211d4dcfe..3e3f5f9e69c3 100644 --- a/src/chrome/content/rules/Digi-Key.xml +++ b/src/chrome/content/rules/Digi-Key.xml @@ -35,7 +35,7 @@ Fetch error: http://punchouttest.digikey.de/ => https://punchouttest.digikey.de/ - punchouttest --> - + @@ -61,7 +61,7 @@ Fetch error: http://punchouttest.digikey.de/ => https://punchouttest.digikey.de/ These paths redirect to http: - scripts/dksearch/dksus.dll - + exclusion pattern="^http://(www\.)?digikey\.(com|de)/(product-(detail|search)|scripts/dksearch)" /--> diff --git a/src/chrome/content/rules/Digi.hu.xml b/src/chrome/content/rules/Digi.hu.xml index 05076751f054..840c9ba9e961 100644 --- a/src/chrome/content/rules/Digi.hu.xml +++ b/src/chrome/content/rules/Digi.hu.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://ox.digi.hu/ => https://ox.digi.hu/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + diff --git a/src/chrome/content/rules/DigiCert.xml b/src/chrome/content/rules/DigiCert.xml index d21034cb5b4f..2e9e4ecef5b0 100644 --- a/src/chrome/content/rules/DigiCert.xml +++ b/src/chrome/content/rules/DigiCert.xml @@ -34,7 +34,7 @@ - + https://blog.qt.digia.com/: (51, "SSL: no alternative certificate subject name matches target host name 'blog.qt.digia.com'") Other Digia rulesets: - - Qt.xml - Qt.io.xml - Qt_Cloud_Services.com.xml @@ -18,17 +17,17 @@ Fetch error: http://blog.qt.digia.com/ => https://blog.qt.digia.com/: (51, "SSL: - vousikertomus2011 (ditto) --> - + - + + - + - + diff --git a/src/chrome/content/rules/Digifense.com.xml b/src/chrome/content/rules/Digifense.com.xml deleted file mode 100644 index 72d57ac1b935..000000000000 --- a/src/chrome/content/rules/Digifense.com.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Digilinux.ru.xml b/src/chrome/content/rules/Digilinux.ru.xml index 508bfbda0498..726d541ca34f 100644 --- a/src/chrome/content/rules/Digilinux.ru.xml +++ b/src/chrome/content/rules/Digilinux.ru.xml @@ -23,4 +23,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Digint.ch.xml b/src/chrome/content/rules/Digint.ch.xml new file mode 100644 index 000000000000..d8d342d43101 --- /dev/null +++ b/src/chrome/content/rules/Digint.ch.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Digiology.org.xml b/src/chrome/content/rules/Digiology.org.xml new file mode 100644 index 000000000000..adc039eae700 --- /dev/null +++ b/src/chrome/content/rules/Digiology.org.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Digital-River.xml b/src/chrome/content/rules/Digital-River.xml index 215289118a6b..b1f8d035fb9a 100644 --- a/src/chrome/content/rules/Digital-River.xml +++ b/src/chrome/content/rules/Digital-River.xml @@ -6,8 +6,6 @@ - Element_5.xml - Esellerate.net.xml - Find_My_Order.com.xml - - Fireclick.com.xml - - Marketstudio.net.xml - MyCommerce.xml - Netflame.cc.xml - Share_it.com.xml @@ -16,13 +14,12 @@ Nonfunctional hosts in *digitalriver.com: - info * + - corporate - * invalid certificate + * invalid certificate\ Partially covered hosts in *digitalriver.com: - - - corporate (pages redirect to http) - info (→ na-sj03.marketo.com) @@ -61,29 +58,14 @@ - - - - - - - - - - - - + - - + diff --git a/src/chrome/content/rules/Digital-Transactions.xml b/src/chrome/content/rules/Digital-Transactions.xml index c6f1ad24dc34..ba68959c2cfe 100644 --- a/src/chrome/content/rules/Digital-Transactions.xml +++ b/src/chrome/content/rules/Digital-Transactions.xml @@ -1,14 +1,11 @@ - + - + - - - - + diff --git a/src/chrome/content/rules/Digital-Window.xml b/src/chrome/content/rules/Digital-Window.xml index a3f9d2fa0644..96a0478eaab9 100644 --- a/src/chrome/content/rules/Digital-Window.xml +++ b/src/chrome/content/rules/Digital-Window.xml @@ -18,7 +18,7 @@ - + + + + + + + + + + + diff --git a/src/chrome/content/rules/DigitalForensicsMagazine.xml b/src/chrome/content/rules/DigitalForensicsMagazine.xml index 190402d7cd26..8837e7efebfe 100644 --- a/src/chrome/content/rules/DigitalForensicsMagazine.xml +++ b/src/chrome/content/rules/DigitalForensicsMagazine.xml @@ -19,7 +19,7 @@ - + - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/DigitalGov.gov.xml b/src/chrome/content/rules/DigitalGov.gov.xml deleted file mode 100644 index 2d7a18ba2ecb..000000000000 --- a/src/chrome/content/rules/DigitalGov.gov.xml +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/DigitalOcean.com.xml b/src/chrome/content/rules/DigitalOcean.com.xml new file mode 100644 index 000000000000..f3f86e2fdc0b --- /dev/null +++ b/src/chrome/content/rules/DigitalOcean.com.xml @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Digital_Dollhouse.com.xml b/src/chrome/content/rules/Digital_Dollhouse.com.xml index d0eb9767dcdf..224c50d2a9e8 100644 --- a/src/chrome/content/rules/Digital_Dollhouse.com.xml +++ b/src/chrome/content/rules/Digital_Dollhouse.com.xml @@ -18,7 +18,7 @@ Fetch error: http://www.digitaldollhouse.com/ => https://www.digitaldollhouse.co * Secured by us --> - + diff --git a/src/chrome/content/rules/Digital_News_Agency.com.xml b/src/chrome/content/rules/Digital_News_Agency.com.xml index 92c041191678..e89d4426861c 100644 --- a/src/chrome/content/rules/Digital_News_Agency.com.xml +++ b/src/chrome/content/rules/Digital_News_Agency.com.xml @@ -1,41 +1,12 @@ - - - - - - - + - - - - + - - - diff --git a/src/chrome/content/rules/Digital_Ocean.com.xml b/src/chrome/content/rules/Digital_Ocean.com.xml deleted file mode 100644 index b92e20450849..000000000000 --- a/src/chrome/content/rules/Digital_Ocean.com.xml +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Digital_Photography_Review.xml b/src/chrome/content/rules/Digital_Photography_Review.xml index 9d9de0467b67..ebf681767c17 100644 --- a/src/chrome/content/rules/Digital_Photography_Review.xml +++ b/src/chrome/content/rules/Digital_Photography_Review.xml @@ -41,7 +41,6 @@ - - + https://cdn.mypypeline.com/: (6, 'Cou * Times out --> - + diff --git a/src/chrome/content/rules/Digital_Trends.com.xml b/src/chrome/content/rules/Digital_Trends.com.xml deleted file mode 100644 index fa716f311db6..000000000000 --- a/src/chrome/content/rules/Digital_Trends.com.xml +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Digital_WPC.com.xml b/src/chrome/content/rules/Digital_WPC.com.xml index 03fb08e3e4b0..802147e78ee2 100644 --- a/src/chrome/content/rules/Digital_WPC.com.xml +++ b/src/chrome/content/rules/Digital_WPC.com.xml @@ -29,7 +29,7 @@ Fetch error: http://connect.digitalwpc.com/ => https://connect.digitalwpc.com/: * Secured by us --> - + diff --git a/src/chrome/content/rules/Digitalfernsehen.de.xml b/src/chrome/content/rules/Digitalfernsehen.de.xml new file mode 100644 index 000000000000..55767897a42d --- /dev/null +++ b/src/chrome/content/rules/Digitalfernsehen.de.xml @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Digitaltrends.com.xml b/src/chrome/content/rules/Digitaltrends.com.xml new file mode 100644 index 000000000000..685cff64c52a --- /dev/null +++ b/src/chrome/content/rules/Digitaltrends.com.xml @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Digitaria.xml b/src/chrome/content/rules/Digitaria.xml index 5a286918de38..bc22178ec0c5 100644 --- a/src/chrome/content/rules/Digitaria.xml +++ b/src/chrome/content/rules/Digitaria.xml @@ -13,19 +13,15 @@ Fetch error: http://redmine.digitaria.com/ => https://redmine.digitaria.com/: (7 - - - + + - - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Digitec.ch.xml b/src/chrome/content/rules/Digitec.ch.xml deleted file mode 100644 index 801989ae5517..000000000000 --- a/src/chrome/content/rules/Digitec.ch.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Digitecgalaxus.ch.xml b/src/chrome/content/rules/Digitecgalaxus.ch.xml deleted file mode 100644 index 003e40ad3893..000000000000 --- a/src/chrome/content/rules/Digitecgalaxus.ch.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Digitick.com.xml b/src/chrome/content/rules/Digitick.com.xml new file mode 100644 index 000000000000..fad8f032e439 --- /dev/null +++ b/src/chrome/content/rules/Digitick.com.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Digium.xml b/src/chrome/content/rules/Digium.xml index 805d84de8065..7c26fa01bd90 100644 --- a/src/chrome/content/rules/Digium.xml +++ b/src/chrome/content/rules/Digium.xml @@ -30,7 +30,9 @@ - + + + - - - @@ -16,19 +13,10 @@ - - + + - - - - - - diff --git a/src/chrome/content/rules/Digiweb.xml b/src/chrome/content/rules/Digiweb.xml index 401a424596a3..2f658d7d919c 100644 --- a/src/chrome/content/rules/Digiweb.xml +++ b/src/chrome/content/rules/Digiweb.xml @@ -34,7 +34,7 @@ Fetch error: http://ncm.novarait.com/ => https://ncm.novarait.com/: (7, 'Failed - (www.)whoislookup.ie (cert: novweb.novara.ie, self-signed; shows that domain's data) --> - + @@ -49,9 +49,9 @@ Fetch error: http://ncm.novarait.com/ => https://ncm.novarait.com/: (7, 'Failed - - - + + + - \ No newline at end of file + diff --git a/src/chrome/content/rules/DilbertFiles.org.xml b/src/chrome/content/rules/DilbertFiles.org.xml index e4a74bc0f587..a805c1f968b5 100644 --- a/src/chrome/content/rules/DilbertFiles.org.xml +++ b/src/chrome/content/rules/DilbertFiles.org.xml @@ -14,7 +14,7 @@ Fetch error: http://secure.dilbertfiles.com/ => https://secure.dilbertfiles.com/ - Image on secure from www --> - + @@ -22,7 +22,6 @@ Fetch error: http://secure.dilbertfiles.com/ => https://secure.dilbertfiles.com/ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Dilcdn.com.xml b/src/chrome/content/rules/Dilcdn.com.xml index cccba2003236..36a4f6051b0a 100644 --- a/src/chrome/content/rules/Dilcdn.com.xml +++ b/src/chrome/content/rules/Dilcdn.com.xml @@ -19,4 +19,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Dillinger.io.xml b/src/chrome/content/rules/Dillinger.io.xml new file mode 100644 index 000000000000..6aae15d3fb5b --- /dev/null +++ b/src/chrome/content/rules/Dillinger.io.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Dinahosting.com.xml b/src/chrome/content/rules/Dinahosting.com.xml index 6ed1cb33be4e..32d07fe05d55 100644 --- a/src/chrome/content/rules/Dinahosting.com.xml +++ b/src/chrome/content/rules/Dinahosting.com.xml @@ -24,7 +24,7 @@ --> - + https://dinahosting.pt/: (51, "SSL: n - .dinahosting.pt --> - + @@ -30,7 +30,7 @@ Fetch error: http://www.dinahosting.pt/ => https://dinahosting.pt/: (51, "SSL: n --> - + - + - + diff --git a/src/chrome/content/rules/DirectActionEverywhere.com.xml b/src/chrome/content/rules/DirectActionEverywhere.com.xml index c070b16507ba..8a84f8fa590e 100644 --- a/src/chrome/content/rules/DirectActionEverywhere.com.xml +++ b/src/chrome/content/rules/DirectActionEverywhere.com.xml @@ -2,11 +2,9 @@ Invalid certificate: directactioneverywhere.com - dxetech.org www.dxetech.org - chapters-map.dxetech.org - Refused: + Time out: discourse.directactioneverywhere.com --> @@ -15,6 +13,8 @@ + + @@ -22,7 +22,7 @@ - diff --git a/src/chrome/content/rules/DirectAdvert.ru.xml b/src/chrome/content/rules/DirectAdvert.ru.xml index 2640b872fe42..dbe10d495d40 100644 --- a/src/chrome/content/rules/DirectAdvert.ru.xml +++ b/src/chrome/content/rules/DirectAdvert.ru.xml @@ -26,7 +26,7 @@ Fetch error: http://directadvert.ru/ => https://directadvert.ru/: (51, "SSL: no ² Secured by us --> - + @@ -41,7 +41,7 @@ Fetch error: http://directadvert.ru/ => https://directadvert.ru/: (51, "SSL: no --> - + https://uk3.directline.com/: (28, 'Resolv ² → directline.metafaq.com --> - + - + + + + @@ -41,10 +44,9 @@ Fetch error: http://directline.com/ => https://uk3.directline.com/: (28, 'Resolv - + diff --git a/src/chrome/content/rules/Direct_Mail_Mac.com.xml b/src/chrome/content/rules/Direct_Mail_Mac.com.xml index 0a28770ca58f..8e7da96244db 100644 --- a/src/chrome/content/rules/Direct_Mail_Mac.com.xml +++ b/src/chrome/content/rules/Direct_Mail_Mac.com.xml @@ -27,7 +27,6 @@ - + diff --git a/src/chrome/content/rules/Directbox.xml b/src/chrome/content/rules/Directbox.xml index d2c7164d4387..d47f3ba302d6 100644 --- a/src/chrome/content/rules/Directbox.xml +++ b/src/chrome/content/rules/Directbox.xml @@ -1,24 +1,42 @@ - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Directgov-mismatches.xml b/src/chrome/content/rules/Directgov-mismatches.xml index cf6c4be5257b..465901a30d3e 100644 --- a/src/chrome/content/rules/Directgov-mismatches.xml +++ b/src/chrome/content/rules/Directgov-mismatches.xml @@ -7,7 +7,7 @@ - + diff --git a/src/chrome/content/rules/Directgov.xml b/src/chrome/content/rules/Directgov.xml index 4df6a58ee070..5d2647679d25 100644 --- a/src/chrome/content/rules/Directgov.xml +++ b/src/chrome/content/rules/Directgov.xml @@ -29,7 +29,7 @@ Fetch error: http://www.nationalcareersservice.direct.gov.uk/ => https://www.nat - nationalcareersservice.direct.gov.uk --> - + @@ -49,8 +49,8 @@ Fetch error: http://www.nationalcareersservice.direct.gov.uk/ => https://www.nat - - + + - + diff --git a/src/chrome/content/rules/Directorystore.com.xml b/src/chrome/content/rules/Directorystore.com.xml index 9981804e625b..d06a12a0cfd4 100644 --- a/src/chrome/content/rules/Directorystore.com.xml +++ b/src/chrome/content/rules/Directorystore.com.xml @@ -20,7 +20,7 @@ Fetch error: http://www.directorystore.com/ => https://www.directorystore.com/: - www.directorystore.com --> - + diff --git a/src/chrome/content/rules/Directrev.com.xml b/src/chrome/content/rules/Directrev.com.xml index 87d9200a4f22..05951eaffdab 100644 --- a/src/chrome/content/rules/Directrev.com.xml +++ b/src/chrome/content/rules/Directrev.com.xml @@ -41,7 +41,7 @@ - + - + diff --git a/src/chrome/content/rules/Dirxion.xml b/src/chrome/content/rules/Dirxion.xml index b46f11a24195..24fe7dc8dfa7 100644 --- a/src/chrome/content/rules/Dirxion.xml +++ b/src/chrome/content/rules/Dirxion.xml @@ -5,7 +5,8 @@ - + + @@ -14,7 +15,6 @@ - + diff --git a/src/chrome/content/rules/DisabledGo.com.xml b/src/chrome/content/rules/DisabledGo.com.xml index 0118425b0bba..cf26096badfa 100644 --- a/src/chrome/content/rules/DisabledGo.com.xml +++ b/src/chrome/content/rules/DisabledGo.com.xml @@ -13,7 +13,7 @@ Fetch error: http://disabledgo.com/ => https://disabledgo.com/: Cycle detected - * Secured by us --> - + diff --git a/src/chrome/content/rules/Disc-soft.com.xml b/src/chrome/content/rules/Disc-soft.com.xml index 8112c6ef12e9..1a5685577b47 100644 --- a/src/chrome/content/rules/Disc-soft.com.xml +++ b/src/chrome/content/rules/Disc-soft.com.xml @@ -3,7 +3,7 @@ - + diff --git a/src/chrome/content/rules/Disconnect.me.xml b/src/chrome/content/rules/Disconnect.me.xml index 6a9d90cdd8ca..4defe4da81ce 100644 --- a/src/chrome/content/rules/Disconnect.me.xml +++ b/src/chrome/content/rules/Disconnect.me.xml @@ -1,7 +1,4 @@ - - + + - - diff --git a/src/chrome/content/rules/DiscountTheatre.xml b/src/chrome/content/rules/DiscountTheatre.xml deleted file mode 100644 index ec21e2b8ea8a..000000000000 --- a/src/chrome/content/rules/DiscountTheatre.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Discourse.org.xml b/src/chrome/content/rules/Discourse.org.xml index 5491d2892fe2..f6b714342d52 100644 --- a/src/chrome/content/rules/Discourse.org.xml +++ b/src/chrome/content/rules/Discourse.org.xml @@ -12,9 +12,9 @@ ¹ Redirects to http, valid cert ² Refused - + Cloudflare SSL: - + - $ - www - blog diff --git a/src/chrome/content/rules/Discover-Magazine.xml b/src/chrome/content/rules/Discover-Magazine.xml deleted file mode 100644 index ca051c78c962..000000000000 --- a/src/chrome/content/rules/Discover-Magazine.xml +++ /dev/null @@ -1,53 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Discover-the-Truth.com.xml b/src/chrome/content/rules/Discover-the-Truth.com.xml new file mode 100644 index 000000000000..15506fdfbed8 --- /dev/null +++ b/src/chrome/content/rules/Discover-the-Truth.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Discover.com.xml b/src/chrome/content/rules/Discover.com.xml index 9f92e2dce6ab..1b072bde9ace 100644 --- a/src/chrome/content/rules/Discover.com.xml +++ b/src/chrome/content/rules/Discover.com.xml @@ -10,10 +10,11 @@ - + + + - + diff --git a/src/chrome/content/rules/DiscoverBSD.com.xml b/src/chrome/content/rules/DiscoverBSD.com.xml index 58713a503184..fb77775296d7 100644 --- a/src/chrome/content/rules/DiscoverBSD.com.xml +++ b/src/chrome/content/rules/DiscoverBSD.com.xml @@ -20,7 +20,7 @@ - + + + + + + diff --git a/src/chrome/content/rules/Discover_Card.com.xml b/src/chrome/content/rules/Discover_Card.com.xml index 3f6793406600..016ff69ae404 100644 --- a/src/chrome/content/rules/Discover_Card.com.xml +++ b/src/chrome/content/rules/Discover_Card.com.xml @@ -5,10 +5,14 @@ - + + + + + + - + diff --git a/src/chrome/content/rules/Discover_Merchants.com.xml b/src/chrome/content/rules/Discover_Merchants.com.xml index f5c871c2a115..a85261c16bc0 100644 --- a/src/chrome/content/rules/Discover_Merchants.com.xml +++ b/src/chrome/content/rules/Discover_Merchants.com.xml @@ -7,7 +7,7 @@ Fetch error: http://www.discovermerchants.com/ => https://www.discovermerchants. For other Discover coverage, see Discover.com.xml --> - + diff --git a/src/chrome/content/rules/Discover_Meteor.com.xml b/src/chrome/content/rules/Discover_Meteor.com.xml index 9ea2c54aa58e..e079efedf142 100644 --- a/src/chrome/content/rules/Discover_Meteor.com.xml +++ b/src/chrome/content/rules/Discover_Meteor.com.xml @@ -29,7 +29,7 @@ --> - + - + + + - + diff --git a/src/chrome/content/rules/Discover_Signage.com.xml b/src/chrome/content/rules/Discover_Signage.com.xml index 4f1859d39e16..bdd35dcbaf3e 100644 --- a/src/chrome/content/rules/Discover_Signage.com.xml +++ b/src/chrome/content/rules/Discover_Signage.com.xml @@ -7,7 +7,7 @@ Fetch error: http://www.discoversignage.com/ => https://www.discoversignage.com/ For other Discover coverage, see Discover.com.xml --> - + diff --git a/src/chrome/content/rules/Discovery-Communications.xml b/src/chrome/content/rules/Discovery-Communications.xml index 2ff132e8779e..916a00a5f8b7 100644 --- a/src/chrome/content/rules/Discovery-Communications.xml +++ b/src/chrome/content/rules/Discovery-Communications.xml @@ -85,7 +85,7 @@ Fetch error: http://store.discovery.com/ => https://securestore.discovery.com/: ¹ Rule not enabled by default <= mismatched --> - + diff --git a/src/chrome/content/rules/Discovery.org.xml b/src/chrome/content/rules/Discovery.org.xml index f36b2d6ff76c..a11f49cd9de8 100644 --- a/src/chrome/content/rules/Discovery.org.xml +++ b/src/chrome/content/rules/Discovery.org.xml @@ -10,7 +10,7 @@ Fetch error: http://discovery.org/ => https://discovery.org/: Too many redirects * Secured by us --> - + diff --git a/src/chrome/content/rules/Discusslr.com.xml b/src/chrome/content/rules/Discusslr.com.xml deleted file mode 100644 index f790747ddbb2..000000000000 --- a/src/chrome/content/rules/Discusslr.com.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Disk42.com.xml b/src/chrome/content/rules/Disk42.com.xml deleted file mode 100644 index a5561ecbd4c8..000000000000 --- a/src/chrome/content/rules/Disk42.com.xml +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/DiskCryptor.net.xml b/src/chrome/content/rules/DiskCryptor.net.xml deleted file mode 100644 index 3eb3380d85d5..000000000000 --- a/src/chrome/content/rules/DiskCryptor.net.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Diskordia.xml b/src/chrome/content/rules/Diskordia.xml new file mode 100644 index 000000000000..7f6bb1196700 --- /dev/null +++ b/src/chrome/content/rules/Diskordia.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Diskusjon.no.xml b/src/chrome/content/rules/Diskusjon.no.xml new file mode 100644 index 000000000000..0cd4313020f7 --- /dev/null +++ b/src/chrome/content/rules/Diskusjon.no.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/Diskusjon.xml b/src/chrome/content/rules/Diskusjon.xml deleted file mode 100644 index b643d391219b..000000000000 --- a/src/chrome/content/rules/Diskusjon.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Disney.co.jp.xml b/src/chrome/content/rules/Disney.co.jp.xml index fb84b370d66e..8c05b76a8b2b 100644 --- a/src/chrome/content/rules/Disney.co.jp.xml +++ b/src/chrome/content/rules/Disney.co.jp.xml @@ -1,23 +1,56 @@ - - - + + + + + + + + + + + + + + + + + + + + + + + + + + - - \ No newline at end of file + diff --git a/src/chrome/content/rules/Disney_International.com.xml b/src/chrome/content/rules/Disney_International.com.xml index c15980596a3a..09f44ce5fca3 100644 --- a/src/chrome/content/rules/Disney_International.com.xml +++ b/src/chrome/content/rules/Disney_International.com.xml @@ -1,7 +1,6 @@ - + - + diff --git a/src/chrome/content/rules/Dispenser.tf.xml b/src/chrome/content/rules/Dispenser.tf.xml index 0155f74b5b0a..04a4765fc592 100644 --- a/src/chrome/content/rules/Dispenser.tf.xml +++ b/src/chrome/content/rules/Dispenser.tf.xml @@ -1,5 +1,5 @@ diff --git a/src/chrome/content/rules/Displaymarketplace.com.xml b/src/chrome/content/rules/Displaymarketplace.com.xml deleted file mode 100644 index 0c6246161258..000000000000 --- a/src/chrome/content/rules/Displaymarketplace.com.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Disqus.xml b/src/chrome/content/rules/Disqus.xml index a0f479740671..e436d1506e30 100644 --- a/src/chrome/content/rules/Disqus.xml +++ b/src/chrome/content/rules/Disqus.xml @@ -1,39 +1,43 @@ - - + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + - + + + + - - - + + + - + diff --git a/src/chrome/content/rules/Disruption_Lab.org.xml b/src/chrome/content/rules/Disruption_Lab.org.xml index 850226294626..71a1cf57b7aa 100644 --- a/src/chrome/content/rules/Disruption_Lab.org.xml +++ b/src/chrome/content/rules/Disruption_Lab.org.xml @@ -23,7 +23,7 @@ - + - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Distil_Networks.com.xml b/src/chrome/content/rules/Distil_Networks.com.xml index 0a3210b157ff..a8d9b7ce7455 100644 --- a/src/chrome/content/rules/Distil_Networks.com.xml +++ b/src/chrome/content/rules/Distil_Networks.com.xml @@ -5,13 +5,12 @@ Fetch error: http://support.distilnetworks.com/ => https://support.distilnetwork Other Distil Networks rulesets: - - Distil.xml (www.)?distilnetworks.com: Redirects to http --> - + diff --git a/src/chrome/content/rules/Distraction.xml b/src/chrome/content/rules/Distraction.xml deleted file mode 100644 index 3c8d21ba43c0..000000000000 --- a/src/chrome/content/rules/Distraction.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Distributed.net.xml b/src/chrome/content/rules/Distributed.net.xml index e7a4df85b746..52ecf1291eec 100644 --- a/src/chrome/content/rules/Distributed.net.xml +++ b/src/chrome/content/rules/Distributed.net.xml @@ -11,11 +11,11 @@ - + diff --git a/src/chrome/content/rules/Dittdistrikt.xml b/src/chrome/content/rules/Dittdistrikt.xml index cd0c51f693e0..852aca9e970d 100644 --- a/src/chrome/content/rules/Dittdistrikt.xml +++ b/src/chrome/content/rules/Dittdistrikt.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://dittdistrikt.no/ => https://www.dittdistrikt.no/: (60, 'SSL certificate problem: unable to get local issuer certificate') Fetch error: http://www.dittdistrikt.no/ => https://www.dittdistrikt.no/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + diff --git a/src/chrome/content/rules/Divide.xml b/src/chrome/content/rules/Divide.xml index d0ca5dfec421..346ca626ba5d 100644 --- a/src/chrome/content/rules/Divide.xml +++ b/src/chrome/content/rules/Divide.xml @@ -21,7 +21,11 @@ --> - + + + + + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Divipay.com.xml b/src/chrome/content/rules/Divipay.com.xml new file mode 100644 index 000000000000..3ee2665afb87 --- /dev/null +++ b/src/chrome/content/rules/Divipay.com.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Divshot.xml b/src/chrome/content/rules/Divshot.xml index 868469e0fcd9..6498e4ecfb65 100644 --- a/src/chrome/content/rules/Divshot.xml +++ b/src/chrome/content/rules/Divshot.xml @@ -9,16 +9,14 @@ - + + + - - - + diff --git a/src/chrome/content/rules/Diwi.org.xml b/src/chrome/content/rules/Diwi.org.xml index 42d12d2cb319..ce56dac600da 100644 --- a/src/chrome/content/rules/Diwi.org.xml +++ b/src/chrome/content/rules/Diwi.org.xml @@ -19,13 +19,16 @@ --> - + + + + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Dixcart.xml b/src/chrome/content/rules/Dixcart.xml index 74c6fbb7a006..df5034289ef5 100644 --- a/src/chrome/content/rules/Dixcart.xml +++ b/src/chrome/content/rules/Dixcart.xml @@ -6,34 +6,13 @@ ʳ Refused - - NB: Server sends no certificate chain, see https://whatsmychaincert.com - - - Mixed content: - - - Images, on: - - - ^ from $self ˢ - - ^ from development.dixcart.com ʳ - - - Bug on ^ from stats.dixcart.com ʳ - - ʳ Unsecurable <= refused - ˢ Secured by us - --> - + - - - - - + - + diff --git a/src/chrome/content/rules/DjurRattsAlliansen.se.xml b/src/chrome/content/rules/DjurRattsAlliansen.se.xml index 9f07b6bcd798..5acd46223783 100644 --- a/src/chrome/content/rules/DjurRattsAlliansen.se.xml +++ b/src/chrome/content/rules/DjurRattsAlliansen.se.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.djurrattsalliansen.se/ => https://djurrattsalliansen.se/: (60, 'SSL certificate problem: certificate has expired') Fetch error: http://djurrattsalliansen.se/ => https://djurrattsalliansen.se/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/Dlisted.com.xml b/src/chrome/content/rules/Dlisted.com.xml index 161765999e53..38f12d94b739 100644 --- a/src/chrome/content/rules/Dlisted.com.xml +++ b/src/chrome/content/rules/Dlisted.com.xml @@ -29,7 +29,8 @@ - + + + + + + + + + diff --git a/src/chrome/content/rules/Dmg_media.xml b/src/chrome/content/rules/Dmg_media.xml index 5165877ccb44..4b4fb37fe140 100644 --- a/src/chrome/content/rules/Dmg_media.xml +++ b/src/chrome/content/rules/Dmg_media.xml @@ -17,7 +17,7 @@ --> - + - + diff --git a/src/chrome/content/rules/Dmri-library.com.xml b/src/chrome/content/rules/Dmri-library.com.xml index 0a0ba48091f5..084668570acc 100644 --- a/src/chrome/content/rules/Dmri-library.com.xml +++ b/src/chrome/content/rules/Dmri-library.com.xml @@ -14,4 +14,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Dmtry.com.xml b/src/chrome/content/rules/Dmtry.com.xml index 2284b44dbbff..c7a55de7999f 100644 --- a/src/chrome/content/rules/Dmtry.com.xml +++ b/src/chrome/content/rules/Dmtry.com.xml @@ -19,7 +19,7 @@ --> - + https://www.dbnnor.no/: (6, 'Could not resolve host: www.dbnnor.no') - - ^dbnnor.no does not exist. - ---> - - - - - - - - diff --git a/src/chrome/content/rules/Dnsexit.xml b/src/chrome/content/rules/Dnsexit.xml index 8087cb6322b6..4b56b4ca87c6 100644 --- a/src/chrome/content/rules/Dnsexit.xml +++ b/src/chrome/content/rules/Dnsexit.xml @@ -1,8 +1,8 @@ - - - + + + diff --git a/src/chrome/content/rules/Dntly.com.xml b/src/chrome/content/rules/Dntly.com.xml index 07f3c90934d6..fa5bbe6dbdeb 100644 --- a/src/chrome/content/rules/Dntly.com.xml +++ b/src/chrome/content/rules/Dntly.com.xml @@ -15,7 +15,7 @@ Fetch error: http://dntly.com/ => https://dntly.com/: (28, 'Connection timed out * Secured by us --> - + diff --git a/src/chrome/content/rules/Do-it.org.xml b/src/chrome/content/rules/Do-it.org.xml index d6cd80213259..da71467d8a26 100644 --- a/src/chrome/content/rules/Do-it.org.xml +++ b/src/chrome/content/rules/Do-it.org.xml @@ -13,7 +13,7 @@ - + diff --git a/src/chrome/content/rules/DoNotCallRegister.xml b/src/chrome/content/rules/DoNotCallRegister.xml index bea2247eeeea..74e3cda68571 100644 --- a/src/chrome/content/rules/DoNotCallRegister.xml +++ b/src/chrome/content/rules/DoNotCallRegister.xml @@ -1,7 +1,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Do_Not_Track-doc.com.xml b/src/chrome/content/rules/Do_Not_Track-doc.com.xml deleted file mode 100644 index 20adc0039689..000000000000 --- a/src/chrome/content/rules/Do_Not_Track-doc.com.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Doarama.com.xml b/src/chrome/content/rules/Doarama.com.xml new file mode 100644 index 000000000000..745c092779f5 --- /dev/null +++ b/src/chrome/content/rules/Doarama.com.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/DocSend.com.xml b/src/chrome/content/rules/DocSend.com.xml deleted file mode 100644 index b9281b83fbc5..000000000000 --- a/src/chrome/content/rules/DocSend.com.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Docelu.pl-problematic.xml b/src/chrome/content/rules/Docelu.pl-problematic.xml index bdf5952d1273..8400fd756da2 100644 --- a/src/chrome/content/rules/Docelu.pl-problematic.xml +++ b/src/chrome/content/rules/Docelu.pl-problematic.xml @@ -7,13 +7,14 @@ --> - + + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Docelu.pl.xml b/src/chrome/content/rules/Docelu.pl.xml index 6cf5c282b123..1de9630069cd 100644 --- a/src/chrome/content/rules/Docelu.pl.xml +++ b/src/chrome/content/rules/Docelu.pl.xml @@ -49,7 +49,7 @@ Fetch error: http://www.docelu.pl/ => https://docelu.pl/: (60, 'SSL certificate - ^ * - i.wp.pl * - b.wpimg.com * - + - Images, on: @@ -90,7 +90,7 @@ Fetch error: http://www.docelu.pl/ => https://docelu.pl/: (60, 'SSL certificate mixedcontent due to css from ^docelu.pl, i.wp.pl, & b.wpimg.com. --> - + @@ -100,10 +100,10 @@ Fetch error: http://www.docelu.pl/ => https://docelu.pl/: (60, 'SSL certificate - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Docler.xml b/src/chrome/content/rules/Docler.xml deleted file mode 100644 index 724c5fdb0601..000000000000 --- a/src/chrome/content/rules/Docler.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/chrome/content/rules/Docler_Holding.com.xml b/src/chrome/content/rules/Docler_Holding.com.xml new file mode 100644 index 000000000000..ac92757733a6 --- /dev/null +++ b/src/chrome/content/rules/Docler_Holding.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Docs.Zone.xml b/src/chrome/content/rules/Docs.Zone.xml index 8f6e576d3532..704a16f1dfa2 100644 --- a/src/chrome/content/rules/Docs.Zone.xml +++ b/src/chrome/content/rules/Docs.Zone.xml @@ -16,7 +16,7 @@ --> - + - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Docstorepro.com.xml b/src/chrome/content/rules/Docstorepro.com.xml index baba7d171632..bcf8e4a43b52 100644 --- a/src/chrome/content/rules/Docstorepro.com.xml +++ b/src/chrome/content/rules/Docstorepro.com.xml @@ -6,7 +6,7 @@ Fetch error: http://docstorepro.com/ => https://docstorepro.com/: (60, 'SSL cert For other NiKec Solutions coverage, see NiKec_Solutions.xml. --> - + @@ -17,4 +17,4 @@ Fetch error: http://docstorepro.com/ => https://docstorepro.com/: (60, 'SSL cert - \ No newline at end of file + diff --git a/src/chrome/content/rules/Doctor_Trusted.org.xml b/src/chrome/content/rules/Doctor_Trusted.org.xml index 2df1fca8639e..f37d3a60f7f9 100644 --- a/src/chrome/content/rules/Doctor_Trusted.org.xml +++ b/src/chrome/content/rules/Doctor_Trusted.org.xml @@ -12,7 +12,7 @@ Fetch error: http://www.doctortrusted.org/ => https://doctortrusted.org/: (28, ' - doctortrusted.org --> - + diff --git a/src/chrome/content/rules/DoctorsWithoutBorders.ca.xml b/src/chrome/content/rules/DoctorsWithoutBorders.ca.xml new file mode 100644 index 000000000000..ff75d85580ad --- /dev/null +++ b/src/chrome/content/rules/DoctorsWithoutBorders.ca.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Document.no.xml b/src/chrome/content/rules/Document.no.xml index 70d2ec161a62..f405b621cbc4 100644 --- a/src/chrome/content/rules/Document.no.xml +++ b/src/chrome/content/rules/Document.no.xml @@ -1,7 +1,8 @@ - - + + - - + + + diff --git a/src/chrome/content/rules/DocumentCloud.xml b/src/chrome/content/rules/DocumentCloud.xml index c46124025218..118e947f3689 100644 --- a/src/chrome/content/rules/DocumentCloud.xml +++ b/src/chrome/content/rules/DocumentCloud.xml @@ -1,22 +1,24 @@ - - + - - - - - - - + + + + - + + diff --git a/src/chrome/content/rules/DocumentFoundation.org.xml b/src/chrome/content/rules/DocumentFoundation.org.xml new file mode 100644 index 000000000000..e6cde170cd35 --- /dev/null +++ b/src/chrome/content/rules/DocumentFoundation.org.xml @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Document_Freedom_Day.xml b/src/chrome/content/rules/Document_Freedom_Day.xml index a2979f9a62f3..4d17422086c6 100644 --- a/src/chrome/content/rules/Document_Freedom_Day.xml +++ b/src/chrome/content/rules/Document_Freedom_Day.xml @@ -12,7 +12,7 @@ Fetch error: http://www.documentfreedom.net/ => https://www.documentfreedom.net/ For other FSFE coverage, see FSFE.org.xml. --> - + @@ -20,7 +20,6 @@ Fetch error: http://www.documentfreedom.net/ => https://www.documentfreedom.net/ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Docusign.com.xml b/src/chrome/content/rules/Docusign.com.xml deleted file mode 100644 index d4e69385e24b..000000000000 --- a/src/chrome/content/rules/Docusign.com.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/Dodo.com.au.xml b/src/chrome/content/rules/Dodo.com.au.xml new file mode 100644 index 000000000000..e8c51b93911f --- /dev/null +++ b/src/chrome/content/rules/Dodo.com.au.xml @@ -0,0 +1,84 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Dodo.com.xml b/src/chrome/content/rules/Dodo.com.xml new file mode 100644 index 000000000000..8d20165a7ea5 --- /dev/null +++ b/src/chrome/content/rules/Dodo.com.xml @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Dods_People.com.xml b/src/chrome/content/rules/Dods_People.com.xml index f92d1e59aa66..393d5f68affa 100644 --- a/src/chrome/content/rules/Dods_People.com.xml +++ b/src/chrome/content/rules/Dods_People.com.xml @@ -12,7 +12,8 @@ - + + https://www.doesnotwork.eu/: (7, '') For other Nebezi.cz coverage, see Nebezi.cz.xml. --> - + diff --git a/src/chrome/content/rules/Dof.dk.xml b/src/chrome/content/rules/Dof.dk.xml index b480e3fc86e5..b0b61ed0d983 100644 --- a/src/chrome/content/rules/Dof.dk.xml +++ b/src/chrome/content/rules/Dof.dk.xml @@ -12,12 +12,12 @@ Fetch error: http://www.dof.dk/ => https://www.dof.dk/: (60, 'SSL certificate pr ¹: Refused ²: Bad cert (CN: *.your-server.de) --> - + - + diff --git a/src/chrome/content/rules/Dogpile.com.xml b/src/chrome/content/rules/Dogpile.com.xml new file mode 100644 index 000000000000..c5fe7f75133b --- /dev/null +++ b/src/chrome/content/rules/Dogpile.com.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/DogsbodyTechnologyLtd.xml b/src/chrome/content/rules/DogsbodyTechnologyLtd.xml new file mode 100644 index 000000000000..96cec46e3351 --- /dev/null +++ b/src/chrome/content/rules/DogsbodyTechnologyLtd.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Dogsbodytechnology.com.xml b/src/chrome/content/rules/Dogsbodytechnology.com.xml deleted file mode 100644 index 2aa1a1e296ba..000000000000 --- a/src/chrome/content/rules/Dogsbodytechnology.com.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Dogz_Online.xml b/src/chrome/content/rules/Dogz_Online.xml index ed5ad7e5fd08..1ea7032f506a 100644 --- a/src/chrome/content/rules/Dogz_Online.xml +++ b/src/chrome/content/rules/Dogz_Online.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Doi2bib.org.xml b/src/chrome/content/rules/Doi2bib.org.xml new file mode 100644 index 000000000000..b71feb7e1083 --- /dev/null +++ b/src/chrome/content/rules/Doi2bib.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Doitgarden.ch.xml b/src/chrome/content/rules/Doitgarden.ch.xml deleted file mode 100644 index d78beddc8e0c..000000000000 --- a/src/chrome/content/rules/Doitgarden.ch.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - diff --git a/src/chrome/content/rules/DolarToday.com.xml b/src/chrome/content/rules/DolarToday.com.xml index ffe4c110e774..429b170abe4a 100644 --- a/src/chrome/content/rules/DolarToday.com.xml +++ b/src/chrome/content/rules/DolarToday.com.xml @@ -21,7 +21,7 @@ --> - + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Dolimg.com.xml b/src/chrome/content/rules/Dolimg.com.xml index 6368e31bddb1..0180ef26abdd 100644 --- a/src/chrome/content/rules/Dolimg.com.xml +++ b/src/chrome/content/rules/Dolimg.com.xml @@ -44,4 +44,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Dollar.co.uk.xml b/src/chrome/content/rules/Dollar.co.uk.xml new file mode 100644 index 000000000000..b4f9c3f77f37 --- /dev/null +++ b/src/chrome/content/rules/Dollar.co.uk.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Dollar.com.xml b/src/chrome/content/rules/Dollar.com.xml new file mode 100644 index 000000000000..c9ab5d5eb667 --- /dev/null +++ b/src/chrome/content/rules/Dollar.com.xml @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Dollar.de.xml b/src/chrome/content/rules/Dollar.de.xml new file mode 100644 index 000000000000..c85322f86e79 --- /dev/null +++ b/src/chrome/content/rules/Dollar.de.xml @@ -0,0 +1,12 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/DollarCanada.ca.xml b/src/chrome/content/rules/DollarCanada.ca.xml new file mode 100644 index 000000000000..ae1195fcbc9c --- /dev/null +++ b/src/chrome/content/rules/DollarCanada.ca.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Dollar_a_Day.co.xml b/src/chrome/content/rules/Dollar_a_Day.co.xml index 0d80e862ccc1..82035f352b3b 100644 --- a/src/chrome/content/rules/Dollar_a_Day.co.xml +++ b/src/chrome/content/rules/Dollar_a_Day.co.xml @@ -5,7 +5,7 @@ Fetch error: http://dollaraday.co/ => https://dollaraday.co/: (60, 'SSL certific Fetch error: http://www.dollaraday.co/ => https://www.dollaraday.co/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/Dolphin-emu.org.xml b/src/chrome/content/rules/Dolphin-emu.org.xml index e900c71aa74e..0081ecc72ae5 100644 --- a/src/chrome/content/rules/Dolphin-emu.org.xml +++ b/src/chrome/content/rules/Dolphin-emu.org.xml @@ -16,13 +16,15 @@ - + + + + - + diff --git a/src/chrome/content/rules/Domain.com.xml b/src/chrome/content/rules/Domain.com.xml index 5f91f5c08d83..8c8a4137b58c 100644 --- a/src/chrome/content/rules/Domain.com.xml +++ b/src/chrome/content/rules/Domain.com.xml @@ -14,7 +14,9 @@ - + + + @@ -22,14 +24,13 @@ + --> - + diff --git a/src/chrome/content/rules/Domain.de.xml b/src/chrome/content/rules/Domain.de.xml deleted file mode 100644 index 105777632fb8..000000000000 --- a/src/chrome/content/rules/Domain.de.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/DomainCAMP.xml b/src/chrome/content/rules/DomainCAMP.xml index b9f8facc872f..877e839a46bd 100644 --- a/src/chrome/content/rules/DomainCAMP.xml +++ b/src/chrome/content/rules/DomainCAMP.xml @@ -11,7 +11,7 @@ - + + - + - - + + @@ -20,7 +32,7 @@ --> - + https://djtg44apx8dzy.cloudfront.net/: (6, 'Could not resolve host: djtg44apx8dzy.cloudfront.net') - - CDN buckets: - - - djtg44apx8dzy.cloudfront.net - - - static - - - Nonfunctional subdomains: - - - (www.) (refused) - ---> - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/DomainSponsor.xml b/src/chrome/content/rules/DomainSponsor.xml deleted file mode 100644 index df617b822ed4..000000000000 --- a/src/chrome/content/rules/DomainSponsor.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/DomainTools.com-falsemixed.xml b/src/chrome/content/rules/DomainTools.com-falsemixed.xml deleted file mode 100644 index 984ba90a624c..000000000000 --- a/src/chrome/content/rules/DomainTools.com-falsemixed.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/DomainTools.xml b/src/chrome/content/rules/DomainTools.xml index 156a0431c125..7df2c006d46b 100644 --- a/src/chrome/content/rules/DomainTools.xml +++ b/src/chrome/content/rules/DomainTools.xml @@ -31,7 +31,7 @@ - whois - www - yahoo - + - dt-static.com - assets - images @@ -60,11 +60,11 @@ - + - + diff --git a/src/chrome/content/rules/DomainWho.is.xml b/src/chrome/content/rules/DomainWho.is.xml index 33b8a86642b5..00ac18e25235 100644 --- a/src/chrome/content/rules/DomainWho.is.xml +++ b/src/chrome/content/rules/DomainWho.is.xml @@ -7,7 +7,7 @@ Fetch error: http://styles.domainwho.is/ => https://styles.domainwho.is/: (6, 'C Fetch error: http://www.domainwho.is/ => https://www.domainwho.is/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/Domainbox.com.xml b/src/chrome/content/rules/Domainbox.com.xml deleted file mode 100644 index 4ca7c930f74b..000000000000 --- a/src/chrome/content/rules/Domainbox.com.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Domaining.com.xml b/src/chrome/content/rules/Domaining.com.xml index c71ef68cdd26..e3ca8fe973d1 100644 --- a/src/chrome/content/rules/Domaining.com.xml +++ b/src/chrome/content/rules/Domaining.com.xml @@ -26,7 +26,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Domdex.com.xml b/src/chrome/content/rules/Domdex.com.xml index cec3b812137b..3108b48ccb1e 100644 --- a/src/chrome/content/rules/Domdex.com.xml +++ b/src/chrome/content/rules/Domdex.com.xml @@ -1,7 +1,4 @@ - - + - + + @@ -33,7 +31,7 @@ Fetch error: http://f.domdex.com/ => https://f.domdex.com/: (6, 'Could not resol --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Domoticz.com.xml b/src/chrome/content/rules/Domoticz.com.xml index 8feeddef1841..b55a210b8342 100644 --- a/src/chrome/content/rules/Domoticz.com.xml +++ b/src/chrome/content/rules/Domoticz.com.xml @@ -20,7 +20,7 @@ --> - + - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Doncaster.gov.uk.xml b/src/chrome/content/rules/Doncaster.gov.uk.xml index ad152f48f36f..e869166ce740 100644 --- a/src/chrome/content/rules/Doncaster.gov.uk.xml +++ b/src/chrome/content/rules/Doncaster.gov.uk.xml @@ -40,7 +40,7 @@ Fetch error: http://doncaster.gov.uk/Eforms/BusGenEform/Boot/803 => https://donc - www.doncaster.gov.uk --> - + @@ -89,7 +89,7 @@ Fetch error: http://doncaster.gov.uk/Eforms/BusGenEform/Boot/803 => https://donc - + - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Doorbell.io.xml b/src/chrome/content/rules/Doorbell.io.xml index abe7a607d594..760db42de7e0 100644 --- a/src/chrome/content/rules/Doorbell.io.xml +++ b/src/chrome/content/rules/Doorbell.io.xml @@ -2,13 +2,13 @@ Mismatch: blog. (Based on Tumblr) status. - + --> - + - + diff --git a/src/chrome/content/rules/Doria.fi.xml b/src/chrome/content/rules/Doria.fi.xml new file mode 100644 index 000000000000..dbc01b95782a --- /dev/null +++ b/src/chrome/content/rules/Doria.fi.xml @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Dosowisko.net.xml b/src/chrome/content/rules/Dosowisko.net.xml index 5b73b898160a..a81d569c02aa 100644 --- a/src/chrome/content/rules/Dosowisko.net.xml +++ b/src/chrome/content/rules/Dosowisko.net.xml @@ -18,7 +18,7 @@ - + - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Dot5Hosting.xml b/src/chrome/content/rules/Dot5Hosting.xml index 6130eac38410..d5e7ebe4f159 100644 --- a/src/chrome/content/rules/Dot5Hosting.xml +++ b/src/chrome/content/rules/Dot5Hosting.xml @@ -1,13 +1,14 @@ - + + + - + diff --git a/src/chrome/content/rules/DotBit.xml b/src/chrome/content/rules/DotBit.xml index d428d4682fb2..866b853749c4 100644 --- a/src/chrome/content/rules/DotBit.xml +++ b/src/chrome/content/rules/DotBit.xml @@ -39,7 +39,7 @@ - + - - + - + @@ -26,7 +26,7 @@ Fetch error: http://dotcloud.com/ => https://dotcloud.com/: (7, 'Failed to conne - + - + + + @@ -20,13 +22,8 @@ - - - + diff --git a/src/chrome/content/rules/Dota2lounge.com.xml b/src/chrome/content/rules/Dota2lounge.com.xml index 3680c5b1954e..856fb7abc90b 100644 --- a/src/chrome/content/rules/Dota2lounge.com.xml +++ b/src/chrome/content/rules/Dota2lounge.com.xml @@ -1,15 +1,12 @@ - - - - - diff --git a/src/chrome/content/rules/Dota_2.com.xml b/src/chrome/content/rules/Dota_2.com.xml index bbd0288a7754..1c5797ae66fb 100644 --- a/src/chrome/content/rules/Dota_2.com.xml +++ b/src/chrome/content/rules/Dota_2.com.xml @@ -69,7 +69,7 @@ - + diff --git a/src/chrome/content/rules/Dotcomsecurity.de.xml b/src/chrome/content/rules/Dotcomsecurity.de.xml index bb6f45bb9b2e..bc5a1c2f0b5e 100644 --- a/src/chrome/content/rules/Dotcomsecurity.de.xml +++ b/src/chrome/content/rules/Dotcomsecurity.de.xml @@ -5,7 +5,7 @@ Fetch error: http://dotcomsecurity.de/ => https://dotcomsecurity.de/: (60, 'SSL Fetch error: http://www.dotcomsecurity.de/ => https://www.dotcomsecurity.de/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/Dotwhat.net.xml b/src/chrome/content/rules/Dotwhat.net.xml new file mode 100644 index 000000000000..7bd4f07ea5a3 --- /dev/null +++ b/src/chrome/content/rules/Dotwhat.net.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Douban.com.xml b/src/chrome/content/rules/Douban.com.xml index 25e0b1d33ebc..96d0008b58c9 100644 --- a/src/chrome/content/rules/Douban.com.xml +++ b/src/chrome/content/rules/Douban.com.xml @@ -1,29 +1,27 @@ + - - - - @@ -31,14 +29,9 @@ - - - - + - + diff --git a/src/chrome/content/rules/DoubleClick_by_Google.com.xml b/src/chrome/content/rules/DoubleClick_by_Google.com.xml deleted file mode 100644 index ac0edf8f6de6..000000000000 --- a/src/chrome/content/rules/DoubleClick_by_Google.com.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Double_Fine.xml b/src/chrome/content/rules/Double_Fine.xml index ab0c892d35f3..1294aaf7c812 100644 --- a/src/chrome/content/rules/Double_Fine.xml +++ b/src/chrome/content/rules/Double_Fine.xml @@ -21,7 +21,7 @@ - + - + - + - + - + @@ -83,17 +71,8 @@ --> - - - - + - - - - - diff --git a/src/chrome/content/rules/Doutula.com.xml b/src/chrome/content/rules/Doutula.com.xml new file mode 100644 index 000000000000..2b1dce92ed47 --- /dev/null +++ b/src/chrome/content/rules/Doutula.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Douyu.xml b/src/chrome/content/rules/Douyu.xml index c96504440389..b65c40950375 100644 --- a/src/chrome/content/rules/Douyu.xml +++ b/src/chrome/content/rules/Douyu.xml @@ -22,7 +22,7 @@ - + diff --git a/src/chrome/content/rules/Dover.gov.uk.xml b/src/chrome/content/rules/Dover.gov.uk.xml index 7cb1bfe1969b..e2ad133f92fd 100644 --- a/src/chrome/content/rules/Dover.gov.uk.xml +++ b/src/chrome/content/rules/Dover.gov.uk.xml @@ -53,8 +53,8 @@ - - + + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Dovetail_Services.xml b/src/chrome/content/rules/Dovetail_Services.xml index da5939a839b7..c7ecd362d318 100644 --- a/src/chrome/content/rules/Dovetail_Services.xml +++ b/src/chrome/content/rules/Dovetail_Services.xml @@ -6,13 +6,13 @@ Fetch error: http://subscribeonline.co.uk/ => https://subscribeonline.co.uk/: (3 For problematic rules, see Dovetail_Services-problematic.xml. --> - + - + + + + + + + + + + + diff --git a/src/chrome/content/rules/DownThemAll.net-falsemixed.xml b/src/chrome/content/rules/DownThemAll.net-falsemixed.xml deleted file mode 100644 index 6643870442ce..000000000000 --- a/src/chrome/content/rules/DownThemAll.net-falsemixed.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/DownThemAll.net.xml b/src/chrome/content/rules/DownThemAll.net.xml new file mode 100644 index 000000000000..39cfffea8b2a --- /dev/null +++ b/src/chrome/content/rules/DownThemAll.net.xml @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/DownThemAll.xml b/src/chrome/content/rules/DownThemAll.xml deleted file mode 100644 index 82c2471a995c..000000000000 --- a/src/chrome/content/rules/DownThemAll.xml +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Down_for_Everyone.com-falsemixed.xml b/src/chrome/content/rules/Down_for_Everyone.com-falsemixed.xml deleted file mode 100644 index f41d4dd3cf38..000000000000 --- a/src/chrome/content/rules/Down_for_Everyone.com-falsemixed.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Down_for_Everyone.com.xml b/src/chrome/content/rules/Down_for_Everyone.com.xml deleted file mode 100644 index 60f7e62614e7..000000000000 --- a/src/chrome/content/rules/Down_for_Everyone.com.xml +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Download-Islamic-Religion-PDF-Ebooks.com.xml b/src/chrome/content/rules/Download-Islamic-Religion-PDF-Ebooks.com.xml new file mode 100644 index 000000000000..987a56664ef7 --- /dev/null +++ b/src/chrome/content/rules/Download-Islamic-Religion-PDF-Ebooks.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/DownloadHelper.net.xml b/src/chrome/content/rules/DownloadHelper.net.xml index efb7086a0abc..08d9055d4866 100644 --- a/src/chrome/content/rules/DownloadHelper.net.xml +++ b/src/chrome/content/rules/DownloadHelper.net.xml @@ -4,7 +4,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Downloadbox.xml b/src/chrome/content/rules/Downloadbox.xml index ea058b64a4ef..b3da50cf9aeb 100644 --- a/src/chrome/content/rules/Downloadbox.xml +++ b/src/chrome/content/rules/Downloadbox.xml @@ -5,7 +5,7 @@ - + diff --git a/src/chrome/content/rules/DownstreamToday.com.xml b/src/chrome/content/rules/DownstreamToday.com.xml index f9c756d10038..b976ff2a6945 100644 --- a/src/chrome/content/rules/DownstreamToday.com.xml +++ b/src/chrome/content/rules/DownstreamToday.com.xml @@ -7,7 +7,7 @@ Fetch error: http://www.downstreamtoday.com/ => https://www.downstreamtoday.com/ For other Bishop Interactive coverage, see Bishop_Interactive.xml. --> - + @@ -18,4 +18,4 @@ Fetch error: http://www.downstreamtoday.com/ => https://www.downstreamtoday.com/ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Downtown_Host.xml b/src/chrome/content/rules/Downtown_Host.xml index bc9a23aee5c0..0e434b1aa9cc 100644 --- a/src/chrome/content/rules/Downtown_Host.xml +++ b/src/chrome/content/rules/Downtown_Host.xml @@ -11,9 +11,9 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Dpaydinlatma.com.xml b/src/chrome/content/rules/Dpaydinlatma.com.xml new file mode 100644 index 000000000000..0c60c5f285f4 --- /dev/null +++ b/src/chrome/content/rules/Dpaydinlatma.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Dpskolkata.com.xml b/src/chrome/content/rules/Dpskolkata.com.xml deleted file mode 100644 index 4082cdd4657e..000000000000 --- a/src/chrome/content/rules/Dpskolkata.com.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Dr-Ghanim.com.xml b/src/chrome/content/rules/Dr-Ghanim.com.xml new file mode 100644 index 000000000000..9152193722e8 --- /dev/null +++ b/src/chrome/content/rules/Dr-Ghanim.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/DrAgnDroPbuilder.com.xml b/src/chrome/content/rules/DrAgnDroPbuilder.com.xml deleted file mode 100644 index 4617bd8b72c0..000000000000 --- a/src/chrome/content/rules/DrAgnDroPbuilder.com.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/DrJonathanBrown.com.xml b/src/chrome/content/rules/DrJonathanBrown.com.xml new file mode 100644 index 000000000000..18b3360b99b8 --- /dev/null +++ b/src/chrome/content/rules/DrJonathanBrown.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/DragonByte-Tech.xml b/src/chrome/content/rules/DragonByte-Tech.xml index d123f12e1c86..0a83dbf1033f 100644 --- a/src/chrome/content/rules/DragonByte-Tech.xml +++ b/src/chrome/content/rules/DragonByte-Tech.xml @@ -16,7 +16,7 @@ --> - + @@ -31,6 +17,7 @@ + - + @@ -20,7 +20,11 @@ Fetch error: http://www.baratikor.com/ => https://www.baratikor.com/: (51, "SSL: - + + + + + @@ -31,16 +35,11 @@ Fetch error: http://www.baratikor.com/ => https://www.baratikor.com/: (51, "SSL: - - - + diff --git a/src/chrome/content/rules/Drawception.xml b/src/chrome/content/rules/Drawception.xml index 1d3723db3a8a..6386842d3d69 100644 --- a/src/chrome/content/rules/Drawception.xml +++ b/src/chrome/content/rules/Drawception.xml @@ -2,8 +2,7 @@ - - + diff --git a/src/chrome/content/rules/Drawing_by_Numbers.org.xml b/src/chrome/content/rules/Drawing_by_Numbers.org.xml deleted file mode 100644 index e88b6c1d04c9..000000000000 --- a/src/chrome/content/rules/Drawing_by_Numbers.org.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Drawthelines.ca.xml b/src/chrome/content/rules/Drawthelines.ca.xml new file mode 100644 index 000000000000..3fc0acfaa79d --- /dev/null +++ b/src/chrome/content/rules/Drawthelines.ca.xml @@ -0,0 +1,13 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Drchrono.com.xml b/src/chrome/content/rules/Drchrono.com.xml index eba1c3f94244..28e9fa93361d 100644 --- a/src/chrome/content/rules/Drchrono.com.xml +++ b/src/chrome/content/rules/Drchrono.com.xml @@ -3,18 +3,13 @@ Disabled by https-everywhere-checker because: Fetch error: http://drchrono.com/ => https://drchrono.com/: Too many redirects while fetching 'https://drchrono.com/' - Other Drchrono rulesets: - - - Onpatient.com.xml - - Insecure cookies are set for these hosts: - drchrono.com - www.drchrono.com --> - + diff --git a/src/chrome/content/rules/DreamHost.xml b/src/chrome/content/rules/DreamHost.xml index 1dc6b8f4123d..aad42680f573 100644 --- a/src/chrome/content/rules/DreamHost.xml +++ b/src/chrome/content/rules/DreamHost.xml @@ -52,7 +52,6 @@ - @@ -67,9 +66,8 @@ - - \ No newline at end of file + diff --git a/src/chrome/content/rules/DreamSpark.com.xml b/src/chrome/content/rules/DreamSpark.com.xml index e866b1d36e02..154cd6e55f62 100644 --- a/src/chrome/content/rules/DreamSpark.com.xml +++ b/src/chrome/content/rules/DreamSpark.com.xml @@ -10,7 +10,7 @@ Fetch error: http://dreamspark.com/ => https://www.dreamspark.com/: (60, 'SSL ce ^dreamspark.com: Dropped --> - + @@ -21,7 +21,7 @@ Fetch error: http://dreamspark.com/ => https://www.dreamspark.com/: (60, 'SSL ce - + - - - - - - - - - diff --git a/src/chrome/content/rules/Dreampass.jp.xml b/src/chrome/content/rules/Dreampass.jp.xml index 882a67c938a2..5c4e69a21e98 100644 --- a/src/chrome/content/rules/Dreampass.jp.xml +++ b/src/chrome/content/rules/Dreampass.jp.xml @@ -10,4 +10,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Dreamsolution.nl.xml b/src/chrome/content/rules/Dreamsolution.nl.xml deleted file mode 100644 index 8071d918eac8..000000000000 --- a/src/chrome/content/rules/Dreamsolution.nl.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Dreamstime-problematic.xml b/src/chrome/content/rules/Dreamstime-problematic.xml index 2a8d675a831a..7ffa4f42c1e2 100644 --- a/src/chrome/content/rules/Dreamstime-problematic.xml +++ b/src/chrome/content/rules/Dreamstime-problematic.xml @@ -8,7 +8,6 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Dreamstime.xml b/src/chrome/content/rules/Dreamstime.xml index 0269dc597131..02f886a7e041 100644 --- a/src/chrome/content/rules/Dreamstime.xml +++ b/src/chrome/content/rules/Dreamstime.xml @@ -12,7 +12,8 @@ Fetch error: http://dreamstime.com/ => https://dreamstime.com/: Cycle detected - - + + diff --git a/src/chrome/content/rules/Drexel_University.xml b/src/chrome/content/rules/Drexel_University.xml index 7011999e0c2b..4e0c7146a887 100644 --- a/src/chrome/content/rules/Drexel_University.xml +++ b/src/chrome/content/rules/Drexel_University.xml @@ -14,7 +14,7 @@ Fetch error: http://psal.cs.drexel.edu/ => https://psal.cs.drexel.edu/: (60, 'SS - psal.cs --> - + @@ -26,4 +26,4 @@ Fetch error: http://psal.cs.drexel.edu/ => https://psal.cs.drexel.edu/: (60, 'SS - \ No newline at end of file + diff --git a/src/chrome/content/rules/Drillisch.de.xml b/src/chrome/content/rules/Drillisch.de.xml index 6378ddfea194..1e112a836e91 100644 --- a/src/chrome/content/rules/Drillisch.de.xml +++ b/src/chrome/content/rules/Drillisch.de.xml @@ -1,6 +1,21 @@ + - - - + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Drinkaware.xml b/src/chrome/content/rules/Drinkaware.xml index 84e3c22eb7b2..f001386ff1a8 100644 --- a/src/chrome/content/rules/Drinkaware.xml +++ b/src/chrome/content/rules/Drinkaware.xml @@ -7,7 +7,7 @@ - + - + https://drivestyle.co.uk/: (7, 'Failed Fetch error: http://www.drivestyle.co.uk/ => https://www.drivestyle.co.uk/: (7, 'Failed to connect to www.drivestyle.co.uk port 443: Connection refused') --> - + @@ -16,4 +16,4 @@ Fetch error: http://www.drivestyle.co.uk/ => https://www.drivestyle.co.uk/: (7, - \ No newline at end of file + diff --git a/src/chrome/content/rules/Drivee.xml b/src/chrome/content/rules/Drivee.xml index aeda784ecc5d..57a160f73e02 100644 --- a/src/chrome/content/rules/Drivee.xml +++ b/src/chrome/content/rules/Drivee.xml @@ -17,7 +17,7 @@ Fetch error: http://www.drivee.ne.jp/ => https://www.drivee.jp/: Too many redire * Mismatched, CN: secure.drivee.ne.jp --> - + diff --git a/src/chrome/content/rules/Dro-s.com.xml b/src/chrome/content/rules/Dro-s.com.xml new file mode 100644 index 000000000000..6df1c6b224ba --- /dev/null +++ b/src/chrome/content/rules/Dro-s.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Droid-Break.info.xml b/src/chrome/content/rules/Droid-Break.info.xml new file mode 100644 index 000000000000..b0622e656640 --- /dev/null +++ b/src/chrome/content/rules/Droid-Break.info.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/DropDav.xml b/src/chrome/content/rules/DropDav.xml index e4163a46c98c..18a8bd055b03 100644 --- a/src/chrome/content/rules/DropDav.xml +++ b/src/chrome/content/rules/DropDav.xml @@ -11,13 +11,13 @@ - + - + - - - diff --git a/src/chrome/content/rules/Drought.gov.xml b/src/chrome/content/rules/Drought.gov.xml index 74c270ed32f0..37477dcace86 100644 --- a/src/chrome/content/rules/Drought.gov.xml +++ b/src/chrome/content/rules/Drought.gov.xml @@ -7,7 +7,7 @@ - + https://www.drugpolicy.org/: Too many Fetch error: http://drugpolicy.org/ => https://www.drugpolicy.org/: Too many redirects while fetching 'https://www.drugpolicy.org/' --> - + - + diff --git a/src/chrome/content/rules/Drug_Forum-problematic.xml b/src/chrome/content/rules/Drug_Forum-problematic.xml index 552873dae6b0..35f6afc16008 100644 --- a/src/chrome/content/rules/Drug_Forum-problematic.xml +++ b/src/chrome/content/rules/Drug_Forum-problematic.xml @@ -10,4 +10,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Drugstore.com.xml b/src/chrome/content/rules/Drugstore.com.xml index fdf2f9fc1c0a..f17f5d0a13d7 100644 --- a/src/chrome/content/rules/Drugstore.com.xml +++ b/src/chrome/content/rules/Drugstore.com.xml @@ -1,8 +1,17 @@ - - + + + + + + + + + + + - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Drweb.com.xml b/src/chrome/content/rules/Drweb.com.xml index 55f157aac91e..91f24281b97f 100644 --- a/src/chrome/content/rules/Drweb.com.xml +++ b/src/chrome/content/rules/Drweb.com.xml @@ -23,7 +23,7 @@ Fetch error: http://update.drweb.com/ => https://update.drweb.com/: (51, "SSL: n ⁴ Refused --> - + @@ -68,7 +68,7 @@ Fetch error: http://update.drweb.com/ => https://update.drweb.com/: (51, "SSL: n --> - + - - - + + + + + diff --git a/src/chrome/content/rules/Dshop.se.xml b/src/chrome/content/rules/Dshop.se.xml deleted file mode 100644 index b7cb9588d9a3..000000000000 --- a/src/chrome/content/rules/Dshop.se.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Dsp.io.xml b/src/chrome/content/rules/Dsp.io.xml deleted file mode 100644 index a313b40bc7f1..000000000000 --- a/src/chrome/content/rules/Dsp.io.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/DualShockers.com.xml b/src/chrome/content/rules/DualShockers.com.xml index b999aeb2a854..f1bbe6010468 100644 --- a/src/chrome/content/rules/DualShockers.com.xml +++ b/src/chrome/content/rules/DualShockers.com.xml @@ -17,10 +17,11 @@ --> - + + - \ No newline at end of file + diff --git a/src/chrome/content/rules/DuckCorp.xml b/src/chrome/content/rules/DuckCorp.xml deleted file mode 100644 index e0c3e9e719a9..000000000000 --- a/src/chrome/content/rules/DuckCorp.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/DuckDuckGo.xml b/src/chrome/content/rules/DuckDuckGo.xml index 962b6bcdbdc1..433591cfcd05 100644 --- a/src/chrome/content/rules/DuckDuckGo.xml +++ b/src/chrome/content/rules/DuckDuckGo.xml @@ -1,12 +1,15 @@ @@ -40,13 +37,19 @@ + + + + + + @@ -54,12 +57,12 @@ + + - - - + @@ -72,6 +75,6 @@ - diff --git a/src/chrome/content/rules/Duck_DNS.org.xml b/src/chrome/content/rules/Duck_DNS.org.xml index 95b6d246be3a..078d5c603ff0 100644 --- a/src/chrome/content/rules/Duck_DNS.org.xml +++ b/src/chrome/content/rules/Duck_DNS.org.xml @@ -4,7 +4,7 @@ - + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Dudley.gov.uk-mixedcontent.xml b/src/chrome/content/rules/Dudley.gov.uk-mixedcontent.xml index b11a7f40c05d..4d995f6e3d3c 100644 --- a/src/chrome/content/rules/Dudley.gov.uk-mixedcontent.xml +++ b/src/chrome/content/rules/Dudley.gov.uk-mixedcontent.xml @@ -7,14 +7,14 @@ Fetch error: http://www2.dudley.gov.uk/ => https://www2.dudley.gov.uk/: (51, "SS For rules not causing MCB, see Dudley.gov.uk.xml. --> - + - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Duke-Energy-Convention-Center.xml b/src/chrome/content/rules/Duke-Energy-Convention-Center.xml index aaed066e8768..0988fc5decc2 100644 --- a/src/chrome/content/rules/Duke-Energy-Convention-Center.xml +++ b/src/chrome/content/rules/Duke-Energy-Convention-Center.xml @@ -14,13 +14,14 @@ Fetch error: http://duke-energycenter.com/ => https://www.duke-energycenter.com/ - m (interrupted) --> - + - + + - + - - - - - - - - - - diff --git a/src/chrome/content/rules/Duke-University.xml b/src/chrome/content/rules/Duke-University.xml deleted file mode 100644 index 1c2b51215965..000000000000 --- a/src/chrome/content/rules/Duke-University.xml +++ /dev/null @@ -1,132 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Duke.edu.xml b/src/chrome/content/rules/Duke.edu.xml new file mode 100644 index 000000000000..ebde0704a4af --- /dev/null +++ b/src/chrome/content/rules/Duke.edu.xml @@ -0,0 +1,149 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Dundee_City.gov.uk.xml b/src/chrome/content/rules/Dundee_City.gov.uk.xml index 253d88dd9d86..1d2b9e896b41 100644 --- a/src/chrome/content/rules/Dundee_City.gov.uk.xml +++ b/src/chrome/content/rules/Dundee_City.gov.uk.xml @@ -58,7 +58,7 @@ --> - + https://www.dunkelangst.org/: (60, ' * Secured by us --> - + @@ -24,7 +24,7 @@ Fetch error: http://www.dunkelangst.org/ => https://www.dunkelangst.org/: (60, ' - + - + + + + + + + - + - + diff --git a/src/chrome/content/rules/Duo.com.xml b/src/chrome/content/rules/Duo.com.xml index 7952ce865450..ebffd280a39d 100644 --- a/src/chrome/content/rules/Duo.com.xml +++ b/src/chrome/content/rules/Duo.com.xml @@ -27,7 +27,7 @@ - + - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Duolingo.xml b/src/chrome/content/rules/Duolingo.xml new file mode 100644 index 000000000000..2eca1098c671 --- /dev/null +++ b/src/chrome/content/rules/Duolingo.xml @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Duply.net.xml b/src/chrome/content/rules/Duply.net.xml new file mode 100644 index 000000000000..170796c4fd94 --- /dev/null +++ b/src/chrome/content/rules/Duply.net.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Duracell_Cloud.com.xml b/src/chrome/content/rules/Duracell_Cloud.com.xml deleted file mode 100644 index efee6f23a060..000000000000 --- a/src/chrome/content/rules/Duracell_Cloud.com.xml +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Dustinabbott.net.xml b/src/chrome/content/rules/Dustinabbott.net.xml new file mode 100644 index 000000000000..21b3d8560ee6 --- /dev/null +++ b/src/chrome/content/rules/Dustinabbott.net.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/DutyFreeIslandShop.com.xml b/src/chrome/content/rules/DutyFreeIslandShop.com.xml new file mode 100644 index 000000000000..a2a15cfbc53c --- /dev/null +++ b/src/chrome/content/rules/DutyFreeIslandShop.com.xml @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Dwolla.com-falsemixed.xml b/src/chrome/content/rules/Dwolla.com-falsemixed.xml index 087517948386..0dd4d0ebcc1c 100644 --- a/src/chrome/content/rules/Dwolla.com-falsemixed.xml +++ b/src/chrome/content/rules/Dwolla.com-falsemixed.xml @@ -10,7 +10,7 @@ - + https://api-devint.dwolla.com/: (7 * Secured by us --> - + @@ -69,7 +69,7 @@ Fetch error: http://api-devint.dwolla.com/ => https://api-devint.dwolla.com/: (7 --> - + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Dxtorrent.com.xml b/src/chrome/content/rules/Dxtorrent.com.xml deleted file mode 100644 index 4b89f8317bfa..000000000000 --- a/src/chrome/content/rules/Dxtorrent.com.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/Dyankov.eu.xml b/src/chrome/content/rules/Dyankov.eu.xml deleted file mode 100644 index c9a041c2a0ff..000000000000 --- a/src/chrome/content/rules/Dyankov.eu.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Dydx.io.xml b/src/chrome/content/rules/Dydx.io.xml deleted file mode 100644 index ef5c18b96ed0..000000000000 --- a/src/chrome/content/rules/Dydx.io.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/DynDNS.berlin.xml b/src/chrome/content/rules/DynDNS.berlin.xml index 0c316a9233fc..3188f1dd2e7a 100644 --- a/src/chrome/content/rules/DynDNS.berlin.xml +++ b/src/chrome/content/rules/DynDNS.berlin.xml @@ -14,7 +14,7 @@ --> - + https://internal.dynstatus.com/: For other Dyn coverage, see Dyn.xml. --> - + diff --git a/src/chrome/content/rules/DynaDot.xml b/src/chrome/content/rules/DynaDot.xml index 67e310d6bb95..60b406f9218d 100644 --- a/src/chrome/content/rules/DynaDot.xml +++ b/src/chrome/content/rules/DynaDot.xml @@ -2,7 +2,7 @@ - + diff --git a/src/chrome/content/rules/DynamicWeb.xml b/src/chrome/content/rules/DynamicWeb.xml deleted file mode 100644 index ef2bdd94ae08..000000000000 --- a/src/chrome/content/rules/DynamicWeb.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Dynamic_Yield.com.xml b/src/chrome/content/rules/Dynamic_Yield.com.xml index 4d963383094c..13751d748b7d 100644 --- a/src/chrome/content/rules/Dynamic_Yield.com.xml +++ b/src/chrome/content/rules/Dynamic_Yield.com.xml @@ -98,7 +98,7 @@ - + https://www.dynamics.com/: (28, 'Connection - www.dynamics.com --> - + @@ -33,7 +33,7 @@ Fetch error: http://dynamics.com/ => https://www.dynamics.com/: (28, 'Connection - + - + - + - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Dynatech.de.xml b/src/chrome/content/rules/Dynatech.de.xml index 9e0e31aa9685..31527f1f3111 100644 --- a/src/chrome/content/rules/Dynatech.de.xml +++ b/src/chrome/content/rules/Dynatech.de.xml @@ -1,7 +1,7 @@ - + diff --git a/src/chrome/content/rules/Dyne.org.xml b/src/chrome/content/rules/Dyne.org.xml index 55ca3d550348..ce98b6819de4 100644 --- a/src/chrome/content/rules/Dyne.org.xml +++ b/src/chrome/content/rules/Dyne.org.xml @@ -50,17 +50,21 @@ Fetch error: http://dyne.org/ => https://dyne.org/: (60, 'SSL certificate proble ⁵ Rule disabled by default <= CAcert --> - + - + + + + + + - + diff --git a/src/chrome/content/rules/Dyson.xml b/src/chrome/content/rules/Dyson.xml index 89bc7644516e..59275aec40fc 100644 --- a/src/chrome/content/rules/Dyson.xml +++ b/src/chrome/content/rules/Dyson.xml @@ -8,7 +8,7 @@ Fetch error: http://content.dyson.co.uk/ => http://content.dyson.co.uk/: (28, 'C Disabled by https-everywhere-checker because: Fetch error: http://dyson.co.uk/ => https://www.dyson.co.uk/: (7, 'Failed to connect to dyson.co.uk port 80: No route to host') --> - + @@ -37,7 +37,7 @@ Fetch error: http://dyson.co.uk/ => https://www.dyson.co.uk/: (7, 'Failed to con - - + + diff --git a/src/chrome/content/rules/E-Estonia.com.xml b/src/chrome/content/rules/E-Estonia.com.xml deleted file mode 100644 index 4693e784d769..000000000000 --- a/src/chrome/content/rules/E-Estonia.com.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/E-Generator.com.xml b/src/chrome/content/rules/E-Generator.com.xml deleted file mode 100644 index fabf604ec1c5..000000000000 --- a/src/chrome/content/rules/E-Generator.com.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/E-Hentai-Forums.xml b/src/chrome/content/rules/E-Hentai-Forums.xml deleted file mode 100644 index 1b6d69ea3fcd..000000000000 --- a/src/chrome/content/rules/E-Hentai-Forums.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/E-Hentai.org.xml b/src/chrome/content/rules/E-Hentai.org.xml new file mode 100644 index 000000000000..2142b660714f --- /dev/null +++ b/src/chrome/content/rules/E-Hentai.org.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/E-KSF.org.xml b/src/chrome/content/rules/E-KSF.org.xml index 24ea08705e54..0cc47cb54c3e 100644 --- a/src/chrome/content/rules/E-KSF.org.xml +++ b/src/chrome/content/rules/E-KSF.org.xml @@ -14,7 +14,7 @@ --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/E-Plus.xml b/src/chrome/content/rules/E-Plus.xml index d52aaf8bbbee..93c7cc933575 100644 --- a/src/chrome/content/rules/E-Plus.xml +++ b/src/chrome/content/rules/E-Plus.xml @@ -23,10 +23,17 @@ Fetch error: http://e-plus.de/ => https://www.e-plus.de/: (7, 'Failed to connect - einstellungen (works, mismatched, CN: *.customersaas.com) --> - + - + + + + + + + + @@ -35,7 +42,6 @@ Fetch error: http://e-plus.de/ => https://www.e-plus.de/: (7, 'Failed to connect - + diff --git a/src/chrome/content/rules/E-Reading.club.xml b/src/chrome/content/rules/E-Reading.club.xml new file mode 100644 index 000000000000..fe8307f737d4 --- /dev/null +++ b/src/chrome/content/rules/E-Reading.club.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/E-Sports_Entertainment.xml b/src/chrome/content/rules/E-Sports_Entertainment.xml index 11ac23746729..cab78dc32251 100644 --- a/src/chrome/content/rules/E-Sports_Entertainment.xml +++ b/src/chrome/content/rules/E-Sports_Entertainment.xml @@ -11,7 +11,7 @@ --> - + @@ -22,4 +22,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/E-boks.dk.xml b/src/chrome/content/rules/E-boks.dk.xml index 21b55a098282..5ab26ad06877 100644 --- a/src/chrome/content/rules/E-boks.dk.xml +++ b/src/chrome/content/rules/E-boks.dk.xml @@ -5,7 +5,9 @@ - + + + - + - + diff --git a/src/chrome/content/rules/E-junkie.xml b/src/chrome/content/rules/E-junkie.xml index 6b0ac2c5c6a3..c11c2385c4ea 100644 --- a/src/chrome/content/rules/E-junkie.xml +++ b/src/chrome/content/rules/E-junkie.xml @@ -1,15 +1,18 @@ - + - +--> + + + + + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/E-magazin.se.xml b/src/chrome/content/rules/E-magazin.se.xml index f7132e8bc39e..778ddffb3ed9 100644 --- a/src/chrome/content/rules/E-magazin.se.xml +++ b/src/chrome/content/rules/E-magazin.se.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/E-mielenterveys.xml b/src/chrome/content/rules/E-mielenterveys.xml index 262d7cef3d79..0bdd6d123783 100644 --- a/src/chrome/content/rules/E-mielenterveys.xml +++ b/src/chrome/content/rules/E-mielenterveys.xml @@ -5,7 +5,7 @@ Fetch error: http://e-mielenterveys.fi/ => https://www.e-mielenterveys.fi/: (60, Fetch error: http://www.e-mielenterveys.fi/ => https://www.e-mielenterveys.fi/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/E-onlinedata.com.xml b/src/chrome/content/rules/E-onlinedata.com.xml deleted file mode 100644 index dfdb934c0bc7..000000000000 --- a/src/chrome/content/rules/E-onlinedata.com.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/E-prawnik.pl.xml b/src/chrome/content/rules/E-prawnik.pl.xml index 12761d6bef81..3dabaa9425b3 100644 --- a/src/chrome/content/rules/E-prawnik.pl.xml +++ b/src/chrome/content/rules/E-prawnik.pl.xml @@ -21,7 +21,9 @@ - + + + @@ -42,4 +44,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/E-rewards.com.xml b/src/chrome/content/rules/E-rewards.com.xml index e58e0177af21..a23cac2c2045 100644 --- a/src/chrome/content/rules/E-rewards.com.xml +++ b/src/chrome/content/rules/E-rewards.com.xml @@ -1,4 +1,7 @@ - - + + + + diff --git a/src/chrome/content/rules/E.ON_UK.xml b/src/chrome/content/rules/E.ON_UK.xml index c6ec593cfc6c..f2f422ffb333 100644 --- a/src/chrome/content/rules/E.ON_UK.xml +++ b/src/chrome/content/rules/E.ON_UK.xml @@ -11,7 +11,7 @@ Fetch error: http://stats.eon-uk.com/ => https://stats.eon-uk.com/: (28, 'Operat Some pages redirect to http. --> - + @@ -24,4 +24,4 @@ Fetch error: http://stats.eon-uk.com/ => https://stats.eon-uk.com/: (28, 'Operat - \ No newline at end of file + diff --git a/src/chrome/content/rules/E2E-Networks.xml b/src/chrome/content/rules/E2E-Networks.xml deleted file mode 100644 index 6bc2424a271d..000000000000 --- a/src/chrome/content/rules/E2E-Networks.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/E2ma.net.xml b/src/chrome/content/rules/E2ma.net.xml deleted file mode 100644 index 296a5a532db9..000000000000 --- a/src/chrome/content/rules/E2ma.net.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/EAN.com.xml b/src/chrome/content/rules/EAN.com.xml new file mode 100644 index 000000000000..2a6b1475fb33 --- /dev/null +++ b/src/chrome/content/rules/EAN.com.xml @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/EArcu.xml b/src/chrome/content/rules/EArcu.xml index fd1a485a9bd8..f3c6f3a3faf3 100644 --- a/src/chrome/content/rules/EArcu.xml +++ b/src/chrome/content/rules/EArcu.xml @@ -6,16 +6,16 @@ Fetch error: http://earcu.com/ => https://earcu.com/: (28, 'Connection timed out Automatically by https-everywhere-checker because: Fetch error: http://earcu.com/ => https://earcu.com/: (60, 'SSL certificate problem: certificate has expired') --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/EBSCO-content.com.xml b/src/chrome/content/rules/EBSCO-content.com.xml deleted file mode 100644 index 462452a367be..000000000000 --- a/src/chrome/content/rules/EBSCO-content.com.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/EBSCOhost.xml b/src/chrome/content/rules/EBSCOhost.xml index 75e5f253b8a9..abfccd8c053a 100644 --- a/src/chrome/content/rules/EBSCOhost.xml +++ b/src/chrome/content/rules/EBSCOhost.xml @@ -10,7 +10,7 @@ - + - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/EBay.xml b/src/chrome/content/rules/EBay.xml deleted file mode 100644 index 48e3517e1c4f..000000000000 --- a/src/chrome/content/rules/EBay.xml +++ /dev/null @@ -1,167 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/EBay_static.com-problematic.xml b/src/chrome/content/rules/EBay_static.com-problematic.xml deleted file mode 100644 index a9ed3df31c24..000000000000 --- a/src/chrome/content/rules/EBay_static.com-problematic.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/EBay_static.com.xml b/src/chrome/content/rules/EBay_static.com.xml deleted file mode 100644 index 2f7860597df3..000000000000 --- a/src/chrome/content/rules/EBay_static.com.xml +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/EBlastEngine.com.xml b/src/chrome/content/rules/EBlastEngine.com.xml index f1f50f04e7ea..199f1c55a2bf 100644 --- a/src/chrome/content/rules/EBlastEngine.com.xml +++ b/src/chrome/content/rules/EBlastEngine.com.xml @@ -39,7 +39,7 @@ --> - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/ECC-Platform.org.xml b/src/chrome/content/rules/ECC-Platform.org.xml index ab21a6e692d2..df804048c904 100644 --- a/src/chrome/content/rules/ECC-Platform.org.xml +++ b/src/chrome/content/rules/ECC-Platform.org.xml @@ -20,7 +20,7 @@ - + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ECPIC.gov.xml b/src/chrome/content/rules/ECPIC.gov.xml deleted file mode 100644 index 51d28a9253f4..000000000000 --- a/src/chrome/content/rules/ECPIC.gov.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/ECSI.xml b/src/chrome/content/rules/ECSI.xml index bd74277386c5..3368d93e095a 100644 --- a/src/chrome/content/rules/ECSI.xml +++ b/src/chrome/content/rules/ECSI.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://ecsi.com/ => https://www.ecsi.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.ecsi.com'") Fetch error: http://www.ecsi.com/ => https://www.ecsi.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.ecsi.com'") --> - + diff --git a/src/chrome/content/rules/ECTC-online.org.xml b/src/chrome/content/rules/ECTC-online.org.xml new file mode 100644 index 000000000000..c3a7f0740f18 --- /dev/null +++ b/src/chrome/content/rules/ECTC-online.org.xml @@ -0,0 +1,9 @@ + + + + + + + + diff --git a/src/chrome/content/rules/ECampus.no.xml b/src/chrome/content/rules/ECampus.no.xml index b453c0cd690e..c0af9862cf4e 100644 --- a/src/chrome/content/rules/ECampus.no.xml +++ b/src/chrome/content/rules/ECampus.no.xml @@ -23,7 +23,7 @@ Fetch error: http://www.ecampus.no/ => https://www.ecampus.no/: (6, 'Could not r - www-ecampus.uninett.no --> - + diff --git a/src/chrome/content/rules/ECigPros.xml b/src/chrome/content/rules/ECigPros.xml index df4bef1ce40c..2160e137edc4 100644 --- a/src/chrome/content/rules/ECigPros.xml +++ b/src/chrome/content/rules/ECigPros.xml @@ -4,9 +4,9 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/ECosCentric.com.xml b/src/chrome/content/rules/ECosCentric.com.xml index f96fb01fa641..1ea6f9b330ec 100644 --- a/src/chrome/content/rules/ECosCentric.com.xml +++ b/src/chrome/content/rules/ECosCentric.com.xml @@ -12,7 +12,10 @@ Fetch error: http://ecoscentric.com/ => https://www.ecoscentric.com/: (60, 'SSL - + + + + @@ -24,7 +27,6 @@ Fetch error: http://ecoscentric.com/ => https://www.ecoscentric.com/: (60, 'SSL - + diff --git a/src/chrome/content/rules/ECustomerOpinions.com.xml b/src/chrome/content/rules/ECustomerOpinions.com.xml index 06802ca539e9..69c4bd0f810d 100644 --- a/src/chrome/content/rules/ECustomerOpinions.com.xml +++ b/src/chrome/content/rules/ECustomerOpinions.com.xml @@ -14,7 +14,7 @@ Fetch error: http://www.ecustomeropinions.com/ => https://www.ecustomeropinions. ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -28,7 +28,7 @@ Fetch error: http://www.ecustomeropinions.com/ => https://www.ecustomeropinions. --> - + - + + @@ -16,7 +17,6 @@ - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/EDG.com.xml b/src/chrome/content/rules/EDG.com.xml index e9900fdfabf8..a16bbb13e498 100644 --- a/src/chrome/content/rules/EDG.com.xml +++ b/src/chrome/content/rules/EDG.com.xml @@ -5,7 +5,7 @@ Fetch error: http://edg.com/ => https://edg.com/: (60, 'SSL certificate problem: Fetch error: http://www.edg.com/ => https://www.edg.com/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + diff --git a/src/chrome/content/rules/EDGAR-Online.xml b/src/chrome/content/rules/EDGAR-Online.xml index 2be8b3e9a9a9..6eb05ae39596 100644 --- a/src/chrome/content/rules/EDGAR-Online.xml +++ b/src/chrome/content/rules/EDGAR-Online.xml @@ -59,7 +59,7 @@ - + - + diff --git a/src/chrome/content/rules/EDI-Health-Group.xml b/src/chrome/content/rules/EDI-Health-Group.xml index fcd74cecde99..55753a824b00 100644 --- a/src/chrome/content/rules/EDI-Health-Group.xml +++ b/src/chrome/content/rules/EDI-Health-Group.xml @@ -3,7 +3,8 @@ - + + @@ -12,8 +13,8 @@ - - + + @@ -21,13 +22,10 @@ - - + diff --git a/src/chrome/content/rules/EDI7.lu.xml b/src/chrome/content/rules/EDI7.lu.xml deleted file mode 100644 index 6232385baacf..000000000000 --- a/src/chrome/content/rules/EDI7.lu.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/EDP.pt.xml b/src/chrome/content/rules/EDP.pt.xml index c28d6618b73f..1a06e311fa8f 100644 --- a/src/chrome/content/rules/EDP.pt.xml +++ b/src/chrome/content/rules/EDP.pt.xml @@ -30,7 +30,7 @@ Fetch error: http://www.edpessoa.internet.edp.pt/ => https://www.edpessoa.intern (www.)premioedpinovacao.edp.pt --> - + diff --git a/src/chrome/content/rules/EDRDG.org.xml b/src/chrome/content/rules/EDRDG.org.xml new file mode 100644 index 000000000000..713f598fa383 --- /dev/null +++ b/src/chrome/content/rules/EDRDG.org.xml @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/EDR_CDN.com.xml b/src/chrome/content/rules/EDR_CDN.com.xml index 7d5dd69c0c5e..6866686f30c2 100644 --- a/src/chrome/content/rules/EDR_CDN.com.xml +++ b/src/chrome/content/rules/EDR_CDN.com.xml @@ -16,7 +16,7 @@ - + https://www.edigitalresearch.co - ECustomerOpinions.com.xml - EDR_CDN.com.xml - - EDigitalSurvey.com.xml Nonfunctional hosts in *edigitalresearch.com: @@ -25,14 +24,14 @@ Fetch error: http://www.edigitalresearch.com/ => https://www.edigitalresearch.co * Secured by us --> - + - + - + https://www.edirectdebit.com/: (28, !www: cert only matches www --> - + diff --git a/src/chrome/content/rules/EEQJ.xml b/src/chrome/content/rules/EEQJ.xml deleted file mode 100644 index 5b2933667bbf..000000000000 --- a/src/chrome/content/rules/EEQJ.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/EET_Group.xml b/src/chrome/content/rules/EET_Group.xml index 38eb79568609..97526b7c6bb9 100644 --- a/src/chrome/content/rules/EET_Group.xml +++ b/src/chrome/content/rules/EET_Group.xml @@ -6,21 +6,49 @@ Fetch error: http://eet.eu/ => https://eet.eu/: (28, 'Connection timed out after Disabled by https-everywhere-checker because: Fetch error: http://eet.eu/ => https://eet.eu/: (28, 'Connection timed out after 10000 milliseconds') --> - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/EE_Times-mixed.xml b/src/chrome/content/rules/EE_Times-mixed.xml index 6170352ae294..dfe76b2e468c 100644 --- a/src/chrome/content/rules/EE_Times-mixed.xml +++ b/src/chrome/content/rules/EE_Times-mixed.xml @@ -8,7 +8,7 @@ Fetch error: http://video.eetimes.com/ => https://video.eetimes.com/: (6, 'Could For rules that do not cause mixed content, see EE_Times.xml. --> - + @@ -16,7 +16,6 @@ Fetch error: http://video.eetimes.com/ => https://video.eetimes.com/: (6, 'Could - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/EE_Times.xml b/src/chrome/content/rules/EE_Times.xml index 774632aa53f3..468ed5adaaaf 100644 --- a/src/chrome/content/rules/EE_Times.xml +++ b/src/chrome/content/rules/EE_Times.xml @@ -22,10 +22,14 @@ Fetch error: http://eetimes.com/ => https://eetimes.com/: (7, 'Failed to connect - video (mixed iframe from sso.techonline.com & video from brightcove.vo.llnwd.net) --> - + - + + + + + - - - + - - + + diff --git a/src/chrome/content/rules/EFinancialCareers.xml b/src/chrome/content/rules/EFinancialCareers.xml index 776cab007f07..0524d8ac4af4 100644 --- a/src/chrome/content/rules/EFinancialCareers.xml +++ b/src/chrome/content/rules/EFinancialCareers.xml @@ -41,7 +41,7 @@ Fetch error: http://news-cdn.efinancialcareers.com/ => https://d2p98mys7gexzy.cl - www.efinancialcareers.com --> - + @@ -84,10 +84,6 @@ Fetch error: http://news-cdn.efinancialcareers.com/ => https://d2p98mys7gexzy.cl - - - + diff --git a/src/chrome/content/rules/EFurnitureNY.xml b/src/chrome/content/rules/EFurnitureNY.xml index 6f6e9279c08c..0c4c7f87f3af 100644 --- a/src/chrome/content/rules/EFurnitureNY.xml +++ b/src/chrome/content/rules/EFurnitureNY.xml @@ -4,9 +4,9 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/EHIC.org.uk.xml b/src/chrome/content/rules/EHIC.org.uk.xml index b67b41bddd28..821991f140a3 100644 --- a/src/chrome/content/rules/EHIC.org.uk.xml +++ b/src/chrome/content/rules/EHIC.org.uk.xml @@ -7,7 +7,7 @@ - + + + + + + + + + diff --git a/src/chrome/content/rules/EIA.gov.xml b/src/chrome/content/rules/EIA.gov.xml index 8199b8ce6404..1f8836fb0c35 100644 --- a/src/chrome/content/rules/EIA.gov.xml +++ b/src/chrome/content/rules/EIA.gov.xml @@ -31,7 +31,7 @@ - + https://eidq.org/: (60, 'SSL certificate problem: certificate has expired') Fetch error: http://www.eidq.org/ => https://www.eidq.org/: (60, 'SSL certificate problem: certificate has expired') --> - + - + diff --git a/src/chrome/content/rules/EIS_Kent.co.uk.xml b/src/chrome/content/rules/EIS_Kent.co.uk.xml index 28e94ff36720..a64a0f1904a5 100644 --- a/src/chrome/content/rules/EIS_Kent.co.uk.xml +++ b/src/chrome/content/rules/EIS_Kent.co.uk.xml @@ -24,7 +24,7 @@ Fetch error: http://eiskent.co.uk/ => https://www.eiskent.co.uk/: (51, "SSL: no ˢ Secured by us --> - + @@ -39,7 +39,7 @@ Fetch error: http://eiskent.co.uk/ => https://www.eiskent.co.uk/: (51, "SSL: no --> - + - - + + diff --git a/src/chrome/content/rules/EKomi.xml b/src/chrome/content/rules/EKomi.xml deleted file mode 100644 index ac2dc91bdf4e..000000000000 --- a/src/chrome/content/rules/EKomi.xml +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/ELENA-Verfahren.de.xml b/src/chrome/content/rules/ELENA-Verfahren.de.xml index d14ed1f9f438..8398f83ffb6d 100644 --- a/src/chrome/content/rules/ELENA-Verfahren.de.xml +++ b/src/chrome/content/rules/ELENA-Verfahren.de.xml @@ -6,9 +6,9 @@ Fetch error: http://das-elena-verfahren.de/ => https://www.das-elena-verfahren.d Disabled by https-everywhere-checker because: Fetch error: http://das-elena-verfahren.de/ => https://www.das-elena-verfahren.de/: (35, 'error:140770FC:SSL routines:SSL23_GET_SERVER_HELLO:unknown protocol') --> - + - + diff --git a/src/chrome/content/rules/ELO_edge.com.xml b/src/chrome/content/rules/ELO_edge.com.xml index a2003dda9e28..09cfce5e5d8c 100644 --- a/src/chrome/content/rules/ELO_edge.com.xml +++ b/src/chrome/content/rules/ELO_edge.com.xml @@ -20,7 +20,7 @@ Fetch error: http://eloedge.com/ => https://eloedge.com/: (51, "SSL: no alternat * Secured by us --> - + diff --git a/src/chrome/content/rules/ELRepo.org.xml b/src/chrome/content/rules/ELRepo.org.xml index 9238dce20747..424a6955632b 100644 --- a/src/chrome/content/rules/ELRepo.org.xml +++ b/src/chrome/content/rules/ELRepo.org.xml @@ -4,7 +4,7 @@ - + - + + + + + + + + + + + + + + + + - @@ -68,4 +81,5 @@ + diff --git a/src/chrome/content/rules/ELY-keskus.fi.xml b/src/chrome/content/rules/ELY-keskus.fi.xml new file mode 100644 index 000000000000..2d252386f38c --- /dev/null +++ b/src/chrome/content/rules/ELY-keskus.fi.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/ELabor.xml b/src/chrome/content/rules/ELabor.xml index 9f17bf9ac431..ddd0bda701af 100644 --- a/src/chrome/content/rules/ELabor.xml +++ b/src/chrome/content/rules/ELabor.xml @@ -17,4 +17,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/ELatinos.com.xml b/src/chrome/content/rules/ELatinos.com.xml index 992bf89ad0be..0458ce46ff6c 100644 --- a/src/chrome/content/rules/ELatinos.com.xml +++ b/src/chrome/content/rules/ELatinos.com.xml @@ -13,7 +13,7 @@ Fetch error: http://www.elatinos.com/ => https://www.elatinos.com/: (6, 'Could n * Secured by us --> - + diff --git a/src/chrome/content/rules/EMS.xml b/src/chrome/content/rules/EMS.xml new file mode 100644 index 000000000000..7165b46e9f36 --- /dev/null +++ b/src/chrome/content/rules/EMS.xml @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ENS.fr.xml b/src/chrome/content/rules/ENS.fr.xml index 4a89bdc9def8..152480045412 100644 --- a/src/chrome/content/rules/ENS.fr.xml +++ b/src/chrome/content/rules/ENS.fr.xml @@ -127,7 +127,7 @@ - + @@ -143,11 +143,11 @@ - + - + diff --git a/src/chrome/content/rules/ENTP-clients.xml b/src/chrome/content/rules/ENTP-clients.xml index 924c8c99510f..6949e2bffd35 100644 --- a/src/chrome/content/rules/ENTP-clients.xml +++ b/src/chrome/content/rules/ENTP-clients.xml @@ -18,17 +18,10 @@ - - + + - - - - - + diff --git a/src/chrome/content/rules/ENomCentral.xml b/src/chrome/content/rules/ENomCentral.xml index 76d336bb8490..34e9346227cd 100644 --- a/src/chrome/content/rules/ENomCentral.xml +++ b/src/chrome/content/rules/ENomCentral.xml @@ -1,18 +1,11 @@ + - - - \ No newline at end of file + diff --git a/src/chrome/content/rules/EOL.org.xml b/src/chrome/content/rules/EOL.org.xml new file mode 100644 index 000000000000..8c8774196ec7 --- /dev/null +++ b/src/chrome/content/rules/EOL.org.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/EOS.org.xml b/src/chrome/content/rules/EOS.org.xml new file mode 100644 index 000000000000..36374512c076 --- /dev/null +++ b/src/chrome/content/rules/EOS.org.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/EPA.gov-mixedcontent.xml b/src/chrome/content/rules/EPA.gov-mixedcontent.xml index 297112c12ca6..ff5d21c04e25 100644 --- a/src/chrome/content/rules/EPA.gov-mixedcontent.xml +++ b/src/chrome/content/rules/EPA.gov-mixedcontent.xml @@ -10,7 +10,7 @@ - + - + + + + + + + + + + + diff --git a/src/chrome/content/rules/EPB.xml b/src/chrome/content/rules/EPB.xml index b387e9ebde5d..98dccd5a9257 100644 --- a/src/chrome/content/rules/EPB.xml +++ b/src/chrome/content/rules/EPB.xml @@ -1,18 +1,18 @@ - + + - + + + + - + - - - + diff --git a/src/chrome/content/rules/EPEAT.xml b/src/chrome/content/rules/EPEAT.xml deleted file mode 100644 index 20fcb59895bf..000000000000 --- a/src/chrome/content/rules/EPEAT.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/EPFL.xml b/src/chrome/content/rules/EPFL.xml index c9159b29438b..fb9a39f3ff1d 100644 --- a/src/chrome/content/rules/EPFL.xml +++ b/src/chrome/content/rules/EPFL.xml @@ -51,13 +51,15 @@ - + + + + - + diff --git a/src/chrome/content/rules/EPay.bg.xml b/src/chrome/content/rules/EPay.bg.xml deleted file mode 100644 index 828e087aff94..000000000000 --- a/src/chrome/content/rules/EPay.bg.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/EPrize.xml b/src/chrome/content/rules/EPrize.xml index 5b818b7056f0..8a220c573732 100644 --- a/src/chrome/content/rules/EPrize.xml +++ b/src/chrome/content/rules/EPrize.xml @@ -21,10 +21,15 @@ Fetch error: http://www.eprize.net/ => https://www.eprize.com/: (51, "SSL: no al * Cert only matches *.eprize.com --> - + - + + + + + + @@ -35,7 +40,6 @@ Fetch error: http://www.eprize.net/ => https://www.eprize.com/: (51, "SSL: no al - + diff --git a/src/chrome/content/rules/EQBank.ca.xml b/src/chrome/content/rules/EQBank.ca.xml new file mode 100644 index 000000000000..999ac77c6b49 --- /dev/null +++ b/src/chrome/content/rules/EQBank.ca.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ERC.edu.xml b/src/chrome/content/rules/ERC.edu.xml index d2f1d38a6a07..4a8332c9e18f 100644 --- a/src/chrome/content/rules/ERC.edu.xml +++ b/src/chrome/content/rules/ERC.edu.xml @@ -9,7 +9,7 @@ Fetch error: http://faq.erc.edu/ => https://faq.erc.edu/: (28, 'Connection timed - courses.erc.edu --> - + diff --git a/src/chrome/content/rules/ESB.ie.xml b/src/chrome/content/rules/ESB.ie.xml index 2f79a2f656c8..d7717f0a30ee 100644 --- a/src/chrome/content/rules/ESB.ie.xml +++ b/src/chrome/content/rules/ESB.ie.xml @@ -5,7 +5,7 @@ Fetch error: http://www.esbie.ie/ => https://www.esbie.ie/: (35, 'Unknown SSL pr Fetch error: http://esbie.ie/ => https://esbie.ie/: (35, 'Unknown SSL protocol error in connection to esbie.ie:443 ') --> - + diff --git a/src/chrome/content/rules/ESEA.net.xml b/src/chrome/content/rules/ESEA.net.xml new file mode 100644 index 000000000000..3bb4ea110cf8 --- /dev/null +++ b/src/chrome/content/rules/ESEA.net.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ESET.co.uk.xml b/src/chrome/content/rules/ESET.co.uk.xml index 2cd6bd582bff..dc68144573fa 100644 --- a/src/chrome/content/rules/ESET.co.uk.xml +++ b/src/chrome/content/rules/ESET.co.uk.xml @@ -23,7 +23,7 @@ - + - - + + - \ No newline at end of file + diff --git a/src/chrome/content/rules/ESI.xml b/src/chrome/content/rules/ESI.xml index 65d437388db4..ec5df4920e9e 100644 --- a/src/chrome/content/rules/ESI.xml +++ b/src/chrome/content/rules/ESI.xml @@ -4,13 +4,12 @@ --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/ESISS.xml b/src/chrome/content/rules/ESISS.xml deleted file mode 100644 index 3c265335ec21..000000000000 --- a/src/chrome/content/rules/ESISS.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/ESLint.org.xml b/src/chrome/content/rules/ESLint.org.xml new file mode 100644 index 000000000000..e83d700cf822 --- /dev/null +++ b/src/chrome/content/rules/ESLint.org.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ESRB.xml b/src/chrome/content/rules/ESRB.xml index a971aec1c615..77e4a02b14bc 100644 --- a/src/chrome/content/rules/ESRB.xml +++ b/src/chrome/content/rules/ESRB.xml @@ -3,4 +3,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/ESRI.ie.xml b/src/chrome/content/rules/ESRI.ie.xml index a01b3e809bce..13beb3826ff6 100644 --- a/src/chrome/content/rules/ESRI.ie.xml +++ b/src/chrome/content/rules/ESRI.ie.xml @@ -12,7 +12,7 @@ - + https://www.estavisas.org.uk/: (51, - www.estavisas.org.uk --> - + diff --git a/src/chrome/content/rules/ESTA_Visas.org.xml b/src/chrome/content/rules/ESTA_Visas.org.xml index b5d0d3a51efe..59d98e74f336 100644 --- a/src/chrome/content/rules/ESTA_Visas.org.xml +++ b/src/chrome/content/rules/ESTA_Visas.org.xml @@ -11,7 +11,7 @@ Fetch error: http://www.estavisas.org/ => https://www.estavisas.org/: (7, 'Faile - www.estavisas.org --> - + diff --git a/src/chrome/content/rules/ES_Discuss.com.xml b/src/chrome/content/rules/ES_Discuss.com.xml deleted file mode 100644 index 30a4b039bb5b..000000000000 --- a/src/chrome/content/rules/ES_Discuss.com.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/ETH_Zurich.xml b/src/chrome/content/rules/ETH_Zurich.xml index 75f0814b291d..a296bea08c78 100644 --- a/src/chrome/content/rules/ETH_Zurich.xml +++ b/src/chrome/content/rules/ETH_Zurich.xml @@ -73,7 +73,7 @@ Fetch error: http://www1.ethz.ch/ => https://www1.ethz.ch/: (6, 'Could not resol - www1.ethz.ch --> - + @@ -117,7 +117,7 @@ Fetch error: http://www1.ethz.ch/ => https://www1.ethz.ch/: (6, 'Could not resol - + - + + + + + + + + + + + + + - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/ETicketing.co.uk.xml b/src/chrome/content/rules/ETicketing.co.uk.xml new file mode 100644 index 000000000000..7563b1a0e13e --- /dev/null +++ b/src/chrome/content/rules/ETicketing.co.uk.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/EToro.xml b/src/chrome/content/rules/EToro.xml index 3648ea413fec..1274478709ca 100644 --- a/src/chrome/content/rules/EToro.xml +++ b/src/chrome/content/rules/EToro.xml @@ -1,59 +1,47 @@ - - + + + + + + + + + + - - + + + + + + - + + + - - - - - - - - - - - + + diff --git a/src/chrome/content/rules/EUBA.sk.xml b/src/chrome/content/rules/EUBA.sk.xml new file mode 100644 index 000000000000..9200a562d105 --- /dev/null +++ b/src/chrome/content/rules/EUBA.sk.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/EUKhost.xml b/src/chrome/content/rules/EUKhost.xml index 2d813bb83210..61de8c8df3ad 100644 --- a/src/chrome/content/rules/EUKhost.xml +++ b/src/chrome/content/rules/EUKhost.xml @@ -35,4 +35,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/EUKhosting.xml b/src/chrome/content/rules/EUKhosting.xml index f15873b83e53..9ab6fb1df09f 100644 --- a/src/chrome/content/rules/EUKhosting.xml +++ b/src/chrome/content/rules/EUKhosting.xml @@ -15,10 +15,10 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/EUSecWest.xml b/src/chrome/content/rules/EUSecWest.xml deleted file mode 100644 index 7572bbf69e3a..000000000000 --- a/src/chrome/content/rules/EUSecWest.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/EUserv.de.xml b/src/chrome/content/rules/EUserv.de.xml index fcd123f02b74..e8c66b31f177 100644 --- a/src/chrome/content/rules/EUserv.de.xml +++ b/src/chrome/content/rules/EUserv.de.xml @@ -13,14 +13,16 @@ - + + + + - + diff --git a/src/chrome/content/rules/EVEX.xml b/src/chrome/content/rules/EVEX.xml new file mode 100644 index 000000000000..2e9fb839c1da --- /dev/null +++ b/src/chrome/content/rules/EVEX.xml @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/EVE_Online.com.xml b/src/chrome/content/rules/EVE_Online.com.xml deleted file mode 100644 index bcc4b6c5fa19..000000000000 --- a/src/chrome/content/rules/EVE_Online.com.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/EVGA.com.xml b/src/chrome/content/rules/EVGA.com.xml deleted file mode 100644 index 14cbddab9d48..000000000000 --- a/src/chrome/content/rules/EVGA.com.xml +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/EW-Scripps-Company-mismatches.xml b/src/chrome/content/rules/EW-Scripps-Company-mismatches.xml index 05d21daaa19b..16149a534b41 100644 --- a/src/chrome/content/rules/EW-Scripps-Company-mismatches.xml +++ b/src/chrome/content/rules/EW-Scripps-Company-mismatches.xml @@ -8,17 +8,16 @@ Some buckets: - + + + - - + diff --git a/src/chrome/content/rules/EW-Scripps-Company.xml b/src/chrome/content/rules/EW-Scripps-Company.xml index 9cff39f25527..74c2da464c28 100644 --- a/src/chrome/content/rules/EW-Scripps-Company.xml +++ b/src/chrome/content/rules/EW-Scripps-Company.xml @@ -10,10 +10,6 @@ Fetch error: http://commercialappeal.com/ => https://www.commercialappeal.com/: Fetch error: http://www.commercialappeal.com/ => https://www.commercialappeal.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.commercialappeal.com'") Fetch error: http://redding.com/ => https://www.redding.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.redding.com'") Fetch error: http://www.redding.com/ => https://www.redding.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.redding.com'") - Other E. W. Scripps Company rulesets: - - - Scrippsing.com.xml - CDN buckets: @@ -28,7 +24,7 @@ Fetch error: http://www.redding.com/ => https://www.redding.com/: (51, "SSL: no - www.theindychannel.com (prints "Down For Maintenance", akamai) --> - + diff --git a/src/chrome/content/rules/EW-online.de.xml b/src/chrome/content/rules/EW-online.de.xml index 26b09a24f9da..54cfe23da506 100644 --- a/src/chrome/content/rules/EW-online.de.xml +++ b/src/chrome/content/rules/EW-online.de.xml @@ -1,13 +1,4 @@ - - + diff --git a/src/chrome/content/rules/EWONTFIX.com.xml b/src/chrome/content/rules/EWONTFIX.com.xml new file mode 100644 index 000000000000..6bfac83be336 --- /dev/null +++ b/src/chrome/content/rules/EWONTFIX.com.xml @@ -0,0 +1,12 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/EWebScapes.com.xml b/src/chrome/content/rules/EWebScapes.com.xml index 96c76a7301b0..be0cd5b5946c 100644 --- a/src/chrome/content/rules/EWebScapes.com.xml +++ b/src/chrome/content/rules/EWebScapes.com.xml @@ -1,7 +1,6 @@ - - - - - @@ -27,14 +20,4 @@ - - - - - - - - diff --git a/src/chrome/content/rules/EWellness_magazine.xml b/src/chrome/content/rules/EWellness_magazine.xml index b55c7a0a00c3..2ff2fd59bb85 100644 --- a/src/chrome/content/rules/EWellness_magazine.xml +++ b/src/chrome/content/rules/EWellness_magazine.xml @@ -19,7 +19,7 @@ Fetch error: http://www.ewellnessmag.com/ => https://www.ewellnessmag.com/: (51, - cart --> - + diff --git a/src/chrome/content/rules/EXANTE.xml b/src/chrome/content/rules/EXANTE.xml index 5af6475c3f0a..27ce876f7339 100644 --- a/src/chrome/content/rules/EXANTE.xml +++ b/src/chrome/content/rules/EXANTE.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/EXXile.net.xml b/src/chrome/content/rules/EXXile.net.xml index 85826fd82729..2eb02eace4b1 100644 --- a/src/chrome/content/rules/EXXile.net.xml +++ b/src/chrome/content/rules/EXXile.net.xml @@ -5,7 +5,8 @@ - + + - + - - - - - - + + - + - - - - - - - + + + + - - - - diff --git a/src/chrome/content/rules/EXiled.xml b/src/chrome/content/rules/EXiled.xml index 88734220e5d7..9332273686ec 100644 --- a/src/chrome/content/rules/EXiled.xml +++ b/src/chrome/content/rules/EXiled.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/EZ-Web-Hosting.xml b/src/chrome/content/rules/EZ-Web-Hosting.xml index 2558fd6960f5..fd72c10801af 100644 --- a/src/chrome/content/rules/EZ-Web-Hosting.xml +++ b/src/chrome/content/rules/EZ-Web-Hosting.xml @@ -7,7 +7,7 @@ - + diff --git a/src/chrome/content/rules/EZGram.xml b/src/chrome/content/rules/EZGram.xml deleted file mode 100644 index 377cb903812a..000000000000 --- a/src/chrome/content/rules/EZGram.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/EZOSHosting.xml b/src/chrome/content/rules/EZOSHosting.xml index b73f136065c8..6c8925ed67d0 100644 --- a/src/chrome/content/rules/EZOSHosting.xml +++ b/src/chrome/content/rules/EZOSHosting.xml @@ -35,10 +35,12 @@ - + + + - + https://ezimages.eu/: (7, 'Failed to connect to ezimages.eu port 443: Connection refused') -Fetch error: http://www.ezimages.eu/ => https://ezimages.eu/: (7, 'Failed to connect to ezimages.eu port 443: Connection refused') Fetch error: http://ezimg.it/ => https://ezimg.it/: (28, 'Operation timed out after 30000 milliseconds with 0 bytes received') Disabled by https-everywhere-checker because: -Fetch error: http://ezimages.eu/ => https://ezimages.eu/: (7, 'Failed to connect to ezimages.eu port 443: Connection refused') -Fetch error: http://www.ezimages.eu/ => https://ezimages.eu/: (7, 'Failed to connect to ezimages.eu port 443: Connection refused') Fetch error: http://ezrss.it/ => https://ezrss.it/: (28, 'Resolving timed out after 10518 milliseconds') Fetch error: http://www.ezrss.it/ => https://ezrss.it/: (28, 'Resolving timed out after 10519 milliseconds') Fetch error: http://eztv.it/ => https://eztv.it/: (6, 'Could not resolve host: eztv.it') --> - + - - @@ -37,7 +31,7 @@ Fetch error: http://eztv.it/ => https://eztv.it/: (6, 'Could not resolve host: e - - - - - + - + --> + diff --git a/src/chrome/content/rules/Eagle_Rock_Reservation.xml b/src/chrome/content/rules/Eagle_Rock_Reservation.xml index e6e72993977b..efd5a4dbd204 100644 --- a/src/chrome/content/rules/Eagle_Rock_Reservation.xml +++ b/src/chrome/content/rules/Eagle_Rock_Reservation.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/EarthEnv.org.xml b/src/chrome/content/rules/EarthEnv.org.xml new file mode 100644 index 000000000000..5cfbfb6b5e32 --- /dev/null +++ b/src/chrome/content/rules/EarthEnv.org.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/EarthLink.xml b/src/chrome/content/rules/EarthLink.xml index c79fcbc8bacb..fa2d88ea480b 100644 --- a/src/chrome/content/rules/EarthLink.xml +++ b/src/chrome/content/rules/EarthLink.xml @@ -1,18 +1,18 @@ - + @@ -40,7 +40,7 @@ - + - + https://revselfservegg.eastlothian.gov.uk/: (6, 'Could not resolve host: revselfservegg.eastlothian.gov.uk') - East Lothian Council For other UK government coverage, see GOV.UK.xml. - - Nonfunctional hosts in *eastlothian.gov.uk: - - - collectiondates ᵃ - - pa ᵈ - - ᵃ Shows another domain - ᵈ Dropped - - - Insecure cookies are set for these domains and hosts: - - - eastlothian.gov.uk - - www.eastlothian.gov.uk - - .www.eastlothian.gov.uk - - - Mixed content: - - - Images on (www.)? from www.eastlothian.gov.uk ˢ - - ˢ Secured by us - + Non-functional hosts + Timeout was reached: + - access.eastlothian.gov.uk + - elcintranet.eastlothian.gov.uk + - goexplore.eastlothian.gov.uk + - host141.eastlothian.gov.uk + - pipex-gw.eastlothian.gov.uk + - svs.eastlothian.gov.uk + - swivel.eastlothian.gov.uk + + SSL peer certificate was not OK: + - collectiondates.eastlothian.gov.uk + + Incomplete certificate chain error: + - helpfromhilda.eastlothian.gov.uk + - mailhost.eastlothian.gov.uk + - mx1.eastlothian.gov.uk + - newt.eastlothian.gov.uk --> - - + - - + + + + + + + + - - - - - - - - - - - + diff --git a/src/chrome/content/rules/East_Riding.gov.uk.xml b/src/chrome/content/rules/East_Riding.gov.uk.xml index 67bf0ad89de2..d0e5cf4cd857 100644 --- a/src/chrome/content/rules/East_Riding.gov.uk.xml +++ b/src/chrome/content/rules/East_Riding.gov.uk.xml @@ -71,7 +71,7 @@ Non-2xx HTTP code: http://consult.eastriding.gov.uk/ (200) => https://eastriding ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -91,7 +91,7 @@ Non-2xx HTTP code: http://consult.eastriding.gov.uk/ (200) => https://eastriding - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Eastbay.xml b/src/chrome/content/rules/Eastbay.xml index 1a77a44c7f0a..dca7e9d312a6 100644 --- a/src/chrome/content/rules/Eastbay.xml +++ b/src/chrome/content/rules/Eastbay.xml @@ -35,9 +35,10 @@ Fetch error: http://eastbay.com/ => https://www.eastbay.com/: Cycle detected - U - - - + + + + @@ -46,7 +47,6 @@ Fetch error: http://eastbay.com/ => https://www.eastbay.com/: Cycle detected - U - + diff --git a/src/chrome/content/rules/Eastbay_Team_Services.xml b/src/chrome/content/rules/Eastbay_Team_Services.xml index d2d5911b8c34..36ca8a42d24b 100644 --- a/src/chrome/content/rules/Eastbay_Team_Services.xml +++ b/src/chrome/content/rules/Eastbay_Team_Services.xml @@ -14,16 +14,14 @@ Fetch error: http://eastbayteamservices.com/ => http://eastbayteamservices.com/: - ^ (expired, cert only matches www) --> - + - - + diff --git a/src/chrome/content/rules/Eastday.com.xml b/src/chrome/content/rules/Eastday.com.xml index 48a4a19cc300..52cdd1fac21a 100644 --- a/src/chrome/content/rules/Eastday.com.xml +++ b/src/chrome/content/rules/Eastday.com.xml @@ -1,35 +1,29 @@ - @@ -57,7 +51,7 @@ - + @@ -97,6 +91,8 @@ + + @@ -112,13 +108,14 @@ - - + + + diff --git a/src/chrome/content/rules/EasterSeals.org.xml b/src/chrome/content/rules/EasterSeals.org.xml new file mode 100644 index 000000000000..56ae9f71d709 --- /dev/null +++ b/src/chrome/content/rules/EasterSeals.org.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/Eastern-Collegiate-Taekwondo-Conference.xml b/src/chrome/content/rules/Eastern-Collegiate-Taekwondo-Conference.xml deleted file mode 100644 index b3bb685515ae..000000000000 --- a/src/chrome/content/rules/Eastern-Collegiate-Taekwondo-Conference.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/EasyChair.org.xml b/src/chrome/content/rules/EasyChair.org.xml index bf44664d06ee..1796d95d2b6c 100644 --- a/src/chrome/content/rules/EasyChair.org.xml +++ b/src/chrome/content/rules/EasyChair.org.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://easychair.org/ => https://easychair.org/: Too many redirects while fetching 'https://easychair.org/' --> - + diff --git a/src/chrome/content/rules/EasyDNS.xml b/src/chrome/content/rules/EasyDNS.xml index 8e22e417d5c2..de76451ee8e1 100644 --- a/src/chrome/content/rules/EasyDNS.xml +++ b/src/chrome/content/rules/EasyDNS.xml @@ -72,7 +72,7 @@ Fetch error: http://nps.easydns.com/ => https://nps.easydns.com/: (28, 'Connecti - signup.easydns.com from ws-na.amazon-adsystem.com --> - + diff --git a/src/chrome/content/rules/EasyJet.com.xml b/src/chrome/content/rules/EasyJet.com.xml index 02c061a3334f..946cbf0915dc 100644 --- a/src/chrome/content/rules/EasyJet.com.xml +++ b/src/chrome/content/rules/EasyJet.com.xml @@ -50,10 +50,14 @@ Non-2xx HTTP code: http://easyjet.com/ (200) => http://easyjet.com/ (403) * Rule disabled by default --> - + - + + + + + diff --git a/src/chrome/content/rules/EasyNews.com.xml b/src/chrome/content/rules/EasyNews.com.xml new file mode 100644 index 000000000000..3f0da2e311d8 --- /dev/null +++ b/src/chrome/content/rules/EasyNews.com.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/EasyNews.xml b/src/chrome/content/rules/EasyNews.xml deleted file mode 100644 index 93c2cb5ad1ba..000000000000 --- a/src/chrome/content/rules/EasyNews.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/EasyVoiceBiometrics.xml b/src/chrome/content/rules/EasyVoiceBiometrics.xml index 2ce4fa7ff418..c53b53bfde80 100644 --- a/src/chrome/content/rules/EasyVoiceBiometrics.xml +++ b/src/chrome/content/rules/EasyVoiceBiometrics.xml @@ -1,10 +1,10 @@ - + - + https://support.easy-hebergement.fr/: (6, 'Could not resolve host: support.easy-hebergement.fr') --> - + @@ -20,4 +20,4 @@ Fetch error: http://support.easy-hebergement.fr/ => https://support.easy-heberge - \ No newline at end of file + diff --git a/src/chrome/content/rules/Easyspace-expired.xml b/src/chrome/content/rules/Easyspace-expired.xml index 7dd415f99999..2c1cb5c6c789 100644 --- a/src/chrome/content/rules/Easyspace-expired.xml +++ b/src/chrome/content/rules/Easyspace-expired.xml @@ -10,7 +10,6 @@ - + diff --git a/src/chrome/content/rules/Easyspace.xml b/src/chrome/content/rules/Easyspace.xml index 6c131469e401..b1335ea42a43 100644 --- a/src/chrome/content/rules/Easyspace.xml +++ b/src/chrome/content/rules/Easyspace.xml @@ -12,13 +12,12 @@ --> - + - + - + diff --git a/src/chrome/content/rules/Easywallet.org.xml b/src/chrome/content/rules/Easywallet.org.xml index f851b8a4284f..beec998dbe73 100644 --- a/src/chrome/content/rules/Easywallet.org.xml +++ b/src/chrome/content/rules/Easywallet.org.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/EatbyDate.com.xml b/src/chrome/content/rules/EatbyDate.com.xml new file mode 100644 index 000000000000..c4c638a17623 --- /dev/null +++ b/src/chrome/content/rules/EatbyDate.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Ebi.ac.uk.xml b/src/chrome/content/rules/Ebi.ac.uk.xml index 0a6b1699c153..ac5357775b4c 100644 --- a/src/chrome/content/rules/Ebi.ac.uk.xml +++ b/src/chrome/content/rules/Ebi.ac.uk.xml @@ -2,5 +2,5 @@ - + diff --git a/src/chrome/content/rules/Ebis.ne.jp.xml b/src/chrome/content/rules/Ebis.ne.jp.xml index 42f77f65cdcc..cad4ceda8a90 100644 --- a/src/chrome/content/rules/Ebis.ne.jp.xml +++ b/src/chrome/content/rules/Ebis.ne.jp.xml @@ -21,7 +21,7 @@ ¹ Unsecurable <= shows another domain ² Unsecurable <= refused - + --> diff --git a/src/chrome/content/rules/Ebuyer.com.xml b/src/chrome/content/rules/Ebuyer.com.xml index b0ab7adf3afe..6b9db4664594 100644 --- a/src/chrome/content/rules/Ebuyer.com.xml +++ b/src/chrome/content/rules/Ebuyer.com.xml @@ -29,7 +29,7 @@ - image - forums - orders - - static + - static These altnames don't exist: @@ -53,7 +53,12 @@ duplicate target warning by blanket-rewriting !www here. --> - + + + + + + diff --git a/src/chrome/content/rules/Ebuzzing.xml b/src/chrome/content/rules/Ebuzzing.xml index 21e0e2c73ecc..9a885683fd1d 100644 --- a/src/chrome/content/rules/Ebuzzing.xml +++ b/src/chrome/content/rules/Ebuzzing.xml @@ -42,7 +42,7 @@ Fetch error: http://ebuzzing.de/ => https://social.ebuzzing.de/: (51, "SSL: no a - www.ebuzzing.com (prints domain name) --> - + diff --git a/src/chrome/content/rules/EchoDitto.com.xml b/src/chrome/content/rules/EchoDitto.com.xml index 60f1fe18a2e1..9965895b8b75 100644 --- a/src/chrome/content/rules/EchoDitto.com.xml +++ b/src/chrome/content/rules/EchoDitto.com.xml @@ -6,7 +6,7 @@ Fetch error: http://echoditto.com/ => https://echoditto.com/: (51, "SSL: no alte Disabled by https-everywhere-checker because: Fetch error: http://echoditto.com/ => https://echoditto.com/: (51, "SSL: no alternative certificate subject name matches target host name 'echoditto.com'") --> - + @@ -17,4 +17,4 @@ Fetch error: http://echoditto.com/ => https://echoditto.com/: (51, "SSL: no alte - \ No newline at end of file + diff --git a/src/chrome/content/rules/Echoplex.us.xml b/src/chrome/content/rules/Echoplex.us.xml index 855e36e26403..8326f9af644f 100644 --- a/src/chrome/content/rules/Echoplex.us.xml +++ b/src/chrome/content/rules/Echoplex.us.xml @@ -32,7 +32,7 @@ Fetch error: http://www.echoplex.us/ => https://echoplex.us/: (60, 'SSL certific - chat --> - + diff --git a/src/chrome/content/rules/Echothrust.com.xml b/src/chrome/content/rules/Echothrust.com.xml index 69a1b06b7cc9..56b5ba9778d7 100644 --- a/src/chrome/content/rules/Echothrust.com.xml +++ b/src/chrome/content/rules/Echothrust.com.xml @@ -1,29 +1,13 @@ - - + - + - + - + diff --git a/src/chrome/content/rules/Eclipse.xml b/src/chrome/content/rules/Eclipse.xml index 0282d7c4fd61..f948f28732f8 100644 --- a/src/chrome/content/rules/Eclipse.xml +++ b/src/chrome/content/rules/Eclipse.xml @@ -1,26 +1,71 @@ - + + + + + + + + + + + + - - + + + + + + - - - - - + + + + + + + + + + + + + + + + + + + + + + - + - diff --git a/src/chrome/content/rules/EclipseCon.org.xml b/src/chrome/content/rules/EclipseCon.org.xml new file mode 100644 index 000000000000..d90c56ef990e --- /dev/null +++ b/src/chrome/content/rules/EclipseCon.org.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Ecm74.com.xml b/src/chrome/content/rules/Ecm74.com.xml index f07ae539b0b8..380a07d8f05c 100644 --- a/src/chrome/content/rules/Ecm74.com.xml +++ b/src/chrome/content/rules/Ecm74.com.xml @@ -12,7 +12,7 @@ Fetch error: http://www.ecm74.com/ => https://ecm74.com/: (35, 'Unknown SSL prot www: cert only matches ^ecm74.com. --> - + diff --git a/src/chrome/content/rules/Econda-monitor.de.xml b/src/chrome/content/rules/Econda-monitor.de.xml index 8763c015c710..dc32fbf304c7 100644 --- a/src/chrome/content/rules/Econda-monitor.de.xml +++ b/src/chrome/content/rules/Econda-monitor.de.xml @@ -37,7 +37,7 @@ --> - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Economic-Policy-Institute.xml b/src/chrome/content/rules/Economic-Policy-Institute.xml index 8aaf624a5566..07f05419c812 100644 --- a/src/chrome/content/rules/Economic-Policy-Institute.xml +++ b/src/chrome/content/rules/Economic-Policy-Institute.xml @@ -9,12 +9,13 @@ --> - + + + - - + - + + + + - - - + - - + - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + diff --git a/src/chrome/content/rules/Economist_Intelligence_Unit.xml b/src/chrome/content/rules/Economist_Intelligence_Unit.xml index fbe7e8126fe8..e3b6ba5a9969 100644 --- a/src/chrome/content/rules/Economist_Intelligence_Unit.xml +++ b/src/chrome/content/rules/Economist_Intelligence_Unit.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Economy.com.xml b/src/chrome/content/rules/Economy.com.xml index 7823fa95cbcc..67dfc56da8d2 100644 --- a/src/chrome/content/rules/Economy.com.xml +++ b/src/chrome/content/rules/Economy.com.xml @@ -15,7 +15,7 @@ --> - + - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Ecustomer_support.com.xml b/src/chrome/content/rules/Ecustomer_support.com.xml index bd795b7bfa31..8582fac53f97 100644 --- a/src/chrome/content/rules/Ecustomer_support.com.xml +++ b/src/chrome/content/rules/Ecustomer_support.com.xml @@ -27,7 +27,7 @@ --> - + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Ecwid.xml b/src/chrome/content/rules/Ecwid.xml deleted file mode 100644 index 73acc10fd927..000000000000 --- a/src/chrome/content/rules/Ecwid.xml +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/EdUbuntu.xml b/src/chrome/content/rules/EdUbuntu.xml index 19eb5bdbbea8..0595489cf5bf 100644 --- a/src/chrome/content/rules/EdUbuntu.xml +++ b/src/chrome/content/rules/EdUbuntu.xml @@ -13,7 +13,7 @@ - + diff --git a/src/chrome/content/rules/EdWeek.org.xml b/src/chrome/content/rules/EdWeek.org.xml index c4ff16c9c096..4d432c97db41 100644 --- a/src/chrome/content/rules/EdWeek.org.xml +++ b/src/chrome/content/rules/EdWeek.org.xml @@ -13,7 +13,12 @@ - + + + + + + - + https://www.eduncovered.com/: Too ma - .eduncovered.com --> - + diff --git a/src/chrome/content/rules/Edarabia.com.xml b/src/chrome/content/rules/Edarabia.com.xml index 77f434d6e45a..74594f4dcc63 100644 --- a/src/chrome/content/rules/Edarabia.com.xml +++ b/src/chrome/content/rules/Edarabia.com.xml @@ -9,7 +9,7 @@ Fetch error: http://www.edarabia.com/ => https://www.edarabia.com/: Too many red - ^ (http reply) --> - + @@ -20,4 +20,4 @@ Fetch error: http://www.edarabia.com/ => https://www.edarabia.com/: Too many red - \ No newline at end of file + diff --git a/src/chrome/content/rules/Edas.xml b/src/chrome/content/rules/Edas.xml deleted file mode 100644 index a9746f77e254..000000000000 --- a/src/chrome/content/rules/Edas.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/EdenHost.com.xml b/src/chrome/content/rules/EdenHost.com.xml index 9ef965f8a2fc..8524f0ad3784 100644 --- a/src/chrome/content/rules/EdenHost.com.xml +++ b/src/chrome/content/rules/EdenHost.com.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Ederdrom.de.xml b/src/chrome/content/rules/Ederdrom.de.xml index 42c20f1d84e8..81cd0ce0baf7 100644 --- a/src/chrome/content/rules/Ederdrom.de.xml +++ b/src/chrome/content/rules/Ederdrom.de.xml @@ -5,14 +5,14 @@ Fetch error: http://oc.ederdrom.de/ => https://oc.ederdrom.de/: (6, 'Could not r Fetch error: http://www.ederdrom.de/ => https://www.ederdrom.de/: (60, 'SSL certificate problem: certificate has expired') --> - + - + - + @@ -20,10 +20,10 @@ Others: See Web.com.xml - + - + diff --git a/src/chrome/content/rules/Edgerunner.com.xml b/src/chrome/content/rules/Edgerunner.com.xml index 006fc8964ab9..c9b0fe31ce0f 100644 --- a/src/chrome/content/rules/Edgerunner.com.xml +++ b/src/chrome/content/rules/Edgerunner.com.xml @@ -14,4 +14,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Edinburgh.gov.uk.xml b/src/chrome/content/rules/Edinburgh.gov.uk.xml index 281c938975da..11180222aa02 100644 --- a/src/chrome/content/rules/Edinburgh.gov.uk.xml +++ b/src/chrome/content/rules/Edinburgh.gov.uk.xml @@ -16,7 +16,7 @@ These altnames don't exist: - www.consultationhub.edinburgh.gov.uk - + Insecure cookies are set for these domains and hosts: @@ -42,7 +42,7 @@ - + - + + + @@ -45,7 +47,6 @@ - + diff --git a/src/chrome/content/rules/Editola.xml b/src/chrome/content/rules/Editola.xml index c3009f24cda8..6a6e42f44ff1 100644 --- a/src/chrome/content/rules/Editola.xml +++ b/src/chrome/content/rules/Editola.xml @@ -7,7 +7,7 @@ Fetch error: http://www.editola.com/ => https://www.editola.com/: (7, 'Failed to Disabled by https-everywhere-checker because: Fetch error: http://editola.com/ => https://editola.com/: (28, 'Connection timed out after 10000 milliseconds') --> - + @@ -18,4 +18,4 @@ Fetch error: http://editola.com/ => https://editola.com/: (28, 'Connection timed - \ No newline at end of file + diff --git a/src/chrome/content/rules/EditorConfig.org.xml b/src/chrome/content/rules/EditorConfig.org.xml new file mode 100644 index 000000000000..976d92b2f7e2 --- /dev/null +++ b/src/chrome/content/rules/EditorConfig.org.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Editorialmanager.com.xml b/src/chrome/content/rules/Editorialmanager.com.xml index e087464859b5..39f183615198 100644 --- a/src/chrome/content/rules/Editorialmanager.com.xml +++ b/src/chrome/content/rules/Editorialmanager.com.xml @@ -15,7 +15,7 @@ - + diff --git a/src/chrome/content/rules/Edlund.dk.xml b/src/chrome/content/rules/Edlund.dk.xml index 153cf85288c1..0eefd37dc433 100644 --- a/src/chrome/content/rules/Edlund.dk.xml +++ b/src/chrome/content/rules/Edlund.dk.xml @@ -2,7 +2,7 @@ - + diff --git a/src/chrome/content/rules/Edoceo.com.xml b/src/chrome/content/rules/Edoceo.com.xml index 29c2fa53efa5..6077a1d3d6e8 100644 --- a/src/chrome/content/rules/Edoceo.com.xml +++ b/src/chrome/content/rules/Edoceo.com.xml @@ -1,7 +1,6 @@ - + https://www.edrive-hosting.cz/: (6 Disabled by https-everywhere-checker because: Fetch error: http://edrive-hosting.cz/ => https://edrive-hosting.cz/: (51, "SSL: no alternative certificate subject name matches target host name 'edrive-hosting.cz'") --> - + - + diff --git a/src/chrome/content/rules/EduBlogs.org.xml b/src/chrome/content/rules/EduBlogs.org.xml new file mode 100644 index 000000000000..1a581e02f3cd --- /dev/null +++ b/src/chrome/content/rules/EduBlogs.org.xml @@ -0,0 +1,14 @@ + + + + + + + + diff --git a/src/chrome/content/rules/EduId.ch.xml b/src/chrome/content/rules/EduId.ch.xml new file mode 100644 index 000000000000..16bdbe93c380 --- /dev/null +++ b/src/chrome/content/rules/EduId.ch.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Edublogs.xml b/src/chrome/content/rules/Edublogs.xml deleted file mode 100644 index f1b4184ced4f..000000000000 --- a/src/chrome/content/rules/Edublogs.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/EducaCursos.xml b/src/chrome/content/rules/EducaCursos.xml index c9e1d00f8fad..59b87bd3f503 100644 --- a/src/chrome/content/rules/EducaCursos.xml +++ b/src/chrome/content/rules/EducaCursos.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/EducateAutism.com.xml b/src/chrome/content/rules/EducateAutism.com.xml new file mode 100644 index 000000000000..3bcc9eb8d423 --- /dev/null +++ b/src/chrome/content/rules/EducateAutism.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Educate_the_world.com.au.xml b/src/chrome/content/rules/Educate_the_world.com.au.xml index 14a6979a10b7..01f8d3106e14 100644 --- a/src/chrome/content/rules/Educate_the_world.com.au.xml +++ b/src/chrome/content/rules/Educate_the_world.com.au.xml @@ -16,7 +16,7 @@ Fetch error: http://www.educatetheworld.com.au/ => https://www.educatetheworld.c * Secured by us --> - + diff --git a/src/chrome/content/rules/Education-Next.xml b/src/chrome/content/rules/Education-Next.xml deleted file mode 100644 index b12066a88d8e..000000000000 --- a/src/chrome/content/rules/Education-Next.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/EducationNext.org.xml b/src/chrome/content/rules/EducationNext.org.xml new file mode 100644 index 000000000000..507270667f85 --- /dev/null +++ b/src/chrome/content/rules/EducationNext.org.xml @@ -0,0 +1,11 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Eduid.cz.xml b/src/chrome/content/rules/Eduid.cz.xml index 22364051f5dc..5a4d318420d0 100644 --- a/src/chrome/content/rules/Eduid.cz.xml +++ b/src/chrome/content/rules/Eduid.cz.xml @@ -5,7 +5,7 @@ Fetch error: http://www2.eduid.cz/ => https://www2.eduid.cz/: (51, "SSL: no alte Fetch error: http://www3.eduid.cz/ => https://www3.eduid.cz/: (51, "SSL: no alternative certificate subject name matches target host name 'www3.eduid.cz'") --> - + diff --git a/src/chrome/content/rules/Eduroam.org.xml b/src/chrome/content/rules/Eduroam.org.xml deleted file mode 100644 index be309020acc4..000000000000 --- a/src/chrome/content/rules/Eduroam.org.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Eduroam_ES.xml b/src/chrome/content/rules/Eduroam_ES.xml index 21d70f1327f2..8855cf4900ec 100644 --- a/src/chrome/content/rules/Eduroam_ES.xml +++ b/src/chrome/content/rules/Eduroam_ES.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Eerdmans.com.xml b/src/chrome/content/rules/Eerdmans.com.xml index 0453088a32ff..5241c14fbce0 100644 --- a/src/chrome/content/rules/Eerdmans.com.xml +++ b/src/chrome/content/rules/Eerdmans.com.xml @@ -12,7 +12,7 @@ - + diff --git a/src/chrome/content/rules/Effective-Measure.xml b/src/chrome/content/rules/Effective-Measure.xml index c9615545411e..06710f33b80f 100644 --- a/src/chrome/content/rules/Effective-Measure.xml +++ b/src/chrome/content/rules/Effective-Measure.xml @@ -1,10 +1,10 @@ - - + + @@ -47,7 +48,6 @@ Fetch error: http://effectivemeasure.net/ => https://effectivemeasure.net/: (28, - - + https://effectivemeasure.net/: (28, + + diff --git a/src/chrome/content/rules/EfficiOS.xml b/src/chrome/content/rules/EfficiOS.xml index bc658e465ae1..a3a1d6607a6e 100644 --- a/src/chrome/content/rules/EfficiOS.xml +++ b/src/chrome/content/rules/EfficiOS.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Effiliation.xml b/src/chrome/content/rules/Effiliation.xml index dee1b1b9ffde..260e56567c60 100644 --- a/src/chrome/content/rules/Effiliation.xml +++ b/src/chrome/content/rules/Effiliation.xml @@ -14,4 +14,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Egg.xml b/src/chrome/content/rules/Egg.xml index 4e2876e1e78b..0909ab6c28d8 100644 --- a/src/chrome/content/rules/Egg.xml +++ b/src/chrome/content/rules/Egg.xml @@ -1,7 +1,10 @@ - + + + + - + diff --git a/src/chrome/content/rules/Egnyte.xml b/src/chrome/content/rules/Egnyte.xml index a36d6d68a13f..c13426d10ae4 100644 --- a/src/chrome/content/rules/Egnyte.xml +++ b/src/chrome/content/rules/Egnyte.xml @@ -3,7 +3,7 @@ - + - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Egotastic.xml b/src/chrome/content/rules/Egotastic.xml index c9dd2e8e73a5..81f64ba379b9 100644 --- a/src/chrome/content/rules/Egotastic.xml +++ b/src/chrome/content/rules/Egotastic.xml @@ -5,13 +5,13 @@ Fetch error: http://egotasticallstars.com/ => https://egotasticallstars.com/: (5 Fetch error: http://www.egotasticallstars.com/ => https://www.egotasticallstars.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.egotasticallstars.com'") --> - + - + diff --git a/src/chrome/content/rules/Egy.best.xml b/src/chrome/content/rules/Egy.best.xml new file mode 100644 index 000000000000..0f9cd6d79fcc --- /dev/null +++ b/src/chrome/content/rules/Egy.best.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Ehospice.xml b/src/chrome/content/rules/Ehospice.xml index 1c66b6c64f94..c1ff16b79cf3 100644 --- a/src/chrome/content/rules/Ehospice.xml +++ b/src/chrome/content/rules/Ehospice.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Ehrensenf.xml b/src/chrome/content/rules/Ehrensenf.xml index 968b699334ae..d714f87239f5 100644 --- a/src/chrome/content/rules/Ehrensenf.xml +++ b/src/chrome/content/rules/Ehrensenf.xml @@ -2,7 +2,7 @@ - + diff --git a/src/chrome/content/rules/Eicar.org.xml b/src/chrome/content/rules/Eicar.org.xml new file mode 100644 index 000000000000..0ec7ed927b0b --- /dev/null +++ b/src/chrome/content/rules/Eicar.org.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Eid.lt.xml b/src/chrome/content/rules/Eid.lt.xml index a5cfb2747e7e..518da8218afd 100644 --- a/src/chrome/content/rules/Eid.lt.xml +++ b/src/chrome/content/rules/Eid.lt.xml @@ -10,12 +10,11 @@ Fetch error: http://stork.eid.lt/ => https://stork.eid.lt/: (28, 'Connection tim - (www.) (times out) --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Eide-ITC.no.xml b/src/chrome/content/rules/Eide-ITC.no.xml index 64e189583535..ce125b5d7be1 100644 --- a/src/chrome/content/rules/Eide-ITC.no.xml +++ b/src/chrome/content/rules/Eide-ITC.no.xml @@ -7,7 +7,7 @@ Fetch error: http://www.eide-itc.no/ => https://eide-itc.no/: (51, "SSL: no alte Eide ITC Consulting --> - + @@ -19,4 +19,4 @@ Fetch error: http://www.eide-itc.no/ => https://eide-itc.no/: (51, "SSL: no alte - \ No newline at end of file + diff --git a/src/chrome/content/rules/Eindbazen.net.xml b/src/chrome/content/rules/Eindbazen.net.xml index 3a4c928cdeb8..4601ef43fc29 100644 --- a/src/chrome/content/rules/Eindbazen.net.xml +++ b/src/chrome/content/rules/Eindbazen.net.xml @@ -6,7 +6,7 @@ Non-2xx HTTP code: http://ctf.eindbazen.net/ (200) => https://ctf.eindbazen.net/ www.eindbazen.net: Mismatched --> - + diff --git a/src/chrome/content/rules/Eindhoven.nl.xml b/src/chrome/content/rules/Eindhoven.nl.xml index 32ba2591ed2e..9da0990060b9 100644 --- a/src/chrome/content/rules/Eindhoven.nl.xml +++ b/src/chrome/content/rules/Eindhoven.nl.xml @@ -24,7 +24,7 @@ --> - + - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Ejaaba.com.xml b/src/chrome/content/rules/Ejaaba.com.xml new file mode 100644 index 000000000000..f96f264e2a5e --- /dev/null +++ b/src/chrome/content/rules/Ejaaba.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Ekiga.xml b/src/chrome/content/rules/Ekiga.xml deleted file mode 100644 index 820fb24bbd49..000000000000 --- a/src/chrome/content/rules/Ekiga.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/EkmPowershop.com.xml b/src/chrome/content/rules/EkmPowershop.com.xml deleted file mode 100644 index a1b46b5b4d49..000000000000 --- a/src/chrome/content/rules/EkmPowershop.com.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Ekm_secure.com.xml b/src/chrome/content/rules/Ekm_secure.com.xml index e787611f91f5..5c2bce4fa8d4 100644 --- a/src/chrome/content/rules/Ekm_secure.com.xml +++ b/src/chrome/content/rules/Ekm_secure.com.xml @@ -1,11 +1,7 @@ - - + - - + diff --git a/src/chrome/content/rules/Ekm_secure6.co.uk.xml b/src/chrome/content/rules/Ekm_secure6.co.uk.xml deleted file mode 100644 index 55ebbdad5866..000000000000 --- a/src/chrome/content/rules/Ekm_secure6.co.uk.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Ekm_secure_22.co.uk.xml b/src/chrome/content/rules/Ekm_secure_22.co.uk.xml deleted file mode 100644 index 190234461bd0..000000000000 --- a/src/chrome/content/rules/Ekm_secure_22.co.uk.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/EksiSozluk.com.xml b/src/chrome/content/rules/EksiSozluk.com.xml new file mode 100644 index 000000000000..931a3646ddcd --- /dev/null +++ b/src/chrome/content/rules/EksiSozluk.com.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/El_pueblo.xml b/src/chrome/content/rules/El_pueblo.xml index ff7b0599c5fc..c9e4d394c95f 100644 --- a/src/chrome/content/rules/El_pueblo.xml +++ b/src/chrome/content/rules/El_pueblo.xml @@ -11,7 +11,7 @@ Fetch error: http://elpueblo.com/ => https://elpueblo.com/: (7, 'Failed to conne - wac.7ee8.edgecastcdn.net/807EE8/ --> - + @@ -22,4 +22,4 @@ Fetch error: http://elpueblo.com/ => https://elpueblo.com/: (7, 'Failed to conne - \ No newline at end of file + diff --git a/src/chrome/content/rules/Elaf_Net_TV.xml b/src/chrome/content/rules/Elaf_Net_TV.xml index 302ef88dda9f..38d85fcf1dd4 100644 --- a/src/chrome/content/rules/Elaf_Net_TV.xml +++ b/src/chrome/content/rules/Elaf_Net_TV.xml @@ -5,7 +5,7 @@ Fetch error: http://elafnettv.com/ => https://elafnettv.com/: Too many redirects Fetch error: http://www.elafnettv.com/ => https://www.elafnettv.com/: Too many redirects while fetching 'https://www.elafnettv.com/' --> - + @@ -16,4 +16,4 @@ Fetch error: http://www.elafnettv.com/ => https://www.elafnettv.com/: Too many r - \ No newline at end of file + diff --git a/src/chrome/content/rules/Elal.co.il.xml b/src/chrome/content/rules/Elal.co.il.xml new file mode 100644 index 000000000000..cacd1b5c1dfe --- /dev/null +++ b/src/chrome/content/rules/Elal.co.il.xml @@ -0,0 +1,16 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Elal.com.xml b/src/chrome/content/rules/Elal.com.xml new file mode 100644 index 000000000000..944472c2140b --- /dev/null +++ b/src/chrome/content/rules/Elal.com.xml @@ -0,0 +1,14 @@ + + + + + + diff --git a/src/chrome/content/rules/Elanex.biz.xml b/src/chrome/content/rules/Elanex.biz.xml deleted file mode 100644 index 489265f2c3ab..000000000000 --- a/src/chrome/content/rules/Elanex.biz.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Elastic.co.xml b/src/chrome/content/rules/Elastic.co.xml index 776c2b2c7c6a..8408c8fc1e94 100644 --- a/src/chrome/content/rules/Elastic.co.xml +++ b/src/chrome/content/rules/Elastic.co.xml @@ -8,7 +8,7 @@ - + - - - - - - - - - - - diff --git a/src/chrome/content/rules/ElberethZone.xml b/src/chrome/content/rules/ElberethZone.xml new file mode 100644 index 000000000000..d926cda86d9d --- /dev/null +++ b/src/chrome/content/rules/ElberethZone.xml @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Elcomsoft.xml b/src/chrome/content/rules/Elcomsoft.xml index c1ecd74dbe8f..afac6ffc362c 100644 --- a/src/chrome/content/rules/Elcomsoft.xml +++ b/src/chrome/content/rules/Elcomsoft.xml @@ -14,4 +14,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Elder_Scrolls_Online.com.xml b/src/chrome/content/rules/Elder_Scrolls_Online.com.xml index 9d7801134fa0..e197540e350d 100644 --- a/src/chrome/content/rules/Elder_Scrolls_Online.com.xml +++ b/src/chrome/content/rules/Elder_Scrolls_Online.com.xml @@ -30,7 +30,7 @@ Fetch error: http://elderscrollsonline.com/ => https://elderscrollsonline.com/: * Secured by us --> - + @@ -43,5 +43,5 @@ Fetch error: http://elderscrollsonline.com/ => https://elderscrollsonline.com/: - + diff --git a/src/chrome/content/rules/Electoral_Commission.org.uk.xml b/src/chrome/content/rules/Electoral_Commission.org.uk.xml index 1f194273d8e3..62da010655d4 100644 --- a/src/chrome/content/rules/Electoral_Commission.org.uk.xml +++ b/src/chrome/content/rules/Electoral_Commission.org.uk.xml @@ -22,7 +22,7 @@ --> - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Electric_Studio.xml b/src/chrome/content/rules/Electric_Studio.xml index fe65f2c99bb3..5edd46715aeb 100644 --- a/src/chrome/content/rules/Electric_Studio.xml +++ b/src/chrome/content/rules/Electric_Studio.xml @@ -18,12 +18,11 @@ Fetch error: http://clients.electricstudio.co.uk/ => https://clients.electricstu - cdn (404; mismatched, CN: *.netdna-ssl.com) --> - + - + diff --git a/src/chrome/content/rules/Electronic-Arts.xml b/src/chrome/content/rules/Electronic-Arts.xml index f273b545b0bd..115058c5d1c5 100644 --- a/src/chrome/content/rules/Electronic-Arts.xml +++ b/src/chrome/content/rules/Electronic-Arts.xml @@ -1,77 +1,80 @@ - + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - + + - - - - - - - - - - - - - - - - + to="https://eamobile.122.2o7.net/"/> + diff --git a/src/chrome/content/rules/ElectronicInsanity.com.xml b/src/chrome/content/rules/ElectronicInsanity.com.xml index 939b751bde6e..d4e1fc7242df 100644 --- a/src/chrome/content/rules/ElectronicInsanity.com.xml +++ b/src/chrome/content/rules/ElectronicInsanity.com.xml @@ -11,7 +11,7 @@ Fetch error: http://electronicinsanity.com/ => https://www.electronicinsanity.co * Shows api.vistumbler.net --> - + diff --git a/src/chrome/content/rules/Electrospaces.net.xml b/src/chrome/content/rules/Electrospaces.net.xml new file mode 100644 index 000000000000..afc152c2254a --- /dev/null +++ b/src/chrome/content/rules/Electrospaces.net.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Electrum.org.xml b/src/chrome/content/rules/Electrum.org.xml deleted file mode 100644 index e8cd1a39a945..000000000000 --- a/src/chrome/content/rules/Electrum.org.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Elegant_Themes.com.xml b/src/chrome/content/rules/Elegant_Themes.com.xml index 0b894d527c3a..d3fc0acb3d61 100644 --- a/src/chrome/content/rules/Elegant_Themes.com.xml +++ b/src/chrome/content/rules/Elegant_Themes.com.xml @@ -22,7 +22,7 @@ --> - + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Element14.com-Mixed.xml b/src/chrome/content/rules/Element14.com-Mixed.xml deleted file mode 100644 index 5474047be47b..000000000000 --- a/src/chrome/content/rules/Element14.com-Mixed.xml +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Element14.com.xml b/src/chrome/content/rules/Element14.com.xml index 42b42a4e5e61..ba9838f537fb 100644 --- a/src/chrome/content/rules/Element14.com.xml +++ b/src/chrome/content/rules/Element14.com.xml @@ -1,6 +1,12 @@ + - - + + - + diff --git a/src/chrome/content/rules/ElephantLeague.org.xml b/src/chrome/content/rules/ElephantLeague.org.xml new file mode 100644 index 000000000000..baec548b2157 --- /dev/null +++ b/src/chrome/content/rules/ElephantLeague.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/ElevenPaths.xml b/src/chrome/content/rules/ElevenPaths.xml deleted file mode 100644 index 53f7df86057e..000000000000 --- a/src/chrome/content/rules/ElevenPaths.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/Elfa.se.xml b/src/chrome/content/rules/Elfa.se.xml index 6516d6bc5aea..5f6c1ef75cc5 100644 --- a/src/chrome/content/rules/Elfa.se.xml +++ b/src/chrome/content/rules/Elfa.se.xml @@ -1,7 +1,5 @@ - + @@ -33,6 +35,8 @@ Fetch error: http://www1.elfa.se/ => https://www1.elfa.se/: (7, 'Failed to conne + diff --git a/src/chrome/content/rules/Elgas.com.au.xml b/src/chrome/content/rules/Elgas.com.au.xml new file mode 100644 index 000000000000..0a0a6bdc03a8 --- /dev/null +++ b/src/chrome/content/rules/Elgas.com.au.xml @@ -0,0 +1,19 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Elgiganten.xml b/src/chrome/content/rules/Elgiganten.xml index 31379b34d17e..e9353a1725da 100644 --- a/src/chrome/content/rules/Elgiganten.xml +++ b/src/chrome/content/rules/Elgiganten.xml @@ -8,7 +8,7 @@ - presentjakten.elgiganten.se ¹ - pressroom.elgiganten.dk ¹ - tilbudsavis.elgiganten.dk ¹ - + ¹ Mismatched ² Timeout diff --git a/src/chrome/content/rules/Eli-Lilly.xml b/src/chrome/content/rules/Eli-Lilly.xml index b47a09664ca1..95699606d714 100644 --- a/src/chrome/content/rules/Eli-Lilly.xml +++ b/src/chrome/content/rules/Eli-Lilly.xml @@ -4,10 +4,9 @@ - + - + diff --git a/src/chrome/content/rules/Elie_Bursztein.xml b/src/chrome/content/rules/Elie_Bursztein.xml index 409670255231..12c92d209421 100644 --- a/src/chrome/content/rules/Elie_Bursztein.xml +++ b/src/chrome/content/rules/Elie_Bursztein.xml @@ -6,4 +6,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/EliteKeyboards.com.xml b/src/chrome/content/rules/EliteKeyboards.com.xml deleted file mode 100644 index 9b29954b5a90..000000000000 --- a/src/chrome/content/rules/EliteKeyboards.com.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Elite_Casting_Network.com.xml b/src/chrome/content/rules/Elite_Casting_Network.com.xml index ffefecff9373..8586de08d95c 100644 --- a/src/chrome/content/rules/Elite_Casting_Network.com.xml +++ b/src/chrome/content/rules/Elite_Casting_Network.com.xml @@ -12,7 +12,8 @@ - + + - - + + + + - - + diff --git a/src/chrome/content/rules/Elixir-Lang.org.xml b/src/chrome/content/rules/Elixir-Lang.org.xml new file mode 100644 index 000000000000..367ec3d71f31 --- /dev/null +++ b/src/chrome/content/rules/Elixir-Lang.org.xml @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Elizabeth_Smart_Foundation.xml b/src/chrome/content/rules/Elizabeth_Smart_Foundation.xml index edbb0c6b5345..37d14d245916 100644 --- a/src/chrome/content/rules/Elizabeth_Smart_Foundation.xml +++ b/src/chrome/content/rules/Elizabeth_Smart_Foundation.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Elliptic-Technologies.xml b/src/chrome/content/rules/Elliptic-Technologies.xml index 6fb681ec2465..24847efd423a 100644 --- a/src/chrome/content/rules/Elliptic-Technologies.xml +++ b/src/chrome/content/rules/Elliptic-Technologies.xml @@ -5,13 +5,13 @@ Fetch error: http://elliptictech.com/ => https://elliptictech.com/: (51, "SSL: n Fetch error: http://www.elliptictech.com/ => https://www.elliptictech.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.elliptictech.com'") --> - + - + diff --git a/src/chrome/content/rules/Elmbridge.gov.uk-falsemixed.xml b/src/chrome/content/rules/Elmbridge.gov.uk-falsemixed.xml deleted file mode 100644 index 06bff8c6b38b..000000000000 --- a/src/chrome/content/rules/Elmbridge.gov.uk-falsemixed.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Elmbridge.gov.uk.xml b/src/chrome/content/rules/Elmbridge.gov.uk.xml index 81de3f40fa89..e3bf6dbee581 100644 --- a/src/chrome/content/rules/Elmbridge.gov.uk.xml +++ b/src/chrome/content/rules/Elmbridge.gov.uk.xml @@ -63,7 +63,7 @@ - + + + + + + + + diff --git a/src/chrome/content/rules/Elo_Global_e-services.xml b/src/chrome/content/rules/Elo_Global_e-services.xml index 814b304e69a8..73fe6532e999 100644 --- a/src/chrome/content/rules/Elo_Global_e-services.xml +++ b/src/chrome/content/rules/Elo_Global_e-services.xml @@ -7,7 +7,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://elotouchexpress.com/ => https://elotouchexpress.com/: (60, 'SSL certificate problem: unable to get local issuer certificate') Fetch error: http://www.elotouchexpress.com/ => https://www.elotouchexpress.com/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + @@ -18,4 +18,4 @@ Fetch error: http://www.elotouchexpress.com/ => https://www.elotouchexpress.com/ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Eloqua-clients.xml b/src/chrome/content/rules/Eloqua-clients.xml deleted file mode 100644 index 5f44a27fd089..000000000000 --- a/src/chrome/content/rules/Eloqua-clients.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Eloqua-mismatches.xml b/src/chrome/content/rules/Eloqua-mismatches.xml index b871dc084bbe..23b4e02ced68 100644 --- a/src/chrome/content/rules/Eloqua-mismatches.xml +++ b/src/chrome/content/rules/Eloqua-mismatches.xml @@ -16,9 +16,7 @@ --> - - - + https://cloudconnectors.eloqu For other Oracle coverage, see Oracle.xml. - - Other Eloqua rulesets: - - - Eloqua-clients.xml - - CDN buckets: - now.eloqua.com.edgesuite.net @@ -91,7 +85,7 @@ Fetch error: http://cloudconnectors.eloqua.com/ => https://cloudconnectors.eloqu ᶜ See https://owasp.org/index.php/SecureFlag --> - + diff --git a/src/chrome/content/rules/Eloquent_JavaScript.net.xml b/src/chrome/content/rules/Eloquent_JavaScript.net.xml index b73ccff178d3..4c84237c2d3b 100644 --- a/src/chrome/content/rules/Eloquent_JavaScript.net.xml +++ b/src/chrome/content/rules/Eloquent_JavaScript.net.xml @@ -1,19 +1,13 @@ - - - + + + - - \ No newline at end of file + diff --git a/src/chrome/content/rules/Els-CDN.com.xml b/src/chrome/content/rules/Els-CDN.com.xml index bf91335a9a9a..3f8bc53d9187 100644 --- a/src/chrome/content/rules/Els-CDN.com.xml +++ b/src/chrome/content/rules/Els-CDN.com.xml @@ -1,26 +1,22 @@ - + + + + - - - - - - + diff --git a/src/chrome/content/rules/Elsevier-mismatches.xml b/src/chrome/content/rules/Elsevier-mismatches.xml deleted file mode 100644 index b0366dbc535b..000000000000 --- a/src/chrome/content/rules/Elsevier-mismatches.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Elsevier.ca.xml b/src/chrome/content/rules/Elsevier.ca.xml index f77597ec95e2..dd3a968e2184 100644 --- a/src/chrome/content/rules/Elsevier.ca.xml +++ b/src/chrome/content/rules/Elsevier.ca.xml @@ -18,7 +18,7 @@ --> - + - + https://www.elsevierhealth.com/: * Mismatched --> - + @@ -39,7 +39,7 @@ Fetch error: http://www.elsevierhealth.com/ => https://www.elsevierhealth.com/: - + - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/EludeVisibility.org.xml b/src/chrome/content/rules/EludeVisibility.org.xml new file mode 100644 index 000000000000..cefe18585dc0 --- /dev/null +++ b/src/chrome/content/rules/EludeVisibility.org.xml @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/EmacsWiki.org.xml b/src/chrome/content/rules/EmacsWiki.org.xml index 546d7fb24cec..310dc2ec0798 100644 --- a/src/chrome/content/rules/EmacsWiki.org.xml +++ b/src/chrome/content/rules/EmacsWiki.org.xml @@ -13,7 +13,7 @@ - + https://emailvision.com/: (60, 'SSL cert * Works, mismatched, CN: *.emv3.com --> - + diff --git a/src/chrome/content/rules/Emap_Awards.xml b/src/chrome/content/rules/Emap_Awards.xml index 5d1112e73cb1..98c6bffea01f 100644 --- a/src/chrome/content/rules/Emap_Awards.xml +++ b/src/chrome/content/rules/Emap_Awards.xml @@ -5,7 +5,7 @@ Fetch error: http://emapawards.com/ => https://emapawards.com/: (28, 'Connection Fetch error: http://www.emapawards.com/ => https://www.emapawards.com/: (28, 'Connection timed out after 20001 milliseconds') --> - + @@ -16,4 +16,4 @@ Fetch error: http://www.emapawards.com/ => https://www.emapawards.com/: (28, 'Co - \ No newline at end of file + diff --git a/src/chrome/content/rules/Embed.ly.xml b/src/chrome/content/rules/Embed.ly.xml index 122ea162ffa2..a7b6c069a25d 100644 --- a/src/chrome/content/rules/Embed.ly.xml +++ b/src/chrome/content/rules/Embed.ly.xml @@ -35,7 +35,7 @@ Fetch error: http://t.embed.ly/ => https://t.embed.ly/: (28, 'Operation timed ou - api.embed.ly --> - + diff --git a/src/chrome/content/rules/Embedded_ARM.com.xml b/src/chrome/content/rules/Embedded_ARM.com.xml index 90781818a978..380e336c45cc 100644 --- a/src/chrome/content/rules/Embedded_ARM.com.xml +++ b/src/chrome/content/rules/Embedded_ARM.com.xml @@ -12,13 +12,13 @@ Fetch error: http://embeddedarm.com/ => https://embeddedarm.com/: (51, "SSL: no ʳ Refused --> - + - + + + + + + + diff --git a/src/chrome/content/rules/Emberjs.com.xml b/src/chrome/content/rules/Emberjs.com.xml new file mode 100644 index 000000000000..ae79d83a8fe7 --- /dev/null +++ b/src/chrome/content/rules/Emberjs.com.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Emcraft.com.xml b/src/chrome/content/rules/Emcraft.com.xml index d6df253277f9..ca85ec053001 100644 --- a/src/chrome/content/rules/Emcraft.com.xml +++ b/src/chrome/content/rules/Emcraft.com.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://order.emcraft.com/ => https://order.emcraft.com/: (6, 'Could not resolve host: order.emcraft.com') --> - + diff --git a/src/chrome/content/rules/Emediate.dk.xml b/src/chrome/content/rules/Emediate.dk.xml index 389c8ae595ed..051e2b2aa934 100644 --- a/src/chrome/content/rules/Emediate.dk.xml +++ b/src/chrome/content/rules/Emediate.dk.xml @@ -20,7 +20,7 @@ - + - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Emediate.se.xml b/src/chrome/content/rules/Emediate.se.xml index 86a65c3181b5..f935c902b90c 100644 --- a/src/chrome/content/rules/Emediate.se.xml +++ b/src/chrome/content/rules/Emediate.se.xml @@ -23,7 +23,7 @@ --> - + https://emeraldinsight.com/: Cycle detected - URL already encountered: https://emeraldinsight.com/action/cookieAbsent Fetch error: http://www.emeraldinsight.com/ => https://www.emeraldinsight.com/: Cycle detected - URL already encountered: https://www.emeraldinsight.com/action/cookieAbsent --> - + - + diff --git a/src/chrome/content/rules/EmergeConference.ca.xml b/src/chrome/content/rules/EmergeConference.ca.xml new file mode 100644 index 000000000000..5d9d6819dd2b --- /dev/null +++ b/src/chrome/content/rules/EmergeConference.ca.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/EmergingThreats.net.xml b/src/chrome/content/rules/EmergingThreats.net.xml new file mode 100644 index 000000000000..eb2791589721 --- /dev/null +++ b/src/chrome/content/rules/EmergingThreats.net.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Emerging_Threats.net-falsemixed.xml b/src/chrome/content/rules/Emerging_Threats.net-falsemixed.xml deleted file mode 100644 index 67e0daf4b6e8..000000000000 --- a/src/chrome/content/rules/Emerging_Threats.net-falsemixed.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Emerging_Threats.net.xml b/src/chrome/content/rules/Emerging_Threats.net.xml deleted file mode 100644 index 17120f9b7573..000000000000 --- a/src/chrome/content/rules/Emerging_Threats.net.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Emin_Huseynov.com.xml b/src/chrome/content/rules/Emin_Huseynov.com.xml deleted file mode 100644 index fe0e6c16d65a..000000000000 --- a/src/chrome/content/rules/Emin_Huseynov.com.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Emojipedia.org.xml b/src/chrome/content/rules/Emojipedia.org.xml new file mode 100644 index 000000000000..970a5216e9c8 --- /dev/null +++ b/src/chrome/content/rules/Emojipedia.org.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/EmoryHealthcare.xml b/src/chrome/content/rules/EmoryHealthcare.xml index b20eb3625c44..bafd53df64e3 100644 --- a/src/chrome/content/rules/EmoryHealthcare.xml +++ b/src/chrome/content/rules/EmoryHealthcare.xml @@ -16,7 +16,7 @@ - + diff --git a/src/chrome/content/rules/EmpFlix.xml b/src/chrome/content/rules/EmpFlix.xml index 050635fb5d90..c6eb43e19e6c 100644 --- a/src/chrome/content/rules/EmpFlix.xml +++ b/src/chrome/content/rules/EmpFlix.xml @@ -21,7 +21,7 @@ - + - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Employeeexpress.gov.xml b/src/chrome/content/rules/Employeeexpress.gov.xml deleted file mode 100644 index 73f01543008b..000000000000 --- a/src/chrome/content/rules/Employeeexpress.gov.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/EmploymentLaw101.ca.xml b/src/chrome/content/rules/EmploymentLaw101.ca.xml new file mode 100644 index 000000000000..1bf643392672 --- /dev/null +++ b/src/chrome/content/rules/EmploymentLaw101.ca.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Emply.net.xml b/src/chrome/content/rules/Emply.net.xml index e834ca8b3930..80d48fe9503d 100644 --- a/src/chrome/content/rules/Emply.net.xml +++ b/src/chrome/content/rules/Emply.net.xml @@ -3,7 +3,7 @@ - + diff --git a/src/chrome/content/rules/Emptypage.jp.xml b/src/chrome/content/rules/Emptypage.jp.xml new file mode 100644 index 000000000000..f7fdb889d546 --- /dev/null +++ b/src/chrome/content/rules/Emptypage.jp.xml @@ -0,0 +1,16 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Emptywheel.net.xml b/src/chrome/content/rules/Emptywheel.net.xml index 9e69c57203a3..fb6b4dc47334 100644 --- a/src/chrome/content/rules/Emptywheel.net.xml +++ b/src/chrome/content/rules/Emptywheel.net.xml @@ -31,7 +31,7 @@ --> - + - + + + + + @@ -35,6 +39,6 @@ - + diff --git a/src/chrome/content/rules/EmuNewz-Network.xml b/src/chrome/content/rules/EmuNewz-Network.xml deleted file mode 100644 index c75903f61ad0..000000000000 --- a/src/chrome/content/rules/EmuNewz-Network.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/EmuNewz.net.xml b/src/chrome/content/rules/EmuNewz.net.xml new file mode 100644 index 000000000000..583925b6a3be --- /dev/null +++ b/src/chrome/content/rules/EmuNewz.net.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/EmulationStation.org.xml b/src/chrome/content/rules/EmulationStation.org.xml new file mode 100644 index 000000000000..5ea869c7a96d --- /dev/null +++ b/src/chrome/content/rules/EmulationStation.org.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Emulex.xml b/src/chrome/content/rules/Emulex.xml index 2be5c2ebca5d..e5107fd1dc6f 100644 --- a/src/chrome/content/rules/Emulex.xml +++ b/src/chrome/content/rules/Emulex.xml @@ -6,16 +6,16 @@ Fetch error: http://emulex.com/ => https://emulex.com/: (51, "SSL: no alternativ Disabled by https-everywhere-checker because: Non-2xx HTTP code: http://emulex.com/ (200) => https://emulex.com/ (303) --> - + - + + - + - + diff --git a/src/chrome/content/rules/En-Pro.com.xml b/src/chrome/content/rules/En-Pro.com.xml new file mode 100644 index 000000000000..3f55049606cf --- /dev/null +++ b/src/chrome/content/rules/En-Pro.com.xml @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Enalean.com.xml b/src/chrome/content/rules/Enalean.com.xml deleted file mode 100644 index 63bdaa4f7666..000000000000 --- a/src/chrome/content/rules/Enalean.com.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Encipher.It.xml b/src/chrome/content/rules/Encipher.It.xml index e76558cd5970..d36105750cd0 100644 --- a/src/chrome/content/rules/Encipher.It.xml +++ b/src/chrome/content/rules/Encipher.It.xml @@ -9,7 +9,7 @@ Fetch error: http://www.encipher.it/ => https://www.encipher.it/: (51, "SSL: no - www.encipher.it --> - + diff --git a/src/chrome/content/rules/Encosia.xml b/src/chrome/content/rules/Encosia.xml index 659c500bc8d9..defd93a8658a 100644 --- a/src/chrome/content/rules/Encosia.xml +++ b/src/chrome/content/rules/Encosia.xml @@ -7,11 +7,11 @@ Fetch error: http://www.encosia.com/ => https://www.encosia.com/: (35, 'error:14 Mismatch: - i --> - + - + diff --git a/src/chrome/content/rules/EncounteringIslam.org.xml b/src/chrome/content/rules/EncounteringIslam.org.xml new file mode 100644 index 000000000000..15c7c0a6de22 --- /dev/null +++ b/src/chrome/content/rules/EncounteringIslam.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Encrypt.to.xml b/src/chrome/content/rules/Encrypt.to.xml index 72bed7b7e685..64cae9d83958 100644 --- a/src/chrome/content/rules/Encrypt.to.xml +++ b/src/chrome/content/rules/Encrypt.to.xml @@ -23,7 +23,7 @@ --> - + + + + + + diff --git a/src/chrome/content/rules/Encrypt_Everything.ca.xml b/src/chrome/content/rules/Encrypt_Everything.ca.xml deleted file mode 100644 index 0c542ae8ec7e..000000000000 --- a/src/chrome/content/rules/Encrypt_Everything.ca.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Encryptmas.org.xml b/src/chrome/content/rules/Encryptmas.org.xml index b5850d15f3ed..1336fa1663c9 100644 --- a/src/chrome/content/rules/Encryptmas.org.xml +++ b/src/chrome/content/rules/Encryptmas.org.xml @@ -5,7 +5,7 @@ Fetch error: http://encryptmas.org/ => https://encryptmas.org/: (60, 'SSL certif Fetch error: http://www.encryptmas.org/ => https://www.encryptmas.org/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/Encryptr.org.xml b/src/chrome/content/rules/Encryptr.org.xml index 5a233245ccef..2b7d0ae1890c 100644 --- a/src/chrome/content/rules/Encryptr.org.xml +++ b/src/chrome/content/rules/Encryptr.org.xml @@ -9,7 +9,7 @@ Fetch error: http://www.encryptr.org/ => https://www.encryptr.org/: (7, 'Failed - secure.encryptr.org --> - + diff --git a/src/chrome/content/rules/Encyclopatia.ru.xml b/src/chrome/content/rules/Encyclopatia.ru.xml new file mode 100644 index 000000000000..9c27f073efe0 --- /dev/null +++ b/src/chrome/content/rules/Encyclopatia.ru.xml @@ -0,0 +1,10 @@ + + + + + + + diff --git a/src/chrome/content/rules/Encyclopedia_Dramatica.xml b/src/chrome/content/rules/Encyclopedia_Dramatica.xml deleted file mode 100644 index b04f10062b7f..000000000000 --- a/src/chrome/content/rules/Encyclopedia_Dramatica.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/EndNote_Web.xml b/src/chrome/content/rules/EndNote_Web.xml index 8685d1e4a2db..fca8196f2439 100644 --- a/src/chrome/content/rules/EndNote_Web.xml +++ b/src/chrome/content/rules/EndNote_Web.xml @@ -13,4 +13,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Endace.xml b/src/chrome/content/rules/Endace.xml index 97cd5d6f0213..05626a8c1ed3 100644 --- a/src/chrome/content/rules/Endace.xml +++ b/src/chrome/content/rules/Endace.xml @@ -9,10 +9,11 @@ Fetch error: http://endace.com/ => https://www.endace.com/: (6, 'Could not resol - + + - + - + diff --git a/src/chrome/content/rules/Enecto.com.xml b/src/chrome/content/rules/Enecto.com.xml index fc5ce13a658f..2639c79abcbb 100644 --- a/src/chrome/content/rules/Enecto.com.xml +++ b/src/chrome/content/rules/Enecto.com.xml @@ -5,7 +5,10 @@ --> - + + + + - + diff --git a/src/chrome/content/rules/Energetix.xml b/src/chrome/content/rules/Energetix.xml index 1a83aa30fbe4..f00dc0f76fc9 100644 --- a/src/chrome/content/rules/Energetix.xml +++ b/src/chrome/content/rules/Energetix.xml @@ -8,7 +8,7 @@ Fetch error: http://files.goenergetix.com/ => https://files.goenergetix.com/: (6 - blog (shows RHEL test page) --> - + @@ -20,4 +20,4 @@ Fetch error: http://files.goenergetix.com/ => https://files.goenergetix.com/: (6 - \ No newline at end of file + diff --git a/src/chrome/content/rules/EnergiWatch.xml b/src/chrome/content/rules/EnergiWatch.xml index 65576c7d27a6..19c0a9cd0a40 100644 --- a/src/chrome/content/rules/EnergiWatch.xml +++ b/src/chrome/content/rules/EnergiWatch.xml @@ -6,7 +6,7 @@ www: Mismatched - + Remark: This page gets content from other *watch.dk-domains, not all of which work flawlessly with HTTPS Everywhere diff --git a/src/chrome/content/rules/Energy.gov.xml b/src/chrome/content/rules/Energy.gov.xml index 660411c9ac20..c4b90b675e3b 100644 --- a/src/chrome/content/rules/Energy.gov.xml +++ b/src/chrome/content/rules/Energy.gov.xml @@ -115,7 +115,7 @@ Fetch error: http://www3.energy.gov/ => https://www3.energy.gov/: (6, 'Could not * See https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -232,7 +232,7 @@ Fetch error: http://www3.energy.gov/ => https://www3.energy.gov/: (6, 'Could not - + - + diff --git a/src/chrome/content/rules/Engadget.com.xml b/src/chrome/content/rules/Engadget.com.xml index b1bb1b4751aa..c6a174622817 100644 --- a/src/chrome/content/rules/Engadget.com.xml +++ b/src/chrome/content/rules/Engadget.com.xml @@ -2,51 +2,30 @@ For other AOL coverage, see AOL.xml. - CDN buckets: - - - v4.engadget.com.aol.akadns.net - - - alt.engadget.com - - hd.engadget.com - - mobile.engadget.com - - www.engadget.com - - Nonfunctional hosts in *engadget.com: - - alt ¹ - - de ¹ - - hd ¹ - - m ¹ - - mobile ¹ + - feeds ¹ ¹ Refused - - ^engadget.com: Refused - --> - + - - - + + + + + + + - - - - - - - + diff --git a/src/chrome/content/rules/EngageSciences.xml b/src/chrome/content/rules/EngageSciences.xml index 49cf30eff3ea..5a80bf295f76 100644 --- a/src/chrome/content/rules/EngageSciences.xml +++ b/src/chrome/content/rules/EngageSciences.xml @@ -11,7 +11,7 @@ Fetch error: http://engagesciences.com/ => https://engagesciences.com/: (7, 'Fai - (www.)ngx.me (shows another domain; mismatched, CN: *.engagesciences.com) --> - + @@ -23,4 +23,4 @@ Fetch error: http://engagesciences.com/ => https://engagesciences.com/: (7, 'Fai - \ No newline at end of file + diff --git a/src/chrome/content/rules/Engage_Media.org.xml b/src/chrome/content/rules/Engage_Media.org.xml index 3955139ee457..ff69868440af 100644 --- a/src/chrome/content/rules/Engage_Media.org.xml +++ b/src/chrome/content/rules/Engage_Media.org.xml @@ -24,7 +24,7 @@ --> - + https://www.doncaste For other UK government coverage, see GOV.UK.xml. --> - + - + - + diff --git a/src/chrome/content/rules/Engelschall.com.xml b/src/chrome/content/rules/Engelschall.com.xml index 3e76a94297db..6aa67561e530 100644 --- a/src/chrome/content/rules/Engelschall.com.xml +++ b/src/chrome/content/rules/Engelschall.com.xml @@ -1,9 +1,9 @@ - + - - + + - + diff --git a/src/chrome/content/rules/Engineering.com.xml b/src/chrome/content/rules/Engineering.com.xml index f250e3e570ef..78c1bfbfb0cd 100644 --- a/src/chrome/content/rules/Engineering.com.xml +++ b/src/chrome/content/rules/Engineering.com.xml @@ -1,24 +1,11 @@ - - - - - + + + + - + diff --git a/src/chrome/content/rules/Engineering_for_Change.org.xml b/src/chrome/content/rules/Engineering_for_Change.org.xml index f511b9d8c5e1..6acf6a690c1a 100644 --- a/src/chrome/content/rules/Engineering_for_Change.org.xml +++ b/src/chrome/content/rules/Engineering_for_Change.org.xml @@ -27,7 +27,7 @@ --> - + + + + + + + + + diff --git a/src/chrome/content/rules/English-Heritage.org.uk.xml b/src/chrome/content/rules/English-Heritage.org.uk.xml index 18c0c22dbac8..e98cc96c817e 100644 --- a/src/chrome/content/rules/English-Heritage.org.uk.xml +++ b/src/chrome/content/rules/English-Heritage.org.uk.xml @@ -37,7 +37,7 @@ - + https://www.english-heri CN: www.safepayments.com --> - + diff --git a/src/chrome/content/rules/EnglishPage.com.xml b/src/chrome/content/rules/EnglishPage.com.xml new file mode 100644 index 000000000000..fe7f99f4adca --- /dev/null +++ b/src/chrome/content/rules/EnglishPage.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/EnhanceIE.xml b/src/chrome/content/rules/EnhanceIE.xml index e54ad89b4e29..3de35769c829 100644 --- a/src/chrome/content/rules/EnhanceIE.xml +++ b/src/chrome/content/rules/EnhanceIE.xml @@ -6,7 +6,7 @@ - + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Enhancedsteam.com.xml b/src/chrome/content/rules/Enhancedsteam.com.xml deleted file mode 100644 index f9812a93566b..000000000000 --- a/src/chrome/content/rules/Enhancedsteam.com.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Enigmabox.net.xml b/src/chrome/content/rules/Enigmabox.net.xml deleted file mode 100644 index 584eb21d3327..000000000000 --- a/src/chrome/content/rules/Enigmabox.net.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Enjin.xml b/src/chrome/content/rules/Enjin.xml index 329dbd266934..170bde252cd9 100644 --- a/src/chrome/content/rules/Enjin.xml +++ b/src/chrome/content/rules/Enjin.xml @@ -1,47 +1,38 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Enlightened_Perl.org.xml b/src/chrome/content/rules/Enlightened_Perl.org.xml deleted file mode 100644 index 22a20bbcd7dd..000000000000 --- a/src/chrome/content/rules/Enlightened_Perl.org.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Enlightenment.org.xml b/src/chrome/content/rules/Enlightenment.org.xml new file mode 100644 index 000000000000..10b229bcbd6e --- /dev/null +++ b/src/chrome/content/rules/Enlightenment.org.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Enom.xml b/src/chrome/content/rules/Enom.xml index 92d4d6ac1c52..e12cc6f3af7b 100644 --- a/src/chrome/content/rules/Enom.xml +++ b/src/chrome/content/rules/Enom.xml @@ -1,64 +1,11 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + diff --git a/src/chrome/content/rules/Enpass.io.xml b/src/chrome/content/rules/Enpass.io.xml index db83b1f2207a..9f48d64ed42a 100644 --- a/src/chrome/content/rules/Enpass.io.xml +++ b/src/chrome/content/rules/Enpass.io.xml @@ -6,7 +6,7 @@ - + - + + + + + + + + diff --git a/src/chrome/content/rules/Ensighten.com.xml b/src/chrome/content/rules/Ensighten.com.xml new file mode 100644 index 000000000000..6e63df7bc6b4 --- /dev/null +++ b/src/chrome/content/rules/Ensighten.com.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Ensighten.xml b/src/chrome/content/rules/Ensighten.xml deleted file mode 100644 index 7ff29552d65e..000000000000 --- a/src/chrome/content/rules/Ensighten.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Entanet-mismatches.xml b/src/chrome/content/rules/Entanet-mismatches.xml index ee46a6a8e9cc..0e3eaf758d3c 100644 --- a/src/chrome/content/rules/Entanet-mismatches.xml +++ b/src/chrome/content/rules/Entanet-mismatches.xml @@ -5,7 +5,7 @@ - + diff --git a/src/chrome/content/rules/Entanet.xml b/src/chrome/content/rules/Entanet.xml index d71475e1088c..56c11adf9c13 100644 --- a/src/chrome/content/rules/Entanet.xml +++ b/src/chrome/content/rules/Entanet.xml @@ -32,7 +32,7 @@ - + - + + @@ -15,4 +16,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Entertainment-Consumers-Association-mismatches.xml b/src/chrome/content/rules/Entertainment-Consumers-Association-mismatches.xml deleted file mode 100644 index c7bba34dbe88..000000000000 --- a/src/chrome/content/rules/Entertainment-Consumers-Association-mismatches.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Entertainment-Consumers-Association.xml b/src/chrome/content/rules/Entertainment-Consumers-Association.xml deleted file mode 100644 index 893eb19c6539..000000000000 --- a/src/chrome/content/rules/Entertainment-Consumers-Association.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Entertainment.ie.xml b/src/chrome/content/rules/Entertainment.ie.xml index 81c747e40299..58088e168957 100644 --- a/src/chrome/content/rules/Entertainment.ie.xml +++ b/src/chrome/content/rules/Entertainment.ie.xml @@ -11,10 +11,11 @@ Fetch error: http://entertainment.ie/ => https://entertainment.ie/: Cycle detect - www (500, valid cert) --> - + - + + @@ -23,4 +24,4 @@ Fetch error: http://entertainment.ie/ => https://entertainment.ie/: Cycle detect - \ No newline at end of file + diff --git a/src/chrome/content/rules/Entertainment_Weekly.xml b/src/chrome/content/rules/Entertainment_Weekly.xml index c852c8ce823a..55090ff5d01a 100644 --- a/src/chrome/content/rules/Entertainment_Weekly.xml +++ b/src/chrome/content/rules/Entertainment_Weekly.xml @@ -16,7 +16,9 @@ - + + + @@ -25,7 +27,6 @@ - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/EntheoShop.xml b/src/chrome/content/rules/EntheoShop.xml index 010639e3efef..848790280725 100644 --- a/src/chrome/content/rules/EntheoShop.xml +++ b/src/chrome/content/rules/EntheoShop.xml @@ -3,7 +3,7 @@ - + diff --git a/src/chrome/content/rules/Entrust.xml b/src/chrome/content/rules/Entrust.xml index 351fb787d6cd..12082a0d4eb5 100644 --- a/src/chrome/content/rules/Entrust.xml +++ b/src/chrome/content/rules/Entrust.xml @@ -13,7 +13,7 @@ Fetch error: http://home.entrust.net/ => https://home.entrust.net/: (56, 'SSL re * Dropped --> - + diff --git a/src/chrome/content/rules/Envirotrend-mismatches.xml b/src/chrome/content/rules/Envirotrend-mismatches.xml index 2f6cac1ae053..cf8b529f4938 100644 --- a/src/chrome/content/rules/Envirotrend-mismatches.xml +++ b/src/chrome/content/rules/Envirotrend-mismatches.xml @@ -1,7 +1,7 @@ - + @@ -12,13 +12,12 @@ - - - - + + + + diff --git a/src/chrome/content/rules/Envirotrend.xml b/src/chrome/content/rules/Envirotrend.xml index 6318dffed063..60ccd420e438 100644 --- a/src/chrome/content/rules/Envirotrend.xml +++ b/src/chrome/content/rules/Envirotrend.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://envirotrend.com.au/ => https://envirotrend.com.au/: (51, "SSL: no alternative certificate subject name matches target host name 'envirotrend.com.au'") Fetch error: http://www.envirotrend.com.au/ => https://envirotrend.com.au/: (51, "SSL: no alternative certificate subject name matches target host name 'envirotrend.com.au'") --> - + @@ -16,6 +16,6 @@ Fetch error: http://www.envirotrend.com.au/ => https://envirotrend.com.au/: (51, - + diff --git a/src/chrome/content/rules/Envoy_Direct.com.xml b/src/chrome/content/rules/Envoy_Direct.com.xml deleted file mode 100644 index a137a3f38d58..000000000000 --- a/src/chrome/content/rules/Envoy_Direct.com.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Envoy_Media_Group.com.xml b/src/chrome/content/rules/Envoy_Media_Group.com.xml index 184d091de894..a7d3a7e93ec8 100644 --- a/src/chrome/content/rules/Envoy_Media_Group.com.xml +++ b/src/chrome/content/rules/Envoy_Media_Group.com.xml @@ -1,7 +1,6 @@ - + - + diff --git a/src/chrome/content/rules/Eole-Water.xml b/src/chrome/content/rules/Eole-Water.xml index 1b0f90373eba..fa947ef7ed23 100644 --- a/src/chrome/content/rules/Eole-Water.xml +++ b/src/chrome/content/rules/Eole-Water.xml @@ -5,7 +5,7 @@ - + diff --git a/src/chrome/content/rules/Epartnershub.com.xml b/src/chrome/content/rules/Epartnershub.com.xml index 71fc4a6a3bf8..e493b9c4410f 100644 --- a/src/chrome/content/rules/Epartnershub.com.xml +++ b/src/chrome/content/rules/Epartnershub.com.xml @@ -16,4 +16,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Epaysol.com.xml b/src/chrome/content/rules/Epaysol.com.xml deleted file mode 100644 index cee8bb90a457..000000000000 --- a/src/chrome/content/rules/Epaysol.com.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Epek.xml b/src/chrome/content/rules/Epek.xml index 850686405326..7d19c9ab3b41 100644 --- a/src/chrome/content/rules/Epek.xml +++ b/src/chrome/content/rules/Epek.xml @@ -19,10 +19,9 @@ - + - + diff --git a/src/chrome/content/rules/Ephotozine.com.xml b/src/chrome/content/rules/Ephotozine.com.xml new file mode 100644 index 000000000000..0e9aa971d403 --- /dev/null +++ b/src/chrome/content/rules/Ephotozine.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Epic-Systems.xml b/src/chrome/content/rules/Epic-Systems.xml index 9d12786ba964..3438c713eda4 100644 --- a/src/chrome/content/rules/Epic-Systems.xml +++ b/src/chrome/content/rules/Epic-Systems.xml @@ -2,17 +2,17 @@ + + + + + + + - + - - - - - + diff --git a/src/chrome/content/rules/Epilepsy-Foundation-America.xml b/src/chrome/content/rules/Epilepsy-Foundation-America.xml index 3c11e4cd002f..1169e08b6ae7 100644 --- a/src/chrome/content/rules/Epilepsy-Foundation-America.xml +++ b/src/chrome/content/rules/Epilepsy-Foundation-America.xml @@ -8,9 +8,9 @@ Disabled by https-everywhere-checker because: Fetch error: http://epilepsyfoundation.org/ => https://www.epilepsyfoundation.org/: (51, "SSL: no alternative certificate subject name matches target host name 'www.epilepsyfoundation.org'") Fetch error: http://www.epilepsyfoundation.org/ => https://www.epilepsyfoundation.org/: (51, "SSL: no alternative certificate subject name matches target host name 'www.epilepsyfoundation.org'") --> - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Epilepsy-Ontario.xml b/src/chrome/content/rules/Epilepsy-Ontario.xml index aa64bca00c8c..2ee3a508647a 100644 --- a/src/chrome/content/rules/Epilepsy-Ontario.xml +++ b/src/chrome/content/rules/Epilepsy-Ontario.xml @@ -8,7 +8,7 @@ Automatically by https-everywhere-checker because: Fetch error: http://epilepsyontario.org/ => https://www.epilepsyontario.org/: (51, "SSL: no alternative certificate subject name matches target host name 'www.epilepsyontario.org'") Fetch error: http://www.epilepsyontario.org/ => https://www.epilepsyontario.org/: (51, "SSL: no alternative certificate subject name matches target host name 'www.epilepsyontario.org'") --> - + diff --git a/src/chrome/content/rules/EpochStats.com.xml b/src/chrome/content/rules/EpochStats.com.xml index 632a9b6449cd..f2644045a798 100644 --- a/src/chrome/content/rules/EpochStats.com.xml +++ b/src/chrome/content/rules/EpochStats.com.xml @@ -14,7 +14,7 @@ Fetch error: http://www.epochstats.com/ => https://www.epochstats.com/: (60, 'SS - sales --> - + diff --git a/src/chrome/content/rules/EpochTimes.com.xml b/src/chrome/content/rules/EpochTimes.com.xml new file mode 100644 index 000000000000..27b85038bfb5 --- /dev/null +++ b/src/chrome/content/rules/EpochTimes.com.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Epoch_Times.xml b/src/chrome/content/rules/Epoch_Times.xml deleted file mode 100644 index b8a6538e1822..000000000000 --- a/src/chrome/content/rules/Epoch_Times.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Epoxate.com.xml b/src/chrome/content/rules/Epoxate.com.xml index 6e14371eb8d9..37a43994bdf8 100644 --- a/src/chrome/content/rules/Epoxate.com.xml +++ b/src/chrome/content/rules/Epoxate.com.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://epoxate.com/ => https://epoxate.com/: (35, 'Unknown SSL protocol error in connection to epoxate.com:443 ') --> - + diff --git a/src/chrome/content/rules/Eprncdn.com.xml b/src/chrome/content/rules/Eprncdn.com.xml deleted file mode 100644 index 264dcd8bcb68..000000000000 --- a/src/chrome/content/rules/Eprncdn.com.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Epson.xml b/src/chrome/content/rules/Epson.xml index a9ec731a4b96..4c0d85430a03 100644 --- a/src/chrome/content/rules/Epson.xml +++ b/src/chrome/content/rules/Epson.xml @@ -26,23 +26,26 @@ Fetch error: http://www.epson.com.mx/ => https://global.latin.epson.com/mx: Redi * Secured by us --> - + - + + + + - - + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/EquifaxBreachSettlement.com.xml b/src/chrome/content/rules/EquifaxBreachSettlement.com.xml new file mode 100644 index 000000000000..6dc80b717cc9 --- /dev/null +++ b/src/chrome/content/rules/EquifaxBreachSettlement.com.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/EquifaxCanada.xml b/src/chrome/content/rules/EquifaxCanada.xml deleted file mode 100644 index 524359c7d4e8..000000000000 --- a/src/chrome/content/rules/EquifaxCanada.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/Equinix.com-problematic.xml b/src/chrome/content/rules/Equinix.com-problematic.xml deleted file mode 100644 index bad89cbb300d..000000000000 --- a/src/chrome/content/rules/Equinix.com-problematic.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Equinix.com.xml b/src/chrome/content/rules/Equinix.com.xml index 8ea105c61970..0e696a741034 100644 --- a/src/chrome/content/rules/Equinix.com.xml +++ b/src/chrome/content/rules/Equinix.com.xml @@ -1,110 +1,200 @@ - - + - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + + + + + + - + - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Equip.org.xml b/src/chrome/content/rules/Equip.org.xml index 2bcf899603ce..4d4d2b25aeab 100644 --- a/src/chrome/content/rules/Equip.org.xml +++ b/src/chrome/content/rules/Equip.org.xml @@ -1,7 +1,7 @@ - + diff --git a/src/chrome/content/rules/Ergon.ch.xml b/src/chrome/content/rules/Ergon.ch.xml index 4b6b806252b8..f3aa7f93efd7 100644 --- a/src/chrome/content/rules/Ergon.ch.xml +++ b/src/chrome/content/rules/Ergon.ch.xml @@ -1,7 +1,9 @@ - + + + - + diff --git a/src/chrome/content/rules/ErgotechGroup.com.xml b/src/chrome/content/rules/ErgotechGroup.com.xml new file mode 100644 index 000000000000..8467573cdf7b --- /dev/null +++ b/src/chrome/content/rules/ErgotechGroup.com.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Ericsson.xml b/src/chrome/content/rules/Ericsson.xml index 1c69195da113..4ea71cf265d5 100644 --- a/src/chrome/content/rules/Ericsson.xml +++ b/src/chrome/content/rules/Ericsson.xml @@ -11,12 +11,11 @@ Fetch error: http://webtrends-lb.ericsson.net/ => https://webtrends-lb.ericsson. - www (redirects to http, akamai) --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Erinn.org.xml b/src/chrome/content/rules/Erinn.org.xml index fb6685f9343d..858811abd2c1 100644 --- a/src/chrome/content/rules/Erinn.org.xml +++ b/src/chrome/content/rules/Erinn.org.xml @@ -5,7 +5,7 @@ Fetch error: http://erinn.org/ => https://erinn.org/: (7, 'Failed to connect to Fetch error: http://www.erinn.org/ => https://www.erinn.org/: (7, 'Failed to connect to www.erinn.org port 443: Connection refused') --> - + diff --git a/src/chrome/content/rules/Erlang.org.xml b/src/chrome/content/rules/Erlang.org.xml index 18a1d5ede727..0a9b5a904d85 100644 --- a/src/chrome/content/rules/Erlang.org.xml +++ b/src/chrome/content/rules/Erlang.org.xml @@ -1,22 +1,22 @@ - - + + + - - - - + diff --git a/src/chrome/content/rules/Ernst-and-Young.xml b/src/chrome/content/rules/Ernst-and-Young.xml index 9e38fbd6f5f0..011397d7e8de 100644 --- a/src/chrome/content/rules/Ernst-and-Young.xml +++ b/src/chrome/content/rules/Ernst-and-Young.xml @@ -7,14 +7,17 @@ - + + + + - + - + - + - - - - - - - - - - - diff --git a/src/chrome/content/rules/Erowid.xml b/src/chrome/content/rules/Erowid.xml index 75230e8ad0cf..f94f3c8db3d0 100644 --- a/src/chrome/content/rules/Erowid.xml +++ b/src/chrome/content/rules/Erowid.xml @@ -5,7 +5,7 @@ - + diff --git a/src/chrome/content/rules/Errorception.com.xml b/src/chrome/content/rules/Errorception.com.xml index ab12f854d361..aec587a11c90 100644 --- a/src/chrome/content/rules/Errorception.com.xml +++ b/src/chrome/content/rules/Errorception.com.xml @@ -2,11 +2,11 @@ - + - + diff --git a/src/chrome/content/rules/Es.gy.xml b/src/chrome/content/rules/Es.gy.xml index 6426fb9b386c..0601cf3aba0a 100644 --- a/src/chrome/content/rules/Es.gy.xml +++ b/src/chrome/content/rules/Es.gy.xml @@ -9,7 +9,7 @@ Fetch error: http://bbs.es.gy/ => https://bbs.es.gy/: (51, "SSL: no alternative (www.)?: Expired --> - + diff --git a/src/chrome/content/rules/Escrow_Live.net.xml b/src/chrome/content/rules/Escrow_Live.net.xml index 0ace4a6682a7..cfa3e4145e0c 100644 --- a/src/chrome/content/rules/Escrow_Live.net.xml +++ b/src/chrome/content/rules/Escrow_Live.net.xml @@ -9,7 +9,7 @@ Fetch error: http://www.escrowlive.net/ => https://www.escrowlive.net/: (7, 'Fai ^: refused --> - + diff --git a/src/chrome/content/rules/Esdominios.com.xml b/src/chrome/content/rules/Esdominios.com.xml deleted file mode 100644 index 80ab2bf4797b..000000000000 --- a/src/chrome/content/rules/Esdominios.com.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Esellerate.net.xml b/src/chrome/content/rules/Esellerate.net.xml index ed8b3a9d5991..a5e2abd43406 100644 --- a/src/chrome/content/rules/Esellerate.net.xml +++ b/src/chrome/content/rules/Esellerate.net.xml @@ -48,13 +48,7 @@ - - - - - - + - - + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Esolangs.org.xml b/src/chrome/content/rules/Esolangs.org.xml index 359eadb44037..e535418108e5 100644 --- a/src/chrome/content/rules/Esolangs.org.xml +++ b/src/chrome/content/rules/Esolangs.org.xml @@ -4,6 +4,6 @@ - - + + diff --git a/src/chrome/content/rules/Espacejeux.xml b/src/chrome/content/rules/Espacejeux.xml index 678508ab036c..280d327e4a84 100644 --- a/src/chrome/content/rules/Espacejeux.xml +++ b/src/chrome/content/rules/Espacejeux.xml @@ -2,5 +2,5 @@ - + diff --git a/src/chrome/content/rules/EspagnolFacile.com.xml b/src/chrome/content/rules/EspagnolFacile.com.xml new file mode 100644 index 000000000000..cd3dab2cc798 --- /dev/null +++ b/src/chrome/content/rules/EspagnolFacile.com.xml @@ -0,0 +1,11 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/EspressoBin.net.xml b/src/chrome/content/rules/EspressoBin.net.xml new file mode 100644 index 000000000000..bff5b643eba5 --- /dev/null +++ b/src/chrome/content/rules/EspressoBin.net.xml @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Esri.xml b/src/chrome/content/rules/Esri.xml index 3174fa2db02e..fa86e0a9d1e7 100644 --- a/src/chrome/content/rules/Esri.xml +++ b/src/chrome/content/rules/Esri.xml @@ -52,7 +52,20 @@ --> - + + + + + + + + + + + + + + @@ -61,10 +74,9 @@ - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/EssaysReasy.xml b/src/chrome/content/rules/EssaysReasy.xml index bfb868c66e18..94b65b0303b0 100644 --- a/src/chrome/content/rules/EssaysReasy.xml +++ b/src/chrome/content/rules/EssaysReasy.xml @@ -5,7 +5,7 @@ - + diff --git a/src/chrome/content/rules/Essex.gov.uk.xml b/src/chrome/content/rules/Essex.gov.uk.xml index 3d0ace61ecb3..65cdb2c294cc 100644 --- a/src/chrome/content/rules/Essex.gov.uk.xml +++ b/src/chrome/content/rules/Essex.gov.uk.xml @@ -50,7 +50,7 @@ - + - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Estonian_Public_Broadcasting.xml b/src/chrome/content/rules/Estonian_Public_Broadcasting.xml index 3c699ef03285..8167b853ed66 100644 --- a/src/chrome/content/rules/Estonian_Public_Broadcasting.xml +++ b/src/chrome/content/rules/Estonian_Public_Broadcasting.xml @@ -29,7 +29,7 @@ Fetch error: http://www.err.ee/ => https://www.err.ee/: Too many redirects while *** No https --> - + @@ -37,9 +37,9 @@ Fetch error: http://www.err.ee/ => https://www.err.ee/: Too many redirects while - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/EtaLabs.net.xml b/src/chrome/content/rules/EtaLabs.net.xml new file mode 100644 index 000000000000..6d9ba52d3968 --- /dev/null +++ b/src/chrome/content/rules/EtaLabs.net.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Etapestry.com.xml b/src/chrome/content/rules/Etapestry.com.xml index b2b996ecbe22..554c95e7847f 100644 --- a/src/chrome/content/rules/Etapestry.com.xml +++ b/src/chrome/content/rules/Etapestry.com.xml @@ -11,7 +11,7 @@ Non-2xx HTTP code: http://www.etapestry.com/?f (200) => https://www.blackbaud.co - (www.) (mismatched, CN: *.blackbaud.com) --> - + diff --git a/src/chrome/content/rules/Etarget.hu.xml b/src/chrome/content/rules/Etarget.hu.xml index 135dc3f43943..e6ec49794306 100644 --- a/src/chrome/content/rules/Etarget.hu.xml +++ b/src/chrome/content/rules/Etarget.hu.xml @@ -19,7 +19,7 @@ --> - + - + - + - + https://tickets.eth-0.nl/: (28, 'Connection timed out after 20001 milliseconds') --> - + diff --git a/src/chrome/content/rules/Etherscamdb.info.xml b/src/chrome/content/rules/Etherscamdb.info.xml new file mode 100644 index 000000000000..aeeb9a219a15 --- /dev/null +++ b/src/chrome/content/rules/Etherscamdb.info.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/Ethn.io.xml b/src/chrome/content/rules/Ethn.io.xml index 0bdf2adc6437..d2a92188d957 100644 --- a/src/chrome/content/rules/Ethn.io.xml +++ b/src/chrome/content/rules/Ethn.io.xml @@ -7,7 +7,7 @@ - + @@ -16,4 +16,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Ethnologue.xml b/src/chrome/content/rules/Ethnologue.xml index d70ac5c9a0f9..61975b0d4736 100644 --- a/src/chrome/content/rules/Ethnologue.xml +++ b/src/chrome/content/rules/Ethnologue.xml @@ -14,4 +14,4 @@ --> - \ No newline at end of file + diff --git a/src/chrome/content/rules/Ethos_Custom_Brands.xml b/src/chrome/content/rules/Ethos_Custom_Brands.xml index 72200ca0b00b..8c9e579fc3db 100644 --- a/src/chrome/content/rules/Ethos_Custom_Brands.xml +++ b/src/chrome/content/rules/Ethos_Custom_Brands.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://ethoscustombrands.com/ => https://ethoscustombrands.com/: (28, 'Connection timed out after 20001 milliseconds') --> - + @@ -15,4 +15,4 @@ Fetch error: http://ethoscustombrands.com/ => https://ethoscustombrands.com/: (2 - \ No newline at end of file + diff --git a/src/chrome/content/rules/Etiqa.com.my.xml b/src/chrome/content/rules/Etiqa.com.my.xml new file mode 100644 index 000000000000..06df24214f86 --- /dev/null +++ b/src/chrome/content/rules/Etiqa.com.my.xml @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Etnasoft.com.xml b/src/chrome/content/rules/Etnasoft.com.xml index 7214af3db5b4..758a70645595 100644 --- a/src/chrome/content/rules/Etnasoft.com.xml +++ b/src/chrome/content/rules/Etnasoft.com.xml @@ -17,7 +17,7 @@ Fetch error: http://old.etnasoft.com/ => https://old.etnasoft.com/: (6, 'Could n * tasks.etnasoft.com * webmail.etnasoft.com --> - + diff --git a/src/chrome/content/rules/Etouches.xml b/src/chrome/content/rules/Etouches.xml index 388cc2f6cbe5..19a8f8d68779 100644 --- a/src/chrome/content/rules/Etouches.xml +++ b/src/chrome/content/rules/Etouches.xml @@ -6,7 +6,7 @@ - + https://owa.etracker.com/: (6, 'Could n on whichever domain it is loaded from. --> - + @@ -79,7 +79,7 @@ Fetch error: http://owa.etracker.com/ => https://owa.etracker.com/: (6, 'Could n - + https://cdn.etrade.net/: (28, 'Operation - + + + + + - - - + diff --git a/src/chrome/content/rules/Etravelway.com.xml b/src/chrome/content/rules/Etravelway.com.xml index d4c5e3cd1c05..58159b7c107c 100644 --- a/src/chrome/content/rules/Etravelway.com.xml +++ b/src/chrome/content/rules/Etravelway.com.xml @@ -18,7 +18,7 @@ ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -28,7 +28,7 @@ --> - + https://www.etreshop.com/: (60, 'SSL ce * Secured by us --> - + diff --git a/src/chrome/content/rules/Eucalyptus.com.xml b/src/chrome/content/rules/Eucalyptus.com.xml index 3b3755bfe219..b2f70b89fb9a 100644 --- a/src/chrome/content/rules/Eucalyptus.com.xml +++ b/src/chrome/content/rules/Eucalyptus.com.xml @@ -4,16 +4,13 @@ Disabled by https-everywhere-checker because: Fetch error: http://eucalyptus.com/ => https://eucalyptus.com/: (51, "SSL: no alternative certificate subject name matches target host name 'eucalyptus.com'") --> - + - + + - - - + diff --git a/src/chrome/content/rules/Eurex_Repo.com.xml b/src/chrome/content/rules/Eurex_Repo.com.xml index 1ca2f437c4d6..b7e0561ac187 100644 --- a/src/chrome/content/rules/Eurex_Repo.com.xml +++ b/src/chrome/content/rules/Eurex_Repo.com.xml @@ -13,7 +13,8 @@ - + + @@ -27,7 +28,6 @@ - + diff --git a/src/chrome/content/rules/Eurexchange.com.xml b/src/chrome/content/rules/Eurexchange.com.xml index b6780e5f9832..65c8ab5dfa97 100644 --- a/src/chrome/content/rules/Eurexchange.com.xml +++ b/src/chrome/content/rules/Eurexchange.com.xml @@ -14,15 +14,12 @@ - - - - + + + + + diff --git a/src/chrome/content/rules/EuroAds.se.xml b/src/chrome/content/rules/EuroAds.se.xml deleted file mode 100644 index 300c0e3b92ab..000000000000 --- a/src/chrome/content/rules/EuroAds.se.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/EuroFlorist.no.xml b/src/chrome/content/rules/EuroFlorist.no.xml index 86a72d4ca161..6a1896612fc3 100644 --- a/src/chrome/content/rules/EuroFlorist.no.xml +++ b/src/chrome/content/rules/EuroFlorist.no.xml @@ -10,7 +10,8 @@ - + + @@ -21,7 +22,6 @@ - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/EuroIntegration.com.ua.xml b/src/chrome/content/rules/EuroIntegration.com.ua.xml new file mode 100644 index 000000000000..6c18f9cd14e5 --- /dev/null +++ b/src/chrome/content/rules/EuroIntegration.com.ua.xml @@ -0,0 +1,16 @@ + + + + + + + diff --git a/src/chrome/content/rules/EuroPython.xml b/src/chrome/content/rules/EuroPython.xml index dd0c0b56a9c4..eb2f1fb5ac74 100644 --- a/src/chrome/content/rules/EuroPython.xml +++ b/src/chrome/content/rules/EuroPython.xml @@ -17,7 +17,7 @@ Fetch error: http://ep2014.europython.eu/ => https://ep2014.europython.eu/: (60, - ep2015.europython.eu --> - + diff --git a/src/chrome/content/rules/Euroforum-problematic.xml b/src/chrome/content/rules/Euroforum-problematic.xml index 12786794dbcf..845bfab95d23 100644 --- a/src/chrome/content/rules/Euroforum-problematic.xml +++ b/src/chrome/content/rules/Euroforum-problematic.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Euroforum.xml b/src/chrome/content/rules/Euroforum.xml index 06b1706aadeb..54308e33a9b2 100644 --- a/src/chrome/content/rules/Euroforum.xml +++ b/src/chrome/content/rules/Euroforum.xml @@ -28,13 +28,13 @@ - + + - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Eurogamer-problematic.xml b/src/chrome/content/rules/Eurogamer-problematic.xml index 17aba9b39f61..44ae6a07d45f 100644 --- a/src/chrome/content/rules/Eurogamer-problematic.xml +++ b/src/chrome/content/rules/Eurogamer-problematic.xml @@ -7,7 +7,7 @@ - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Europa.eu-falsemixed.xml b/src/chrome/content/rules/Europa.eu-falsemixed.xml index b519246bfb67..448d33188342 100644 --- a/src/chrome/content/rules/Europa.eu-falsemixed.xml +++ b/src/chrome/content/rules/Europa.eu-falsemixed.xml @@ -9,7 +9,7 @@ - + - - + @@ -107,29 +91,26 @@ + + - + - + - + - + @@ -138,8 +119,7 @@ - + @@ -147,16 +127,12 @@ - + - + - + @@ -173,8 +149,7 @@ - + @@ -190,20 +165,16 @@ - + - + + - + + - + @@ -219,8 +190,7 @@ - + @@ -238,9 +208,7 @@ - - + @@ -250,25 +218,16 @@ - + + - - - - - - + + + - - + diff --git a/src/chrome/content/rules/Europcar-Group.com.xml b/src/chrome/content/rules/Europcar-Group.com.xml new file mode 100644 index 000000000000..bd6cfc4a9bb6 --- /dev/null +++ b/src/chrome/content/rules/Europcar-Group.com.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Europcar.co.nz.xml b/src/chrome/content/rules/Europcar.co.nz.xml new file mode 100644 index 000000000000..b098ace14995 --- /dev/null +++ b/src/chrome/content/rules/Europcar.co.nz.xml @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Europcar.com.au.xml b/src/chrome/content/rules/Europcar.com.au.xml new file mode 100644 index 000000000000..0921463fbece --- /dev/null +++ b/src/chrome/content/rules/Europcar.com.au.xml @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Europcar.de.xml b/src/chrome/content/rules/Europcar.de.xml new file mode 100644 index 000000000000..c97da523cc35 --- /dev/null +++ b/src/chrome/content/rules/Europcar.de.xml @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Europcar.es.xml b/src/chrome/content/rules/Europcar.es.xml new file mode 100644 index 000000000000..ca81e97ee47f --- /dev/null +++ b/src/chrome/content/rules/Europcar.es.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Europcar.fr.xml b/src/chrome/content/rules/Europcar.fr.xml new file mode 100644 index 000000000000..1c03e5b1e7b0 --- /dev/null +++ b/src/chrome/content/rules/Europcar.fr.xml @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Europcar.it.xml b/src/chrome/content/rules/Europcar.it.xml new file mode 100644 index 000000000000..e652e1c77d01 --- /dev/null +++ b/src/chrome/content/rules/Europcar.it.xml @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/EuropePMC.org.xml b/src/chrome/content/rules/EuropePMC.org.xml new file mode 100644 index 000000000000..c89a551640b4 --- /dev/null +++ b/src/chrome/content/rules/EuropePMC.org.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Europe_Miniatures.xml b/src/chrome/content/rules/Europe_Miniatures.xml deleted file mode 100644 index 4878f178ed96..000000000000 --- a/src/chrome/content/rules/Europe_Miniatures.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/European-Nuclear-Young-Generation-Forum.xml b/src/chrome/content/rules/European-Nuclear-Young-Generation-Forum.xml index eb41cd266d9f..c87faa8b38b3 100644 --- a/src/chrome/content/rules/European-Nuclear-Young-Generation-Forum.xml +++ b/src/chrome/content/rules/European-Nuclear-Young-Generation-Forum.xml @@ -5,7 +5,7 @@ - + diff --git a/src/chrome/content/rules/EuropeanSSL.xml b/src/chrome/content/rules/EuropeanSSL.xml index 718a085d3095..2ebc3a113003 100644 --- a/src/chrome/content/rules/EuropeanSSL.xml +++ b/src/chrome/content/rules/EuropeanSSL.xml @@ -8,7 +8,9 @@ - + + + @@ -17,4 +19,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/European_Energy_Exchange.xml b/src/chrome/content/rules/European_Energy_Exchange.xml index 881eadd86e96..d62dcb764aec 100644 --- a/src/chrome/content/rules/European_Energy_Exchange.xml +++ b/src/chrome/content/rules/European_Energy_Exchange.xml @@ -12,7 +12,8 @@ - + + @@ -21,7 +22,6 @@ - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/European_Space_Agency.xml b/src/chrome/content/rules/European_Space_Agency.xml index ec7d6de465bc..502ae1b163b8 100644 --- a/src/chrome/content/rules/European_Space_Agency.xml +++ b/src/chrome/content/rules/European_Space_Agency.xml @@ -19,7 +19,7 @@ Fetch error: http://esa.int/ => https://www.esa.int/: Too many redirects while f Some pages redirect to http. --> - + @@ -50,7 +50,7 @@ Fetch error: http://esa.int/ => https://www.esa.int/: Too many redirects while f - + diff --git a/src/chrome/content/rules/Eurowings.com.xml b/src/chrome/content/rules/Eurowings.com.xml new file mode 100644 index 000000000000..2af9e6e084ec --- /dev/null +++ b/src/chrome/content/rules/Eurowings.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Eustace.io.xml b/src/chrome/content/rules/Eustace.io.xml new file mode 100644 index 000000000000..2ec4b0334414 --- /dev/null +++ b/src/chrome/content/rules/Eustace.io.xml @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/src/chrome/content/rules/EvEGer.xml b/src/chrome/content/rules/EvEGer.xml index 30e13c3ec589..11bd32a74386 100644 --- a/src/chrome/content/rules/EvEGer.xml +++ b/src/chrome/content/rules/EvEGer.xml @@ -1,6 +1,6 @@ - + diff --git a/src/chrome/content/rules/Evanced.info.xml b/src/chrome/content/rules/Evanced.info.xml index d5efbcbbe131..a490b918e358 100644 --- a/src/chrome/content/rules/Evanced.info.xml +++ b/src/chrome/content/rules/Evanced.info.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://evanced.info/ => https://evanced.info/: (51, "SSL: no alternative certificate subject name matches target host name 'evanced.info'") --> - + diff --git a/src/chrome/content/rules/Evaske.com.xml b/src/chrome/content/rules/Evaske.com.xml index 890907ef5b91..a999eafb8572 100644 --- a/src/chrome/content/rules/Evaske.com.xml +++ b/src/chrome/content/rules/Evaske.com.xml @@ -8,7 +8,7 @@ Fetch error: http://clients.evaske.com/ => https://clients.evaske.com/: Too many Problematic: - dev (Some sites serve wrong content) --> - + diff --git a/src/chrome/content/rules/Evenmere.org.xml b/src/chrome/content/rules/Evenmere.org.xml index d3fcb98f6b19..bbbedffddac8 100644 --- a/src/chrome/content/rules/Evenmere.org.xml +++ b/src/chrome/content/rules/Evenmere.org.xml @@ -20,12 +20,11 @@ Fetch error: http://blog.evenmere.org/ => https://blog.evenmere.org/: (6, 'Could - https://panopticlick.eff.org --> - + - + diff --git a/src/chrome/content/rules/EventOverload.xml b/src/chrome/content/rules/EventOverload.xml index 3ce594ebe38b..8e7cfe505ad3 100644 --- a/src/chrome/content/rules/EventOverload.xml +++ b/src/chrome/content/rules/EventOverload.xml @@ -6,7 +6,7 @@ Fetch error: http://eventoverload.com/ => https://eventoverload.com/: (51, "SSL: Disabled by https-everywhere-checker because: Fetch error: http://eventoverload.com/ => https://eventoverload.com/: (60, 'SSL certificate problem: self signed certificate') --> - + @@ -18,4 +18,4 @@ Fetch error: http://eventoverload.com/ => https://eventoverload.com/: (60, 'SSL - \ No newline at end of file + diff --git a/src/chrome/content/rules/Event_Booking_Online.com.xml b/src/chrome/content/rules/Event_Booking_Online.com.xml deleted file mode 100644 index df4e7727b585..000000000000 --- a/src/chrome/content/rules/Event_Booking_Online.com.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Eventim.co.il.xml b/src/chrome/content/rules/Eventim.co.il.xml new file mode 100644 index 000000000000..024d11bfdf07 --- /dev/null +++ b/src/chrome/content/rules/Eventim.co.il.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Eventim.co.uk.xml b/src/chrome/content/rules/Eventim.co.uk.xml new file mode 100644 index 000000000000..9c98e62c0bdf --- /dev/null +++ b/src/chrome/content/rules/Eventim.co.uk.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Eventim.com.br.xml b/src/chrome/content/rules/Eventim.com.br.xml new file mode 100644 index 000000000000..9ffe3e3c6976 --- /dev/null +++ b/src/chrome/content/rules/Eventim.com.br.xml @@ -0,0 +1,23 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Eventim.com.xml b/src/chrome/content/rules/Eventim.com.xml new file mode 100644 index 000000000000..4bf19edb97fa --- /dev/null +++ b/src/chrome/content/rules/Eventim.com.xml @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Eventim.cu.xml b/src/chrome/content/rules/Eventim.cu.xml new file mode 100644 index 000000000000..3da2dfc169bc --- /dev/null +++ b/src/chrome/content/rules/Eventim.cu.xml @@ -0,0 +1,23 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Eventim.de.xml b/src/chrome/content/rules/Eventim.de.xml new file mode 100644 index 000000000000..6044ff36137f --- /dev/null +++ b/src/chrome/content/rules/Eventim.de.xml @@ -0,0 +1,29 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Eventim.fr.xml b/src/chrome/content/rules/Eventim.fr.xml new file mode 100644 index 000000000000..cdd6cd6b62d5 --- /dev/null +++ b/src/chrome/content/rules/Eventim.fr.xml @@ -0,0 +1,23 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Eventim.nl.xml b/src/chrome/content/rules/Eventim.nl.xml new file mode 100644 index 000000000000..6592b59aef38 --- /dev/null +++ b/src/chrome/content/rules/Eventim.nl.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Eventim.no.xml b/src/chrome/content/rules/Eventim.no.xml new file mode 100644 index 000000000000..cbe2b5fdf97e --- /dev/null +++ b/src/chrome/content/rules/Eventim.no.xml @@ -0,0 +1,23 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Eventim.pl.xml b/src/chrome/content/rules/Eventim.pl.xml new file mode 100644 index 000000000000..598080c0d959 --- /dev/null +++ b/src/chrome/content/rules/Eventim.pl.xml @@ -0,0 +1,25 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Eventim.se.xml b/src/chrome/content/rules/Eventim.se.xml new file mode 100644 index 000000000000..55ff1cb41231 --- /dev/null +++ b/src/chrome/content/rules/Eventim.se.xml @@ -0,0 +1,24 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Eventim.sk.xml b/src/chrome/content/rules/Eventim.sk.xml new file mode 100644 index 000000000000..0212000bba53 --- /dev/null +++ b/src/chrome/content/rules/Eventim.sk.xml @@ -0,0 +1,23 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Eventim.xml b/src/chrome/content/rules/Eventim.xml deleted file mode 100644 index 89f90cad4a61..000000000000 --- a/src/chrome/content/rules/Eventim.xml +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Eventpoint.com.xml b/src/chrome/content/rules/Eventpoint.com.xml index ba70841484d4..1f1942196d17 100644 --- a/src/chrome/content/rules/Eventpoint.com.xml +++ b/src/chrome/content/rules/Eventpoint.com.xml @@ -17,7 +17,7 @@ Fetch error: http://acs-stage.eventpoint.com/ => https://acs-stage.eventpoint.co - acs-stage --> - + diff --git a/src/chrome/content/rules/Events.ch.xml b/src/chrome/content/rules/Events.ch.xml index cd73625576f9..6aabc2c9b203 100644 --- a/src/chrome/content/rules/Events.ch.xml +++ b/src/chrome/content/rules/Events.ch.xml @@ -11,7 +11,7 @@ Fetch error: http://www.events.ch/ => https://www.events.ch/: (60, 'SSL certific - www.fmr.events.ch - www.a.events.ch --> - + diff --git a/src/chrome/content/rules/Evermeet.cx.xml b/src/chrome/content/rules/Evermeet.cx.xml index 687bc236a597..34d5b23c51e3 100644 --- a/src/chrome/content/rules/Evermeet.cx.xml +++ b/src/chrome/content/rules/Evermeet.cx.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.evermeet.cx/ => https://www.evermeet.cx/: (51, "SSL: no alternative certificate subject name matches target host name 'www.evermeet.cx'") --> - + diff --git a/src/chrome/content/rules/EverydayGiftCards.com.au.xml b/src/chrome/content/rules/EverydayGiftCards.com.au.xml new file mode 100644 index 000000000000..deda7033fec6 --- /dev/null +++ b/src/chrome/content/rules/EverydayGiftCards.com.au.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Everyday_Health.xml b/src/chrome/content/rules/Everyday_Health.xml index 2862a48615db..4dba57c36ad9 100644 --- a/src/chrome/content/rules/Everyday_Health.xml +++ b/src/chrome/content/rules/Everyday_Health.xml @@ -10,21 +10,18 @@ Fetch error: http://everydayhealth.com/ => https://everydayhealth.com/: Cycle de - corporate.everydayhealth.com --> - + - - + + + - - - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Everyday_Hero.xml b/src/chrome/content/rules/Everyday_Hero.xml index 9ec8c744c010..78338ca786e6 100644 --- a/src/chrome/content/rules/Everyday_Hero.xml +++ b/src/chrome/content/rules/Everyday_Hero.xml @@ -20,4 +20,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Everydayfeminism.com.xml b/src/chrome/content/rules/Everydayfeminism.com.xml index 0342f6e8db63..4d7cd27d0ee1 100644 --- a/src/chrome/content/rules/Everydayfeminism.com.xml +++ b/src/chrome/content/rules/Everydayfeminism.com.xml @@ -5,7 +5,7 @@ Fetch error: http://everydayfeminism.com/ => https://everydayfeminism.com/: Too Fetch error: http://www.everydayfeminism.com/ => https://www.everydayfeminism.com/: Too many redirects while fetching 'https://www.everydayfeminism.com/' --> - + diff --git a/src/chrome/content/rules/Everyone_is_Gay.com.xml b/src/chrome/content/rules/Everyone_is_Gay.com.xml index 29cce7260837..7c357ddcb1a9 100644 --- a/src/chrome/content/rules/Everyone_is_Gay.com.xml +++ b/src/chrome/content/rules/Everyone_is_Gay.com.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Everything_Everywhere.xml b/src/chrome/content/rules/Everything_Everywhere.xml index c79657b85ed3..083b63891840 100644 --- a/src/chrome/content/rules/Everything_Everywhere.xml +++ b/src/chrome/content/rules/Everything_Everywhere.xml @@ -1,6 +1,5 @@ - - + - - - - - - - - - + + + + + + + + + + + + + + + + + @@ -100,4 +83,5 @@ - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Evidon.xml b/src/chrome/content/rules/Evidon.xml index 21e53c12d50f..5afbbf5d82c9 100644 --- a/src/chrome/content/rules/Evidon.xml +++ b/src/chrome/content/rules/Evidon.xml @@ -1,42 +1,56 @@ + + + - + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Evm.dk.xml b/src/chrome/content/rules/Evm.dk.xml index dfddd3a3e15c..db8fd70673f8 100644 --- a/src/chrome/content/rules/Evm.dk.xml +++ b/src/chrome/content/rules/Evm.dk.xml @@ -1,13 +1,7 @@ - - + - + diff --git a/src/chrome/content/rules/Evoluted.net.xml b/src/chrome/content/rules/Evoluted.net.xml index deab6b17cfb1..4b91ff3c1e6f 100644 --- a/src/chrome/content/rules/Evoluted.net.xml +++ b/src/chrome/content/rules/Evoluted.net.xml @@ -20,7 +20,7 @@ --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Exaccess.ru.xml b/src/chrome/content/rules/Exaccess.ru.xml index 07f6e84d3e39..be6335b6b875 100644 --- a/src/chrome/content/rules/Exaccess.ru.xml +++ b/src/chrome/content/rules/Exaccess.ru.xml @@ -6,10 +6,10 @@ --> - + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/ExactTarget-mismatches.xml b/src/chrome/content/rules/ExactTarget-mismatches.xml index 18538bb1917f..daafdd947eed 100644 --- a/src/chrome/content/rules/ExactTarget-mismatches.xml +++ b/src/chrome/content/rules/ExactTarget-mismatches.xml @@ -10,7 +10,6 @@ - + diff --git a/src/chrome/content/rules/ExactTarget.xml b/src/chrome/content/rules/ExactTarget.xml index 299400e8579c..b6dd415dcc46 100644 --- a/src/chrome/content/rules/ExactTarget.xml +++ b/src/chrome/content/rules/ExactTarget.xml @@ -1,10 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + diff --git a/src/chrome/content/rules/Exactag.xml b/src/chrome/content/rules/Exactag.xml index 778c09b853dc..4ce26b868263 100644 --- a/src/chrome/content/rules/Exactag.xml +++ b/src/chrome/content/rules/Exactag.xml @@ -1,25 +1,45 @@ - - + + + + + + + + + + + + - - - - - + + + + + + + + - \ No newline at end of file + diff --git a/src/chrome/content/rules/ExamService.com.tw.xml b/src/chrome/content/rules/ExamService.com.tw.xml new file mode 100644 index 000000000000..b57295367f5d --- /dev/null +++ b/src/chrome/content/rules/ExamService.com.tw.xml @@ -0,0 +1,11 @@ + + + + + + + diff --git a/src/chrome/content/rules/Examiner.com.xml b/src/chrome/content/rules/Examiner.com.xml index 8b382db54d3c..b43bd200c76b 100644 --- a/src/chrome/content/rules/Examiner.com.xml +++ b/src/chrome/content/rules/Examiner.com.xml @@ -18,7 +18,7 @@ Fetch error: http://examiner.com/ => https://examiner.com/: (60, 'SSL certificat - cdn.exm.nr (works; mismatched, CN: gp1.wac.edgecastcdn.net) --> - + diff --git a/src/chrome/content/rules/Examp1e.net.xml b/src/chrome/content/rules/Examp1e.net.xml index 9c269e5c9e05..2ed8d4da8cc7 100644 --- a/src/chrome/content/rules/Examp1e.net.xml +++ b/src/chrome/content/rules/Examp1e.net.xml @@ -8,7 +8,7 @@ Fetch error: http://examp1e.net/ => https://examp1e.net/: (60, 'SSL certificate - www.examp1e.net --> - + diff --git a/src/chrome/content/rules/Excaliburfilms.xml b/src/chrome/content/rules/Excaliburfilms.xml index 58f18d5334dc..52013a20fce9 100644 --- a/src/chrome/content/rules/Excaliburfilms.xml +++ b/src/chrome/content/rules/Excaliburfilms.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://images.excaliburfilms.com/ => https://images.excaliburfilms.com/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/Excelsior-USA.com.xml b/src/chrome/content/rules/Excelsior-USA.com.xml deleted file mode 100644 index 238010c3458a..000000000000 --- a/src/chrome/content/rules/Excelsior-USA.com.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Excitations.com.xml b/src/chrome/content/rules/Excitations.com.xml index 0935272ed26a..49f74e4119e7 100644 --- a/src/chrome/content/rules/Excitations.com.xml +++ b/src/chrome/content/rules/Excitations.com.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Exclusive_X.xml b/src/chrome/content/rules/Exclusive_X.xml index f6bda2eff071..dd4217f0f954 100644 --- a/src/chrome/content/rules/Exclusive_X.xml +++ b/src/chrome/content/rules/Exclusive_X.xml @@ -4,9 +4,9 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Exede.xml b/src/chrome/content/rules/Exede.xml deleted file mode 100644 index aca19a569913..000000000000 --- a/src/chrome/content/rules/Exede.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Exeter_Friendly_Society.xml b/src/chrome/content/rules/Exeter_Friendly_Society.xml index 1d6cb6c853e8..302125ebcbfb 100644 --- a/src/chrome/content/rules/Exeter_Friendly_Society.xml +++ b/src/chrome/content/rules/Exeter_Friendly_Society.xml @@ -14,7 +14,7 @@ Fetch error: http://www.exeterfriendly.co.uk/ => https://www.exeterfamily.co.uk/ * Times out --> - + @@ -31,4 +31,4 @@ Fetch error: http://www.exeterfriendly.co.uk/ => https://www.exeterfamily.co.uk/ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Exhale.xml b/src/chrome/content/rules/Exhale.xml index 4ad10fe0b22b..2e8b84c04e69 100644 --- a/src/chrome/content/rules/Exhale.xml +++ b/src/chrome/content/rules/Exhale.xml @@ -2,18 +2,21 @@ Problematic domains: - (www.)4exhale.org (502; mismatched, CN: *.electricembers.net) + - mail.exhaleprovoice.org (mismatched, CN: *.outlook.com) --> + + - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Exim.org.xml b/src/chrome/content/rules/Exim.org.xml index ab7397c80ba4..6adc8b9a8879 100644 --- a/src/chrome/content/rules/Exim.org.xml +++ b/src/chrome/content/rules/Exim.org.xml @@ -1,11 +1,26 @@ - + + + + + + + + + - + + diff --git a/src/chrome/content/rules/Exitec.xml b/src/chrome/content/rules/Exitec.xml deleted file mode 100644 index 91743026f87f..000000000000 --- a/src/chrome/content/rules/Exitec.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Exmasters.com.xml b/src/chrome/content/rules/Exmasters.com.xml index edae425b94ef..cc28ec54a743 100644 --- a/src/chrome/content/rules/Exmasters.com.xml +++ b/src/chrome/content/rules/Exmasters.com.xml @@ -20,4 +20,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Exmo.com.xml b/src/chrome/content/rules/Exmo.com.xml index abf6b9373a37..e023dcda49ed 100644 --- a/src/chrome/content/rules/Exmo.com.xml +++ b/src/chrome/content/rules/Exmo.com.xml @@ -9,7 +9,7 @@ Fetch error: http://merchant.exmo.com/ => https://merchant.exmo.com/: (6, 'Could - www.exmo.com --> - + diff --git a/src/chrome/content/rules/Exoclick.xml b/src/chrome/content/rules/Exoclick.xml index 5db85fbc4789..6b2cec8b404f 100644 --- a/src/chrome/content/rules/Exoclick.xml +++ b/src/chrome/content/rules/Exoclick.xml @@ -44,7 +44,7 @@ --> - + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ExootLab.xml b/src/chrome/content/rules/ExootLab.xml deleted file mode 100644 index 63982ee8b6c0..000000000000 --- a/src/chrome/content/rules/ExootLab.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/ExoticVM.com.xml b/src/chrome/content/rules/ExoticVM.com.xml new file mode 100644 index 000000000000..9c14880b0188 --- /dev/null +++ b/src/chrome/content/rules/ExoticVM.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Expedia.at.xml b/src/chrome/content/rules/Expedia.at.xml new file mode 100644 index 000000000000..51a7cdacfa58 --- /dev/null +++ b/src/chrome/content/rules/Expedia.at.xml @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Expedia.be.xml b/src/chrome/content/rules/Expedia.be.xml new file mode 100644 index 000000000000..be36622ad262 --- /dev/null +++ b/src/chrome/content/rules/Expedia.be.xml @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Expedia.ca.xml b/src/chrome/content/rules/Expedia.ca.xml new file mode 100644 index 000000000000..044969d752a5 --- /dev/null +++ b/src/chrome/content/rules/Expedia.ca.xml @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Expedia.ch.xml b/src/chrome/content/rules/Expedia.ch.xml new file mode 100644 index 000000000000..c140f8b5ed8f --- /dev/null +++ b/src/chrome/content/rules/Expedia.ch.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Expedia.cn.xml b/src/chrome/content/rules/Expedia.cn.xml new file mode 100644 index 000000000000..35778dc3f6e4 --- /dev/null +++ b/src/chrome/content/rules/Expedia.cn.xml @@ -0,0 +1,29 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Expedia.co.id.xml b/src/chrome/content/rules/Expedia.co.id.xml new file mode 100644 index 000000000000..28c8d309b6da --- /dev/null +++ b/src/chrome/content/rules/Expedia.co.id.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Expedia.co.in.xml b/src/chrome/content/rules/Expedia.co.in.xml new file mode 100644 index 000000000000..6f07a4f75d8c --- /dev/null +++ b/src/chrome/content/rules/Expedia.co.in.xml @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Expedia.co.jp.xml b/src/chrome/content/rules/Expedia.co.jp.xml new file mode 100644 index 000000000000..cd67c8dbc5da --- /dev/null +++ b/src/chrome/content/rules/Expedia.co.jp.xml @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Expedia.co.kr.xml b/src/chrome/content/rules/Expedia.co.kr.xml new file mode 100644 index 000000000000..7abef76197f3 --- /dev/null +++ b/src/chrome/content/rules/Expedia.co.kr.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Expedia.co.nz.xml b/src/chrome/content/rules/Expedia.co.nz.xml new file mode 100644 index 000000000000..3f03ee538d7f --- /dev/null +++ b/src/chrome/content/rules/Expedia.co.nz.xml @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Expedia.co.th.xml b/src/chrome/content/rules/Expedia.co.th.xml new file mode 100644 index 000000000000..b671afc88329 --- /dev/null +++ b/src/chrome/content/rules/Expedia.co.th.xml @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Expedia.co.uk.xml b/src/chrome/content/rules/Expedia.co.uk.xml new file mode 100644 index 000000000000..01e41515c973 --- /dev/null +++ b/src/chrome/content/rules/Expedia.co.uk.xml @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Expedia.com.ar.xml b/src/chrome/content/rules/Expedia.com.ar.xml new file mode 100644 index 000000000000..18eaba1091ca --- /dev/null +++ b/src/chrome/content/rules/Expedia.com.ar.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Expedia.com.au.xml b/src/chrome/content/rules/Expedia.com.au.xml new file mode 100644 index 000000000000..69c4db2fdaaf --- /dev/null +++ b/src/chrome/content/rules/Expedia.com.au.xml @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Expedia.com.br.xml b/src/chrome/content/rules/Expedia.com.br.xml new file mode 100644 index 000000000000..ef0862f7e044 --- /dev/null +++ b/src/chrome/content/rules/Expedia.com.br.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Expedia.com.hk.xml b/src/chrome/content/rules/Expedia.com.hk.xml new file mode 100644 index 000000000000..55a54d767d6d --- /dev/null +++ b/src/chrome/content/rules/Expedia.com.hk.xml @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Expedia.com.my.xml b/src/chrome/content/rules/Expedia.com.my.xml new file mode 100644 index 000000000000..cab5e53258c9 --- /dev/null +++ b/src/chrome/content/rules/Expedia.com.my.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Expedia.com.ph.xml b/src/chrome/content/rules/Expedia.com.ph.xml new file mode 100644 index 000000000000..e48d19fdb321 --- /dev/null +++ b/src/chrome/content/rules/Expedia.com.ph.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Expedia.com.sg.xml b/src/chrome/content/rules/Expedia.com.sg.xml new file mode 100644 index 000000000000..c398ae3c8132 --- /dev/null +++ b/src/chrome/content/rules/Expedia.com.sg.xml @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Expedia.com.tw.xml b/src/chrome/content/rules/Expedia.com.tw.xml new file mode 100644 index 000000000000..50124af17431 --- /dev/null +++ b/src/chrome/content/rules/Expedia.com.tw.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Expedia.com.vn.xml b/src/chrome/content/rules/Expedia.com.vn.xml new file mode 100644 index 000000000000..e7da1b01684d --- /dev/null +++ b/src/chrome/content/rules/Expedia.com.vn.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Expedia.com.xml b/src/chrome/content/rules/Expedia.com.xml new file mode 100644 index 000000000000..d8b1003edcb3 --- /dev/null +++ b/src/chrome/content/rules/Expedia.com.xml @@ -0,0 +1,241 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Expedia.de.xml b/src/chrome/content/rules/Expedia.de.xml new file mode 100644 index 000000000000..31bbbbf78e8f --- /dev/null +++ b/src/chrome/content/rules/Expedia.de.xml @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Expedia.dk.xml b/src/chrome/content/rules/Expedia.dk.xml new file mode 100644 index 000000000000..daf7b4ae946e --- /dev/null +++ b/src/chrome/content/rules/Expedia.dk.xml @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Expedia.es.xml b/src/chrome/content/rules/Expedia.es.xml new file mode 100644 index 000000000000..85ebc043a4f2 --- /dev/null +++ b/src/chrome/content/rules/Expedia.es.xml @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Expedia.fi.xml b/src/chrome/content/rules/Expedia.fi.xml new file mode 100644 index 000000000000..07d96a6eaad6 --- /dev/null +++ b/src/chrome/content/rules/Expedia.fi.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Expedia.fr.xml b/src/chrome/content/rules/Expedia.fr.xml new file mode 100644 index 000000000000..de52d961f8db --- /dev/null +++ b/src/chrome/content/rules/Expedia.fr.xml @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Expedia.ie.xml b/src/chrome/content/rules/Expedia.ie.xml new file mode 100644 index 000000000000..e52afd602dc7 --- /dev/null +++ b/src/chrome/content/rules/Expedia.ie.xml @@ -0,0 +1,32 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Expedia.it.xml b/src/chrome/content/rules/Expedia.it.xml new file mode 100644 index 000000000000..0ec376973cfb --- /dev/null +++ b/src/chrome/content/rules/Expedia.it.xml @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Expedia.mx.xml b/src/chrome/content/rules/Expedia.mx.xml new file mode 100644 index 000000000000..00f45f1bc5be --- /dev/null +++ b/src/chrome/content/rules/Expedia.mx.xml @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Expedia.nl.xml b/src/chrome/content/rules/Expedia.nl.xml new file mode 100644 index 000000000000..9af71240b318 --- /dev/null +++ b/src/chrome/content/rules/Expedia.nl.xml @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Expedia.no.xml b/src/chrome/content/rules/Expedia.no.xml new file mode 100644 index 000000000000..2e5191968789 --- /dev/null +++ b/src/chrome/content/rules/Expedia.no.xml @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Expedia.se.xml b/src/chrome/content/rules/Expedia.se.xml new file mode 100644 index 000000000000..471459537469 --- /dev/null +++ b/src/chrome/content/rules/Expedia.se.xml @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Expedia.xml b/src/chrome/content/rules/Expedia.xml deleted file mode 100644 index 3b1390171078..000000000000 --- a/src/chrome/content/rules/Expedia.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Expedia_affiliate.com.xml b/src/chrome/content/rules/Expedia_affiliate.com.xml deleted file mode 100644 index b1e9cf9005e8..000000000000 --- a/src/chrome/content/rules/Expedia_affiliate.com.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Experian.xml b/src/chrome/content/rules/Experian.xml index 03d94b2bc354..bd287fe020cd 100644 --- a/src/chrome/content/rules/Experian.xml +++ b/src/chrome/content/rules/Experian.xml @@ -6,27 +6,13 @@ - Chtah.net.xml - Fagms.net.xml - - Problematic domains: - - - experian.com (cert only matches www) - --> - + - - - - - - - - + diff --git a/src/chrome/content/rules/Experience-Days.xml b/src/chrome/content/rules/Experience-Days.xml index 73f79f6bb1fd..e4f26e8103de 100644 --- a/src/chrome/content/rules/Experience-Days.xml +++ b/src/chrome/content/rules/Experience-Days.xml @@ -2,8 +2,7 @@ - + diff --git a/src/chrome/content/rules/Explainxkcd.com.xml b/src/chrome/content/rules/Explainxkcd.com.xml index 379b4f9257f4..8c4afa80af02 100644 --- a/src/chrome/content/rules/Explainxkcd.com.xml +++ b/src/chrome/content/rules/Explainxkcd.com.xml @@ -1,7 +1,7 @@ - + diff --git a/src/chrome/content/rules/ExploreFlask.com.xml b/src/chrome/content/rules/ExploreFlask.com.xml new file mode 100644 index 000000000000..a7fb87bc7eba --- /dev/null +++ b/src/chrome/content/rules/ExploreFlask.com.xml @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Explosm.net.xml b/src/chrome/content/rules/Explosm.net.xml index 99b75e92c726..067c49009f44 100644 --- a/src/chrome/content/rules/Explosm.net.xml +++ b/src/chrome/content/rules/Explosm.net.xml @@ -24,19 +24,19 @@ Fetch error: http://explosm.net/ => https://explosm.net/: Cycle detected - URL a a problem for mixed content blockers. --> - + - + + - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Expo2020.xml b/src/chrome/content/rules/Expo2020.xml index 47a452067c1b..d71efa5423b2 100644 --- a/src/chrome/content/rules/Expo2020.xml +++ b/src/chrome/content/rules/Expo2020.xml @@ -13,7 +13,7 @@ Fetch error: http://grant.expo2020dubai.ae/ => https://grant.expo2020dubai.ae/: - expo2020dubai.ae --> - + diff --git a/src/chrome/content/rules/Exposing_the_Invisible.org.xml b/src/chrome/content/rules/Exposing_the_Invisible.org.xml index 2df73702cdb9..e6f1ab269434 100644 --- a/src/chrome/content/rules/Exposing_the_Invisible.org.xml +++ b/src/chrome/content/rules/Exposing_the_Invisible.org.xml @@ -18,7 +18,7 @@ --> - + - + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Expresscoin.com.xml b/src/chrome/content/rules/Expresscoin.com.xml index 7ebf545c52b7..8f6933107ca0 100644 --- a/src/chrome/content/rules/Expresscoin.com.xml +++ b/src/chrome/content/rules/Expresscoin.com.xml @@ -24,7 +24,7 @@ Fetch error: http://accounts.expresscoin.com/ => https://accounts.expresscoin.co - www.expresscoin.com --> - + diff --git a/src/chrome/content/rules/Expressen.se.xml b/src/chrome/content/rules/Expressen.se.xml new file mode 100644 index 000000000000..8f2a12ff0468 --- /dev/null +++ b/src/chrome/content/rules/Expressen.se.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Extabit.xml b/src/chrome/content/rules/Extabit.xml index c8b059c95954..378a2b740a94 100644 --- a/src/chrome/content/rules/Extabit.xml +++ b/src/chrome/content/rules/Extabit.xml @@ -16,7 +16,9 @@ - + + + - + diff --git a/src/chrome/content/rules/Extensis.com.xml b/src/chrome/content/rules/Extensis.com.xml index b88c46947fbd..b6d365efec6f 100644 --- a/src/chrome/content/rules/Extensis.com.xml +++ b/src/chrome/content/rules/Extensis.com.xml @@ -36,7 +36,7 @@ Fetch error: http://www2.extensis.com/ => https://www2.extensis.com/: (51, "SSL: - www.extensis.com --> - + diff --git a/src/chrome/content/rules/Extra_Lunch_Money.xml b/src/chrome/content/rules/Extra_Lunch_Money.xml index f60c37447d74..c27769f3fbcf 100644 --- a/src/chrome/content/rules/Extra_Lunch_Money.xml +++ b/src/chrome/content/rules/Extra_Lunch_Money.xml @@ -12,16 +12,16 @@ - + + - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Extratorrent.com.xml b/src/chrome/content/rules/Extratorrent.com.xml index cec80993a22d..4c14f5a5f7e3 100644 --- a/src/chrome/content/rules/Extratorrent.com.xml +++ b/src/chrome/content/rules/Extratorrent.com.xml @@ -12,7 +12,7 @@ Fetch error: http://www.extratorrentonline.com/ => https://www.extratorrentonlin static.etproxy.com different content --> - + @@ -31,7 +31,7 @@ static.etproxy.com different content - + - + + + + + - @@ -32,4 +34,5 @@ + diff --git a/src/chrome/content/rules/Extreme-Light-Infrastructure.xml b/src/chrome/content/rules/Extreme-Light-Infrastructure.xml deleted file mode 100644 index 46111b8a359a..000000000000 --- a/src/chrome/content/rules/Extreme-Light-Infrastructure.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/ExtremeTacticalDynamics.com.xml b/src/chrome/content/rules/ExtremeTacticalDynamics.com.xml new file mode 100644 index 000000000000..35d7dfebc02b --- /dev/null +++ b/src/chrome/content/rules/ExtremeTacticalDynamics.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/ExtremeTech.com.xml b/src/chrome/content/rules/ExtremeTech.com.xml new file mode 100644 index 000000000000..371e1a42882f --- /dev/null +++ b/src/chrome/content/rules/ExtremeTech.com.xml @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Extreme_Digital.xml b/src/chrome/content/rules/Extreme_Digital.xml deleted file mode 100644 index 509bee00ebbe..000000000000 --- a/src/chrome/content/rules/Extreme_Digital.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - diff --git a/src/chrome/content/rules/Extreme_Tech.com.xml b/src/chrome/content/rules/Extreme_Tech.com.xml deleted file mode 100644 index 238275bf9a44..000000000000 --- a/src/chrome/content/rules/Extreme_Tech.com.xml +++ /dev/null @@ -1,55 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/EyeReturn.com.xml b/src/chrome/content/rules/EyeReturn.com.xml deleted file mode 100644 index 616a5ed704f2..000000000000 --- a/src/chrome/content/rules/EyeReturn.com.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/EyeReturn_Marketing.com.xml b/src/chrome/content/rules/EyeReturn_Marketing.com.xml index 485f21ab64e7..fd9053c0e43e 100644 --- a/src/chrome/content/rules/EyeReturn_Marketing.com.xml +++ b/src/chrome/content/rules/EyeReturn_Marketing.com.xml @@ -1,7 +1,6 @@ - - - - + diff --git a/src/chrome/content/rules/EyeTech.xml b/src/chrome/content/rules/EyeTech.xml index a1041f02a3e1..c297fd8eeeba 100644 --- a/src/chrome/content/rules/EyeTech.xml +++ b/src/chrome/content/rules/EyeTech.xml @@ -12,7 +12,7 @@ Fetch error: http://eyetechds.com/ => https://eyetechds.com/: (51, "SSL: no alte Fetch error: http://www.eyetechds.com/ => https://www.eyetechds.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.eyetechds.com'") --> - + @@ -20,4 +20,4 @@ Fetch error: http://www.eyetechds.com/ => https://www.eyetechds.com/: (51, "SSL: - \ No newline at end of file + diff --git a/src/chrome/content/rules/Eyeviewads.com.xml b/src/chrome/content/rules/Eyeviewads.com.xml index 9e83d7210e0c..1be7773b8dc4 100644 --- a/src/chrome/content/rules/Eyeviewads.com.xml +++ b/src/chrome/content/rules/Eyeviewads.com.xml @@ -1,27 +1,27 @@ + + + + + + + - - - - - - - - + - + diff --git a/src/chrome/content/rules/Eyny.com.xml b/src/chrome/content/rules/Eyny.com.xml new file mode 100644 index 000000000000..a31051620ffd --- /dev/null +++ b/src/chrome/content/rules/Eyny.com.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/EzAccessory.com.xml b/src/chrome/content/rules/EzAccessory.com.xml index def7db50318b..25049ec5f6be 100644 --- a/src/chrome/content/rules/EzAccessory.com.xml +++ b/src/chrome/content/rules/EzAccessory.com.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/EzDing.com.tw.xml b/src/chrome/content/rules/EzDing.com.tw.xml index 43eb2149c8a8..2724b0f6580d 100644 --- a/src/chrome/content/rules/EzDing.com.tw.xml +++ b/src/chrome/content/rules/EzDing.com.tw.xml @@ -21,7 +21,7 @@ Fetch error: http://ezding.com.tw/ => https://ezding.com.tw/: (28, 'Connection t * Unsecurable --> - + diff --git a/src/chrome/content/rules/Ezaxess.com.xml b/src/chrome/content/rules/Ezaxess.com.xml deleted file mode 100644 index ea9ab1450155..000000000000 --- a/src/chrome/content/rules/Ezaxess.com.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/EziBuy.com.xml b/src/chrome/content/rules/EziBuy.com.xml new file mode 100644 index 000000000000..cea4c517a3e4 --- /dev/null +++ b/src/chrome/content/rules/EziBuy.com.xml @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/EzineArticles.xml b/src/chrome/content/rules/EzineArticles.xml index 097950f83465..a30ae02123dc 100644 --- a/src/chrome/content/rules/EzineArticles.xml +++ b/src/chrome/content/rules/EzineArticles.xml @@ -11,7 +11,8 @@ --> - + + + diff --git a/src/chrome/content/rules/F-Droid.xml b/src/chrome/content/rules/F-Droid.xml index 23f46e7b3fd1..32ad4139fbc5 100644 --- a/src/chrome/content/rules/F-Droid.xml +++ b/src/chrome/content/rules/F-Droid.xml @@ -2,14 +2,11 @@ + + + - - - - - - + diff --git a/src/chrome/content/rules/F-Secure.xml b/src/chrome/content/rules/F-Secure.xml index 1322c88f8dfd..fb4be2659bb1 100644 --- a/src/chrome/content/rules/F-Secure.xml +++ b/src/chrome/content/rules/F-Secure.xml @@ -80,7 +80,7 @@ Fetch error: http://trial.f-secure.com/ => https://trial.f-secure.com/: (6, 'Cou ² Unsecurable --> - + @@ -134,7 +134,7 @@ Fetch error: http://trial.f-secure.com/ => https://trial.f-secure.com/: (6, 'Cou - + - - - - - - - - - - - diff --git a/src/chrome/content/rules/F5-mismatches.xml b/src/chrome/content/rules/F5-mismatches.xml deleted file mode 100644 index 159fda8ad990..000000000000 --- a/src/chrome/content/rules/F5-mismatches.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/F5.com.xml b/src/chrome/content/rules/F5.com.xml new file mode 100644 index 000000000000..c8567aef8738 --- /dev/null +++ b/src/chrome/content/rules/F5.com.xml @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/F5.xml b/src/chrome/content/rules/F5.xml deleted file mode 100644 index d6be9f445108..000000000000 --- a/src/chrome/content/rules/F5.xml +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/F5_Networks.co.jp.xml b/src/chrome/content/rules/F5_Networks.co.jp.xml index a6abc71d13e5..de8448f8fe6f 100644 --- a/src/chrome/content/rules/F5_Networks.co.jp.xml +++ b/src/chrome/content/rules/F5_Networks.co.jp.xml @@ -1,16 +1,13 @@ - + - - - + diff --git a/src/chrome/content/rules/FAFSA.gov.xml b/src/chrome/content/rules/FAFSA.gov.xml index 093828f92ce7..38e775abaf1c 100644 --- a/src/chrome/content/rules/FAFSA.gov.xml +++ b/src/chrome/content/rules/FAFSA.gov.xml @@ -7,7 +7,7 @@ - + - - - - - - - diff --git a/src/chrome/content/rules/FAZ.xml b/src/chrome/content/rules/FAZ.xml index 1bdf2c194984..502c6e4cdef0 100644 --- a/src/chrome/content/rules/FAZ.xml +++ b/src/chrome/content/rules/FAZ.xml @@ -1,76 +1,66 @@ + - Self-signed: - - 50plus.faz.net - - literaturkalender.faz.net + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - Timeout: - - financeforum.fazjob.net - - immobilien.faz.net + + - Timeout at HTTP Port 80: - - filebox.faz.de ---> - - - - - - - - + + + + - + + - - - + @@ -78,6 +68,11 @@ - + + + + + diff --git a/src/chrome/content/rules/FBINAA.org.xml b/src/chrome/content/rules/FBINAA.org.xml new file mode 100644 index 000000000000..f3589de55ebc --- /dev/null +++ b/src/chrome/content/rules/FBINAA.org.xml @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/src/chrome/content/rules/FC2.com.xml b/src/chrome/content/rules/FC2.com.xml index 9ecef54875f1..87242a2bf3ee 100644 --- a/src/chrome/content/rules/FC2.com.xml +++ b/src/chrome/content/rules/FC2.com.xml @@ -24,7 +24,11 @@ --> - + + + + + @@ -32,7 +36,6 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/FCA.org.uk.xml b/src/chrome/content/rules/FCA.org.uk.xml index 1a25d9ffd0bf..07061375ad04 100644 --- a/src/chrome/content/rules/FCA.org.uk.xml +++ b/src/chrome/content/rules/FCA.org.uk.xml @@ -1,30 +1,33 @@ - - + - + - - + + + + + + + + + diff --git a/src/chrome/content/rules/FCO.gov.uk.xml b/src/chrome/content/rules/FCO.gov.uk.xml index 29263ca720a6..f4815e54115b 100644 --- a/src/chrome/content/rules/FCO.gov.uk.xml +++ b/src/chrome/content/rules/FCO.gov.uk.xml @@ -86,7 +86,7 @@ --> - + - + diff --git a/src/chrome/content/rules/FCW.com.xml b/src/chrome/content/rules/FCW.com.xml index 7e4f86d3b3b4..271e9a77d9f5 100644 --- a/src/chrome/content/rules/FCW.com.xml +++ b/src/chrome/content/rules/FCW.com.xml @@ -26,7 +26,7 @@ - + - + - + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/FF7.fr.xml b/src/chrome/content/rules/FF7.fr.xml new file mode 100644 index 000000000000..e987f4ef6342 --- /dev/null +++ b/src/chrome/content/rules/FF7.fr.xml @@ -0,0 +1,23 @@ + + + + + + + diff --git a/src/chrome/content/rules/FFSG.org.xml b/src/chrome/content/rules/FFSG.org.xml index f6676df76275..58f75eae8b82 100644 --- a/src/chrome/content/rules/FFSG.org.xml +++ b/src/chrome/content/rules/FFSG.org.xml @@ -4,13 +4,13 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.ffsg.org/ => https://www.ffsg.org/: (51, "SSL: no alternative certificate subject name matches target host name 'www.ffsg.org'") --> - + - + https://www.fftlive.org/: (6, 'Could not resolve host: www.fftlive.org') -Fetch error: http://fftlive.org/ => https://www.fftlive.org/: (6, 'Could not resolve host: www.fftlive.org') - - ^fftlive.org: Mismatched - - - Insecure cookies are set for these hosts: - - - www.fftlive.org - ---> - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/FHEM.de.xml b/src/chrome/content/rules/FHEM.de.xml new file mode 100644 index 000000000000..e4f8e9da1893 --- /dev/null +++ b/src/chrome/content/rules/FHEM.de.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/FIDO_Alliance.org.xml b/src/chrome/content/rules/FIDO_Alliance.org.xml index b2ee072172a6..fc5367195f38 100644 --- a/src/chrome/content/rules/FIDO_Alliance.org.xml +++ b/src/chrome/content/rules/FIDO_Alliance.org.xml @@ -32,7 +32,7 @@ - + - + + @@ -29,4 +30,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/FINANZEN.NET.xml b/src/chrome/content/rules/FINANZEN.NET.xml new file mode 100644 index 000000000000..5e611a90950a --- /dev/null +++ b/src/chrome/content/rules/FINANZEN.NET.xml @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/FIRST.org.xml b/src/chrome/content/rules/FIRST.org.xml deleted file mode 100644 index 3d4852e9e8b4..000000000000 --- a/src/chrome/content/rules/FIRST.org.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/FKFeV.de.xml b/src/chrome/content/rules/FKFeV.de.xml new file mode 100644 index 000000000000..9f9461884f3d --- /dev/null +++ b/src/chrome/content/rules/FKFeV.de.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/FLIF.info.xml b/src/chrome/content/rules/FLIF.info.xml new file mode 100644 index 000000000000..23582be18493 --- /dev/null +++ b/src/chrome/content/rules/FLIF.info.xml @@ -0,0 +1,17 @@ + + + + + + + + diff --git a/src/chrome/content/rules/FLOSS-Shop.de.xml b/src/chrome/content/rules/FLOSS-Shop.de.xml new file mode 100644 index 000000000000..beae6f2a200f --- /dev/null +++ b/src/chrome/content/rules/FLOSS-Shop.de.xml @@ -0,0 +1,15 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/FLonline.eu.xml b/src/chrome/content/rules/FLonline.eu.xml deleted file mode 100644 index 779d3465cf5c..000000000000 --- a/src/chrome/content/rules/FLonline.eu.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/FMSA.de.xml b/src/chrome/content/rules/FMSA.de.xml new file mode 100644 index 000000000000..8d381d0c7dd3 --- /dev/null +++ b/src/chrome/content/rules/FMSA.de.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/FMV.se.xml b/src/chrome/content/rules/FMV.se.xml index 900c78569b71..8b9fd323851d 100644 --- a/src/chrome/content/rules/FMV.se.xml +++ b/src/chrome/content/rules/FMV.se.xml @@ -1,7 +1,15 @@ - + + - - - + + + + diff --git a/src/chrome/content/rules/FMyLife.com.xml b/src/chrome/content/rules/FMyLife.com.xml index e46978e8c9f7..16e9f8d39f53 100644 --- a/src/chrome/content/rules/FMyLife.com.xml +++ b/src/chrome/content/rules/FMyLife.com.xml @@ -1,30 +1,19 @@ - + @@ -42,4 +31,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/FN_Mag.co-falsemixed.xml b/src/chrome/content/rules/FN_Mag.co-falsemixed.xml index a2eb9ce157a5..62f3dc93e3ec 100644 --- a/src/chrome/content/rules/FN_Mag.co-falsemixed.xml +++ b/src/chrome/content/rules/FN_Mag.co-falsemixed.xml @@ -9,7 +9,7 @@ Fetch error: http://fnmag.co/ => https://fnmag.co/: (35, 'error:140770FC:SSL rou For rules not causing false/broken mixed content, see FN_Mag.co.xml. --> - + diff --git a/src/chrome/content/rules/FN_Mag.co.xml b/src/chrome/content/rules/FN_Mag.co.xml deleted file mode 100644 index 089e232d847e..000000000000 --- a/src/chrome/content/rules/FN_Mag.co.xml +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/FOM_Networks.com.xml b/src/chrome/content/rules/FOM_Networks.com.xml index 918281d1acb9..ecbaf5c460bf 100644 --- a/src/chrome/content/rules/FOM_Networks.com.xml +++ b/src/chrome/content/rules/FOM_Networks.com.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/FOSSBazaar.org.xml b/src/chrome/content/rules/FOSSBazaar.org.xml index 9788c38f6005..0d5af7a9a16c 100644 --- a/src/chrome/content/rules/FOSSBazaar.org.xml +++ b/src/chrome/content/rules/FOSSBazaar.org.xml @@ -11,7 +11,7 @@ - + - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/FPJ_Intel.com.xml b/src/chrome/content/rules/FPJ_Intel.com.xml index 9c30ae69ab65..1cd06599740e 100644 --- a/src/chrome/content/rules/FPJ_Intel.com.xml +++ b/src/chrome/content/rules/FPJ_Intel.com.xml @@ -6,7 +6,7 @@ - + https://haskell.fpcomplete.com/: - www.fpcomplete.com --> - + diff --git a/src/chrome/content/rules/FR.de.xml b/src/chrome/content/rules/FR.de.xml new file mode 100644 index 000000000000..a90c3836f974 --- /dev/null +++ b/src/chrome/content/rules/FR.de.xml @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/FRA_LLC.com.xml b/src/chrome/content/rules/FRA_LLC.com.xml deleted file mode 100644 index 2289256cd083..000000000000 --- a/src/chrome/content/rules/FRA_LLC.com.xml +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/FREECULTR.xml b/src/chrome/content/rules/FREECULTR.xml index 91367ba8afe2..7edfa26377ff 100644 --- a/src/chrome/content/rules/FREECULTR.xml +++ b/src/chrome/content/rules/FREECULTR.xml @@ -15,10 +15,11 @@ Fetch error: http://freecultr.com/ => https://www.freecultr.com/: (7, 'Failed to - static --> - + - + + diff --git a/src/chrome/content/rules/FRUCT.org.xml b/src/chrome/content/rules/FRUCT.org.xml index 5adb48401c01..6c8b9dc92772 100644 --- a/src/chrome/content/rules/FRUCT.org.xml +++ b/src/chrome/content/rules/FRUCT.org.xml @@ -6,7 +6,7 @@ - (www.)?md ¹ - (www.)?rusmart ¹ - vyatka.yar ¹ - + ¹ Shows another domain ² Refused @@ -38,7 +38,7 @@ - css on social from $self - Images, on: - + - (www.)?, (www.)?forum from ssl.gstatic.com * - (www.)?forum from ^fruct.org * - social from $self @@ -64,7 +64,7 @@ - + https://mutuals.fsa.gov.uk/: (60, 'SSL certificate problem: unable to get local issuer certificate') - - For other UK government coverage, see GOV.UK.xml. - - - Nonfunctional hosts in *fsa.gov.uk: - - - freecalc * - - www * - - * 403 - - - ^fsa.gov.uk doesn't exist. - - - Insecure cookies are set for these hosts: - - - mutuals.fsa.gov.uk - ---> - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/FSCS.org.uk.xml b/src/chrome/content/rules/FSCS.org.uk.xml index d77f5f7fa87d..a39eaacee02c 100644 --- a/src/chrome/content/rules/FSCS.org.uk.xml +++ b/src/chrome/content/rules/FSCS.org.uk.xml @@ -25,7 +25,7 @@ - + + + + + - - - + + + + + - - - - - - - - - - - - - - - - - - - - @@ -112,20 +57,7 @@ In particular, shop.fsf.org is not fully securable, and seems to share a login system with www. --> - - - - - - - - + @@ -134,7 +66,6 @@ - + diff --git a/src/chrome/content/rules/FSFE.org.xml b/src/chrome/content/rules/FSFE.org.xml index d65bd1c8672a..c4e09a15d9ad 100644 --- a/src/chrome/content/rules/FSFE.org.xml +++ b/src/chrome/content/rules/FSFE.org.xml @@ -30,7 +30,7 @@ Fetch error: http://vote.fsfe.org/ => https://vote.fsfe.org/: (60, 'SSL certific * Secured by us --> - + diff --git a/src/chrome/content/rules/FSFEurope.org.xml b/src/chrome/content/rules/FSFEurope.org.xml index f5ff47415118..5b34efa0785e 100644 --- a/src/chrome/content/rules/FSFEurope.org.xml +++ b/src/chrome/content/rules/FSFEurope.org.xml @@ -9,7 +9,7 @@ Fetch error: http://www.fsfeurope.org/ => https://www.fsfeurope.org/: (51, "SSL: For other Free Software Foundation Europe coverage, see FSFE.org.xml. --> - + diff --git a/src/chrome/content/rules/FSU.edu.xml b/src/chrome/content/rules/FSU.edu.xml index 959e8f434ce0..ce6852694f96 100644 --- a/src/chrome/content/rules/FSU.edu.xml +++ b/src/chrome/content/rules/FSU.edu.xml @@ -73,7 +73,22 @@ - + + + + + + + + + + + + + + + + - - + + - - - + diff --git a/src/chrome/content/rules/FS_Data.xml b/src/chrome/content/rules/FS_Data.xml index 089d1cda4a1d..358c8070e67a 100644 --- a/src/chrome/content/rules/FS_Data.xml +++ b/src/chrome/content/rules/FS_Data.xml @@ -25,7 +25,7 @@ --> - + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/FTL_Game.com.xml b/src/chrome/content/rules/FTL_Game.com.xml index 6b81910c41b0..409d39889208 100644 --- a/src/chrome/content/rules/FTL_Game.com.xml +++ b/src/chrome/content/rules/FTL_Game.com.xml @@ -13,7 +13,7 @@ Fetch error: http://ftlgame.com/ => https://ftlgame.com/: (7, 'Failed to connect * Secured by us --> - + diff --git a/src/chrome/content/rules/FU-Berlin.de.xml b/src/chrome/content/rules/FU-Berlin.de.xml new file mode 100644 index 000000000000..cac23874cef5 --- /dev/null +++ b/src/chrome/content/rules/FU-Berlin.de.xml @@ -0,0 +1,19 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/FVEYdocs.org.xml b/src/chrome/content/rules/FVEYdocs.org.xml deleted file mode 100644 index 3b7dc5eb2c47..000000000000 --- a/src/chrome/content/rules/FVEYdocs.org.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/FX_Prime.com.xml b/src/chrome/content/rules/FX_Prime.com.xml index 99debfdce9ad..195f84ab5e94 100644 --- a/src/chrome/content/rules/FX_Prime.com.xml +++ b/src/chrome/content/rules/FX_Prime.com.xml @@ -15,7 +15,7 @@ Fetch error: http://mirror.fxprime.com/ => https://mirror.fxprime.com/: (28, 'Co - mirror --> - + diff --git a/src/chrome/content/rules/FX_Systems.xml b/src/chrome/content/rules/FX_Systems.xml index eae3af51ccff..85876225651e 100644 --- a/src/chrome/content/rules/FX_Systems.xml +++ b/src/chrome/content/rules/FX_Systems.xml @@ -7,7 +7,7 @@ Fetch error: http://www.fxsystems.com/ => https://www.fxsystems.com/: (7, 'Faile Disabled by https-everywhere-checker because: Fetch error: http://fxsystems.com/ => https://fxsystems.com/: (51, "SSL: no alternative certificate subject name matches target host name 'fxsystems.com'") --> - + @@ -18,4 +18,4 @@ Fetch error: http://fxsystems.com/ => https://fxsystems.com/: (51, "SSL: no alte - \ No newline at end of file + diff --git a/src/chrome/content/rules/FabLab_Tacoma.xml b/src/chrome/content/rules/FabLab_Tacoma.xml index 89dd26d9c26f..6ac372b63d84 100644 --- a/src/chrome/content/rules/FabLab_Tacoma.xml +++ b/src/chrome/content/rules/FabLab_Tacoma.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Fabricatorz.xml b/src/chrome/content/rules/Fabricatorz.xml index e31692cc5453..57de986c9bc4 100644 --- a/src/chrome/content/rules/Fabricatorz.xml +++ b/src/chrome/content/rules/Fabricatorz.xml @@ -8,10 +8,11 @@ Fetch error: http://fabricatorz.com/ => https://fabricatorz.com/: (51, "SSL: no - ^ (mismatched) --> - + - + + diff --git a/src/chrome/content/rules/Facebook.net.xml b/src/chrome/content/rules/Facebook.net.xml deleted file mode 100644 index 353df8783670..000000000000 --- a/src/chrome/content/rules/Facebook.net.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Facebook.xml b/src/chrome/content/rules/Facebook.xml index 84711c4ed4fe..36a86a53828e 100644 --- a/src/chrome/content/rules/Facebook.xml +++ b/src/chrome/content/rules/Facebook.xml @@ -1,15 +1,11 @@ - + diff --git a/src/chrome/content/rules/FacebookCoreWWWi.onion.xml b/src/chrome/content/rules/FacebookCoreWWWi.onion.xml index 2e24792b2bbc..e9b74393eeb5 100644 --- a/src/chrome/content/rules/FacebookCoreWWWi.onion.xml +++ b/src/chrome/content/rules/FacebookCoreWWWi.onion.xml @@ -1,53 +1,11 @@ - - + - @@ -55,14 +13,13 @@ - - + - - + + + - + diff --git a/src/chrome/content/rules/Facebook_Studio.xml b/src/chrome/content/rules/Facebook_Studio.xml index 2d909acfd80c..4d3d3458eab9 100644 --- a/src/chrome/content/rules/Facebook_Studio.xml +++ b/src/chrome/content/rules/Facebook_Studio.xml @@ -11,7 +11,7 @@ Fetch error: http://facebook-studio.com/ => https://www.facebook-studio.com/: (5 ^facebook-studio.com: Cert only matches *.facebook-studio.com --> - + @@ -20,7 +20,7 @@ Fetch error: http://facebook-studio.com/ => https://www.facebook-studio.com/: (5 - + - + - + https://wiki.facepunch.com/: (28, 'Co ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -38,7 +38,7 @@ Fetch error: http://wiki.facepunch.com/ => https://wiki.facepunch.com/: (28, 'Co - + - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/FactCheck.org.xml b/src/chrome/content/rules/FactCheck.org.xml index 86c9795073ed..e0b10d6ad47e 100644 --- a/src/chrome/content/rules/FactCheck.org.xml +++ b/src/chrome/content/rules/FactCheck.org.xml @@ -1,29 +1,31 @@ - + - + + - - + + + + + + + diff --git a/src/chrome/content/rules/FactWire.org.xml b/src/chrome/content/rules/FactWire.org.xml new file mode 100644 index 000000000000..bead08b9510d --- /dev/null +++ b/src/chrome/content/rules/FactWire.org.xml @@ -0,0 +1,14 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Factiva.com.xml b/src/chrome/content/rules/Factiva.com.xml new file mode 100644 index 000000000000..c9a1bba42b15 --- /dev/null +++ b/src/chrome/content/rules/Factiva.com.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Factorable.net.xml b/src/chrome/content/rules/Factorable.net.xml index 954307a9cfb3..28dc86ffa514 100644 --- a/src/chrome/content/rules/Factorable.net.xml +++ b/src/chrome/content/rules/Factorable.net.xml @@ -6,4 +6,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Factory_Expo_Home_Centers.xml b/src/chrome/content/rules/Factory_Expo_Home_Centers.xml index d8f1a4663632..d8f29d2e7207 100644 --- a/src/chrome/content/rules/Factory_Expo_Home_Centers.xml +++ b/src/chrome/content/rules/Factory_Expo_Home_Centers.xml @@ -3,46 +3,42 @@ - Park_Models_Direct.xml - Nonfunctional domains: + SSL errors: + - prestigehomes.com + - www.prestigehomes.com - - (www.)prestigehomes.com (502) - + Mismatched: + - factorydirectcabins.com + - www.factorydirectcabins.com --> - + - + - - - + - + - + - + - + - - + - - + - - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Fail2ban.org.xml b/src/chrome/content/rules/Fail2ban.org.xml new file mode 100644 index 000000000000..fc1736d5d4af --- /dev/null +++ b/src/chrome/content/rules/Fail2ban.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Failure-Magazine.xml b/src/chrome/content/rules/Failure-Magazine.xml index 8a6f94d20f3a..180efae4bd4e 100644 --- a/src/chrome/content/rules/Failure-Magazine.xml +++ b/src/chrome/content/rules/Failure-Magazine.xml @@ -3,9 +3,10 @@ - + + - + diff --git a/src/chrome/content/rules/FairSSL.se.xml b/src/chrome/content/rules/FairSSL.se.xml deleted file mode 100644 index a02577310e67..000000000000 --- a/src/chrome/content/rules/FairSSL.se.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/FairWorkCommission.xml b/src/chrome/content/rules/FairWorkCommission.xml index a6c2cbcc3d1d..323456b50387 100644 --- a/src/chrome/content/rules/FairWorkCommission.xml +++ b/src/chrome/content/rules/FairWorkCommission.xml @@ -1,7 +1,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/FairWorkOmbudsman.xml b/src/chrome/content/rules/FairWorkOmbudsman.xml index 1b8ebd42fed8..896452500b63 100644 --- a/src/chrome/content/rules/FairWorkOmbudsman.xml +++ b/src/chrome/content/rules/FairWorkOmbudsman.xml @@ -1,7 +1,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Fairfax-Digital.xml b/src/chrome/content/rules/Fairfax-Digital.xml index 0315f0561f7c..2abceeb90c5d 100644 --- a/src/chrome/content/rules/Fairfax-Digital.xml +++ b/src/chrome/content/rules/Fairfax-Digital.xml @@ -50,17 +50,13 @@ Fetch error: http://ads.afraccess.com/ => https://ads.afraccess.com/: (28, 'Conn - (www.)theage.com.au (ditto) --> - + - + - - - + diff --git a/src/chrome/content/rules/Fairfax_Public_Access.xml b/src/chrome/content/rules/Fairfax_Public_Access.xml index 98efea1b82d0..23e35c45f3fa 100644 --- a/src/chrome/content/rules/Fairfax_Public_Access.xml +++ b/src/chrome/content/rules/Fairfax_Public_Access.xml @@ -8,7 +8,7 @@ - + diff --git a/src/chrome/content/rules/Fairphone.com.xml b/src/chrome/content/rules/Fairphone.com.xml index ab625a0d2b19..9064eab75ce5 100644 --- a/src/chrome/content/rules/Fairphone.com.xml +++ b/src/chrome/content/rules/Fairphone.com.xml @@ -57,7 +57,7 @@ - + + + + + + + + diff --git a/src/chrome/content/rules/Fakturownia.xml b/src/chrome/content/rules/Fakturownia.xml index 8b31082b20a0..bea5cd3f838d 100644 --- a/src/chrome/content/rules/Fakturownia.xml +++ b/src/chrome/content/rules/Fakturownia.xml @@ -27,4 +27,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Falcon-UAV.com.xml b/src/chrome/content/rules/Falcon-UAV.com.xml index 80a0a71fe919..80fd345abec8 100644 --- a/src/chrome/content/rules/Falcon-UAV.com.xml +++ b/src/chrome/content/rules/Falcon-UAV.com.xml @@ -1,7 +1,7 @@ diff --git a/src/chrome/content/rules/Falkirk.gov.uk.xml b/src/chrome/content/rules/Falkirk.gov.uk.xml index 814e304b473c..06e4699a10e1 100644 --- a/src/chrome/content/rules/Falkirk.gov.uk.xml +++ b/src/chrome/content/rules/Falkirk.gov.uk.xml @@ -1,54 +1,20 @@ - - - - - + + + - - - - - - - - - - - + diff --git a/src/chrome/content/rules/Familie-redlich.xml b/src/chrome/content/rules/Familie-redlich.xml index ba3f5620a1f5..e36b17212a49 100644 --- a/src/chrome/content/rules/Familie-redlich.xml +++ b/src/chrome/content/rules/Familie-redlich.xml @@ -3,7 +3,8 @@ - + + diff --git a/src/chrome/content/rules/Family-Christian-Stores.xml b/src/chrome/content/rules/Family-Christian-Stores.xml index fbcda5c37ecd..66fb1a375d69 100644 --- a/src/chrome/content/rules/Family-Christian-Stores.xml +++ b/src/chrome/content/rules/Family-Christian-Stores.xml @@ -6,14 +6,14 @@ Fetch error: http://media.familychristian.com/ => https://media.familychristian. Fetch error: http://www.familychristian.com/ => https://www.familychristian.com/: (28, 'Connection timed out after 20001 milliseconds') --> - + - + diff --git a/src/chrome/content/rules/FamilySearch.org.xml b/src/chrome/content/rules/FamilySearch.org.xml index 5b3a9bb57cc3..fe54104f20f4 100644 --- a/src/chrome/content/rules/FamilySearch.org.xml +++ b/src/chrome/content/rules/FamilySearch.org.xml @@ -30,7 +30,7 @@ Fetch error: http://ident.familysearch.org/ => https://ident.familysearch.org/: - indexing.familysearch.org --> - + diff --git a/src/chrome/content/rules/FamousFolks.ca.xml b/src/chrome/content/rules/FamousFolks.ca.xml new file mode 100644 index 000000000000..d4d7c633ba77 --- /dev/null +++ b/src/chrome/content/rules/FamousFolks.ca.xml @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Fanatics.xml b/src/chrome/content/rules/Fanatics.xml index a3b1c838da65..b33faa449937 100644 --- a/src/chrome/content/rules/Fanatics.xml +++ b/src/chrome/content/rules/Fanatics.xml @@ -7,7 +7,8 @@ - + + @@ -22,4 +23,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Fanboy.xml b/src/chrome/content/rules/Fanboy.xml index 471858c3c0e5..fa9c51700982 100644 --- a/src/chrome/content/rules/Fanboy.xml +++ b/src/chrome/content/rules/Fanboy.xml @@ -23,7 +23,7 @@ Fetch error: http://forums.fanboy.co.nz/ => https://forums.fanboy.co.nz/: (6, 'C - .fanboy.co.nz --> - + @@ -36,7 +36,7 @@ Fetch error: http://forums.fanboy.co.nz/ => https://forums.fanboy.co.nz/: (6, 'C --> - + diff --git a/src/chrome/content/rules/Fandago.xml b/src/chrome/content/rules/Fandago.xml index 532d16d24951..7636a3cabb72 100644 --- a/src/chrome/content/rules/Fandago.xml +++ b/src/chrome/content/rules/Fandago.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://fandago.com/ => https://fandago.com/: Redirect for 'http://famdengo.com' missing Location Fetch error: http://www.fandago.com/ => https://www.fandago.com/: Redirect for 'http://famdengo.com' missing Location --> - + diff --git a/src/chrome/content/rules/Fandango.xml b/src/chrome/content/rules/Fandango.xml index cb7a493d3d4b..df6517881c23 100644 --- a/src/chrome/content/rules/Fandango.xml +++ b/src/chrome/content/rules/Fandango.xml @@ -9,14 +9,14 @@ Fetch error: http://statf.com/ => https://a248.e.akamai.net/f/248/9057/1d/conten For other Comcast coverage, see Comcast.xml. --> - + - + diff --git a/src/chrome/content/rules/Fangamer.xml b/src/chrome/content/rules/Fangamer.xml index ab8f4bd4a76d..71ac8c24bef1 100644 --- a/src/chrome/content/rules/Fangamer.xml +++ b/src/chrome/content/rules/Fangamer.xml @@ -18,7 +18,7 @@ - + https://d1zm4mmpsrckwj.cloudfront.net/: (6, 'Could not resolve host: d1zm4mmpsrckwj.cloudfront.net') - -Disabled by https-everywhere-checker because: -Fetch error: http://cf2.imgobject.com/ => https://d1zm4mmpsrckwj.cloudfront.net/: (6, 'Could not resolve host: d1zm4mmpsrckwj.cloudfront.net') - CDN buckets: - - - d1zm4mmpsrckwj.cloudfront.net - ---> - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Fanli.com.xml b/src/chrome/content/rules/Fanli.com.xml index 4d38f4d57300..bc81b82cc47d 100644 --- a/src/chrome/content/rules/Fanli.com.xml +++ b/src/chrome/content/rules/Fanli.com.xml @@ -2,47 +2,32 @@ Other Fanli rulesets: - 51fanli.net.xml + CI test error: + ubt[0-9].fanli.com + MCB: - - (www.)? - - 9 - - f - - fun ( test: https://fun.fanli.com/topheader/www.51fanli.com ) - - gongyi - - help - - huodong - - passport - - super - - taobao - - travel - - xiaozu - - zhide + gongyi.fanli.com --> - - - - - - - - - - + + + + + + + + + - - - - - - - - - - - + + + + + + diff --git a/src/chrome/content/rules/Fanoe.dk.xml b/src/chrome/content/rules/Fanoe.dk.xml index b95d31040eb2..f9e7012364dc 100644 --- a/src/chrome/content/rules/Fanoe.dk.xml +++ b/src/chrome/content/rules/Fanoe.dk.xml @@ -5,7 +5,7 @@ Fetch error: http://fanoe.dk/ => https://fanoe.dk/: (51, "SSL: no alternative ce Fetch error: http://www.fanoe.dk/ => https://www.fanoe.dk/: (51, "SSL: no alternative certificate subject name matches target host name 'www.fanoe.dk'") --> - + diff --git a/src/chrome/content/rules/Fantia.jp.xml b/src/chrome/content/rules/Fantia.jp.xml new file mode 100644 index 000000000000..bca9933d0675 --- /dev/null +++ b/src/chrome/content/rules/Fantia.jp.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Fareham.gov.uk.xml b/src/chrome/content/rules/Fareham.gov.uk.xml index 724962d71d10..5f59075deb0c 100644 --- a/src/chrome/content/rules/Fareham.gov.uk.xml +++ b/src/chrome/content/rules/Fareham.gov.uk.xml @@ -26,7 +26,7 @@ - + - + + + + - - - + - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + diff --git a/src/chrome/content/rules/Faround.net.xml b/src/chrome/content/rules/Faround.net.xml index b0ae94e82049..ae67b3b41a6c 100644 --- a/src/chrome/content/rules/Faround.net.xml +++ b/src/chrome/content/rules/Faround.net.xml @@ -21,10 +21,10 @@ Non-2xx HTTP code: http://faround.net/ (200) => https://www.faround.net/ (403) * Secured by us --> - + - + diff --git a/src/chrome/content/rules/Fashion_Dip.xml b/src/chrome/content/rules/Fashion_Dip.xml deleted file mode 100644 index 4bbd997f3606..000000000000 --- a/src/chrome/content/rules/Fashion_Dip.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Fass.se.xml b/src/chrome/content/rules/Fass.se.xml index 49cb53f41a4c..234c7f529cda 100644 --- a/src/chrome/content/rules/Fass.se.xml +++ b/src/chrome/content/rules/Fass.se.xml @@ -1,8 +1,19 @@ - + - - + + + + + + + + + - diff --git a/src/chrome/content/rules/Fast-Company.xml b/src/chrome/content/rules/Fast-Company.xml index 7999d04d0484..716a11dcbf9f 100644 --- a/src/chrome/content/rules/Fast-Company.xml +++ b/src/chrome/content/rules/Fast-Company.xml @@ -1,8 +1,12 @@ + - + @@ -35,7 +39,7 @@ - + https://fwmapps.co.uk/: (6, 'Could not res - (www.)fastwebmedia.gr --> - + @@ -35,4 +35,4 @@ Fetch error: http://fwmapps.co.uk/ => https://fwmapps.co.uk/: (6, 'Could not res - \ No newline at end of file + diff --git a/src/chrome/content/rules/Fast.com.xml b/src/chrome/content/rules/Fast.com.xml new file mode 100644 index 000000000000..2cb97446b85b --- /dev/null +++ b/src/chrome/content/rules/Fast.com.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/FastSpring-mismatches.xml b/src/chrome/content/rules/FastSpring-mismatches.xml deleted file mode 100644 index 2c934c5a094e..000000000000 --- a/src/chrome/content/rules/FastSpring-mismatches.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/FastSpring.com.xml b/src/chrome/content/rules/FastSpring.com.xml new file mode 100644 index 000000000000..b1728f528f09 --- /dev/null +++ b/src/chrome/content/rules/FastSpring.com.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/FastSpring.xml b/src/chrome/content/rules/FastSpring.xml deleted file mode 100644 index 61a66fa7f833..000000000000 --- a/src/chrome/content/rules/FastSpring.xml +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/FastWebHost.com-mismatches.xml b/src/chrome/content/rules/FastWebHost.com-mismatches.xml index 85ebbeb14f95..c2db10d2cc46 100644 --- a/src/chrome/content/rules/FastWebHost.com-mismatches.xml +++ b/src/chrome/content/rules/FastWebHost.com-mismatches.xml @@ -2,9 +2,8 @@ - + - + diff --git a/src/chrome/content/rules/FastWebHost.com.xml b/src/chrome/content/rules/FastWebHost.com.xml index 248cc8a712e6..d531b1dfa51a 100644 --- a/src/chrome/content/rules/FastWebHost.com.xml +++ b/src/chrome/content/rules/FastWebHost.com.xml @@ -6,7 +6,7 @@ - + diff --git a/src/chrome/content/rules/Fast_Company.net.xml b/src/chrome/content/rules/Fast_Company.net.xml deleted file mode 100644 index 9d9dadbbfe23..000000000000 --- a/src/chrome/content/rules/Fast_Company.net.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Fast_Serv.com.xml b/src/chrome/content/rules/Fast_Serv.com.xml index ba871741d184..b42660156460 100644 --- a/src/chrome/content/rules/Fast_Serv.com.xml +++ b/src/chrome/content/rules/Fast_Serv.com.xml @@ -19,7 +19,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Fasthosts.xml b/src/chrome/content/rules/Fasthosts.xml index dd9f677ba5e2..da0e625654c3 100644 --- a/src/chrome/content/rules/Fasthosts.xml +++ b/src/chrome/content/rules/Fasthosts.xml @@ -10,37 +10,49 @@ + + + + + - - + - + + + --> - - - + + + + + + + + diff --git a/src/chrome/content/rules/Fastly.net.xml b/src/chrome/content/rules/Fastly.net.xml index 154a43ad3f5c..424ea23daa27 100644 --- a/src/chrome/content/rules/Fastly.net.xml +++ b/src/chrome/content/rules/Fastly.net.xml @@ -32,7 +32,7 @@ - + - - - - - - - + - - + + + - - + + + + - + - + - \ No newline at end of file + + diff --git a/src/chrome/content/rules/FatCow-Web-Hosting.xml b/src/chrome/content/rules/FatCow-Web-Hosting.xml index 6342bd4e843d..3221fe577fd9 100644 --- a/src/chrome/content/rules/FatCow-Web-Hosting.xml +++ b/src/chrome/content/rules/FatCow-Web-Hosting.xml @@ -3,7 +3,7 @@ - + + + + + + + + + diff --git a/src/chrome/content/rules/Favrskov.dk.xml b/src/chrome/content/rules/Favrskov.dk.xml index 583913d87089..57091eee857b 100644 --- a/src/chrome/content/rules/Favrskov.dk.xml +++ b/src/chrome/content/rules/Favrskov.dk.xml @@ -3,7 +3,7 @@ - + diff --git a/src/chrome/content/rules/FaxCritics.xml b/src/chrome/content/rules/FaxCritics.xml deleted file mode 100644 index ff3732b4f81c..000000000000 --- a/src/chrome/content/rules/FaxCritics.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Fax_Robot.com.xml b/src/chrome/content/rules/Fax_Robot.com.xml index 0e38234922b8..2787141a2c6f 100644 --- a/src/chrome/content/rules/Fax_Robot.com.xml +++ b/src/chrome/content/rules/Fax_Robot.com.xml @@ -9,7 +9,7 @@ Fetch error: http://www.faxrobot.com/ => https://www.faxrobot.com/: (28, 'Operat - .faxrobot.com --> - + diff --git a/src/chrome/content/rules/Fazekas.xml b/src/chrome/content/rules/Fazekas.xml index 31dcdfcf1976..c00fef9a1c5c 100644 --- a/src/chrome/content/rules/Fazekas.xml +++ b/src/chrome/content/rules/Fazekas.xml @@ -5,7 +5,7 @@ Fetch error: http://fazekas.hu/ => https://fazekas.hu/: Too many redirects while Fetch error: http://www.fazekas.hu/ => https://fazekas.hu/: Too many redirects while fetching 'https://fazekas.hu/' --> - + diff --git a/src/chrome/content/rules/Fb.com.xml b/src/chrome/content/rules/Fb.com.xml index 8ea4614ac790..fd76cd32d114 100644 --- a/src/chrome/content/rules/Fb.com.xml +++ b/src/chrome/content/rules/Fb.com.xml @@ -5,7 +5,7 @@ Nonfunctional hosts in *fb.com: investor * - + * 504, valid cert --> @@ -20,7 +20,7 @@ - + - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/FbCDN.net.xml b/src/chrome/content/rules/FbCDN.net.xml deleted file mode 100644 index 1e30c5eacef9..000000000000 --- a/src/chrome/content/rules/FbCDN.net.xml +++ /dev/null @@ -1,140 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Fbk.info.xml b/src/chrome/content/rules/Fbk.info.xml index 3dc08b07f0ae..1f62ff20a383 100644 --- a/src/chrome/content/rules/Fbk.info.xml +++ b/src/chrome/content/rules/Fbk.info.xml @@ -25,6 +25,6 @@ www.fbk.info ⁴ - + diff --git a/src/chrome/content/rules/FeatherCoin.xml b/src/chrome/content/rules/FeatherCoin.xml index f2431319b50c..3aeb2b624333 100644 --- a/src/chrome/content/rules/FeatherCoin.xml +++ b/src/chrome/content/rules/FeatherCoin.xml @@ -14,4 +14,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/FedEx.com-problematic.xml b/src/chrome/content/rules/FedEx.com-problematic.xml deleted file mode 100644 index 72bab2eaac30..000000000000 --- a/src/chrome/content/rules/FedEx.com-problematic.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/FedEx.com.xml b/src/chrome/content/rules/FedEx.com.xml index 343e2568a94c..79d9afe2500a 100644 --- a/src/chrome/content/rules/FedEx.com.xml +++ b/src/chrome/content/rules/FedEx.com.xml @@ -1,64 +1,47 @@ - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + - - - - + diff --git a/src/chrome/content/rules/Federal-Communications-Commission.xml b/src/chrome/content/rules/Federal-Communications-Commission.xml index 82995a10a032..0d5949fcee67 100644 --- a/src/chrome/content/rules/Federal-Communications-Commission.xml +++ b/src/chrome/content/rules/Federal-Communications-Commission.xml @@ -17,6 +17,7 @@ - transition (404 on http://transition.fcc.gov/Daily_Releases/Daily_Digest/2015/dd2015.html) - apps (404, expired) - fjallfoss (404) + - stations (unresolved) * Times out @@ -34,7 +35,6 @@ - @@ -43,16 +43,10 @@ - - - - - - - + - - - - - + + + + This used to 404: - @@ -88,12 +76,11 @@ - + Redirects like so: - - + + + + + + + + diff --git a/src/chrome/content/rules/Federal_Aviation_Administration.xml b/src/chrome/content/rules/Federal_Aviation_Administration.xml index 2556ab266d48..d50cf8582b68 100644 --- a/src/chrome/content/rules/Federal_Aviation_Administration.xml +++ b/src/chrome/content/rules/Federal_Aviation_Administration.xml @@ -21,7 +21,7 @@ - + - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Federal_Office_of_Administration.xml b/src/chrome/content/rules/Federal_Office_of_Administration.xml index 3cc6c9442bdf..16f457f38357 100644 --- a/src/chrome/content/rules/Federal_Office_of_Administration.xml +++ b/src/chrome/content/rules/Federal_Office_of_Administration.xml @@ -57,7 +57,7 @@ - + - + - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Federal_Trade_Commission.xml b/src/chrome/content/rules/Federal_Trade_Commission.xml index 039dd73c57c0..d437b183b929 100644 --- a/src/chrome/content/rules/Federal_Trade_Commission.xml +++ b/src/chrome/content/rules/Federal_Trade_Commission.xml @@ -1,13 +1,5 @@ - + - - @@ -42,14 +34,11 @@ Fetch error: http://new.ftc.gov/ => https://new.ftc.gov/: (6, 'Could not resolve - - - - + https://www.federatedinvestor Disabled by https-everywhere-checker because: Fetch error: http://federatedinvestors.com/ => https://federatedinvestors.com/: (51, "SSL: no alternative certificate subject name matches target host name 'federatedinvestors.com'") --> - + diff --git a/src/chrome/content/rules/Federated-Media-Publishing.xml b/src/chrome/content/rules/Federated-Media-Publishing.xml index 4c4d5d5622c6..0eab2409af53 100644 --- a/src/chrome/content/rules/Federated-Media-Publishing.xml +++ b/src/chrome/content/rules/Federated-Media-Publishing.xml @@ -12,26 +12,27 @@ Fetch error: http://www.federatedmedia.net/ => https://www.federatedmedia.net/: - cm.cdn.fm --> - + - + + + + + - + - - + diff --git a/src/chrome/content/rules/Federation-of-American-Scientists.xml b/src/chrome/content/rules/Federation-of-American-Scientists.xml index 78658e4a7f9e..6186e0f3c990 100644 --- a/src/chrome/content/rules/Federation-of-American-Scientists.xml +++ b/src/chrome/content/rules/Federation-of-American-Scientists.xml @@ -11,7 +11,7 @@ Fetch error: http://members.fas.org/ => https://members.fas.org/: (6, 'Could not - .fas.org --> - + @@ -24,7 +24,7 @@ Fetch error: http://members.fas.org/ => https://members.fas.org/: (6, 'Could not --> - + http://fsb.org.uk/: (28, 'Connection timed ou - + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Fedorainfracloud.org.xml b/src/chrome/content/rules/Fedorainfracloud.org.xml new file mode 100644 index 000000000000..c5e805830d26 --- /dev/null +++ b/src/chrome/content/rules/Fedorainfracloud.org.xml @@ -0,0 +1,25 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/FeeFighters.xml b/src/chrome/content/rules/FeeFighters.xml index 3cc02003a21e..8e9083ef307d 100644 --- a/src/chrome/content/rules/FeeFighters.xml +++ b/src/chrome/content/rules/FeeFighters.xml @@ -8,11 +8,11 @@ Disabled by https-everywhere-checker because: Fetch error: http://feefighters.com/ => https://feefighters.com/: (51, "SSL: no alternative certificate subject name matches target host name 'feefighters.com'") Fetch error: http://www.feefighters.com/ => https://feefighters.com/: (51, "SSL: no alternative certificate subject name matches target host name 'feefighters.com'") --> - + - + diff --git a/src/chrome/content/rules/Feed2JS.org.xml b/src/chrome/content/rules/Feed2JS.org.xml index 7cbd69c2dc7c..e9b2d7b9a5ac 100644 --- a/src/chrome/content/rules/Feed2JS.org.xml +++ b/src/chrome/content/rules/Feed2JS.org.xml @@ -6,4 +6,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/FeedBlitz.xml b/src/chrome/content/rules/FeedBlitz.xml index f0ce57de572b..904ce9fbb220 100644 --- a/src/chrome/content/rules/FeedBlitz.xml +++ b/src/chrome/content/rules/FeedBlitz.xml @@ -1,8 +1,6 @@ @@ -82,4 +78,5 @@ + diff --git a/src/chrome/content/rules/FeedBurner.xml b/src/chrome/content/rules/FeedBurner.xml index 53da8d558660..c55e9596e908 100644 --- a/src/chrome/content/rules/FeedBurner.xml +++ b/src/chrome/content/rules/FeedBurner.xml @@ -1,30 +1,18 @@ - + + - - - - - - - + + diff --git a/src/chrome/content/rules/FeedPress.me.xml b/src/chrome/content/rules/FeedPress.me.xml index 488b6bfd8bcd..6eacd1780944 100644 --- a/src/chrome/content/rules/FeedPress.me.xml +++ b/src/chrome/content/rules/FeedPress.me.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.feedpress.me/ => https://www.feedpress.me/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/Feedjit.xml b/src/chrome/content/rules/Feedjit.xml index 63364a5b9a68..a869e860e139 100644 --- a/src/chrome/content/rules/Feedjit.xml +++ b/src/chrome/content/rules/Feedjit.xml @@ -16,4 +16,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Feedly.com.xml b/src/chrome/content/rules/Feedly.com.xml index aa2aba1dd945..e5c97cb2cfae 100644 --- a/src/chrome/content/rules/Feedly.com.xml +++ b/src/chrome/content/rules/Feedly.com.xml @@ -16,7 +16,7 @@ - + https://www.feedmyinbox.com/: (28, ' Fetch error: http://feedmyinbox.com/ => https://www.feedmyinbox.com/: (28, 'Connection timed out after 20001 milliseconds') --> - + - + diff --git a/src/chrome/content/rules/Feedsportal.com.xml b/src/chrome/content/rules/Feedsportal.com.xml index 6879a6e49a0a..d51d1bca0502 100644 --- a/src/chrome/content/rules/Feedsportal.com.xml +++ b/src/chrome/content/rules/Feedsportal.com.xml @@ -11,13 +11,12 @@ Fetch error: http://stats.feedsportal.com/ => https://stats.feedsportal.com/: (2 www: refused --> - + - + diff --git a/src/chrome/content/rules/Fefe.xml b/src/chrome/content/rules/Fefe.xml index df4323378c92..4bb576b970b8 100644 --- a/src/chrome/content/rules/Fefe.xml +++ b/src/chrome/content/rules/Fefe.xml @@ -4,7 +4,7 @@ - bulk * * invalid certificate - + - dl * diff --git a/src/chrome/content/rules/Feide.xml b/src/chrome/content/rules/Feide.xml index e8a8eeff5b45..c5fa9cb0b395 100644 --- a/src/chrome/content/rules/Feide.xml +++ b/src/chrome/content/rules/Feide.xml @@ -23,7 +23,7 @@ Fetch error: http://wiki.feide.no/ => https://wiki.feide.no/: (6, 'Could not res ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -56,7 +56,7 @@ Fetch error: http://wiki.feide.no/ => https://wiki.feide.no/: (6, 'Could not res - + http://feitbulbs.com/: (6, 'Could not resolve host: feitbulbs.com') -Fetch error: http://www.feitbulbs.com/ => http://www.feitbulbs.com/: (6, 'Could not resolve host: www.feitbulbs.com') - ---> - - - - - - - - diff --git a/src/chrome/content/rules/Fence_Center.com.xml b/src/chrome/content/rules/Fence_Center.com.xml index c945e52906b6..63d4d8a1f010 100644 --- a/src/chrome/content/rules/Fence_Center.com.xml +++ b/src/chrome/content/rules/Fence_Center.com.xml @@ -9,7 +9,7 @@ Fetch error: http://www.fencecenter.com/ => https://www.fencecenter.com/: (60, ' - ^ (cert only matches www) --> - + @@ -21,4 +21,4 @@ Fetch error: http://www.fencecenter.com/ => https://www.fencecenter.com/: (60, ' - \ No newline at end of file + diff --git a/src/chrome/content/rules/Fender.com-problematic.xml b/src/chrome/content/rules/Fender.com-problematic.xml index 3d16e39f019b..fe519bc3badb 100644 --- a/src/chrome/content/rules/Fender.com-problematic.xml +++ b/src/chrome/content/rules/Fender.com-problematic.xml @@ -5,13 +5,11 @@ - - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Fender.com.xml b/src/chrome/content/rules/Fender.com.xml index e30390810058..27cd16aabde7 100644 --- a/src/chrome/content/rules/Fender.com.xml +++ b/src/chrome/content/rules/Fender.com.xml @@ -16,7 +16,7 @@ - + @@ -25,4 +25,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Fenland.gov.uk.xml b/src/chrome/content/rules/Fenland.gov.uk.xml index b236b901f86b..3542cc59156c 100644 --- a/src/chrome/content/rules/Fenland.gov.uk.xml +++ b/src/chrome/content/rules/Fenland.gov.uk.xml @@ -30,12 +30,12 @@ + - diff --git a/src/chrome/content/rules/FeqhBook.com.xml b/src/chrome/content/rules/FeqhBook.com.xml new file mode 100644 index 000000000000..b3632b6e04b2 --- /dev/null +++ b/src/chrome/content/rules/FeqhBook.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/FeqhUp.com.xml b/src/chrome/content/rules/FeqhUp.com.xml new file mode 100644 index 000000000000..1e22e901ffbe --- /dev/null +++ b/src/chrome/content/rules/FeqhUp.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/FeqhWeb.com.xml b/src/chrome/content/rules/FeqhWeb.com.xml new file mode 100644 index 000000000000..8f4f64bb7a81 --- /dev/null +++ b/src/chrome/content/rules/FeqhWeb.com.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/FermatsLibrary.com.xml b/src/chrome/content/rules/FermatsLibrary.com.xml new file mode 100644 index 000000000000..c68a04beabcc --- /dev/null +++ b/src/chrome/content/rules/FermatsLibrary.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Fermi_National_Accelerator_Laboratory.xml b/src/chrome/content/rules/Fermi_National_Accelerator_Laboratory.xml index 2900e0a38a36..32941fb84a77 100644 --- a/src/chrome/content/rules/Fermi_National_Accelerator_Laboratory.xml +++ b/src/chrome/content/rules/Fermi_National_Accelerator_Laboratory.xml @@ -65,7 +65,7 @@ Fetch error: http://astro.fnal.gov/ => https://astro.fnal.gov/: (28, 'Connection www.fermilab.jobs --> - + diff --git a/src/chrome/content/rules/FernUni-Hagen.de.xml b/src/chrome/content/rules/FernUni-Hagen.de.xml index 52bc7deee6cb..3bec2bca8e42 100644 --- a/src/chrome/content/rules/FernUni-Hagen.de.xml +++ b/src/chrome/content/rules/FernUni-Hagen.de.xml @@ -27,7 +27,14 @@ - + + + + + + + + @@ -36,7 +43,6 @@ - + diff --git a/src/chrome/content/rules/Ferris_State_University-problematic.xml b/src/chrome/content/rules/Ferris_State_University-problematic.xml index dd38186c6b44..e1f234883583 100644 --- a/src/chrome/content/rules/Ferris_State_University-problematic.xml +++ b/src/chrome/content/rules/Ferris_State_University-problematic.xml @@ -9,7 +9,6 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Ferris_State_University.xml b/src/chrome/content/rules/Ferris_State_University.xml index 5ee7fee73c8c..451cdf192742 100644 --- a/src/chrome/content/rules/Ferris_State_University.xml +++ b/src/chrome/content/rules/Ferris_State_University.xml @@ -27,14 +27,17 @@ --> - + + + + + - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Ferroh.com.xml b/src/chrome/content/rules/Ferroh.com.xml deleted file mode 100644 index dc917d77bd56..000000000000 --- a/src/chrome/content/rules/Ferroh.com.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Festivus_Games.com.xml b/src/chrome/content/rules/Festivus_Games.com.xml index 9a55add55943..ec9c37f891fb 100644 --- a/src/chrome/content/rules/Festivus_Games.com.xml +++ b/src/chrome/content/rules/Festivus_Games.com.xml @@ -4,7 +4,7 @@ - + - - - - - - - - diff --git a/src/chrome/content/rules/FetShop.co.uk.xml b/src/chrome/content/rules/FetShop.co.uk.xml index 22d6181dc15f..8d247ee264dd 100644 --- a/src/chrome/content/rules/FetShop.co.uk.xml +++ b/src/chrome/content/rules/FetShop.co.uk.xml @@ -23,7 +23,9 @@ - + + + @@ -38,4 +40,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Fewo-mehrtens.de.xml b/src/chrome/content/rules/Fewo-mehrtens.de.xml index c4377e6b7e37..e26011b981f3 100644 --- a/src/chrome/content/rules/Fewo-mehrtens.de.xml +++ b/src/chrome/content/rules/Fewo-mehrtens.de.xml @@ -2,7 +2,7 @@ - + diff --git a/src/chrome/content/rules/FfProfile.com.xml b/src/chrome/content/rules/FfProfile.com.xml deleted file mode 100644 index b60d9bfc15d7..000000000000 --- a/src/chrome/content/rules/FfProfile.com.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Fhserve.com.xml b/src/chrome/content/rules/Fhserve.com.xml index b07ed613574e..662c31bb21bc 100644 --- a/src/chrome/content/rules/Fhserve.com.xml +++ b/src/chrome/content/rules/Fhserve.com.xml @@ -28,7 +28,7 @@ - (www.)? (^ → www) --> - + diff --git a/src/chrome/content/rules/Fiber7.ch.xml b/src/chrome/content/rules/Fiber7.ch.xml deleted file mode 100644 index a53ea1697fd3..000000000000 --- a/src/chrome/content/rules/Fiber7.ch.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Fidelity.com.hk.xml b/src/chrome/content/rules/Fidelity.com.hk.xml new file mode 100644 index 000000000000..43cba3c04e28 --- /dev/null +++ b/src/chrome/content/rules/Fidelity.com.hk.xml @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Fidelity.com.xml b/src/chrome/content/rules/Fidelity.com.xml index 70bd534cec06..d5c313de2478 100644 --- a/src/chrome/content/rules/Fidelity.com.xml +++ b/src/chrome/content/rules/Fidelity.com.xml @@ -59,7 +59,19 @@ - + + + + + + + + + + + + + - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/FierceMarkets.xml b/src/chrome/content/rules/FierceMarkets.xml index c114591e6fe5..a71dbe11443f 100644 --- a/src/chrome/content/rules/FierceMarkets.xml +++ b/src/chrome/content/rules/FierceMarkets.xml @@ -1,41 +1,21 @@ - + + + + - - - - + diff --git a/src/chrome/content/rules/Fife_Direct.org.uk.xml b/src/chrome/content/rules/Fife_Direct.org.uk.xml index 6b5b29cd2bb8..5ce12c6fc258 100644 --- a/src/chrome/content/rules/Fife_Direct.org.uk.xml +++ b/src/chrome/content/rules/Fife_Direct.org.uk.xml @@ -24,7 +24,7 @@ Fetch error: http://m.fifedirect.org.uk/ => https://m.fifedirect.org.uk/: (6, 'C ⁴ Unsecurable <= 404 --> - + @@ -38,7 +38,7 @@ Fetch error: http://m.fifedirect.org.uk/ => https://m.fifedirect.org.uk/: (6, 'C --> - + - + - + - - - \ No newline at end of file + diff --git a/src/chrome/content/rules/Fight-for-the-Future-mismatches.xml b/src/chrome/content/rules/Fight-for-the-Future-mismatches.xml index a5c94d84e362..b3668772731a 100644 --- a/src/chrome/content/rules/Fight-for-the-Future-mismatches.xml +++ b/src/chrome/content/rules/Fight-for-the-Future-mismatches.xml @@ -5,7 +5,7 @@ - + @@ -18,8 +18,8 @@ - - + + - + + + + + + diff --git a/src/chrome/content/rules/FileBox.xml b/src/chrome/content/rules/FileBox.xml deleted file mode 100644 index 870f517eef32..000000000000 --- a/src/chrome/content/rules/FileBox.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/FileFactory.xml b/src/chrome/content/rules/FileFactory.xml index 43240ec14d5b..213e5121c52c 100644 --- a/src/chrome/content/rules/FileFactory.xml +++ b/src/chrome/content/rules/FileFactory.xml @@ -11,7 +11,7 @@ Fetch error: http://support.filefactory.com/ => https://support.filefactory.com/ * Mismatched --> - + @@ -25,7 +25,7 @@ Fetch error: http://support.filefactory.com/ => https://support.filefactory.com/ - + - - - + + + - - + + diff --git a/src/chrome/content/rules/FileHoot.com.xml b/src/chrome/content/rules/FileHoot.com.xml index 50965dce7eee..58bfa4b5629f 100644 --- a/src/chrome/content/rules/FileHoot.com.xml +++ b/src/chrome/content/rules/FileHoot.com.xml @@ -23,7 +23,7 @@ Fetch error: http://www.filehoot.com/ => https://www.filehoot.com/: (7, 'Failed ² Unsecurable <= connection refused --> - + diff --git a/src/chrome/content/rules/FileNuke.com.xml b/src/chrome/content/rules/FileNuke.com.xml deleted file mode 100644 index 653ca92accdb..000000000000 --- a/src/chrome/content/rules/FileNuke.com.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/FilePost.com.xml b/src/chrome/content/rules/FilePost.com.xml deleted file mode 100644 index e2083d02eddf..000000000000 --- a/src/chrome/content/rules/FilePost.com.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/FileRio.in.xml b/src/chrome/content/rules/FileRio.in.xml index 51212880537e..272ef217675e 100644 --- a/src/chrome/content/rules/FileRio.in.xml +++ b/src/chrome/content/rules/FileRio.in.xml @@ -19,10 +19,10 @@ Fetch error: http://filerio.in/ => https://filerio.in/: (60, 'SSL certificate pr * Secured by us --> - + - + diff --git a/src/chrome/content/rules/FileTarget.net.xml b/src/chrome/content/rules/FileTarget.net.xml new file mode 100644 index 000000000000..0a0b59285f6b --- /dev/null +++ b/src/chrome/content/rules/FileTarget.net.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/FileTrip.net.xml b/src/chrome/content/rules/FileTrip.net.xml index 54c24d73011e..93108a0372aa 100644 --- a/src/chrome/content/rules/FileTrip.net.xml +++ b/src/chrome/content/rules/FileTrip.net.xml @@ -1,23 +1,22 @@ - + - + - - + + diff --git a/src/chrome/content/rules/FileZilla.xml b/src/chrome/content/rules/FileZilla.xml deleted file mode 100644 index e1656ee4125e..000000000000 --- a/src/chrome/content/rules/FileZilla.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Filebyid.com.xml b/src/chrome/content/rules/Filebyid.com.xml index 174464afefba..38961a7864d6 100644 --- a/src/chrome/content/rules/Filebyid.com.xml +++ b/src/chrome/content/rules/Filebyid.com.xml @@ -2,7 +2,7 @@ NB: Server sends no certificate chain, see https://whatsmychaincert.com --> - + diff --git a/src/chrome/content/rules/Filecloud.io.xml b/src/chrome/content/rules/Filecloud.io.xml deleted file mode 100644 index 57b81fad8c36..000000000000 --- a/src/chrome/content/rules/Filecloud.io.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Filemobile.xml b/src/chrome/content/rules/Filemobile.xml deleted file mode 100644 index 784a4e3a4cdb..000000000000 --- a/src/chrome/content/rules/Filemobile.xml +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Filepicker.io.xml b/src/chrome/content/rules/Filepicker.io.xml index 1bfcad68bc71..a830bc7ad91c 100644 --- a/src/chrome/content/rules/Filepicker.io.xml +++ b/src/chrome/content/rules/Filepicker.io.xml @@ -18,7 +18,7 @@ - + diff --git a/src/chrome/content/rules/Files.poulsander.com.xml b/src/chrome/content/rules/Files.poulsander.com.xml deleted file mode 100644 index 35eb44081b4e..000000000000 --- a/src/chrome/content/rules/Files.poulsander.com.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/FilesCrunch.xml b/src/chrome/content/rules/FilesCrunch.xml index 02e68e094a53..039cdd7ed38c 100644 --- a/src/chrome/content/rules/FilesCrunch.xml +++ b/src/chrome/content/rules/FilesCrunch.xml @@ -6,7 +6,7 @@ - + https://filmthreat.com/: (7, 'Failed to c Disabled by https-everywhere-checker because: Fetch error: http://filmthreat.com/ => https://filmthreat.com/: (60, 'SSL certificate problem: self signed certificate') --> - + - - + + + + - - + - + diff --git a/src/chrome/content/rules/FilmTrack.xml b/src/chrome/content/rules/FilmTrack.xml index 0c96f4ad36e0..9a03d11c6a06 100644 --- a/src/chrome/content/rules/FilmTrack.xml +++ b/src/chrome/content/rules/FilmTrack.xml @@ -9,7 +9,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Film_Linc.com-falsemixed.xml b/src/chrome/content/rules/Film_Linc.com-falsemixed.xml index 7df0ff466cab..3a8f707fad3c 100644 --- a/src/chrome/content/rules/Film_Linc.com-falsemixed.xml +++ b/src/chrome/content/rules/Film_Linc.com-falsemixed.xml @@ -4,13 +4,12 @@ --> - + - + diff --git a/src/chrome/content/rules/Film_Linc.com.xml b/src/chrome/content/rules/Film_Linc.com.xml index ada4af10b0dd..e615b7234148 100644 --- a/src/chrome/content/rules/Film_Linc.com.xml +++ b/src/chrome/content/rules/Film_Linc.com.xml @@ -17,7 +17,7 @@ Fetch error: http://filmlinc.com/ => https://filmlinc.com/: (51, "SSL: no altern * Secured by us --> - + diff --git a/src/chrome/content/rules/Filmdates.co.uk.xml b/src/chrome/content/rules/Filmdates.co.uk.xml index f33a20431bfa..053294820c5e 100644 --- a/src/chrome/content/rules/Filmdates.co.uk.xml +++ b/src/chrome/content/rules/Filmdates.co.uk.xml @@ -24,4 +24,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Filmlair.xml b/src/chrome/content/rules/Filmlair.xml deleted file mode 100644 index 4ea55e821473..000000000000 --- a/src/chrome/content/rules/Filmlair.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Filmlash.com.xml b/src/chrome/content/rules/Filmlash.com.xml index 834a8de79709..722e226f7bc9 100644 --- a/src/chrome/content/rules/Filmlash.com.xml +++ b/src/chrome/content/rules/Filmlash.com.xml @@ -20,4 +20,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Filter.xml b/src/chrome/content/rules/Filter.xml index 7325b4a9b135..408649cd0433 100644 --- a/src/chrome/content/rules/Filter.xml +++ b/src/chrome/content/rules/Filter.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Fimfiction.net.xml b/src/chrome/content/rules/Fimfiction.net.xml deleted file mode 100644 index ec279e6167e7..000000000000 --- a/src/chrome/content/rules/Fimfiction.net.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Fimserve.com.xml b/src/chrome/content/rules/Fimserve.com.xml index 7fa558cb8b73..eb6a944b0538 100644 --- a/src/chrome/content/rules/Fimserve.com.xml +++ b/src/chrome/content/rules/Fimserve.com.xml @@ -14,7 +14,7 @@ Fetch error: http://trgc.opt.fimserve.com/ => https://trgc.opt.fimserve.com/: (6 For other Rubicon Project coverage, see Rubicon-Project.xml. --> - + diff --git a/src/chrome/content/rules/Final-Score.xml b/src/chrome/content/rules/Final-Score.xml index 5ea1935505b4..119eb56da78d 100644 --- a/src/chrome/content/rules/Final-Score.xml +++ b/src/chrome/content/rules/Final-Score.xml @@ -17,9 +17,11 @@ - - - + + + + + @@ -34,7 +36,6 @@ - + diff --git a/src/chrome/content/rules/Finalsite.xml b/src/chrome/content/rules/Finalsite.xml index d5e12b8b8852..8b4b7384dce1 100644 --- a/src/chrome/content/rules/Finalsite.xml +++ b/src/chrome/content/rules/Finalsite.xml @@ -19,16 +19,21 @@ Fetch error: http://finalsite.com/ => https://finalsite.com/: (51, "SSL: no alte - secureprivate --> - + - + + + + + + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Finam.xml b/src/chrome/content/rules/Finam.xml index 6e15feeb401a..c021d7af8ee3 100644 --- a/src/chrome/content/rules/Finam.xml +++ b/src/chrome/content/rules/Finam.xml @@ -6,13 +6,12 @@ Fetch error: http://fb.finam.ru/ => https://fb.finam.ru/: (28, 'Connection timed Disabled by https-everywhere-checker because: Fetch error: http://fb.finam.ru/ => https://fb.finam.ru/: (28, 'Connection timed out after 10001 milliseconds') --> - + - + - + diff --git a/src/chrome/content/rules/Financial-Content.xml b/src/chrome/content/rules/Financial-Content.xml deleted file mode 100644 index a5896cef6476..000000000000 --- a/src/chrome/content/rules/Financial-Content.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/FinancialContent.com.xml b/src/chrome/content/rules/FinancialContent.com.xml new file mode 100644 index 000000000000..c4c929f39af7 --- /dev/null +++ b/src/chrome/content/rules/FinancialContent.com.xml @@ -0,0 +1,18 @@ + + + + + + + + diff --git a/src/chrome/content/rules/FinancialHacks.ca.xml b/src/chrome/content/rules/FinancialHacks.ca.xml new file mode 100644 index 000000000000..e3b5a9ef2c56 --- /dev/null +++ b/src/chrome/content/rules/FinancialHacks.ca.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Financial_Times.xml b/src/chrome/content/rules/Financial_Times.xml index 2b3c43da1f4a..e187ec24e9e3 100644 --- a/src/chrome/content/rules/Financial_Times.xml +++ b/src/chrome/content/rules/Financial_Times.xml @@ -1,212 +1,64 @@ - - - - + + - - - + + - + + - - + + + + + + + + + - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + + diff --git a/src/chrome/content/rules/Financialtrans.com.xml b/src/chrome/content/rules/Financialtrans.com.xml index 5ad12754ff9a..389d77c10196 100644 --- a/src/chrome/content/rules/Financialtrans.com.xml +++ b/src/chrome/content/rules/Financialtrans.com.xml @@ -1,9 +1,10 @@ - + + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/FinansWatch.xml b/src/chrome/content/rules/FinansWatch.xml index c8856a2e28e0..52819166909e 100644 --- a/src/chrome/content/rules/FinansWatch.xml +++ b/src/chrome/content/rules/FinansWatch.xml @@ -7,7 +7,7 @@ Fetch error: http://www.finanswatch.dk/ => https://www.finanswatch.dk/: (51, "SS http://finanswatch.dk/template/fwVer1-0/css/fw_global.css?rev=35794 is essential for the layout but is served through http. --> - + diff --git a/src/chrome/content/rules/Finansportalen.no.xml b/src/chrome/content/rules/Finansportalen.no.xml index 27884e81fcf3..371fd20f755e 100644 --- a/src/chrome/content/rules/Finansportalen.no.xml +++ b/src/chrome/content/rules/Finansportalen.no.xml @@ -10,7 +10,7 @@ Fetch error: http://stat.finansportalen.no/ => https://stat.finansportalen.no/: - www.finansportalen.no --> - + @@ -24,7 +24,7 @@ Fetch error: http://stat.finansportalen.no/ => https://stat.finansportalen.no/: - + https://fkl.fi/: (7, 'Failed to connect to fkl.fi Fetch error: http://www.fkl.fi/ => https://www.fkl.fi/: (7, 'Failed to connect to www.fkl.fi port 443: Connection refused') --> - + diff --git a/src/chrome/content/rules/Finanstilsynet.dk.xml b/src/chrome/content/rules/Finanstilsynet.dk.xml deleted file mode 100644 index e8a2fb0e436e..000000000000 --- a/src/chrome/content/rules/Finanstilsynet.dk.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Finanzberatung_Max_Herbst.xml b/src/chrome/content/rules/Finanzberatung_Max_Herbst.xml index 0bb13a0e4080..71e4f102d9f7 100644 --- a/src/chrome/content/rules/Finanzberatung_Max_Herbst.xml +++ b/src/chrome/content/rules/Finanzberatung_Max_Herbst.xml @@ -12,7 +12,8 @@ --> - + + https://d3ne1tggqg4fzy.cloudfront.net/ --> - + diff --git a/src/chrome/content/rules/Find.ly.xml b/src/chrome/content/rules/Find.ly.xml deleted file mode 100644 index eec91a0c2457..000000000000 --- a/src/chrome/content/rules/Find.ly.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/FindArticles.com.xml b/src/chrome/content/rules/FindArticles.com.xml new file mode 100644 index 000000000000..8e64a95e07e1 --- /dev/null +++ b/src/chrome/content/rules/FindArticles.com.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/FindIP-Address.com.xml b/src/chrome/content/rules/FindIP-Address.com.xml new file mode 100644 index 000000000000..19bbbecf2743 --- /dev/null +++ b/src/chrome/content/rules/FindIP-Address.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/FindTheBest.xml b/src/chrome/content/rules/FindTheBest.xml index c144a00630d4..205977e854c5 100644 --- a/src/chrome/content/rules/FindTheBest.xml +++ b/src/chrome/content/rules/FindTheBest.xml @@ -28,7 +28,7 @@ Fetch error: http://findthebest.com/ => https://findthebest.com/: (51, "SSL: no - * (per-client domains) --> - + diff --git a/src/chrome/content/rules/Find_a_Grave.xml b/src/chrome/content/rules/Find_a_Grave.xml index dd2039a6fd1a..c64699c346b8 100644 --- a/src/chrome/content/rules/Find_a_Grave.xml +++ b/src/chrome/content/rules/Find_a_Grave.xml @@ -12,7 +12,8 @@ - + + @@ -22,4 +23,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Findgravy.com.xml b/src/chrome/content/rules/Findgravy.com.xml index 314e568076f2..a6def9b61970 100644 --- a/src/chrome/content/rules/Findgravy.com.xml +++ b/src/chrome/content/rules/Findgravy.com.xml @@ -20,7 +20,7 @@ Fetch error: http://www.findgravy.com/ => https://www.findgravy.com/: (51, "SSL: * Not secured by us <= mismatched (forced endpoint) --> - + diff --git a/src/chrome/content/rules/Findlawimages.com.xml b/src/chrome/content/rules/Findlawimages.com.xml new file mode 100644 index 000000000000..4bb0c3b2abf1 --- /dev/null +++ b/src/chrome/content/rules/Findlawimages.com.xml @@ -0,0 +1,9 @@ + + + + + + diff --git a/src/chrome/content/rules/Fine_Art_America.xml b/src/chrome/content/rules/Fine_Art_America.xml index aec335d5711c..5202dae43dba 100644 --- a/src/chrome/content/rules/Fine_Art_America.xml +++ b/src/chrome/content/rules/Fine_Art_America.xml @@ -53,11 +53,7 @@ - - - - + diff --git a/src/chrome/content/rules/Fineproxy.org-problematic.xml b/src/chrome/content/rules/Fineproxy.org-problematic.xml index 816c345eb2bd..6e118ccc3fa3 100644 --- a/src/chrome/content/rules/Fineproxy.org-problematic.xml +++ b/src/chrome/content/rules/Fineproxy.org-problematic.xml @@ -11,7 +11,6 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Fineproxy.org.xml b/src/chrome/content/rules/Fineproxy.org.xml index b06944b834ca..720d8eed1e4b 100644 --- a/src/chrome/content/rules/Fineproxy.org.xml +++ b/src/chrome/content/rules/Fineproxy.org.xml @@ -39,7 +39,7 @@ Fetch error: http://forum.fineproxy.org/ => https://forum.fineproxy.org/: (6, 'C * Secured by us --> - + diff --git a/src/chrome/content/rules/Finn.xml b/src/chrome/content/rules/Finn.xml index c52c79207c1c..34393be8747a 100644 --- a/src/chrome/content/rules/Finn.xml +++ b/src/chrome/content/rules/Finn.xml @@ -7,7 +7,6 @@ - - + diff --git a/src/chrome/content/rules/FinnChristiansen.de.xml b/src/chrome/content/rules/FinnChristiansen.de.xml index 250b5fc8f32d..5bfdb6dc7eae 100644 --- a/src/chrome/content/rules/FinnChristiansen.de.xml +++ b/src/chrome/content/rules/FinnChristiansen.de.xml @@ -4,7 +4,7 @@ - css from $self --> - + diff --git a/src/chrome/content/rules/Finna.fi.xml b/src/chrome/content/rules/Finna.fi.xml index ea754f0ba2aa..0fe06079164a 100644 --- a/src/chrome/content/rules/Finna.fi.xml +++ b/src/chrome/content/rules/Finna.fi.xml @@ -24,7 +24,7 @@ --> - + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Fio.bank.xml b/src/chrome/content/rules/Fio.bank.xml new file mode 100644 index 000000000000..a5fa73d407a0 --- /dev/null +++ b/src/chrome/content/rules/Fio.bank.xml @@ -0,0 +1,11 @@ + + + + + + + diff --git a/src/chrome/content/rules/Fio.cz.xml b/src/chrome/content/rules/Fio.cz.xml new file mode 100644 index 000000000000..c39fb0f5794a --- /dev/null +++ b/src/chrome/content/rules/Fio.cz.xml @@ -0,0 +1,152 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Fio.hu.xml b/src/chrome/content/rules/Fio.hu.xml new file mode 100644 index 000000000000..61dbe9788f54 --- /dev/null +++ b/src/chrome/content/rules/Fio.hu.xml @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Fio.pl.xml b/src/chrome/content/rules/Fio.pl.xml new file mode 100644 index 000000000000..3548b8af8241 --- /dev/null +++ b/src/chrome/content/rules/Fio.pl.xml @@ -0,0 +1,14 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Fio.sk.xml b/src/chrome/content/rules/Fio.sk.xml new file mode 100644 index 000000000000..9f0589d5a20d --- /dev/null +++ b/src/chrome/content/rules/Fio.sk.xml @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/FireEmblemWiki.org.xml b/src/chrome/content/rules/FireEmblemWiki.org.xml new file mode 100644 index 000000000000..402ba8ccdd13 --- /dev/null +++ b/src/chrome/content/rules/FireEmblemWiki.org.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/FireEye.xml b/src/chrome/content/rules/FireEye.xml index 5b6cbbd6d1a3..d4d408280b74 100644 --- a/src/chrome/content/rules/FireEye.xml +++ b/src/chrome/content/rules/FireEye.xml @@ -1,66 +1,49 @@ - - + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/chrome/content/rules/FireHost.xml b/src/chrome/content/rules/FireHost.xml index e44d8964392b..839e2342c19c 100644 --- a/src/chrome/content/rules/FireHost.xml +++ b/src/chrome/content/rules/FireHost.xml @@ -5,13 +5,13 @@ Fetch error: http://firehost.com/ => http://firehost.com/: (60, 'SSL certificate ne.wac.edgecastcdn.net/001415/assets/ ne.wac.edgecastcdn.net/801415/firehost.com/ --> - + - + diff --git a/src/chrome/content/rules/FireSmoke.ca.xml b/src/chrome/content/rules/FireSmoke.ca.xml new file mode 100644 index 000000000000..b10987e0cc56 --- /dev/null +++ b/src/chrome/content/rules/FireSmoke.ca.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Firebase.xml b/src/chrome/content/rules/Firebase.xml index a07d42a6632b..87b3a5b92d8c 100644 --- a/src/chrome/content/rules/Firebase.xml +++ b/src/chrome/content/rules/Firebase.xml @@ -1,20 +1,32 @@ - - + + + + + + - + + + + + + + + + + diff --git a/src/chrome/content/rules/Fireclick.com.xml b/src/chrome/content/rules/Fireclick.com.xml deleted file mode 100644 index c08a2efe78c3..000000000000 --- a/src/chrome/content/rules/Fireclick.com.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Firedoglake.xml b/src/chrome/content/rules/Firedoglake.xml index 69991033b9b2..90623e612bc1 100644 --- a/src/chrome/content/rules/Firedoglake.xml +++ b/src/chrome/content/rules/Firedoglake.xml @@ -14,7 +14,7 @@ Fetch error: http://members.firedoglake.com/ => https://members.firedoglake.com/ - static1 --> - + @@ -22,7 +22,6 @@ Fetch error: http://members.firedoglake.com/ => https://members.firedoglake.com/ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Firefox.com.xml b/src/chrome/content/rules/Firefox.com.xml index d3f82c6ef741..dea849b61639 100644 --- a/src/chrome/content/rules/Firefox.com.xml +++ b/src/chrome/content/rules/Firefox.com.xml @@ -1,42 +1,41 @@ - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Firefox.net.cn.xml b/src/chrome/content/rules/Firefox.net.cn.xml index d170c4601446..78fd5951181d 100644 --- a/src/chrome/content/rules/Firefox.net.cn.xml +++ b/src/chrome/content/rules/Firefox.net.cn.xml @@ -1,22 +1,9 @@ - - - + - - - - - - + - diff --git a/src/chrome/content/rules/Firefox_OS_Devices.org.xml b/src/chrome/content/rules/Firefox_OS_Devices.org.xml index d3179947798b..3e6dd8e024b0 100644 --- a/src/chrome/content/rules/Firefox_OS_Devices.org.xml +++ b/src/chrome/content/rules/Firefox_OS_Devices.org.xml @@ -22,7 +22,7 @@ --> - + + + + + + + + diff --git a/src/chrome/content/rules/FirstDEDIC.ru.xml b/src/chrome/content/rules/FirstDEDIC.ru.xml index f7f7e2fb2f1a..8bbdeee34d6f 100644 --- a/src/chrome/content/rules/FirstDEDIC.ru.xml +++ b/src/chrome/content/rules/FirstDEDIC.ru.xml @@ -12,7 +12,7 @@ - + + + + + + + + + + + + diff --git a/src/chrome/content/rules/FirstTag.xml b/src/chrome/content/rules/FirstTag.xml index 9b1f90f59897..2c6c44adb345 100644 --- a/src/chrome/content/rules/FirstTag.xml +++ b/src/chrome/content/rules/FirstTag.xml @@ -4,4 +4,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/FirstTechFed.com.xml b/src/chrome/content/rules/FirstTechFed.com.xml index 21ca1a6a5068..57c2bb0bfd0f 100644 --- a/src/chrome/content/rules/FirstTechFed.com.xml +++ b/src/chrome/content/rules/FirstTechFed.com.xml @@ -4,7 +4,7 @@ - + diff --git a/src/chrome/content/rules/FirstVDS.ru.xml b/src/chrome/content/rules/FirstVDS.ru.xml index 4a93751d682e..33c23c870a9e 100644 --- a/src/chrome/content/rules/FirstVDS.ru.xml +++ b/src/chrome/content/rules/FirstVDS.ru.xml @@ -11,7 +11,7 @@ Fetch error: http://www.firstvds.ru/ => https://www.firstvds.ru/: (60, 'SSL cert ᵈ Dropped --> - + @@ -23,7 +23,7 @@ Fetch error: http://www.firstvds.ru/ => https://www.firstvds.ru/: (60, 'SSL cert - + diff --git a/src/chrome/content/rules/FirstWednesday.lgbt.xml b/src/chrome/content/rules/FirstWednesday.lgbt.xml new file mode 100644 index 000000000000..b4d1489658fe --- /dev/null +++ b/src/chrome/content/rules/FirstWednesday.lgbt.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/First_Amendment_Coalition.xml b/src/chrome/content/rules/First_Amendment_Coalition.xml index 0214a0b8992e..eee7e007e1fb 100644 --- a/src/chrome/content/rules/First_Amendment_Coalition.xml +++ b/src/chrome/content/rules/First_Amendment_Coalition.xml @@ -4,7 +4,7 @@ - www (wpengine) --> - + diff --git a/src/chrome/content/rules/First_Class_Magazine.se.xml b/src/chrome/content/rules/First_Class_Magazine.se.xml index b52fb8e6a3b8..ce29e93f1d40 100644 --- a/src/chrome/content/rules/First_Class_Magazine.se.xml +++ b/src/chrome/content/rules/First_Class_Magazine.se.xml @@ -15,15 +15,7 @@ - - - - - - diff --git a/src/chrome/content/rules/First_Integrity.com.xml b/src/chrome/content/rules/First_Integrity.com.xml index d54bb9b27d22..ac83a81c677a 100644 --- a/src/chrome/content/rules/First_Integrity.com.xml +++ b/src/chrome/content/rules/First_Integrity.com.xml @@ -14,7 +14,7 @@ - + https://www.firsts.com/: (51, "SSL: no al For other Vodafone Group coverage, see Vodafone.xml. --> - + diff --git a/src/chrome/content/rules/FishNet_Security.com.xml b/src/chrome/content/rules/FishNet_Security.com.xml index f9667bc80e84..7aaede8728f5 100644 --- a/src/chrome/content/rules/FishNet_Security.com.xml +++ b/src/chrome/content/rules/FishNet_Security.com.xml @@ -5,7 +5,7 @@ Fetch error: http://fishnetsecurity.com/ => https://fishnetsecurity.com/: (60, ' Fetch error: http://www.fishnetsecurity.com/ => https://www.fishnetsecurity.com/: (60, 'SSL certificate problem: self signed certificate') --> - + @@ -13,7 +13,7 @@ Fetch error: http://www.fishnetsecurity.com/ => https://www.fishnetsecurity.com/ - + https://fishwrapper.com/: (7, 'Failed to connect to fishwrapper.com port 443: Connection refused') -Fetch error: http://www.fishwrapper.com/ => https://www.fishwrapper.com/: (7, 'Failed to connect to www.fishwrapper.com port 443: Connection refused') - - For rules not causing false/broken MCB, see Fishwrapper.com.xml. - ---> - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Fishwrapper.com.xml b/src/chrome/content/rules/Fishwrapper.com.xml deleted file mode 100644 index 22058bb2089d..000000000000 --- a/src/chrome/content/rules/Fishwrapper.com.xml +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/FitBit.xml b/src/chrome/content/rules/FitBit.xml index 9ae47f450552..c49f68d1c980 100644 --- a/src/chrome/content/rules/FitBit.xml +++ b/src/chrome/content/rules/FitBit.xml @@ -26,7 +26,7 @@ Fetch error: http://m.fitbit.com/ => https://m.fitbit.com/: (6, 'Could not resol - lp.fitbit.com - cache.fitbit.com (https://d6y8zfzc2qfsl.cloudfront.net/) --> - + diff --git a/src/chrome/content/rules/FitStudio.com.xml b/src/chrome/content/rules/FitStudio.com.xml index e238900db56f..5fa797aa6950 100644 --- a/src/chrome/content/rules/FitStudio.com.xml +++ b/src/chrome/content/rules/FitStudio.com.xml @@ -42,10 +42,15 @@ Fetch error: http://fitstudio.com/ => https://fitstudio.com/: (56, 'SSL read: er * Secured by us --> - + - + + + + + + diff --git a/src/chrome/content/rules/Fitgirl-repacks.site.xml b/src/chrome/content/rules/Fitgirl-repacks.site.xml new file mode 100644 index 000000000000..4e1a517e6234 --- /dev/null +++ b/src/chrome/content/rules/Fitgirl-repacks.site.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Fitness_Market.xml b/src/chrome/content/rules/Fitness_Market.xml index 29f9009a73a0..4cab6288a524 100644 --- a/src/chrome/content/rules/Fitness_Market.xml +++ b/src/chrome/content/rules/Fitness_Market.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Fiuza.me.xml b/src/chrome/content/rules/Fiuza.me.xml index 40c898b9fab6..9d2094fd4e2d 100644 --- a/src/chrome/content/rules/Fiuza.me.xml +++ b/src/chrome/content/rules/Fiuza.me.xml @@ -6,12 +6,11 @@ Fetch error: http://fiuza.me/ => https://fiuza.me/: (7, 'Failed to connect to fi Disabled by https-everywhere-checker because: Fetch error: http://fiuza.me/ => https://fiuza.me/: (60, 'SSL certificate problem: self signed certificate') --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/FiveBooks.com.xml b/src/chrome/content/rules/FiveBooks.com.xml new file mode 100644 index 000000000000..7c973b698c28 --- /dev/null +++ b/src/chrome/content/rules/FiveBooks.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/FiveThirtyEight.com.xml b/src/chrome/content/rules/FiveThirtyEight.com.xml deleted file mode 100644 index 87a9e6e36ce0..000000000000 --- a/src/chrome/content/rules/FiveThirtyEight.com.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/FixUnix.xml b/src/chrome/content/rules/FixUnix.xml index da7dc42a1d7b..d50f0b23317f 100644 --- a/src/chrome/content/rules/FixUnix.xml +++ b/src/chrome/content/rules/FixUnix.xml @@ -16,7 +16,7 @@ Fetch error: http://c.fixunix.com/ => https://d2yvm6gxdmpjqc.cloudfront.net/: (2 (www.)?fixunix.com: Plaintext reply --> - + diff --git a/src/chrome/content/rules/Fix_Ubuntu.com.xml b/src/chrome/content/rules/Fix_Ubuntu.com.xml deleted file mode 100644 index 92c8c0164864..000000000000 --- a/src/chrome/content/rules/Fix_Ubuntu.com.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Fizy.com.xml b/src/chrome/content/rules/Fizy.com.xml new file mode 100644 index 000000000000..96fb12e90cbb --- /dev/null +++ b/src/chrome/content/rules/Fizy.com.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/chrome/content/rules/Flameeyes.xml b/src/chrome/content/rules/Flameeyes.xml deleted file mode 100644 index 57e3d151290d..000000000000 --- a/src/chrome/content/rules/Flameeyes.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Flappening.watch.xml b/src/chrome/content/rules/Flappening.watch.xml new file mode 100644 index 000000000000..0f168ce7bfe3 --- /dev/null +++ b/src/chrome/content/rules/Flappening.watch.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Flash-mp3-player.net.xml b/src/chrome/content/rules/Flash-mp3-player.net.xml index 41b3c2c2f2e2..c106abe9009a 100644 --- a/src/chrome/content/rules/Flash-mp3-player.net.xml +++ b/src/chrome/content/rules/Flash-mp3-player.net.xml @@ -3,7 +3,6 @@ - + diff --git a/src/chrome/content/rules/FlashGot.net.xml b/src/chrome/content/rules/FlashGot.net.xml deleted file mode 100644 index 985f2278de5f..000000000000 --- a/src/chrome/content/rules/FlashGot.net.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Flashrom.xml b/src/chrome/content/rules/Flashrom.xml index b137816d2bae..6fb5e531e85f 100644 --- a/src/chrome/content/rules/Flashrom.xml +++ b/src/chrome/content/rules/Flashrom.xml @@ -14,7 +14,7 @@ - + - + + - + - + diff --git a/src/chrome/content/rules/FlatKill.org.xml b/src/chrome/content/rules/FlatKill.org.xml new file mode 100644 index 000000000000..e5bb278fc905 --- /dev/null +++ b/src/chrome/content/rules/FlatKill.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Flattr.net.xml b/src/chrome/content/rules/Flattr.net.xml index 435d3f762d34..949d84eaf3ed 100644 --- a/src/chrome/content/rules/Flattr.net.xml +++ b/src/chrome/content/rules/Flattr.net.xml @@ -24,7 +24,7 @@ Fetch error: http://static4.flattr.net/ => https://static4.flattr.net/: (51, "SS ¹ Mismatched --> - + diff --git a/src/chrome/content/rules/Flattr.xml b/src/chrome/content/rules/Flattr.xml index 81d53f932c72..f8f669342e0c 100644 --- a/src/chrome/content/rules/Flattr.xml +++ b/src/chrome/content/rules/Flattr.xml @@ -31,7 +31,7 @@ --> - + diff --git a/src/chrome/content/rules/Flavors.me.xml b/src/chrome/content/rules/Flavors.me.xml deleted file mode 100644 index 1d5e5f4a22a6..000000000000 --- a/src/chrome/content/rules/Flavors.me.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Fleet_Networks.xml b/src/chrome/content/rules/Fleet_Networks.xml deleted file mode 100644 index d12792de6997..000000000000 --- a/src/chrome/content/rules/Fleet_Networks.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Flex_Investments.xml b/src/chrome/content/rules/Flex_Investments.xml deleted file mode 100644 index b3c341da9b39..000000000000 --- a/src/chrome/content/rules/Flex_Investments.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Flibusta.is.xml b/src/chrome/content/rules/Flibusta.is.xml deleted file mode 100644 index efcf8782084f..000000000000 --- a/src/chrome/content/rules/Flibusta.is.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Flickr.xml b/src/chrome/content/rules/Flickr.xml index 9c211a1be1aa..d8b24b348aa1 100644 --- a/src/chrome/content/rules/Flickr.xml +++ b/src/chrome/content/rules/Flickr.xml @@ -9,6 +9,7 @@ Invalid certificate: rw.api.flickr.com + code.flickr.com (expired) hv-static.flickr.com \d.hv-static.flickr.com images.flickr.com (broken chain) @@ -44,10 +45,8 @@ - - + - diff --git a/src/chrome/content/rules/Flightaware.xml b/src/chrome/content/rules/Flightaware.xml index d535af0cde6d..5edbf0bd9182 100644 --- a/src/chrome/content/rules/Flightaware.xml +++ b/src/chrome/content/rules/Flightaware.xml @@ -56,7 +56,7 @@ - + - - + diff --git a/src/chrome/content/rules/Flightglobal.xml b/src/chrome/content/rules/Flightglobal.xml index 0fb999029fac..118e78816aa4 100644 --- a/src/chrome/content/rules/Flightglobal.xml +++ b/src/chrome/content/rules/Flightglobal.xml @@ -5,7 +5,8 @@ - + + @@ -15,7 +16,7 @@ - pro - www --> - + - - - - - - diff --git a/src/chrome/content/rules/Flinto.com.xml b/src/chrome/content/rules/Flinto.com.xml index fe0b2f1231ed..351b663f3d52 100644 --- a/src/chrome/content/rules/Flinto.com.xml +++ b/src/chrome/content/rules/Flinto.com.xml @@ -27,7 +27,8 @@ - + + diff --git a/src/chrome/content/rules/Flipkart.com.xml b/src/chrome/content/rules/Flipkart.com.xml index 79e1d55e3c59..dcea9338c57a 100644 --- a/src/chrome/content/rules/Flipkart.com.xml +++ b/src/chrome/content/rules/Flipkart.com.xml @@ -1,88 +1,34 @@ - - + - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - + + diff --git a/src/chrome/content/rules/Flite.xml b/src/chrome/content/rules/Flite.xml deleted file mode 100644 index a87b0ab93da2..000000000000 --- a/src/chrome/content/rules/Flite.xml +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Flix123.com.xml b/src/chrome/content/rules/Flix123.com.xml deleted file mode 100644 index a504eee5fed8..000000000000 --- a/src/chrome/content/rules/Flix123.com.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/FlixBus.xml b/src/chrome/content/rules/FlixBus.xml index 94f2ac5acb0d..905bbe2d94e4 100644 --- a/src/chrome/content/rules/FlixBus.xml +++ b/src/chrome/content/rules/FlixBus.xml @@ -32,6 +32,6 @@ - diff --git a/src/chrome/content/rules/FlixDen.xml b/src/chrome/content/rules/FlixDen.xml index ea461ef1ad99..0eb4e81109a0 100644 --- a/src/chrome/content/rules/FlixDen.xml +++ b/src/chrome/content/rules/FlixDen.xml @@ -5,7 +5,7 @@ Fetch error: http://flixden.com/ => https://flixden.com/: (51, "SSL: no alternat Fetch error: http://www.flixden.com/ => https://www.flixden.com/: (6, 'Could not resolve host: www.flixden.com') --> - + @@ -16,4 +16,4 @@ Fetch error: http://www.flixden.com/ => https://www.flixden.com/: (6, 'Could not - \ No newline at end of file + diff --git a/src/chrome/content/rules/Flixster.xml b/src/chrome/content/rules/Flixster.xml index 3635a13f8797..2334da3fbd2c 100644 --- a/src/chrome/content/rules/Flixster.xml +++ b/src/chrome/content/rules/Flixster.xml @@ -67,7 +67,7 @@ Fetch error: http://static.flixstercdn.com/ => https://static.flixstercdn.com/: ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -105,7 +105,7 @@ Fetch error: http://static.flixstercdn.com/ => https://static.flixstercdn.com/: - + - + https://www.floek.net/: (51, "SSL: no alte - + + @@ -31,7 +32,6 @@ Fetch error: http://binefreund.de/ => https://www.floek.net/: (51, "SSL: no alte - + diff --git a/src/chrome/content/rules/FlokiNET.is.xml b/src/chrome/content/rules/FlokiNET.is.xml index 862b28ca18e9..9236cabf3e09 100644 --- a/src/chrome/content/rules/FlokiNET.is.xml +++ b/src/chrome/content/rules/FlokiNET.is.xml @@ -8,8 +8,6 @@ --> - - @@ -27,12 +25,7 @@ - - - - - - + - - - - - - - diff --git a/src/chrome/content/rules/Floor64.xml b/src/chrome/content/rules/Floor64.xml index 3c228b95a72c..dd7fc021d70a 100644 --- a/src/chrome/content/rules/Floor64.xml +++ b/src/chrome/content/rules/Floor64.xml @@ -1,9 +1,3 @@ - - + diff --git a/src/chrome/content/rules/FloridaPolitics.com.xml b/src/chrome/content/rules/FloridaPolitics.com.xml new file mode 100644 index 000000000000..5f2a421912da --- /dev/null +++ b/src/chrome/content/rules/FloridaPolitics.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Florida_Today.xml b/src/chrome/content/rules/Florida_Today.xml index b541cb15837b..e66c98893b52 100644 --- a/src/chrome/content/rules/Florida_Today.xml +++ b/src/chrome/content/rules/Florida_Today.xml @@ -1,83 +1,46 @@ - - - - + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/FlowBTC.com.xml b/src/chrome/content/rules/FlowBTC.com.xml deleted file mode 100644 index cb6b90eacc83..000000000000 --- a/src/chrome/content/rules/FlowBTC.com.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Flownative.com.xml b/src/chrome/content/rules/Flownative.com.xml index ea6f79d004f6..c796d7391e14 100644 --- a/src/chrome/content/rules/Flownative.com.xml +++ b/src/chrome/content/rules/Flownative.com.xml @@ -1,11 +1,5 @@ - - - - diff --git a/src/chrome/content/rules/Flowplayer.org.xml b/src/chrome/content/rules/Flowplayer.org.xml index 692b19d9e58f..4e38d7d13286 100644 --- a/src/chrome/content/rules/Flowplayer.org.xml +++ b/src/chrome/content/rules/Flowplayer.org.xml @@ -19,4 +19,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Flowtab.com.xml b/src/chrome/content/rules/Flowtab.com.xml index ee6fb660357a..8e19e9edc012 100644 --- a/src/chrome/content/rules/Flowtab.com.xml +++ b/src/chrome/content/rules/Flowtab.com.xml @@ -12,20 +12,19 @@ Fetch error: http://flowtab.com/ => https://flowtab.com/: (60, 'SSL certificate - cdn.flowtab.mobi --> - + - + - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/FluentInTurkish.com.xml b/src/chrome/content/rules/FluentInTurkish.com.xml new file mode 100644 index 000000000000..dd3fa08aa5e4 --- /dev/null +++ b/src/chrome/content/rules/FluentInTurkish.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Flurry-problematic.xml b/src/chrome/content/rules/Flurry-problematic.xml index defcfa92702c..22f97633d414 100644 --- a/src/chrome/content/rules/Flurry-problematic.xml +++ b/src/chrome/content/rules/Flurry-problematic.xml @@ -10,7 +10,6 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Flurry.xml b/src/chrome/content/rules/Flurry.xml index eaa0a2f58f34..3db31551f5b2 100644 --- a/src/chrome/content/rules/Flurry.xml +++ b/src/chrome/content/rules/Flurry.xml @@ -24,4 +24,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/FlutterToday.com.xml b/src/chrome/content/rules/FlutterToday.com.xml deleted file mode 100644 index 9b166d3a0d4e..000000000000 --- a/src/chrome/content/rules/FlutterToday.com.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Flux.xml b/src/chrome/content/rules/Flux.xml index ff2cfc5d6984..0b2625497c98 100644 --- a/src/chrome/content/rules/Flux.xml +++ b/src/chrome/content/rules/Flux.xml @@ -16,7 +16,7 @@ - + + + + + + + + + diff --git a/src/chrome/content/rules/Flyasite.com.xml b/src/chrome/content/rules/Flyasite.com.xml deleted file mode 100644 index 77e6fac1b4d3..000000000000 --- a/src/chrome/content/rules/Flyasite.com.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Flyerify.com.xml b/src/chrome/content/rules/Flyerify.com.xml new file mode 100644 index 000000000000..b1090842f0c4 --- /dev/null +++ b/src/chrome/content/rules/Flyerify.com.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/FlyersRights.com.xml b/src/chrome/content/rules/FlyersRights.com.xml new file mode 100644 index 000000000000..b4d5e486f5a3 --- /dev/null +++ b/src/chrome/content/rules/FlyersRights.com.xml @@ -0,0 +1,33 @@ + + + + + + + diff --git a/src/chrome/content/rules/FlyersRights.org.xml b/src/chrome/content/rules/FlyersRights.org.xml index 6304f6897335..bdf1694d0dad 100644 --- a/src/chrome/content/rules/FlyersRights.org.xml +++ b/src/chrome/content/rules/FlyersRights.org.xml @@ -1,27 +1,37 @@ - - + - - + + - - + diff --git a/src/chrome/content/rules/Flyertown.xml b/src/chrome/content/rules/Flyertown.xml index 9ca7f8fe4d28..3576028518fe 100644 --- a/src/chrome/content/rules/Flyertown.xml +++ b/src/chrome/content/rules/Flyertown.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Flygo-Aviation.com.xml b/src/chrome/content/rules/Flygo-Aviation.com.xml new file mode 100644 index 000000000000..2f548cc9d1b1 --- /dev/null +++ b/src/chrome/content/rules/Flygo-Aviation.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Flying_Meat.xml b/src/chrome/content/rules/Flying_Meat.xml index 9ba9ab04eccc..352d70aa0bce 100644 --- a/src/chrome/content/rules/Flying_Meat.xml +++ b/src/chrome/content/rules/Flying_Meat.xml @@ -17,10 +17,11 @@ - + + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Flyspray.org.xml b/src/chrome/content/rules/Flyspray.org.xml new file mode 100644 index 000000000000..2c9c8dd0c369 --- /dev/null +++ b/src/chrome/content/rules/Flyspray.org.xml @@ -0,0 +1,20 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Fnac.pt.xml b/src/chrome/content/rules/Fnac.pt.xml index e54bb2eba28f..d45dc24b8991 100644 --- a/src/chrome/content/rules/Fnac.pt.xml +++ b/src/chrome/content/rules/Fnac.pt.xml @@ -1,14 +1,14 @@ - - - - - - - - diff --git a/src/chrome/content/rules/FoECV_LiaB.com.xml b/src/chrome/content/rules/FoECV_LiaB.com.xml deleted file mode 100644 index 2e916e946ff2..000000000000 --- a/src/chrome/content/rules/FoECV_LiaB.com.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Focaljet.com.xml b/src/chrome/content/rules/Focaljet.com.xml index 4447050a0963..fe2e55fb7dd6 100644 --- a/src/chrome/content/rules/Focaljet.com.xml +++ b/src/chrome/content/rules/Focaljet.com.xml @@ -7,7 +7,7 @@ Fetch error: http://www.focaljet.com/ => https://www.focaljet.com/: (51, "SSL: n Disabled by https-everywhere-checker because: Fetch error: http://focaljet.com/ => https://focaljet.com/: (60, 'SSL certificate problem: self signed certificate') --> - + @@ -18,4 +18,4 @@ Fetch error: http://focaljet.com/ => https://focaljet.com/: (60, 'SSL certificat - \ No newline at end of file + diff --git a/src/chrome/content/rules/Focloir.ie.xml b/src/chrome/content/rules/Focloir.ie.xml new file mode 100644 index 000000000000..57ed0335edc6 --- /dev/null +++ b/src/chrome/content/rules/Focloir.ie.xml @@ -0,0 +1,13 @@ + + + + + + + diff --git a/src/chrome/content/rules/Focus.de.xml b/src/chrome/content/rules/Focus.de.xml index 7dfb18bd7f90..dd131b264a53 100644 --- a/src/chrome/content/rules/Focus.de.xml +++ b/src/chrome/content/rules/Focus.de.xml @@ -1,89 +1,32 @@ - + - + + + + + + + + + - - - - - - - + + + + + - - - - - - - - + + diff --git a/src/chrome/content/rules/FocusTeam.ma.xml b/src/chrome/content/rules/FocusTeam.ma.xml new file mode 100644 index 000000000000..1d53002c852c --- /dev/null +++ b/src/chrome/content/rules/FocusTeam.ma.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/FodevareWatch.xml b/src/chrome/content/rules/FodevareWatch.xml index 4999da72274e..8120b944324d 100644 --- a/src/chrome/content/rules/FodevareWatch.xml +++ b/src/chrome/content/rules/FodevareWatch.xml @@ -6,7 +6,7 @@ Fetch error: http://www.fodevarewatch.dk/ => https://www.fodevarewatch.dk/: (51, Not covered: s7.addthis.com adserver.adtech.de - + Remark: This page gets content from other *watch.dk-domains, not all of which work flawlessly with HTTPS Everywhere @@ -14,7 +14,7 @@ Fetch error: http://www.fodevarewatch.dk/ => https://www.fodevarewatch.dk/: (51, --> - + diff --git a/src/chrome/content/rules/FogBugz.com.xml b/src/chrome/content/rules/FogBugz.com.xml index 007177aa0c19..b0ff0dbe1115 100644 --- a/src/chrome/content/rules/FogBugz.com.xml +++ b/src/chrome/content/rules/FogBugz.com.xml @@ -35,4 +35,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/FogCreek.com.xml b/src/chrome/content/rules/FogCreek.com.xml new file mode 100644 index 000000000000..9058dcf3cf52 --- /dev/null +++ b/src/chrome/content/rules/FogCreek.com.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Fog_Creek.xml b/src/chrome/content/rules/Fog_Creek.xml deleted file mode 100644 index 9cc12063d173..000000000000 --- a/src/chrome/content/rules/Fog_Creek.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Fokus.no.xml b/src/chrome/content/rules/Fokus.no.xml index 82c88bc428ef..af512b3596e9 100644 --- a/src/chrome/content/rules/Fokus.no.xml +++ b/src/chrome/content/rules/Fokus.no.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://fokus.no/ => https://www.fokus.no/: (7, 'Failed to connect to www.fokus.no port 443: Connection timed out') Fetch error: http://www.fokus.no/ => https://www.fokus.no/: (7, 'Failed to connect to www.fokus.no port 443: Connection timed out') --> - + diff --git a/src/chrome/content/rules/FoldingCoin.net.xml b/src/chrome/content/rules/FoldingCoin.net.xml index fb52b2c20cd1..987b5bcc6830 100644 --- a/src/chrome/content/rules/FoldingCoin.net.xml +++ b/src/chrome/content/rules/FoldingCoin.net.xml @@ -1,32 +1,10 @@ - - + - - - - + - + diff --git a/src/chrome/content/rules/Folksam.se.xml b/src/chrome/content/rules/Folksam.se.xml index b01405b43b73..4ab3729bba16 100644 --- a/src/chrome/content/rules/Folksam.se.xml +++ b/src/chrome/content/rules/Folksam.se.xml @@ -1,8 +1,55 @@ - - + + - - + + + + + + + + + + + + + + + + + + - diff --git a/src/chrome/content/rules/Fontdeck.xml b/src/chrome/content/rules/Fontdeck.xml index abb9eb23730c..465f310beeef 100644 --- a/src/chrome/content/rules/Fontdeck.xml +++ b/src/chrome/content/rules/Fontdeck.xml @@ -23,7 +23,7 @@ Fetch error: http://www.fontdeck.com/ => https://fontdeck.com/: (28, 'Connection www: cert only matches ^fontdeck.com --> - + diff --git a/src/chrome/content/rules/Fonts.com-noscript.xml b/src/chrome/content/rules/Fonts.com-noscript.xml deleted file mode 100644 index 70a4806701e8..000000000000 --- a/src/chrome/content/rules/Fonts.com-noscript.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Fonts.com.xml b/src/chrome/content/rules/Fonts.com.xml index e091025a4b9e..0ee3646a6825 100644 --- a/src/chrome/content/rules/Fonts.com.xml +++ b/src/chrome/content/rules/Fonts.com.xml @@ -1,139 +1,29 @@ - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - diff --git a/src/chrome/content/rules/FooFighters.xml b/src/chrome/content/rules/FooFighters.xml index 2b04d5981917..a933da4b5ca4 100644 --- a/src/chrome/content/rules/FooFighters.xml +++ b/src/chrome/content/rules/FooFighters.xml @@ -2,7 +2,7 @@ - + diff --git a/src/chrome/content/rules/Food-Allergy-Initiative.xml b/src/chrome/content/rules/Food-Allergy-Initiative.xml index a56d3897e9a2..bb939f30a2f0 100644 --- a/src/chrome/content/rules/Food-Allergy-Initiative.xml +++ b/src/chrome/content/rules/Food-Allergy-Initiative.xml @@ -1,7 +1,7 @@ - + diff --git a/src/chrome/content/rules/FoodAndWaterWatch.org.xml b/src/chrome/content/rules/FoodAndWaterWatch.org.xml index 19d97f6de07c..f5e15f7cc91e 100644 --- a/src/chrome/content/rules/FoodAndWaterWatch.org.xml +++ b/src/chrome/content/rules/FoodAndWaterWatch.org.xml @@ -10,7 +10,7 @@ Non-2xx HTTP code: http://edit.foodandwaterwatch.org/ (200) => https://edit.food documents.foodandwaterwatch.org (502) --> - + diff --git a/src/chrome/content/rules/FoodRepublic.com.xml b/src/chrome/content/rules/FoodRepublic.com.xml new file mode 100644 index 000000000000..064f692366aa --- /dev/null +++ b/src/chrome/content/rules/FoodRepublic.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Food_Protection_Task_Force.com.xml b/src/chrome/content/rules/Food_Protection_Task_Force.com.xml index 90467e90c602..2b634b01f2ba 100644 --- a/src/chrome/content/rules/Food_Protection_Task_Force.com.xml +++ b/src/chrome/content/rules/Food_Protection_Task_Force.com.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Foodl.org.xml b/src/chrome/content/rules/Foodl.org.xml index beb0d8af3127..4e9901b88984 100644 --- a/src/chrome/content/rules/Foodl.org.xml +++ b/src/chrome/content/rules/Foodl.org.xml @@ -17,7 +17,9 @@ - + + + @@ -26,7 +28,6 @@ - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Foodler.com.xml b/src/chrome/content/rules/Foodler.com.xml index e5f97ec0dde2..5edb3fea99de 100644 --- a/src/chrome/content/rules/Foodler.com.xml +++ b/src/chrome/content/rules/Foodler.com.xml @@ -3,4 +3,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Fool-CDN.com.xml b/src/chrome/content/rules/Fool-CDN.com.xml new file mode 100644 index 000000000000..bdc717fa884a --- /dev/null +++ b/src/chrome/content/rules/Fool-CDN.com.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Fool.com-falsemixed.xml b/src/chrome/content/rules/Fool.com-falsemixed.xml deleted file mode 100644 index 9a803739990d..000000000000 --- a/src/chrome/content/rules/Fool.com-falsemixed.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Foolz.us.xml b/src/chrome/content/rules/Foolz.us.xml deleted file mode 100644 index 847960b4febd..000000000000 --- a/src/chrome/content/rules/Foolz.us.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Foot_Locker.xml b/src/chrome/content/rules/Foot_Locker.xml index 3028b7f28f46..9eae20212091 100644 --- a/src/chrome/content/rules/Foot_Locker.xml +++ b/src/chrome/content/rules/Foot_Locker.xml @@ -23,7 +23,7 @@ - + - + diff --git a/src/chrome/content/rules/Foot_Locker_Europe.xml b/src/chrome/content/rules/Foot_Locker_Europe.xml deleted file mode 100644 index 3c33b3efbee0..000000000000 --- a/src/chrome/content/rules/Foot_Locker_Europe.xml +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Foot_Locker_Inc.xml b/src/chrome/content/rules/Foot_Locker_Inc.xml index fbb3d856505d..1c45c490df49 100644 --- a/src/chrome/content/rules/Foot_Locker_Inc.xml +++ b/src/chrome/content/rules/Foot_Locker_Inc.xml @@ -9,7 +9,6 @@ - Footaction_USA.xml - Foot_Locker.xml - Foot_Locker_Canada.xml - - Foot_Locker_Europe.xml - Kids_Foot_Locker.xml - Lady_Foot_Locker.xml diff --git a/src/chrome/content/rules/Footaction_USA.xml b/src/chrome/content/rules/Footaction_USA.xml index 7b3532c9421e..2357fe38c2cb 100644 --- a/src/chrome/content/rules/Footaction_USA.xml +++ b/src/chrome/content/rules/Footaction_USA.xml @@ -18,8 +18,9 @@ - - + + + @@ -28,7 +29,6 @@ - + diff --git a/src/chrome/content/rules/Football_Fanatics.xml b/src/chrome/content/rules/Football_Fanatics.xml index bb782afeb3a4..63624cf8888a 100644 --- a/src/chrome/content/rules/Football_Fanatics.xml +++ b/src/chrome/content/rules/Football_Fanatics.xml @@ -21,4 +21,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Footholds.net.xml b/src/chrome/content/rules/Footholds.net.xml index 17591585d366..f5d27b688c57 100644 --- a/src/chrome/content/rules/Footholds.net.xml +++ b/src/chrome/content/rules/Footholds.net.xml @@ -14,4 +14,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/FootprintCalculator.org.xml b/src/chrome/content/rules/FootprintCalculator.org.xml new file mode 100644 index 000000000000..08fec7f43ead --- /dev/null +++ b/src/chrome/content/rules/FootprintCalculator.org.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Forbes.com.xml b/src/chrome/content/rules/Forbes.com.xml index 0afb41a632f7..b7472f4bbaf9 100644 --- a/src/chrome/content/rules/Forbes.com.xml +++ b/src/chrome/content/rules/Forbes.com.xml @@ -1,34 +1,30 @@ - - - - - + + + + + - + - + + + diff --git a/src/chrome/content/rules/Forbrukerraadet.xml b/src/chrome/content/rules/Forbrukerraadet.xml index 1bc27a57bcf3..caaebb5b4466 100644 --- a/src/chrome/content/rules/Forbrukerraadet.xml +++ b/src/chrome/content/rules/Forbrukerraadet.xml @@ -8,9 +8,9 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.forbrukerportalen.no/ => https://forbrukerportalen.no/: (28, 'Connection timed out after 10000 milliseconds') Fetch error: http://forbrukerportalen.no/ => https://forbrukerportalen.no/: (28, 'Connection timed out after 10001 milliseconds') --> - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Ford.xml b/src/chrome/content/rules/Ford.xml index 177d2b74c603..5f1327f6ce32 100644 --- a/src/chrome/content/rules/Ford.xml +++ b/src/chrome/content/rules/Ford.xml @@ -1,10 +1,10 @@ - + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Fordela.com.xml b/src/chrome/content/rules/Fordela.com.xml index a8839d188b96..c3e35f276e71 100644 --- a/src/chrome/content/rules/Fordela.com.xml +++ b/src/chrome/content/rules/Fordela.com.xml @@ -29,10 +29,12 @@ Fetch error: http://fordela.com/ => https://www.fordela.com/: (60, 'SSL certific * Secured by us --> - + - + + + @@ -41,7 +43,6 @@ Fetch error: http://fordela.com/ => https://www.fordela.com/: (60, 'SSL certific - + diff --git a/src/chrome/content/rules/ForeSee_Results.com.xml b/src/chrome/content/rules/ForeSee_Results.com.xml index 98ba56958054..1d776e5843c0 100644 --- a/src/chrome/content/rules/ForeSee_Results.com.xml +++ b/src/chrome/content/rules/ForeSee_Results.com.xml @@ -21,7 +21,9 @@ - + + + @@ -30,7 +32,6 @@ - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Forecast.io.xml b/src/chrome/content/rules/Forecast.io.xml index 564c49cee553..7616da799848 100644 --- a/src/chrome/content/rules/Forecast.io.xml +++ b/src/chrome/content/rules/Forecast.io.xml @@ -23,7 +23,7 @@ Fetch error: http://www.forecast.io/ => https://www.forecast.io/: (51, "SSL: no * Secured by us --> - + @@ -37,7 +37,7 @@ Fetch error: http://www.forecast.io/ => https://www.forecast.io/: (51, "SSL: no --> - + diff --git a/src/chrome/content/rules/ForeignPolicy.com.xml b/src/chrome/content/rules/ForeignPolicy.com.xml index 9500ff68757d..dc4539bcd0fa 100644 --- a/src/chrome/content/rules/ForeignPolicy.com.xml +++ b/src/chrome/content/rules/ForeignPolicy.com.xml @@ -61,7 +61,7 @@ Fetch error: http://turtlebay.foreignpolicy.com/ => https://turtlebay.foreignpol * Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -113,7 +113,7 @@ Fetch error: http://turtlebay.foreignpolicy.com/ => https://turtlebay.foreignpol - + - + diff --git a/src/chrome/content/rules/Foresters.com.xml b/src/chrome/content/rules/Foresters.com.xml new file mode 100644 index 000000000000..f5b20e1abc34 --- /dev/null +++ b/src/chrome/content/rules/Foresters.com.xml @@ -0,0 +1,19 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Foresters.xml b/src/chrome/content/rules/Foresters.xml deleted file mode 100644 index aecc688ce670..000000000000 --- a/src/chrome/content/rules/Foresters.xml +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/ForeverNew.xml b/src/chrome/content/rules/ForeverNew.xml index 7ec4930489f6..2c0b7b735998 100644 --- a/src/chrome/content/rules/ForeverNew.xml +++ b/src/chrome/content/rules/ForeverNew.xml @@ -5,4 +5,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Forex-Metal.xml b/src/chrome/content/rules/Forex-Metal.xml index aa187bc4a65c..864b500a3a9f 100644 --- a/src/chrome/content/rules/Forex-Metal.xml +++ b/src/chrome/content/rules/Forex-Metal.xml @@ -5,12 +5,12 @@ Fetch error: http://forex-metal.com/ => https://forex-metal.com/: (28, 'Connecti Fetch error: http://www.forex-metal.com/ => https://forex-metal.com/: (28, 'Connection timed out after 20008 milliseconds') --> - + - + diff --git a/src/chrome/content/rules/Forex.com.xml b/src/chrome/content/rules/Forex.com.xml index fb06235877e4..29e632b3f701 100644 --- a/src/chrome/content/rules/Forex.com.xml +++ b/src/chrome/content/rules/Forex.com.xml @@ -27,10 +27,18 @@ Fetch error: http://forex.com/ => https://secure.forex.com/: Too many redirects - jp (403; mismatched, CN: ssl2.cdngc.net) --> - + - + + + + + + + + + @@ -39,7 +47,6 @@ Fetch error: http://forex.com/ => https://secure.forex.com/: Too many redirects - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/ForexCT.xml b/src/chrome/content/rules/ForexCT.xml index ca64fb483739..cd3f669c0e87 100644 --- a/src/chrome/content/rules/ForexCT.xml +++ b/src/chrome/content/rules/ForexCT.xml @@ -11,7 +11,8 @@ - + + @@ -22,10 +23,7 @@ - - + diff --git a/src/chrome/content/rules/ForgeFields.com-problematic.xml b/src/chrome/content/rules/ForgeFields.com-problematic.xml index 7c9eeeba09b3..693b24adcd44 100644 --- a/src/chrome/content/rules/ForgeFields.com-problematic.xml +++ b/src/chrome/content/rules/ForgeFields.com-problematic.xml @@ -5,7 +5,6 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/ForgottenLands.eu.xml b/src/chrome/content/rules/ForgottenLands.eu.xml index ce5cc066acac..108cc503c6cf 100644 --- a/src/chrome/content/rules/ForgottenLands.eu.xml +++ b/src/chrome/content/rules/ForgottenLands.eu.xml @@ -13,7 +13,8 @@ - + + @@ -22,7 +23,6 @@ - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/ForisWine.xml b/src/chrome/content/rules/ForisWine.xml index b3ebc57b5471..7ee3ca0b8ce2 100644 --- a/src/chrome/content/rules/ForisWine.xml +++ b/src/chrome/content/rules/ForisWine.xml @@ -5,7 +5,7 @@ Fetch error: http://foriswine.com/ => https://www.foriswine.com/: (51, "SSL: no Fetch error: http://www.foriswine.com/ => https://www.foriswine.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.foriswine.com'") --> - + diff --git a/src/chrome/content/rules/FormAssembly.com.xml b/src/chrome/content/rules/FormAssembly.com.xml index f764646e27e3..b1714f794ae2 100644 --- a/src/chrome/content/rules/FormAssembly.com.xml +++ b/src/chrome/content/rules/FormAssembly.com.xml @@ -10,7 +10,7 @@ Problematic subdomains: - + - (www.) * (CN: secure.formassembly.com) * Redirects to www3.formassembly.com diff --git a/src/chrome/content/rules/FormatDynamics.com.xml b/src/chrome/content/rules/FormatDynamics.com.xml index cb215b4a31a2..a7ead80cf7ed 100644 --- a/src/chrome/content/rules/FormatDynamics.com.xml +++ b/src/chrome/content/rules/FormatDynamics.com.xml @@ -14,7 +14,7 @@ Fetch error: http://www.formatdynamics.com/ => https://www.formatdynamics.com/: - new (http reply) --> - + @@ -25,4 +25,4 @@ Fetch error: http://www.formatdynamics.com/ => https://www.formatdynamics.com/: - \ No newline at end of file + diff --git a/src/chrome/content/rules/Fornex.com.xml b/src/chrome/content/rules/Fornex.com.xml index 2c4e83fa9484..3cbaa46d563a 100644 --- a/src/chrome/content/rules/Fornex.com.xml +++ b/src/chrome/content/rules/Fornex.com.xml @@ -18,4 +18,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Forsakringskassan.se.xml b/src/chrome/content/rules/Forsakringskassan.se.xml index 3cb0401147fa..eb1659954f64 100644 --- a/src/chrome/content/rules/Forsakringskassan.se.xml +++ b/src/chrome/content/rules/Forsakringskassan.se.xml @@ -1,7 +1,23 @@ - - - - - - + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Forsec.nl.xml b/src/chrome/content/rules/Forsec.nl.xml deleted file mode 100644 index 52502c736292..000000000000 --- a/src/chrome/content/rules/Forsec.nl.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Forsiden.xml b/src/chrome/content/rules/Forsiden.xml index 12ff80517f0e..2b1f9384c1b6 100644 --- a/src/chrome/content/rules/Forsiden.xml +++ b/src/chrome/content/rules/Forsiden.xml @@ -13,10 +13,11 @@ Fetch error: http://fvn.no/ => https://www.fvn.no/: Cycle detected - URL already * Works; mismatched, CN: www.aftenposten.no --> - + - + + @@ -25,7 +26,6 @@ Fetch error: http://fvn.no/ => https://www.fvn.no/: Cycle detected - URL already - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Forthnet.gr.xml b/src/chrome/content/rules/Forthnet.gr.xml index 025af7c6f398..0263b535caf8 100644 --- a/src/chrome/content/rules/Forthnet.gr.xml +++ b/src/chrome/content/rules/Forthnet.gr.xml @@ -8,12 +8,12 @@ Fetch error: http://webmail.forthnet.gr/ => https://webmail.forthnet.gr/: (28, ' Fetch error: http://services.forthnet.gr/ => https://services.forthnet.gr/: (56, 'Recv failure: Connection reset by peer') This ruleset is experimental. If you experience problems please open an issue at https://github.com/kargig/https-everywhere-greek-rules --> - + - - + + - + diff --git a/src/chrome/content/rules/FortiGuard.com.xml b/src/chrome/content/rules/FortiGuard.com.xml index bd3651a406c2..a0a265d74016 100644 --- a/src/chrome/content/rules/FortiGuard.com.xml +++ b/src/chrome/content/rules/FortiGuard.com.xml @@ -9,7 +9,7 @@ Fetch error: http://api.fortiguard.com/ => https://api.fortiguard.com/: (7, 'Fai Nonfunctional hosts in *fortiguard.com: - threatmap * - + * Refused @@ -29,7 +29,7 @@ Fetch error: http://api.fortiguard.com/ => https://api.fortiguard.com/: (7, 'Fai * Secured by us --> - + @@ -37,7 +37,7 @@ Fetch error: http://api.fortiguard.com/ => https://api.fortiguard.com/: (7, 'Fai - + https://partners.fortinet.com/: (6 - www.fortinet.com --> - + @@ -47,7 +47,7 @@ Fetch error: http://partners.fortinet.com/ => https://partners.fortinet.com/: (6 - + https://alpha.fortnite.com/: (6, 'Cou - www.fortnite.com --> - + diff --git a/src/chrome/content/rules/Fortress_Linux.org.xml b/src/chrome/content/rules/Fortress_Linux.org.xml deleted file mode 100644 index f6e32d9ddfff..000000000000 --- a/src/chrome/content/rules/Fortress_Linux.org.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Fortum.xml b/src/chrome/content/rules/Fortum.xml index 50f88b352def..a36b93b0bd9f 100644 --- a/src/chrome/content/rules/Fortum.xml +++ b/src/chrome/content/rules/Fortum.xml @@ -6,7 +6,7 @@ --> - + diff --git a/src/chrome/content/rules/Fortumo.xml b/src/chrome/content/rules/Fortumo.xml index c8aaa16b6f3b..207dc7c72997 100644 --- a/src/chrome/content/rules/Fortumo.xml +++ b/src/chrome/content/rules/Fortumo.xml @@ -7,7 +7,7 @@ Fetch error: http://developers.fortumo.com/ => https://developers.fortumo.com/: - dyq29inb4n9ck.cloudfront.net --> - + diff --git a/src/chrome/content/rules/ForumBlog.org.xml b/src/chrome/content/rules/ForumBlog.org.xml index a250b45ac12e..f5a260712877 100644 --- a/src/chrome/content/rules/ForumBlog.org.xml +++ b/src/chrome/content/rules/ForumBlog.org.xml @@ -8,10 +8,10 @@ Non-2xx HTTP code: http://forumblog.org/ (200) => https://forumblog.org/ (525) - www (expired 2012-12-27, only matches ^forumblog.org, self-signed) --> - + - + diff --git a/src/chrome/content/rules/ForumIslam.com.xml b/src/chrome/content/rules/ForumIslam.com.xml new file mode 100644 index 000000000000..32abf91a3417 --- /dev/null +++ b/src/chrome/content/rules/ForumIslam.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Forumatic.xml b/src/chrome/content/rules/Forumatic.xml index 23fd175a8fd7..7ec5ba8996bf 100644 --- a/src/chrome/content/rules/Forumatic.xml +++ b/src/chrome/content/rules/Forumatic.xml @@ -9,7 +9,7 @@ Fetch error: http://www.forumatic.com/ => https://www.forumatic.com/: (35, 'erro - support (redirects to www; mismatched, CN: www.forumatic.com) --> - + @@ -20,4 +20,4 @@ Fetch error: http://www.forumatic.com/ => https://www.forumatic.com/: (35, 'erro - \ No newline at end of file + diff --git a/src/chrome/content/rules/Forums_fur_Naturfotografen.xml b/src/chrome/content/rules/Forums_fur_Naturfotografen.xml index 7d1225b165d1..d9ab4d08ae3c 100644 --- a/src/chrome/content/rules/Forums_fur_Naturfotografen.xml +++ b/src/chrome/content/rules/Forums_fur_Naturfotografen.xml @@ -5,7 +5,7 @@ - + diff --git a/src/chrome/content/rules/Fosdem.org.xml b/src/chrome/content/rules/Fosdem.org.xml deleted file mode 100644 index 74c539bc7a6f..000000000000 --- a/src/chrome/content/rules/Fosdem.org.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Fosscon.us.xml b/src/chrome/content/rules/Fosscon.us.xml index 781d81350f8a..1a5988e8e9df 100644 --- a/src/chrome/content/rules/Fosscon.us.xml +++ b/src/chrome/content/rules/Fosscon.us.xml @@ -11,5 +11,5 @@ - + diff --git a/src/chrome/content/rules/Fotisl.com.xml b/src/chrome/content/rules/Fotisl.com.xml deleted file mode 100644 index 80df88226fff..000000000000 --- a/src/chrome/content/rules/Fotisl.com.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Fotki.xml b/src/chrome/content/rules/Fotki.xml index 0ed3503dcadf..3f5e57270ce6 100644 --- a/src/chrome/content/rules/Fotki.xml +++ b/src/chrome/content/rules/Fotki.xml @@ -11,7 +11,7 @@ - + diff --git a/src/chrome/content/rules/FotoForensics.com.xml b/src/chrome/content/rules/FotoForensics.com.xml index 2b0f733c63ba..fcb285f17286 100644 --- a/src/chrome/content/rules/FotoForensics.com.xml +++ b/src/chrome/content/rules/FotoForensics.com.xml @@ -1,18 +1,28 @@ + + + + + + + + + + + + - + diff --git a/src/chrome/content/rules/FotoPigeon.xml b/src/chrome/content/rules/FotoPigeon.xml index 30d4f36f422f..fa98f43502d3 100644 --- a/src/chrome/content/rules/FotoPigeon.xml +++ b/src/chrome/content/rules/FotoPigeon.xml @@ -15,7 +15,7 @@ Fetch error: http://www.fotopigeon.com/ => https://www.fotopigeon.com/: (28, 'Co - www.fotopigeon.com --> - + diff --git a/src/chrome/content/rules/Fotoblur.xml b/src/chrome/content/rules/Fotoblur.xml deleted file mode 100644 index 3a923070a922..000000000000 --- a/src/chrome/content/rules/Fotoblur.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/FoulaBook.com.xml b/src/chrome/content/rules/FoulaBook.com.xml new file mode 100644 index 000000000000..6925ca9d88f3 --- /dev/null +++ b/src/chrome/content/rules/FoulaBook.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Foundation-Source.xml b/src/chrome/content/rules/Foundation-Source.xml index 007cdafef62c..f2a80c697213 100644 --- a/src/chrome/content/rules/Foundation-Source.xml +++ b/src/chrome/content/rules/Foundation-Source.xml @@ -1,13 +1,15 @@ - + + + + - + - + diff --git a/src/chrome/content/rules/Foundation_Beyond_Belief.org.xml b/src/chrome/content/rules/Foundation_Beyond_Belief.org.xml index 44af49db95a6..b3e2915b4fd7 100644 --- a/src/chrome/content/rules/Foundation_Beyond_Belief.org.xml +++ b/src/chrome/content/rules/Foundation_Beyond_Belief.org.xml @@ -17,4 +17,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Fourecks.de.xml b/src/chrome/content/rules/Fourecks.de.xml index c0bf12353553..0e828f169cbc 100644 --- a/src/chrome/content/rules/Fourecks.de.xml +++ b/src/chrome/content/rules/Fourecks.de.xml @@ -25,7 +25,7 @@ Fetch error: http://www.fourecks.de/ => https://fourecks.de/: (60, 'SSL certific * Secured by us --> - + diff --git a/src/chrome/content/rules/Foursquare.com.xml b/src/chrome/content/rules/Foursquare.com.xml index 0f1aeff85026..dc8c24495b8d 100644 --- a/src/chrome/content/rules/Foursquare.com.xml +++ b/src/chrome/content/rules/Foursquare.com.xml @@ -63,7 +63,7 @@ Fetch error: http://translate.foursquare.com/ => https://translate.foursquare.co - .foursquare.com --> - + @@ -91,7 +91,7 @@ Fetch error: http://translate.foursquare.com/ => https://translate.foursquare.co --> - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Fox-News.xml b/src/chrome/content/rules/Fox-News.xml new file mode 100644 index 000000000000..6757552ec4b2 --- /dev/null +++ b/src/chrome/content/rules/Fox-News.xml @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Fox_News.xml b/src/chrome/content/rules/Fox_News.xml deleted file mode 100644 index 9fe365985294..000000000000 --- a/src/chrome/content/rules/Fox_News.xml +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/FoxyCart.com.xml b/src/chrome/content/rules/FoxyCart.com.xml index 2b497f8e8703..a36d5a37a4b7 100644 --- a/src/chrome/content/rules/FoxyCart.com.xml +++ b/src/chrome/content/rules/FoxyCart.com.xml @@ -41,14 +41,16 @@ --> - - + + + + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Foxydeal.de-falsemixed.xml b/src/chrome/content/rules/Foxydeal.de-falsemixed.xml index 938889b26a0a..1b40e1632c23 100644 --- a/src/chrome/content/rules/Foxydeal.de-falsemixed.xml +++ b/src/chrome/content/rules/Foxydeal.de-falsemixed.xml @@ -7,7 +7,7 @@ Fetch error: http://foxydeal.com/ => https://foxydeal.de/: (28, 'Connection time For rules not causing false/broken MCB, see Foxydeal.de.xml. --> - + diff --git a/src/chrome/content/rules/Foxydeal.de.xml b/src/chrome/content/rules/Foxydeal.de.xml index 8053c063cf13..5695e99485de 100644 --- a/src/chrome/content/rules/Foxydeal.de.xml +++ b/src/chrome/content/rules/Foxydeal.de.xml @@ -22,7 +22,7 @@ Fetch error: http://foxydeal.com/ => http://foxydeal.com/: (28, 'Connection time * Secured by us --> - + diff --git a/src/chrome/content/rules/Fqtag.com.xml b/src/chrome/content/rules/Fqtag.com.xml new file mode 100644 index 000000000000..32e9113220b3 --- /dev/null +++ b/src/chrome/content/rules/Fqtag.com.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Fr33tux.org.xml b/src/chrome/content/rules/Fr33tux.org.xml deleted file mode 100644 index 91b148825927..000000000000 --- a/src/chrome/content/rules/Fr33tux.org.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/FragDenStaat.de.xml b/src/chrome/content/rules/FragDenStaat.de.xml deleted file mode 100644 index 11be6d10118b..000000000000 --- a/src/chrome/content/rules/FragDenStaat.de.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Fraglive.xml b/src/chrome/content/rules/Fraglive.xml deleted file mode 100644 index 00b535dceacc..000000000000 --- a/src/chrome/content/rules/Fraglive.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Frama.io.xml b/src/chrome/content/rules/Frama.io.xml new file mode 100644 index 000000000000..7503a3cf39b9 --- /dev/null +++ b/src/chrome/content/rules/Frama.io.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Framasoft.xml b/src/chrome/content/rules/Framasoft.xml index 81ce22d1c2c3..b48712454818 100644 --- a/src/chrome/content/rules/Framasoft.xml +++ b/src/chrome/content/rules/Framasoft.xml @@ -1,39 +1,9 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - diff --git a/src/chrome/content/rules/FrancaisFacile.com.xml b/src/chrome/content/rules/FrancaisFacile.com.xml new file mode 100644 index 000000000000..70700a7e744d --- /dev/null +++ b/src/chrome/content/rules/FrancaisFacile.com.xml @@ -0,0 +1,21 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/France-Universite-Numerique-MOOC.fr.xml b/src/chrome/content/rules/France-Universite-Numerique-MOOC.fr.xml index c8a902dc3de7..a05b86302f2c 100644 --- a/src/chrome/content/rules/France-Universite-Numerique-MOOC.fr.xml +++ b/src/chrome/content/rules/France-Universite-Numerique-MOOC.fr.xml @@ -16,7 +16,7 @@ --> - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Franceserv.xml b/src/chrome/content/rules/Franceserv.xml index 1201d0ccfe18..ba108cc785a4 100644 --- a/src/chrome/content/rules/Franceserv.xml +++ b/src/chrome/content/rules/Franceserv.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Francis_Kim.co.xml b/src/chrome/content/rules/Francis_Kim.co.xml index 0322e0f0b7ae..601e9f0276f6 100644 --- a/src/chrome/content/rules/Francis_Kim.co.xml +++ b/src/chrome/content/rules/Francis_Kim.co.xml @@ -4,7 +4,7 @@ - + - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Franken.de.xml b/src/chrome/content/rules/Franken.de.xml index 94bd5770542a..8552c29a7781 100644 --- a/src/chrome/content/rules/Franken.de.xml +++ b/src/chrome/content/rules/Franken.de.xml @@ -8,7 +8,9 @@ - + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Franklin_W_Olin_College_of_Engineering.xml b/src/chrome/content/rules/Franklin_W_Olin_College_of_Engineering.xml index 8b9a91b32d73..63c4f9f817b8 100644 --- a/src/chrome/content/rules/Franklin_W_Olin_College_of_Engineering.xml +++ b/src/chrome/content/rules/Franklin_W_Olin_College_of_Engineering.xml @@ -12,7 +12,7 @@ Fetch error: http://www.olin.edu/ => https://www.olin.edu/: Cycle detected - URL - ieee (times out) --> - + @@ -20,4 +20,4 @@ Fetch error: http://www.olin.edu/ => https://www.olin.edu/: Cycle detected - URL - \ No newline at end of file + diff --git a/src/chrome/content/rules/Frascati_Cafe.nl.xml b/src/chrome/content/rules/Frascati_Cafe.nl.xml index affe77863118..f7c7ef02efa6 100644 --- a/src/chrome/content/rules/Frascati_Cafe.nl.xml +++ b/src/chrome/content/rules/Frascati_Cafe.nl.xml @@ -4,7 +4,7 @@ - + diff --git a/src/chrome/content/rules/Frascati_Producties.nl.xml b/src/chrome/content/rules/Frascati_Producties.nl.xml index 1bcbfa234629..3ae2d97e391f 100644 --- a/src/chrome/content/rules/Frascati_Producties.nl.xml +++ b/src/chrome/content/rules/Frascati_Producties.nl.xml @@ -14,7 +14,7 @@ - + - + - + - + + + + + + diff --git a/src/chrome/content/rules/Fraunhofer.xml b/src/chrome/content/rules/Fraunhofer.xml index 63328d63dd11..4af972e9c83b 100644 --- a/src/chrome/content/rules/Fraunhofer.xml +++ b/src/chrome/content/rules/Fraunhofer.xml @@ -32,7 +32,7 @@ - + + + + + + + + + + + \ No newline at end of file diff --git a/src/chrome/content/rules/Fred_and_Pickles.xml b/src/chrome/content/rules/Fred_and_Pickles.xml index a7e288773ca5..34b82565af26 100644 --- a/src/chrome/content/rules/Fred_and_Pickles.xml +++ b/src/chrome/content/rules/Fred_and_Pickles.xml @@ -5,7 +5,7 @@ Fetch error: http://fredandpickles.co.uk/ => https://fredandpickles.co.uk/: (28, Fetch error: http://www.fredandpickles.co.uk/ => https://www.fredandpickles.co.uk/: (28, 'Operation timed out after 30001 milliseconds with 0 bytes received') --> - + @@ -16,4 +16,4 @@ Fetch error: http://www.fredandpickles.co.uk/ => https://www.fredandpickles.co.u - \ No newline at end of file + diff --git a/src/chrome/content/rules/Fredericia.dk.xml b/src/chrome/content/rules/Fredericia.dk.xml index 9c5fe316ad44..60fdf52bdac9 100644 --- a/src/chrome/content/rules/Fredericia.dk.xml +++ b/src/chrome/content/rules/Fredericia.dk.xml @@ -5,7 +5,7 @@ Fetch error: http://fredericia.dk/ => https://fredericia.dk/: (60, 'SSL certific Fetch error: http://www.fredericia.dk/ => https://www.fredericia.dk/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + diff --git a/src/chrome/content/rules/Free-TV-Video-Online.me.xml b/src/chrome/content/rules/Free-TV-Video-Online.me.xml index a847d1a591cb..dfe8cfecdb70 100644 --- a/src/chrome/content/rules/Free-TV-Video-Online.me.xml +++ b/src/chrome/content/rules/Free-TV-Video-Online.me.xml @@ -11,7 +11,7 @@ Fetch error: http://www.free-tv-video-online.me/ => https://www.free-tv-video-on * Secured by us --> - + diff --git a/src/chrome/content/rules/FreeBSD.org.xml b/src/chrome/content/rules/FreeBSD.org.xml index 279da4ddf177..50674cb0f679 100644 --- a/src/chrome/content/rules/FreeBSD.org.xml +++ b/src/chrome/content/rules/FreeBSD.org.xml @@ -78,4 +78,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/FreeBSDNews.com.xml b/src/chrome/content/rules/FreeBSDNews.com.xml index defb0d1523d2..6bdb7d769c7a 100644 --- a/src/chrome/content/rules/FreeBSDNews.com.xml +++ b/src/chrome/content/rules/FreeBSDNews.com.xml @@ -10,7 +10,7 @@ - + - + + + + - + + - - + - + + + + + + + - - - - - - - + - - - - - - - - - - - - - - - - - + - + + diff --git a/src/chrome/content/rules/FreeFind.xml b/src/chrome/content/rules/FreeFind.xml index 95a1ec52fa8a..ed4fd8f371b3 100644 --- a/src/chrome/content/rules/FreeFind.xml +++ b/src/chrome/content/rules/FreeFind.xml @@ -21,8 +21,7 @@ --> - + https://www.freemarketlite.cc/: (6, 'Could not resolve host: www.freemarketlite.cc') -Fetch error: http://www.freemarketlite.cc/ => https://www.freemarketlite.cc/: (6, 'Could not resolve host: www.freemarketlite.cc') -Fetch error: http://freemarketlite.cc/ => https://www.freemarketlite.cc/: (6, 'Could not resolve host: www.freemarketlite.cc') - - ^freemarketlite.cc: Refused - ---> - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/FreePDFHosting.com.xml b/src/chrome/content/rules/FreePDFHosting.com.xml new file mode 100644 index 000000000000..c690f67dbbb5 --- /dev/null +++ b/src/chrome/content/rules/FreePDFHosting.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/FreePascal.org.xml b/src/chrome/content/rules/FreePascal.org.xml new file mode 100644 index 000000000000..9370596527c1 --- /dev/null +++ b/src/chrome/content/rules/FreePascal.org.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/FreePress.net.xml b/src/chrome/content/rules/FreePress.net.xml new file mode 100644 index 000000000000..eec0b63f6515 --- /dev/null +++ b/src/chrome/content/rules/FreePress.net.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/FreeRADIUS.org.xml b/src/chrome/content/rules/FreeRADIUS.org.xml new file mode 100644 index 000000000000..fb881907d3a4 --- /dev/null +++ b/src/chrome/content/rules/FreeRADIUS.org.xml @@ -0,0 +1,21 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/FreeRTOS.org.xml b/src/chrome/content/rules/FreeRTOS.org.xml deleted file mode 100644 index 07a968cd33de..000000000000 --- a/src/chrome/content/rules/FreeRTOS.org.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/FreeSWITCH.org.xml b/src/chrome/content/rules/FreeSWITCH.org.xml index a874c18900df..a49e1a480007 100644 --- a/src/chrome/content/rules/FreeSWITCH.org.xml +++ b/src/chrome/content/rules/FreeSWITCH.org.xml @@ -1,33 +1,18 @@ - + - + + + + - - + diff --git a/src/chrome/content/rules/FreeSoundEffects.com.xml b/src/chrome/content/rules/FreeSoundEffects.com.xml index 3ec372c53bb5..6f0347d361a9 100644 --- a/src/chrome/content/rules/FreeSoundEffects.com.xml +++ b/src/chrome/content/rules/FreeSoundEffects.com.xml @@ -2,8 +2,7 @@ - + diff --git a/src/chrome/content/rules/FreeStyler.WS.xml b/src/chrome/content/rules/FreeStyler.WS.xml index 1ae333f4e03f..fb3e9f35779c 100644 --- a/src/chrome/content/rules/FreeStyler.WS.xml +++ b/src/chrome/content/rules/FreeStyler.WS.xml @@ -1,12 +1,6 @@ - - - + - diff --git a/src/chrome/content/rules/FreeThesaurus.com.xml b/src/chrome/content/rules/FreeThesaurus.com.xml new file mode 100644 index 000000000000..69f79a5fc94c --- /dev/null +++ b/src/chrome/content/rules/FreeThesaurus.com.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/FreeUtopia.org.xml b/src/chrome/content/rules/FreeUtopia.org.xml new file mode 100644 index 000000000000..da63e77a6454 --- /dev/null +++ b/src/chrome/content/rules/FreeUtopia.org.xml @@ -0,0 +1,11 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/FreeWheel-problematic.xml b/src/chrome/content/rules/FreeWheel-problematic.xml index e29c2847b94a..bd7e3b5d4e96 100644 --- a/src/chrome/content/rules/FreeWheel-problematic.xml +++ b/src/chrome/content/rules/FreeWheel-problematic.xml @@ -5,7 +5,7 @@ - + diff --git a/src/chrome/content/rules/FreeWheel.xml b/src/chrome/content/rules/FreeWheel.xml index 6c75c910167d..592b1654b087 100644 --- a/src/chrome/content/rules/FreeWheel.xml +++ b/src/chrome/content/rules/FreeWheel.xml @@ -18,11 +18,11 @@ Fetch error: http://mrm.freewheel.tv/ => https://mrm.freewhell.tv/: (6, 'Could n - m1.fwmrm.net (503, akamai) --> - + - + @@ -34,7 +34,6 @@ Fetch error: http://mrm.freewheel.tv/ => https://mrm.freewhell.tv/: (6, 'Could n - + diff --git a/src/chrome/content/rules/Free_Assange_Now.org.xml b/src/chrome/content/rules/Free_Assange_Now.org.xml deleted file mode 100644 index 2e06e26c6635..000000000000 --- a/src/chrome/content/rules/Free_Assange_Now.org.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Free_Barrett_Brown.org.xml b/src/chrome/content/rules/Free_Barrett_Brown.org.xml deleted file mode 100644 index 12ad2ccc78f3..000000000000 --- a/src/chrome/content/rules/Free_Barrett_Brown.org.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Free_Bible_Software.com.xml b/src/chrome/content/rules/Free_Bible_Software.com.xml index 398f6c3eee76..1548eed788a1 100644 --- a/src/chrome/content/rules/Free_Bible_Software.com.xml +++ b/src/chrome/content/rules/Free_Bible_Software.com.xml @@ -9,7 +9,7 @@ - www.freebiblesoftware.com --> - + diff --git a/src/chrome/content/rules/Free_Jeremy.net.xml b/src/chrome/content/rules/Free_Jeremy.net.xml deleted file mode 100644 index 3a731208be91..000000000000 --- a/src/chrome/content/rules/Free_Jeremy.net.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Free_Lauri.com.xml b/src/chrome/content/rules/Free_Lauri.com.xml deleted file mode 100644 index b71408dd1ee0..000000000000 --- a/src/chrome/content/rules/Free_Lauri.com.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Free_Movement.org.uk.xml b/src/chrome/content/rules/Free_Movement.org.uk.xml index c594a920a90a..c37f8ebbd69d 100644 --- a/src/chrome/content/rules/Free_Movement.org.uk.xml +++ b/src/chrome/content/rules/Free_Movement.org.uk.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://freemovement.org.uk/ => https://freemovement.org.uk/: (51, "SSL: no alternative certificate subject name matches target host name 'freemovement.org.uk'") --> - + diff --git a/src/chrome/content/rules/Free_Porn_Gif.com-falsemixed.xml b/src/chrome/content/rules/Free_Porn_Gif.com-falsemixed.xml deleted file mode 100644 index 0a7b9149e485..000000000000 --- a/src/chrome/content/rules/Free_Porn_Gif.com-falsemixed.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Free_Porn_Gif.com.xml b/src/chrome/content/rules/Free_Porn_Gif.com.xml deleted file mode 100644 index 13fe450e64d8..000000000000 --- a/src/chrome/content/rules/Free_Porn_Gif.com.xml +++ /dev/null @@ -1,58 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Free_Press.xml b/src/chrome/content/rules/Free_Press.xml deleted file mode 100644 index 3bec521416ad..000000000000 --- a/src/chrome/content/rules/Free_Press.xml +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Free_Rainbow_Tables.xml b/src/chrome/content/rules/Free_Rainbow_Tables.xml index baf9ceb15bbd..d432247fc857 100644 --- a/src/chrome/content/rules/Free_Rainbow_Tables.xml +++ b/src/chrome/content/rules/Free_Rainbow_Tables.xml @@ -5,7 +5,7 @@ Fetch error: http://freerainbowtables.com/ => https://freerainbowtables.com/: (7 Fetch error: http://www.freerainbowtables.com/ => https://www.freerainbowtables.com/: (7, 'Failed to connect to www.freerainbowtables.com port 443: Connection refused') --> - + diff --git a/src/chrome/content/rules/Free_Snowden.is.xml b/src/chrome/content/rules/Free_Snowden.is.xml deleted file mode 100644 index 5b8a3f3009a0..000000000000 --- a/src/chrome/content/rules/Free_Snowden.is.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Free_State_Project.org.xml b/src/chrome/content/rules/Free_State_Project.org.xml index f7c28a85d209..b43575385b05 100644 --- a/src/chrome/content/rules/Free_State_Project.org.xml +++ b/src/chrome/content/rules/Free_State_Project.org.xml @@ -14,7 +14,7 @@ Fetch error: http://pledge.freestateproject.org/ => https://pledge.freestateproj - pledge.freestateproject.org --> - + @@ -26,7 +26,7 @@ Fetch error: http://pledge.freestateproject.org/ => https://pledge.freestateproj - + - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Freebase.xml b/src/chrome/content/rules/Freebase.xml index 94b9b7f23e18..57d689f2a107 100644 --- a/src/chrome/content/rules/Freebase.xml +++ b/src/chrome/content/rules/Freebase.xml @@ -21,7 +21,7 @@ Fetch error: http://freebase.com/ => https://www.freebase.com/: (60, 'SSL certif ^freebase.com: Handshake fails --> - + @@ -35,7 +35,7 @@ Fetch error: http://freebase.com/ => https://www.freebase.com/: (60, 'SSL certif - + https://static.freebase.com/: (60, 'SSL ^freebaselibs.com: Handshake fails --> - + diff --git a/src/chrome/content/rules/Freecause.xml b/src/chrome/content/rules/Freecause.xml index c928647bf465..70f238dc3961 100644 --- a/src/chrome/content/rules/Freecause.xml +++ b/src/chrome/content/rules/Freecause.xml @@ -5,7 +5,7 @@ Fetch error: http://freecause.com/ => https://freecause.com/: (28, 'Connection t Fetch error: http://www.freecause.com/ => https://www.freecause.com/: (28, 'Connection timed out after 20001 milliseconds') --> - + diff --git a/src/chrome/content/rules/Freeciv.org.xml b/src/chrome/content/rules/Freeciv.org.xml index 59c906a1aed5..3441416a4aaf 100644 --- a/src/chrome/content/rules/Freeciv.org.xml +++ b/src/chrome/content/rules/Freeciv.org.xml @@ -12,7 +12,7 @@ - + - + diff --git a/src/chrome/content/rules/Freed0m4All.net.xml b/src/chrome/content/rules/Freed0m4All.net.xml index 332ebf5a5bfd..f42bfc5e5bdd 100644 --- a/src/chrome/content/rules/Freed0m4All.net.xml +++ b/src/chrome/content/rules/Freed0m4All.net.xml @@ -22,7 +22,7 @@ - .freed0m4all.net --> - + @@ -36,7 +36,7 @@ --> - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Freedom-to-Tinker.xml b/src/chrome/content/rules/Freedom-to-Tinker.xml index b5c4bc6e297d..7263d389ca34 100644 --- a/src/chrome/content/rules/Freedom-to-Tinker.xml +++ b/src/chrome/content/rules/Freedom-to-Tinker.xml @@ -4,7 +4,7 @@ - + - + diff --git a/src/chrome/content/rules/Freedom_of_the_Press_Foundation.xml b/src/chrome/content/rules/Freedom_of_the_Press_Foundation.xml deleted file mode 100644 index 76fd56923d27..000000000000 --- a/src/chrome/content/rules/Freedom_of_the_Press_Foundation.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Freefilm.to.xml b/src/chrome/content/rules/Freefilm.to.xml new file mode 100644 index 000000000000..c28d109db493 --- /dev/null +++ b/src/chrome/content/rules/Freefilm.to.xml @@ -0,0 +1,9 @@ + + + + + + + diff --git a/src/chrome/content/rules/Freegeoip.net.xml b/src/chrome/content/rules/Freegeoip.net.xml index 3256be89ccbe..844e9db12cf8 100644 --- a/src/chrome/content/rules/Freegeoip.net.xml +++ b/src/chrome/content/rules/Freegeoip.net.xml @@ -6,7 +6,7 @@ - + - - - + https://freelancersunion.org/: (51, * Secured by us --> - + @@ -27,7 +27,7 @@ Fetch error: http://freelancersunion.org/ => https://freelancersunion.org/: (51, --> - + + + + + + + diff --git a/src/chrome/content/rules/Freenet.de.xml b/src/chrome/content/rules/Freenet.de.xml index f2074907e947..6ebf86c48f40 100644 --- a/src/chrome/content/rules/Freenet.de.xml +++ b/src/chrome/content/rules/Freenet.de.xml @@ -89,7 +89,7 @@ Fetch error: http://www.mload.freenet.de/ => https://www.mload.freenet.de/: (35, - .freenet.de --> - + diff --git a/src/chrome/content/rules/Freenom.com.xml b/src/chrome/content/rules/Freenom.com.xml new file mode 100644 index 000000000000..45b596ac7dde --- /dev/null +++ b/src/chrome/content/rules/Freenom.com.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Freenom.world.xml b/src/chrome/content/rules/Freenom.world.xml new file mode 100644 index 000000000000..3dbb9b40ca18 --- /dev/null +++ b/src/chrome/content/rules/Freenom.world.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Freeones.xml b/src/chrome/content/rules/Freeones.xml new file mode 100644 index 000000000000..6404b4dcd106 --- /dev/null +++ b/src/chrome/content/rules/Freeones.xml @@ -0,0 +1,192 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Freepik.com.xml b/src/chrome/content/rules/Freepik.com.xml deleted file mode 100644 index 13dc20dc6f07..000000000000 --- a/src/chrome/content/rules/Freepik.com.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Freeplane.org.xml b/src/chrome/content/rules/Freeplane.org.xml new file mode 100644 index 000000000000..fe557c6b31c8 --- /dev/null +++ b/src/chrome/content/rules/Freeplane.org.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Freescale.com.xml b/src/chrome/content/rules/Freescale.com.xml index cbdf3a94e9f2..c24755ec54b0 100644 --- a/src/chrome/content/rules/Freescale.com.xml +++ b/src/chrome/content/rules/Freescale.com.xml @@ -85,7 +85,7 @@ Fetch error: http://fdc.freescale.com/ => https://fdc.freescale.com/: (6, 'Could * Secured by us --> - + diff --git a/src/chrome/content/rules/Freetz.org.xml b/src/chrome/content/rules/Freetz.org.xml new file mode 100644 index 000000000000..9b2dbf572d13 --- /dev/null +++ b/src/chrome/content/rules/Freetz.org.xml @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Freezone.co.uk.xml b/src/chrome/content/rules/Freezone.co.uk.xml index 1840d67b6be5..8084065bdb37 100644 --- a/src/chrome/content/rules/Freezone.co.uk.xml +++ b/src/chrome/content/rules/Freezone.co.uk.xml @@ -17,7 +17,7 @@ Fetch error: http://support.freezone.co.uk/ => https://support.freezone.co.uk/: - .freezone.co.uk --> - + @@ -36,7 +36,7 @@ Fetch error: http://support.freezone.co.uk/ => https://support.freezone.co.uk/: --> - + - - - - - - - - - - diff --git a/src/chrome/content/rules/Freifunk-Ansbach.de.xml b/src/chrome/content/rules/Freifunk-Ansbach.de.xml index eeef76ffdebb..e273e08a1d24 100644 --- a/src/chrome/content/rules/Freifunk-Ansbach.de.xml +++ b/src/chrome/content/rules/Freifunk-Ansbach.de.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.freifunk-ansbach.de/ => https://www.freifunk-ansbach.de/: (51, "SSL: no alternative certificate subject name matches target host name 'www.freifunk-ansbach.de'") --> - + diff --git a/src/chrome/content/rules/Freifunk-Bremen.xml b/src/chrome/content/rules/Freifunk-Bremen.xml new file mode 100644 index 000000000000..c2c48b9cfd3b --- /dev/null +++ b/src/chrome/content/rules/Freifunk-Bremen.xml @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Freifunk-FFM.xml b/src/chrome/content/rules/Freifunk-FFM.xml new file mode 100644 index 000000000000..6702d125b300 --- /dev/null +++ b/src/chrome/content/rules/Freifunk-FFM.xml @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Freifunk-Karlsruhe.de.xml b/src/chrome/content/rules/Freifunk-Karlsruhe.de.xml deleted file mode 100644 index cdd84c56ecf1..000000000000 --- a/src/chrome/content/rules/Freifunk-Karlsruhe.de.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Freifunk-Kreis-GT.xml b/src/chrome/content/rules/Freifunk-Kreis-GT.xml new file mode 100644 index 000000000000..c311168ecc4f --- /dev/null +++ b/src/chrome/content/rules/Freifunk-Kreis-GT.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Freifunk-Nordwest.xml b/src/chrome/content/rules/Freifunk-Nordwest.xml new file mode 100644 index 000000000000..6f66c93f5646 --- /dev/null +++ b/src/chrome/content/rules/Freifunk-Nordwest.xml @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Freifunk.xml b/src/chrome/content/rules/Freifunk.xml index 3f05a21f7487..149469a8e2b8 100644 --- a/src/chrome/content/rules/Freifunk.xml +++ b/src/chrome/content/rules/Freifunk.xml @@ -1,4 +1,9 @@ - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Freitag.xml b/src/chrome/content/rules/Freitag.xml index df90f31af507..6e45b1cada3d 100644 --- a/src/chrome/content/rules/Freitag.xml +++ b/src/chrome/content/rules/Freitag.xml @@ -4,8 +4,8 @@ - - + + diff --git a/src/chrome/content/rules/French-Country-Cottages.co.uk.xml b/src/chrome/content/rules/French-Country-Cottages.co.uk.xml new file mode 100644 index 000000000000..5bc4fe812916 --- /dev/null +++ b/src/chrome/content/rules/French-Country-Cottages.co.uk.xml @@ -0,0 +1,18 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/French-National-Centre-for-Scientific-Research.xml b/src/chrome/content/rules/French-National-Centre-for-Scientific-Research.xml index 21149ce1de58..04a8ec0f1744 100644 --- a/src/chrome/content/rules/French-National-Centre-for-Scientific-Research.xml +++ b/src/chrome/content/rules/French-National-Centre-for-Scientific-Research.xml @@ -116,7 +116,7 @@ Fetch error: http://labintel.cnrs.fr/ => https://labintel.cnrs.fr/: (60, 'SSL ce ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -147,6 +147,8 @@ Fetch error: http://labintel.cnrs.fr/ => https://labintel.cnrs.fr/: (60, 'SSL ce + + diff --git a/src/chrome/content/rules/FrenchLeaks.fr.xml b/src/chrome/content/rules/FrenchLeaks.fr.xml new file mode 100644 index 000000000000..b319d5897495 --- /dev/null +++ b/src/chrome/content/rules/FrenchLeaks.fr.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Frequentis.com-falsemixed.xml b/src/chrome/content/rules/Frequentis.com-falsemixed.xml deleted file mode 100644 index c6a063c5b2ee..000000000000 --- a/src/chrome/content/rules/Frequentis.com-falsemixed.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Frequentis.com.xml b/src/chrome/content/rules/Frequentis.com.xml index 16bca3ebd172..f83f2f09c80a 100644 --- a/src/chrome/content/rules/Frequentis.com.xml +++ b/src/chrome/content/rules/Frequentis.com.xml @@ -1,31 +1,34 @@ - - + - - - + + + + + - - + + - + + + + + + + diff --git a/src/chrome/content/rules/Fresh-hotel.org.xml b/src/chrome/content/rules/Fresh-hotel.org.xml deleted file mode 100644 index 2fc73a022776..000000000000 --- a/src/chrome/content/rules/Fresh-hotel.org.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/FreshBooks.xml b/src/chrome/content/rules/FreshBooks.xml deleted file mode 100644 index 3cba4fcf3cd7..000000000000 --- a/src/chrome/content/rules/FreshBooks.xml +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/FreshFlowers.com.au.xml b/src/chrome/content/rules/FreshFlowers.com.au.xml new file mode 100644 index 000000000000..a0ee36224b1c --- /dev/null +++ b/src/chrome/content/rules/FreshFlowers.com.au.xml @@ -0,0 +1,11 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/FreshFromThePot.com.xml b/src/chrome/content/rules/FreshFromThePot.com.xml new file mode 100644 index 000000000000..72be7c0e343d --- /dev/null +++ b/src/chrome/content/rules/FreshFromThePot.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Freshcode.club.xml b/src/chrome/content/rules/Freshcode.club.xml index 1830abe3d6b6..1e0324198422 100644 --- a/src/chrome/content/rules/Freshcode.club.xml +++ b/src/chrome/content/rules/Freshcode.club.xml @@ -20,7 +20,7 @@ - + + + + + + + + + diff --git a/src/chrome/content/rules/Freshdesk.xml b/src/chrome/content/rules/Freshdesk.xml deleted file mode 100644 index 033c81028dcd..000000000000 --- a/src/chrome/content/rules/Freshdesk.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Freshmilk.de.xml b/src/chrome/content/rules/Freshmilk.de.xml index d13500298907..53de75afe6dc 100644 --- a/src/chrome/content/rules/Freshmilk.de.xml +++ b/src/chrome/content/rules/Freshmilk.de.xml @@ -21,13 +21,13 @@ - + + - + diff --git a/src/chrome/content/rules/Freshmilk.tv.xml b/src/chrome/content/rules/Freshmilk.tv.xml deleted file mode 100644 index 4c7efa69d6dd..000000000000 --- a/src/chrome/content/rules/Freshmilk.tv.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/FriBID.se.xml b/src/chrome/content/rules/FriBID.se.xml index 13a552c05a99..6c676ed19a33 100644 --- a/src/chrome/content/rules/FriBID.se.xml +++ b/src/chrome/content/rules/FriBID.se.xml @@ -3,6 +3,5 @@ - - + diff --git a/src/chrome/content/rules/Frictional-Games.xml b/src/chrome/content/rules/Frictional-Games.xml index 63e935f8a099..477c683f297c 100644 --- a/src/chrome/content/rules/Frictional-Games.xml +++ b/src/chrome/content/rules/Frictional-Games.xml @@ -4,7 +4,7 @@ - + diff --git a/src/chrome/content/rules/Frida.re.xml b/src/chrome/content/rules/Frida.re.xml new file mode 100644 index 000000000000..9ab826932fde --- /dev/null +++ b/src/chrome/content/rules/Frida.re.xml @@ -0,0 +1,15 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Fridge.xml b/src/chrome/content/rules/Fridge.xml deleted file mode 100644 index 97e6b5480319..000000000000 --- a/src/chrome/content/rules/Fridge.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/FriendFinder.xml b/src/chrome/content/rules/FriendFinder.xml index b48054fde824..47efbdbbef14 100644 --- a/src/chrome/content/rules/FriendFinder.xml +++ b/src/chrome/content/rules/FriendFinder.xml @@ -49,7 +49,7 @@ Fetch error: http://media.friendfinder.com/ => https://media.friendfinder.com/: * Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -69,7 +69,7 @@ Fetch error: http://media.friendfinder.com/ => https://media.friendfinder.com/: --> - + - + - + https://d3outgkpos8q21.cloudfront.ne Some pages redirect to http --> - + @@ -39,4 +39,4 @@ Fetch error: http://assets0.frndcdn.net/ => https://d3outgkpos8q21.cloudfront.ne - \ No newline at end of file + diff --git a/src/chrome/content/rules/Friesland_Bank.nl.xml b/src/chrome/content/rules/Friesland_Bank.nl.xml deleted file mode 100644 index d2f1b529f049..000000000000 --- a/src/chrome/content/rules/Friesland_Bank.nl.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Frim.nl.xml b/src/chrome/content/rules/Frim.nl.xml index a8ebc280db40..e9e2a96fd7d4 100644 --- a/src/chrome/content/rules/Frim.nl.xml +++ b/src/chrome/content/rules/Frim.nl.xml @@ -1,13 +1,14 @@ - + + + - + diff --git a/src/chrome/content/rules/Frivillighetshuset.no.xml b/src/chrome/content/rules/Frivillighetshuset.no.xml index 1d808962e1b0..29cbc134e32c 100644 --- a/src/chrome/content/rules/Frivillighetshuset.no.xml +++ b/src/chrome/content/rules/Frivillighetshuset.no.xml @@ -12,7 +12,7 @@ Fetch error: http://www.frivillighetshuset.no/ => https://www.frivillighetshuset * Secured by us --> - + diff --git a/src/chrome/content/rules/From-UA.com.xml b/src/chrome/content/rules/From-UA.com.xml new file mode 100644 index 000000000000..e2338879058b --- /dev/null +++ b/src/chrome/content/rules/From-UA.com.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/FrontEndChecklist.io.xml b/src/chrome/content/rules/FrontEndChecklist.io.xml new file mode 100644 index 000000000000..6f8faa501961 --- /dev/null +++ b/src/chrome/content/rules/FrontEndChecklist.io.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/Frontier-Network-and-Computing-Systems.xml b/src/chrome/content/rules/Frontier-Network-and-Computing-Systems.xml index c3724235ba27..026853d4dc88 100644 --- a/src/chrome/content/rules/Frontier-Network-and-Computing-Systems.xml +++ b/src/chrome/content/rules/Frontier-Network-and-Computing-Systems.xml @@ -19,10 +19,10 @@ Fetch error: http://fcns.eu/ => https://fcns.eu/: (7, 'Failed to connect to fcns ² Secured by us --> - + - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/FrostWire.xml b/src/chrome/content/rules/FrostWire.xml index 01556662e070..91f5a6353816 100644 --- a/src/chrome/content/rules/FrostWire.xml +++ b/src/chrome/content/rules/FrostWire.xml @@ -2,7 +2,6 @@ - + diff --git a/src/chrome/content/rules/Frostmourne-WoW.eu.xml b/src/chrome/content/rules/Frostmourne-WoW.eu.xml index b19e91717ac8..de0675db53b4 100644 --- a/src/chrome/content/rules/Frostmourne-WoW.eu.xml +++ b/src/chrome/content/rules/Frostmourne-WoW.eu.xml @@ -17,7 +17,6 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/FrozenCPU.com.xml b/src/chrome/content/rules/FrozenCPU.com.xml index 2a7e2bb29e61..7313f690fed4 100644 --- a/src/chrome/content/rules/FrozenCPU.com.xml +++ b/src/chrome/content/rules/FrozenCPU.com.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Frozen_Yoghurt_Franchise.xml b/src/chrome/content/rules/Frozen_Yoghurt_Franchise.xml index 1875ab6cfb9c..897bd692fe2e 100644 --- a/src/chrome/content/rules/Frozen_Yoghurt_Franchise.xml +++ b/src/chrome/content/rules/Frozen_Yoghurt_Franchise.xml @@ -7,7 +7,7 @@ Fetch error: http://www.frozen-yogurt-franchise.org/ => https://www.frozen-yogur Disabled by https-everywhere-checker because: Fetch error: http://frozen-yogurt-franchise.org/ => https://frozen-yogurt-franchise.org/: (51, "SSL: no alternative certificate subject name matches target host name 'frozen-yogurt-franchise.org'") --> - + @@ -18,4 +18,4 @@ Fetch error: http://frozen-yogurt-franchise.org/ => https://frozen-yogurt-franch - \ No newline at end of file + diff --git a/src/chrome/content/rules/Frugalware.org.xml b/src/chrome/content/rules/Frugalware.org.xml index 0e0694ba7d35..3327b76790cf 100644 --- a/src/chrome/content/rules/Frugalware.org.xml +++ b/src/chrome/content/rules/Frugalware.org.xml @@ -7,6 +7,7 @@ packages.frugalware.org planet.frugalware.org wiki.frugalware.org + bugs.frugalware.org Private subdomain: webmail.frugalware.org @@ -15,18 +16,16 @@ www\d.frugalware.org rsync\d.frugalware.org + Unresolved host: + - planet.frugalware.org + --> - - - - - @@ -36,9 +35,6 @@ - - diff --git a/src/chrome/content/rules/Frys.xml b/src/chrome/content/rules/Frys.xml index 43e99224d145..ea237c4e4b87 100644 --- a/src/chrome/content/rules/Frys.xml +++ b/src/chrome/content/rules/Frys.xml @@ -4,10 +4,16 @@ --> - + + + + + + + - + - + diff --git a/src/chrome/content/rules/FuckOffGoogle.de.xml b/src/chrome/content/rules/FuckOffGoogle.de.xml new file mode 100644 index 000000000000..33ddda745fed --- /dev/null +++ b/src/chrome/content/rules/FuckOffGoogle.de.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Fuel_Economy.xml b/src/chrome/content/rules/Fuel_Economy.xml index 8777460e318d..af76816c5a5f 100644 --- a/src/chrome/content/rules/Fuel_Economy.xml +++ b/src/chrome/content/rules/Fuel_Economy.xml @@ -7,7 +7,7 @@ - + https://editor.fuelcdn.com/: (51, "SS For other ExactTarget coverage, see ExactTarget.xml. --> - + diff --git a/src/chrome/content/rules/Fuerza_Popular.xml b/src/chrome/content/rules/Fuerza_Popular.xml deleted file mode 100644 index a3f9f8a36eb4..000000000000 --- a/src/chrome/content/rules/Fuerza_Popular.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Fujirumors.com.xml b/src/chrome/content/rules/Fujirumors.com.xml new file mode 100644 index 000000000000..720c063bf24c --- /dev/null +++ b/src/chrome/content/rules/Fujirumors.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Fujitsu.xml b/src/chrome/content/rules/Fujitsu.xml index 5495cb017efb..57f91d2578c4 100644 --- a/src/chrome/content/rules/Fujitsu.xml +++ b/src/chrome/content/rules/Fujitsu.xml @@ -1,42 +1,32 @@ - - - - - - - - - - - - - - - + Non-functional hosts in *.fujitsu.com: + SSL connect error: + - sports-topics.jp.fujitsu.com + SSL peer certificate was not OK: + - img.jp.fujitsu.com - - + Self-signed certificate chain error: + - www.fei.fujitsu.com - - - - - - - - - +--> + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Fukuchi.org.xml b/src/chrome/content/rules/Fukuchi.org.xml index 05d6920d0df3..a37a3f01e7d5 100644 --- a/src/chrome/content/rules/Fukuchi.org.xml +++ b/src/chrome/content/rules/Fukuchi.org.xml @@ -13,4 +13,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Fulcrum_Biometrics.xml b/src/chrome/content/rules/Fulcrum_Biometrics.xml index 132042ab2f90..dc63680fa875 100644 --- a/src/chrome/content/rules/Fulcrum_Biometrics.xml +++ b/src/chrome/content/rules/Fulcrum_Biometrics.xml @@ -13,4 +13,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Full-Circle-Studies.xml b/src/chrome/content/rules/Full-Circle-Studies.xml index dcd6454d3d27..f18a35b03942 100644 --- a/src/chrome/content/rules/Full-Circle-Studies.xml +++ b/src/chrome/content/rules/Full-Circle-Studies.xml @@ -22,7 +22,7 @@ --> - + diff --git a/src/chrome/content/rules/FullCoin.com.xml b/src/chrome/content/rules/FullCoin.com.xml deleted file mode 100644 index f5d4776439a0..000000000000 --- a/src/chrome/content/rules/FullCoin.com.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/FullSlate.xml b/src/chrome/content/rules/FullSlate.xml index a10b5ffbd956..13eeaa03f2d6 100644 --- a/src/chrome/content/rules/FullSlate.xml +++ b/src/chrome/content/rules/FullSlate.xml @@ -2,7 +2,6 @@ - diff --git a/src/chrome/content/rules/FullTraffic.xml b/src/chrome/content/rules/FullTraffic.xml index 11471d3184fd..f3769a191141 100644 --- a/src/chrome/content/rules/FullTraffic.xml +++ b/src/chrome/content/rules/FullTraffic.xml @@ -12,4 +12,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Full_Signal.xml b/src/chrome/content/rules/Full_Signal.xml index 5cd3f12ef96f..bcba7564f327 100644 --- a/src/chrome/content/rules/Full_Signal.xml +++ b/src/chrome/content/rules/Full_Signal.xml @@ -16,7 +16,6 @@ - + diff --git a/src/chrome/content/rules/Fullerton.edu.xml b/src/chrome/content/rules/Fullerton.edu.xml index 84532d74be5c..75e3f5aa25f7 100644 --- a/src/chrome/content/rules/Fullerton.edu.xml +++ b/src/chrome/content/rules/Fullerton.edu.xml @@ -89,16 +89,36 @@ Fetch error: http://fullerton.edu/ => https://fullerton.edu/: (51, "SSL: no alte - + + + + + + + + + + + + + + + + + + + + + + - + diff --git a/src/chrome/content/rules/FundFill.com.xml b/src/chrome/content/rules/FundFill.com.xml deleted file mode 100644 index bb1f31f5ff0a..000000000000 --- a/src/chrome/content/rules/FundFill.com.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/FundRazr.com.xml b/src/chrome/content/rules/FundRazr.com.xml index 7378d1f08443..ec5ff8251e02 100644 --- a/src/chrome/content/rules/FundRazr.com.xml +++ b/src/chrome/content/rules/FundRazr.com.xml @@ -23,7 +23,9 @@ - + + + - - - - - - - - diff --git a/src/chrome/content/rules/Fundinfo.com.xml b/src/chrome/content/rules/Fundinfo.com.xml index b9c048ad6c54..c2f018068c95 100644 --- a/src/chrome/content/rules/Fundinfo.com.xml +++ b/src/chrome/content/rules/Fundinfo.com.xml @@ -1,56 +1,38 @@ - + - - - - - - + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Funet.fi.xml b/src/chrome/content/rules/Funet.fi.xml index 6f969c027354..aa36054b25ec 100644 --- a/src/chrome/content/rules/Funet.fi.xml +++ b/src/chrome/content/rules/Funet.fi.xml @@ -2,8 +2,13 @@ + + + + + https://funkyandroid.com/: (51, "SS Cert only matches ^funkyandroid.com --> - + diff --git a/src/chrome/content/rules/Furaffinity.xml b/src/chrome/content/rules/Furaffinity.xml index f92d7fde5754..8a4c368bf315 100644 --- a/src/chrome/content/rules/Furaffinity.xml +++ b/src/chrome/content/rules/Furaffinity.xml @@ -8,9 +8,13 @@ --> - + + - + + + + - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Fusion-lifestyle.com.xml b/src/chrome/content/rules/Fusion-lifestyle.com.xml index c185c98a5a91..970e9b395968 100644 --- a/src/chrome/content/rules/Fusion-lifestyle.com.xml +++ b/src/chrome/content/rules/Fusion-lifestyle.com.xml @@ -5,7 +5,7 @@ Fetch error: http://fusion-lifestyle.com/ => https://www.fusion-lifestyle.com/: Fetch error: http://www.fusion-lifestyle.com/ => https://www.fusion-lifestyle.com/: (28, 'Connection timed out after 20001 milliseconds') --> - + diff --git a/src/chrome/content/rules/FusionForge.xml b/src/chrome/content/rules/FusionForge.xml index ece3bf143ebd..fa7af5753a60 100644 --- a/src/chrome/content/rules/FusionForge.xml +++ b/src/chrome/content/rules/FusionForge.xml @@ -5,7 +5,7 @@ - + diff --git a/src/chrome/content/rules/FusionIO.xml b/src/chrome/content/rules/FusionIO.xml index 5c73e4cb2ca2..4d99096908d2 100644 --- a/src/chrome/content/rules/FusionIO.xml +++ b/src/chrome/content/rules/FusionIO.xml @@ -4,16 +4,19 @@ Disabled by https-everywhere-checker because: Fetch error: http://fusionio.com/ => https://fusionio.com/: (28, 'Connection timed out after 20001 milliseconds') --> - + - + + + + + - + - + diff --git a/src/chrome/content/rules/FusionNet.xml b/src/chrome/content/rules/FusionNet.xml deleted file mode 100644 index 186d0f17aaef..000000000000 --- a/src/chrome/content/rules/FusionNet.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Fuskator.com.xml b/src/chrome/content/rules/Fuskator.com.xml index e3d4671f74fb..85651b74a759 100644 --- a/src/chrome/content/rules/Fuskator.com.xml +++ b/src/chrome/content/rules/Fuskator.com.xml @@ -1,27 +1,23 @@ - - + - - - - - - - - - - - + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Futura-Sciences.com.xml b/src/chrome/content/rules/Futura-Sciences.com.xml new file mode 100644 index 000000000000..3c455785906e --- /dev/null +++ b/src/chrome/content/rules/Futura-Sciences.com.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Future-Publishing-mismatches.xml b/src/chrome/content/rules/Future-Publishing-mismatches.xml index 7832175e651f..aa201f01f8ef 100644 --- a/src/chrome/content/rules/Future-Publishing-mismatches.xml +++ b/src/chrome/content/rules/Future-Publishing-mismatches.xml @@ -8,7 +8,6 @@ - + diff --git a/src/chrome/content/rules/Future-Publishing.xml b/src/chrome/content/rules/Future-Publishing.xml deleted file mode 100644 index ae987002c395..000000000000 --- a/src/chrome/content/rules/Future-Publishing.xml +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/FutureQuest.net.xml b/src/chrome/content/rules/FutureQuest.net.xml index aed56a3394a5..b735e798a6aa 100644 --- a/src/chrome/content/rules/FutureQuest.net.xml +++ b/src/chrome/content/rules/FutureQuest.net.xml @@ -15,10 +15,9 @@ Fetch error: http://www.service.futurequest.net/ => https://www.service.futurequ - (www.)questadmin.net (shows secure, mismatched) --> - + - diff --git a/src/chrome/content/rules/FutureZone.at.xml b/src/chrome/content/rules/FutureZone.at.xml deleted file mode 100644 index 5c2eaa934e4b..000000000000 --- a/src/chrome/content/rules/FutureZone.at.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Futurity.org.xml b/src/chrome/content/rules/Futurity.org.xml index a99a14e0c528..60aba807580f 100644 --- a/src/chrome/content/rules/Futurity.org.xml +++ b/src/chrome/content/rules/Futurity.org.xml @@ -1,4 +1,4 @@ - + diff --git a/src/chrome/content/rules/Fxguide.com.xml b/src/chrome/content/rules/Fxguide.com.xml deleted file mode 100644 index 2f782c47b5be..000000000000 --- a/src/chrome/content/rules/Fxguide.com.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Fxphd.xml b/src/chrome/content/rules/Fxphd.xml index 5272863c3d27..ec275220ee7c 100644 --- a/src/chrome/content/rules/Fxphd.xml +++ b/src/chrome/content/rules/Fxphd.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Fylde.gov.uk.xml b/src/chrome/content/rules/Fylde.gov.uk.xml index 65c37a5ab838..a2449aff8392 100644 --- a/src/chrome/content/rules/Fylde.gov.uk.xml +++ b/src/chrome/content/rules/Fylde.gov.uk.xml @@ -21,7 +21,7 @@ - + - - - - - - - - - diff --git a/src/chrome/content/rules/G-Data-Software.xml b/src/chrome/content/rules/G-Data-Software.xml index 57950e765eac..46f55be167a4 100644 --- a/src/chrome/content/rules/G-Data-Software.xml +++ b/src/chrome/content/rules/G-Data-Software.xml @@ -67,7 +67,7 @@ Fetch error: http://www.gdata.co.mx/ => https://www.gdata.co.mx/: (6, 'Could not Missing tw coverage => partial --> - + diff --git a/src/chrome/content/rules/G2_Crowd.com.xml b/src/chrome/content/rules/G2_Crowd.com.xml index 3d75710ed09c..3bb3a018b4cf 100644 --- a/src/chrome/content/rules/G2_Crowd.com.xml +++ b/src/chrome/content/rules/G2_Crowd.com.xml @@ -32,7 +32,7 @@ - + - - - - - - - - - - - - diff --git a/src/chrome/content/rules/G33kinfo.com.xml b/src/chrome/content/rules/G33kinfo.com.xml index 300fb8194e87..05892e5e6697 100644 --- a/src/chrome/content/rules/G33kinfo.com.xml +++ b/src/chrome/content/rules/G33kinfo.com.xml @@ -1,50 +1,8 @@ - - + - - - - - - - - - - - - - + diff --git a/src/chrome/content/rules/G5.gov.xml b/src/chrome/content/rules/G5.gov.xml deleted file mode 100644 index 7ceb3de66a3b..000000000000 --- a/src/chrome/content/rules/G5.gov.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/GAB.ai.xml b/src/chrome/content/rules/GAB.ai.xml new file mode 100644 index 000000000000..f41f22287120 --- /dev/null +++ b/src/chrome/content/rules/GAB.ai.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/GAIA_Host_Collective.xml b/src/chrome/content/rules/GAIA_Host_Collective.xml index a7d0a4c7ab1f..dcca48c4f88f 100644 --- a/src/chrome/content/rules/GAIA_Host_Collective.xml +++ b/src/chrome/content/rules/GAIA_Host_Collective.xml @@ -1,13 +1,14 @@ - + + + - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/GAME.se.xml b/src/chrome/content/rules/GAME.se.xml index a23d363a7574..c6ae22b233b7 100644 --- a/src/chrome/content/rules/GAME.se.xml +++ b/src/chrome/content/rules/GAME.se.xml @@ -7,7 +7,6 @@ - + diff --git a/src/chrome/content/rules/GAMEPOD.hu.xml b/src/chrome/content/rules/GAMEPOD.hu.xml new file mode 100644 index 000000000000..88a339bcf0ff --- /dev/null +++ b/src/chrome/content/rules/GAMEPOD.hu.xml @@ -0,0 +1,14 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/GAcollege411.org.xml b/src/chrome/content/rules/GAcollege411.org.xml index 61c9120f3ea4..58d21c25a9eb 100644 --- a/src/chrome/content/rules/GAcollege411.org.xml +++ b/src/chrome/content/rules/GAcollege411.org.xml @@ -11,7 +11,7 @@ Fetch error: http://www.gacollege411.org/ => https://www.gacollege411.org/: (60, - secure --> - + diff --git a/src/chrome/content/rules/GBConsult.info.xml b/src/chrome/content/rules/GBConsult.info.xml index 09ef0ab5f670..e62be7168f3f 100644 --- a/src/chrome/content/rules/GBConsult.info.xml +++ b/src/chrome/content/rules/GBConsult.info.xml @@ -9,17 +9,17 @@ - + - - - - + diff --git a/src/chrome/content/rules/GBP.ma.xml b/src/chrome/content/rules/GBP.ma.xml new file mode 100644 index 000000000000..a66d731105c3 --- /dev/null +++ b/src/chrome/content/rules/GBP.ma.xml @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/GCDN.org.xml b/src/chrome/content/rules/GCDN.org.xml deleted file mode 100644 index efc99e98373c..000000000000 --- a/src/chrome/content/rules/GCDN.org.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/GCHQ-Careers.co.uk.xml b/src/chrome/content/rules/GCHQ-Careers.co.uk.xml index f34e8e4fb18d..9a5d65b555a2 100644 --- a/src/chrome/content/rules/GCHQ-Careers.co.uk.xml +++ b/src/chrome/content/rules/GCHQ-Careers.co.uk.xml @@ -10,7 +10,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/GCM_Computers.com.xml b/src/chrome/content/rules/GCM_Computers.com.xml index b61adf493d0e..9b2ebe2efb6f 100644 --- a/src/chrome/content/rules/GCM_Computers.com.xml +++ b/src/chrome/content/rules/GCM_Computers.com.xml @@ -5,13 +5,14 @@ - + + + - + diff --git a/src/chrome/content/rules/GCaptain.com.xml b/src/chrome/content/rules/GCaptain.com.xml index 4efcfebc9872..ce98b37d330a 100644 --- a/src/chrome/content/rules/GCaptain.com.xml +++ b/src/chrome/content/rules/GCaptain.com.xml @@ -28,7 +28,7 @@ Non-2xx HTTP code: http://cfs1.gcaptain.com/ (200) => https://d2m8pnbf2v4ae2.clo * cloudfront --> - + @@ -69,9 +69,6 @@ Non-2xx HTTP code: http://cfs1.gcaptain.com/ (200) => https://d2m8pnbf2v4ae2.clo - - diff --git a/src/chrome/content/rules/GCemetery.co.xml b/src/chrome/content/rules/GCemetery.co.xml new file mode 100644 index 000000000000..e9cebf282abf --- /dev/null +++ b/src/chrome/content/rules/GCemetery.co.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/GDA-Portal.de.xml b/src/chrome/content/rules/GDA-Portal.de.xml new file mode 100644 index 000000000000..6aea7cae63d0 --- /dev/null +++ b/src/chrome/content/rules/GDA-Portal.de.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/GEANT.net.xml b/src/chrome/content/rules/GEANT.net.xml index 99f168f08ee6..7fa572a408a5 100644 --- a/src/chrome/content/rules/GEANT.net.xml +++ b/src/chrome/content/rules/GEANT.net.xml @@ -34,7 +34,7 @@ Fetch error: http://weblogin2.geant.net/ => https://weblogin2.geant.net/: (28, ' - www --> - + diff --git a/src/chrome/content/rules/GEANT.org.xml b/src/chrome/content/rules/GEANT.org.xml index d7a9a5910560..92527d5d6b8e 100644 --- a/src/chrome/content/rules/GEANT.org.xml +++ b/src/chrome/content/rules/GEANT.org.xml @@ -62,7 +62,7 @@ Fetch error: http://test-login.geant.org/ => https://test-login.geant.org/: (6, - uat-intranet.geant.org --> - + diff --git a/src/chrome/content/rules/GEBlogs.com.xml b/src/chrome/content/rules/GEBlogs.com.xml new file mode 100644 index 000000000000..e75fbe1c4533 --- /dev/null +++ b/src/chrome/content/rules/GEBlogs.com.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/GEMoney.xml b/src/chrome/content/rules/GEMoney.xml index 887718313f87..f96c28fd8455 100644 --- a/src/chrome/content/rules/GEMoney.xml +++ b/src/chrome/content/rules/GEMoney.xml @@ -5,7 +5,7 @@ Fetch error: http://apply.gemoney.com.au/ => https://apply.gemoney.com.au/: (35, Fetch error: http://28degrees-online.gemoney.com.au/ => https://28degrees-online.gemoney.com.au/: (35, 'Unknown SSL protocol error in connection to 28degrees-online.gemoney.com.au:443 ') --> - + @@ -13,4 +13,4 @@ Fetch error: http://28degrees-online.gemoney.com.au/ => https://28degrees-online - \ No newline at end of file + diff --git a/src/chrome/content/rules/GER-WLAN.de.xml b/src/chrome/content/rules/GER-WLAN.de.xml new file mode 100644 index 000000000000..27c792b0c19e --- /dev/null +++ b/src/chrome/content/rules/GER-WLAN.de.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/GETMEIN.com.xml b/src/chrome/content/rules/GETMEIN.com.xml new file mode 100644 index 000000000000..8a789cba3fd8 --- /dev/null +++ b/src/chrome/content/rules/GETMEIN.com.xml @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/GFI-Italia.com.xml b/src/chrome/content/rules/GFI-Italia.com.xml index db120e47a59f..15d0d5f28505 100644 --- a/src/chrome/content/rules/GFI-Italia.com.xml +++ b/src/chrome/content/rules/GFI-Italia.com.xml @@ -32,7 +32,7 @@ --> - + - + https://www.gficloud.com/: (60, 'SSL ce For other GFI Software Development coverage, see GFI_Software_Development.xml. --> - + @@ -19,4 +19,4 @@ Fetch error: http://www.gficloud.com/ => https://www.gficloud.com/: (60, 'SSL ce - \ No newline at end of file + diff --git a/src/chrome/content/rules/GFI_Hispana.com.xml b/src/chrome/content/rules/GFI_Hispana.com.xml index a16d16be8572..d9c27e81b7c1 100644 --- a/src/chrome/content/rules/GFI_Hispana.com.xml +++ b/src/chrome/content/rules/GFI_Hispana.com.xml @@ -32,7 +32,7 @@ --> - + - + - + diff --git a/src/chrome/content/rules/GFM_Trader.com.xml b/src/chrome/content/rules/GFM_Trader.com.xml deleted file mode 100644 index 130b32c8cdbd..000000000000 --- a/src/chrome/content/rules/GFM_Trader.com.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/GFS_France.com.xml b/src/chrome/content/rules/GFS_France.com.xml index 545b909c3a2a..76d59dfb61b6 100644 --- a/src/chrome/content/rules/GFS_France.com.xml +++ b/src/chrome/content/rules/GFS_France.com.xml @@ -32,7 +32,7 @@ --> - + - + - - + + diff --git a/src/chrome/content/rules/GHash.IO.xml b/src/chrome/content/rules/GHash.IO.xml index 69b597cb3ead..9544bb878203 100644 --- a/src/chrome/content/rules/GHash.IO.xml +++ b/src/chrome/content/rules/GHash.IO.xml @@ -6,7 +6,7 @@ Fetch error: http://ws.ghash.io/ => https://ws.ghash.io/: (6, 'Could not resolve Fetch error: http://www.ghash.io/ => https://www.ghash.io/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/GIAC.org.xml b/src/chrome/content/rules/GIAC.org.xml deleted file mode 100644 index 3c773b5d427e..000000000000 --- a/src/chrome/content/rules/GIAC.org.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/GIDNetwork.com.xml b/src/chrome/content/rules/GIDNetwork.com.xml index 197ff02d2b3b..eb2dc4be7e6e 100644 --- a/src/chrome/content/rules/GIDNetwork.com.xml +++ b/src/chrome/content/rules/GIDNetwork.com.xml @@ -22,7 +22,7 @@ Fetch error: http://samia.gidnetwork.com/ => https://samia.gidnetwork.com/: (60, - .gidnetwork.com --> - + diff --git a/src/chrome/content/rules/GISTI.org.xml b/src/chrome/content/rules/GISTI.org.xml new file mode 100644 index 000000000000..5aefff862267 --- /dev/null +++ b/src/chrome/content/rules/GISTI.org.xml @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/GJ_Open.com.xml b/src/chrome/content/rules/GJ_Open.com.xml index 739e52af138b..905a48cc3f0b 100644 --- a/src/chrome/content/rules/GJ_Open.com.xml +++ b/src/chrome/content/rules/GJ_Open.com.xml @@ -18,7 +18,7 @@ - + - + diff --git a/src/chrome/content/rules/GMO_Cloud.com.xml b/src/chrome/content/rules/GMO_Cloud.com.xml index 1d86f367d37c..b37245628d68 100644 --- a/src/chrome/content/rules/GMO_Cloud.com.xml +++ b/src/chrome/content/rules/GMO_Cloud.com.xml @@ -65,7 +65,7 @@ Fetch error: http://contact.gmocloud.com/ => https://contact.gmocloud.com/: (60, ³ Unsecurable <= 404 --> - + diff --git a/src/chrome/content/rules/GMO_Internet.xml b/src/chrome/content/rules/GMO_Internet.xml index bfefdaa1dffe..ee79c64018a2 100644 --- a/src/chrome/content/rules/GMO_Internet.xml +++ b/src/chrome/content/rules/GMO_Internet.xml @@ -25,18 +25,14 @@ - Rentalserver.jp.xml - Rocketnet.jp.xml - Tenten.vn.xml - - Win-is.com.xml - Win-rd.jp.xml - - Win-sv.jp.xml Nonfunctional subdomains: - error - cache.im (reset) - - ir ² - help.point * - - recruit ² ² Refused * Dropped @@ -49,13 +45,6 @@ * Refused - Partially covered subdomains: - - - cloud * - - * At least some pages redirect to http - - Fully covered subdomains: - cache.img @@ -89,7 +78,9 @@ + + @@ -98,41 +89,7 @@ --> - - - - - - - - - - - - - - - - - - - - - - - - - - - - + diff --git a/src/chrome/content/rules/GMPG.org.xml b/src/chrome/content/rules/GMPG.org.xml new file mode 100644 index 000000000000..6039b50b6dbe --- /dev/null +++ b/src/chrome/content/rules/GMPG.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/GMX.xml b/src/chrome/content/rules/GMX.xml index db99f47bafaf..57e43f0a6914 100644 --- a/src/chrome/content/rules/GMX.xml +++ b/src/chrome/content/rules/GMX.xml @@ -15,25 +15,11 @@ - www.gmx.co.in ² - www.gmx.com.tr ² - - gmx.com subdomains: - - (www.) (MCB) - - i[0-9] (different host, causes MCB at (www.)gmx.com) - - postmaster (timeout) - - search (refused) - - kino.gmx.de (redirects to www.govento.de; mismatched, CN: ct-cds.con-tech.de) - www.gmx.info ¹ - - (www.)gmx.it (HTTPS timeout) - www.gmx.li ¹ - www.gmx.lu ¹ - - gmx.net subdomains: - - newsroom (refused) - - finanzvergleich (refused) - - gutscheine (timeout) - - media (unknown protocol) - - postmaster (timeout) - - www.gmx.org ¹ - www.gmx.ph ² - (www.)gmx.ru ² @@ -45,81 +31,12 @@ ¹ hostname mismatch, CN: *.gmx.net ² hostname mismatch, CN: *.mail.com - Fully covered domains: - - (www.)gmx.at (→ www.gmx.ch) - - - (www.)gmx.ch (^ → www) - - (www.)gmx.co.uk (^ → www) - - - gmx.com subdomains: - - (www.) (^ → www) - - help - - organizer - - service - - storage-file-eu - - - (www.)gmx.de (→ www.gmx.ch) - - mobile.gmx.de - - (www.)gmx.fr (^ → www) - - - gmx.net subdomains: - - (www.) (→ www.gmx.ch) - - hilfe - - kontakt - - lotto - - mailings - - millionenklick - - passwort - - registrierung - - service (→ www.gmx.ch) - - suche - - vorteile - - Observed cookie domains: - - (www.)gmx.de - - mobile.gmx.de - - - gmx.net subdomains: - - . - - .suche - - service - - www - - .www - --> - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -129,26 +46,6 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/GND-Tech.com-problematic.xml b/src/chrome/content/rules/GND-Tech.com-problematic.xml index d7b968a180cb..ac79302f090e 100644 --- a/src/chrome/content/rules/GND-Tech.com-problematic.xml +++ b/src/chrome/content/rules/GND-Tech.com-problematic.xml @@ -5,7 +5,7 @@ - + diff --git a/src/chrome/content/rules/GNOME-falsemixed.xml b/src/chrome/content/rules/GNOME-falsemixed.xml index 35e95126b4de..2b25fda12597 100644 --- a/src/chrome/content/rules/GNOME-falsemixed.xml +++ b/src/chrome/content/rules/GNOME-falsemixed.xml @@ -8,13 +8,12 @@ Fetch error: http://news.gnome.org/ => https://news.gnome.org/: Cycle detected - For rules not causing false/broken MCB, see GNOME.xml. --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/GNOME.xml b/src/chrome/content/rules/GNOME.xml index 2e4dead1fff4..a81b3e7bb2d4 100644 --- a/src/chrome/content/rules/GNOME.xml +++ b/src/chrome/content/rules/GNOME.xml @@ -17,8 +17,6 @@ - gnome.org subdomains: - - art (prints "ok"; self-signed, CN: CentOS-63-64-minimal) - - ftp (refused) - jabber ** - webapps ** - webapps2 ** @@ -139,7 +137,7 @@ - + @@ -149,7 +147,7 @@ - - - diff --git a/src/chrome/content/rules/GNU.io.xml b/src/chrome/content/rules/GNU.io.xml index 258647faeb6e..a18615332dbf 100644 --- a/src/chrome/content/rules/GNU.io.xml +++ b/src/chrome/content/rules/GNU.io.xml @@ -2,12 +2,12 @@ - + diff --git a/src/chrome/content/rules/GNU.org.xml b/src/chrome/content/rules/GNU.org.xml index a5340e21d985..f2c04c9df916 100644 --- a/src/chrome/content/rules/GNU.org.xml +++ b/src/chrome/content/rules/GNU.org.xml @@ -14,27 +14,21 @@ Invalid certificate: savanna.gnu.org arch0.savannah.gnu.org audio-video0.savannah.gnu.org - bzr0.savannah.gnu.org - web.cvs0.savannah.gnu.org - dl0.savannah.gnu.org + download0.savannah.gnu.org download-mirror0.savannah.gnu.org + frontend0.savannah.gnu.org ftpmirror0.savannah.gnu.org git0.savannah.gnu.org web.git0.savannah.gnu.org - hg0.savannah.gnu.org vcs0.savannah.gnu.org subversions.gnu.org - arch0.sv.gnu.org audio-video0.sv.gnu.org - bzr0.sv.gnu.org - web.cvs0.sv.gnu.org - dl0.sv.gnu.org + download0.sv.gnu.org download-mirror0.sv.gnu.org + frontend0.sv.gnu.org ftpmirror0.sv.gnu.org web.git.sv.gnu.org - git0.sv.gnu.org web.git0.sv.gnu.org - hg0.sv.gnu.org vcs0.sv.gnu.org wildebeest.gnu.org @@ -72,6 +66,7 @@ Timeout: + @@ -79,57 +74,40 @@ Timeout: - - - - - - - - - - - - - - - + - - - diff --git a/src/chrome/content/rules/GNU_Radio.org.xml b/src/chrome/content/rules/GNU_Radio.org.xml index cdc1cc401832..f63a0be38f3f 100644 --- a/src/chrome/content/rules/GNU_Radio.org.xml +++ b/src/chrome/content/rules/GNU_Radio.org.xml @@ -6,7 +6,7 @@ - + diff --git a/src/chrome/content/rules/GNUsocial.no.xml b/src/chrome/content/rules/GNUsocial.no.xml index ba5a727bb750..c95d24f3f057 100644 --- a/src/chrome/content/rules/GNUsocial.no.xml +++ b/src/chrome/content/rules/GNUsocial.no.xml @@ -9,7 +9,7 @@ Fetch error: http://www.gnusocial.no/ => https://www.gnusocial.no/: (51, "SSL: n - www.gnusocial.no --> - + diff --git a/src/chrome/content/rules/GO.com.xml b/src/chrome/content/rules/GO.com.xml deleted file mode 100644 index 044ea0b3c321..000000000000 --- a/src/chrome/content/rules/GO.com.xml +++ /dev/null @@ -1,205 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/GOC.io.xml b/src/chrome/content/rules/GOC.io.xml deleted file mode 100644 index 700f51870e33..000000000000 --- a/src/chrome/content/rules/GOC.io.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/GOG.com.xml b/src/chrome/content/rules/GOG.com.xml index cd72811cf1be..01444d43a0ef 100644 --- a/src/chrome/content/rules/GOG.com.xml +++ b/src/chrome/content/rules/GOG.com.xml @@ -1,30 +1,16 @@ - - - + - + - - - - - + diff --git a/src/chrome/content/rules/GOV.UK.xml b/src/chrome/content/rules/GOV.UK.xml index 6b7cc8412cb4..c87a8043bd7c 100644 --- a/src/chrome/content/rules/GOV.UK.xml +++ b/src/chrome/content/rules/GOV.UK.xml @@ -1,25 +1,22 @@ - - + - - - - - - - - - - + diff --git a/src/chrome/content/rules/GO_Transit.xml b/src/chrome/content/rules/GO_Transit.xml index edea7fb2d41f..96bb6a14d778 100644 --- a/src/chrome/content/rules/GO_Transit.xml +++ b/src/chrome/content/rules/GO_Transit.xml @@ -21,4 +21,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/GP.se.xml b/src/chrome/content/rules/GP.se.xml index 769ef49d08d9..cb44629aa6d7 100644 --- a/src/chrome/content/rules/GP.se.xml +++ b/src/chrome/content/rules/GP.se.xml @@ -41,10 +41,12 @@ Fetch error: http://gp.se/ => https://gp.se/: (7, 'Failed to connect to gp.se po ² Unsecurable <= refused --> - + - + + + - + @@ -15,4 +15,4 @@ Fetch error: http://www.gpfi.org/ => https://www.gpfi.org/: (51, "SSL: no altern - \ No newline at end of file + diff --git a/src/chrome/content/rules/GPLHost.xml b/src/chrome/content/rules/GPLHost.xml deleted file mode 100644 index 753431a3fed2..000000000000 --- a/src/chrome/content/rules/GPLHost.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/GPUL.org.xml b/src/chrome/content/rules/GPUL.org.xml index 718873a285ef..419fcf484424 100644 --- a/src/chrome/content/rules/GPUL.org.xml +++ b/src/chrome/content/rules/GPUL.org.xml @@ -19,7 +19,7 @@ Fetch error: http://www.gpul.org/ => https://gpul.org/: (35, 'error:140770FC:SSL * Secured by us --> - + diff --git a/src/chrome/content/rules/GP_ehosting.com.xml b/src/chrome/content/rules/GP_ehosting.com.xml index ac10b2ae86c9..a5c83d5c31b9 100644 --- a/src/chrome/content/rules/GP_ehosting.com.xml +++ b/src/chrome/content/rules/GP_ehosting.com.xml @@ -10,7 +10,7 @@ - + - - + + - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/GRC.com.xml b/src/chrome/content/rules/GRC.com.xml index b886c242eaf4..95604cb12d05 100644 --- a/src/chrome/content/rules/GRC.com.xml +++ b/src/chrome/content/rules/GRC.com.xml @@ -26,7 +26,7 @@ --> - + - + - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/GRSecurity.xml b/src/chrome/content/rules/GRSecurity.xml new file mode 100644 index 000000000000..1a8c1168f59b --- /dev/null +++ b/src/chrome/content/rules/GRSecurity.xml @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/GRUN_Software.xml b/src/chrome/content/rules/GRUN_Software.xml index d84f81926bbf..19bb7839d752 100644 --- a/src/chrome/content/rules/GRUN_Software.xml +++ b/src/chrome/content/rules/GRUN_Software.xml @@ -13,4 +13,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/GS-media.de.xml b/src/chrome/content/rules/GS-media.de.xml deleted file mode 100644 index 9cfcc7f249eb..000000000000 --- a/src/chrome/content/rules/GS-media.de.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/GSA.gov.xml b/src/chrome/content/rules/GSA.gov.xml index c195652a1763..ddcd64406ba8 100644 --- a/src/chrome/content/rules/GSA.gov.xml +++ b/src/chrome/content/rules/GSA.gov.xml @@ -7,12 +7,11 @@ Fetch error: http://fbopen.gsa.gov/ => https://fbopen.gsa.gov/: (6, 'Could not r --> - + - - + diff --git a/src/chrome/content/rules/GSI.de.xml b/src/chrome/content/rules/GSI.de.xml index 6215d233d8af..f94b9a2d298e 100644 --- a/src/chrome/content/rules/GSI.de.xml +++ b/src/chrome/content/rules/GSI.de.xml @@ -13,7 +13,7 @@ - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/GSU.edu.xml b/src/chrome/content/rules/GSU.edu.xml index d7315bb70bc4..5698744ed4eb 100644 --- a/src/chrome/content/rules/GSU.edu.xml +++ b/src/chrome/content/rules/GSU.edu.xml @@ -118,7 +118,14 @@ - + + + + + + + + diff --git a/src/chrome/content/rules/GTCs-Online.xml b/src/chrome/content/rules/GTCs-Online.xml deleted file mode 100644 index 8524c1132f85..000000000000 --- a/src/chrome/content/rules/GTCs-Online.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/GTRK.TV.xml b/src/chrome/content/rules/GTRK.TV.xml new file mode 100644 index 000000000000..5fc6e68686c0 --- /dev/null +++ b/src/chrome/content/rules/GTRK.TV.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/GU.se.xml b/src/chrome/content/rules/GU.se.xml index e292447e90a3..3255f934c0c1 100644 --- a/src/chrome/content/rules/GU.se.xml +++ b/src/chrome/content/rules/GU.se.xml @@ -16,7 +16,8 @@ lots of subdomains lack ssl, and the site does less intelligent rewriting. how t --> - + + @@ -34,7 +35,6 @@ lots of subdomains lack ssl, and the site does less intelligent rewriting. how t - + diff --git a/src/chrome/content/rules/GVNTube.com.xml b/src/chrome/content/rules/GVNTube.com.xml index 9290d283d09a..730e857b2a1e 100644 --- a/src/chrome/content/rules/GVNTube.com.xml +++ b/src/chrome/content/rules/GVNTube.com.xml @@ -16,4 +16,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/GWhois.org.xml b/src/chrome/content/rules/GWhois.org.xml deleted file mode 100644 index 376bb624bce4..000000000000 --- a/src/chrome/content/rules/GWhois.org.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Gaatur_u_stig_slapen.nl.xml b/src/chrome/content/rules/Gaatur_u_stig_slapen.nl.xml index 014ef850b516..2491e44c1816 100644 --- a/src/chrome/content/rules/Gaatur_u_stig_slapen.nl.xml +++ b/src/chrome/content/rules/Gaatur_u_stig_slapen.nl.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://gaaturustigslapen.nl/ => https://gaaturustigslapen.nl/: (60, 'SSL certificate problem: certificate has expired') Fetch error: http://www.gaaturustigslapen.nl/ => https://www.gaaturustigslapen.nl/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/Gab.com.xml b/src/chrome/content/rules/Gab.com.xml new file mode 100644 index 000000000000..c7698ef413dc --- /dev/null +++ b/src/chrome/content/rules/Gab.com.xml @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Gabor_Szathmari.me.xml b/src/chrome/content/rules/Gabor_Szathmari.me.xml index f08561b265bd..cb60d7642bd0 100644 --- a/src/chrome/content/rules/Gabor_Szathmari.me.xml +++ b/src/chrome/content/rules/Gabor_Szathmari.me.xml @@ -38,7 +38,7 @@ --> - + diff --git a/src/chrome/content/rules/Gaia-GIS.it.xml b/src/chrome/content/rules/Gaia-GIS.it.xml index 0b66ad827909..4aaaf3512a52 100644 --- a/src/chrome/content/rules/Gaia-GIS.it.xml +++ b/src/chrome/content/rules/Gaia-GIS.it.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://gaia-gis.it/ => https://gaia-gis.it/: (51, "SSL: no alternative certificate subject name matches target host name 'gaia-gis.it'") --> - + diff --git a/src/chrome/content/rules/GaiaOnline.xml b/src/chrome/content/rules/GaiaOnline.xml index 76d24e5a29e2..0e27bb3ff36f 100644 --- a/src/chrome/content/rules/GaiaOnline.xml +++ b/src/chrome/content/rules/GaiaOnline.xml @@ -10,25 +10,21 @@ - - - - + + - + to="https://www.gaiaonlinehelp.com/" /> - + diff --git a/src/chrome/content/rules/Gajim.xml b/src/chrome/content/rules/Gajim.xml index 26c953621b61..8107dad3ddf9 100644 --- a/src/chrome/content/rules/Gajim.xml +++ b/src/chrome/content/rules/Gajim.xml @@ -27,7 +27,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Galaxus.ch.xml b/src/chrome/content/rules/Galaxus.ch.xml deleted file mode 100644 index a6c1f658bc28..000000000000 --- a/src/chrome/content/rules/Galaxus.ch.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Galiciana.gal.xml b/src/chrome/content/rules/Galiciana.gal.xml new file mode 100644 index 000000000000..07154e573207 --- /dev/null +++ b/src/chrome/content/rules/Galiciana.gal.xml @@ -0,0 +1,14 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Galois.com.xml b/src/chrome/content/rules/Galois.com.xml index ab0db33d64df..de81b06978ec 100644 --- a/src/chrome/content/rules/Galois.com.xml +++ b/src/chrome/content/rules/Galois.com.xml @@ -12,7 +12,7 @@ Fetch error: http://www.galois.com/ => https://www.galois.com/: Too many redirec * Secured by us --> - + diff --git a/src/chrome/content/rules/GamCare.xml b/src/chrome/content/rules/GamCare.xml index 0b9dd4e515cd..5618ed946f53 100644 --- a/src/chrome/content/rules/GamCare.xml +++ b/src/chrome/content/rules/GamCare.xml @@ -10,7 +10,8 @@ - + + - + - + + + + + - + - - + + + - + + diff --git a/src/chrome/content/rules/GameCopyWorld.click.xml b/src/chrome/content/rules/GameCopyWorld.click.xml new file mode 100644 index 000000000000..f309bded515b --- /dev/null +++ b/src/chrome/content/rules/GameCopyWorld.click.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/GameCopyWorld.com.xml b/src/chrome/content/rules/GameCopyWorld.com.xml new file mode 100644 index 000000000000..6a35c87faa44 --- /dev/null +++ b/src/chrome/content/rules/GameCopyWorld.com.xml @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/GameCopyWorld.eu.xml b/src/chrome/content/rules/GameCopyWorld.eu.xml new file mode 100644 index 000000000000..016570ab4919 --- /dev/null +++ b/src/chrome/content/rules/GameCopyWorld.eu.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/GameHouse.xml b/src/chrome/content/rules/GameHouse.xml index 0ce43d97593e..de0e86b8e4f1 100644 --- a/src/chrome/content/rules/GameHouse.xml +++ b/src/chrome/content/rules/GameHouse.xml @@ -12,24 +12,23 @@ Fetch error: http://ad.ghfusion.com/ => https://ad.ghfusion.com/: (6, 'Could not - dlr6ze9oohko6.cloudfront.net --> - + - + + + - + - - + diff --git a/src/chrome/content/rules/GamePro.de.xml b/src/chrome/content/rules/GamePro.de.xml new file mode 100644 index 000000000000..189db9703ec0 --- /dev/null +++ b/src/chrome/content/rules/GamePro.de.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/GameSports.net-falsemixed.xml b/src/chrome/content/rules/GameSports.net-falsemixed.xml deleted file mode 100644 index 23732b6e5507..000000000000 --- a/src/chrome/content/rules/GameSports.net-falsemixed.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/GameSports.net.xml b/src/chrome/content/rules/GameSports.net.xml deleted file mode 100644 index 88f7efc82ab0..000000000000 --- a/src/chrome/content/rules/GameSports.net.xml +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/GameSpot.com-falsemixed.xml b/src/chrome/content/rules/GameSpot.com-falsemixed.xml deleted file mode 100644 index 5904e59e5eb5..000000000000 --- a/src/chrome/content/rules/GameSpot.com-falsemixed.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/GameSpot.com.xml b/src/chrome/content/rules/GameSpot.com.xml new file mode 100644 index 000000000000..8954e3e8bb2a --- /dev/null +++ b/src/chrome/content/rules/GameSpot.com.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/GameSpot.xml b/src/chrome/content/rules/GameSpot.xml deleted file mode 100644 index ff2d60cc5ff3..000000000000 --- a/src/chrome/content/rules/GameSpot.xml +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/GameTechWiki.com.xml b/src/chrome/content/rules/GameTechWiki.com.xml new file mode 100644 index 000000000000..33e823710726 --- /dev/null +++ b/src/chrome/content/rules/GameTechWiki.com.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/GameTree.xml b/src/chrome/content/rules/GameTree.xml index 825e77dc5b75..0fc00ca1dc34 100644 --- a/src/chrome/content/rules/GameTree.xml +++ b/src/chrome/content/rules/GameTree.xml @@ -8,15 +8,16 @@ Fetch error: http://gametreelinux.com/ => https://gametreedeveloper.com/: (60, ' (www.)gametreelinux.com: plaintext reply --> - + - + + - + - + + + + + + + + + + + + + + + + + + + + + + - + - - - + diff --git a/src/chrome/content/rules/Gamegeek-denter.de.xml b/src/chrome/content/rules/Gamegeek-denter.de.xml deleted file mode 100644 index 148c878164d5..000000000000 --- a/src/chrome/content/rules/Gamegeek-denter.de.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Gameladen.xml b/src/chrome/content/rules/Gameladen.xml index 1d1229696b96..17bc77bd7d81 100644 --- a/src/chrome/content/rules/Gameladen.xml +++ b/src/chrome/content/rules/Gameladen.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Gameoapp.com.xml b/src/chrome/content/rules/Gameoapp.com.xml deleted file mode 100644 index a505525cc542..000000000000 --- a/src/chrome/content/rules/Gameoapp.com.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Gameological_Society.xml b/src/chrome/content/rules/Gameological_Society.xml index b91401ff11ac..23391af32e04 100644 --- a/src/chrome/content/rules/Gameological_Society.xml +++ b/src/chrome/content/rules/Gameological_Society.xml @@ -14,11 +14,12 @@ - + + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Gameplorer.de.xml b/src/chrome/content/rules/Gameplorer.de.xml new file mode 100644 index 000000000000..16ec851e0768 --- /dev/null +++ b/src/chrome/content/rules/Gameplorer.de.xml @@ -0,0 +1,58 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Gamer-network.net.xml b/src/chrome/content/rules/Gamer-network.net.xml new file mode 100644 index 000000000000..a3d9e4d0d646 --- /dev/null +++ b/src/chrome/content/rules/Gamer-network.net.xml @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/GamerSky.com.xml b/src/chrome/content/rules/GamerSky.com.xml new file mode 100644 index 000000000000..543f259901ce --- /dev/null +++ b/src/chrome/content/rules/GamerSky.com.xml @@ -0,0 +1,157 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/GamesOnly.xml b/src/chrome/content/rules/GamesOnly.xml index f134451c7a16..49d4e516605e 100644 --- a/src/chrome/content/rules/GamesOnly.xml +++ b/src/chrome/content/rules/GamesOnly.xml @@ -3,4 +3,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/GamesPlanet.xml b/src/chrome/content/rules/GamesPlanet.xml deleted file mode 100644 index 1110d39abd5e..000000000000 --- a/src/chrome/content/rules/GamesPlanet.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - diff --git a/src/chrome/content/rules/Gameselectors.com.xml b/src/chrome/content/rules/Gameselectors.com.xml deleted file mode 100644 index 604679c71121..000000000000 --- a/src/chrome/content/rules/Gameselectors.com.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Gamestar.de.xml b/src/chrome/content/rules/Gamestar.de.xml index f63636aafdab..d351400521f7 100644 --- a/src/chrome/content/rules/Gamestar.de.xml +++ b/src/chrome/content/rules/Gamestar.de.xml @@ -1,6 +1,6 @@ - + - + diff --git a/src/chrome/content/rules/Gamestar_Mechanic.xml b/src/chrome/content/rules/Gamestar_Mechanic.xml index 27ba443cffa9..439a974679a7 100644 --- a/src/chrome/content/rules/Gamestar_Mechanic.xml +++ b/src/chrome/content/rules/Gamestar_Mechanic.xml @@ -32,16 +32,33 @@ - + + + + + + + + + + + + + + + + + + + - + diff --git a/src/chrome/content/rules/Gameswelt.de.xml b/src/chrome/content/rules/Gameswelt.de.xml index d89a8fd2a6a4..aaaaf0a65e85 100644 --- a/src/chrome/content/rules/Gameswelt.de.xml +++ b/src/chrome/content/rules/Gameswelt.de.xml @@ -1,7 +1,7 @@ - - + + + - - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Gamezebo.xml b/src/chrome/content/rules/Gamezebo.xml index 637e6144d925..84d0a639f9fd 100644 --- a/src/chrome/content/rules/Gamezebo.xml +++ b/src/chrome/content/rules/Gamezebo.xml @@ -27,4 +27,4 @@ Fetch error: http://gamezebo.com/ => https://gamezebo.com/: (28, 'Connection tim - \ No newline at end of file + diff --git a/src/chrome/content/rules/Gamigo.com.xml b/src/chrome/content/rules/Gamigo.com.xml index 06abbd1293e1..f5d352622dea 100644 --- a/src/chrome/content/rules/Gamigo.com.xml +++ b/src/chrome/content/rules/Gamigo.com.xml @@ -32,7 +32,7 @@ Fetch error: http://support.gamigo.com/ => https://support.gamigo.com/: (60, 'SS * Secured by us --> - + @@ -66,7 +66,7 @@ Fetch error: http://support.gamigo.com/ => https://support.gamigo.com/: (60, 'SS - + - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/GamingOnLinux.com.xml b/src/chrome/content/rules/GamingOnLinux.com.xml new file mode 100644 index 000000000000..c5a8d583c15d --- /dev/null +++ b/src/chrome/content/rules/GamingOnLinux.com.xml @@ -0,0 +1,11 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Gamingonlinux.com.xml b/src/chrome/content/rules/Gamingonlinux.com.xml deleted file mode 100644 index cd63474a929d..000000000000 --- a/src/chrome/content/rules/Gamingonlinux.com.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Gamma-Group.xml b/src/chrome/content/rules/Gamma-Group.xml deleted file mode 100644 index 95f29bee5257..000000000000 --- a/src/chrome/content/rules/Gamma-Group.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/GammaE.com.xml b/src/chrome/content/rules/GammaE.com.xml index 51e60e93b5da..896412e5a581 100644 --- a/src/chrome/content/rules/GammaE.com.xml +++ b/src/chrome/content/rules/GammaE.com.xml @@ -13,7 +13,8 @@ - + + @@ -22,7 +23,6 @@ - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Gamona.de.xml b/src/chrome/content/rules/Gamona.de.xml index 6f6263037465..fe565c56a855 100644 --- a/src/chrome/content/rules/Gamona.de.xml +++ b/src/chrome/content/rules/Gamona.de.xml @@ -1,4 +1,4 @@ - - + + diff --git a/src/chrome/content/rules/Gandi.xml b/src/chrome/content/rules/Gandi.xml index 8b9b9a011127..1edf47555ef3 100644 --- a/src/chrome/content/rules/Gandi.xml +++ b/src/chrome/content/rules/Gandi.xml @@ -7,5 +7,5 @@ - + diff --git a/src/chrome/content/rules/Gang_Land_News.xml b/src/chrome/content/rules/Gang_Land_News.xml index eeb1f863e3e9..bf8a66b30dc6 100644 --- a/src/chrome/content/rules/Gang_Land_News.xml +++ b/src/chrome/content/rules/Gang_Land_News.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Ganjoor.net.xml b/src/chrome/content/rules/Ganjoor.net.xml new file mode 100644 index 000000000000..8910c069cf61 --- /dev/null +++ b/src/chrome/content/rules/Ganjoor.net.xml @@ -0,0 +1,15 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Gannett-Company.xml b/src/chrome/content/rules/Gannett-Company.xml index 3b9ea5f565ef..11045d12dcf5 100644 --- a/src/chrome/content/rules/Gannett-Company.xml +++ b/src/chrome/content/rules/Gannett-Company.xml @@ -9,15 +9,13 @@ Fetch error: http://ssl1.gmti.com/ => https://ssl1.gmti.com/: (7, 'Failed to con Fetch error: http://deals.montomeryadvertiser.com/ => http://deals.montomeryadvertiser.com/: (6, 'Could not resolve host: deals.montomeryadvertiser.com') Other Gannett Company rulesets: - - Army_Times.xml + - ArmyTimes.com.xml - Asbury_Park_Press.xml - Asheville_Citizen-Times.xml - Bucyrus_Telegraph_Forum.xml - Cincinnati.com.xml - Coloradoan.xml - GCIon.com.xml - - Gannett-cdn.com.xml - - GannettLocal.xml - Azcentral.com.xml - Battle_Creek_Enquirer.xml - Baxter_Bulletin.xml @@ -57,7 +55,7 @@ Fetch error: http://deals.montomeryadvertiser.com/ => http://deals.montomeryadve - bcdownload.gannett.edgesuite.net - - img.gannett.edgesuite.net + - img.gannett.edgesuite.net - cmsimg.floridatoday.com - i.usatoday.net.edgesuite.net @@ -112,7 +110,7 @@ Fetch error: http://deals.montomeryadvertiser.com/ => http://deals.montomeryadve - classifieds.nncogannett.com --> - + diff --git a/src/chrome/content/rules/GannettLocal.xml b/src/chrome/content/rules/GannettLocal.xml deleted file mode 100644 index dc226d00e4e6..000000000000 --- a/src/chrome/content/rules/GannettLocal.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Gannett_Ridge.xml b/src/chrome/content/rules/Gannett_Ridge.xml index b9e2c6bc3e15..464874f36b63 100644 --- a/src/chrome/content/rules/Gannett_Ridge.xml +++ b/src/chrome/content/rules/Gannett_Ridge.xml @@ -11,7 +11,7 @@ Fetch error: http://gannettridge.com/ => https://gannettridge.com/: (51, "SSL: n Fetch error: http://www.gannettridge.com/ => https://www.gannettridge.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.gannettridge.com'") --> - + @@ -22,4 +22,4 @@ Fetch error: http://www.gannettridge.com/ => https://www.gannettridge.com/: (51, - \ No newline at end of file + diff --git a/src/chrome/content/rules/Ganttproject.biz-mixedcontent.xml b/src/chrome/content/rules/Ganttproject.biz-mixedcontent.xml new file mode 100644 index 000000000000..b7b7e1b8b4ea --- /dev/null +++ b/src/chrome/content/rules/Ganttproject.biz-mixedcontent.xml @@ -0,0 +1,13 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Ganttproject.biz.xml b/src/chrome/content/rules/Ganttproject.biz.xml new file mode 100644 index 000000000000..cd01779ebcfa --- /dev/null +++ b/src/chrome/content/rules/Ganttproject.biz.xml @@ -0,0 +1,25 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Ganz_eStore.com.xml b/src/chrome/content/rules/Ganz_eStore.com.xml index d8e6d23688f3..43f8c4200caa 100644 --- a/src/chrome/content/rules/Ganz_eStore.com.xml +++ b/src/chrome/content/rules/Ganz_eStore.com.xml @@ -5,7 +5,8 @@ - + + @@ -14,7 +15,6 @@ - + diff --git a/src/chrome/content/rules/GarageGames.xml b/src/chrome/content/rules/GarageGames.xml index ddd168d8d0af..0d82608da043 100644 --- a/src/chrome/content/rules/GarageGames.xml +++ b/src/chrome/content/rules/GarageGames.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://service.garagegames.com/ => https://service.garagegames.com/: (6, 'Could not resolve host: service.garagegames.com') --> - + @@ -17,4 +17,4 @@ Fetch error: http://service.garagegames.com/ => https://service.garagegames.com/ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Garcinia_Cambogia_VitalMend.com.xml b/src/chrome/content/rules/Garcinia_Cambogia_VitalMend.com.xml index 3539b1b4ffb4..b65997ba2f79 100644 --- a/src/chrome/content/rules/Garcinia_Cambogia_VitalMend.com.xml +++ b/src/chrome/content/rules/Garcinia_Cambogia_VitalMend.com.xml @@ -8,7 +8,7 @@ - + diff --git a/src/chrome/content/rules/Gardening-Know-How.com.xml b/src/chrome/content/rules/Gardening-Know-How.com.xml new file mode 100644 index 000000000000..0bcfef01ca05 --- /dev/null +++ b/src/chrome/content/rules/Gardening-Know-How.com.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Garfield.com.xml b/src/chrome/content/rules/Garfield.com.xml index efa21c4c6f12..d1ccfe25a19d 100644 --- a/src/chrome/content/rules/Garfield.com.xml +++ b/src/chrome/content/rules/Garfield.com.xml @@ -5,4 +5,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/GarryPotter.net.xml b/src/chrome/content/rules/GarryPotter.net.xml new file mode 100644 index 000000000000..0221f315495f --- /dev/null +++ b/src/chrome/content/rules/GarryPotter.net.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Gary_Johnson_2012.xml b/src/chrome/content/rules/Gary_Johnson_2012.xml deleted file mode 100644 index 0b4b7c5c2a91..000000000000 --- a/src/chrome/content/rules/Gary_Johnson_2012.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Gasngrills.com.xml b/src/chrome/content/rules/Gasngrills.com.xml index 23ca2ad7956e..bd5840e439be 100644 --- a/src/chrome/content/rules/Gasngrills.com.xml +++ b/src/chrome/content/rules/Gasngrills.com.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Gate-Crashing-Org.xml b/src/chrome/content/rules/Gate-Crashing-Org.xml index 49b5e44601a0..6892bea7d42d 100644 --- a/src/chrome/content/rules/Gate-Crashing-Org.xml +++ b/src/chrome/content/rules/Gate-Crashing-Org.xml @@ -2,7 +2,6 @@ - + diff --git a/src/chrome/content/rules/Gateshead.gov.uk.xml b/src/chrome/content/rules/Gateshead.gov.uk.xml index 0aaa9c3ace44..0333da24e12a 100644 --- a/src/chrome/content/rules/Gateshead.gov.uk.xml +++ b/src/chrome/content/rules/Gateshead.gov.uk.xml @@ -42,7 +42,7 @@ Fetch error: http://www.gateshead.gov.uk/ => https://www.gateshead.gov.uk/: Too ˢ Secured by us --> - + @@ -59,7 +59,7 @@ Fetch error: http://www.gateshead.gov.uk/ => https://www.gateshead.gov.uk/: Too - + - + - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Gavin-Newsom.xml b/src/chrome/content/rules/Gavin-Newsom.xml index f48bf89bd87c..10e6c71c7d64 100644 --- a/src/chrome/content/rules/Gavin-Newsom.xml +++ b/src/chrome/content/rules/Gavin-Newsom.xml @@ -5,7 +5,7 @@ - + - - - - - - - - diff --git a/src/chrome/content/rules/Gawker-labs.com.xml b/src/chrome/content/rules/Gawker-labs.com.xml deleted file mode 100644 index 8044462c32fa..000000000000 --- a/src/chrome/content/rules/Gawker-labs.com.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Gawker.xml b/src/chrome/content/rules/Gawker.xml index 9c9b43a8a046..457162bc8f0b 100644 --- a/src/chrome/content/rules/Gawker.xml +++ b/src/chrome/content/rules/Gawker.xml @@ -1,17 +1,7 @@ - - - - - - - - - - + - + diff --git a/src/chrome/content/rules/Gawkerassets.com.xml b/src/chrome/content/rules/Gawkerassets.com.xml deleted file mode 100644 index b6214ffffd95..000000000000 --- a/src/chrome/content/rules/Gawkerassets.com.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Gay180.xml b/src/chrome/content/rules/Gay180.xml deleted file mode 100644 index 96dd911203ec..000000000000 --- a/src/chrome/content/rules/Gay180.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/GayBoysTube.com.xml b/src/chrome/content/rules/GayBoysTube.com.xml new file mode 100644 index 000000000000..ac8e64ffbdd2 --- /dev/null +++ b/src/chrome/content/rules/GayBoysTube.com.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/GayGent.lgbt.xml b/src/chrome/content/rules/GayGent.lgbt.xml new file mode 100644 index 000000000000..6277140b8178 --- /dev/null +++ b/src/chrome/content/rules/GayGent.lgbt.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/GayRadio.lgbt.xml b/src/chrome/content/rules/GayRadio.lgbt.xml new file mode 100644 index 000000000000..b6bbef245c1c --- /dev/null +++ b/src/chrome/content/rules/GayRadio.lgbt.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/GayRomeo.com.xml b/src/chrome/content/rules/GayRomeo.com.xml new file mode 100644 index 000000000000..0cdd70ed67f0 --- /dev/null +++ b/src/chrome/content/rules/GayRomeo.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/GaySaltLake.com.xml b/src/chrome/content/rules/GaySaltLake.com.xml new file mode 100644 index 000000000000..603be4c7729c --- /dev/null +++ b/src/chrome/content/rules/GaySaltLake.com.xml @@ -0,0 +1,13 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/GaySexPositionsGuide.com.xml b/src/chrome/content/rules/GaySexPositionsGuide.com.xml new file mode 100644 index 000000000000..f471cec2690d --- /dev/null +++ b/src/chrome/content/rules/GaySexPositionsGuide.com.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/GaySwap.com.xml b/src/chrome/content/rules/GaySwap.com.xml index d9248512ab83..56aa118bc023 100644 --- a/src/chrome/content/rules/GaySwap.com.xml +++ b/src/chrome/content/rules/GaySwap.com.xml @@ -17,7 +17,7 @@ --> - + + + + + + + + + diff --git a/src/chrome/content/rules/Gdl-kempten.de.xml b/src/chrome/content/rules/Gdl-kempten.de.xml new file mode 100644 index 000000000000..4777f08b6518 --- /dev/null +++ b/src/chrome/content/rules/Gdl-kempten.de.xml @@ -0,0 +1,11 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Gdl-m.de.xml b/src/chrome/content/rules/Gdl-m.de.xml new file mode 100644 index 000000000000..7003d18d3c9b --- /dev/null +++ b/src/chrome/content/rules/Gdl-m.de.xml @@ -0,0 +1,11 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Gdl-nn.de.xml b/src/chrome/content/rules/Gdl-nn.de.xml new file mode 100644 index 000000000000..476fa8b4012e --- /dev/null +++ b/src/chrome/content/rules/Gdl-nn.de.xml @@ -0,0 +1,11 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Gdl-og-gera.de.xml b/src/chrome/content/rules/Gdl-og-gera.de.xml new file mode 100644 index 000000000000..ff2575617040 --- /dev/null +++ b/src/chrome/content/rules/Gdl-og-gera.de.xml @@ -0,0 +1,11 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Gdl-sbahn-berlin.de.xml b/src/chrome/content/rules/Gdl-sbahn-berlin.de.xml new file mode 100644 index 000000000000..fc09d139722e --- /dev/null +++ b/src/chrome/content/rules/Gdl-sbahn-berlin.de.xml @@ -0,0 +1,11 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Gdl.de.xml b/src/chrome/content/rules/Gdl.de.xml new file mode 100644 index 000000000000..dec0846a54d3 --- /dev/null +++ b/src/chrome/content/rules/Gdl.de.xml @@ -0,0 +1,155 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Gdlhamm.de.xml b/src/chrome/content/rules/Gdlhamm.de.xml new file mode 100644 index 000000000000..be10341df702 --- /dev/null +++ b/src/chrome/content/rules/Gdlhamm.de.xml @@ -0,0 +1,11 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/GeForce.com.xml b/src/chrome/content/rules/GeForce.com.xml index 42dacffa6669..eb9effb1b885 100644 --- a/src/chrome/content/rules/GeForce.com.xml +++ b/src/chrome/content/rules/GeForce.com.xml @@ -1,51 +1,34 @@ - - + + + + - - - - - - - - - - - + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/GearBest.com.xml b/src/chrome/content/rules/GearBest.com.xml new file mode 100644 index 000000000000..c95ab60f8542 --- /dev/null +++ b/src/chrome/content/rules/GearBest.com.xml @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/GearSourceCDN.com.xml b/src/chrome/content/rules/GearSourceCDN.com.xml deleted file mode 100644 index 2f40c1bebd49..000000000000 --- a/src/chrome/content/rules/GearSourceCDN.com.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Gearman.xml b/src/chrome/content/rules/Gearman.xml index 32d3715cc3ef..b3a40097a510 100644 --- a/src/chrome/content/rules/Gearman.xml +++ b/src/chrome/content/rules/Gearman.xml @@ -4,7 +4,7 @@ - + - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Geek.net.xml b/src/chrome/content/rules/Geek.net.xml deleted file mode 100644 index 2a9d1c2efbed..000000000000 --- a/src/chrome/content/rules/Geek.net.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/GeekGhost.net.xml b/src/chrome/content/rules/GeekGhost.net.xml new file mode 100644 index 000000000000..83d8fa7a9c82 --- /dev/null +++ b/src/chrome/content/rules/GeekGhost.net.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/GeekLAN.co.uk.xml b/src/chrome/content/rules/GeekLAN.co.uk.xml deleted file mode 100644 index 150366dbef9f..000000000000 --- a/src/chrome/content/rules/GeekLAN.co.uk.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/GeekPark.xml b/src/chrome/content/rules/GeekPark.xml index 3bc646bdb9ad..45e00a8e3399 100644 --- a/src/chrome/content/rules/GeekPark.xml +++ b/src/chrome/content/rules/GeekPark.xml @@ -1,12 +1,12 @@ - + @@ -27,6 +27,6 @@ - + diff --git a/src/chrome/content/rules/GeekWire.com.xml b/src/chrome/content/rules/GeekWire.com.xml new file mode 100644 index 000000000000..ce2e063bbfe2 --- /dev/null +++ b/src/chrome/content/rules/GeekWire.com.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/GeekWire.xml b/src/chrome/content/rules/GeekWire.xml deleted file mode 100644 index 8d765be91648..000000000000 --- a/src/chrome/content/rules/GeekWire.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/GeekZu.xml b/src/chrome/content/rules/GeekZu.xml index 780a8ffb5b94..c96c69b17b89 100644 --- a/src/chrome/content/rules/GeekZu.xml +++ b/src/chrome/content/rules/GeekZu.xml @@ -1,16 +1,16 @@ - + - + diff --git a/src/chrome/content/rules/Geek_Squad.co.uk.xml b/src/chrome/content/rules/Geek_Squad.co.uk.xml deleted file mode 100644 index aa600bcc6ff4..000000000000 --- a/src/chrome/content/rules/Geek_Squad.co.uk.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Geek_Tech_Labs.com.xml b/src/chrome/content/rules/Geek_Tech_Labs.com.xml index e47110e23665..5dd2490c3040 100644 --- a/src/chrome/content/rules/Geek_Tech_Labs.com.xml +++ b/src/chrome/content/rules/Geek_Tech_Labs.com.xml @@ -32,7 +32,7 @@ Fetch error: http://mysql.geektechlabs.com/ => https://mysql.geektechlabs.com/: *** Rule not on by default, doesn't trip MCB --> - + diff --git a/src/chrome/content/rules/Geekbuying.com.xml b/src/chrome/content/rules/Geekbuying.com.xml new file mode 100644 index 000000000000..bcf1a616e2b6 --- /dev/null +++ b/src/chrome/content/rules/Geekbuying.com.xml @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Geekheim.de.xml b/src/chrome/content/rules/Geekheim.de.xml index d7fab509a36f..663bf3a80aa6 100644 --- a/src/chrome/content/rules/Geekheim.de.xml +++ b/src/chrome/content/rules/Geekheim.de.xml @@ -3,7 +3,6 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Geekify.xml b/src/chrome/content/rules/Geekify.xml index fb88f5f4188f..9a82e8a3d720 100644 --- a/src/chrome/content/rules/Geekify.xml +++ b/src/chrome/content/rules/Geekify.xml @@ -6,7 +6,7 @@ Fetch error: http://www.geekify.com.au/ => http://www.geekify.com.au/: (6, 'Coul Some pages redirect to http. --> - + @@ -15,4 +15,4 @@ Fetch error: http://www.geekify.com.au/ => http://www.geekify.com.au/: (6, 'Coul - \ No newline at end of file + diff --git a/src/chrome/content/rules/Geeksphone.com.xml b/src/chrome/content/rules/Geeksphone.com.xml index 3519d1997b1e..a6a09a5d4b33 100644 --- a/src/chrome/content/rules/Geeksphone.com.xml +++ b/src/chrome/content/rules/Geeksphone.com.xml @@ -21,10 +21,13 @@ Fetch error: http://geeksphone.com/ => https://geeksphone.com/: (60, 'SSL certif * Secured by us --> - + - + + + + - + - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Gegl.org.xml b/src/chrome/content/rules/Gegl.org.xml new file mode 100644 index 000000000000..c69c932a228c --- /dev/null +++ b/src/chrome/content/rules/Gegl.org.xml @@ -0,0 +1,10 @@ + + + + + + + diff --git a/src/chrome/content/rules/Gehrcke.de.xml b/src/chrome/content/rules/Gehrcke.de.xml index 7abc7439e23a..c59699fae7c4 100644 --- a/src/chrome/content/rules/Gehrcke.de.xml +++ b/src/chrome/content/rules/Gehrcke.de.xml @@ -22,7 +22,7 @@ --> - + https://hydra.geht.net/: (7, 'Failed to c ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -22,7 +22,7 @@ Fetch error: http://hydra.geht.net/ => https://hydra.geht.net/: (7, 'Failed to c --> - + https://www.gem.co/: (51, "SSL: no alternativ - my --> - + diff --git a/src/chrome/content/rules/GemCutter.org.xml b/src/chrome/content/rules/GemCutter.org.xml new file mode 100644 index 000000000000..a800fd3addd5 --- /dev/null +++ b/src/chrome/content/rules/GemCutter.org.xml @@ -0,0 +1,15 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Gemalto.com-problematic.xml b/src/chrome/content/rules/Gemalto.com-problematic.xml index 09f4a023876f..f608e9d9b7cf 100644 --- a/src/chrome/content/rules/Gemalto.com-problematic.xml +++ b/src/chrome/content/rules/Gemalto.com-problematic.xml @@ -12,7 +12,6 @@ - + diff --git a/src/chrome/content/rules/Gemalto.com.xml b/src/chrome/content/rules/Gemalto.com.xml index 0b558719c0c1..408959b3bc66 100644 --- a/src/chrome/content/rules/Gemalto.com.xml +++ b/src/chrome/content/rules/Gemalto.com.xml @@ -47,7 +47,7 @@ Fetch error: http://allynisconnect1.gemalto.com/ => https://allynisconnect1.gema ³ Secured by us --> - + diff --git a/src/chrome/content/rules/Gemius.xml b/src/chrome/content/rules/Gemius.xml index 167d32e168db..89143b61f1c0 100644 --- a/src/chrome/content/rules/Gemius.xml +++ b/src/chrome/content/rules/Gemius.xml @@ -27,7 +27,7 @@ - + https://www.gemklub.hu/: (60, 'SSL certificate problem: certificate has expired') --> - + - + diff --git a/src/chrome/content/rules/Gemseek.com.xml b/src/chrome/content/rules/Gemseek.com.xml index 17fc077e06e1..51caef0062b3 100644 --- a/src/chrome/content/rules/Gemseek.com.xml +++ b/src/chrome/content/rules/Gemseek.com.xml @@ -17,7 +17,7 @@ --> - + https://www.genges.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.genges.com'") --> - + @@ -15,4 +15,4 @@ Fetch error: http://www.genges.com/ => https://www.genges.com/: (51, "SSL: no al - \ No newline at end of file + diff --git a/src/chrome/content/rules/GenNextFoundation.org.xml b/src/chrome/content/rules/GenNextFoundation.org.xml new file mode 100644 index 000000000000..df8e8d8804a0 --- /dev/null +++ b/src/chrome/content/rules/GenNextFoundation.org.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/General-Electric.xml b/src/chrome/content/rules/General-Electric.xml deleted file mode 100644 index a2c9bf6cf1e2..000000000000 --- a/src/chrome/content/rules/General-Electric.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - diff --git a/src/chrome/content/rules/General-Logistics-Systems.xml b/src/chrome/content/rules/General-Logistics-Systems.xml index 877a9bcc6e9a..937d40a49f8d 100644 --- a/src/chrome/content/rules/General-Logistics-Systems.xml +++ b/src/chrome/content/rules/General-Logistics-Systems.xml @@ -4,7 +4,7 @@ - + ---> - + - - + diff --git a/src/chrome/content/rules/Generalitat-of-Catalonia.xml b/src/chrome/content/rules/Generalitat-of-Catalonia.xml index 5725cd73f715..4f0e393c9acb 100644 --- a/src/chrome/content/rules/Generalitat-of-Catalonia.xml +++ b/src/chrome/content/rules/Generalitat-of-Catalonia.xml @@ -6,12 +6,13 @@ Fetch error: http://gencat.cat/ => https://gencat.cat/: (51, "SSL: no alternativ Disabled by https-everywhere-checker because: Fetch error: http://gencat.cat/ => https://gencat.cat/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + - + + - + diff --git a/src/chrome/content/rules/Genesis-Technologies.xml b/src/chrome/content/rules/Genesis-Technologies.xml index cb0e3fd4aa8a..8ccc927cd9b9 100644 --- a/src/chrome/content/rules/Genesis-Technologies.xml +++ b/src/chrome/content/rules/Genesis-Technologies.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Genesys-Hannover.de.xml b/src/chrome/content/rules/Genesys-Hannover.de.xml new file mode 100644 index 000000000000..4dd4cc26c50c --- /dev/null +++ b/src/chrome/content/rules/Genesys-Hannover.de.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Genofond.org.xml b/src/chrome/content/rules/Genofond.org.xml new file mode 100644 index 000000000000..ee8ce3d21ce3 --- /dev/null +++ b/src/chrome/content/rules/Genofond.org.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Gentle_labs.com.xml b/src/chrome/content/rules/Gentle_labs.com.xml index b46d79023c55..9302e2fbbf58 100644 --- a/src/chrome/content/rules/Gentle_labs.com.xml +++ b/src/chrome/content/rules/Gentle_labs.com.xml @@ -14,7 +14,7 @@ Fetch error: http://gentlelabs.com/ => https://www.gentlelabs.com/: (6, 'Could n ^gentlelabs.com: Refused --> - + diff --git a/src/chrome/content/rules/Gentoo-blog.de.xml b/src/chrome/content/rules/Gentoo-blog.de.xml deleted file mode 100644 index 6bb62e87728b..000000000000 --- a/src/chrome/content/rules/Gentoo-blog.de.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Gentoo.xml b/src/chrome/content/rules/Gentoo.xml index 6e030ffbfec9..fa20250dd6b1 100644 --- a/src/chrome/content/rules/Gentoo.xml +++ b/src/chrome/content/rules/Gentoo.xml @@ -1,16 +1,15 @@ - - + + + - + + @@ -89,12 +88,10 @@ Fetch error: http://council-webapp.gentoo.org/ => https://council-webapp.gentoo. - - @@ -111,7 +108,6 @@ Fetch error: http://council-webapp.gentoo.org/ => https://council-webapp.gentoo. - diff --git a/src/chrome/content/rules/GenusDebatten.se.xml b/src/chrome/content/rules/GenusDebatten.se.xml new file mode 100644 index 000000000000..510cbaef67cf --- /dev/null +++ b/src/chrome/content/rules/GenusDebatten.se.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Genymotion.com.xml b/src/chrome/content/rules/Genymotion.com.xml index 5204afd12458..91d882d1be4b 100644 --- a/src/chrome/content/rules/Genymotion.com.xml +++ b/src/chrome/content/rules/Genymotion.com.xml @@ -14,7 +14,7 @@ - + - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/GeoCoder.xml b/src/chrome/content/rules/GeoCoder.xml index efc1f17b1c19..c270861c3464 100644 --- a/src/chrome/content/rules/GeoCoder.xml +++ b/src/chrome/content/rules/GeoCoder.xml @@ -16,7 +16,7 @@ Fetch error: http://www.geocoder.ca/ => https://www.geocoder.ca/: Too many redir * Secured by us --> - + @@ -25,7 +25,7 @@ Fetch error: http://www.geocoder.ca/ => https://www.geocoder.ca/: Too many redir --> - + diff --git a/src/chrome/content/rules/GeoPlatform.gov.xml b/src/chrome/content/rules/GeoPlatform.gov.xml index 538e2bfce1a2..2873738aef92 100644 --- a/src/chrome/content/rules/GeoPlatform.gov.xml +++ b/src/chrome/content/rules/GeoPlatform.gov.xml @@ -9,7 +9,7 @@ --> - + - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Geocaching.com-falsemixed.xml b/src/chrome/content/rules/Geocaching.com-falsemixed.xml deleted file mode 100644 index 1890b9333c56..000000000000 --- a/src/chrome/content/rules/Geocaching.com-falsemixed.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Geocaching.com.xml b/src/chrome/content/rules/Geocaching.com.xml index d27e6118eee6..1fa7401796ac 100644 --- a/src/chrome/content/rules/Geocaching.com.xml +++ b/src/chrome/content/rules/Geocaching.com.xml @@ -1,97 +1,42 @@ - + - + + + - - - - - - - - - - - - - + + + - - - - - - - - - - - - - + - + diff --git a/src/chrome/content/rules/GeometryExpressions.com.xml b/src/chrome/content/rules/GeometryExpressions.com.xml new file mode 100644 index 000000000000..a2920fdb0b21 --- /dev/null +++ b/src/chrome/content/rules/GeometryExpressions.com.xml @@ -0,0 +1,20 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/George-Mason-University.xml b/src/chrome/content/rules/George-Mason-University.xml index 8b2e9ff11dd4..cf565fe5f31a 100644 --- a/src/chrome/content/rules/George-Mason-University.xml +++ b/src/chrome/content/rules/George-Mason-University.xml @@ -84,7 +84,7 @@ Fetch error: http://welcomeweek.gmu.edu/ => https://welcomeweek.gmu.edu/: (60, ' - si from www.facebook.com --> - + diff --git a/src/chrome/content/rules/George-Washington-University.xml b/src/chrome/content/rules/George-Washington-University.xml index 78bf545025f2..7c66db28306c 100644 --- a/src/chrome/content/rules/George-Washington-University.xml +++ b/src/chrome/content/rules/George-Washington-University.xml @@ -27,19 +27,20 @@ --> - + + + - + - + diff --git a/src/chrome/content/rules/Georgia_Innocence_Project.xml b/src/chrome/content/rules/Georgia_Innocence_Project.xml deleted file mode 100644 index b4e759898141..000000000000 --- a/src/chrome/content/rules/Georgia_Innocence_Project.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Georgie_Girl_Australia.xml b/src/chrome/content/rules/Georgie_Girl_Australia.xml deleted file mode 100644 index 638be9f81646..000000000000 --- a/src/chrome/content/rules/Georgie_Girl_Australia.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Geotrust.xml b/src/chrome/content/rules/Geotrust.xml index 6315dce2155e..f8200a25f3a8 100644 --- a/src/chrome/content/rules/Geotrust.xml +++ b/src/chrome/content/rules/Geotrust.xml @@ -1,45 +1,36 @@ - - - - - - - - - - - + + + + + + + - - - - + diff --git a/src/chrome/content/rules/Geovation.uk.xml b/src/chrome/content/rules/Geovation.uk.xml index 4cd876a48339..1967f11eef9f 100644 --- a/src/chrome/content/rules/Geovation.uk.xml +++ b/src/chrome/content/rules/Geovation.uk.xml @@ -8,7 +8,7 @@ - + + + + + + + + + diff --git a/src/chrome/content/rules/German-Academic-Exchange-Service.xml b/src/chrome/content/rules/German-Academic-Exchange-Service.xml index 25e3b6e22627..9708a4724b32 100644 --- a/src/chrome/content/rules/German-Academic-Exchange-Service.xml +++ b/src/chrome/content/rules/German-Academic-Exchange-Service.xml @@ -1,10 +1,11 @@ - + + - + diff --git a/src/chrome/content/rules/German-Design-Council.xml b/src/chrome/content/rules/German-Design-Council.xml index b21893ee6aba..95bcd90ebafd 100644 --- a/src/chrome/content/rules/German-Design-Council.xml +++ b/src/chrome/content/rules/German-Design-Council.xml @@ -3,7 +3,7 @@ - + diff --git a/src/chrome/content/rules/German_Center_for_Neurodegenerative_Diseases.xml b/src/chrome/content/rules/German_Center_for_Neurodegenerative_Diseases.xml index 41db727c6f15..7d2e4e5e050d 100644 --- a/src/chrome/content/rules/German_Center_for_Neurodegenerative_Diseases.xml +++ b/src/chrome/content/rules/German_Center_for_Neurodegenerative_Diseases.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/German_Privacy_Foundation.xml b/src/chrome/content/rules/German_Privacy_Foundation.xml index 110889210bcd..129b894f7aa9 100644 --- a/src/chrome/content/rules/German_Privacy_Foundation.xml +++ b/src/chrome/content/rules/German_Privacy_Foundation.xml @@ -1,9 +1,3 @@ - @@ -15,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Get.It.xml b/src/chrome/content/rules/Get.It.xml deleted file mode 100644 index 3146dba46b7d..000000000000 --- a/src/chrome/content/rules/Get.It.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Get.it.xml b/src/chrome/content/rules/Get.it.xml new file mode 100644 index 000000000000..88968e510802 --- /dev/null +++ b/src/chrome/content/rules/Get.it.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/GetAwayGrey.xml b/src/chrome/content/rules/GetAwayGrey.xml index 6ac970cea012..2b300046f446 100644 --- a/src/chrome/content/rules/GetAwayGrey.xml +++ b/src/chrome/content/rules/GetAwayGrey.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/GetChef.com.xml b/src/chrome/content/rules/GetChef.com.xml new file mode 100644 index 000000000000..2e606192e21d --- /dev/null +++ b/src/chrome/content/rules/GetChef.com.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/GetChute.com.xml b/src/chrome/content/rules/GetChute.com.xml new file mode 100644 index 000000000000..345354f1080c --- /dev/null +++ b/src/chrome/content/rules/GetChute.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/GetChute.xml b/src/chrome/content/rules/GetChute.xml deleted file mode 100644 index 9c51f0c0bc35..000000000000 --- a/src/chrome/content/rules/GetChute.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/GetClicky.com.xml b/src/chrome/content/rules/GetClicky.com.xml new file mode 100644 index 000000000000..8eaebabbac3c --- /dev/null +++ b/src/chrome/content/rules/GetClicky.com.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/GetCloudApp.com.xml b/src/chrome/content/rules/GetCloudApp.com.xml new file mode 100644 index 000000000000..a25346e3258d --- /dev/null +++ b/src/chrome/content/rules/GetCloudApp.com.xml @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/GetClouder.com.xml b/src/chrome/content/rules/GetClouder.com.xml index 0e8d400e0b36..47208141ed65 100644 --- a/src/chrome/content/rules/GetClouder.com.xml +++ b/src/chrome/content/rules/GetClouder.com.xml @@ -8,7 +8,7 @@ Fetch error: http://tutorials.getclouder.com/ => https://tutorials.getclouder.co Fetch error: http://www.getclouder.com/ => https://www.getclouder.com/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/GetGlue.xml b/src/chrome/content/rules/GetGlue.xml index 996cc7291b96..3db3b54874b4 100644 --- a/src/chrome/content/rules/GetGlue.xml +++ b/src/chrome/content/rules/GetGlue.xml @@ -9,16 +9,13 @@ Fetch error: http://getglue.com/ => https://getglue.com/: (51, "SSL: no alternat - + + - + - - - \ No newline at end of file + diff --git a/src/chrome/content/rules/GetHOW.xml b/src/chrome/content/rules/GetHOW.xml deleted file mode 100644 index 907fe4d15cb4..000000000000 --- a/src/chrome/content/rules/GetHOW.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/GetHarvest.com.xml b/src/chrome/content/rules/GetHarvest.com.xml index 3477b5ba3d74..71bf1c38455d 100644 --- a/src/chrome/content/rules/GetHarvest.com.xml +++ b/src/chrome/content/rules/GetHarvest.com.xml @@ -27,4 +27,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/GetHashing.com.xml b/src/chrome/content/rules/GetHashing.com.xml deleted file mode 100644 index 3ef978cbedc1..000000000000 --- a/src/chrome/content/rules/GetHashing.com.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/GetOutline.org.xml b/src/chrome/content/rules/GetOutline.org.xml new file mode 100644 index 000000000000..908f143313a9 --- /dev/null +++ b/src/chrome/content/rules/GetOutline.org.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/GetPocketbook.com.xml b/src/chrome/content/rules/GetPocketbook.com.xml new file mode 100644 index 000000000000..8a14ae227bcb --- /dev/null +++ b/src/chrome/content/rules/GetPocketbook.com.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/GetResponse.com.xml b/src/chrome/content/rules/GetResponse.com.xml index 0295caec63c7..8edb539fa058 100644 --- a/src/chrome/content/rules/GetResponse.com.xml +++ b/src/chrome/content/rules/GetResponse.com.xml @@ -57,7 +57,16 @@ - + + + + + + + + + + - + diff --git a/src/chrome/content/rules/Get_ASGard.com.xml b/src/chrome/content/rules/Get_ASGard.com.xml index faa77728bb3b..2044bfb0149d 100644 --- a/src/chrome/content/rules/Get_ASGard.com.xml +++ b/src/chrome/content/rules/Get_ASGard.com.xml @@ -12,7 +12,7 @@ Fetch error: http://www.getasgard.com/ => https://www.getasgard.com/: (28, 'Oper - .getasgard.com --> - + @@ -24,7 +24,7 @@ Fetch error: http://www.getasgard.com/ => https://www.getasgard.com/: (28, 'Oper --> - + https://www.getbeagle.co/: (28, 'Connec * Tumblr --> - + diff --git a/src/chrome/content/rules/Get_Chef.com.xml b/src/chrome/content/rules/Get_Chef.com.xml deleted file mode 100644 index 2a79f86e42c2..000000000000 --- a/src/chrome/content/rules/Get_Chef.com.xml +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Get_Clef.com.xml b/src/chrome/content/rules/Get_Clef.com.xml index 5f0953547172..f939a1eefb9e 100644 --- a/src/chrome/content/rules/Get_Clef.com.xml +++ b/src/chrome/content/rules/Get_Clef.com.xml @@ -35,7 +35,7 @@ - + - + - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Get_Safe_Online.xml b/src/chrome/content/rules/Get_Safe_Online.xml index b3c8e85ec329..09f87a9da1d9 100644 --- a/src/chrome/content/rules/Get_Safe_Online.xml +++ b/src/chrome/content/rules/Get_Safe_Online.xml @@ -18,7 +18,7 @@ --> - + - + https://www.getshine.com/: Too many redirects while fetching 'https://www.getshine.com/' --> - + - + diff --git a/src/chrome/content/rules/Get_jaco.com.xml b/src/chrome/content/rules/Get_jaco.com.xml index 8c917e4cd16f..92198d53733b 100644 --- a/src/chrome/content/rules/Get_jaco.com.xml +++ b/src/chrome/content/rules/Get_jaco.com.xml @@ -17,7 +17,7 @@ Fetch error: http://getjaco.com/ => https://getjaco.com/: (28, 'Operation timed * Secured by us --> - + @@ -32,12 +32,7 @@ Fetch error: http://getjaco.com/ => https://getjaco.com/: (28, 'Operation timed - - - - - + - - - - - - - - - diff --git a/src/chrome/content/rules/Getbootstrap.com.xml b/src/chrome/content/rules/Getbootstrap.com.xml deleted file mode 100644 index 8af75d47940c..000000000000 --- a/src/chrome/content/rules/Getbootstrap.com.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Getclicky.xml b/src/chrome/content/rules/Getclicky.xml deleted file mode 100644 index 1a7f694a1c44..000000000000 --- a/src/chrome/content/rules/Getclicky.xml +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Getdigital.de.xml b/src/chrome/content/rules/Getdigital.de.xml index 6002edc024e4..2c92777ab2f2 100644 --- a/src/chrome/content/rules/Getdigital.de.xml +++ b/src/chrome/content/rules/Getdigital.de.xml @@ -1,10 +1,4 @@ - - + - - - - + - + - + diff --git a/src/chrome/content/rules/Getdns_API.net.xml b/src/chrome/content/rules/Getdns_API.net.xml index 5cf0554070fa..7db0dbb1f45f 100644 --- a/src/chrome/content/rules/Getdns_API.net.xml +++ b/src/chrome/content/rules/Getdns_API.net.xml @@ -6,7 +6,7 @@ - + + + + + + + + diff --git a/src/chrome/content/rules/Getgo.de.xml b/src/chrome/content/rules/Getgo.de.xml new file mode 100644 index 000000000000..60ee27dcb23e --- /dev/null +++ b/src/chrome/content/rules/Getgo.de.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Getgo.xml b/src/chrome/content/rules/Getgo.xml deleted file mode 100644 index 06f8cb973a42..000000000000 --- a/src/chrome/content/rules/Getgo.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Getify.com.xml b/src/chrome/content/rules/Getify.com.xml deleted file mode 100644 index bc63613a8e4d..000000000000 --- a/src/chrome/content/rules/Getify.com.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Getname.ru.xml b/src/chrome/content/rules/Getname.ru.xml deleted file mode 100644 index 616ea493b19b..000000000000 --- a/src/chrome/content/rules/Getname.ru.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/Getprice.xml b/src/chrome/content/rules/Getprice.xml index 623b96a9776d..bd99664db251 100644 --- a/src/chrome/content/rules/Getprice.xml +++ b/src/chrome/content/rules/Getprice.xml @@ -5,4 +5,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Getsatisfaction.com.xml b/src/chrome/content/rules/Getsatisfaction.com.xml index 6b7b3d2e2dec..57f30371f2db 100644 --- a/src/chrome/content/rules/Getsatisfaction.com.xml +++ b/src/chrome/content/rules/Getsatisfaction.com.xml @@ -53,7 +53,7 @@ Fetch error: http://info.getsatisfaction.com/ => https://info.getsatisfaction.co * Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -112,7 +112,7 @@ Fetch error: http://info.getsatisfaction.com/ => https://info.getsatisfaction.co - + - + + https://secure.stage-gett ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -528,7 +528,7 @@ Fetch error: http://secure.stage-gettyimages.co.nz/ => https://secure.stage-gett - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Gfycat.com.xml b/src/chrome/content/rules/Gfycat.com.xml index 5494f1083231..5d88f661370a 100644 --- a/src/chrome/content/rules/Gfycat.com.xml +++ b/src/chrome/content/rules/Gfycat.com.xml @@ -11,7 +11,7 @@ - + diff --git a/src/chrome/content/rules/Ghazali.org.xml b/src/chrome/content/rules/Ghazali.org.xml new file mode 100644 index 000000000000..4bcc7615c8f2 --- /dev/null +++ b/src/chrome/content/rules/Ghazali.org.xml @@ -0,0 +1,10 @@ + + + + + + + diff --git a/src/chrome/content/rules/Ghbtns.com.xml b/src/chrome/content/rules/Ghbtns.com.xml deleted file mode 100644 index 8f455685893b..000000000000 --- a/src/chrome/content/rules/Ghbtns.com.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Ghidra-SRE.org.xml b/src/chrome/content/rules/Ghidra-SRE.org.xml new file mode 100644 index 000000000000..7e13126d3943 --- /dev/null +++ b/src/chrome/content/rules/Ghidra-SRE.org.xml @@ -0,0 +1,9 @@ + + + + + + + diff --git a/src/chrome/content/rules/Ghirardelligiftguides.com.xml b/src/chrome/content/rules/Ghirardelligiftguides.com.xml index 9fbed3f4a994..7317433bdb31 100644 --- a/src/chrome/content/rules/Ghirardelligiftguides.com.xml +++ b/src/chrome/content/rules/Ghirardelligiftguides.com.xml @@ -7,7 +7,7 @@ Fetch error: http://www.ghirardelligiftguides.com/ => https://www.ghirardelligif Disabled by https-everywhere-checker because: Fetch error: http://ghirardelligiftguides.com/ => https://ghirardelligiftguides.com/: (51, "SSL: no alternative certificate subject name matches target host name 'ghirardelligiftguides.com'") --> - + diff --git a/src/chrome/content/rules/Ghisler.com.xml b/src/chrome/content/rules/Ghisler.com.xml new file mode 100644 index 000000000000..713e6bd7d003 --- /dev/null +++ b/src/chrome/content/rules/Ghisler.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Ghost.org.xml b/src/chrome/content/rules/Ghost.org.xml index 0570abce3594..37d592e5f00b 100644 --- a/src/chrome/content/rules/Ghost.org.xml +++ b/src/chrome/content/rules/Ghost.org.xml @@ -1,33 +1,44 @@ - + - - - + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - + diff --git a/src/chrome/content/rules/Ghostscript.com.xml b/src/chrome/content/rules/Ghostscript.com.xml new file mode 100644 index 000000000000..1ff039f1a1e1 --- /dev/null +++ b/src/chrome/content/rules/Ghostscript.com.xml @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Giant_Bomb.com.xml b/src/chrome/content/rules/Giant_Bomb.com.xml index d371cc77345f..d4bd8acb7910 100644 --- a/src/chrome/content/rules/Giant_Bomb.com.xml +++ b/src/chrome/content/rules/Giant_Bomb.com.xml @@ -1,49 +1,15 @@ - - - - - - - - - - - - - - - - + + - + - + diff --git a/src/chrome/content/rules/Giardini.biz.xml b/src/chrome/content/rules/Giardini.biz.xml new file mode 100644 index 000000000000..52b4adcb1573 --- /dev/null +++ b/src/chrome/content/rules/Giardini.biz.xml @@ -0,0 +1,11 @@ + + + + + + diff --git a/src/chrome/content/rules/GiftedandTalented.com.xml b/src/chrome/content/rules/GiftedandTalented.com.xml index 5f5cc0a95cce..5b8c7ba39e1c 100644 --- a/src/chrome/content/rules/GiftedandTalented.com.xml +++ b/src/chrome/content/rules/GiftedandTalented.com.xml @@ -24,7 +24,7 @@ --> - + - + https://gigasize.com/: (60, 'SSL certificat Fetch error: http://www.gigasize.com/ => https://www.gigasize.com/: (60, 'SSL certificate problem: certificate has expired') --> - + - + diff --git a/src/chrome/content/rules/Gigabyte.cn.xml b/src/chrome/content/rules/Gigabyte.cn.xml new file mode 100644 index 000000000000..29b38f11243c --- /dev/null +++ b/src/chrome/content/rules/Gigabyte.cn.xml @@ -0,0 +1,21 @@ + + + + + + + diff --git a/src/chrome/content/rules/Gigabyte.com.xml b/src/chrome/content/rules/Gigabyte.com.xml index ce9df4936134..e49ca311805f 100644 --- a/src/chrome/content/rules/Gigabyte.com.xml +++ b/src/chrome/content/rules/Gigabyte.com.xml @@ -1,165 +1,153 @@ - - + + - - + + + + + + + + + + + + - + - - - - + diff --git a/src/chrome/content/rules/Gigabyte.us.xml b/src/chrome/content/rules/Gigabyte.us.xml new file mode 100644 index 000000000000..01da3ca162f1 --- /dev/null +++ b/src/chrome/content/rules/Gigabyte.us.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Gigaclear.com.xml b/src/chrome/content/rules/Gigaclear.com.xml index 3b055affea50..51808cd487d0 100644 --- a/src/chrome/content/rules/Gigaclear.com.xml +++ b/src/chrome/content/rules/Gigaclear.com.xml @@ -7,7 +7,7 @@ - + https://gigantic.com/: Redirect for 'http:/ - dashboard (shows default CentOS page) --> - + @@ -18,9 +18,9 @@ Fetch error: http://gigantic.com/ => https://gigantic.com/: Redirect for 'http:/ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Gigantti.fi.xml b/src/chrome/content/rules/Gigantti.fi.xml index 6f7c8b94aaa4..3ed007d334b3 100644 --- a/src/chrome/content/rules/Gigantti.fi.xml +++ b/src/chrome/content/rules/Gigantti.fi.xml @@ -1,7 +1,7 @@ - + diff --git a/src/chrome/content/rules/Gigaserver.xml b/src/chrome/content/rules/Gigaserver.xml index 23731952c322..63c78a4e2f1f 100644 --- a/src/chrome/content/rules/Gigaserver.xml +++ b/src/chrome/content/rules/Gigaserver.xml @@ -15,10 +15,9 @@ Seonet-Multimedia.xml --> - - + - + diff --git a/src/chrome/content/rules/Gihyo.jp.xml b/src/chrome/content/rules/Gihyo.jp.xml index 163165b6bc7d..dd56097151e4 100644 --- a/src/chrome/content/rules/Gihyo.jp.xml +++ b/src/chrome/content/rules/Gihyo.jp.xml @@ -11,7 +11,7 @@ Fetch error: http://www.gihyo.jp/ => https://gihyo/: (6, 'Could not resolve host - gihyo.jp --> - + diff --git a/src/chrome/content/rules/GijsK.com.xml b/src/chrome/content/rules/GijsK.com.xml new file mode 100644 index 000000000000..9b37168aee27 --- /dev/null +++ b/src/chrome/content/rules/GijsK.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/GileadHIV.com.xml b/src/chrome/content/rules/GileadHIV.com.xml new file mode 100644 index 000000000000..ba0195463b66 --- /dev/null +++ b/src/chrome/content/rules/GileadHIV.com.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Gimme_Bar.com.xml b/src/chrome/content/rules/Gimme_Bar.com.xml deleted file mode 100644 index 0334553c6ef4..000000000000 --- a/src/chrome/content/rules/Gimme_Bar.com.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Gimmickwear.xml b/src/chrome/content/rules/Gimmickwear.xml index 008551743e2f..dea23a4c44a8 100644 --- a/src/chrome/content/rules/Gimmickwear.xml +++ b/src/chrome/content/rules/Gimmickwear.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/GinjFo.com.xml b/src/chrome/content/rules/GinjFo.com.xml new file mode 100644 index 000000000000..969d513e0a01 --- /dev/null +++ b/src/chrome/content/rules/GinjFo.com.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Gionn.net.xml b/src/chrome/content/rules/Gionn.net.xml index 592182bc49f0..53483a945305 100644 --- a/src/chrome/content/rules/Gionn.net.xml +++ b/src/chrome/content/rules/Gionn.net.xml @@ -1,11 +1,9 @@ @@ -13,20 +11,11 @@ --> - - - - - - - - + diff --git a/src/chrome/content/rules/Girl_Scouts.xml b/src/chrome/content/rules/Girl_Scouts.xml index b160aaae85e0..c866dda1ca41 100644 --- a/src/chrome/content/rules/Girl_Scouts.xml +++ b/src/chrome/content/rules/Girl_Scouts.xml @@ -1,29 +1,25 @@ - + - - - + diff --git a/src/chrome/content/rules/GirlsChannel.net.xml b/src/chrome/content/rules/GirlsChannel.net.xml new file mode 100644 index 000000000000..1c5da27de335 --- /dev/null +++ b/src/chrome/content/rules/GirlsChannel.net.xml @@ -0,0 +1,13 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Girls_Out_West.com.xml b/src/chrome/content/rules/Girls_Out_West.com.xml index d985191dc91e..5904b332840e 100644 --- a/src/chrome/content/rules/Girls_Out_West.com.xml +++ b/src/chrome/content/rules/Girls_Out_West.com.xml @@ -76,7 +76,7 @@ - + https://gistmarks.com/: (7, 'Failed to connect to gistmarks.com port 443: Connection refused') -Fetch error: http://www.gistmarks.com/ => https://www.gistmarks.com/: (7, 'Failed to connect to www.gistmarks.com port 443: Connection refused') - ---> - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Git.io.xml b/src/chrome/content/rules/Git.io.xml index b4b930628a51..edcb7c8a763e 100644 --- a/src/chrome/content/rules/Git.io.xml +++ b/src/chrome/content/rules/Git.io.xml @@ -5,7 +5,7 @@ - + + + + + + + + + + + diff --git a/src/chrome/content/rules/GitCDN.xyz.xml b/src/chrome/content/rules/GitCDN.xyz.xml new file mode 100644 index 000000000000..8a3c8077687b --- /dev/null +++ b/src/chrome/content/rules/GitCDN.xyz.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/GitFoo.com.xml b/src/chrome/content/rules/GitFoo.com.xml new file mode 100644 index 000000000000..1f371d6a051e --- /dev/null +++ b/src/chrome/content/rules/GitFoo.com.xml @@ -0,0 +1,12 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/GitGud.io.xml b/src/chrome/content/rules/GitGud.io.xml new file mode 100644 index 000000000000..57327cfbda07 --- /dev/null +++ b/src/chrome/content/rules/GitGud.io.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/GitHub.xml b/src/chrome/content/rules/GitHub.xml new file mode 100644 index 000000000000..6d48b0a203d4 --- /dev/null +++ b/src/chrome/content/rules/GitHub.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/GitLab.com.xml b/src/chrome/content/rules/GitLab.com.xml index 6821f3901631..990245b91ad1 100644 --- a/src/chrome/content/rules/GitLab.com.xml +++ b/src/chrome/content/rules/GitLab.com.xml @@ -49,7 +49,7 @@ --> - + - + + + + + + + + + + + diff --git a/src/chrome/content/rules/Github-Pages.xml b/src/chrome/content/rules/Github-Pages.xml index 4bb9136d5524..86c627e10fb5 100644 --- a/src/chrome/content/rules/Github-Pages.xml +++ b/src/chrome/content/rules/Github-Pages.xml @@ -5,35 +5,29 @@ - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - + diff --git a/src/chrome/content/rules/Github.xml b/src/chrome/content/rules/Github.xml deleted file mode 100644 index 682e9b41fb85..000000000000 --- a/src/chrome/content/rules/Github.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Githubstats.com.xml b/src/chrome/content/rules/Githubstats.com.xml deleted file mode 100644 index d8740491208d..000000000000 --- a/src/chrome/content/rules/Githubstats.com.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/Gitorious.xml b/src/chrome/content/rules/Gitorious.xml deleted file mode 100644 index 7a135644243c..000000000000 --- a/src/chrome/content/rules/Gitorious.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Gitter.im.xml b/src/chrome/content/rules/Gitter.im.xml index 3940fdd9a719..2ded4faa46e8 100644 --- a/src/chrome/content/rules/Gitter.im.xml +++ b/src/chrome/content/rules/Gitter.im.xml @@ -49,7 +49,7 @@ --> - + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Gittigidiyor.xml b/src/chrome/content/rules/Gittigidiyor.xml deleted file mode 100644 index ada31fc78a9f..000000000000 --- a/src/chrome/content/rules/Gittigidiyor.xml +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Gittip.com.xml b/src/chrome/content/rules/Gittip.com.xml deleted file mode 100644 index e19666d0a958..000000000000 --- a/src/chrome/content/rules/Gittip.com.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Give-Kids-the-World.xml b/src/chrome/content/rules/Give-Kids-the-World.xml index 5d710546afeb..9d85fda672ff 100644 --- a/src/chrome/content/rules/Give-Kids-the-World.xml +++ b/src/chrome/content/rules/Give-Kids-the-World.xml @@ -27,21 +27,19 @@ Fetch error: http://secure.gktw.org/ => https://secure.gktw.org/: (60, 'SSL cert ** The ruleset redirects givekidstheworldstore.org to www.givekidstheworldstore.org; both appear to have the same content. --> - + - + - + - + diff --git a/src/chrome/content/rules/GiveDirect.xml b/src/chrome/content/rules/GiveDirect.xml index ff188cccc3a8..e77f7e0015a9 100644 --- a/src/chrome/content/rules/GiveDirect.xml +++ b/src/chrome/content/rules/GiveDirect.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Givex.xml b/src/chrome/content/rules/Givex.xml index acd01883f360..5af3b1564c03 100644 --- a/src/chrome/content/rules/Givex.xml +++ b/src/chrome/content/rules/Givex.xml @@ -29,4 +29,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/GivingPrograms.com.xml b/src/chrome/content/rules/GivingPrograms.com.xml index 9240f799c8db..c92909fd3c2f 100644 --- a/src/chrome/content/rules/GivingPrograms.com.xml +++ b/src/chrome/content/rules/GivingPrograms.com.xml @@ -8,7 +8,7 @@ Fetch error: http://givingprograms.com/ => https://givingprograms.com/: (60, 'SS Mixed css from amerigives.com (expired 2013-03-08) --> - + @@ -16,9 +16,9 @@ Fetch error: http://givingprograms.com/ => https://givingprograms.com/: (60, 'SS - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Gizmodo.com.xml b/src/chrome/content/rules/Gizmodo.com.xml deleted file mode 100644 index 9919285962b1..000000000000 --- a/src/chrome/content/rules/Gizmodo.com.xml +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Glam.xml b/src/chrome/content/rules/Glam.xml index fd92c8f4a416..fa255ecae8d1 100644 --- a/src/chrome/content/rules/Glam.xml +++ b/src/chrome/content/rules/Glam.xml @@ -45,7 +45,7 @@ Fetch error: http://swww2.glam.com/ => https://swww2.glam.com/: (28, 'Operation * → akamai --> - + diff --git a/src/chrome/content/rules/Glamorous_UK.xml b/src/chrome/content/rules/Glamorous_UK.xml index f5d8002ff345..62297f02afbc 100644 --- a/src/chrome/content/rules/Glamorous_UK.xml +++ b/src/chrome/content/rules/Glamorous_UK.xml @@ -8,10 +8,10 @@ Fetch error: http://glamorousuk.com/ => https://glamorousuk.com/: (51, "SSL: no Cert only matches glamorousuk.com. --> - + - + diff --git a/src/chrome/content/rules/Glasgow.gov.uk.xml b/src/chrome/content/rules/Glasgow.gov.uk.xml index eef9f6f07e6f..11f4e3cd787b 100644 --- a/src/chrome/content/rules/Glasgow.gov.uk.xml +++ b/src/chrome/content/rules/Glasgow.gov.uk.xml @@ -1,61 +1,81 @@ - - - + - - - + + + + + + + + + + + + - - - - - - - - - + diff --git a/src/chrome/content/rules/Glasses.com.xml b/src/chrome/content/rules/Glasses.com.xml index d7ceb11ee89c..996fa5aaa6d7 100644 --- a/src/chrome/content/rules/Glasses.com.xml +++ b/src/chrome/content/rules/Glasses.com.xml @@ -6,7 +6,7 @@ Fetch error: http://media.glasses.com/ => https://media.glasses.com/: (60, 'SSL Some pages redirect to http. --> - + @@ -16,4 +16,4 @@ Fetch error: http://media.glasses.com/ => https://media.glasses.com/: (60, 'SSL - \ No newline at end of file + diff --git a/src/chrome/content/rules/Gleam.io.xml b/src/chrome/content/rules/Gleam.io.xml new file mode 100644 index 000000000000..ef4e26d51195 --- /dev/null +++ b/src/chrome/content/rules/Gleam.io.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Gleam.xml b/src/chrome/content/rules/Gleam.xml deleted file mode 100644 index 961744de5a0c..000000000000 --- a/src/chrome/content/rules/Gleam.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/GlenScott.xml b/src/chrome/content/rules/GlenScott.xml index a3bffd894a1c..811242d4a06a 100644 --- a/src/chrome/content/rules/GlenScott.xml +++ b/src/chrome/content/rules/GlenScott.xml @@ -2,7 +2,7 @@ - + diff --git a/src/chrome/content/rules/Glenoit.com.xml b/src/chrome/content/rules/Glenoit.com.xml deleted file mode 100644 index 2afb70f2672c..000000000000 --- a/src/chrome/content/rules/Glenoit.com.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/GlimmerBlocker.org.xml b/src/chrome/content/rules/GlimmerBlocker.org.xml index ec0fb5ddef98..4cb042b2c601 100644 --- a/src/chrome/content/rules/GlimmerBlocker.org.xml +++ b/src/chrome/content/rules/GlimmerBlocker.org.xml @@ -8,7 +8,7 @@ --> - + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/chrome/content/rules/GlobaLeaks.org.xml b/src/chrome/content/rules/GlobaLeaks.org.xml deleted file mode 100644 index cb9ac275ac39..000000000000 --- a/src/chrome/content/rules/GlobaLeaks.org.xml +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Global-Footprint-Network.xml b/src/chrome/content/rules/Global-Footprint-Network.xml index 36930b891b47..0b2094888b3b 100644 --- a/src/chrome/content/rules/Global-Footprint-Network.xml +++ b/src/chrome/content/rules/Global-Footprint-Network.xml @@ -4,7 +4,7 @@ - + diff --git a/src/chrome/content/rules/Global-Investor-Relations.xml b/src/chrome/content/rules/Global-Investor-Relations.xml index ce6f7be6379a..2f949cf2c04e 100644 --- a/src/chrome/content/rules/Global-Investor-Relations.xml +++ b/src/chrome/content/rules/Global-Investor-Relations.xml @@ -9,7 +9,7 @@ - + diff --git a/src/chrome/content/rules/Global-Marine-Networks.xml b/src/chrome/content/rules/Global-Marine-Networks.xml index 74a8b4a1e9e7..2b196f1a14b1 100644 --- a/src/chrome/content/rules/Global-Marine-Networks.xml +++ b/src/chrome/content/rules/Global-Marine-Networks.xml @@ -16,15 +16,15 @@ Fetch error: http://www.globalmarinenet.com/ => https://www.globalmarinenet.com/ - web (ditto) --> - + - - + + diff --git a/src/chrome/content/rules/Global-Marketing-Strategies.xml b/src/chrome/content/rules/Global-Marketing-Strategies.xml index eccf3273fd63..881ca7555db3 100644 --- a/src/chrome/content/rules/Global-Marketing-Strategies.xml +++ b/src/chrome/content/rules/Global-Marketing-Strategies.xml @@ -18,7 +18,7 @@ Fetch error: http://www.howtowriteabookasap.com/ => https://www.howtowriteabooka - Trust-Guard.com.xml --> - + @@ -39,19 +39,6 @@ Fetch error: http://www.howtowriteabookasap.com/ => https://www.howtowriteabooka - - - - - - - - - + diff --git a/src/chrome/content/rules/Global-Witness.xml b/src/chrome/content/rules/Global-Witness.xml deleted file mode 100644 index 528ea0398aae..000000000000 --- a/src/chrome/content/rules/Global-Witness.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/GlobalConnect.dk.xml b/src/chrome/content/rules/GlobalConnect.dk.xml new file mode 100644 index 000000000000..10ef10e41ab8 --- /dev/null +++ b/src/chrome/content/rules/GlobalConnect.dk.xml @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/GlobalSign.xml b/src/chrome/content/rules/GlobalSign.xml index 1334385cc1fa..090cd473eacf 100644 --- a/src/chrome/content/rules/GlobalSign.xml +++ b/src/chrome/content/rules/GlobalSign.xml @@ -83,6 +83,6 @@ - diff --git a/src/chrome/content/rules/GlobalTestSupply.com.xml b/src/chrome/content/rules/GlobalTestSupply.com.xml index ee555f2bff55..ccbca9dd0b7f 100644 --- a/src/chrome/content/rules/GlobalTestSupply.com.xml +++ b/src/chrome/content/rules/GlobalTestSupply.com.xml @@ -8,7 +8,7 @@ - diff --git a/src/chrome/content/rules/Global_Bersih.xml b/src/chrome/content/rules/Global_Bersih.xml index e9b8de659d78..760014cdc122 100644 --- a/src/chrome/content/rules/Global_Bersih.xml +++ b/src/chrome/content/rules/Global_Bersih.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Global_Cloud_Xchange.com.xml b/src/chrome/content/rules/Global_Cloud_Xchange.com.xml index 74574a861262..3c32a3d5cc32 100644 --- a/src/chrome/content/rules/Global_Cloud_Xchange.com.xml +++ b/src/chrome/content/rules/Global_Cloud_Xchange.com.xml @@ -28,7 +28,7 @@ Fetch error: http://cdn.globalcloudxchange.com/ => https://d6v3rabjzlopt.cloudfr ² Insecure renegotiation --> - + diff --git a/src/chrome/content/rules/Global_Network.pl.xml b/src/chrome/content/rules/Global_Network.pl.xml index ca57fc1b9727..f2080d5c6630 100644 --- a/src/chrome/content/rules/Global_Network.pl.xml +++ b/src/chrome/content/rules/Global_Network.pl.xml @@ -16,7 +16,7 @@ Fetch error: http://www.globalnetwork.pl/ => https://globalnetwork.pl/: (60, 'SS - (www.)? (www → ^) --> - + diff --git a/src/chrome/content/rules/Global_Network_Initiative.org.xml b/src/chrome/content/rules/Global_Network_Initiative.org.xml index 76386b4839b7..5279f9d1d6cf 100644 --- a/src/chrome/content/rules/Global_Network_Initiative.org.xml +++ b/src/chrome/content/rules/Global_Network_Initiative.org.xml @@ -1,13 +1,5 @@ - - - - diff --git a/src/chrome/content/rules/Global_Perspectives_Canada.xml b/src/chrome/content/rules/Global_Perspectives_Canada.xml deleted file mode 100644 index ca94e9ffa70c..000000000000 --- a/src/chrome/content/rules/Global_Perspectives_Canada.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Global_Policy_Forum.xml b/src/chrome/content/rules/Global_Policy_Forum.xml index 84064f22c7ca..69a402c075fb 100644 --- a/src/chrome/content/rules/Global_Policy_Forum.xml +++ b/src/chrome/content/rules/Global_Policy_Forum.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Global_Promote.xml b/src/chrome/content/rules/Global_Promote.xml index 71ea60a731ec..9e399a67f824 100644 --- a/src/chrome/content/rules/Global_Promote.xml +++ b/src/chrome/content/rules/Global_Promote.xml @@ -14,4 +14,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Global_Sources.xml b/src/chrome/content/rules/Global_Sources.xml index 22220ebdda10..e42f487b7abe 100644 --- a/src/chrome/content/rules/Global_Sources.xml +++ b/src/chrome/content/rules/Global_Sources.xml @@ -25,10 +25,12 @@ Fetch error: http://globalsources.com/ => https://www.globalsources.com/: (51, " p serves images only. --> - + - + + + @@ -37,7 +39,6 @@ Fetch error: http://globalsources.com/ => https://www.globalsources.com/: (51, " - + diff --git a/src/chrome/content/rules/Global_Trade_Day.org.xml b/src/chrome/content/rules/Global_Trade_Day.org.xml deleted file mode 100644 index 149cac7844eb..000000000000 --- a/src/chrome/content/rules/Global_Trade_Day.org.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Global_Voices_Online.org.xml b/src/chrome/content/rules/Global_Voices_Online.org.xml index 0034bf48ea22..404afd3423e9 100644 --- a/src/chrome/content/rules/Global_Voices_Online.org.xml +++ b/src/chrome/content/rules/Global_Voices_Online.org.xml @@ -85,14 +85,41 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + diff --git a/src/chrome/content/rules/Global_Web.co.uk.xml b/src/chrome/content/rules/Global_Web.co.uk.xml index 8fd5ebe13c30..31bab0ddf256 100644 --- a/src/chrome/content/rules/Global_Web.co.uk.xml +++ b/src/chrome/content/rules/Global_Web.co.uk.xml @@ -14,7 +14,7 @@ - + - + diff --git a/src/chrome/content/rules/Globalscaletechnologies.com.xml b/src/chrome/content/rules/Globalscaletechnologies.com.xml index 35a4e9d3fcc4..bfafd53dfa96 100644 --- a/src/chrome/content/rules/Globalscaletechnologies.com.xml +++ b/src/chrome/content/rules/Globalscaletechnologies.com.xml @@ -4,7 +4,7 @@ - + diff --git a/src/chrome/content/rules/Globaltap.com.xml b/src/chrome/content/rules/Globaltap.com.xml index 5892236a0c50..f9af471e2386 100644 --- a/src/chrome/content/rules/Globaltap.com.xml +++ b/src/chrome/content/rules/Globaltap.com.xml @@ -20,4 +20,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Globat.com.xml b/src/chrome/content/rules/Globat.com.xml new file mode 100644 index 000000000000..d368f2787bc5 --- /dev/null +++ b/src/chrome/content/rules/Globat.com.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Globat.xml b/src/chrome/content/rules/Globat.xml deleted file mode 100644 index 799529991847..000000000000 --- a/src/chrome/content/rules/Globat.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Globes.xml b/src/chrome/content/rules/Globes.xml index b714cd642344..c72a28472150 100644 --- a/src/chrome/content/rules/Globes.xml +++ b/src/chrome/content/rules/Globes.xml @@ -23,4 +23,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Globus-Online.xml b/src/chrome/content/rules/Globus-Online.xml index 23ca3943fb23..9a82e44b7b8e 100644 --- a/src/chrome/content/rules/Globus-Online.xml +++ b/src/chrome/content/rules/Globus-Online.xml @@ -11,7 +11,7 @@ - + diff --git a/src/chrome/content/rules/Globus.ch.xml b/src/chrome/content/rules/Globus.ch.xml new file mode 100644 index 000000000000..f50b484acab7 --- /dev/null +++ b/src/chrome/content/rules/Globus.ch.xml @@ -0,0 +1,12 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Globus.xml b/src/chrome/content/rules/Globus.xml index abcb524ef2d0..bab645c3fc1d 100644 --- a/src/chrome/content/rules/Globus.xml +++ b/src/chrome/content/rules/Globus.xml @@ -14,10 +14,9 @@ - + - + diff --git a/src/chrome/content/rules/Gloucestershire.gov.uk.xml b/src/chrome/content/rules/Gloucestershire.gov.uk.xml index 76a16d1db864..4819af656bf3 100644 --- a/src/chrome/content/rules/Gloucestershire.gov.uk.xml +++ b/src/chrome/content/rules/Gloucestershire.gov.uk.xml @@ -1,103 +1,29 @@ - - - + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + diff --git a/src/chrome/content/rules/Gluster.org.xml b/src/chrome/content/rules/Gluster.org.xml index 42ddee4bbd1a..906471ea8557 100644 --- a/src/chrome/content/rules/Gluster.org.xml +++ b/src/chrome/content/rules/Gluster.org.xml @@ -13,7 +13,7 @@ Fetch error: http://forge.gluster.org/ => https://forge.gluster.org/: (6, 'Could - forge --> - + diff --git a/src/chrome/content/rules/Glype.xml b/src/chrome/content/rules/Glype.xml index 34144bdc22cb..d7f48f53107b 100644 --- a/src/chrome/content/rules/Glype.xml +++ b/src/chrome/content/rules/Glype.xml @@ -6,7 +6,7 @@ - + diff --git a/src/chrome/content/rules/Glyph.im.xml b/src/chrome/content/rules/Glyph.im.xml index 73c5d6397c32..b2b3edec48f8 100644 --- a/src/chrome/content/rules/Glyph.im.xml +++ b/src/chrome/content/rules/Glyph.im.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.glyph.im/ => https://www.glyph.im/: (51, "SSL: no alternative certificate subject name matches target host name 'www.glyph.im'") --> - + diff --git a/src/chrome/content/rules/Gmedianetworks.com.xml b/src/chrome/content/rules/Gmedianetworks.com.xml deleted file mode 100644 index 7119f72f33ce..000000000000 --- a/src/chrome/content/rules/Gmedianetworks.com.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Gml.cz.xml b/src/chrome/content/rules/Gml.cz.xml index 91408c0c4f02..68a7b6e749fc 100644 --- a/src/chrome/content/rules/Gml.cz.xml +++ b/src/chrome/content/rules/Gml.cz.xml @@ -1,10 +1,16 @@ + - - - + + + diff --git a/src/chrome/content/rules/Gna.xml b/src/chrome/content/rules/Gna.xml index 512e276a61d4..6255f33c975b 100644 --- a/src/chrome/content/rules/Gna.xml +++ b/src/chrome/content/rules/Gna.xml @@ -12,7 +12,7 @@ NB: server sends no certificate chain, see https://whatsmychaincert.com --> - + diff --git a/src/chrome/content/rules/Gngr.info.xml b/src/chrome/content/rules/Gngr.info.xml index f296a189ee77..42369061a300 100644 --- a/src/chrome/content/rules/Gngr.info.xml +++ b/src/chrome/content/rules/Gngr.info.xml @@ -5,7 +5,8 @@ - + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/GnuPG.com.xml b/src/chrome/content/rules/GnuPG.com.xml new file mode 100644 index 000000000000..fd8694281751 --- /dev/null +++ b/src/chrome/content/rules/GnuPG.com.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/GnuPG.org.xml b/src/chrome/content/rules/GnuPG.org.xml index 3c25479c127d..4a50f1b5db1a 100644 --- a/src/chrome/content/rules/GnuPG.org.xml +++ b/src/chrome/content/rules/GnuPG.org.xml @@ -1,29 +1,48 @@ + + - + + + + + - + - + diff --git a/src/chrome/content/rules/GnuTLS.org.xml b/src/chrome/content/rules/GnuTLS.org.xml index 1fc693258ae1..4ebcdd7ae3aa 100644 --- a/src/chrome/content/rules/GnuTLS.org.xml +++ b/src/chrome/content/rules/GnuTLS.org.xml @@ -1,27 +1,22 @@ - + - - - - - + diff --git a/src/chrome/content/rules/GoAbroad.com.xml b/src/chrome/content/rules/GoAbroad.com.xml deleted file mode 100644 index 05b638c1e81c..000000000000 --- a/src/chrome/content/rules/GoAbroad.com.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/GoAruna.com.xml b/src/chrome/content/rules/GoAruna.com.xml index 8b04ea6ff707..cc7e10278910 100644 --- a/src/chrome/content/rules/GoAruna.com.xml +++ b/src/chrome/content/rules/GoAruna.com.xml @@ -13,7 +13,7 @@ - + @@ -27,4 +27,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/GoDaddy.xml b/src/chrome/content/rules/GoDaddy.xml index 94db61abd119..305ee7cf306d 100644 --- a/src/chrome/content/rules/GoDaddy.xml +++ b/src/chrome/content/rules/GoDaddy.xml @@ -1,11 +1,13 @@ + + diff --git a/src/chrome/content/rules/GoDaddy_mobile.com.xml b/src/chrome/content/rules/GoDaddy_mobile.com.xml index 4ee31bee388e..fbe4a5f1ead2 100644 --- a/src/chrome/content/rules/GoDaddy_mobile.com.xml +++ b/src/chrome/content/rules/GoDaddy_mobile.com.xml @@ -16,7 +16,7 @@ Non-2xx HTTP code: http://godaddymobile.com/ (200) => https://godaddymobile.com/ - .godaddymobile.com --> - + diff --git a/src/chrome/content/rules/GoExplore.net.xml b/src/chrome/content/rules/GoExplore.net.xml index 31a291ee4f96..97956ea31bac 100644 --- a/src/chrome/content/rules/GoExplore.net.xml +++ b/src/chrome/content/rules/GoExplore.net.xml @@ -12,11 +12,11 @@ Fetch error: http://static.goexplore.net/ => https://static.goexplore.net/: (60, - ESET_static.com.xml - Sicontact.at.xml --> - + - + - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/GoToAssist.com.xml b/src/chrome/content/rules/GoToAssist.com.xml index ee976d5157da..6e7df7635b30 100644 --- a/src/chrome/content/rules/GoToAssist.com.xml +++ b/src/chrome/content/rules/GoToAssist.com.xml @@ -23,7 +23,7 @@ --> - + - + - + - + - + - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Go_Turkey.com.xml b/src/chrome/content/rules/Go_Turkey.com.xml index 30f9c2f8cf95..e7220b09f9d6 100644 --- a/src/chrome/content/rules/Go_Turkey.com.xml +++ b/src/chrome/content/rules/Go_Turkey.com.xml @@ -11,7 +11,7 @@ Fetch error: http://www.goturkey.com/ => https://www.goturkey.com/: (35, 'Unknow * Secured by us --> - + diff --git a/src/chrome/content/rules/Go_Walker.org.xml b/src/chrome/content/rules/Go_Walker.org.xml index 220873cffc64..7c518508351a 100644 --- a/src/chrome/content/rules/Go_Walker.org.xml +++ b/src/chrome/content/rules/Go_Walker.org.xml @@ -27,7 +27,7 @@ --> - + - - - - - - - - - - - diff --git a/src/chrome/content/rules/Goaldet.com.xml b/src/chrome/content/rules/Goaldet.com.xml deleted file mode 100644 index 7d8149fa66ac..000000000000 --- a/src/chrome/content/rules/Goaldet.com.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Gocontigo.com.xml b/src/chrome/content/rules/Gocontigo.com.xml new file mode 100644 index 000000000000..563c78dba9b9 --- /dev/null +++ b/src/chrome/content/rules/Gocontigo.com.xml @@ -0,0 +1,14 @@ + + + + + + + + diff --git a/src/chrome/content/rules/GodPraksis.no.xml b/src/chrome/content/rules/GodPraksis.no.xml index 1740fdf73697..76e237bfec71 100644 --- a/src/chrome/content/rules/GodPraksis.no.xml +++ b/src/chrome/content/rules/GodPraksis.no.xml @@ -5,7 +5,7 @@ Fetch error: http://godpraksis.no/ => https://godpraksis.no/: (7, 'Failed to con Fetch error: http://www.godpraksis.no/ => https://www.godpraksis.no/: (7, 'Failed to connect to www.godpraksis.no port 443: Connection refused') --> - + diff --git a/src/chrome/content/rules/Goddard-Group.xml b/src/chrome/content/rules/Goddard-Group.xml deleted file mode 100644 index 20c95f95ba7b..000000000000 --- a/src/chrome/content/rules/Goddard-Group.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Goeswhere.com.xml b/src/chrome/content/rules/Goeswhere.com.xml index 564c58a73bcb..13483b4996d5 100644 --- a/src/chrome/content/rules/Goeswhere.com.xml +++ b/src/chrome/content/rules/Goeswhere.com.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.goeswhere.com/ => https://www.goeswhere.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.goeswhere.com'") --> - + diff --git a/src/chrome/content/rules/Gogoyoko.xml b/src/chrome/content/rules/Gogoyoko.xml index ba0a59b052b2..5da13f514448 100644 --- a/src/chrome/content/rules/Gogoyoko.xml +++ b/src/chrome/content/rules/Gogoyoko.xml @@ -12,7 +12,7 @@ - + - + diff --git a/src/chrome/content/rules/Goke.me.xml b/src/chrome/content/rules/Goke.me.xml deleted file mode 100644 index 3363b2ef3405..000000000000 --- a/src/chrome/content/rules/Goke.me.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/GoldenSunWiki.net.xml b/src/chrome/content/rules/GoldenSunWiki.net.xml new file mode 100644 index 000000000000..8a7b4c72a180 --- /dev/null +++ b/src/chrome/content/rules/GoldenSunWiki.net.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Golden_Adventures.xml b/src/chrome/content/rules/Golden_Adventures.xml index 348d894ddd48..d33d72cf75e7 100644 --- a/src/chrome/content/rules/Golden_Adventures.xml +++ b/src/chrome/content/rules/Golden_Adventures.xml @@ -11,7 +11,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://goldenadventures.com/ => https://goldenadventures.com/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/Golden_Charter.xml b/src/chrome/content/rules/Golden_Charter.xml index 6d5c1459431b..b6f8d40df8b3 100644 --- a/src/chrome/content/rules/Golden_Charter.xml +++ b/src/chrome/content/rules/Golden_Charter.xml @@ -35,4 +35,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Golden_Frog.com.xml b/src/chrome/content/rules/Golden_Frog.com.xml index 4fe759439707..705173b9f83e 100644 --- a/src/chrome/content/rules/Golden_Frog.com.xml +++ b/src/chrome/content/rules/Golden_Frog.com.xml @@ -39,7 +39,7 @@ Fetch error: http://app.dumptruck.goldenfrog.com/ => https://app.dumptruck.golde - www.goldenfrog.com --> - + diff --git a/src/chrome/content/rules/Goldkeys.net.xml b/src/chrome/content/rules/Goldkeys.net.xml index d66476526422..5c06dbc8f41d 100644 --- a/src/chrome/content/rules/Goldkeys.net.xml +++ b/src/chrome/content/rules/Goldkeys.net.xml @@ -1,33 +1,15 @@ - - - - - - - - - - - - + + + + + + + + diff --git a/src/chrome/content/rules/Goldkeys.org.xml b/src/chrome/content/rules/Goldkeys.org.xml new file mode 100644 index 000000000000..fc7d6fa453f6 --- /dev/null +++ b/src/chrome/content/rules/Goldkeys.org.xml @@ -0,0 +1,12 @@ + + + + + + + diff --git a/src/chrome/content/rules/Goldlit.ru.xml b/src/chrome/content/rules/Goldlit.ru.xml new file mode 100644 index 000000000000..e6c52322f595 --- /dev/null +++ b/src/chrome/content/rules/Goldlit.ru.xml @@ -0,0 +1,12 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Goldmann.pl.xml b/src/chrome/content/rules/Goldmann.pl.xml index 0078b1e09f88..63f048f58aef 100644 --- a/src/chrome/content/rules/Goldmann.pl.xml +++ b/src/chrome/content/rules/Goldmann.pl.xml @@ -16,7 +16,7 @@ Fetch error: http://secure.goldmann.pl/ => https://secure.goldmann.pl/: (6, 'Cou - secure --> - + diff --git a/src/chrome/content/rules/Goldsboro_Web_Development.xml b/src/chrome/content/rules/Goldsboro_Web_Development.xml index 6a549b619dec..55d4ab67968a 100644 --- a/src/chrome/content/rules/Goldsboro_Web_Development.xml +++ b/src/chrome/content/rules/Goldsboro_Web_Development.xml @@ -10,7 +10,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://my.goldsborowebdevelopment.com/ => https://my.goldsborowebdevelopment.com/: (6, 'Could not resolve host: my.goldsborowebdevelopment.com') --> - + diff --git a/src/chrome/content/rules/Goldstar.xml b/src/chrome/content/rules/Goldstar.xml index 92308c7366ae..6c883360af4b 100644 --- a/src/chrome/content/rules/Goldstar.xml +++ b/src/chrome/content/rules/Goldstar.xml @@ -3,28 +3,35 @@ - ^ (cert only matches www) - gifts (mismatched, CN: *.myshopify.com) - + - i.goldstar.com (unresolved) Some pages redirect to http + CDN: + images - i.gse.io + --> - - - - - + + + + + - - - - - - \ No newline at end of file + + + + + diff --git a/src/chrome/content/rules/Golem.de.xml b/src/chrome/content/rules/Golem.de.xml index 6e662d319229..580eee6c786a 100644 --- a/src/chrome/content/rules/Golem.de.xml +++ b/src/chrome/content/rules/Golem.de.xml @@ -1,29 +1,41 @@ - - + + - - - - + @@ -37,27 +49,10 @@ Fetch error: http://dev1.golem.de/ => https://dev1.golem.de/: (60, 'SSL certific - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/GolfLink.com.xml b/src/chrome/content/rules/GolfLink.com.xml index ea1acf8a41f1..7bf914afd3c4 100644 --- a/src/chrome/content/rules/GolfLink.com.xml +++ b/src/chrome/content/rules/GolfLink.com.xml @@ -1,33 +1,14 @@ - - - - - - - - - - - - + + + diff --git a/src/chrome/content/rules/GolfLink.net.xml b/src/chrome/content/rules/GolfLink.net.xml new file mode 100644 index 000000000000..9e646aaf0ea3 --- /dev/null +++ b/src/chrome/content/rules/GolfLink.net.xml @@ -0,0 +1,18 @@ + + + + + + + + diff --git a/src/chrome/content/rules/GolfRev.com.xml b/src/chrome/content/rules/GolfRev.com.xml index 216b39ed1be0..0c81e4bf2ef8 100644 --- a/src/chrome/content/rules/GolfRev.com.xml +++ b/src/chrome/content/rules/GolfRev.com.xml @@ -4,7 +4,7 @@ - + - + diff --git a/src/chrome/content/rules/GoodSmile.info.xml b/src/chrome/content/rules/GoodSmile.info.xml new file mode 100644 index 000000000000..c9b098f80a7a --- /dev/null +++ b/src/chrome/content/rules/GoodSmile.info.xml @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Good_Luck_Trunk.com.xml b/src/chrome/content/rules/Good_Luck_Trunk.com.xml deleted file mode 100644 index 906ba80b8b75..000000000000 --- a/src/chrome/content/rules/Good_Luck_Trunk.com.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Goodreads.xml b/src/chrome/content/rules/Goodreads.xml index de01b93aba43..436094e04273 100644 --- a/src/chrome/content/rules/Goodreads.xml +++ b/src/chrome/content/rules/Goodreads.xml @@ -1,24 +1,18 @@ - - - - - - - + + diff --git a/src/chrome/content/rules/Goodsie.xml b/src/chrome/content/rules/Goodsie.xml deleted file mode 100644 index 3266af8bdb48..000000000000 --- a/src/chrome/content/rules/Goodsie.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Goodzer.com.xml b/src/chrome/content/rules/Goodzer.com.xml index 28d286629ee3..66dbe2ce550a 100644 --- a/src/chrome/content/rules/Goodzer.com.xml +++ b/src/chrome/content/rules/Goodzer.com.xml @@ -4,7 +4,7 @@ - + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Google-mismatches.xml b/src/chrome/content/rules/Google-mismatches.xml deleted file mode 100644 index 28654663721b..000000000000 --- a/src/chrome/content/rules/Google-mismatches.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Google.com_Subdomains.xml b/src/chrome/content/rules/Google.com_Subdomains.xml index bb1ff94ec735..8bc6fe425668 100644 --- a/src/chrome/content/rules/Google.com_Subdomains.xml +++ b/src/chrome/content/rules/Google.com_Subdomains.xml @@ -7,6 +7,7 @@ - partnerpage.google.com * - picasa.google.com * - www.picasa.google.com ² + - www.photo.google.com - safebrowsing.clients.google.com (404, mismatched) - (www.)googlesyndicatedsearch.com (404; mismatched, CN: google.com) - buttons.googlesyndication.com * @@ -47,20 +48,21 @@ --> + - + + - - - + + @@ -89,15 +91,27 @@ - + + + + + + + + + - - + + + + + + @@ -105,24 +119,28 @@ + + - + + - + + diff --git a/src/chrome/content/rules/Google.com_Subdomains_Complex.xml b/src/chrome/content/rules/Google.com_Subdomains_Complex.xml index 5ad8f4ba22f7..7914cadde67a 100644 --- a/src/chrome/content/rules/Google.com_Subdomains_Complex.xml +++ b/src/chrome/content/rules/Google.com_Subdomains_Complex.xml @@ -66,17 +66,10 @@ - - - - - diff --git a/src/chrome/content/rules/Google.tld_Subdomains.xml b/src/chrome/content/rules/Google.tld_Subdomains.xml index 2be918155687..442c669a6796 100644 --- a/src/chrome/content/rules/Google.tld_Subdomains.xml +++ b/src/chrome/content/rules/Google.tld_Subdomains.xml @@ -4,102 +4,183 @@ This ruleset is subdomains that exist on google.tld (not just google.com) - *** images.google.tld is covered in GoogleImages.xml *** --> - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - + - - - - - - - + - + + + + + + + + + + + - - + + + + + + + + + - - - + + + + + + + + + + + + + + + + + + + - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Google.xml b/src/chrome/content/rules/Google.xml index 783028f0c5d0..23821ce17d29 100644 --- a/src/chrome/content/rules/Google.xml +++ b/src/chrome/content/rules/Google.xml @@ -2,16 +2,8 @@ This ruleset only covers (www.)?google.tld For other Google coverage, see GoogleServices.xml - *** Google Images related paths are covered in GoogleImages.xml *** - - Nonfunctional google.com paths: - - - analytics * - - imgres * - - u/ (404) - - * Redirects to http --> + @@ -19,416 +11,97 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/GoogleAPIs.xml b/src/chrome/content/rules/GoogleAPIs.xml index 7eb1ef0874e7..3993d9d3ddfe 100644 --- a/src/chrome/content/rules/GoogleAPIs.xml +++ b/src/chrome/content/rules/GoogleAPIs.xml @@ -37,9 +37,6 @@ - linkhelp - - ssl.google-analytics.com - - www.google-analytics.com - - googleapis.com subdomains: - ajax @@ -61,11 +58,6 @@ - ssl - t\d - - gdata.youtube.com - - - ssl.google-analytics.com/ga.js sets __utm\w wildcard - cookies on whichever domain it is loaded from. --> @@ -74,10 +66,6 @@ - - - - @@ -89,14 +77,17 @@ + + - + + - - + + + + - - - - - - + - - - + + + + + + + + + + + + diff --git a/src/chrome/content/rules/GoogleImages.xml b/src/chrome/content/rules/GoogleImages.xml deleted file mode 100644 index 1fbe866a3eb0..000000000000 --- a/src/chrome/content/rules/GoogleImages.xml +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/GoogleMaps.xml b/src/chrome/content/rules/GoogleMaps.xml deleted file mode 100644 index da1564d6b6e3..000000000000 --- a/src/chrome/content/rules/GoogleMaps.xml +++ /dev/null @@ -1,74 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/GoogleMelange.com.xml b/src/chrome/content/rules/GoogleMelange.com.xml index 938144e37c7a..9f4871de6f56 100644 --- a/src/chrome/content/rules/GoogleMelange.com.xml +++ b/src/chrome/content/rules/GoogleMelange.com.xml @@ -2,7 +2,7 @@ For other Google coverage, see GoogleServices.xml. --> - + diff --git a/src/chrome/content/rules/GoogleServices.xml b/src/chrome/content/rules/GoogleServices.xml index 2d889e7ccf97..c432eddbbf21 100644 --- a/src/chrome/content/rules/GoogleServices.xml +++ b/src/chrome/content/rules/GoogleServices.xml @@ -3,39 +3,39 @@ - 2mdn.net.xml - Admeld.xml - Android.xml + - Apture.com.xml - Blogspot.com_blogs.xml - Certificate-transparency.org.xml - - ChannelIntelligence.com.xml - - Chrome_Status.com.xml + - ChromeStatus.com.xml - Chromium.org.xml - - DoubleClick_by_Google.com.xml + - DartSearch.net.xml - Doubleclick.net.xml - FeedBurner.xml - - Go_Lang.org.xml + - GetOutline.org.xml - Google.com_Subdomains.xml - Google.com_Subdomains_Complex.html - Google.org.xml - Google.tld_Subdomains.xml - GoogleAPIs.xml + - Google-Analytics.com.xml - Google_App_Engine.xml - - GoogleImages.xml + - GoogleArtProject.com.xml - GoogleMelange.com.xml - GoogleServices_Complex.xml (Simple rules that normally would reside here are in this ruleset) - - GoogleShopping.xml - googletagmanager.com.xml - googletagservices.com.xml - Ingress.xml - Made_with_Code.com.xml - Meebo.xml - Orkut.xml + - pki.goog.xml - Polymer-Project.org.xml - - Postini.xml - Waze.com.xml - WebM_Project.org.xml - With_Google.com.xml --> - + diff --git a/src/chrome/content/rules/GoogleServices_Complex.xml b/src/chrome/content/rules/GoogleServices_Complex.xml index 9fa00bfba3e0..3b26a5e83b39 100644 --- a/src/chrome/content/rules/GoogleServices_Complex.xml +++ b/src/chrome/content/rules/GoogleServices_Complex.xml @@ -3,27 +3,15 @@ Problematic domains: - - www.goo.gl (404; mismatched, CN: *.google.com) - *-opensocial.googleusercontent.com *** *** Breaks followers widget - https://trac.torproject.org/projects/tor/ticket/7294 --> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/GoogleSorry.xml b/src/chrome/content/rules/GoogleSorry.xml deleted file mode 100644 index 1a396f437ca6..000000000000 --- a/src/chrome/content/rules/GoogleSorry.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/GoogleVideos.xml b/src/chrome/content/rules/GoogleVideos.xml deleted file mode 100644 index dab3ebf7a96d..000000000000 --- a/src/chrome/content/rules/GoogleVideos.xml +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Google_App_Engine.xml b/src/chrome/content/rules/Google_App_Engine.xml index 76658417da82..c639af8699c7 100644 --- a/src/chrome/content/rules/Google_App_Engine.xml +++ b/src/chrome/content/rules/Google_App_Engine.xml @@ -32,7 +32,7 @@ - + + - + diff --git a/src/chrome/content/rules/Gopro.com.xml b/src/chrome/content/rules/Gopro.com.xml new file mode 100644 index 000000000000..130343cd1605 --- /dev/null +++ b/src/chrome/content/rules/Gopro.com.xml @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Gorod.dp.ua.xml b/src/chrome/content/rules/Gorod.dp.ua.xml new file mode 100644 index 000000000000..7e905604073d --- /dev/null +++ b/src/chrome/content/rules/Gorod.dp.ua.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Got_Vape.net.xml b/src/chrome/content/rules/Got_Vape.net.xml index 02367072c450..3733f57eb2f5 100644 --- a/src/chrome/content/rules/Got_Vape.net.xml +++ b/src/chrome/content/rules/Got_Vape.net.xml @@ -20,9 +20,13 @@ Fetch error: http://gotvape.com/ => https://gotvape.com/: (51, "SSL: no alternat - + + + - + + + @@ -31,7 +35,6 @@ Fetch error: http://gotvape.com/ => https://gotvape.com/: (51, "SSL: no alternat - + diff --git a/src/chrome/content/rules/Gotmerchant.com.xml b/src/chrome/content/rules/Gotmerchant.com.xml index f1838cd99c5e..7a0766d313c1 100644 --- a/src/chrome/content/rules/Gotmerchant.com.xml +++ b/src/chrome/content/rules/Gotmerchant.com.xml @@ -13,4 +13,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Gottman.com.xml b/src/chrome/content/rules/Gottman.com.xml index d6ed8dd78baa..3a4ec6eb9c27 100644 --- a/src/chrome/content/rules/Gottman.com.xml +++ b/src/chrome/content/rules/Gottman.com.xml @@ -20,7 +20,7 @@ --> - + + + + + + + + + + + diff --git a/src/chrome/content/rules/GourmetGiftBaskets.com.xml b/src/chrome/content/rules/GourmetGiftBaskets.com.xml index c58c97923050..a93d4b1e7baf 100644 --- a/src/chrome/content/rules/GourmetGiftBaskets.com.xml +++ b/src/chrome/content/rules/GourmetGiftBaskets.com.xml @@ -11,7 +11,8 @@ - + + - + - + - diff --git a/src/chrome/content/rules/GovHack.org.xml b/src/chrome/content/rules/GovHack.org.xml index d419933b301f..5161bef96037 100644 --- a/src/chrome/content/rules/GovHack.org.xml +++ b/src/chrome/content/rules/GovHack.org.xml @@ -35,7 +35,7 @@ --> - + - + https://www.govwaste.co.uk/: (7, 'Fai - .govwaste.co.uk --> - + diff --git a/src/chrome/content/rules/Government-Attic.xml b/src/chrome/content/rules/Government-Attic.xml new file mode 100644 index 000000000000..209d732295c1 --- /dev/null +++ b/src/chrome/content/rules/Government-Attic.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Government.se.xml b/src/chrome/content/rules/Government.se.xml new file mode 100644 index 000000000000..9dbcb2f14f0d --- /dev/null +++ b/src/chrome/content/rules/Government.se.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Governmentattic.org.xml b/src/chrome/content/rules/Governmentattic.org.xml deleted file mode 100644 index 4bd0a7b0a0f5..000000000000 --- a/src/chrome/content/rules/Governmentattic.org.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Gpg4win.de.xml b/src/chrome/content/rules/Gpg4win.de.xml new file mode 100644 index 000000000000..f81e9a41f160 --- /dev/null +++ b/src/chrome/content/rules/Gpg4win.de.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Gpg4win.org.xml b/src/chrome/content/rules/Gpg4win.org.xml index 37951547e199..8314a307cc9b 100644 --- a/src/chrome/content/rules/Gpg4win.org.xml +++ b/src/chrome/content/rules/Gpg4win.org.xml @@ -1,10 +1,17 @@ + - + + + diff --git a/src/chrome/content/rules/Gr-assets.com.xml b/src/chrome/content/rules/Gr-assets.com.xml index 7054f1248c5b..c5bab54eab4f 100644 --- a/src/chrome/content/rules/Gr-assets.com.xml +++ b/src/chrome/content/rules/Gr-assets.com.xml @@ -6,7 +6,7 @@ Fetch error: http://p.gr-assets.com/ => https://p.gr-assets.com/: (6, 'Could not For other Goodreads coverage, see Goodreads.xml. --> - + diff --git a/src/chrome/content/rules/Graasmilk.net.xml b/src/chrome/content/rules/Graasmilk.net.xml index 80b509208a7e..fff5e1e72da7 100644 --- a/src/chrome/content/rules/Graasmilk.net.xml +++ b/src/chrome/content/rules/Graasmilk.net.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://graasmilk.net/ => https://graasmilk.net/: (60, 'SSL certificate problem: self signed certificate') Fetch error: http://www.graasmilk.net/ => https://graasmilk.net/: (60, 'SSL certificate problem: self signed certificate') --> - + diff --git a/src/chrome/content/rules/Grab_Media.xml b/src/chrome/content/rules/Grab_Media.xml deleted file mode 100644 index 05b3171a4781..000000000000 --- a/src/chrome/content/rules/Grab_Media.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/GradImages.xml b/src/chrome/content/rules/GradImages.xml index e7d6f491d5dd..1fd138e9cb14 100644 --- a/src/chrome/content/rules/GradImages.xml +++ b/src/chrome/content/rules/GradImages.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Gradle.org.xml b/src/chrome/content/rules/Gradle.org.xml deleted file mode 100644 index 5bd37795ac22..000000000000 --- a/src/chrome/content/rules/Gradle.org.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Gradwell.com.xml b/src/chrome/content/rules/Gradwell.com.xml index 5db04b7da5fa..c3ef447864f1 100644 --- a/src/chrome/content/rules/Gradwell.com.xml +++ b/src/chrome/content/rules/Gradwell.com.xml @@ -1,13 +1,17 @@ + - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Graham_Cluley.com.xml b/src/chrome/content/rules/Graham_Cluley.com.xml deleted file mode 100644 index 70c685a83ec9..000000000000 --- a/src/chrome/content/rules/Graham_Cluley.com.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/GrainsResearchandDevelopmentCorporation.xml b/src/chrome/content/rules/GrainsResearchandDevelopmentCorporation.xml index 6ffabe5ea42b..d5e54ac2ca37 100644 --- a/src/chrome/content/rules/GrainsResearchandDevelopmentCorporation.xml +++ b/src/chrome/content/rules/GrainsResearchandDevelopmentCorporation.xml @@ -1,7 +1,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Gramps-project.org.xml b/src/chrome/content/rules/Gramps-project.org.xml new file mode 100644 index 000000000000..02d7fcca324d --- /dev/null +++ b/src/chrome/content/rules/Gramps-project.org.xml @@ -0,0 +1,13 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Grand-Rapids-Community-Media-Center.xml b/src/chrome/content/rules/Grand-Rapids-Community-Media-Center.xml index 377f089baaa1..5944dbd32c92 100644 --- a/src/chrome/content/rules/Grand-Rapids-Community-Media-Center.xml +++ b/src/chrome/content/rules/Grand-Rapids-Community-Media-Center.xml @@ -7,19 +7,19 @@ Fetch error: http://www.wealthytheatre.org/ => https://www.grcmc.org/theatre/: R - + + - + - + diff --git a/src/chrome/content/rules/GrandViewOutdoors.com.xml b/src/chrome/content/rules/GrandViewOutdoors.com.xml new file mode 100644 index 000000000000..2693d61c1ddb --- /dev/null +++ b/src/chrome/content/rules/GrandViewOutdoors.com.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Grand_Haven_Tribune.xml b/src/chrome/content/rules/Grand_Haven_Tribune.xml index 480c97e0140d..d4dc812c27d3 100644 --- a/src/chrome/content/rules/Grand_Haven_Tribune.xml +++ b/src/chrome/content/rules/Grand_Haven_Tribune.xml @@ -17,4 +17,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Grand_Lodge_of_British_Columbia.xml b/src/chrome/content/rules/Grand_Lodge_of_British_Columbia.xml index 3aaf1f53e788..c8c4db536c70 100644 --- a/src/chrome/content/rules/Grand_Lodge_of_British_Columbia.xml +++ b/src/chrome/content/rules/Grand_Lodge_of_British_Columbia.xml @@ -9,13 +9,15 @@ Fetch error: http://bcy.ca/ => https://www.freemasonry.bcy.ca/: (51, "SSL: no al - freemasonry (cert only matches www.freemasonry) --> - + - + + + - \ No newline at end of file + diff --git a/src/chrome/content/rules/GraphQL.org.xml b/src/chrome/content/rules/GraphQL.org.xml new file mode 100644 index 000000000000..26fc6eb14d96 --- /dev/null +++ b/src/chrome/content/rules/GraphQL.org.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Graphene-lda.com.xml b/src/chrome/content/rules/Graphene-lda.com.xml index 1771274932be..50f3ba9d5eb6 100644 --- a/src/chrome/content/rules/Graphene-lda.com.xml +++ b/src/chrome/content/rules/Graphene-lda.com.xml @@ -5,7 +5,7 @@ Fetch error: http://graphene-lda.com/ => https://graphene-lda.com/: (6, 'Could n Fetch error: http://www.graphene-lda.com/ => https://www.graphene-lda.com/: (6, 'Could not resolve host: www.graphene-lda.com') --> - + diff --git a/src/chrome/content/rules/Graphviz.org.xml b/src/chrome/content/rules/Graphviz.org.xml new file mode 100644 index 000000000000..86394124dd9f --- /dev/null +++ b/src/chrome/content/rules/Graphviz.org.xml @@ -0,0 +1,16 @@ + + + + + + + diff --git a/src/chrome/content/rules/Grassroots.org-mismatches.xml b/src/chrome/content/rules/Grassroots.org-mismatches.xml index 5e686f79890e..d99f77ddaa82 100644 --- a/src/chrome/content/rules/Grassroots.org-mismatches.xml +++ b/src/chrome/content/rules/Grassroots.org-mismatches.xml @@ -8,10 +8,9 @@ - + - + diff --git a/src/chrome/content/rules/Grassroots.org.xml b/src/chrome/content/rules/Grassroots.org.xml index 9690540423e2..1e1a7ae85c84 100644 --- a/src/chrome/content/rules/Grassroots.org.xml +++ b/src/chrome/content/rules/Grassroots.org.xml @@ -9,15 +9,15 @@ Fetch error: http://grassroots.org/ => https://grassroots.org/: (28, 'Operation For problematic rules, see Grassroots.org-mismatches.xml. --> - + - - + + diff --git a/src/chrome/content/rules/Gravatar.xml b/src/chrome/content/rules/Gravatar.xml index b8f9c15222d9..5add00052389 100644 --- a/src/chrome/content/rules/Gravatar.xml +++ b/src/chrome/content/rules/Gravatar.xml @@ -1,10 +1,15 @@ - + + + + + + + - + diff --git a/src/chrome/content/rules/Gravity.com.xml b/src/chrome/content/rules/Gravity.com.xml deleted file mode 100644 index 2ef9f1709ebd..000000000000 --- a/src/chrome/content/rules/Gravity.com.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Gravity4.com.xml b/src/chrome/content/rules/Gravity4.com.xml deleted file mode 100644 index c724cbe656ca..000000000000 --- a/src/chrome/content/rules/Gravity4.com.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/GreatDomains.com.xml b/src/chrome/content/rules/GreatDomains.com.xml deleted file mode 100644 index 9ead9f5450b5..000000000000 --- a/src/chrome/content/rules/GreatDomains.com.xml +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/GreatGetTogether.org.xml b/src/chrome/content/rules/GreatGetTogether.org.xml new file mode 100644 index 000000000000..825b31173545 --- /dev/null +++ b/src/chrome/content/rules/GreatGetTogether.org.xml @@ -0,0 +1,12 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Great_American_Office.xml b/src/chrome/content/rules/Great_American_Office.xml index d128105f6024..832adbf22867 100644 --- a/src/chrome/content/rules/Great_American_Office.xml +++ b/src/chrome/content/rules/Great_American_Office.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Greatis.net.xml b/src/chrome/content/rules/Greatis.net.xml new file mode 100644 index 000000000000..4f9177d9c496 --- /dev/null +++ b/src/chrome/content/rules/Greatis.net.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Greek-banks.xml b/src/chrome/content/rules/Greek-banks.xml index 2a8f56c6cb1e..3831c2030758 100644 --- a/src/chrome/content/rules/Greek-banks.xml +++ b/src/chrome/content/rules/Greek-banks.xml @@ -7,16 +7,16 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.probank.gr/ => https://www.probank.gr/: (28, 'Resolving timed out after 10520 milliseconds') This ruleset is experimental. If you experience problems please open an issue at https://github.com/kargig/https-everywhere-greek-rules --> - + - - - - + + + + diff --git a/src/chrome/content/rules/Greek-gov.xml b/src/chrome/content/rules/Greek-gov.xml index de637e71626e..5e74176b00d1 100644 --- a/src/chrome/content/rules/Greek-gov.xml +++ b/src/chrome/content/rules/Greek-gov.xml @@ -2,15 +2,16 @@ open an issue at https://github.com/kargig/https-everywhere-greek-rules --> - - + + + + + - - - + + + - - - + diff --git a/src/chrome/content/rules/Greek-media.xml b/src/chrome/content/rules/Greek-media.xml index 64d8c58962c7..bcea15139d5a 100644 --- a/src/chrome/content/rules/Greek-media.xml +++ b/src/chrome/content/rules/Greek-media.xml @@ -13,8 +13,6 @@ open an issue at https://github.com/kargig/https-everywhere-greek-rules - - diff --git a/src/chrome/content/rules/Greek-travel.xml b/src/chrome/content/rules/Greek-travel.xml index 478c66cafd09..7e70d5ba94ff 100644 --- a/src/chrome/content/rules/Greek-travel.xml +++ b/src/chrome/content/rules/Greek-travel.xml @@ -1,5 +1,8 @@ - - - - - - - + - - + - - + - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - + - - + - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - + - + diff --git a/src/chrome/content/rules/Greek-various.xml b/src/chrome/content/rules/Greek-various.xml deleted file mode 100644 index 7b5ee6410ecf..000000000000 --- a/src/chrome/content/rules/Greek-various.xml +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/GreenIT-BB-mismatches.xml b/src/chrome/content/rules/GreenIT-BB-mismatches.xml index f0bf9079c8a8..3e5392561e67 100644 --- a/src/chrome/content/rules/GreenIT-BB-mismatches.xml +++ b/src/chrome/content/rules/GreenIT-BB-mismatches.xml @@ -3,7 +3,7 @@ - + diff --git a/src/chrome/content/rules/GreenIT-BB.xml b/src/chrome/content/rules/GreenIT-BB.xml index aa636ca2db83..8e4402121778 100644 --- a/src/chrome/content/rules/GreenIT-BB.xml +++ b/src/chrome/content/rules/GreenIT-BB.xml @@ -10,13 +10,12 @@ Disabled by https-everywhere-checker because: Fetch error: http://benchmarking.greenit-bb.de/ => https://benchmarking.greenit-bb.de/: (60, 'SSL certificate problem: certificate has expired') --> - + - + - + diff --git a/src/chrome/content/rules/GreenQloud.com.xml b/src/chrome/content/rules/GreenQloud.com.xml index aced569e920e..fd31ea8998b4 100644 --- a/src/chrome/content/rules/GreenQloud.com.xml +++ b/src/chrome/content/rules/GreenQloud.com.xml @@ -6,7 +6,6 @@ Fetch error: http://my.greenqloud.com/ => https://my.greenqloud.com/: (6, 'Could Other GreenQloud rulesets: - - QStack.com.xml Problematic hosts in *greenqloud.com: @@ -22,7 +21,7 @@ Fetch error: http://my.greenqloud.com/ => https://my.greenqloud.com/: (6, 'Could - auth.greenqloud.com --> - + diff --git a/src/chrome/content/rules/GreenSky_Credit.com.xml b/src/chrome/content/rules/GreenSky_Credit.com.xml index 156b6b8bfcc0..608d32a8317e 100644 --- a/src/chrome/content/rules/GreenSky_Credit.com.xml +++ b/src/chrome/content/rules/GreenSky_Credit.com.xml @@ -7,7 +7,7 @@ Fetch error: http://greensky.com/ => http://greensky.com/: Cycle detected - URL - + http://greensky.com/: Cycle detected - URL - \ No newline at end of file + diff --git a/src/chrome/content/rules/GreenVehicleGuide.xml b/src/chrome/content/rules/GreenVehicleGuide.xml index 4d99d886bfd0..e592ef27c11c 100644 --- a/src/chrome/content/rules/GreenVehicleGuide.xml +++ b/src/chrome/content/rules/GreenVehicleGuide.xml @@ -1,7 +1,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Green_Coffee_Bean_Extract.xml b/src/chrome/content/rules/Green_Coffee_Bean_Extract.xml deleted file mode 100644 index fa229113c448..000000000000 --- a/src/chrome/content/rules/Green_Coffee_Bean_Extract.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Green_Left.org.au.xml b/src/chrome/content/rules/Green_Left.org.au.xml index 092431d2c356..583f2976bf1c 100644 --- a/src/chrome/content/rules/Green_Left.org.au.xml +++ b/src/chrome/content/rules/Green_Left.org.au.xml @@ -13,7 +13,7 @@ - + - + - - - - - - - - - diff --git a/src/chrome/content/rules/Green_PolkaDot_Box.xml b/src/chrome/content/rules/Green_PolkaDot_Box.xml index 3f5a26d8696b..90f10512a333 100644 --- a/src/chrome/content/rules/Green_PolkaDot_Box.xml +++ b/src/chrome/content/rules/Green_PolkaDot_Box.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Greenbone.xml b/src/chrome/content/rules/Greenbone.xml index c52d6af7c629..201778643d2b 100644 --- a/src/chrome/content/rules/Greenbone.xml +++ b/src/chrome/content/rules/Greenbone.xml @@ -20,4 +20,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Greenhouse.io.xml b/src/chrome/content/rules/Greenhouse.io.xml index 0796d0c5d4bc..90ca2cf7abdd 100644 --- a/src/chrome/content/rules/Greenhouse.io.xml +++ b/src/chrome/content/rules/Greenhouse.io.xml @@ -21,13 +21,15 @@ - + + + + - + diff --git a/src/chrome/content/rules/Greenpeace-Energy.de.xml b/src/chrome/content/rules/Greenpeace-Energy.de.xml index 9150eb10e916..6a32b7971725 100644 --- a/src/chrome/content/rules/Greenpeace-Energy.de.xml +++ b/src/chrome/content/rules/Greenpeace-Energy.de.xml @@ -10,7 +10,7 @@ - + - + https://www.moon.greenpeace.org/ ² 503 --> - + diff --git a/src/chrome/content/rules/Greentech-Media.xml b/src/chrome/content/rules/Greentech-Media.xml index 1a757080bdb5..9e3b9df6e687 100644 --- a/src/chrome/content/rules/Greentech-Media.xml +++ b/src/chrome/content/rules/Greentech-Media.xml @@ -19,7 +19,7 @@ - + diff --git a/src/chrome/content/rules/GreenvilleOnline.com.xml b/src/chrome/content/rules/GreenvilleOnline.com.xml index 17b76ddfd94c..8b4970c477d6 100644 --- a/src/chrome/content/rules/GreenvilleOnline.com.xml +++ b/src/chrome/content/rules/GreenvilleOnline.com.xml @@ -37,10 +37,11 @@ - + + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Greenwood.org.xml b/src/chrome/content/rules/Greenwood.org.xml index 977f4f884de1..842e266421ef 100644 --- a/src/chrome/content/rules/Greenwood.org.xml +++ b/src/chrome/content/rules/Greenwood.org.xml @@ -24,7 +24,7 @@ --> - + diff --git a/src/chrome/content/rules/GrepBugs.com.xml b/src/chrome/content/rules/GrepBugs.com.xml index 5b5d52c5a46c..fb81ed8aa272 100644 --- a/src/chrome/content/rules/GrepBugs.com.xml +++ b/src/chrome/content/rules/GrepBugs.com.xml @@ -19,7 +19,7 @@ - + - + - + + - + diff --git a/src/chrome/content/rules/Gridcoin.us.xml b/src/chrome/content/rules/Gridcoin.us.xml index 568083596ba3..22540efa21bd 100644 --- a/src/chrome/content/rules/Gridcoin.us.xml +++ b/src/chrome/content/rules/Gridcoin.us.xml @@ -17,7 +17,7 @@ Fetch error: http://pool.gridcoin.us/ => https://pool.gridcoin.us/: (28, 'Connec - (www.)? - pool - - + - Mixed content: - css on (www.)? from fonts.googleapis.com * @@ -27,7 +27,7 @@ Fetch error: http://pool.gridcoin.us/ => https://pool.gridcoin.us/: (28, 'Connec ² Rule disabled by default --> - + diff --git a/src/chrome/content/rules/Gridz_Direct.com-falsemixed.xml b/src/chrome/content/rules/Gridz_Direct.com-falsemixed.xml index 60b56df1d32d..17fc0265bc0b 100644 --- a/src/chrome/content/rules/Gridz_Direct.com-falsemixed.xml +++ b/src/chrome/content/rules/Gridz_Direct.com-falsemixed.xml @@ -4,13 +4,12 @@ --> - + - + diff --git a/src/chrome/content/rules/Gridz_Direct.com.xml b/src/chrome/content/rules/Gridz_Direct.com.xml deleted file mode 100644 index 1d87633a140e..000000000000 --- a/src/chrome/content/rules/Gridz_Direct.com.xml +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Griffin_Technology.com.xml b/src/chrome/content/rules/Griffin_Technology.com.xml deleted file mode 100644 index bfd5bbdeabff..000000000000 --- a/src/chrome/content/rules/Griffin_Technology.com.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Griffith-University.xml b/src/chrome/content/rules/Griffith-University.xml index 929bf6b2b6a2..d62c1962c788 100644 --- a/src/chrome/content/rules/Griffith-University.xml +++ b/src/chrome/content/rules/Griffith-University.xml @@ -1,11 +1,18 @@ - - - - - + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Grinnell_College.xml b/src/chrome/content/rules/Grinnell_College.xml index e35fa5305eca..b0a3c891cb86 100644 --- a/src/chrome/content/rules/Grinnell_College.xml +++ b/src/chrome/content/rules/Grinnell_College.xml @@ -2,10 +2,7 @@ Nonfunctional subdomains: - athdb (replies with http) - - catalog (shows www.acalogadmin.com; mismatched, CN: *.acalogadmin.com) - - perecruiting.cs - pdid (times out) - - pioneers - schedule25wb (times out) - (www.)web - wm @@ -15,9 +12,12 @@ Problematic subdomains: - ^ (times out) - - www.cs (works; expired 2010-08-17, self-signed) - drupal (works, mismatched, CN: www.cs.grinnell.edu) - www.cat.lib (cert only matches ^cat.lib) + - db (cert only matches ^itwebapps) + - www.math (cert only matches ^www.cs) + - magazine (bad cert domain) + - *.grin.edu (bad cert domain) Partially covered subdomains: @@ -27,37 +27,53 @@ Fully covered subdomains: - - autodiscover - bookstore - - db - digital - help - imap - itwebapps - (www.)cat.lib (www → ^) - libweb - - loggia - mail - webmail + - www.cs --> - - + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + - - + diff --git a/src/chrome/content/rules/Gris.ca.xml b/src/chrome/content/rules/Gris.ca.xml new file mode 100644 index 000000000000..4540ead2085c --- /dev/null +++ b/src/chrome/content/rules/Gris.ca.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/Grnh.se.xml b/src/chrome/content/rules/Grnh.se.xml index da94225aa261..8ade73ab5f3d 100644 --- a/src/chrome/content/rules/Grnh.se.xml +++ b/src/chrome/content/rules/Grnh.se.xml @@ -24,7 +24,6 @@ - + diff --git a/src/chrome/content/rules/Grocery_Server.com.xml b/src/chrome/content/rules/Grocery_Server.com.xml index 0722b99cc4f0..7e59593d955d 100644 --- a/src/chrome/content/rules/Grocery_Server.com.xml +++ b/src/chrome/content/rules/Grocery_Server.com.xml @@ -18,7 +18,8 @@ - + + diff --git a/src/chrome/content/rules/GroenLinks.nl.xml b/src/chrome/content/rules/GroenLinks.nl.xml index a339d2cf62db..a29f2b329dea 100644 --- a/src/chrome/content/rules/GroenLinks.nl.xml +++ b/src/chrome/content/rules/GroenLinks.nl.xml @@ -29,7 +29,7 @@ - + - + diff --git a/src/chrome/content/rules/Grok_Learning.com.xml b/src/chrome/content/rules/Grok_Learning.com.xml index 62aa72d1094f..a15239e5d6f0 100644 --- a/src/chrome/content/rules/Grok_Learning.com.xml +++ b/src/chrome/content/rules/Grok_Learning.com.xml @@ -4,19 +4,9 @@ --> - - - - - - - - - - + diff --git a/src/chrome/content/rules/Groton.org.xml b/src/chrome/content/rules/Groton.org.xml index 7aebd24b4f9e..8da03ff83f66 100644 --- a/src/chrome/content/rules/Groton.org.xml +++ b/src/chrome/content/rules/Groton.org.xml @@ -18,7 +18,7 @@ - diff --git a/src/chrome/content/rules/Group-Commerce.xml b/src/chrome/content/rules/Group-Commerce.xml index 543e517bcb56..06c18c0d77a9 100644 --- a/src/chrome/content/rules/Group-Commerce.xml +++ b/src/chrome/content/rules/Group-Commerce.xml @@ -10,11 +10,10 @@ Fetch error: http://admin.groupcommerce.com/ => https://admin.groupcommerce.com/ - (www.)groupcommerce.com --> - + - + diff --git a/src/chrome/content/rules/GroupLogic.xml b/src/chrome/content/rules/GroupLogic.xml index d81eb5c4bb91..0cbf9466fcce 100644 --- a/src/chrome/content/rules/GroupLogic.xml +++ b/src/chrome/content/rules/GroupLogic.xml @@ -7,7 +7,7 @@ - + diff --git a/src/chrome/content/rules/Groupees.com.xml b/src/chrome/content/rules/Groupees.com.xml index 36bf650e2f4f..ed4bb475f6c5 100644 --- a/src/chrome/content/rules/Groupees.com.xml +++ b/src/chrome/content/rules/Groupees.com.xml @@ -2,6 +2,6 @@ - + diff --git a/src/chrome/content/rules/Grouper_Social_Club.com.xml b/src/chrome/content/rules/Grouper_Social_Club.com.xml index 4e262e7fb027..40f550369b18 100644 --- a/src/chrome/content/rules/Grouper_Social_Club.com.xml +++ b/src/chrome/content/rules/Grouper_Social_Club.com.xml @@ -8,18 +8,17 @@ Fetch error: http://groupersocialclub.com.au/ => https://groupersocialclub.com.a - groupergram-photos.s3.amazonaws.com --> - + - - + + - + diff --git a/src/chrome/content/rules/Groupon.com.br.xml b/src/chrome/content/rules/Groupon.com.br.xml index 267415e48814..a4d0b5948727 100644 --- a/src/chrome/content/rules/Groupon.com.br.xml +++ b/src/chrome/content/rules/Groupon.com.br.xml @@ -19,7 +19,7 @@ Non-2xx HTTP code: http://www.groupon.com.br/ (200) => https://www.groupon.com.b - www.groupon.com.br --> - + diff --git a/src/chrome/content/rules/Groupon.com.xml b/src/chrome/content/rules/Groupon.com.xml index d980fd31d231..e4cff7f980f6 100644 --- a/src/chrome/content/rules/Groupon.com.xml +++ b/src/chrome/content/rules/Groupon.com.xml @@ -1,84 +1,32 @@ - - - + + - - - - - - - - - - - - - + - + + diff --git a/src/chrome/content/rules/Groupon.gr.xml b/src/chrome/content/rules/Groupon.gr.xml index 26bf812b9ac5..a32c5c6517fb 100644 --- a/src/chrome/content/rules/Groupon.gr.xml +++ b/src/chrome/content/rules/Groupon.gr.xml @@ -5,11 +5,11 @@ Fetch error: http://groupon.gr/ => https://groupon.gr/: (51, "SSL: no alternativ This ruleset is experimental. If you experience problems please open an issue at https://github.com/kargig/https-everywhere --> - + - + diff --git a/src/chrome/content/rules/Groupon.se.xml b/src/chrome/content/rules/Groupon.se.xml index bf818d300e25..661e90483ff4 100644 --- a/src/chrome/content/rules/Groupon.se.xml +++ b/src/chrome/content/rules/Groupon.se.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://groupon.se/ => https://www.groupon.se/: (51, "SSL: no alternative certificate subject name matches target host name 'www.groupon.se'") --> - + diff --git a/src/chrome/content/rules/Groupon.xml b/src/chrome/content/rules/Groupon.xml index 17d18673ed05..79936e5aad18 100644 --- a/src/chrome/content/rules/Groupon.xml +++ b/src/chrome/content/rules/Groupon.xml @@ -7,7 +7,7 @@ Non-2xx HTTP code: http://groupon.co.uk/ (200) => https://www.groupon.co.uk/ (40 For other Groupon coverage, see Groupon.com.xml. --> - + diff --git a/src/chrome/content/rules/Groupon_Works.com.xml b/src/chrome/content/rules/Groupon_Works.com.xml index 127453ac1e30..6a10543678ef 100644 --- a/src/chrome/content/rules/Groupon_Works.com.xml +++ b/src/chrome/content/rules/Groupon_Works.com.xml @@ -7,7 +7,7 @@ Non-2xx HTTP code: http://www.grouponworks.com/ (200) => https://www.grouponwork For other Groupon coverage, see Groupon.com.xml. --> - + diff --git a/src/chrome/content/rules/Grove.io.xml b/src/chrome/content/rules/Grove.io.xml index 33a38d4c8313..b25f875277bd 100644 --- a/src/chrome/content/rules/Grove.io.xml +++ b/src/chrome/content/rules/Grove.io.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.grove.io/ => https://www.grove.io/: (60, 'SSL certificate problem: self signed certificate') --> - + diff --git a/src/chrome/content/rules/Grow_HQ.com.xml b/src/chrome/content/rules/Grow_HQ.com.xml index 299fe40b0964..e2a2ee1835b3 100644 --- a/src/chrome/content/rules/Grow_HQ.com.xml +++ b/src/chrome/content/rules/Grow_HQ.com.xml @@ -4,16 +4,17 @@ Disabled by https-everywhere-checker because: Fetch error: http://growhq.com/ => https://growhq.com/: (35, 'Unknown SSL protocol error in connection to growhq.com:443 ') --> - + - + + + - + diff --git a/src/chrome/content/rules/Growery.xml b/src/chrome/content/rules/Growery.xml index 05e9f81fcfde..4a4ca25a1b54 100644 --- a/src/chrome/content/rules/Growery.xml +++ b/src/chrome/content/rules/Growery.xml @@ -7,4 +7,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Grsm.io.xml b/src/chrome/content/rules/Grsm.io.xml new file mode 100644 index 000000000000..7845f55cbbc3 --- /dev/null +++ b/src/chrome/content/rules/Grsm.io.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Grubstreet.com.xml b/src/chrome/content/rules/Grubstreet.com.xml new file mode 100644 index 000000000000..edb1c0e03dc1 --- /dev/null +++ b/src/chrome/content/rules/Grubstreet.com.xml @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Grupfoni.xml b/src/chrome/content/rules/Grupfoni.xml index 76bdec82a699..241da0146c21 100644 --- a/src/chrome/content/rules/Grupfoni.xml +++ b/src/chrome/content/rules/Grupfoni.xml @@ -2,7 +2,7 @@ - + diff --git a/src/chrome/content/rules/Grupo-Triton.xml b/src/chrome/content/rules/Grupo-Triton.xml index 07a01ce13d74..36be07f55925 100644 --- a/src/chrome/content/rules/Grupo-Triton.xml +++ b/src/chrome/content/rules/Grupo-Triton.xml @@ -3,10 +3,10 @@ - + - + - + @@ -16,7 +7,7 @@ - + diff --git a/src/chrome/content/rules/GrvCDN.com.xml b/src/chrome/content/rules/GrvCDN.com.xml deleted file mode 100644 index d520b6798710..000000000000 --- a/src/chrome/content/rules/GrvCDN.com.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Gs1ca.org.xml b/src/chrome/content/rules/Gs1ca.org.xml new file mode 100644 index 000000000000..ed2fb233dce3 --- /dev/null +++ b/src/chrome/content/rules/Gs1ca.org.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Gsfacket.se.xml b/src/chrome/content/rules/Gsfacket.se.xml index f4e28f2128ff..91c9911f5ead 100644 --- a/src/chrome/content/rules/Gsfacket.se.xml +++ b/src/chrome/content/rules/Gsfacket.se.xml @@ -1,8 +1,29 @@ - + - - - + + + + diff --git a/src/chrome/content/rules/Gsfn.us.xml b/src/chrome/content/rules/Gsfn.us.xml index a2028e87f53d..c9a30f8f27b3 100644 --- a/src/chrome/content/rules/Gsfn.us.xml +++ b/src/chrome/content/rules/Gsfn.us.xml @@ -22,4 +22,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Gsmhosting.com.xml b/src/chrome/content/rules/Gsmhosting.com.xml deleted file mode 100644 index 9020727a962c..000000000000 --- a/src/chrome/content/rules/Gsmhosting.com.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/src/chrome/content/rules/Gsspcln.jp.xml b/src/chrome/content/rules/Gsspcln.jp.xml index c33f83f6485b..06f36799c6fe 100644 --- a/src/chrome/content/rules/Gsspcln.jp.xml +++ b/src/chrome/content/rules/Gsspcln.jp.xml @@ -1,5 +1,5 @@ diff --git a/src/chrome/content/rules/Gtimg.cn.xml b/src/chrome/content/rules/Gtimg.cn.xml index a68d9c4ff943..c8d5a61155f6 100644 --- a/src/chrome/content/rules/Gtimg.cn.xml +++ b/src/chrome/content/rules/Gtimg.cn.xml @@ -28,6 +28,18 @@ + + + + + + + + + + + + @@ -41,7 +53,7 @@ - + @@ -80,7 +92,7 @@ - @@ -88,4 +100,12 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Gtimg.com.xml b/src/chrome/content/rules/Gtimg.com.xml index 06c4aa19ba18..f59ce3c62d21 100644 --- a/src/chrome/content/rules/Gtimg.com.xml +++ b/src/chrome/content/rules/Gtimg.com.xml @@ -3,7 +3,6 @@ 3366.gtimg.com Mismatch: - ac.gtimg.com a.map.gtimg.com --> @@ -15,6 +14,10 @@ + + + + @@ -40,6 +43,12 @@ + + + + + + @@ -84,6 +93,9 @@ + + + diff --git a/src/chrome/content/rules/Gtk.org.xml b/src/chrome/content/rules/Gtk.org.xml new file mode 100644 index 000000000000..218032edd166 --- /dev/null +++ b/src/chrome/content/rules/Gtk.org.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Gu.com.xml b/src/chrome/content/rules/Gu.com.xml index 43a6e5d83677..9a069e909b2d 100644 --- a/src/chrome/content/rules/Gu.com.xml +++ b/src/chrome/content/rules/Gu.com.xml @@ -1,18 +1,21 @@ + - - + diff --git a/src/chrome/content/rules/Guarantorus_Loans.co.uk.xml b/src/chrome/content/rules/Guarantorus_Loans.co.uk.xml index 95917de5122f..e985a4f8b810 100644 --- a/src/chrome/content/rules/Guarantorus_Loans.co.uk.xml +++ b/src/chrome/content/rules/Guarantorus_Loans.co.uk.xml @@ -2,7 +2,7 @@ NB: Server sends no certificate chain, see https://whatsmychaincert.com --> - + diff --git a/src/chrome/content/rules/Guardian.co.tt.xml b/src/chrome/content/rules/Guardian.co.tt.xml deleted file mode 100644 index 0c75169d2081..000000000000 --- a/src/chrome/content/rules/Guardian.co.tt.xml +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Guardian.xml b/src/chrome/content/rules/Guardian.xml index 38759892cfa2..2de1b6265cc2 100644 --- a/src/chrome/content/rules/Guardian.xml +++ b/src/chrome/content/rules/Guardian.xml @@ -1,10 +1,9 @@ - - + @@ -77,7 +76,7 @@ Fetch error: http://witness.guardian.co.uk/ => https://witness.guardian.co.uk/: - + + + + + + diff --git a/src/chrome/content/rules/GuardianProject.xml b/src/chrome/content/rules/GuardianProject.xml deleted file mode 100644 index 1ff6708d926d..000000000000 --- a/src/chrome/content/rules/GuardianProject.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Guardian_Escapes.com.xml b/src/chrome/content/rules/Guardian_Escapes.com.xml index 11f717d65e15..bb7ee5ba6bb2 100644 --- a/src/chrome/content/rules/Guardian_Escapes.com.xml +++ b/src/chrome/content/rules/Guardian_Escapes.com.xml @@ -21,7 +21,7 @@ --> - + https://essentials.guard * Secured by us --> - + diff --git a/src/chrome/content/rules/Guardian_Subscriptions.co.uk.xml b/src/chrome/content/rules/Guardian_Subscriptions.co.uk.xml deleted file mode 100644 index 1bad19a0100e..000000000000 --- a/src/chrome/content/rules/Guardian_Subscriptions.co.uk.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/GuideStar.xml b/src/chrome/content/rules/GuideStar.xml index b10cca460f4c..4e67184c3981 100644 --- a/src/chrome/content/rules/GuideStar.xml +++ b/src/chrome/content/rules/GuideStar.xml @@ -16,7 +16,7 @@ Fetch error: http://www2.guidestar.org/ => https://www2.guidestar.org/: (60, 'SS * Secured by us --> - + diff --git a/src/chrome/content/rules/Guide_FAQ.com.xml b/src/chrome/content/rules/Guide_FAQ.com.xml index 2256d8881593..c4d6eefe039f 100644 --- a/src/chrome/content/rules/Guide_FAQ.com.xml +++ b/src/chrome/content/rules/Guide_FAQ.com.xml @@ -16,7 +16,7 @@ - + - + + + + + + + + + + - + - + diff --git a/src/chrome/content/rules/GuildEducation.com.xml b/src/chrome/content/rules/GuildEducation.com.xml new file mode 100644 index 000000000000..d7254da195d2 --- /dev/null +++ b/src/chrome/content/rules/GuildEducation.com.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Guild_of_Master_Craftsmen.xml b/src/chrome/content/rules/Guild_of_Master_Craftsmen.xml index bf121f474391..a72c6d3aed62 100644 --- a/src/chrome/content/rules/Guild_of_Master_Craftsmen.xml +++ b/src/chrome/content/rules/Guild_of_Master_Craftsmen.xml @@ -1,19 +1,13 @@ - - + - + - + diff --git a/src/chrome/content/rules/Guillaume-Dargaud.xml b/src/chrome/content/rules/Guillaume-Dargaud.xml new file mode 100644 index 000000000000..3e10daa24dc0 --- /dev/null +++ b/src/chrome/content/rules/Guillaume-Dargaud.xml @@ -0,0 +1,9 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Guillaume_Dargauds_website.xml b/src/chrome/content/rules/Guillaume_Dargauds_website.xml deleted file mode 100644 index f8cf0a4d27fd..000000000000 --- a/src/chrome/content/rules/Guillaume_Dargauds_website.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Guim.co.uk.xml b/src/chrome/content/rules/Guim.co.uk.xml deleted file mode 100644 index 37d20e89b9b5..000000000000 --- a/src/chrome/content/rules/Guim.co.uk.xml +++ /dev/null @@ -1,108 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Guitar_Center.com.xml b/src/chrome/content/rules/Guitar_Center.com.xml index 1a4bcd46a3c8..7aba59ce4121 100644 --- a/src/chrome/content/rules/Guitar_Center.com.xml +++ b/src/chrome/content/rules/Guitar_Center.com.xml @@ -72,10 +72,15 @@ Non-2xx HTTP code: http://guitarcenter.com/ (200) => http://guitarcenter.com/ (4 ² Unsecurable <= interrupted --> - + - + + + + + + diff --git a/src/chrome/content/rules/Guldencoin.com.xml b/src/chrome/content/rules/Guldencoin.com.xml index 3aa5fde8b08a..de5bd366b781 100644 --- a/src/chrome/content/rules/Guldencoin.com.xml +++ b/src/chrome/content/rules/Guldencoin.com.xml @@ -9,7 +9,7 @@ Fetch error: http://www.guldencoin.com/ => https://www.guldencoin.com/: (35, 'er - s3-eu-west-1.amazonaws.com/guldencoin.com/ --> - + diff --git a/src/chrome/content/rules/GumGum.xml b/src/chrome/content/rules/GumGum.xml index 9b2f6e91848c..1e91aa2b596d 100644 --- a/src/chrome/content/rules/GumGum.xml +++ b/src/chrome/content/rules/GumGum.xml @@ -21,7 +21,10 @@ - + + + + + to="https://c.gumgum.com/" /> diff --git a/src/chrome/content/rules/Gumstix.xml b/src/chrome/content/rules/Gumstix.xml index 405e2ccd2c0c..7883f273cfff 100644 --- a/src/chrome/content/rules/Gumstix.xml +++ b/src/chrome/content/rules/Gumstix.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Gumtree.co.za.xml b/src/chrome/content/rules/Gumtree.co.za.xml new file mode 100644 index 000000000000..10c592873e06 --- /dev/null +++ b/src/chrome/content/rules/Gumtree.co.za.xml @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Gumtree.com.au.xml b/src/chrome/content/rules/Gumtree.com.au.xml new file mode 100644 index 000000000000..67330da029e6 --- /dev/null +++ b/src/chrome/content/rules/Gumtree.com.au.xml @@ -0,0 +1,374 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Gumtree.com.xml b/src/chrome/content/rules/Gumtree.com.xml new file mode 100644 index 000000000000..f8bd44a53769 --- /dev/null +++ b/src/chrome/content/rules/Gumtree.com.xml @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Gumtree.ie.xml b/src/chrome/content/rules/Gumtree.ie.xml new file mode 100644 index 000000000000..4b38742dfba1 --- /dev/null +++ b/src/chrome/content/rules/Gumtree.ie.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Gumtree.pl.xml b/src/chrome/content/rules/Gumtree.pl.xml new file mode 100644 index 000000000000..ab2b791fb2e8 --- /dev/null +++ b/src/chrome/content/rules/Gumtree.pl.xml @@ -0,0 +1,50 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Gumtree.sg.xml b/src/chrome/content/rules/Gumtree.sg.xml new file mode 100644 index 000000000000..43ac3fbba92d --- /dev/null +++ b/src/chrome/content/rules/Gumtree.sg.xml @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/GunFacts.info.xml b/src/chrome/content/rules/GunFacts.info.xml new file mode 100644 index 000000000000..10a06c820974 --- /dev/null +++ b/src/chrome/content/rules/GunFacts.info.xml @@ -0,0 +1,14 @@ + + + + + + + + diff --git a/src/chrome/content/rules/GunIO.xml b/src/chrome/content/rules/GunIO.xml index 8adca9e0156e..444fa1326fa9 100644 --- a/src/chrome/content/rules/GunIO.xml +++ b/src/chrome/content/rules/GunIO.xml @@ -24,7 +24,7 @@ --> - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Gusto.com.xml b/src/chrome/content/rules/Gusto.com.xml index f4af42d13f0c..0008ef1440c3 100644 --- a/src/chrome/content/rules/Gusto.com.xml +++ b/src/chrome/content/rules/Gusto.com.xml @@ -8,7 +8,7 @@ - + - + - - + + + + + + + + + + + - + - - - - + diff --git a/src/chrome/content/rules/GwR_YMCA.org.xml b/src/chrome/content/rules/GwR_YMCA.org.xml index a2b74edf63df..1e0dcd7a8fc1 100644 --- a/src/chrome/content/rules/GwR_YMCA.org.xml +++ b/src/chrome/content/rules/GwR_YMCA.org.xml @@ -4,7 +4,7 @@ - + + + + + + + diff --git a/src/chrome/content/rules/Gyazo.com.xml b/src/chrome/content/rules/Gyazo.com.xml index cdbdad367fc4..8f7ee7e07d66 100644 --- a/src/chrome/content/rules/Gyazo.com.xml +++ b/src/chrome/content/rules/Gyazo.com.xml @@ -1,27 +1,29 @@ - + + + + + + + - - - - + + - - - + diff --git a/src/chrome/content/rules/H-T.co.xml b/src/chrome/content/rules/H-T.co.xml index 976b78b07644..255bb5f219d0 100644 --- a/src/chrome/content/rules/H-T.co.xml +++ b/src/chrome/content/rules/H-T.co.xml @@ -12,7 +12,7 @@ Fetch error: http://h-t.co/ => https://h-t.co/: (51, "SSL: no alternative certif - i.h-t.co --> - + diff --git a/src/chrome/content/rules/H5n.us.xml b/src/chrome/content/rules/H5n.us.xml index 966473436df2..2d361cb4c4b9 100644 --- a/src/chrome/content/rules/H5n.us.xml +++ b/src/chrome/content/rules/H5n.us.xml @@ -4,10 +4,11 @@ Disabled by https-everywhere-checker because: Fetch error: http://h5n.us/ => https://h5n.us/: (60, 'SSL certificate problem: certificate has expired') --> - + - + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/HBAnet.org.xml b/src/chrome/content/rules/HBAnet.org.xml index f480c956d906..ec60bb86cf41 100644 --- a/src/chrome/content/rules/HBAnet.org.xml +++ b/src/chrome/content/rules/HBAnet.org.xml @@ -7,7 +7,7 @@ - + diff --git a/src/chrome/content/rules/HBO.xml b/src/chrome/content/rules/HBO.xml index 637e51691405..6f7f3a31b915 100644 --- a/src/chrome/content/rules/HBO.xml +++ b/src/chrome/content/rules/HBO.xml @@ -50,7 +50,7 @@ Fetch error: http://talk.hbo.com/ => https://talk.hbo.com/: (7, 'Failed to conne ˢ Secured by us --> - + @@ -75,7 +75,7 @@ Fetch error: http://talk.hbo.com/ => https://talk.hbo.com/: (7, 'Failed to conne --> - + - + diff --git a/src/chrome/content/rules/HCL_Technologies.xml b/src/chrome/content/rules/HCL_Technologies.xml index d6bdad0432e2..a8d50cf7a56b 100644 --- a/src/chrome/content/rules/HCL_Technologies.xml +++ b/src/chrome/content/rules/HCL_Technologies.xml @@ -44,10 +44,23 @@ Fetch error: http://autodiscover.hcl-axon.com/ => https://autodiscover.hcl-axon. - webmail.hcltech.com --> - - - - + + + + + + + + + + + + + + + + + @@ -57,16 +70,6 @@ Fetch error: http://autodiscover.hcl-axon.com/ => https://autodiscover.hcl-axon. - - - - - - - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/HClippr.com.xml b/src/chrome/content/rules/HClippr.com.xml index 8371835b2253..b786890a72b1 100644 --- a/src/chrome/content/rules/HClippr.com.xml +++ b/src/chrome/content/rules/HClippr.com.xml @@ -25,7 +25,7 @@ - + https://hd.se/: Cycle detected - URL already encou --> - - + + diff --git a/src/chrome/content/rules/HDFury.com.xml b/src/chrome/content/rules/HDFury.com.xml index 4b2eab456ec0..a93a1df17d14 100644 --- a/src/chrome/content/rules/HDFury.com.xml +++ b/src/chrome/content/rules/HDFury.com.xml @@ -34,7 +34,7 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/HDME.eu.xml b/src/chrome/content/rules/HDME.eu.xml new file mode 100644 index 000000000000..c3b76ae356b5 --- /dev/null +++ b/src/chrome/content/rules/HDME.eu.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/HDSA.xml b/src/chrome/content/rules/HDSA.xml index dab34408d812..3e15918293a2 100644 --- a/src/chrome/content/rules/HDSA.xml +++ b/src/chrome/content/rules/HDSA.xml @@ -5,7 +5,7 @@ Fetch error: http://hdsa.org/ => https://www.hdsa.org/: Too many redirects while Fetch error: http://www.hdsa.org/ => https://www.hdsa.org/: Too many redirects while fetching 'https://www.hdsa.org/' --> - + diff --git a/src/chrome/content/rules/HDserviceproviders.com.xml b/src/chrome/content/rules/HDserviceproviders.com.xml index eb20cb042fa0..f286c534635c 100644 --- a/src/chrome/content/rules/HDserviceproviders.com.xml +++ b/src/chrome/content/rules/HDserviceproviders.com.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/HDtracks.com.xml b/src/chrome/content/rules/HDtracks.com.xml index d9ccd153b48b..ea197f199c2a 100644 --- a/src/chrome/content/rules/HDtracks.com.xml +++ b/src/chrome/content/rules/HDtracks.com.xml @@ -20,4 +20,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/HEA.net.xml b/src/chrome/content/rules/HEA.net.xml index db26565d1cda..81c66d894a9d 100644 --- a/src/chrome/content/rules/HEA.net.xml +++ b/src/chrome/content/rules/HEA.net.xml @@ -7,7 +7,7 @@ - + https://www.hfo-telecom.de/: (60, 'SS Fetch error: http://www.telefonanschluss.de/ => https://www.telefonanschluss.de/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + diff --git a/src/chrome/content/rules/HGO.se.xml b/src/chrome/content/rules/HGO.se.xml index a53bca669ad7..fe43000ee6a7 100644 --- a/src/chrome/content/rules/HGO.se.xml +++ b/src/chrome/content/rules/HGO.se.xml @@ -9,7 +9,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.hgo.se/ => https://www.hgo.se/: (60, 'SSL certificate problem: unable to get local issuer certificate') Fetch error: http://hgo.se/ => https://www.hgo.se/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + diff --git a/src/chrome/content/rules/HGST.com.xml b/src/chrome/content/rules/HGST.com.xml index 17fb4855a2d2..8d6740a1a106 100644 --- a/src/chrome/content/rules/HGST.com.xml +++ b/src/chrome/content/rules/HGST.com.xml @@ -14,7 +14,7 @@ - + - @@ -233,7 +231,7 @@ - + + + + + + + + + + + + diff --git a/src/chrome/content/rules/HHid.ru.xml b/src/chrome/content/rules/HHid.ru.xml deleted file mode 100644 index 1f71f0b93ff3..000000000000 --- a/src/chrome/content/rules/HHid.ru.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/HI.is.xml b/src/chrome/content/rules/HI.is.xml index cbf8bd5b0c1c..5de027180db5 100644 --- a/src/chrome/content/rules/HI.is.xml +++ b/src/chrome/content/rules/HI.is.xml @@ -26,7 +26,7 @@ ² Refused ³ Shows default page ⁴ Dropped - ⁵ Shows trabant.rhi.hi.is + ⁵ Shows trabant.rhi.hi.is Problematic hosts in *hi.is: diff --git a/src/chrome/content/rules/HIBAPRESS.com.xml b/src/chrome/content/rules/HIBAPRESS.com.xml new file mode 100644 index 000000000000..d3fbe347a1b5 --- /dev/null +++ b/src/chrome/content/rules/HIBAPRESS.com.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/HIG.se.xml b/src/chrome/content/rules/HIG.se.xml index 7f567457e3a8..30a4b86311c3 100644 --- a/src/chrome/content/rules/HIG.se.xml +++ b/src/chrome/content/rules/HIG.se.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.hig.se/ => https://www.hig.se/: Cycle detected - URL already encountered: https://www.hig.se/ Fetch error: http://hig.se/ => https://www.hig.se/: Cycle detected - URL already encountered: https://www.hig.se/ --> - + diff --git a/src/chrome/content/rules/HIIG.de.xml b/src/chrome/content/rules/HIIG.de.xml index af81e7bce7f3..13e52e66f516 100644 --- a/src/chrome/content/rules/HIIG.de.xml +++ b/src/chrome/content/rules/HIIG.de.xml @@ -10,7 +10,7 @@ - css on www from fonts.googleapis.com * - Images, on: - + - os from www.openingscience.org - os, www from $self diff --git a/src/chrome/content/rules/HJR-Verlag.de.xml b/src/chrome/content/rules/HJR-Verlag.de.xml index 7c63940700be..aa286feb3291 100644 --- a/src/chrome/content/rules/HJR-Verlag.de.xml +++ b/src/chrome/content/rules/HJR-Verlag.de.xml @@ -5,7 +5,8 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/HKEdCity.xml b/src/chrome/content/rules/HKEdCity.xml index 2fa09390ae3a..9d6a079fbe47 100644 --- a/src/chrome/content/rules/HKEdCity.xml +++ b/src/chrome/content/rules/HKEdCity.xml @@ -3,6 +3,10 @@ + + + + diff --git a/src/chrome/content/rules/HKGOLDEN.com.xml b/src/chrome/content/rules/HKGOLDEN.com.xml index 01954b25376e..04b71130ee73 100644 --- a/src/chrome/content/rules/HKGOLDEN.com.xml +++ b/src/chrome/content/rules/HKGOLDEN.com.xml @@ -1,32 +1,24 @@ - + - - - - - + + - + - @@ -47,8 +39,8 @@ - - + + diff --git a/src/chrome/content/rules/HKGov-AFCD.xml b/src/chrome/content/rules/HKGov-AFCD.xml index ff77f75d39e1..47ea49d28116 100644 --- a/src/chrome/content/rules/HKGov-AFCD.xml +++ b/src/chrome/content/rules/HKGov-AFCD.xml @@ -1,12 +1,15 @@ - + - + + + diff --git a/src/chrome/content/rules/HKGov-ArchSD.xml b/src/chrome/content/rules/HKGov-ArchSD.xml index e3706649f3ef..ec80db9dfeb2 100644 --- a/src/chrome/content/rules/HKGov-ArchSD.xml +++ b/src/chrome/content/rules/HKGov-ArchSD.xml @@ -1,7 +1,7 @@ - + diff --git a/src/chrome/content/rules/HKGov-HKMA.xml b/src/chrome/content/rules/HKGov-HKMA.xml index c92cb32a2713..f1b784630f08 100644 --- a/src/chrome/content/rules/HKGov-HKMA.xml +++ b/src/chrome/content/rules/HKGov-HKMA.xml @@ -1,17 +1,16 @@ - + + + - - + diff --git a/src/chrome/content/rules/HKGov-HYD.xml b/src/chrome/content/rules/HKGov-HYD.xml index 2b3da17f17bd..a71a84b66def 100644 --- a/src/chrome/content/rules/HKGov-HYD.xml +++ b/src/chrome/content/rules/HKGov-HYD.xml @@ -10,7 +10,7 @@ - + diff --git a/src/chrome/content/rules/HKGov-ITF.xml b/src/chrome/content/rules/HKGov-ITF.xml index 080b2c0a43ae..9ed2c238e424 100644 --- a/src/chrome/content/rules/HKGov-ITF.xml +++ b/src/chrome/content/rules/HKGov-ITF.xml @@ -9,7 +9,7 @@ - + diff --git a/src/chrome/content/rules/HKGov-LCSD.xml b/src/chrome/content/rules/HKGov-LCSD.xml index 3dc7daca4b58..0efc925b74a8 100644 --- a/src/chrome/content/rules/HKGov-LCSD.xml +++ b/src/chrome/content/rules/HKGov-LCSD.xml @@ -10,7 +10,7 @@ - + @@ -20,7 +20,7 @@ - + @@ -34,6 +34,6 @@ - + diff --git a/src/chrome/content/rules/HKGov-TID.xml b/src/chrome/content/rules/HKGov-TID.xml index a47e3c976eb8..355865fb7bfd 100644 --- a/src/chrome/content/rules/HKGov-TID.xml +++ b/src/chrome/content/rules/HKGov-TID.xml @@ -11,7 +11,7 @@ - + diff --git a/src/chrome/content/rules/HKN.xml b/src/chrome/content/rules/HKN.xml index 966ca2cc3e60..82ce24b69165 100644 --- a/src/chrome/content/rules/HKN.xml +++ b/src/chrome/content/rules/HKN.xml @@ -16,4 +16,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/HKUST-GZ.edu.cn.xml b/src/chrome/content/rules/HKUST-GZ.edu.cn.xml new file mode 100644 index 000000000000..7ded22e4a465 --- /dev/null +++ b/src/chrome/content/rules/HKUST-GZ.edu.cn.xml @@ -0,0 +1,11 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/HKUST.edu.cn.xml b/src/chrome/content/rules/HKUST.edu.cn.xml new file mode 100644 index 000000000000..6b034aff4a00 --- /dev/null +++ b/src/chrome/content/rules/HKUST.edu.cn.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/HKUST.edu.hk.xml b/src/chrome/content/rules/HKUST.edu.hk.xml new file mode 100644 index 000000000000..c827fd94bfad --- /dev/null +++ b/src/chrome/content/rules/HKUST.edu.hk.xml @@ -0,0 +1,11 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/HKW.de.xml b/src/chrome/content/rules/HKW.de.xml index fe2eb9575cb8..2ab376a4bbd1 100644 --- a/src/chrome/content/rules/HKW.de.xml +++ b/src/chrome/content/rules/HKW.de.xml @@ -4,7 +4,7 @@ - + - + - + diff --git a/src/chrome/content/rules/HM.com.xml b/src/chrome/content/rules/HM.com.xml index 1bc5c7886cad..882ded3baa72 100644 --- a/src/chrome/content/rules/HM.com.xml +++ b/src/chrome/content/rules/HM.com.xml @@ -1,11 +1,12 @@ - - - - - - + + + + + + diff --git a/src/chrome/content/rules/HMRC.gov.uk.xml b/src/chrome/content/rules/HMRC.gov.uk.xml index 2bc201612ed4..cba964f4d1e5 100644 --- a/src/chrome/content/rules/HMRC.gov.uk.xml +++ b/src/chrome/content/rules/HMRC.gov.uk.xml @@ -1,8 +1,4 @@ - - + - @@ -93,10 +89,6 @@ Fetch error: http://customs.hmrc.gov.uk/channelsPortalWebApp/channelsPortalWebAp - - - @@ -104,7 +96,7 @@ Fetch error: http://customs.hmrc.gov.uk/channelsPortalWebApp/channelsPortalWebAp - + - + - + diff --git a/src/chrome/content/rules/HMV_Japan.xml b/src/chrome/content/rules/HMV_Japan.xml index 14b66a32a814..3e2a3ae7dcb8 100644 --- a/src/chrome/content/rules/HMV_Japan.xml +++ b/src/chrome/content/rules/HMV_Japan.xml @@ -21,7 +21,9 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/HON.ch.xml b/src/chrome/content/rules/HON.ch.xml index 0c1629a5a688..5ba9c36493d1 100644 --- a/src/chrome/content/rules/HON.ch.xml +++ b/src/chrome/content/rules/HON.ch.xml @@ -17,7 +17,7 @@ Fetch error: http://team.hon.ch/ => https://team.hon.ch/: (60, 'SSL certificate - (www.)? from www.provisu.ch --> - + diff --git a/src/chrome/content/rules/HP_Cloud.com.xml b/src/chrome/content/rules/HP_Cloud.com.xml index f642fe283771..b7ae9acbf43f 100644 --- a/src/chrome/content/rules/HP_Cloud.com.xml +++ b/src/chrome/content/rules/HP_Cloud.com.xml @@ -6,10 +6,12 @@ Fetch error: http://hpcloud.com/ => https://hpcloud.com/: (28, 'Connection timed For other HP coverage, see Hewlett-Packard.xml. --> - + - + + + @@ -20,7 +22,6 @@ Fetch error: http://hpcloud.com/ => https://hpcloud.com/: (28, 'Connection timed - + diff --git a/src/chrome/content/rules/HPlus_the_Digital_Series.xml b/src/chrome/content/rules/HPlus_the_Digital_Series.xml index d5d1acbc6d68..4bbaae48e9b8 100644 --- a/src/chrome/content/rules/HPlus_the_Digital_Series.xml +++ b/src/chrome/content/rules/HPlus_the_Digital_Series.xml @@ -9,7 +9,7 @@ Fetch error: http://www.hplusdigitalseries.com/ => https://www.hplusdigitalserie - ^ (mismatched, CN: wbpinewmedia.warnerbros.com) --> - + @@ -18,4 +18,4 @@ Fetch error: http://www.hplusdigitalseries.com/ => https://www.hplusdigitalserie - \ No newline at end of file + diff --git a/src/chrome/content/rules/HR-Skyen.dk.xml b/src/chrome/content/rules/HR-Skyen.dk.xml index 2d8107c263e4..4363695d8fda 100644 --- a/src/chrome/content/rules/HR-Skyen.dk.xml +++ b/src/chrome/content/rules/HR-Skyen.dk.xml @@ -13,7 +13,7 @@ - + diff --git a/src/chrome/content/rules/HR_Solutions.xml b/src/chrome/content/rules/HR_Solutions.xml index aad352f7f117..1144988c3353 100644 --- a/src/chrome/content/rules/HR_Solutions.xml +++ b/src/chrome/content/rules/HR_Solutions.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://hr-s.co.jp/ => https://hr-s.co.jp/: (51, "SSL: no alternative certificate subject name matches target host name 'hr-s.co.jp'") --> - + @@ -12,4 +12,4 @@ Fetch error: http://hr-s.co.jp/ => https://hr-s.co.jp/: (51, "SSL: no alternativ - \ No newline at end of file + diff --git a/src/chrome/content/rules/HRsmart.xml b/src/chrome/content/rules/HRsmart.xml deleted file mode 100644 index f1ba8de8a300..000000000000 --- a/src/chrome/content/rules/HRsmart.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/HSBC.xml b/src/chrome/content/rules/HSBC.xml index 43c5e396ad71..fbc3018dc084 100644 --- a/src/chrome/content/rules/HSBC.xml +++ b/src/chrome/content/rules/HSBC.xml @@ -227,7 +227,7 @@ - + + + + + + + + + + + diff --git a/src/chrome/content/rules/HSLDA.xml b/src/chrome/content/rules/HSLDA.xml index 21469ee81f03..2dcebfb7fe97 100644 --- a/src/chrome/content/rules/HSLDA.xml +++ b/src/chrome/content/rules/HSLDA.xml @@ -5,4 +5,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/HSV.se.xml b/src/chrome/content/rules/HSV.se.xml index 4ab35cc62ded..dc039622f1fa 100644 --- a/src/chrome/content/rules/HSV.se.xml +++ b/src/chrome/content/rules/HSV.se.xml @@ -11,7 +11,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.hsv.se/ => https://www.hsv.se/: (51, "SSL: no alternative certificate subject name matches target host name 'www.hsv.se'") Fetch error: http://hsv.se/ => https://www.hsv.se/: (51, "SSL: no alternative certificate subject name matches target host name 'www.hsv.se'") hogskoleverket --> - + diff --git a/src/chrome/content/rules/HSappstatic.net.xml b/src/chrome/content/rules/HSappstatic.net.xml deleted file mode 100644 index ec50a7c7bb18..000000000000 --- a/src/chrome/content/rules/HSappstatic.net.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/HTC.com.xml b/src/chrome/content/rules/HTC.com.xml index 1fc64c77de8a..87ea3a848ab5 100644 --- a/src/chrome/content/rules/HTC.com.xml +++ b/src/chrome/content/rules/HTC.com.xml @@ -8,7 +8,7 @@ - - diff --git a/src/chrome/content/rules/HTML5Video.org.xml b/src/chrome/content/rules/HTML5Video.org.xml deleted file mode 100644 index c802d593a5dc..000000000000 --- a/src/chrome/content/rules/HTML5Video.org.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/HTTP.cat.xml b/src/chrome/content/rules/HTTP.cat.xml index bbbdfd0ee5c3..83802f240c41 100644 --- a/src/chrome/content/rules/HTTP.cat.xml +++ b/src/chrome/content/rules/HTTP.cat.xml @@ -9,6 +9,6 @@ - diff --git a/src/chrome/content/rules/HTTrack.com.xml b/src/chrome/content/rules/HTTrack.com.xml new file mode 100644 index 000000000000..57a30a12910f --- /dev/null +++ b/src/chrome/content/rules/HTTrack.com.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/HTW-Berlin.de.xml b/src/chrome/content/rules/HTW-Berlin.de.xml index 6c7ab1583690..3be54235e288 100644 --- a/src/chrome/content/rules/HTW-Berlin.de.xml +++ b/src/chrome/content/rules/HTW-Berlin.de.xml @@ -103,7 +103,7 @@ Fetch error: http://www.f4.htw-berlin.de/ => https://www.f4.htw-berlin.de/: Too - signal.htw-berlin.de --> - + diff --git a/src/chrome/content/rules/HTWG-Konstanz.xml b/src/chrome/content/rules/HTWG-Konstanz.xml index e53263620458..06741b0d4d0b 100644 --- a/src/chrome/content/rules/HTWG-Konstanz.xml +++ b/src/chrome/content/rules/HTWG-Konstanz.xml @@ -4,8 +4,5 @@ - - - - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/HUP.hu.xml b/src/chrome/content/rules/HUP.hu.xml deleted file mode 100644 index 9cebf88375d1..000000000000 --- a/src/chrome/content/rules/HUP.hu.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/HVGKonyvek.xml b/src/chrome/content/rules/HVGKonyvek.xml index 676465d87e94..16d28dff1533 100644 --- a/src/chrome/content/rules/HVGKonyvek.xml +++ b/src/chrome/content/rules/HVGKonyvek.xml @@ -1,6 +1,6 @@ - + diff --git a/src/chrome/content/rules/HaCoder.com.xml b/src/chrome/content/rules/HaCoder.com.xml index ed9aba669636..c691cd77c63f 100644 --- a/src/chrome/content/rules/HaCoder.com.xml +++ b/src/chrome/content/rules/HaCoder.com.xml @@ -21,7 +21,7 @@ Non-2xx HTTP code: http://www.hacoder.com/ (200) => https://www.hacoder.com/ (40 * Secured by us --> - + diff --git a/src/chrome/content/rules/HabboLatino.xml b/src/chrome/content/rules/HabboLatino.xml index d5965a645a1e..46609a1eb737 100644 --- a/src/chrome/content/rules/HabboLatino.xml +++ b/src/chrome/content/rules/HabboLatino.xml @@ -8,10 +8,10 @@ Disabled by https-everywhere-checker because: Fetch error: http://hlat.us/ => https://hlat.us/: Cycle detected - URL already encountered: http://hlat.us/ Nonfunctional domains: - - (www.)hlat.me + - (www.)hlat.me --> - + @@ -22,4 +22,4 @@ Fetch error: http://hlat.us/ => https://hlat.us/: Cycle detected - URL already e - \ No newline at end of file + diff --git a/src/chrome/content/rules/Haber-Vision.xml b/src/chrome/content/rules/Haber-Vision.xml index ea7634693fc4..9b1ebbc33bd5 100644 --- a/src/chrome/content/rules/Haber-Vision.xml +++ b/src/chrome/content/rules/Haber-Vision.xml @@ -3,9 +3,8 @@ - + - + diff --git a/src/chrome/content/rules/Habets.se.xml b/src/chrome/content/rules/Habets.se.xml index a72874863a77..b052041383f3 100644 --- a/src/chrome/content/rules/Habets.se.xml +++ b/src/chrome/content/rules/Habets.se.xml @@ -22,6 +22,6 @@ - diff --git a/src/chrome/content/rules/Habpl.us.xml b/src/chrome/content/rules/Habpl.us.xml index 3131055d7505..78ccb8851abc 100644 --- a/src/chrome/content/rules/Habpl.us.xml +++ b/src/chrome/content/rules/Habpl.us.xml @@ -5,7 +5,7 @@ Fetch error: http://habpl.us/ => https://habpl.us/: Too many redirects while fet Fetch error: http://www.habpl.us/ => https://www.habpl.us/: Too many redirects while fetching 'https://www.habpl.us/' --> - + @@ -16,4 +16,4 @@ Fetch error: http://www.habpl.us/ => https://www.habpl.us/: Too many redirects w - \ No newline at end of file + diff --git a/src/chrome/content/rules/HabraCDN.net.xml b/src/chrome/content/rules/HabraCDN.net.xml index e91b0da36af1..b45456b24a1c 100644 --- a/src/chrome/content/rules/HabraCDN.net.xml +++ b/src/chrome/content/rules/HabraCDN.net.xml @@ -19,7 +19,7 @@ --> - + https://auth.habrahabr.ru/: (51, "SSL: ʳ Unsecurable <= refused --> - + @@ -37,7 +37,7 @@ Fetch error: http://auth.habrahabr.ru/ => https://auth.habrahabr.ru/: (51, "SSL: --> - + - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Hack.chat.xml b/src/chrome/content/rules/Hack.chat.xml new file mode 100644 index 000000000000..7cc4f1992ac5 --- /dev/null +++ b/src/chrome/content/rules/Hack.chat.xml @@ -0,0 +1,13 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/HackLang.org.xml b/src/chrome/content/rules/HackLang.org.xml new file mode 100644 index 000000000000..a996e88e3c33 --- /dev/null +++ b/src/chrome/content/rules/HackLang.org.xml @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/HackRead.com.xml b/src/chrome/content/rules/HackRead.com.xml index ee2ff747ca75..c0cb2b7d0003 100644 --- a/src/chrome/content/rules/HackRead.com.xml +++ b/src/chrome/content/rules/HackRead.com.xml @@ -16,7 +16,7 @@ --> - + - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Hackademix.net.xml b/src/chrome/content/rules/Hackademix.net.xml deleted file mode 100644 index 9d99c90c0b2a..000000000000 --- a/src/chrome/content/rules/Hackademix.net.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/HackerNews.xml b/src/chrome/content/rules/HackerNews.xml index c63bcceab79b..203a010b6330 100644 --- a/src/chrome/content/rules/HackerNews.xml +++ b/src/chrome/content/rules/HackerNews.xml @@ -19,7 +19,7 @@ --> - + - - + diff --git a/src/chrome/content/rules/Hackerfunk.ch.xml b/src/chrome/content/rules/Hackerfunk.ch.xml new file mode 100644 index 000000000000..696c531d5c15 --- /dev/null +++ b/src/chrome/content/rules/Hackerfunk.ch.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Hackers.fi.xml b/src/chrome/content/rules/Hackers.fi.xml index 7d88eba212a3..13586929fe78 100644 --- a/src/chrome/content/rules/Hackers.fi.xml +++ b/src/chrome/content/rules/Hackers.fi.xml @@ -10,10 +10,11 @@ Fetch error: http://hackers.fi/ => https://hackers.fi/: (60, 'SSL certificate pr - www (mismatched, CN: www.noelia.fi) --> - + - + + - + https://redmine.hackerspace.pl/: * Secured by us --> - + @@ -43,7 +43,7 @@ Fetch error: http://redmine.hackerspace.pl/ => https://redmine.hackerspace.pl/: - + https://hacking.ventures/: (51, "SS www: Mismatched --> - + diff --git a/src/chrome/content/rules/Hackinthebox.org.xml b/src/chrome/content/rules/Hackinthebox.org.xml index 1d3a7a71c717..7a3df93a4a77 100644 --- a/src/chrome/content/rules/Hackinthebox.org.xml +++ b/src/chrome/content/rules/Hackinthebox.org.xml @@ -10,7 +10,7 @@ Fetch error: http://hackinthebox.org/ => https://www.hackinthebox.org/: (60, 'SS Fetch error: http://www.hackinthebox.org/ => https://www.hackinthebox.org/: (60, 'SSL certificate problem: certificate has expired') Fetch error: http://forum.hackinthebox.org/ => https://forum.hackinthebox.org/: (60, 'SSL certificate problem: self signed certificate') --> - + diff --git a/src/chrome/content/rules/Hackney.gov.uk-mixedcontent.xml b/src/chrome/content/rules/Hackney.gov.uk-mixedcontent.xml index b5f59419c25e..e9b7766b82ad 100644 --- a/src/chrome/content/rules/Hackney.gov.uk-mixedcontent.xml +++ b/src/chrome/content/rules/Hackney.gov.uk-mixedcontent.xml @@ -7,7 +7,7 @@ - + - + https://hackthe.computer/: (60, 'SS www.hackthe.computer: Refused --> - + diff --git a/src/chrome/content/rules/HacktionLab.org.xml b/src/chrome/content/rules/HacktionLab.org.xml index 22ff79ce063e..f14faca58011 100644 --- a/src/chrome/content/rules/HacktionLab.org.xml +++ b/src/chrome/content/rules/HacktionLab.org.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.hacktionlab.org/ => https://www.hacktionlab.org/: (51, "SSL: no alternative certificate subject name matches target host name 'www.hacktionlab.org'") --> - + diff --git a/src/chrome/content/rules/Hadrons.org.xml b/src/chrome/content/rules/Hadrons.org.xml deleted file mode 100644 index ed9f8a55683c..000000000000 --- a/src/chrome/content/rules/Hadrons.org.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Haiku_Project.xml b/src/chrome/content/rules/Haiku_Project.xml index cd1e6b8cae8b..955646fa2b06 100644 --- a/src/chrome/content/rules/Haiku_Project.xml +++ b/src/chrome/content/rules/Haiku_Project.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Hail_Protector.xml b/src/chrome/content/rules/Hail_Protector.xml deleted file mode 100644 index 1f9df22e3d89..000000000000 --- a/src/chrome/content/rules/Hail_Protector.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Hail_Storm_Products.xml b/src/chrome/content/rules/Hail_Storm_Products.xml deleted file mode 100644 index 87f0ea8ed0a8..000000000000 --- a/src/chrome/content/rules/Hail_Storm_Products.xml +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Hairsmize.com.xml b/src/chrome/content/rules/Hairsmize.com.xml deleted file mode 100644 index 34f6e0bbe9a3..000000000000 --- a/src/chrome/content/rules/Hairsmize.com.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Hak5.org-falsemixed.xml b/src/chrome/content/rules/Hak5.org-falsemixed.xml deleted file mode 100644 index c31ddbf95b5b..000000000000 --- a/src/chrome/content/rules/Hak5.org-falsemixed.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Hak5.org.xml b/src/chrome/content/rules/Hak5.org.xml deleted file mode 100644 index d9958e2ec9d6..000000000000 --- a/src/chrome/content/rules/Hak5.org.xml +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Hakko.com.xml b/src/chrome/content/rules/Hakko.com.xml deleted file mode 100644 index 4a853c5dc64f..000000000000 --- a/src/chrome/content/rules/Hakko.com.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/HalalTube.com.xml b/src/chrome/content/rules/HalalTube.com.xml new file mode 100644 index 000000000000..99c284bc0c55 --- /dev/null +++ b/src/chrome/content/rules/HalalTube.com.xml @@ -0,0 +1,12 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Halcyon.sh.xml b/src/chrome/content/rules/Halcyon.sh.xml index 5557614f63a5..50bd3fbf1a7c 100644 --- a/src/chrome/content/rules/Halcyon.sh.xml +++ b/src/chrome/content/rules/Halcyon.sh.xml @@ -1,14 +1,21 @@ + - - + + diff --git a/src/chrome/content/rules/Halebop.se.xml b/src/chrome/content/rules/Halebop.se.xml index fa88c5efbfe8..7d51271c9d76 100644 --- a/src/chrome/content/rules/Halebop.se.xml +++ b/src/chrome/content/rules/Halebop.se.xml @@ -1,8 +1,12 @@ - - + - - - + + + + + + + + diff --git a/src/chrome/content/rules/Halifax-Online.co.uk.xml b/src/chrome/content/rules/Halifax-Online.co.uk.xml new file mode 100644 index 000000000000..91f3f6671e5c --- /dev/null +++ b/src/chrome/content/rules/Halifax-Online.co.uk.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Halifax.co.uk.xml b/src/chrome/content/rules/Halifax.co.uk.xml new file mode 100644 index 000000000000..8d668c3c2d45 --- /dev/null +++ b/src/chrome/content/rules/Halifax.co.uk.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Halifax.xml b/src/chrome/content/rules/Halifax.xml deleted file mode 100644 index 3188790d6c46..000000000000 --- a/src/chrome/content/rules/Halifax.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Halo-oglasi.xml b/src/chrome/content/rules/Halo-oglasi.xml new file mode 100644 index 000000000000..95340e9940bd --- /dev/null +++ b/src/chrome/content/rules/Halo-oglasi.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Halo.xml b/src/chrome/content/rules/Halo.xml index 988d7d778f20..31efac7d6540 100644 --- a/src/chrome/content/rules/Halo.xml +++ b/src/chrome/content/rules/Halo.xml @@ -33,7 +33,7 @@ - + - + diff --git a/src/chrome/content/rules/HamRadioScience.com.xml b/src/chrome/content/rules/HamRadioScience.com.xml new file mode 100644 index 000000000000..2aa352d06bf9 --- /dev/null +++ b/src/chrome/content/rules/HamRadioScience.com.xml @@ -0,0 +1,11 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Ham_Radio_Science.com.xml b/src/chrome/content/rules/Ham_Radio_Science.com.xml deleted file mode 100644 index 2e40956e5442..000000000000 --- a/src/chrome/content/rules/Ham_Radio_Science.com.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Hammacher-Schlemmer.xml b/src/chrome/content/rules/Hammacher-Schlemmer.xml index 88cb4abdd2c2..356933e24b32 100644 --- a/src/chrome/content/rules/Hammacher-Schlemmer.xml +++ b/src/chrome/content/rules/Hammacher-Schlemmer.xml @@ -1,7 +1,9 @@ - + + + - + diff --git a/src/chrome/content/rules/Handbrake.fr.xml b/src/chrome/content/rules/Handbrake.fr.xml deleted file mode 100644 index f742da959a5d..000000000000 --- a/src/chrome/content/rules/Handbrake.fr.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Handelsbanken.fi.xml b/src/chrome/content/rules/Handelsbanken.fi.xml index 51affe170db4..ab62d990cac0 100644 --- a/src/chrome/content/rules/Handelsbanken.fi.xml +++ b/src/chrome/content/rules/Handelsbanken.fi.xml @@ -7,7 +7,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www2.handelsbanken.fi/ => https://www2.handelsbanken.fi/: (7, 'Failed to connect to www2.handelsbanken.fi port 80: Connection refused') Fetch error: http://www9.handelsbanken.fi/ => https://www9.handelsbanken.fi/: 'NoneType' object has no attribute 'xpath' --> - + @@ -16,7 +16,7 @@ Fetch error: http://www9.handelsbanken.fi/ => https://www9.handelsbanken.fi/: 'N - + diff --git a/src/chrome/content/rules/Handelsblatt.xml b/src/chrome/content/rules/Handelsblatt.xml index 5db715ef40b0..a864f54477d2 100644 --- a/src/chrome/content/rules/Handelsblatt.xml +++ b/src/chrome/content/rules/Handelsblatt.xml @@ -1,62 +1,65 @@ - + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + to="https://d30no8cbyph8wj.cloudfront.net/" /> + + + + diff --git a/src/chrome/content/rules/Handelsregister.de.xml b/src/chrome/content/rules/Handelsregister.de.xml index 4fe71b5f3d13..fa079446bb6a 100644 --- a/src/chrome/content/rules/Handelsregister.de.xml +++ b/src/chrome/content/rules/Handelsregister.de.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://handelsregister.de/ => https://handelsregister.de/: (51, "SSL: no alternative certificate subject name matches target host name 'handelsregister.de'") --> - + diff --git a/src/chrome/content/rules/Handy.de.xml b/src/chrome/content/rules/Handy.de.xml deleted file mode 100644 index d0467dde722b..000000000000 --- a/src/chrome/content/rules/Handy.de.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Hanfling.de.xml b/src/chrome/content/rules/Hanfling.de.xml new file mode 100644 index 000000000000..8960d4d1edb0 --- /dev/null +++ b/src/chrome/content/rules/Hanfling.de.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/HangSeng.com.cn.xml b/src/chrome/content/rules/HangSeng.com.cn.xml new file mode 100644 index 000000000000..86b956e8298d --- /dev/null +++ b/src/chrome/content/rules/HangSeng.com.cn.xml @@ -0,0 +1,20 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/HangSengBank.xml b/src/chrome/content/rules/HangSengBank.xml index e96433c326d6..6169f5ca5f51 100644 --- a/src/chrome/content/rules/HangSengBank.xml +++ b/src/chrome/content/rules/HangSengBank.xml @@ -1,38 +1,46 @@ + + + + + + + + + + + + + + - - - + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Hants.gov.uk.xml b/src/chrome/content/rules/Hants.gov.uk.xml index b453361e5b86..47a87dd2533c 100644 --- a/src/chrome/content/rules/Hants.gov.uk.xml +++ b/src/chrome/content/rules/Hants.gov.uk.xml @@ -27,7 +27,7 @@ Non-2xx HTTP code: http://tribal.hants.gov.uk/ (200) => https://tribal.hants.gov - ict.hias ᵃ - re.hias ᵃ - science.hias ᵃ - + - historicenvironment ᵃ - linkeddata ʳ - localviewmaps ᵖ @@ -81,7 +81,7 @@ Non-2xx HTTP code: http://tribal.hants.gov.uk/ (200) => https://tribal.hants.gov ˢ Secured by us --> - + @@ -105,7 +105,7 @@ Non-2xx HTTP code: http://tribal.hants.gov.uk/ (200) => https://tribal.hants.gov - + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Hao123.xml b/src/chrome/content/rules/Hao123.xml deleted file mode 100644 index 43ae722a0a2f..000000000000 --- a/src/chrome/content/rules/Hao123.xml +++ /dev/null @@ -1,161 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Haobtc.com.xml b/src/chrome/content/rules/Haobtc.com.xml deleted file mode 100644 index ec3f8a3e1f1d..000000000000 --- a/src/chrome/content/rules/Haobtc.com.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/HappyKnowledge.com.xml b/src/chrome/content/rules/HappyKnowledge.com.xml index e0b443cbb66a..57a21f653acf 100644 --- a/src/chrome/content/rules/HappyKnowledge.com.xml +++ b/src/chrome/content/rules/HappyKnowledge.com.xml @@ -5,7 +5,7 @@ - + diff --git a/src/chrome/content/rules/Happy_Herbivore.xml b/src/chrome/content/rules/Happy_Herbivore.xml deleted file mode 100644 index d2a20b474b7d..000000000000 --- a/src/chrome/content/rules/Happy_Herbivore.xml +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Happyassassin.net.xml b/src/chrome/content/rules/Happyassassin.net.xml index 7d1f9f92bf48..af4be16b898f 100644 --- a/src/chrome/content/rules/Happyassassin.net.xml +++ b/src/chrome/content/rules/Happyassassin.net.xml @@ -5,7 +5,7 @@ Fetch error: http://happyassassin.net/ => https://happyassassin.net/: (51, "SSL: Fetch error: http://mail.happyassassin.net/ => https://mail.happyassassin.net/: (51, "SSL: no alternative certificate subject name matches target host name 'mail.happyassassin.net'") --> - + diff --git a/src/chrome/content/rules/Haproxy.org.xml b/src/chrome/content/rules/Haproxy.org.xml new file mode 100644 index 000000000000..bab249320888 --- /dev/null +++ b/src/chrome/content/rules/Haproxy.org.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Harakahdaily.xml b/src/chrome/content/rules/Harakahdaily.xml index 3ce88f0327a3..59bc24549ccb 100644 --- a/src/chrome/content/rules/Harakahdaily.xml +++ b/src/chrome/content/rules/Harakahdaily.xml @@ -14,21 +14,13 @@ Non-2xx HTTP code: http://harakah.net.my/ (200) => https://harakah.net.my/ (521) --> - - - - - + + + - - - - - \ No newline at end of file + diff --git a/src/chrome/content/rules/HardDrop.com.xml b/src/chrome/content/rules/HardDrop.com.xml new file mode 100644 index 000000000000..82e71173e765 --- /dev/null +++ b/src/chrome/content/rules/HardDrop.com.xml @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/HardenedBSD.org.xml b/src/chrome/content/rules/HardenedBSD.org.xml index d0aba8b1eca3..805ccf40efaa 100644 --- a/src/chrome/content/rules/HardenedBSD.org.xml +++ b/src/chrome/content/rules/HardenedBSD.org.xml @@ -19,7 +19,7 @@ Fetch error: http://pkg.hardenedbsd.org/ => https://pkg.hardenedbsd.org/: (60, ' - .hardenedbsd.org --> - + diff --git a/src/chrome/content/rules/Hark.xml b/src/chrome/content/rules/Hark.xml index 900171c6e522..2c233d4c8dde 100644 --- a/src/chrome/content/rules/Hark.xml +++ b/src/chrome/content/rules/Hark.xml @@ -6,7 +6,7 @@ Fetch error: http://hark.com/ => https://hark.com/: (7, 'Failed to connect to ha Disabled by https-everywhere-checker because: Fetch error: http://hark.com/ => https://hark.com/: (7, 'Failed to connect to hark.com port 443: Connection refused') --> - + diff --git a/src/chrome/content/rules/Harland-Clarke.xml b/src/chrome/content/rules/Harland-Clarke.xml index 34f47c34ac6a..7c4eb8ad0bd8 100644 --- a/src/chrome/content/rules/Harland-Clarke.xml +++ b/src/chrome/content/rules/Harland-Clarke.xml @@ -18,7 +18,7 @@ Fetch error: http://harlandclarkegiftcard.com/ => https://www.harlandclarkegiftc Fetch error: http://harlandclarkewebsmart.com/ => https://www.harlandclarkewebsmart.com/: (28, 'Connection timed out after 10000 milliseconds') Fetch error: http://www.harlandclarkewebsmart.com/ => https://www.harlandclarkewebsmart.com/: (28, 'Connection timed out after 10000 milliseconds') --> - + @@ -43,14 +43,10 @@ Fetch error: http://www.harlandclarkewebsmart.com/ => https://www.harlandclarkew - - - - + + + + diff --git a/src/chrome/content/rules/Harman-International-Industries.xml b/src/chrome/content/rules/Harman-International-Industries.xml deleted file mode 100644 index 858b392b5123..000000000000 --- a/src/chrome/content/rules/Harman-International-Industries.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Harper_Reed.com.xml b/src/chrome/content/rules/Harper_Reed.com.xml index d128b15fd10e..ad139ac4adf7 100644 --- a/src/chrome/content/rules/Harper_Reed.com.xml +++ b/src/chrome/content/rules/Harper_Reed.com.xml @@ -16,7 +16,7 @@ --> - + - - - - - - - - diff --git a/src/chrome/content/rules/Harris-Interactive.xml b/src/chrome/content/rules/Harris-Interactive.xml deleted file mode 100644 index b667e6ffc934..000000000000 --- a/src/chrome/content/rules/Harris-Interactive.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/src/chrome/content/rules/Harris_Computer.com.xml b/src/chrome/content/rules/Harris_Computer.com.xml deleted file mode 100644 index b4a2695c56c5..000000000000 --- a/src/chrome/content/rules/Harris_Computer.com.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Harrow.io.xml b/src/chrome/content/rules/Harrow.io.xml deleted file mode 100644 index c4761b600be7..000000000000 --- a/src/chrome/content/rules/Harrow.io.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/HarryPotter.com.ua.xml b/src/chrome/content/rules/HarryPotter.com.ua.xml new file mode 100644 index 000000000000..5658441e0aa2 --- /dev/null +++ b/src/chrome/content/rules/HarryPotter.com.ua.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/HarryPotterFanFiction.com.xml b/src/chrome/content/rules/HarryPotterFanFiction.com.xml new file mode 100644 index 000000000000..f8ee39a52878 --- /dev/null +++ b/src/chrome/content/rules/HarryPotterFanFiction.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/HarryPotterPlatform934.com.xml b/src/chrome/content/rules/HarryPotterPlatform934.com.xml new file mode 100644 index 000000000000..f867d0e933c2 --- /dev/null +++ b/src/chrome/content/rules/HarryPotterPlatform934.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/HarryPotterSacredText.com.xml b/src/chrome/content/rules/HarryPotterSacredText.com.xml new file mode 100644 index 000000000000..89bbab93c8cf --- /dev/null +++ b/src/chrome/content/rules/HarryPotterSacredText.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/HarryPotterThePlay.com.xml b/src/chrome/content/rules/HarryPotterThePlay.com.xml new file mode 100644 index 000000000000..94fb1ccc18b8 --- /dev/null +++ b/src/chrome/content/rules/HarryPotterThePlay.com.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Harry_S_Truman_Library_and_Museum.xml b/src/chrome/content/rules/Harry_S_Truman_Library_and_Museum.xml deleted file mode 100644 index 06edc9a87189..000000000000 --- a/src/chrome/content/rules/Harry_S_Truman_Library_and_Museum.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Hartware.de.xml b/src/chrome/content/rules/Hartware.de.xml index 8b228505b54d..7d737c21b631 100644 --- a/src/chrome/content/rules/Hartware.de.xml +++ b/src/chrome/content/rules/Hartware.de.xml @@ -1,4 +1,4 @@ - - + + diff --git a/src/chrome/content/rules/Hartwork-Project.xml b/src/chrome/content/rules/Hartwork-Project.xml index fd18aab1c43e..cacdd496ec9f 100644 --- a/src/chrome/content/rules/Hartwork-Project.xml +++ b/src/chrome/content/rules/Hartwork-Project.xml @@ -6,10 +6,8 @@ - + - diff --git a/src/chrome/content/rules/Harvard-University-expired.xml b/src/chrome/content/rules/Harvard-University-expired.xml index b894e43e0275..c5391baec20c 100644 --- a/src/chrome/content/rules/Harvard-University-expired.xml +++ b/src/chrome/content/rules/Harvard-University-expired.xml @@ -10,7 +10,7 @@ - + - - + + diff --git a/src/chrome/content/rules/Hashbang.ca.xml b/src/chrome/content/rules/Hashbang.ca.xml index 47f61f17c2c7..816a85d4835f 100644 --- a/src/chrome/content/rules/Hashbang.ca.xml +++ b/src/chrome/content/rules/Hashbang.ca.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.hashbang.ca/ => https://www.hashbang.ca/: (51, "SSL: no alternative certificate subject name matches target host name 'www.hashbang.ca'") --> - + diff --git a/src/chrome/content/rules/Hashcat.xml b/src/chrome/content/rules/Hashcat.xml deleted file mode 100644 index eac8c6b3e523..000000000000 --- a/src/chrome/content/rules/Hashcat.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Hashnest.com.xml b/src/chrome/content/rules/Hashnest.com.xml index 6f03bd3b3a08..b064474ff3c7 100644 --- a/src/chrome/content/rules/Hashnest.com.xml +++ b/src/chrome/content/rules/Hashnest.com.xml @@ -10,7 +10,7 @@ - + - + - - - - - - - - - diff --git a/src/chrome/content/rules/Hastings.gov.uk.xml b/src/chrome/content/rules/Hastings.gov.uk.xml index 3fa7fe082901..2ccb477b9c79 100644 --- a/src/chrome/content/rules/Hastings.gov.uk.xml +++ b/src/chrome/content/rules/Hastings.gov.uk.xml @@ -31,7 +31,7 @@ --> - + https://hatatorium.com/: (35, 'error:140770FC:SSL routines:SSL23_GET_SERVER_HELLO:unknown protocol') Fetch error: http://www.hatatorium.com/ => https://www.hatatorium.com/: (35, 'error:140770FC:SSL routines:SSL23_GET_SERVER_HELLO:unknown protocol') --> - + @@ -16,4 +16,4 @@ Fetch error: http://www.hatatorium.com/ => https://www.hatatorium.com/: (35, 'er - \ No newline at end of file + diff --git a/src/chrome/content/rules/Hatena.xml b/src/chrome/content/rules/Hatena.xml index b11387fc931a..51f6696cc7c3 100644 --- a/src/chrome/content/rules/Hatena.xml +++ b/src/chrome/content/rules/Hatena.xml @@ -53,24 +53,26 @@ --> - - + + + + + + - + - - - - + + - - - - diff --git a/src/chrome/content/rules/HathiTrust-Digital-Library.xml b/src/chrome/content/rules/HathiTrust-Digital-Library.xml index 7db2b00fddd0..580ce3b15e17 100644 --- a/src/chrome/content/rules/HathiTrust-Digital-Library.xml +++ b/src/chrome/content/rules/HathiTrust-Digital-Library.xml @@ -14,14 +14,12 @@ - - + + - \ No newline at end of file + diff --git a/src/chrome/content/rules/HaveProof.com.xml b/src/chrome/content/rules/HaveProof.com.xml index 9fe21bb8b337..7c6315599648 100644 --- a/src/chrome/content/rules/HaveProof.com.xml +++ b/src/chrome/content/rules/HaveProof.com.xml @@ -7,7 +7,7 @@ Fetch error: http://www.haveproof.com/ => https://haveproof.com/: (51, "SSL: no www: cert only maches ^haveproof.com --> - + diff --git a/src/chrome/content/rules/Havelock_Investments.com.xml b/src/chrome/content/rules/Havelock_Investments.com.xml deleted file mode 100644 index 84c4a68581ed..000000000000 --- a/src/chrome/content/rules/Havelock_Investments.com.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Havering.gov.uk.xml b/src/chrome/content/rules/Havering.gov.uk.xml index 6a9fec261b88..db03e4c7198a 100644 --- a/src/chrome/content/rules/Havering.gov.uk.xml +++ b/src/chrome/content/rules/Havering.gov.uk.xml @@ -1,70 +1,24 @@ - - - - + + - + + - - - - - - - - - - - - - - - + - + + diff --git a/src/chrome/content/rules/Hawaii.gov.xml b/src/chrome/content/rules/Hawaii.gov.xml index 4eb9f6eaeadb..fa4b1e71dea1 100644 --- a/src/chrome/content/rules/Hawaii.gov.xml +++ b/src/chrome/content/rules/Hawaii.gov.xml @@ -17,20 +17,20 @@ Fetch error: http://ehawaii.gov/ => https://ehawaii.gov/: (6, 'Could not resolve --> + + + - + + - + - - - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/HawaiianAirlines.xml b/src/chrome/content/rules/HawaiianAirlines.xml index 77078bf4e23c..60004ff503ae 100644 --- a/src/chrome/content/rules/HawaiianAirlines.xml +++ b/src/chrome/content/rules/HawaiianAirlines.xml @@ -1,9 +1,10 @@ - + + + - + diff --git a/src/chrome/content/rules/Hawk_Host.com.xml b/src/chrome/content/rules/Hawk_Host.com.xml index 0e4e19f8fc01..42124dae781f 100644 --- a/src/chrome/content/rules/Hawk_Host.com.xml +++ b/src/chrome/content/rules/Hawk_Host.com.xml @@ -23,7 +23,10 @@ - + + + + @@ -36,7 +39,6 @@ - + diff --git a/src/chrome/content/rules/Haymarket-problematic.xml b/src/chrome/content/rules/Haymarket-problematic.xml index c744e64687f2..89578ad4040a 100644 --- a/src/chrome/content/rules/Haymarket-problematic.xml +++ b/src/chrome/content/rules/Haymarket-problematic.xml @@ -4,13 +4,12 @@ --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Haymarket.xml b/src/chrome/content/rules/Haymarket.xml index 3eb97dc910b1..3bb7b3b98c88 100644 --- a/src/chrome/content/rules/Haymarket.xml +++ b/src/chrome/content/rules/Haymarket.xml @@ -48,21 +48,14 @@ - - + - - + --> - - - + diff --git a/src/chrome/content/rules/HaystackSoftware.xml b/src/chrome/content/rules/HaystackSoftware.xml index e1ded791387e..97e31c2e633c 100644 --- a/src/chrome/content/rules/HaystackSoftware.xml +++ b/src/chrome/content/rules/HaystackSoftware.xml @@ -4,4 +4,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/HbbTV.xml b/src/chrome/content/rules/HbbTV.xml index dbf56a4da66c..3e1651db0df7 100644 --- a/src/chrome/content/rules/HbbTV.xml +++ b/src/chrome/content/rules/HbbTV.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Hbrowse.com.xml b/src/chrome/content/rules/Hbrowse.com.xml new file mode 100644 index 000000000000..d4a57da02990 --- /dev/null +++ b/src/chrome/content/rules/Hbrowse.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Hbz.xml b/src/chrome/content/rules/Hbz.xml index 5f659712c20b..e6cee0929cd3 100644 --- a/src/chrome/content/rules/Hbz.xml +++ b/src/chrome/content/rules/Hbz.xml @@ -10,7 +10,7 @@ Fetch error: http://dbspixel.hbz-nrw.de/ => https://dbspixel.hbz-nrw.de/: (28, ' dbspixel: Tracking --> - + diff --git a/src/chrome/content/rules/Hdbits.org.xml b/src/chrome/content/rules/Hdbits.org.xml deleted file mode 100644 index ff948ef37826..000000000000 --- a/src/chrome/content/rules/Hdbits.org.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/Hdfcbank.com.xml b/src/chrome/content/rules/Hdfcbank.com.xml index 2cbd10e2cedd..181e6fdbc15d 100644 --- a/src/chrome/content/rules/Hdfcbank.com.xml +++ b/src/chrome/content/rules/Hdfcbank.com.xml @@ -1,17 +1,17 @@ - - + + + - - + diff --git a/src/chrome/content/rules/HealthCare.gov.xml b/src/chrome/content/rules/HealthCare.gov.xml new file mode 100644 index 000000000000..11f55597dbfe --- /dev/null +++ b/src/chrome/content/rules/HealthCare.gov.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/HealthCheckUSA.com.xml b/src/chrome/content/rules/HealthCheckUSA.com.xml new file mode 100644 index 000000000000..03075b03c223 --- /dev/null +++ b/src/chrome/content/rules/HealthCheckUSA.com.xml @@ -0,0 +1,15 @@ + + + + + + + diff --git a/src/chrome/content/rules/HealthCheckUSA.xml b/src/chrome/content/rules/HealthCheckUSA.xml deleted file mode 100644 index 6219aaaf181a..000000000000 --- a/src/chrome/content/rules/HealthCheckUSA.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/HealthDesigns.xml b/src/chrome/content/rules/HealthDesigns.xml index 99ea06455ab8..ce9e1efe3c24 100644 --- a/src/chrome/content/rules/HealthDesigns.xml +++ b/src/chrome/content/rules/HealthDesigns.xml @@ -3,17 +3,17 @@ Disabled by https-everywhere-checker because: Fetch error: http://healthdesigns.com/ => https://healthdesigns.com/: (7, 'Failed to connect to healthdesigns.com port 443: No route to host') Fetch error: http://www.healthdesigns.com/ => https://www.healthdesigns.com/: (7, 'Failed to connect to www.healthdesigns.com port 443: No route to host') - - + + Refused: - rewards. - + Expired: - br. - + --> - + diff --git a/src/chrome/content/rules/HealthUnlocked.com.xml b/src/chrome/content/rules/HealthUnlocked.com.xml index 614995ac3a51..fbef720e91e7 100644 --- a/src/chrome/content/rules/HealthUnlocked.com.xml +++ b/src/chrome/content/rules/HealthUnlocked.com.xml @@ -15,7 +15,7 @@ --> - + diff --git a/src/chrome/content/rules/Healthcare.gov.xml b/src/chrome/content/rules/Healthcare.gov.xml deleted file mode 100644 index baa2ad95d6a3..000000000000 --- a/src/chrome/content/rules/Healthcare.gov.xml +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Healthcare_Staff_Benefits.xml b/src/chrome/content/rules/Healthcare_Staff_Benefits.xml index 81b06b32022d..3e58dd8fcc0a 100644 --- a/src/chrome/content/rules/Healthcare_Staff_Benefits.xml +++ b/src/chrome/content/rules/Healthcare_Staff_Benefits.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/HealthdirectAustralia.xml b/src/chrome/content/rules/HealthdirectAustralia.xml index 3cebf1ae561f..c2a1f8681fb0 100644 --- a/src/chrome/content/rules/HealthdirectAustralia.xml +++ b/src/chrome/content/rules/HealthdirectAustralia.xml @@ -1,7 +1,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Healthfuze.com.xml b/src/chrome/content/rules/Healthfuze.com.xml index 971d8c2055ad..19c21532b358 100644 --- a/src/chrome/content/rules/Healthfuze.com.xml +++ b/src/chrome/content/rules/Healthfuze.com.xml @@ -1,12 +1,10 @@ - + - - + - - - - - - - diff --git a/src/chrome/content/rules/HealthyGeorge.com.xml b/src/chrome/content/rules/HealthyGeorge.com.xml new file mode 100644 index 000000000000..917736f27865 --- /dev/null +++ b/src/chrome/content/rules/HealthyGeorge.com.xml @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Healthy_Eater.com.xml b/src/chrome/content/rules/Healthy_Eater.com.xml index ab5f4f9f2a51..94db83c063cd 100644 --- a/src/chrome/content/rules/Healthy_Eater.com.xml +++ b/src/chrome/content/rules/Healthy_Eater.com.xml @@ -22,7 +22,7 @@ --> - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Heanet.ie-falsemixed.xml b/src/chrome/content/rules/Heanet.ie-falsemixed.xml index 9a0fe9e854d7..4e59a9c07c17 100644 --- a/src/chrome/content/rules/Heanet.ie-falsemixed.xml +++ b/src/chrome/content/rules/Heanet.ie-falsemixed.xml @@ -13,7 +13,7 @@ - + - + - + - + - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Heart.org.xml b/src/chrome/content/rules/Heart.org.xml index 70f4dfbeccb5..355380510e2d 100644 --- a/src/chrome/content/rules/Heart.org.xml +++ b/src/chrome/content/rules/Heart.org.xml @@ -20,7 +20,7 @@ Fetch error: http://heart.org/ => https://www.heart.org/: (60, 'SSL certificate - newsroom ³ ¹ Cert only matches www - ² Mismatched, CN: + ² Mismatched, CN: ³ Works; mismatched, CN: cms.iprsoftware.com @@ -47,7 +47,12 @@ Fetch error: http://heart.org/ => https://www.heart.org/: (60, 'SSL certificate - + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Heatmap.xml b/src/chrome/content/rules/Heatmap.xml index 803d29c403ff..4b91f46b2dff 100644 --- a/src/chrome/content/rules/Heatmap.xml +++ b/src/chrome/content/rules/Heatmap.xml @@ -1,27 +1,29 @@ - - - + + + - - - - - - - - + + + + + + + + + + + + - + - diff --git a/src/chrome/content/rules/Heavy.com.xml b/src/chrome/content/rules/Heavy.com.xml index d48eac70eaf6..0f2bd38df346 100644 --- a/src/chrome/content/rules/Heavy.com.xml +++ b/src/chrome/content/rules/Heavy.com.xml @@ -1,23 +1,12 @@ - + - + - - - - diff --git a/src/chrome/content/rules/Heckrath.net.xml b/src/chrome/content/rules/Heckrath.net.xml deleted file mode 100644 index f02bb8d97742..000000000000 --- a/src/chrome/content/rules/Heckrath.net.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Hegerys.com.xml b/src/chrome/content/rules/Hegerys.com.xml deleted file mode 100644 index 721fd65b3fab..000000000000 --- a/src/chrome/content/rules/Hegerys.com.xml +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Heidelberg.de.xml b/src/chrome/content/rules/Heidelberg.de.xml index be1c6e2ade11..f2f4f8370e86 100644 --- a/src/chrome/content/rules/Heidelberg.de.xml +++ b/src/chrome/content/rules/Heidelberg.de.xml @@ -5,7 +5,7 @@ Fetch error: http://heidelberg.de/ => https://www.heidelberg.de/: (60, 'SSL cert Fetch error: http://www.heidelberg.de/ => https://www.heidelberg.de/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + diff --git a/src/chrome/content/rules/Heifer.org.xml b/src/chrome/content/rules/Heifer.org.xml index abc72ff297d8..eb3cac880eb4 100644 --- a/src/chrome/content/rules/Heifer.org.xml +++ b/src/chrome/content/rules/Heifer.org.xml @@ -10,7 +10,7 @@ Fetch error: http://secure1.heifer.org/ => https://secure1.heifer.org/: (7, 'Fai - 9dc3f407a257cfd3f7ea-d14ef12e680aa00597bdffb57368cf92.r6.cf2.rackcdn.com --> - + diff --git a/src/chrome/content/rules/Heimdal_Security.com.xml b/src/chrome/content/rules/Heimdal_Security.com.xml index ed6f19c4d133..30a9699c02dc 100644 --- a/src/chrome/content/rules/Heimdal_Security.com.xml +++ b/src/chrome/content/rules/Heimdal_Security.com.xml @@ -9,7 +9,9 @@ - + + + - + diff --git a/src/chrome/content/rules/Heinlein-Support.de.xml b/src/chrome/content/rules/Heinlein-Support.de.xml index 6ec60b7968ac..7be3ce3c4243 100644 --- a/src/chrome/content/rules/Heinlein-Support.de.xml +++ b/src/chrome/content/rules/Heinlein-Support.de.xml @@ -8,7 +8,7 @@ --> - + - + @@ -80,7 +80,7 @@ - + diff --git a/src/chrome/content/rules/Hell_Hole_Cheese_Factory.org.xml b/src/chrome/content/rules/Hell_Hole_Cheese_Factory.org.xml index 35a657c00bd5..c035e52c748b 100644 --- a/src/chrome/content/rules/Hell_Hole_Cheese_Factory.org.xml +++ b/src/chrome/content/rules/Hell_Hole_Cheese_Factory.org.xml @@ -8,7 +8,7 @@ Automatically by https-everywhere-checker because: Fetch error: http://hellholecheesefactory.org/ => https://hellholecheesefactory.org/: (51, "SSL: no alternative certificate subject name matches target host name 'hellholecheesefactory.org'") Fetch error: http://www.hellholecheesefactory.org/ => https://www.hellholecheesefactory.org/: (51, "SSL: no alternative certificate subject name matches target host name 'hellholecheesefactory.org'") --> - + diff --git a/src/chrome/content/rules/Heller-Information-Services.xml b/src/chrome/content/rules/Heller-Information-Services.xml index e2cb4e5bf328..3ddb4ee55731 100644 --- a/src/chrome/content/rules/Heller-Information-Services.xml +++ b/src/chrome/content/rules/Heller-Information-Services.xml @@ -12,7 +12,7 @@ - + - + @@ -38,7 +38,7 @@ Fetch error: http://hellobar.com/ => https://hellobar.com/: (60, 'SSL certificat --> - + https://www.helloneighbour.com/: - (www.)askyourneighbour.ca (ssl_error_rx_record_too_long) --> - + - + diff --git a/src/chrome/content/rules/Hello_Bond.com.xml b/src/chrome/content/rules/Hello_Bond.com.xml index 8c8d353903e4..d974bddf17dd 100644 --- a/src/chrome/content/rules/Hello_Bond.com.xml +++ b/src/chrome/content/rules/Hello_Bond.com.xml @@ -20,7 +20,7 @@ Fetch error: http://www.hellobond.com/ => https://www.hellobond.com/: (60, 'SSL - staging.hellobond.com --> - + diff --git a/src/chrome/content/rules/Helmich_IT-Security.xml b/src/chrome/content/rules/Helmich_IT-Security.xml index 4f808badf45c..136853927587 100644 --- a/src/chrome/content/rules/Helmich_IT-Security.xml +++ b/src/chrome/content/rules/Helmich_IT-Security.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/HelpOcean.xml b/src/chrome/content/rules/HelpOcean.xml index 2c5fdfad56b6..2ae53ed3a547 100644 --- a/src/chrome/content/rules/HelpOcean.xml +++ b/src/chrome/content/rules/HelpOcean.xml @@ -8,7 +8,7 @@ Fetch error: http://helpocean.com/ => https://helpocean.com/: (51, "SSL: no alte Many in *.helpocean.com: clients --> - + @@ -20,4 +20,4 @@ Fetch error: http://helpocean.com/ => https://helpocean.com/: (51, "SSL: no alte - \ No newline at end of file + diff --git a/src/chrome/content/rules/HelpOnClick.xml b/src/chrome/content/rules/HelpOnClick.xml index c8260bcd12bf..ecf90da4da2f 100644 --- a/src/chrome/content/rules/HelpOnClick.xml +++ b/src/chrome/content/rules/HelpOnClick.xml @@ -4,9 +4,9 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/HelpSpot.xml b/src/chrome/content/rules/HelpSpot.xml index c1bb7977ac5d..7f66292e0f39 100644 --- a/src/chrome/content/rules/HelpSpot.xml +++ b/src/chrome/content/rules/HelpSpot.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Helsingor.dk.xml b/src/chrome/content/rules/Helsingor.dk.xml index e0c56dcf375e..2d1a2cd7640e 100644 --- a/src/chrome/content/rules/Helsingor.dk.xml +++ b/src/chrome/content/rules/Helsingor.dk.xml @@ -2,14 +2,14 @@ Subdomains not covered: - rotteanmeldelse¹ - webgis¹ - + ¹: Refused --> - + diff --git a/src/chrome/content/rules/Hemk.es.xml b/src/chrome/content/rules/Hemk.es.xml index f35f0d4468ec..d6bd978aa49d 100644 --- a/src/chrome/content/rules/Hemk.es.xml +++ b/src/chrome/content/rules/Hemk.es.xml @@ -1,13 +1,15 @@ - + Problematic hosts in *hemk.es: + + - andre (mismatched) - - +--> + + + + diff --git a/src/chrome/content/rules/HenchHerbivore.com.xml b/src/chrome/content/rules/HenchHerbivore.com.xml new file mode 100644 index 000000000000..9bcecfe05e27 --- /dev/null +++ b/src/chrome/content/rules/HenchHerbivore.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Hendrik.luup.info.xml b/src/chrome/content/rules/Hendrik.luup.info.xml deleted file mode 100644 index e955aaf4f09b..000000000000 --- a/src/chrome/content/rules/Hendrik.luup.info.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - diff --git a/src/chrome/content/rules/Hentai-Foundry.com.xml b/src/chrome/content/rules/Hentai-Foundry.com.xml new file mode 100644 index 000000000000..8e8a40f896ed --- /dev/null +++ b/src/chrome/content/rules/Hentai-Foundry.com.xml @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/HentaiVerse.org.xml b/src/chrome/content/rules/HentaiVerse.org.xml new file mode 100644 index 000000000000..daf693be6663 --- /dev/null +++ b/src/chrome/content/rules/HentaiVerse.org.xml @@ -0,0 +1,16 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Herald_Times_Reporter.xml b/src/chrome/content/rules/Herald_Times_Reporter.xml index c131cca43560..a04ad2581452 100644 --- a/src/chrome/content/rules/Herald_Times_Reporter.xml +++ b/src/chrome/content/rules/Herald_Times_Reporter.xml @@ -15,7 +15,7 @@ Fetch error: http://htrnews.com/ => https://www.htrnews.com/: (51, "SSL: no alte - deals (mismatched, CN: *.planetdiscover.com) --> - + diff --git a/src/chrome/content/rules/Herbal-nutrition2.net.xml b/src/chrome/content/rules/Herbal-nutrition2.net.xml index 30b5284fd59a..dc4952464f09 100644 --- a/src/chrome/content/rules/Herbal-nutrition2.net.xml +++ b/src/chrome/content/rules/Herbal-nutrition2.net.xml @@ -5,7 +5,7 @@ Fetch error: http://herbal-nutrition2.net/ => https://herbal-nutrition2.net/: To Fetch error: http://www.herbal-nutrition2.net/ => https://www.herbal-nutrition2.net/: Too many redirects while fetching 'https://www.herbal-nutrition2.net/' --> - + @@ -16,4 +16,4 @@ Fetch error: http://www.herbal-nutrition2.net/ => https://www.herbal-nutrition2. - \ No newline at end of file + diff --git a/src/chrome/content/rules/Hercrentals.com.xml b/src/chrome/content/rules/Hercrentals.com.xml new file mode 100644 index 000000000000..0af8f078c98e --- /dev/null +++ b/src/chrome/content/rules/Hercrentals.com.xml @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/HerdProtect.com.xml b/src/chrome/content/rules/HerdProtect.com.xml index 59d4c9de72c8..c88bf8f99d54 100644 --- a/src/chrome/content/rules/HerdProtect.com.xml +++ b/src/chrome/content/rules/HerdProtect.com.xml @@ -16,7 +16,7 @@ --> - + https://beta.herefordshire.gov.uk/: (6, 'Could not resolve host: beta.herefordshire.gov.uk') - Herefordshire Council For other UK government coverage, see GOV.UK.xml. @@ -20,6 +16,7 @@ Fetch error: http://beta.herefordshire.gov.uk/ => https://beta.herefordshire.gov Problematic hosts in *herefordshire.gov.uk: + - ^ ᵐ - communities ᵉ - consult ᵉ - (www.)?newsroom ᵐ @@ -45,10 +42,9 @@ Fetch error: http://beta.herefordshire.gov.uk/ => https://beta.herefordshire.gov ⁴ Unsecurable <= 404 --> - + - @@ -64,10 +60,12 @@ Fetch error: http://beta.herefordshire.gov.uk/ => https://beta.herefordshire.gov - + + + to="https:" /> diff --git a/src/chrome/content/rules/Hereplus.me.xml b/src/chrome/content/rules/Hereplus.me.xml index 77dbd732a667..17d0c50cec36 100644 --- a/src/chrome/content/rules/Hereplus.me.xml +++ b/src/chrome/content/rules/Hereplus.me.xml @@ -13,7 +13,7 @@ - + - + + - + diff --git a/src/chrome/content/rules/HeroX.com.xml b/src/chrome/content/rules/HeroX.com.xml index f1874a358abe..9ef9da2e51fd 100644 --- a/src/chrome/content/rules/HeroX.com.xml +++ b/src/chrome/content/rules/HeroX.com.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.herox.com/ => https://www.herox.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.herox.com'") --> - + diff --git a/src/chrome/content/rules/Hero_Up.com.xml b/src/chrome/content/rules/Hero_Up.com.xml deleted file mode 100644 index a12863ef9d2d..000000000000 --- a/src/chrome/content/rules/Hero_Up.com.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Heroku.xml b/src/chrome/content/rules/Heroku.xml index 6c078f7e266c..edfde582bac3 100644 --- a/src/chrome/content/rules/Heroku.xml +++ b/src/chrome/content/rules/Heroku.xml @@ -3,21 +3,21 @@ - prod-heroku.s3.amazonaws.com + www.*.herokuapp.com have a valid DNS record but host no content. + --> - - + + + + + - - - - - + - + diff --git a/src/chrome/content/rules/Hertsdirect.org-falsemixed.xml b/src/chrome/content/rules/Hertsdirect.org-falsemixed.xml index 043f9a83ddc4..acaa244dbd91 100644 --- a/src/chrome/content/rules/Hertsdirect.org-falsemixed.xml +++ b/src/chrome/content/rules/Hertsdirect.org-falsemixed.xml @@ -6,12 +6,12 @@ Fetch error: http://drivertraining.hertsdirect.org/ => https://drivertraining.he For rules not causing false/broken MCB, see Hertsdirect.org.xml. --> - + - + - + @@ -164,7 +164,7 @@ Fetch error: http://m.hertsdirect.org/images/interface/govmetric_orangeface28x28 - + https://www.hertz.com.au/ ( - Hertz-UAE.xml - Hertz-UK.xml - Hertz-US.xml - + Non-functional domains: - (www.)hertzrent2buy.com.au (¹, CN: secure.cdsonline.com.au) - (www.)hertzcarsales.com.au (¹, CN: secure.cdsonline.com.au) @@ -49,7 +49,7 @@ Non-2xx HTTP code: http://www.hertz.com.au/ (200) => https://www.hertz.com.au/ ( ¹ hostname mismatch --> - + diff --git a/src/chrome/content/rules/Hertz-Austria.xml b/src/chrome/content/rules/Hertz-Austria.xml index 1e1a5fd63ee9..b3d5b253bdfb 100644 --- a/src/chrome/content/rules/Hertz-Austria.xml +++ b/src/chrome/content/rules/Hertz-Austria.xml @@ -41,7 +41,7 @@ Non-2xx HTTP code: http://www.hertz.at/ (200) => https://www.hertz.at/ (403) - Hertz-UK.xml - Hertz-US.xml --> - + https://nl.hertz.be/ (403) - Hertz-UK.xml - Hertz-US.xml --> - + diff --git a/src/chrome/content/rules/Hertz-Canada.xml b/src/chrome/content/rules/Hertz-Canada.xml index 38a75fb6435b..e783886901d5 100644 --- a/src/chrome/content/rules/Hertz-Canada.xml +++ b/src/chrome/content/rules/Hertz-Canada.xml @@ -41,7 +41,7 @@ Non-2xx HTTP code: http://fr.hertz.ca/ (200) => https://fr.hertz.ca/ (403) - Hertz-UK.xml - Hertz-US.xml --> - + diff --git a/src/chrome/content/rules/Hertz-China.xml b/src/chrome/content/rules/Hertz-China.xml index fc3db925c8e6..062c8de46a78 100644 --- a/src/chrome/content/rules/Hertz-China.xml +++ b/src/chrome/content/rules/Hertz-China.xml @@ -1,8 +1,4 @@ - - + - + diff --git a/src/chrome/content/rules/Hertz-Croatia.xml b/src/chrome/content/rules/Hertz-Croatia.xml index 1b2983437100..06bcabaafdee 100644 --- a/src/chrome/content/rules/Hertz-Croatia.xml +++ b/src/chrome/content/rules/Hertz-Croatia.xml @@ -41,7 +41,7 @@ Fetch error: http://www.hertz.hr/ => https://www.hertz.hr/: (35, 'Unknown SSL pr - Hertz-UK.xml - Hertz-US.xml --> - + https://www.hertz.fi/ (403) - Hertz-UK.xml - Hertz-US.xml --> - + https://www.hertztrucks.d --> - + diff --git a/src/chrome/content/rules/Hertz-Hong-Kong.xml b/src/chrome/content/rules/Hertz-Hong-Kong.xml index c618b734dab4..40d46e74e190 100644 --- a/src/chrome/content/rules/Hertz-Hong-Kong.xml +++ b/src/chrome/content/rules/Hertz-Hong-Kong.xml @@ -41,7 +41,7 @@ Non-2xx HTTP code: http://www.hertz.com.hk/ (200) => https://www.hertz.com.hk/ ( - Hertz-UK.xml - Hertz-US.xml --> - + https://www.hertz.co.id/ (40 - Hertz-UK.xml - Hertz-US.xml --> - + https://www.hertz.ie/ (403) - Hertz-UK.xml - Hertz-US.xml --> - + diff --git a/src/chrome/content/rules/Hertz-Italy.xml b/src/chrome/content/rules/Hertz-Italy.xml index 291cede64dac..28f512f91e4f 100644 --- a/src/chrome/content/rules/Hertz-Italy.xml +++ b/src/chrome/content/rules/Hertz-Italy.xml @@ -50,7 +50,7 @@ Non-2xx HTTP code: http://www.hertz.it/ (200) => https://www.hertz.it/ (403) - (www.)hertzusato.it (self-signed) --> - + diff --git a/src/chrome/content/rules/Hertz-Kuwait.xml b/src/chrome/content/rules/Hertz-Kuwait.xml index ebc21ee7bc18..ebda6abc1205 100644 --- a/src/chrome/content/rules/Hertz-Kuwait.xml +++ b/src/chrome/content/rules/Hertz-Kuwait.xml @@ -41,7 +41,7 @@ Non-2xx HTTP code: http://www.hertz.com.kw/ (200) => https://www.hertz.com.kw/ ( - Hertz-UK.xml - Hertz-US.xml --> - + https://www.hertz.nl/ (403) Non-functional domains: - (www.)minilease.nl (connection refused) --> - + diff --git a/src/chrome/content/rules/Hertz-New-Zealand.xml b/src/chrome/content/rules/Hertz-New-Zealand.xml index 75d72eb241a7..5c06a382e22b 100644 --- a/src/chrome/content/rules/Hertz-New-Zealand.xml +++ b/src/chrome/content/rules/Hertz-New-Zealand.xml @@ -41,7 +41,7 @@ Non-2xx HTTP code: http://www.hertz.co.nz/ (200) => https://www.hertz.co.nz/ (40 - Hertz-UK.xml - Hertz-US.xml --> - + https://www.hertz.no/ (403) - Hertz-UK.xml - Hertz-US.xml --> - + https://www.hertz.pt/ (403) - Hertz-UK.xml - Hertz-US.xml --> - + diff --git a/src/chrome/content/rules/Hertz-Qatar.xml b/src/chrome/content/rules/Hertz-Qatar.xml index 58b1f2cddef4..1c88d541600e 100644 --- a/src/chrome/content/rules/Hertz-Qatar.xml +++ b/src/chrome/content/rules/Hertz-Qatar.xml @@ -41,7 +41,7 @@ Non-2xx HTTP code: http://www.hertz.qa/ (200) => https://www.hertz.qa/ (403) - Hertz-UK.xml - Hertz-US.xml --> - + https://www.hertz.co.kr/ (40 - Hertz-UK.xml - Hertz-US.xml --> - + https://www.hertz.es/ (403) ¹ hostname mismatch --> - + diff --git a/src/chrome/content/rules/Hertz-Sweden.xml b/src/chrome/content/rules/Hertz-Sweden.xml index 207b5939fd15..ef430eb1d4a4 100644 --- a/src/chrome/content/rules/Hertz-Sweden.xml +++ b/src/chrome/content/rules/Hertz-Sweden.xml @@ -41,7 +41,7 @@ Non-2xx HTTP code: http://www.hertz.se/ (200) => https://www.hertz.se/ (403) - Hertz-UK.xml - Hertz-US.xml --> - + https://fr.hertz.ch/ (403) - Hertz-UK.xml - Hertz-US.xml --> - + diff --git a/src/chrome/content/rules/Hertz-Taiwan.xml b/src/chrome/content/rules/Hertz-Taiwan.xml index 9b853f8f6329..67cb2bb897ce 100644 --- a/src/chrome/content/rules/Hertz-Taiwan.xml +++ b/src/chrome/content/rules/Hertz-Taiwan.xml @@ -41,7 +41,7 @@ Non-2xx HTTP code: http://www.hertz.com.tw/ (200) => https://www.hertz.com.tw/ ( - Hertz-UK.xml - Hertz-US.xml --> - + https://www.hertz.ae/ (403) - Hertz-UK.xml - Hertz-US.xml --> - + https://www.hertzvans.co ¹ hostname mismatch --> - + diff --git a/src/chrome/content/rules/Hertz-US.xml b/src/chrome/content/rules/Hertz-US.xml index 01d75d5ba70f..0a7451ffffce 100644 --- a/src/chrome/content/rules/Hertz-US.xml +++ b/src/chrome/content/rules/Hertz-US.xml @@ -73,7 +73,7 @@ Fetch error: http://www.hertzequipsales.com/ => https://www.hertzequipsales.com/ ¹ invalid hostname ² timeout --> - + diff --git a/src/chrome/content/rules/Hesapla_Bakalim.com.xml b/src/chrome/content/rules/Hesapla_Bakalim.com.xml index 3dfe6a70ba60..9b7e094e2593 100644 --- a/src/chrome/content/rules/Hesapla_Bakalim.com.xml +++ b/src/chrome/content/rules/Hesapla_Bakalim.com.xml @@ -21,7 +21,7 @@ Fetch error: http://www.hesaplabakalim.com/ => https://www.hesaplabakalim.com/: * Secured by us --> - + diff --git a/src/chrome/content/rules/Hesecure.com.xml b/src/chrome/content/rules/Hesecure.com.xml index 6630a6ed352a..55b2dcf9f0ee 100644 --- a/src/chrome/content/rules/Hesecure.com.xml +++ b/src/chrome/content/rules/Hesecure.com.xml @@ -7,10 +7,10 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Hesport.com.xml b/src/chrome/content/rules/Hesport.com.xml new file mode 100644 index 000000000000..03548336be6d --- /dev/null +++ b/src/chrome/content/rules/Hesport.com.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Hespress.com.xml b/src/chrome/content/rules/Hespress.com.xml new file mode 100644 index 000000000000..81e06552fc50 --- /dev/null +++ b/src/chrome/content/rules/Hespress.com.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Hetzner-Online.xml b/src/chrome/content/rules/Hetzner-Online.xml index 846b0e3ac921..eb57d9c59513 100644 --- a/src/chrome/content/rules/Hetzner-Online.xml +++ b/src/chrome/content/rules/Hetzner-Online.xml @@ -17,7 +17,7 @@ - + - + diff --git a/src/chrome/content/rules/Hewlett-Packard.xml b/src/chrome/content/rules/Hewlett-Packard.xml index 78f10566dd8d..1b1558bcc8ba 100644 --- a/src/chrome/content/rules/Hewlett-Packard.xml +++ b/src/chrome/content/rules/Hewlett-Packard.xml @@ -1,7 +1,6 @@ - - - - - - diff --git a/src/chrome/content/rules/Hexonet.xml b/src/chrome/content/rules/Hexonet.xml index ff23b4958470..3d577baa8fa5 100644 --- a/src/chrome/content/rules/Hexonet.xml +++ b/src/chrome/content/rules/Hexonet.xml @@ -23,4 +23,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Hexplo.it.xml b/src/chrome/content/rules/Hexplo.it.xml index 90630bbcf353..18fccb67ebfa 100644 --- a/src/chrome/content/rules/Hexplo.it.xml +++ b/src/chrome/content/rules/Hexplo.it.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.hexplo.it/ => https://www.hexplo.it/: (51, "SSL: no alternative certificate subject name matches target host name 'www.hexplo.it'") --> - + diff --git a/src/chrome/content/rules/Hezenparastin.com.xml b/src/chrome/content/rules/Hezenparastin.com.xml deleted file mode 100644 index 7731cce06775..000000000000 --- a/src/chrome/content/rules/Hezenparastin.com.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/Hft-leipzig.de.xml b/src/chrome/content/rules/Hft-leipzig.de.xml index a9a15f6c42e1..816b06f88541 100644 --- a/src/chrome/content/rules/Hft-leipzig.de.xml +++ b/src/chrome/content/rules/Hft-leipzig.de.xml @@ -11,7 +11,7 @@ - www.bpmn -> wrong domain - bibo -> no connection - www1 -> different site - + Notes: - www1 -> different sites, but also HTTP version is useless for visitor, real sites like https://www1.hft-leipzig.de/bpmn/ e.g. works. --> @@ -21,7 +21,7 @@ - + diff --git a/src/chrome/content/rules/Hi.nl.xml b/src/chrome/content/rules/Hi.nl.xml index 4abe453f4c2e..da7efadbb73d 100644 --- a/src/chrome/content/rules/Hi.nl.xml +++ b/src/chrome/content/rules/Hi.nl.xml @@ -1,6 +1,6 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/HiFX.xml b/src/chrome/content/rules/HiFX.xml index 49ef92810a3f..27a7286e1f60 100644 --- a/src/chrome/content/rules/HiFX.xml +++ b/src/chrome/content/rules/HiFX.xml @@ -7,7 +7,8 @@ - + + @@ -16,7 +17,6 @@ - + diff --git a/src/chrome/content/rules/HiPEAC.net.xml b/src/chrome/content/rules/HiPEAC.net.xml index 2112cab577e6..c26ae6c82aae 100644 --- a/src/chrome/content/rules/HiPEAC.net.xml +++ b/src/chrome/content/rules/HiPEAC.net.xml @@ -13,7 +13,7 @@ Fetch error: http://www.hipeac.org/ => https://www.hipeac.org/: (28, 'Connection ² Shows www.hipeac.org --> - + diff --git a/src/chrome/content/rules/Hide.me.xml b/src/chrome/content/rules/Hide.me.xml index 63a3d10ea1f4..36681d544c02 100644 --- a/src/chrome/content/rules/Hide.me.xml +++ b/src/chrome/content/rules/Hide.me.xml @@ -1,40 +1,12 @@ - - - - - - - - - - - - - + + - + + diff --git a/src/chrome/content/rules/Hideki_Saito.com.xml b/src/chrome/content/rules/Hideki_Saito.com.xml index 0559016b0039..af9fe037136a 100644 --- a/src/chrome/content/rules/Hideki_Saito.com.xml +++ b/src/chrome/content/rules/Hideki_Saito.com.xml @@ -20,7 +20,7 @@ - + - + + + - + diff --git a/src/chrome/content/rules/Hideme.today.xml b/src/chrome/content/rules/Hideme.today.xml deleted file mode 100644 index 7a7a10784a4d..000000000000 --- a/src/chrome/content/rules/Hideme.today.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Hidemyass.xml b/src/chrome/content/rules/Hidemyass.xml index 268b9525ec26..bd53204fd164 100644 --- a/src/chrome/content/rules/Hidemyass.xml +++ b/src/chrome/content/rules/Hidemyass.xml @@ -10,13 +10,13 @@ - + - + diff --git a/src/chrome/content/rules/Hidepay.net.xml b/src/chrome/content/rules/Hidepay.net.xml index e0be1136c82e..f9a468728b92 100644 --- a/src/chrome/content/rules/Hidepay.net.xml +++ b/src/chrome/content/rules/Hidepay.net.xml @@ -6,7 +6,7 @@ Fetch error: http://www.hidepay.net/ => https://www.hidepay.net/: (6, 'Could not For other Hideman coverage, see Hideman.net.xml. --> - + diff --git a/src/chrome/content/rules/Hidester.com.xml b/src/chrome/content/rules/Hidester.com.xml new file mode 100644 index 000000000000..28a01920bc5a --- /dev/null +++ b/src/chrome/content/rules/Hidester.com.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/High.fi.xml b/src/chrome/content/rules/High.fi.xml new file mode 100644 index 000000000000..3f00269d9868 --- /dev/null +++ b/src/chrome/content/rules/High.fi.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/HighOn.Coffee.xml b/src/chrome/content/rules/HighOn.Coffee.xml index 920bef812f0d..e2cd96bc05ac 100644 --- a/src/chrome/content/rules/HighOn.Coffee.xml +++ b/src/chrome/content/rules/HighOn.Coffee.xml @@ -25,7 +25,7 @@ --> - + - + + - \ No newline at end of file + diff --git a/src/chrome/content/rules/HighWire.xml b/src/chrome/content/rules/HighWire.xml deleted file mode 100644 index e2ee0c8c703a..000000000000 --- a/src/chrome/content/rules/HighWire.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Highcharts.com-mixedcontent.xml b/src/chrome/content/rules/Highcharts.com-mixedcontent.xml deleted file mode 100644 index 95afe708bf1b..000000000000 --- a/src/chrome/content/rules/Highcharts.com-mixedcontent.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Highcharts.com.xml b/src/chrome/content/rules/Highcharts.com.xml index ca9358ee6e79..a125ea758e9b 100644 --- a/src/chrome/content/rules/Highcharts.com.xml +++ b/src/chrome/content/rules/Highcharts.com.xml @@ -1,39 +1,21 @@ - - - + + - - - - - - - - - - - - + diff --git a/src/chrome/content/rules/Higher_Education_Academy.xml b/src/chrome/content/rules/Higher_Education_Academy.xml index 26df474afff9..41ef7300e74d 100644 --- a/src/chrome/content/rules/Higher_Education_Academy.xml +++ b/src/chrome/content/rules/Higher_Education_Academy.xml @@ -1,35 +1,27 @@ - + + + + + + + + + + - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Highsoft.com.xml b/src/chrome/content/rules/Highsoft.com.xml new file mode 100644 index 000000000000..8b70d9368587 --- /dev/null +++ b/src/chrome/content/rules/Highsoft.com.xml @@ -0,0 +1,10 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Hightail.com.xml b/src/chrome/content/rules/Hightail.com.xml index 2a67ba3c08dc..34b02f761485 100644 --- a/src/chrome/content/rules/Hightail.com.xml +++ b/src/chrome/content/rules/Hightail.com.xml @@ -29,7 +29,7 @@ --> - + https://ssl-cdn.highwebmedia.co - .highwebmedia.com --> - + @@ -26,7 +26,7 @@ Fetch error: http://ssl-cdn.highwebmedia.com/ => https://ssl-cdn.highwebmedia.co --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Hinckley-Bosworth.gov.uk.xml b/src/chrome/content/rules/Hinckley-Bosworth.gov.uk.xml index bf5c02ff2a3a..528721f31379 100644 --- a/src/chrome/content/rules/Hinckley-Bosworth.gov.uk.xml +++ b/src/chrome/content/rules/Hinckley-Bosworth.gov.uk.xml @@ -26,7 +26,7 @@ Fetch error: http://services.hinckley-bosworth.gov.uk/ => https://services.hinck - .www.hinckley-bosworth.gov.uk --> - + @@ -46,7 +46,7 @@ Fetch error: http://services.hinckley-bosworth.gov.uk/ => https://services.hinck - + - + + + diff --git a/src/chrome/content/rules/HindustanTimes.com.xml b/src/chrome/content/rules/HindustanTimes.com.xml new file mode 100644 index 000000000000..a66afb7a68d0 --- /dev/null +++ b/src/chrome/content/rules/HindustanTimes.com.xml @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Hip-Hop.ru.xml b/src/chrome/content/rules/Hip-Hop.ru.xml new file mode 100644 index 000000000000..521e516784ac --- /dev/null +++ b/src/chrome/content/rules/Hip-Hop.ru.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Hipercor.es.xml b/src/chrome/content/rules/Hipercor.es.xml index 53547380a5a2..602f1583e391 100644 --- a/src/chrome/content/rules/Hipercor.es.xml +++ b/src/chrome/content/rules/Hipercor.es.xml @@ -5,7 +5,7 @@ Not supporting HTTPS or using an invalid certificate: * hipercor.es - + * c.hipercor.es * juguetes.hipercor.es * www.familiasnumerosas.hipercor.es diff --git a/src/chrome/content/rules/Hipmunk.com-falsemixed.xml b/src/chrome/content/rules/Hipmunk.com-falsemixed.xml deleted file mode 100644 index 8864737f10be..000000000000 --- a/src/chrome/content/rules/Hipmunk.com-falsemixed.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Hipmunk.com.xml b/src/chrome/content/rules/Hipmunk.com.xml deleted file mode 100644 index de04c6a39cf1..000000000000 --- a/src/chrome/content/rules/Hipmunk.com.xml +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/HitBTC.com.xml b/src/chrome/content/rules/HitBTC.com.xml index 20fe8e1dfea6..5ff463e3d345 100644 --- a/src/chrome/content/rules/HitBTC.com.xml +++ b/src/chrome/content/rules/HitBTC.com.xml @@ -25,8 +25,6 @@ - - @@ -36,7 +34,6 @@ - + diff --git a/src/chrome/content/rules/HitLeap.com.xml b/src/chrome/content/rules/HitLeap.com.xml deleted file mode 100644 index 459d3898c58f..000000000000 --- a/src/chrome/content/rules/HitLeap.com.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Hitachi_Data_Systems.xml b/src/chrome/content/rules/Hitachi_Data_Systems.xml index a6abe4e73679..1bad50cb91cb 100644 --- a/src/chrome/content/rules/Hitachi_Data_Systems.xml +++ b/src/chrome/content/rules/Hitachi_Data_Systems.xml @@ -1,20 +1,38 @@ - - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Hitbox.com.xml b/src/chrome/content/rules/Hitbox.com.xml deleted file mode 100644 index c24cfad90a6c..000000000000 --- a/src/chrome/content/rules/Hitbox.com.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Hitchhq.com.xml b/src/chrome/content/rules/Hitchhq.com.xml deleted file mode 100644 index ff10146e0a05..000000000000 --- a/src/chrome/content/rules/Hitchhq.com.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/Hitfarm.xml b/src/chrome/content/rules/Hitfarm.xml index cbb58eabd97e..50099f2cf991 100644 --- a/src/chrome/content/rules/Hitfarm.xml +++ b/src/chrome/content/rules/Hitfarm.xml @@ -4,7 +4,7 @@ - + - + - + + + + + + + diff --git a/src/chrome/content/rules/Hivos.org.xml b/src/chrome/content/rules/Hivos.org.xml index 67b8c8926f58..18d5816d62ff 100644 --- a/src/chrome/content/rules/Hivos.org.xml +++ b/src/chrome/content/rules/Hivos.org.xml @@ -17,7 +17,7 @@ Fetch error: http://india.hivos.org/ => https://india.hivos.org/: (52, 'Empty re ² different content; mismatched, CN: digitaldefenders.org --> - + diff --git a/src/chrome/content/rules/Hizli_Saat.xml b/src/chrome/content/rules/Hizli_Saat.xml index e25efa7de5c5..50a5e82ced30 100644 --- a/src/chrome/content/rules/Hizli_Saat.xml +++ b/src/chrome/content/rules/Hizli_Saat.xml @@ -7,7 +7,7 @@ Fetch error: http://taki.hizlisaat.com/ => https://taki.hizlisaat.com/: (60, 'SS Fetch error: http://www.hizlisaat.com/ => https://www.hizlisaat.com/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + @@ -15,9 +15,9 @@ Fetch error: http://www.hizlisaat.com/ => https://www.hizlisaat.com/: (60, 'SSL - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Hizook.xml b/src/chrome/content/rules/Hizook.xml index 82e9de5d51c3..e1ac26e15009 100644 --- a/src/chrome/content/rules/Hizook.xml +++ b/src/chrome/content/rules/Hizook.xml @@ -3,7 +3,7 @@ - + diff --git a/src/chrome/content/rules/Hmapps.net.xml b/src/chrome/content/rules/Hmapps.net.xml index c0832792439e..232db1e1c7e6 100644 --- a/src/chrome/content/rules/Hmapps.net.xml +++ b/src/chrome/content/rules/Hmapps.net.xml @@ -5,7 +5,7 @@ Fetch error: http://hmapps.net/ => https://hmapps.net/: (60, 'SSL certificate pr Fetch error: http://www.hmapps.net/ => https://www.hmapps.net/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + @@ -16,4 +16,4 @@ Fetch error: http://www.hmapps.net/ => https://www.hmapps.net/: (60, 'SSL certif - \ No newline at end of file + diff --git a/src/chrome/content/rules/Hn.premii.com.xml b/src/chrome/content/rules/Hn.premii.com.xml index 99877ea210ab..bbdf0762897d 100644 --- a/src/chrome/content/rules/Hn.premii.com.xml +++ b/src/chrome/content/rules/Hn.premii.com.xml @@ -4,10 +4,6 @@ - - - - diff --git a/src/chrome/content/rules/Hnonline.sk.xml b/src/chrome/content/rules/Hnonline.sk.xml deleted file mode 100644 index 9187dc451d77..000000000000 --- a/src/chrome/content/rules/Hnonline.sk.xml +++ /dev/null @@ -1,55 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Hobocomp.com.xml b/src/chrome/content/rules/Hobocomp.com.xml deleted file mode 100644 index cf962b63b7ef..000000000000 --- a/src/chrome/content/rules/Hobocomp.com.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Hochschule-Esslingen.xml b/src/chrome/content/rules/Hochschule-Esslingen.xml index 66fd0aecf0a2..8b8e396ec565 100644 --- a/src/chrome/content/rules/Hochschule-Esslingen.xml +++ b/src/chrome/content/rules/Hochschule-Esslingen.xml @@ -3,6 +3,7 @@ + @@ -13,7 +14,7 @@ - - + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Hochwasserzentralen.de.xml b/src/chrome/content/rules/Hochwasserzentralen.de.xml new file mode 100644 index 000000000000..03d3eac3c1be --- /dev/null +++ b/src/chrome/content/rules/Hochwasserzentralen.de.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Hochwasserzentralen.info.xml b/src/chrome/content/rules/Hochwasserzentralen.info.xml new file mode 100644 index 000000000000..36d7d14619ae --- /dev/null +++ b/src/chrome/content/rules/Hochwasserzentralen.info.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/HolidayBullshit.com.xml b/src/chrome/content/rules/HolidayBullshit.com.xml index 0bff891f4de6..5672b0ad801c 100644 --- a/src/chrome/content/rules/HolidayBullshit.com.xml +++ b/src/chrome/content/rules/HolidayBullshit.com.xml @@ -10,7 +10,7 @@ Fetch error: http://www.holidaybullshit.com/ => https://www.holidaybullshit.com/ ^: refused --> - + diff --git a/src/chrome/content/rules/HolidayExtras.com.xml b/src/chrome/content/rules/HolidayExtras.com.xml index 529eb7b66b3d..722d144a63e0 100644 --- a/src/chrome/content/rules/HolidayExtras.com.xml +++ b/src/chrome/content/rules/HolidayExtras.com.xml @@ -19,7 +19,7 @@ Fetch error: http://www.holidayextras.com/ => https://www.holidayextras.com/: To ¹ hostname mismatch --> - + diff --git a/src/chrome/content/rules/Holidaybreak-mismatches.xml b/src/chrome/content/rules/Holidaybreak-mismatches.xml index 76c0341e7b9e..9de17cd63597 100644 --- a/src/chrome/content/rules/Holidaybreak-mismatches.xml +++ b/src/chrome/content/rules/Holidaybreak-mismatches.xml @@ -5,7 +5,7 @@ - + diff --git a/src/chrome/content/rules/Holidaybreak.xml b/src/chrome/content/rules/Holidaybreak.xml index 0ba47ead8aee..b197e6b63261 100644 --- a/src/chrome/content/rules/Holidaybreak.xml +++ b/src/chrome/content/rules/Holidaybreak.xml @@ -25,7 +25,7 @@ Fetch error: http://www.holidaybreak.co.uk/ => https://ww7.investorrelations.co. * Reset --> - + diff --git a/src/chrome/content/rules/Hollywood-Reporter-mismatches.xml b/src/chrome/content/rules/Hollywood-Reporter-mismatches.xml deleted file mode 100644 index e7f5ebe57552..000000000000 --- a/src/chrome/content/rules/Hollywood-Reporter-mismatches.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Hollywood-Reporter.xml b/src/chrome/content/rules/Hollywood-Reporter.xml index 7ba36827c9e6..0318fd7fb0e3 100644 --- a/src/chrome/content/rules/Hollywood-Reporter.xml +++ b/src/chrome/content/rules/Hollywood-Reporter.xml @@ -1,52 +1,41 @@ - - + - - - - - - + + + - diff --git a/src/chrome/content/rules/Hololive.tv.xml b/src/chrome/content/rules/Hololive.tv.xml new file mode 100644 index 000000000000..a4ae113c15dd --- /dev/null +++ b/src/chrome/content/rules/Hololive.tv.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Holoscripter.org.xml b/src/chrome/content/rules/Holoscripter.org.xml deleted file mode 100644 index 443b895d216c..000000000000 --- a/src/chrome/content/rules/Holoscripter.org.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Holtwick-IT-mismatches.xml b/src/chrome/content/rules/Holtwick-IT-mismatches.xml deleted file mode 100644 index 8982be74edd1..000000000000 --- a/src/chrome/content/rules/Holtwick-IT-mismatches.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Holtwick-IT.xml b/src/chrome/content/rules/Holtwick-IT.xml index 6b29c6cb2012..a34acb46bf71 100644 --- a/src/chrome/content/rules/Holtwick-IT.xml +++ b/src/chrome/content/rules/Holtwick-IT.xml @@ -1,7 +1,9 @@ - - + + + + diff --git a/src/chrome/content/rules/HolyTransaction.com.xml b/src/chrome/content/rules/HolyTransaction.com.xml deleted file mode 100644 index 3c968602d727..000000000000 --- a/src/chrome/content/rules/HolyTransaction.com.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Home-Assistant.io.xml b/src/chrome/content/rules/Home-Assistant.io.xml new file mode 100644 index 000000000000..6f608aa598fc --- /dev/null +++ b/src/chrome/content/rules/Home-Assistant.io.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Home-of-the-Sebijk.com.xml b/src/chrome/content/rules/Home-of-the-Sebijk.com.xml index 3b1270a030b0..6c5df51a1a8a 100644 --- a/src/chrome/content/rules/Home-of-the-Sebijk.com.xml +++ b/src/chrome/content/rules/Home-of-the-Sebijk.com.xml @@ -6,7 +6,7 @@ Fetch error: http://www.sebijk.com/ => https://www.sebijk.com/: (60, 'SSL certif Disabled by https-everywhere-checker because: Fetch error: http://freemail.sebijk.com/ => https://freemail.sebijk.com/: Redirect for 'http://freemail.sebijk.com/' missing Location --> - + diff --git a/src/chrome/content/rules/Home.ch.xml b/src/chrome/content/rules/Home.ch.xml index 761dbda19745..282f063ba037 100644 --- a/src/chrome/content/rules/Home.ch.xml +++ b/src/chrome/content/rules/Home.ch.xml @@ -16,4 +16,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Home.pl.xml b/src/chrome/content/rules/Home.pl.xml index bbc9b8db52d1..2c46b335d179 100644 --- a/src/chrome/content/rules/Home.pl.xml +++ b/src/chrome/content/rules/Home.pl.xml @@ -9,17 +9,20 @@ - - - - - + + + + + + + + + - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/HomeBello.xml b/src/chrome/content/rules/HomeBello.xml index 187848e72ad8..af0143db8ac8 100644 --- a/src/chrome/content/rules/HomeBello.xml +++ b/src/chrome/content/rules/HomeBello.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/HomeInsurance.com.xml b/src/chrome/content/rules/HomeInsurance.com.xml index 6c8ab36c440f..4f602bdd034e 100644 --- a/src/chrome/content/rules/HomeInsurance.com.xml +++ b/src/chrome/content/rules/HomeInsurance.com.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/HomeTheaterReview.com.xml b/src/chrome/content/rules/HomeTheaterReview.com.xml new file mode 100644 index 000000000000..ebb01fa9efa2 --- /dev/null +++ b/src/chrome/content/rules/HomeTheaterReview.com.xml @@ -0,0 +1,9 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Home_Depot.com-problematic.xml b/src/chrome/content/rules/Home_Depot.com-problematic.xml index 4d440cb509d1..c9a84df028a8 100644 --- a/src/chrome/content/rules/Home_Depot.com-problematic.xml +++ b/src/chrome/content/rules/Home_Depot.com-problematic.xml @@ -18,4 +18,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Home_Depot_Foundation.org.xml b/src/chrome/content/rules/Home_Depot_Foundation.org.xml index d29ba3e0774e..44486148dd58 100644 --- a/src/chrome/content/rules/Home_Depot_Foundation.org.xml +++ b/src/chrome/content/rules/Home_Depot_Foundation.org.xml @@ -14,4 +14,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Home_Mentors.com.xml b/src/chrome/content/rules/Home_Mentors.com.xml index 8589b24efddf..2f14bc3cda11 100644 --- a/src/chrome/content/rules/Home_Mentors.com.xml +++ b/src/chrome/content/rules/Home_Mentors.com.xml @@ -5,7 +5,7 @@ Fetch error: http://homementors.com/ => https://homementors.com/: (60, 'SSL cert Fetch error: http://www.homementors.com/ => https://www.homementors.com/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/Home_Theater_Review.com-falsemixed.xml b/src/chrome/content/rules/Home_Theater_Review.com-falsemixed.xml deleted file mode 100644 index d8419109ed4f..000000000000 --- a/src/chrome/content/rules/Home_Theater_Review.com-falsemixed.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Home_Theater_Review.com.xml b/src/chrome/content/rules/Home_Theater_Review.com.xml deleted file mode 100644 index 7cb088f6a76b..000000000000 --- a/src/chrome/content/rules/Home_Theater_Review.com.xml +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Homecomputing.fr.xml b/src/chrome/content/rules/Homecomputing.fr.xml index c0ddd2fab70d..eb42223a1d61 100644 --- a/src/chrome/content/rules/Homecomputing.fr.xml +++ b/src/chrome/content/rules/Homecomputing.fr.xml @@ -57,7 +57,7 @@ - + diff --git a/src/chrome/content/rules/Homeless_Veterans.co.uk-falsemixed.xml b/src/chrome/content/rules/Homeless_Veterans.co.uk-falsemixed.xml deleted file mode 100644 index 8a49b2bd06fe..000000000000 --- a/src/chrome/content/rules/Homeless_Veterans.co.uk-falsemixed.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Homeless_Veterans.co.uk.xml b/src/chrome/content/rules/Homeless_Veterans.co.uk.xml index 63b19fe29131..4aa6e98f8132 100644 --- a/src/chrome/content/rules/Homeless_Veterans.co.uk.xml +++ b/src/chrome/content/rules/Homeless_Veterans.co.uk.xml @@ -40,7 +40,7 @@ Fetch error: http://donate.homelessveterans.co.uk/ => https://donate.homelessvet - donate --> - + diff --git a/src/chrome/content/rules/Homeless_World_Cup.xml b/src/chrome/content/rules/Homeless_World_Cup.xml index 5c6171246f3b..9af98cf8001a 100644 --- a/src/chrome/content/rules/Homeless_World_Cup.xml +++ b/src/chrome/content/rules/Homeless_World_Cup.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Homosexuelle-Arbeitsgruppen-Bern.xml b/src/chrome/content/rules/Homosexuelle-Arbeitsgruppen-Bern.xml new file mode 100644 index 000000000000..83d8e7e86e81 --- /dev/null +++ b/src/chrome/content/rules/Homosexuelle-Arbeitsgruppen-Bern.xml @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/HomotopyTypeTheory.org.xml b/src/chrome/content/rules/HomotopyTypeTheory.org.xml new file mode 100644 index 000000000000..f9a319df4ea9 --- /dev/null +++ b/src/chrome/content/rules/HomotopyTypeTheory.org.xml @@ -0,0 +1,11 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Honest.com.xml b/src/chrome/content/rules/Honest.com.xml index 28332411e6a2..eda934f15b1a 100644 --- a/src/chrome/content/rules/Honest.com.xml +++ b/src/chrome/content/rules/Honest.com.xml @@ -27,8 +27,6 @@ - - @@ -38,7 +36,6 @@ - + diff --git a/src/chrome/content/rules/Honest_Policy.xml b/src/chrome/content/rules/Honest_Policy.xml index 15ad0e7b3189..2bc485282df6 100644 --- a/src/chrome/content/rules/Honest_Policy.xml +++ b/src/chrome/content/rules/Honest_Policy.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/HoneyBeeLoans.com.xml b/src/chrome/content/rules/HoneyBeeLoans.com.xml index 790f7d612e49..e4f73fa16f04 100644 --- a/src/chrome/content/rules/HoneyBeeLoans.com.xml +++ b/src/chrome/content/rules/HoneyBeeLoans.com.xml @@ -5,7 +5,7 @@ Fetch error: http://honeybeeloans.com/ => https://honeybeeloans.com/: (6, 'Could Fetch error: http://www.honeybeeloans.com/ => https://www.honeybeeloans.com/: (6, 'Could not resolve host: www.honeybeeloans.com') --> - + diff --git a/src/chrome/content/rules/Honolulu_Star_Advertiser.xml b/src/chrome/content/rules/Honolulu_Star_Advertiser.xml index a97fbdda9bd2..06d294a4ffb3 100644 --- a/src/chrome/content/rules/Honolulu_Star_Advertiser.xml +++ b/src/chrome/content/rules/Honolulu_Star_Advertiser.xml @@ -19,19 +19,20 @@ Fetch error: http://staradvertiser.com/ => https://www.staradvertiser.com/: Cycl - ^ --> - + - + + + - + diff --git a/src/chrome/content/rules/Hooch.net.xml b/src/chrome/content/rules/Hooch.net.xml new file mode 100644 index 000000000000..71c8b66b21c7 --- /dev/null +++ b/src/chrome/content/rules/Hooch.net.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/HookTube.com.xml b/src/chrome/content/rules/HookTube.com.xml new file mode 100644 index 000000000000..c54bc4d4fbfd --- /dev/null +++ b/src/chrome/content/rules/HookTube.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/HootSuite.xml b/src/chrome/content/rules/HootSuite.xml index 6c60c426531f..203614e3d240 100644 --- a/src/chrome/content/rules/HootSuite.xml +++ b/src/chrome/content/rules/HootSuite.xml @@ -81,7 +81,7 @@ - + - + + - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Hoovers.xml b/src/chrome/content/rules/Hoovers.xml index 4e01d70f127f..acdc6d672c79 100644 --- a/src/chrome/content/rules/Hoovers.xml +++ b/src/chrome/content/rules/Hoovers.xml @@ -7,13 +7,13 @@ --> - + + - + diff --git a/src/chrome/content/rules/Hop-Studios.xml b/src/chrome/content/rules/Hop-Studios.xml index feae8ca02ae3..532208985102 100644 --- a/src/chrome/content/rules/Hop-Studios.xml +++ b/src/chrome/content/rules/Hop-Studios.xml @@ -4,7 +4,7 @@ - + diff --git a/src/chrome/content/rules/Hope.net.xml b/src/chrome/content/rules/Hope.net.xml index 1d679dc53f88..09652f3464c1 100644 --- a/src/chrome/content/rules/Hope.net.xml +++ b/src/chrome/content/rules/Hope.net.xml @@ -26,7 +26,7 @@ - + - + https://horde-llc.com/: (51, "SSL: no alte - wiki (cert: dev.horde.org; shows dev's data) --> - + - - - + diff --git a/src/chrome/content/rules/Hornstra_Farms.com.xml b/src/chrome/content/rules/Hornstra_Farms.com.xml index f7cab84d54de..8d4402772f94 100644 --- a/src/chrome/content/rules/Hornstra_Farms.com.xml +++ b/src/chrome/content/rules/Hornstra_Farms.com.xml @@ -23,7 +23,7 @@ Fetch error: http://www.hornstrafarms.com/ => https://hornstrafarms.com/: (51, " - (www.)? (www → ^) --> - + diff --git a/src/chrome/content/rules/Hoseasons.co.uk.xml b/src/chrome/content/rules/Hoseasons.co.uk.xml new file mode 100644 index 000000000000..e332d7cb57a0 --- /dev/null +++ b/src/chrome/content/rules/Hoseasons.co.uk.xml @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Hospitality_Leaders.xml b/src/chrome/content/rules/Hospitality_Leaders.xml index 1a6d01a15247..f10821eeab64 100644 --- a/src/chrome/content/rules/Hospitality_Leaders.xml +++ b/src/chrome/content/rules/Hospitality_Leaders.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://ads.hospitalityleaders.com/ => https://ads.hospitalityleaders.com/: (6, 'Could not resolve host: ads.hospitalityleaders.com') --> - + @@ -16,4 +16,4 @@ Fetch error: http://ads.hospitalityleaders.com/ => https://ads.hospitalityleader - \ No newline at end of file + diff --git a/src/chrome/content/rules/Host-Creo.xml b/src/chrome/content/rules/Host-Creo.xml index d5649841b28d..9b8b53d2efdc 100644 --- a/src/chrome/content/rules/Host-Creo.xml +++ b/src/chrome/content/rules/Host-Creo.xml @@ -12,7 +12,7 @@ Fetch error: http://www.hostcreo.com/ => https://www.creocommunico.com/: (51, "S Fetch error: http://secure.creocommunico.com/ => https://secure.creocommunico.com/: (35, 'error:140770FC:SSL routines:SSL23_GET_SERVER_HELLO:unknown protocol') Fetch error: http://www.creocommunico.com/ => https://www.creocommunico.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.creocommunico.com'") --> - + diff --git a/src/chrome/content/rules/Host-Europe-Group.xml b/src/chrome/content/rules/Host-Europe-Group.xml index 335f1199ac1f..a392785e3d61 100644 --- a/src/chrome/content/rules/Host-Europe-Group.xml +++ b/src/chrome/content/rules/Host-Europe-Group.xml @@ -24,7 +24,7 @@ Fetch error: http://www.hosteuropegroup.com/ => https://www.hosteuropegroup.com/ --> - + diff --git a/src/chrome/content/rules/Host.co.id.xml b/src/chrome/content/rules/Host.co.id.xml index 79bb0ab3ecf0..751fabb958d3 100644 --- a/src/chrome/content/rules/Host.co.id.xml +++ b/src/chrome/content/rules/Host.co.id.xml @@ -5,7 +5,7 @@ Fetch error: http://site.biz.id/ => https://site.biz.id/: (6, 'Could not resolve Fetch error: http://www.site.biz.id/ => https://www.site.biz.id/: (6, 'Could not resolve host: www.site.biz.id') --> - + @@ -13,7 +13,7 @@ Fetch error: http://www.site.biz.id/ => https://www.site.biz.id/: (6, 'Could not - + https://host1plus.com/: Cycle detected - URL already encountered: https://host1plus.com/ ---> - - - - - - - - - - diff --git a/src/chrome/content/rules/Host2.bg.xml b/src/chrome/content/rules/Host2.bg.xml index a63c343ed007..ed7b5c36bb98 100644 --- a/src/chrome/content/rules/Host2.bg.xml +++ b/src/chrome/content/rules/Host2.bg.xml @@ -5,7 +5,7 @@ Fetch error: http://host2.bg/ => https://host2.bg/: (60, 'SSL certificate proble Fetch error: http://www.host2.bg/ => https://www.host2.bg/: (60, 'SSL certificate problem: certificate has expired') --> - + @@ -15,7 +15,7 @@ Fetch error: http://www.host2.bg/ => https://www.host2.bg/: (60, 'SSL certificat --> - + - + - + https://forum.hostdime.com/: (6, 'Cou ² 404 page only --> - + @@ -58,7 +58,7 @@ Fetch error: http://forum.hostdime.com/ => https://forum.hostdime.com/: (6, 'Cou --> - + - + - + diff --git a/src/chrome/content/rules/Host_Analytics.xml b/src/chrome/content/rules/Host_Analytics.xml index fe7de8007af9..fecb80eb6427 100644 --- a/src/chrome/content/rules/Host_Analytics.xml +++ b/src/chrome/content/rules/Host_Analytics.xml @@ -13,7 +13,7 @@ Fetch error: http://hive.hostanalytics.com/ => https://hive.hostanalytics.com/: ᵉ Expired --> - + @@ -21,7 +21,7 @@ Fetch error: http://hive.hostanalytics.com/ => https://hive.hostanalytics.com/: - + - + https://sugarcrm.hostone.com.au/ - (www.) (shows sugarcrm; mismatched, CN: sugarcrm.hostone.com.au) --> - + @@ -18,7 +18,6 @@ Fetch error: http://sugarcrm.hostone.com.au/ => https://sugarcrm.hostone.com.au/ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Host_Virtual.com.xml b/src/chrome/content/rules/Host_Virtual.com.xml index 842521b78cff..16b9f6cb1b64 100644 --- a/src/chrome/content/rules/Host_Virtual.com.xml +++ b/src/chrome/content/rules/Host_Virtual.com.xml @@ -14,7 +14,7 @@ --> - + https://www.hostvoice.com/: (60, 'SSL For other iNET Interactive coverage, see INet-Interactive.xml. --> - + diff --git a/src/chrome/content/rules/Hosterbox.com.xml b/src/chrome/content/rules/Hosterbox.com.xml index 212cc01a09c0..dd23f95fc41d 100644 --- a/src/chrome/content/rules/Hosterbox.com.xml +++ b/src/chrome/content/rules/Hosterbox.com.xml @@ -8,7 +8,7 @@ --> - + - + - + - + https://europe.hostingcon.com/: (5 * Secured by us --> - + - + - + https://kb.hostingsolutions.cz/: (6, 'Could not resolve host: kb.hostingsolutions.cz') - ---> - - - - - - - - - diff --git a/src/chrome/content/rules/HostingXtreme.com.xml b/src/chrome/content/rules/HostingXtreme.com.xml index f2cc9b0d04df..e1af919f1a5d 100644 --- a/src/chrome/content/rules/HostingXtreme.com.xml +++ b/src/chrome/content/rules/HostingXtreme.com.xml @@ -9,13 +9,13 @@ Fetch error: http://www.hostingxtreme.com/ => https://www.hostingxtreme.com/: (2 - news (http reply) --> - + - + - - - - - - - - diff --git a/src/chrome/content/rules/Hosting_Catalog.com.xml b/src/chrome/content/rules/Hosting_Catalog.com.xml deleted file mode 100644 index b14a49b5beb6..000000000000 --- a/src/chrome/content/rules/Hosting_Catalog.com.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Hostname.sk.xml b/src/chrome/content/rules/Hostname.sk.xml index 802f8e9de808..0de242207915 100644 --- a/src/chrome/content/rules/Hostname.sk.xml +++ b/src/chrome/content/rules/Hostname.sk.xml @@ -23,14 +23,15 @@ --> - + + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Hostoople.com-falsemixed.xml b/src/chrome/content/rules/Hostoople.com-falsemixed.xml index 78d97a0d2ff3..f52777387983 100644 --- a/src/chrome/content/rules/Hostoople.com-falsemixed.xml +++ b/src/chrome/content/rules/Hostoople.com-falsemixed.xml @@ -6,7 +6,7 @@ - + - + + + @@ -48,7 +50,6 @@ - + diff --git a/src/chrome/content/rules/Hostpoint.xml b/src/chrome/content/rules/Hostpoint.xml deleted file mode 100644 index 820100c1e94a..000000000000 --- a/src/chrome/content/rules/Hostpoint.xml +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Hostpointpartner.ch.xml b/src/chrome/content/rules/Hostpointpartner.ch.xml index 3acd04e1f583..1e50233a810b 100644 --- a/src/chrome/content/rules/Hostpointpartner.ch.xml +++ b/src/chrome/content/rules/Hostpointpartner.ch.xml @@ -10,4 +10,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/HotHardware.com.xml b/src/chrome/content/rules/HotHardware.com.xml new file mode 100644 index 000000000000..5464ae02c1c8 --- /dev/null +++ b/src/chrome/content/rules/HotHardware.com.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/HotLog.ru.xml b/src/chrome/content/rules/HotLog.ru.xml index 306fc41678d3..ddc9e5cc1932 100644 --- a/src/chrome/content/rules/HotLog.ru.xml +++ b/src/chrome/content/rules/HotLog.ru.xml @@ -16,7 +16,7 @@ - .hotlog.ru --> - + diff --git a/src/chrome/content/rules/HotUKDeals-mismatches.xml b/src/chrome/content/rules/HotUKDeals-mismatches.xml index 937b47388d61..8e8b00aef318 100644 --- a/src/chrome/content/rules/HotUKDeals-mismatches.xml +++ b/src/chrome/content/rules/HotUKDeals-mismatches.xml @@ -17,7 +17,7 @@ - + http://www.hotukdeals.com/: Cycle det Fetch error: http://statichukd.com/ => https://www.hotukdeals.com/: Pycurl fetch failed for 'http://statichukd.com/' Fetch error: http://www.statichukd.com/ => https://www.hotukdeals.com/: Cycle detected - URL already encountered: http://www.hotukdeals.com/ --> - + @@ -46,6 +46,6 @@ Fetch error: http://www.statichukd.com/ => https://www.hotukdeals.com/: Cycle de - + diff --git a/src/chrome/content/rules/Hot_Pics_Amateur.xml b/src/chrome/content/rules/Hot_Pics_Amateur.xml index 7f458bd0f365..69420b1f4fe8 100644 --- a/src/chrome/content/rules/Hot_Pics_Amateur.xml +++ b/src/chrome/content/rules/Hot_Pics_Amateur.xml @@ -5,7 +5,8 @@ - + + diff --git a/src/chrome/content/rules/Hotel_Managaby.xml b/src/chrome/content/rules/Hotel_Managaby.xml index 4a5d8d0a1b51..9cfe54a99900 100644 --- a/src/chrome/content/rules/Hotel_Managaby.xml +++ b/src/chrome/content/rules/Hotel_Managaby.xml @@ -1,4 +1,4 @@ - + diff --git a/src/chrome/content/rules/Hotel_Wifi.com.xml b/src/chrome/content/rules/Hotel_Wifi.com.xml index fb727a2a312f..313486d389a8 100644 --- a/src/chrome/content/rules/Hotel_Wifi.com.xml +++ b/src/chrome/content/rules/Hotel_Wifi.com.xml @@ -18,7 +18,7 @@ Fetch error: http://hotelwifi.com/ => https://hotelwifi.com/: (60, 'SSL certific * Plaintext reply --> - + diff --git a/src/chrome/content/rules/Hotels.com.xml b/src/chrome/content/rules/Hotels.com.xml deleted file mode 100644 index 0c05afc220b9..000000000000 --- a/src/chrome/content/rules/Hotels.com.xml +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Hotspot_Shield.xml b/src/chrome/content/rules/Hotspot_Shield.xml index 97de022e7728..877a2e0dc5a3 100644 --- a/src/chrome/content/rules/Hotspot_Shield.xml +++ b/src/chrome/content/rules/Hotspot_Shield.xml @@ -23,7 +23,8 @@ Fetch error: http://hotspotshield.com/ => https://hotspotshield.com/: (7, 'Faile - + + @@ -33,10 +34,6 @@ Fetch error: http://hotspotshield.com/ => https://hotspotshield.com/: (7, 'Faile - + - - - \ No newline at end of file + diff --git a/src/chrome/content/rules/Hotwire.xml b/src/chrome/content/rules/Hotwire.xml index e4f8d934aac3..b7e5cb4e8c1f 100644 --- a/src/chrome/content/rules/Hotwire.xml +++ b/src/chrome/content/rules/Hotwire.xml @@ -1,9 +1,10 @@ - + + + - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Hounddog_Central.xml b/src/chrome/content/rules/Hounddog_Central.xml index 008c4c63dcb3..5a75e716356b 100644 --- a/src/chrome/content/rules/Hounddog_Central.xml +++ b/src/chrome/content/rules/Hounddog_Central.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Houseoffraser.co.uk.xml b/src/chrome/content/rules/Houseoffraser.co.uk.xml deleted file mode 100644 index 4eaf46772a3c..000000000000 --- a/src/chrome/content/rules/Houseoffraser.co.uk.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/HousingWire.com.xml b/src/chrome/content/rules/HousingWire.com.xml index 11ed574e5b28..db469617c10d 100644 --- a/src/chrome/content/rules/HousingWire.com.xml +++ b/src/chrome/content/rules/HousingWire.com.xml @@ -19,4 +19,4 @@ Fetch error: http://housingwire.com/ => https://www.housingwire.com/: Cycle dete - \ No newline at end of file + diff --git a/src/chrome/content/rules/Houston_Chronicle.xml b/src/chrome/content/rules/Houston_Chronicle.xml index dc1872f17788..96bdcc67bf0b 100644 --- a/src/chrome/content/rules/Houston_Chronicle.xml +++ b/src/chrome/content/rules/Houston_Chronicle.xml @@ -63,7 +63,10 @@ --> - + + + + diff --git a/src/chrome/content/rules/Hover.com.xml b/src/chrome/content/rules/Hover.com.xml index 279ddc60ebac..d183fec34a1c 100644 --- a/src/chrome/content/rules/Hover.com.xml +++ b/src/chrome/content/rules/Hover.com.xml @@ -43,7 +43,7 @@ - + + + + + + + + + + diff --git a/src/chrome/content/rules/HowManyPeopleAreInSpaceRightNow.com.xml b/src/chrome/content/rules/HowManyPeopleAreInSpaceRightNow.com.xml new file mode 100644 index 000000000000..c60917bd9a12 --- /dev/null +++ b/src/chrome/content/rules/HowManyPeopleAreInSpaceRightNow.com.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/HowTo.gov.xml b/src/chrome/content/rules/HowTo.gov.xml deleted file mode 100644 index 176330aa0e5c..000000000000 --- a/src/chrome/content/rules/HowTo.gov.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/How_to_Box.xml b/src/chrome/content/rules/How_to_Box.xml deleted file mode 100644 index ecd10e483a3d..000000000000 --- a/src/chrome/content/rules/How_to_Box.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Howard-Hughes-Medical-Institute.xml b/src/chrome/content/rules/Howard-Hughes-Medical-Institute.xml index c3bff94d1eda..7ca0dede5290 100644 --- a/src/chrome/content/rules/Howard-Hughes-Medical-Institute.xml +++ b/src/chrome/content/rules/Howard-Hughes-Medical-Institute.xml @@ -4,7 +4,7 @@ - + diff --git a/src/chrome/content/rules/Howinerd.com.xml b/src/chrome/content/rules/Howinerd.com.xml deleted file mode 100644 index 85b5eea683e8..000000000000 --- a/src/chrome/content/rules/Howinerd.com.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/HowiyaPress.com.xml b/src/chrome/content/rules/HowiyaPress.com.xml new file mode 100644 index 000000000000..8dee595df542 --- /dev/null +++ b/src/chrome/content/rules/HowiyaPress.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/HrC.onl.xml b/src/chrome/content/rules/HrC.onl.xml deleted file mode 100644 index 8f6ac4975a40..000000000000 --- a/src/chrome/content/rules/HrC.onl.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/HsI_cloud.com.xml b/src/chrome/content/rules/HsI_cloud.com.xml index f5df370ec007..8a1a28e7b913 100644 --- a/src/chrome/content/rules/HsI_cloud.com.xml +++ b/src/chrome/content/rules/HsI_cloud.com.xml @@ -13,12 +13,11 @@ Fetch error: http://fb.hsicloud.com/ => https://fb.hsicloud.com/: (60, 'SSL cert * http reply --> - + - + diff --git a/src/chrome/content/rules/Hsto.org.xml b/src/chrome/content/rules/Hsto.org.xml index e850ff78e708..9dd2d379c1de 100644 --- a/src/chrome/content/rules/Hsto.org.xml +++ b/src/chrome/content/rules/Hsto.org.xml @@ -21,7 +21,7 @@ - + https://beta.hstor.org/: (60, 'SSL certif www.hstor.org doesn't exist. --> - + @@ -24,7 +24,7 @@ Fetch error: http://beta.hstor.org/ => https://beta.hstor.org/: (60, 'SSL certif --> - + https://bh.ht.vc/: (60, 'SSL certificate proble Fetch error: http://www.ht.vc/ => https://www.ht.vc/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/Htwk-leipzig-owndomains.xml b/src/chrome/content/rules/Htwk-leipzig-owndomains.xml index 3a5a1aa523b1..6b6418f4328e 100644 --- a/src/chrome/content/rules/Htwk-leipzig-owndomains.xml +++ b/src/chrome/content/rules/Htwk-leipzig-owndomains.xml @@ -7,11 +7,11 @@ Fetch error: http://www.cmw-leipzig.de/ => https://www.cmw-leipzig.de/: (51, "SS Nonfunctional subdomains: - streifband.de - www -> wrong cert - + Other HTWK Leipzig rulesets: - Htwk-leipzig.de.xml --> - + diff --git a/src/chrome/content/rules/Htwk-leipzig.de.xml b/src/chrome/content/rules/Htwk-leipzig.de.xml index fb50b37ff497..c440392e59e1 100644 --- a/src/chrome/content/rules/Htwk-leipzig.de.xml +++ b/src/chrome/content/rules/Htwk-leipzig.de.xml @@ -17,11 +17,11 @@ Fetch error: http://cmw.htwk-leipzig.de/ => https://cmw.htwk-leipzig.de/: (51, " - naoteam.imn -> different site - www.fitl -> times out - katalog.bib -> DNS error - + Other HTWK Leipzig rulesets: - Htwk-leipzig-owndomains.xml --> - + diff --git a/src/chrome/content/rules/Huawei.com.xml b/src/chrome/content/rules/Huawei.com.xml index 415968e033a8..2cb87e8a6c93 100644 --- a/src/chrome/content/rules/Huawei.com.xml +++ b/src/chrome/content/rules/Huawei.com.xml @@ -57,7 +57,7 @@ Fetch error: http://imailpk.huawei.com/ => https://imailpk.huawei.com/OWA: (60, - uniportal.huawei.com --> - + diff --git a/src/chrome/content/rules/HubSpot.net.xml b/src/chrome/content/rules/HubSpot.net.xml index ef741c488e22..8d8bd7087c51 100644 --- a/src/chrome/content/rules/HubSpot.net.xml +++ b/src/chrome/content/rules/HubSpot.net.xml @@ -1,7 +1,4 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Hudson_Valley_Host.xml b/src/chrome/content/rules/Hudson_Valley_Host.xml index 213b89e7f08a..89b862e26763 100644 --- a/src/chrome/content/rules/Hudson_Valley_Host.xml +++ b/src/chrome/content/rules/Hudson_Valley_Host.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Huffington-Post.xml b/src/chrome/content/rules/Huffington-Post.xml index e20dcbc5f9c8..ecf70c5c78e4 100644 --- a/src/chrome/content/rules/Huffington-Post.xml +++ b/src/chrome/content/rules/Huffington-Post.xml @@ -120,7 +120,7 @@ + to="https://big.assets.huffingtonpost.com/" /> diff --git a/src/chrome/content/rules/HughesNet.xml b/src/chrome/content/rules/HughesNet.xml index 99edbd5031c9..b07c1dcec9d7 100644 --- a/src/chrome/content/rules/HughesNet.xml +++ b/src/chrome/content/rules/HughesNet.xml @@ -9,12 +9,11 @@ Fetch error: http://s1.hughesnet.com/ => https://s1.hughesnet.com/: (51, "SSL: n - (www.) (shows s1, CN: s1.hughesnet.com) --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/HugoBoss.xml b/src/chrome/content/rules/HugoBoss.xml index 6c199de3c370..86bad8ee9c88 100644 --- a/src/chrome/content/rules/HugoBoss.xml +++ b/src/chrome/content/rules/HugoBoss.xml @@ -21,7 +21,7 @@ - diff --git a/src/chrome/content/rules/HumanDesign.fi.xml b/src/chrome/content/rules/HumanDesign.fi.xml new file mode 100644 index 000000000000..f7b0ad4272a8 --- /dev/null +++ b/src/chrome/content/rules/HumanDesign.fi.xml @@ -0,0 +1,13 @@ + + + + + + + + diff --git a/src/chrome/content/rules/HumanResearchEthicsPortal.xml b/src/chrome/content/rules/HumanResearchEthicsPortal.xml index cf3c0f7cdb07..06aab896a788 100644 --- a/src/chrome/content/rules/HumanResearchEthicsPortal.xml +++ b/src/chrome/content/rules/HumanResearchEthicsPortal.xml @@ -4,10 +4,10 @@ Disabled by https-everywhere-checker because: Fetch error: http://hrep.nhmrc.gov.au/ => https://hrep.nhmrc.gov.au/: (6, 'Could not resolve host: hrep.nhmrc.gov.au') --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Human_Action.xml b/src/chrome/content/rules/Human_Action.xml index ad3740717a80..e855cc0afa54 100644 --- a/src/chrome/content/rules/Human_Action.xml +++ b/src/chrome/content/rules/Human_Action.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Human_Brain_Project.eu.xml b/src/chrome/content/rules/Human_Brain_Project.eu.xml index 3b5eca05e9f5..438e871c1673 100644 --- a/src/chrome/content/rules/Human_Brain_Project.eu.xml +++ b/src/chrome/content/rules/Human_Brain_Project.eu.xml @@ -1,7 +1,9 @@ - + + + - + @@ -26,4 +26,4 @@ Fetch error: http://order.humanevents.com/ => https://order.humanevents.com/: (6 - \ No newline at end of file + diff --git a/src/chrome/content/rules/Human_Rights_Watch.xml b/src/chrome/content/rules/Human_Rights_Watch.xml index 12469d7a4225..c8bf440819a0 100644 --- a/src/chrome/content/rules/Human_Rights_Watch.xml +++ b/src/chrome/content/rules/Human_Rights_Watch.xml @@ -1,66 +1,27 @@ - - + - + + + - - - - - - - - - - - - - - - - + diff --git a/src/chrome/content/rules/HumanityPlus.xml b/src/chrome/content/rules/HumanityPlus.xml index 37c994ed8474..f097c07c5e23 100644 --- a/src/chrome/content/rules/HumanityPlus.xml +++ b/src/chrome/content/rules/HumanityPlus.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/HumbleBundle.xml b/src/chrome/content/rules/HumbleBundle.xml index 07428f1da89b..0cb609b068eb 100644 --- a/src/chrome/content/rules/HumbleBundle.xml +++ b/src/chrome/content/rules/HumbleBundle.xml @@ -22,7 +22,7 @@ --> - + diff --git a/src/chrome/content/rules/Hummingbird.me.xml b/src/chrome/content/rules/Hummingbird.me.xml deleted file mode 100644 index c2ac616d9634..000000000000 --- a/src/chrome/content/rules/Hummingbird.me.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Hunch.xml b/src/chrome/content/rules/Hunch.xml index a103cfe0d85c..f1fc3e830678 100644 --- a/src/chrome/content/rules/Hunch.xml +++ b/src/chrome/content/rules/Hunch.xml @@ -24,7 +24,7 @@ Fetch error: http://hunch.com/ => https://hunch.com/: (60, 'SSL certificate prob - img-1.hunch.com (mismatched, CN: HUNCH.COM) --> - + diff --git a/src/chrome/content/rules/Hungry-for-Change.xml b/src/chrome/content/rules/Hungry-for-Change.xml index 5f9acf16abab..d11e0f767e00 100644 --- a/src/chrome/content/rules/Hungry-for-Change.xml +++ b/src/chrome/content/rules/Hungry-for-Change.xml @@ -3,10 +3,10 @@ - + - + diff --git a/src/chrome/content/rules/Hunting_Bears.nl.xml b/src/chrome/content/rules/Hunting_Bears.nl.xml index 6eef84edf5fd..ba4d205c085d 100644 --- a/src/chrome/content/rules/Hunting_Bears.nl.xml +++ b/src/chrome/content/rules/Hunting_Bears.nl.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.huntingbears.nl/ => https://www.huntingbears.nl/: (51, "SSL: no alternative certificate subject name matches target host name 'www.huntingbears.nl'") --> - + diff --git a/src/chrome/content/rules/Huobi.com.xml b/src/chrome/content/rules/Huobi.com.xml index 9eaa8366a6c6..00d5ae8b8402 100644 --- a/src/chrome/content/rules/Huobi.com.xml +++ b/src/chrome/content/rules/Huobi.com.xml @@ -31,7 +31,7 @@ Fetch error: http://s.huobi.com/ => https://s.huobi.com/: (7, 'Failed to connect * Secured by us --> - + @@ -57,7 +57,7 @@ Fetch error: http://s.huobi.com/ => https://s.huobi.com/: (7, 'Failed to connect - + - + diff --git a/src/chrome/content/rules/Huque.com.xml b/src/chrome/content/rules/Huque.com.xml index fdaf74608886..ebbc62aab44e 100644 --- a/src/chrome/content/rules/Huque.com.xml +++ b/src/chrome/content/rules/Huque.com.xml @@ -1,21 +1,10 @@ - - - - + - - diff --git a/src/chrome/content/rules/Hurley_Medical_Center.xml b/src/chrome/content/rules/Hurley_Medical_Center.xml index 1267a5f41226..097df5f3fa98 100644 --- a/src/chrome/content/rules/Hurley_Medical_Center.xml +++ b/src/chrome/content/rules/Hurley_Medical_Center.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://hurleymc.com/ => https://hurleymc.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.hurleymc.com'") Fetch error: http://www.hurleymc.com/ => https://www.hurleymc.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.hurleymc.com'") --> - + @@ -16,4 +16,4 @@ Fetch error: http://www.hurleymc.com/ => https://www.hurleymc.com/: (51, "SSL: n - \ No newline at end of file + diff --git a/src/chrome/content/rules/HurricaneElectric.xml b/src/chrome/content/rules/HurricaneElectric.xml index fdf946061e83..8039843d7420 100644 --- a/src/chrome/content/rules/HurricaneElectric.xml +++ b/src/chrome/content/rules/HurricaneElectric.xml @@ -3,41 +3,40 @@ - TunnelBroker.xml - - - Nonfunctional subdomains: - - - bgp.he.net (refused) - - man.he.net (redirects to www.he.net, valid cert) - - - bgp.he.net and faq.he.net don't support SSL at the moment - - - Problematic domains: - - - (www.)hu.com * - - hurricaneelectric.com * - - * Alternative domains, same content, using he.net certificate - + Non-functional hosts + SSL connect error: + - man.he.net + + SSL peer certificate was not OK: + - he.com + - www.he.com + - hurricaneelectric.net --> - - + + - + + + + + + + + + + + + + + + + - - - - - - - + diff --git a/src/chrome/content/rules/Hush-Hush.xml b/src/chrome/content/rules/Hush-Hush.xml index ca795c441c5b..337a20000660 100644 --- a/src/chrome/content/rules/Hush-Hush.xml +++ b/src/chrome/content/rules/Hush-Hush.xml @@ -1,9 +1,10 @@ - + + - + diff --git a/src/chrome/content/rules/Hush.technology.xml b/src/chrome/content/rules/Hush.technology.xml deleted file mode 100644 index e5f579aee5d9..000000000000 --- a/src/chrome/content/rules/Hush.technology.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Hushmail.xml b/src/chrome/content/rules/Hushmail.xml index 604841b05826..e0cb73d0ad89 100644 --- a/src/chrome/content/rules/Hushmail.xml +++ b/src/chrome/content/rules/Hushmail.xml @@ -36,7 +36,7 @@ - + - + diff --git a/src/chrome/content/rules/Huxiu.com.xml b/src/chrome/content/rules/Huxiu.com.xml index cba4d3954388..dd185e346941 100644 --- a/src/chrome/content/rules/Huxiu.com.xml +++ b/src/chrome/content/rules/Huxiu.com.xml @@ -9,7 +9,7 @@ Fetch error: http://huxiu.com/ => https://huxiu.com/: (60, 'SSL certificate prob - Refused on: duwu.huxiu.com --> - + @@ -18,6 +18,6 @@ Fetch error: http://huxiu.com/ => https://huxiu.com/: (60, 'SSL certificate prob - + diff --git a/src/chrome/content/rules/Huxo.co.uk.xml b/src/chrome/content/rules/Huxo.co.uk.xml index 2943985f6caa..d45a926c3792 100644 --- a/src/chrome/content/rules/Huxo.co.uk.xml +++ b/src/chrome/content/rules/Huxo.co.uk.xml @@ -1,14 +1,10 @@ - - + - + diff --git a/src/chrome/content/rules/Hvosting.ua.xml b/src/chrome/content/rules/Hvosting.ua.xml index c14b50d3fbf2..0a0ae5aeb095 100644 --- a/src/chrome/content/rules/Hvosting.ua.xml +++ b/src/chrome/content/rules/Hvosting.ua.xml @@ -13,9 +13,9 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Hwbot.org.xml b/src/chrome/content/rules/Hwbot.org.xml index 90d682fcbea8..08e3731b05c3 100644 --- a/src/chrome/content/rules/Hwbot.org.xml +++ b/src/chrome/content/rules/Hwbot.org.xml @@ -15,7 +15,8 @@ --> - + + - + https://www.hypanova.com/: (60, 'SSL ce Disabled by https-everywhere-checker because: Fetch error: http://hypanova.com/ => https://hypanova.com/: (51, "SSL: no alternative certificate subject name matches target host name 'hypanova.com'") --> - + diff --git a/src/chrome/content/rules/HypeMachine.xml b/src/chrome/content/rules/HypeMachine.xml index 8d30b454c8b6..773a08946225 100644 --- a/src/chrome/content/rules/HypeMachine.xml +++ b/src/chrome/content/rules/HypeMachine.xml @@ -1,43 +1,17 @@ - - - - - - - - - - - - + + + + + + - + + diff --git a/src/chrome/content/rules/Hyper.sh.xml b/src/chrome/content/rules/Hyper.sh.xml deleted file mode 100644 index 02f87ab871c5..000000000000 --- a/src/chrome/content/rules/Hyper.sh.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Hyperoptic.com.xml b/src/chrome/content/rules/Hyperoptic.com.xml index e376b49288e4..597513202a83 100644 --- a/src/chrome/content/rules/Hyperoptic.com.xml +++ b/src/chrome/content/rules/Hyperoptic.com.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Hypovereinsbank.de.xml b/src/chrome/content/rules/Hypovereinsbank.de.xml index dcd5720a4246..4254e36b4caf 100644 --- a/src/chrome/content/rules/Hypovereinsbank.de.xml +++ b/src/chrome/content/rules/Hypovereinsbank.de.xml @@ -3,9 +3,7 @@ - - - + diff --git a/src/chrome/content/rules/I-Do-Foundation.xml b/src/chrome/content/rules/I-Do-Foundation.xml deleted file mode 100644 index 7843e7958b4b..000000000000 --- a/src/chrome/content/rules/I-Do-Foundation.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/I-kiz.de.xml b/src/chrome/content/rules/I-kiz.de.xml index abbe77c5d486..ddf699fbe3c6 100644 --- a/src/chrome/content/rules/I-kiz.de.xml +++ b/src/chrome/content/rules/I-kiz.de.xml @@ -1,4 +1,4 @@ - - + + diff --git a/src/chrome/content/rules/I.CX.xml b/src/chrome/content/rules/I.CX.xml index 7842b2d3af23..f5ef485833fa 100644 --- a/src/chrome/content/rules/I.CX.xml +++ b/src/chrome/content/rules/I.CX.xml @@ -1,10 +1,8 @@ - + - - + diff --git a/src/chrome/content/rules/I.materialise.xml b/src/chrome/content/rules/I.materialise.xml index 0cc02c9495f4..3ac987676818 100644 --- a/src/chrome/content/rules/I.materialise.xml +++ b/src/chrome/content/rules/I.materialise.xml @@ -20,7 +20,7 @@ --> - + + + + + + + + + + diff --git a/src/chrome/content/rules/I2P.xml b/src/chrome/content/rules/I2P.xml deleted file mode 100644 index 89b1c75c8bfd..000000000000 --- a/src/chrome/content/rules/I2P.xml +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/I2P2.de.xml b/src/chrome/content/rules/I2P2.de.xml new file mode 100644 index 000000000000..e72affd8fee5 --- /dev/null +++ b/src/chrome/content/rules/I2P2.de.xml @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/I2PD.website.xml b/src/chrome/content/rules/I2PD.website.xml new file mode 100644 index 000000000000..c7fd3127ab1c --- /dev/null +++ b/src/chrome/content/rules/I2PD.website.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/I3D.net.xml b/src/chrome/content/rules/I3D.net.xml index ca5839ebe9f0..64233ef8cfa4 100644 --- a/src/chrome/content/rules/I3D.net.xml +++ b/src/chrome/content/rules/I3D.net.xml @@ -10,7 +10,8 @@ - + + - + - + - + diff --git a/src/chrome/content/rules/IAATA.info.xml b/src/chrome/content/rules/IAATA.info.xml index 759810f255b1..a42c68a34261 100644 --- a/src/chrome/content/rules/IAATA.info.xml +++ b/src/chrome/content/rules/IAATA.info.xml @@ -6,7 +6,7 @@ - + - - - - - - - diff --git a/src/chrome/content/rules/IABM.xml b/src/chrome/content/rules/IABM.xml index eb161b916438..b7eb59def324 100644 --- a/src/chrome/content/rules/IABM.xml +++ b/src/chrome/content/rules/IABM.xml @@ -30,7 +30,7 @@ - + - - + + diff --git a/src/chrome/content/rules/IARU-R1.org.xml b/src/chrome/content/rules/IARU-R1.org.xml new file mode 100644 index 000000000000..513a50610ee7 --- /dev/null +++ b/src/chrome/content/rules/IARU-R1.org.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/IAS.edu.xml b/src/chrome/content/rules/IAS.edu.xml index 821943e4ca0d..fd98b957bd01 100644 --- a/src/chrome/content/rules/IAS.edu.xml +++ b/src/chrome/content/rules/IAS.edu.xml @@ -41,7 +41,7 @@ Fetch error: http://springdale.math.ias.edu/ => https://springdale.math.ias.edu/ - (www.)sss (^ → www) --> - + diff --git a/src/chrome/content/rules/IATS_Payments.com.xml b/src/chrome/content/rules/IATS_Payments.com.xml index 431cd629a6dc..049c731b8fe3 100644 --- a/src/chrome/content/rules/IATS_Payments.com.xml +++ b/src/chrome/content/rules/IATS_Payments.com.xml @@ -17,4 +17,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/IAmplify.xml b/src/chrome/content/rules/IAmplify.xml index 87cccf672817..8594297f36f8 100644 --- a/src/chrome/content/rules/IAmplify.xml +++ b/src/chrome/content/rules/IAmplify.xml @@ -3,7 +3,7 @@ - + diff --git a/src/chrome/content/rules/IB-IBI.com.xml b/src/chrome/content/rules/IB-IBI.com.xml index e889386e82c5..2190f2e47f6f 100644 --- a/src/chrome/content/rules/IB-IBI.com.xml +++ b/src/chrome/content/rules/IB-IBI.com.xml @@ -16,7 +16,7 @@ Fetch error: http://global.ib-ibi.com/ => https://global.ib-ibi.com/: (56, 'SSL ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -27,7 +27,7 @@ Fetch error: http://global.ib-ibi.com/ => https://global.ib-ibi.com/: (56, 'SSL --> - + https://www-950.ibm.com/: (28, 'Connection timed out after 20001 milliseconds') + IBM has lots of resources, besides software, also developerworks and redbooks. @@ -9,9 +14,6 @@ - CoreMetrics.xml - ibm.biz.xml - Kenexa.xml - - Lotus.xml - - Pviq.com.xml - - S81c.com.xml - Trusteer.com.xml @@ -99,7 +101,7 @@ - + diff --git a/src/chrome/content/rules/IBPhoenix.com.xml b/src/chrome/content/rules/IBPhoenix.com.xml index 8453c806a7b1..226088e9b000 100644 --- a/src/chrome/content/rules/IBPhoenix.com.xml +++ b/src/chrome/content/rules/IBPhoenix.com.xml @@ -7,7 +7,7 @@ Fetch error: http://www.ibphoenix.com/ => https://www.ibphoenix.com/: (60, 'SSL ^: 503 --> - + diff --git a/src/chrome/content/rules/IBario.com.xml b/src/chrome/content/rules/IBario.com.xml index 4f688a2b4316..9d7d5444960e 100644 --- a/src/chrome/content/rules/IBario.com.xml +++ b/src/chrome/content/rules/IBario.com.xml @@ -10,7 +10,7 @@ Fetch error: http://www.ibario.com/ => https://www.ibario.com/: (60, 'SSL certif ^: refused --> - + diff --git a/src/chrome/content/rules/IBsrv.net.xml b/src/chrome/content/rules/IBsrv.net.xml new file mode 100644 index 000000000000..6d1467cda200 --- /dev/null +++ b/src/chrome/content/rules/IBsrv.net.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ICA.se.xml b/src/chrome/content/rules/ICA.se.xml index c4f5484da0e3..2e609ec99818 100644 --- a/src/chrome/content/rules/ICA.se.xml +++ b/src/chrome/content/rules/ICA.se.xml @@ -1,7 +1,10 @@ - - - - + + + + + + + diff --git a/src/chrome/content/rules/ICANN.org-falsemixed.xml b/src/chrome/content/rules/ICANN.org-falsemixed.xml index e94603a189b1..37c0a3c71488 100644 --- a/src/chrome/content/rules/ICANN.org-falsemixed.xml +++ b/src/chrome/content/rules/ICANN.org-falsemixed.xml @@ -8,7 +8,6 @@ - + diff --git a/src/chrome/content/rules/ICANN.xml b/src/chrome/content/rules/ICANN.xml index f89a04e9986f..19698f5a7da1 100644 --- a/src/chrome/content/rules/ICANN.xml +++ b/src/chrome/content/rules/ICANN.xml @@ -97,7 +97,7 @@ - + https://icbit.se/: (6, 'Could not resolve host: icbit.se') -Fetch error: http://www.icbit.se/ => https://www.icbit.se/: (6, 'Could not resolve host: www.icbit.se') - ---> - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/ICLN.org.xml b/src/chrome/content/rules/ICLN.org.xml index fa683ecb54fe..57775d13b7e0 100644 --- a/src/chrome/content/rules/ICLN.org.xml +++ b/src/chrome/content/rules/ICLN.org.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/ICMail.xml b/src/chrome/content/rules/ICMail.xml deleted file mode 100644 index f1aecaf640bc..000000000000 --- a/src/chrome/content/rules/ICMail.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/ICPDR.org.xml b/src/chrome/content/rules/ICPDR.org.xml new file mode 100644 index 000000000000..53a35ada0826 --- /dev/null +++ b/src/chrome/content/rules/ICPDR.org.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/ICPEN.xml b/src/chrome/content/rules/ICPEN.xml index 2287a90f69b0..34364549441f 100644 --- a/src/chrome/content/rules/ICPEN.xml +++ b/src/chrome/content/rules/ICPEN.xml @@ -7,7 +7,7 @@ Fetch error: http://www.icpen.org/ => https://icpen.org/: Too many redirects whi Cert only matches ^icpen.org --> - + diff --git a/src/chrome/content/rules/ICQ.com.xml b/src/chrome/content/rules/ICQ.com.xml index cd007da21ae3..4f4830e6dcaa 100644 --- a/src/chrome/content/rules/ICQ.com.xml +++ b/src/chrome/content/rules/ICQ.com.xml @@ -44,7 +44,7 @@ - + + + + + + + + + diff --git a/src/chrome/content/rules/ICSA_Labs.com.xml b/src/chrome/content/rules/ICSA_Labs.com.xml deleted file mode 100644 index e1b5911f181e..000000000000 --- a/src/chrome/content/rules/ICSA_Labs.com.xml +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/ICTRecht.xml b/src/chrome/content/rules/ICTRecht.xml index ec7d26cf55c8..412f10a4a6c7 100644 --- a/src/chrome/content/rules/ICTRecht.xml +++ b/src/chrome/content/rules/ICTRecht.xml @@ -6,4 +6,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/ICharts.xml b/src/chrome/content/rules/ICharts.xml deleted file mode 100644 index 347bfe374269..000000000000 --- a/src/chrome/content/rules/ICharts.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/IClick_Interactive.xml b/src/chrome/content/rules/IClick_Interactive.xml index 1c9366641765..1c9abd78381a 100644 --- a/src/chrome/content/rules/IClick_Interactive.xml +++ b/src/chrome/content/rules/IClick_Interactive.xml @@ -6,14 +6,11 @@ --> - + - - - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/ICommons-mismatches.xml b/src/chrome/content/rules/ICommons-mismatches.xml index ba3ebf92874d..5cffafc411c1 100644 --- a/src/chrome/content/rules/ICommons-mismatches.xml +++ b/src/chrome/content/rules/ICommons-mismatches.xml @@ -9,7 +9,7 @@ - + https://www.icommunity.fr/: (7, 'Faile ^icommunity.fr doesn't exist. --> - + diff --git a/src/chrome/content/rules/IDC.xml b/src/chrome/content/rules/IDC.xml index 3a69b16098c8..ca16b290f5fc 100644 --- a/src/chrome/content/rules/IDC.xml +++ b/src/chrome/content/rules/IDC.xml @@ -17,7 +17,9 @@ - + + + @@ -26,7 +28,6 @@ - + diff --git a/src/chrome/content/rules/IDG.com.au.xml b/src/chrome/content/rules/IDG.com.au.xml index 25b4c9b9c5ca..a3004019f697 100644 --- a/src/chrome/content/rules/IDG.com.au.xml +++ b/src/chrome/content/rules/IDG.com.au.xml @@ -23,23 +23,21 @@ Fetch error: http://computerworld.com.au/ => https://computerworld.com.au/: (51, - - + + + - + - - + diff --git a/src/chrome/content/rules/IDG.se.xml b/src/chrome/content/rules/IDG.se.xml index 9139b3ee8e6f..b7a1a75c931d 100644 --- a/src/chrome/content/rules/IDG.se.xml +++ b/src/chrome/content/rules/IDG.se.xml @@ -63,7 +63,7 @@ Non-2xx HTTP code: http://upphandling24.idg.se/ (200) => https://upphandling24.i * Times out --> - + diff --git a/src/chrome/content/rules/IDStronghold.com.xml b/src/chrome/content/rules/IDStronghold.com.xml new file mode 100644 index 000000000000..e17a04fd5137 --- /dev/null +++ b/src/chrome/content/rules/IDStronghold.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/ID_managed_solutions.com.xml b/src/chrome/content/rules/ID_managed_solutions.com.xml deleted file mode 100644 index a24a1e7a4068..000000000000 --- a/src/chrome/content/rules/ID_managed_solutions.com.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/IED-Industrieanlagen-und-Engineering.xml b/src/chrome/content/rules/IED-Industrieanlagen-und-Engineering.xml index e31b41b1aa6c..7fa5e04391f5 100644 --- a/src/chrome/content/rules/IED-Industrieanlagen-und-Engineering.xml +++ b/src/chrome/content/rules/IED-Industrieanlagen-und-Engineering.xml @@ -1,11 +1,11 @@ - + - - + + - + - + diff --git a/src/chrome/content/rules/IEEE-Security.org.xml b/src/chrome/content/rules/IEEE-Security.org.xml new file mode 100644 index 000000000000..39ac21b06ec8 --- /dev/null +++ b/src/chrome/content/rules/IEEE-Security.org.xml @@ -0,0 +1,11 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/IEEE-mismatches.xml b/src/chrome/content/rules/IEEE-mismatches.xml index 4adcaa79925e..1605801f0e48 100644 --- a/src/chrome/content/rules/IEEE-mismatches.xml +++ b/src/chrome/content/rules/IEEE-mismatches.xml @@ -1,12 +1,9 @@ - + - - diff --git a/src/chrome/content/rules/IEEE.org-falsemixed.xml b/src/chrome/content/rules/IEEE.org-falsemixed.xml index b2afcdca70fe..5fb1d3c2a968 100644 --- a/src/chrome/content/rules/IEEE.org-falsemixed.xml +++ b/src/chrome/content/rules/IEEE.org-falsemixed.xml @@ -6,7 +6,7 @@ Fetch error: http://ieeexplore.ieee.org/ => https://ieeexplore.ieee.org/: Too ma For rules not causing false/broken MCB, see IEEE.xml. --> - + diff --git a/src/chrome/content/rules/IEEE.xml b/src/chrome/content/rules/IEEE.xml index 79157a986b16..5bd1a9811708 100644 --- a/src/chrome/content/rules/IEEE.xml +++ b/src/chrome/content/rules/IEEE.xml @@ -3,7 +3,7 @@ For rules causing false/broken MCB, see IEEE.org-falsemixed.xml. For problematic rules, see IEEE-mismatches.xml. - + For ieee-security.org rules see IEEE-Security.org.xml Other IEEE rulesets: @@ -24,7 +24,7 @@ - oc ² - sites ² - smartgrid ¹ - - spectrum (Akamai; 503) + - spectrum ³ - theinstitute ⁴ - uce ² @@ -35,27 +35,18 @@ Problematic subdomains: - - ewh ¹ - - www.ewh (cert only matches ^ewh) - - ieeexplore ³ - innovate ³ - jobs (mismatched, CN: sitemanager2.adico.com) - listserv * - - mentor * - www.spectrum ⁴ - staticieeexplore ⁴ ¹ Configured for rc4 only + ² Timeout ³ Mixed css * Server sends no certificate chain, see https://whatsmychaincert.com ⁴ Works, akamai - - Partially covered subdomains: - - - eleccomm (homepage 403s) - - Mixed content: - css, on: @@ -74,11 +65,12 @@ --> - + + - + - + @@ -87,9 +79,7 @@ - - - + @@ -100,43 +90,7 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - + diff --git a/src/chrome/content/rules/IEEE_USA.org-falsemixed.xml b/src/chrome/content/rules/IEEE_USA.org-falsemixed.xml index 74b3aef63c5f..dfae2b05935a 100644 --- a/src/chrome/content/rules/IEEE_USA.org-falsemixed.xml +++ b/src/chrome/content/rules/IEEE_USA.org-falsemixed.xml @@ -7,7 +7,7 @@ Fetch error: http://entportal.ieeeusa.org/ => https://entportal.ieeeusa.org/: (6 For rules not causing false/broken MCB, see IEEE_USA.org.xml. --> - + @@ -15,7 +15,7 @@ Fetch error: http://entportal.ieeeusa.org/ => https://entportal.ieeeusa.org/: (6 - + + + + + + + + + + diff --git a/src/chrome/content/rules/IELTS.xml b/src/chrome/content/rules/IELTS.xml deleted file mode 100644 index 750188010352..000000000000 --- a/src/chrome/content/rules/IELTS.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/src/chrome/content/rules/IEQuran.com.xml b/src/chrome/content/rules/IEQuran.com.xml new file mode 100644 index 000000000000..0dd0d6100d02 --- /dev/null +++ b/src/chrome/content/rules/IEQuran.com.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/IET.xml b/src/chrome/content/rules/IET.xml index d52e0abe1334..038c3c686539 100644 --- a/src/chrome/content/rules/IET.xml +++ b/src/chrome/content/rules/IET.xml @@ -8,7 +8,8 @@ - + + diff --git a/src/chrome/content/rules/IETF.org.xml b/src/chrome/content/rules/IETF.org.xml index 407b54c5b591..e66cc347f325 100644 --- a/src/chrome/content/rules/IETF.org.xml +++ b/src/chrome/content/rules/IETF.org.xml @@ -108,10 +108,10 @@ - + - + diff --git a/src/chrome/content/rules/IFA.ch.xml b/src/chrome/content/rules/IFA.ch.xml index afeee7277599..7203fc1e4bc0 100644 --- a/src/chrome/content/rules/IFA.ch.xml +++ b/src/chrome/content/rules/IFA.ch.xml @@ -1,6 +1,6 @@ - + diff --git a/src/chrome/content/rules/IFPA.ie.xml b/src/chrome/content/rules/IFPA.ie.xml index 0540cba42d21..67855105455a 100644 --- a/src/chrome/content/rules/IFPA.ie.xml +++ b/src/chrome/content/rules/IFPA.ie.xml @@ -6,7 +6,7 @@ - + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/IFriends.xml b/src/chrome/content/rules/IFriends.xml deleted file mode 100644 index deaff955ae41..000000000000 --- a/src/chrome/content/rules/IFriends.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/IGCD.net.xml b/src/chrome/content/rules/IGCD.net.xml new file mode 100644 index 000000000000..a720beb8e3cd --- /dev/null +++ b/src/chrome/content/rules/IGCD.net.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/IGN-problematic.xml b/src/chrome/content/rules/IGN-problematic.xml deleted file mode 100644 index a75fff864850..000000000000 --- a/src/chrome/content/rules/IGN-problematic.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/IGN.xml b/src/chrome/content/rules/IGN.xml index d40db0b4eb19..1e231ada7fd5 100644 --- a/src/chrome/content/rules/IGN.xml +++ b/src/chrome/content/rules/IGN.xml @@ -1,127 +1,69 @@ - - + + + + - + + + + + + + + + + + + + + + - - - + + + + + + + + + + + + - + + - + + diff --git a/src/chrome/content/rules/IGNUM.xml b/src/chrome/content/rules/IGNUM.xml index 0a0a7fc03638..139cdccdf288 100644 --- a/src/chrome/content/rules/IGNUM.xml +++ b/src/chrome/content/rules/IGNUM.xml @@ -15,7 +15,7 @@ - + - + - - - - + + + + diff --git a/src/chrome/content/rules/IGaming.xml b/src/chrome/content/rules/IGaming.xml index 7186667f0ba5..d404408ba8dd 100644 --- a/src/chrome/content/rules/IGaming.xml +++ b/src/chrome/content/rules/IGaming.xml @@ -1,21 +1,20 @@ - + + - - + + + - + - - + diff --git a/src/chrome/content/rules/IGoDigital.com.xml b/src/chrome/content/rules/IGoDigital.com.xml deleted file mode 100644 index d47b25b1fcf3..000000000000 --- a/src/chrome/content/rules/IGoDigital.com.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/IGrasp.xml b/src/chrome/content/rules/IGrasp.xml index 255bfbd0b01a..31e04ccfe453 100644 --- a/src/chrome/content/rules/IGrasp.xml +++ b/src/chrome/content/rules/IGrasp.xml @@ -3,10 +3,10 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/IHG_Merlin.com.xml b/src/chrome/content/rules/IHG_Merlin.com.xml index 084cb8aaf9ce..957377b3566d 100644 --- a/src/chrome/content/rules/IHG_Merlin.com.xml +++ b/src/chrome/content/rules/IHG_Merlin.com.xml @@ -29,7 +29,12 @@ Fetch error: http://ihgmerlin.com/ => https://ihgmerlin.com/: (60, 'SSL certific - + + + + + + @@ -68,4 +70,5 @@ + diff --git a/src/chrome/content/rules/IIPVV.nl.xml b/src/chrome/content/rules/IIPVV.nl.xml index 9c98d2b9ab89..88b203e0eb40 100644 --- a/src/chrome/content/rules/IIPVV.nl.xml +++ b/src/chrome/content/rules/IIPVV.nl.xml @@ -5,7 +5,7 @@ Fetch error: http://iipvv.nl/ => https://iipvv.nl/: (51, "SSL: no alternative ce Fetch error: http://www.iipvv.nl/ => https://www.iipvv.nl/: (51, "SSL: no alternative certificate subject name matches target host name 'www.iipvv.nl'") --> - + diff --git a/src/chrome/content/rules/IIS.net.xml b/src/chrome/content/rules/IIS.net.xml deleted file mode 100644 index fcc102e379e1..000000000000 --- a/src/chrome/content/rules/IIS.net.xml +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/IISP.org.xml b/src/chrome/content/rules/IISP.org.xml index b51bb7583150..b7bcf6666baa 100644 --- a/src/chrome/content/rules/IISP.org.xml +++ b/src/chrome/content/rules/IISP.org.xml @@ -11,13 +11,13 @@ - + + - + diff --git a/src/chrome/content/rules/IITBooks.co.in.xml b/src/chrome/content/rules/IITBooks.co.in.xml new file mode 100644 index 000000000000..e197d058d18c --- /dev/null +++ b/src/chrome/content/rules/IITBooks.co.in.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/IJM_Freedom_Maker.xml b/src/chrome/content/rules/IJM_Freedom_Maker.xml deleted file mode 100644 index 770c68cd4dbd..000000000000 --- a/src/chrome/content/rules/IJM_Freedom_Maker.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/IJReview.com-falsemixed.xml b/src/chrome/content/rules/IJReview.com-falsemixed.xml deleted file mode 100644 index ec7be8d701a4..000000000000 --- a/src/chrome/content/rules/IJReview.com-falsemixed.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/IKSR.org.xml b/src/chrome/content/rules/IKSR.org.xml new file mode 100644 index 000000000000..8a8075221f5d --- /dev/null +++ b/src/chrome/content/rules/IKSR.org.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/IKeepinCloud.com.xml b/src/chrome/content/rules/IKeepinCloud.com.xml deleted file mode 100644 index c337b0d00992..000000000000 --- a/src/chrome/content/rules/IKeepinCloud.com.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/IKoruna.xml b/src/chrome/content/rules/IKoruna.xml index 0e317b2de167..c4acffdd4f8b 100644 --- a/src/chrome/content/rules/IKoruna.xml +++ b/src/chrome/content/rules/IKoruna.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://i-koruna.com/ => https://i-koruna.com/: (35, 'error:140770FC:SSL routines:SSL23_GET_SERVER_HELLO:unknown protocol') Fetch error: http://www.i-koruna.com/ => https://www.i-koruna.com/: (6, 'Could not resolve host: www.i-koruna.com') --> - + @@ -19,4 +19,4 @@ Fetch error: http://www.i-koruna.com/ => https://www.i-koruna.com/: (6, 'Could n - \ No newline at end of file + diff --git a/src/chrome/content/rules/ILO.org.xml b/src/chrome/content/rules/ILO.org.xml index 7d06a135c626..c058b669fb30 100644 --- a/src/chrome/content/rules/ILO.org.xml +++ b/src/chrome/content/rules/ILO.org.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.ilo.org/ => https://www.ilo.org/: Cycle detected - URL already encountered: https://www.ilo.org/global/lang- -en/index.htm Fetch error: http://ilo.org/ => https://www.ilo.org/: Cycle detected - URL already encountered: https://www.ilo.org/global/lang- -en/index.htm --> - + diff --git a/src/chrome/content/rules/ILX_Group.com.xml b/src/chrome/content/rules/ILX_Group.com.xml index ef57cb17f0ad..54b9c8c6d15c 100644 --- a/src/chrome/content/rules/ILX_Group.com.xml +++ b/src/chrome/content/rules/ILX_Group.com.xml @@ -49,7 +49,7 @@ --> - + + + + + + + + + + diff --git a/src/chrome/content/rules/ILogo.xml b/src/chrome/content/rules/ILogo.xml index 55799d860690..85e356aabbf6 100644 --- a/src/chrome/content/rules/ILogo.xml +++ b/src/chrome/content/rules/ILogo.xml @@ -4,9 +4,9 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/IMANCentral.org.xml b/src/chrome/content/rules/IMANCentral.org.xml index 62b9b1f8590a..f055af3dd9d7 100644 --- a/src/chrome/content/rules/IMANCentral.org.xml +++ b/src/chrome/content/rules/IMANCentral.org.xml @@ -3,9 +3,11 @@ - action.imancentral.org --> - + + + diff --git a/src/chrome/content/rules/IMDB.xml b/src/chrome/content/rules/IMDB.xml index 548f83e6a99c..4678becbba54 100644 --- a/src/chrome/content/rules/IMDB.xml +++ b/src/chrome/content/rules/IMDB.xml @@ -1,17 +1,17 @@ - - - - - - - - - + + diff --git a/src/chrome/content/rules/IMGrind.com.xml b/src/chrome/content/rules/IMGrind.com.xml index 3ab9db852333..823f2e7fbd8c 100644 --- a/src/chrome/content/rules/IMGrind.com.xml +++ b/src/chrome/content/rules/IMGrind.com.xml @@ -13,7 +13,7 @@ Fetch error: http://www.imgrind.com/ => https://www.imgrind.com/: (28, 'Connecti * Secured by us --> - + diff --git a/src/chrome/content/rules/IMSLP.xml b/src/chrome/content/rules/IMSLP.xml new file mode 100644 index 000000000000..79826f74d7ff --- /dev/null +++ b/src/chrome/content/rules/IMSLP.xml @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/IMedia-Communications.xml b/src/chrome/content/rules/IMedia-Communications.xml index 3280a0c40b97..c2398fbebc00 100644 --- a/src/chrome/content/rules/IMedia-Communications.xml +++ b/src/chrome/content/rules/IMedia-Communications.xml @@ -6,7 +6,7 @@ - + - + + - - - - - - + diff --git a/src/chrome/content/rules/INDURE.xml b/src/chrome/content/rules/INDURE.xml index f33588547865..2ff45a4439ab 100644 --- a/src/chrome/content/rules/INDURE.xml +++ b/src/chrome/content/rules/INDURE.xml @@ -9,7 +9,7 @@ Fetch error: http://www.indure.org/ => https://www.indure.org/: (51, "SSL: no al !www doesn't exist. --> - + @@ -17,7 +17,6 @@ Fetch error: http://www.indure.org/ => https://www.indure.org/: (51, "SSL: no al - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/INFN.it.xml b/src/chrome/content/rules/INFN.it.xml index 4878c9be09eb..289ce7c3d930 100644 --- a/src/chrome/content/rules/INFN.it.xml +++ b/src/chrome/content/rules/INFN.it.xml @@ -20,7 +20,7 @@ Fetch error: http://www.lnf.infn.it/ => https://www.lnf.infn.it/: Too many redir - edu.lnf ¹ - scienzapertutti.lnf ¹ - - w3.lnf ¹ + - w3.lnf ¹ - sperimentando.lnl ³ - trasparenza ⁴ @@ -91,7 +91,7 @@ Fetch error: http://www.lnf.infn.it/ => https://www.lnf.infn.it/: Too many redir * Secured by us --> - + @@ -118,8 +118,8 @@ Fetch error: http://www.lnf.infn.it/ => https://www.lnf.infn.it/: Too many redir - - + + diff --git a/src/chrome/content/rules/ING-Direct.xml b/src/chrome/content/rules/ING-Direct.xml index 9fb431184dbf..7e1f0faf0156 100644 --- a/src/chrome/content/rules/ING-Direct.xml +++ b/src/chrome/content/rules/ING-Direct.xml @@ -10,16 +10,20 @@ Fetch error: http://ingdirect.com/ => https://www.ingdirect.com/: (60, 'SSL cert - cafes.ingdirect.com (cert: 217569-2.217569-2.com, self-signed; shows RHEL Apache test page) --> - + - + + + + + - - + + + diff --git a/src/chrome/content/rules/INPS.it.xml b/src/chrome/content/rules/INPS.it.xml index 46f0d64a4aa6..944dae76a34d 100644 --- a/src/chrome/content/rules/INPS.it.xml +++ b/src/chrome/content/rules/INPS.it.xml @@ -9,7 +9,7 @@ - + + + + + + + + + + + diff --git a/src/chrome/content/rules/INSA-Lyon.fr.xml b/src/chrome/content/rules/INSA-Lyon.fr.xml index dbcb7305b8a5..11e6097b8f03 100644 --- a/src/chrome/content/rules/INSA-Lyon.fr.xml +++ b/src/chrome/content/rules/INSA-Lyon.fr.xml @@ -57,7 +57,7 @@ - + - - - - - - - - diff --git a/src/chrome/content/rules/INaturalist.org.xml b/src/chrome/content/rules/INaturalist.org.xml index 71fb027e5158..76792e1c0b07 100644 --- a/src/chrome/content/rules/INaturalist.org.xml +++ b/src/chrome/content/rules/INaturalist.org.xml @@ -1,35 +1,29 @@ - - + + + + - - - diff --git a/src/chrome/content/rules/INet-Interactive.xml b/src/chrome/content/rules/INet-Interactive.xml index 724748a5e208..a4a7b4d2fc0b 100644 --- a/src/chrome/content/rules/INet-Interactive.xml +++ b/src/chrome/content/rules/INet-Interactive.xml @@ -5,16 +5,13 @@ Fetch error: http://inetinteractive.com/ => https://inetinteractive.com/: (51, " Other iNet Interactive rulesets: - - ABestWeb.com.xml - AFCOM.com.xml - DataCenterKnowledge.com.xml - Data_Center_World.com.xml - DBforums.xml - - Hosting_Catalog.com.xml - HostingCon.xml - Host_Voice.com.xml - Hot_Scripts.com.xml - - Overclockers.xml - Web-Hosting-Talk.xml - Windows_Secrets.com.xml @@ -33,7 +30,7 @@ Fetch error: http://inetinteractive.com/ => https://inetinteractive.com/: (51, " * Secured by us --> - + diff --git a/src/chrome/content/rules/IOCCC.org.xml b/src/chrome/content/rules/IOCCC.org.xml index 98dd76739f3e..c5236f061fd3 100644 --- a/src/chrome/content/rules/IOCCC.org.xml +++ b/src/chrome/content/rules/IOCCC.org.xml @@ -1,18 +1,9 @@ - - + + + + - - - \ No newline at end of file + diff --git a/src/chrome/content/rules/IOLProperty.co.za.xml b/src/chrome/content/rules/IOLProperty.co.za.xml index 5734530bfaaf..f61222248f6d 100644 --- a/src/chrome/content/rules/IOLProperty.co.za.xml +++ b/src/chrome/content/rules/IOLProperty.co.za.xml @@ -23,4 +23,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/ION-Audio.xml b/src/chrome/content/rules/ION-Audio.xml deleted file mode 100644 index 65344619c750..000000000000 --- a/src/chrome/content/rules/ION-Audio.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/IONAudio.com.xml b/src/chrome/content/rules/IONAudio.com.xml new file mode 100644 index 000000000000..a439e9d65052 --- /dev/null +++ b/src/chrome/content/rules/IONAudio.com.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/IOPLEX_Software.xml b/src/chrome/content/rules/IOPLEX_Software.xml index 9fc2268008f6..322860064544 100644 --- a/src/chrome/content/rules/IOPLEX_Software.xml +++ b/src/chrome/content/rules/IOPLEX_Software.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/IOSCO.org.xml b/src/chrome/content/rules/IOSCO.org.xml index d5cea9192483..2a6c3069417e 100644 --- a/src/chrome/content/rules/IOSCO.org.xml +++ b/src/chrome/content/rules/IOSCO.org.xml @@ -22,7 +22,7 @@ - + - - - - - - - - - - diff --git a/src/chrome/content/rules/IPAC.global.xml b/src/chrome/content/rules/IPAC.global.xml new file mode 100644 index 000000000000..9a9ea03ba9fa --- /dev/null +++ b/src/chrome/content/rules/IPAC.global.xml @@ -0,0 +1,15 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/IPAddressLabs.com.xml b/src/chrome/content/rules/IPAddressLabs.com.xml index e8a876f3355e..1cc11854a21e 100644 --- a/src/chrome/content/rules/IPAddressLabs.com.xml +++ b/src/chrome/content/rules/IPAddressLabs.com.xml @@ -11,10 +11,12 @@ Fetch error: http://ipaddresslabs.com/ => http://ipaddresslabs.com/: (6, 'Could Some pages redirect to http. --> - + - + + + - \ No newline at end of file + diff --git a/src/chrome/content/rules/IPONWEB.xml b/src/chrome/content/rules/IPONWEB.xml index 8873b5bdf30b..b3c280322cc6 100644 --- a/src/chrome/content/rules/IPONWEB.xml +++ b/src/chrome/content/rules/IPONWEB.xml @@ -26,7 +26,7 @@ --> - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/IPR_Software.com.xml b/src/chrome/content/rules/IPR_Software.com.xml index 07900d79bf77..03d3c822f38d 100644 --- a/src/chrome/content/rules/IPR_Software.com.xml +++ b/src/chrome/content/rules/IPR_Software.com.xml @@ -1,36 +1,16 @@ - - - - + - - - - - - - - - - - - - - - + - + + diff --git a/src/chrome/content/rules/IPVanish.com.xml b/src/chrome/content/rules/IPVanish.com.xml index cd7aeedc423b..f831a61fd28b 100644 --- a/src/chrome/content/rules/IPVanish.com.xml +++ b/src/chrome/content/rules/IPVanish.com.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://forum.ipvanish.com/ => https://forum.ipvanish.com/: (28, 'Connection timed out after 20001 milliseconds') --> - + diff --git a/src/chrome/content/rules/IPXE.org.xml b/src/chrome/content/rules/IPXE.org.xml index 76fef138b5bc..3df97daaf0d0 100644 --- a/src/chrome/content/rules/IPXE.org.xml +++ b/src/chrome/content/rules/IPXE.org.xml @@ -24,14 +24,15 @@ - + + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/IP_check.xml b/src/chrome/content/rules/IP_check.xml index 4233dbca9558..48328c54bd7b 100644 --- a/src/chrome/content/rules/IP_check.xml +++ b/src/chrome/content/rules/IP_check.xml @@ -14,4 +14,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/IPredator.xml b/src/chrome/content/rules/IPredator.xml index 7df9d83fe051..20d6c3371be7 100644 --- a/src/chrome/content/rules/IPredator.xml +++ b/src/chrome/content/rules/IPredator.xml @@ -12,7 +12,7 @@ Fetch error: http://beta.ipredator.se/ => https://beta.ipredator.se/: (7, 'Faile ³ Untrusted root --> - + @@ -20,7 +20,7 @@ Fetch error: http://beta.ipredator.se/ => https://beta.ipredator.se/: (7, 'Faile - + https://www.iproduction.com/: (60, 'SSL - cdn (403; mismatched, CN: *.pantherssl.com) --> - + - + + @@ -21,4 +22,4 @@ Fetch error: http://iproduction.com/ => https://www.iproduction.com/: (60, 'SSL - \ No newline at end of file + diff --git a/src/chrome/content/rules/IPv6Forum.com.xml b/src/chrome/content/rules/IPv6Forum.com.xml new file mode 100644 index 000000000000..535ffd6179e7 --- /dev/null +++ b/src/chrome/content/rules/IPv6Forum.com.xml @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/IPython.org.xml b/src/chrome/content/rules/IPython.org.xml index a3fa213cfcdd..53e9c33ff6a2 100644 --- a/src/chrome/content/rules/IPython.org.xml +++ b/src/chrome/content/rules/IPython.org.xml @@ -15,7 +15,7 @@ - + - + diff --git a/src/chrome/content/rules/IRIS.edu.xml b/src/chrome/content/rules/IRIS.edu.xml new file mode 100644 index 000000000000..d0e782addef0 --- /dev/null +++ b/src/chrome/content/rules/IRIS.edu.xml @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/IRISA.net.xml b/src/chrome/content/rules/IRISA.net.xml index c6488ab39e89..58bc3ce17c09 100644 --- a/src/chrome/content/rules/IRISA.net.xml +++ b/src/chrome/content/rules/IRISA.net.xml @@ -18,7 +18,7 @@ - + https://www.ironsearch.com/: Cycle detect - ^ (mismatched, CN: secure.ironsearch.com) --> - + - + + - + diff --git a/src/chrome/content/rules/IRON_Solutions.xml b/src/chrome/content/rules/IRON_Solutions.xml index d947eb607d11..3d53bb015a11 100644 --- a/src/chrome/content/rules/IRON_Solutions.xml +++ b/src/chrome/content/rules/IRON_Solutions.xml @@ -16,4 +16,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/IRS.gov.xml b/src/chrome/content/rules/IRS.gov.xml index 2580f2caad77..ff2f043d808c 100644 --- a/src/chrome/content/rules/IRS.gov.xml +++ b/src/chrome/content/rules/IRS.gov.xml @@ -22,7 +22,7 @@ - + - - - - - - - - - diff --git a/src/chrome/content/rules/ISC.xml b/src/chrome/content/rules/ISC.xml index 835b40c4e9d7..e1bc1bfd30a9 100644 --- a/src/chrome/content/rules/ISC.xml +++ b/src/chrome/content/rules/ISC.xml @@ -18,7 +18,7 @@ Fetch error: http://store.isc.org/ => https://store.isc.org/: (6, 'Could not res * Secured by us --> - + @@ -40,7 +40,7 @@ Fetch error: http://store.isc.org/ => https://store.isc.org/: (6, 'Could not res --> - + https://www.isc2cares.org/: (60, 'SSL ^: cert only matches www --> - + diff --git a/src/chrome/content/rules/ISEC-Partners.xml b/src/chrome/content/rules/ISEC-Partners.xml index 3a950fe4c9f8..85858bc2070c 100644 --- a/src/chrome/content/rules/ISEC-Partners.xml +++ b/src/chrome/content/rules/ISEC-Partners.xml @@ -4,14 +4,14 @@ Disabled by https-everywhere-checker because: Fetch error: http://labs.isecpartners.com/ => https://labs.isecpartners.com/: (28, 'Connection timed out after 20001 milliseconds') --> - + - + diff --git a/src/chrome/content/rules/ISLAMODECO.fr.xml b/src/chrome/content/rules/ISLAMODECO.fr.xml new file mode 100644 index 000000000000..7328225efd33 --- /dev/null +++ b/src/chrome/content/rules/ISLAMODECO.fr.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/ISOC.org.xml b/src/chrome/content/rules/ISOC.org.xml index 8b30149c568a..c65625c9e4f1 100644 --- a/src/chrome/content/rules/ISOC.org.xml +++ b/src/chrome/content/rules/ISOC.org.xml @@ -3,7 +3,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://ws.edu.isoc.org/ => https://ws.edu.isoc.org/: (60, 'SSL certificate problem: certificate has expired') - For other Internet Society overage, see Internet-Society.xml. + For other Internet Society overage, see InternetSociety.org.xml. Insecure cookies are set for these hosts: @@ -19,7 +19,7 @@ Fetch error: http://ws.edu.isoc.org/ => https://ws.edu.isoc.org/: (60, 'SSL cert * Secure by us --> - + @@ -34,7 +34,7 @@ Fetch error: http://ws.edu.isoc.org/ => https://ws.edu.isoc.org/: (60, 'SSL cert - + - + https://crm.it-agenten.com/: (60, 'SS Fetch error: http://www.it-agenten.com/ => https://www.it-agenten.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.it-agenten.com'") --> - + diff --git a/src/chrome/content/rules/IT-Cube_Systems.xml b/src/chrome/content/rules/IT-Cube_Systems.xml index 31e252a793de..14450b1a28ef 100644 --- a/src/chrome/content/rules/IT-Cube_Systems.xml +++ b/src/chrome/content/rules/IT-Cube_Systems.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/IT-Offshore.co.uk.xml b/src/chrome/content/rules/IT-Offshore.co.uk.xml index d6d50801d68c..42f8d29cfb16 100644 --- a/src/chrome/content/rules/IT-Offshore.co.uk.xml +++ b/src/chrome/content/rules/IT-Offshore.co.uk.xml @@ -6,7 +6,7 @@ - + - + - - - - - - - + + + + + + diff --git a/src/chrome/content/rules/ITManie.cz.xml b/src/chrome/content/rules/ITManie.cz.xml deleted file mode 100644 index 2f4303b1276d..000000000000 --- a/src/chrome/content/rules/ITManie.cz.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/ITPC.xml b/src/chrome/content/rules/ITPC.xml index ea8d43f8fba1..e1aec87dd272 100644 --- a/src/chrome/content/rules/ITPC.xml +++ b/src/chrome/content/rules/ITPC.xml @@ -22,7 +22,7 @@ --> - + diff --git a/src/chrome/content/rules/ITSPA.org.uk.xml b/src/chrome/content/rules/ITSPA.org.uk.xml index 7bd0dcf3d9a9..5b9861453b4d 100644 --- a/src/chrome/content/rules/ITSPA.org.uk.xml +++ b/src/chrome/content/rules/ITSPA.org.uk.xml @@ -19,7 +19,7 @@ Fetch error: http://www.itspa.org.uk/ => https://www.itspa.org.uk/: (60, 'SSL ce * Secured by us --> - + diff --git a/src/chrome/content/rules/ITU.xml b/src/chrome/content/rules/ITU.xml index 4c9f1c4692ad..b9088656915a 100644 --- a/src/chrome/content/rules/ITU.xml +++ b/src/chrome/content/rules/ITU.xml @@ -13,7 +13,9 @@ - + + + @@ -25,4 +27,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/ITWeb.co.za.xml b/src/chrome/content/rules/ITWeb.co.za.xml deleted file mode 100644 index f1d95b3180c3..000000000000 --- a/src/chrome/content/rules/ITWeb.co.za.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/ITX.com.xml b/src/chrome/content/rules/ITX.com.xml index 0f0fdfdeb8bd..078e6f781393 100644 --- a/src/chrome/content/rules/ITX.com.xml +++ b/src/chrome/content/rules/ITX.com.xml @@ -19,7 +19,7 @@ - + - + + - - - + diff --git a/src/chrome/content/rules/IT_bookshelf.com.xml b/src/chrome/content/rules/IT_bookshelf.com.xml index 1fbfb58fbf4b..09f59d4eec6e 100644 --- a/src/chrome/content/rules/IT_bookshelf.com.xml +++ b/src/chrome/content/rules/IT_bookshelf.com.xml @@ -22,7 +22,7 @@ --> - + - + + + + + + + + + diff --git a/src/chrome/content/rules/IUCNredlist.org.xml b/src/chrome/content/rules/IUCNredlist.org.xml deleted file mode 100644 index 8074c7d4e8aa..000000000000 --- a/src/chrome/content/rules/IUCNredlist.org.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/IUHealth.org.xml b/src/chrome/content/rules/IUHealth.org.xml index 05b4dfd914eb..8e2bceb32d91 100644 --- a/src/chrome/content/rules/IUHealth.org.xml +++ b/src/chrome/content/rules/IUHealth.org.xml @@ -6,7 +6,7 @@ - + - + @@ -25,7 +25,6 @@ - + diff --git a/src/chrome/content/rules/IVPN.net.xml b/src/chrome/content/rules/IVPN.net.xml index 2aafe5c1569b..f83e5e356fd9 100644 --- a/src/chrome/content/rules/IVPN.net.xml +++ b/src/chrome/content/rules/IVPN.net.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://static.ivpn.net/ => https://static.ivpn.net/: (6, 'Could not resolve host: static.ivpn.net') --> - + diff --git a/src/chrome/content/rules/IVW.xml b/src/chrome/content/rules/IVW.xml index 78cb36c0fe26..c0959988202e 100644 --- a/src/chrome/content/rules/IVW.xml +++ b/src/chrome/content/rules/IVW.xml @@ -6,7 +6,7 @@ - www (shows heft) * Mismatched, CN: heft.ivw.eu - + --> @@ -20,4 +20,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/IWM_Network.com.xml b/src/chrome/content/rules/IWM_Network.com.xml index a9bd23e4a6e0..48e51a3872db 100644 --- a/src/chrome/content/rules/IWM_Network.com.xml +++ b/src/chrome/content/rules/IWM_Network.com.xml @@ -1,10 +1,10 @@ - + - + diff --git a/src/chrome/content/rules/IWOWCase.xml b/src/chrome/content/rules/IWOWCase.xml deleted file mode 100644 index 2791776fe87e..000000000000 --- a/src/chrome/content/rules/IWOWCase.xml +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/IWPR.net.xml b/src/chrome/content/rules/IWPR.net.xml new file mode 100644 index 000000000000..8907d3e7169a --- /dev/null +++ b/src/chrome/content/rules/IWPR.net.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/IWeb.com.xml b/src/chrome/content/rules/IWeb.com.xml index 3b21a35092d2..5b5b021bbecf 100644 --- a/src/chrome/content/rules/IWeb.com.xml +++ b/src/chrome/content/rules/IWeb.com.xml @@ -4,7 +4,7 @@ Nonfunctional hosts in *iweb.com: - - blog + - blog - carrieres ² ¹ Redirects to http diff --git a/src/chrome/content/rules/IWebReader.xml b/src/chrome/content/rules/IWebReader.xml index ea9e1b111590..0ababfc262d6 100644 --- a/src/chrome/content/rules/IWebReader.xml +++ b/src/chrome/content/rules/IWebReader.xml @@ -13,13 +13,13 @@ --> - + + - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/IWight.com.xml b/src/chrome/content/rules/IWight.com.xml index 099752d5a34f..063806ad6718 100644 --- a/src/chrome/content/rules/IWight.com.xml +++ b/src/chrome/content/rules/IWight.com.xml @@ -10,7 +10,7 @@ - + https://www.iwoulddo.it/: (60, 'SSL certific * Mismatched --> - + diff --git a/src/chrome/content/rules/IXI.xml b/src/chrome/content/rules/IXI.xml index cff4ee45b529..c222abd4e932 100644 --- a/src/chrome/content/rules/IXI.xml +++ b/src/chrome/content/rules/IXI.xml @@ -6,7 +6,7 @@ Fetch error: http://s.ixiaa.com/ => https://s.ixiaa.com/: (60, 'SSL certificate For problematic rules, see IXI-mismatches.xml. --> - + diff --git a/src/chrome/content/rules/IXit.cz.xml b/src/chrome/content/rules/IXit.cz.xml deleted file mode 100644 index 2f563f0f0944..000000000000 --- a/src/chrome/content/rules/IXit.cz.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/IXsystems.xml b/src/chrome/content/rules/IXsystems.xml index 00211fc97985..254df918eea2 100644 --- a/src/chrome/content/rules/IXsystems.xml +++ b/src/chrome/content/rules/IXsystems.xml @@ -21,7 +21,7 @@ --> - + https://iyouport.com/: (28, 'Connection tim Fetch error: http://www.iyouport.com/ => https://www.iyouport.com/: (28, 'Connection timed out after 20000 milliseconds') --> - + diff --git a/src/chrome/content/rules/I_Am_The_Cavalry.org.xml b/src/chrome/content/rules/I_Am_The_Cavalry.org.xml index e986628c7aa8..3c4d2b4e73c1 100644 --- a/src/chrome/content/rules/I_Am_The_Cavalry.org.xml +++ b/src/chrome/content/rules/I_Am_The_Cavalry.org.xml @@ -4,7 +4,7 @@ - + - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/I_Give_Online.com.xml b/src/chrome/content/rules/I_Give_Online.com.xml index d83aedf967db..a218ecde61b0 100644 --- a/src/chrome/content/rules/I_Give_Online.com.xml +++ b/src/chrome/content/rules/I_Give_Online.com.xml @@ -4,7 +4,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/I_Want_U.xml b/src/chrome/content/rules/I_Want_U.xml deleted file mode 100644 index 8d096fbd9b9e..000000000000 --- a/src/chrome/content/rules/I_Want_U.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/I_love_Freegle.org.xml b/src/chrome/content/rules/I_love_Freegle.org.xml index 01cc701a2f4c..26595543fd66 100644 --- a/src/chrome/content/rules/I_love_Freegle.org.xml +++ b/src/chrome/content/rules/I_love_Freegle.org.xml @@ -25,7 +25,7 @@ Fetch error: http://shared.ilovefreegle.org/ => https://shared.ilovefreegle.org/ - mm from www.w3.org --> - + diff --git a/src/chrome/content/rules/I_love_blue_sea.com.xml b/src/chrome/content/rules/I_love_blue_sea.com.xml index b7fa125eeaa0..6f74c3b321b0 100644 --- a/src/chrome/content/rules/I_love_blue_sea.com.xml +++ b/src/chrome/content/rules/I_love_blue_sea.com.xml @@ -13,7 +13,7 @@ Fetch error: http://ilovebluesea.com/ => https://ilovebluesea.com/: (35, 'Unknow * Secured by us --> - + diff --git a/src/chrome/content/rules/Iamnoone-solutions.net.xml b/src/chrome/content/rules/Iamnoone-solutions.net.xml deleted file mode 100644 index e9b5b14e238e..000000000000 --- a/src/chrome/content/rules/Iamnoone-solutions.net.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Ian.com.xml b/src/chrome/content/rules/Ian.com.xml deleted file mode 100644 index 81af884a2604..000000000000 --- a/src/chrome/content/rules/Ian.com.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Iberdrola.xml b/src/chrome/content/rules/Iberdrola.xml index 90dbac591f8b..bcb94b97fd6a 100644 --- a/src/chrome/content/rules/Iberdrola.xml +++ b/src/chrome/content/rules/Iberdrola.xml @@ -12,7 +12,7 @@ - + diff --git a/src/chrome/content/rules/Iberia.xml b/src/chrome/content/rules/Iberia.xml index c49fa02d1b2b..2fb302ee83b8 100644 --- a/src/chrome/content/rules/Iberia.xml +++ b/src/chrome/content/rules/Iberia.xml @@ -6,10 +6,10 @@ Fetch error: http://iberia.com/ => https://iberia.com/: (60, 'SSL certificate pr Disabled by https-everywhere-checker because: Fetch error: http://iberia.com/ => https://iberia.com/: (28, 'Operation timed out after 0 milliseconds with 0 out of 0 bytes received') --> - + - + diff --git a/src/chrome/content/rules/Iberiabank.xml b/src/chrome/content/rules/Iberiabank.xml index 8600b9fbc680..80f5ff9f42bd 100644 --- a/src/chrome/content/rules/Iberiabank.xml +++ b/src/chrome/content/rules/Iberiabank.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Ibibo.com.xml b/src/chrome/content/rules/Ibibo.com.xml index a6775da6035a..1ad8813ac98f 100644 --- a/src/chrome/content/rules/Ibibo.com.xml +++ b/src/chrome/content/rules/Ibibo.com.xml @@ -11,12 +11,11 @@ Fetch error: http://ads.ibibo.com/ => https://ads.ibibo.com/: (6, 'Could not res * Refused --> - + - + diff --git a/src/chrome/content/rules/Ibiza-Rocks.xml b/src/chrome/content/rules/Ibiza-Rocks.xml index c6cbe25a98fa..2a89657faeac 100644 --- a/src/chrome/content/rules/Ibiza-Rocks.xml +++ b/src/chrome/content/rules/Ibiza-Rocks.xml @@ -5,16 +5,15 @@ Fetch error: http://bookings.ibizarocks.com/ => https://bookings.ibizarocks.com/ Fetch error: http://mrh.ibizarocks.com/ => https://mrh.ibizarocks.com/: (6, 'Could not resolve host: mrh.ibizarocks.com') --> - + - + - + diff --git a/src/chrome/content/rules/IbnouTaymiyya.com.xml b/src/chrome/content/rules/IbnouTaymiyya.com.xml new file mode 100644 index 000000000000..81c58f5d33a5 --- /dev/null +++ b/src/chrome/content/rules/IbnouTaymiyya.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Ibqonline.com.xml b/src/chrome/content/rules/Ibqonline.com.xml deleted file mode 100644 index 3803aee65615..000000000000 --- a/src/chrome/content/rules/Ibqonline.com.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Ibs.sberbank.sk.xml b/src/chrome/content/rules/Ibs.sberbank.sk.xml deleted file mode 100644 index fa1df68f72a2..000000000000 --- a/src/chrome/content/rules/Ibs.sberbank.sk.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/chrome/content/rules/Ibtracking.com.xml b/src/chrome/content/rules/Ibtracking.com.xml index 6ff1c7abc3aa..b8dc2139d3cc 100644 --- a/src/chrome/content/rules/Ibtracking.com.xml +++ b/src/chrome/content/rules/Ibtracking.com.xml @@ -15,7 +15,7 @@ --> - + - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Icculus.org.xml b/src/chrome/content/rules/Icculus.org.xml new file mode 100644 index 000000000000..988d3653fe1e --- /dev/null +++ b/src/chrome/content/rules/Icculus.org.xml @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Icculus.xml b/src/chrome/content/rules/Icculus.xml deleted file mode 100644 index 615566e12f90..000000000000 --- a/src/chrome/content/rules/Icculus.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/Ice-WM.org.xml b/src/chrome/content/rules/Ice-WM.org.xml new file mode 100644 index 000000000000..c13ef2439a9b --- /dev/null +++ b/src/chrome/content/rules/Ice-WM.org.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/IceDivX.com.xml b/src/chrome/content/rules/IceDivX.com.xml deleted file mode 100644 index 36af4287c52a..000000000000 --- a/src/chrome/content/rules/IceDivX.com.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/IceFilms.info.xml b/src/chrome/content/rules/IceFilms.info.xml deleted file mode 100644 index bbda466de389..000000000000 --- a/src/chrome/content/rules/IceFilms.info.xml +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/IceWarp.com.xml b/src/chrome/content/rules/IceWarp.com.xml index 9f3afbcb0663..923a36552644 100644 --- a/src/chrome/content/rules/IceWarp.com.xml +++ b/src/chrome/content/rules/IceWarp.com.xml @@ -50,7 +50,7 @@ Fetch error: http://www.icewarp.com/ => https://www.icewarp.com/: (60, 'SSL cert ² Unsecurable <= refused --> - + diff --git a/src/chrome/content/rules/Icecast.org.xml b/src/chrome/content/rules/Icecast.org.xml new file mode 100644 index 000000000000..b1337b88b089 --- /dev/null +++ b/src/chrome/content/rules/Icecast.org.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Icecat.xml b/src/chrome/content/rules/Icecat.xml index 92c2dc676d65..30b69a6ae35e 100644 --- a/src/chrome/content/rules/Icecat.xml +++ b/src/chrome/content/rules/Icecat.xml @@ -33,7 +33,7 @@ - www.icecat.biz - .www.icecat.biz - Off due to continuous reloading as reported in + Off due to continuous reloading as reported in https://github.com/EFForg/https-everywhere/issues/1711 --> diff --git a/src/chrome/content/rules/Icehost.is.xml b/src/chrome/content/rules/Icehost.is.xml index 0152d2b193fd..f2a9c51b9599 100644 --- a/src/chrome/content/rules/Icehost.is.xml +++ b/src/chrome/content/rules/Icehost.is.xml @@ -1,31 +1,13 @@ - - - - + + - - + diff --git a/src/chrome/content/rules/Iceleads.com.xml b/src/chrome/content/rules/Iceleads.com.xml index 50aeeb860a4f..2c2d21b97f83 100644 --- a/src/chrome/content/rules/Iceleads.com.xml +++ b/src/chrome/content/rules/Iceleads.com.xml @@ -6,7 +6,7 @@ - + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Iciciprulife.com.xml b/src/chrome/content/rules/Iciciprulife.com.xml index bcdb4a96e5c5..cacbd1a3ee91 100644 --- a/src/chrome/content/rules/Iciciprulife.com.xml +++ b/src/chrome/content/rules/Iciciprulife.com.xml @@ -15,7 +15,7 @@ Fetch error: http://documents.iciciprulife.com/ => https://documents.iciciprulif clickpss.iciciprulife.com --> - + diff --git a/src/chrome/content/rules/Icinga.xml b/src/chrome/content/rules/Icinga.xml index 9f6dba1d4198..674017e0af23 100644 --- a/src/chrome/content/rules/Icinga.xml +++ b/src/chrome/content/rules/Icinga.xml @@ -1,20 +1,41 @@ - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Icio.us.xml b/src/chrome/content/rules/Icio.us.xml index c0a32278df42..964596f40968 100644 --- a/src/chrome/content/rules/Icio.us.xml +++ b/src/chrome/content/rules/Icio.us.xml @@ -37,7 +37,7 @@ Fetch error: http://images.del.icio.us/ => https://api.del.icio.us/: (60, 'SSL c * See https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -55,7 +55,7 @@ Fetch error: http://images.del.icio.us/ => https://api.del.icio.us/: (60, 'SSL c --> - + https://flirt.icony.com/: (6, 'Could not Fetch error: http://jira.icony.com/ => https://jira.icony.com/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/Icsdelivery.com.xml b/src/chrome/content/rules/Icsdelivery.com.xml index 0b6a139b4282..ab6562f09ecb 100644 --- a/src/chrome/content/rules/Icsdelivery.com.xml +++ b/src/chrome/content/rules/Icsdelivery.com.xml @@ -13,7 +13,8 @@ - + + @@ -22,7 +23,6 @@ - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/IdQQimg.com.xml b/src/chrome/content/rules/IdQQimg.com.xml index 73c425ca8f95..941e80e69d0d 100644 --- a/src/chrome/content/rules/IdQQimg.com.xml +++ b/src/chrome/content/rules/IdQQimg.com.xml @@ -13,7 +13,7 @@ - + diff --git a/src/chrome/content/rules/Ida2at.com.xml b/src/chrome/content/rules/Ida2at.com.xml new file mode 100644 index 000000000000..bfe9f1e4dd94 --- /dev/null +++ b/src/chrome/content/rules/Ida2at.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/IdeaFit.com.xml b/src/chrome/content/rules/IdeaFit.com.xml new file mode 100644 index 000000000000..3cee8789d130 --- /dev/null +++ b/src/chrome/content/rules/IdeaFit.com.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Idea_Fit.com.xml b/src/chrome/content/rules/Idea_Fit.com.xml deleted file mode 100644 index 7961771ded0a..000000000000 --- a/src/chrome/content/rules/Idea_Fit.com.xml +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Idea_Stations.org.xml b/src/chrome/content/rules/Idea_Stations.org.xml index 8007dd8315ff..460e7b6c05cb 100644 --- a/src/chrome/content/rules/Idea_Stations.org.xml +++ b/src/chrome/content/rules/Idea_Stations.org.xml @@ -1,50 +1,6 @@ - - - - - + - - - - - - - - - - - - - - - - - - - - - - + diff --git a/src/chrome/content/rules/Idea_Storm.com.xml b/src/chrome/content/rules/Idea_Storm.com.xml deleted file mode 100644 index e97ac5118eeb..000000000000 --- a/src/chrome/content/rules/Idea_Storm.com.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Idealo.com.xml b/src/chrome/content/rules/Idealo.com.xml index 13fb0fad5412..1b7c1839427a 100644 --- a/src/chrome/content/rules/Idealo.com.xml +++ b/src/chrome/content/rules/Idealo.com.xml @@ -36,7 +36,7 @@ --> - + https://support.ideel.com/: (7, 'Faile - www.ideel.com --> - + diff --git a/src/chrome/content/rules/Ideenw3rk.de.xml b/src/chrome/content/rules/Ideenw3rk.de.xml new file mode 100644 index 000000000000..4aa1ff515d50 --- /dev/null +++ b/src/chrome/content/rules/Ideenw3rk.de.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Idefi.xml b/src/chrome/content/rules/Idefi.xml index 532913ff8510..fdea14b3eeee 100644 --- a/src/chrome/content/rules/Idefi.xml +++ b/src/chrome/content/rules/Idefi.xml @@ -11,7 +11,7 @@ Fetch error: http://idefimusic.com/ => https://idefimusic.com/: (28, 'Connection - production-idefi.s3.amazonaws.com --> - + @@ -22,4 +22,4 @@ Fetch error: http://idefimusic.com/ => https://idefimusic.com/: (28, 'Connection - \ No newline at end of file + diff --git a/src/chrome/content/rules/Idefix.xml b/src/chrome/content/rules/Idefix.xml index 422c35fcbd21..aacb4b4245b1 100644 --- a/src/chrome/content/rules/Idefix.xml +++ b/src/chrome/content/rules/Idefix.xml @@ -5,11 +5,11 @@ Fetch error: http://www.idefix.com/ => https://www.idefix.com/: Too many redirec Fetch error: http://idefix.com/ => https://www.idefix.com/: Too many redirects while fetching 'https://www.idefix.com/' --> - + - + diff --git a/src/chrome/content/rules/Identica.xml b/src/chrome/content/rules/Identica.xml index 1946c93a8130..1077fe83914e 100644 --- a/src/chrome/content/rules/Identica.xml +++ b/src/chrome/content/rules/Identica.xml @@ -7,7 +7,7 @@ Fetch error: http://files.status.net/ => https://files.status.net/: (6, 'Could n Disabled by https-everywhere-checker because: Fetch error: http://files.status.net/ => https://files.status.net/: (28, 'Connection timed out after 10001 milliseconds') --> - + @@ -19,11 +19,11 @@ Fetch error: http://files.status.net/ => https://files.status.net/: (28, 'Connec to="https://identi.ca/"/> - - + diff --git a/src/chrome/content/rules/Identity-Stronghold.xml b/src/chrome/content/rules/Identity-Stronghold.xml deleted file mode 100644 index 08e5bbc93905..000000000000 --- a/src/chrome/content/rules/Identity-Stronghold.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/IdentityTheft.xml b/src/chrome/content/rules/IdentityTheft.xml index 4cb3482d99b8..ee783898faef 100644 --- a/src/chrome/content/rules/IdentityTheft.xml +++ b/src/chrome/content/rules/IdentityTheft.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://identitytheft.org.uk/ => https://www.identitytheft.org.uk/: (7, 'Failed to connect to www.identitytheft.org.uk port 443: Connection refused') Fetch error: http://www.identitytheft.org.uk/ => https://www.identitytheft.org.uk/: (7, 'Failed to connect to www.identitytheft.org.uk port 443: Connection refused') --> - + diff --git a/src/chrome/content/rules/Identity_Workshop.eu.xml b/src/chrome/content/rules/Identity_Workshop.eu.xml index 3e74f68bb184..65e48132ef74 100644 --- a/src/chrome/content/rules/Identity_Workshop.eu.xml +++ b/src/chrome/content/rules/Identity_Workshop.eu.xml @@ -10,7 +10,7 @@ Fetch error: http://www.identityworkshop.eu/ => https://www.identityworkshop.eu/ - www.identityworkshop.eu --> - + diff --git a/src/chrome/content/rules/Idenyt.dk.xml b/src/chrome/content/rules/Idenyt.dk.xml index 84ef09f77131..c69ba3c80adf 100644 --- a/src/chrome/content/rules/Idenyt.dk.xml +++ b/src/chrome/content/rules/Idenyt.dk.xml @@ -1,20 +1,22 @@ - + + + + diff --git a/src/chrome/content/rules/IdeoClick.com.xml b/src/chrome/content/rules/IdeoClick.com.xml index 1150b6419a5b..442302be1ff1 100644 --- a/src/chrome/content/rules/IdeoClick.com.xml +++ b/src/chrome/content/rules/IdeoClick.com.xml @@ -6,7 +6,6 @@ Fetch error: http://www.ideoclick.com/ => https://www.ideoclick.com/: (60, 'SSL Other IdeoClick rulesets: - - Demand-driver.com.xml Insecure cookies are set for these hosts: @@ -22,7 +21,7 @@ Fetch error: http://www.ideoclick.com/ => https://www.ideoclick.com/: (60, 'SSL * Secured by us --> - + diff --git a/src/chrome/content/rules/Ideone.com.xml b/src/chrome/content/rules/Ideone.com.xml index 48fc6ada5c0b..90bb40035208 100644 --- a/src/chrome/content/rules/Ideone.com.xml +++ b/src/chrome/content/rules/Ideone.com.xml @@ -15,7 +15,7 @@ Fetch error: http://okta6.ideone.com/ => https://okta6.ideone.com/: (28, 'Connec - www.ideone.com --> - + diff --git a/src/chrome/content/rules/Idevelop.ro.xml b/src/chrome/content/rules/Idevelop.ro.xml index 54319a1d0729..081fceeacfe3 100644 --- a/src/chrome/content/rules/Idevelop.ro.xml +++ b/src/chrome/content/rules/Idevelop.ro.xml @@ -4,7 +4,7 @@ Cloudflare SSL - + diff --git a/src/chrome/content/rules/Idg.de.xml b/src/chrome/content/rules/Idg.de.xml index 4396cf7a8d2b..eb6f143f8ccf 100644 --- a/src/chrome/content/rules/Idg.de.xml +++ b/src/chrome/content/rules/Idg.de.xml @@ -1,5 +1,69 @@ + - - + + + + + + + + + + + + + + + + + + + + + + + + + + - \ No newline at end of file diff --git a/src/chrome/content/rules/Idris-lang.org.xml b/src/chrome/content/rules/Idris-lang.org.xml index 4495bb52b83c..7daef3aa2f50 100644 --- a/src/chrome/content/rules/Idris-lang.org.xml +++ b/src/chrome/content/rules/Idris-lang.org.xml @@ -1,12 +1,10 @@ + diff --git a/src/chrome/content/rules/Iemoji.com.xml b/src/chrome/content/rules/Iemoji.com.xml new file mode 100644 index 000000000000..e0b7cf816a54 --- /dev/null +++ b/src/chrome/content/rules/Iemoji.com.xml @@ -0,0 +1,16 @@ + + + + + + + diff --git a/src/chrome/content/rules/IgHome.com.xml b/src/chrome/content/rules/IgHome.com.xml index 7a4d2cc116ea..e813864e0d4f 100644 --- a/src/chrome/content/rules/IgHome.com.xml +++ b/src/chrome/content/rules/IgHome.com.xml @@ -16,7 +16,8 @@ - + + @@ -25,7 +26,6 @@ - + diff --git a/src/chrome/content/rules/Igalia-self-signed.xml b/src/chrome/content/rules/Igalia-self-signed.xml index 6a3f32b688d2..46028669a441 100644 --- a/src/chrome/content/rules/Igalia-self-signed.xml +++ b/src/chrome/content/rules/Igalia-self-signed.xml @@ -1,12 +1,12 @@ - + + - + - + diff --git a/src/chrome/content/rules/Igalia.xml b/src/chrome/content/rules/Igalia.xml index 63a0f79eb0af..726d9e2c8bb3 100644 --- a/src/chrome/content/rules/Igalia.xml +++ b/src/chrome/content/rules/Igalia.xml @@ -18,7 +18,7 @@ Fetch error: http://labs.igalia.com/ => https://labs.igalia.com/: (6, 'Could not ² Works, self-signed --> - + diff --git a/src/chrome/content/rules/Igcdn.com.xml b/src/chrome/content/rules/Igcdn.com.xml deleted file mode 100644 index aafaadf54f2f..000000000000 --- a/src/chrome/content/rules/Igcdn.com.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Igowild.com.xml b/src/chrome/content/rules/Igowild.com.xml deleted file mode 100644 index 768112e759eb..000000000000 --- a/src/chrome/content/rules/Igowild.com.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Ihug.xml b/src/chrome/content/rules/Ihug.xml index 66964a94d1fd..5821cd8f9d94 100644 --- a/src/chrome/content/rules/Ihug.xml +++ b/src/chrome/content/rules/Ihug.xml @@ -3,7 +3,6 @@ - + diff --git a/src/chrome/content/rules/IiBuy.com.au.xml b/src/chrome/content/rules/IiBuy.com.au.xml index 0346e61918db..1f0a78e661a7 100644 --- a/src/chrome/content/rules/IiBuy.com.au.xml +++ b/src/chrome/content/rules/IiBuy.com.au.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/IiNet.net.au.xml b/src/chrome/content/rules/IiNet.net.au.xml index fa0af2f84024..363360b5b11b 100644 --- a/src/chrome/content/rules/IiNet.net.au.xml +++ b/src/chrome/content/rules/IiNet.net.au.xml @@ -37,7 +37,13 @@ - + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Ikea.com.xml b/src/chrome/content/rules/Ikea.com.xml index 3643f1db7b0c..c764fff814af 100644 --- a/src/chrome/content/rules/Ikea.com.xml +++ b/src/chrome/content/rules/Ikea.com.xml @@ -76,6 +76,8 @@ + + @@ -99,6 +101,7 @@ + diff --git a/src/chrome/content/rules/IkhwanWiki.com.xml b/src/chrome/content/rules/IkhwanWiki.com.xml new file mode 100644 index 000000000000..fbbfeb7d7365 --- /dev/null +++ b/src/chrome/content/rules/IkhwanWiki.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Iki.fi.xml b/src/chrome/content/rules/Iki.fi.xml index 7f372e0cc645..02d75315f08f 100644 --- a/src/chrome/content/rules/Iki.fi.xml +++ b/src/chrome/content/rules/Iki.fi.xml @@ -1,17 +1,7 @@ + + + + - - - - - - - - + diff --git a/src/chrome/content/rules/Ikoula.com.xml b/src/chrome/content/rules/Ikoula.com.xml index 2bb51d5fa33b..e06f48bb3258 100644 --- a/src/chrome/content/rules/Ikoula.com.xml +++ b/src/chrome/content/rules/Ikoula.com.xml @@ -5,8 +5,6 @@ Fetch error: http://livehelpvm01.ikoula.com/ => https://livehelpvm01.ikoula.com/ Other Ikoula rulesets: - - Ex10.biz.xml - - IKeepinCloud.com.xml Insecure cookies are set for these domains: @@ -14,7 +12,7 @@ Fetch error: http://livehelpvm01.ikoula.com/ => https://livehelpvm01.ikoula.com/ - .ikoula.com --> - + @@ -35,7 +33,7 @@ Fetch error: http://livehelpvm01.ikoula.com/ => https://livehelpvm01.ikoula.com/ --> - + https://iljmp.com/: (51, "SSL: no alternative Web bugs. --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Illinois_Department_of_Financial_and_Professional_Regulation.xml b/src/chrome/content/rules/Illinois_Department_of_Financial_and_Professional_Regulation.xml index 21579f94ef45..f1196e489b7a 100644 --- a/src/chrome/content/rules/Illinois_Department_of_Financial_and_Professional_Regulation.xml +++ b/src/chrome/content/rules/Illinois_Department_of_Financial_and_Professional_Regulation.xml @@ -16,4 +16,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Illinois_Law_Review.org.xml b/src/chrome/content/rules/Illinois_Law_Review.org.xml index fdf4a95b745a..1a78567fb703 100644 --- a/src/chrome/content/rules/Illinois_Law_Review.org.xml +++ b/src/chrome/content/rules/Illinois_Law_Review.org.xml @@ -18,7 +18,7 @@ - + - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Illumos.org.xml b/src/chrome/content/rules/Illumos.org.xml index 23a691b84d7a..70d6824faa7a 100644 --- a/src/chrome/content/rules/Illumos.org.xml +++ b/src/chrome/content/rules/Illumos.org.xml @@ -1,14 +1,14 @@ @@ -33,13 +27,14 @@ --> + - + - + + + + + + + @@ -75,7 +81,6 @@ - + diff --git a/src/chrome/content/rules/Image-Line.com.xml b/src/chrome/content/rules/Image-Line.com.xml new file mode 100644 index 000000000000..b8616bde5b22 --- /dev/null +++ b/src/chrome/content/rules/Image-Line.com.xml @@ -0,0 +1,26 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Image-Maps.com.xml b/src/chrome/content/rules/Image-Maps.com.xml index 374844e1bde4..cb2c0795e991 100644 --- a/src/chrome/content/rules/Image-Maps.com.xml +++ b/src/chrome/content/rules/Image-Maps.com.xml @@ -14,7 +14,7 @@ --> - + - - + + + + + - - - - - + diff --git a/src/chrome/content/rules/ImageShack.xml b/src/chrome/content/rules/ImageShack.xml index 2cb2de3f434a..be664b5d78a0 100644 --- a/src/chrome/content/rules/ImageShack.xml +++ b/src/chrome/content/rules/ImageShack.xml @@ -4,6 +4,7 @@ So, a.imageshack.us and img\d+.imageshack.us are 404 now, nomatter http or https. Mismatch: + my.imageshack.us profile.imageshack.us reg.imageshack.us --> @@ -12,23 +13,22 @@ + - - - - - - - + + + + + - + diff --git a/src/chrome/content/rules/ImageTwist.com.xml b/src/chrome/content/rules/ImageTwist.com.xml new file mode 100644 index 000000000000..30df5cce63e5 --- /dev/null +++ b/src/chrome/content/rules/ImageTwist.com.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Imageforensic.org.xml b/src/chrome/content/rules/Imageforensic.org.xml index 06ddbd41ea22..7eb8caa163f1 100644 --- a/src/chrome/content/rules/Imageforensic.org.xml +++ b/src/chrome/content/rules/Imageforensic.org.xml @@ -1,11 +1,11 @@ - - + diff --git a/src/chrome/content/rules/Images-Amazon.com.xml b/src/chrome/content/rules/Images-Amazon.com.xml new file mode 100644 index 000000000000..06dc0696199b --- /dev/null +++ b/src/chrome/content/rules/Images-Amazon.com.xml @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Images-CreateSpace.com.xml b/src/chrome/content/rules/Images-CreateSpace.com.xml deleted file mode 100644 index 70d97e53c65a..000000000000 --- a/src/chrome/content/rules/Images-CreateSpace.com.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/ImagesBN.com.xml b/src/chrome/content/rules/ImagesBN.com.xml index 7a8e494f4b5a..05df96d4389e 100644 --- a/src/chrome/content/rules/ImagesBN.com.xml +++ b/src/chrome/content/rules/ImagesBN.com.xml @@ -13,7 +13,11 @@ --> - + + + + + - + diff --git a/src/chrome/content/rules/Imagestash.xml b/src/chrome/content/rules/Imagestash.xml index 863f3332932e..5ae18b293175 100644 --- a/src/chrome/content/rules/Imagestash.xml +++ b/src/chrome/content/rules/Imagestash.xml @@ -5,7 +5,7 @@ Fetch error: http://imagestash.org/ => https://imagestash.org/: (60, 'SSL certif Fetch error: http://www.imagestash.org/ => https://www.imagestash.org/: (60, 'SSL certificate problem: certificate has expired') --> - + @@ -16,4 +16,4 @@ Fetch error: http://www.imagestash.org/ => https://www.imagestash.org/: (60, 'SS - \ No newline at end of file + diff --git a/src/chrome/content/rules/Imaging-resource.com.xml b/src/chrome/content/rules/Imaging-resource.com.xml new file mode 100644 index 000000000000..02a24e10ba55 --- /dev/null +++ b/src/chrome/content/rules/Imaging-resource.com.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ImamReza.net.xml b/src/chrome/content/rules/ImamReza.net.xml new file mode 100644 index 000000000000..9a4d656392e5 --- /dev/null +++ b/src/chrome/content/rules/ImamReza.net.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Imation.com.xml b/src/chrome/content/rules/Imation.com.xml index 5e61196af3dc..248b394e1fe3 100644 --- a/src/chrome/content/rules/Imation.com.xml +++ b/src/chrome/content/rules/Imation.com.xml @@ -14,7 +14,7 @@ Fetch error: http://support.imation.com/ => https://support.imation.com/: (60, ' - support --> - + diff --git a/src/chrome/content/rules/Imerys.com.xml b/src/chrome/content/rules/Imerys.com.xml index 7dbe1a78c322..49f1293299f9 100644 --- a/src/chrome/content/rules/Imerys.com.xml +++ b/src/chrome/content/rules/Imerys.com.xml @@ -13,7 +13,7 @@ Fetch error: http://www.imerys.com/ => https://www.imerys.com/: (60, 'SSL certif ² Not secured by us <= mismatched --> - + diff --git a/src/chrome/content/rules/Imfimg.com.xml b/src/chrome/content/rules/Imfimg.com.xml deleted file mode 100644 index 43c81c7c78af..000000000000 --- a/src/chrome/content/rules/Imfimg.com.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Imgflip.com.xml b/src/chrome/content/rules/Imgflip.com.xml index cc7d82f29a0b..eac3861b52e2 100644 --- a/src/chrome/content/rules/Imgflip.com.xml +++ b/src/chrome/content/rules/Imgflip.com.xml @@ -1,7 +1,9 @@ - + + + - + diff --git a/src/chrome/content/rules/Imgs_Mail.ru.xml b/src/chrome/content/rules/Imgs_Mail.ru.xml index 2aac54edccc0..db130d5d4426 100644 --- a/src/chrome/content/rules/Imgs_Mail.ru.xml +++ b/src/chrome/content/rules/Imgs_Mail.ru.xml @@ -61,9 +61,10 @@ - + + diff --git a/src/chrome/content/rules/Imgur.com.xml b/src/chrome/content/rules/Imgur.com.xml new file mode 100644 index 000000000000..8deee9ccfd5c --- /dev/null +++ b/src/chrome/content/rules/Imgur.com.xml @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Imgur.xml b/src/chrome/content/rules/Imgur.xml deleted file mode 100644 index 7c8ecbffb2e3..000000000000 --- a/src/chrome/content/rules/Imgur.xml +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Imgurp.com.xml b/src/chrome/content/rules/Imgurp.com.xml new file mode 100644 index 000000000000..68d3aeb756d5 --- /dev/null +++ b/src/chrome/content/rules/Imgurp.com.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Imine.co.xml b/src/chrome/content/rules/Imine.co.xml deleted file mode 100644 index f3b2f3783b41..000000000000 --- a/src/chrome/content/rules/Imine.co.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Iminent.com.xml b/src/chrome/content/rules/Iminent.com.xml index 28a872bd3c8e..38ee3b66a5a8 100644 --- a/src/chrome/content/rules/Iminent.com.xml +++ b/src/chrome/content/rules/Iminent.com.xml @@ -27,4 +27,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/ImmobilienScout24.xml b/src/chrome/content/rules/ImmobilienScout24.xml index ca7fef428571..b5ade85ab59e 100644 --- a/src/chrome/content/rules/ImmobilienScout24.xml +++ b/src/chrome/content/rules/ImmobilienScout24.xml @@ -2,24 +2,24 @@ - + @@ -43,7 +43,7 @@ Fetch error: http://service.immobilienscout24.de/ => https://service.immobiliens - + diff --git a/src/chrome/content/rules/Immunicity.org.xml b/src/chrome/content/rules/Immunicity.org.xml deleted file mode 100644 index 8c89979732da..000000000000 --- a/src/chrome/content/rules/Immunicity.org.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Immunityinc.com.xml b/src/chrome/content/rules/Immunityinc.com.xml index 2dcd025f3afa..5583710c961a 100644 --- a/src/chrome/content/rules/Immunityinc.com.xml +++ b/src/chrome/content/rules/Immunityinc.com.xml @@ -1,6 +1,4 @@ - + diff --git a/src/chrome/content/rules/ImpAct.xml b/src/chrome/content/rules/ImpAct.xml index 2989cefa98e0..8caf36d2c703 100644 --- a/src/chrome/content/rules/ImpAct.xml +++ b/src/chrome/content/rules/ImpAct.xml @@ -32,7 +32,12 @@ --> - + + + + + + @@ -40,10 +45,6 @@ - + - - - \ No newline at end of file + diff --git a/src/chrome/content/rules/Impact-Radius.xml b/src/chrome/content/rules/Impact-Radius.xml index 4a959aa26c9c..7b505aba223c 100644 --- a/src/chrome/content/rules/Impact-Radius.xml +++ b/src/chrome/content/rules/Impact-Radius.xml @@ -41,7 +41,7 @@ - + https://www.impactstory.org/: (51, "SSL: no alternative certificate subject name matches target host name 'www.impactstory.org'") --> - + diff --git a/src/chrome/content/rules/Imperative_Ideas.com.xml b/src/chrome/content/rules/Imperative_Ideas.com.xml deleted file mode 100644 index dca9fb1f4636..000000000000 --- a/src/chrome/content/rules/Imperative_Ideas.com.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Imperial-College-London-Union.xml b/src/chrome/content/rules/Imperial-College-London-Union.xml index e2ef5db3ff3a..46d2b578c14a 100644 --- a/src/chrome/content/rules/Imperial-College-London-Union.xml +++ b/src/chrome/content/rules/Imperial-College-London-Union.xml @@ -1,5 +1,5 @@ diff --git a/src/chrome/content/rules/Imperial-College-London.xml b/src/chrome/content/rules/Imperial-College-London.xml index 5b28240f6ead..8614debf62a9 100644 --- a/src/chrome/content/rules/Imperial-College-London.xml +++ b/src/chrome/content/rules/Imperial-College-London.xml @@ -1,28 +1,48 @@ - - - - + - - - - - - - - + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ImperialViolet.org.xml b/src/chrome/content/rules/ImperialViolet.org.xml index dee3784616fa..3355065957fe 100644 --- a/src/chrome/content/rules/ImperialViolet.org.xml +++ b/src/chrome/content/rules/ImperialViolet.org.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://pond.imperialviolet.org/ => https://pond.imperialviolet.org/: (6, 'Could not resolve host: pond.imperialviolet.org') --> - + diff --git a/src/chrome/content/rules/ImprintMusic.ca.xml b/src/chrome/content/rules/ImprintMusic.ca.xml new file mode 100644 index 000000000000..a584e7cc102a --- /dev/null +++ b/src/chrome/content/rules/ImprintMusic.ca.xml @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Improper-Bostonian.xml b/src/chrome/content/rules/Improper-Bostonian.xml index 15c1076b47ba..a6888b32d41d 100644 --- a/src/chrome/content/rules/Improper-Bostonian.xml +++ b/src/chrome/content/rules/Improper-Bostonian.xml @@ -4,7 +4,7 @@ - + + + + + + + + diff --git a/src/chrome/content/rules/Improvely.com.xml b/src/chrome/content/rules/Improvely.com.xml index 666d9ab5dc9e..0b6ed259e090 100644 --- a/src/chrome/content/rules/Improvely.com.xml +++ b/src/chrome/content/rules/Improvely.com.xml @@ -13,4 +13,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Impulse.net.xml b/src/chrome/content/rules/Impulse.net.xml index b6a4de7b98c6..286b5b545f2b 100644 --- a/src/chrome/content/rules/Impulse.net.xml +++ b/src/chrome/content/rules/Impulse.net.xml @@ -29,7 +29,7 @@ Fetch error: http://impulse.net/ => https://impulse.net/: (51, "SSL: no alternat platform should be removed with Ffx 24. --> - + @@ -41,4 +41,4 @@ Fetch error: http://impulse.net/ => https://impulse.net/: (51, "SSL: no alternat - \ No newline at end of file + diff --git a/src/chrome/content/rules/Impulsedriven.com.xml b/src/chrome/content/rules/Impulsedriven.com.xml deleted file mode 100644 index c669e91ad80d..000000000000 --- a/src/chrome/content/rules/Impulsedriven.com.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/ImrWorldwide.com.xml b/src/chrome/content/rules/ImrWorldwide.com.xml index 97df7b2bba28..358c6e78c26d 100644 --- a/src/chrome/content/rules/ImrWorldwide.com.xml +++ b/src/chrome/content/rules/ImrWorldwide.com.xml @@ -32,7 +32,7 @@ - + https://www.vpnincome.com/: (28, 'Conn - (www.)wpnincome.com --> - + @@ -29,6 +29,6 @@ Fetch error: http://www.vpnincome.com/ => https://www.vpnincome.com/: (28, 'Conn - + diff --git a/src/chrome/content/rules/In-Q-Tel.xml b/src/chrome/content/rules/In-Q-Tel.xml index 6e4eb12c818e..bc58b49bdf26 100644 --- a/src/chrome/content/rules/In-Q-Tel.xml +++ b/src/chrome/content/rules/In-Q-Tel.xml @@ -9,7 +9,7 @@ Fetch error: http://www.iqt.org/ => https://www.iqt.org/: (60, 'SSL certificate - ^ (cert only matches www) --> - + @@ -18,4 +18,4 @@ Fetch error: http://www.iqt.org/ => https://www.iqt.org/: (60, 'SSL certificate - \ No newline at end of file + diff --git a/src/chrome/content/rules/In-Stat.xml b/src/chrome/content/rules/In-Stat.xml index cacb16419b81..328a36003b9a 100644 --- a/src/chrome/content/rules/In-Stat.xml +++ b/src/chrome/content/rules/In-Stat.xml @@ -4,7 +4,7 @@ - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/InCommon.xml b/src/chrome/content/rules/InCommon.xml index 590360c63078..77db79176606 100644 --- a/src/chrome/content/rules/InCommon.xml +++ b/src/chrome/content/rules/InCommon.xml @@ -9,19 +9,19 @@ Fetch error: http://incommonfederation.org/ => https://incommonfederation.org/: - wayf2.incommonfederation.org (mismatched, CN: wayf.incommonfederation.org) --> - + - + + + - @@ -29,4 +29,5 @@ Fetch error: http://incommonfederation.org/ => https://incommonfederation.org/: + diff --git a/src/chrome/content/rules/InLinkz.com.xml b/src/chrome/content/rules/InLinkz.com.xml index e98a73270f1e..8f04a71dddc0 100644 --- a/src/chrome/content/rules/InLinkz.com.xml +++ b/src/chrome/content/rules/InLinkz.com.xml @@ -20,7 +20,7 @@ - + - + https://static.insided.nl/: (28, 'Conn - www --> - + - + diff --git a/src/chrome/content/rules/Inapub.co.uk.xml b/src/chrome/content/rules/Inapub.co.uk.xml index 48fd054229ef..2b2ee0b05f88 100644 --- a/src/chrome/content/rules/Inapub.co.uk.xml +++ b/src/chrome/content/rules/Inapub.co.uk.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Inbox.com.xml b/src/chrome/content/rules/Inbox.com.xml new file mode 100644 index 000000000000..065bc3cbcf8c --- /dev/null +++ b/src/chrome/content/rules/Inbox.com.xml @@ -0,0 +1,24 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/InboxApp.com.xml b/src/chrome/content/rules/InboxApp.com.xml index 1348facaed9f..cab4f070d386 100644 --- a/src/chrome/content/rules/InboxApp.com.xml +++ b/src/chrome/content/rules/InboxApp.com.xml @@ -5,7 +5,7 @@ Fetch error: http://inboxapp.com/ => https://inboxapp.com/: (60, 'SSL certificat Fetch error: http://www.inboxapp.com/ => https://www.inboxapp.com/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/Inburke.com.xml b/src/chrome/content/rules/Inburke.com.xml index 2975307b8a5f..782d18dc15c0 100644 --- a/src/chrome/content/rules/Inburke.com.xml +++ b/src/chrome/content/rules/Inburke.com.xml @@ -10,7 +10,9 @@ - + + + - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Inc.com.xml b/src/chrome/content/rules/Inc.com.xml index 230441359672..c21d59217628 100644 --- a/src/chrome/content/rules/Inc.com.xml +++ b/src/chrome/content/rules/Inc.com.xml @@ -1,68 +1,19 @@ - - + - - - - - + + + + - - - - - - - - - - + + - diff --git a/src/chrome/content/rules/Incisive_Media.xml b/src/chrome/content/rules/Incisive_Media.xml index 62d22b114471..4f99c66782b2 100644 --- a/src/chrome/content/rules/Incisive_Media.xml +++ b/src/chrome/content/rules/Incisive_Media.xml @@ -18,10 +18,12 @@ Fetch error: http://incisivemedia.com/ => https://secure.incisivemedia.com/: (60 * Mismatched, CN: secure.incisivemedia.com --> - + - + + + diff --git a/src/chrome/content/rules/IncludeOS.org.xml b/src/chrome/content/rules/IncludeOS.org.xml new file mode 100644 index 000000000000..9e3e9ada2912 --- /dev/null +++ b/src/chrome/content/rules/IncludeOS.org.xml @@ -0,0 +1,15 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Incoin.io.xml b/src/chrome/content/rules/Incoin.io.xml index ceb01b92b107..148a21f4b7eb 100644 --- a/src/chrome/content/rules/Incoin.io.xml +++ b/src/chrome/content/rules/Incoin.io.xml @@ -17,7 +17,7 @@ Fetch error: http://www.incoin.io/ => https://www.incoin.io/: (28, 'Connection t - www.beta.incoin.io --> - + diff --git a/src/chrome/content/rules/Incometaxindiaefiling.gov.in.xml b/src/chrome/content/rules/Incometaxindiaefiling.gov.in.xml new file mode 100644 index 000000000000..d91b9a0846d4 --- /dev/null +++ b/src/chrome/content/rules/Incometaxindiaefiling.gov.in.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Ind.ie.xml b/src/chrome/content/rules/Ind.ie.xml deleted file mode 100644 index e4e39fdb0960..000000000000 --- a/src/chrome/content/rules/Ind.ie.xml +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Indaba_Music.com.xml b/src/chrome/content/rules/Indaba_Music.com.xml index abf3cfeea7e1..7e07495f9459 100644 --- a/src/chrome/content/rules/Indaba_Music.com.xml +++ b/src/chrome/content/rules/Indaba_Music.com.xml @@ -21,13 +21,13 @@ - + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Indeed.co.uk.xml b/src/chrome/content/rules/Indeed.co.uk.xml new file mode 100644 index 000000000000..af357a2d71d1 --- /dev/null +++ b/src/chrome/content/rules/Indeed.co.uk.xml @@ -0,0 +1,12 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Indeed.xml b/src/chrome/content/rules/Indeed.xml index 187aede65614..80a54b37af95 100644 --- a/src/chrome/content/rules/Indeed.xml +++ b/src/chrome/content/rules/Indeed.xml @@ -39,7 +39,7 @@ - + - - - - - - - - diff --git a/src/chrome/content/rules/Independent_News.xml b/src/chrome/content/rules/Independent_News.xml index 380425de2cfc..f5fd5d03f822 100644 --- a/src/chrome/content/rules/Independent_News.xml +++ b/src/chrome/content/rules/Independent_News.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Indepnet.net.xml b/src/chrome/content/rules/Indepnet.net.xml index 753e355822e0..7d979f44f147 100644 --- a/src/chrome/content/rules/Indepnet.net.xml +++ b/src/chrome/content/rules/Indepnet.net.xml @@ -38,7 +38,7 @@ Fetch error: http://forge.indepnet.net/ => https://forge.indepnet.net/: (28, 'Co * Secured by us --> - + @@ -51,7 +51,6 @@ Fetch error: http://forge.indepnet.net/ => https://forge.indepnet.net/: (28, 'Co - + diff --git a/src/chrome/content/rules/Index_on_Censorship.org.xml b/src/chrome/content/rules/Index_on_Censorship.org.xml index 39b6c37adc3c..863db4b497d0 100644 --- a/src/chrome/content/rules/Index_on_Censorship.org.xml +++ b/src/chrome/content/rules/Index_on_Censorship.org.xml @@ -15,7 +15,7 @@ Fetch error: http://awards.indexoncensorship.org/ => https://awards.indexoncenso * Secured by us --> - + @@ -26,7 +26,7 @@ Fetch error: http://awards.indexoncensorship.org/ => https://awards.indexoncenso - + - - - + + + + + + - - - - + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/IndiaMART.xml b/src/chrome/content/rules/IndiaMART.xml index e7e4f56faba9..e9327d48def0 100644 --- a/src/chrome/content/rules/IndiaMART.xml +++ b/src/chrome/content/rules/IndiaMART.xml @@ -33,23 +33,13 @@ --> - + + + + - + - - - - - - - - - \ No newline at end of file + diff --git a/src/chrome/content/rules/Indiana-University.xml b/src/chrome/content/rules/Indiana-University.xml index 3c90da6b99ce..bf6aba3e2d6b 100644 --- a/src/chrome/content/rules/Indiana-University.xml +++ b/src/chrome/content/rules/Indiana-University.xml @@ -92,7 +92,7 @@ Fetch error: http://osl.iu.edu/ => https://www.osl.iu.edu/: (51, "SSL: no altern ² Unsecurable <= refused --> - + @@ -205,8 +205,8 @@ Fetch error: http://osl.iu.edu/ => https://www.osl.iu.edu/: (51, "SSL: no altern - - + + + + + + + diff --git a/src/chrome/content/rules/IndianaCourts.us.xml b/src/chrome/content/rules/IndianaCourts.us.xml new file mode 100644 index 000000000000..06dda1e529d4 --- /dev/null +++ b/src/chrome/content/rules/IndianaCourts.us.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Indiana_State_University.xml b/src/chrome/content/rules/Indiana_State_University.xml index 75b8700279bd..ce41a5dc5d37 100644 --- a/src/chrome/content/rules/Indiana_State_University.xml +++ b/src/chrome/content/rules/Indiana_State_University.xml @@ -1,30 +1,16 @@ + + + + - - - - - - - - - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Indianapolis_Star.xml b/src/chrome/content/rules/Indianapolis_Star.xml index ba5797d230bf..bc0b08588957 100644 --- a/src/chrome/content/rules/Indianapolis_Star.xml +++ b/src/chrome/content/rules/Indianapolis_Star.xml @@ -14,7 +14,8 @@ - + + diff --git a/src/chrome/content/rules/IndieHackers.com.xml b/src/chrome/content/rules/IndieHackers.com.xml new file mode 100644 index 000000000000..45b0d92872dd --- /dev/null +++ b/src/chrome/content/rules/IndieHackers.com.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/IndieMerch.xml b/src/chrome/content/rules/IndieMerch.xml index 42e591a9e73e..324bb08c7cdb 100644 --- a/src/chrome/content/rules/IndieMerch.xml +++ b/src/chrome/content/rules/IndieMerch.xml @@ -13,7 +13,9 @@ - + + + @@ -22,7 +24,6 @@ - + diff --git a/src/chrome/content/rules/IndieMerchandising.xml b/src/chrome/content/rules/IndieMerchandising.xml index d15c2672b46d..26fb9dabaa48 100644 --- a/src/chrome/content/rules/IndieMerchandising.xml +++ b/src/chrome/content/rules/IndieMerchandising.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Induction_Solutions.com-falsemixed.xml b/src/chrome/content/rules/Induction_Solutions.com-falsemixed.xml deleted file mode 100644 index a695bfc4566d..000000000000 --- a/src/chrome/content/rules/Induction_Solutions.com-falsemixed.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Induction_Solutions.com.xml b/src/chrome/content/rules/Induction_Solutions.com.xml deleted file mode 100644 index 023b35d78a55..000000000000 --- a/src/chrome/content/rules/Induction_Solutions.com.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/IndusGuard.xml b/src/chrome/content/rules/IndusGuard.xml deleted file mode 100644 index cb794406ac77..000000000000 --- a/src/chrome/content/rules/IndusGuard.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Industry-Botnet-Group.xml b/src/chrome/content/rules/Industry-Botnet-Group.xml index a54a5c4dd37e..7a0487a00712 100644 --- a/src/chrome/content/rules/Industry-Botnet-Group.xml +++ b/src/chrome/content/rules/Industry-Botnet-Group.xml @@ -4,7 +4,7 @@ - + https://industrymailout.com/: (6, 'Could not resolve host: industrymailout.com') -Fetch error: http://www.industrymailout.com/ => https://www.industrymailout.com/: (6, 'Could not resolve host: www.industrymailout.com') - - Nonfunctional subdomains: - - - support (desk.com) - ---> - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Indybay.xml b/src/chrome/content/rules/Indybay.xml deleted file mode 100644 index 4b49f7505564..000000000000 --- a/src/chrome/content/rules/Indybay.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Indymedia.nl.xml b/src/chrome/content/rules/Indymedia.nl.xml index 767d08c44679..93747a5b3506 100644 --- a/src/chrome/content/rules/Indymedia.nl.xml +++ b/src/chrome/content/rules/Indymedia.nl.xml @@ -1,35 +1,15 @@ - - - - - - - - - - - - + + + + diff --git a/src/chrome/content/rules/Indymedia.org.uk.xml b/src/chrome/content/rules/Indymedia.org.uk.xml index 60689449b647..6db131784159 100644 --- a/src/chrome/content/rules/Indymedia.org.uk.xml +++ b/src/chrome/content/rules/Indymedia.org.uk.xml @@ -21,7 +21,7 @@ - + https://www.brussels.indymedia.org/: (6, 'Could not resolve host: www.brussels.indymedia.org') -Fetch error: http://www.bxl.indymedia.org/ => https://www.bxl.indymedia.org/: (6, 'Could not resolve host: www.bxl.indymedia.org') -Fetch error: http://next.grenoble.indymedia.org/ => https://next.grenoble.indymedia.org/: (60, 'SSL certificate problem: unable to get local issuer certificate') -Fetch error: http://publish.nyc.indymedia.org/nyc/servlet/OpenMir => https://publish.nyc.indymedia.org/nyc/servlet/OpenMir: (7, 'Failed to connect to publish.nyc.indymedia.org port 443: Connection refused') -Fetch error: http://publish.indymedia.org/earth/servlet/OpenMir => https://publish.indymedia.org/earth/servlet/OpenMir: (7, 'Failed to connect to publish.indymedia.org port 443: Connection refused') -Fetch error: http://indymedia.org/ => https://indymedia.org/: (7, 'Failed to connect to indymedia.org port 443: Connection refused') -Fetch error: http://belarus.indymedia.org/ => https://belarus.indymedia.org/: (7, 'Failed to connect to belarus.indymedia.org port 443: No route to host') -Fetch error: http://www.belarus.indymedia.org/ => https://www.belarus.indymedia.org/: (7, 'Failed to connect to www.belarus.indymedia.org port 443: No route to host') -Fetch error: http://docs.indymedia.org/ => https://docs.indymedia.org/: (35, 'error:140770FC:SSL routines:SSL23_GET_SERVER_HELLO:unknown protocol') -Fetch error: http://www.docs.indymedia.org/ => https://www.docs.indymedia.org/: (35, 'error:140770FC:SSL routines:SSL23_GET_SERVER_HELLO:unknown protocol') -Fetch error: http://nyc.indymedia.org/ => https://nyc.indymedia.org/: (7, 'Failed to connect to nyc.indymedia.org port 443: Connection refused') -Fetch error: http://publish.nyc.indymedia.org/ => https://publish.nyc.indymedia.org/: (7, 'Failed to connect to publish.nyc.indymedia.org port 443: Connection refused') -Fetch error: http://www.nyc.indymedia.org/ => https://www.nyc.indymedia.org/: (7, 'Failed to connect to www.nyc.indymedia.org port 443: Connection refused') -Fetch error: http://publish.indymedia.org/ => https://publish.indymedia.org/: (7, 'Failed to connect to publish.indymedia.org port 443: Connection refused') -Fetch error: http://www.indymedia.org/ => https://www.indymedia.org/: (7, 'Failed to connect to www.indymedia.org port 443: Connection refused') - Other Indymedia rulesets: - - - Indymedia.nl.xml - - Indymedia.org.uk.xml - - Northern-Indymedia.org.xml - - - Nonfunctional hosts in *indymedia.org: - - - argentina ʳ - - armenia - - austin ʳ - - barcelona ᵃ - - bc ¹ - - beirut ² - - boston ² - - dev.boston ² - - bristol Redirects to http - - colorado ᵈ - - cyprus ʳ - - hu ¹ - - hungary ¹ - - istanbul ⁴ - - japan ᵃ - - la ᵖ - - lists ³ - - liveradio ³ - - mexico ² - - miami ² - - neworleans ² - - newsreal ² - - piter ʳ - - pittsburgh ʳ - - portland ² - - portugal ᵖ - - print ʳ - - pt ᵖ - - richmond ² - - satellite ² - - tech ² - - worcester ¹ - - ⁴ 404 - ¹ Shows another domain - ᵃ Shows another domain - ᵈ Dropped - ᵖ Plaintext reply - ² Refused - ʳ Refused - ³ Dropped - - - Problematic hosts in *indymedia.org: - - - abruzzo ᵉ ᵘ - - antwerpen ᵐ - - barcelona ⁵ - - calabria ᵉ ᵘ - - www.belgium ᵐ - - ch ² - - chat ¹ ² - - emiliaromagna ᵉ ᵘ - - grenoble ³ - - irc ¹ - - israel ¹ ² ⁴ - - italy ¹ ⁵ - - lille ³ - - manila ² - - napoli ᵉ ᵘ - - netherlands ² - - northern ¹ ² - - nottingham ² ⁶ - - perth ᵐ - - piemonte ᵉ ᵘ ˣ - - publish.portland ¹ ⁶ - - roma ¹ ⁵ - - swizerland ² - - ukraine ¹ ᵀ - - ᵀ CAcert - ¹ Expired - ᵉ Expired - ² Mismatched - ᵐ Mismatched - ³ Self-signed - ⁴ Missing certificate chain - ⁵ Untrusted root - ᵘ Untrusted root - ˣ Mixed css, see https://www.paulirish.com/2010/the-protocol-relative-url/ - ⁶ CAcert - - - STS header includes includeSubdomains - for belgium, brussels, bruxelles, bxl, grenoble, nantes - - - Insecure cookies are set for these domains and hosts: ᶜ - - - .israel.indymedia.org - - nantes.indymedia.org - - .nantes.indymedia.org - - www.nantes.indymedia.org - - publish.nyc.indymedia.org - - publish.indymedia.org - - ᶜ See https://owasp.org/index.php/SecureFlag - - - Mixed content: - - - css, on: - - - piemonte from $self - - - Images, on: - - - (www.)?, publish from www.indymedia.org ˢ - - barcelona from $self - - piemonte from $self - - * Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ - + + Indymedia.nl.xml + + Indymedia.org.uk.xml + + Non-functional hosts + Couldn't connect to server: + - barcelona.indymedia.org + - bcn.indymedia.org + - boston.indymedia.org + - che.indymedia.org + - cyprus.indymedia.org + - docs.indymedia.org + - newsreal.indymedia.org + - satellite.indymedia.org + + Timeout was reached: + - grenoble.indymedia.org + - manila.indymedia.org + - www.sweden.indymedia.org + + SSL connect error: + - media.de.indymedia.org + - japan.indymedia.org + - nyc.indymedia.org + + SSL peer certificate was not OK: + - www.adelaide.indymedia.org + - bagimsiz-istanbul.indymedia.org + - brasil.indymedia.org + - ch.indymedia.org + - chicago.indymedia.org + - www.chicago.indymedia.org + - cleveland.indymedia.org + - www.cleveland.indymedia.org + - ecuador.indymedia.org + - irc.indymedia.org + - www.mexico.indymedia.org + - newmexico.indymedia.org + - www.newmexico.indymedia.org + - neworleans.indymedia.org + - nm.indymedia.org + - nola.indymedia.org + - pittsburgh.indymedia.org + - portland.indymedia.org + - www.portland.indymedia.org + - media.portland.indymedia.org + - publish.portland.indymedia.org + - pr.indymedia.org + - www.pr.indymedia.org + - print.indymedia.org + - www.print.indymedia.org + - puertorico.indymedia.org + - www.puertorico.indymedia.org + - quebec.indymedia.org + - richmond.indymedia.org + - www.richmond.indymedia.org + - rochester.indymedia.org + - www.rochester.indymedia.org + - santacruz.indymedia.org + - www.santacruz.indymedia.org + - sonora.indymedia.org + - www.stlouis.indymedia.org + - switzerland.indymedia.org + - valparaiso.indymedia.org + - www.valparaiso.indymedia.org + + Incomplete certificate chain error: + - austin.indymedia.org + - ie.indymedia.org + - www.ie.indymedia.org + - ireland.indymedia.org + - www.ireland.indymedia.org + + 5xx server error: + - de.indymedia.org --> - - - + + + + + - - - - + + - - - - - - - - - + + - - + - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + diff --git a/src/chrome/content/rules/InfNX.xml b/src/chrome/content/rules/InfNX.xml deleted file mode 100644 index eeadfd58846c..000000000000 --- a/src/chrome/content/rules/InfNX.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Infamous.xml b/src/chrome/content/rules/Infamous.xml deleted file mode 100644 index c2f7e5bf174e..000000000000 --- a/src/chrome/content/rules/Infamous.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Infektionsschutz.de.xml b/src/chrome/content/rules/Infektionsschutz.de.xml index e7bf55a7dc6c..84ba5aa97ce9 100644 --- a/src/chrome/content/rules/Infektionsschutz.de.xml +++ b/src/chrome/content/rules/Infektionsschutz.de.xml @@ -1,5 +1,8 @@ - + + - + + + diff --git a/src/chrome/content/rules/Infile.xml b/src/chrome/content/rules/Infile.xml index 64183b92ab50..5b30944db7d2 100644 --- a/src/chrome/content/rules/Infile.xml +++ b/src/chrome/content/rules/Infile.xml @@ -1,17 +1,13 @@ - - + - + - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Infinet.com.au.xml b/src/chrome/content/rules/Infinet.com.au.xml index d2a5eed24d32..a2036db63d7e 100644 --- a/src/chrome/content/rules/Infinet.com.au.xml +++ b/src/chrome/content/rules/Infinet.com.au.xml @@ -21,7 +21,8 @@ Fetch error: http://support.infinet.com.au/ => https://support.infinet.com.au/: - + + - - + @@ -42,7 +42,6 @@ Fetch error: http://support.infinet.com.au/ => https://support.infinet.com.au/: - + diff --git a/src/chrome/content/rules/InfiniteDescent.xyz.xml b/src/chrome/content/rules/InfiniteDescent.xyz.xml new file mode 100644 index 000000000000..ec0afe016575 --- /dev/null +++ b/src/chrome/content/rules/InfiniteDescent.xyz.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/InfinityDev.org.xml b/src/chrome/content/rules/InfinityDev.org.xml deleted file mode 100644 index af1d18106c6a..000000000000 --- a/src/chrome/content/rules/InfinityDev.org.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Infinity_Tracking.xml b/src/chrome/content/rules/Infinity_Tracking.xml index b50c64e31bbf..51750f86877a 100644 --- a/src/chrome/content/rules/Infinity_Tracking.xml +++ b/src/chrome/content/rules/Infinity_Tracking.xml @@ -15,16 +15,13 @@ - + + - + - - - \ No newline at end of file + diff --git a/src/chrome/content/rules/Infinow.net.xml b/src/chrome/content/rules/Infinow.net.xml deleted file mode 100644 index 62e1aab9f3b8..000000000000 --- a/src/chrome/content/rules/Infinow.net.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/InfluAds.xml b/src/chrome/content/rules/InfluAds.xml deleted file mode 100644 index b620099697dc..000000000000 --- a/src/chrome/content/rules/InfluAds.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Influencers_Conference.xml b/src/chrome/content/rules/Influencers_Conference.xml deleted file mode 100644 index 8f604074a0c5..000000000000 --- a/src/chrome/content/rules/Influencers_Conference.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/InfoJobs.net.xml b/src/chrome/content/rules/InfoJobs.net.xml index bc8c343bf1e1..f8b9377ab774 100644 --- a/src/chrome/content/rules/InfoJobs.net.xml +++ b/src/chrome/content/rules/InfoJobs.net.xml @@ -40,7 +40,13 @@ - + + + + + + + - + diff --git a/src/chrome/content/rules/InfoWar.com.xml b/src/chrome/content/rules/InfoWar.com.xml index c63fb0c3c86f..d51d61b57c1e 100644 --- a/src/chrome/content/rules/InfoWar.com.xml +++ b/src/chrome/content/rules/InfoWar.com.xml @@ -18,7 +18,7 @@ * Secured by us --> - + diff --git a/src/chrome/content/rules/Infoblox.com.xml b/src/chrome/content/rules/Infoblox.com.xml index 3cecddf78442..07811e57aae8 100644 --- a/src/chrome/content/rules/Infoblox.com.xml +++ b/src/chrome/content/rules/Infoblox.com.xml @@ -7,7 +7,7 @@ - + https://ogt.jp/: (7, 'Failed to connect to ogt.jp Automatically by https-everywhere-checker because: Fetch error: http://ogt.jp/ => https://ogt.jp/: (28, 'Connection timed out after 10000 milliseconds') --> - + - - + + + + - + diff --git a/src/chrome/content/rules/Infogroup.xml b/src/chrome/content/rules/Infogroup.xml index 26f2efe1f976..8ab1931c8d72 100644 --- a/src/chrome/content/rules/Infogroup.xml +++ b/src/chrome/content/rules/Infogroup.xml @@ -35,7 +35,7 @@ Fetch error: http://shared.sub.infousa.com/ => https://shared.sub.infousa.com/: - .link.p0.com --> - + @@ -64,8 +64,8 @@ Fetch error: http://shared.sub.infousa.com/ => https://shared.sub.infousa.com/: - - + + - + + + + + + + + + + + - + diff --git a/src/chrome/content/rules/Infomaniak-Network.xml b/src/chrome/content/rules/Infomaniak-Network.xml index 4b6e9a467484..3d27c59ec89d 100644 --- a/src/chrome/content/rules/Infomaniak-Network.xml +++ b/src/chrome/content/rules/Infomaniak-Network.xml @@ -7,7 +7,7 @@ - + + + Mismatched hosts in *infopackets.com: + + - go + - mail + - track + +--> + - - - + diff --git a/src/chrome/content/rules/Infopaginas.xml b/src/chrome/content/rules/Infopaginas.xml index a6ace957367a..d043308d606b 100644 --- a/src/chrome/content/rules/Infopaginas.xml +++ b/src/chrome/content/rules/Infopaginas.xml @@ -5,7 +5,7 @@ - + @@ -14,4 +14,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/InforME.org.xml b/src/chrome/content/rules/InforME.org.xml index e452b494209f..67dfa206cb44 100644 --- a/src/chrome/content/rules/InforME.org.xml +++ b/src/chrome/content/rules/InforME.org.xml @@ -9,7 +9,7 @@ - + + + + + + + + + + diff --git a/src/chrome/content/rules/InformIT.xml b/src/chrome/content/rules/InformIT.xml deleted file mode 100644 index e7c92f44ab6a..000000000000 --- a/src/chrome/content/rules/InformIT.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Informa.xml b/src/chrome/content/rules/Informa.xml index b4979f4717a4..ddc7aad4ef79 100644 --- a/src/chrome/content/rules/Informa.xml +++ b/src/chrome/content/rules/Informa.xml @@ -15,7 +15,7 @@ Fetch error: http://garlandscience.com/ => https://www.garlandscience.com/: (60, - Informa_Healthcare.xml --> - + diff --git a/src/chrome/content/rules/Informa_Healthcare-problematic.xml b/src/chrome/content/rules/Informa_Healthcare-problematic.xml index b499ff258dbd..05046046a519 100644 --- a/src/chrome/content/rules/Informa_Healthcare-problematic.xml +++ b/src/chrome/content/rules/Informa_Healthcare-problematic.xml @@ -11,7 +11,6 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Informa_Healthcare.xml b/src/chrome/content/rules/Informa_Healthcare.xml index 5a9927fe4aa4..990f49a6a004 100644 --- a/src/chrome/content/rules/Informa_Healthcare.xml +++ b/src/chrome/content/rules/Informa_Healthcare.xml @@ -40,7 +40,7 @@ Fetch error: http://www.informahealthcare.com/templates/jsp/style.css => https:/ - (www.)informahealthcare.com (most pages redirect to http) --> - + diff --git a/src/chrome/content/rules/Informatick.net.xml b/src/chrome/content/rules/Informatick.net.xml index 3cafc1ca602a..e030065da7a1 100644 --- a/src/chrome/content/rules/Informatick.net.xml +++ b/src/chrome/content/rules/Informatick.net.xml @@ -10,7 +10,7 @@ Fetch error: http://informatick.com/ => https://informatick.com/: (60, 'SSL cert Fetch error: http://www.informatick.com/ => https://www.informatick.com/: (60, 'SSL certificate problem: unable to get local issuer certificate') Fetch error: http://informatick.net/ => https://informatick.net/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + diff --git a/src/chrome/content/rules/InformationWeek.xml b/src/chrome/content/rules/InformationWeek.xml index 3da2928316bc..3cf088f12b8b 100644 --- a/src/chrome/content/rules/InformationWeek.xml +++ b/src/chrome/content/rules/InformationWeek.xml @@ -46,7 +46,7 @@ Non-2xx HTTP code: http://webinar.informationweek.com/ (200) => https://webinar. ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -66,7 +66,7 @@ Non-2xx HTTP code: http://webinar.informationweek.com/ (200) => https://webinar. - + https://www.infoworld.com/: (28, 'Connecti - m (mismatched, CN: *.mobify.com) --> - + - + + diff --git a/src/chrome/content/rules/Infra-Furth.xml b/src/chrome/content/rules/Infra-Furth.xml index 98dd2284dcda..7388fdf01a5c 100644 --- a/src/chrome/content/rules/Infra-Furth.xml +++ b/src/chrome/content/rules/Infra-Furth.xml @@ -1,12 +1,11 @@ - + - + - diff --git a/src/chrome/content/rules/Infradead.org.xml b/src/chrome/content/rules/Infradead.org.xml index fe12cfd9785d..1d44a93ad6c6 100644 --- a/src/chrome/content/rules/Infradead.org.xml +++ b/src/chrome/content/rules/Infradead.org.xml @@ -1,8 +1,4 @@ - - + - - - + diff --git a/src/chrome/content/rules/Infused-Systems.xml b/src/chrome/content/rules/Infused-Systems.xml index c50b66b3e04f..a40689e8c070 100644 --- a/src/chrome/content/rules/Infused-Systems.xml +++ b/src/chrome/content/rules/Infused-Systems.xml @@ -9,7 +9,7 @@ - 2012.infusioncon.com - help(center).infusionsoft.com - marketplace.infusionsoft.com ---> +--> @@ -20,9 +20,7 @@ - - - + - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Ingress.xml b/src/chrome/content/rules/Ingress.xml index 3e53e09bfe9c..de566426be52 100644 --- a/src/chrome/content/rules/Ingress.xml +++ b/src/chrome/content/rules/Ingress.xml @@ -10,4 +10,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Inhabitat.com.xml b/src/chrome/content/rules/Inhabitat.com.xml new file mode 100644 index 000000000000..af0638b75109 --- /dev/null +++ b/src/chrome/content/rules/Inhabitat.com.xml @@ -0,0 +1,21 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Inhumanity.com.xml b/src/chrome/content/rules/Inhumanity.com.xml index 6042db67a11e..2724cf67d9ea 100644 --- a/src/chrome/content/rules/Inhumanity.com.xml +++ b/src/chrome/content/rules/Inhumanity.com.xml @@ -17,7 +17,7 @@ - + - + - - + + + + + + + + - + + + + + + + + + + + + + + + + + + - + - - + - + diff --git a/src/chrome/content/rules/InkFrog.com.xml b/src/chrome/content/rules/InkFrog.com.xml index 0bcfadc4ce8d..4e02f7aadc80 100644 --- a/src/chrome/content/rules/InkFrog.com.xml +++ b/src/chrome/content/rules/InkFrog.com.xml @@ -16,7 +16,7 @@ - img ¹ - imgs ² - thmb ¹ - - thumbnails ² + - thumbnails (expired) ¹ Works, expired 2013-04-24 ² Cloudfront @@ -36,22 +36,14 @@ --> + - + - - - - - - + diff --git a/src/chrome/content/rules/Inkbunny.xml b/src/chrome/content/rules/Inkbunny.xml deleted file mode 100644 index afa09d67caf1..000000000000 --- a/src/chrome/content/rules/Inkbunny.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Inmoment.com.xml b/src/chrome/content/rules/Inmoment.com.xml new file mode 100644 index 000000000000..fd3c1f52f759 --- /dev/null +++ b/src/chrome/content/rules/Inmoment.com.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Innocence_Project.xml b/src/chrome/content/rules/Innocence_Project.xml index e7b21d3bb329..3b67bcacbd0d 100644 --- a/src/chrome/content/rules/Innocence_Project.xml +++ b/src/chrome/content/rules/Innocence_Project.xml @@ -14,4 +14,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Innometrics.com.xml b/src/chrome/content/rules/Innometrics.com.xml index c4e6cbd9ad5d..4e6127b843c4 100644 --- a/src/chrome/content/rules/Innometrics.com.xml +++ b/src/chrome/content/rules/Innometrics.com.xml @@ -13,7 +13,7 @@ Fetch error: http://customer.innometrics.com/ => https://customer.innometrics.co - (www.) (refused) --> - + @@ -21,7 +21,6 @@ Fetch error: http://customer.innometrics.com/ => https://customer.innometrics.co - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/InoReader.com.xml b/src/chrome/content/rules/InoReader.com.xml deleted file mode 100644 index 19e17f3c8ebf..000000000000 --- a/src/chrome/content/rules/InoReader.com.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Inphi.xml b/src/chrome/content/rules/Inphi.xml deleted file mode 100644 index 544b37cce6ee..000000000000 --- a/src/chrome/content/rules/Inphi.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Inpros.net.xml b/src/chrome/content/rules/Inpros.net.xml index 4c923298ee50..815d0132ffee 100644 --- a/src/chrome/content/rules/Inpros.net.xml +++ b/src/chrome/content/rules/Inpros.net.xml @@ -17,7 +17,7 @@ - + diff --git a/src/chrome/content/rules/Inria.fr.xml b/src/chrome/content/rules/Inria.fr.xml index b2d84ada1988..c9df6520952b 100644 --- a/src/chrome/content/rules/Inria.fr.xml +++ b/src/chrome/content/rules/Inria.fr.xml @@ -1,7 +1,4 @@ - - + @@ -48,22 +44,14 @@ Fetch error: http://site.inria.fr/ => https://site.inria.fr/: (28, 'Connection t - - - - - - + - diff --git a/src/chrome/content/rules/InsideScience.org.xml b/src/chrome/content/rules/InsideScience.org.xml new file mode 100644 index 000000000000..9612ed808024 --- /dev/null +++ b/src/chrome/content/rules/InsideScience.org.xml @@ -0,0 +1,9 @@ + + + + + + + + diff --git a/src/chrome/content/rules/InsideUniversal.xml b/src/chrome/content/rules/InsideUniversal.xml new file mode 100644 index 000000000000..4af74f25dfb9 --- /dev/null +++ b/src/chrome/content/rules/InsideUniversal.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Inside_Illinois.info.xml b/src/chrome/content/rules/Inside_Illinois.info.xml index 8649c6fc1136..c10ed979f62d 100644 --- a/src/chrome/content/rules/Inside_Illinois.info.xml +++ b/src/chrome/content/rules/Inside_Illinois.info.xml @@ -6,7 +6,7 @@ Fetch error: http://insideillinois.info/ => https://insideillinois.info/: (28, ' www.insideillinois.info doesn't exist. --> - + diff --git a/src/chrome/content/rules/Inside_Science.xml b/src/chrome/content/rules/Inside_Science.xml deleted file mode 100644 index 446832a3a907..000000000000 --- a/src/chrome/content/rules/Inside_Science.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Insidecelebs.com.xml b/src/chrome/content/rules/Insidecelebs.com.xml deleted file mode 100644 index f9dab335e658..000000000000 --- a/src/chrome/content/rules/Insidecelebs.com.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Insideygs.com.xml b/src/chrome/content/rules/Insideygs.com.xml index e7a0d474ae9f..03ac0b3ab0ac 100644 --- a/src/chrome/content/rules/Insideygs.com.xml +++ b/src/chrome/content/rules/Insideygs.com.xml @@ -9,7 +9,7 @@ Fetch error: http://www.insideygs.com/ => https://www.insideygs.com/: (28, 'Conn - adintegration.insideygs.com --> - + diff --git a/src/chrome/content/rules/Insight.xml b/src/chrome/content/rules/Insight.xml index fec0063f4525..6cffe2c3d60f 100644 --- a/src/chrome/content/rules/Insight.xml +++ b/src/chrome/content/rules/Insight.xml @@ -2,7 +2,7 @@ - + diff --git a/src/chrome/content/rules/InsightExpress.com.xml b/src/chrome/content/rules/InsightExpress.com.xml index 1b856d3fd5bf..1c97e39bcdbb 100644 --- a/src/chrome/content/rules/InsightExpress.com.xml +++ b/src/chrome/content/rules/InsightExpress.com.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/InsightExpressai.com.xml b/src/chrome/content/rules/InsightExpressai.com.xml index 3b0a8229b35c..d6f131c3aa98 100644 --- a/src/chrome/content/rules/InsightExpressai.com.xml +++ b/src/chrome/content/rules/InsightExpressai.com.xml @@ -21,7 +21,7 @@ Fetch error: http://icompass.insightexpressai.com/ => https://icompass.insightex - .insightexpressai.com --> - + diff --git a/src/chrome/content/rules/Insinuator.net.xml b/src/chrome/content/rules/Insinuator.net.xml deleted file mode 100644 index 486d1b78ba81..000000000000 --- a/src/chrome/content/rules/Insinuator.net.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Insnw.net.xml b/src/chrome/content/rules/Insnw.net.xml index 6d57e3768bbe..3b6e2e7d9b5f 100644 --- a/src/chrome/content/rules/Insnw.net.xml +++ b/src/chrome/content/rules/Insnw.net.xml @@ -1,5 +1,5 @@ diff --git a/src/chrome/content/rules/Inspectlet.com.xml b/src/chrome/content/rules/Inspectlet.com.xml index afdca2a91326..24e9d82e3e22 100644 --- a/src/chrome/content/rules/Inspectlet.com.xml +++ b/src/chrome/content/rules/Inspectlet.com.xml @@ -20,7 +20,7 @@ - + diff --git a/src/chrome/content/rules/Inspiration_Green.xml b/src/chrome/content/rules/Inspiration_Green.xml deleted file mode 100644 index 50c4cb843f71..000000000000 --- a/src/chrome/content/rules/Inspiration_Green.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Inspire_HEP.net.xml b/src/chrome/content/rules/Inspire_HEP.net.xml index b32cd49a54f7..348bd6ca4eeb 100644 --- a/src/chrome/content/rules/Inspire_HEP.net.xml +++ b/src/chrome/content/rules/Inspire_HEP.net.xml @@ -6,7 +6,7 @@ - + - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Instagr.am.xml b/src/chrome/content/rules/Instagr.am.xml index 89cb1ac309d9..aa6b1d2e5c72 100644 --- a/src/chrome/content/rules/Instagr.am.xml +++ b/src/chrome/content/rules/Instagr.am.xml @@ -1,26 +1,13 @@ - + - + - - - - - + diff --git a/src/chrome/content/rules/Instagram.xml b/src/chrome/content/rules/Instagram.xml deleted file mode 100644 index 27f181727750..000000000000 --- a/src/chrome/content/rules/Instagram.xml +++ /dev/null @@ -1,74 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Instagrampartners.com.xml b/src/chrome/content/rules/Instagrampartners.com.xml index 4efe39ea1bce..3960ba09479b 100644 --- a/src/chrome/content/rules/Instagrampartners.com.xml +++ b/src/chrome/content/rules/Instagrampartners.com.xml @@ -1,5 +1,5 @@ diff --git a/src/chrome/content/rules/InstantChat.io.xml b/src/chrome/content/rules/InstantChat.io.xml index 29b212e5cbb5..d9df49280298 100644 --- a/src/chrome/content/rules/InstantChat.io.xml +++ b/src/chrome/content/rules/InstantChat.io.xml @@ -4,7 +4,7 @@ - + diff --git a/src/chrome/content/rules/Instantbird.org.xml b/src/chrome/content/rules/Instantbird.org.xml index b82d32e95ce7..f5f828d65d2e 100644 --- a/src/chrome/content/rules/Instantbird.org.xml +++ b/src/chrome/content/rules/Instantbird.org.xml @@ -28,7 +28,7 @@ Fetch error: http://wiki.instantbird.org/ => https://wiki.instantbird.org/: (60, - bugzilla.instantbird.org --> - + diff --git a/src/chrome/content/rules/Instart_Logic.com.xml b/src/chrome/content/rules/Instart_Logic.com.xml deleted file mode 100644 index 9890c76ab6d3..000000000000 --- a/src/chrome/content/rules/Instart_Logic.com.xml +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Instella_Platform.xml b/src/chrome/content/rules/Instella_Platform.xml deleted file mode 100644 index 36704a639335..000000000000 --- a/src/chrome/content/rules/Instella_Platform.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Institut-National-des-Sciences-Appliquees.xml b/src/chrome/content/rules/Institut-National-des-Sciences-Appliquees.xml index 1347546ad5cb..cefd66687e76 100644 --- a/src/chrome/content/rules/Institut-National-des-Sciences-Appliquees.xml +++ b/src/chrome/content/rules/Institut-National-des-Sciences-Appliquees.xml @@ -4,7 +4,7 @@ - + - + @@ -65,8 +65,8 @@ Fetch error: http://iopscience.iop.org/ => https://iopscience.iop.org/: (28, 'Op - - + + + + + + + + + diff --git a/src/chrome/content/rules/Instra.xml b/src/chrome/content/rules/Instra.xml index 6382389e5440..72715f9597f3 100644 --- a/src/chrome/content/rules/Instra.xml +++ b/src/chrome/content/rules/Instra.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Instructables.com.xml b/src/chrome/content/rules/Instructables.com.xml index 033633b40cde..1b71e04499b8 100644 --- a/src/chrome/content/rules/Instructables.com.xml +++ b/src/chrome/content/rules/Instructables.com.xml @@ -1,25 +1,8 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Intan.net.xml b/src/chrome/content/rules/Intan.net.xml deleted file mode 100644 index 22ee2b2c3501..000000000000 --- a/src/chrome/content/rules/Intan.net.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Intego.xml b/src/chrome/content/rules/Intego.xml index c4d1129eff64..64181804a427 100644 --- a/src/chrome/content/rules/Intego.xml +++ b/src/chrome/content/rules/Intego.xml @@ -41,8 +41,8 @@ - - + + - - - - - - - - diff --git a/src/chrome/content/rules/Intel-mismatches.xml b/src/chrome/content/rules/Intel-mismatches.xml deleted file mode 100644 index 45a19e73e7c4..000000000000 --- a/src/chrome/content/rules/Intel-mismatches.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Intel.co.uk.xml b/src/chrome/content/rules/Intel.co.uk.xml index 8d7cfe58db22..403545b018ba 100644 --- a/src/chrome/content/rules/Intel.co.uk.xml +++ b/src/chrome/content/rules/Intel.co.uk.xml @@ -1,36 +1,13 @@ - - - - - - + + diff --git a/src/chrome/content/rules/Intel.xml b/src/chrome/content/rules/Intel.xml index 5d2fa937bdf5..472b81cc59e5 100644 --- a/src/chrome/content/rules/Intel.xml +++ b/src/chrome/content/rules/Intel.xml @@ -1,239 +1,70 @@ - - + + - + - - + + + - - + + + - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + diff --git a/src/chrome/content/rules/Intelexit.org.xml b/src/chrome/content/rules/Intelexit.org.xml deleted file mode 100644 index 511472844da7..000000000000 --- a/src/chrome/content/rules/Intelexit.org.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Inteligo.pl.xml b/src/chrome/content/rules/Inteligo.pl.xml new file mode 100644 index 000000000000..2ad3cc8dfd53 --- /dev/null +++ b/src/chrome/content/rules/Inteligo.pl.xml @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Intelli-direct.com.xml b/src/chrome/content/rules/Intelli-direct.com.xml index 5cc667642c2f..f9b50200d82b 100644 --- a/src/chrome/content/rules/Intelli-direct.com.xml +++ b/src/chrome/content/rules/Intelli-direct.com.xml @@ -16,4 +16,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/IntelliResponse.com.xml b/src/chrome/content/rules/IntelliResponse.com.xml new file mode 100644 index 000000000000..df319d0abb96 --- /dev/null +++ b/src/chrome/content/rules/IntelliResponse.com.xml @@ -0,0 +1,108 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Intelligent_Exploit.com.xml b/src/chrome/content/rules/Intelligent_Exploit.com.xml deleted file mode 100644 index 6230e30165cf..000000000000 --- a/src/chrome/content/rules/Intelligent_Exploit.com.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Intelliserver.net.xml b/src/chrome/content/rules/Intelliserver.net.xml index e1ff49450c70..80bafe09ad0c 100644 --- a/src/chrome/content/rules/Intelliserver.net.xml +++ b/src/chrome/content/rules/Intelliserver.net.xml @@ -10,7 +10,7 @@ Fetch error: http://www.intelliserver.net/ => https://www.intelliserver.net/: (5 ^: mismatched --> - + diff --git a/src/chrome/content/rules/Intelliwebservices.com.xml b/src/chrome/content/rules/Intelliwebservices.com.xml index cae6a1f359f3..e0b1c0fd6b20 100644 --- a/src/chrome/content/rules/Intelliwebservices.com.xml +++ b/src/chrome/content/rules/Intelliwebservices.com.xml @@ -1,11 +1,7 @@ - - + - - + diff --git a/src/chrome/content/rules/Intelliworks_Chat.com.xml b/src/chrome/content/rules/Intelliworks_Chat.com.xml index 5a05a54b1bd9..8d379e3b6107 100644 --- a/src/chrome/content/rules/Intelliworks_Chat.com.xml +++ b/src/chrome/content/rules/Intelliworks_Chat.com.xml @@ -1,4 +1,6 @@ - + - - - - - - - - - - + + diff --git a/src/chrome/content/rules/Intelrad.com.xml b/src/chrome/content/rules/Intelrad.com.xml index 3d3224d7e854..da69fe4ec099 100644 --- a/src/chrome/content/rules/Intelrad.com.xml +++ b/src/chrome/content/rules/Intelrad.com.xml @@ -7,7 +7,7 @@ Fetch error: http://www.intelrad.com/ => https://www.intelrad.com/: (7, 'Failed Disabled by https-everywhere-checker because: Non-2xx HTTP code: http://intelrad.com/ (200) => https://intelrad.com/ (400) --> - + diff --git a/src/chrome/content/rules/Intent-Media.xml b/src/chrome/content/rules/Intent-Media.xml deleted file mode 100644 index bc6beb9d0bce..000000000000 --- a/src/chrome/content/rules/Intent-Media.xml +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Inter.net.xml b/src/chrome/content/rules/Inter.net.xml index 188b2988541c..b2e9431364a7 100644 --- a/src/chrome/content/rules/Inter.net.xml +++ b/src/chrome/content/rules/Inter.net.xml @@ -3,7 +3,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://br.inter.net/ => https://br.inter.net/: (60, 'SSL certificate problem: certificate has expired') - www.br.inter.net , owa.br.inter.net , mail.br.inter.net , autodiscover.br.inter.net , br.inter.net + www.br.inter.net , owa.br.inter.net , mail.br.inter.net , autodiscover.br.inter.net , br.inter.net Nonfunctional domains: @@ -21,18 +21,17 @@ Fetch error: http://br.inter.net/ => https://br.inter.net/: (60, 'SSL certificat - www.intersite.mobi (cert: www.br.inter.net; redirects to www.br.inter.net/inicio) --> - + - + + - + - + diff --git a/src/chrome/content/rules/InterContinental_Hotels_Group.xml b/src/chrome/content/rules/InterContinental_Hotels_Group.xml index 198cbf583087..73d5afde2ebf 100644 --- a/src/chrome/content/rules/InterContinental_Hotels_Group.xml +++ b/src/chrome/content/rules/InterContinental_Hotels_Group.xml @@ -53,7 +53,7 @@ Non-2xx HTTP code: http://ihg.com/ (200) => https://www.ihg.com/ (403) - aci-qap.secure.contact.ihg.com --> - + diff --git a/src/chrome/content/rules/InterNetworX.xml b/src/chrome/content/rules/InterNetworX.xml index 5fd821bc1a49..7b8032544df5 100644 --- a/src/chrome/content/rules/InterNetworX.xml +++ b/src/chrome/content/rules/InterNetworX.xml @@ -1,18 +1,18 @@ - + - + - + - + - + - + - + diff --git a/src/chrome/content/rules/InterWorx.xml b/src/chrome/content/rules/InterWorx.xml index 423d140d8aae..efa33fbf0a4f 100644 --- a/src/chrome/content/rules/InterWorx.xml +++ b/src/chrome/content/rules/InterWorx.xml @@ -6,18 +6,19 @@ Fetch error: http://interworx.com/ => https://interworx.com/: Too many redirects Disabled by https-everywhere-checker because: Fetch error: http://interworx.com/ => https://interworx.com/: Cycle detected - URL already encountered: https://www.interworx.com/ --> - + - - + + + + - + - + diff --git a/src/chrome/content/rules/Interactive-Advertising-Bureau.xml b/src/chrome/content/rules/Interactive-Advertising-Bureau.xml index 00118ca45823..3fa9e2b66320 100644 --- a/src/chrome/content/rules/Interactive-Advertising-Bureau.xml +++ b/src/chrome/content/rules/Interactive-Advertising-Bureau.xml @@ -19,7 +19,7 @@ --> - + - + diff --git a/src/chrome/content/rules/Interactive-Media-in-Retail-Group.xml b/src/chrome/content/rules/Interactive-Media-in-Retail-Group.xml index f9d8f9ef5f95..7722115ab415 100644 --- a/src/chrome/content/rules/Interactive-Media-in-Retail-Group.xml +++ b/src/chrome/content/rules/Interactive-Media-in-Retail-Group.xml @@ -12,10 +12,9 @@ - + - + diff --git a/src/chrome/content/rules/Interactive_Data_Corporation.xml b/src/chrome/content/rules/Interactive_Data_Corporation.xml index 6fcbecc01b08..f9c162a4c2f5 100644 --- a/src/chrome/content/rules/Interactive_Data_Corporation.xml +++ b/src/chrome/content/rules/Interactive_Data_Corporation.xml @@ -8,7 +8,11 @@ - + + + + + diff --git a/src/chrome/content/rules/Interactive_Online.xml b/src/chrome/content/rules/Interactive_Online.xml index 48ee426d1ef1..4f2053d7964f 100644 --- a/src/chrome/content/rules/Interactive_Online.xml +++ b/src/chrome/content/rules/Interactive_Online.xml @@ -11,7 +11,11 @@ Fetch error: http://www.interactiveonline.com/ => https://interactiveonline.com/ - + + + + + @@ -20,7 +24,6 @@ Fetch error: http://www.interactiveonline.com/ => https://interactiveonline.com/ - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Interbix.net.xml b/src/chrome/content/rules/Interbix.net.xml new file mode 100644 index 000000000000..08975b16fa3f --- /dev/null +++ b/src/chrome/content/rules/Interbix.net.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Intercom.io.xml b/src/chrome/content/rules/Intercom.io.xml deleted file mode 100644 index 7494bbef01d6..000000000000 --- a/src/chrome/content/rules/Intercom.io.xml +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Intercom_CDN.com.xml b/src/chrome/content/rules/Intercom_CDN.com.xml index a0b0968f11dd..7bc7d8a276b8 100644 --- a/src/chrome/content/rules/Intercom_CDN.com.xml +++ b/src/chrome/content/rules/Intercom_CDN.com.xml @@ -1,7 +1,4 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Intergi.xml b/src/chrome/content/rules/Intergi.xml index 84118b303ae7..614b585fa5e0 100644 --- a/src/chrome/content/rules/Intergi.xml +++ b/src/chrome/content/rules/Intergi.xml @@ -40,7 +40,7 @@ Fetch error: http://app.intergi.com/ => https://app.intergi.com/: (28, 'Connecti - .intergi.com --> - + diff --git a/src/chrome/content/rules/Interia.pl.xml b/src/chrome/content/rules/Interia.pl.xml new file mode 100644 index 000000000000..9931d2994204 --- /dev/null +++ b/src/chrome/content/rules/Interia.pl.xml @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Interkassa.xml b/src/chrome/content/rules/Interkassa.xml index 1f7f4d63d49e..ec90485c906b 100644 --- a/src/chrome/content/rules/Interkassa.xml +++ b/src/chrome/content/rules/Interkassa.xml @@ -8,7 +8,7 @@ - + - + + - + diff --git a/src/chrome/content/rules/Intermundo_Media.com.xml b/src/chrome/content/rules/Intermundo_Media.com.xml index 40e50f25969c..948378bd0314 100644 --- a/src/chrome/content/rules/Intermundo_Media.com.xml +++ b/src/chrome/content/rules/Intermundo_Media.com.xml @@ -17,7 +17,7 @@ Fetch error: http://intermundomedia.com/ => https://intermundomedia.com/: (51, " - media --> - + diff --git a/src/chrome/content/rules/Internap.xml b/src/chrome/content/rules/Internap.xml index ecfe9a83180d..b7519db156c3 100644 --- a/src/chrome/content/rules/Internap.xml +++ b/src/chrome/content/rules/Internap.xml @@ -17,12 +17,14 @@ Non-2xx HTTP code: http://sslcdce.internapcdn.net/ (200) => https://sslcdce.inte - (www.)internap.com --> - + - + + + diff --git a/src/chrome/content/rules/International-Association-for-Cryptologic-Research.xml b/src/chrome/content/rules/International-Association-for-Cryptologic-Research.xml index 227f0f242805..271e16b6be39 100644 --- a/src/chrome/content/rules/International-Association-for-Cryptologic-Research.xml +++ b/src/chrome/content/rules/International-Association-for-Cryptologic-Research.xml @@ -15,7 +15,7 @@ - + - + + - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/International-Finance-Corporation-mismatches.xml b/src/chrome/content/rules/International-Finance-Corporation-mismatches.xml index f94587a6d906..f50d7534e3b2 100644 --- a/src/chrome/content/rules/International-Finance-Corporation-mismatches.xml +++ b/src/chrome/content/rules/International-Finance-Corporation-mismatches.xml @@ -6,7 +6,7 @@ - + diff --git a/src/chrome/content/rules/International-Finance-Corporation.xml b/src/chrome/content/rules/International-Finance-Corporation.xml index 6b4af630e08e..9ab7ef6afee3 100644 --- a/src/chrome/content/rules/International-Finance-Corporation.xml +++ b/src/chrome/content/rules/International-Finance-Corporation.xml @@ -28,7 +28,7 @@ Fetch error: http://www.wbginvestmentclimate.org/ => https://www.wbginvestmentcl See International-Finance-Corporation-mismatches.xml for problematic rules --> - + @@ -42,10 +42,10 @@ Fetch error: http://www.wbginvestmentclimate.org/ => https://www.wbginvestmentcl - + - - + + - + https://isc-events.com/: (60, 'SSL certificate problem: self signed certificate') --> - + - + diff --git a/src/chrome/content/rules/InternationalMan.xml b/src/chrome/content/rules/InternationalMan.xml index 7e0cfe39fd79..f21924112f3d 100644 --- a/src/chrome/content/rules/InternationalMan.xml +++ b/src/chrome/content/rules/InternationalMan.xml @@ -7,7 +7,7 @@ Fetch error: http://www.internationalman.com/ => https://www.internationalman.co Disabled by https-everywhere-checker because: Fetch error: http://internationalman.com/ => https://internationalman.com/: Cycle detected - URL already encountered: https://www.internationalman.com/ --> - + diff --git a/src/chrome/content/rules/International_Association_of_Privacy_Professionals.xml b/src/chrome/content/rules/International_Association_of_Privacy_Professionals.xml index 02f9351acb8e..0fa7f2994bb3 100644 --- a/src/chrome/content/rules/International_Association_of_Privacy_Professionals.xml +++ b/src/chrome/content/rules/International_Association_of_Privacy_Professionals.xml @@ -6,7 +6,7 @@ Fetch error: http://www.privacyassociation.org/ => https://www.privacyassociatio International Association of Privacy Professionals --> - + diff --git a/src/chrome/content/rules/International_Energy_Agency.xml b/src/chrome/content/rules/International_Energy_Agency.xml index 69df339e8444..f21ec93a3e1b 100644 --- a/src/chrome/content/rules/International_Energy_Agency.xml +++ b/src/chrome/content/rules/International_Energy_Agency.xml @@ -10,4 +10,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/International_Financial_Cryptography_Association.xml b/src/chrome/content/rules/International_Financial_Cryptography_Association.xml index 76ab2fb457b4..7349f80f6cda 100644 --- a/src/chrome/content/rules/International_Financial_Cryptography_Association.xml +++ b/src/chrome/content/rules/International_Financial_Cryptography_Association.xml @@ -12,7 +12,7 @@ Fetch error: http://www.ifca.ai/ => https://www.ifca.ai/: (60, 'SSL certificate - fc13 (works; mismatched, CN: www.ifca.ai) --> - + @@ -20,4 +20,4 @@ Fetch error: http://www.ifca.ai/ => https://www.ifca.ai/: (60, 'SSL certificate - \ No newline at end of file + diff --git a/src/chrome/content/rules/International_SOS.xml b/src/chrome/content/rules/International_SOS.xml index 6a3ad1682572..b6f134eb62d1 100644 --- a/src/chrome/content/rules/International_SOS.xml +++ b/src/chrome/content/rules/International_SOS.xml @@ -16,7 +16,7 @@ --> - + https://issh.ac.jp/: (28, 'Connection timed out after 20000 milliseconds') --> - + @@ -15,4 +15,4 @@ Fetch error: http://issh.ac.jp/ => https://issh.ac.jp/: (28, 'Connection timed o - \ No newline at end of file + diff --git a/src/chrome/content/rules/Internet-Archive.xml b/src/chrome/content/rules/Internet-Archive.xml index 42da390360f7..6bd14dac7303 100644 --- a/src/chrome/content/rules/Internet-Archive.xml +++ b/src/chrome/content/rules/Internet-Archive.xml @@ -49,8 +49,7 @@ - + diff --git a/src/chrome/content/rules/Internet-Safety-Project.xml b/src/chrome/content/rules/Internet-Safety-Project.xml index cf6e2cc0ff61..c4fcbcd207ba 100644 --- a/src/chrome/content/rules/Internet-Safety-Project.xml +++ b/src/chrome/content/rules/Internet-Safety-Project.xml @@ -8,6 +8,6 @@ - diff --git a/src/chrome/content/rules/Internet-Society.xml b/src/chrome/content/rules/Internet-Society.xml deleted file mode 100644 index 14aab081c0bc..000000000000 --- a/src/chrome/content/rules/Internet-Society.xml +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Internet.bs.xml b/src/chrome/content/rules/Internet.bs.xml index ff025629cb9f..8692010fc91a 100644 --- a/src/chrome/content/rules/Internet.bs.xml +++ b/src/chrome/content/rules/Internet.bs.xml @@ -8,9 +8,10 @@ - + + - + @@ -22,4 +23,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Internet.org.nz.xml b/src/chrome/content/rules/Internet.org.nz.xml index b80bfd204206..93cd50059b80 100644 --- a/src/chrome/content/rules/Internet.org.nz.xml +++ b/src/chrome/content/rules/Internet.org.nz.xml @@ -6,7 +6,7 @@ Non-2xx HTTP code: http://static.internet.org.nz/ (200) => https://static.intern Internet Party --> - + diff --git a/src/chrome/content/rules/Internet.org.xml b/src/chrome/content/rules/Internet.org.xml deleted file mode 100644 index d57b2482bd7e..000000000000 --- a/src/chrome/content/rules/Internet.org.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Internet2.xml b/src/chrome/content/rules/Internet2.xml index 76cea3276fed..0a2cab4be6bb 100644 --- a/src/chrome/content/rules/Internet2.xml +++ b/src/chrome/content/rules/Internet2.xml @@ -48,7 +48,7 @@ Fetch error: http://mail.internet2.edu/ => https://mail.internet2.edu/: (60, 'SS * Secured by us --> - + diff --git a/src/chrome/content/rules/InternetSociety.org.xml b/src/chrome/content/rules/InternetSociety.org.xml new file mode 100644 index 000000000000..76760cf00c16 --- /dev/null +++ b/src/chrome/content/rules/InternetSociety.org.xml @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/InternetVotes.org.xml b/src/chrome/content/rules/InternetVotes.org.xml deleted file mode 100644 index 4a775e1fc054..000000000000 --- a/src/chrome/content/rules/InternetVotes.org.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/InternetX.com.xml b/src/chrome/content/rules/InternetX.com.xml new file mode 100644 index 000000000000..ddff5eb32c41 --- /dev/null +++ b/src/chrome/content/rules/InternetX.com.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Internet_Brands.xml b/src/chrome/content/rules/Internet_Brands.xml index fcb0e26173b0..b9d1475c4487 100644 --- a/src/chrome/content/rules/Internet_Brands.xml +++ b/src/chrome/content/rules/Internet_Brands.xml @@ -2,65 +2,16 @@ Other Internet Brands rulesets: - Model_Mayhem.xml - - - CDN buckets: - - - wac.2632.edgecastcdn.net - - - cdc.ibsrv.net - - mms.ibsrv.net - - static.ibsrv.net - - www.internetbrands.com - - - Problematic domains: - - - cdc.ibsrv.net (works, mismatched, CN: gp1.wac.edgecastcdn.net) - - mms.ibsrv.net * - - static.ibsrv.net * - - internetbrands.com (expired, mismatched, CN: www.internetbrands.com) - - www.internetbrands.com * - - * 404, mismatched, CN: gp1.wac.edgecastcdn.net - - - Partially covered domains: - - - (www.)internetbrands.com (→ cdcssl.ibsrv.net) - - - Fully covered domains: - - - pxlssl.ibpxl.com - - - ibsrv.net subdomains: - - - cdc (→ cdcssl) - - cdcssl - - mms (→ cdcssl) - - static (→ staticssl) - - staticssl + - IBsrv.net.xml --> - - - - - - - - - + diff --git a/src/chrome/content/rules/Internet_Live_Stats.com.xml b/src/chrome/content/rules/Internet_Live_Stats.com.xml index 640fd38b4c34..adb44c9cd299 100644 --- a/src/chrome/content/rules/Internet_Live_Stats.com.xml +++ b/src/chrome/content/rules/Internet_Live_Stats.com.xml @@ -36,7 +36,7 @@ - + - + diff --git a/src/chrome/content/rules/Internetfonden.se.xml b/src/chrome/content/rules/Internetfonden.se.xml deleted file mode 100644 index 84007a44576a..000000000000 --- a/src/chrome/content/rules/Internetfonden.se.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Internetsuccess.at.xml b/src/chrome/content/rules/Internetsuccess.at.xml index 003f8cee7f63..d9b09f7ef9a2 100644 --- a/src/chrome/content/rules/Internetsuccess.at.xml +++ b/src/chrome/content/rules/Internetsuccess.at.xml @@ -6,10 +6,12 @@ Fetch error: http://internetsuccess.at/ => https://internetsuccess.at/: (51, "SS www: mismatched --> - + - + + + - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Interpol.int.xml b/src/chrome/content/rules/Interpol.int.xml index cbba79286f9f..bd3b2feddbc9 100644 --- a/src/chrome/content/rules/Interpol.int.xml +++ b/src/chrome/content/rules/Interpol.int.xml @@ -1,4 +1,4 @@ - - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Intrepidus_Group.com.xml b/src/chrome/content/rules/Intrepidus_Group.com.xml index e0a06e8bd1b6..dce9d8d5013e 100644 --- a/src/chrome/content/rules/Intrepidus_Group.com.xml +++ b/src/chrome/content/rules/Intrepidus_Group.com.xml @@ -7,7 +7,7 @@ Fetch error: http://www.intrepidusgroup.com/ => https://www.intrepidusgroup.com/ Server is configured for rc4 only. --> - + diff --git a/src/chrome/content/rules/Intuit-problematic.xml b/src/chrome/content/rules/Intuit-problematic.xml deleted file mode 100644 index f7c2ea6f27ed..000000000000 --- a/src/chrome/content/rules/Intuit-problematic.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Intuit.com.xml b/src/chrome/content/rules/Intuit.com.xml new file mode 100644 index 000000000000..f7e0c020177b --- /dev/null +++ b/src/chrome/content/rules/Intuit.com.xml @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Intuit.xml b/src/chrome/content/rules/Intuit.xml deleted file mode 100644 index b15a57b50efb..000000000000 --- a/src/chrome/content/rules/Intuit.xml +++ /dev/null @@ -1,197 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/IntuitPayments.com.xml b/src/chrome/content/rules/IntuitPayments.com.xml new file mode 100644 index 000000000000..ac5036e67a8a --- /dev/null +++ b/src/chrome/content/rules/IntuitPayments.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/IntuitStatic.com.xml b/src/chrome/content/rules/IntuitStatic.com.xml new file mode 100644 index 000000000000..d84b960c86f3 --- /dev/null +++ b/src/chrome/content/rules/IntuitStatic.com.xml @@ -0,0 +1,19 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Intuit_Labs.com.xml b/src/chrome/content/rules/Intuit_Labs.com.xml deleted file mode 100644 index 6672c8e3873f..000000000000 --- a/src/chrome/content/rules/Intuit_Labs.com.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Intuitive_Password.com.xml b/src/chrome/content/rules/Intuitive_Password.com.xml index f8ac6bfba046..56855c44cd09 100644 --- a/src/chrome/content/rules/Intuitive_Password.com.xml +++ b/src/chrome/content/rules/Intuitive_Password.com.xml @@ -12,7 +12,7 @@ - + diff --git a/src/chrome/content/rules/Intux.de.xml b/src/chrome/content/rules/Intux.de.xml index 4c5ac97d7522..8ea516ed56ce 100644 --- a/src/chrome/content/rules/Intux.de.xml +++ b/src/chrome/content/rules/Intux.de.xml @@ -6,7 +6,7 @@ - + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/InvenSense.com.xml b/src/chrome/content/rules/InvenSense.com.xml deleted file mode 100644 index 85ab83e8d18f..000000000000 --- a/src/chrome/content/rules/InvenSense.com.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Invenio-software.org.xml b/src/chrome/content/rules/Invenio-software.org.xml index 0fc8d0cf3833..5140d659e37d 100644 --- a/src/chrome/content/rules/Invenio-software.org.xml +++ b/src/chrome/content/rules/Invenio-software.org.xml @@ -14,7 +14,7 @@ Fetch error: http://www.invenio-software.org/ => https://www.invenio-software.or * Unsecurable <= dropped --> - + diff --git a/src/chrome/content/rules/InventHelp.xml b/src/chrome/content/rules/InventHelp.xml index f42fc085a457..1bcee2a431f6 100644 --- a/src/chrome/content/rules/InventHelp.xml +++ b/src/chrome/content/rules/InventHelp.xml @@ -6,4 +6,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Inventive_Designers.com.xml b/src/chrome/content/rules/Inventive_Designers.com.xml index f88f7a0bc2ba..914efbf0decf 100644 --- a/src/chrome/content/rules/Inventive_Designers.com.xml +++ b/src/chrome/content/rules/Inventive_Designers.com.xml @@ -20,7 +20,7 @@ Fetch error: http://support.inventivedesigners.com/ => https://support.inventive - www.inventivedesigners.com --> - + diff --git a/src/chrome/content/rules/Inverse.xml b/src/chrome/content/rules/Inverse.xml index 56043663d828..34acc18c3d68 100644 --- a/src/chrome/content/rules/Inverse.xml +++ b/src/chrome/content/rules/Inverse.xml @@ -4,7 +4,7 @@ - + diff --git a/src/chrome/content/rules/Investigative-News-Network.xml b/src/chrome/content/rules/Investigative-News-Network.xml deleted file mode 100644 index 0650e2f93476..000000000000 --- a/src/chrome/content/rules/Investigative-News-Network.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Investing-Channel.xml b/src/chrome/content/rules/Investing-Channel.xml deleted file mode 100644 index d216ebb23529..000000000000 --- a/src/chrome/content/rules/Investing-Channel.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Investing.com.xml b/src/chrome/content/rules/Investing.com.xml new file mode 100644 index 000000000000..b829dc50b820 --- /dev/null +++ b/src/chrome/content/rules/Investing.com.xml @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/InvestingChannel.com.xml b/src/chrome/content/rules/InvestingChannel.com.xml new file mode 100644 index 000000000000..3abcbec13180 --- /dev/null +++ b/src/chrome/content/rules/InvestingChannel.com.xml @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Investis.com.xml b/src/chrome/content/rules/Investis.com.xml deleted file mode 100644 index 1cd231d61d02..000000000000 --- a/src/chrome/content/rules/Investis.com.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Investors-in-People.xml b/src/chrome/content/rules/Investors-in-People.xml index a84389739eef..760dc6a96fe5 100644 --- a/src/chrome/content/rules/Investors-in-People.xml +++ b/src/chrome/content/rules/Investors-in-People.xml @@ -3,7 +3,7 @@ - + + + + + + + diff --git a/src/chrome/content/rules/Invidious.tube.xml b/src/chrome/content/rules/Invidious.tube.xml new file mode 100644 index 000000000000..1022b1ed76a7 --- /dev/null +++ b/src/chrome/content/rules/Invidious.tube.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Invidious.xyz.xml b/src/chrome/content/rules/Invidious.xyz.xml new file mode 100644 index 000000000000..89dc00d89715 --- /dev/null +++ b/src/chrome/content/rules/Invidious.xyz.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Invincea.com.xml b/src/chrome/content/rules/Invincea.com.xml index efc40cf49bc0..0c6460060269 100644 --- a/src/chrome/content/rules/Invincea.com.xml +++ b/src/chrome/content/rules/Invincea.com.xml @@ -5,7 +5,8 @@ - + + diff --git a/src/chrome/content/rules/Invisible.institute.xml b/src/chrome/content/rules/Invisible.institute.xml new file mode 100644 index 000000000000..d3ea20ac3cb9 --- /dev/null +++ b/src/chrome/content/rules/Invisible.institute.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Invision-Power-Services.xml b/src/chrome/content/rules/Invision-Power-Services.xml index 95ca478e0adf..94a178933452 100644 --- a/src/chrome/content/rules/Invision-Power-Services.xml +++ b/src/chrome/content/rules/Invision-Power-Services.xml @@ -28,7 +28,7 @@ - + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Invite_Media.xml b/src/chrome/content/rules/Invite_Media.xml deleted file mode 100644 index e575551c5ec2..000000000000 --- a/src/chrome/content/rules/Invite_Media.xml +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Invitel.xml b/src/chrome/content/rules/Invitel.xml deleted file mode 100644 index 8d926f7c99e0..000000000000 --- a/src/chrome/content/rules/Invitel.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Invoca.net.xml b/src/chrome/content/rules/Invoca.net.xml index a547636012a5..e32f56842d23 100644 --- a/src/chrome/content/rules/Invoca.net.xml +++ b/src/chrome/content/rules/Invoca.net.xml @@ -5,7 +5,8 @@ - + + - + - + + + + + + + - + diff --git a/src/chrome/content/rules/Io9.com.xml b/src/chrome/content/rules/Io9.com.xml deleted file mode 100644 index 52530e4c8903..000000000000 --- a/src/chrome/content/rules/Io9.com.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/IoMTT.com.xml b/src/chrome/content/rules/IoMTT.com.xml index 89c63914932c..729f5199f4f1 100644 --- a/src/chrome/content/rules/IoMTT.com.xml +++ b/src/chrome/content/rules/IoMTT.com.xml @@ -23,14 +23,14 @@ - + + - + diff --git a/src/chrome/content/rules/IonicFramework.com.xml b/src/chrome/content/rules/IonicFramework.com.xml new file mode 100644 index 000000000000..1820d3db25d6 --- /dev/null +++ b/src/chrome/content/rules/IonicFramework.com.xml @@ -0,0 +1,22 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Ionic_Framework.com-falsemixed.xml b/src/chrome/content/rules/Ionic_Framework.com-falsemixed.xml deleted file mode 100644 index f5da1e1e6185..000000000000 --- a/src/chrome/content/rules/Ionic_Framework.com-falsemixed.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Ionic_Framework.com.xml b/src/chrome/content/rules/Ionic_Framework.com.xml deleted file mode 100644 index 5fcf5e2b0ccf..000000000000 --- a/src/chrome/content/rules/Ionic_Framework.com.xml +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Iono.fm.xml b/src/chrome/content/rules/Iono.fm.xml index 65c10cef7f3f..a3df11cb2914 100644 --- a/src/chrome/content/rules/Iono.fm.xml +++ b/src/chrome/content/rules/Iono.fm.xml @@ -39,13 +39,9 @@ --> - + - - - + diff --git a/src/chrome/content/rules/Iovation.xml b/src/chrome/content/rules/Iovation.xml index 3bf08cc7dd01..8842117e740c 100644 --- a/src/chrome/content/rules/Iovation.xml +++ b/src/chrome/content/rules/Iovation.xml @@ -14,9 +14,9 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Ipfs.io.xml b/src/chrome/content/rules/Ipfs.io.xml deleted file mode 100644 index 2a72272c3ef9..000000000000 --- a/src/chrome/content/rules/Ipfs.io.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Ipfs.pics.xml b/src/chrome/content/rules/Ipfs.pics.xml deleted file mode 100644 index 3f46f629121d..000000000000 --- a/src/chrome/content/rules/Ipfs.pics.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Iphoneblog.de.xml b/src/chrome/content/rules/Iphoneblog.de.xml index b2215dc7466c..6dd11888f866 100644 --- a/src/chrome/content/rules/Iphoneblog.de.xml +++ b/src/chrome/content/rules/Iphoneblog.de.xml @@ -1,6 +1,6 @@ - + diff --git a/src/chrome/content/rules/Iphonelife.com.xml b/src/chrome/content/rules/Iphonelife.com.xml index 3cfddeceb793..aed79ec23bcd 100644 --- a/src/chrome/content/rules/Iphonelife.com.xml +++ b/src/chrome/content/rules/Iphonelife.com.xml @@ -16,7 +16,7 @@ - + diff --git a/src/chrome/content/rules/Iplay.com.xml b/src/chrome/content/rules/Iplay.com.xml index d2d329fed971..37218ff13f82 100644 --- a/src/chrome/content/rules/Iplay.com.xml +++ b/src/chrome/content/rules/Iplay.com.xml @@ -12,7 +12,8 @@ - + + diff --git a/src/chrome/content/rules/Ipsidixit.net.xml b/src/chrome/content/rules/Ipsidixit.net.xml index ecfbe706137f..67de74f343bc 100644 --- a/src/chrome/content/rules/Ipsidixit.net.xml +++ b/src/chrome/content/rules/Ipsidixit.net.xml @@ -4,13 +4,13 @@ Disabled by https-everywhere-checker because: Fetch error: http://ipsidixit.net/ => https://ipsidixit.net/: (51, "SSL: no alternative certificate subject name matches target host name 'ipsidixit.net'") --> - + - + - + - + - + + + + + + + + + diff --git a/src/chrome/content/rules/Iraqueer.org.xml b/src/chrome/content/rules/Iraqueer.org.xml new file mode 100644 index 000000000000..7bdf51859152 --- /dev/null +++ b/src/chrome/content/rules/Iraqueer.org.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Irish-Country-Cottages.co.uk.xml b/src/chrome/content/rules/Irish-Country-Cottages.co.uk.xml new file mode 100644 index 000000000000..6aa15d4b9599 --- /dev/null +++ b/src/chrome/content/rules/Irish-Country-Cottages.co.uk.xml @@ -0,0 +1,20 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/IrishBroadband.xml b/src/chrome/content/rules/IrishBroadband.xml index dc269d9e4233..1aae84e7fac3 100644 --- a/src/chrome/content/rules/IrishBroadband.xml +++ b/src/chrome/content/rules/IrishBroadband.xml @@ -6,7 +6,7 @@ Fetch error: http://irishbroadband.ie/ => https://www.irishbroadband.ie/: (60, ' Disabled by https-everywhere-checker because: Fetch error: http://irishbroadband.ie/ => https://www.irishbroadband.ie/: (51, "SSL: no alternative certificate subject name matches target host name 'www.irishbroadband.ie'") --> - + diff --git a/src/chrome/content/rules/Ironwhale.com.xml b/src/chrome/content/rules/Ironwhale.com.xml index a7f979d7a9b9..42f3e18e801e 100644 --- a/src/chrome/content/rules/Ironwhale.com.xml +++ b/src/chrome/content/rules/Ironwhale.com.xml @@ -4,13 +4,13 @@ --> - + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Irwin-Law.xml b/src/chrome/content/rules/Irwin-Law.xml index 6c37174d6477..ad43d3564d41 100644 --- a/src/chrome/content/rules/Irwin-Law.xml +++ b/src/chrome/content/rules/Irwin-Law.xml @@ -4,7 +4,7 @@ - + diff --git a/src/chrome/content/rules/Isalo.org.xml b/src/chrome/content/rules/Isalo.org.xml index e89552722e47..5c4ddc42f2ae 100644 --- a/src/chrome/content/rules/Isalo.org.xml +++ b/src/chrome/content/rules/Isalo.org.xml @@ -17,14 +17,14 @@ Fetch error: http://pix.isalo.org/ => https://pix.isalo.org/: (51, "SSL: no alte - css on paste from www.karma.mg ˢ - Images, on: - + - paste from www.karma.mg ˢ - www from $self ˢ ˢ Secured by us --> - + @@ -35,7 +35,7 @@ Fetch error: http://pix.isalo.org/ => https://pix.isalo.org/: (51, "SSL: no alte - + + + + + + diff --git a/src/chrome/content/rules/Iseclab.org.xml b/src/chrome/content/rules/Iseclab.org.xml index b4c5d8a40979..e40e77a970f2 100644 --- a/src/chrome/content/rules/Iseclab.org.xml +++ b/src/chrome/content/rules/Iseclab.org.xml @@ -1,44 +1,20 @@ - - + - - - - - - - - - - + - diff --git a/src/chrome/content/rules/Ishares.com.xml b/src/chrome/content/rules/Ishares.com.xml index 988b2d79db70..77698b3cc878 100644 --- a/src/chrome/content/rules/Ishares.com.xml +++ b/src/chrome/content/rules/Ishares.com.xml @@ -1,5 +1,8 @@ - + + - + + + diff --git a/src/chrome/content/rules/Islam-Globe.com.xml b/src/chrome/content/rules/Islam-Globe.com.xml deleted file mode 100644 index 23bc90e13482..000000000000 --- a/src/chrome/content/rules/Islam-Globe.com.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Islam21c.com.xml b/src/chrome/content/rules/Islam21c.com.xml new file mode 100644 index 000000000000..136e2c8c2cfd --- /dev/null +++ b/src/chrome/content/rules/Islam21c.com.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/IslamAcademy.net.xml b/src/chrome/content/rules/IslamAcademy.net.xml index 15bfc8c66f62..312d45f1a454 100644 --- a/src/chrome/content/rules/IslamAcademy.net.xml +++ b/src/chrome/content/rules/IslamAcademy.net.xml @@ -10,7 +10,7 @@ Fetch error: http://intesab.islamacademy.net/ => https://intesab.islamacademy.ne - www.forum.islamacademy.net --> - + diff --git a/src/chrome/content/rules/IslamHouse.com.xml b/src/chrome/content/rules/IslamHouse.com.xml index 9609ea5885df..e3b1a5a6158b 100644 --- a/src/chrome/content/rules/IslamHouse.com.xml +++ b/src/chrome/content/rules/IslamHouse.com.xml @@ -1,30 +1,26 @@ - - + - - - + - - + diff --git a/src/chrome/content/rules/IslamQA.info.xml b/src/chrome/content/rules/IslamQA.info.xml deleted file mode 100644 index 589727c95472..000000000000 --- a/src/chrome/content/rules/IslamQA.info.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/IslamSpirit.com.xml b/src/chrome/content/rules/IslamSpirit.com.xml new file mode 100644 index 000000000000..9245b1c2e236 --- /dev/null +++ b/src/chrome/content/rules/IslamSpirit.com.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/IslamStory.com.xml b/src/chrome/content/rules/IslamStory.com.xml new file mode 100644 index 000000000000..64f13369002e --- /dev/null +++ b/src/chrome/content/rules/IslamStory.com.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/IslamSyria.com.xml b/src/chrome/content/rules/IslamSyria.com.xml new file mode 100644 index 000000000000..cc328a230ee7 --- /dev/null +++ b/src/chrome/content/rules/IslamSyria.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/IslamToday.net.xml b/src/chrome/content/rules/IslamToday.net.xml index c3dbd18bd6a2..ff9ada647894 100644 --- a/src/chrome/content/rules/IslamToday.net.xml +++ b/src/chrome/content/rules/IslamToday.net.xml @@ -14,7 +14,7 @@ Fetch error: http://dev.islamtoday.net/ => https://dev.islamtoday.net/: (28, 'Op - muntada.islamtoday.net --> - + diff --git a/src/chrome/content/rules/IslamWay.net.xml b/src/chrome/content/rules/IslamWay.net.xml new file mode 100644 index 000000000000..9b26c47122af --- /dev/null +++ b/src/chrome/content/rules/IslamWay.net.xml @@ -0,0 +1,35 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Islamic-Awareness.org.xml b/src/chrome/content/rules/Islamic-Awareness.org.xml new file mode 100644 index 000000000000..fcf85121fda1 --- /dev/null +++ b/src/chrome/content/rules/Islamic-Awareness.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/IslamicBulletin.org.xml b/src/chrome/content/rules/IslamicBulletin.org.xml new file mode 100644 index 000000000000..9b9965d299cf --- /dev/null +++ b/src/chrome/content/rules/IslamicBulletin.org.xml @@ -0,0 +1,14 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/IslamicFiles.net.xml b/src/chrome/content/rules/IslamicFiles.net.xml new file mode 100644 index 000000000000..c2f11474202e --- /dev/null +++ b/src/chrome/content/rules/IslamicFiles.net.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/IslamicPortal.co.uk.xml b/src/chrome/content/rules/IslamicPortal.co.uk.xml new file mode 100644 index 000000000000..a4ceb6de6363 --- /dev/null +++ b/src/chrome/content/rules/IslamicPortal.co.uk.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/IslamicTech.com.xml b/src/chrome/content/rules/IslamicTech.com.xml index e7df03231493..7659cd8919e6 100644 --- a/src/chrome/content/rules/IslamicTech.com.xml +++ b/src/chrome/content/rules/IslamicTech.com.xml @@ -5,7 +5,7 @@ Fetch error: http://bramj.islamictech.com/ => https://bramj.islamictech.com/: la Fetch error: http://soft.islamictech.com/ => https://soft.islamictech.com/: label empty or too long --> - + diff --git a/src/chrome/content/rules/IslamicTextInstitute.co.za.xml b/src/chrome/content/rules/IslamicTextInstitute.co.za.xml new file mode 100644 index 000000000000..caa889e7c0bf --- /dev/null +++ b/src/chrome/content/rules/IslamicTextInstitute.co.za.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Islamophobie.net.xml b/src/chrome/content/rules/Islamophobie.net.xml new file mode 100644 index 000000000000..130115026e76 --- /dev/null +++ b/src/chrome/content/rules/Islamophobie.net.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Islamosaic.com.xml b/src/chrome/content/rules/Islamosaic.com.xml new file mode 100644 index 000000000000..c606dece083e --- /dev/null +++ b/src/chrome/content/rules/Islamosaic.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Island-Savings.xml b/src/chrome/content/rules/Island-Savings.xml index 80955eecf2f4..14e547af427b 100644 --- a/src/chrome/content/rules/Island-Savings.xml +++ b/src/chrome/content/rules/Island-Savings.xml @@ -7,7 +7,7 @@ Fetch error: http://dashband.islandsavings.ca/ => https://dashband.islandsavings - partners.islandsavings.ca --> - + diff --git a/src/chrome/content/rules/Islenzka.net.xml b/src/chrome/content/rules/Islenzka.net.xml index 06df6b830408..3adc7b482a6f 100644 --- a/src/chrome/content/rules/Islenzka.net.xml +++ b/src/chrome/content/rules/Islenzka.net.xml @@ -1,13 +1,5 @@ - - - - diff --git a/src/chrome/content/rules/Islington.gov.uk.xml b/src/chrome/content/rules/Islington.gov.uk.xml index 2e4814546982..a53e2460a6dd 100644 --- a/src/chrome/content/rules/Islington.gov.uk.xml +++ b/src/chrome/content/rules/Islington.gov.uk.xml @@ -42,7 +42,7 @@ - css on touchchoices from $self ᵐ - Images, on: - + - democracy from $self ˢ - www.energyadvice, touchchoices from $self ᵐ @@ -74,7 +74,7 @@ - + https://isohunt.com/: (7, 'Failed to connect - tickets --> - + - + diff --git a/src/chrome/content/rules/Isocket.xml b/src/chrome/content/rules/Isocket.xml deleted file mode 100644 index 5f509ec84d4b..000000000000 --- a/src/chrome/content/rules/Isocket.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Isomorphic_Software.xml b/src/chrome/content/rules/Isomorphic_Software.xml index 25a3050ab68c..e639134521d7 100644 --- a/src/chrome/content/rules/Isomorphic_Software.xml +++ b/src/chrome/content/rules/Isomorphic_Software.xml @@ -15,7 +15,7 @@ Fetch error: http://www.isomorphic.com/ => https://www.isomorphic.com/: (51, "SS Cert only matches www. --> - + diff --git a/src/chrome/content/rules/Isorno.com.xml b/src/chrome/content/rules/Isorno.com.xml index 8f77991b2628..ffe317b28f81 100644 --- a/src/chrome/content/rules/Isorno.com.xml +++ b/src/chrome/content/rules/Isorno.com.xml @@ -5,7 +5,7 @@ - + diff --git a/src/chrome/content/rules/Ispgateway.de.xml b/src/chrome/content/rules/Ispgateway.de.xml deleted file mode 100644 index ff56bc66b7b1..000000000000 --- a/src/chrome/content/rules/Ispgateway.de.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Issuu_Aps.xml b/src/chrome/content/rules/Issuu_Aps.xml index bbaf9f049570..463a0103b391 100644 --- a/src/chrome/content/rules/Issuu_Aps.xml +++ b/src/chrome/content/rules/Issuu_Aps.xml @@ -5,16 +5,11 @@ - Isu.pub.xml - - CDN buckets: - - - s3.amazonaws.com/feed.issuu.com/ - - s3.amazonaws.com/sidebar.issuu.com/ - - Nonfunctional hosts in *issuu.com: - help * + - feed * + - sidebar * * Zendesk / redirects to http @@ -23,7 +18,7 @@ - issuu.com - .issuu.com - + --> @@ -39,9 +34,7 @@ - - @@ -64,10 +57,6 @@ - - - diff --git a/src/chrome/content/rules/Ist-track.com.xml b/src/chrome/content/rules/Ist-track.com.xml index e8fda5ca1200..ecacf9702b02 100644 --- a/src/chrome/content/rules/Ist-track.com.xml +++ b/src/chrome/content/rules/Ist-track.com.xml @@ -5,7 +5,7 @@ - + https://istanbulhs.org/: (52, 'Empty repl Fetch error: http://www.istanbulhs.org/ => https://www.istanbulhs.org/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/Istio.io.xml b/src/chrome/content/rules/Istio.io.xml new file mode 100644 index 000000000000..8c78698a10fa --- /dev/null +++ b/src/chrome/content/rules/Istio.io.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Isu.pub.xml b/src/chrome/content/rules/Isu.pub.xml index 1607fd4e9d7d..ebb900915810 100644 --- a/src/chrome/content/rules/Isu.pub.xml +++ b/src/chrome/content/rules/Isu.pub.xml @@ -11,7 +11,7 @@ - + http://www.isyvmon.com/: (28, 'Connectio - \ No newline at end of file + diff --git a/src/chrome/content/rules/ItHappens.me.xml b/src/chrome/content/rules/ItHappens.me.xml new file mode 100644 index 000000000000..b32e3be4789e --- /dev/null +++ b/src/chrome/content/rules/ItHappens.me.xml @@ -0,0 +1,11 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/ItHappens.ru.xml b/src/chrome/content/rules/ItHappens.ru.xml new file mode 100644 index 000000000000..1c07ea3a1943 --- /dev/null +++ b/src/chrome/content/rules/ItHappens.ru.xml @@ -0,0 +1,11 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Italian-Country-Cottages.co.uk.xml b/src/chrome/content/rules/Italian-Country-Cottages.co.uk.xml new file mode 100644 index 000000000000..97e716ac0d67 --- /dev/null +++ b/src/chrome/content/rules/Italian-Country-Cottages.co.uk.xml @@ -0,0 +1,20 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Italien-Facile.com.xml b/src/chrome/content/rules/Italien-Facile.com.xml new file mode 100644 index 000000000000..0ad437dae1c5 --- /dev/null +++ b/src/chrome/content/rules/Italien-Facile.com.xml @@ -0,0 +1,11 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Itbiz.cz.xml b/src/chrome/content/rules/Itbiz.cz.xml index 6204aece1075..fba34df0eff5 100644 --- a/src/chrome/content/rules/Itbiz.cz.xml +++ b/src/chrome/content/rules/Itbiz.cz.xml @@ -35,7 +35,7 @@ --> - + https://001.img.qf.56.itc.cn/: (6, 'Could not resolve host: 001.img.qf.56.itc.cn') +Fetch error: http://002.img.qf.56.itc.cn/ => https://002.img.qf.56.itc.cn/: (6, 'Could not resolve host: 002.img.qf.56.itc.cn') +Fetch error: http://003.img.qf.56.itc.cn/ => https://003.img.qf.56.itc.cn/: (6, 'Could not resolve host: 003.img.qf.56.itc.cn') +Fetch error: http://004.img.qf.56.itc.cn/ => https://004.img.qf.56.itc.cn/: (6, 'Could not resolve host: 004.img.qf.56.itc.cn') +Fetch error: http://005.img.qf.56.itc.cn/ => https://005.img.qf.56.itc.cn/: (6, 'Could not resolve host: 005.img.qf.56.itc.cn') +Fetch error: http://s0.life.itc.cn/ => https://s0.life.itc.cn/: (51, "SSL: no alternative certificate subject name matches target host name 's0.life.itc.cn'") + + Mismatched: + i7.17173.itc.cn http://i7.17173.itc.cn/2010/dnf/2010/11/11/jiangsu001.jpg + i8.17173.itc.cn http://i8.17173.itc.cn/2010/dnf/2010/11/11/jiangsu002.jpg + + Server error: + i7.itc.cn + All images on i7.itc.cn get error: The requested URL '*' was not found on this server. + We can get some evidence from http://tl.cibmall.net/information_weapon_shengqi_1f.html : + http://i7.itc.cn/20080722/688_b196b007_b0e1_4a9f_aa02_43b211cecf96_1.jpg + http://tl.cibmall.net/images/weapon/information_weapon_shengqi_1f_clip_image001.jpg should be equal to http://i7.itc.cn/20080722/688_b196b007_b0e1_4a9f_aa02_43b211cecf96_1.jpg + We cannot get i7.itc.cn, however, https://i0.itc.cn/20080722/688_b196b007_b0e1_4a9f_aa02_43b211cecf96_1.jpg is equal to http://tl.cibmall.net/images/weapon/information_weapon_shengqi_1f_clip_image001.jpg. + Nonfunctional: + changyan.itc.cn +--> - - - - - + + + + + - - @@ -21,13 +44,21 @@ - + + + + + + + - + + + @@ -46,7 +77,9 @@ - + + + diff --git a/src/chrome/content/rules/Itex.xml b/src/chrome/content/rules/Itex.xml index d2f8772de519..648997d6d1f9 100644 --- a/src/chrome/content/rules/Itex.xml +++ b/src/chrome/content/rules/Itex.xml @@ -1,9 +1,9 @@ - + - + diff --git a/src/chrome/content/rules/Ithenticate.com.xml b/src/chrome/content/rules/Ithenticate.com.xml new file mode 100644 index 000000000000..ead29016ee8c --- /dev/null +++ b/src/chrome/content/rules/Ithenticate.com.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ItsAnHonour.xml b/src/chrome/content/rules/ItsAnHonour.xml deleted file mode 100644 index 1fa2c9af20f8..000000000000 --- a/src/chrome/content/rules/ItsAnHonour.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Ittisaq.com.xml b/src/chrome/content/rules/Ittisaq.com.xml new file mode 100644 index 000000000000..680e454b3440 --- /dev/null +++ b/src/chrome/content/rules/Ittisaq.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Iv.lt.xml b/src/chrome/content/rules/Iv.lt.xml index 1d6b7ac21792..218dd973f12b 100644 --- a/src/chrome/content/rules/Iv.lt.xml +++ b/src/chrome/content/rules/Iv.lt.xml @@ -16,14 +16,18 @@ - + + + + + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Ivarch.com.xml b/src/chrome/content/rules/Ivarch.com.xml deleted file mode 100644 index 9f09b05a8b74..000000000000 --- a/src/chrome/content/rules/Ivarch.com.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Ivorde.com.xml b/src/chrome/content/rules/Ivorde.com.xml deleted file mode 100644 index 3a028944fbb0..000000000000 --- a/src/chrome/content/rules/Ivorde.com.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Ivwbox.de.xml b/src/chrome/content/rules/Ivwbox.de.xml index 65723a6c9889..60500fd5ae88 100644 --- a/src/chrome/content/rules/Ivwbox.de.xml +++ b/src/chrome/content/rules/Ivwbox.de.xml @@ -26,4 +26,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Iweps.be.xml b/src/chrome/content/rules/Iweps.be.xml new file mode 100644 index 000000000000..6a1f98ca3daa --- /dev/null +++ b/src/chrome/content/rules/Iweps.be.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Ix.de.xml b/src/chrome/content/rules/Ix.de.xml index ceb72a31e11d..52c28ac9fb11 100644 --- a/src/chrome/content/rules/Ix.de.xml +++ b/src/chrome/content/rules/Ix.de.xml @@ -7,7 +7,7 @@ Fetch error: http://3.f.ix.de/ => https://3.f.ix.de/: (6, 'Could not resolve hos For other Heise coverage, see Heise.de.xml. --> - + diff --git a/src/chrome/content/rules/Ixbt.com.xml b/src/chrome/content/rules/Ixbt.com.xml new file mode 100644 index 000000000000..4b0a779bbb5b --- /dev/null +++ b/src/chrome/content/rules/Ixbt.com.xml @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Izvestia.ru.xml b/src/chrome/content/rules/Izvestia.ru.xml index 4ed7e4b5c3d9..4718b82292a9 100644 --- a/src/chrome/content/rules/Izvestia.ru.xml +++ b/src/chrome/content/rules/Izvestia.ru.xml @@ -17,7 +17,7 @@ Timeout: admin.izvestia.ru oauth-admin.izvestia.ru --> - + diff --git a/src/chrome/content/rules/JAMA-Network.xml b/src/chrome/content/rules/JAMA-Network.xml index 3a82d21aef61..cb2665632534 100644 --- a/src/chrome/content/rules/JAMA-Network.xml +++ b/src/chrome/content/rules/JAMA-Network.xml @@ -56,17 +56,27 @@ - + + + + + + + + + + + + - + - + diff --git a/src/chrome/content/rules/JAMF_Software.com.xml b/src/chrome/content/rules/JAMF_Software.com.xml index f25f70123c0f..e37ad99af510 100644 --- a/src/chrome/content/rules/JAMF_Software.com.xml +++ b/src/chrome/content/rules/JAMF_Software.com.xml @@ -1,20 +1,17 @@ - - + - - - - - + + + + + + + - diff --git a/src/chrome/content/rules/JANET.xml b/src/chrome/content/rules/JANET.xml index cffae37de56d..8d65a55c2afc 100644 --- a/src/chrome/content/rules/JANET.xml +++ b/src/chrome/content/rules/JANET.xml @@ -17,10 +17,11 @@ Fetch error: http://ja.net/ => https://www.ja.net/: (6, 'Could not resolve host: --> - + + + - + diff --git a/src/chrome/content/rules/JBeekman.nl.xml b/src/chrome/content/rules/JBeekman.nl.xml index c5c491638dcc..1d51e40839fd 100644 --- a/src/chrome/content/rules/JBeekman.nl.xml +++ b/src/chrome/content/rules/JBeekman.nl.xml @@ -14,7 +14,7 @@ - + - - - - - - - - - diff --git a/src/chrome/content/rules/JBoss.xml b/src/chrome/content/rules/JBoss.xml index cc676541329d..9853165be553 100644 --- a/src/chrome/content/rules/JBoss.xml +++ b/src/chrome/content/rules/JBoss.xml @@ -13,7 +13,7 @@ Fetch error: http://jboss.jboss.org/ => https://jboss.jboss.org/: (6, 'Could not - issues.jboss.org --> - + @@ -40,7 +40,7 @@ Fetch error: http://jboss.jboss.org/ => https://jboss.jboss.org/: (6, 'Could not - + + + + + + + + + + diff --git a/src/chrome/content/rules/JD.com-CIties.xml b/src/chrome/content/rules/JD.com-CIties.xml deleted file mode 100644 index 404dfd940298..000000000000 --- a/src/chrome/content/rules/JD.com-CIties.xml +++ /dev/null @@ -1,308 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/JD.com-Cities.xml b/src/chrome/content/rules/JD.com-Cities.xml new file mode 100644 index 000000000000..4b06ae80a25e --- /dev/null +++ b/src/chrome/content/rules/JD.com-Cities.xml @@ -0,0 +1,296 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/JD.com-Problematic.xml b/src/chrome/content/rules/JD.com-Problematic.xml deleted file mode 100644 index b92cb1bb44c8..000000000000 --- a/src/chrome/content/rules/JD.com-Problematic.xml +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/JD.com.xml b/src/chrome/content/rules/JD.com.xml index 12693a5a3775..5ca6945603e0 100644 --- a/src/chrome/content/rules/JD.com.xml +++ b/src/chrome/content/rules/JD.com.xml @@ -4,8 +4,6 @@ - 360buy.com.xml - 360buyimg.com.xml - Jcloud.com.xml - - JD.com-Cities.xml - - JD.com-Problematic.xml - JD.hk.xml Nonfunctional hosts in *jd.com: @@ -41,23 +39,15 @@ ⁵ Reset * Timeout - Problematic hosts in *jd.com: - - licai.bx * - - chat2 ³ - - cread.e * - - fashion * - - gongyi ⁴ - - ir * - - misc.jzt * - - nj * - - click.union * - - ccc.x * - - ¹ Mixed css - * Mismatched - ³ Weak DHE key - ⁴ Mixed flash - ⁵ Mixed iframe + Mismatched: + - licai.bx + - cread.e + - fashion + - ir + - misc.jzt + - nj + - click.union + - ccc.x Insecure cookies are set for these domains and hosts: - .jd.com @@ -73,63 +63,51 @@ - xjzt.jd.com - zhaopin.jd.com - Mixed content: - - reg.jd.com/reg/$ - - Flash on gongyi from player.youku.com - - Images, on: - - baby, china from tp4.sinaimg.cn * - - jzt from misc.jzt.jd.com - - me from storage.jd.com * - - safe from authcode.jd.com * - - Bugs, on: - - baby, china, gongyi, shouji from widget.weibo.com * - - zx from wpa.qq.com - - * Secured by us - Redirect to www.jd.com : - item.jd.com/$ Too many redirects: - - ^ - - ccc - group - huishou - - list - market - mine - - sale - sq - storage - - www - - x --> - + + + + + + - - + + + + + @@ -144,7 +122,6 @@ - @@ -161,7 +138,7 @@ - + @@ -171,10 +148,11 @@ + + - @@ -184,14 +162,15 @@ - - + + + @@ -219,6 +198,11 @@ + + + + + @@ -229,6 +213,12 @@ + + + + + + @@ -255,10 +245,7 @@ - - - - + @@ -267,17 +254,15 @@ - - + - diff --git a/src/chrome/content/rules/JD.hk.xml b/src/chrome/content/rules/JD.hk.xml index 6f73e207c254..32f593def98e 100644 --- a/src/chrome/content/rules/JD.hk.xml +++ b/src/chrome/content/rules/JD.hk.xml @@ -23,7 +23,7 @@ - + https://www.jdkasten.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.jdkasten.com'") --> - + diff --git a/src/chrome/content/rules/JDpay.com.xml b/src/chrome/content/rules/JDpay.com.xml index 98ae4564a6ee..66b955194c7f 100644 --- a/src/chrome/content/rules/JDpay.com.xml +++ b/src/chrome/content/rules/JDpay.com.xml @@ -28,7 +28,7 @@ --> - + https://www.jedec.com/: (51, "SSL: no alte - .jedec.com --> - + diff --git a/src/chrome/content/rules/JF-Shea-Co.xml b/src/chrome/content/rules/JF-Shea-Co.xml index fefcc99de8ee..23c94d01eba9 100644 --- a/src/chrome/content/rules/JF-Shea-Co.xml +++ b/src/chrome/content/rules/JF-Shea-Co.xml @@ -20,9 +20,9 @@ - - - + + + - + - + - + diff --git a/src/chrome/content/rules/JH.edu.xml b/src/chrome/content/rules/JH.edu.xml index 1d5cad5f57ac..ef238dee902c 100644 --- a/src/chrome/content/rules/JH.edu.xml +++ b/src/chrome/content/rules/JH.edu.xml @@ -25,7 +25,7 @@ - + - + - + https://forum.jide.com/: (28, 'Connection Non-functional subdomain: - www (404 not found) --> - + diff --git a/src/chrome/content/rules/JISCMail.xml b/src/chrome/content/rules/JISCMail.xml index ef2795aefc16..c1c151a651c5 100644 --- a/src/chrome/content/rules/JISCMail.xml +++ b/src/chrome/content/rules/JISCMail.xml @@ -4,13 +4,13 @@ Disabled by https-everywhere-checker because: Fetch error: http://jiscmail.ac.uk/ => https://jiscmail.ac.uk/: (51, "SSL: no alternative certificate subject name matches target host name 'jiscmail.ac.uk'") --> - + - + https://www.jlist.com/: (28, 'Operation timed out after 0 milliseconds with 0 out of 0 bytes received') - - Other J-List rulesets: - + Other J-List related rulesets: - jbox.com.xml + Non-functional hosts + Peer certificate cannot be authenticated with given CA certificates: + - devo.jlist.com - CDN buckets: - - - s3.amazonaws.com/images3.jlist.com/ - - jlist-images.s3.amazonaws.com - - d1ct5r26oaip1n.cloudfront.net - - - Nonfunctional hosts in *jlist.com: - - - feeds ᵃ - - ᵃ Shows ^jlist.com - - - Insecure cookies are set for these domains: - - - .jlist.com - + Incomplete certificate chain error: + - devo2.jlist.com --> - - - + - + + + + + + + + - - - - - - - - - - - - - - + + diff --git a/src/chrome/content/rules/JML_Direct.com.xml b/src/chrome/content/rules/JML_Direct.com.xml index 1663e7e55815..f39a3cad01f2 100644 --- a/src/chrome/content/rules/JML_Direct.com.xml +++ b/src/chrome/content/rules/JML_Direct.com.xml @@ -21,10 +21,10 @@ Fetch error: http://jmldirect.uat.venda.com/ => http://jmldirect.uat.venda.com/: * Secured by us --> - + - + diff --git a/src/chrome/content/rules/JPCERT.xml b/src/chrome/content/rules/JPCERT.xml index 7f94d7e51f6e..b1804fc69b19 100644 --- a/src/chrome/content/rules/JPCERT.xml +++ b/src/chrome/content/rules/JPCERT.xml @@ -1,5 +1,17 @@ + - + + - + + + diff --git a/src/chrome/content/rules/JPCSP.org.xml b/src/chrome/content/rules/JPCSP.org.xml new file mode 100644 index 000000000000..03b917bf66b8 --- /dev/null +++ b/src/chrome/content/rules/JPCSP.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/JQuery.org.xml b/src/chrome/content/rules/JQuery.org.xml index c969734fdd59..9b9b9ed88eb6 100644 --- a/src/chrome/content/rules/JQuery.org.xml +++ b/src/chrome/content/rules/JQuery.org.xml @@ -28,7 +28,7 @@ --> - + https://archives.jres.org/: (60, 'SSL - www --> - + diff --git a/src/chrome/content/rules/JREast.co.jp.xml b/src/chrome/content/rules/JREast.co.jp.xml new file mode 100644 index 000000000000..db98bb31108a --- /dev/null +++ b/src/chrome/content/rules/JREast.co.jp.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/JS.org.xml b/src/chrome/content/rules/JS.org.xml new file mode 100644 index 000000000000..1bd6855c4d7b --- /dev/null +++ b/src/chrome/content/rules/JS.org.xml @@ -0,0 +1,1800 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/JSBi.org.xml b/src/chrome/content/rules/JSBi.org.xml index 5d7c80d6cb38..54f8de8e7547 100644 --- a/src/chrome/content/rules/JSBi.org.xml +++ b/src/chrome/content/rules/JSBi.org.xml @@ -2,13 +2,13 @@ NB: Server sends no certificate chain, see https://whatsmychaincert.com --> - + - + + + + + + + + + + + + diff --git a/src/chrome/content/rules/JSON-Schema.org.xml b/src/chrome/content/rules/JSON-Schema.org.xml new file mode 100644 index 000000000000..43f54afecee8 --- /dev/null +++ b/src/chrome/content/rules/JSON-Schema.org.xml @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/JSXC.org.xml b/src/chrome/content/rules/JSXC.org.xml new file mode 100644 index 000000000000..c7f4aa4457d5 --- /dev/null +++ b/src/chrome/content/rules/JSXC.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/JUA.com.xml b/src/chrome/content/rules/JUA.com.xml index 5385232e4eab..c1819c7b80dc 100644 --- a/src/chrome/content/rules/JUA.com.xml +++ b/src/chrome/content/rules/JUA.com.xml @@ -12,7 +12,7 @@ Fetch error: http://jua.com/ => https://www.jua.com/: (51, "SSL: no alternative - www.jua.com --> - + diff --git a/src/chrome/content/rules/JUCY-New-Zealand.xml b/src/chrome/content/rules/JUCY-New-Zealand.xml index 729434d70c22..4d439edf0085 100644 --- a/src/chrome/content/rules/JUCY-New-Zealand.xml +++ b/src/chrome/content/rules/JUCY-New-Zealand.xml @@ -14,7 +14,7 @@ Fetch error: http://jucy.co.nz/ => https://jucy.co.nz/: (51, "SSL: no alternativ ¹ Hostname mismatch --> - + diff --git a/src/chrome/content/rules/JUKI.xml b/src/chrome/content/rules/JUKI.xml index 17fe44161683..5b58ab1e9c89 100644 --- a/src/chrome/content/rules/JUKI.xml +++ b/src/chrome/content/rules/JUKI.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/JULAC.org.xml b/src/chrome/content/rules/JULAC.org.xml new file mode 100644 index 000000000000..7fc41f4f3bbc --- /dev/null +++ b/src/chrome/content/rules/JULAC.org.xml @@ -0,0 +1,11 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/JWChat.org.xml b/src/chrome/content/rules/JWChat.org.xml index c8ac63c7da34..c397259d44c8 100644 --- a/src/chrome/content/rules/JWChat.org.xml +++ b/src/chrome/content/rules/JWChat.org.xml @@ -4,7 +4,7 @@ * See https://whatsmychaincert.com --> - + diff --git a/src/chrome/content/rules/JW_Platform.com.xml b/src/chrome/content/rules/JW_Platform.com.xml index 4f3dec29449e..28abd809a2c4 100644 --- a/src/chrome/content/rules/JW_Platform.com.xml +++ b/src/chrome/content/rules/JW_Platform.com.xml @@ -1,36 +1,22 @@ + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - + diff --git a/src/chrome/content/rules/JXT.net.au.xml b/src/chrome/content/rules/JXT.net.au.xml index ce378fd75196..f3159600c79f 100644 --- a/src/chrome/content/rules/JXT.net.au.xml +++ b/src/chrome/content/rules/JXT.net.au.xml @@ -9,4 +9,4 @@ Fetch error: http://images.jxt.net.au/ => https://images.jxt.net.au/: (60, 'SSL - \ No newline at end of file + diff --git a/src/chrome/content/rules/J_Deslippe.com.xml b/src/chrome/content/rules/J_Deslippe.com.xml index 7fc02614034e..a499d9be57ed 100644 --- a/src/chrome/content/rules/J_Deslippe.com.xml +++ b/src/chrome/content/rules/J_Deslippe.com.xml @@ -10,7 +10,7 @@ Fetch error: http://www.jdeslippe.com/ => https://www.jdeslippe.com/: (35, 'Unkn ^: mismatched, CN: jdeslip.com --> - + diff --git a/src/chrome/content/rules/JabJab.de.xml b/src/chrome/content/rules/JabJab.de.xml deleted file mode 100644 index 845518ea8106..000000000000 --- a/src/chrome/content/rules/JabJab.de.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/JabRef.org.xml b/src/chrome/content/rules/JabRef.org.xml new file mode 100644 index 000000000000..7e3329847725 --- /dev/null +++ b/src/chrome/content/rules/JabRef.org.xml @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/JabbR.net.xml b/src/chrome/content/rules/JabbR.net.xml index fba2dceb109c..8899cb01c721 100644 --- a/src/chrome/content/rules/JabbR.net.xml +++ b/src/chrome/content/rules/JabbR.net.xml @@ -6,10 +6,9 @@ Fetch error: http://jabbr.net/ => https://jabbr.net/: (51, "SSL: no alternative www doesn't exist. --> - + - - + diff --git a/src/chrome/content/rules/Jabber.org.xml b/src/chrome/content/rules/Jabber.org.xml new file mode 100644 index 000000000000..5aa4718036ef --- /dev/null +++ b/src/chrome/content/rules/Jabber.org.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Jabberd.org.xml b/src/chrome/content/rules/Jabberd.org.xml deleted file mode 100644 index 94b47cb47135..000000000000 --- a/src/chrome/content/rules/Jabberd.org.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Jack_Imaging.com.xml b/src/chrome/content/rules/Jack_Imaging.com.xml index d21b236a6b0f..2bdf03dc6057 100644 --- a/src/chrome/content/rules/Jack_Imaging.com.xml +++ b/src/chrome/content/rules/Jack_Imaging.com.xml @@ -12,7 +12,9 @@ - + + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Jackson_Sun.xml b/src/chrome/content/rules/Jackson_Sun.xml index 33e7cb957490..a6cf964afb5e 100644 --- a/src/chrome/content/rules/Jackson_Sun.xml +++ b/src/chrome/content/rules/Jackson_Sun.xml @@ -11,7 +11,8 @@ - + + - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Jacob_Langvad_Nilsson.xml b/src/chrome/content/rules/Jacob_Langvad_Nilsson.xml deleted file mode 100644 index 72aed1fb1d83..000000000000 --- a/src/chrome/content/rules/Jacob_Langvad_Nilsson.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Jacqueline_Gold.xml b/src/chrome/content/rules/Jacqueline_Gold.xml index b7668212ad09..0c74652a471c 100644 --- a/src/chrome/content/rules/Jacqueline_Gold.xml +++ b/src/chrome/content/rules/Jacqueline_Gold.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Jadu.net.xml b/src/chrome/content/rules/Jadu.net.xml index 1446307dacad..fc587a373eb5 100644 --- a/src/chrome/content/rules/Jadu.net.xml +++ b/src/chrome/content/rules/Jadu.net.xml @@ -34,7 +34,7 @@ - + diff --git a/src/chrome/content/rules/Jailbreaking_Is_Not_a_Crime.org.xml b/src/chrome/content/rules/Jailbreaking_Is_Not_a_Crime.org.xml deleted file mode 100644 index f61ed0032620..000000000000 --- a/src/chrome/content/rules/Jailbreaking_Is_Not_a_Crime.org.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Jaim.at.xml b/src/chrome/content/rules/Jaim.at.xml index 89a2a280dc53..d424283622d5 100644 --- a/src/chrome/content/rules/Jaim.at.xml +++ b/src/chrome/content/rules/Jaim.at.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://jaim.at/ => https://jaim.at/: (28, 'Connection timed out after 20001 milliseconds') --> - + diff --git a/src/chrome/content/rules/Jakpost.net.xml b/src/chrome/content/rules/Jakpost.net.xml new file mode 100644 index 000000000000..877559a4a29b --- /dev/null +++ b/src/chrome/content/rules/Jakpost.net.xml @@ -0,0 +1,12 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Jalopnik.com.xml b/src/chrome/content/rules/Jalopnik.com.xml deleted file mode 100644 index 568226a8ad6b..000000000000 --- a/src/chrome/content/rules/Jalopnik.com.xml +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/JamPlay.xml b/src/chrome/content/rules/JamPlay.xml index e347a2ac7662..27b0e0021a8b 100644 --- a/src/chrome/content/rules/JamPlay.xml +++ b/src/chrome/content/rules/JamPlay.xml @@ -2,4 +2,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Jamalon.com.xml b/src/chrome/content/rules/Jamalon.com.xml new file mode 100644 index 000000000000..0bf24125dbc1 --- /dev/null +++ b/src/chrome/content/rules/Jamalon.com.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Jambit.xml b/src/chrome/content/rules/Jambit.xml index 308a2f017604..5c6e38ea8556 100644 --- a/src/chrome/content/rules/Jambit.xml +++ b/src/chrome/content/rules/Jambit.xml @@ -3,7 +3,7 @@ - + diff --git a/src/chrome/content/rules/Jamendo.com.xml b/src/chrome/content/rules/Jamendo.com.xml index ee75b120ec9d..e3ee07f562a5 100644 --- a/src/chrome/content/rules/Jamendo.com.xml +++ b/src/chrome/content/rules/Jamendo.com.xml @@ -1,46 +1,15 @@ - - + @@ -48,18 +17,7 @@ + - - - - - - - - - - - + diff --git a/src/chrome/content/rules/Jamendo.xml b/src/chrome/content/rules/Jamendo.xml deleted file mode 100644 index 7989f37045d7..000000000000 --- a/src/chrome/content/rules/Jamendo.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - diff --git a/src/chrome/content/rules/JamesVillas.co.uk.xml b/src/chrome/content/rules/JamesVillas.co.uk.xml new file mode 100644 index 000000000000..96de1e0f29a3 --- /dev/null +++ b/src/chrome/content/rules/JamesVillas.co.uk.xml @@ -0,0 +1,33 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Jamesthebard.net.xml b/src/chrome/content/rules/Jamesthebard.net.xml index ffba3610b5cd..688893a86685 100644 --- a/src/chrome/content/rules/Jamesthebard.net.xml +++ b/src/chrome/content/rules/Jamesthebard.net.xml @@ -31,7 +31,7 @@ - + https://www.jamieoliver.com/: Too ma c466531.ssl.cf0.rackcdn.com --> - + - + diff --git a/src/chrome/content/rules/Jammerbugt.dk-mixedcontent.xml b/src/chrome/content/rules/Jammerbugt.dk-mixedcontent.xml deleted file mode 100644 index 1f7925d14132..000000000000 --- a/src/chrome/content/rules/Jammerbugt.dk-mixedcontent.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - diff --git a/src/chrome/content/rules/Jammerbugt.dk.xml b/src/chrome/content/rules/Jammerbugt.dk.xml index a811dc9a46da..3e2d75a916e3 100644 --- a/src/chrome/content/rules/Jammerbugt.dk.xml +++ b/src/chrome/content/rules/Jammerbugt.dk.xml @@ -1,14 +1,14 @@ + + + diff --git a/src/chrome/content/rules/JanDan.net.xml b/src/chrome/content/rules/JanDan.net.xml index ab5ca83c2d43..2edef7e5caf7 100644 --- a/src/chrome/content/rules/JanDan.net.xml +++ b/src/chrome/content/rules/JanDan.net.xml @@ -1,22 +1,30 @@ + Problematic domains in *jandan.net: - + - www (expects client certificate) + - s (redirects to http) + - wan (TLS error) + - feed (no https) - - - +--> + + + + + + + + + + - diff --git a/src/chrome/content/rules/JanRain.xml b/src/chrome/content/rules/JanRain.xml index cfd8c15bbb64..fd6847c03c94 100644 --- a/src/chrome/content/rules/JanRain.xml +++ b/src/chrome/content/rules/JanRain.xml @@ -1,57 +1,25 @@ - - - - - - - - - - - - - - - - - + + + + + + + - + + diff --git a/src/chrome/content/rules/JanRainCapture.com.xml b/src/chrome/content/rules/JanRainCapture.com.xml new file mode 100644 index 000000000000..e8205f1f0213 --- /dev/null +++ b/src/chrome/content/rules/JanRainCapture.com.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Janalta.com.xml b/src/chrome/content/rules/Janalta.com.xml index 829f2842cd55..ea06b97df612 100644 --- a/src/chrome/content/rules/Janalta.com.xml +++ b/src/chrome/content/rules/Janalta.com.xml @@ -8,7 +8,6 @@ Fully covered subdomains: - - ftp.amazonweb1 - cdn (→ d2hcl8anv7xxg0.cloudfront.net) - www @@ -26,17 +25,10 @@ --> + + - - - - - - - - - + + diff --git a/src/chrome/content/rules/JapanAirlines.xml b/src/chrome/content/rules/JapanAirlines.xml deleted file mode 100644 index bbfe8e09c338..000000000000 --- a/src/chrome/content/rules/JapanAirlines.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/JapanTimes.co.jp.xml b/src/chrome/content/rules/JapanTimes.co.jp.xml index 78611a8e6e58..2f872f9083ee 100644 --- a/src/chrome/content/rules/JapanTimes.co.jp.xml +++ b/src/chrome/content/rules/JapanTimes.co.jp.xml @@ -52,7 +52,7 @@ Fetch error: http://weekly.japantimes.co.jp/ => https://weekly.japantimes.co.jp/ - club.japantimes.co.jp - spelling-bee.japantimes.co.jp --> - + diff --git a/src/chrome/content/rules/Japanese-Communist-Party.xml b/src/chrome/content/rules/Japanese-Communist-Party.xml new file mode 100644 index 000000000000..a753fac26f2e --- /dev/null +++ b/src/chrome/content/rules/Japanese-Communist-Party.xml @@ -0,0 +1,14 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Japanese-government.xml b/src/chrome/content/rules/Japanese-government.xml deleted file mode 100644 index 48c9308cee8f..000000000000 --- a/src/chrome/content/rules/Japanese-government.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Japias.jp.xml b/src/chrome/content/rules/Japias.jp.xml deleted file mode 100644 index 2a1b54aa5bb6..000000000000 --- a/src/chrome/content/rules/Japias.jp.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Jappix.org.xml b/src/chrome/content/rules/Jappix.org.xml deleted file mode 100644 index d84402a7f5b9..000000000000 --- a/src/chrome/content/rules/Jappix.org.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Jappix.xml b/src/chrome/content/rules/Jappix.xml index 795fbb84cdfc..a66e3ff96fdc 100644 --- a/src/chrome/content/rules/Jappix.xml +++ b/src/chrome/content/rules/Jappix.xml @@ -3,13 +3,6 @@ Disabled by https-everywhere-checker because: Fetch error: http://jappix.com/ => https://jappix.com/: (51, "SSL: no alternative certificate subject name matches target host name 'jappix.com'") - Other Jappix rulesets: - - - Jappix.net.xml - - Jappix.org.xml - - Jappix.pro.xml - - Observed subdomains: - anonymous @@ -31,7 +24,7 @@ Fetch error: http://jappix.com/ => https://jappix.com/: (51, "SSL: no alternativ - websocket --> - + diff --git a/src/chrome/content/rules/Jaqpot.net.xml b/src/chrome/content/rules/Jaqpot.net.xml index 2f9ce0c632fd..a91bad6e1ee8 100644 --- a/src/chrome/content/rules/Jaqpot.net.xml +++ b/src/chrome/content/rules/Jaqpot.net.xml @@ -19,7 +19,6 @@ - + diff --git a/src/chrome/content/rules/Jarian_Gibson.com.xml b/src/chrome/content/rules/Jarian_Gibson.com.xml index ffd290c5095a..4fe702d5def5 100644 --- a/src/chrome/content/rules/Jarian_Gibson.com.xml +++ b/src/chrome/content/rules/Jarian_Gibson.com.xml @@ -22,7 +22,7 @@ Fetch error: http://cdn.jariangibson.com/ => https://cdn.jariangibson.com/: (51, * Secured by us --> - + diff --git a/src/chrome/content/rules/Jarir.com.xml b/src/chrome/content/rules/Jarir.com.xml new file mode 100644 index 000000000000..5bab5d251599 --- /dev/null +++ b/src/chrome/content/rules/Jarir.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Jaspan.com.xml b/src/chrome/content/rules/Jaspan.com.xml index 5e04eb0aad83..f69656cba904 100644 --- a/src/chrome/content/rules/Jaspan.com.xml +++ b/src/chrome/content/rules/Jaspan.com.xml @@ -7,7 +7,7 @@ Fetch error: http://www.jaspan.com/themes/acquia/acquia_marina/images/close-quot www.jaspan.com: Mismatched --> - + diff --git a/src/chrome/content/rules/Java.net.xml b/src/chrome/content/rules/Java.net.xml index 7684adb64f19..1cd0e38dcfd6 100644 --- a/src/chrome/content/rules/Java.net.xml +++ b/src/chrome/content/rules/Java.net.xml @@ -1,76 +1,33 @@ - - - - + - - - - + + - + + + + + + + - - - - - - - - - - - + + diff --git a/src/chrome/content/rules/Java.xml b/src/chrome/content/rules/Java.xml index 82ae4f060088..65389a8458cc 100644 --- a/src/chrome/content/rules/Java.xml +++ b/src/chrome/content/rules/Java.xml @@ -8,7 +8,7 @@ - + diff --git a/src/chrome/content/rules/JavaLand.eu.xml b/src/chrome/content/rules/JavaLand.eu.xml new file mode 100644 index 000000000000..7be607acc6ad --- /dev/null +++ b/src/chrome/content/rules/JavaLand.eu.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/JavaScriptIsSexy.com.xml b/src/chrome/content/rules/JavaScriptIsSexy.com.xml new file mode 100644 index 000000000000..d4810d732d5f --- /dev/null +++ b/src/chrome/content/rules/JavaScriptIsSexy.com.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/JavaScriptMVC.xml b/src/chrome/content/rules/JavaScriptMVC.xml index a208ffa56937..a75051dec30a 100644 --- a/src/chrome/content/rules/JavaScriptMVC.xml +++ b/src/chrome/content/rules/JavaScriptMVC.xml @@ -17,7 +17,8 @@ Fetch error: http://javascriptmvc.com/ => http://javascriptmvc.com/: Cycle detec - + + diff --git a/src/chrome/content/rules/Javacoolsoftware.com.xml b/src/chrome/content/rules/Javacoolsoftware.com.xml index 3885b5d45bfc..625a27e76ed5 100644 --- a/src/chrome/content/rules/Javacoolsoftware.com.xml +++ b/src/chrome/content/rules/Javacoolsoftware.com.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.javacoolsoftware.com/ => https://www.javacoolsoftware.com/: (28, 'Connection timed out after 10001 milliseconds') Fetch error: http://javacoolsoftware.com/ => https://www.javacoolsoftware.com/: (28, 'Connection timed out after 10000 milliseconds') --> - + diff --git a/src/chrome/content/rules/Javelin_Strategy.com.xml b/src/chrome/content/rules/Javelin_Strategy.com.xml index d35aaad0314e..94b92850bd78 100644 --- a/src/chrome/content/rules/Javelin_Strategy.com.xml +++ b/src/chrome/content/rules/Javelin_Strategy.com.xml @@ -11,7 +11,8 @@ - + + - + diff --git a/src/chrome/content/rules/Jawbone.com.xml b/src/chrome/content/rules/Jawbone.com.xml index b46be5103ec4..3ffaf3eed701 100644 --- a/src/chrome/content/rules/Jawbone.com.xml +++ b/src/chrome/content/rules/Jawbone.com.xml @@ -9,6 +9,10 @@ - forums + Non-functional hosts: + Timeout: + - jawbone.com + Partially covered subdomains: @@ -47,18 +51,21 @@ --> - - + + + + + + + + - - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/JayIsGames.com.xml b/src/chrome/content/rules/JayIsGames.com.xml new file mode 100644 index 000000000000..22f73312a559 --- /dev/null +++ b/src/chrome/content/rules/JayIsGames.com.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Jay_Is_Games.com.xml b/src/chrome/content/rules/Jay_Is_Games.com.xml deleted file mode 100644 index ea08edaf6cb3..000000000000 --- a/src/chrome/content/rules/Jay_Is_Games.com.xml +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Jazzy.id.au.xml b/src/chrome/content/rules/Jazzy.id.au.xml deleted file mode 100644 index 2f8bd43daf47..000000000000 --- a/src/chrome/content/rules/Jazzy.id.au.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Jcloud.com.xml b/src/chrome/content/rules/Jcloud.com.xml index a26bee2ea7f8..24064a8259ca 100644 --- a/src/chrome/content/rules/Jcloud.com.xml +++ b/src/chrome/content/rules/Jcloud.com.xml @@ -1,88 +1,17 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - + + + - - - - + - diff --git a/src/chrome/content/rules/Jean.lgbt.xml b/src/chrome/content/rules/Jean.lgbt.xml new file mode 100644 index 000000000000..746a3cc5d822 --- /dev/null +++ b/src/chrome/content/rules/Jean.lgbt.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Jeena.net.xml b/src/chrome/content/rules/Jeena.net.xml index f7c827dc49ee..b5522b3d0ae3 100644 --- a/src/chrome/content/rules/Jeena.net.xml +++ b/src/chrome/content/rules/Jeena.net.xml @@ -1,7 +1,8 @@ - + + diff --git a/src/chrome/content/rules/Jeep_Tops_Direct.com.xml b/src/chrome/content/rules/Jeep_Tops_Direct.com.xml index 0885d7be6841..ee7b675f3ba9 100644 --- a/src/chrome/content/rules/Jeep_Tops_Direct.com.xml +++ b/src/chrome/content/rules/Jeep_Tops_Direct.com.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Jeff_Mitchell.me.xml b/src/chrome/content/rules/Jeff_Mitchell.me.xml index eee35af52bcb..bafc60678e8f 100644 --- a/src/chrome/content/rules/Jeff_Mitchell.me.xml +++ b/src/chrome/content/rules/Jeff_Mitchell.me.xml @@ -8,7 +8,7 @@ Fetch error: http://jeffmitchell.me/ => https://jeffmitchell.me/: (60, 'SSL cert STS header includes includeSubdomains --> - + diff --git a/src/chrome/content/rules/Jeff_Nabers.com-falsemixed.xml b/src/chrome/content/rules/Jeff_Nabers.com-falsemixed.xml index 5d0227a3e031..20189d2a9e92 100644 --- a/src/chrome/content/rules/Jeff_Nabers.com-falsemixed.xml +++ b/src/chrome/content/rules/Jeff_Nabers.com-falsemixed.xml @@ -4,13 +4,10 @@ --> - + - - - + diff --git a/src/chrome/content/rules/Jeja.pl.xml b/src/chrome/content/rules/Jeja.pl.xml index a6c6a01a560c..23d300db50f5 100644 --- a/src/chrome/content/rules/Jeja.pl.xml +++ b/src/chrome/content/rules/Jeja.pl.xml @@ -1,15 +1,8 @@ - - + - + @@ -17,4 +10,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Jellynote.com.xml b/src/chrome/content/rules/Jellynote.com.xml index 041a80582b55..cf3883bf181e 100644 --- a/src/chrome/content/rules/Jellynote.com.xml +++ b/src/chrome/content/rules/Jellynote.com.xml @@ -20,7 +20,7 @@ --> - + diff --git a/src/chrome/content/rules/Jenkins-CI.org.xml b/src/chrome/content/rules/Jenkins-CI.org.xml index ad01269fbff5..4cc3c296fb4a 100644 --- a/src/chrome/content/rules/Jenkins-CI.org.xml +++ b/src/chrome/content/rules/Jenkins-CI.org.xml @@ -1,57 +1,36 @@ - - + - + + - + + + - - - - - - - - + - + diff --git a/src/chrome/content/rules/Jenkins-X.io.xml b/src/chrome/content/rules/Jenkins-X.io.xml new file mode 100644 index 000000000000..6ece69aa6c6f --- /dev/null +++ b/src/chrome/content/rules/Jenkins-X.io.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Jennyvixenryan.com.xml b/src/chrome/content/rules/Jennyvixenryan.com.xml new file mode 100644 index 000000000000..14ccec806734 --- /dev/null +++ b/src/chrome/content/rules/Jennyvixenryan.com.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/src/chrome/content/rules/Jensge.org.xml b/src/chrome/content/rules/Jensge.org.xml index 29828603ff60..2a18dbaa3574 100644 --- a/src/chrome/content/rules/Jensge.org.xml +++ b/src/chrome/content/rules/Jensge.org.xml @@ -9,7 +9,7 @@ Fetch error: http://www.jensge.org/ => https://jensge.org/: (60, 'SSL certificat - www (mismatched, CN: www.webstreams.de) --> - + diff --git a/src/chrome/content/rules/JessFindlay.com.xml b/src/chrome/content/rules/JessFindlay.com.xml new file mode 100644 index 000000000000..ab9df4a49a41 --- /dev/null +++ b/src/chrome/content/rules/JessFindlay.com.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/JessFraz.com.xml b/src/chrome/content/rules/JessFraz.com.xml index 569919a02829..7ad14c33de77 100644 --- a/src/chrome/content/rules/JessFraz.com.xml +++ b/src/chrome/content/rules/JessFraz.com.xml @@ -17,7 +17,7 @@ --> - + - - - - diff --git a/src/chrome/content/rules/Jet2.com.xml b/src/chrome/content/rules/Jet2.com.xml index 7972e1d70518..8f6834210d60 100644 --- a/src/chrome/content/rules/Jet2.com.xml +++ b/src/chrome/content/rules/Jet2.com.xml @@ -4,12 +4,13 @@ Disabled by https-everywhere-checker because: Fetch error: http://jet2.com/ => https://www.jet2.com/: Too many redirects while fetching 'https://www.jet2.com/' --> - + - + + + - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/JetBrains.com-falsemixed.xml b/src/chrome/content/rules/JetBrains.com-falsemixed.xml deleted file mode 100644 index 68483c38e6ac..000000000000 --- a/src/chrome/content/rules/JetBrains.com-falsemixed.xml +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/JetBrains.com.xml b/src/chrome/content/rules/JetBrains.com.xml new file mode 100644 index 000000000000..4ab1561f441d --- /dev/null +++ b/src/chrome/content/rules/JetBrains.com.xml @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/JetBrains.xml b/src/chrome/content/rules/JetBrains.xml deleted file mode 100644 index 4c8f9559013c..000000000000 --- a/src/chrome/content/rules/JetBrains.xml +++ /dev/null @@ -1,170 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/JetPhotos.com.xml b/src/chrome/content/rules/JetPhotos.com.xml new file mode 100644 index 000000000000..8ce8a92a7775 --- /dev/null +++ b/src/chrome/content/rules/JetPhotos.com.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Jetico.com.xml b/src/chrome/content/rules/Jetico.com.xml index 7087a2245b58..2b13eb4d2b22 100644 --- a/src/chrome/content/rules/Jetico.com.xml +++ b/src/chrome/content/rules/Jetico.com.xml @@ -13,7 +13,7 @@ Fetch error: http://jetico.com/ => https://jetico.com/: (51, "SSL: no alternativ * Secured by us --> - + diff --git a/src/chrome/content/rules/Jewel_Osco.com.xml b/src/chrome/content/rules/Jewel_Osco.com.xml index 06ae7d28007b..15c764b0f7c5 100644 --- a/src/chrome/content/rules/Jewel_Osco.com.xml +++ b/src/chrome/content/rules/Jewel_Osco.com.xml @@ -21,7 +21,7 @@ Fetch error: http://jewelosco.com/ => https://jewelosco.com/: (51, "SSL: no alte ² Unsecurable <= refused --> - + diff --git a/src/chrome/content/rules/JewishPress.com.xml b/src/chrome/content/rules/JewishPress.com.xml index 0ec81a4ae059..0913904a1a84 100644 --- a/src/chrome/content/rules/JewishPress.com.xml +++ b/src/chrome/content/rules/JewishPress.com.xml @@ -12,7 +12,7 @@ Fetch error: http://www.jewishpress.com/ => https://www.jewishpress.com/: (7, 'F - i[012].wp.com/www.jewishpress.com/ --> - + @@ -20,4 +20,4 @@ Fetch error: http://www.jewishpress.com/ => https://www.jewishpress.com/: (7, 'F - \ No newline at end of file + diff --git a/src/chrome/content/rules/Jezebel.com.xml b/src/chrome/content/rules/Jezebel.com.xml deleted file mode 100644 index 32fba33dcbe6..000000000000 --- a/src/chrome/content/rules/Jezebel.com.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/JiWire.xml b/src/chrome/content/rules/JiWire.xml index 9a3477c31ca3..b9781d9766cf 100644 --- a/src/chrome/content/rules/JiWire.xml +++ b/src/chrome/content/rules/JiWire.xml @@ -33,10 +33,16 @@ Fetch error: http://jiwire.com/ => https://www.jiwire.com/: (60, 'SSL certificat - v4 --> - + - + + + + + + + @@ -45,7 +51,6 @@ Fetch error: http://jiwire.com/ => https://www.jiwire.com/: (60, 'SSL certificat - + diff --git a/src/chrome/content/rules/JianGuoYun.xml b/src/chrome/content/rules/JianGuoYun.xml index 33dc469a0491..98eb6f6206cb 100644 --- a/src/chrome/content/rules/JianGuoYun.xml +++ b/src/chrome/content/rules/JianGuoYun.xml @@ -14,7 +14,6 @@ - diff --git a/src/chrome/content/rules/Jifo.co.xml b/src/chrome/content/rules/Jifo.co.xml index 8be6db105ba8..5299aaeefbc9 100644 --- a/src/chrome/content/rules/Jifo.co.xml +++ b/src/chrome/content/rules/Jifo.co.xml @@ -16,7 +16,7 @@ --> - + - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Jim_static.com.xml b/src/chrome/content/rules/Jim_static.com.xml deleted file mode 100644 index cb8d6fda0173..000000000000 --- a/src/chrome/content/rules/Jim_static.com.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Jimcdn.com.xml b/src/chrome/content/rules/Jimcdn.com.xml new file mode 100644 index 000000000000..8dd6d53269d8 --- /dev/null +++ b/src/chrome/content/rules/Jimcdn.com.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Jimdo-Server.com.xml b/src/chrome/content/rules/Jimdo-Server.com.xml new file mode 100644 index 000000000000..498d64a08156 --- /dev/null +++ b/src/chrome/content/rules/Jimdo-Server.com.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Jimdo.design.xml b/src/chrome/content/rules/Jimdo.design.xml new file mode 100644 index 000000000000..89aa5ed44484 --- /dev/null +++ b/src/chrome/content/rules/Jimdo.design.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Jimdo.xml b/src/chrome/content/rules/Jimdo.xml index 7d9eddf5cb9b..13c95c3b0a2b 100644 --- a/src/chrome/content/rules/Jimdo.xml +++ b/src/chrome/content/rules/Jimdo.xml @@ -1,46 +1,23 @@ - - - - - - - - - - - - + - + + + + + + + diff --git a/src/chrome/content/rules/Jimg.dk.xml b/src/chrome/content/rules/Jimg.dk.xml index 469fbd625673..302cd2ef30bd 100644 --- a/src/chrome/content/rules/Jimg.dk.xml +++ b/src/chrome/content/rules/Jimg.dk.xml @@ -13,13 +13,16 @@ Fetch error: http://jimg.dk/ => https://jimg.dk/: (51, "SSL: no alternative cert - z --> - + - + + + + + - + diff --git a/src/chrome/content/rules/Jimstatic.com.xml b/src/chrome/content/rules/Jimstatic.com.xml new file mode 100644 index 000000000000..595cf2b3a951 --- /dev/null +++ b/src/chrome/content/rules/Jimstatic.com.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Jingwei.com.xml b/src/chrome/content/rules/Jingwei.com.xml index 06ab99c16cbd..814409c3698c 100644 --- a/src/chrome/content/rules/Jingwei.com.xml +++ b/src/chrome/content/rules/Jingwei.com.xml @@ -13,7 +13,7 @@ - + + + + + + + + + + diff --git a/src/chrome/content/rules/Jit.su.xml b/src/chrome/content/rules/Jit.su.xml index 3203f6f52037..d471423ff066 100644 --- a/src/chrome/content/rules/Jit.su.xml +++ b/src/chrome/content/rules/Jit.su.xml @@ -8,7 +8,7 @@ Fetch error: http://xmpp-ftw.jit.su/ => https://xmpp-ftw.jit.su/: (7, 'Failed to For other GoDaddy coverage, see GoDaddy.xml. --> - + diff --git a/src/chrome/content/rules/Jitscale.com-falsemixed.xml b/src/chrome/content/rules/Jitscale.com-falsemixed.xml index be515d96868f..1f5776fa030d 100644 --- a/src/chrome/content/rules/Jitscale.com-falsemixed.xml +++ b/src/chrome/content/rules/Jitscale.com-falsemixed.xml @@ -13,4 +13,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Jitscale.com.xml b/src/chrome/content/rules/Jitscale.com.xml index 80a638e4ba69..455e762aecf9 100644 --- a/src/chrome/content/rules/Jitscale.com.xml +++ b/src/chrome/content/rules/Jitscale.com.xml @@ -51,4 +51,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Jitsi.org.xml b/src/chrome/content/rules/Jitsi.org.xml index ea8e05aaf318..8a14824510b0 100644 --- a/src/chrome/content/rules/Jitsi.org.xml +++ b/src/chrome/content/rules/Jitsi.org.xml @@ -27,8 +27,8 @@ - - + + diff --git a/src/chrome/content/rules/Jive.com.xml b/src/chrome/content/rules/Jive.com.xml index 3a4a78d48062..2220ce69eaf8 100644 --- a/src/chrome/content/rules/Jive.com.xml +++ b/src/chrome/content/rules/Jive.com.xml @@ -19,7 +19,7 @@ ² Server sends no certificate chain --> - + diff --git a/src/chrome/content/rules/Jive_Software.com.xml b/src/chrome/content/rules/Jive_Software.com.xml index a12c111c5c59..dd56c26bc631 100644 --- a/src/chrome/content/rules/Jive_Software.com.xml +++ b/src/chrome/content/rules/Jive_Software.com.xml @@ -43,7 +43,7 @@ - + - + - + diff --git a/src/chrome/content/rules/Jku.at.xml b/src/chrome/content/rules/Jku.at.xml new file mode 100644 index 000000000000..0d90eef00c33 --- /dev/null +++ b/src/chrome/content/rules/Jku.at.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/JobCloud.ch.xml b/src/chrome/content/rules/JobCloud.ch.xml new file mode 100644 index 000000000000..0174bab69b06 --- /dev/null +++ b/src/chrome/content/rules/JobCloud.ch.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/JobScore.xml b/src/chrome/content/rules/JobScore.xml index 157e0f8fea27..e823c1966cc7 100644 --- a/src/chrome/content/rules/JobScore.xml +++ b/src/chrome/content/rules/JobScore.xml @@ -28,7 +28,7 @@ - + https://jobamatic.com/: (7, 'Failed to con * Secured by us --> - + @@ -40,7 +40,7 @@ Fetch error: http://jobamatic.com/ => https://jobamatic.com/: (7, 'Failed to con - + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Jobindex.dk.xml b/src/chrome/content/rules/Jobindex.dk.xml deleted file mode 100644 index 4fe7a4b2e326..000000000000 --- a/src/chrome/content/rules/Jobindex.dk.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Jobs2Web.xml b/src/chrome/content/rules/Jobs2Web.xml index 6ba13be9711b..dbbf9f1a29c5 100644 --- a/src/chrome/content/rules/Jobs2Web.xml +++ b/src/chrome/content/rules/Jobs2Web.xml @@ -14,13 +14,13 @@ Fetch error: http://jobs2web.com/ => https://jobs2web.com/: (51, "SSL: no altern - \w+ (per-client subdomains) --> - + - + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Jobs_at_OSU.com.xml b/src/chrome/content/rules/Jobs_at_OSU.com.xml index ac1b831a1cf2..96f5b10e459f 100644 --- a/src/chrome/content/rules/Jobs_at_OSU.com.xml +++ b/src/chrome/content/rules/Jobs_at_OSU.com.xml @@ -16,7 +16,7 @@ - + - + + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Jobsite.com.xml b/src/chrome/content/rules/Jobsite.com.xml index 6ed7d83f8fc5..6ba2be5ba66f 100644 --- a/src/chrome/content/rules/Jobsite.com.xml +++ b/src/chrome/content/rules/Jobsite.com.xml @@ -5,7 +5,7 @@ Fetch error: http://jobsite.com/ => https://jobsite.com/: (51, "SSL: no alternat Fetch error: http://www.jobsite.com/ => https://www.jobsite.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.jobsite.com'") --> - + @@ -13,4 +13,4 @@ Fetch error: http://www.jobsite.com/ => https://www.jobsite.com/: (51, "SSL: no - \ No newline at end of file + diff --git a/src/chrome/content/rules/Jobvite.xml b/src/chrome/content/rules/Jobvite.xml index dda5efb73281..85dea3f4d7b0 100644 --- a/src/chrome/content/rules/Jobvite.xml +++ b/src/chrome/content/rules/Jobvite.xml @@ -1,15 +1,13 @@ - + - @@ -73,24 +70,6 @@ Non-2xx HTTP code: http://web.jobvite.com/rs/jobvite/images/jobvite-logo-gunmeta - - - - - - - - - - - - - - - @@ -99,11 +78,8 @@ Non-2xx HTTP code: http://web.jobvite.com/rs/jobvite/images/jobvite-logo-gunmeta - - + - diff --git a/src/chrome/content/rules/Jobware.de.xml b/src/chrome/content/rules/Jobware.de.xml index a0404cc5f8e6..02278fd51f10 100644 --- a/src/chrome/content/rules/Jobware.de.xml +++ b/src/chrome/content/rules/Jobware.de.xml @@ -1,4 +1,4 @@ - - + + diff --git a/src/chrome/content/rules/Jobzonen.xml b/src/chrome/content/rules/Jobzonen.xml index 40e9fced6ce1..60faf01c6df8 100644 --- a/src/chrome/content/rules/Jobzonen.xml +++ b/src/chrome/content/rules/Jobzonen.xml @@ -7,7 +7,7 @@ Fetch error: http://arbejdsgiver.jobzonen.dk/ => https://arbejdsgiver.jobzonen.d Note: https://jobzonen.dk (without the www) redirects to its http counterpart. - Not included: + Not included: kursuszonen.dk (cert expired) analytics.clickdimensions.com/ (used for newsletter)¹ business.jobzonen.dk (bad cert) @@ -16,7 +16,7 @@ Fetch error: http://arbejdsgiver.jobzonen.dk/ => https://arbejdsgiver.jobzonen.d fails as mixed content. Interestingly, the same problem does not occur on arbejdsgiver.jobzonen.dk. --> - + diff --git a/src/chrome/content/rules/Jochen-Hoenicke.de.xml b/src/chrome/content/rules/Jochen-Hoenicke.de.xml index c4cfd6c9f8ed..6dcab503e60c 100644 --- a/src/chrome/content/rules/Jochen-Hoenicke.de.xml +++ b/src/chrome/content/rules/Jochen-Hoenicke.de.xml @@ -4,7 +4,7 @@ - + - + + @@ -15,13 +16,6 @@ - + - - - - - \ No newline at end of file + diff --git a/src/chrome/content/rules/JoeBradford.net.xml b/src/chrome/content/rules/JoeBradford.net.xml new file mode 100644 index 000000000000..2068405d9b70 --- /dev/null +++ b/src/chrome/content/rules/JoeBradford.net.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/JoeRockHeads.com.xml b/src/chrome/content/rules/JoeRockHeads.com.xml new file mode 100644 index 000000000000..d24941e26861 --- /dev/null +++ b/src/chrome/content/rules/JoeRockHeads.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/JoeyH.name.xml b/src/chrome/content/rules/JoeyH.name.xml index b04da5c99ece..7809cc304e6a 100644 --- a/src/chrome/content/rules/JoeyH.name.xml +++ b/src/chrome/content/rules/JoeyH.name.xml @@ -12,4 +12,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Johns_Hopkins.edu.xml b/src/chrome/content/rules/Johns_Hopkins.edu.xml index a6a9ffaa947b..fb67ccae0a1e 100644 --- a/src/chrome/content/rules/Johns_Hopkins.edu.xml +++ b/src/chrome/content/rules/Johns_Hopkins.edu.xml @@ -60,7 +60,7 @@ - + - + - + diff --git a/src/chrome/content/rules/Johnson_Press.xml b/src/chrome/content/rules/Johnson_Press.xml index df2dc94e4200..8eb6fcfd3193 100644 --- a/src/chrome/content/rules/Johnson_Press.xml +++ b/src/chrome/content/rules/Johnson_Press.xml @@ -12,7 +12,7 @@ Fetch error: http://remote.jpress.co.uk/ => https://remote.jpress.co.uk/: (28, ' - www.johnstonpress.co.uk (refused) --> - + @@ -21,10 +21,6 @@ Fetch error: http://remote.jpress.co.uk/ => https://remote.jpress.co.uk/: (28, ' - + - - - \ No newline at end of file + diff --git a/src/chrome/content/rules/Johoobuy.com.xml b/src/chrome/content/rules/Johoobuy.com.xml index 884131f303cc..a807d7fc0859 100644 --- a/src/chrome/content/rules/Johoobuy.com.xml +++ b/src/chrome/content/rules/Johoobuy.com.xml @@ -7,7 +7,7 @@ Fetch error: http://www.johoobuy.com/ => https://www.johoobuy.com/: (28, 'Connec ^: dropped --> - + diff --git a/src/chrome/content/rules/Joico.com.xml b/src/chrome/content/rules/Joico.com.xml new file mode 100644 index 000000000000..f361ddfd4745 --- /dev/null +++ b/src/chrome/content/rules/Joico.com.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/JoinMastodon.org.xml b/src/chrome/content/rules/JoinMastodon.org.xml new file mode 100644 index 000000000000..bd405f3c8cb8 --- /dev/null +++ b/src/chrome/content/rules/JoinMastodon.org.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/JoinUs.Today.xml b/src/chrome/content/rules/JoinUs.Today.xml index e069a80fbf70..ecab144ff789 100644 --- a/src/chrome/content/rules/JoinUs.Today.xml +++ b/src/chrome/content/rules/JoinUs.Today.xml @@ -7,7 +7,7 @@ Fetch error: http://www.joinus.today/ => https://www.joinus.today/: (60, 'SSL ce For other TransIP coverage, see TransIP.nl.xml. --> - + diff --git a/src/chrome/content/rules/Joinos.com.xml b/src/chrome/content/rules/Joinos.com.xml index cd7cb670d6b4..19c425800053 100644 --- a/src/chrome/content/rules/Joinos.com.xml +++ b/src/chrome/content/rules/Joinos.com.xml @@ -13,7 +13,7 @@ Fetch error: http://joinos.com/ => https://joinos.com/: (7, 'Failed to connect t - pay.joinos.com --> - + diff --git a/src/chrome/content/rules/Jolexa.net.xml b/src/chrome/content/rules/Jolexa.net.xml index 408641661f61..2dec7998678b 100644 --- a/src/chrome/content/rules/Jolexa.net.xml +++ b/src/chrome/content/rules/Jolexa.net.xml @@ -13,7 +13,7 @@ - + diff --git a/src/chrome/content/rules/Jolla.com.xml b/src/chrome/content/rules/Jolla.com.xml index c3d0913bf256..871021402439 100644 --- a/src/chrome/content/rules/Jolla.com.xml +++ b/src/chrome/content/rules/Jolla.com.xml @@ -17,7 +17,7 @@ --> - + https://www.jondos.org/: (7, 'Failed to c - IP_check.xml --> - + @@ -21,7 +21,7 @@ Fetch error: http://www.jondos.org/ => https://www.jondos.org/: (7, 'Failed to c - + - + + + - - + + - - - - - - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Joseph-Rowntree-Reform-Trust-mismatches.xml b/src/chrome/content/rules/Joseph-Rowntree-Reform-Trust-mismatches.xml index 666d8e83e672..9b79fcd70d02 100644 --- a/src/chrome/content/rules/Joseph-Rowntree-Reform-Trust-mismatches.xml +++ b/src/chrome/content/rules/Joseph-Rowntree-Reform-Trust-mismatches.xml @@ -9,14 +9,14 @@ - + - + - + - + + @@ -38,7 +39,6 @@ - + diff --git a/src/chrome/content/rules/Jotform.us.xml b/src/chrome/content/rules/Jotform.us.xml index eec581f68595..9cd1f6ee87ae 100644 --- a/src/chrome/content/rules/Jotform.us.xml +++ b/src/chrome/content/rules/Jotform.us.xml @@ -1,11 +1,7 @@ - - + - - + diff --git a/src/chrome/content/rules/Jottit.com.xml b/src/chrome/content/rules/Jottit.com.xml deleted file mode 100644 index 69bb06ea137f..000000000000 --- a/src/chrome/content/rules/Jottit.com.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Journal-News.net-problematic.xml b/src/chrome/content/rules/Journal-News.net-problematic.xml index e905b84e6517..b98c63abf68b 100644 --- a/src/chrome/content/rules/Journal-News.net-problematic.xml +++ b/src/chrome/content/rules/Journal-News.net-problematic.xml @@ -4,13 +4,13 @@ --> - + + - + diff --git a/src/chrome/content/rules/Journal-Officiel.gouv.fr.xml b/src/chrome/content/rules/Journal-Officiel.gouv.fr.xml new file mode 100644 index 000000000000..41311ab6d325 --- /dev/null +++ b/src/chrome/content/rules/Journal-Officiel.gouv.fr.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Journal-of-Bodywork-and-Movement-Therapies.xml b/src/chrome/content/rules/Journal-of-Bodywork-and-Movement-Therapies.xml index e9ca3013ad89..69f69e4138a8 100644 --- a/src/chrome/content/rules/Journal-of-Bodywork-and-Movement-Therapies.xml +++ b/src/chrome/content/rules/Journal-of-Bodywork-and-Movement-Therapies.xml @@ -7,10 +7,10 @@ - + - + - + diff --git a/src/chrome/content/rules/Journal_of_Clinical_Investigation.xml b/src/chrome/content/rules/Journal_of_Clinical_Investigation.xml index 68b285d47eb5..8d6a27e5f3ee 100644 --- a/src/chrome/content/rules/Journal_of_Clinical_Investigation.xml +++ b/src/chrome/content/rules/Journal_of_Clinical_Investigation.xml @@ -18,4 +18,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Journeyed.com.xml b/src/chrome/content/rules/Journeyed.com.xml index 84847cb62e1a..353c3f723689 100644 --- a/src/chrome/content/rules/Journeyed.com.xml +++ b/src/chrome/content/rules/Journeyed.com.xml @@ -1,7 +1,22 @@ - - - + + + + + + + + + + + + + + - - diff --git a/src/chrome/content/rules/Joyent.xml b/src/chrome/content/rules/Joyent.xml index 374644b70291..c078ca29288a 100644 --- a/src/chrome/content/rules/Joyent.xml +++ b/src/chrome/content/rules/Joyent.xml @@ -55,7 +55,7 @@ - + - + diff --git a/src/chrome/content/rules/Jpost.com.xml b/src/chrome/content/rules/Jpost.com.xml index 1a0a1e4ecce5..5248ad612c6c 100644 --- a/src/chrome/content/rules/Jpost.com.xml +++ b/src/chrome/content/rules/Jpost.com.xml @@ -26,7 +26,7 @@ --> - + - + diff --git a/src/chrome/content/rules/Jtlebi.fr.xml b/src/chrome/content/rules/Jtlebi.fr.xml deleted file mode 100644 index 4350a61043a9..000000000000 --- a/src/chrome/content/rules/Jtlebi.fr.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Jubii.dk.xml b/src/chrome/content/rules/Jubii.dk.xml index 0dd2641bba81..a64b79f7316c 100644 --- a/src/chrome/content/rules/Jubii.dk.xml +++ b/src/chrome/content/rules/Jubii.dk.xml @@ -46,7 +46,8 @@ --> - + + - + diff --git a/src/chrome/content/rules/Judici.xml b/src/chrome/content/rules/Judici.xml index 1ba8e5554ffe..cd168a41ac93 100644 --- a/src/chrome/content/rules/Judici.xml +++ b/src/chrome/content/rules/Judici.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Judicial_Watch.xml b/src/chrome/content/rules/Judicial_Watch.xml index 195426a2d04b..fff0bb6eb5f0 100644 --- a/src/chrome/content/rules/Judicial_Watch.xml +++ b/src/chrome/content/rules/Judicial_Watch.xml @@ -5,7 +5,7 @@ Fetch error: http://judicialwatch.org/ => https://judicialwatch.org/: Too many r Fetch error: http://www.judicialwatch.org/ => https://www.judicialwatch.org/: Too many redirects while fetching 'https://www.judicialwatch.org/' --> - + @@ -16,4 +16,4 @@ Fetch error: http://www.judicialwatch.org/ => https://www.judicialwatch.org/: To - \ No newline at end of file + diff --git a/src/chrome/content/rules/Judiciary_of_England_and_Wales.xml b/src/chrome/content/rules/Judiciary_of_England_and_Wales.xml index b1d5c4accc7f..5b1db85f292f 100644 --- a/src/chrome/content/rules/Judiciary_of_England_and_Wales.xml +++ b/src/chrome/content/rules/Judiciary_of_England_and_Wales.xml @@ -1,38 +1,34 @@ - - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Jugendaemter.com.xml b/src/chrome/content/rules/Jugendaemter.com.xml new file mode 100644 index 000000000000..5844a7afafb5 --- /dev/null +++ b/src/chrome/content/rules/Jugendaemter.com.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Jugendschutzprogramm.de.xml b/src/chrome/content/rules/Jugendschutzprogramm.de.xml index 32cefbd7057f..08a8e4e40f12 100644 --- a/src/chrome/content/rules/Jugendschutzprogramm.de.xml +++ b/src/chrome/content/rules/Jugendschutzprogramm.de.xml @@ -1,5 +1,5 @@ - - - + + + diff --git a/src/chrome/content/rules/Jugger.ru.xml b/src/chrome/content/rules/Jugger.ru.xml index d7cf8cd1b914..25461aa9ec05 100644 --- a/src/chrome/content/rules/Jugger.ru.xml +++ b/src/chrome/content/rules/Jugger.ru.xml @@ -22,7 +22,9 @@ - + + + - + https://www.juicycanvas.com/ (526) --> - + - + - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Jumio.xml b/src/chrome/content/rules/Jumio.xml index 52f5e7adb31c..1392cd3a49f9 100644 --- a/src/chrome/content/rules/Jumio.xml +++ b/src/chrome/content/rules/Jumio.xml @@ -17,12 +17,16 @@ Fetch error: http://netswipe.com/ => https://netswipe.com/: Cycle detected - URL - (www.)jumio.com --> - + - + + + - + + + @@ -31,7 +35,6 @@ Fetch error: http://netswipe.com/ => https://netswipe.com/: Cycle detected - URL - + diff --git a/src/chrome/content/rules/JumpingJack.xml b/src/chrome/content/rules/JumpingJack.xml index 5f4c60aea024..e9c34f5b5269 100644 --- a/src/chrome/content/rules/JumpingJack.xml +++ b/src/chrome/content/rules/JumpingJack.xml @@ -6,20 +6,17 @@ Fetch error: http://images.jitsmart.com/ => https://images.jitsmart.com/: (6, 'C Disabled by https-everywhere-checker because: Fetch error: http://images.jitsmart.com/ => https://images.jitsmart.com/: (28, 'Connection timed out after 10000 milliseconds') --> - + - + + - + - - - \ No newline at end of file + diff --git a/src/chrome/content/rules/Junge-Piraten.de.xml b/src/chrome/content/rules/Junge-Piraten.de.xml index ceabf4d7dab5..9f44d9f1bdd0 100644 --- a/src/chrome/content/rules/Junge-Piraten.de.xml +++ b/src/chrome/content/rules/Junge-Piraten.de.xml @@ -9,7 +9,7 @@ Fetch error: http://www.junge-piraten.de/ => https://www.junge-piraten.de/: (51, For other Pirate Party coverage, see PirateParty.xml. --> - + @@ -21,7 +21,7 @@ Fetch error: http://www.junge-piraten.de/ => https://www.junge-piraten.de/: (51, - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Juniper-Research.xml b/src/chrome/content/rules/Juniper-Research.xml index 0cfbf80048de..8b73c78ffca4 100644 --- a/src/chrome/content/rules/Juniper-Research.xml +++ b/src/chrome/content/rules/Juniper-Research.xml @@ -8,13 +8,13 @@ Disabled by https-everywhere-checker because: Fetch error: http://juniperresearch.com/ => https://junipersearch.com/: (28, 'Connection timed out after 10001 milliseconds') Fetch error: http://www.juniperresearch.com/ => https://www.junipersearch.com/: (28, 'Connection timed out after 10000 milliseconds') --> - + - + - + + + + + + diff --git a/src/chrome/content/rules/JunoDownload.xml b/src/chrome/content/rules/JunoDownload.xml deleted file mode 100644 index 06ddb8653e65..000000000000 --- a/src/chrome/content/rules/JunoDownload.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/JunoRecords.xml b/src/chrome/content/rules/JunoRecords.xml deleted file mode 100644 index 2abc7adcd2b5..000000000000 --- a/src/chrome/content/rules/JunoRecords.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Jupiter_Artland.org.xml b/src/chrome/content/rules/Jupiter_Artland.org.xml index ac84e9a925e9..01e428651611 100644 --- a/src/chrome/content/rules/Jupiter_Artland.org.xml +++ b/src/chrome/content/rules/Jupiter_Artland.org.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Non-2xx HTTP code: http://jupiterartland.org/ (200) => https://jupiterartland.org/ (404) --> - + diff --git a/src/chrome/content/rules/Jussieu.fr-problematic.xml b/src/chrome/content/rules/Jussieu.fr-problematic.xml index 0275c9702fcf..e1bff16c9e40 100644 --- a/src/chrome/content/rules/Jussieu.fr-problematic.xml +++ b/src/chrome/content/rules/Jussieu.fr-problematic.xml @@ -7,7 +7,6 @@ - + diff --git a/src/chrome/content/rules/Jussieu.fr.xml b/src/chrome/content/rules/Jussieu.fr.xml index 87296bc808e1..bf617f9e9ab5 100644 --- a/src/chrome/content/rules/Jussieu.fr.xml +++ b/src/chrome/content/rules/Jussieu.fr.xml @@ -30,12 +30,11 @@ Fetch error: http://forge.ipsl.jussieu.fr/ => https://forge.ipsl.jussieu.fr/: (6 * Unsecurable <= refused --> - + - + diff --git a/src/chrome/content/rules/Just-Develop-It.xml b/src/chrome/content/rules/Just-Develop-It.xml index d486aae50693..3c6dda5d0596 100644 --- a/src/chrome/content/rules/Just-Develop-It.xml +++ b/src/chrome/content/rules/Just-Develop-It.xml @@ -16,7 +16,7 @@ Fetch error: http://zipcloud.com/ => https://zipcloud.com/: Redirect for 'http:/ - justcloud.com.xml --> - + @@ -31,10 +31,10 @@ Fetch error: http://zipcloud.com/ => https://zipcloud.com/: Redirect for 'http:/ - - - - + + + + diff --git a/src/chrome/content/rules/Just-Extend.com.xml b/src/chrome/content/rules/Just-Extend.com.xml new file mode 100644 index 000000000000..0b79552d9bab --- /dev/null +++ b/src/chrome/content/rules/Just-Extend.com.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/JustApple.com.xml b/src/chrome/content/rules/JustApple.com.xml deleted file mode 100644 index 9dc321daa625..000000000000 --- a/src/chrome/content/rules/JustApple.com.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/JustGiving.xml b/src/chrome/content/rules/JustGiving.xml index 8b4b08ebef3d..0d4279e82ac0 100644 --- a/src/chrome/content/rules/JustGiving.xml +++ b/src/chrome/content/rules/JustGiving.xml @@ -46,7 +46,7 @@ Non-2xx HTTP code: http://pages.justgiving.com/css/mktLPSupport.css (200) => htt ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -105,7 +105,7 @@ Non-2xx HTTP code: http://pages.justgiving.com/css/mktLPSupport.css (200) => htt - + https://www.justtomatoes.com/: (60, 'SS Fetch error: http://www.justtomatoes.com/ => https://www.justtomatoes.com/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/Justaguy.pw.xml b/src/chrome/content/rules/Justaguy.pw.xml index 38bc5f2c6de9..b4fef9bbfaea 100644 --- a/src/chrome/content/rules/Justaguy.pw.xml +++ b/src/chrome/content/rules/Justaguy.pw.xml @@ -6,7 +6,7 @@ Fetch error: http://services.justaguy.pw/ => https://services.justaguy.pw/: (28, Fetch error: http://www.justaguy.pw/ => https://www.justaguy.pw/: (6, 'Could not resolve host: www.justaguy.pw') --> - + diff --git a/src/chrome/content/rules/Justia.com.xml b/src/chrome/content/rules/Justia.com.xml new file mode 100644 index 000000000000..e2a3241431f6 --- /dev/null +++ b/src/chrome/content/rules/Justia.com.xml @@ -0,0 +1,161 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Justia.xml b/src/chrome/content/rules/Justia.xml deleted file mode 100644 index 52559f072ec7..000000000000 --- a/src/chrome/content/rules/Justia.xml +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/JusticeForStrumia.org.xml b/src/chrome/content/rules/JusticeForStrumia.org.xml new file mode 100644 index 000000000000..e1033b864d64 --- /dev/null +++ b/src/chrome/content/rules/JusticeForStrumia.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/JusticeMail.xml b/src/chrome/content/rules/JusticeMail.xml index 33ac7e524ed3..84f126fc9581 100644 --- a/src/chrome/content/rules/JusticeMail.xml +++ b/src/chrome/content/rules/JusticeMail.xml @@ -6,8 +6,8 @@ Fetch error: http://mail.justice.com/ => https://mail.justice.com/: (51, "SSL: n Disabled by https-everywhere-checker because: Fetch error: http://mail.justice.com/ => https://mail.justice.com/: (51, "SSL: no alternative certificate subject name matches target host name 'mail.justice.com'") --> - + - - + + diff --git a/src/chrome/content/rules/KAKAO.com.xml b/src/chrome/content/rules/KAKAO.com.xml new file mode 100644 index 000000000000..ff212dd24b21 --- /dev/null +++ b/src/chrome/content/rules/KAKAO.com.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/KAKAO.xml b/src/chrome/content/rules/KAKAO.xml deleted file mode 100644 index bfd29460e6f4..000000000000 --- a/src/chrome/content/rules/KAKAO.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/KAU.se-problematic.xml b/src/chrome/content/rules/KAU.se-problematic.xml index 28dde6a21851..89f5dbb47269 100644 --- a/src/chrome/content/rules/KAU.se-problematic.xml +++ b/src/chrome/content/rules/KAU.se-problematic.xml @@ -5,13 +5,12 @@ - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/KCC.digital.xml b/src/chrome/content/rules/KCC.digital.xml index ce8ca0dd5950..c8e5299b302d 100644 --- a/src/chrome/content/rules/KCC.digital.xml +++ b/src/chrome/content/rules/KCC.digital.xml @@ -19,7 +19,7 @@ - + - + https://kcvids.com/: (6, 'Could not resolve host: kcvids.com') -Fetch error: http://join.kcvids.com/ => https://join.kcvids.com/: (6, 'Could not resolve host: join.kcvids.com') -Fetch error: http://www.kcvids.com/ => https://www.kcvids.com/: (6, 'Could not resolve host: www.kcvids.com') - ---> - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/KD2.us.xml b/src/chrome/content/rules/KD2.us.xml index eaa520ea34b2..0aadd2fe1bcd 100644 --- a/src/chrome/content/rules/KD2.us.xml +++ b/src/chrome/content/rules/KD2.us.xml @@ -9,7 +9,7 @@ Fetch error: http://www.kd2.us/ => https://www.kd2.us/: (51, "SSL: no alternativ - (www.)? --> - + diff --git a/src/chrome/content/rules/KDE.xml b/src/chrome/content/rules/KDE.xml index d786d82a1e14..6e5f87f2fc5c 100644 --- a/src/chrome/content/rules/KDE.xml +++ b/src/chrome/content/rules/KDE.xml @@ -1,9 +1,5 @@ - + @@ -62,10 +50,13 @@ Fetch error: http://sprints.kde.org/ => https://sprints.kde.org/: (6, 'Could not + + + @@ -74,13 +65,14 @@ Fetch error: http://sprints.kde.org/ => https://sprints.kde.org/: (6, 'Could not - + + @@ -89,6 +81,7 @@ Fetch error: http://sprints.kde.org/ => https://sprints.kde.org/: (6, 'Could not + @@ -102,7 +95,6 @@ Fetch error: http://sprints.kde.org/ => https://sprints.kde.org/: (6, 'Could not - @@ -111,46 +103,14 @@ Fetch error: http://sprints.kde.org/ => https://sprints.kde.org/: (6, 'Could not - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + diff --git a/src/chrome/content/rules/KEMI.se.xml b/src/chrome/content/rules/KEMI.se.xml index 5a22237f591a..1eb8cd759859 100644 --- a/src/chrome/content/rules/KEMI.se.xml +++ b/src/chrome/content/rules/KEMI.se.xml @@ -5,10 +5,9 @@ Fetch error: http://kemi.se/ => https://kemi.se/: (60, 'SSL certificate problem: Fetch error: http://www.kemi.se/ => https://www.kemi.se/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + - - + diff --git a/src/chrome/content/rules/KETrade.com.sg.xml b/src/chrome/content/rules/KETrade.com.sg.xml new file mode 100644 index 000000000000..3f5bb21857a7 --- /dev/null +++ b/src/chrome/content/rules/KETrade.com.sg.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/KFWebs.net.xml b/src/chrome/content/rules/KFWebs.net.xml new file mode 100644 index 000000000000..854e95b3eda5 --- /dev/null +++ b/src/chrome/content/rules/KFWebs.net.xml @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/KF_Webs.net.xml b/src/chrome/content/rules/KF_Webs.net.xml deleted file mode 100644 index 089e76666dbc..000000000000 --- a/src/chrome/content/rules/KF_Webs.net.xml +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/KH.hu.xml b/src/chrome/content/rules/KH.hu.xml index 371b5dd51d15..22428eda35f0 100644 --- a/src/chrome/content/rules/KH.hu.xml +++ b/src/chrome/content/rules/KH.hu.xml @@ -5,7 +5,7 @@ Fetch error: http://mi-vsp2.kh.hu/ => https://mi-vsp2.kh.hu/: (35, 'Unknown SSL Valid site, broken https: - + Timeout: - aliases.kh.hu - khb.hu (redirects www.khb.hu) @@ -20,7 +20,7 @@ Fetch error: http://mi-vsp2.kh.hu/ => https://mi-vsp2.kh.hu/: (35, 'Unknown SSL Timeout: - rtitest.kh.hu - biztosnetwsact.kh.hu - + Invalid certificate: - mi-sentry-test.kh.hu (http redirects to https) - edma.khb.hu (http timeout) @@ -29,7 +29,7 @@ Fetch error: http://mi-vsp2.kh.hu/ => https://mi-vsp2.kh.hu/: (35, 'Unknown SSL - im.kh.hu (http empty) --> - + @@ -73,7 +73,7 @@ Fetch error: http://mi-vsp2.kh.hu/ => https://mi-vsp2.kh.hu/: (35, 'Unknown SSL to="https://szepkartya.kh.hu/" /> - + diff --git a/src/chrome/content/rules/KHN.nl.xml b/src/chrome/content/rules/KHN.nl.xml deleted file mode 100644 index 271e172d4007..000000000000 --- a/src/chrome/content/rules/KHN.nl.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/KHOC.co.xml b/src/chrome/content/rules/KHOC.co.xml index 110d02058675..620d14af115f 100644 --- a/src/chrome/content/rules/KHOC.co.xml +++ b/src/chrome/content/rules/KHOC.co.xml @@ -23,10 +23,10 @@ Fetch error: http://khoc.co/ => https://www.khoc.co/: (7, 'Failed to connect to * Secured by us --> - + - + diff --git a/src/chrome/content/rules/KHub.net.xml b/src/chrome/content/rules/KHub.net.xml index abee8fd70b15..2686d81b0651 100644 --- a/src/chrome/content/rules/KHub.net.xml +++ b/src/chrome/content/rules/KHub.net.xml @@ -15,7 +15,7 @@ --> - + https://fonder.ki.se/: (28, 'Operation time Fetch error: http://kib.ki.se/ => https://kib.ki.se/: (28, 'Connection timed out after 10000 milliseconds') Fetch error: http://metasearch.kib.ki.se/ => https://metasearch.kib.ki.se/: (6, 'Could not resolve host: metasearch.kib.ki.se') --> - + @@ -23,13 +23,6 @@ Fetch error: http://metasearch.kib.ki.se/ => https://metasearch.kib.ki.se/: (6, - - - - - - - - + diff --git a/src/chrome/content/rules/KISSinsights.xml b/src/chrome/content/rules/KISSinsights.xml deleted file mode 100644 index 05fdc898dcf2..000000000000 --- a/src/chrome/content/rules/KISSinsights.xml +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/KISSmetrics.xml b/src/chrome/content/rules/KISSmetrics.xml index 12149e6c81ea..4eb887bc2c3a 100644 --- a/src/chrome/content/rules/KISSmetrics.xml +++ b/src/chrome/content/rules/KISSmetrics.xml @@ -1,63 +1,20 @@ - + + - - - - - + - - - - - + diff --git a/src/chrome/content/rules/KIT_digital.xml b/src/chrome/content/rules/KIT_digital.xml index 3cbe76c4f123..08e7d0c0c2ee 100644 --- a/src/chrome/content/rules/KIT_digital.xml +++ b/src/chrome/content/rules/KIT_digital.xml @@ -16,7 +16,7 @@ Fetch error: http://kitd.com/ => https://kitd.com/: (51, "SSL: no alternative ce - ir (works, akamai) --> - + @@ -27,4 +27,4 @@ Fetch error: http://kitd.com/ => https://kitd.com/: (51, "SSL: no alternative ce - \ No newline at end of file + diff --git a/src/chrome/content/rules/KIXEYE.com.xml b/src/chrome/content/rules/KIXEYE.com.xml new file mode 100644 index 000000000000..f8b496c2b5bc --- /dev/null +++ b/src/chrome/content/rules/KIXEYE.com.xml @@ -0,0 +1,134 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/KIXEYE.xml b/src/chrome/content/rules/KIXEYE.xml deleted file mode 100644 index 5f7c990b7c82..000000000000 --- a/src/chrome/content/rules/KIXEYE.xml +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/KK.dk.xml b/src/chrome/content/rules/KK.dk.xml index 146012acfb7e..67e0f03dcb10 100644 --- a/src/chrome/content/rules/KK.dk.xml +++ b/src/chrome/content/rules/KK.dk.xml @@ -23,7 +23,7 @@ Fetch error: http://medarbejdere.kk.dk/ => https://medarbejdere.kk.dk/: (6, 'Cou --> - + @@ -66,9 +66,7 @@ Fetch error: http://medarbejdere.kk.dk/ => https://medarbejdere.kk.dk/: (6, 'Cou - + diff --git a/src/chrome/content/rules/KKH.de.xml b/src/chrome/content/rules/KKH.de.xml index 3ff3faafe4a2..9ff5dca2d823 100644 --- a/src/chrome/content/rules/KKH.de.xml +++ b/src/chrome/content/rules/KKH.de.xml @@ -9,17 +9,10 @@ Fetch error: http://stats.kkh-allianz.de/ => https://stats.kkh-allianz.de/: (60, have a wrong certificate (*.kkh.de, kkh.de), so we need to handle the https redirect. --> - + - - - - - - - - + diff --git a/src/chrome/content/rules/KKH.se.xml b/src/chrome/content/rules/KKH.se.xml index 0f040e70c358..55d7463b867d 100644 --- a/src/chrome/content/rules/KKH.se.xml +++ b/src/chrome/content/rules/KKH.se.xml @@ -1,7 +1,6 @@ - - + diff --git a/src/chrome/content/rules/KKR.bund.de.xml b/src/chrome/content/rules/KKR.bund.de.xml new file mode 100644 index 000000000000..43570e3dfde4 --- /dev/null +++ b/src/chrome/content/rules/KKR.bund.de.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/KLDP.net.xml b/src/chrome/content/rules/KLDP.net.xml index 6df25c30d617..d7afa39a71f9 100644 --- a/src/chrome/content/rules/KLDP.net.xml +++ b/src/chrome/content/rules/KLDP.net.xml @@ -34,7 +34,7 @@ Fetch error: http://qmail.kldp.net/ => https://qmail.kldp.net/: (7, 'Failed to c --> - + diff --git a/src/chrome/content/rules/KLDP.org.xml b/src/chrome/content/rules/KLDP.org.xml index 7dbbee14bfd2..98ab5673a449 100644 --- a/src/chrome/content/rules/KLDP.org.xml +++ b/src/chrome/content/rules/KLDP.org.xml @@ -40,10 +40,10 @@ Fetch error: http://weblog.kldp.org/ => https://weblog.kldp.org/: (51, "SSL: no - validator from validator.w3.org ² ¹ Secured by us - ² Unsecurable - + ² Unsecurable - --> - + diff --git a/src/chrome/content/rules/KLM.xml b/src/chrome/content/rules/KLM.xml index 3c645875de72..797f3ac2f1dc 100644 --- a/src/chrome/content/rules/KLM.xml +++ b/src/chrome/content/rules/KLM.xml @@ -4,12 +4,12 @@ Disabled by https-everywhere-checker because: Non-2xx HTTP code: http://klm.com/ (200) => https://www.klm.com/ (403) --> - + - + + - + diff --git a/src/chrome/content/rules/KNET.cn.xml b/src/chrome/content/rules/KNET.cn.xml index 2e15d851d39c..e252031d294f 100644 --- a/src/chrome/content/rules/KNET.cn.xml +++ b/src/chrome/content/rules/KNET.cn.xml @@ -9,14 +9,14 @@ Fetch error: http://yida.knet.cn/ => https://yida.knet.cn/: (60, 'SSL certificat Dropped: - jubao * - t * - + Mismatch: - (www.)? - rr - ts - yida - zt * - + Redirect to http: - dmp - domain @@ -37,8 +37,8 @@ Fetch error: http://yida.knet.cn/ => https://yida.knet.cn/: (60, 'SSL certificat - ss.knet.cn --> - - + + diff --git a/src/chrome/content/rules/KOLRanking.com.xml b/src/chrome/content/rules/KOLRanking.com.xml new file mode 100644 index 000000000000..f7c2b29632cb --- /dev/null +++ b/src/chrome/content/rules/KOLRanking.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/KOOORA.com.xml b/src/chrome/content/rules/KOOORA.com.xml index 4e19081f7766..fde14ab1853e 100644 --- a/src/chrome/content/rules/KOOORA.com.xml +++ b/src/chrome/content/rules/KOOORA.com.xml @@ -1,16 +1,11 @@ + diff --git a/src/chrome/content/rules/KPN-expired.xml b/src/chrome/content/rules/KPN-expired.xml index 4849ca4c94a9..aa9d91fa1655 100644 --- a/src/chrome/content/rules/KPN-expired.xml +++ b/src/chrome/content/rules/KPN-expired.xml @@ -10,7 +10,6 @@ - + diff --git a/src/chrome/content/rules/KPN.com.xml b/src/chrome/content/rules/KPN.com.xml index 756cc589496f..067a5e2d7f03 100644 --- a/src/chrome/content/rules/KPN.com.xml +++ b/src/chrome/content/rules/KPN.com.xml @@ -11,20 +11,20 @@ --> - + - + - - + + + + - - + + - - - + + @@ -14,7 +14,7 @@ - + - + diff --git a/src/chrome/content/rules/KQED.org.xml b/src/chrome/content/rules/KQED.org.xml index d68476d4c2e5..11b16b9c4d09 100644 --- a/src/chrome/content/rules/KQED.org.xml +++ b/src/chrome/content/rules/KQED.org.xml @@ -16,7 +16,7 @@ Non-2xx HTTP code: http://u.s.kqed.org/ (200) => https://u.s.kqed.net/ (403) ² Redirects to http --> - + diff --git a/src/chrome/content/rules/KSH.xml b/src/chrome/content/rules/KSH.xml index b9793d563e52..2e4405bea69a 100644 --- a/src/chrome/content/rules/KSH.xml +++ b/src/chrome/content/rules/KSH.xml @@ -6,6 +6,12 @@ + + + + + + diff --git a/src/chrome/content/rules/KSL.xml b/src/chrome/content/rules/KSL.xml index 269f46da7d43..129ec1585892 100644 --- a/src/chrome/content/rules/KSL.xml +++ b/src/chrome/content/rules/KSL.xml @@ -1,13 +1,15 @@ - + + + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/KT.kz.xml b/src/chrome/content/rules/KT.kz.xml new file mode 100644 index 000000000000..6d4bd5b26d46 --- /dev/null +++ b/src/chrome/content/rules/KT.kz.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/KTAS.com.au.xml b/src/chrome/content/rules/KTAS.com.au.xml new file mode 100644 index 000000000000..3b02fba8a110 --- /dev/null +++ b/src/chrome/content/rules/KTAS.com.au.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/KTk.de.xml b/src/chrome/content/rules/KTk.de.xml index 7e7463516a1e..495a2909e610 100644 --- a/src/chrome/content/rules/KTk.de.xml +++ b/src/chrome/content/rules/KTk.de.xml @@ -1,7 +1,7 @@ diff --git a/src/chrome/content/rules/KYM-CDN.com.xml b/src/chrome/content/rules/KYM-CDN.com.xml index 7471a76f6c6f..397be50aab18 100644 --- a/src/chrome/content/rules/KYM-CDN.com.xml +++ b/src/chrome/content/rules/KYM-CDN.com.xml @@ -9,12 +9,27 @@ * 503 --> - - - - - - + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/KabelDeutschland.xml b/src/chrome/content/rules/KabelDeutschland.xml index 280c308a7c0e..66ccb2fb0275 100644 --- a/src/chrome/content/rules/KabelDeutschland.xml +++ b/src/chrome/content/rules/KabelDeutschland.xml @@ -5,7 +5,7 @@ Fetch error: http://newsletter.kabelmail.de/ => https://newsletter.kabelmail.de/ Fetch error: http://static.kabelmail.de/ => https://static.kabelmail.de/: (28, 'Connection timed out after 20001 milliseconds') --> - + @@ -21,7 +21,7 @@ Fetch error: http://static.kabelmail.de/ => https://static.kabelmail.de/: (28, ' - + diff --git a/src/chrome/content/rules/Kabelkiosk.de.xml b/src/chrome/content/rules/Kabelkiosk.de.xml deleted file mode 100644 index 0a214c89d145..000000000000 --- a/src/chrome/content/rules/Kabelkiosk.de.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/chrome/content/rules/Kable_Media_Services.xml b/src/chrome/content/rules/Kable_Media_Services.xml index 54a1336b6fab..31531a87fe08 100644 --- a/src/chrome/content/rules/Kable_Media_Services.xml +++ b/src/chrome/content/rules/Kable_Media_Services.xml @@ -19,7 +19,7 @@ Fetch error: http://www.kable.com/ => https://www.kable.com/: (60, 'SSL certific - ^kable.com (cert only matches www) --> - + diff --git a/src/chrome/content/rules/Kachingle.xml b/src/chrome/content/rules/Kachingle.xml index 3d82f8bc28f8..7d998b784cf6 100644 --- a/src/chrome/content/rules/Kachingle.xml +++ b/src/chrome/content/rules/Kachingle.xml @@ -11,15 +11,14 @@ Disabled by https-everywhere-checker because: Fetch error: http://downloads.kachingle.com/ => https://downloads.kachingle.com/: (60, 'SSL certificate problem: certificate has expired') Fetch error: http://assets.kachingle.com/ => https://assets.kachingle.com/: (60, 'SSL certificate problem: certificate has expired') --> - + - + - - + diff --git a/src/chrome/content/rules/Kaggle.com.xml b/src/chrome/content/rules/Kaggle.com.xml deleted file mode 100644 index b326c2724282..000000000000 --- a/src/chrome/content/rules/Kaggle.com.xml +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Kagi.xml b/src/chrome/content/rules/Kagi.xml deleted file mode 100644 index 1b472185d26e..000000000000 --- a/src/chrome/content/rules/Kagi.xml +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/KaiRo.xml b/src/chrome/content/rules/KaiRo.xml index c79821a365d7..2dbec26d197f 100644 --- a/src/chrome/content/rules/KaiRo.xml +++ b/src/chrome/content/rules/KaiRo.xml @@ -16,7 +16,7 @@ Fetch error: http://mail.kairo.at/ => https://mail.kairo.at/: (28, 'Connection t - spoeck.kairo.at - www.uze.kairo.at --> - + @@ -51,7 +51,7 @@ Fetch error: http://mail.kairo.at/ => https://mail.kairo.at/: (28, 'Connection t - + @@ -129,7 +129,7 @@ Fetch error: http://mail.kairo.at/ => https://mail.kairo.at/: (28, 'Connection t - + diff --git a/src/chrome/content/rules/Kaimi.io.xml b/src/chrome/content/rules/Kaimi.io.xml new file mode 100644 index 000000000000..4d32005a9254 --- /dev/null +++ b/src/chrome/content/rules/Kaimi.io.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Kaiseki.me.xml b/src/chrome/content/rules/Kaiseki.me.xml deleted file mode 100644 index 5f78955e40df..000000000000 --- a/src/chrome/content/rules/Kaiseki.me.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Kaiser_Systeme.xml b/src/chrome/content/rules/Kaiser_Systeme.xml index bc7c9ac39cb8..c85cde2c475e 100644 --- a/src/chrome/content/rules/Kaiser_Systeme.xml +++ b/src/chrome/content/rules/Kaiser_Systeme.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Kaiserslautern.de.xml b/src/chrome/content/rules/Kaiserslautern.de.xml index 86b0d653b10a..6e2f59216c43 100644 --- a/src/chrome/content/rules/Kaiserslautern.de.xml +++ b/src/chrome/content/rules/Kaiserslautern.de.xml @@ -1,32 +1,23 @@ - + - - + + - + diff --git a/src/chrome/content/rules/Kaldi-ASR.org.xml b/src/chrome/content/rules/Kaldi-ASR.org.xml new file mode 100644 index 000000000000..a043d3d260d4 --- /dev/null +++ b/src/chrome/content/rules/Kaldi-ASR.org.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Kalooga.com.xml b/src/chrome/content/rules/Kalooga.com.xml index f3732fad79da..cb4362143b30 100644 --- a/src/chrome/content/rules/Kalooga.com.xml +++ b/src/chrome/content/rules/Kalooga.com.xml @@ -1,10 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -14,6 +56,9 @@ + + diff --git a/src/chrome/content/rules/Kaltura.com-falsemixed.xml b/src/chrome/content/rules/Kaltura.com-falsemixed.xml index aa290220763e..85bed5e42743 100644 --- a/src/chrome/content/rules/Kaltura.com-falsemixed.xml +++ b/src/chrome/content/rules/Kaltura.com-falsemixed.xml @@ -1,5 +1,5 @@ diff --git a/src/chrome/content/rules/Kangurum.xml b/src/chrome/content/rules/Kangurum.xml index f91f9606c99f..d2661bdc5901 100644 --- a/src/chrome/content/rules/Kangurum.xml +++ b/src/chrome/content/rules/Kangurum.xml @@ -8,11 +8,11 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.kangurum.com.tr/ => https://www.kangurum.com.tr/: Redirect for 'http://www.kangurum.com.tr/' missing Location Fetch error: http://kangurum.com.tr/ => https://www.kangurum.com.tr/: Redirect for 'http://kangurum.com.tr/' missing Location --> - + - + diff --git a/src/chrome/content/rules/Kanotix.xml b/src/chrome/content/rules/Kanotix.xml index dc4bc8e7bf4a..9676ba0f2cde 100644 --- a/src/chrome/content/rules/Kanotix.xml +++ b/src/chrome/content/rules/Kanotix.xml @@ -29,7 +29,7 @@ --> - + https://customercare.kansas.com/ * 503, akamai --> - + @@ -22,7 +22,6 @@ Fetch error: http://customercare.kansas.com/ => https://customercare.kansas.com/ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Kanshoo.xml b/src/chrome/content/rules/Kanshoo.xml index b588daafc933..e75a730143d8 100644 --- a/src/chrome/content/rules/Kanshoo.xml +++ b/src/chrome/content/rules/Kanshoo.xml @@ -1,14 +1,10 @@ - - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Kantar-Latam-Portal.xml b/src/chrome/content/rules/Kantar-Latam-Portal.xml index c3b1a6fba8dc..d434b9e05599 100644 --- a/src/chrome/content/rules/Kantar-Latam-Portal.xml +++ b/src/chrome/content/rules/Kantar-Latam-Portal.xml @@ -8,13 +8,13 @@ Fetch error: http://kantarlatam.com/ => https://www.kantarlatam.com/: (6, 'Could For other Kanvar coverage, see TNS-Global.xml. --> - + - + - + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Kapiton.se.xml b/src/chrome/content/rules/Kapiton.se.xml index 9ff64e41e9e8..22646e7bdf90 100644 --- a/src/chrome/content/rules/Kapiton.se.xml +++ b/src/chrome/content/rules/Kapiton.se.xml @@ -5,7 +5,7 @@ Fetch error: http://kapiton.se/ => https://kapiton.se/: (7, 'Failed to connect t Fetch error: http://www.kapiton.se/ => https://www.kapiton.se/: (7, 'Failed to connect to www.kapiton.se port 443: Connection refused') --> - + @@ -16,4 +16,4 @@ Fetch error: http://www.kapiton.se/ => https://www.kapiton.se/: (7, 'Failed to c - \ No newline at end of file + diff --git a/src/chrome/content/rules/Kaply.com.xml b/src/chrome/content/rules/Kaply.com.xml index aba250356354..d8b8e78084d6 100644 --- a/src/chrome/content/rules/Kaply.com.xml +++ b/src/chrome/content/rules/Kaply.com.xml @@ -6,7 +6,7 @@ Fetch error: http://www.mike.kaply.com/ => https://www.mike.kaply.com/: (51, "SS (www.)?kaply.com: Mismatched --> - + diff --git a/src/chrome/content/rules/Kapsi.fi.xml b/src/chrome/content/rules/Kapsi.fi.xml index e5cdf6a76f4f..cacb45636c50 100644 --- a/src/chrome/content/rules/Kapsi.fi.xml +++ b/src/chrome/content/rules/Kapsi.fi.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://koti.kapsi.fi/ => https://koti.kapsi.fi/: label empty or too long --> - + diff --git a/src/chrome/content/rules/Kapt-Cha.xml b/src/chrome/content/rules/Kapt-Cha.xml index 1b11cb0467a3..506d1c344717 100644 --- a/src/chrome/content/rules/Kapt-Cha.xml +++ b/src/chrome/content/rules/Kapt-Cha.xml @@ -1,8 +1,8 @@ - - + + diff --git a/src/chrome/content/rules/Karger.com.xml b/src/chrome/content/rules/Karger.com.xml deleted file mode 100644 index 10a7b3174ba7..000000000000 --- a/src/chrome/content/rules/Karger.com.xml +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Kariera.gr.xml b/src/chrome/content/rules/Kariera.gr.xml index 2715a728d97f..3bb918d58b45 100644 --- a/src/chrome/content/rules/Kariera.gr.xml +++ b/src/chrome/content/rules/Kariera.gr.xml @@ -4,7 +4,7 @@ - + diff --git a/src/chrome/content/rules/Karlsruhe.de.xml b/src/chrome/content/rules/Karlsruhe.de.xml new file mode 100644 index 000000000000..b52351b9224a --- /dev/null +++ b/src/chrome/content/rules/Karlsruhe.de.xml @@ -0,0 +1,142 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Karlsruhe_Institute_of_Technology.xml b/src/chrome/content/rules/Karlsruhe_Institute_of_Technology.xml index 692a52576c8f..f4d1886364b5 100644 --- a/src/chrome/content/rules/Karlsruhe_Institute_of_Technology.xml +++ b/src/chrome/content/rules/Karlsruhe_Institute_of_Technology.xml @@ -1,46 +1,41 @@ + + + + + + + + + + - + + + + - - - - - + diff --git a/src/chrome/content/rules/Karma.mg.xml b/src/chrome/content/rules/Karma.mg.xml index 8944152698a1..048010e7496c 100644 --- a/src/chrome/content/rules/Karma.mg.xml +++ b/src/chrome/content/rules/Karma.mg.xml @@ -19,7 +19,7 @@ - + https://worldtour.kartfighter. - app.kartfighter.com --> - + diff --git a/src/chrome/content/rules/Kaseya.net.xml b/src/chrome/content/rules/Kaseya.net.xml index 75629589f12f..dee88bfe619e 100644 --- a/src/chrome/content/rules/Kaseya.net.xml +++ b/src/chrome/content/rules/Kaseya.net.xml @@ -12,7 +12,7 @@ Fetch error: http://provision.relay.kaseya.net/ => https://provision.relay.kasey ^kaseya.net doesn't exist. --> - + diff --git a/src/chrome/content/rules/Kasimp3.xml b/src/chrome/content/rules/Kasimp3.xml index 88cb15c81649..aa14bb1ec29a 100644 --- a/src/chrome/content/rules/Kasimp3.xml +++ b/src/chrome/content/rules/Kasimp3.xml @@ -14,4 +14,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Kaspersky-cyberstat.com.xml b/src/chrome/content/rules/Kaspersky-cyberstat.com.xml index 7423d43d1d23..0b182c89b4a9 100644 --- a/src/chrome/content/rules/Kaspersky-cyberstat.com.xml +++ b/src/chrome/content/rules/Kaspersky-cyberstat.com.xml @@ -7,7 +7,7 @@ Fetch error: http://www.kaspersky-cyberstat.com/ => https://www.kaspersky-cybers For other Kaspersky coverage, see Kaspersky.com.xml. --> - + diff --git a/src/chrome/content/rules/Kaspersky.com.xml b/src/chrome/content/rules/Kaspersky.com.xml index c97b25dfdb2d..b34d79e12ce7 100644 --- a/src/chrome/content/rules/Kaspersky.com.xml +++ b/src/chrome/content/rules/Kaspersky.com.xml @@ -1,7 +1,4 @@ - - + @@ -141,7 +140,6 @@ Fetch error: http://us-business.kaspersky.com/ => https://us-business.kaspersky. - @@ -187,7 +185,7 @@ Fetch error: http://us-business.kaspersky.com/ => https://us-business.kaspersky. - + @@ -200,8 +198,8 @@ Fetch error: http://us-business.kaspersky.com/ => https://us-business.kaspersky. - - + + - - + + - + https://www.kasperskycontent * Secured by us, doesn't trip MCB --> - + diff --git a/src/chrome/content/rules/Kat_de_Paris.xml b/src/chrome/content/rules/Kat_de_Paris.xml deleted file mode 100644 index 161a5d777edf..000000000000 --- a/src/chrome/content/rules/Kat_de_Paris.xml +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Kate_Heddleston.com.xml b/src/chrome/content/rules/Kate_Heddleston.com.xml index 9df6a7bd5aa9..4c1b40f8d2c8 100644 --- a/src/chrome/content/rules/Kate_Heddleston.com.xml +++ b/src/chrome/content/rules/Kate_Heddleston.com.xml @@ -15,7 +15,7 @@ --> - + - + https://netlogin.kuleuven.be/: (28, ¹ * Secured by us --> - + diff --git a/src/chrome/content/rules/Kathrein.xml b/src/chrome/content/rules/Kathrein.xml index 5bef85926703..925514aacb64 100644 --- a/src/chrome/content/rules/Kathrein.xml +++ b/src/chrome/content/rules/Kathrein.xml @@ -4,7 +4,7 @@ - + diff --git a/src/chrome/content/rules/Katwarn.de.xml b/src/chrome/content/rules/Katwarn.de.xml new file mode 100644 index 000000000000..f8d394542997 --- /dev/null +++ b/src/chrome/content/rules/Katwarn.de.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/KatzPorn.xml b/src/chrome/content/rules/KatzPorn.xml index 9beadd5e465c..4a3ac74dd006 100644 --- a/src/chrome/content/rules/KatzPorn.xml +++ b/src/chrome/content/rules/KatzPorn.xml @@ -7,7 +7,7 @@ - + diff --git a/src/chrome/content/rules/Kaufland.cz.xml b/src/chrome/content/rules/Kaufland.cz.xml index 4a974730075b..8c665e0eaaa7 100644 --- a/src/chrome/content/rules/Kaufland.cz.xml +++ b/src/chrome/content/rules/Kaufland.cz.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www-q.kaufland.cz/ => https://www-q.kaufland.cz/: (28, 'Connection timed out after 20001 milliseconds') --> - + diff --git a/src/chrome/content/rules/Kayako-clients.xml b/src/chrome/content/rules/Kayako-clients.xml index 73ca7228dabc..0a61edf48425 100644 --- a/src/chrome/content/rules/Kayako-clients.xml +++ b/src/chrome/content/rules/Kayako-clients.xml @@ -9,7 +9,7 @@ - + - - - - - - - - diff --git a/src/chrome/content/rules/Kaywa.xml b/src/chrome/content/rules/Kaywa.xml index 961db6012097..3439531e6bdd 100644 --- a/src/chrome/content/rules/Kaywa.xml +++ b/src/chrome/content/rules/Kaywa.xml @@ -1,84 +1,49 @@ - + - + + + + - + + + + + + - - + + + - - - - - - - - - + - + diff --git a/src/chrome/content/rules/Kb.se.xml b/src/chrome/content/rules/Kb.se.xml new file mode 100644 index 000000000000..455f88d8d558 --- /dev/null +++ b/src/chrome/content/rules/Kb.se.xml @@ -0,0 +1,13 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Kb8ojh.net.xml b/src/chrome/content/rules/Kb8ojh.net.xml index 01711a30bf45..fe01e3642a78 100644 --- a/src/chrome/content/rules/Kb8ojh.net.xml +++ b/src/chrome/content/rules/Kb8ojh.net.xml @@ -6,7 +6,7 @@ Fetch error: http://www.kb8ojh.net/ => https://www.kb8ojh.net/: (51, "SSL: no al Disabled by https-everywhere-checker because: Fetch error: http://www.kb8ojh.net/ => https://www.kb8ojh.net/: (51, "SSL: no alternative certificate subject name matches target host name 'www.kb8ojh.net'") --> - + diff --git a/src/chrome/content/rules/Kbia-gmbh.de.xml b/src/chrome/content/rules/Kbia-gmbh.de.xml index 8653980ee51e..f19f6db6a788 100644 --- a/src/chrome/content/rules/Kbia-gmbh.de.xml +++ b/src/chrome/content/rules/Kbia-gmbh.de.xml @@ -18,7 +18,7 @@ - cloud.kbia-gmbh.de --> - + diff --git a/src/chrome/content/rules/Kdelive.org.xml b/src/chrome/content/rules/Kdelive.org.xml index aa59fb821ec2..02f63b7569a7 100644 --- a/src/chrome/content/rules/Kdelive.org.xml +++ b/src/chrome/content/rules/Kdelive.org.xml @@ -5,13 +5,13 @@ Fetch error: http://kdelive.org/ => https://kdelive.org/: (7, 'Failed to connect Fetch error: http://www.kdelive.org/ => https://www.kdelive.org/: (7, 'Failed to connect to www.kdelive.org port 443: Connection refused') --> - + - + - - + - - - + diff --git a/src/chrome/content/rules/KeePassXC.org.xml b/src/chrome/content/rules/KeePassXC.org.xml new file mode 100644 index 000000000000..3654300f4ead --- /dev/null +++ b/src/chrome/content/rules/KeePassXC.org.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Keelog.com.xml b/src/chrome/content/rules/Keelog.com.xml index 22dfb3d777d4..8034c870a37c 100644 --- a/src/chrome/content/rules/Keelog.com.xml +++ b/src/chrome/content/rules/Keelog.com.xml @@ -6,4 +6,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/KeepTempo.com.xml b/src/chrome/content/rules/KeepTempo.com.xml index 83dcd1889ee4..5adcc3ec503d 100644 --- a/src/chrome/content/rules/KeepTempo.com.xml +++ b/src/chrome/content/rules/KeepTempo.com.xml @@ -14,7 +14,7 @@ Fetch error: http://app.keeptempo.com/ => https://app.keeptempo.com/: (6, 'Could - app.keeptempo.com --> - + diff --git a/src/chrome/content/rules/Keep_all_the_things.com.xml b/src/chrome/content/rules/Keep_all_the_things.com.xml index 2c353ece4ca4..2a9dcea844d1 100644 --- a/src/chrome/content/rules/Keep_all_the_things.com.xml +++ b/src/chrome/content/rules/Keep_all_the_things.com.xml @@ -4,13 +4,14 @@ Disabled by https-everywhere-checker because: Fetch error: http://keepallthethings.com/ => https://keepallthethings.com/: (6, 'Could not resolve host: keepallthethings.com') --> - + - + + + - + diff --git a/src/chrome/content/rules/Kei.pl-mismatches.xml b/src/chrome/content/rules/Kei.pl-mismatches.xml index aa8bb3eb7ea9..ec00097b72f8 100644 --- a/src/chrome/content/rules/Kei.pl-mismatches.xml +++ b/src/chrome/content/rules/Kei.pl-mismatches.xml @@ -5,9 +5,8 @@ - + - + diff --git a/src/chrome/content/rules/Kei.pl.xml b/src/chrome/content/rules/Kei.pl.xml index 9adfa18f146a..2f8aee531990 100644 --- a/src/chrome/content/rules/Kei.pl.xml +++ b/src/chrome/content/rules/Kei.pl.xml @@ -14,6 +14,6 @@ Fetch error: http://panel.kei.pl/ => https://panel.kei.pl/: Redirect for 'http:/ - + diff --git a/src/chrome/content/rules/Keksbude.net.xml b/src/chrome/content/rules/Keksbude.net.xml index 31decc9a4f57..4c6b98a84419 100644 --- a/src/chrome/content/rules/Keksbude.net.xml +++ b/src/chrome/content/rules/Keksbude.net.xml @@ -12,7 +12,7 @@ Fetch error: http://www.keksbude.net/ => https://www.keksbude.net/: (6, 'Could n * Mismatched --> - + diff --git a/src/chrome/content/rules/Kelley-Blue-Book.xml b/src/chrome/content/rules/Kelley-Blue-Book.xml index e3952bee97b6..0c90b3681432 100644 --- a/src/chrome/content/rules/Kelley-Blue-Book.xml +++ b/src/chrome/content/rules/Kelley-Blue-Book.xml @@ -6,19 +6,20 @@ Fetch error: http://kbb.com/ => https://kbb.com/: (28, 'Connection timed out aft Disabled by https-everywhere-checker because: Fetch error: http://kbb.com/ => https://kbb.com/: (28, 'Connection timed out after 10000 milliseconds') --> - + - + + + - + - + diff --git a/src/chrome/content/rules/Kenengba.com.xml b/src/chrome/content/rules/Kenengba.com.xml index 34c1621ea2cf..4eabbacd1de8 100644 --- a/src/chrome/content/rules/Kenengba.com.xml +++ b/src/chrome/content/rules/Kenengba.com.xml @@ -3,4 +3,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Kenexa-mismatches.xml b/src/chrome/content/rules/Kenexa-mismatches.xml index f9c9adfdbf8b..fc523d830eab 100644 --- a/src/chrome/content/rules/Kenexa-mismatches.xml +++ b/src/chrome/content/rules/Kenexa-mismatches.xml @@ -15,7 +15,7 @@ - + - + https://www.eiskent.co.uk/: (51, "SS These altnames don't exist: - + - www.ola.kent.gov.uk - + Insecure cookies are set for these hosts: ᶜ - beta.kent.gov.uk @@ -57,14 +57,14 @@ Fetch error: http://www.eis.kent.gov.uk/ => https://www.eiskent.co.uk/: (51, "SS Mixed content: - css, on: - + - consultations from fonts.googleapis.com ˢ - www.eis, oktd, admin.oktd, open, admin.open from www.google.com ˢ ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -101,7 +101,7 @@ Fetch error: http://www.eis.kent.gov.uk/ => https://www.eiskent.co.uk/: (51, "SS - + https://b.kentbackman.com/: (60, 'SSL certificate problem: certificate has expired') --> - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/KentuckyOneHealth.org.xml b/src/chrome/content/rules/KentuckyOneHealth.org.xml index d2829d055dc4..0633ccf2a64c 100644 --- a/src/chrome/content/rules/KentuckyOneHealth.org.xml +++ b/src/chrome/content/rules/KentuckyOneHealth.org.xml @@ -5,14 +5,14 @@ Fetch error: http://www.jhsmh.org/ => https://www.jhsmh.org/: (6, 'Could not res Fetch error: http://jhsmh.org/ => https://jhsmh.org/: (7, 'Failed to connect to jhsmh.org port 443: Connection timed out') --> - + - - + + diff --git a/src/chrome/content/rules/KernelNewbies.org.xml b/src/chrome/content/rules/KernelNewbies.org.xml new file mode 100644 index 000000000000..6db0f63d1a39 --- /dev/null +++ b/src/chrome/content/rules/KernelNewbies.org.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Kernel_concepts.xml b/src/chrome/content/rules/Kernel_concepts.xml deleted file mode 100644 index f3b3ca99ec20..000000000000 --- a/src/chrome/content/rules/Kernel_concepts.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Ketchum.com.xml b/src/chrome/content/rules/Ketchum.com.xml deleted file mode 100644 index 5cbb2da9ff90..000000000000 --- a/src/chrome/content/rules/Ketchum.com.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/KettleBrand.com.xml b/src/chrome/content/rules/KettleBrand.com.xml new file mode 100644 index 000000000000..baf7922fd8c7 --- /dev/null +++ b/src/chrome/content/rules/KettleBrand.com.xml @@ -0,0 +1,12 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/KevinAThompson.com.xml b/src/chrome/content/rules/KevinAThompson.com.xml new file mode 100644 index 000000000000..27fbdb19687a --- /dev/null +++ b/src/chrome/content/rules/KevinAThompson.com.xml @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Kevinajacobs.com.xml b/src/chrome/content/rules/Kevinajacobs.com.xml deleted file mode 100644 index e10e0788d74c..000000000000 --- a/src/chrome/content/rules/Kevinajacobs.com.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Key-server.io.xml b/src/chrome/content/rules/Key-server.io.xml new file mode 100644 index 000000000000..b24b173348a7 --- /dev/null +++ b/src/chrome/content/rules/Key-server.io.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/KeyDrive.xml b/src/chrome/content/rules/KeyDrive.xml index 0fc19507ba77..7b76fb93192d 100644 --- a/src/chrome/content/rules/KeyDrive.xml +++ b/src/chrome/content/rules/KeyDrive.xml @@ -27,8 +27,8 @@ - + diff --git a/src/chrome/content/rules/Keytiles.com.xml b/src/chrome/content/rules/Keytiles.com.xml new file mode 100644 index 000000000000..b684632791e5 --- /dev/null +++ b/src/chrome/content/rules/Keytiles.com.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/KeywordDiscovery.com.xml b/src/chrome/content/rules/KeywordDiscovery.com.xml new file mode 100644 index 000000000000..27000a7823b8 --- /dev/null +++ b/src/chrome/content/rules/KeywordDiscovery.com.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Keyword_Discovery.xml b/src/chrome/content/rules/Keyword_Discovery.xml deleted file mode 100644 index 8155e16d069a..000000000000 --- a/src/chrome/content/rules/Keyword_Discovery.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Kfc.ca.xml b/src/chrome/content/rules/Kfc.ca.xml new file mode 100644 index 000000000000..74428200426c --- /dev/null +++ b/src/chrome/content/rules/Kfc.ca.xml @@ -0,0 +1,14 @@ + + + + + + + + diff --git a/src/chrome/content/rules/KhalifaofIslam.com.xml b/src/chrome/content/rules/KhalifaofIslam.com.xml deleted file mode 100644 index 5ed135baaff8..000000000000 --- a/src/chrome/content/rules/KhalifaofIslam.com.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Khalsa-Credit-Union.xml b/src/chrome/content/rules/Khalsa-Credit-Union.xml index 7faec0fdb499..df684a00b59c 100644 --- a/src/chrome/content/rules/Khalsa-Credit-Union.xml +++ b/src/chrome/content/rules/Khalsa-Credit-Union.xml @@ -5,11 +5,9 @@ - + - - diff --git a/src/chrome/content/rules/Khamsat.com.xml b/src/chrome/content/rules/Khamsat.com.xml new file mode 100644 index 000000000000..55493ca894d0 --- /dev/null +++ b/src/chrome/content/rules/Khamsat.com.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Khan-Academy.xml b/src/chrome/content/rules/Khan-Academy.xml index f727faa6ec98..3d81a4c2ce43 100644 --- a/src/chrome/content/rules/Khan-Academy.xml +++ b/src/chrome/content/rules/Khan-Academy.xml @@ -1,32 +1,140 @@ - - - - + + + + + + + + + + + + + + + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + + + diff --git a/src/chrome/content/rules/Khronos.xml b/src/chrome/content/rules/Khronos.xml index ac092bab44d3..e6c03cea6647 100644 --- a/src/chrome/content/rules/Khronos.xml +++ b/src/chrome/content/rules/Khronos.xml @@ -1,16 +1,10 @@ - - + diff --git a/src/chrome/content/rules/KiCanada.com.xml b/src/chrome/content/rules/KiCanada.com.xml new file mode 100644 index 000000000000..e2da4375f412 --- /dev/null +++ b/src/chrome/content/rules/KiCanada.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Kick-Ass.xml b/src/chrome/content/rules/Kick-Ass.xml index 22b8fab472db..c34f788b5887 100644 --- a/src/chrome/content/rules/Kick-Ass.xml +++ b/src/chrome/content/rules/Kick-Ass.xml @@ -5,7 +5,7 @@ - + https://media.kickstatic.com/: (6, - login.cloud (works, depth mismatched) --> - + - + + - + - - - \ No newline at end of file + diff --git a/src/chrome/content/rules/KickAssVPS.com.xml b/src/chrome/content/rules/KickAssVPS.com.xml index a079777af5d5..4fb8e47b4a96 100644 --- a/src/chrome/content/rules/KickAssVPS.com.xml +++ b/src/chrome/content/rules/KickAssVPS.com.xml @@ -33,7 +33,7 @@ --> - + - - + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + - diff --git a/src/chrome/content/rules/Kickflip.io.xml b/src/chrome/content/rules/Kickflip.io.xml index 216c0b879123..7fc4b98119db 100644 --- a/src/chrome/content/rules/Kickflip.io.xml +++ b/src/chrome/content/rules/Kickflip.io.xml @@ -19,7 +19,7 @@ --> - + - - - - - - - - - - - diff --git a/src/chrome/content/rules/KidsHealth.xml b/src/chrome/content/rules/KidsHealth.xml index d184c21e0466..9c56f92b54b8 100644 --- a/src/chrome/content/rules/KidsHealth.xml +++ b/src/chrome/content/rules/KidsHealth.xml @@ -9,7 +9,7 @@ Fetch error: http://teenshealth.org/ => https://secure02.kidshealth.org/teen/: ( Fetch error: http://www.teenshealth.org/ => https://secure02.kidshealth.org/teen/: (6, 'Could not resolve host: secure02.kidshealth.org') --> - + diff --git a/src/chrome/content/rules/Kids_Foot_Locker.xml b/src/chrome/content/rules/Kids_Foot_Locker.xml index 18b0fd8eea00..dbdac5ac8047 100644 --- a/src/chrome/content/rules/Kids_Foot_Locker.xml +++ b/src/chrome/content/rules/Kids_Foot_Locker.xml @@ -18,8 +18,8 @@ - - + + @@ -28,7 +28,6 @@ - + diff --git a/src/chrome/content/rules/Kijiji.ca.xml b/src/chrome/content/rules/Kijiji.ca.xml new file mode 100644 index 000000000000..fe97d775da57 --- /dev/null +++ b/src/chrome/content/rules/Kijiji.ca.xml @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Kijiji.it.xml b/src/chrome/content/rules/Kijiji.it.xml new file mode 100644 index 000000000000..513290e7c46b --- /dev/null +++ b/src/chrome/content/rules/Kijiji.it.xml @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Kikatek.xml b/src/chrome/content/rules/Kikatek.xml index 336a7345174b..396ebffdad5d 100644 --- a/src/chrome/content/rules/Kikatek.xml +++ b/src/chrome/content/rules/Kikatek.xml @@ -16,7 +16,7 @@ --> - + - + https://www.kimonolabs.com/: (60, 'SS - (www.)? - Insecure cookies are set for these + Insecure cookies are set for these - .kimonolabs.com --> - + diff --git a/src/chrome/content/rules/Kimpluscraig.com.xml b/src/chrome/content/rules/Kimpluscraig.com.xml index 35bbcea4d3f1..c429795b8b2f 100644 --- a/src/chrome/content/rules/Kimpluscraig.com.xml +++ b/src/chrome/content/rules/Kimpluscraig.com.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Kindful.com.xml b/src/chrome/content/rules/Kindful.com.xml index 51ea9d00c372..b0736ba8a6a4 100644 --- a/src/chrome/content/rules/Kindful.com.xml +++ b/src/chrome/content/rules/Kindful.com.xml @@ -12,7 +12,7 @@ - + diff --git a/src/chrome/content/rules/Kings-College-London.xml b/src/chrome/content/rules/Kings-College-London.xml index b847bba09502..e7b6f592c708 100644 --- a/src/chrome/content/rules/Kings-College-London.xml +++ b/src/chrome/content/rules/Kings-College-London.xml @@ -6,7 +6,7 @@ Fetch error: http://kcl.ac.uk/ => https://kcl.ac.uk/: (51, "SSL: no alternative Disabled by https-everywhere-checker because: Fetch error: http://kcl.ac.uk/ => https://kcl.ac.uk/: (28, 'Operation timed out after 0 milliseconds with 0 out of 0 bytes received') --> - + @@ -14,7 +14,7 @@ Fetch error: http://kcl.ac.uk/ => https://kcl.ac.uk/: (28, 'Operation timed out - + diff --git a/src/chrome/content/rules/Kings_Road_Merch.xml b/src/chrome/content/rules/Kings_Road_Merch.xml index 44b9361e8eba..1d54bcb67020 100644 --- a/src/chrome/content/rules/Kings_Road_Merch.xml +++ b/src/chrome/content/rules/Kings_Road_Merch.xml @@ -7,7 +7,8 @@ - + + @@ -16,4 +17,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Kinja.xml b/src/chrome/content/rules/Kinja.xml deleted file mode 100644 index 5b09be092b1f..000000000000 --- a/src/chrome/content/rules/Kinja.xml +++ /dev/null @@ -1,122 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/KinkLink.me.xml b/src/chrome/content/rules/KinkLink.me.xml index 9a306773eec2..545e2a19ce15 100644 --- a/src/chrome/content/rules/KinkLink.me.xml +++ b/src/chrome/content/rules/KinkLink.me.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://kinklink.me/ => https://kinklink.me/: (60, 'SSL certificate problem: certificate has expired') Fetch error: http://www.kinklink.me/ => https://www.kinklink.me/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/Kinko.me.xml b/src/chrome/content/rules/Kinko.me.xml index dbf128c60632..49da1a6135be 100644 --- a/src/chrome/content/rules/Kinko.me.xml +++ b/src/chrome/content/rules/Kinko.me.xml @@ -7,7 +7,7 @@ Fetch error: http://www.kinko.me/ => https://www.kinko.me/: (60, 'SSL certificat Disabled by https-everywhere-checker because: Fetch error: http://kinko.me/ => https://kinko.me/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/Kinotehnik.xml b/src/chrome/content/rules/Kinotehnik.xml index f461c18a6ffe..af2b904562d6 100644 --- a/src/chrome/content/rules/Kinotehnik.xml +++ b/src/chrome/content/rules/Kinotehnik.xml @@ -4,7 +4,7 @@ - + diff --git a/src/chrome/content/rules/Kinsta.com.xml b/src/chrome/content/rules/Kinsta.com.xml index a20c48eb5ede..6ed6f049899e 100644 --- a/src/chrome/content/rules/Kinsta.com.xml +++ b/src/chrome/content/rules/Kinsta.com.xml @@ -13,7 +13,7 @@ - + - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Kipoint.it.xml b/src/chrome/content/rules/Kipoint.it.xml index 26952d3ee473..e7c63098b329 100644 --- a/src/chrome/content/rules/Kipoint.it.xml +++ b/src/chrome/content/rules/Kipoint.it.xml @@ -14,7 +14,7 @@ - + - + - + - + - + diff --git a/src/chrome/content/rules/KissKissBankBank.com.xml b/src/chrome/content/rules/KissKissBankBank.com.xml new file mode 100644 index 000000000000..344ef187671c --- /dev/null +++ b/src/chrome/content/rules/KissKissBankBank.com.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Kitapyurdu.xml b/src/chrome/content/rules/Kitapyurdu.xml index caeb64c2cfaf..da7491cab5a9 100644 --- a/src/chrome/content/rules/Kitapyurdu.xml +++ b/src/chrome/content/rules/Kitapyurdu.xml @@ -8,11 +8,11 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.kitapyurdu.com/ => https://www.kitapyurdu.com/: (28, 'Operation timed out after 0 milliseconds with 0 out of 0 bytes received') Fetch error: http://kitapyurdu.com/ => https://www.kitapyurdu.com/: (28, 'Operation timed out after 0 milliseconds with 0 out of 0 bytes received') --> - + - + diff --git a/src/chrome/content/rules/Kitenet.net.xml b/src/chrome/content/rules/Kitenet.net.xml index b8a204b6d4cd..3b22cd2ced2e 100644 --- a/src/chrome/content/rules/Kitenet.net.xml +++ b/src/chrome/content/rules/Kitenet.net.xml @@ -16,4 +16,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Kivo.com.xml b/src/chrome/content/rules/Kivo.com.xml index b7b420608ab0..0f3f6f289f4c 100644 --- a/src/chrome/content/rules/Kivo.com.xml +++ b/src/chrome/content/rules/Kivo.com.xml @@ -5,7 +5,7 @@ Fetch error: http://kivo.com/ => https://kivo.com/: (60, 'SSL certificate proble Fetch error: http://www.kivo.com/ => https://www.kivo.com/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/Kiwiirc.com.xml b/src/chrome/content/rules/Kiwiirc.com.xml index 82bb0b37602f..0685f098e9e1 100644 --- a/src/chrome/content/rules/Kiwiirc.com.xml +++ b/src/chrome/content/rules/Kiwiirc.com.xml @@ -15,7 +15,7 @@ Fetch error: http://owa.clients.kiwiirc.com/ => https://owa.clients.kiwiirc.com/ - .kiwiirc.com --> - + diff --git a/src/chrome/content/rules/Kiwix.org.xml b/src/chrome/content/rules/Kiwix.org.xml new file mode 100644 index 000000000000..903a4ee133b2 --- /dev/null +++ b/src/chrome/content/rules/Kiwix.org.xml @@ -0,0 +1,36 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/KizlarSoruyor.com.xml b/src/chrome/content/rules/KizlarSoruyor.com.xml new file mode 100644 index 000000000000..bf3213eb4b98 --- /dev/null +++ b/src/chrome/content/rules/KizlarSoruyor.com.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Kizunaai.com.xml b/src/chrome/content/rules/Kizunaai.com.xml new file mode 100644 index 000000000000..f5cc7dd610f1 --- /dev/null +++ b/src/chrome/content/rules/Kizunaai.com.xml @@ -0,0 +1,15 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Kkk.com.xml b/src/chrome/content/rules/Kkk.com.xml index e16a0a72d793..8de5ff895857 100644 --- a/src/chrome/content/rules/Kkk.com.xml +++ b/src/chrome/content/rules/Kkk.com.xml @@ -5,7 +5,7 @@ Fetch error: http://kkk.com/ => https://kkk.com/: (28, 'Connection timed out aft Fetch error: http://www.kkk.com/ => https://www.kkk.com/: (28, 'Connection timed out after 20000 milliseconds') --> - + diff --git a/src/chrome/content/rules/KlimaSchutzPartner-Berlin.xml b/src/chrome/content/rules/KlimaSchutzPartner-Berlin.xml index 124a5e48f3bc..642be3cd47ba 100644 --- a/src/chrome/content/rules/KlimaSchutzPartner-Berlin.xml +++ b/src/chrome/content/rules/KlimaSchutzPartner-Berlin.xml @@ -4,7 +4,7 @@ - + diff --git a/src/chrome/content/rules/Klinika.zdravie.sk.xml b/src/chrome/content/rules/Klinika.zdravie.sk.xml index 62bd26f86ffb..7ec2931957f2 100644 --- a/src/chrome/content/rules/Klinika.zdravie.sk.xml +++ b/src/chrome/content/rules/Klinika.zdravie.sk.xml @@ -4,8 +4,8 @@ Disabled by https-everywhere-checker because: Fetch error: http://klinika.zdravie.sk/ => https://klinika.zdravie.sk/: (60, 'SSL certificate problem: certificate has expired') --> - + - + diff --git a/src/chrome/content/rules/Klub.com.pl.xml b/src/chrome/content/rules/Klub.com.pl.xml deleted file mode 100644 index 86595507383b..000000000000 --- a/src/chrome/content/rules/Klub.com.pl.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Kmart.com.au.xml b/src/chrome/content/rules/Kmart.com.au.xml new file mode 100644 index 000000000000..1b2f8f54ec13 --- /dev/null +++ b/src/chrome/content/rules/Kmart.com.au.xml @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/KnCMiner.com.xml b/src/chrome/content/rules/KnCMiner.com.xml deleted file mode 100644 index 9e528475c12c..000000000000 --- a/src/chrome/content/rules/KnCMiner.com.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Knappschaft-Bahn-See.xml b/src/chrome/content/rules/Knappschaft-Bahn-See.xml index 55f1a55a7aaa..d75e5d685f23 100644 --- a/src/chrome/content/rules/Knappschaft-Bahn-See.xml +++ b/src/chrome/content/rules/Knappschaft-Bahn-See.xml @@ -2,24 +2,11 @@ Domains without SSL/TLS: kbs-jobboerse.de willkommen-im-job.de ---> +--> - - - - - + - - - - - - diff --git a/src/chrome/content/rules/Kneon.com-problematic.xml b/src/chrome/content/rules/Kneon.com-problematic.xml index 90acd950e0fa..603f39dd5475 100644 --- a/src/chrome/content/rules/Kneon.com-problematic.xml +++ b/src/chrome/content/rules/Kneon.com-problematic.xml @@ -5,7 +5,7 @@ - + @@ -14,4 +14,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Kneon.com.xml b/src/chrome/content/rules/Kneon.com.xml index affd79a4c0f6..c24e44816d38 100644 --- a/src/chrome/content/rules/Kneon.com.xml +++ b/src/chrome/content/rules/Kneon.com.xml @@ -17,12 +17,11 @@ Fetch error: http://beta.kneon.com/ => https://beta.kneon.com/: (6, 'Could not r ² Squarespace --> - + - + diff --git a/src/chrome/content/rules/KnewOne.com.xml b/src/chrome/content/rules/KnewOne.com.xml deleted file mode 100644 index 58c97cc33d02..000000000000 --- a/src/chrome/content/rules/KnewOne.com.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Knexjs.org.xml b/src/chrome/content/rules/Knexjs.org.xml new file mode 100644 index 000000000000..89de3600da74 --- /dev/null +++ b/src/chrome/content/rules/Knexjs.org.xml @@ -0,0 +1,14 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/KnightSwarm.xml b/src/chrome/content/rules/KnightSwarm.xml index 8a4602ae570e..d3e99f5e2a8c 100644 --- a/src/chrome/content/rules/KnightSwarm.xml +++ b/src/chrome/content/rules/KnightSwarm.xml @@ -22,7 +22,7 @@ Fetch error: http://my.knightswarm.com/ => https://my.knightswarm.com/: (6, 'Cou - www.knightswarm.com --> - + @@ -37,7 +37,7 @@ Fetch error: http://my.knightswarm.com/ => https://my.knightswarm.com/: (6, 'Cou - + + + + + + + + diff --git a/src/chrome/content/rules/Knowledge_Blog.org.xml b/src/chrome/content/rules/Knowledge_Blog.org.xml index c0d396af0c2d..5b18b3026535 100644 --- a/src/chrome/content/rules/Knowledge_Blog.org.xml +++ b/src/chrome/content/rules/Knowledge_Blog.org.xml @@ -9,7 +9,7 @@ * Secured by us --> - + diff --git a/src/chrome/content/rules/KnownHost.com.xml b/src/chrome/content/rules/KnownHost.com.xml new file mode 100644 index 000000000000..1abe7f428162 --- /dev/null +++ b/src/chrome/content/rules/KnownHost.com.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Kobo.xml b/src/chrome/content/rules/Kobo.xml index 1aebeec2d786..76c92f45281a 100644 --- a/src/chrome/content/rules/Kobo.xml +++ b/src/chrome/content/rules/Kobo.xml @@ -137,7 +137,7 @@ - + diff --git a/src/chrome/content/rules/KodeRoot.net.xml b/src/chrome/content/rules/KodeRoot.net.xml index 7a0cf7b62618..ea6560b37fc2 100644 --- a/src/chrome/content/rules/KodeRoot.net.xml +++ b/src/chrome/content/rules/KodeRoot.net.xml @@ -16,7 +16,7 @@ Fetch error: http://xmpp.koderoot.net/ => https://xmpp.koderoot.net/: (6, 'Could ² Unsecurable <= refused --> - + diff --git a/src/chrome/content/rules/Kodi.tv.xml b/src/chrome/content/rules/Kodi.tv.xml index ee1184ce5bef..78ee935ea4c8 100644 --- a/src/chrome/content/rules/Kodi.tv.xml +++ b/src/chrome/content/rules/Kodi.tv.xml @@ -1,34 +1,29 @@ + + + + - - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Koen_Rouwhorst.nl.xml b/src/chrome/content/rules/Koen_Rouwhorst.nl.xml deleted file mode 100644 index 0330a3cb3279..000000000000 --- a/src/chrome/content/rules/Koen_Rouwhorst.nl.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Kogan.com.xml b/src/chrome/content/rules/Kogan.com.xml new file mode 100644 index 000000000000..616b35ca990c --- /dev/null +++ b/src/chrome/content/rules/Kogan.com.xml @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/KoganInsurance.com.au.xml b/src/chrome/content/rules/KoganInsurance.com.au.xml new file mode 100644 index 000000000000..e2bcdffda4e0 --- /dev/null +++ b/src/chrome/content/rules/KoganInsurance.com.au.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/KoganMobile.com.au.xml b/src/chrome/content/rules/KoganMobile.com.au.xml new file mode 100644 index 000000000000..d0394c645883 --- /dev/null +++ b/src/chrome/content/rules/KoganMobile.com.au.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Kohls.xml b/src/chrome/content/rules/Kohls.xml deleted file mode 100644 index 0e2a086f67fb..000000000000 --- a/src/chrome/content/rules/Kohls.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/Kohsuke.org.xml b/src/chrome/content/rules/Kohsuke.org.xml new file mode 100644 index 000000000000..50b056ef582c --- /dev/null +++ b/src/chrome/content/rules/Kohsuke.org.xml @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Koinify.com.xml b/src/chrome/content/rules/Koinify.com.xml index acc65b51c59a..102ebebad2cb 100644 --- a/src/chrome/content/rules/Koinify.com.xml +++ b/src/chrome/content/rules/Koinify.com.xml @@ -5,7 +5,7 @@ Fetch error: http://koinify.com/ => https://koinify.com/: (28, 'Connection timed Fetch error: http://www.koinify.com/ => https://www.koinify.com/: (28, 'Connection timed out after 20000 milliseconds') --> - + diff --git a/src/chrome/content/rules/Kolab_Now.com.xml b/src/chrome/content/rules/Kolab_Now.com.xml index 8394711d2f18..febfd0e09349 100644 --- a/src/chrome/content/rules/Kolab_Now.com.xml +++ b/src/chrome/content/rules/Kolab_Now.com.xml @@ -21,7 +21,7 @@ --> - + https://www.kolektiva.com/: (7, 'Faile * Secured by us --> - + diff --git a/src/chrome/content/rules/Kolibri.is.xml b/src/chrome/content/rules/Kolibri.is.xml new file mode 100644 index 000000000000..e437d0f57011 --- /dev/null +++ b/src/chrome/content/rules/Kolibri.is.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Komments.net.xml b/src/chrome/content/rules/Komments.net.xml index b7e2578069f7..9077e89aae04 100644 --- a/src/chrome/content/rules/Komments.net.xml +++ b/src/chrome/content/rules/Komments.net.xml @@ -5,7 +5,7 @@ Fetch error: http://komments.net/ => https://komments.net/: (35, 'Unknown SSL pr Fetch error: http://www.komments.net/ => https://www.komments.net/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/Komoona.com.xml b/src/chrome/content/rules/Komoona.com.xml deleted file mode 100644 index fb316318e715..000000000000 --- a/src/chrome/content/rules/Komoona.com.xml +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Konami-Korea.kr.xml b/src/chrome/content/rules/Konami-Korea.kr.xml index be970f86a1b1..9aa1c4d2ea62 100644 --- a/src/chrome/content/rules/Konami-Korea.kr.xml +++ b/src/chrome/content/rules/Konami-Korea.kr.xml @@ -13,7 +13,7 @@ Fetch error: http://www.konami-korea.kr/ => https://www.konami-korea.kr/: (28, ' ^: cert only matches www --> - + diff --git a/src/chrome/content/rules/Kontalk.xml b/src/chrome/content/rules/Kontalk.xml index 41e3b91f58ae..cc79415843a8 100644 --- a/src/chrome/content/rules/Kontalk.xml +++ b/src/chrome/content/rules/Kontalk.xml @@ -6,7 +6,7 @@ - + diff --git a/src/chrome/content/rules/Kontera.xml b/src/chrome/content/rules/Kontera.xml index 9023a2342d1e..f133c31214e4 100644 --- a/src/chrome/content/rules/Kontera.xml +++ b/src/chrome/content/rules/Kontera.xml @@ -66,7 +66,7 @@ Fetch error: http://publishers.kontera.com/ => https://publishers.kontera.com/: - publishers --> - + diff --git a/src/chrome/content/rules/Konto_API.xml b/src/chrome/content/rules/Konto_API.xml index 6716fd547e79..cc4273476297 100644 --- a/src/chrome/content/rules/Konto_API.xml +++ b/src/chrome/content/rules/Konto_API.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Koonoz.info.xml b/src/chrome/content/rules/Koonoz.info.xml new file mode 100644 index 000000000000..5bd30f2c1683 --- /dev/null +++ b/src/chrome/content/rules/Koonoz.info.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Kopiosto.xml b/src/chrome/content/rules/Kopiosto.xml index 07c46a39e2fd..249025ab7514 100644 --- a/src/chrome/content/rules/Kopiosto.xml +++ b/src/chrome/content/rules/Kopiosto.xml @@ -7,12 +7,12 @@ Working subdomains: --> - + + - + diff --git a/src/chrome/content/rules/Koreatimes.co.kr.xml b/src/chrome/content/rules/Koreatimes.co.kr.xml index 5602fa71e7d4..08c61f82b64e 100644 --- a/src/chrome/content/rules/Koreatimes.co.kr.xml +++ b/src/chrome/content/rules/Koreatimes.co.kr.xml @@ -1,6 +1,6 @@ - + - + diff --git a/src/chrome/content/rules/Kornerstone_Admin.com.xml b/src/chrome/content/rules/Kornerstone_Admin.com.xml index 1818809085cf..b2d8a96f0233 100644 --- a/src/chrome/content/rules/Kornerstone_Admin.com.xml +++ b/src/chrome/content/rules/Kornerstone_Admin.com.xml @@ -10,7 +10,7 @@ Fetch error: http://www.kornerstoneadmin.com/ => https://kornerstoneadmin.com/: www: cert only matches ^kornerstoneadmin.com --> - + diff --git a/src/chrome/content/rules/Korora_Project.org.xml b/src/chrome/content/rules/Korora_Project.org.xml index 0fa868a5e307..07e6c9eedbe8 100644 --- a/src/chrome/content/rules/Korora_Project.org.xml +++ b/src/chrome/content/rules/Korora_Project.org.xml @@ -6,7 +6,7 @@ Fetch error: http://archive.kororaproject.org/ => https://archive.kororaproject. www.kororaproject.org: Mismatched --> - + diff --git a/src/chrome/content/rules/Kosimak.com.xml b/src/chrome/content/rules/Kosimak.com.xml index 334e467c8a03..c4ff0af58665 100644 --- a/src/chrome/content/rules/Kosimak.com.xml +++ b/src/chrome/content/rules/Kosimak.com.xml @@ -1,18 +1,4 @@ - - + @@ -21,7 +7,7 @@ - + diff --git a/src/chrome/content/rules/Kotaku.com.xml b/src/chrome/content/rules/Kotaku.com.xml deleted file mode 100644 index 16be0c563c8f..000000000000 --- a/src/chrome/content/rules/Kotaku.com.xml +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Kotex.xml b/src/chrome/content/rules/Kotex.xml index 7d55d05ea3f1..9e9bbb0cd514 100644 --- a/src/chrome/content/rules/Kotex.xml +++ b/src/chrome/content/rules/Kotex.xml @@ -8,7 +8,7 @@ Fetch error: http://kotex.com/ => https://www.kotex.com/: Cycle detected - URL a Fetch error: http://www.kotex.com/ => https://www.kotex.com/: Cycle detected - URL already encountered: https://www.kotex.com/ Fetch error: http://dare.kotex.com/ => https://dare.kotex.com/: (35, 'error:140770FC:SSL routines:SSL23_GET_SERVER_HELLO:unknown protocol') --> - + diff --git a/src/chrome/content/rules/Kouio.com.xml b/src/chrome/content/rules/Kouio.com.xml deleted file mode 100644 index e24a92c00d68..000000000000 --- a/src/chrome/content/rules/Kouio.com.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Koumbit.net.xml b/src/chrome/content/rules/Koumbit.net.xml index 79ee6e1faac5..fce556ed6b1b 100644 --- a/src/chrome/content/rules/Koumbit.net.xml +++ b/src/chrome/content/rules/Koumbit.net.xml @@ -32,7 +32,7 @@ --> - + - + diff --git a/src/chrome/content/rules/Kpopstage.co.xml b/src/chrome/content/rules/Kpopstage.co.xml deleted file mode 100644 index 62e487177fff..000000000000 --- a/src/chrome/content/rules/Kpopstage.co.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Kr36.co.xml b/src/chrome/content/rules/Kr36.co.xml index 686b9e033380..e6f98613e77f 100644 --- a/src/chrome/content/rules/Kr36.co.xml +++ b/src/chrome/content/rules/Kr36.co.xml @@ -5,7 +5,7 @@ Fetch error: http://kr36.co/ => https://kr36.co/: (7, 'Failed to connect to kr36 Fetch error: http://www.kr36.co/ => https://www.kr36.co/: (7, 'Failed to connect to www.kr36.co port 443: Connection refused') --> - + diff --git a/src/chrome/content/rules/KralenStart.nl.xml b/src/chrome/content/rules/KralenStart.nl.xml index b4228961ad44..301971f696db 100644 --- a/src/chrome/content/rules/KralenStart.nl.xml +++ b/src/chrome/content/rules/KralenStart.nl.xml @@ -7,7 +7,7 @@ Fetch error: http://www.kralenstart.nl/ => https://www.kralenstart.nl/: (28, 'Op For other xCAT coverage, XCAT.nl.xml. --> - + diff --git a/src/chrome/content/rules/Krautchan.xml b/src/chrome/content/rules/Krautchan.xml deleted file mode 100644 index 8d8ce457f028..000000000000 --- a/src/chrome/content/rules/Krautchan.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/KreativVonalak.hu.xml b/src/chrome/content/rules/KreativVonalak.hu.xml new file mode 100644 index 000000000000..d1454ab20b89 --- /dev/null +++ b/src/chrome/content/rules/KreativVonalak.hu.xml @@ -0,0 +1,14 @@ + + + + + + + diff --git a/src/chrome/content/rules/Kreativ_Media.xml b/src/chrome/content/rules/Kreativ_Media.xml index 21f71388e903..b68c8bdd23be 100644 --- a/src/chrome/content/rules/Kreativ_Media.xml +++ b/src/chrome/content/rules/Kreativ_Media.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Kreativvonalak.xml b/src/chrome/content/rules/Kreativvonalak.xml deleted file mode 100644 index 80e5705850b7..000000000000 --- a/src/chrome/content/rules/Kreativvonalak.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/chrome/content/rules/Krebsdaten.de.xml b/src/chrome/content/rules/Krebsdaten.de.xml index 4373211c2aba..c1e170283516 100644 --- a/src/chrome/content/rules/Krebsdaten.de.xml +++ b/src/chrome/content/rules/Krebsdaten.de.xml @@ -1,5 +1,14 @@ + - + + - + + + + + diff --git a/src/chrome/content/rules/Krihelinator.xyz.xml b/src/chrome/content/rules/Krihelinator.xyz.xml new file mode 100644 index 000000000000..7805fc226773 --- /dev/null +++ b/src/chrome/content/rules/Krihelinator.xyz.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Kriminalvarden.se.xml b/src/chrome/content/rules/Kriminalvarden.se.xml index 109949f6a8a0..87660fe69981 100644 --- a/src/chrome/content/rules/Kriminalvarden.se.xml +++ b/src/chrome/content/rules/Kriminalvarden.se.xml @@ -1,7 +1,7 @@ - + - - + + + - diff --git a/src/chrome/content/rules/Krux-Digital.xml b/src/chrome/content/rules/Krux-Digital.xml deleted file mode 100644 index 286355dc1036..000000000000 --- a/src/chrome/content/rules/Krux-Digital.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Kryptnostic.com.xml b/src/chrome/content/rules/Kryptnostic.com.xml index 60f155576ad7..d8bc8dc40f74 100644 --- a/src/chrome/content/rules/Kryptnostic.com.xml +++ b/src/chrome/content/rules/Kryptnostic.com.xml @@ -22,7 +22,7 @@ Fetch error: http://kryptnostic.com/ => https://kryptnostic.com/: (60, 'SSL cert * Secured by us --> - + diff --git a/src/chrome/content/rules/Kryptologika.com.xml b/src/chrome/content/rules/Kryptologika.com.xml deleted file mode 100644 index 73d9116f4706..000000000000 --- a/src/chrome/content/rules/Kryptologika.com.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Kryptronic-mismatches.xml b/src/chrome/content/rules/Kryptronic-mismatches.xml index 04e80794654c..477fb6411c08 100644 --- a/src/chrome/content/rules/Kryptronic-mismatches.xml +++ b/src/chrome/content/rules/Kryptronic-mismatches.xml @@ -2,9 +2,8 @@ - + - + diff --git a/src/chrome/content/rules/Kryptronic.xml b/src/chrome/content/rules/Kryptronic.xml index e7fd59b58ca4..cf039eda14df 100644 --- a/src/chrome/content/rules/Kryptronic.xml +++ b/src/chrome/content/rules/Kryptronic.xml @@ -4,7 +4,7 @@ - + diff --git a/src/chrome/content/rules/Krystal_Hosting.xml b/src/chrome/content/rules/Krystal_Hosting.xml index 72b12cab2568..09ac5dd70159 100644 --- a/src/chrome/content/rules/Krystal_Hosting.xml +++ b/src/chrome/content/rules/Krystal_Hosting.xml @@ -37,7 +37,7 @@ - + https://ksiegarniawarszawa.pl/: (5 Fetch error: http://www.ksiegarniawarszawa.pl/ => https://www.ksiegarniawarszawa.pl/: (51, "SSL: no alternative certificate subject name matches target host name 'www.ksiegarniawarszawa.pl'") --> - + diff --git a/src/chrome/content/rules/Ksplice.xml b/src/chrome/content/rules/Ksplice.xml index ec724ff51419..63bfd9e2c91e 100644 --- a/src/chrome/content/rules/Ksplice.xml +++ b/src/chrome/content/rules/Ksplice.xml @@ -1,12 +1,5 @@ diff --git a/src/chrome/content/rules/Kubuntu.org.xml b/src/chrome/content/rules/Kubuntu.org.xml index 4768ebee6b0b..f3de7d857127 100644 --- a/src/chrome/content/rules/Kubuntu.org.xml +++ b/src/chrome/content/rules/Kubuntu.org.xml @@ -31,7 +31,7 @@ - + - + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Kuleuven.be-falsemixed.xml b/src/chrome/content/rules/Kuleuven.be-falsemixed.xml index 4fef1497038a..743d73e1b677 100644 --- a/src/chrome/content/rules/Kuleuven.be-falsemixed.xml +++ b/src/chrome/content/rules/Kuleuven.be-falsemixed.xml @@ -8,7 +8,7 @@ - + - + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Kununu.xml b/src/chrome/content/rules/Kununu.xml index 89cb48dfc709..4fbce1184f67 100644 --- a/src/chrome/content/rules/Kununu.xml +++ b/src/chrome/content/rules/Kununu.xml @@ -28,7 +28,8 @@ - + + diff --git a/src/chrome/content/rules/Kuro5hin.xml b/src/chrome/content/rules/Kuro5hin.xml index 35218335af28..cfb8daca56c8 100644 --- a/src/chrome/content/rules/Kuro5hin.xml +++ b/src/chrome/content/rules/Kuro5hin.xml @@ -5,7 +5,7 @@ Fetch error: http://kuro5hin.org/ => https://www.kuro5hin.org/: (28, 'Connection Fetch error: http://www.kuro5hin.org/ => https://www.kuro5hin.org/: (28, 'Connection timed out after 20000 milliseconds') --> - + diff --git a/src/chrome/content/rules/Kursbuero.de.xml b/src/chrome/content/rules/Kursbuero.de.xml deleted file mode 100644 index d96a6d9e91af..000000000000 --- a/src/chrome/content/rules/Kursbuero.de.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Kuruc.info.xml b/src/chrome/content/rules/Kuruc.info.xml index 677de411237c..66d4019aa3b0 100644 --- a/src/chrome/content/rules/Kuruc.info.xml +++ b/src/chrome/content/rules/Kuruc.info.xml @@ -1,7 +1,9 @@ - - + - + + + diff --git a/src/chrome/content/rules/Kutub.one.xml b/src/chrome/content/rules/Kutub.one.xml new file mode 100644 index 000000000000..5e4f21ce69cf --- /dev/null +++ b/src/chrome/content/rules/Kutub.one.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/KutubPDFBook.com.xml b/src/chrome/content/rules/KutubPDFBook.com.xml new file mode 100644 index 000000000000..1c4b336f3dbb --- /dev/null +++ b/src/chrome/content/rules/KutubPDFBook.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Kvack.org.xml b/src/chrome/content/rules/Kvack.org.xml index 8ef7b7ad32bb..475896adc5ba 100644 --- a/src/chrome/content/rules/Kvack.org.xml +++ b/src/chrome/content/rules/Kvack.org.xml @@ -12,4 +12,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/KwikSurveys.xml b/src/chrome/content/rules/KwikSurveys.xml index 46ade1084321..7f94778866ad 100644 --- a/src/chrome/content/rules/KwikSurveys.xml +++ b/src/chrome/content/rules/KwikSurveys.xml @@ -5,4 +5,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Kyani.net.xml b/src/chrome/content/rules/Kyani.net.xml index 5b4e2c0cc097..37877426ce34 100644 --- a/src/chrome/content/rules/Kyani.net.xml +++ b/src/chrome/content/rules/Kyani.net.xml @@ -32,4 +32,4 @@ Fetch error: http://kyani.net/ => https://eu.kyani.net/public/eu/en/main: Too ma - \ No newline at end of file + diff --git a/src/chrome/content/rules/Kyiv_Post.com.xml b/src/chrome/content/rules/Kyiv_Post.com.xml index 670c62a850a8..54f63499bebe 100644 --- a/src/chrome/content/rules/Kyiv_Post.com.xml +++ b/src/chrome/content/rules/Kyiv_Post.com.xml @@ -30,7 +30,7 @@ --> - + + + + + + + + diff --git a/src/chrome/content/rules/Kyle_Isom.net.xml b/src/chrome/content/rules/Kyle_Isom.net.xml index 9daa07b71e34..0258850d83fa 100644 --- a/src/chrome/content/rules/Kyle_Isom.net.xml +++ b/src/chrome/content/rules/Kyle_Isom.net.xml @@ -14,7 +14,7 @@ --> - + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Kyn.me.xml b/src/chrome/content/rules/Kyn.me.xml deleted file mode 100644 index 25997411af85..000000000000 --- a/src/chrome/content/rules/Kyn.me.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/KyngChaos.com.xml b/src/chrome/content/rules/KyngChaos.com.xml new file mode 100644 index 000000000000..2e9138ff61b1 --- /dev/null +++ b/src/chrome/content/rules/KyngChaos.com.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/L-rumors.com.xml b/src/chrome/content/rules/L-rumors.com.xml new file mode 100644 index 000000000000..e48e1512bfe3 --- /dev/null +++ b/src/chrome/content/rules/L-rumors.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/L0g.us.xml b/src/chrome/content/rules/L0g.us.xml index ca3880fdb452..3e8a2867999a 100644 --- a/src/chrome/content/rules/L0g.us.xml +++ b/src/chrome/content/rules/L0g.us.xml @@ -5,7 +5,7 @@ Fetch error: http://l0g.us/ => https://l0g.us/: (7, 'Failed to connect to l0g.us Fetch error: http://www.l0g.us/ => https://www.l0g.us/: (7, 'Failed to connect to www.l0g.us port 443: No route to host') --> - + diff --git a/src/chrome/content/rules/L2020.xml b/src/chrome/content/rules/L2020.xml index 171c0f733583..0d05a61f7c5c 100644 --- a/src/chrome/content/rules/L2020.xml +++ b/src/chrome/content/rules/L2020.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://l2020.org/ => https://l2020.org/: (51, "SSL: no alternative certificate subject name matches target host name 'l2020.org'") Fetch error: http://www.l2020.org/ => https://l2020.org/: (51, "SSL: no alternative certificate subject name matches target host name 'l2020.org'") --> - + diff --git a/src/chrome/content/rules/L2C.xml b/src/chrome/content/rules/L2C.xml index eee6b626b882..e1db3fffac01 100644 --- a/src/chrome/content/rules/L2C.xml +++ b/src/chrome/content/rules/L2C.xml @@ -8,13 +8,13 @@ Disabled by https-everywhere-checker because: Fetch error: http://l2c.co.kr/ => https://l2c.co.kr/: (60, 'SSL certificate problem: certificate has expired') Fetch error: http://www.l2c.co.kr/ => https://www.l2c.co.kr/: (60, 'SSL certificate problem: certificate has expired') --> - + - + diff --git a/src/chrome/content/rules/LADSPA.org.xml b/src/chrome/content/rules/LADSPA.org.xml new file mode 100644 index 000000000000..1272f81bf603 --- /dev/null +++ b/src/chrome/content/rules/LADSPA.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/LANsquared.xml b/src/chrome/content/rules/LANsquared.xml index b61810a870de..7c64b54269fb 100644 --- a/src/chrome/content/rules/LANsquared.xml +++ b/src/chrome/content/rules/LANsquared.xml @@ -1,10 +1,11 @@ - + + - + diff --git a/src/chrome/content/rules/LAlsace.fr.xml b/src/chrome/content/rules/LAlsace.fr.xml new file mode 100644 index 000000000000..6e615c5b1632 --- /dev/null +++ b/src/chrome/content/rules/LAlsace.fr.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/LBHF.gov.uk.xml b/src/chrome/content/rules/LBHF.gov.uk.xml index 40faca792c24..d589c072d111 100644 --- a/src/chrome/content/rules/LBHF.gov.uk.xml +++ b/src/chrome/content/rules/LBHF.gov.uk.xml @@ -36,7 +36,7 @@ Fetch error: http://www.apps4.lbhf.gov.uk/ => https://www.apps4.lbhf.gov.uk/: (7 ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -51,7 +51,7 @@ Fetch error: http://www.apps4.lbhf.gov.uk/ => https://www.apps4.lbhf.gov.uk/: (7 - + https://cloud0.lchost.co.uk/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + diff --git a/src/chrome/content/rules/LDS.org.xml b/src/chrome/content/rules/LDS.org.xml new file mode 100644 index 000000000000..0216a7e59ff6 --- /dev/null +++ b/src/chrome/content/rules/LDS.org.xml @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/LDS_CDN.org.xml b/src/chrome/content/rules/LDS_CDN.org.xml new file mode 100644 index 000000000000..4e2de37f2c97 --- /dev/null +++ b/src/chrome/content/rules/LDS_CDN.org.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/LEGO.xml b/src/chrome/content/rules/LEGO.xml index 21fcb83a7533..86cf24dab2e3 100644 --- a/src/chrome/content/rules/LEGO.xml +++ b/src/chrome/content/rules/LEGO.xml @@ -1,141 +1,60 @@ - - + - - + - - - + + + + + + + + - + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + diff --git a/src/chrome/content/rules/LEspace_client.fr.xml b/src/chrome/content/rules/LEspace_client.fr.xml index f80d0f2a739a..747bd7cc1ef8 100644 --- a/src/chrome/content/rules/LEspace_client.fr.xml +++ b/src/chrome/content/rules/LEspace_client.fr.xml @@ -7,7 +7,7 @@ Fetch error: http://www.lespaceclient.fr/ => https://www.lespaceclient.fr/: (60, For other Magic Online coverage, see Magic.fr.xml. --> - + diff --git a/src/chrome/content/rules/LExpress.fr.xml b/src/chrome/content/rules/LExpress.fr.xml index 8086553c51ed..c03d4d1a9253 100644 --- a/src/chrome/content/rules/LExpress.fr.xml +++ b/src/chrome/content/rules/LExpress.fr.xml @@ -22,13 +22,14 @@ --> - + + + - + diff --git a/src/chrome/content/rules/LFC-Hosting.xml b/src/chrome/content/rules/LFC-Hosting.xml index 1614979749c1..023b42244f65 100644 --- a/src/chrome/content/rules/LFC-Hosting.xml +++ b/src/chrome/content/rules/LFC-Hosting.xml @@ -6,22 +6,18 @@ Fetch error: http://208.68.106.8/ => https://208.68.106.8/: (60, 'SSL certificat Automatically by https-everywhere-checker because: Fetch error: http://208.68.106.8/ => https://208.68.106.8/: (60, 'SSL certificate problem: certificate has expired') --> - + - - + + + + - - - - + diff --git a/src/chrome/content/rules/LFov.net.xml b/src/chrome/content/rules/LFov.net.xml index e78d703afd4f..b1dc9acefadc 100644 --- a/src/chrome/content/rules/LFov.net.xml +++ b/src/chrome/content/rules/LFov.net.xml @@ -14,7 +14,7 @@ Fetch error: http://www.lfov.net/ => https://www.lfov.net/: (28, 'Connection tim cookie on whichever domain it is loaded from. --> - + @@ -25,4 +25,4 @@ Fetch error: http://www.lfov.net/ => https://www.lfov.net/: (28, 'Connection tim - \ No newline at end of file + diff --git a/src/chrome/content/rules/LGTM.com.xml b/src/chrome/content/rules/LGTM.com.xml new file mode 100644 index 000000000000..998b648211a3 --- /dev/null +++ b/src/chrome/content/rules/LGTM.com.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/LIHKG.com.xml b/src/chrome/content/rules/LIHKG.com.xml new file mode 100644 index 000000000000..46321ad49854 --- /dev/null +++ b/src/chrome/content/rules/LIHKG.com.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/LINBIT.com-falsemixed.xml b/src/chrome/content/rules/LINBIT.com-falsemixed.xml deleted file mode 100644 index e66c11ad1bd8..000000000000 --- a/src/chrome/content/rules/LINBIT.com-falsemixed.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/LINBIT.com.xml b/src/chrome/content/rules/LINBIT.com.xml new file mode 100644 index 000000000000..bf4dc279a12e --- /dev/null +++ b/src/chrome/content/rules/LINBIT.com.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/LINBIT.xml b/src/chrome/content/rules/LINBIT.xml deleted file mode 100644 index a7d6d4ad617e..000000000000 --- a/src/chrome/content/rules/LINBIT.xml +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/LIS.gov.xml b/src/chrome/content/rules/LIS.gov.xml index f9a023777f8c..a21b16294883 100644 --- a/src/chrome/content/rules/LIS.gov.xml +++ b/src/chrome/content/rules/LIS.gov.xml @@ -6,13 +6,13 @@ Fetch error: http://www.lis.gov/ => https://www.lis.gov/: Too many redirects whi --> - + - + - + https://moviii.isy.liu.se/: (7, 'Failed to connect to moviii.isy.liu.se port 443: Connection refused') -Fetch error: http://login.lisam.liu.se/ => https://login.lisam.liu.se/: (60, 'SSL certificate problem: certificate has expired') -Fetch error: http://www.moviii.isy.liu.se/ => https://moviii.isy.liu.se/: (7, 'Failed to connect to moviii.isy.liu.se port 443: Connection refused') -Fetch error: http://moviii.liu.se/ => https://moviii.isy.liu.se/: (7, 'Failed to connect to moviii.isy.liu.se port 443: Connection refused') - Linköping university For rules causing false/broken MCB, see LIU.se-falsemixed.xml. @@ -26,6 +19,9 @@ Fetch error: http://moviii.liu.se/ => https://moviii.isy.liu.se/: (7, 'Failed to - www.ek.isy ³ - m ⁴ - mobil ⁶ + - moviii ³ + - moviii.isy ³ + - www.moviii.isy ³ - search ³ - sah ⁴ - e-go.student ⁷ @@ -45,11 +41,10 @@ Fetch error: http://moviii.liu.se/ => https://moviii.isy.liu.se/: (7, 'Failed to - www1.bibl ² - www3.bibl ³ - (www.)?commsys.isy ² - - www.moviii.isy ³ - www.vehicular.isy ³ - planet.lysator ⁴ - - moviii ³ - www.stars ⁵ + - login.lisam ⁵ ¹ Mixed iframe ² Mixed css @@ -88,7 +83,7 @@ Fetch error: http://moviii.liu.se/ => https://moviii.isy.liu.se/: (7, 'Failed to * Secured by us --> - + @@ -115,7 +110,6 @@ Fetch error: http://moviii.liu.se/ => https://moviii.isy.liu.se/: (7, 'Failed to - @@ -124,12 +118,10 @@ Fetch error: http://moviii.liu.se/ => https://moviii.isy.liu.se/: (7, 'Failed to - - @@ -145,10 +137,8 @@ Fetch error: http://moviii.liu.se/ => https://moviii.isy.liu.se/: (7, 'Failed to - - @@ -160,15 +150,12 @@ Fetch error: http://moviii.liu.se/ => https://moviii.isy.liu.se/: (7, 'Failed to - + - - diff --git a/src/chrome/content/rules/LKML.xml b/src/chrome/content/rules/LKML.xml index 666148fdc5f4..2c2a0ecc2086 100644 --- a/src/chrome/content/rules/LKML.xml +++ b/src/chrome/content/rules/LKML.xml @@ -4,7 +4,7 @@ - + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/LK_Mart.xml b/src/chrome/content/rules/LK_Mart.xml deleted file mode 100644 index fd86749485aa..000000000000 --- a/src/chrome/content/rules/LK_Mart.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/LLS.org.xml b/src/chrome/content/rules/LLS.org.xml index 3783f6c1bb94..14c43b9170aa 100644 --- a/src/chrome/content/rules/LLS.org.xml +++ b/src/chrome/content/rules/LLS.org.xml @@ -47,7 +47,7 @@ Fetch error: http://community.lls.org/ => https://community.lls.org/: (51, "SSL: * Secured by us, doesn't trip MCB anyway --> - + diff --git a/src/chrome/content/rules/LLVM.org.xml b/src/chrome/content/rules/LLVM.org.xml index 7a0df52abf1f..3a2899f23cb6 100644 --- a/src/chrome/content/rules/LLVM.org.xml +++ b/src/chrome/content/rules/LLVM.org.xml @@ -12,14 +12,18 @@ - ftp ¹ - lab ¹ - new-clang ¹ + - new-www ¹ + - lnt ² ¹ Mismatched + ² Expired --> + @@ -33,10 +37,9 @@ - - + diff --git a/src/chrome/content/rules/LMU-Muenchen-IFI.xml b/src/chrome/content/rules/LMU-Muenchen-IFI.xml new file mode 100644 index 000000000000..3d8fef8a457f --- /dev/null +++ b/src/chrome/content/rules/LMU-Muenchen-IFI.xml @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/LMU-Muenchen-Library.xml b/src/chrome/content/rules/LMU-Muenchen-Library.xml new file mode 100644 index 000000000000..fc6a24e6b09b --- /dev/null +++ b/src/chrome/content/rules/LMU-Muenchen-Library.xml @@ -0,0 +1,24 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/LMU-Muenchen.xml b/src/chrome/content/rules/LMU-Muenchen.xml index 5ea457b926fb..46a4f9f4701d 100644 --- a/src/chrome/content/rules/LMU-Muenchen.xml +++ b/src/chrome/content/rules/LMU-Muenchen.xml @@ -1,6 +1,9 @@ - + + + + @@ -39,7 +43,6 @@ - + diff --git a/src/chrome/content/rules/LPAC.co.uk.xml b/src/chrome/content/rules/LPAC.co.uk.xml index 886604a30575..9c646208a5ec 100644 --- a/src/chrome/content/rules/LPAC.co.uk.xml +++ b/src/chrome/content/rules/LPAC.co.uk.xml @@ -6,7 +6,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/LPICE.eu.xml b/src/chrome/content/rules/LPICE.eu.xml index 7e527ba9250a..4ef215709758 100644 --- a/src/chrome/content/rules/LPICE.eu.xml +++ b/src/chrome/content/rules/LPICE.eu.xml @@ -1,6 +1,6 @@ - + @@ -103,7 +103,7 @@ Fetch error: http://vletrain.lsbu.ac.uk/ => https://vletrain.lsbu.ac.uk/: (28, ' - + - - - - - - - - diff --git a/src/chrome/content/rules/LTER.xml b/src/chrome/content/rules/LTER.xml index 819ef5c0cfff..42187cbfcc82 100644 --- a/src/chrome/content/rules/LTER.xml +++ b/src/chrome/content/rules/LTER.xml @@ -16,7 +16,10 @@ Fetch error: http://lternet.edu/ => https://www.lternet.edu/: (35, 'error:140770 - + + + + @@ -30,7 +33,6 @@ Fetch error: http://lternet.edu/ => https://www.lternet.edu/: (35, 'error:140770 - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/LTH.se.xml b/src/chrome/content/rules/LTH.se.xml index 62d5c42fe605..0163f9d69449 100644 --- a/src/chrome/content/rules/LTH.se.xml +++ b/src/chrome/content/rules/LTH.se.xml @@ -29,7 +29,7 @@ Fetch error: http://doc.ddg.lth.se/ => https://doc.ddg.lth.se/: (60, 'SSL certif - Image on www from www.lu.se --> - + diff --git a/src/chrome/content/rules/LTRADIO.com.xml b/src/chrome/content/rules/LTRADIO.com.xml index 9f1a8097a7e8..f8bb414f7752 100644 --- a/src/chrome/content/rules/LTRADIO.com.xml +++ b/src/chrome/content/rules/LTRADIO.com.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/LTTStore.com.xml b/src/chrome/content/rules/LTTStore.com.xml new file mode 100644 index 000000000000..e468bb5253dc --- /dev/null +++ b/src/chrome/content/rules/LTTStore.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/LTTng_Project.xml b/src/chrome/content/rules/LTTng_Project.xml index e4f649971431..e6f09902f56e 100644 --- a/src/chrome/content/rules/LTTng_Project.xml +++ b/src/chrome/content/rules/LTTng_Project.xml @@ -19,7 +19,11 @@ - + + + + + - + + - - - - - - - - - - - - - - - - - + diff --git a/src/chrome/content/rules/LUU.org.uk.xml b/src/chrome/content/rules/LUU.org.uk.xml index 9d3a5b33a591..7d7749c2d72e 100644 --- a/src/chrome/content/rules/LUU.org.uk.xml +++ b/src/chrome/content/rules/LUU.org.uk.xml @@ -16,7 +16,7 @@ --> - + - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/LVOC.org.xml b/src/chrome/content/rules/LVOC.org.xml index 07717c773fda..62eb9d393605 100644 --- a/src/chrome/content/rules/LVOC.org.xml +++ b/src/chrome/content/rules/LVOC.org.xml @@ -11,7 +11,7 @@ ˢ Secured by us --> - + @@ -19,7 +19,7 @@ - + - + diff --git a/src/chrome/content/rules/La-Trouvaille.org.xml b/src/chrome/content/rules/La-Trouvaille.org.xml new file mode 100644 index 000000000000..75f4c34157dc --- /dev/null +++ b/src/chrome/content/rules/La-Trouvaille.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/LaCaixa.xml b/src/chrome/content/rules/LaCaixa.xml index 9054f00182c6..6d15398cc860 100644 --- a/src/chrome/content/rules/LaCaixa.xml +++ b/src/chrome/content/rules/LaCaixa.xml @@ -2,7 +2,7 @@ - + diff --git a/src/chrome/content/rules/LaDepeche.fr.xml b/src/chrome/content/rules/LaDepeche.fr.xml index c8f846e5d61c..eba58dfb39cf 100644 --- a/src/chrome/content/rules/LaDepeche.fr.xml +++ b/src/chrome/content/rules/LaDepeche.fr.xml @@ -43,7 +43,7 @@ - + diff --git a/src/chrome/content/rules/LaPatilla.com.xml b/src/chrome/content/rules/LaPatilla.com.xml index faf6bcbf25d0..d5c7bdfe7727 100644 --- a/src/chrome/content/rules/LaPatilla.com.xml +++ b/src/chrome/content/rules/LaPatilla.com.xml @@ -1,33 +1,8 @@ - - + + - - - - - - - - - - + + diff --git a/src/chrome/content/rules/LaTribune.fr.xml b/src/chrome/content/rules/LaTribune.fr.xml new file mode 100644 index 000000000000..a2a3f82b26ab --- /dev/null +++ b/src/chrome/content/rules/LaTribune.fr.xml @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/La_Cie.com.xml b/src/chrome/content/rules/La_Cie.com.xml index 2bd32e2da9f2..1dfcd4bbe5f8 100644 --- a/src/chrome/content/rules/La_Cie.com.xml +++ b/src/chrome/content/rules/La_Cie.com.xml @@ -21,7 +21,7 @@ Fetch error: http://lacie.com/ => https://www.lacie.com/: Too many redirects whi - www.lacie.com --> - + diff --git a/src/chrome/content/rules/La_Crosse_Alerts.com.xml b/src/chrome/content/rules/La_Crosse_Alerts.com.xml index 9888993264cd..0ae808b26990 100644 --- a/src/chrome/content/rules/La_Crosse_Alerts.com.xml +++ b/src/chrome/content/rules/La_Crosse_Alerts.com.xml @@ -10,7 +10,7 @@ Fetch error: http://www.lacrossealerts.com/ => https://www.lacrossealerts.com/: ^: dropped --> - + diff --git a/src/chrome/content/rules/La_Crosse_Technology.com.xml b/src/chrome/content/rules/La_Crosse_Technology.com.xml index c18d7975e85f..0fd7d63b5f3b 100644 --- a/src/chrome/content/rules/La_Crosse_Technology.com.xml +++ b/src/chrome/content/rules/La_Crosse_Technology.com.xml @@ -8,7 +8,7 @@ Fetch error: http://store.lacrossetechnology.com/ => https://store.lacrossetechn - La_Crosse_Alerts.com.xml --> - + diff --git a/src/chrome/content/rules/La_Naya_Chocolate.xml b/src/chrome/content/rules/La_Naya_Chocolate.xml index 8b2180091d87..c7db61ff128c 100644 --- a/src/chrome/content/rules/La_Naya_Chocolate.xml +++ b/src/chrome/content/rules/La_Naya_Chocolate.xml @@ -1,7 +1,7 @@ - + diff --git a/src/chrome/content/rules/Lab-Nation.com.xml b/src/chrome/content/rules/Lab-Nation.com.xml index 748264ee4302..341dcfb8d4c3 100644 --- a/src/chrome/content/rules/Lab-Nation.com.xml +++ b/src/chrome/content/rules/Lab-Nation.com.xml @@ -12,7 +12,7 @@ - + https://hypersend.labcorp.com/: (2 - www.labcorp.com --> - + diff --git a/src/chrome/content/rules/Labaia.xml b/src/chrome/content/rules/Labaia.xml index 52b6e39b032a..511fc1a63071 100644 --- a/src/chrome/content/rules/Labaia.xml +++ b/src/chrome/content/rules/Labaia.xml @@ -10,7 +10,7 @@ Fetch error: http://labaia.ws/ => https://labaia.ws/: (7, 'Failed to connect to - bayimg (mismatch; reset) --> - + diff --git a/src/chrome/content/rules/Labix.org.xml b/src/chrome/content/rules/Labix.org.xml new file mode 100644 index 000000000000..6866571d3d98 --- /dev/null +++ b/src/chrome/content/rules/Labix.org.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Labs.Chevronwp7.com.xml b/src/chrome/content/rules/Labs.Chevronwp7.com.xml deleted file mode 100644 index 44d1951d5022..000000000000 --- a/src/chrome/content/rules/Labs.Chevronwp7.com.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Lady_Foot_Locker.xml b/src/chrome/content/rules/Lady_Foot_Locker.xml index 82a08ab21976..4a5239db17bc 100644 --- a/src/chrome/content/rules/Lady_Foot_Locker.xml +++ b/src/chrome/content/rules/Lady_Foot_Locker.xml @@ -18,8 +18,8 @@ - - + + @@ -28,7 +28,6 @@ - + diff --git a/src/chrome/content/rules/Ladysmith-District-Credit-Union.xml b/src/chrome/content/rules/Ladysmith-District-Credit-Union.xml index 1f84a0382b63..c428c8e2fdfe 100644 --- a/src/chrome/content/rules/Ladysmith-District-Credit-Union.xml +++ b/src/chrome/content/rules/Ladysmith-District-Credit-Union.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://ldcu.ca/ => https://ldcu.ca/: (56, 'SSL read: error:00000000:lib(0):func(0):reason(0), errno 104') --> - + diff --git a/src/chrome/content/rules/Lagardere_Publicite.xml b/src/chrome/content/rules/Lagardere_Publicite.xml index d756732393c3..828a819dfc9a 100644 --- a/src/chrome/content/rules/Lagardere_Publicite.xml +++ b/src/chrome/content/rules/Lagardere_Publicite.xml @@ -1,19 +1,21 @@ - - + - + + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Lambda-Linux.io.xml b/src/chrome/content/rules/Lambda-Linux.io.xml index c96b881d9bfd..268739fecf9d 100644 --- a/src/chrome/content/rules/Lambda-Linux.io.xml +++ b/src/chrome/content/rules/Lambda-Linux.io.xml @@ -7,7 +7,7 @@ - + diff --git a/src/chrome/content/rules/LambdaTek.xml b/src/chrome/content/rules/LambdaTek.xml index ac21d388a22b..9d5770f0757d 100644 --- a/src/chrome/content/rules/LambdaTek.xml +++ b/src/chrome/content/rules/LambdaTek.xml @@ -4,7 +4,7 @@ - + diff --git a/src/chrome/content/rules/Landal.xml b/src/chrome/content/rules/Landal.xml new file mode 100644 index 000000000000..76931d412240 --- /dev/null +++ b/src/chrome/content/rules/Landal.xml @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Landfall.se.xml b/src/chrome/content/rules/Landfall.se.xml new file mode 100644 index 000000000000..da296c5a727e --- /dev/null +++ b/src/chrome/content/rules/Landfall.se.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Lands_End.com.xml b/src/chrome/content/rules/Lands_End.com.xml index e955b209d6b8..6eece9242f7f 100644 --- a/src/chrome/content/rules/Lands_End.com.xml +++ b/src/chrome/content/rules/Lands_End.com.xml @@ -42,7 +42,6 @@ to="https://business.landsend.com/" /> - diff --git a/src/chrome/content/rules/Landslide.com.xml b/src/chrome/content/rules/Landslide.com.xml index 3678ddd7fb64..13d3cb5fb69e 100644 --- a/src/chrome/content/rules/Landslide.com.xml +++ b/src/chrome/content/rules/Landslide.com.xml @@ -11,10 +11,11 @@ Fetch error: http://landslide.com/ => https://www.campaignercrm.com/: (60, 'SSL (www.): expired 2013-04-20 --> - + - + + @@ -25,7 +26,6 @@ Fetch error: http://landslide.com/ => https://www.campaignercrm.com/: (60, 'SSL - + diff --git a/src/chrome/content/rules/Langille.org.xml b/src/chrome/content/rules/Langille.org.xml index 01da1ccf6958..145c6dd5de0d 100644 --- a/src/chrome/content/rules/Langille.org.xml +++ b/src/chrome/content/rules/Langille.org.xml @@ -6,7 +6,7 @@ Fetch error: http://dan.langille.org/ => https://dan.langille.org/: (60, 'SSL ce (www.)?langille.org: Plaintext reply --> - + diff --git a/src/chrome/content/rules/Langtons.com.au.xml b/src/chrome/content/rules/Langtons.com.au.xml new file mode 100644 index 000000000000..796afefcf391 --- /dev/null +++ b/src/chrome/content/rules/Langtons.com.au.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Language_Perfect.xml b/src/chrome/content/rules/Language_Perfect.xml index 9b52c8e1b839..0ac075226e4c 100644 --- a/src/chrome/content/rules/Language_Perfect.xml +++ b/src/chrome/content/rules/Language_Perfect.xml @@ -23,4 +23,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Langui.sh.xml b/src/chrome/content/rules/Langui.sh.xml index 73c7f62bd977..60c72d00071d 100644 --- a/src/chrome/content/rules/Langui.sh.xml +++ b/src/chrome/content/rules/Langui.sh.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.langui.sh/ => https://www.langui.sh/: (51, "SSL: no alternative certificate subject name matches target host name 'www.langui.sh'") --> - + diff --git a/src/chrome/content/rules/Lanik.us.xml b/src/chrome/content/rules/Lanik.us.xml index a2f52f94840a..a685c3466b04 100644 --- a/src/chrome/content/rules/Lanik.us.xml +++ b/src/chrome/content/rules/Lanik.us.xml @@ -20,4 +20,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/LansFast.se.xml b/src/chrome/content/rules/LansFast.se.xml new file mode 100644 index 000000000000..0728fcd751e2 --- /dev/null +++ b/src/chrome/content/rules/LansFast.se.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Lansforsakringar.se.xml b/src/chrome/content/rules/Lansforsakringar.se.xml index 6c44ab6956d2..9d23f9353c2d 100644 --- a/src/chrome/content/rules/Lansforsakringar.se.xml +++ b/src/chrome/content/rules/Lansforsakringar.se.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://lansforsakringar.se/ => https://www.lansforsakringar.se/: Too many redirects while fetching 'https://www.lansforsakringar.se/' Fetch error: http://www.lansforsakringar.se/ => https://www.lansforsakringar.se/: Too many redirects while fetching 'https://www.lansforsakringar.se/' This is a swedish insurance company --> - + diff --git a/src/chrome/content/rules/Lanyrd.xml b/src/chrome/content/rules/Lanyrd.xml deleted file mode 100644 index 5a12b2b33c81..000000000000 --- a/src/chrome/content/rules/Lanyrd.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Laptop.hu.xml b/src/chrome/content/rules/Laptop.hu.xml index fd65fc6888d4..6b67c316d130 100644 --- a/src/chrome/content/rules/Laptop.hu.xml +++ b/src/chrome/content/rules/Laptop.hu.xml @@ -18,7 +18,7 @@ Fetch error: http://www.onlinenotebook.hu/ => https://laptop.hu/: (7, 'Failed to Fetch error: http://www.laptoplap.hu/ => https://laptop.hu/: (7, 'Failed to connect to laptop.hu port 443: Connection refused') Fetch error: http://gfxpro.hu/ => https://gfxpro.hu/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + diff --git a/src/chrome/content/rules/Laravel.com.xml b/src/chrome/content/rules/Laravel.com.xml index 3e01a32fede0..9c5a6d68fc15 100644 --- a/src/chrome/content/rules/Laravel.com.xml +++ b/src/chrome/content/rules/Laravel.com.xml @@ -15,7 +15,7 @@ --> - + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Las_Vegas_Review-Journal.xml b/src/chrome/content/rules/Las_Vegas_Review-Journal.xml index 2e65aad3cb97..c9883730c815 100644 --- a/src/chrome/content/rules/Las_Vegas_Review-Journal.xml +++ b/src/chrome/content/rules/Las_Vegas_Review-Journal.xml @@ -23,11 +23,13 @@ Fetch error: http://oneday.lvrj.com/ => https://oneday.lvrj.com/: Redirect for ' * Works; mismatched, CN: *.reviewjournal.com --> - + - + + + - + diff --git a/src/chrome/content/rules/LastPass.com.xml b/src/chrome/content/rules/LastPass.com.xml index e8fd113ea7eb..63aea7dcfac4 100644 --- a/src/chrome/content/rules/LastPass.com.xml +++ b/src/chrome/content/rules/LastPass.com.xml @@ -21,28 +21,9 @@ - - - - - - - - - - - - - - - - - - - - + diff --git a/src/chrome/content/rules/Lastlog.de.xml b/src/chrome/content/rules/Lastlog.de.xml index 6b6c36181916..cfb91affdd72 100644 --- a/src/chrome/content/rules/Lastlog.de.xml +++ b/src/chrome/content/rules/Lastlog.de.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.lastlog.de/ => https://www.lastlog.de/: (51, "SSL: no alternative certificate subject name matches target host name 'www.lastlog.de'") --> - + diff --git a/src/chrome/content/rules/Lastminute.xml b/src/chrome/content/rules/Lastminute.xml index 18d247f8294b..0a4d47febc57 100644 --- a/src/chrome/content/rules/Lastminute.xml +++ b/src/chrome/content/rules/Lastminute.xml @@ -62,7 +62,7 @@ Fetch error: http://it.lastminute.com/ => https://www.it.lastminute.com/: (51, " * Secured by us --> - + diff --git a/src/chrome/content/rules/Laughing-Squid.xml b/src/chrome/content/rules/Laughing-Squid.xml index fe7572663e1e..ffb8f1ccabaa 100644 --- a/src/chrome/content/rules/Laughing-Squid.xml +++ b/src/chrome/content/rules/Laughing-Squid.xml @@ -26,7 +26,7 @@ - + + + + + + + + + + + diff --git a/src/chrome/content/rules/Launchpad.xml b/src/chrome/content/rules/Launchpad.xml index 2f2b28786a95..54b809012989 100644 --- a/src/chrome/content/rules/Launchpad.xml +++ b/src/chrome/content/rules/Launchpad.xml @@ -67,7 +67,7 @@ - + @@ -83,9 +83,7 @@ - - + --> diff --git a/src/chrome/content/rules/Laup.xml b/src/chrome/content/rules/Laup.xml index 65380f93f806..9334c01f7cce 100644 --- a/src/chrome/content/rules/Laup.xml +++ b/src/chrome/content/rules/Laup.xml @@ -13,4 +13,4 @@ Fetch error: http://laup.nu/ => https://laup.nu/: (35, 'error:140770FC:SSL routi - \ No newline at end of file + diff --git a/src/chrome/content/rules/Lavabit.xml b/src/chrome/content/rules/Lavabit.xml deleted file mode 100644 index aab8ab799f09..000000000000 --- a/src/chrome/content/rules/Lavabit.xml +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Lavaboom.com.xml b/src/chrome/content/rules/Lavaboom.com.xml index 5e56658bab6b..8dc5f2228aa3 100644 --- a/src/chrome/content/rules/Lavaboom.com.xml +++ b/src/chrome/content/rules/Lavaboom.com.xml @@ -22,7 +22,7 @@ Fetch error: http://www.lavaboom.com/ => https://www.lavaboom.com/: (60, 'SSL ce - technical.lavaboom.com --> - + diff --git a/src/chrome/content/rules/Laverna.xml b/src/chrome/content/rules/Laverna.xml index a6481297856b..9286b81d9182 100644 --- a/src/chrome/content/rules/Laverna.xml +++ b/src/chrome/content/rules/Laverna.xml @@ -1,6 +1,6 @@ - + diff --git a/src/chrome/content/rules/Law_Business_Research_CDN.xml b/src/chrome/content/rules/Law_Business_Research_CDN.xml deleted file mode 100644 index d90a216a565a..000000000000 --- a/src/chrome/content/rules/Law_Business_Research_CDN.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Law_School_Admission_Council.xml b/src/chrome/content/rules/Law_School_Admission_Council.xml index 3ff7d230e730..e0d2951d8576 100644 --- a/src/chrome/content/rules/Law_School_Admission_Council.xml +++ b/src/chrome/content/rules/Law_School_Admission_Council.xml @@ -18,9 +18,9 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Lawrence-Livermore-National-Laboratory.xml b/src/chrome/content/rules/Lawrence-Livermore-National-Laboratory.xml index 03b6553a9a7c..c5711d7e7dbf 100644 --- a/src/chrome/content/rules/Lawrence-Livermore-National-Laboratory.xml +++ b/src/chrome/content/rules/Lawrence-Livermore-National-Laboratory.xml @@ -40,7 +40,7 @@ Fetch error: http://publicaffairs.llnl.gov/ => https://publicaffairs.llnl.gov/: ˢ Secured by us --> - + @@ -93,7 +93,7 @@ Fetch error: http://publicaffairs.llnl.gov/ => https://publicaffairs.llnl.gov/: - + + + + + + diff --git a/src/chrome/content/rules/LayerBNC.org.xml b/src/chrome/content/rules/LayerBNC.org.xml deleted file mode 100644 index fd4552145cd2..000000000000 --- a/src/chrome/content/rules/LayerBNC.org.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Layne_Publications.xml b/src/chrome/content/rules/Layne_Publications.xml index 5ce40afa6f2b..1227c39c5201 100644 --- a/src/chrome/content/rules/Layne_Publications.xml +++ b/src/chrome/content/rules/Layne_Publications.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Lazada.com.my.xml b/src/chrome/content/rules/Lazada.com.my.xml new file mode 100644 index 000000000000..087f1947622c --- /dev/null +++ b/src/chrome/content/rules/Lazada.com.my.xml @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/LazyCoins.com.xml b/src/chrome/content/rules/LazyCoins.com.xml index c360f11111f4..b12cc021f819 100644 --- a/src/chrome/content/rules/LazyCoins.com.xml +++ b/src/chrome/content/rules/LazyCoins.com.xml @@ -14,7 +14,7 @@ Fetch error: http://www.lazycoins.com/ => https://www.lazycoins.com/: (28, 'Conn - .lazycoins.com --> - + diff --git a/src/chrome/content/rules/Lazy_Kush.xml b/src/chrome/content/rules/Lazy_Kush.xml index 570d4cc571f8..98051856b2ed 100644 --- a/src/chrome/content/rules/Lazy_Kush.xml +++ b/src/chrome/content/rules/Lazy_Kush.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Lb.ca.xml b/src/chrome/content/rules/Lb.ca.xml index 1791005b60c2..910a6d78703b 100644 --- a/src/chrome/content/rules/Lb.ca.xml +++ b/src/chrome/content/rules/Lb.ca.xml @@ -4,7 +4,7 @@ - (www.)? - Insecure cookies are set for these + Insecure cookies are set for these - lb.ca - www.lb.ca diff --git a/src/chrome/content/rules/LeContrepied.org.xml b/src/chrome/content/rules/LeContrepied.org.xml new file mode 100644 index 000000000000..44d07ad927c3 --- /dev/null +++ b/src/chrome/content/rules/LeContrepied.org.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/LeFebvre.org.xml b/src/chrome/content/rules/LeFebvre.org.xml index 23ea378f85fc..f0867a7e426e 100644 --- a/src/chrome/content/rules/LeFebvre.org.xml +++ b/src/chrome/content/rules/LeFebvre.org.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://lefebvre.org/ => https://lefebvre.org/: (51, "SSL: no alternative certificate subject name matches target host name 'lefebvre.org'") --> - + diff --git a/src/chrome/content/rules/LeLanceur.fr.xml b/src/chrome/content/rules/LeLanceur.fr.xml new file mode 100644 index 000000000000..d7019c137af3 --- /dev/null +++ b/src/chrome/content/rules/LeLanceur.fr.xml @@ -0,0 +1,12 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/LeMonde.fr.xml b/src/chrome/content/rules/LeMonde.fr.xml index a9c2a5b0300a..8314361409ee 100644 --- a/src/chrome/content/rules/LeMonde.fr.xml +++ b/src/chrome/content/rules/LeMonde.fr.xml @@ -1,6 +1,6 @@ - + @@ -148,7 +148,7 @@ - + diff --git a/src/chrome/content/rules/LePoing.net.xml b/src/chrome/content/rules/LePoing.net.xml new file mode 100644 index 000000000000..35385a8a63ab --- /dev/null +++ b/src/chrome/content/rules/LePoing.net.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Le_Loop.org.xml b/src/chrome/content/rules/Le_Loop.org.xml index 8802b0d85b9f..27103c2b960c 100644 --- a/src/chrome/content/rules/Le_Loop.org.xml +++ b/src/chrome/content/rules/Le_Loop.org.xml @@ -18,7 +18,7 @@ Fetch error: http://www.leloop.org/ => https://www.leloop.org/: (60, 'SSL certif - links.leloop.org --> - + @@ -29,7 +29,7 @@ Fetch error: http://www.leloop.org/ => https://www.leloop.org/: (60, 'SSL certif - + diff --git a/src/chrome/content/rules/LeadPages.net.xml b/src/chrome/content/rules/LeadPages.net.xml index 4bcf72096267..528bde1beccf 100644 --- a/src/chrome/content/rules/LeadPages.net.xml +++ b/src/chrome/content/rules/LeadPages.net.xml @@ -12,7 +12,7 @@ - + diff --git a/src/chrome/content/rules/LeadSpend.com.xml b/src/chrome/content/rules/LeadSpend.com.xml index 38524e8f9004..5e3d50ce3bbd 100644 --- a/src/chrome/content/rules/LeadSpend.com.xml +++ b/src/chrome/content/rules/LeadSpend.com.xml @@ -11,7 +11,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://leadspend.com/ => https://leadspend.com/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/Lead_Forensics.com.xml b/src/chrome/content/rules/Lead_Forensics.com.xml index 10c36cf0a70e..5b1f592ed450 100644 --- a/src/chrome/content/rules/Lead_Forensics.com.xml +++ b/src/chrome/content/rules/Lead_Forensics.com.xml @@ -48,7 +48,7 @@ --> - + - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Leader-Technologies.xml b/src/chrome/content/rules/Leader-Technologies.xml index e4f6e2920b2c..eba6d6916743 100644 --- a/src/chrome/content/rules/Leader-Technologies.xml +++ b/src/chrome/content/rules/Leader-Technologies.xml @@ -12,13 +12,13 @@ Fetch error: http://www.leadertech.com/ => https://www.leadertech.com/: (60, 'SS - Online-Register.xml --> - + - + diff --git a/src/chrome/content/rules/Leader.xml b/src/chrome/content/rules/Leader.xml deleted file mode 100644 index 92be246212af..000000000000 --- a/src/chrome/content/rules/Leader.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Leadnow.xml b/src/chrome/content/rules/Leadnow.xml index 07b3af2bd08f..df227206f5e3 100644 --- a/src/chrome/content/rules/Leadnow.xml +++ b/src/chrome/content/rules/Leadnow.xml @@ -2,10 +2,10 @@ - + - + - - - - - - - + diff --git a/src/chrome/content/rules/Leakedsource.com.xml b/src/chrome/content/rules/Leakedsource.com.xml index 5a11fa80d80b..e2934a4aa6bf 100644 --- a/src/chrome/content/rules/Leakedsource.com.xml +++ b/src/chrome/content/rules/Leakedsource.com.xml @@ -11,7 +11,7 @@ Fetch error: http://id.leakedsource.com/ => https://id.leakedsource.com/: (6, 'C ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -23,7 +23,7 @@ Fetch error: http://id.leakedsource.com/ => https://id.leakedsource.com/: (6, 'C - + + + + + + + + diff --git a/src/chrome/content/rules/Leanpub.com.xml b/src/chrome/content/rules/Leanpub.com.xml index 043dc34f2d8a..7cc7620d28a6 100644 --- a/src/chrome/content/rules/Leanpub.com.xml +++ b/src/chrome/content/rules/Leanpub.com.xml @@ -1,28 +1,14 @@ - - - - - - - - - - - + - + + diff --git a/src/chrome/content/rules/Leap_Motion.xml b/src/chrome/content/rules/Leap_Motion.xml index e6c51255c3de..8873a81039d5 100644 --- a/src/chrome/content/rules/Leap_Motion.xml +++ b/src/chrome/content/rules/Leap_Motion.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Learn-C.org.xml b/src/chrome/content/rules/Learn-C.org.xml new file mode 100644 index 000000000000..cc7df3c5216d --- /dev/null +++ b/src/chrome/content/rules/Learn-C.org.xml @@ -0,0 +1,22 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Learn-Cpp.org.xml b/src/chrome/content/rules/Learn-Cpp.org.xml new file mode 100644 index 000000000000..aa6e3d246011 --- /dev/null +++ b/src/chrome/content/rules/Learn-Cpp.org.xml @@ -0,0 +1,11 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Learn-GoLang.org.xml b/src/chrome/content/rules/Learn-GoLang.org.xml new file mode 100644 index 000000000000..c10e44006a5c --- /dev/null +++ b/src/chrome/content/rules/Learn-GoLang.org.xml @@ -0,0 +1,11 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Learn-HTML.org.xml b/src/chrome/content/rules/Learn-HTML.org.xml new file mode 100644 index 000000000000..b57722c319f6 --- /dev/null +++ b/src/chrome/content/rules/Learn-HTML.org.xml @@ -0,0 +1,11 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Learn-JS.org.xml b/src/chrome/content/rules/Learn-JS.org.xml new file mode 100644 index 000000000000..670bf9ea89b8 --- /dev/null +++ b/src/chrome/content/rules/Learn-JS.org.xml @@ -0,0 +1,11 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Learn-PHP.org.xml b/src/chrome/content/rules/Learn-PHP.org.xml new file mode 100644 index 000000000000..5a6f23f4bae8 --- /dev/null +++ b/src/chrome/content/rules/Learn-PHP.org.xml @@ -0,0 +1,11 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Learn-Perl.org.xml b/src/chrome/content/rules/Learn-Perl.org.xml new file mode 100644 index 000000000000..6c9f47619bb6 --- /dev/null +++ b/src/chrome/content/rules/Learn-Perl.org.xml @@ -0,0 +1,11 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/LearnCS.org.xml b/src/chrome/content/rules/LearnCS.org.xml new file mode 100644 index 000000000000..8199481f61c1 --- /dev/null +++ b/src/chrome/content/rules/LearnCS.org.xml @@ -0,0 +1,11 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/LearnJavaOnline.org.xml b/src/chrome/content/rules/LearnJavaOnline.org.xml new file mode 100644 index 000000000000..2c7ce091ad78 --- /dev/null +++ b/src/chrome/content/rules/LearnJavaOnline.org.xml @@ -0,0 +1,11 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/LearnPython.org.xml b/src/chrome/content/rules/LearnPython.org.xml new file mode 100644 index 000000000000..d4bd06d6a2e5 --- /dev/null +++ b/src/chrome/content/rules/LearnPython.org.xml @@ -0,0 +1,11 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/LearnRubyOnline.org.xml b/src/chrome/content/rules/LearnRubyOnline.org.xml new file mode 100644 index 000000000000..fc7bab916e66 --- /dev/null +++ b/src/chrome/content/rules/LearnRubyOnline.org.xml @@ -0,0 +1,11 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/LearnShare.com.xml b/src/chrome/content/rules/LearnShare.com.xml index 9444f79ce526..d1d73a93dfb0 100644 --- a/src/chrome/content/rules/LearnShare.com.xml +++ b/src/chrome/content/rules/LearnShare.com.xml @@ -5,9 +5,9 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/LearnShell.org.xml b/src/chrome/content/rules/LearnShell.org.xml new file mode 100644 index 000000000000..13cf44be21c5 --- /dev/null +++ b/src/chrome/content/rules/LearnShell.org.xml @@ -0,0 +1,11 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/LearnXInYMinutes.com.xml b/src/chrome/content/rules/LearnXInYMinutes.com.xml new file mode 100644 index 000000000000..5beee6671997 --- /dev/null +++ b/src/chrome/content/rules/LearnXInYMinutes.com.xml @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/src/chrome/content/rules/LearningCast.jp.xml b/src/chrome/content/rules/LearningCast.jp.xml index 890310583fe8..50ce232fe0f6 100644 --- a/src/chrome/content/rules/LearningCast.jp.xml +++ b/src/chrome/content/rules/LearningCast.jp.xml @@ -10,7 +10,7 @@ - + https://leaserig.net/: (7, 'Failed to conne Fetch error: http://www.leaserig.net/ => https://www.leaserig.net/: (7, 'Failed to connect to www.leaserig.net port 443: Connection refused') --> - + diff --git a/src/chrome/content/rules/LeaseWeb.com.xml b/src/chrome/content/rules/LeaseWeb.com.xml deleted file mode 100644 index 055d064e9ae5..000000000000 --- a/src/chrome/content/rules/LeaseWeb.com.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/LeaseWeb.xml b/src/chrome/content/rules/LeaseWeb.xml new file mode 100644 index 000000000000..9478fa0f4023 --- /dev/null +++ b/src/chrome/content/rules/LeaseWeb.xml @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Lecanardenchaine.fr.xml b/src/chrome/content/rules/Lecanardenchaine.fr.xml new file mode 100644 index 000000000000..f438d0e9f790 --- /dev/null +++ b/src/chrome/content/rules/Lecanardenchaine.fr.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/Ledevoir.com.xml b/src/chrome/content/rules/Ledevoir.com.xml new file mode 100644 index 000000000000..065eddf4392c --- /dev/null +++ b/src/chrome/content/rules/Ledevoir.com.xml @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Ledgerscope.xml b/src/chrome/content/rules/Ledgerscope.xml index 1cb4c9e86f2a..1be38a099cab 100644 --- a/src/chrome/content/rules/Ledgerscope.xml +++ b/src/chrome/content/rules/Ledgerscope.xml @@ -5,7 +5,7 @@ Fetch error: http://ledgerscope.net/ => https://ledgerscope.net/: (51, "SSL: no Fetch error: http://www.ledgerscope.net/ => https://www.ledgerscope.net/: (51, "SSL: no alternative certificate subject name matches target host name 'www.ledgerscope.net'") --> - + diff --git a/src/chrome/content/rules/Leeds.ac.uk-falsemixed.xml b/src/chrome/content/rules/Leeds.ac.uk-falsemixed.xml deleted file mode 100644 index 39af9d454215..000000000000 --- a/src/chrome/content/rules/Leeds.ac.uk-falsemixed.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Leeds.gov.uk.xml b/src/chrome/content/rules/Leeds.gov.uk.xml new file mode 100644 index 000000000000..b202a3770cf1 --- /dev/null +++ b/src/chrome/content/rules/Leeds.gov.uk.xml @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Leeds_Building_Society.co.uk.xml b/src/chrome/content/rules/Leeds_Building_Society.co.uk.xml index 3648877f7c9c..5522d55f0f25 100644 --- a/src/chrome/content/rules/Leeds_Building_Society.co.uk.xml +++ b/src/chrome/content/rules/Leeds_Building_Society.co.uk.xml @@ -13,7 +13,7 @@ - + diff --git a/src/chrome/content/rules/Leet_Media.com.xml b/src/chrome/content/rules/Leet_Media.com.xml index 5cb37668b6c0..bbbfd0ddebf8 100644 --- a/src/chrome/content/rules/Leet_Media.com.xml +++ b/src/chrome/content/rules/Leet_Media.com.xml @@ -11,7 +11,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://leetmedia.com/ => https://leetmedia.com/: (28, 'Operation timed out after 15000 milliseconds with 0 bytes received') --> - + diff --git a/src/chrome/content/rules/Leetway.com.xml b/src/chrome/content/rules/Leetway.com.xml index b53916add92d..993008e0ad81 100644 --- a/src/chrome/content/rules/Leetway.com.xml +++ b/src/chrome/content/rules/Leetway.com.xml @@ -34,7 +34,7 @@ Fetch error: http://leetway.com/ => https://leetway.com/: (28, 'Operation timed and css from (www.). --> - + diff --git a/src/chrome/content/rules/Lef.org.xml b/src/chrome/content/rules/Lef.org.xml deleted file mode 100644 index 43c22b56bf76..000000000000 --- a/src/chrome/content/rules/Lef.org.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/Legacy.com.xml b/src/chrome/content/rules/Legacy.com.xml index 8b2ebc151623..605aba0b1dfa 100644 --- a/src/chrome/content/rules/Legacy.com.xml +++ b/src/chrome/content/rules/Legacy.com.xml @@ -1,68 +1,44 @@ - - + + + + + + + + + + + + + - - - - - - - - - - + - + - + + diff --git a/src/chrome/content/rules/Legal_Directores.xml b/src/chrome/content/rules/Legal_Directores.xml index 9a25d38b0702..112150cff77d 100644 --- a/src/chrome/content/rules/Legal_Directores.xml +++ b/src/chrome/content/rules/Legal_Directores.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/LegiScan.com.xml b/src/chrome/content/rules/LegiScan.com.xml index 834f89d23fd5..1b1e08cbcadf 100644 --- a/src/chrome/content/rules/LegiScan.com.xml +++ b/src/chrome/content/rules/LegiScan.com.xml @@ -14,7 +14,7 @@ Fetch error: http://acme.legiscan.com/ => https://acme.legiscan.com/: (60, 'SSL - .legiscan.com --> - + diff --git a/src/chrome/content/rules/Legolanddiscoverycenter.xml b/src/chrome/content/rules/Legolanddiscoverycenter.xml index 6d79a0b2749b..b8087da3e03a 100644 --- a/src/chrome/content/rules/Legolanddiscoverycenter.xml +++ b/src/chrome/content/rules/Legolanddiscoverycenter.xml @@ -15,7 +15,7 @@ Fetch error: http://secure.legolanddiscoverycentre.co.uk/ => https://secure.lego ¹ cert mismatch --> - + @@ -23,7 +23,7 @@ Fetch error: http://secure.legolanddiscoverycentre.co.uk/ => https://secure.lego - + diff --git a/src/chrome/content/rules/Legolas-Media.xml b/src/chrome/content/rules/Legolas-Media.xml deleted file mode 100644 index 4e11b20eb137..000000000000 --- a/src/chrome/content/rules/Legolas-Media.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Lehrstellen-Radar.de.xml b/src/chrome/content/rules/Lehrstellen-Radar.de.xml new file mode 100644 index 000000000000..749525d5f998 --- /dev/null +++ b/src/chrome/content/rules/Lehrstellen-Radar.de.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Leia_Jung.org.xml b/src/chrome/content/rules/Leia_Jung.org.xml index 3a4cd5382306..e5b631850e46 100644 --- a/src/chrome/content/rules/Leia_Jung.org.xml +++ b/src/chrome/content/rules/Leia_Jung.org.xml @@ -12,4 +12,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Leibniz_Supercomputing_Centre.xml b/src/chrome/content/rules/Leibniz_Supercomputing_Centre.xml index 26b612ed7ed0..e4e36d279a49 100644 --- a/src/chrome/content/rules/Leibniz_Supercomputing_Centre.xml +++ b/src/chrome/content/rules/Leibniz_Supercomputing_Centre.xml @@ -12,7 +12,7 @@ Fetch error: http://idportal.lrz-muenchen.de/ => https://idportal.lrz-muenchen.d - servicedesk.lrz.de --> - + diff --git a/src/chrome/content/rules/Leicestershire.gov.uk.xml b/src/chrome/content/rules/Leicestershire.gov.uk.xml index 6ed0e2e791bf..8dbd5d1f8b03 100644 --- a/src/chrome/content/rules/Leicestershire.gov.uk.xml +++ b/src/chrome/content/rules/Leicestershire.gov.uk.xml @@ -10,7 +10,7 @@ - + - + - + + + + + + + + + + + + + + + + + + + + + - + diff --git a/src/chrome/content/rules/Lelo.com.xml b/src/chrome/content/rules/Lelo.com.xml index 223538cfe1c1..d79f5d0ff79c 100644 --- a/src/chrome/content/rules/Lelo.com.xml +++ b/src/chrome/content/rules/Lelo.com.xml @@ -34,7 +34,7 @@ - + - - see https://github.com/EFForg/https-everywhere/issues/10962 - live.lemde.fr --> - + + + - + diff --git a/src/chrome/content/rules/Lending-Club.xml b/src/chrome/content/rules/Lending-Club.xml deleted file mode 100644 index 4ae836cc6556..000000000000 --- a/src/chrome/content/rules/Lending-Club.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Lendo.se.xml b/src/chrome/content/rules/Lendo.se.xml index 055941699345..bb5df0ce05cc 100644 --- a/src/chrome/content/rules/Lendo.se.xml +++ b/src/chrome/content/rules/Lendo.se.xml @@ -18,7 +18,7 @@ - + - - - - - - - - - - - diff --git a/src/chrome/content/rules/Lenos-Software.xml b/src/chrome/content/rules/Lenos-Software.xml deleted file mode 100644 index cffc00f3b46a..000000000000 --- a/src/chrome/content/rules/Lenos-Software.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Lenovo.com.cn.xml b/src/chrome/content/rules/Lenovo.com.cn.xml index fc0396a7d703..2671a2af6c1f 100644 --- a/src/chrome/content/rules/Lenovo.com.cn.xml +++ b/src/chrome/content/rules/Lenovo.com.cn.xml @@ -43,7 +43,7 @@ Fetch error: http://welfare.lenovo.com.cn/ => https://welfare.lenovo.com.cn/: (2 iknow.lenovo.com.cn ( https://iknow.lenovo.com.cn/detail/dc_153184.html ) m.lenovo.com.cn --> - + diff --git a/src/chrome/content/rules/Lenstip.com.xml b/src/chrome/content/rules/Lenstip.com.xml new file mode 100644 index 000000000000..4562fda9377c --- /dev/null +++ b/src/chrome/content/rules/Lenstip.com.xml @@ -0,0 +1,10 @@ + + + + + + + diff --git a/src/chrome/content/rules/Leo.org.xml b/src/chrome/content/rules/Leo.org.xml index 04eb3bd5dd19..8447edc05b04 100644 --- a/src/chrome/content/rules/Leo.org.xml +++ b/src/chrome/content/rules/Leo.org.xml @@ -1,20 +1,58 @@ - + + + + + + + + + + + + + + + + + + + + + + + - + diff --git a/src/chrome/content/rules/Leona.my.xml b/src/chrome/content/rules/Leona.my.xml new file mode 100644 index 000000000000..dc911d2b3f82 --- /dev/null +++ b/src/chrome/content/rules/Leona.my.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Leroy_Farmer_City_Press.xml b/src/chrome/content/rules/Leroy_Farmer_City_Press.xml deleted file mode 100644 index 43bef015be9c..000000000000 --- a/src/chrome/content/rules/Leroy_Farmer_City_Press.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Les-Crises.fr.xml b/src/chrome/content/rules/Les-Crises.fr.xml new file mode 100644 index 000000000000..d1eda4adb96a --- /dev/null +++ b/src/chrome/content/rules/Les-Crises.fr.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/LesFurets.com.xml b/src/chrome/content/rules/LesFurets.com.xml deleted file mode 100644 index 529373e37953..000000000000 --- a/src/chrome/content/rules/LesFurets.com.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/LesInrocks.com.xml b/src/chrome/content/rules/LesInrocks.com.xml index cc3579e51d6e..f273ded097f3 100644 --- a/src/chrome/content/rules/LesInrocks.com.xml +++ b/src/chrome/content/rules/LesInrocks.com.xml @@ -6,7 +6,7 @@ mon-compte.lesinrocks.com revue-du-web.lesinrocks.com statics.lesinrocks.com - + Time out: lesinrocks.com blogs.lesinrocks.com @@ -49,7 +49,7 @@ - diff --git a/src/chrome/content/rules/LesLumieresdOrient.com.xml b/src/chrome/content/rules/LesLumieresdOrient.com.xml new file mode 100644 index 000000000000..db29cdac45c8 --- /dev/null +++ b/src/chrome/content/rules/LesLumieresdOrient.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/LessThan3.xml b/src/chrome/content/rules/LessThan3.xml index 0f4faab0f614..9f95070ceac1 100644 --- a/src/chrome/content/rules/LessThan3.xml +++ b/src/chrome/content/rules/LessThan3.xml @@ -9,13 +9,13 @@ - + + - + diff --git a/src/chrome/content/rules/LessWrong.com.xml b/src/chrome/content/rules/LessWrong.com.xml new file mode 100644 index 000000000000..58ed4ab7e653 --- /dev/null +++ b/src/chrome/content/rules/LessWrong.com.xml @@ -0,0 +1,15 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Lessig_2016.us.xml b/src/chrome/content/rules/Lessig_2016.us.xml index 0938685b491b..0e0fed671d71 100644 --- a/src/chrome/content/rules/Lessig_2016.us.xml +++ b/src/chrome/content/rules/Lessig_2016.us.xml @@ -20,7 +20,7 @@ - + https://www.lessigforpresiden - .lessigforpresident.com --> - + @@ -23,7 +23,7 @@ Fetch error: http://www.lessigforpresident.com/ => https://www.lessigforpresiden --> - + - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/LetMeTurnTheTables.com.xml b/src/chrome/content/rules/LetMeTurnTheTables.com.xml new file mode 100644 index 000000000000..93b9d2441069 --- /dev/null +++ b/src/chrome/content/rules/LetMeTurnTheTables.com.xml @@ -0,0 +1,10 @@ + + + + + + + diff --git a/src/chrome/content/rules/Lets_Encrypt.org.xml b/src/chrome/content/rules/Lets_Encrypt.org.xml index 6479f0a12a92..85b79864ceec 100644 --- a/src/chrome/content/rules/Lets_Encrypt.org.xml +++ b/src/chrome/content/rules/Lets_Encrypt.org.xml @@ -1,19 +1,26 @@ + - - - + + + + + + + + + + + + - - - - - + - + diff --git a/src/chrome/content/rules/Lets_Talk_Bitcoin.com.xml b/src/chrome/content/rules/Lets_Talk_Bitcoin.com.xml index 0610625418a9..b073b720cf03 100644 --- a/src/chrome/content/rules/Lets_Talk_Bitcoin.com.xml +++ b/src/chrome/content/rules/Lets_Talk_Bitcoin.com.xml @@ -13,7 +13,7 @@ Fetch error: http://www.letstalkbitcoin.com/ => https://www.letstalkbitcoin.com/ - .letstalkbitcoin.com --> - + diff --git a/src/chrome/content/rules/Letterboxd.com.xml b/src/chrome/content/rules/Letterboxd.com.xml index ec4988bdf4ff..34800b6c9aed 100644 --- a/src/chrome/content/rules/Letterboxd.com.xml +++ b/src/chrome/content/rules/Letterboxd.com.xml @@ -2,21 +2,21 @@ - - @@ -26,8 +26,6 @@ - - diff --git a/src/chrome/content/rules/Level1Techs.com.xml b/src/chrome/content/rules/Level1Techs.com.xml new file mode 100644 index 000000000000..953bd327292f --- /dev/null +++ b/src/chrome/content/rules/Level1Techs.com.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Leveson_Inquiry.xml b/src/chrome/content/rules/Leveson_Inquiry.xml index 8f8a3cecc3ee..a05c4e1919cb 100644 --- a/src/chrome/content/rules/Leveson_Inquiry.xml +++ b/src/chrome/content/rules/Leveson_Inquiry.xml @@ -10,7 +10,7 @@ Fetch error: http://www.levesoninquiry.org.uk/ => https://www.levesoninquiry.org !www doesn't work. --> - + diff --git a/src/chrome/content/rules/Levexis.xml b/src/chrome/content/rules/Levexis.xml index 9ecc85f7c6c1..be6ea6292cda 100644 --- a/src/chrome/content/rules/Levexis.xml +++ b/src/chrome/content/rules/Levexis.xml @@ -24,7 +24,7 @@ - + - + diff --git a/src/chrome/content/rules/Levo.com.xml b/src/chrome/content/rules/Levo.com.xml deleted file mode 100644 index b7a4d3027448..000000000000 --- a/src/chrome/content/rules/Levo.com.xml +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Levonline.com.xml b/src/chrome/content/rules/Levonline.com.xml index 9bac1432012d..aa0048a70bfa 100644 --- a/src/chrome/content/rules/Levonline.com.xml +++ b/src/chrome/content/rules/Levonline.com.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Lfrs.sl.xml b/src/chrome/content/rules/Lfrs.sl.xml index 7e6421e6d1e2..e35f8ad6449e 100644 --- a/src/chrome/content/rules/Lfrs.sl.xml +++ b/src/chrome/content/rules/Lfrs.sl.xml @@ -1,11 +1,7 @@ - - + - - + diff --git a/src/chrome/content/rules/Lh.co.th.xml b/src/chrome/content/rules/Lh.co.th.xml index f149de25759d..9f4e422a051c 100644 --- a/src/chrome/content/rules/Lh.co.th.xml +++ b/src/chrome/content/rules/Lh.co.th.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://lh.co.th/ => https://www.lh.co.th/: (7, 'Failed to connect to www.lh.co.th port 443: Connection refused') Fetch error: http://www.lh.co.th/ => https://www.lh.co.th/: (7, 'Failed to connect to www.lh.co.th port 443: Connection refused') --> - + diff --git a/src/chrome/content/rules/Li.ru.xml b/src/chrome/content/rules/Li.ru.xml new file mode 100644 index 000000000000..369416ce99cb --- /dev/null +++ b/src/chrome/content/rules/Li.ru.xml @@ -0,0 +1,11 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/LiLux.lu.xml b/src/chrome/content/rules/LiLux.lu.xml index d1ce47089107..9698faede84c 100644 --- a/src/chrome/content/rules/LiLux.lu.xml +++ b/src/chrome/content/rules/LiLux.lu.xml @@ -17,13 +17,14 @@ - + + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/LibApps.com.xml b/src/chrome/content/rules/LibApps.com.xml index af652fb32038..1bfd7cafe95a 100644 --- a/src/chrome/content/rules/LibApps.com.xml +++ b/src/chrome/content/rules/LibApps.com.xml @@ -1,7 +1,7 @@ - + diff --git a/src/chrome/content/rules/Libarchive.org.xml b/src/chrome/content/rules/Libarchive.org.xml new file mode 100644 index 000000000000..db8b6316971f --- /dev/null +++ b/src/chrome/content/rules/Libarchive.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Libdems.org.uk.xml b/src/chrome/content/rules/Libdems.org.uk.xml index fd8fd12d1962..634501d79602 100644 --- a/src/chrome/content/rules/Libdems.org.uk.xml +++ b/src/chrome/content/rules/Libdems.org.uk.xml @@ -10,7 +10,8 @@ - + + @@ -22,4 +23,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Liberal_America.org-falsemixed.xml b/src/chrome/content/rules/Liberal_America.org-falsemixed.xml index 7ee0a0d9b178..d92b4119fc52 100644 --- a/src/chrome/content/rules/Liberal_America.org-falsemixed.xml +++ b/src/chrome/content/rules/Liberal_America.org-falsemixed.xml @@ -5,7 +5,7 @@ - + diff --git a/src/chrome/content/rules/LiberationPledge.com.xml b/src/chrome/content/rules/LiberationPledge.com.xml new file mode 100644 index 000000000000..0ffe293dbee8 --- /dev/null +++ b/src/chrome/content/rules/LiberationPledge.com.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Liberdade.Digital.xml b/src/chrome/content/rules/Liberdade.Digital.xml index 54f6f65a2b6d..11cbec541f60 100644 --- a/src/chrome/content/rules/Liberdade.Digital.xml +++ b/src/chrome/content/rules/Liberdade.Digital.xml @@ -16,7 +16,7 @@ Fetch error: http://piwik.liberdade.digital/ => https://piwik.liberdade.digital/ * Secured by us --> - + diff --git a/src/chrome/content/rules/Liberty.xml b/src/chrome/content/rules/Liberty.xml deleted file mode 100644 index 91b8aa71d2ad..000000000000 --- a/src/chrome/content/rules/Liberty.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Liberty_Flail_Mowers.com.xml b/src/chrome/content/rules/Liberty_Flail_Mowers.com.xml deleted file mode 100644 index 567f478c498c..000000000000 --- a/src/chrome/content/rules/Liberty_Flail_Mowers.com.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Libevent.org.xml b/src/chrome/content/rules/Libevent.org.xml new file mode 100644 index 000000000000..f26d3a0fde3a --- /dev/null +++ b/src/chrome/content/rules/Libevent.org.xml @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Libgen.xml b/src/chrome/content/rules/Libgen.xml index 89788687f039..a8d713638bab 100644 --- a/src/chrome/content/rules/Libgen.xml +++ b/src/chrome/content/rules/Libgen.xml @@ -6,13 +6,15 @@ *.libgen.me --> - + + + diff --git a/src/chrome/content/rules/LibraryAnywhere.xml b/src/chrome/content/rules/LibraryAnywhere.xml index 03788f4e6255..9b473092f1d7 100644 --- a/src/chrome/content/rules/LibraryAnywhere.xml +++ b/src/chrome/content/rules/LibraryAnywhere.xml @@ -17,8 +17,7 @@ - + - + https://www.libraryfreedomproject.org/: (60, 'SSL certificate problem: certificate has expired') - - Insecure cookies are set for these domains: - - - .libraryfreedomproject.org - + Invalid Certificate: + analytics.libraryfreedomproject.org + mail.libraryfreedomproject.org --> - - + + - - - - - - - - + diff --git a/src/chrome/content/rules/Libravatar.org.xml b/src/chrome/content/rules/Libravatar.org.xml deleted file mode 100644 index 8172515c417d..000000000000 --- a/src/chrome/content/rules/Libravatar.org.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/LibreLabUCM.org.xml b/src/chrome/content/rules/LibreLabUCM.org.xml new file mode 100644 index 000000000000..aff9e1c21ef4 --- /dev/null +++ b/src/chrome/content/rules/LibreLabUCM.org.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/LibreOffice-from-Collabora.com.xml b/src/chrome/content/rules/LibreOffice-from-Collabora.com.xml deleted file mode 100644 index 094fda627422..000000000000 --- a/src/chrome/content/rules/LibreOffice-from-Collabora.com.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/LibreOffice.org.xml b/src/chrome/content/rules/LibreOffice.org.xml index e81c757fbae8..c6075ee0dbb3 100644 --- a/src/chrome/content/rules/LibreOffice.org.xml +++ b/src/chrome/content/rules/LibreOffice.org.xml @@ -3,22 +3,33 @@ - api.libreoffice.org - dev-builds.libreoffice.org - tinderbox.libreoffice.org + + Mixed content: + - devcentral.libreoffice.org + - perf.libreoffice.org --> + + + + + + + @@ -39,14 +50,17 @@ + + + @@ -60,8 +74,10 @@ + + diff --git a/src/chrome/content/rules/LibreOfficeBox.xml b/src/chrome/content/rules/LibreOfficeBox.xml deleted file mode 100644 index 77783e40416e..000000000000 --- a/src/chrome/content/rules/LibreOfficeBox.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/chrome/content/rules/Libre_Graphics_World.org.xml b/src/chrome/content/rules/Libre_Graphics_World.org.xml index 480ce2b90ae8..d866d5353727 100644 --- a/src/chrome/content/rules/Libre_Graphics_World.org.xml +++ b/src/chrome/content/rules/Libre_Graphics_World.org.xml @@ -28,4 +28,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Libri.de.xml b/src/chrome/content/rules/Libri.de.xml index 05b8bd600421..50d337333da0 100644 --- a/src/chrome/content/rules/Libri.de.xml +++ b/src/chrome/content/rules/Libri.de.xml @@ -1,17 +1,19 @@ + - - - - - - - - + - + + diff --git a/src/chrome/content/rules/LibriVox.org.xml b/src/chrome/content/rules/LibriVox.org.xml new file mode 100644 index 000000000000..90041e47034f --- /dev/null +++ b/src/chrome/content/rules/LibriVox.org.xml @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/LibriVox.xml b/src/chrome/content/rules/LibriVox.xml deleted file mode 100644 index 2e3ffff2e183..000000000000 --- a/src/chrome/content/rules/LibriVox.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Libspf2.org.xml b/src/chrome/content/rules/Libspf2.org.xml new file mode 100644 index 000000000000..278173965da6 --- /dev/null +++ b/src/chrome/content/rules/Libspf2.org.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/Libssh2.org.xml b/src/chrome/content/rules/Libssh2.org.xml new file mode 100644 index 000000000000..c836b96030ea --- /dev/null +++ b/src/chrome/content/rules/Libssh2.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Libsyn.xml b/src/chrome/content/rules/Libsyn.xml index 17a1c1685eb3..5c2762ee22c9 100644 --- a/src/chrome/content/rules/Libsyn.xml +++ b/src/chrome/content/rules/Libsyn.xml @@ -1,84 +1,39 @@ - + - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - + + diff --git a/src/chrome/content/rules/Libtoxcore.so.xml b/src/chrome/content/rules/Libtoxcore.so.xml deleted file mode 100644 index ce541f6fc154..000000000000 --- a/src/chrome/content/rules/Libtoxcore.so.xml +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Lidl.xml b/src/chrome/content/rules/Lidl.xml index 98e00805b44f..7fb89e2a2c06 100644 --- a/src/chrome/content/rules/Lidl.xml +++ b/src/chrome/content/rules/Lidl.xml @@ -8,7 +8,7 @@ Insecure cookies are set for these hosts: ᶜ - webforms.lidl.com - + ᶜ See https://owasp.org/index.php/SecureFlag --> @@ -25,7 +25,7 @@ --> - + - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/LifeReimagined.org.xml b/src/chrome/content/rules/LifeReimagined.org.xml index 2a2b7d39cc4d..4fef1f52c04e 100644 --- a/src/chrome/content/rules/LifeReimagined.org.xml +++ b/src/chrome/content/rules/LifeReimagined.org.xml @@ -6,7 +6,7 @@ * Server sends no certificate chain, see https://whatsmychaincert.com --> - + diff --git a/src/chrome/content/rules/Lifehacker.com.xml b/src/chrome/content/rules/Lifehacker.com.xml deleted file mode 100644 index 61b20ccb1ee5..000000000000 --- a/src/chrome/content/rules/Lifehacker.com.xml +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Lift-conference.xml b/src/chrome/content/rules/Lift-conference.xml index 3295cf5e61b4..fddbfa597dd3 100644 --- a/src/chrome/content/rules/Lift-conference.xml +++ b/src/chrome/content/rules/Lift-conference.xml @@ -1,10 +1,11 @@ - + + - + - - - - - - - - - - diff --git a/src/chrome/content/rules/LightEdge.com.xml b/src/chrome/content/rules/LightEdge.com.xml new file mode 100644 index 000000000000..2a95fe71937c --- /dev/null +++ b/src/chrome/content/rules/LightEdge.com.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/LightTheNight.org.xml b/src/chrome/content/rules/LightTheNight.org.xml new file mode 100644 index 000000000000..20dfa8911b0b --- /dev/null +++ b/src/chrome/content/rules/LightTheNight.org.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Light_the_Night.org.xml b/src/chrome/content/rules/Light_the_Night.org.xml deleted file mode 100644 index aa63e5550928..000000000000 --- a/src/chrome/content/rules/Light_the_Night.org.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/LightningMaps.org.xml b/src/chrome/content/rules/LightningMaps.org.xml index 509c6905e17f..ef79b5f3978b 100644 --- a/src/chrome/content/rules/LightningMaps.org.xml +++ b/src/chrome/content/rules/LightningMaps.org.xml @@ -1,25 +1,46 @@ - + + + + + + - - - - + diff --git a/src/chrome/content/rules/Lighttpd.net.xml b/src/chrome/content/rules/Lighttpd.net.xml index 371cb9409504..526a19748799 100644 --- a/src/chrome/content/rules/Lighttpd.net.xml +++ b/src/chrome/content/rules/Lighttpd.net.xml @@ -58,7 +58,7 @@ - + diff --git a/src/chrome/content/rules/Lijit.com.xml b/src/chrome/content/rules/Lijit.com.xml index 0eaf8450bf80..d7a2a436c78c 100644 --- a/src/chrome/content/rules/Lijit.com.xml +++ b/src/chrome/content/rules/Lijit.com.xml @@ -6,18 +6,78 @@ - www.lijit.com.cdngc.net + Cert expired: + - adintegration.lijit.com + + Cert mismatch: + - apcdn.lijit.com + - ibv.lijit.com + + Connection refused: + - up.lijit.com + - vap1sjc1.lijit.com + - vap1yyz1.lijit.com + - vap2sjc1.lijit.com + - vap2sna1.lijit.com + - vap3iad1.lijit.com + - vap4sna1.lijit.com + + Timeout: + - blog.lijit.com + - mailx.lijit.com + - oops.lijit.com + - vap1aws.lijit.com + - vap1dfw1.lijit.com + - vap1sin1.lijit.com + - vap2dfw1.lijit.com + - vap3dfw1.lijit.com + - vap3yyz1.lijit.com + - vap4yyz1.lijit.com + - vap5iad1.lijit.com + - vapden1.lijit.com + - vap1iad3.lijit.com + - vap1sna1.lijit.com + - vap2iad3.lijit.com + - vap2yyz1.lijit.com + - vap3iad3.lijit.com + - vap3sna1.lijit.com + - vap4iad3.lijit.com + - vap5iad3.lijit.com + - vap5sna1.lijit.com + - vap6iad3.lijit.com + - vap6sna1.lijit.com + - vap6iad1.lijit.com --> + + + + + - - - - + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Likes.xml b/src/chrome/content/rules/Likes.xml deleted file mode 100644 index a9fce39b782a..000000000000 --- a/src/chrome/content/rules/Likes.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Likeyed.com.xml b/src/chrome/content/rules/Likeyed.com.xml deleted file mode 100644 index 021eb421b386..000000000000 --- a/src/chrome/content/rules/Likeyed.com.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Liliani.xml b/src/chrome/content/rules/Liliani.xml index 5243106e8524..8a7ef10d417c 100644 --- a/src/chrome/content/rules/Liliani.xml +++ b/src/chrome/content/rules/Liliani.xml @@ -3,7 +3,7 @@ - + diff --git a/src/chrome/content/rules/Limango.xml b/src/chrome/content/rules/Limango.xml index 967cebb5bc77..3e67df30133b 100644 --- a/src/chrome/content/rules/Limango.xml +++ b/src/chrome/content/rules/Limango.xml @@ -4,20 +4,18 @@ Disabled by https-everywhere-checker because: Fetch error: http://img.limango-media.de/ => https://img.limango-media.de/: (6, 'Could not resolve host: img.limango-media.de') --> - + - + + - - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/LimeService.xml b/src/chrome/content/rules/LimeService.xml deleted file mode 100644 index 7156ee0464a9..000000000000 --- a/src/chrome/content/rules/LimeService.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/LimeSurvey.com.xml b/src/chrome/content/rules/LimeSurvey.com.xml new file mode 100644 index 000000000000..70f345cb9b30 --- /dev/null +++ b/src/chrome/content/rules/LimeSurvey.com.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/LimeSurvey.org.xml b/src/chrome/content/rules/LimeSurvey.org.xml new file mode 100644 index 000000000000..0ae8483607fa --- /dev/null +++ b/src/chrome/content/rules/LimeSurvey.org.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/LimeSurvey.xml b/src/chrome/content/rules/LimeSurvey.xml deleted file mode 100644 index b5606c5996ad..000000000000 --- a/src/chrome/content/rules/LimeSurvey.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Limelight-Networks.xml b/src/chrome/content/rules/Limelight-Networks.xml index f34a73f85736..068f40ee0c82 100644 --- a/src/chrome/content/rules/Limelight-Networks.xml +++ b/src/chrome/content/rules/Limelight-Networks.xml @@ -7,10 +7,16 @@ + + + + - - diff --git a/src/chrome/content/rules/Limited_2_Art.com.xml b/src/chrome/content/rules/Limited_2_Art.com.xml index cfa4fecedb0b..a1f588643728 100644 --- a/src/chrome/content/rules/Limited_2_Art.com.xml +++ b/src/chrome/content/rules/Limited_2_Art.com.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Limun.org.xml b/src/chrome/content/rules/Limun.org.xml index 2fe8771c89f2..d76119bf04c3 100644 --- a/src/chrome/content/rules/Limun.org.xml +++ b/src/chrome/content/rules/Limun.org.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://archlinux.limun.org/ => https://archlinux.limun.org/: (7, 'Failed to connect to archlinux.limun.org port 443: Connection refused') --> - + diff --git a/src/chrome/content/rules/Lincoln.gov.uk.xml b/src/chrome/content/rules/Lincoln.gov.uk.xml index cd502a89ae6c..43121baddd85 100644 --- a/src/chrome/content/rules/Lincoln.gov.uk.xml +++ b/src/chrome/content/rules/Lincoln.gov.uk.xml @@ -44,7 +44,7 @@ - + - - - - - - - - - - - diff --git a/src/chrome/content/rules/Lincolnshire.gov.uk.xml b/src/chrome/content/rules/Lincolnshire.gov.uk.xml index bdbc25dc0855..a3e9afbbfd52 100644 --- a/src/chrome/content/rules/Lincolnshire.gov.uk.xml +++ b/src/chrome/content/rules/Lincolnshire.gov.uk.xml @@ -45,7 +45,7 @@ - css on apps from aspapps.lincolnshire.gov.uk ˢ - Images, on: - + - apps from aspapps.lincolnshire.gov.uk ˢ - microsites, www from $self ˢ @@ -93,7 +93,7 @@ - + - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/LineageOS.org.xml b/src/chrome/content/rules/LineageOS.org.xml deleted file mode 100644 index 64072bfdd7a0..000000000000 --- a/src/chrome/content/rules/LineageOS.org.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Linear.com.xml b/src/chrome/content/rules/Linear.com.xml deleted file mode 100644 index fd0bb597cd94..000000000000 --- a/src/chrome/content/rules/Linear.com.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Linear_Collider_Collaboration.xml b/src/chrome/content/rules/Linear_Collider_Collaboration.xml index d873e9822065..0543d4ec19a7 100644 --- a/src/chrome/content/rules/Linear_Collider_Collaboration.xml +++ b/src/chrome/content/rules/Linear_Collider_Collaboration.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Linerunner-mismatches.xml b/src/chrome/content/rules/Linerunner-mismatches.xml deleted file mode 100644 index 870079777cd7..000000000000 --- a/src/chrome/content/rules/Linerunner-mismatches.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Linerunner.xml b/src/chrome/content/rules/Linerunner.xml deleted file mode 100644 index a19a5428cf95..000000000000 --- a/src/chrome/content/rules/Linerunner.xml +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Lingospot.xml b/src/chrome/content/rules/Lingospot.xml index c44c8029181e..dc5bea323ce0 100644 --- a/src/chrome/content/rules/Lingospot.xml +++ b/src/chrome/content/rules/Lingospot.xml @@ -22,7 +22,7 @@ Fetch error: http://engine.lingospot.com/ => https://engine.lingospot.com/: (6, - .lingospot.com --> - + diff --git a/src/chrome/content/rules/Linguatec.xml b/src/chrome/content/rules/Linguatec.xml new file mode 100644 index 000000000000..e0e9d6ce396e --- /dev/null +++ b/src/chrome/content/rules/Linguatec.xml @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Linguee.xml b/src/chrome/content/rules/Linguee.xml index d3b827562054..2c1c238e0165 100644 --- a/src/chrome/content/rules/Linguee.xml +++ b/src/chrome/content/rules/Linguee.xml @@ -3,7 +3,7 @@ Localized versions of linguee (eg. de.linguee.com, cn.linguee.com) have mixed content but it doesn't hinder site functionality. - + --> diff --git a/src/chrome/content/rules/Lingvoforum.net.xml b/src/chrome/content/rules/Lingvoforum.net.xml new file mode 100644 index 000000000000..b24ec24d1fb5 --- /dev/null +++ b/src/chrome/content/rules/Lingvoforum.net.xml @@ -0,0 +1,13 @@ + + + + + + + + diff --git a/src/chrome/content/rules/LinkShare.xml b/src/chrome/content/rules/LinkShare.xml index 790e61567571..0e60ec8abbf5 100644 --- a/src/chrome/content/rules/LinkShare.xml +++ b/src/chrome/content/rules/LinkShare.xml @@ -4,10 +4,10 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.lsh.re/ => https://www.lsh.re/: (51, "SSL: no alternative certificate subject name matches target host name 'www.lsh.re'") --> - - - - - - + + + + + + diff --git a/src/chrome/content/rules/Linkbucks.xml b/src/chrome/content/rules/Linkbucks.xml index cdd227de189f..3d44fa79adcc 100644 --- a/src/chrome/content/rules/Linkbucks.xml +++ b/src/chrome/content/rules/Linkbucks.xml @@ -7,7 +7,8 @@ - + + diff --git a/src/chrome/content/rules/LinkedIn.xml b/src/chrome/content/rules/LinkedIn.xml index f1536424bfdb..16279f2c852a 100644 --- a/src/chrome/content/rules/LinkedIn.xml +++ b/src/chrome/content/rules/LinkedIn.xml @@ -238,7 +238,7 @@ Redirects to http: --> - + diff --git a/src/chrome/content/rules/Linkomanija.xml b/src/chrome/content/rules/Linkomanija.xml index 9261f39a78c6..ab85831d4fea 100644 --- a/src/chrome/content/rules/Linkomanija.xml +++ b/src/chrome/content/rules/Linkomanija.xml @@ -1,7 +1,7 @@ - - - + + + - + diff --git a/src/chrome/content/rules/LinksAlpha.com.xml b/src/chrome/content/rules/LinksAlpha.com.xml index c7b1db66dbe5..45f5fb9b4c24 100644 --- a/src/chrome/content/rules/LinksAlpha.com.xml +++ b/src/chrome/content/rules/LinksAlpha.com.xml @@ -22,7 +22,7 @@ Fetch error: http://api.linksalpha.com/ => https://api.linksalpha.com/: (35, 'Un * Secured by us --> - + diff --git a/src/chrome/content/rules/Linksynergy.com.xml b/src/chrome/content/rules/Linksynergy.com.xml index 14995b470539..0f7d64edf33c 100644 --- a/src/chrome/content/rules/Linksynergy.com.xml +++ b/src/chrome/content/rules/Linksynergy.com.xml @@ -1,63 +1,31 @@ - - + + + + + + + + + - - - - - + - - - - + to="https://linkshare.com/" /> + diff --git a/src/chrome/content/rules/Linksys.xml b/src/chrome/content/rules/Linksys.xml index 27c0603525c9..8ba369ec5322 100644 --- a/src/chrome/content/rules/Linksys.xml +++ b/src/chrome/content/rules/Linksys.xml @@ -1,108 +1,209 @@ - - - - + + + + - + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + - + + diff --git a/src/chrome/content/rules/Linn_Records.com.xml b/src/chrome/content/rules/Linn_Records.com.xml index 198b9bedff06..efe8763aefb6 100644 --- a/src/chrome/content/rules/Linn_Records.com.xml +++ b/src/chrome/content/rules/Linn_Records.com.xml @@ -36,4 +36,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Linode.xml b/src/chrome/content/rules/Linode.xml index 8003690aa8c2..9cee7761f9f5 100644 --- a/src/chrome/content/rules/Linode.xml +++ b/src/chrome/content/rules/Linode.xml @@ -37,7 +37,7 @@ Fetch error: http://tokyo.webconsole.linode.com/ => https://tokyo.webconsole.lin ¹ Refused ² Customer load balancers and VPSes. Mismatched, refused or time out. --> - + @@ -71,7 +71,7 @@ Fetch error: http://tokyo.webconsole.linode.com/ => https://tokyo.webconsole.lin --> - + + + + + + + + + diff --git a/src/chrome/content/rules/Linutronix.xml b/src/chrome/content/rules/Linutronix.xml index 666aa3fa487a..bf1d77ccf2e2 100644 --- a/src/chrome/content/rules/Linutronix.xml +++ b/src/chrome/content/rules/Linutronix.xml @@ -3,10 +3,10 @@ - - + + diff --git a/src/chrome/content/rules/Linux-Counter-Trac.xml b/src/chrome/content/rules/Linux-Counter-Trac.xml index cbab477c07a8..f0cb82ea5633 100644 --- a/src/chrome/content/rules/Linux-Counter-Trac.xml +++ b/src/chrome/content/rules/Linux-Counter-Trac.xml @@ -2,7 +2,6 @@ - + diff --git a/src/chrome/content/rules/Linux-Counter.xml b/src/chrome/content/rules/Linux-Counter.xml deleted file mode 100644 index 559ff2a01bdd..000000000000 --- a/src/chrome/content/rules/Linux-Counter.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Linux-KVM.org.xml b/src/chrome/content/rules/Linux-KVM.org.xml new file mode 100644 index 000000000000..1659042a7434 --- /dev/null +++ b/src/chrome/content/rules/Linux-KVM.org.xml @@ -0,0 +1,13 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Linux-Magazin-Online.xml b/src/chrome/content/rules/Linux-Magazin-Online.xml index 3217fdc7e6bf..b3413e37758b 100644 --- a/src/chrome/content/rules/Linux-Magazin-Online.xml +++ b/src/chrome/content/rules/Linux-Magazin-Online.xml @@ -26,7 +26,7 @@ Fetch error: http://linux-magazin.de/ => https://www.linux-magazin.de/: Too many * Expired --> - + diff --git a/src/chrome/content/rules/Linux-New-Media.xml b/src/chrome/content/rules/Linux-New-Media.xml index 4a2ce69bd7ff..7681a6234d79 100644 --- a/src/chrome/content/rules/Linux-New-Media.xml +++ b/src/chrome/content/rules/Linux-New-Media.xml @@ -10,20 +10,16 @@ --> - + + + - - - - + - - + diff --git a/src/chrome/content/rules/Linux-Tage.de.xml b/src/chrome/content/rules/Linux-Tage.de.xml index fc78d3cc10e7..2deb57a9e31c 100644 --- a/src/chrome/content/rules/Linux-Tage.de.xml +++ b/src/chrome/content/rules/Linux-Tage.de.xml @@ -14,7 +14,7 @@ - + + + + + + + + + + + diff --git a/src/chrome/content/rules/Linux.conf.au.xml b/src/chrome/content/rules/Linux.conf.au.xml deleted file mode 100644 index d096fea0b010..000000000000 --- a/src/chrome/content/rules/Linux.conf.au.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Linux.lu.xml b/src/chrome/content/rules/Linux.lu.xml index 6652ceb83acf..d3d22bfa5595 100644 --- a/src/chrome/content/rules/Linux.lu.xml +++ b/src/chrome/content/rules/Linux.lu.xml @@ -16,7 +16,9 @@ - + + + - + - - - - - - - - diff --git a/src/chrome/content/rules/LinuxFoundation.xml b/src/chrome/content/rules/LinuxFoundation.xml index ed053d87f472..8cb5df7abb4c 100644 --- a/src/chrome/content/rules/LinuxFoundation.xml +++ b/src/chrome/content/rules/LinuxFoundation.xml @@ -1,19 +1,18 @@ - + @@ -40,7 +39,7 @@ Fetch error: http://eventsstg.linuxfoundation.org/sites/all/themes/lfevents/css/ - + @@ -50,7 +49,6 @@ Fetch error: http://eventsstg.linuxfoundation.org/sites/all/themes/lfevents/css/ - @@ -60,7 +58,7 @@ Fetch error: http://eventsstg.linuxfoundation.org/sites/all/themes/lfevents/css/ - + diff --git a/src/chrome/content/rules/LinuxMIPS.xml b/src/chrome/content/rules/LinuxMIPS.xml index 4cc5061562a8..30f6a2c98d55 100644 --- a/src/chrome/content/rules/LinuxMIPS.xml +++ b/src/chrome/content/rules/LinuxMIPS.xml @@ -12,7 +12,7 @@ - patchwork.linux-mips.org --> - + @@ -28,7 +28,7 @@ - + - + - + + - - - - - - + - - - - - - - - - + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Linux_Academy.com.xml b/src/chrome/content/rules/Linux_Academy.com.xml index 8cba14693e5a..d7049080dce5 100644 --- a/src/chrome/content/rules/Linux_Academy.com.xml +++ b/src/chrome/content/rules/Linux_Academy.com.xml @@ -5,7 +5,7 @@ - + https://qa.linuxcontainers.org/: (6, 'Could not resolve host: qa.linuxcontainers.org') - - Insecure cookies are set for these hosts: - - - jenkins.linuxcontainers.org - ---> - - - + - - - - - - - - - - + diff --git a/src/chrome/content/rules/Linux_Distro_Community.com.xml b/src/chrome/content/rules/Linux_Distro_Community.com.xml deleted file mode 100644 index fe7cb4f19bee..000000000000 --- a/src/chrome/content/rules/Linux_Distro_Community.com.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Linux_Forums.xml b/src/chrome/content/rules/Linux_Forums.xml deleted file mode 100644 index 21697c58158a..000000000000 --- a/src/chrome/content/rules/Linux_Forums.xml +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Linux_Game_Publishing.xml b/src/chrome/content/rules/Linux_Game_Publishing.xml index d7bee65fe96b..d22dee17fd40 100644 --- a/src/chrome/content/rules/Linux_Game_Publishing.xml +++ b/src/chrome/content/rules/Linux_Game_Publishing.xml @@ -17,7 +17,7 @@ Fetch error: http://www.linuxgamepublishing.com/ => https://www.linuxgamepublish * Shows www --> - + @@ -25,4 +25,4 @@ Fetch error: http://www.linuxgamepublishing.com/ => https://www.linuxgamepublish - \ No newline at end of file + diff --git a/src/chrome/content/rules/Linux_Luddites.com.xml b/src/chrome/content/rules/Linux_Luddites.com.xml index a277fba830c2..d8ba278c5e52 100644 --- a/src/chrome/content/rules/Linux_Luddites.com.xml +++ b/src/chrome/content/rules/Linux_Luddites.com.xml @@ -13,7 +13,7 @@ - + - - - - - - - - - diff --git a/src/chrome/content/rules/Linuxaudio.org.xml b/src/chrome/content/rules/Linuxaudio.org.xml index cf3075d03943..2bf4d1d409a5 100644 --- a/src/chrome/content/rules/Linuxaudio.org.xml +++ b/src/chrome/content/rules/Linuxaudio.org.xml @@ -6,9 +6,9 @@ - + - + diff --git a/src/chrome/content/rules/Linuxbenchmarking.com.xml b/src/chrome/content/rules/Linuxbenchmarking.com.xml new file mode 100644 index 000000000000..2e284f2b7d77 --- /dev/null +++ b/src/chrome/content/rules/Linuxbenchmarking.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Linuxpl.com.xml b/src/chrome/content/rules/Linuxpl.com.xml index 570c6f4eaff1..1f0218ee183a 100644 --- a/src/chrome/content/rules/Linuxpl.com.xml +++ b/src/chrome/content/rules/Linuxpl.com.xml @@ -26,7 +26,10 @@ - + + + + @@ -39,7 +42,6 @@ - + diff --git a/src/chrome/content/rules/Linuxserver.io.xml b/src/chrome/content/rules/Linuxserver.io.xml index 4a0823a6627c..501956e8808f 100644 --- a/src/chrome/content/rules/Linuxserver.io.xml +++ b/src/chrome/content/rules/Linuxserver.io.xml @@ -22,7 +22,7 @@ - + https://www.linuxslut.net/: (51, "SSL: no alternative certificate subject name matches target host name 'www.linuxslut.net'") --> - + diff --git a/src/chrome/content/rules/Lionbrand.com.xml b/src/chrome/content/rules/Lionbrand.com.xml new file mode 100644 index 000000000000..8c5eea7f4b54 --- /dev/null +++ b/src/chrome/content/rules/Lionbrand.com.xml @@ -0,0 +1,11 @@ + + + + + + + diff --git a/src/chrome/content/rules/Lippincott_Williams_and_Wilkins.xml b/src/chrome/content/rules/Lippincott_Williams_and_Wilkins.xml deleted file mode 100644 index a7f166b95afa..000000000000 --- a/src/chrome/content/rules/Lippincott_Williams_and_Wilkins.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Lippincott_Williams_and_Wilkins_problematic.xml b/src/chrome/content/rules/Lippincott_Williams_and_Wilkins_problematic.xml index e04b7783edbe..5797f9d994d1 100644 --- a/src/chrome/content/rules/Lippincott_Williams_and_Wilkins_problematic.xml +++ b/src/chrome/content/rules/Lippincott_Williams_and_Wilkins_problematic.xml @@ -13,7 +13,6 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Lippupiste_Oy.xml b/src/chrome/content/rules/Lippupiste_Oy.xml index 2cd945531cb9..bf03b3cd8518 100644 --- a/src/chrome/content/rules/Lippupiste_Oy.xml +++ b/src/chrome/content/rules/Lippupiste_Oy.xml @@ -5,7 +5,7 @@ Non-2xx HTTP code: http://lippu.fi/ (200) => https://www.lippu.fi/ (403) Disabled by https-everywhere-checker because: Fetch error: http://lippu.fi/ => https://www.lippu.fi/: Redirect for 'http://lippu.fi/' missing Location - For other Eventim coverage, see Eventim.xml. + For other Eventim coverage, see Eventim.com.xml. Problematic domains: @@ -14,12 +14,13 @@ Fetch error: http://lippu.fi/ => https://www.lippu.fi/: Redirect for 'http://lip - lippu.fi --> - + - + + @@ -28,7 +29,6 @@ Fetch error: http://lippu.fi/ => https://www.lippu.fi/: Redirect for 'http://lip - + diff --git a/src/chrome/content/rules/LiqD.net.xml b/src/chrome/content/rules/LiqD.net.xml deleted file mode 100644 index 88621a2a7ca1..000000000000 --- a/src/chrome/content/rules/LiqD.net.xml +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Liquid-Web.xml b/src/chrome/content/rules/Liquid-Web.xml index fc10ab55e98a..17b3a3a79b6b 100644 --- a/src/chrome/content/rules/Liquid-Web.xml +++ b/src/chrome/content/rules/Liquid-Web.xml @@ -1,16 +1,17 @@ - - + + + + - + - + diff --git a/src/chrome/content/rules/Liquidmatrix.org.xml b/src/chrome/content/rules/Liquidmatrix.org.xml deleted file mode 100644 index 1abad93d690c..000000000000 --- a/src/chrome/content/rules/Liquidmatrix.org.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Liquorland.com.au.xml b/src/chrome/content/rules/Liquorland.com.au.xml new file mode 100644 index 000000000000..b5d4f731cef8 --- /dev/null +++ b/src/chrome/content/rules/Liquorland.com.au.xml @@ -0,0 +1,23 @@ + + + + + + + + diff --git a/src/chrome/content/rules/List-manage.com.xml b/src/chrome/content/rules/List-manage.com.xml index 88895835db08..95ea01f84044 100644 --- a/src/chrome/content/rules/List-manage.com.xml +++ b/src/chrome/content/rules/List-manage.com.xml @@ -15,7 +15,7 @@ --> - + - + + + + + + + + diff --git a/src/chrome/content/rules/Listbox.xml b/src/chrome/content/rules/Listbox.xml index c0af747070e8..debad2f32d60 100644 --- a/src/chrome/content/rules/Listbox.xml +++ b/src/chrome/content/rules/Listbox.xml @@ -4,7 +4,7 @@ - + diff --git a/src/chrome/content/rules/ListenOnRepeat.com.xml b/src/chrome/content/rules/ListenOnRepeat.com.xml new file mode 100644 index 000000000000..25cc257f999b --- /dev/null +++ b/src/chrome/content/rules/ListenOnRepeat.com.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Listener.co.nz.xml b/src/chrome/content/rules/Listener.co.nz.xml index 890e3d5e1b3d..ca209cdb4d37 100644 --- a/src/chrome/content/rules/Listener.co.nz.xml +++ b/src/chrome/content/rules/Listener.co.nz.xml @@ -15,7 +15,7 @@ Fetch error: http://www.listener.co.nz/ => https://www.listener.co.nz/: Cycle de - ^ (refused) --> - + @@ -27,4 +27,4 @@ Fetch error: http://www.listener.co.nz/ => https://www.listener.co.nz/: Cycle de - \ No newline at end of file + diff --git a/src/chrome/content/rules/Listener_Approved.xml b/src/chrome/content/rules/Listener_Approved.xml index 5d6a60bbc45f..6452a5abcb2c 100644 --- a/src/chrome/content/rules/Listener_Approved.xml +++ b/src/chrome/content/rules/Listener_Approved.xml @@ -12,7 +12,7 @@ Disabled by https-everywhere-checker because: Non-2xx HTTP code: http://listenerapproved.com/ (200) => https://listenerapproved.com/ (500) --> - + @@ -24,4 +24,4 @@ Non-2xx HTTP code: http://listenerapproved.com/ (200) => https://listenerapprove - \ No newline at end of file + diff --git a/src/chrome/content/rules/Listings360.xml b/src/chrome/content/rules/Listings360.xml new file mode 100644 index 000000000000..0e42232f5d94 --- /dev/null +++ b/src/chrome/content/rules/Listings360.xml @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Listonic.xml b/src/chrome/content/rules/Listonic.xml index b1fd67347efb..df555615b08a 100644 --- a/src/chrome/content/rules/Listonic.xml +++ b/src/chrome/content/rules/Listonic.xml @@ -18,7 +18,8 @@ - + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/LitHive.com.xml b/src/chrome/content/rules/LitHive.com.xml deleted file mode 100644 index 5260b5bcc0b3..000000000000 --- a/src/chrome/content/rules/LitHive.com.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/LitRes.ru.xml b/src/chrome/content/rules/LitRes.ru.xml new file mode 100644 index 000000000000..a482c79a37a8 --- /dev/null +++ b/src/chrome/content/rules/LitRes.ru.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/LiteBit.eu.xml b/src/chrome/content/rules/LiteBit.eu.xml deleted file mode 100644 index 620d80543177..000000000000 --- a/src/chrome/content/rules/LiteBit.eu.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/LiteHosting.org.xml b/src/chrome/content/rules/LiteHosting.org.xml deleted file mode 100644 index 7b5243cba088..000000000000 --- a/src/chrome/content/rules/LiteHosting.org.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/LiteSpeed-Technologies-mismatches.xml b/src/chrome/content/rules/LiteSpeed-Technologies-mismatches.xml index 6ee6785c12ab..c757b362d481 100644 --- a/src/chrome/content/rules/LiteSpeed-Technologies-mismatches.xml +++ b/src/chrome/content/rules/LiteSpeed-Technologies-mismatches.xml @@ -1,10 +1,10 @@ - + - + - - - - - - - - - - - diff --git a/src/chrome/content/rules/Literotica.com.xml b/src/chrome/content/rules/Literotica.com.xml index a51c7594c42c..b384bb3d8892 100644 --- a/src/chrome/content/rules/Literotica.com.xml +++ b/src/chrome/content/rules/Literotica.com.xml @@ -25,7 +25,7 @@ Mixed content: - Bug on i from piwik1eaf.literotica.com * - + - Images, on: - shop from cnvassets.s3.amazonaws.com * diff --git a/src/chrome/content/rules/Lithium-clients.xml b/src/chrome/content/rules/Lithium-clients.xml index f3e08dd56baf..64c08bcec1f1 100644 --- a/src/chrome/content/rules/Lithium-clients.xml +++ b/src/chrome/content/rules/Lithium-clients.xml @@ -11,26 +11,15 @@ --> - - - + - - - - - - - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Lithium.xml b/src/chrome/content/rules/Lithium.xml index d1c03ae1f42b..9e78b619799b 100644 --- a/src/chrome/content/rules/Lithium.xml +++ b/src/chrome/content/rules/Lithium.xml @@ -30,7 +30,7 @@ - + - - - - - - - - - - diff --git a/src/chrome/content/rules/Litter.com.xml b/src/chrome/content/rules/Litter.com.xml index 002c59423a54..639f72e6dc9a 100644 --- a/src/chrome/content/rules/Litter.com.xml +++ b/src/chrome/content/rules/Litter.com.xml @@ -13,4 +13,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Little.my.xml b/src/chrome/content/rules/Little.my.xml index 8a5b8f0f822e..dff98ba7e815 100644 --- a/src/chrome/content/rules/Little.my.xml +++ b/src/chrome/content/rules/Little.my.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/LittleSis.org.xml b/src/chrome/content/rules/LittleSis.org.xml index aeae6673251a..751118a8e5f9 100644 --- a/src/chrome/content/rules/LittleSis.org.xml +++ b/src/chrome/content/rules/LittleSis.org.xml @@ -36,7 +36,7 @@ Non-2xx HTTP code: http://api.littlesis.org/ (200) => https://api.littlesis.org/ ˢ Secured by us --> - + @@ -47,7 +47,7 @@ Non-2xx HTTP code: http://api.littlesis.org/ (200) => https://api.littlesis.org/ --> - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Liv.ac.uk.xml b/src/chrome/content/rules/Liv.ac.uk.xml index 9222bf995e34..ad1be48b5f4e 100644 --- a/src/chrome/content/rules/Liv.ac.uk.xml +++ b/src/chrome/content/rules/Liv.ac.uk.xml @@ -17,13 +17,16 @@ - people - staff - student - - + - --> - + + + + @@ -33,7 +36,6 @@ - + diff --git a/src/chrome/content/rules/Live-Chat.xml b/src/chrome/content/rules/Live-Chat.xml index d2cc62dd05a1..8a9969595d0b 100644 --- a/src/chrome/content/rules/Live-Chat.xml +++ b/src/chrome/content/rules/Live-Chat.xml @@ -1,7 +1,11 @@ + @@ -51,7 +55,7 @@ - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Live.net.xml b/src/chrome/content/rules/Live.net.xml index 9ec3ea72f1f0..5d3b059e160f 100644 --- a/src/chrome/content/rules/Live.net.xml +++ b/src/chrome/content/rules/Live.net.xml @@ -7,7 +7,7 @@ Fetch error: http://feeds.live.net/ => https://feeds.live.net/: (7, 'Failed to c For other Microsoft coverage, see Microsoft.xml. --> - + @@ -18,7 +18,7 @@ Fetch error: http://feeds.live.net/ => https://feeds.live.net/: (7, 'Failed to c - + - - - - - - - - diff --git a/src/chrome/content/rules/LiveCorp.xml b/src/chrome/content/rules/LiveCorp.xml index b00bf44cc117..9fc0ba7086f2 100644 --- a/src/chrome/content/rules/LiveCorp.xml +++ b/src/chrome/content/rules/LiveCorp.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.livecorp.com.au/favicon.ico => https://www.livecorp.com.au/favicon.ico: Too many redirects while fetching 'https://www.livecorp.com.au/favicon.ico' --> - + diff --git a/src/chrome/content/rules/LiveInternet-falsemixed.xml b/src/chrome/content/rules/LiveInternet-falsemixed.xml deleted file mode 100644 index a0b799258b06..000000000000 --- a/src/chrome/content/rules/LiveInternet-falsemixed.xml +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/LiveInternet.ru.xml b/src/chrome/content/rules/LiveInternet.ru.xml new file mode 100644 index 000000000000..ac8ded94a9cf --- /dev/null +++ b/src/chrome/content/rules/LiveInternet.ru.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/LiveInternet.xml b/src/chrome/content/rules/LiveInternet.xml deleted file mode 100644 index 8ee1bbdcb36c..000000000000 --- a/src/chrome/content/rules/LiveInternet.xml +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/LiveJournal-problematic.xml b/src/chrome/content/rules/LiveJournal-problematic.xml deleted file mode 100644 index 3eabc728bced..000000000000 --- a/src/chrome/content/rules/LiveJournal-problematic.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/LiveJournal.com.xml b/src/chrome/content/rules/LiveJournal.com.xml new file mode 100644 index 000000000000..5dec01d72841 --- /dev/null +++ b/src/chrome/content/rules/LiveJournal.com.xml @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/LiveJournal.xml b/src/chrome/content/rules/LiveJournal.xml deleted file mode 100644 index 31409a4973d7..000000000000 --- a/src/chrome/content/rules/LiveJournal.xml +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/LiveMeme.xml b/src/chrome/content/rules/LiveMeme.xml index a7dce78b11ac..0e99de357a22 100644 --- a/src/chrome/content/rules/LiveMeme.xml +++ b/src/chrome/content/rules/LiveMeme.xml @@ -14,7 +14,7 @@ Fetch error: http://i.lvme.me/ => https://i.lvme.me/: (60, 'SSL certificate prob --> - + diff --git a/src/chrome/content/rules/LiveNation.ae.xml b/src/chrome/content/rules/LiveNation.ae.xml new file mode 100644 index 000000000000..bd24ccd9cee2 --- /dev/null +++ b/src/chrome/content/rules/LiveNation.ae.xml @@ -0,0 +1,17 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/LiveNation.asia.xml b/src/chrome/content/rules/LiveNation.asia.xml new file mode 100644 index 000000000000..500e0d38e3a6 --- /dev/null +++ b/src/chrome/content/rules/LiveNation.asia.xml @@ -0,0 +1,17 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/LiveNation.be.xml b/src/chrome/content/rules/LiveNation.be.xml new file mode 100644 index 000000000000..4a62199c854d --- /dev/null +++ b/src/chrome/content/rules/LiveNation.be.xml @@ -0,0 +1,16 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/LiveNation.co.jp.xml b/src/chrome/content/rules/LiveNation.co.jp.xml new file mode 100644 index 000000000000..412b90ba195b --- /dev/null +++ b/src/chrome/content/rules/LiveNation.co.jp.xml @@ -0,0 +1,17 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/LiveNation.co.uk.xml b/src/chrome/content/rules/LiveNation.co.uk.xml new file mode 100644 index 000000000000..dc2f2fd61773 --- /dev/null +++ b/src/chrome/content/rules/LiveNation.co.uk.xml @@ -0,0 +1,20 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/LiveNation.com.au.xml b/src/chrome/content/rules/LiveNation.com.au.xml new file mode 100644 index 000000000000..ed05deaad370 --- /dev/null +++ b/src/chrome/content/rules/LiveNation.com.au.xml @@ -0,0 +1,17 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/LiveNation.com.xml b/src/chrome/content/rules/LiveNation.com.xml new file mode 100644 index 000000000000..e125909f14dd --- /dev/null +++ b/src/chrome/content/rules/LiveNation.com.xml @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/LiveNation.cz.xml b/src/chrome/content/rules/LiveNation.cz.xml new file mode 100644 index 000000000000..e3ddf5891416 --- /dev/null +++ b/src/chrome/content/rules/LiveNation.cz.xml @@ -0,0 +1,17 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/LiveNation.de.xml b/src/chrome/content/rules/LiveNation.de.xml new file mode 100644 index 000000000000..036801add791 --- /dev/null +++ b/src/chrome/content/rules/LiveNation.de.xml @@ -0,0 +1,17 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/LiveNation.dk.xml b/src/chrome/content/rules/LiveNation.dk.xml new file mode 100644 index 000000000000..58ff9f269008 --- /dev/null +++ b/src/chrome/content/rules/LiveNation.dk.xml @@ -0,0 +1,17 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/LiveNation.es.xml b/src/chrome/content/rules/LiveNation.es.xml new file mode 100644 index 000000000000..c07099fbcb11 --- /dev/null +++ b/src/chrome/content/rules/LiveNation.es.xml @@ -0,0 +1,17 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/LiveNation.fi.xml b/src/chrome/content/rules/LiveNation.fi.xml new file mode 100644 index 000000000000..5b3e8d14c02d --- /dev/null +++ b/src/chrome/content/rules/LiveNation.fi.xml @@ -0,0 +1,17 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/LiveNation.fr.xml b/src/chrome/content/rules/LiveNation.fr.xml new file mode 100644 index 000000000000..2841327df7f7 --- /dev/null +++ b/src/chrome/content/rules/LiveNation.fr.xml @@ -0,0 +1,17 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/LiveNation.hu.xml b/src/chrome/content/rules/LiveNation.hu.xml new file mode 100644 index 000000000000..e3978c28ada0 --- /dev/null +++ b/src/chrome/content/rules/LiveNation.hu.xml @@ -0,0 +1,17 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/LiveNation.it.xml b/src/chrome/content/rules/LiveNation.it.xml new file mode 100644 index 000000000000..d1960360b3c5 --- /dev/null +++ b/src/chrome/content/rules/LiveNation.it.xml @@ -0,0 +1,17 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/LiveNation.kr.xml b/src/chrome/content/rules/LiveNation.kr.xml new file mode 100644 index 000000000000..95c526e715da --- /dev/null +++ b/src/chrome/content/rules/LiveNation.kr.xml @@ -0,0 +1,17 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/LiveNation.nl.xml b/src/chrome/content/rules/LiveNation.nl.xml new file mode 100644 index 000000000000..b9a5787a9e11 --- /dev/null +++ b/src/chrome/content/rules/LiveNation.nl.xml @@ -0,0 +1,17 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/LiveNation.no.xml b/src/chrome/content/rules/LiveNation.no.xml new file mode 100644 index 000000000000..05b8a7148afb --- /dev/null +++ b/src/chrome/content/rules/LiveNation.no.xml @@ -0,0 +1,17 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/LiveNation.pl.xml b/src/chrome/content/rules/LiveNation.pl.xml new file mode 100644 index 000000000000..f9f81b5f59b7 --- /dev/null +++ b/src/chrome/content/rules/LiveNation.pl.xml @@ -0,0 +1,17 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/LiveNation.se.xml b/src/chrome/content/rules/LiveNation.se.xml new file mode 100644 index 000000000000..c8e6327a43f1 --- /dev/null +++ b/src/chrome/content/rules/LiveNation.se.xml @@ -0,0 +1,17 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/LivePerson.net.xml b/src/chrome/content/rules/LivePerson.net.xml index 5a9ecb379ce3..3c6e6bc57330 100644 --- a/src/chrome/content/rules/LivePerson.net.xml +++ b/src/chrome/content/rules/LivePerson.net.xml @@ -47,7 +47,7 @@ Fetch error: http://sso.liveperson.net/ => https://sso.liveperson.net/: (60, 'SS - \d{8}-VID --> - + @@ -61,7 +61,7 @@ Fetch error: http://sso.liveperson.net/ => https://sso.liveperson.net/: (60, 'SS - + - + diff --git a/src/chrome/content/rules/LiveRail.xml b/src/chrome/content/rules/LiveRail.xml index 1136925975aa..4f2adc4be31f 100644 --- a/src/chrome/content/rules/LiveRail.xml +++ b/src/chrome/content/rules/LiveRail.xml @@ -61,7 +61,7 @@ Fetch error: http://t4.liverail.com/ => https://t4.liverail.com/: (6, 'Could not - platform4.liverail.com --> - + diff --git a/src/chrome/content/rules/LiveStrong.com.xml b/src/chrome/content/rules/LiveStrong.com.xml index 9a78ebe75ab1..a58a3e10ff58 100644 --- a/src/chrome/content/rules/LiveStrong.com.xml +++ b/src/chrome/content/rules/LiveStrong.com.xml @@ -3,20 +3,22 @@ All subdomains seem to redirect to www.livestrong.com. + Non-functional hosts: + Timeout: + - i.lsimg.net + --> - - - + diff --git a/src/chrome/content/rules/LiveWyer.com.xml b/src/chrome/content/rules/LiveWyer.com.xml index f963f412369b..227e029175ba 100644 --- a/src/chrome/content/rules/LiveWyer.com.xml +++ b/src/chrome/content/rules/LiveWyer.com.xml @@ -5,7 +5,7 @@ Fetch error: http://livewyer.com/ => https://livewyer.com/: (60, 'SSL certificat Fetch error: http://www.livewyer.com/ => https://www.livewyer.com/: (60, 'SSL certificate problem: certificate has expired') --> - + @@ -13,7 +13,7 @@ Fetch error: http://www.livewyer.com/ => https://www.livewyer.com/: (60, 'SSL ce - + https://livezilla.net/: (51, "SSL: no alte - .livezilla.net --> - + diff --git a/src/chrome/content/rules/Live_Business_Chat.com.xml b/src/chrome/content/rules/Live_Business_Chat.com.xml deleted file mode 100644 index 42e91f8bc508..000000000000 --- a/src/chrome/content/rules/Live_Business_Chat.com.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Livefyre.xml b/src/chrome/content/rules/Livefyre.xml index 1d0ff515619e..b72700b63f5c 100644 --- a/src/chrome/content/rules/Livefyre.xml +++ b/src/chrome/content/rules/Livefyre.xml @@ -1,55 +1,20 @@ - - - - - - - - - + - + + + + + + + + - - - - + - + diff --git a/src/chrome/content/rules/Livermores-Centennial-Light-Live-Cam.xml b/src/chrome/content/rules/Livermores-Centennial-Light-Live-Cam.xml deleted file mode 100644 index 951fe2b72dc3..000000000000 --- a/src/chrome/content/rules/Livermores-Centennial-Light-Live-Cam.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Liverpool_Victoria.xml b/src/chrome/content/rules/Liverpool_Victoria.xml index 11eb8d6cf9b6..693f02815fce 100644 --- a/src/chrome/content/rules/Liverpool_Victoria.xml +++ b/src/chrome/content/rules/Liverpool_Victoria.xml @@ -18,4 +18,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Livestatserver.com.xml b/src/chrome/content/rules/Livestatserver.com.xml index 8e105580a9ec..1741eac3d975 100644 --- a/src/chrome/content/rules/Livestatserver.com.xml +++ b/src/chrome/content/rules/Livestatserver.com.xml @@ -1,19 +1,20 @@ - - - + + + + + - + diff --git a/src/chrome/content/rules/Livestock-Transport.xml b/src/chrome/content/rules/Livestock-Transport.xml index d1e913384971..bf71d9fe0fe8 100644 --- a/src/chrome/content/rules/Livestock-Transport.xml +++ b/src/chrome/content/rules/Livestock-Transport.xml @@ -10,13 +10,13 @@ Fetch error: http://www.livestock-transport.com/ => https://www.livestock-transp livestock.ning.com --> - + - + diff --git a/src/chrome/content/rules/Livestream.xml b/src/chrome/content/rules/Livestream.xml index 7bd1b7117037..e0e8c022143d 100644 --- a/src/chrome/content/rules/Livestream.xml +++ b/src/chrome/content/rules/Livestream.xml @@ -2,7 +2,7 @@ Nonfunctional hosts in *livestream.com: - upload-downloads -> refused - - blog -> wrong domain + - blog -> wrong domain ^(?!thumbnail\.)*.api: Per-account subdomains @@ -21,7 +21,7 @@ - + - + - + diff --git a/src/chrome/content/rules/LivingSocial.co.uk.xml b/src/chrome/content/rules/LivingSocial.co.uk.xml index 7c34995c2c33..05c7cc27b45d 100644 --- a/src/chrome/content/rules/LivingSocial.co.uk.xml +++ b/src/chrome/content/rules/LivingSocial.co.uk.xml @@ -12,7 +12,7 @@ Fetch error: http://help.livingsocial.co.uk/ => https://help.livingsocial.co.uk/ - help --> - + diff --git a/src/chrome/content/rules/LivingSocial.xml b/src/chrome/content/rules/LivingSocial.xml index abe86dfe069f..f0e9dc1e5a6f 100644 --- a/src/chrome/content/rules/LivingSocial.xml +++ b/src/chrome/content/rules/LivingSocial.xml @@ -56,7 +56,7 @@ Fetch error: http://paypass.livingsocial.com/ => https://paypass.livingsocial.co - www.livingsocial.com --> - + diff --git a/src/chrome/content/rules/Living_Routes.org.xml b/src/chrome/content/rules/Living_Routes.org.xml deleted file mode 100644 index 0c70f25bc76f..000000000000 --- a/src/chrome/content/rules/Living_Routes.org.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Lj.Rossia.Org.xml b/src/chrome/content/rules/Lj.Rossia.Org.xml deleted file mode 100644 index 54d70b481889..000000000000 --- a/src/chrome/content/rules/Lj.Rossia.Org.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/Llanfairpwllgwyngyllgogerychwyrndrobwllllantysiliogogogoch.co.uk.xml b/src/chrome/content/rules/Llanfairpwllgwyngyllgogerychwyrndrobwllllantysiliogogogoch.co.uk.xml new file mode 100644 index 000000000000..c6859aecc6bd --- /dev/null +++ b/src/chrome/content/rules/Llanfairpwllgwyngyllgogerychwyrndrobwllllantysiliogogogoch.co.uk.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Lloyds_TSB_Offshore.xml b/src/chrome/content/rules/Lloyds_TSB_Offshore.xml index 8f41b8ef931c..96a2a11bb553 100644 --- a/src/chrome/content/rules/Lloyds_TSB_Offshore.xml +++ b/src/chrome/content/rules/Lloyds_TSB_Offshore.xml @@ -14,7 +14,7 @@ Fetch error: http://www.lloydstsb-offshore.com/ => https://www.lloydstsb-offshor - lloydstsb-offshore.com (cert only matches www) --> - + @@ -30,4 +30,4 @@ Fetch error: http://www.lloydstsb-offshore.com/ => https://www.lloydstsb-offshor - \ No newline at end of file + diff --git a/src/chrome/content/rules/Lloydsbank.com.xml b/src/chrome/content/rules/Lloydsbank.com.xml index 8251c87b4890..2b80daaa178b 100644 --- a/src/chrome/content/rules/Lloydsbank.com.xml +++ b/src/chrome/content/rules/Lloydsbank.com.xml @@ -1,60 +1,24 @@ - - + - + + @@ -62,42 +26,11 @@ Fetch error: http://secure.lloydsbank.com/ => https://secure.lloydsbank.com/: To - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + + diff --git a/src/chrome/content/rules/LoC.gov.xml b/src/chrome/content/rules/LoC.gov.xml index ef47310c538d..e87479e08340 100644 --- a/src/chrome/content/rules/LoC.gov.xml +++ b/src/chrome/content/rules/LoC.gov.xml @@ -20,7 +20,7 @@ - + - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Loans.com.au.xml b/src/chrome/content/rules/Loans.com.au.xml new file mode 100644 index 000000000000..bd2b034415fb --- /dev/null +++ b/src/chrome/content/rules/Loans.com.au.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Lob.com.xml b/src/chrome/content/rules/Lob.com.xml deleted file mode 100644 index 7b4a717e1541..000000000000 --- a/src/chrome/content/rules/Lob.com.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Locaid.xml b/src/chrome/content/rules/Locaid.xml deleted file mode 100644 index 14750d79a541..000000000000 --- a/src/chrome/content/rules/Locaid.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Local.xml b/src/chrome/content/rules/Local.xml index 01244fad75c0..ff1405721fd3 100644 --- a/src/chrome/content/rules/Local.xml +++ b/src/chrome/content/rules/Local.xml @@ -29,7 +29,7 @@ --> - + - + + + + - + + - + - - + - diff --git a/src/chrome/content/rules/Locaweb.com.br.xml b/src/chrome/content/rules/Locaweb.com.br.xml new file mode 100644 index 000000000000..2bc492f52fc9 --- /dev/null +++ b/src/chrome/content/rules/Locaweb.com.br.xml @@ -0,0 +1,20 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Locaweb.xml b/src/chrome/content/rules/Locaweb.xml deleted file mode 100644 index 03c154dc822d..000000000000 --- a/src/chrome/content/rules/Locaweb.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/LockerDome.com.xml b/src/chrome/content/rules/LockerDome.com.xml index ce771d954103..c6a47da40906 100644 --- a/src/chrome/content/rules/LockerDome.com.xml +++ b/src/chrome/content/rules/LockerDome.com.xml @@ -7,10 +7,11 @@ - + + + - + diff --git a/src/chrome/content/rules/LogMeIn_Inc.com.xml b/src/chrome/content/rules/LogMeIn_Inc.com.xml index e82499a1322b..010b4b6f6b6f 100644 --- a/src/chrome/content/rules/LogMeIn_Inc.com.xml +++ b/src/chrome/content/rules/LogMeIn_Inc.com.xml @@ -13,7 +13,6 @@ - LogMeIn_Rescue.com.xml - Meldium.com.xml - RemotelyAnywhere.com.xml - - Xively.com.xml Problematic hosts in *logmeininc.com: diff --git a/src/chrome/content/rules/Logdown.com.xml b/src/chrome/content/rules/Logdown.com.xml new file mode 100644 index 000000000000..f18f6ad394e9 --- /dev/null +++ b/src/chrome/content/rules/Logdown.com.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Logentries.com.xml b/src/chrome/content/rules/Logentries.com.xml index 85cf153e314f..716dcc81e3ee 100644 --- a/src/chrome/content/rules/Logentries.com.xml +++ b/src/chrome/content/rules/Logentries.com.xml @@ -47,7 +47,7 @@ - + - + - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Logilab.fr.xml b/src/chrome/content/rules/Logilab.fr.xml index 5f24ad004fff..69108c5ea032 100644 --- a/src/chrome/content/rules/Logilab.fr.xml +++ b/src/chrome/content/rules/Logilab.fr.xml @@ -27,7 +27,7 @@ - + diff --git a/src/chrome/content/rules/Logilab.org.xml b/src/chrome/content/rules/Logilab.org.xml index 0b38cdd5395c..2986bf07bc37 100644 --- a/src/chrome/content/rules/Logilab.org.xml +++ b/src/chrome/content/rules/Logilab.org.xml @@ -1,6 +1,6 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Lohud.com.xml b/src/chrome/content/rules/Lohud.com.xml index 938aa5918846..e944580eae9d 100644 --- a/src/chrome/content/rules/Lohud.com.xml +++ b/src/chrome/content/rules/Lohud.com.xml @@ -1,37 +1,19 @@ - + - - - - + + - + - + diff --git a/src/chrome/content/rules/Lokun.is.xml b/src/chrome/content/rules/Lokun.is.xml index 07d1da9e68dd..7e5d19b9015f 100644 --- a/src/chrome/content/rules/Lokun.is.xml +++ b/src/chrome/content/rules/Lokun.is.xml @@ -10,7 +10,7 @@ Fetch error: http://www.lokun.is/ => https://www.lokun.is/: (60, 'SSL certificat - www.lokun.is --> - + diff --git a/src/chrome/content/rules/Lokus.no.xml b/src/chrome/content/rules/Lokus.no.xml index 0d414ab74333..07cb19149080 100644 --- a/src/chrome/content/rules/Lokus.no.xml +++ b/src/chrome/content/rules/Lokus.no.xml @@ -16,4 +16,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Lokus.se.xml b/src/chrome/content/rules/Lokus.se.xml index fc3995b62bfe..a0a65642a37e 100644 --- a/src/chrome/content/rules/Lokus.se.xml +++ b/src/chrome/content/rules/Lokus.se.xml @@ -7,7 +7,8 @@ --> - + + - + diff --git a/src/chrome/content/rules/London-2012-mismatches.xml b/src/chrome/content/rules/London-2012-mismatches.xml index fc44fd2aff56..0ebca3248c2a 100644 --- a/src/chrome/content/rules/London-2012-mismatches.xml +++ b/src/chrome/content/rules/London-2012-mismatches.xml @@ -4,7 +4,7 @@ - + diff --git a/src/chrome/content/rules/London-2012.xml b/src/chrome/content/rules/London-2012.xml index 097dd68af9bc..17673d135462 100644 --- a/src/chrome/content/rules/London-2012.xml +++ b/src/chrome/content/rules/London-2012.xml @@ -10,16 +10,18 @@ Fetch error: http://london2012.com/ => https://www.london2012.com/: (7, 'Failed Fetch error: http://www.festival.london2012.com/ => https://festival.london2002.com/: (6, 'Could not resolve host: festival.london2002.com') Fetch error: http://tickets.london2012.com/ => https://www.tickets.london2012.com/: (7, 'Failed to connect to www.tickets.london2012.com port 443: Connection refused') --> - + - + + + + + + - - - - + diff --git a/src/chrome/content/rules/London-Nano.com.xml b/src/chrome/content/rules/London-Nano.com.xml deleted file mode 100644 index 42a99a9339a3..000000000000 --- a/src/chrome/content/rules/London-Nano.com.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/London-School-of-Hygiene-and-Tropical-Medicine.xml b/src/chrome/content/rules/London-School-of-Hygiene-and-Tropical-Medicine.xml index cad36a39a3da..3eedbc03011e 100644 --- a/src/chrome/content/rules/London-School-of-Hygiene-and-Tropical-Medicine.xml +++ b/src/chrome/content/rules/London-School-of-Hygiene-and-Tropical-Medicine.xml @@ -8,7 +8,7 @@ Fetch error: http://lshtm.ac.uk/ => https://www.lshtm.ac.uk/: (6, 'Could not res Fetch error: http://blogs.lshtm.ac.uk/ => https://blogs.lshtm.ac.uk/: Cycle detected - URL already encountered: https://blogs.lshtm.ac.uk/ Fetch error: http://forums.lshtm.ac.uk/ => https://forums.lshtm.ac.uk/: (6, 'Could not resolve host: forums.lshtm.ac.uk') --> - + diff --git a/src/chrome/content/rules/London-Stock-Exchange.xml b/src/chrome/content/rules/London-Stock-Exchange.xml deleted file mode 100644 index 55824854d010..000000000000 --- a/src/chrome/content/rules/London-Stock-Exchange.xml +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/London.gov.uk.xml b/src/chrome/content/rules/London.gov.uk.xml index b4f312139f87..40f4958e3f3d 100644 --- a/src/chrome/content/rules/London.gov.uk.xml +++ b/src/chrome/content/rules/London.gov.uk.xml @@ -1,8 +1,4 @@ - - + - + @@ -78,7 +74,7 @@ Fetch error: http://talklondon.london.gov.uk/sites/default/files/css/css_2rLQNuP - + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/London_City_Airport.xml b/src/chrome/content/rules/London_City_Airport.xml index f21e2371a433..fae5314f9dd7 100644 --- a/src/chrome/content/rules/London_City_Airport.xml +++ b/src/chrome/content/rules/London_City_Airport.xml @@ -2,7 +2,7 @@ - + diff --git a/src/chrome/content/rules/London_Review_of_Books.xml b/src/chrome/content/rules/London_Review_of_Books.xml index 1ed524173fdc..1fcf35db10a9 100644 --- a/src/chrome/content/rules/London_Review_of_Books.xml +++ b/src/chrome/content/rules/London_Review_of_Books.xml @@ -18,13 +18,14 @@ - + + + to="https://cdn.lrb.co.uk/" /> - \ No newline at end of file + diff --git a/src/chrome/content/rules/London_Sock_Company.com.xml b/src/chrome/content/rules/London_Sock_Company.com.xml index 71a1bd233e39..59e845ebcffb 100644 --- a/src/chrome/content/rules/London_Sock_Company.com.xml +++ b/src/chrome/content/rules/London_Sock_Company.com.xml @@ -1,26 +1,7 @@ - - - - - - - - - - + diff --git a/src/chrome/content/rules/Londonist.com.xml b/src/chrome/content/rules/Londonist.com.xml index ebf89e94374c..f35cc1adabc7 100644 --- a/src/chrome/content/rules/Londonist.com.xml +++ b/src/chrome/content/rules/Londonist.com.xml @@ -19,7 +19,8 @@ - + + diff --git a/src/chrome/content/rules/Lonelyplanet.com.xml b/src/chrome/content/rules/Lonelyplanet.com.xml index 43b535a6e329..22fd5eacf07a 100644 --- a/src/chrome/content/rules/Lonelyplanet.com.xml +++ b/src/chrome/content/rules/Lonelyplanet.com.xml @@ -1,5 +1,16 @@ + - + + + + + + - + + + diff --git a/src/chrome/content/rules/LongDate.pl.xml b/src/chrome/content/rules/LongDate.pl.xml index 0129a7a1d233..a5e00aa4dd20 100644 --- a/src/chrome/content/rules/LongDate.pl.xml +++ b/src/chrome/content/rules/LongDate.pl.xml @@ -22,7 +22,7 @@ Fetch error: http://www.longdate.pl/ => https://www.longdate.pl/: (6, 'Could not - www.longdate.pl --> - + diff --git a/src/chrome/content/rules/LongTail.xml b/src/chrome/content/rules/LongTail.xml index b91b805a3ac0..938002f6029f 100644 --- a/src/chrome/content/rules/LongTail.xml +++ b/src/chrome/content/rules/LongTail.xml @@ -1,67 +1,81 @@ - - + + + + - + + - - - + + + + + - + + + - - + + + + - + + + + + + + + + + + + + + - - + diff --git a/src/chrome/content/rules/Long_Access.com.xml b/src/chrome/content/rules/Long_Access.com.xml deleted file mode 100644 index 18ace9c26d69..000000000000 --- a/src/chrome/content/rules/Long_Access.com.xml +++ /dev/null @@ -1,53 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Longform.org.xml b/src/chrome/content/rules/Longform.org.xml index b77478cc48ef..2b92fed592ad 100644 --- a/src/chrome/content/rules/Longform.org.xml +++ b/src/chrome/content/rules/Longform.org.xml @@ -24,7 +24,7 @@ --> - + + + + + + + + diff --git a/src/chrome/content/rules/Look.co.uk-mixed.xml b/src/chrome/content/rules/Look.co.uk-mixed.xml index 4c3d0aacc5bf..5fbf75a27c0d 100644 --- a/src/chrome/content/rules/Look.co.uk-mixed.xml +++ b/src/chrome/content/rules/Look.co.uk-mixed.xml @@ -6,7 +6,7 @@ Fetch error: http://shop.look.co.uk/ => https://shop.look.co.uk/: (7, 'Failed to For rules not causing mixed content, see Look.co.uk.xml. --> - + - + + @@ -40,7 +41,6 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Look_Dumbass.xml b/src/chrome/content/rules/Look_Dumbass.xml index af71c138a3fb..000e5ef2f084 100644 --- a/src/chrome/content/rules/Look_Dumbass.xml +++ b/src/chrome/content/rules/Look_Dumbass.xml @@ -17,10 +17,10 @@ --> - + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Lookback.io.xml b/src/chrome/content/rules/Lookback.io.xml index 35e699459bd3..8d8818c8db73 100644 --- a/src/chrome/content/rules/Lookback.io.xml +++ b/src/chrome/content/rules/Lookback.io.xml @@ -1,13 +1,15 @@ - - + + + + to="https:" /> diff --git a/src/chrome/content/rules/Lookingglass.xml b/src/chrome/content/rules/Lookingglass.xml index 51f21bd7773b..83aa6542b47d 100644 --- a/src/chrome/content/rules/Lookingglass.xml +++ b/src/chrome/content/rules/Lookingglass.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Lookup.uribl.com.xml b/src/chrome/content/rules/Lookup.uribl.com.xml new file mode 100644 index 000000000000..2b52a169caa4 --- /dev/null +++ b/src/chrome/content/rules/Lookup.uribl.com.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/src/chrome/content/rules/Looloo.com.xml b/src/chrome/content/rules/Looloo.com.xml index 8afe13cb6d5b..381c17bac3f5 100644 --- a/src/chrome/content/rules/Looloo.com.xml +++ b/src/chrome/content/rules/Looloo.com.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.looloo.com/ => https://www.looloo.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.looloo.com'") --> - + @@ -15,4 +15,4 @@ Fetch error: http://www.looloo.com/ => https://www.looloo.com/: (51, "SSL: no al - \ No newline at end of file + diff --git a/src/chrome/content/rules/Loomio.org.xml b/src/chrome/content/rules/Loomio.org.xml index a0e845b81588..8a1512a537f8 100644 --- a/src/chrome/content/rules/Loomio.org.xml +++ b/src/chrome/content/rules/Loomio.org.xml @@ -11,7 +11,7 @@ - + https://checkout.looppay.com/: (28, 'Connection timed out after 20000 milliseconds') --> - + - + diff --git a/src/chrome/content/rules/Loopia.xml b/src/chrome/content/rules/Loopia.xml index e8f967368f71..f85fc2b438f7 100644 --- a/src/chrome/content/rules/Loopia.xml +++ b/src/chrome/content/rules/Loopia.xml @@ -9,23 +9,24 @@ Fetch error: http://loopiasecure.com/ => https://www.loopia.se/: (60, 'SSL certi - + + + + - - + - + diff --git a/src/chrome/content/rules/Loopt.xml b/src/chrome/content/rules/Loopt.xml index 4043ac9efbdf..83792bc265ae 100644 --- a/src/chrome/content/rules/Loopt.xml +++ b/src/chrome/content/rules/Loopt.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://loopt.com/ => https://www.loopt.com/: (28, 'Connection timed out after 10001 milliseconds') Fetch error: http://www.loopt.com/ => https://www.loopt.com/: (28, 'Connection timed out after 10001 milliseconds') --> - + diff --git a/src/chrome/content/rules/Lords-of-the-Blog.xml b/src/chrome/content/rules/Lords-of-the-Blog.xml index bfc72597803c..b93c6c05dbf4 100644 --- a/src/chrome/content/rules/Lords-of-the-Blog.xml +++ b/src/chrome/content/rules/Lords-of-the-Blog.xml @@ -3,7 +3,7 @@ - + diff --git a/src/chrome/content/rules/Los_Angeles_Times.xml b/src/chrome/content/rules/Los_Angeles_Times.xml index 31e335a1db68..b7207559b5b6 100644 --- a/src/chrome/content/rules/Los_Angeles_Times.xml +++ b/src/chrome/content/rules/Los_Angeles_Times.xml @@ -1,8 +1,16 @@ + - + + + + + - - - - - - - - - - - - - + + diff --git a/src/chrome/content/rules/Lotame.xml b/src/chrome/content/rules/Lotame.xml index e7f44f3bb569..77d4e95f7cce 100644 --- a/src/chrome/content/rules/Lotame.xml +++ b/src/chrome/content/rules/Lotame.xml @@ -1,19 +1,35 @@ + + + + + + + + + + + + + + + - - - - - + + + - + diff --git a/src/chrome/content/rules/Lotus.xml b/src/chrome/content/rules/Lotus.xml deleted file mode 100644 index c3b4f1065723..000000000000 --- a/src/chrome/content/rules/Lotus.xml +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Louder_Than_War.com.xml b/src/chrome/content/rules/Louder_Than_War.com.xml index bd158b5b8a96..91c7c859e763 100644 --- a/src/chrome/content/rules/Louder_Than_War.com.xml +++ b/src/chrome/content/rules/Louder_Than_War.com.xml @@ -14,7 +14,7 @@ - + @@ -23,4 +23,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Louhi.net.xml b/src/chrome/content/rules/Louhi.net.xml index 1051e9095473..71b8ec6a6c8a 100644 --- a/src/chrome/content/rules/Louhi.net.xml +++ b/src/chrome/content/rules/Louhi.net.xml @@ -23,4 +23,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Louise_Harrison_Couture.com.xml b/src/chrome/content/rules/Louise_Harrison_Couture.com.xml index 559cef2a9d3b..41ec91d13891 100644 --- a/src/chrome/content/rules/Louise_Harrison_Couture.com.xml +++ b/src/chrome/content/rules/Louise_Harrison_Couture.com.xml @@ -5,7 +5,7 @@ Non-2xx HTTP code: http://louiseharrisoncouture.com/ (200) => https://louiseharr Non-2xx HTTP code: http://www.louiseharrisoncouture.com/ (200) => https://www.louiseharrisoncouture.com/ (521) --> - + diff --git a/src/chrome/content/rules/Louisiana_State_University-problematic.xml b/src/chrome/content/rules/Louisiana_State_University-problematic.xml index 7b146dac8b44..c1731480701c 100644 --- a/src/chrome/content/rules/Louisiana_State_University-problematic.xml +++ b/src/chrome/content/rules/Louisiana_State_University-problematic.xml @@ -10,7 +10,6 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Louisiana_State_University.xml b/src/chrome/content/rules/Louisiana_State_University.xml index 9db3934ffefb..591c52ad7f0f 100644 --- a/src/chrome/content/rules/Louisiana_State_University.xml +++ b/src/chrome/content/rules/Louisiana_State_University.xml @@ -112,7 +112,60 @@ Fetch error: http://lsu.edu/ => https://www.lsu.edu/: Pycurl fetch failed for 'h - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -128,14 +181,10 @@ Fetch error: http://lsu.edu/ => https://www.lsu.edu/: Pycurl fetch failed for 'h - - @@ -151,4 +200,5 @@ Fetch error: http://lsu.edu/ => https://www.lsu.edu/: Pycurl fetch failed for 'h - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Lourdas.name.xml b/src/chrome/content/rules/Lourdas.name.xml deleted file mode 100644 index 72562a3a9169..000000000000 --- a/src/chrome/content/rules/Lourdas.name.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/LoveFilm.xml b/src/chrome/content/rules/LoveFilm.xml deleted file mode 100644 index 48c968668120..000000000000 --- a/src/chrome/content/rules/LoveFilm.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/LoveHoney.xml b/src/chrome/content/rules/LoveHoney.xml deleted file mode 100644 index b49e2d8b9e1e..000000000000 --- a/src/chrome/content/rules/LoveHoney.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/LovePlanet.ru.xml b/src/chrome/content/rules/LovePlanet.ru.xml index ecad3b665edd..d56346f50041 100644 --- a/src/chrome/content/rules/LovePlanet.ru.xml +++ b/src/chrome/content/rules/LovePlanet.ru.xml @@ -42,7 +42,7 @@ Fetch error: http://www.loveplanet.ru/ => https://www.loveplanet.ru/: (51, "SSL: ⁴ Secured by us --> - + diff --git a/src/chrome/content/rules/Love_2D.org.xml b/src/chrome/content/rules/Love_2D.org.xml index fa1af6438e07..18aa015e3a02 100644 --- a/src/chrome/content/rules/Love_2D.org.xml +++ b/src/chrome/content/rules/Love_2D.org.xml @@ -16,7 +16,7 @@ --> - + https://www.loveourlocalbusiness.com/: (6, 'Could not resolve host: www.loveourlocalbusiness.com') -Fetch error: http://www.loveourlocalbusiness.com/ => https://www.loveourlocalbusiness.com/: (6, 'Could not resolve host: www.loveourlocalbusiness.com') - - For other Intuit coverage, see Intuit.xml. - - - !www times out. - ---> - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Lovelens.xml b/src/chrome/content/rules/Lovelens.xml deleted file mode 100644 index 9adfc96ada02..000000000000 --- a/src/chrome/content/rules/Lovelens.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/src/chrome/content/rules/Lovemoney.xml b/src/chrome/content/rules/Lovemoney.xml index 506bd0b374a8..42d11c048bad 100644 --- a/src/chrome/content/rules/Lovemoney.xml +++ b/src/chrome/content/rules/Lovemoney.xml @@ -3,7 +3,9 @@ - + + + diff --git a/src/chrome/content/rules/Loverpi.com.xml b/src/chrome/content/rules/Loverpi.com.xml index 98929b0221fb..c010497983ba 100644 --- a/src/chrome/content/rules/Loverpi.com.xml +++ b/src/chrome/content/rules/Loverpi.com.xml @@ -8,7 +8,7 @@ Fetch error: http://forum.loverpi.com/ => https://forum.loverpi.com/: (6, 'Could share.loverpi.com (refused) --> - + diff --git a/src/chrome/content/rules/Lovett_Publishing_House.com.xml b/src/chrome/content/rules/Lovett_Publishing_House.com.xml index b0637b722b12..d36c42fee6dc 100644 --- a/src/chrome/content/rules/Lovett_Publishing_House.com.xml +++ b/src/chrome/content/rules/Lovett_Publishing_House.com.xml @@ -13,7 +13,7 @@ Fetch error: http://lovettpublishinghouse.com/ => https://lovettpublishinghouse. * Secured by us --> - + diff --git a/src/chrome/content/rules/Lovtidende.dk.xml b/src/chrome/content/rules/Lovtidende.dk.xml index f89a111f4053..9f95f087bd9b 100644 --- a/src/chrome/content/rules/Lovtidende.dk.xml +++ b/src/chrome/content/rules/Lovtidende.dk.xml @@ -11,7 +11,7 @@ Fetch error: http://lovtidende.dk/ => https://lovtidende.dk/: (56, 'SSL read: er - www.lovtidende.dk --> - + diff --git a/src/chrome/content/rules/LowEndBox.com.xml b/src/chrome/content/rules/LowEndBox.com.xml new file mode 100644 index 000000000000..59d1a8bdd9a2 --- /dev/null +++ b/src/chrome/content/rules/LowEndBox.com.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Lowes.com.xml b/src/chrome/content/rules/Lowes.com.xml index 4d1477430684..afcd0bb55f85 100644 --- a/src/chrome/content/rules/Lowes.com.xml +++ b/src/chrome/content/rules/Lowes.com.xml @@ -27,6 +27,6 @@ - diff --git a/src/chrome/content/rules/Lowyat.NET.xml b/src/chrome/content/rules/Lowyat.NET.xml index 4d222948155f..c59d7004f6e6 100644 --- a/src/chrome/content/rules/Lowyat.NET.xml +++ b/src/chrome/content/rules/Lowyat.NET.xml @@ -1,30 +1,34 @@ - + + + + + + + + - - - - - - - + + + - diff --git a/src/chrome/content/rules/Loyal_Forex.xml b/src/chrome/content/rules/Loyal_Forex.xml index 27d8d88c7837..d92643add474 100644 --- a/src/chrome/content/rules/Loyal_Forex.xml +++ b/src/chrome/content/rules/Loyal_Forex.xml @@ -5,7 +5,7 @@ Fetch error: http://loyalforex.com/ => https://loyalforex.com/: (35, 'Unknown SS Fetch error: http://www.loyalforex.com/ => https://www.loyalforex.com/: (35, 'Unknown SSL protocol error in connection to www.loyalforex.com:443 ') --> - + @@ -16,4 +16,4 @@ Fetch error: http://www.loyalforex.com/ => https://www.loyalforex.com/: (35, 'Un - \ No newline at end of file + diff --git a/src/chrome/content/rules/LuaJIT.org.xml b/src/chrome/content/rules/LuaJIT.org.xml new file mode 100644 index 000000000000..a88f4fd811c1 --- /dev/null +++ b/src/chrome/content/rules/LuaJIT.org.xml @@ -0,0 +1,17 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Luadns.com.xml b/src/chrome/content/rules/Luadns.com.xml new file mode 100644 index 000000000000..1c4162230449 --- /dev/null +++ b/src/chrome/content/rules/Luadns.com.xml @@ -0,0 +1,19 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Lubuntu.me.xml b/src/chrome/content/rules/Lubuntu.me.xml new file mode 100644 index 000000000000..b2aafcbe4220 --- /dev/null +++ b/src/chrome/content/rules/Lubuntu.me.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Lucid-Reverie.xml b/src/chrome/content/rules/Lucid-Reverie.xml index e5dc5c4b2b10..a5d85aa5d3ef 100644 --- a/src/chrome/content/rules/Lucid-Reverie.xml +++ b/src/chrome/content/rules/Lucid-Reverie.xml @@ -8,13 +8,13 @@ Disabled by https-everywhere-checker because: Fetch error: http://lrcd.com/ => https://lrcd.com/: (60, 'SSL certificate problem: self signed certificate') Fetch error: http://www.lrcd.com/ => https://lrcd.com/: (60, 'SSL certificate problem: self signed certificate') --> - + - + diff --git a/src/chrome/content/rules/Lucidpress.com.xml b/src/chrome/content/rules/Lucidpress.com.xml index 0ca5d5b92375..3b403613537e 100644 --- a/src/chrome/content/rules/Lucidpress.com.xml +++ b/src/chrome/content/rules/Lucidpress.com.xml @@ -46,7 +46,7 @@ --> - + https://www.luciosgold.ca/: (60, 'SSL Disabled by https-everywhere-checker because: Fetch error: http://luciosgold.ca/ => https://luciosgold.ca/: (60, 'SSL certificate problem: self signed certificate') --> - + @@ -18,4 +18,4 @@ Fetch error: http://luciosgold.ca/ => https://luciosgold.ca/: (60, 'SSL certific - \ No newline at end of file + diff --git a/src/chrome/content/rules/Lucky2u.net.xml b/src/chrome/content/rules/Lucky2u.net.xml index 3e1f9b862eb9..19b1e4adaba7 100644 --- a/src/chrome/content/rules/Lucky2u.net.xml +++ b/src/chrome/content/rules/Lucky2u.net.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/LuckyShare.xml b/src/chrome/content/rules/LuckyShare.xml index f9a141c4407a..b6123acc5d71 100644 --- a/src/chrome/content/rules/LuckyShare.xml +++ b/src/chrome/content/rules/LuckyShare.xml @@ -17,7 +17,7 @@ - + + + + + + + + diff --git a/src/chrome/content/rules/Ludialudom.sk.xml b/src/chrome/content/rules/Ludialudom.sk.xml index c09270dd31ca..8d90c18ab6db 100644 --- a/src/chrome/content/rules/Ludialudom.sk.xml +++ b/src/chrome/content/rules/Ludialudom.sk.xml @@ -1,16 +1,34 @@ - - + + - - - + + diff --git a/src/chrome/content/rules/Ludios.org.xml b/src/chrome/content/rules/Ludios.org.xml index c99dc94afb36..b0382ff2158e 100644 --- a/src/chrome/content/rules/Ludios.org.xml +++ b/src/chrome/content/rules/Ludios.org.xml @@ -4,7 +4,7 @@ - + + + + + + + + + + + diff --git a/src/chrome/content/rules/Ludwigshafen.de.xml b/src/chrome/content/rules/Ludwigshafen.de.xml new file mode 100644 index 000000000000..3209e1b1dc72 --- /dev/null +++ b/src/chrome/content/rules/Ludwigshafen.de.xml @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Lufthansa.xml b/src/chrome/content/rules/Lufthansa.xml index 902694addf38..04d66afa7cf2 100644 --- a/src/chrome/content/rules/Lufthansa.xml +++ b/src/chrome/content/rules/Lufthansa.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Non-2xx HTTP code: http://lufthansa.com/ (200) => https://www.lufthansa.com/ (404) --> - + diff --git a/src/chrome/content/rules/LukeSmith.xyz.xml b/src/chrome/content/rules/LukeSmith.xyz.xml new file mode 100644 index 000000000000..34c76056b203 --- /dev/null +++ b/src/chrome/content/rules/LukeSmith.xyz.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Lulea_Municipality.xml b/src/chrome/content/rules/Lulea_Municipality.xml index 54e2181dfa55..a5a314209b42 100644 --- a/src/chrome/content/rules/Lulea_Municipality.xml +++ b/src/chrome/content/rules/Lulea_Municipality.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Lulea_University_of_Technology.xml b/src/chrome/content/rules/Lulea_University_of_Technology.xml index f9eeb6d91c24..7bbf680e3891 100644 --- a/src/chrome/content/rules/Lulea_University_of_Technology.xml +++ b/src/chrome/content/rules/Lulea_University_of_Technology.xml @@ -15,7 +15,8 @@ - + + @@ -27,4 +28,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Lulu.xml b/src/chrome/content/rules/Lulu.xml index 3a690e2b7241..dd210b4ded07 100644 --- a/src/chrome/content/rules/Lulu.xml +++ b/src/chrome/content/rules/Lulu.xml @@ -1,7 +1,8 @@ - + + diff --git a/src/chrome/content/rules/Lumen.xml b/src/chrome/content/rules/Lumen.xml index 8b64411fc866..68119abd00cd 100644 --- a/src/chrome/content/rules/Lumen.xml +++ b/src/chrome/content/rules/Lumen.xml @@ -2,9 +2,8 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Lumesse.com.xml b/src/chrome/content/rules/Lumesse.com.xml index 4b1c99a99112..352e98859883 100644 --- a/src/chrome/content/rules/Lumesse.com.xml +++ b/src/chrome/content/rules/Lumesse.com.xml @@ -41,7 +41,7 @@ Fetch error: http://www.lumesse.com/ => https://www.lumesse.com/: (51, "SSL: no ⁴ Secured by us --> - + diff --git a/src/chrome/content/rules/Lumiblade.xml b/src/chrome/content/rules/Lumiblade.xml index ea544ce2b280..8163ed028fda 100644 --- a/src/chrome/content/rules/Lumiblade.xml +++ b/src/chrome/content/rules/Lumiblade.xml @@ -8,15 +8,15 @@ Disabled by https-everywhere-checker because: Fetch error: http://lumiblade-shop.com/ => https://lumiblade-shop.com/: (7, 'Failed to connect to lumiblade-shop.com port 443: Connection refused') Fetch error: http://www.lumiblade-shop.com/ => https://www.lumiblade-shop.com/: (7, 'Failed to connect to www.lumiblade-shop.com port 443: Connection refused') --> - + - - + + diff --git a/src/chrome/content/rules/Lumicall.org.xml b/src/chrome/content/rules/Lumicall.org.xml new file mode 100644 index 000000000000..d3a7acd4bc3f --- /dev/null +++ b/src/chrome/content/rules/Lumicall.org.xml @@ -0,0 +1,19 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/LuminoWorld.com.xml b/src/chrome/content/rules/LuminoWorld.com.xml index d065e93cae6a..c3a655790c9b 100644 --- a/src/chrome/content/rules/LuminoWorld.com.xml +++ b/src/chrome/content/rules/LuminoWorld.com.xml @@ -14,4 +14,4 @@ Fetch error: http://www.luminoworld.com/ => http://www.luminoworld.com/: (6, 'Co - \ No newline at end of file + diff --git a/src/chrome/content/rules/Lumo.xml b/src/chrome/content/rules/Lumo.xml deleted file mode 100644 index 92806baf22d8..000000000000 --- a/src/chrome/content/rules/Lumo.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Lumosity.xml b/src/chrome/content/rules/Lumosity.xml index 3aec4347fc6f..f7093a99dce3 100644 --- a/src/chrome/content/rules/Lumosity.xml +++ b/src/chrome/content/rules/Lumosity.xml @@ -7,7 +7,8 @@ - + + diff --git a/src/chrome/content/rules/Lumovies.com.xml b/src/chrome/content/rules/Lumovies.com.xml deleted file mode 100644 index d212136a09f7..000000000000 --- a/src/chrome/content/rules/Lumovies.com.xml +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Luna-Nivius.xml b/src/chrome/content/rules/Luna-Nivius.xml index 5e6b2645fc40..c10c7ace2512 100644 --- a/src/chrome/content/rules/Luna-Nivius.xml +++ b/src/chrome/content/rules/Luna-Nivius.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://niveusluna.org/ => https://niveusluna.org/: (28, 'Connection timed out after 10001 milliseconds') Fetch error: http://www.niveusluna.org/ => https://www.niveusluna.org/: (28, 'Connection timed out after 10001 milliseconds') --> - + diff --git a/src/chrome/content/rules/Lurkmore.to.xml b/src/chrome/content/rules/Lurkmore.to.xml index f56b153662f8..f77af99dc622 100644 --- a/src/chrome/content/rules/Lurkmore.to.xml +++ b/src/chrome/content/rules/Lurkmore.to.xml @@ -1,42 +1,54 @@ - - - - - - - - - - - - + - - - - - - - - - - - + + + + + diff --git a/src/chrome/content/rules/Luxomo.com.xml b/src/chrome/content/rules/Luxomo.com.xml index ad29b4ace77c..5428d707a6ff 100644 --- a/src/chrome/content/rules/Luxomo.com.xml +++ b/src/chrome/content/rules/Luxomo.com.xml @@ -12,7 +12,7 @@ Fetch error: http://luxomo.com/ => https://luxomo.com/: (28, 'Connection timed o * Secured by us --> - + diff --git a/src/chrome/content/rules/Luxury_Custom_Wheels.xml b/src/chrome/content/rules/Luxury_Custom_Wheels.xml index c5f9056b336f..98055c6cf6e6 100644 --- a/src/chrome/content/rules/Luxury_Custom_Wheels.xml +++ b/src/chrome/content/rules/Luxury_Custom_Wheels.xml @@ -5,15 +5,15 @@ Fetch error: http://luxurycustomwheels.com/ => https://luxurycustomwheels.com/: Fetch error: http://www.luxurycustomwheels.com/ => https://www.luxurycustomwheels.com/: (35, 'Unknown SSL protocol error in connection to www.luxurycustomwheels.com:443 ') --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Luxury_Replica.xml b/src/chrome/content/rules/Luxury_Replica.xml index a62b2247360a..f6ca93dac62e 100644 --- a/src/chrome/content/rules/Luxury_Replica.xml +++ b/src/chrome/content/rules/Luxury_Replica.xml @@ -7,7 +7,7 @@ Fetch error: http://www.luxuryreplica.net/ => https://www.luxuryreplica.net/: (2 Disabled by https-everywhere-checker because: Fetch error: http://luxuryreplica.net/ => https://luxuryreplica.net/: (28, 'Connection timed out after 10000 milliseconds') --> - + @@ -18,4 +18,4 @@ Fetch error: http://luxuryreplica.net/ => https://luxuryreplica.net/: (28, 'Conn - \ No newline at end of file + diff --git a/src/chrome/content/rules/Lxde.org.xml b/src/chrome/content/rules/Lxde.org.xml new file mode 100644 index 000000000000..0f5cc0003922 --- /dev/null +++ b/src/chrome/content/rules/Lxde.org.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/LyinComey.com.xml b/src/chrome/content/rules/LyinComey.com.xml new file mode 100644 index 000000000000..ac7335cc9b8f --- /dev/null +++ b/src/chrome/content/rules/LyinComey.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Lymo.fr.xml b/src/chrome/content/rules/Lymo.fr.xml new file mode 100644 index 000000000000..15405ded50ff --- /dev/null +++ b/src/chrome/content/rules/Lymo.fr.xml @@ -0,0 +1,11 @@ + + + + + + + diff --git a/src/chrome/content/rules/Lynch_Interactive.com.xml b/src/chrome/content/rules/Lynch_Interactive.com.xml index 23fbd95bea62..5d0f1015956a 100644 --- a/src/chrome/content/rules/Lynch_Interactive.com.xml +++ b/src/chrome/content/rules/Lynch_Interactive.com.xml @@ -10,7 +10,7 @@ Disabled by https-everywhere-checker because: Non-2xx HTTP code: http://lynchinteractive.com/ (200) => https://lynchinteractive.com/ (404) --> - + diff --git a/src/chrome/content/rules/Lynda.com.xml b/src/chrome/content/rules/Lynda.com.xml index 2846ac82e1d5..e6c7f2e04516 100644 --- a/src/chrome/content/rules/Lynda.com.xml +++ b/src/chrome/content/rules/Lynda.com.xml @@ -43,7 +43,6 @@ --> - diff --git a/src/chrome/content/rules/Lynku.com.xml b/src/chrome/content/rules/Lynku.com.xml index 8b5c6278fb02..b99e9a0ccdf0 100644 --- a/src/chrome/content/rules/Lynku.com.xml +++ b/src/chrome/content/rules/Lynku.com.xml @@ -15,7 +15,7 @@ Fetch error: http://images.lynku.com/ => https://shop.look.co.uk/: (7, 'Failed t - images (mismatched, CN: shop.look.co.uk) --> - + @@ -23,4 +23,4 @@ Fetch error: http://images.lynku.com/ => https://shop.look.co.uk/: (7, 'Failed t - \ No newline at end of file + diff --git a/src/chrome/content/rules/Lyris-mismatches.xml b/src/chrome/content/rules/Lyris-mismatches.xml index 56c44a10b93a..25922ead20c8 100644 --- a/src/chrome/content/rules/Lyris-mismatches.xml +++ b/src/chrome/content/rules/Lyris-mismatches.xml @@ -2,7 +2,6 @@ - + diff --git a/src/chrome/content/rules/Lyris.xml b/src/chrome/content/rules/Lyris.xml index bdcbd88fdc1e..2266b31fb8f9 100644 --- a/src/chrome/content/rules/Lyris.xml +++ b/src/chrome/content/rules/Lyris.xml @@ -18,33 +18,32 @@ Fetch error: http://www.lyrishq.com/ => https://www.lyris.com/blog: (28, 'Connec - Up0.net.xml --> - + - + + - + + - + - - + diff --git a/src/chrome/content/rules/Lyrk.de.xml b/src/chrome/content/rules/Lyrk.de.xml index e4bad3a79f84..08dd1293bb4d 100644 --- a/src/chrome/content/rules/Lyrk.de.xml +++ b/src/chrome/content/rules/Lyrk.de.xml @@ -9,7 +9,8 @@ - + + - - - - - - diff --git a/src/chrome/content/rules/M-VG.de.xml b/src/chrome/content/rules/M-VG.de.xml index cd258088a99c..cc0381bd2ca2 100644 --- a/src/chrome/content/rules/M-VG.de.xml +++ b/src/chrome/content/rules/M-VG.de.xml @@ -24,7 +24,7 @@ --> - + https://m-w.co.uk/: Too many redirects while f * Secured by us --> - + diff --git a/src/chrome/content/rules/M-and-T_Bank.xml b/src/chrome/content/rules/M-and-T_Bank.xml index 1276a5c26c57..f54c72baa872 100644 --- a/src/chrome/content/rules/M-and-T_Bank.xml +++ b/src/chrome/content/rules/M-and-T_Bank.xml @@ -14,7 +14,10 @@ - + + + + @@ -22,16 +25,11 @@ - - - + diff --git a/src/chrome/content/rules/M-net.de.xml b/src/chrome/content/rules/M-net.de.xml deleted file mode 100644 index 6d9b03aab62f..000000000000 --- a/src/chrome/content/rules/M-net.de.xml +++ /dev/null @@ -1,100 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/M-pathy.xml b/src/chrome/content/rules/M-pathy.xml index 33d16df76c35..04f45723f3d3 100644 --- a/src/chrome/content/rules/M-pathy.xml +++ b/src/chrome/content/rules/M-pathy.xml @@ -10,7 +10,8 @@ - + + - \ No newline at end of file + diff --git a/src/chrome/content/rules/M-privacy.xml b/src/chrome/content/rules/M-privacy.xml index 9288a1800f91..c20c2bf48e62 100644 --- a/src/chrome/content/rules/M-privacy.xml +++ b/src/chrome/content/rules/M-privacy.xml @@ -1,17 +1,18 @@ - + + + - + - + diff --git a/src/chrome/content/rules/M01.eu.xml b/src/chrome/content/rules/M01.eu.xml deleted file mode 100644 index adadbad9310c..000000000000 --- a/src/chrome/content/rules/M01.eu.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/M2pub.com.xml b/src/chrome/content/rules/M2pub.com.xml deleted file mode 100644 index 156ab9967b9c..000000000000 --- a/src/chrome/content/rules/M2pub.com.xml +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/MAA.org.xml b/src/chrome/content/rules/MAA.org.xml new file mode 100644 index 000000000000..854afe0ebaca --- /dev/null +++ b/src/chrome/content/rules/MAA.org.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/MAC_Paper.com.xml b/src/chrome/content/rules/MAC_Paper.com.xml index c3fabcc79cfe..5f715035742c 100644 --- a/src/chrome/content/rules/MAC_Paper.com.xml +++ b/src/chrome/content/rules/MAC_Paper.com.xml @@ -20,10 +20,11 @@ Fetch error: http://macpaper.com/ => https://secure.macpaper.com/: (51, "SSL: no * Secured by us --> - + - + + diff --git a/src/chrome/content/rules/MADD-California.xml b/src/chrome/content/rules/MADD-California.xml index 8a65a1e0a463..50d7e3611b3f 100644 --- a/src/chrome/content/rules/MADD-California.xml +++ b/src/chrome/content/rules/MADD-California.xml @@ -5,9 +5,9 @@ Fetch error: http://maddcalifornia.org/ => https://www.maddcalifornia.org/: (35, Fetch error: http://www.maddcalifornia.org/ => https://www.maddcalifornia.org/: (35, 'Unknown SSL protocol error in connection to www.maddcalifornia.org:443 ') --> - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/MARC.info.xml b/src/chrome/content/rules/MARC.info.xml deleted file mode 100644 index a6bc3ed773ff..000000000000 --- a/src/chrome/content/rules/MARC.info.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/MARE-system.de.xml b/src/chrome/content/rules/MARE-system.de.xml index 64a8fd053d8a..3745e3bde58d 100644 --- a/src/chrome/content/rules/MARE-system.de.xml +++ b/src/chrome/content/rules/MARE-system.de.xml @@ -7,7 +7,7 @@ Fetch error: http://mare-system.de/ => https://www.mare-system.de/: (60, 'SSL ce ^: Cert only matches www --> - + diff --git a/src/chrome/content/rules/MARSocial.com.xml b/src/chrome/content/rules/MARSocial.com.xml index db9c19b38213..12681362aea1 100644 --- a/src/chrome/content/rules/MARSocial.com.xml +++ b/src/chrome/content/rules/MARSocial.com.xml @@ -17,7 +17,7 @@ Fetch error: http://www.marsocial.com/ => https://www.marsocial.com/: (28, 'Conn * Not secured by us <= missing certificate chain --> - + diff --git a/src/chrome/content/rules/MASSPIRG.xml b/src/chrome/content/rules/MASSPIRG.xml index d3579a4107d2..09874dd763ed 100644 --- a/src/chrome/content/rules/MASSPIRG.xml +++ b/src/chrome/content/rules/MASSPIRG.xml @@ -17,4 +17,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/MASSPIRG_Education_Fund.xml b/src/chrome/content/rules/MASSPIRG_Education_Fund.xml index d1b75dbf77e6..5d4732615273 100644 --- a/src/chrome/content/rules/MASSPIRG_Education_Fund.xml +++ b/src/chrome/content/rules/MASSPIRG_Education_Fund.xml @@ -14,4 +14,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/MASSPIRG_Students.xml b/src/chrome/content/rules/MASSPIRG_Students.xml index 44e8658438f6..034b315025c1 100644 --- a/src/chrome/content/rules/MASSPIRG_Students.xml +++ b/src/chrome/content/rules/MASSPIRG_Students.xml @@ -14,4 +14,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/MAXROAM.xml b/src/chrome/content/rules/MAXROAM.xml index 0bac73aa668b..eb7106dc6b69 100644 --- a/src/chrome/content/rules/MAXROAM.xml +++ b/src/chrome/content/rules/MAXROAM.xml @@ -1,7 +1,8 @@ - + + diff --git a/src/chrome/content/rules/MAZDA_Web_Members.xml b/src/chrome/content/rules/MAZDA_Web_Members.xml index d6be160169cd..180407254d96 100644 --- a/src/chrome/content/rules/MAZDA_Web_Members.xml +++ b/src/chrome/content/rules/MAZDA_Web_Members.xml @@ -4,12 +4,11 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.m-wm.com/ => https://www.m-wm.com/: (6, 'Could not resolve host: www.m-wm.com') --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/MA_Legislature.gov.xml b/src/chrome/content/rules/MA_Legislature.gov.xml deleted file mode 100644 index 327fd9c8d03f..000000000000 --- a/src/chrome/content/rules/MA_Legislature.gov.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/MBC-Karlsruhe.de.xml b/src/chrome/content/rules/MBC-Karlsruhe.de.xml new file mode 100644 index 000000000000..f56fb2b00404 --- /dev/null +++ b/src/chrome/content/rules/MBC-Karlsruhe.de.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/MBSportsWeb.xml b/src/chrome/content/rules/MBSportsWeb.xml index 682ba6afd753..723ace1146cf 100644 --- a/src/chrome/content/rules/MBSportsWeb.xml +++ b/src/chrome/content/rules/MBSportsWeb.xml @@ -14,7 +14,7 @@ - + @@ -23,4 +23,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/MBank.xml b/src/chrome/content/rules/MBank.xml index e95c6b3c2fce..71a3903a42b4 100644 --- a/src/chrome/content/rules/MBank.xml +++ b/src/chrome/content/rules/MBank.xml @@ -49,7 +49,7 @@ Fetch error: http://ssl1.mbank.pl/ => https://ssl1.mbank.pl/: (60, 'SSL certific - media.mbank.eu - Presents cert for secure.netpr.pl. --> - + @@ -101,7 +101,7 @@ Fetch error: http://ssl1.mbank.pl/ => https://ssl1.mbank.pl/: (60, 'SSL certific - + https://webmail.mbnet.fi/: (7, 'Failed - webmail.mbnet.fi --> - + diff --git a/src/chrome/content/rules/MBuy.com.xml b/src/chrome/content/rules/MBuy.com.xml index 44d7af7b1c80..d2d967c4e02f 100644 --- a/src/chrome/content/rules/MBuy.com.xml +++ b/src/chrome/content/rules/MBuy.com.xml @@ -8,7 +8,7 @@ Fetch error: http://app.mbuy.com/ => https://app.mbuy.com/: (7, 'Failed to conne - (www.) (refused) --> - + @@ -16,7 +16,6 @@ Fetch error: http://app.mbuy.com/ => https://app.mbuy.com/: (7, 'Failed to conne - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/MCLU.xml b/src/chrome/content/rules/MCLU.xml index c4bcabdfd2cc..0555a04794f5 100644 --- a/src/chrome/content/rules/MCLU.xml +++ b/src/chrome/content/rules/MCLU.xml @@ -8,9 +8,9 @@ Disabled by https-everywhere-checker because: Fetch error: http://mclu.org/ => https://www.mclu.org/: (60, 'SSL certificate problem: unable to get local issuer certificate') Fetch error: http://www.mclu.org/ => https://www.mclu.org/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/MCM_Electronics.com.xml b/src/chrome/content/rules/MCM_Electronics.com.xml index 1b373e740838..d39adcf03a34 100644 --- a/src/chrome/content/rules/MCM_Electronics.com.xml +++ b/src/chrome/content/rules/MCM_Electronics.com.xml @@ -31,4 +31,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/MDC_US.com.xml b/src/chrome/content/rules/MDC_US.com.xml deleted file mode 100644 index 3b1f3f43097c..000000000000 --- a/src/chrome/content/rules/MDC_US.com.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/MDR.de.xml b/src/chrome/content/rules/MDR.de.xml new file mode 100644 index 000000000000..81ae42fb2019 --- /dev/null +++ b/src/chrome/content/rules/MDR.de.xml @@ -0,0 +1,105 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/MDTS.xml b/src/chrome/content/rules/MDTS.xml deleted file mode 100644 index 57b3cc706339..000000000000 --- a/src/chrome/content/rules/MDTS.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/MEBank.xml b/src/chrome/content/rules/MEBank.xml index 59ecc8ba3a3b..2600c0525e0e 100644 --- a/src/chrome/content/rules/MEBank.xml +++ b/src/chrome/content/rules/MEBank.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/MEPS-FPX.com.my.xml b/src/chrome/content/rules/MEPS-FPX.com.my.xml new file mode 100644 index 000000000000..1fce1b7863c5 --- /dev/null +++ b/src/chrome/content/rules/MEPS-FPX.com.my.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/MERY.jp.xml b/src/chrome/content/rules/MERY.jp.xml index 8584a8c27594..9aecb60bd1fe 100644 --- a/src/chrome/content/rules/MERY.jp.xml +++ b/src/chrome/content/rules/MERY.jp.xml @@ -5,7 +5,7 @@ Fetch error: http://mery.jp/ => https://mery.jp/: (60, 'SSL certificate problem: Fetch error: http://www.mery.jp/ => https://www.mery.jp/: (6, 'Could not resolve host: www.mery.jp') --> - + diff --git a/src/chrome/content/rules/MESO-Rx.xml b/src/chrome/content/rules/MESO-Rx.xml index 27e830d48415..88189014db93 100644 --- a/src/chrome/content/rules/MESO-Rx.xml +++ b/src/chrome/content/rules/MESO-Rx.xml @@ -25,7 +25,7 @@ Non-2xx HTTP code: http://www.thinksteroids.com/ (200) => https://www.thinkstero - cdn-ru.thinksteroids.com --> - + @@ -43,12 +43,9 @@ Non-2xx HTTP code: http://www.thinksteroids.com/ (200) => https://www.thinkstero - + - - diff --git a/src/chrome/content/rules/METEO.PL.xml b/src/chrome/content/rules/METEO.PL.xml new file mode 100644 index 000000000000..56e1e25c7c0b --- /dev/null +++ b/src/chrome/content/rules/METEO.PL.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/MGID.com.xml b/src/chrome/content/rules/MGID.com.xml index c91444702811..5af1018e08ee 100644 --- a/src/chrome/content/rules/MGID.com.xml +++ b/src/chrome/content/rules/MGID.com.xml @@ -73,14 +73,30 @@ --> - + + + + - + + + + + + - + + + + + + + + + - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/MICGadget.com.xml b/src/chrome/content/rules/MICGadget.com.xml new file mode 100644 index 000000000000..9052d06c3651 --- /dev/null +++ b/src/chrome/content/rules/MICGadget.com.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/MIMS.xml b/src/chrome/content/rules/MIMS.xml index 6259983bd872..55fc195e8bbd 100644 --- a/src/chrome/content/rules/MIMS.xml +++ b/src/chrome/content/rules/MIMS.xml @@ -13,7 +13,7 @@ Non-2xx HTTP code: http://www.mims.com.tw/ (200) => https://www.mims.com.tw/ (50 - mims.com - pubmiddleware (timeout) --> - + diff --git a/src/chrome/content/rules/MINV.sk.xml b/src/chrome/content/rules/MINV.sk.xml new file mode 100644 index 000000000000..1811063c7156 --- /dev/null +++ b/src/chrome/content/rules/MINV.sk.xml @@ -0,0 +1,16 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/MIPS-Technologies.xml b/src/chrome/content/rules/MIPS-Technologies.xml index 616864c8635c..21dc40e6b019 100644 --- a/src/chrome/content/rules/MIPS-Technologies.xml +++ b/src/chrome/content/rules/MIPS-Technologies.xml @@ -14,7 +14,7 @@ - + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/MIT-mismatches.xml b/src/chrome/content/rules/MIT-mismatches.xml index d060573c30e9..7d606e0ed1c6 100644 --- a/src/chrome/content/rules/MIT-mismatches.xml +++ b/src/chrome/content/rules/MIT-mismatches.xml @@ -7,21 +7,16 @@ - - - - - - - + - - + - + + + + + + - - - - - - + + @@ -336,24 +178,22 @@ Fetch error: http://webpub.mit.edu/ => https://webpub.mit.edu/: (6, 'Could not r + - - - + - - + @@ -367,137 +207,61 @@ Fetch error: http://webpub.mit.edu/ => https://webpub.mit.edu/: (6, 'Could not r - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - + + - - + + + + + + + + - + + - + - + - + - + - + - + - + + diff --git a/src/chrome/content/rules/MIUI.com.xml b/src/chrome/content/rules/MIUI.com.xml index a8250f732aa3..34874084eca8 100644 --- a/src/chrome/content/rules/MIUI.com.xml +++ b/src/chrome/content/rules/MIUI.com.xml @@ -1,39 +1,47 @@ + + + + + + + + + + + + + - + + + + + + + + diff --git a/src/chrome/content/rules/MJG_International.xml b/src/chrome/content/rules/MJG_International.xml index fc890972b728..58a3313288ad 100644 --- a/src/chrome/content/rules/MJG_International.xml +++ b/src/chrome/content/rules/MJG_International.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://mjg.in/ => https://mjg.in/: (60, 'SSL certificate problem: certificate has expired') Fetch error: http://www.mjg.in/ => https://www.mjg.in/: (60, 'SSL certificate problem: certificate has expired') --> - + @@ -19,4 +19,4 @@ Fetch error: http://www.mjg.in/ => https://www.mjg.in/: (60, 'SSL certificate pr - \ No newline at end of file + diff --git a/src/chrome/content/rules/MK2.com.xml b/src/chrome/content/rules/MK2.com.xml index 864ba8b3808e..7c87b2b6e492 100644 --- a/src/chrome/content/rules/MK2.com.xml +++ b/src/chrome/content/rules/MK2.com.xml @@ -24,14 +24,14 @@ --> - + - + - + - - - - - - - - - - - diff --git a/src/chrome/content/rules/MLSec_Project.org.xml b/src/chrome/content/rules/MLSec_Project.org.xml index bdc6d202f427..5685878521c6 100644 --- a/src/chrome/content/rules/MLSec_Project.org.xml +++ b/src/chrome/content/rules/MLSec_Project.org.xml @@ -16,7 +16,7 @@ Fetch error: http://mlsecproject.org/ => https://mlsecproject.org/: (28, 'Connec - www.mlsecproject.org --> - + diff --git a/src/chrome/content/rules/MLno6.com.xml b/src/chrome/content/rules/MLno6.com.xml index ff1b9c975040..91c49afd2f50 100644 --- a/src/chrome/content/rules/MLno6.com.xml +++ b/src/chrome/content/rules/MLno6.com.xml @@ -13,7 +13,7 @@ Fetch error: http://www.mlno6.com/ => https://www.mlno6.com/: (60, 'SSL certific Web bugs. --> - + @@ -21,4 +21,4 @@ Fetch error: http://www.mlno6.com/ => https://www.mlno6.com/: (60, 'SSL certific - \ No newline at end of file + diff --git a/src/chrome/content/rules/MMAHQ.xml b/src/chrome/content/rules/MMAHQ.xml index 6dd78db60b2d..139d945b4238 100644 --- a/src/chrome/content/rules/MMAHQ.xml +++ b/src/chrome/content/rules/MMAHQ.xml @@ -16,7 +16,7 @@ - + diff --git a/src/chrome/content/rules/MMOGA.xml b/src/chrome/content/rules/MMOGA.xml index 21918256ef06..86c2b456fbf0 100644 --- a/src/chrome/content/rules/MMOGA.xml +++ b/src/chrome/content/rules/MMOGA.xml @@ -1,15 +1,16 @@ - - + + + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/MMO_Culture.xml b/src/chrome/content/rules/MMO_Culture.xml index 138f336a3576..6197fcf50b6c 100644 --- a/src/chrome/content/rules/MMO_Culture.xml +++ b/src/chrome/content/rules/MMO_Culture.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/MOBIUS.xml b/src/chrome/content/rules/MOBIUS.xml index 00e794f13740..861fe270074e 100644 --- a/src/chrome/content/rules/MOBIUS.xml +++ b/src/chrome/content/rules/MOBIUS.xml @@ -3,21 +3,13 @@ - MOBIUS_Catalog.xml - - - www: mismatched - - Expired 2012-12-06 - --> - + + - - - - - - \ No newline at end of file + diff --git a/src/chrome/content/rules/MOBIUS_Catalog.xml b/src/chrome/content/rules/MOBIUS_Catalog.xml index 21a88b856440..222f9a896882 100644 --- a/src/chrome/content/rules/MOBIUS_Catalog.xml +++ b/src/chrome/content/rules/MOBIUS_Catalog.xml @@ -8,13 +8,11 @@ - - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/MODX.xml b/src/chrome/content/rules/MODX.xml index 83d4d1ff992b..0931c089e04c 100644 --- a/src/chrome/content/rules/MODX.xml +++ b/src/chrome/content/rules/MODX.xml @@ -18,11 +18,11 @@ --> - + + - + diff --git a/src/chrome/content/rules/MORryde.com.xml b/src/chrome/content/rules/MORryde.com.xml new file mode 100644 index 000000000000..14493b77260d --- /dev/null +++ b/src/chrome/content/rules/MORryde.com.xml @@ -0,0 +1,18 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/MPI_web.org.xml b/src/chrome/content/rules/MPI_web.org.xml index 9fe5ef4884af..a4b4ca6c8ff2 100644 --- a/src/chrome/content/rules/MPI_web.org.xml +++ b/src/chrome/content/rules/MPI_web.org.xml @@ -21,7 +21,9 @@ - + + + @@ -34,7 +36,6 @@ - + diff --git a/src/chrome/content/rules/MPNewMedia.xml b/src/chrome/content/rules/MPNewMedia.xml index 968a6c591070..27d85938815d 100644 --- a/src/chrome/content/rules/MPNewMedia.xml +++ b/src/chrome/content/rules/MPNewMedia.xml @@ -1,4 +1,4 @@ - - + + diff --git a/src/chrome/content/rules/MPlayer.xml b/src/chrome/content/rules/MPlayer.xml index 19eb377010af..c6b5f897261d 100644 --- a/src/chrome/content/rules/MPlayer.xml +++ b/src/chrome/content/rules/MPlayer.xml @@ -13,7 +13,7 @@ Fetch error: http://bugzilla.mplayerhq.hu/ => https://bugzilla.mplayerhq.hu/: (7 ʳ Refused --> - + diff --git a/src/chrome/content/rules/MPort.ua.xml b/src/chrome/content/rules/MPort.ua.xml index 014b93bad6b9..914c73420f66 100644 --- a/src/chrome/content/rules/MPort.ua.xml +++ b/src/chrome/content/rules/MPort.ua.xml @@ -1,17 +1,22 @@ - + - - + + + diff --git a/src/chrome/content/rules/MQTT.org.xml b/src/chrome/content/rules/MQTT.org.xml new file mode 100644 index 000000000000..d554eb894253 --- /dev/null +++ b/src/chrome/content/rules/MQTT.org.xml @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/src/chrome/content/rules/MR_PORTER.xml b/src/chrome/content/rules/MR_PORTER.xml index bd185a2881e7..b05feb243506 100644 --- a/src/chrome/content/rules/MR_PORTER.xml +++ b/src/chrome/content/rules/MR_PORTER.xml @@ -6,10 +6,12 @@ Non-2xx HTTP code: http://mrporter.com/ (200) => https://www.mrporter.com/ (403) !www: cert only matches www. --> - + - + + + @@ -18,7 +20,6 @@ Non-2xx HTTP code: http://mrporter.com/ (200) => https://www.mrporter.com/ (403) - + diff --git a/src/chrome/content/rules/MSDN.xml b/src/chrome/content/rules/MSDN.xml index 7286941380aa..c885ccd523b9 100644 --- a/src/chrome/content/rules/MSDN.xml +++ b/src/chrome/content/rules/MSDN.xml @@ -1,7 +1,5 @@ - + + + + - - - - - - - - - - - - - - - - - - - @@ -97,20 +69,8 @@ Non-2xx HTTP code: http://public.create.msdn.com/assets/ (200) => https://www.cr - blogs - forums.create --> - - - - - - - - + - + diff --git a/src/chrome/content/rules/MSF-Online.com.xml b/src/chrome/content/rules/MSF-Online.com.xml new file mode 100644 index 000000000000..38ec445973c4 --- /dev/null +++ b/src/chrome/content/rules/MSF-Online.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/MSF.org.au.xml b/src/chrome/content/rules/MSF.org.au.xml new file mode 100644 index 000000000000..c77593b837dd --- /dev/null +++ b/src/chrome/content/rules/MSF.org.au.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/MSI-Shop.de.xml b/src/chrome/content/rules/MSI-Shop.de.xml index 6781938e0eb9..86ea5e13516b 100644 --- a/src/chrome/content/rules/MSI-Shop.de.xml +++ b/src/chrome/content/rules/MSI-Shop.de.xml @@ -8,7 +8,7 @@ - + - - + + - + - diff --git a/src/chrome/content/rules/MSN.xml b/src/chrome/content/rules/MSN.xml index 3ce34d94ec26..eb5b3a43bac8 100644 --- a/src/chrome/content/rules/MSN.xml +++ b/src/chrome/content/rules/MSN.xml @@ -233,8 +233,8 @@ --> - - + + diff --git a/src/chrome/content/rules/MSobieh.com.xml b/src/chrome/content/rules/MSobieh.com.xml new file mode 100644 index 000000000000..86865b24b67c --- /dev/null +++ b/src/chrome/content/rules/MSobieh.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/MTAC.xml b/src/chrome/content/rules/MTAC.xml index bddbf1c5207c..f7c6dab5c5f7 100644 --- a/src/chrome/content/rules/MTAC.xml +++ b/src/chrome/content/rules/MTAC.xml @@ -5,7 +5,7 @@ Fetch error: http://mtac.org/ => https://www.mtac.org/: Cycle detected - URL alr - + diff --git a/src/chrome/content/rules/MTCCC.com.xml b/src/chrome/content/rules/MTCCC.com.xml new file mode 100644 index 000000000000..68e5b0835c9d --- /dev/null +++ b/src/chrome/content/rules/MTCCC.com.xml @@ -0,0 +1,15 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/MTNA.xml b/src/chrome/content/rules/MTNA.xml index 2c9dfea2d24f..f7b274c0a60a 100644 --- a/src/chrome/content/rules/MTNA.xml +++ b/src/chrome/content/rules/MTNA.xml @@ -6,10 +6,6 @@ - - - + diff --git a/src/chrome/content/rules/MTS-Banka.xml b/src/chrome/content/rules/MTS-Banka.xml new file mode 100644 index 000000000000..26145e428060 --- /dev/null +++ b/src/chrome/content/rules/MTS-Banka.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/MTurk.com.xml b/src/chrome/content/rules/MTurk.com.xml index 3e64d7ddfeb5..d67e6888053f 100644 --- a/src/chrome/content/rules/MTurk.com.xml +++ b/src/chrome/content/rules/MTurk.com.xml @@ -19,7 +19,7 @@ - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/MVP_National_Title.xml b/src/chrome/content/rules/MVP_National_Title.xml index ddaf1eec117f..e1041e95f808 100644 --- a/src/chrome/content/rules/MVP_National_Title.xml +++ b/src/chrome/content/rules/MVP_National_Title.xml @@ -6,4 +6,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/MXToolBox.xml b/src/chrome/content/rules/MXToolBox.xml index b41a63d61845..54f58d963669 100644 --- a/src/chrome/content/rules/MXToolBox.xml +++ b/src/chrome/content/rules/MXToolBox.xml @@ -38,7 +38,7 @@ - + https://www.myeddebt.com/: (28, 'Connection timed out after 20002 milliseconds') -Fetch error: http://www.myeddebt.com/ => https://www.myeddebt.com/: (28, 'Connection timed out after 20001 milliseconds') - -Automatically by https-everywhere-checker because: -Fetch error: http://myeddebt.com/ => https://www.myeddebt.com/: (51, "SSL: no alternative certificate subject name matches target host name 'myeddebt.com'") ---> - - - - - - - - diff --git a/src/chrome/content/rules/MYOB.com.xml b/src/chrome/content/rules/MYOB.com.xml index 875d93123e4b..d45217932809 100644 --- a/src/chrome/content/rules/MYOB.com.xml +++ b/src/chrome/content/rules/MYOB.com.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://myob.com/ => https://myob.com/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + diff --git a/src/chrome/content/rules/Ma.ttias.be.xml b/src/chrome/content/rules/Ma.ttias.be.xml index 8247f5043e1b..86fc473fbb82 100644 --- a/src/chrome/content/rules/Ma.ttias.be.xml +++ b/src/chrome/content/rules/Ma.ttias.be.xml @@ -1,11 +1,7 @@ - - + - - + diff --git a/src/chrome/content/rules/MacArthur_Foundation.xml b/src/chrome/content/rules/MacArthur_Foundation.xml index 0fc54d9de7e9..2d87b3528b2d 100644 --- a/src/chrome/content/rules/MacArthur_Foundation.xml +++ b/src/chrome/content/rules/MacArthur_Foundation.xml @@ -21,7 +21,7 @@ Fetch error: http://owa.macfound.org/ => https://owa.macfound.org/: (51, "SSL: n * Secured by us --> - + diff --git a/src/chrome/content/rules/MacKeeper.com.xml b/src/chrome/content/rules/MacKeeper.com.xml index 020023095048..85a5c0fbe19b 100644 --- a/src/chrome/content/rules/MacKeeper.com.xml +++ b/src/chrome/content/rules/MacKeeper.com.xml @@ -24,7 +24,7 @@ - + - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - + + + - + + diff --git a/src/chrome/content/rules/MacRuby.org.xml b/src/chrome/content/rules/MacRuby.org.xml index 8c3e8c09f0f7..ec2b496df97c 100644 --- a/src/chrome/content/rules/MacRuby.org.xml +++ b/src/chrome/content/rules/MacRuby.org.xml @@ -8,11 +8,11 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.macruby.org/ => https://www.macruby.org/: (28, 'Connection timed out after 10000 milliseconds') Fetch error: http://macruby.org/ => https://www.macruby.org/: (28, 'Connection timed out after 10000 milliseconds') --> - + - + diff --git a/src/chrome/content/rules/MacWorld.com.au.xml b/src/chrome/content/rules/MacWorld.com.au.xml deleted file mode 100644 index 44ec940d06db..000000000000 --- a/src/chrome/content/rules/MacWorld.com.au.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/MacWorld.com.xml b/src/chrome/content/rules/MacWorld.com.xml index 7a91887ff4a9..95da562c62d4 100644 --- a/src/chrome/content/rules/MacWorld.com.xml +++ b/src/chrome/content/rules/MacWorld.com.xml @@ -1,42 +1,26 @@ - - - - - - - + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/MacaInfo.org.xml b/src/chrome/content/rules/MacaInfo.org.xml index e09feeddcf9c..59282637ca4e 100644 --- a/src/chrome/content/rules/MacaInfo.org.xml +++ b/src/chrome/content/rules/MacaInfo.org.xml @@ -4,10 +4,10 @@ - ^ (times out) --> - + - + diff --git a/src/chrome/content/rules/Macfarlane_Packaging.com.xml b/src/chrome/content/rules/Macfarlane_Packaging.com.xml index 096e422e01bb..a604d5531d74 100644 --- a/src/chrome/content/rules/Macfarlane_Packaging.com.xml +++ b/src/chrome/content/rules/Macfarlane_Packaging.com.xml @@ -12,7 +12,7 @@ - + diff --git a/src/chrome/content/rules/Macgamestore.com.xml b/src/chrome/content/rules/Macgamestore.com.xml index 13ef74d27c35..3494a2776f96 100644 --- a/src/chrome/content/rules/Macgamestore.com.xml +++ b/src/chrome/content/rules/Macgamestore.com.xml @@ -5,7 +5,7 @@ Fetch error: http://macgamestore.com/ => https://macgamestore.com/: (60, 'SSL ce Fetch error: http://www.macgamestore.com/ => https://www.macgamestore.com/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + diff --git a/src/chrome/content/rules/Machines_Like_Us.xml b/src/chrome/content/rules/Machines_Like_Us.xml index 413064925b0a..1ecdd59a097f 100644 --- a/src/chrome/content/rules/Machines_Like_Us.xml +++ b/src/chrome/content/rules/Machines_Like_Us.xml @@ -7,7 +7,7 @@ Fetch error: http://www.machineslikeus.com/ => https://machineslikeus.com/: (7, Cert doesn't match www. --> - + diff --git a/src/chrome/content/rules/Macmillan.xml b/src/chrome/content/rules/Macmillan.xml deleted file mode 100644 index 111c9e227583..000000000000 --- a/src/chrome/content/rules/Macmillan.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Macquarie.com.au.xml b/src/chrome/content/rules/Macquarie.com.au.xml new file mode 100644 index 000000000000..f9291c49e1c4 --- /dev/null +++ b/src/chrome/content/rules/Macquarie.com.au.xml @@ -0,0 +1,108 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Macquarie.com.xml b/src/chrome/content/rules/Macquarie.com.xml new file mode 100644 index 000000000000..02ebb33d1d02 --- /dev/null +++ b/src/chrome/content/rules/Macquarie.com.xml @@ -0,0 +1,210 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Mad_Mimi.com.xml b/src/chrome/content/rules/Mad_Mimi.com.xml index 256f0e155975..12a667f16b75 100644 --- a/src/chrome/content/rules/Mad_Mimi.com.xml +++ b/src/chrome/content/rules/Mad_Mimi.com.xml @@ -36,7 +36,10 @@ - + + + + - + diff --git a/src/chrome/content/rules/MadgexJB.com.xml b/src/chrome/content/rules/MadgexJB.com.xml index a9c4357df88e..98897952f186 100644 --- a/src/chrome/content/rules/MadgexJB.com.xml +++ b/src/chrome/content/rules/MadgexJB.com.xml @@ -11,7 +11,7 @@ Fetch error: http://ijobs-rs.madgexjb.com/ => https://ijobs-rs.madgexjb.com/: (5 - ijobs-rs.madgexjb.com --> - + @@ -22,7 +22,7 @@ Fetch error: http://ijobs-rs.madgexjb.com/ => https://ijobs-rs.madgexjb.com/: (5 --> - + - - - - - - - - - - + + + - - + diff --git a/src/chrome/content/rules/Mael_Soucaze.com.xml b/src/chrome/content/rules/Mael_Soucaze.com.xml deleted file mode 100644 index 341c46a5cd04..000000000000 --- a/src/chrome/content/rules/Mael_Soucaze.com.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Maemo.xml b/src/chrome/content/rules/Maemo.xml index ab59e6249e32..153da98e51c1 100644 --- a/src/chrome/content/rules/Maemo.xml +++ b/src/chrome/content/rules/Maemo.xml @@ -28,7 +28,7 @@ Fetch error: http://static.maemo.org/ => https://maemo.org/midcom-static/: (60, - wiki --> - + diff --git a/src/chrome/content/rules/Magazin.io.xml b/src/chrome/content/rules/Magazin.io.xml index 2e0b930adca7..dff60f5803d8 100644 --- a/src/chrome/content/rules/Magazin.io.xml +++ b/src/chrome/content/rules/Magazin.io.xml @@ -4,10 +4,10 @@ Disabled by https-everywhere-checker because: Fetch error: http://magazin.io/ => https://magazin.io/: (7, 'Failed to connect to magazin.io port 443: Connection refused') Fetch error: http://www.magazin.io/ => https://magazin.io/: (7, 'Failed to connect to magazin.io port 443: Connection refused') - www.magazin.io: Expired, mismatched - + www.magazin.io: Expired, mismatched - --> - + diff --git a/src/chrome/content/rules/Magazinesdirect.com.xml b/src/chrome/content/rules/Magazinesdirect.com.xml index 054206123b36..7767b0835f37 100644 --- a/src/chrome/content/rules/Magazinesdirect.com.xml +++ b/src/chrome/content/rules/Magazinesdirect.com.xml @@ -16,4 +16,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Mageia.xml b/src/chrome/content/rules/Mageia.xml index 7f987decc01f..a59098c3c894 100644 --- a/src/chrome/content/rules/Mageia.xml +++ b/src/chrome/content/rules/Mageia.xml @@ -28,7 +28,7 @@ Non-2xx HTTP code: http://svn.mageia.org/ (200) => https://svnweb.mageia.org/ (4 * Secured by us --> - + @@ -50,7 +50,7 @@ Non-2xx HTTP code: http://svn.mageia.org/ (200) => https://svnweb.mageia.org/ (4 - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Magentohotel.dk.xml b/src/chrome/content/rules/Magentohotel.dk.xml index e8718c928ef1..57cbcdeb63fb 100644 --- a/src/chrome/content/rules/Magentohotel.dk.xml +++ b/src/chrome/content/rules/Magentohotel.dk.xml @@ -10,7 +10,6 @@ - + diff --git a/src/chrome/content/rules/Magic.fr.xml b/src/chrome/content/rules/Magic.fr.xml index 23c1185751de..05e7dfb16c99 100644 --- a/src/chrome/content/rules/Magic.fr.xml +++ b/src/chrome/content/rules/Magic.fr.xml @@ -1,7 +1,6 @@ diff --git a/src/chrome/content/rules/Magictail.net.xml b/src/chrome/content/rules/Magictail.net.xml new file mode 100644 index 000000000000..a804718bb9ee --- /dev/null +++ b/src/chrome/content/rules/Magictail.net.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Magnatune.xml b/src/chrome/content/rules/Magnatune.xml deleted file mode 100644 index 94a07a857425..000000000000 --- a/src/chrome/content/rules/Magnatune.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Magnet.ie.xml b/src/chrome/content/rules/Magnet.ie.xml index 14c6a09f712d..9fb778577ad3 100644 --- a/src/chrome/content/rules/Magnet.ie.xml +++ b/src/chrome/content/rules/Magnet.ie.xml @@ -16,7 +16,7 @@ - + - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Magyar_Telekom.xml b/src/chrome/content/rules/Magyar_Telekom.xml index 64d8e20c9d7c..1b59341f63d4 100644 --- a/src/chrome/content/rules/Magyar_Telekom.xml +++ b/src/chrome/content/rules/Magyar_Telekom.xml @@ -6,9 +6,9 @@ Fetch error: http://pool.telekom.hu/ => https://pool.telekom.hu/: (28, 'Connecti - tudakozo.telekom.hu (cert mismatch, expired) - telefonkonyv.telekom.hu --> - + - + diff --git a/src/chrome/content/rules/Mahan-Consulting.xml b/src/chrome/content/rules/Mahan-Consulting.xml deleted file mode 100644 index 7c09f1222aa5..000000000000 --- a/src/chrome/content/rules/Mahan-Consulting.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Mahomet_Citizen.xml b/src/chrome/content/rules/Mahomet_Citizen.xml index e7b1d3524321..7f6ea220f19e 100644 --- a/src/chrome/content/rules/Mahomet_Citizen.xml +++ b/src/chrome/content/rules/Mahomet_Citizen.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Mahran.net.xml b/src/chrome/content/rules/Mahran.net.xml new file mode 100644 index 000000000000..e00476455091 --- /dev/null +++ b/src/chrome/content/rules/Mahran.net.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Maidstone.gov.uk.xml b/src/chrome/content/rules/Maidstone.gov.uk.xml index 6f8c25768460..8565cadd0178 100644 --- a/src/chrome/content/rules/Maidstone.gov.uk.xml +++ b/src/chrome/content/rules/Maidstone.gov.uk.xml @@ -54,7 +54,7 @@ - + - + https://www.faq.mail.com/: (6, 'Could not resolve host: www.faq.mail.com') - - For other United Internet coverage, see United-Internet.xml. - - - Nonfunctional subdomains: - - - search - - - Fully covered subdomains: - - - (www.) - - dl - - www.faq - - help - - sec-i0 - - service - ---> - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Mail.ru.xml b/src/chrome/content/rules/Mail.ru.xml index 1ed9474a18e4..832c349dd0bb 100644 --- a/src/chrome/content/rules/Mail.ru.xml +++ b/src/chrome/content/rules/Mail.ru.xml @@ -199,7 +199,6 @@ - @@ -230,10 +229,7 @@ - - - @@ -281,7 +277,6 @@ --> - diff --git a/src/chrome/content/rules/MailChimp.xml b/src/chrome/content/rules/MailChimp.xml index dd58cee6bb39..1d91c415d91e 100644 --- a/src/chrome/content/rules/MailChimp.xml +++ b/src/chrome/content/rules/MailChimp.xml @@ -156,13 +156,9 @@ - + - - - + diff --git a/src/chrome/content/rules/MailLift.com.xml b/src/chrome/content/rules/MailLift.com.xml deleted file mode 100644 index e7b44c63a91d..000000000000 --- a/src/chrome/content/rules/MailLift.com.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/MailNull.com.xml b/src/chrome/content/rules/MailNull.com.xml index d793834b06b6..689acb65c357 100644 --- a/src/chrome/content/rules/MailNull.com.xml +++ b/src/chrome/content/rules/MailNull.com.xml @@ -1,27 +1,13 @@ - - - + - - + - - - - + diff --git a/src/chrome/content/rules/Mailerlite.com.xml b/src/chrome/content/rules/Mailerlite.com.xml index 520c343f4e51..3e1ad46d3daf 100644 --- a/src/chrome/content/rules/Mailerlite.com.xml +++ b/src/chrome/content/rules/Mailerlite.com.xml @@ -18,7 +18,7 @@ - + - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Mailigen.xml b/src/chrome/content/rules/Mailigen.xml index fff36e40eb48..04d52f16c689 100644 --- a/src/chrome/content/rules/Mailigen.xml +++ b/src/chrome/content/rules/Mailigen.xml @@ -5,7 +5,7 @@ Fetch error: http://static-admin.mailigen.com/ => https://static-admin.mailigen. CDN buckets: - - 500745869.r.cdn77.net + - 500745869.r.cdn77.net - static.mailigen.com @@ -42,7 +42,7 @@ Fetch error: http://static-admin.mailigen.com/ => https://static-admin.mailigen. * Secured by us --> - + diff --git a/src/chrome/content/rules/Mailout_Interactive.com.xml b/src/chrome/content/rules/Mailout_Interactive.com.xml index 4f60dad6e42c..08e570c47bb7 100644 --- a/src/chrome/content/rules/Mailout_Interactive.com.xml +++ b/src/chrome/content/rules/Mailout_Interactive.com.xml @@ -14,7 +14,7 @@ Fetch error: http://www.mailoutinteractive.com/ => https://mailoutinteractive.co - www (shows industrymailout.com) --> - + diff --git a/src/chrome/content/rules/Mailstation.de.xml b/src/chrome/content/rules/Mailstation.de.xml deleted file mode 100644 index 30eef58265df..000000000000 --- a/src/chrome/content/rules/Mailstation.de.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Maine.gov.xml b/src/chrome/content/rules/Maine.gov.xml index 4822f3a0c65c..77d8f021ded4 100644 --- a/src/chrome/content/rules/Maine.gov.xml +++ b/src/chrome/content/rules/Maine.gov.xml @@ -32,7 +32,7 @@ Non-2xx HTTP code: http://www.maine.gov/local/ (200) => https://www.maine.gov/lo * Secured by us --> - + diff --git a/src/chrome/content/rules/Maine_Legislature.org.xml b/src/chrome/content/rules/Maine_Legislature.org.xml index c1f418d4f49b..80601a99c0cc 100644 --- a/src/chrome/content/rules/Maine_Legislature.org.xml +++ b/src/chrome/content/rules/Maine_Legislature.org.xml @@ -15,7 +15,7 @@ - + - - - - - - - - diff --git a/src/chrome/content/rules/Make-A-Wish-Foundation-MI.xml b/src/chrome/content/rules/Make-A-Wish-Foundation-MI.xml index 9a80a737cd1a..24e4f7d13008 100644 --- a/src/chrome/content/rules/Make-A-Wish-Foundation-MI.xml +++ b/src/chrome/content/rules/Make-A-Wish-Foundation-MI.xml @@ -8,9 +8,9 @@ Disabled by https-everywhere-checker because: Fetch error: http://wishmich.org/ => https://www.wishmich.org/: (51, "SSL: no alternative certificate subject name matches target host name 'www.wishmich.org'") Fetch error: http://www.wishmich.org/ => https://www.wishmich.org/: (51, "SSL: no alternative certificate subject name matches target host name 'www.wishmich.org'") --> - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Make-Projects.xml b/src/chrome/content/rules/Make-Projects.xml deleted file mode 100644 index 9ff171526306..000000000000 --- a/src/chrome/content/rules/Make-Projects.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/MakeFrontendShitAgain.party.xml b/src/chrome/content/rules/MakeFrontendShitAgain.party.xml new file mode 100644 index 000000000000..9499493eef9e --- /dev/null +++ b/src/chrome/content/rules/MakeFrontendShitAgain.party.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/MakeMyTrip.xml b/src/chrome/content/rules/MakeMyTrip.xml index 6837e7c76df2..3f078b421337 100644 --- a/src/chrome/content/rules/MakeMyTrip.xml +++ b/src/chrome/content/rules/MakeMyTrip.xml @@ -1,9 +1,28 @@ + + - - + + + + + + + + + - - + diff --git a/src/chrome/content/rules/MakeUseOf.com.xml b/src/chrome/content/rules/MakeUseOf.com.xml new file mode 100644 index 000000000000..c3738bc4ff6e --- /dev/null +++ b/src/chrome/content/rules/MakeUseOf.com.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/MakeUseOf.xml b/src/chrome/content/rules/MakeUseOf.xml deleted file mode 100644 index 5e7098271fd2..000000000000 --- a/src/chrome/content/rules/MakeUseOf.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Maker_Shed.xml b/src/chrome/content/rules/Maker_Shed.xml index 6856ab810dec..7736af3af6d5 100644 --- a/src/chrome/content/rules/Maker_Shed.xml +++ b/src/chrome/content/rules/Maker_Shed.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Makerbot.xml b/src/chrome/content/rules/Makerbot.xml index 85a948860252..04eb8e525d41 100644 --- a/src/chrome/content/rules/Makerbot.xml +++ b/src/chrome/content/rules/Makerbot.xml @@ -41,16 +41,19 @@ - + + + + + - + diff --git a/src/chrome/content/rules/Makery.info.xml b/src/chrome/content/rules/Makery.info.xml new file mode 100644 index 000000000000..e8eacaa5c3b3 --- /dev/null +++ b/src/chrome/content/rules/Makery.info.xml @@ -0,0 +1,19 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Makes.org.xml b/src/chrome/content/rules/Makes.org.xml index ca7cd654ffed..285c4fb8d2c7 100644 --- a/src/chrome/content/rules/Makes.org.xml +++ b/src/chrome/content/rules/Makes.org.xml @@ -16,7 +16,7 @@ Fetch error: http://gerv.makes.org/ => https://gerv.makes.org/: (60, 'SSL certif - gerv --> - + diff --git a/src/chrome/content/rules/MakiBox.xml b/src/chrome/content/rules/MakiBox.xml index 86f99837454a..2d76d19d7fec 100644 --- a/src/chrome/content/rules/MakiBox.xml +++ b/src/chrome/content/rules/MakiBox.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://makibox.com/ => https://makibox.com/: (28, 'Connection timed out after 10001 milliseconds') Fetch error: http://www.makibox.com/ => https://www.makibox.com/: (28, 'Connection timed out after 10000 milliseconds') --> - + @@ -19,4 +19,4 @@ Fetch error: http://www.makibox.com/ => https://www.makibox.com/: (28, 'Connecti - \ No newline at end of file + diff --git a/src/chrome/content/rules/Makrotex.hu.xml b/src/chrome/content/rules/Makrotex.hu.xml index aa0d6b13c905..d64914c7e8f9 100644 --- a/src/chrome/content/rules/Makrotex.hu.xml +++ b/src/chrome/content/rules/Makrotex.hu.xml @@ -18,7 +18,7 @@ ² Unsecurable <= plaintext reply --> - + diff --git a/src/chrome/content/rules/Malcovery.com.xml b/src/chrome/content/rules/Malcovery.com.xml index e8416e7b5ce8..56cd40bc894b 100644 --- a/src/chrome/content/rules/Malcovery.com.xml +++ b/src/chrome/content/rules/Malcovery.com.xml @@ -21,7 +21,7 @@ Fetch error: http://malcovery.com/ => https://www.malcovery.com/: (51, "SSL: no - www.malcovery.com --> - + diff --git a/src/chrome/content/rules/Maliit.org.xml b/src/chrome/content/rules/Maliit.org.xml deleted file mode 100644 index 93c65897ec3f..000000000000 --- a/src/chrome/content/rules/Maliit.org.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Maltris.org.xml b/src/chrome/content/rules/Maltris.org.xml index 869458f5055d..b7856ced1919 100644 --- a/src/chrome/content/rules/Maltris.org.xml +++ b/src/chrome/content/rules/Maltris.org.xml @@ -13,7 +13,7 @@ - + https://www.malware-research.or * Secured by us --> - + diff --git a/src/chrome/content/rules/MalwareDomainList.com.xml b/src/chrome/content/rules/MalwareDomainList.com.xml new file mode 100644 index 000000000000..5b2af70f274d --- /dev/null +++ b/src/chrome/content/rules/MalwareDomainList.com.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/MalwareTech.net.xml b/src/chrome/content/rules/MalwareTech.net.xml deleted file mode 100644 index f032db8e17a9..000000000000 --- a/src/chrome/content/rules/MalwareTech.net.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Malware_Tracker.com.xml b/src/chrome/content/rules/Malware_Tracker.com.xml index 6cead2acefe5..00b3af6e6a32 100644 --- a/src/chrome/content/rules/Malware_Tracker.com.xml +++ b/src/chrome/content/rules/Malware_Tracker.com.xml @@ -16,16 +16,16 @@ - + + - + diff --git a/src/chrome/content/rules/Malwarebytes.com.xml b/src/chrome/content/rules/Malwarebytes.com.xml index 8a007e39c762..11965db97634 100644 --- a/src/chrome/content/rules/Malwarebytes.com.xml +++ b/src/chrome/content/rules/Malwarebytes.com.xml @@ -1,3 +1,9 @@ + + diff --git a/src/chrome/content/rules/Malwarebytes.xml b/src/chrome/content/rules/Malwarebytes.xml index 6e556c52d721..9fc7d9c0fc20 100644 --- a/src/chrome/content/rules/Malwarebytes.xml +++ b/src/chrome/content/rules/Malwarebytes.xml @@ -1,20 +1,12 @@ - - - + + + @@ -98,28 +81,13 @@ Fetch error: http://static-cdn.malwarebytes.org/ => https://static.malwarebytes. - - - - - - - - - - - + - - - + diff --git a/src/chrome/content/rules/Malwaredomainlist.com.xml b/src/chrome/content/rules/Malwaredomainlist.com.xml deleted file mode 100644 index acc2b48e7c6b..000000000000 --- a/src/chrome/content/rules/Malwaredomainlist.com.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Mamba.xml b/src/chrome/content/rules/Mamba.xml index 4104b2214a74..29b589130061 100644 --- a/src/chrome/content/rules/Mamba.xml +++ b/src/chrome/content/rules/Mamba.xml @@ -1,51 +1,24 @@ - - - - - - - - - + + + - - + - + - + + + + + + + + diff --git a/src/chrome/content/rules/Mammut.xml b/src/chrome/content/rules/Mammut.xml index c171bc2688cd..46c3e2d668f7 100644 --- a/src/chrome/content/rules/Mammut.xml +++ b/src/chrome/content/rules/Mammut.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://mammut.ch/ => https://mammut.ch/: (28, 'Connection timed out after 20001 milliseconds') --> - + diff --git a/src/chrome/content/rules/Man_Group.xml b/src/chrome/content/rules/Man_Group.xml index 475b9586ecb0..2ad73bc753b2 100644 --- a/src/chrome/content/rules/Man_Group.xml +++ b/src/chrome/content/rules/Man_Group.xml @@ -2,7 +2,7 @@ - + diff --git a/src/chrome/content/rules/ManageEngine.jp.xml b/src/chrome/content/rules/ManageEngine.jp.xml index 6447bf80783e..e4af4e40ec86 100644 --- a/src/chrome/content/rules/ManageEngine.jp.xml +++ b/src/chrome/content/rules/ManageEngine.jp.xml @@ -1,44 +1,15 @@ - - - - - - + + - - - - - - - - - - - - + diff --git a/src/chrome/content/rules/ManageEngine.xml b/src/chrome/content/rules/ManageEngine.xml index f6fb5c7c64f4..ddb0c2291e6a 100644 --- a/src/chrome/content/rules/ManageEngine.xml +++ b/src/chrome/content/rules/ManageEngine.xml @@ -46,7 +46,7 @@ - + https://www.managedforexprog * Secured by us --> - + diff --git a/src/chrome/content/rules/Manchester.gov.uk.xml b/src/chrome/content/rules/Manchester.gov.uk.xml index cb746bb541af..f60d7526eea4 100644 --- a/src/chrome/content/rules/Manchester.gov.uk.xml +++ b/src/chrome/content/rules/Manchester.gov.uk.xml @@ -66,7 +66,7 @@ Fetch error: http://open.manchester.gov.uk/open => https://open.manchester.gov.u ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -118,7 +118,7 @@ Fetch error: http://open.manchester.gov.uk/open => https://open.manchester.gov.u - + - + + + + + + + + + - + - + diff --git a/src/chrome/content/rules/Manga.xml b/src/chrome/content/rules/Manga.xml index 9c556f546b50..917ebf10e690 100644 --- a/src/chrome/content/rules/Manga.xml +++ b/src/chrome/content/rules/Manga.xml @@ -8,7 +8,7 @@ Fetch error: http://secure.manga.com/ => https://secure.manga.com/: (7, 'Failed - (www.) (shows secure; mismatched, CN: secure.manga.com --> - + - + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Manhattanite.xml b/src/chrome/content/rules/Manhattanite.xml index 26367ec05c95..2cedae23b3eb 100644 --- a/src/chrome/content/rules/Manhattanite.xml +++ b/src/chrome/content/rules/Manhattanite.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Manhattanville_College.xml b/src/chrome/content/rules/Manhattanville_College.xml index b735ce2b2958..25c79b22e70e 100644 --- a/src/chrome/content/rules/Manhattanville_College.xml +++ b/src/chrome/content/rules/Manhattanville_College.xml @@ -16,4 +16,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Manila_Principles.org.xml b/src/chrome/content/rules/Manila_Principles.org.xml deleted file mode 100644 index 810124f79e97..000000000000 --- a/src/chrome/content/rules/Manila_Principles.org.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Manitu.de.xml b/src/chrome/content/rules/Manitu.de.xml index 19d09d2db9ef..c23ab5a8a39b 100644 --- a/src/chrome/content/rules/Manitu.de.xml +++ b/src/chrome/content/rules/Manitu.de.xml @@ -9,17 +9,17 @@ - + + - + diff --git a/src/chrome/content/rules/Mankier.com.xml b/src/chrome/content/rules/Mankier.com.xml deleted file mode 100644 index b2d2a54e76ec..000000000000 --- a/src/chrome/content/rules/Mankier.com.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Manlysealifesanctuary.com.au.xml b/src/chrome/content/rules/Manlysealifesanctuary.com.au.xml index 66501947f475..55dcb379ace8 100644 --- a/src/chrome/content/rules/Manlysealifesanctuary.com.au.xml +++ b/src/chrome/content/rules/Manlysealifesanctuary.com.au.xml @@ -6,7 +6,7 @@ Fetch error: http://secure.manlysealifesanctuary.com.au/ => https://secure.manly For other Merlin Entertainments coverage, see Merlin-Entertainments.xml. --> - + diff --git a/src/chrome/content/rules/Mannheim.de.xml b/src/chrome/content/rules/Mannheim.de.xml new file mode 100644 index 000000000000..732da331c164 --- /dev/null +++ b/src/chrome/content/rules/Mannheim.de.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Manor.ch.xml b/src/chrome/content/rules/Manor.ch.xml new file mode 100644 index 000000000000..cc243266bec3 --- /dev/null +++ b/src/chrome/content/rules/Manor.ch.xml @@ -0,0 +1,25 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Manta.xml b/src/chrome/content/rules/Manta.xml index 4e4d7ccfd855..471f6a5dbaf1 100644 --- a/src/chrome/content/rules/Manta.xml +++ b/src/chrome/content/rules/Manta.xml @@ -23,7 +23,7 @@ Fetch error: http://manta.com/ => https://manta.com/: (51, "SSL: no alternative * Works; mismatched, CN: www.manta.com --> - + diff --git a/src/chrome/content/rules/Manticore.xml b/src/chrome/content/rules/Manticore.xml deleted file mode 100644 index 6fda5ea8f061..000000000000 --- a/src/chrome/content/rules/Manticore.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/ManuFrog-Webbhotell.xml b/src/chrome/content/rules/ManuFrog-Webbhotell.xml index 07e3d1669a8f..165d8b36894a 100644 --- a/src/chrome/content/rules/ManuFrog-Webbhotell.xml +++ b/src/chrome/content/rules/ManuFrog-Webbhotell.xml @@ -11,7 +11,7 @@ - + diff --git a/src/chrome/content/rules/Manx_Computer_Bureau.xml b/src/chrome/content/rules/Manx_Computer_Bureau.xml index a2e0e44261ea..58983c762aaf 100644 --- a/src/chrome/content/rules/Manx_Computer_Bureau.xml +++ b/src/chrome/content/rules/Manx_Computer_Bureau.xml @@ -6,7 +6,7 @@ Fetch error: http://mail.mcb.net/ => https://mail.mcb.net/: (7, 'Failed to conne Fetch error: http://www.mcb.net/ => https://www.mcb.net/: (28, 'Connection timed out after 20002 milliseconds') --> - + @@ -15,4 +15,4 @@ Fetch error: http://www.mcb.net/ => https://www.mcb.net/: (28, 'Connection timed - \ No newline at end of file + diff --git a/src/chrome/content/rules/ManyVids.com.xml b/src/chrome/content/rules/ManyVids.com.xml index 2aa368f1f171..8bdcb2587dc6 100644 --- a/src/chrome/content/rules/ManyVids.com.xml +++ b/src/chrome/content/rules/ManyVids.com.xml @@ -25,7 +25,7 @@ --> - + - + - + diff --git a/src/chrome/content/rules/Mapping_Media_Freedom.org.xml b/src/chrome/content/rules/Mapping_Media_Freedom.org.xml index 1fc83e199dcb..207e41008ab9 100644 --- a/src/chrome/content/rules/Mapping_Media_Freedom.org.xml +++ b/src/chrome/content/rules/Mapping_Media_Freedom.org.xml @@ -29,7 +29,7 @@ --> - + - + + @@ -48,7 +49,6 @@ - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Marcan.st.xml b/src/chrome/content/rules/Marcan.st.xml index 2853e2ff1b6a..58abe8b996ff 100644 --- a/src/chrome/content/rules/Marcan.st.xml +++ b/src/chrome/content/rules/Marcan.st.xml @@ -6,7 +6,6 @@ - + diff --git a/src/chrome/content/rules/March_for_Babies.org.xml b/src/chrome/content/rules/March_for_Babies.org.xml index ab9b05342910..26797d933021 100644 --- a/src/chrome/content/rules/March_for_Babies.org.xml +++ b/src/chrome/content/rules/March_for_Babies.org.xml @@ -24,7 +24,8 @@ - + + @@ -33,7 +34,6 @@ - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Marchex.xml b/src/chrome/content/rules/Marchex.xml index 771c9d67f032..c4a19dd149cf 100644 --- a/src/chrome/content/rules/Marchex.xml +++ b/src/chrome/content/rules/Marchex.xml @@ -63,7 +63,7 @@ Fetch error: http://c.enhance.com/ => https://c.enhance.com/: (60, 'SSL certific ² Not secured by us <= invalid cert --> - + diff --git a/src/chrome/content/rules/Marcusoft.net.xml b/src/chrome/content/rules/Marcusoft.net.xml new file mode 100644 index 000000000000..e563d54f7ae1 --- /dev/null +++ b/src/chrome/content/rules/Marcusoft.net.xml @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/MarginalRevolution.com.xml b/src/chrome/content/rules/MarginalRevolution.com.xml new file mode 100644 index 000000000000..e90bb8666255 --- /dev/null +++ b/src/chrome/content/rules/MarginalRevolution.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Marhab.xml b/src/chrome/content/rules/Marhab.xml deleted file mode 100644 index 2bb8b8673e7b..000000000000 --- a/src/chrome/content/rules/Marhab.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/MariaDB.com.xml b/src/chrome/content/rules/MariaDB.com.xml index 5c9d3f7d0631..ef14a713f8be 100644 --- a/src/chrome/content/rules/MariaDB.com.xml +++ b/src/chrome/content/rules/MariaDB.com.xml @@ -1,35 +1,42 @@ - + - - - + + + + + + + + + + + + + + + + - + diff --git a/src/chrome/content/rules/MariaDB.org.xml b/src/chrome/content/rules/MariaDB.org.xml new file mode 100644 index 000000000000..513f0485f663 --- /dev/null +++ b/src/chrome/content/rules/MariaDB.org.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/MariaDB.xml b/src/chrome/content/rules/MariaDB.xml deleted file mode 100644 index 8e3459940db6..000000000000 --- a/src/chrome/content/rules/MariaDB.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Maricopa-Community-Colleges-self-signed.xml b/src/chrome/content/rules/Maricopa-Community-Colleges-self-signed.xml index fbf8ee6bd652..91a693e35303 100644 --- a/src/chrome/content/rules/Maricopa-Community-Colleges-self-signed.xml +++ b/src/chrome/content/rules/Maricopa-Community-Colleges-self-signed.xml @@ -14,11 +14,10 @@ - + - + diff --git a/src/chrome/content/rules/Maricopa-Community-Colleges.xml b/src/chrome/content/rules/Maricopa-Community-Colleges.xml index c0f0e899476e..e212b0bb55c7 100644 --- a/src/chrome/content/rules/Maricopa-Community-Colleges.xml +++ b/src/chrome/content/rules/Maricopa-Community-Colleges.xml @@ -10,12 +10,18 @@ - + + + + + + + + - - + @@ -24,7 +30,6 @@ - + diff --git a/src/chrome/content/rules/Marie_Claire.co.uk.xml b/src/chrome/content/rules/Marie_Claire.co.uk.xml index b4b3979eeeb1..9f4f6d1648b0 100644 --- a/src/chrome/content/rules/Marie_Claire.co.uk.xml +++ b/src/chrome/content/rules/Marie_Claire.co.uk.xml @@ -34,4 +34,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Marijuana_Majority.xml b/src/chrome/content/rules/Marijuana_Majority.xml deleted file mode 100644 index 40fe2a1fafa4..000000000000 --- a/src/chrome/content/rules/Marijuana_Majority.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Marin_Software.xml b/src/chrome/content/rules/Marin_Software.xml index 7e7c6e148e01..c91cc848f969 100644 --- a/src/chrome/content/rules/Marin_Software.xml +++ b/src/chrome/content/rules/Marin_Software.xml @@ -26,7 +26,7 @@ Fetch error: http://rt.marinsoftware.com/ => https://rt.marinsoftware.com/: (51, - www.marinsoftware.de (works, mismatched, CN: *.marinsoftware.com) --> - + diff --git a/src/chrome/content/rules/Marine_Depot.com.xml b/src/chrome/content/rules/Marine_Depot.com.xml index 77d0b4f681c7..70d777292f35 100644 --- a/src/chrome/content/rules/Marine_Depot.com.xml +++ b/src/chrome/content/rules/Marine_Depot.com.xml @@ -16,7 +16,8 @@ - + + @@ -25,7 +26,7 @@ Exceptions: --> - + diff --git a/src/chrome/content/rules/Marine_Shop.net.xml b/src/chrome/content/rules/Marine_Shop.net.xml index b304352f4294..43267c2d82a6 100644 --- a/src/chrome/content/rules/Marine_Shop.net.xml +++ b/src/chrome/content/rules/Marine_Shop.net.xml @@ -16,7 +16,7 @@ --> - + https://bellareed.com/: (7, 'Failed to connect to bellareed.com port 443: Connection refused') Fetch error: http://marinellarose.com/ => https://marinellarose.com/: (28, 'Operation timed out after 15001 milliseconds with 0 bytes received') --> - + - + - + - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/MarioBoards.com.xml b/src/chrome/content/rules/MarioBoards.com.xml new file mode 100644 index 000000000000..d0c9442bebbd --- /dev/null +++ b/src/chrome/content/rules/MarioBoards.com.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Marion_Star.xml b/src/chrome/content/rules/Marion_Star.xml index 3a515a6bfb34..068000965113 100644 --- a/src/chrome/content/rules/Marion_Star.xml +++ b/src/chrome/content/rules/Marion_Star.xml @@ -11,7 +11,8 @@ - + + - + diff --git a/src/chrome/content/rules/Mark-Monitor.xml b/src/chrome/content/rules/Mark-Monitor.xml index 6c60213d3aed..294f66802f96 100644 --- a/src/chrome/content/rules/Mark-Monitor.xml +++ b/src/chrome/content/rules/Mark-Monitor.xml @@ -11,7 +11,8 @@ - + + @@ -23,7 +24,6 @@ - + diff --git a/src/chrome/content/rules/MarkMail.xml b/src/chrome/content/rules/MarkMail.xml index 4cb3fdbb8dd2..9526ee1f77fa 100644 --- a/src/chrome/content/rules/MarkMail.xml +++ b/src/chrome/content/rules/MarkMail.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/MarkRuler.xml b/src/chrome/content/rules/MarkRuler.xml index bbede6e47b43..15cdc31997dc 100644 --- a/src/chrome/content/rules/MarkRuler.xml +++ b/src/chrome/content/rules/MarkRuler.xml @@ -4,7 +4,7 @@ - + + + + + + + + diff --git a/src/chrome/content/rules/Mark_NG.co.uk.xml b/src/chrome/content/rules/Mark_NG.co.uk.xml index b624947aba5a..88d74ad3b257 100644 --- a/src/chrome/content/rules/Mark_NG.co.uk.xml +++ b/src/chrome/content/rules/Mark_NG.co.uk.xml @@ -5,7 +5,7 @@ Fetch error: http://markng.co.uk/ => https://markng.co.uk/: (35, 'error:140770FC Fetch error: http://www.markng.co.uk/ => https://www.markng.co.uk/: (35, 'error:140770FC:SSL routines:SSL23_GET_SERVER_HELLO:unknown protocol') --> - + diff --git a/src/chrome/content/rules/Markee_Dragon.xml b/src/chrome/content/rules/Markee_Dragon.xml index a2ef97a0851e..96618859f189 100644 --- a/src/chrome/content/rules/Markee_Dragon.xml +++ b/src/chrome/content/rules/Markee_Dragon.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://markeedragon.com/ => https://markeedragon.com/: (51, "SSL: no alternative certificate subject name matches target host name 'markeedragon.com'") Fetch error: http://www.markeedragon.com/ => https://www.markeedragon.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.markeedragon.com'") --> - + @@ -16,4 +16,4 @@ Fetch error: http://www.markeedragon.com/ => https://www.markeedragon.com/: (51, - \ No newline at end of file + diff --git a/src/chrome/content/rules/Market_Dojo.xml b/src/chrome/content/rules/Market_Dojo.xml index e8b923bfe31b..db7e05f179ba 100644 --- a/src/chrome/content/rules/Market_Dojo.xml +++ b/src/chrome/content/rules/Market_Dojo.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://community.marketdojo.com/ => https://community.marketdojo.com/: (51, "SSL: no alternative certificate subject name matches target host name 'community.marketdojo.com'") --> - + @@ -12,9 +12,9 @@ Fetch error: http://community.marketdojo.com/ => https://community.marketdojo.co - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Marketing_G2.xml b/src/chrome/content/rules/Marketing_G2.xml index a8f899bf4921..d2fd4c270d89 100644 --- a/src/chrome/content/rules/Marketing_G2.xml +++ b/src/chrome/content/rules/Marketing_G2.xml @@ -13,4 +13,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Marketing_Matters.xml b/src/chrome/content/rules/Marketing_Matters.xml index 3c17acb4d807..7308486375f7 100644 --- a/src/chrome/content/rules/Marketing_Matters.xml +++ b/src/chrome/content/rules/Marketing_Matters.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Marketing_Research.org.xml b/src/chrome/content/rules/Marketing_Research.org.xml index 1366b9da2560..18e37d3e35cd 100644 --- a/src/chrome/content/rules/Marketing_Research.org.xml +++ b/src/chrome/content/rules/Marketing_Research.org.xml @@ -21,7 +21,7 @@ - + diff --git a/src/chrome/content/rules/Marketo.xml b/src/chrome/content/rules/Marketo.xml index 08a28f8e9b74..c348576174fe 100644 --- a/src/chrome/content/rules/Marketo.xml +++ b/src/chrome/content/rules/Marketo.xml @@ -117,7 +117,7 @@ --> - + - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Marketplace_Used.xml b/src/chrome/content/rules/Marketplace_Used.xml deleted file mode 100644 index ec2a0a9f99b6..000000000000 --- a/src/chrome/content/rules/Marketplace_Used.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Marketstudio.net.xml b/src/chrome/content/rules/Marketstudio.net.xml deleted file mode 100644 index 697040a9f667..000000000000 --- a/src/chrome/content/rules/Marketstudio.net.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Marketwatch.com.xml b/src/chrome/content/rules/Marketwatch.com.xml index 840b16d3d110..a8e02c9f0c79 100644 --- a/src/chrome/content/rules/Marketwatch.com.xml +++ b/src/chrome/content/rules/Marketwatch.com.xml @@ -1,47 +1,50 @@ + - - - + + + + + - - - - + + + diff --git a/src/chrome/content/rules/Marketwire.com.xml b/src/chrome/content/rules/Marketwire.com.xml deleted file mode 100644 index 7cb5d7dcc1f8..000000000000 --- a/src/chrome/content/rules/Marketwire.com.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Markit.xml b/src/chrome/content/rules/Markit.xml index b7a70d7eafa6..bdbe4338ad4c 100644 --- a/src/chrome/content/rules/Markit.xml +++ b/src/chrome/content/rules/Markit.xml @@ -1,7 +1,6 @@ - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Markonefoods.com.xml b/src/chrome/content/rules/Markonefoods.com.xml deleted file mode 100644 index 29c03cc5e2ea..000000000000 --- a/src/chrome/content/rules/Markonefoods.com.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Marktplaats.com.xml b/src/chrome/content/rules/Marktplaats.com.xml new file mode 100644 index 000000000000..9f36b0cae498 --- /dev/null +++ b/src/chrome/content/rules/Marktplaats.com.xml @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Marktplaats.nl.xml b/src/chrome/content/rules/Marktplaats.nl.xml new file mode 100644 index 000000000000..b959988e1a07 --- /dev/null +++ b/src/chrome/content/rules/Marktplaats.nl.xml @@ -0,0 +1,139 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Marktplaats.xml b/src/chrome/content/rules/Marktplaats.xml deleted file mode 100644 index 91b1e241f031..000000000000 --- a/src/chrome/content/rules/Marktplaats.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Marktplaatsautojournaal.nl.xml b/src/chrome/content/rules/Marktplaatsautojournaal.nl.xml new file mode 100644 index 000000000000..7c1c2f2d4430 --- /dev/null +++ b/src/chrome/content/rules/Marktplaatsautojournaal.nl.xml @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Marktplaatsjournaal.nl.xml b/src/chrome/content/rules/Marktplaatsjournaal.nl.xml new file mode 100644 index 000000000000..53d7b1c9d652 --- /dev/null +++ b/src/chrome/content/rules/Marktplaatsjournaal.nl.xml @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Marktplaatsperskamer.nl.xml b/src/chrome/content/rules/Marktplaatsperskamer.nl.xml new file mode 100644 index 000000000000..aee48cb2dddf --- /dev/null +++ b/src/chrome/content/rules/Marktplaatsperskamer.nl.xml @@ -0,0 +1,10 @@ + + + + + + + diff --git a/src/chrome/content/rules/MarsHut.net.xml b/src/chrome/content/rules/MarsHut.net.xml deleted file mode 100644 index 1af99e5006fd..000000000000 --- a/src/chrome/content/rules/MarsHut.net.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/MarsVenus.com.xml b/src/chrome/content/rules/MarsVenus.com.xml new file mode 100644 index 000000000000..0c7afb41910a --- /dev/null +++ b/src/chrome/content/rules/MarsVenus.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Marsica.lgbt.xml b/src/chrome/content/rules/Marsica.lgbt.xml new file mode 100644 index 000000000000..3e86c16f6d4b --- /dev/null +++ b/src/chrome/content/rules/Marsica.lgbt.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Marsupi.org.xml b/src/chrome/content/rules/Marsupi.org.xml index 5288edf0dbde..a834a2dfab6c 100644 --- a/src/chrome/content/rules/Marsupi.org.xml +++ b/src/chrome/content/rules/Marsupi.org.xml @@ -26,7 +26,7 @@ - + - + + - + - + - + - + diff --git a/src/chrome/content/rules/Martha-Stewart.xml b/src/chrome/content/rules/Martha-Stewart.xml index 7a3e486cd229..3e5f931a71ea 100644 --- a/src/chrome/content/rules/Martha-Stewart.xml +++ b/src/chrome/content/rules/Martha-Stewart.xml @@ -17,13 +17,19 @@ - + + + + - - + + + + + - + - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Marvel_Store.xml b/src/chrome/content/rules/Marvel_Store.xml index f3c262e71a88..fa043d1d8a4e 100644 --- a/src/chrome/content/rules/Marvel_Store.xml +++ b/src/chrome/content/rules/Marvel_Store.xml @@ -27,7 +27,7 @@ Fetch error: http://cdn.static1.marvelstore.com/ => https://cdn.static1.marvelst - www (some pages redirect to http) --> - + diff --git a/src/chrome/content/rules/Marvell.xml b/src/chrome/content/rules/Marvell.xml index 827ed5704318..cae1d49bab89 100644 --- a/src/chrome/content/rules/Marvell.xml +++ b/src/chrome/content/rules/Marvell.xml @@ -1,17 +1,18 @@ - + + + - + - + diff --git a/src/chrome/content/rules/Marxists.xml b/src/chrome/content/rules/Marxists.xml deleted file mode 100644 index 0373541b1918..000000000000 --- a/src/chrome/content/rules/Marxists.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Maryland_Shooters.xml b/src/chrome/content/rules/Maryland_Shooters.xml index a46cb1e98745..663d091e1190 100644 --- a/src/chrome/content/rules/Maryland_Shooters.xml +++ b/src/chrome/content/rules/Maryland_Shooters.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Mashable.com.xml b/src/chrome/content/rules/Mashable.com.xml new file mode 100644 index 000000000000..ffeab53ef08f --- /dev/null +++ b/src/chrome/content/rules/Mashable.com.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Mashape.com.xml b/src/chrome/content/rules/Mashape.com.xml index 712f6beb7898..456776cc26dc 100644 --- a/src/chrome/content/rules/Mashape.com.xml +++ b/src/chrome/content/rules/Mashape.com.xml @@ -5,7 +5,6 @@ Fetch error: http://api.analytics.mashape.com/ => https://api.analytics.mashape. Other Mashape rulesets: - - API_Analytics.com.xml CDN buckets: @@ -26,7 +25,7 @@ Fetch error: http://api.analytics.mashape.com/ => https://api.analytics.mashape. - www.mashape.com --> - + diff --git a/src/chrome/content/rules/Mashery.com.xml b/src/chrome/content/rules/Mashery.com.xml new file mode 100644 index 000000000000..163d387adfb5 --- /dev/null +++ b/src/chrome/content/rules/Mashery.com.xml @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Mashery.xml b/src/chrome/content/rules/Mashery.xml deleted file mode 100644 index ad4692f8d4f4..000000000000 --- a/src/chrome/content/rules/Mashery.xml +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/MassLive.com.xml b/src/chrome/content/rules/MassLive.com.xml index 698dc4750d5b..6f66784d86da 100644 --- a/src/chrome/content/rules/MassLive.com.xml +++ b/src/chrome/content/rules/MassLive.com.xml @@ -58,7 +58,7 @@ Fetch error: http://marketingsolutions.masslive.com/ => https://marketingsolutio * Secured by us --> - + diff --git a/src/chrome/content/rules/MassShootingTracker.org.xml b/src/chrome/content/rules/MassShootingTracker.org.xml new file mode 100644 index 000000000000..1d927c8824c2 --- /dev/null +++ b/src/chrome/content/rules/MassShootingTracker.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Mass_Relevance.xml b/src/chrome/content/rules/Mass_Relevance.xml index 35a8681bb5ed..460b4af4897a 100644 --- a/src/chrome/content/rules/Mass_Relevance.xml +++ b/src/chrome/content/rules/Mass_Relevance.xml @@ -23,21 +23,19 @@ - + + + - + + - - - + diff --git a/src/chrome/content/rules/MassageMagazine.xml b/src/chrome/content/rules/MassageMagazine.xml index 31128d997223..bca63eca3949 100644 --- a/src/chrome/content/rules/MassageMagazine.xml +++ b/src/chrome/content/rules/MassageMagazine.xml @@ -1,7 +1,7 @@ - + diff --git a/src/chrome/content/rules/Massengeschmack.tv.xml b/src/chrome/content/rules/Massengeschmack.tv.xml new file mode 100644 index 000000000000..a30c7b81cc07 --- /dev/null +++ b/src/chrome/content/rules/Massengeschmack.tv.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Massrel.io.xml b/src/chrome/content/rules/Massrel.io.xml index 5e157ab947fc..738dc3509111 100644 --- a/src/chrome/content/rules/Massrel.io.xml +++ b/src/chrome/content/rules/Massrel.io.xml @@ -3,7 +3,7 @@ - + https://smetrics.mastercardi ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -49,8 +49,8 @@ Fetch error: http://smetrics.mastercardintl.com/ => https://smetrics.mastercardi - - + + https://www.masterchan.org/: (51, "SSL: no alternative certificate subject name matches target host name 'www.masterchan.org'") --> - + diff --git a/src/chrome/content/rules/MasterNet.xml b/src/chrome/content/rules/MasterNet.xml index cf2c21283d63..30e486358359 100644 --- a/src/chrome/content/rules/MasterNet.xml +++ b/src/chrome/content/rules/MasterNet.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/MasterXchange.com.xml b/src/chrome/content/rules/MasterXchange.com.xml index 4afe7f7b2e5d..2e55054aa478 100644 --- a/src/chrome/content/rules/MasterXchange.com.xml +++ b/src/chrome/content/rules/MasterXchange.com.xml @@ -5,7 +5,7 @@ Fetch error: http://masterxchange.com/ => https://masterxchange.com/: (60, 'SSL Fetch error: http://www.masterxchange.com/ => https://www.masterxchange.com/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/Mastermind.xml b/src/chrome/content/rules/Mastermind.xml index db643733181c..6f0d364f0d65 100644 --- a/src/chrome/content/rules/Mastermind.xml +++ b/src/chrome/content/rules/Mastermind.xml @@ -19,7 +19,7 @@ Fetch error: http://secure2.mastermindpro.com/ => https://secure2.mastermindpro. * Secured by us --> - + diff --git a/src/chrome/content/rules/Masterminds_Digital.com.xml b/src/chrome/content/rules/Masterminds_Digital.com.xml index 86886751140e..15aaf0c905cd 100644 --- a/src/chrome/content/rules/Masterminds_Digital.com.xml +++ b/src/chrome/content/rules/Masterminds_Digital.com.xml @@ -40,7 +40,7 @@ Fetch error: http://support.mastermindsdigital.com/ => https://support.mastermin * Secured by us --> - + diff --git a/src/chrome/content/rules/Masters.com.au.xml b/src/chrome/content/rules/Masters.com.au.xml new file mode 100644 index 000000000000..fc43563e4b37 --- /dev/null +++ b/src/chrome/content/rules/Masters.com.au.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Mastodon.cloud.xml b/src/chrome/content/rules/Mastodon.cloud.xml new file mode 100644 index 000000000000..745716eca2ef --- /dev/null +++ b/src/chrome/content/rules/Mastodon.cloud.xml @@ -0,0 +1,23 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Masty.nl.xml b/src/chrome/content/rules/Masty.nl.xml deleted file mode 100644 index 9a4a3a3f7f05..000000000000 --- a/src/chrome/content/rules/Masty.nl.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Matatall.com.xml b/src/chrome/content/rules/Matatall.com.xml deleted file mode 100644 index 4ba853af9c7d..000000000000 --- a/src/chrome/content/rules/Matatall.com.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Matcc.company.xml b/src/chrome/content/rules/Matcc.company.xml new file mode 100644 index 000000000000..3142d7b61027 --- /dev/null +++ b/src/chrome/content/rules/Matcc.company.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Match-Trade.xml b/src/chrome/content/rules/Match-Trade.xml new file mode 100644 index 000000000000..7fd49271aab8 --- /dev/null +++ b/src/chrome/content/rules/Match-Trade.xml @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/MatchEnDirect.fr.xml b/src/chrome/content/rules/MatchEnDirect.fr.xml new file mode 100644 index 000000000000..6a88154bfcef --- /dev/null +++ b/src/chrome/content/rules/MatchEnDirect.fr.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/MathJax.org.xml b/src/chrome/content/rules/MathJax.org.xml new file mode 100644 index 000000000000..916023b7c654 --- /dev/null +++ b/src/chrome/content/rules/MathJax.org.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/MathematiquesFaciles.com.xml b/src/chrome/content/rules/MathematiquesFaciles.com.xml new file mode 100644 index 000000000000..12b41e18cd1d --- /dev/null +++ b/src/chrome/content/rules/MathematiquesFaciles.com.xml @@ -0,0 +1,11 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Mathtag.com.xml b/src/chrome/content/rules/Mathtag.com.xml index 7905e5197edd..4a62ce92721b 100644 --- a/src/chrome/content/rules/Mathtag.com.xml +++ b/src/chrome/content/rules/Mathtag.com.xml @@ -33,7 +33,7 @@ --> - + diff --git a/src/chrome/content/rules/MathyVanhoef.com.xml b/src/chrome/content/rules/MathyVanhoef.com.xml new file mode 100644 index 000000000000..01a97af1a178 --- /dev/null +++ b/src/chrome/content/rules/MathyVanhoef.com.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Matilda_Jane_Clothing.com.xml b/src/chrome/content/rules/Matilda_Jane_Clothing.com.xml deleted file mode 100644 index a66bd8f6f3b1..000000000000 --- a/src/chrome/content/rules/Matilda_Jane_Clothing.com.xml +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Matilda_Jane_Platinum.com.xml b/src/chrome/content/rules/Matilda_Jane_Platinum.com.xml index e203abfd8998..3051cd9dae96 100644 --- a/src/chrome/content/rules/Matilda_Jane_Platinum.com.xml +++ b/src/chrome/content/rules/Matilda_Jane_Platinum.com.xml @@ -1,7 +1,4 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Matomy-Media.xml b/src/chrome/content/rules/Matomy-Media.xml index 4d493b5f5b76..cf8706b9618a 100644 --- a/src/chrome/content/rules/Matomy-Media.xml +++ b/src/chrome/content/rules/Matomy-Media.xml @@ -1,15 +1,3 @@ - diff --git a/src/chrome/content/rules/Matomy_Market.xml b/src/chrome/content/rules/Matomy_Market.xml index 9458b78e4aa7..90c0dbb78f5e 100644 --- a/src/chrome/content/rules/Matomy_Market.xml +++ b/src/chrome/content/rules/Matomy_Market.xml @@ -1,21 +1,12 @@ - - + + - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Matrix.org.xml b/src/chrome/content/rules/Matrix.org.xml deleted file mode 100644 index 04b885e5134c..000000000000 --- a/src/chrome/content/rules/Matrix.org.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Matrix_Group.xml b/src/chrome/content/rules/Matrix_Group.xml index eb066dd36def..a711a27db4e7 100644 --- a/src/chrome/content/rules/Matrix_Group.xml +++ b/src/chrome/content/rules/Matrix_Group.xml @@ -26,4 +26,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Matrox.xml b/src/chrome/content/rules/Matrox.xml index ea9b6c7d2beb..94bcb7165757 100644 --- a/src/chrome/content/rules/Matrox.xml +++ b/src/chrome/content/rules/Matrox.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Matt.lgbt.xml b/src/chrome/content/rules/Matt.lgbt.xml new file mode 100644 index 000000000000..d9e8a2168f35 --- /dev/null +++ b/src/chrome/content/rules/Matt.lgbt.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Matt_Drollette.xml b/src/chrome/content/rules/Matt_Drollette.xml deleted file mode 100644 index c22d205a8d4e..000000000000 --- a/src/chrome/content/rules/Matt_Drollette.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/MauivaAirCruise.com.xml b/src/chrome/content/rules/MauivaAirCruise.com.xml index f7ecd4fa0180..2f721bda9b62 100644 --- a/src/chrome/content/rules/MauivaAirCruise.com.xml +++ b/src/chrome/content/rules/MauivaAirCruise.com.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Mauras.ch.xml b/src/chrome/content/rules/Mauras.ch.xml index 3061da506299..cae02a79a073 100644 --- a/src/chrome/content/rules/Mauras.ch.xml +++ b/src/chrome/content/rules/Mauras.ch.xml @@ -12,7 +12,7 @@ - + - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Maven.co.xml b/src/chrome/content/rules/Maven.co.xml index 0e1d54b9059c..8a3e786967e2 100644 --- a/src/chrome/content/rules/Maven.co.xml +++ b/src/chrome/content/rules/Maven.co.xml @@ -17,7 +17,7 @@ Fetch error: http://help.maven.co/ => https://help.maven.co/: Too many redirects - .maven.co --> - + diff --git a/src/chrome/content/rules/Mawdoo3.com.xml b/src/chrome/content/rules/Mawdoo3.com.xml new file mode 100644 index 000000000000..979baf937817 --- /dev/null +++ b/src/chrome/content/rules/Mawdoo3.com.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Max-Planck-Institute-for-Software-Systems.xml b/src/chrome/content/rules/Max-Planck-Institute-for-Software-Systems.xml index 0f744a58f17b..87a4ef1453be 100644 --- a/src/chrome/content/rules/Max-Planck-Institute-for-Software-Systems.xml +++ b/src/chrome/content/rules/Max-Planck-Institute-for-Software-Systems.xml @@ -10,14 +10,37 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + - + diff --git a/src/chrome/content/rules/MaxCDN.com.xml b/src/chrome/content/rules/MaxCDN.com.xml index fbca195968b4..6576c49f0ef6 100644 --- a/src/chrome/content/rules/MaxCDN.com.xml +++ b/src/chrome/content/rules/MaxCDN.com.xml @@ -89,7 +89,7 @@ - + - + diff --git a/src/chrome/content/rules/Maxdome.de.xml b/src/chrome/content/rules/Maxdome.de.xml index 63ba1990b9c0..6b49b0edb2e7 100644 --- a/src/chrome/content/rules/Maxdome.de.xml +++ b/src/chrome/content/rules/Maxdome.de.xml @@ -8,7 +8,7 @@ Mixed content: - blog.maxdome.de - community.maxdome.de - + Redirect to HTTP: - faq.maxdome.de - sony.maxdome.de diff --git a/src/chrome/content/rules/Maxim-IC.com.xml b/src/chrome/content/rules/Maxim-IC.com.xml index 43a4d4681b1a..0a6e171facac 100644 --- a/src/chrome/content/rules/Maxim-IC.com.xml +++ b/src/chrome/content/rules/Maxim-IC.com.xml @@ -10,7 +10,7 @@ Fetch error: http://maxim-ic.com/ => https://www.maxim-ic.com/: (60, 'SSL certif ^maxim-ic.com: Mismatched --> - + diff --git a/src/chrome/content/rules/Maxim_Integrated.com.xml b/src/chrome/content/rules/Maxim_Integrated.com.xml index 166394c21224..5a0007d7b5e3 100644 --- a/src/chrome/content/rules/Maxim_Integrated.com.xml +++ b/src/chrome/content/rules/Maxim_Integrated.com.xml @@ -26,7 +26,7 @@ Fetch error: http://search.maximintegrated.com/ => https://search.maximintegrate - shop.maximintegrated.com --> - + @@ -48,7 +48,7 @@ Fetch error: http://search.maximintegrated.com/ => https://search.maximintegrate - + - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Maxon.net.xml b/src/chrome/content/rules/Maxon.net.xml index 2abd52256c87..cffdd3fb024f 100644 --- a/src/chrome/content/rules/Maxon.net.xml +++ b/src/chrome/content/rules/Maxon.net.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://nimius.maxon.net/ => https://nimius.maxon.net/: (35, 'error:140770FC:SSL routines:SSL23_GET_SERVER_HELLO:unknown protocol') --> - + diff --git a/src/chrome/content/rules/Maxymiser.xml b/src/chrome/content/rules/Maxymiser.xml index 0d25d77ed6c9..9cf85235b570 100644 --- a/src/chrome/content/rules/Maxymiser.xml +++ b/src/chrome/content/rules/Maxymiser.xml @@ -8,19 +8,18 @@ Fetch error: http://maxymiser.com/ => https://maxymiser.com/: Too many redirects - maxymiser.hs.llnwd.net/o36/ --> - + - - + + + - - + diff --git a/src/chrome/content/rules/MayFirstPeopleLink-mismatches.xml b/src/chrome/content/rules/MayFirstPeopleLink-mismatches.xml index 9138dc5bba40..523e253a19e2 100644 --- a/src/chrome/content/rules/MayFirstPeopleLink-mismatches.xml +++ b/src/chrome/content/rules/MayFirstPeopleLink-mismatches.xml @@ -3,7 +3,7 @@ - + diff --git a/src/chrome/content/rules/MayFirstPeopleLink.xml b/src/chrome/content/rules/MayFirstPeopleLink.xml index 697a366e1700..ec4685542300 100644 --- a/src/chrome/content/rules/MayFirstPeopleLink.xml +++ b/src/chrome/content/rules/MayFirstPeopleLink.xml @@ -34,7 +34,7 @@ --> - + https://www.notesappstore.com/: (28, 'Connection timed out after 10000 milliseconds') Fetch error: http://www.notesappstore.com/ => https://www.notesappstore.com/: (28, 'Connection timed out after 10001 milliseconds') --> - + diff --git a/src/chrome/content/rules/Maybank-IB.com.xml b/src/chrome/content/rules/Maybank-IB.com.xml new file mode 100644 index 000000000000..bbb76182a5b1 --- /dev/null +++ b/src/chrome/content/rules/Maybank-IB.com.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Maybank-KE.co.th.xml b/src/chrome/content/rules/Maybank-KE.co.th.xml new file mode 100644 index 000000000000..c1c67ffac2e2 --- /dev/null +++ b/src/chrome/content/rules/Maybank-KE.co.th.xml @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Maybank-KE.com.xml b/src/chrome/content/rules/Maybank-KE.com.xml new file mode 100644 index 000000000000..a52d726dd288 --- /dev/null +++ b/src/chrome/content/rules/Maybank-KE.com.xml @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Maybank.co.id.xml b/src/chrome/content/rules/Maybank.co.id.xml new file mode 100644 index 000000000000..dfa2ef171e06 --- /dev/null +++ b/src/chrome/content/rules/Maybank.co.id.xml @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Maybank.com.sg.xml b/src/chrome/content/rules/Maybank.com.sg.xml new file mode 100644 index 000000000000..a1aeff4b4d74 --- /dev/null +++ b/src/chrome/content/rules/Maybank.com.sg.xml @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Maybank2e.com.xml b/src/chrome/content/rules/Maybank2e.com.xml new file mode 100644 index 000000000000..f3f29d70cfd1 --- /dev/null +++ b/src/chrome/content/rules/Maybank2e.com.xml @@ -0,0 +1,12 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Maybank2e.net.xml b/src/chrome/content/rules/Maybank2e.net.xml new file mode 100644 index 000000000000..d8ecf02aa5cb --- /dev/null +++ b/src/chrome/content/rules/Maybank2e.net.xml @@ -0,0 +1,12 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Maybank2u.com.kh.xml b/src/chrome/content/rules/Maybank2u.com.kh.xml new file mode 100644 index 000000000000..1d417eba1e77 --- /dev/null +++ b/src/chrome/content/rules/Maybank2u.com.kh.xml @@ -0,0 +1,12 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Maybank2u.com.my.xml b/src/chrome/content/rules/Maybank2u.com.my.xml new file mode 100644 index 000000000000..93eb9097a766 --- /dev/null +++ b/src/chrome/content/rules/Maybank2u.com.my.xml @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Maybank2u.com.ph.xml b/src/chrome/content/rules/Maybank2u.com.ph.xml new file mode 100644 index 000000000000..b1a1afc95db3 --- /dev/null +++ b/src/chrome/content/rules/Maybank2u.com.ph.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/MaybankHeart.com.xml b/src/chrome/content/rules/MaybankHeart.com.xml new file mode 100644 index 000000000000..a568f93996d5 --- /dev/null +++ b/src/chrome/content/rules/MaybankHeart.com.xml @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Maybe_Maimed.com.xml b/src/chrome/content/rules/Maybe_Maimed.com.xml index 1f542f70a0cc..a06f5042bac7 100644 --- a/src/chrome/content/rules/Maybe_Maimed.com.xml +++ b/src/chrome/content/rules/Maybe_Maimed.com.xml @@ -28,7 +28,7 @@ --> - + https://auth.mayday.us/: (60, 'SSL certif - .mayday.us --> - + diff --git a/src/chrome/content/rules/Maymay.net.xml b/src/chrome/content/rules/Maymay.net.xml index e859fbb4ecc6..db347a8a7210 100644 --- a/src/chrome/content/rules/Maymay.net.xml +++ b/src/chrome/content/rules/Maymay.net.xml @@ -14,7 +14,7 @@ --> - + https://mayoclinic.org/: (56, 'SSL read: error:00000000:lib(0):func(0):reason(0), errno 104') - -Disabled by https-everywhere-checker because: -Fetch error: http://mayoclinic.com/ => https://www.mayoclinic.com/: Redirect for 'http://mayoclinic.com/' missing Location - Nonfunctional domains: - - - www.mayo.edu (times out) - - - Problematic domains: - - - mayoclinic.com (cert only matches www) - ---> - - + - - - - - - + + + + + + - - - - - + + diff --git a/src/chrome/content/rules/MazaCoin.org.xml b/src/chrome/content/rules/MazaCoin.org.xml index e71710153391..4fd5a244e339 100644 --- a/src/chrome/content/rules/MazaCoin.org.xml +++ b/src/chrome/content/rules/MazaCoin.org.xml @@ -15,7 +15,7 @@ Fetch error: http://www.mazacoin.org/ => https://www.mazacoin.org/: (7, 'Failed - www.mazacoin.org --> - + diff --git a/src/chrome/content/rules/Mazacha.in.xml b/src/chrome/content/rules/Mazacha.in.xml index b7488f8a9080..dc51d314f0e4 100644 --- a/src/chrome/content/rules/Mazacha.in.xml +++ b/src/chrome/content/rules/Mazacha.in.xml @@ -8,7 +8,7 @@ Fetch error: http://mazacha.in/ => https://mazacha.in/: (28, 'Connection timed o - www.mazacha.in --> - + diff --git a/src/chrome/content/rules/Mbed.org.xml b/src/chrome/content/rules/Mbed.org.xml index 950df70b8419..80cc003c1b9c 100644 --- a/src/chrome/content/rules/Mbed.org.xml +++ b/src/chrome/content/rules/Mbed.org.xml @@ -46,7 +46,7 @@ --> - + - + + @@ -35,9 +36,6 @@ - - - diff --git a/src/chrome/content/rules/Mbnet.pt.xml b/src/chrome/content/rules/Mbnet.pt.xml index 287c5eed0cfe..7681c861b53b 100644 --- a/src/chrome/content/rules/Mbnet.pt.xml +++ b/src/chrome/content/rules/Mbnet.pt.xml @@ -1,5 +1,8 @@ + + + diff --git a/src/chrome/content/rules/McAfee-MX-Logic.xml b/src/chrome/content/rules/McAfee-MX-Logic.xml index a6b0c153842b..3148eebe9410 100644 --- a/src/chrome/content/rules/McAfee-MX-Logic.xml +++ b/src/chrome/content/rules/McAfee-MX-Logic.xml @@ -29,7 +29,7 @@ - + - + diff --git a/src/chrome/content/rules/McAfee.xml b/src/chrome/content/rules/McAfee.xml index f14e93384725..68e81656b3e2 100644 --- a/src/chrome/content/rules/McAfee.xml +++ b/src/chrome/content/rules/McAfee.xml @@ -44,7 +44,7 @@ Null response: - ngfwlicenses - + 403: - app - service-home @@ -115,9 +115,9 @@ - + - + diff --git a/src/chrome/content/rules/McClatchy.com.xml b/src/chrome/content/rules/McClatchy.com.xml index 7571aa4796c5..72b54c3027b1 100644 --- a/src/chrome/content/rules/McClatchy.com.xml +++ b/src/chrome/content/rules/McClatchy.com.xml @@ -15,7 +15,7 @@ Fetch error: http://subscriberservices.mcclatchy.com/ => https://subscriberservi - (www.) (works; mismatched, CN: media.mcclatchyinteractive.com) --> - + @@ -23,7 +23,6 @@ Fetch error: http://subscriberservices.mcclatchy.com/ => https://subscriberservi - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/McClatchy_Interactive.com.xml b/src/chrome/content/rules/McClatchy_Interactive.com.xml deleted file mode 100644 index 7827d95b5d02..000000000000 --- a/src/chrome/content/rules/McClatchy_Interactive.com.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/McDelivery-Malaysia.xml b/src/chrome/content/rules/McDelivery-Malaysia.xml index b16315c62173..151383f3cc53 100644 --- a/src/chrome/content/rules/McDelivery-Malaysia.xml +++ b/src/chrome/content/rules/McDelivery-Malaysia.xml @@ -6,7 +6,7 @@ Fetch error: http://mcdelivery.com.my/ => https://mcdelivery.com.my/: (35, 'Unkn CDN bucket: - d8x8n3ezc8rio.cloudfront.net --> - + diff --git a/src/chrome/content/rules/McEvoy-Group.xml b/src/chrome/content/rules/McEvoy-Group.xml index d934306d3081..73930393911d 100644 --- a/src/chrome/content/rules/McEvoy-Group.xml +++ b/src/chrome/content/rules/McEvoy-Group.xml @@ -3,7 +3,7 @@ - + diff --git a/src/chrome/content/rules/McGrhill-Warez.xml b/src/chrome/content/rules/McGrhill-Warez.xml index 0eef8b23c4e8..62fadd8e12e3 100644 --- a/src/chrome/content/rules/McGrhill-Warez.xml +++ b/src/chrome/content/rules/McGrhill-Warez.xml @@ -13,7 +13,7 @@ - + https://mcmaster.ca/: (60, 'SSL certificate Fetch error: http://www.mcmaster.ca/ => https://www.mcmaster.ca/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + diff --git a/src/chrome/content/rules/Mcdee.com.au.xml b/src/chrome/content/rules/Mcdee.com.au.xml index df0b38c6e5ef..957193717d8c 100644 --- a/src/chrome/content/rules/Mcdee.com.au.xml +++ b/src/chrome/content/rules/Mcdee.com.au.xml @@ -12,7 +12,7 @@ Fetch error: http://www.mcdee.com.au/ => https://www.mcdee.com.au/: (7, 'Failed * Secured by us --> - + diff --git a/src/chrome/content/rules/Mdm.ru.xml b/src/chrome/content/rules/Mdm.ru.xml index 6394b6f264b6..95c13505adbb 100644 --- a/src/chrome/content/rules/Mdm.ru.xml +++ b/src/chrome/content/rules/Mdm.ru.xml @@ -9,7 +9,7 @@ business. timed out coins. timed out tehnosila. redirect distrib. expired--> - + diff --git a/src/chrome/content/rules/Mdosch.de.xml b/src/chrome/content/rules/Mdosch.de.xml deleted file mode 100644 index 2e5f77a50c9a..000000000000 --- a/src/chrome/content/rules/Mdosch.de.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Me.bf.xml b/src/chrome/content/rules/Me.bf.xml new file mode 100644 index 000000000000..0a0711d182b2 --- /dev/null +++ b/src/chrome/content/rules/Me.bf.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Me.me.xml b/src/chrome/content/rules/Me.me.xml new file mode 100644 index 000000000000..4b6f050b5bf2 --- /dev/null +++ b/src/chrome/content/rules/Me.me.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/MeWe.com.xml b/src/chrome/content/rules/MeWe.com.xml new file mode 100644 index 000000000000..1ac21c487e54 --- /dev/null +++ b/src/chrome/content/rules/MeWe.com.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/MeXBT.com.xml b/src/chrome/content/rules/MeXBT.com.xml index 40ffbc795cec..b87460347289 100644 --- a/src/chrome/content/rules/MeXBT.com.xml +++ b/src/chrome/content/rules/MeXBT.com.xml @@ -9,7 +9,7 @@ Fetch error: http://www.mexbt.com/ => https://www.mexbt.com/: (28, 'Operation ti - .mexbt.com --> - + @@ -21,7 +21,7 @@ Fetch error: http://www.mexbt.com/ => https://www.mexbt.com/: (28, 'Operation ti --> - + https://meanstinks.com/: (7, 'Failed to c - 45192e03bdcc882f78f4-4b80efdc0c25f8535e19785674c1f42a.r22.cf1.rackcdn.com --> - + @@ -22,4 +22,4 @@ Fetch error: http://meanstinks.com/ => https://meanstinks.com/: (7, 'Failed to c - \ No newline at end of file + diff --git a/src/chrome/content/rules/MeatandLivestockAustralia.xml b/src/chrome/content/rules/MeatandLivestockAustralia.xml index af61a079ee52..cfabd6cee591 100644 --- a/src/chrome/content/rules/MeatandLivestockAustralia.xml +++ b/src/chrome/content/rules/MeatandLivestockAustralia.xml @@ -1,7 +1,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/MedWatch.xml b/src/chrome/content/rules/MedWatch.xml index c609b83e04b3..e8950e9e2e4c 100644 --- a/src/chrome/content/rules/MedWatch.xml +++ b/src/chrome/content/rules/MedWatch.xml @@ -7,7 +7,7 @@ Fetch error: http://www.medwatch.dk/ => https://www.medwatch.dk/: (51, "SSL: no http://medwatch.dk/template/mwVer1-0/css/main.css?rev=35817 is essential for the layout but is initially considered mixed content. --> - + diff --git a/src/chrome/content/rules/Mederra-Group.xml b/src/chrome/content/rules/Mederra-Group.xml deleted file mode 100644 index a0f649d649e2..000000000000 --- a/src/chrome/content/rules/Mederra-Group.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Media-Storehouse.xml b/src/chrome/content/rules/Media-Storehouse.xml index 215133523aac..ed99110b1fa2 100644 --- a/src/chrome/content/rules/Media-Storehouse.xml +++ b/src/chrome/content/rules/Media-Storehouse.xml @@ -1,34 +1,32 @@ - + - + + + + + + - - - - - - - - + + diff --git a/src/chrome/content/rules/Media-clic.com.xml b/src/chrome/content/rules/Media-clic.com.xml deleted file mode 100644 index 5c77809f2b1e..000000000000 --- a/src/chrome/content/rules/Media-clic.com.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Media.net.xml b/src/chrome/content/rules/Media.net.xml index 1d239948c729..e1a1cad34395 100644 --- a/src/chrome/content/rules/Media.net.xml +++ b/src/chrome/content/rules/Media.net.xml @@ -48,7 +48,10 @@ --> - + + + + - + diff --git a/src/chrome/content/rules/MediaFire.com.xml b/src/chrome/content/rules/MediaFire.com.xml index 9c4862df8849..e9a7eae6dc8f 100644 --- a/src/chrome/content/rules/MediaFire.com.xml +++ b/src/chrome/content/rules/MediaFire.com.xml @@ -1,71 +1,26 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + - + + + + + + + + + + - - - - - - - - - - + + diff --git a/src/chrome/content/rules/MediaGoblin.org.xml b/src/chrome/content/rules/MediaGoblin.org.xml index 62cedbd7bf4a..53b9d2f4d901 100644 --- a/src/chrome/content/rules/MediaGoblin.org.xml +++ b/src/chrome/content/rules/MediaGoblin.org.xml @@ -25,4 +25,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/MediaMath.xml b/src/chrome/content/rules/MediaMath.xml index 94039fe5f131..2955274a5ab7 100644 --- a/src/chrome/content/rules/MediaMath.xml +++ b/src/chrome/content/rules/MediaMath.xml @@ -41,7 +41,7 @@ --> - + - - + - - - - - - + + + + - - - - - - + diff --git a/src/chrome/content/rules/MediaMind.xml b/src/chrome/content/rules/MediaMind.xml index ff46a2c57572..533c504d9936 100644 --- a/src/chrome/content/rules/MediaMind.xml +++ b/src/chrome/content/rules/MediaMind.xml @@ -1,67 +1,22 @@ + + + - - - - - - - - - - - - - + diff --git a/src/chrome/content/rules/MediaNet.xml b/src/chrome/content/rules/MediaNet.xml index 124900fdcdef..bf620b9117b2 100644 --- a/src/chrome/content/rules/MediaNet.xml +++ b/src/chrome/content/rules/MediaNet.xml @@ -2,7 +2,7 @@ - + diff --git a/src/chrome/content/rules/MediaNews-Group.xml b/src/chrome/content/rules/MediaNews-Group.xml index c53251b1bf86..e4f8f804bdd1 100644 --- a/src/chrome/content/rules/MediaNews-Group.xml +++ b/src/chrome/content/rules/MediaNews-Group.xml @@ -9,7 +9,7 @@ Fetch error: http://weather.mercurynews.com/ => https://www.weatherunderground.c - (origin.|www.)mercurynews.com (www: Akamai, redirects back to http; !www: timeout) - extras.mnginteractive.com (Akamai, redirects to http://.../ with "Directory Listing Denied") --> - + diff --git a/src/chrome/content/rules/MediaPost.com.xml b/src/chrome/content/rules/MediaPost.com.xml new file mode 100644 index 000000000000..9682181785bb --- /dev/null +++ b/src/chrome/content/rules/MediaPost.com.xml @@ -0,0 +1,11 @@ + + + + + + + diff --git a/src/chrome/content/rules/MediaPost.xml b/src/chrome/content/rules/MediaPost.xml deleted file mode 100644 index 4316785beb99..000000000000 --- a/src/chrome/content/rules/MediaPost.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/MediaSpan.xml b/src/chrome/content/rules/MediaSpan.xml deleted file mode 100644 index 231750d0ab87..000000000000 --- a/src/chrome/content/rules/MediaSpan.xml +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/MediaTakeOut.com.xml b/src/chrome/content/rules/MediaTakeOut.com.xml index ec1aac5d10bf..b0b8acc86494 100644 --- a/src/chrome/content/rules/MediaTakeOut.com.xml +++ b/src/chrome/content/rules/MediaTakeOut.com.xml @@ -19,7 +19,8 @@ - + + https://www.mediawatch.dk/: (51, "SSL: This renders poorly. The page requires two style sheets which are only served over http. --> - + diff --git a/src/chrome/content/rules/MediaWorks.xml b/src/chrome/content/rules/MediaWorks.xml index c21638f88287..da162612e280 100644 --- a/src/chrome/content/rules/MediaWorks.xml +++ b/src/chrome/content/rules/MediaWorks.xml @@ -30,7 +30,7 @@ - + diff --git a/src/chrome/content/rules/Media_Factory.xml b/src/chrome/content/rules/Media_Factory.xml deleted file mode 100644 index 3d5fc24b0c97..000000000000 --- a/src/chrome/content/rules/Media_Factory.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Mediaarts-db.jp.xml b/src/chrome/content/rules/Mediaarts-db.jp.xml deleted file mode 100644 index bbd914569fdb..000000000000 --- a/src/chrome/content/rules/Mediaarts-db.jp.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/Mediabistro.xml b/src/chrome/content/rules/Mediabistro.xml index b045f3beda06..0018f605bf3a 100644 --- a/src/chrome/content/rules/Mediabistro.xml +++ b/src/chrome/content/rules/Mediabistro.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://oxs.mediabistro.com/ => https://oxs.mediabistro.com/: (28, 'Connection timed out after 20001 milliseconds') --> - + @@ -14,7 +14,7 @@ Fetch error: http://oxs.mediabistro.com/ => https://oxs.mediabistro.com/: (28, ' - + - + + - + diff --git a/src/chrome/content/rules/Medialand.ru.xml b/src/chrome/content/rules/Medialand.ru.xml index ea39d16549ce..509f7342d116 100644 --- a/src/chrome/content/rules/Medialand.ru.xml +++ b/src/chrome/content/rules/Medialand.ru.xml @@ -13,7 +13,7 @@ Fetch error: http://mediamir.medialand.ru/ => https://mediamir.medialand.ru/: (6 ² 404; mismatched, CN: *.medialand.ru --> - + @@ -25,7 +25,6 @@ Fetch error: http://mediamir.medialand.ru/ => https://mediamir.medialand.ru/: (6 - + diff --git a/src/chrome/content/rules/Mediamarkt.ru.xml b/src/chrome/content/rules/Mediamarkt.ru.xml deleted file mode 100644 index e47b6a7270a3..000000000000 --- a/src/chrome/content/rules/Mediamarkt.ru.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Mediametrie-eStat.xml b/src/chrome/content/rules/Mediametrie-eStat.xml index 774436849eef..1e76fc1318db 100644 --- a/src/chrome/content/rules/Mediametrie-eStat.xml +++ b/src/chrome/content/rules/Mediametrie-eStat.xml @@ -17,7 +17,7 @@ - + diff --git a/src/chrome/content/rules/Median.xml b/src/chrome/content/rules/Median.xml index 22d25dcd4aaf..90d8d42689cc 100644 --- a/src/chrome/content/rules/Median.xml +++ b/src/chrome/content/rules/Median.xml @@ -6,11 +6,11 @@ Fetch error: http://audit.median.hu/ => https://audit.median.hu/: (7, 'Failed to (www.)?median.hu: Refused --> - + - + diff --git a/src/chrome/content/rules/Mediant.xml b/src/chrome/content/rules/Mediant.xml index 5c697d7da239..80e65d870b03 100644 --- a/src/chrome/content/rules/Mediant.xml +++ b/src/chrome/content/rules/Mediant.xml @@ -5,7 +5,7 @@ Fetch error: http://mandiant.net/ => https://mandiant.net/: (28, 'Operation time Fetch error: http://www.mandiant.net/ => https://www.mandiant.net/: (28, 'Operation timed out after 30002 milliseconds with 0 bytes received') --> - + @@ -16,4 +16,4 @@ Fetch error: http://www.mandiant.net/ => https://www.mandiant.net/: (28, 'Operat - \ No newline at end of file + diff --git a/src/chrome/content/rules/Mediapart.fr.xml b/src/chrome/content/rules/Mediapart.fr.xml deleted file mode 100644 index e6c35260b56a..000000000000 --- a/src/chrome/content/rules/Mediapart.fr.xml +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/MediasLibres.org.xml b/src/chrome/content/rules/MediasLibres.org.xml new file mode 100644 index 000000000000..d6403f31ba40 --- /dev/null +++ b/src/chrome/content/rules/MediasLibres.org.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Mediate.com.xml b/src/chrome/content/rules/Mediate.com.xml index ffa8d2b42f30..6e15d80b02f9 100644 --- a/src/chrome/content/rules/Mediate.com.xml +++ b/src/chrome/content/rules/Mediate.com.xml @@ -3,7 +3,7 @@ - + diff --git a/src/chrome/content/rules/Mediaxus.com.xml b/src/chrome/content/rules/Mediaxus.com.xml index d9a4ca5807b3..d6fbfecc6b1b 100644 --- a/src/chrome/content/rules/Mediaxus.com.xml +++ b/src/chrome/content/rules/Mediaxus.com.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/MedibankHealthSolutions.xml b/src/chrome/content/rules/MedibankHealthSolutions.xml deleted file mode 100644 index 47be6c3e4b29..000000000000 --- a/src/chrome/content/rules/MedibankHealthSolutions.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Medical_Jane.xml b/src/chrome/content/rules/Medical_Jane.xml index 051a026b19e5..2dc35622b07d 100644 --- a/src/chrome/content/rules/Medical_Jane.xml +++ b/src/chrome/content/rules/Medical_Jane.xml @@ -6,7 +6,7 @@ Fetch error: http://medicaljane.com/ => https://medicaljane.com/: (7, 'Failed to Disabled by https-everywhere-checker because: Fetch error: http://medicaljane.com/ => https://medicaljane.com/: (51, "SSL: no alternative certificate subject name matches target host name 'medicaljane.com'") --> - + @@ -17,4 +17,4 @@ Fetch error: http://medicaljane.com/ => https://medicaljane.com/: (51, "SSL: no - \ No newline at end of file + diff --git a/src/chrome/content/rules/Medical_Treatments_Management.xml b/src/chrome/content/rules/Medical_Treatments_Management.xml index b18e96c7287e..bb38ef25f538 100644 --- a/src/chrome/content/rules/Medical_Treatments_Management.xml +++ b/src/chrome/content/rules/Medical_Treatments_Management.xml @@ -5,7 +5,7 @@ - + @@ -18,7 +18,6 @@ - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Medici-manager.com.xml b/src/chrome/content/rules/Medici-manager.com.xml index bc6adada0d26..944cf21dd4f1 100644 --- a/src/chrome/content/rules/Medici-manager.com.xml +++ b/src/chrome/content/rules/Medici-manager.com.xml @@ -17,7 +17,7 @@ Fetch error: http://www.medici-manager.com/ => https://www.medici-manager.com/: * Secured by us --> - + diff --git a/src/chrome/content/rules/MediciGlobal.com-falsemixed.xml b/src/chrome/content/rules/MediciGlobal.com-falsemixed.xml deleted file mode 100644 index 95bd34dd8b6d..000000000000 --- a/src/chrome/content/rules/MediciGlobal.com-falsemixed.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/MediciGlobal.com.xml b/src/chrome/content/rules/MediciGlobal.com.xml index 95855a3546fd..518704776c04 100644 --- a/src/chrome/content/rules/MediciGlobal.com.xml +++ b/src/chrome/content/rules/MediciGlobal.com.xml @@ -31,7 +31,7 @@ Fetch error: http://stats.mediciglobal.com/ => https://stats.mediciglobal.com/: * Secured by us --> - + diff --git a/src/chrome/content/rules/MedicinesComplete.xml b/src/chrome/content/rules/MedicinesComplete.xml index 2b219258b3de..b19af17fd908 100644 --- a/src/chrome/content/rules/MedicinesComplete.xml +++ b/src/chrome/content/rules/MedicinesComplete.xml @@ -14,7 +14,7 @@ --> - + https://nysk.mediekompaniet.com/ - (www.) (refused) --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Medienstiftung-hsh.de.xml b/src/chrome/content/rules/Medienstiftung-hsh.de.xml deleted file mode 100644 index fdf6047ebad2..000000000000 --- a/src/chrome/content/rules/Medienstiftung-hsh.de.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Medius_Corp.com.xml b/src/chrome/content/rules/Medius_Corp.com.xml deleted file mode 100644 index c8a6472c9e2a..000000000000 --- a/src/chrome/content/rules/Medius_Corp.com.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Medius_Viewer.com.xml b/src/chrome/content/rules/Medius_Viewer.com.xml deleted file mode 100644 index 342c257ab2e3..000000000000 --- a/src/chrome/content/rules/Medius_Viewer.com.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Medscape.xml b/src/chrome/content/rules/Medscape.xml index 78c2aacbf908..0a319aa42a0c 100644 --- a/src/chrome/content/rules/Medscape.xml +++ b/src/chrome/content/rules/Medscape.xml @@ -23,13 +23,16 @@ --> - + + + + - + - - - - - - - - - diff --git a/src/chrome/content/rules/Meebo.xml b/src/chrome/content/rules/Meebo.xml index 65e70e8840b3..06c3280bfb0b 100644 --- a/src/chrome/content/rules/Meebo.xml +++ b/src/chrome/content/rules/Meebo.xml @@ -14,10 +14,12 @@ Fetch error: http://meebo.com/ => https://www.meebo.com/: (51, "SSL: no alternat - rd (works; expired 2013-01-26) --> - + - + + + @@ -26,7 +28,6 @@ Fetch error: http://meebo.com/ => https://www.meebo.com/: (51, "SSL: no alternat - + diff --git a/src/chrome/content/rules/Meego.xml b/src/chrome/content/rules/Meego.xml index 2b2f8c3fae33..a786103e6c25 100644 --- a/src/chrome/content/rules/Meego.xml +++ b/src/chrome/content/rules/Meego.xml @@ -7,7 +7,7 @@ Fetch error: http://www.meego.com/ => https://www.meego.com/: (51, "SSL: no alte Disabled by https-everywhere-checker because: Fetch error: http://meego.com/ => https://meego.com/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + diff --git a/src/chrome/content/rules/Meet.fm.xml b/src/chrome/content/rules/Meet.fm.xml deleted file mode 100644 index 35f64825fb92..000000000000 --- a/src/chrome/content/rules/Meet.fm.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/MeetInLeeds.xml b/src/chrome/content/rules/MeetInLeeds.xml index 38769f402db5..88d5985f294c 100644 --- a/src/chrome/content/rules/MeetInLeeds.xml +++ b/src/chrome/content/rules/MeetInLeeds.xml @@ -10,4 +10,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/MeetMe.xml b/src/chrome/content/rules/MeetMe.xml index 6f8da9e48d5a..aab520100772 100644 --- a/src/chrome/content/rules/MeetMe.xml +++ b/src/chrome/content/rules/MeetMe.xml @@ -34,7 +34,7 @@ Fetch error: http://vip.meetme.com/ => https://vip.meetme.com/: (51, "SSL: no al ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -73,7 +73,7 @@ Fetch error: http://vip.meetme.com/ => https://vip.meetme.com/: (51, "SSL: no al --> - + - + + @@ -14,13 +15,10 @@ - - + diff --git a/src/chrome/content/rules/Meetic.pt.xml b/src/chrome/content/rules/Meetic.pt.xml index 7d98b3bab22c..7509a5c388be 100644 --- a/src/chrome/content/rules/Meetic.pt.xml +++ b/src/chrome/content/rules/Meetic.pt.xml @@ -2,6 +2,6 @@ - + diff --git a/src/chrome/content/rules/Meetings.io.xml b/src/chrome/content/rules/Meetings.io.xml deleted file mode 100644 index e642623c29dd..000000000000 --- a/src/chrome/content/rules/Meetings.io.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Meetrics.xml b/src/chrome/content/rules/Meetrics.xml index 738b20cd58e4..d6e9ea9ebf87 100644 --- a/src/chrome/content/rules/Meetrics.xml +++ b/src/chrome/content/rules/Meetrics.xml @@ -1,20 +1,50 @@ - - - + + + - - - + + - + - - + + - - - + + + - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/MegWorld.xml b/src/chrome/content/rules/MegWorld.xml index 2c3a62afcc37..8d6c8d2d563d 100644 --- a/src/chrome/content/rules/MegWorld.xml +++ b/src/chrome/content/rules/MegWorld.xml @@ -8,10 +8,12 @@ Fetch error: http://megworld.co.uk/ => https://megworld.co.uk/: (60, 'SSL certif - www (http redirects to https://www; mismatched, CN: pump.megaworld.co.uk) --> - + - + + + @@ -20,4 +22,4 @@ Fetch error: http://megworld.co.uk/ => https://megworld.co.uk/: (60, 'SSL certif - \ No newline at end of file + diff --git a/src/chrome/content/rules/MegaBigPower.com.xml b/src/chrome/content/rules/MegaBigPower.com.xml index 64308cedb409..bd43b6791c0f 100644 --- a/src/chrome/content/rules/MegaBigPower.com.xml +++ b/src/chrome/content/rules/MegaBigPower.com.xml @@ -5,7 +5,7 @@ Fetch error: http://megabigpower.com/ => https://megabigpower.com/: (60, 'SSL ce Fetch error: http://www.megabigpower.com/ => https://www.megabigpower.com/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/MegaGames.com.xml b/src/chrome/content/rules/MegaGames.com.xml new file mode 100644 index 000000000000..8d8c076fe4cf --- /dev/null +++ b/src/chrome/content/rules/MegaGames.com.xml @@ -0,0 +1,16 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/MegaGlest.org.xml b/src/chrome/content/rules/MegaGlest.org.xml index 25c583b03039..f9ec4fbb6c42 100644 --- a/src/chrome/content/rules/MegaGlest.org.xml +++ b/src/chrome/content/rules/MegaGlest.org.xml @@ -1,33 +1,27 @@ + + + - - - - - - - - - - - - - + diff --git a/src/chrome/content/rules/MegaPath.xml b/src/chrome/content/rules/MegaPath.xml index 027adc5fba14..5ab459f98beb 100644 --- a/src/chrome/content/rules/MegaPath.xml +++ b/src/chrome/content/rules/MegaPath.xml @@ -23,7 +23,7 @@ Fetch error: http://vp1-voiceportal.megapath.com/Login/ => https://vp1-voiceport - www.megapath.com --> - + @@ -81,7 +81,7 @@ Fetch error: http://vp1-voiceportal.megapath.com/Login/ => https://vp1-voiceport - + https://megashare.im/: (51, "SSL: no alternative certificate subject name matches target host name 'megashare.im'") -Fetch error: http://www.megashare.im/ => https://www.megashare.im/: (51, "SSL: no alternative certificate subject name matches target host name 'www.megashare.im'") - - Mixed content: - - - Image from $self * - - * Secured by us - ---> - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/MegaStock.ru.xml b/src/chrome/content/rules/MegaStock.ru.xml new file mode 100644 index 000000000000..007d9c259114 --- /dev/null +++ b/src/chrome/content/rules/MegaStock.ru.xml @@ -0,0 +1,12 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/MegaStock.xml b/src/chrome/content/rules/MegaStock.xml deleted file mode 100644 index 51e00cc7e0d0..000000000000 --- a/src/chrome/content/rules/MegaStock.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Megabus.com.xml b/src/chrome/content/rules/Megabus.com.xml index da154e87ed00..ddeb870435bf 100644 --- a/src/chrome/content/rules/Megabus.com.xml +++ b/src/chrome/content/rules/Megabus.com.xml @@ -7,7 +7,7 @@ Fetch error: http://www.megabusgold.com/ => https://www.megabusgold.com/: (60, ' Nonfunctional domains: festivals.megabus.com (wrong domain for certificate) --> - + diff --git a/src/chrome/content/rules/MeiPian.xml b/src/chrome/content/rules/MeiPian.xml index a60a0607d9fb..a83df1b535d1 100644 --- a/src/chrome/content/rules/MeiPian.xml +++ b/src/chrome/content/rules/MeiPian.xml @@ -1,22 +1,19 @@ - - + + + + - diff --git a/src/chrome/content/rules/MeiTuan.com.xml b/src/chrome/content/rules/MeiTuan.com.xml index c1da1692277b..4c9be83c2210 100644 --- a/src/chrome/content/rules/MeiTuan.com.xml +++ b/src/chrome/content/rules/MeiTuan.com.xml @@ -3,74 +3,33 @@ MeiTuan.net.xml Cities: - There are more and more cities: https://www.meituan.com/index/changecity/initiative + There are more and more cities: https://www.meituan.com/changecity/ While this ruleset be created on 28 May 2016, there were 886 cities. On 20 Feb 2017, the number is 964. + On 13 June 2020, the number is more than 1k. We get error from travis: “The job exceeded the maximum time limit for jobs, and has been terminated.” To fix this issue, maybe exclusion is the best choise. - Use strict regex ^http://(\w+)\.meituan\.com/ to avoid redirects on 4th level subdomains (*.*.meituan.com) - - Different http/https content: - ^meituan.com - tech.meituan.com - union.meituan.com - zhao.meituan.com + Maybe we need strict regex ^http://(\w+)\.meituan\.com/ to avoid redirects on 4th level subdomains (*.*.meituan.com) Invalid cert: - ck.dsp.meituan.com api.mobile.meituan.com - - MCB: - i.meituan.com/mobile/ - waimai.meituan.com --> - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - + + - + - + + - - - - - + diff --git a/src/chrome/content/rules/MeiTuan.net.xml b/src/chrome/content/rules/MeiTuan.net.xml index 9ea772a30703..ae11553b0af2 100644 --- a/src/chrome/content/rules/MeiTuan.net.xml +++ b/src/chrome/content/rules/MeiTuan.net.xml @@ -1,8 +1,4 @@ - - - + diff --git a/src/chrome/content/rules/MeinVZ.xml b/src/chrome/content/rules/MeinVZ.xml index 9ad6ace9292b..1c51e745846c 100644 --- a/src/chrome/content/rules/MeinVZ.xml +++ b/src/chrome/content/rules/MeinVZ.xml @@ -1,5 +1,5 @@ - + diff --git a/src/chrome/content/rules/Mekanist.xml b/src/chrome/content/rules/Mekanist.xml index 6246e61a47f5..252ad3867a4c 100644 --- a/src/chrome/content/rules/Mekanist.xml +++ b/src/chrome/content/rules/Mekanist.xml @@ -5,11 +5,11 @@ Fetch error: http://www.mekanist.net/ => https://www.mekanist.net/: (60, 'SSL ce Fetch error: http://mekanist.net/ => https://www.mekanist.net/: (60, 'SSL certificate problem: certificate has expired') --> - + - + diff --git a/src/chrome/content/rules/Mellanox-problematic.xml b/src/chrome/content/rules/Mellanox-problematic.xml index e0dd97cd7ca4..856dd35adf5d 100644 --- a/src/chrome/content/rules/Mellanox-problematic.xml +++ b/src/chrome/content/rules/Mellanox-problematic.xml @@ -11,10 +11,9 @@ - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Melonbooks.co.jp.xml b/src/chrome/content/rules/Melonbooks.co.jp.xml index 31d812d7709b..02fafed3f6ae 100644 --- a/src/chrome/content/rules/Melonbooks.co.jp.xml +++ b/src/chrome/content/rules/Melonbooks.co.jp.xml @@ -1,4 +1,4 @@ - - + - + diff --git a/src/chrome/content/rules/Memberhealthplan.com.xml b/src/chrome/content/rules/Memberhealthplan.com.xml new file mode 100644 index 000000000000..4d7a364154b3 --- /dev/null +++ b/src/chrome/content/rules/Memberhealthplan.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Meme_Center.xml b/src/chrome/content/rules/Meme_Center.xml index ad733113c8d9..75e154f86d7f 100644 --- a/src/chrome/content/rules/Meme_Center.xml +++ b/src/chrome/content/rules/Meme_Center.xml @@ -6,18 +6,14 @@ --> - + - + - + - - - \ No newline at end of file + diff --git a/src/chrome/content/rules/Memo.tv.xml b/src/chrome/content/rules/Memo.tv.xml new file mode 100644 index 000000000000..e2816759f67e --- /dev/null +++ b/src/chrome/content/rules/Memo.tv.xml @@ -0,0 +1,17 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Memorial-University.xml b/src/chrome/content/rules/Memorial-University.xml index 988bcb954e46..d0a76b343cda 100644 --- a/src/chrome/content/rules/Memorial-University.xml +++ b/src/chrome/content/rules/Memorial-University.xml @@ -9,7 +9,7 @@ Fetch error: http://www.cs.mun.ca/courses/ => https://www.cs.mun.ca/courses/: (6 ¹: Connection timeout --> - + diff --git a/src/chrome/content/rules/Memory-Alpha.xml b/src/chrome/content/rules/Memory-Alpha.xml index de5fe4b02e75..3a084c78c848 100644 --- a/src/chrome/content/rules/Memory-Alpha.xml +++ b/src/chrome/content/rules/Memory-Alpha.xml @@ -22,13 +22,12 @@ - + - + - + diff --git a/src/chrome/content/rules/Memorydealers.xml b/src/chrome/content/rules/Memorydealers.xml deleted file mode 100644 index 2d1cae65e7d8..000000000000 --- a/src/chrome/content/rules/Memorydealers.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Memrise.xml b/src/chrome/content/rules/Memrise.xml deleted file mode 100644 index bb1140cfde2b..000000000000 --- a/src/chrome/content/rules/Memrise.xml +++ /dev/null @@ -1,79 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Memset.xml b/src/chrome/content/rules/Memset.xml index ab8523bb8f30..192e719e0cf9 100644 --- a/src/chrome/content/rules/Memset.xml +++ b/src/chrome/content/rules/Memset.xml @@ -21,7 +21,7 @@ --> - + diff --git a/src/chrome/content/rules/Memtest.org.xml b/src/chrome/content/rules/Memtest.org.xml new file mode 100644 index 000000000000..bde759dfde10 --- /dev/null +++ b/src/chrome/content/rules/Memtest.org.xml @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Mencap.org.uk.xml b/src/chrome/content/rules/Mencap.org.uk.xml index 002529b2f52a..3e6a40eb4495 100644 --- a/src/chrome/content/rules/Mencap.org.uk.xml +++ b/src/chrome/content/rules/Mencap.org.uk.xml @@ -41,7 +41,7 @@ Fetch error: http://www.jobs.mencap.org.uk/ => https://www.jobs.mencap.org.uk/: for ^, donate, www, yournetwork --> - + @@ -81,7 +81,7 @@ Fetch error: http://www.jobs.mencap.org.uk/ => https://www.jobs.mencap.org.uk/: - + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Mendeley.xml b/src/chrome/content/rules/Mendeley.xml deleted file mode 100644 index 77f48e51d377..000000000000 --- a/src/chrome/content/rules/Mendeley.xml +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Mendiant.com.xml b/src/chrome/content/rules/Mendiant.com.xml deleted file mode 100644 index 63933c0bd01f..000000000000 --- a/src/chrome/content/rules/Mendiant.com.xml +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Meningitis_Trust.xml b/src/chrome/content/rules/Meningitis_Trust.xml deleted file mode 100644 index e0a8a6a0bceb..000000000000 --- a/src/chrome/content/rules/Meningitis_Trust.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Mensa.org.uk.xml b/src/chrome/content/rules/Mensa.org.uk.xml index 8579e76b682b..17cd48eccae6 100644 --- a/src/chrome/content/rules/Mensa.org.uk.xml +++ b/src/chrome/content/rules/Mensa.org.uk.xml @@ -34,6 +34,6 @@ - + diff --git a/src/chrome/content/rules/Mensacard.de.xml b/src/chrome/content/rules/Mensacard.de.xml new file mode 100644 index 000000000000..3062df5832fe --- /dev/null +++ b/src/chrome/content/rules/Mensacard.de.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Menshealth.de.xml b/src/chrome/content/rules/Menshealth.de.xml index f2f8b6f6b993..1b252673566c 100644 --- a/src/chrome/content/rules/Menshealth.de.xml +++ b/src/chrome/content/rules/Menshealth.de.xml @@ -1,5 +1,47 @@ - - + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/MentalHealthServicesinAustralia.xml b/src/chrome/content/rules/MentalHealthServicesinAustralia.xml deleted file mode 100644 index 6db866ed7dcf..000000000000 --- a/src/chrome/content/rules/MentalHealthServicesinAustralia.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Mentalfloss.com.xml b/src/chrome/content/rules/Mentalfloss.com.xml new file mode 100644 index 000000000000..3b6773839e88 --- /dev/null +++ b/src/chrome/content/rules/Mentalfloss.com.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Mentalhealth.asn.au.xml b/src/chrome/content/rules/Mentalhealth.asn.au.xml index 462706a02090..76c8a369085a 100644 --- a/src/chrome/content/rules/Mentalhealth.asn.au.xml +++ b/src/chrome/content/rules/Mentalhealth.asn.au.xml @@ -14,8 +14,8 @@ --> - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Mentor-Graphics.xml b/src/chrome/content/rules/Mentor-Graphics.xml deleted file mode 100644 index be5de22a7220..000000000000 --- a/src/chrome/content/rules/Mentor-Graphics.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Mentor.com.xml b/src/chrome/content/rules/Mentor.com.xml new file mode 100644 index 000000000000..8a2d0ae644b4 --- /dev/null +++ b/src/chrome/content/rules/Mentor.com.xml @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Mentoring_Central.xml b/src/chrome/content/rules/Mentoring_Central.xml index d9bd052f2ced..a0eff0680785 100644 --- a/src/chrome/content/rules/Mentoring_Central.xml +++ b/src/chrome/content/rules/Mentoring_Central.xml @@ -8,16 +8,16 @@ Non-2xx HTTP code: http://www.mentoringcentral.net/ (200) => https://www.mentori Automatically by https-everywhere-checker because: Fetch error: http://mentoringcentral.net/ => https://mentoringcentral.net/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Meo.pt.xml b/src/chrome/content/rules/Meo.pt.xml index f1ba9de6b030..8cdb1b3c1b11 100644 --- a/src/chrome/content/rules/Meo.pt.xml +++ b/src/chrome/content/rules/Meo.pt.xml @@ -37,7 +37,7 @@ Fetch error: http://login.meo.pt/ => https://login.meo.pt/: (6, 'Could not resol lojas.meo.pt --> - + @@ -52,6 +52,6 @@ Fetch error: http://login.meo.pt/ => https://login.meo.pt/: (6, 'Could not resol - + diff --git a/src/chrome/content/rules/Mephi.ru-problematic.xml b/src/chrome/content/rules/Mephi.ru-problematic.xml index 893f2c7ee5e5..ce376f2da93f 100644 --- a/src/chrome/content/rules/Mephi.ru-problematic.xml +++ b/src/chrome/content/rules/Mephi.ru-problematic.xml @@ -10,7 +10,6 @@ - + diff --git a/src/chrome/content/rules/Mephi.ru.xml b/src/chrome/content/rules/Mephi.ru.xml index 21dec071e208..9fb66ddb26d8 100644 --- a/src/chrome/content/rules/Mephi.ru.xml +++ b/src/chrome/content/rules/Mephi.ru.xml @@ -37,7 +37,11 @@ --> - + + + + + @@ -47,7 +51,6 @@ - + diff --git a/src/chrome/content/rules/Mequoda.com.xml b/src/chrome/content/rules/Mequoda.com.xml index 5b4a87b340fe..430e4cb592eb 100644 --- a/src/chrome/content/rules/Mequoda.com.xml +++ b/src/chrome/content/rules/Mequoda.com.xml @@ -14,7 +14,7 @@ Fetch error: http://www.mequoda.com/ => https://www.mequoda.com/: (60, 'SSL cert - ^ (cert only matches www) --> - + @@ -26,4 +26,4 @@ Fetch error: http://www.mequoda.com/ => https://www.mequoda.com/: (60, 'SSL cert - \ No newline at end of file + diff --git a/src/chrome/content/rules/Mer-Project.xml b/src/chrome/content/rules/Mer-Project.xml deleted file mode 100644 index 4f4422da00f9..000000000000 --- a/src/chrome/content/rules/Mer-Project.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/MerNetwork.com.xml b/src/chrome/content/rules/MerNetwork.com.xml new file mode 100644 index 000000000000..ea95f67bba33 --- /dev/null +++ b/src/chrome/content/rules/MerNetwork.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/MerNetwork.xml b/src/chrome/content/rules/MerNetwork.xml deleted file mode 100644 index 94b1afe9f0d0..000000000000 --- a/src/chrome/content/rules/MerNetwork.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/src/chrome/content/rules/MerProject.org.xml b/src/chrome/content/rules/MerProject.org.xml new file mode 100644 index 000000000000..3e7abfcd02d9 --- /dev/null +++ b/src/chrome/content/rules/MerProject.org.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Mer_Project.org.xml b/src/chrome/content/rules/Mer_Project.org.xml deleted file mode 100644 index ecd94331bdb5..000000000000 --- a/src/chrome/content/rules/Mer_Project.org.xml +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Meraki.xml b/src/chrome/content/rules/Meraki.xml index 2c493caeed20..9ddb4c20ce91 100644 --- a/src/chrome/content/rules/Meraki.xml +++ b/src/chrome/content/rules/Meraki.xml @@ -14,4 +14,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Merca20.xml b/src/chrome/content/rules/Merca20.xml index 7f466cd70252..f79d4979c45a 100644 --- a/src/chrome/content/rules/Merca20.xml +++ b/src/chrome/content/rules/Merca20.xml @@ -1,21 +1,13 @@ - - + - + - + diff --git a/src/chrome/content/rules/MerchDirect.xml b/src/chrome/content/rules/MerchDirect.xml index c8ea6f1e78ca..7bb96456f720 100644 --- a/src/chrome/content/rules/MerchDirect.xml +++ b/src/chrome/content/rules/MerchDirect.xml @@ -17,7 +17,7 @@ Fetch error: http://www.merchdirect.com/ => https://www.merchdirect.com/: (51, " Some (most?) pages redirect to http --> - + diff --git a/src/chrome/content/rules/Merchantquest.net.xml b/src/chrome/content/rules/Merchantquest.net.xml index 951b1a813896..c875e4c995c5 100644 --- a/src/chrome/content/rules/Merchantquest.net.xml +++ b/src/chrome/content/rules/Merchantquest.net.xml @@ -4,10 +4,10 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Mercurial_SCM.xml b/src/chrome/content/rules/Mercurial_SCM.xml index e9015b73ee6a..7e65907ba526 100644 --- a/src/chrome/content/rules/Mercurial_SCM.xml +++ b/src/chrome/content/rules/Mercurial_SCM.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://mercurial.selenic.com/ => https://mercurial.selenic.com/: (6, 'Could not resolve host: mercurial.selenic.com') --> - + diff --git a/src/chrome/content/rules/Mercury_News.xml b/src/chrome/content/rules/Mercury_News.xml index 867c40a881f6..a8dfc8100dfa 100644 --- a/src/chrome/content/rules/Mercury_News.xml +++ b/src/chrome/content/rules/Mercury_News.xml @@ -12,9 +12,9 @@ - . - now --> - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/MercyShips.org.xml b/src/chrome/content/rules/MercyShips.org.xml new file mode 100644 index 000000000000..4c064868702e --- /dev/null +++ b/src/chrome/content/rules/MercyShips.org.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Mercy_Ships.xml b/src/chrome/content/rules/Mercy_Ships.xml deleted file mode 100644 index e52703548ce0..000000000000 --- a/src/chrome/content/rules/Mercy_Ships.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/MereThis.com.xml b/src/chrome/content/rules/MereThis.com.xml deleted file mode 100644 index a42283664e18..000000000000 --- a/src/chrome/content/rules/MereThis.com.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Meritrust_CU.org.xml b/src/chrome/content/rules/Meritrust_CU.org.xml index 3b2445588780..72c711bbe051 100644 --- a/src/chrome/content/rules/Meritrust_CU.org.xml +++ b/src/chrome/content/rules/Meritrust_CU.org.xml @@ -8,20 +8,20 @@ - + + - + - + diff --git a/src/chrome/content/rules/Merkur.de.xml b/src/chrome/content/rules/Merkur.de.xml index 994a0288cb03..fe2d0b06d07d 100644 --- a/src/chrome/content/rules/Merkur.de.xml +++ b/src/chrome/content/rules/Merkur.de.xml @@ -1,45 +1,33 @@ - - - - + + + + + + + - + + + diff --git a/src/chrome/content/rules/Merlin-Entertainments.xml b/src/chrome/content/rules/Merlin-Entertainments.xml deleted file mode 100644 index ef8e7a6ead86..000000000000 --- a/src/chrome/content/rules/Merlin-Entertainments.xml +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Merlinux.xml b/src/chrome/content/rules/Merlinux.xml index 97af9ba13b58..7faa1e0590e9 100644 --- a/src/chrome/content/rules/Merlinux.xml +++ b/src/chrome/content/rules/Merlinux.xml @@ -1,19 +1,6 @@ - - - - - - - - - - - - - - - + + + + + diff --git a/src/chrome/content/rules/Mermaid-kat-shop.de.xml b/src/chrome/content/rules/Mermaid-kat-shop.de.xml new file mode 100644 index 000000000000..25634abe3aee --- /dev/null +++ b/src/chrome/content/rules/Mermaid-kat-shop.de.xml @@ -0,0 +1,10 @@ + + + + + + + diff --git a/src/chrome/content/rules/Mermaidkatshop.co.uk.xml b/src/chrome/content/rules/Mermaidkatshop.co.uk.xml new file mode 100644 index 000000000000..033cbd7d1869 --- /dev/null +++ b/src/chrome/content/rules/Mermaidkatshop.co.uk.xml @@ -0,0 +1,10 @@ + + + + + + + diff --git a/src/chrome/content/rules/Mermaidkatshop.com.xml b/src/chrome/content/rules/Mermaidkatshop.com.xml new file mode 100644 index 000000000000..6ae0fc6e0b3a --- /dev/null +++ b/src/chrome/content/rules/Mermaidkatshop.com.xml @@ -0,0 +1,10 @@ + + + + + + + diff --git a/src/chrome/content/rules/Mermaidtailaustralia.com.au.xml b/src/chrome/content/rules/Mermaidtailaustralia.com.au.xml new file mode 100644 index 000000000000..38d859cc5b78 --- /dev/null +++ b/src/chrome/content/rules/Mermaidtailaustralia.com.au.xml @@ -0,0 +1,13 @@ + + + + + + + diff --git a/src/chrome/content/rules/Merton.gov.uk.xml b/src/chrome/content/rules/Merton.gov.uk.xml index e0e6e723e367..0f307ff7915b 100644 --- a/src/chrome/content/rules/Merton.gov.uk.xml +++ b/src/chrome/content/rules/Merton.gov.uk.xml @@ -105,7 +105,7 @@ - + + + + + + + + + diff --git a/src/chrome/content/rules/MesOutils.com.xml b/src/chrome/content/rules/MesOutils.com.xml new file mode 100644 index 000000000000..341e7535394f --- /dev/null +++ b/src/chrome/content/rules/MesOutils.com.xml @@ -0,0 +1,11 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Mesa3d.org.xml b/src/chrome/content/rules/Mesa3d.org.xml new file mode 100644 index 000000000000..9e9d82a66b5d --- /dev/null +++ b/src/chrome/content/rules/Mesa3d.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Mesh-Internet.xml b/src/chrome/content/rules/Mesh-Internet.xml index 4a08da8c9d9c..3ef0242846c5 100644 --- a/src/chrome/content/rules/Mesh-Internet.xml +++ b/src/chrome/content/rules/Mesh-Internet.xml @@ -8,13 +8,13 @@ --> - + + - + - + diff --git a/src/chrome/content/rules/MesonBuild.com.xml b/src/chrome/content/rules/MesonBuild.com.xml new file mode 100644 index 000000000000..3cdf8c7fdb2c --- /dev/null +++ b/src/chrome/content/rules/MesonBuild.com.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Messagingengine.com.xml b/src/chrome/content/rules/Messagingengine.com.xml deleted file mode 100644 index 906436ae2011..000000000000 --- a/src/chrome/content/rules/Messagingengine.com.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Messenger.com.xml b/src/chrome/content/rules/Messenger.com.xml index 64bcb56bf108..6f49bb3b7496 100644 --- a/src/chrome/content/rules/Messenger.com.xml +++ b/src/chrome/content/rules/Messenger.com.xml @@ -1,28 +1,21 @@ - - - - - + + + - + + - - - - - + diff --git a/src/chrome/content/rules/Messer_Financial.xml b/src/chrome/content/rules/Messer_Financial.xml index 057a6aab0e6c..83ef7c3369a7 100644 --- a/src/chrome/content/rules/Messer_Financial.xml +++ b/src/chrome/content/rules/Messer_Financial.xml @@ -4,9 +4,9 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Met-Office.xml b/src/chrome/content/rules/Met-Office.xml deleted file mode 100644 index 471fa3ebb822..000000000000 --- a/src/chrome/content/rules/Met-Office.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/MetOffice.gov.uk.xml b/src/chrome/content/rules/MetOffice.gov.uk.xml new file mode 100644 index 000000000000..7474e64e7eeb --- /dev/null +++ b/src/chrome/content/rules/MetOffice.gov.uk.xml @@ -0,0 +1,13 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/MetaCPAN.xml b/src/chrome/content/rules/MetaCPAN.xml index 638e58cb5e9e..c1db2f774423 100644 --- a/src/chrome/content/rules/MetaCPAN.xml +++ b/src/chrome/content/rules/MetaCPAN.xml @@ -8,7 +8,7 @@ - + - + + + + + diff --git a/src/chrome/content/rules/Metaboli.co.uk.xml b/src/chrome/content/rules/Metaboli.co.uk.xml index fb6657daa162..1935240d9dd6 100644 --- a/src/chrome/content/rules/Metaboli.co.uk.xml +++ b/src/chrome/content/rules/Metaboli.co.uk.xml @@ -17,7 +17,7 @@ * Secured by us --> - + @@ -33,7 +33,7 @@ - + - + https://old.metal-detector-t * Secured by us --> - + diff --git a/src/chrome/content/rules/Metasploit.xml b/src/chrome/content/rules/Metasploit.xml index 03b661fee932..1e4a12eadd94 100644 --- a/src/chrome/content/rules/Metasploit.xml +++ b/src/chrome/content/rules/Metasploit.xml @@ -32,7 +32,7 @@ Fetch error: http://mail.metasploit.com/ => https://mail.metasploit.com/: (51, " - www.metasploit.com --> - + diff --git a/src/chrome/content/rules/Metcombank.ru.xml b/src/chrome/content/rules/Metcombank.ru.xml index 132e33fc6cee..182b13014987 100644 --- a/src/chrome/content/rules/Metcombank.ru.xml +++ b/src/chrome/content/rules/Metcombank.ru.xml @@ -19,7 +19,7 @@ vklad.metcombank.ru ¹ ¹ mismatch ³ timed out --> - + diff --git a/src/chrome/content/rules/MeteoCiel.fr.xml b/src/chrome/content/rules/MeteoCiel.fr.xml new file mode 100644 index 000000000000..df6ff646a88e --- /dev/null +++ b/src/chrome/content/rules/MeteoCiel.fr.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/MeteoNews.xml b/src/chrome/content/rules/MeteoNews.xml index 96e8061b6617..c1f086eaef93 100644 --- a/src/chrome/content/rules/MeteoNews.xml +++ b/src/chrome/content/rules/MeteoNews.xml @@ -33,4 +33,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Meteoalarm.eu.xml b/src/chrome/content/rules/Meteoalarm.eu.xml new file mode 100644 index 000000000000..8b52f08e5066 --- /dev/null +++ b/src/chrome/content/rules/Meteoalarm.eu.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/MeteorHacks.com.xml b/src/chrome/content/rules/MeteorHacks.com.xml index 7962cac76d22..12b64c843507 100644 --- a/src/chrome/content/rules/MeteorHacks.com.xml +++ b/src/chrome/content/rules/MeteorHacks.com.xml @@ -4,12 +4,12 @@ Disabled by https-everywhere-checker because: Fetch error: http://meteorhacks.com/ => https://meteorhacks.com/: (51, "SSL: no alternative certificate subject name matches target host name 'meteorhacks.com'") Fetch error: http://www.meteorhacks.com/ => https://www.meteorhacks.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.meteorhacks.com'") - Insecure cookies are set for these + Insecure cookies are set for these - .meteorhacks.com --> - + diff --git a/src/chrome/content/rules/Method_Acting_Strasberg.com.xml b/src/chrome/content/rules/Method_Acting_Strasberg.com.xml deleted file mode 100644 index 5558da1ace4c..000000000000 --- a/src/chrome/content/rules/Method_Acting_Strasberg.com.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Metin2.co.nz.xml b/src/chrome/content/rules/Metin2.co.nz.xml deleted file mode 100644 index 002cccd0d8df..000000000000 --- a/src/chrome/content/rules/Metin2.co.nz.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Metooo.io.xml b/src/chrome/content/rules/Metooo.io.xml index 0ecca8abaf90..9ae8ee4286e3 100644 --- a/src/chrome/content/rules/Metooo.io.xml +++ b/src/chrome/content/rules/Metooo.io.xml @@ -13,7 +13,7 @@ Fetch error: http://test.metooo.io/ => https://test.metooo.io/: (6, 'Could not r - .metooo.io --> - + @@ -29,7 +29,7 @@ Fetch error: http://test.metooo.io/ => https://test.metooo.io/: (6, 'Could not r - + - - - - - - - - diff --git a/src/chrome/content/rules/Metrix.xml b/src/chrome/content/rules/Metrix.xml index 3cbc06cb51b2..31caafce0dff 100644 --- a/src/chrome/content/rules/Metrix.xml +++ b/src/chrome/content/rules/Metrix.xml @@ -18,7 +18,7 @@ - + + + + + + + + diff --git a/src/chrome/content/rules/Metro.co.uk.xml b/src/chrome/content/rules/Metro.co.uk.xml index df98156a9aee..4d93b9a87544 100644 --- a/src/chrome/content/rules/Metro.co.uk.xml +++ b/src/chrome/content/rules/Metro.co.uk.xml @@ -1,17 +1,15 @@ - - + + diff --git a/src/chrome/content/rules/Metro.xml b/src/chrome/content/rules/Metro.xml deleted file mode 100644 index a4c0961729fd..000000000000 --- a/src/chrome/content/rules/Metro.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/MetroLyrics.xml b/src/chrome/content/rules/MetroLyrics.xml index 3c57f400744d..4d698c5fddb0 100644 --- a/src/chrome/content/rules/MetroLyrics.xml +++ b/src/chrome/content/rules/MetroLyrics.xml @@ -11,7 +11,6 @@ - + diff --git a/src/chrome/content/rules/Metro_Ethernet_Forum.com.xml b/src/chrome/content/rules/Metro_Ethernet_Forum.com.xml deleted file mode 100644 index bb753da448d1..000000000000 --- a/src/chrome/content/rules/Metro_Ethernet_Forum.com.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/MetroidWiki.org.xml b/src/chrome/content/rules/MetroidWiki.org.xml new file mode 100644 index 000000000000..b843a566d01e --- /dev/null +++ b/src/chrome/content/rules/MetroidWiki.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Metropolnews.info.xml b/src/chrome/content/rules/Metropolnews.info.xml new file mode 100644 index 000000000000..d27465076983 --- /dev/null +++ b/src/chrome/content/rules/Metropolnews.info.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Mew.xml b/src/chrome/content/rules/Mew.xml index 03180dbd8a7a..9c83f962930a 100644 --- a/src/chrome/content/rules/Mew.xml +++ b/src/chrome/content/rules/Mew.xml @@ -6,4 +6,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/MewsNavigator.com.xml b/src/chrome/content/rules/MewsNavigator.com.xml new file mode 100644 index 000000000000..065b8b7dfa41 --- /dev/null +++ b/src/chrome/content/rules/MewsNavigator.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Mexicantears.com.xml b/src/chrome/content/rules/Mexicantears.com.xml new file mode 100644 index 000000000000..b317ee71fd28 --- /dev/null +++ b/src/chrome/content/rules/Mexicantears.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Mexicantears.de.xml b/src/chrome/content/rules/Mexicantears.de.xml new file mode 100644 index 000000000000..3b3e55810eea --- /dev/null +++ b/src/chrome/content/rules/Mexicantears.de.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/MeynConnect.xml b/src/chrome/content/rules/MeynConnect.xml index 3350c231bbeb..f2753712ed99 100644 --- a/src/chrome/content/rules/MeynConnect.xml +++ b/src/chrome/content/rules/MeynConnect.xml @@ -7,7 +7,7 @@ Fetch error: http://www.meynconnect.com/ => https://www.meynconnect.com/: (60, ' Cert only matches www --> - + diff --git a/src/chrome/content/rules/MiKTEX.org.xml b/src/chrome/content/rules/MiKTEX.org.xml new file mode 100644 index 000000000000..b6a9417ed61c --- /dev/null +++ b/src/chrome/content/rules/MiKTEX.org.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Mi_file.com.xml b/src/chrome/content/rules/Mi_file.com.xml index c733d987caa9..b9c976567c3c 100644 --- a/src/chrome/content/rules/Mi_file.com.xml +++ b/src/chrome/content/rules/Mi_file.com.xml @@ -18,7 +18,7 @@ - + - - - - - - - diff --git a/src/chrome/content/rules/Mibbit.xml b/src/chrome/content/rules/Mibbit.xml index 140a71367162..661a36ad133a 100644 --- a/src/chrome/content/rules/Mibbit.xml +++ b/src/chrome/content/rules/Mibbit.xml @@ -33,7 +33,7 @@ - + https://www.hrusecky.net/: (51, "SSL: no alternative certificate subject name matches target host name 'www.hrusecky.net'") - -Disabled by https-everywhere-checker because: -Fetch error: http://hrusecky.net/ => https://www.hrusecky.net/: (60, 'SSL certificate problem: self signed certificate in certificate chain') - !www: cert only matches *.hrusecky.net - + Non-functional hosts + SSL peer certificate was not OK: + - hrusecky.net + - arch.jan.hrusecky.net + - architecture.jan.hrusecky.net + - photo.jan.hrusecky.net + - people.photo.jan.hrusecky.net + - www.michal.hrusecky.net + - queeg.hrusecky.net + - sobas.hrusecky.net + - www.sobas.hrusecky.net + - svatba.hrusecky.net + - fotky.svatba.hrusecky.net + - www.svatba.hrusecky.net + - www.hrusecky.net + + Peer certificate cannot be authenticated with given CA certificates: + - analytics.hrusecky.net + - piwik.hrusecky.net + + Incomplete certificate chain error: + - friends.hrusecky.net + - mail.hrusecky.net + + Mixed content blocking (MCB) triggered: + - michal.hrusecky.net --> - - - - - - - - - + + - \ No newline at end of file + + diff --git a/src/chrome/content/rules/MichelbergerHotel.com.xml b/src/chrome/content/rules/MichelbergerHotel.com.xml new file mode 100644 index 000000000000..6405bd4a965e --- /dev/null +++ b/src/chrome/content/rules/MichelbergerHotel.com.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/MichelbergerMonkey.com.xml b/src/chrome/content/rules/MichelbergerMonkey.com.xml new file mode 100644 index 000000000000..e273791b5741 --- /dev/null +++ b/src/chrome/content/rules/MichelbergerMonkey.com.xml @@ -0,0 +1,14 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Michelle-Bridges-12-Week-Body-Transformation.xml b/src/chrome/content/rules/Michelle-Bridges-12-Week-Body-Transformation.xml deleted file mode 100644 index 4a62251e55a1..000000000000 --- a/src/chrome/content/rules/Michelle-Bridges-12-Week-Body-Transformation.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Michigan_Campus_Compact.xml b/src/chrome/content/rules/Michigan_Campus_Compact.xml index 8c69ed20cc3c..0062e12ee751 100644 --- a/src/chrome/content/rules/Michigan_Campus_Compact.xml +++ b/src/chrome/content/rules/Michigan_Campus_Compact.xml @@ -14,4 +14,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Michigan_Nonprofit_Association.xml b/src/chrome/content/rules/Michigan_Nonprofit_Association.xml index ce9f5749e8c6..b9a761ee22f0 100644 --- a/src/chrome/content/rules/Michigan_Nonprofit_Association.xml +++ b/src/chrome/content/rules/Michigan_Nonprofit_Association.xml @@ -1,13 +1,13 @@ - + + @@ -16,7 +16,9 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/MicroAd.co.jp.xml b/src/chrome/content/rules/MicroAd.co.jp.xml index 528a5d4d5946..1b12fca0ee3c 100644 --- a/src/chrome/content/rules/MicroAd.co.jp.xml +++ b/src/chrome/content/rules/MicroAd.co.jp.xml @@ -16,7 +16,7 @@ Fetch error: http://careers.microad.co.jp/ => https://careers.microad.co.jp/: (6 4xx client error: - app.microad.co.jp --> - + diff --git a/src/chrome/content/rules/MicroAd.net.xml b/src/chrome/content/rules/MicroAd.net.xml index 2dc0ac8b44b1..945380b041aa 100644 --- a/src/chrome/content/rules/MicroAd.net.xml +++ b/src/chrome/content/rules/MicroAd.net.xml @@ -1,4 +1,4 @@ - - + diff --git a/src/chrome/content/rules/Microchip_Direct.com.xml b/src/chrome/content/rules/Microchip_Direct.com.xml index 66e831c246f5..1560a1de14e9 100644 --- a/src/chrome/content/rules/Microchip_Direct.com.xml +++ b/src/chrome/content/rules/Microchip_Direct.com.xml @@ -13,7 +13,7 @@ - + - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/MicropartsUSA.xml b/src/chrome/content/rules/MicropartsUSA.xml index d6094e55ff7b..d1cb7e6e64fe 100644 --- a/src/chrome/content/rules/MicropartsUSA.xml +++ b/src/chrome/content/rules/MicropartsUSA.xml @@ -12,7 +12,7 @@ Fetch error: http://micropartsusa.com/ => https://micropartsusa.com/: (28, 'Oper Fetch error: http://www.micropartsusa.com/ => https://www.micropartsusa.com/: (28, 'Operation timed out after 0 milliseconds with 0 out of 0 bytes received') --> - + @@ -20,4 +20,4 @@ Fetch error: http://www.micropartsusa.com/ => https://www.micropartsusa.com/: (2 - \ No newline at end of file + diff --git a/src/chrome/content/rules/Microsoft-Atlas.xml b/src/chrome/content/rules/Microsoft-Atlas.xml index 292cdaa4a27e..435fde8f1349 100644 --- a/src/chrome/content/rules/Microsoft-Atlas.xml +++ b/src/chrome/content/rules/Microsoft-Atlas.xml @@ -17,7 +17,7 @@ Non-2xx HTTP code: http://h.atdmt.com/ (200) => https://h.bing.com/ (403) - atlasdmt.vo.msecnd.net - cdn.atdmt.com - + Problematic hosts in *atdmt.com: @@ -42,7 +42,7 @@ Non-2xx HTTP code: http://h.atdmt.com/ (200) => https://h.bing.com/ (403) whichever domain it is loaded from. --> - + @@ -76,7 +76,7 @@ Non-2xx HTTP code: http://h.atdmt.com/ (200) => https://h.bing.com/ (403) --> - + https://preview.bingads.microsoft.com/: (60, 'SSL certificate problem: certificate has expired') +Fetch error: http://sxp.microsoft.com/ => https://sxp.microsoft.com/: (6, 'Could not resolve host: sxp.microsoft.com') +Time: 2020-09-25 16:20:22 + Fetch error: http://spcache.microsoft.com/ => https://www.microsoft.com/: (6, 'Could not resolve host: spcache.microsoft.com') + Other Microsoft rulesets: - Acik_Akademi.com.xml - Afx.ms.xml - AKA.ms.xml - - ASP.NET.xml - ASPNETcdn.com.xml - Azure.com.xml - AzurecomCDN.net.xml @@ -30,7 +37,7 @@ - Microsoft_Online-p.com.xml - Microsoft_Online-p.net.xml - Microsoft_Online_Services.xml - - Microsoft_Studios.com.xml + - MicrosoftStudios.com.xml - Microsoft_Translator.com.xml - Microsoft_Ventures.com.xml - Microsoft_Store.xml @@ -48,11 +55,9 @@ - OneNote.com.xml - OneNote.net.xml - Onestore.ms.xml - - Outlook_Live.xml - Photosynth.xml - PowerShell_Gallery.com.xml - Sfx.ms.xml - - Skype.xml - Skype_assets.com.xml - S-Microsoft.com.xml - S-msn.com.xml @@ -60,14 +65,11 @@ - Surface.com.xml - System_Center_Advisor.com.xml - Technet.com.xml - - Technical_Community.com.xml - Translatoruser.net.xml - TwinsOrNot.Net.xml - - VSIP_Program.com.xml - Virtualearth.net.xml - Visual_Studio.com.xml - WLxrs.com.xml - - WPdev.ms.xml - Windows_Azure.xml - Windows.com.xml - Windows.net.xml @@ -94,6 +96,7 @@ - (www.)imaginecup.com *** - compete.imaginecup.com *** - microsoft.com subdomains: + - adcenter (timeout) - www.bingads ᴹ - advertising.bingads ᴹ - accountservices ᴱ @@ -108,8 +111,10 @@ - adinquiry.bcp.bingads ᴹ - secure.bcp.bingads ᴹ - secure.beta.bingads ᴹ + - cam.bingads (timeout) - community.bingads ᴹ - secure.eu.bingads ᴹ + - internal.bingads ᴵ - beta.express.bingads ʳ - fd.bingads ᴹ - help.bingads ᴵ @@ -119,6 +124,7 @@ - internal.next.bingads ʳ - resources.next.bingads ᴿ - nirvana.bingads ᴿ + - planner-int.bingads (timeout) - express.perf.bingads ʳ - reportingapi.bingads ᴿ - download.reportingapi.bingadsᴿ @@ -144,8 +150,11 @@ - silverlight.dlservice * - web.esd * (esd, origin, origin-web, and web don't exist) - widgets.membership ᴹ + - apisandbox.msdn (expired) + - lab.msdn *** - samples.msdn ᴿ - visualstudiogallery.msdn (redirects to http, valid cert) + - msevents (timeout) - logobuilder.mspartner ᴱ - mymfe ʳ - news (Redirects to http) @@ -157,12 +166,20 @@ - academic.research *** - sharepoint (redirects to login.live.com, cert valid) - signature (expired) - - snackbox ᴹ + - services.social (cert-chain) + - i1.services.social (cert-chain) + - i2.services.social (cert-chain) + - i3.services.social (cert-chain) + - i4.services.social (cert-chain) + - corp.sts (cert-chain) + - fud.community.services.support (ssl-error) + - sysdev (ssl-error) - tag.microsoft.com ᴿ - i1.gallery.technet ᴹ - edir.windowsm (404) - visio ** - (www.)windows ** + - profile ᴿ - msimg.com - blog.surface.com (handshake fails) - (www.)windowsteamblog.com @@ -187,7 +204,6 @@ - wscont[12].apps (works, akamai) - i[1-4].connect * - silverlight.dlservice ** - - go2 ** - i\d ** - ie (mismatched, CN: *.azurewebsites.net) - i1.mobile ** @@ -252,7 +268,6 @@ - mspartner.microsoft.com - logobuilder.mspartner.microsoft.com - - mspartnerlp.mspartner.microsoft.com - news.microsoft.com - .news.microsoft.com @@ -282,13 +297,11 @@ - social.technet from i1.social.s-msft.com * - sxp from az648995.vo.msecnd.net - sxp from blogs.technet.com - - mspartnerlp.mspartner from v3lpastorage.blob.core.windows.net * - Bugs, on: - msdn from msstonojsmsdn.112.2o7.net * - technet from msstonojstechnet.112.2o7.net * - social.technet from msstonojssocial.112.2o7.net * - careers, msdn, logobuilder.mspartner, pinpoint, technet, social.technet from m.webtrends.com - - blogs, news, www from c.microsoft.com * - sxp from blogs.technet.com * Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> @@ -297,14 +310,12 @@ - - - + @@ -312,25 +323,19 @@ - - - - - - + - @@ -340,9 +345,9 @@ - + @@ -353,15 +358,11 @@ - - - - @@ -373,24 +374,15 @@ - - + + + - - - - - - - - - - - + @@ -404,16 +396,9 @@ - - - - - - - @@ -428,15 +413,13 @@ - - - + @@ -446,69 +429,8 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -531,34 +453,9 @@ - - - - - - - - - - - - - - - - - - - - - @@ -625,15 +521,9 @@ s_.+: Other tracking cookies --> - + - - - - - - - - - - - - @@ -674,15 +557,6 @@ - - - - - - - diff --git a/src/chrome/content/rules/MicrosoftStudios.com.xml b/src/chrome/content/rules/MicrosoftStudios.com.xml new file mode 100644 index 000000000000..53c8da88a65c --- /dev/null +++ b/src/chrome/content/rules/MicrosoftStudios.com.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Microsoft_Store.xml b/src/chrome/content/rules/Microsoft_Store.xml index 50361cef5e55..6f8bcc9ed203 100644 --- a/src/chrome/content/rules/Microsoft_Store.xml +++ b/src/chrome/content/rules/Microsoft_Store.xml @@ -1,91 +1,17 @@ - - - - - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - + diff --git a/src/chrome/content/rules/Microsoft_Studios.com.xml b/src/chrome/content/rules/Microsoft_Studios.com.xml deleted file mode 100644 index b07a3222f475..000000000000 --- a/src/chrome/content/rules/Microsoft_Studios.com.xml +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Microtech.xml b/src/chrome/content/rules/Microtech.xml index 5cc728b0080d..abf3aa012f40 100644 --- a/src/chrome/content/rules/Microtech.xml +++ b/src/chrome/content/rules/Microtech.xml @@ -1,15 +1,29 @@ - + + + + - + + + + - + - + - + diff --git a/src/chrome/content/rules/Microtronix.xml b/src/chrome/content/rules/Microtronix.xml index 6745523deb96..8f465fff2148 100644 --- a/src/chrome/content/rules/Microtronix.xml +++ b/src/chrome/content/rules/Microtronix.xml @@ -28,4 +28,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Middle_East_Monitor.com.xml b/src/chrome/content/rules/Middle_East_Monitor.com.xml index 4fd2af9bb969..1bf0da970169 100644 --- a/src/chrome/content/rules/Middle_East_Monitor.com.xml +++ b/src/chrome/content/rules/Middle_East_Monitor.com.xml @@ -16,7 +16,7 @@ - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Mietek.io.xml b/src/chrome/content/rules/Mietek.io.xml index 786fa60c380e..da469db2f59b 100644 --- a/src/chrome/content/rules/Mietek.io.xml +++ b/src/chrome/content/rules/Mietek.io.xml @@ -12,7 +12,9 @@ - + + + https://www.mightyupload.com/: (28, - .mightyupload.com --> - + diff --git a/src/chrome/content/rules/Migrol.ch.xml b/src/chrome/content/rules/Migrol.ch.xml index 42857ed017bd..31fdf0931c37 100644 --- a/src/chrome/content/rules/Migrol.ch.xml +++ b/src/chrome/content/rules/Migrol.ch.xml @@ -24,7 +24,7 @@ - + diff --git a/src/chrome/content/rules/Migros-Bank.xml b/src/chrome/content/rules/Migros-Bank.xml index b036fc1bea76..f2951fe84d2e 100644 --- a/src/chrome/content/rules/Migros-Bank.xml +++ b/src/chrome/content/rules/Migros-Bank.xml @@ -8,7 +8,6 @@ - @@ -23,17 +22,5 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Migros-Kulturprozent.ch.xml b/src/chrome/content/rules/Migros-Kulturprozent.ch.xml index 5a3fdd970f93..d05a4cd446f8 100644 --- a/src/chrome/content/rules/Migros-Kulturprozent.ch.xml +++ b/src/chrome/content/rules/Migros-Kulturprozent.ch.xml @@ -13,7 +13,7 @@ Fetch error: http://facebook.migros-kulturprozent.ch/ => https://facebook.migros m: mismatch r: refused --> - + diff --git a/src/chrome/content/rules/Migros.xml b/src/chrome/content/rules/Migros.xml index 91e7b1765869..016ff6fd7033 100644 --- a/src/chrome/content/rules/Migros.xml +++ b/src/chrome/content/rules/Migros.xml @@ -1,17 +1,21 @@ - + - @@ -77,22 +84,20 @@ Fetch error: http://leger.migros.ch/ => https://leger.migros.ch/: (51, "SSL: no - + - + - - + - @@ -102,7 +107,8 @@ Fetch error: http://leger.migros.ch/ => https://leger.migros.ch/: (51, "SSL: no - + + @@ -116,7 +122,7 @@ Fetch error: http://leger.migros.ch/ => https://leger.migros.ch/: (51, "SSL: no - + @@ -124,9 +130,9 @@ Fetch error: http://leger.migros.ch/ => https://leger.migros.ch/: (51, "SSL: no - - - + + + diff --git a/src/chrome/content/rules/Mike_Masin.xml b/src/chrome/content/rules/Mike_Masin.xml deleted file mode 100644 index 0e1457a67e70..000000000000 --- a/src/chrome/content/rules/Mike_Masin.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/MikroTik.com.xml b/src/chrome/content/rules/MikroTik.com.xml index 986405ec9c0f..d778d5525410 100644 --- a/src/chrome/content/rules/MikroTik.com.xml +++ b/src/chrome/content/rules/MikroTik.com.xml @@ -71,13 +71,11 @@ - + - + diff --git a/src/chrome/content/rules/MilbenCheck.at.xml b/src/chrome/content/rules/MilbenCheck.at.xml deleted file mode 100644 index 011e84a5512f..000000000000 --- a/src/chrome/content/rules/MilbenCheck.at.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Milchkind.net.xml b/src/chrome/content/rules/Milchkind.net.xml index fa484eb96175..14dcbb772a3a 100644 --- a/src/chrome/content/rules/Milchkind.net.xml +++ b/src/chrome/content/rules/Milchkind.net.xml @@ -3,10 +3,9 @@ - + - + diff --git a/src/chrome/content/rules/Milepoint.xml b/src/chrome/content/rules/Milepoint.xml deleted file mode 100644 index a8ae6b6a2b54..000000000000 --- a/src/chrome/content/rules/Milepoint.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/chrome/content/rules/Miles-and-more.xml b/src/chrome/content/rules/Miles-and-more.xml index d45bcccf95f1..fdab49992ffc 100644 --- a/src/chrome/content/rules/Miles-and-more.xml +++ b/src/chrome/content/rules/Miles-and-more.xml @@ -6,7 +6,7 @@ - + diff --git a/src/chrome/content/rules/MilitarySuper.xml b/src/chrome/content/rules/MilitarySuper.xml index 74a8afc1f986..d46a02f5a292 100644 --- a/src/chrome/content/rules/MilitarySuper.xml +++ b/src/chrome/content/rules/MilitarySuper.xml @@ -1,7 +1,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/MilkAndMore.xml b/src/chrome/content/rules/MilkAndMore.xml index 47fe05b14cbd..1e41cf7d3dc7 100644 --- a/src/chrome/content/rules/MilkAndMore.xml +++ b/src/chrome/content/rules/MilkAndMore.xml @@ -2,7 +2,7 @@ - + diff --git a/src/chrome/content/rules/Millennium_Seating.xml b/src/chrome/content/rules/Millennium_Seating.xml index 228e06f85802..6fb5fc32aa4e 100644 --- a/src/chrome/content/rules/Millennium_Seating.xml +++ b/src/chrome/content/rules/Millennium_Seating.xml @@ -5,25 +5,19 @@ - static.millenniumseating.com - - Nonfunctional subdomains: - - - blog (502) - - - Some pages redirect to http. - --> + - - + + + diff --git a/src/chrome/content/rules/MillionShort.com.xml b/src/chrome/content/rules/MillionShort.com.xml new file mode 100644 index 000000000000..276ceaaa9bbc --- /dev/null +++ b/src/chrome/content/rules/MillionShort.com.xml @@ -0,0 +1,13 @@ + + + + + + + diff --git a/src/chrome/content/rules/Millward-Brown.xml b/src/chrome/content/rules/Millward-Brown.xml index 4f475326ce16..bc590ba1151e 100644 --- a/src/chrome/content/rules/Millward-Brown.xml +++ b/src/chrome/content/rules/Millward-Brown.xml @@ -10,7 +10,7 @@ - + diff --git a/src/chrome/content/rules/Milton-Keynes.gov.uk.xml b/src/chrome/content/rules/Milton-Keynes.gov.uk.xml index 5fd2f42d68d3..dcdd6decc1b2 100644 --- a/src/chrome/content/rules/Milton-Keynes.gov.uk.xml +++ b/src/chrome/content/rules/Milton-Keynes.gov.uk.xml @@ -53,7 +53,7 @@ - + + - - + - + diff --git a/src/chrome/content/rules/Minacs.com.xml b/src/chrome/content/rules/Minacs.com.xml deleted file mode 100644 index 2a56a674696e..000000000000 --- a/src/chrome/content/rules/Minacs.com.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Minalyzer.com.xml b/src/chrome/content/rules/Minalyzer.com.xml deleted file mode 100644 index 203683b9d29f..000000000000 --- a/src/chrome/content/rules/Minalyzer.com.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/MindTouch.com.xml b/src/chrome/content/rules/MindTouch.com.xml index 8912622acad8..181428e78d2e 100644 --- a/src/chrome/content/rules/MindTouch.com.xml +++ b/src/chrome/content/rules/MindTouch.com.xml @@ -23,7 +23,7 @@ Fetch error: http://f1.support.mindtouch.com/ => https://f1.support.mindtouch.co - .mindtouch.com --> - + diff --git a/src/chrome/content/rules/MindTouch.us.xml b/src/chrome/content/rules/MindTouch.us.xml index 0e393ec99ddc..4b4c2a7f7713 100644 --- a/src/chrome/content/rules/MindTouch.us.xml +++ b/src/chrome/content/rules/MindTouch.us.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://help.mindtouch.us/ => https://help.mindtouch.us/: (51, "SSL: no alternative certificate subject name matches target host name 'help.mindtouch.us'") Fetch error: http://f1.help.mindtouch.us/ => https://f1.help.mindtouch.us/: (51, "SSL: no alternative certificate subject name matches target host name 'f1.help.mindtouch.us'") - For other MindTouch coverage, see MindTouch.com.xml. - + For other MindTouch coverage, see MindTouch.com.xml. - Fully covered hosts: @@ -16,7 +16,7 @@ Fetch error: http://f1.help.mindtouch.us/ => https://f1.help.mindtouch.us/: (51, - f1.sapseod --> - + diff --git a/src/chrome/content/rules/Mind_Tools.com.xml b/src/chrome/content/rules/Mind_Tools.com.xml index 99c278cfaa3b..542ebbd3d92e 100644 --- a/src/chrome/content/rules/Mind_Tools.com.xml +++ b/src/chrome/content/rules/Mind_Tools.com.xml @@ -33,7 +33,7 @@ - + https://mobile.mindfactory.de/: (5 - blog.mindfactory.de (different content) - user.mindfactory.de (invalid, CN=www6.kd-menue.de) --> - + - + diff --git a/src/chrome/content/rules/Mindhealthconnect.xml b/src/chrome/content/rules/Mindhealthconnect.xml deleted file mode 100644 index c1f6cd4e4ba0..000000000000 --- a/src/chrome/content/rules/Mindhealthconnect.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Mindrot.xml b/src/chrome/content/rules/Mindrot.xml index 739925b7ce44..8abb67242d21 100644 --- a/src/chrome/content/rules/Mindrot.xml +++ b/src/chrome/content/rules/Mindrot.xml @@ -20,7 +20,7 @@ --> - + + + + + + + + diff --git a/src/chrome/content/rules/Minetest.ru.xml b/src/chrome/content/rules/Minetest.ru.xml index c2d7225f38b1..20877175a5eb 100644 --- a/src/chrome/content/rules/Minetest.ru.xml +++ b/src/chrome/content/rules/Minetest.ru.xml @@ -11,7 +11,7 @@ Fetch error: http://minetest.ru/ => https://minetest.ru/: (60, 'SSL certificate * Shows ^ over https --> - + @@ -19,7 +19,6 @@ Fetch error: http://minetest.ru/ => https://minetest.ru/: (60, 'SSL certificate - + diff --git a/src/chrome/content/rules/MingPao.com.xml b/src/chrome/content/rules/MingPao.com.xml new file mode 100644 index 000000000000..27b2c923e27a --- /dev/null +++ b/src/chrome/content/rules/MingPao.com.xml @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/MiniLock.io.xml b/src/chrome/content/rules/MiniLock.io.xml index 8241d03ad817..cc52a766df6e 100644 --- a/src/chrome/content/rules/MiniLock.io.xml +++ b/src/chrome/content/rules/MiniLock.io.xml @@ -9,7 +9,7 @@ Fetch error: http://www.minilock.io/ => https://www.minilock.io/: (6, 'Could not - .minilock.io --> - + diff --git a/src/chrome/content/rules/MiniMundos_online.com.xml b/src/chrome/content/rules/MiniMundos_online.com.xml deleted file mode 100644 index efd865948aad..000000000000 --- a/src/chrome/content/rules/MiniMundos_online.com.xml +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Miniand-Tech.xml b/src/chrome/content/rules/Miniand-Tech.xml index 10e69b11ec81..053f9e26af95 100644 --- a/src/chrome/content/rules/Miniand-Tech.xml +++ b/src/chrome/content/rules/Miniand-Tech.xml @@ -12,13 +12,13 @@ Fetch error: http://www.miniand.com/ => https://www.miniand.com/: (6, 'Could not dl serves images only. --> - + - + diff --git a/src/chrome/content/rules/Miniclip.com.xml b/src/chrome/content/rules/Miniclip.com.xml deleted file mode 100644 index 13b39a45d926..000000000000 --- a/src/chrome/content/rules/Miniclip.com.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Miniclip_CDN.com.xml b/src/chrome/content/rules/Miniclip_CDN.com.xml index 750bb157eec8..f7d2d4750b5d 100644 --- a/src/chrome/content/rules/Miniclip_CDN.com.xml +++ b/src/chrome/content/rules/Miniclip_CDN.com.xml @@ -1,6 +1,3 @@ - diff --git a/src/chrome/content/rules/Mining.Bitcoin.cz.xml b/src/chrome/content/rules/Mining.Bitcoin.cz.xml index e54d42cac0ff..f335fbe8fbb1 100644 --- a/src/chrome/content/rules/Mining.Bitcoin.cz.xml +++ b/src/chrome/content/rules/Mining.Bitcoin.cz.xml @@ -1,18 +1,19 @@ - - - diff --git a/src/chrome/content/rules/Ministry_of_Justice.xml b/src/chrome/content/rules/Ministry_of_Justice.xml index 64f511a9f14d..f2aebb8aa64d 100644 --- a/src/chrome/content/rules/Ministry_of_Justice.xml +++ b/src/chrome/content/rules/Ministry_of_Justice.xml @@ -35,7 +35,7 @@ --> - + - - - - - + + + + + + + - + + diff --git a/src/chrome/content/rules/Minnesota-Public-Radio.xml b/src/chrome/content/rules/Minnesota-Public-Radio.xml index bbdc239b8c20..5baec3cb3f42 100644 --- a/src/chrome/content/rules/Minnesota-Public-Radio.xml +++ b/src/chrome/content/rules/Minnesota-Public-Radio.xml @@ -12,7 +12,9 @@ --> - + + + diff --git a/src/chrome/content/rules/MinoHubs.com.xml b/src/chrome/content/rules/MinoHubs.com.xml deleted file mode 100644 index 9c5a4f9bb99b..000000000000 --- a/src/chrome/content/rules/MinoHubs.com.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Mint.com.xml b/src/chrome/content/rules/Mint.com.xml new file mode 100644 index 000000000000..48f0f348c513 --- /dev/null +++ b/src/chrome/content/rules/Mint.com.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Mint.xml b/src/chrome/content/rules/Mint.xml deleted file mode 100644 index 86654d771d9f..000000000000 --- a/src/chrome/content/rules/Mint.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/MintGuide.org.xml b/src/chrome/content/rules/MintGuide.org.xml index 3edaadad7410..ea3dd3b0a059 100644 --- a/src/chrome/content/rules/MintGuide.org.xml +++ b/src/chrome/content/rules/MintGuide.org.xml @@ -30,7 +30,7 @@ --> - + + to="https://cdn3.minted.com/" /> + to="https://cdn4.minted.com/" /> + to="https://cdn5.minted.com/" /> - \ No newline at end of file + diff --git a/src/chrome/content/rules/Mipay.com.xml b/src/chrome/content/rules/Mipay.com.xml index 426922bd2e65..84dbc1af1440 100644 --- a/src/chrome/content/rules/Mipay.com.xml +++ b/src/chrome/content/rules/Mipay.com.xml @@ -12,4 +12,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/MirBSD.xml b/src/chrome/content/rules/MirBSD.xml deleted file mode 100644 index 937a612bdebc..000000000000 --- a/src/chrome/content/rules/MirBSD.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Mirakar.com.xml b/src/chrome/content/rules/Mirakar.com.xml index d1932c68af15..ab346fa7e068 100644 --- a/src/chrome/content/rules/Mirakar.com.xml +++ b/src/chrome/content/rules/Mirakar.com.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://mirakar.com/ => https://www.mirakar.com/: (60, 'SSL certificate problem: certificate has expired') Fetch error: http://www.mirakar.com/ => https://www.mirakar.com/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/Miramax.com.xml b/src/chrome/content/rules/Miramax.com.xml index 42f78917eb62..c2cb9c9b279f 100644 --- a/src/chrome/content/rules/Miramax.com.xml +++ b/src/chrome/content/rules/Miramax.com.xml @@ -7,7 +7,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://miramax.com/ => https://miramax.com/: Cycle detected - URL already encountered: https://miramax.com/ Fetch error: http://www.miramax.com/ => https://www.miramax.com/: Cycle detected - URL already encountered: https://www.miramax.com/ --> - + @@ -18,4 +18,4 @@ Fetch error: http://www.miramax.com/ => https://www.miramax.com/: Cycle detected - \ No newline at end of file + diff --git a/src/chrome/content/rules/Miranda-IM.xml b/src/chrome/content/rules/Miranda-IM.xml index 51ecd66990b5..251148354d34 100644 --- a/src/chrome/content/rules/Miranda-IM.xml +++ b/src/chrome/content/rules/Miranda-IM.xml @@ -27,10 +27,11 @@ - + + - + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Mirror_Bingo.com-falsemixed.xml b/src/chrome/content/rules/Mirror_Bingo.com-falsemixed.xml deleted file mode 100644 index 63db0799db30..000000000000 --- a/src/chrome/content/rules/Mirror_Bingo.com-falsemixed.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Mirror_Bingo.com.xml b/src/chrome/content/rules/Mirror_Bingo.com.xml deleted file mode 100644 index b45fa37945ea..000000000000 --- a/src/chrome/content/rules/Mirror_Bingo.com.xml +++ /dev/null @@ -1,79 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Mirror_Image_Internet.xml b/src/chrome/content/rules/Mirror_Image_Internet.xml index eadf045cc0a9..3fbd81de8233 100644 --- a/src/chrome/content/rules/Mirror_Image_Internet.xml +++ b/src/chrome/content/rules/Mirror_Image_Internet.xml @@ -8,4 +8,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Mirrorcreator.com.xml b/src/chrome/content/rules/Mirrorcreator.com.xml new file mode 100644 index 000000000000..d81a5c92b526 --- /dev/null +++ b/src/chrome/content/rules/Mirrorcreator.com.xml @@ -0,0 +1,10 @@ + + + + + + + diff --git a/src/chrome/content/rules/Misco.co.uk.xml b/src/chrome/content/rules/Misco.co.uk.xml index a59226c459eb..71d53ee6ee31 100644 --- a/src/chrome/content/rules/Misco.co.uk.xml +++ b/src/chrome/content/rules/Misco.co.uk.xml @@ -9,7 +9,7 @@ - + diff --git a/src/chrome/content/rules/Mises.org.xml b/src/chrome/content/rules/Mises.org.xml index c7b6c44b6165..85f34fc8cde4 100644 --- a/src/chrome/content/rules/Mises.org.xml +++ b/src/chrome/content/rules/Mises.org.xml @@ -4,7 +4,7 @@ - + diff --git a/src/chrome/content/rules/Mishari_alAfasy.net.xml b/src/chrome/content/rules/Mishari_alAfasy.net.xml new file mode 100644 index 000000000000..49be5ee2b94c --- /dev/null +++ b/src/chrome/content/rules/Mishari_alAfasy.net.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Missing_Link_Electronics.com.xml b/src/chrome/content/rules/Missing_Link_Electronics.com.xml index c7668b536705..9ff26d8be07e 100644 --- a/src/chrome/content/rules/Missing_Link_Electronics.com.xml +++ b/src/chrome/content/rules/Missing_Link_Electronics.com.xml @@ -19,7 +19,7 @@ --> - + - - - - diff --git a/src/chrome/content/rules/Mitre.org.xml b/src/chrome/content/rules/Mitre.org.xml index d7237bf5bd19..a1b5a4848193 100644 --- a/src/chrome/content/rules/Mitre.org.xml +++ b/src/chrome/content/rules/Mitre.org.xml @@ -1,36 +1,14 @@ - - + - - + + @@ -42,14 +20,12 @@ Fetch error: http://benchmarkdevelopment.mitre.org/ => https://benchmarkdevelopm - + - - diff --git a/src/chrome/content/rules/Mitro.co.xml b/src/chrome/content/rules/Mitro.co.xml index 44f05fe4672a..d00b98bdac27 100644 --- a/src/chrome/content/rules/Mitro.co.xml +++ b/src/chrome/content/rules/Mitro.co.xml @@ -5,7 +5,7 @@ Fetch error: http://mitro.co/ => https://mitro.co/: (7, 'Failed to connect to mi Fetch error: http://www.mitro.co/ => https://www.mitro.co/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/MivaCentral.xml b/src/chrome/content/rules/MivaCentral.xml deleted file mode 100644 index 7a724877eacf..000000000000 --- a/src/chrome/content/rules/MivaCentral.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Miva_Merchant.xml b/src/chrome/content/rules/Miva_Merchant.xml index e766dfdb5e31..458ebd7318b1 100644 --- a/src/chrome/content/rules/Miva_Merchant.xml +++ b/src/chrome/content/rules/Miva_Merchant.xml @@ -9,7 +9,6 @@ Fetch error: http://mivamerchant.com/ => https://mivamerchant.com/: (51, "SSL: n Fetch error: http://www.mivamerchant.com/ => https://www.mivamerchant.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.mivamerchant.com'") Other Miva Merchant rulesets: - - MivaCentral.xml CDN buckets: @@ -22,7 +21,7 @@ Fetch error: http://www.mivamerchant.com/ => https://www.mivamerchant.com/: (51, - ^ (cert only matches www) --> - + @@ -33,4 +32,4 @@ Fetch error: http://www.mivamerchant.com/ => https://www.mivamerchant.com/: (51, - \ No newline at end of file + diff --git a/src/chrome/content/rules/MixBit.com.xml b/src/chrome/content/rules/MixBit.com.xml index 9138ef0c3728..6265b4aeab45 100644 --- a/src/chrome/content/rules/MixBit.com.xml +++ b/src/chrome/content/rules/MixBit.com.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://api.mixbit.com/ => https://api.mixbit.com/: (6, 'Could not resolve host: api.mixbit.com') --> - + diff --git a/src/chrome/content/rules/Mixcloud.com.xml b/src/chrome/content/rules/Mixcloud.com.xml index 0c2d7cc0d1e6..6d76b5f5fa6a 100644 --- a/src/chrome/content/rules/Mixcloud.com.xml +++ b/src/chrome/content/rules/Mixcloud.com.xml @@ -51,7 +51,7 @@ - + diff --git a/src/chrome/content/rules/Mixi.xml b/src/chrome/content/rules/Mixi.xml index d1e5995b972b..13bb5b84d2cb 100644 --- a/src/chrome/content/rules/Mixi.xml +++ b/src/chrome/content/rules/Mixi.xml @@ -23,7 +23,9 @@ --> - + + + @@ -33,10 +35,7 @@ - - + diff --git a/src/chrome/content/rules/Mixpanel.xml b/src/chrome/content/rules/Mixpanel.xml index 96263ea8627a..8178cd10c9e9 100644 --- a/src/chrome/content/rules/Mixpanel.xml +++ b/src/chrome/content/rules/Mixpanel.xml @@ -28,7 +28,7 @@ --> - + + + + + + diff --git a/src/chrome/content/rules/Mixx.com.xml b/src/chrome/content/rules/Mixx.com.xml index fd47d151db5b..f0985ebad051 100644 --- a/src/chrome/content/rules/Mixx.com.xml +++ b/src/chrome/content/rules/Mixx.com.xml @@ -10,10 +10,9 @@ Fetch error: http://www.mixx.com/ => https://www.mixx.com/: (28, 'Connection tim - + - - + diff --git a/src/chrome/content/rules/Mixxx.org.xml b/src/chrome/content/rules/Mixxx.org.xml index 08eb8936804f..c1db912c61d2 100644 --- a/src/chrome/content/rules/Mixxx.org.xml +++ b/src/chrome/content/rules/Mixxx.org.xml @@ -13,6 +13,7 @@ + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Mmixr.com.xml b/src/chrome/content/rules/Mmixr.com.xml index 64a358f6e07c..7f99f4951f51 100644 --- a/src/chrome/content/rules/Mmixr.com.xml +++ b/src/chrome/content/rules/Mmixr.com.xml @@ -10,10 +10,11 @@ Fetch error: http://mmixr.com/ => https://www.mmixr.com/: (28, 'Connection timed - ^ (shows app) --> - + - + + @@ -22,7 +23,6 @@ Fetch error: http://mmixr.com/ => https://www.mmixr.com/: (28, 'Connection timed - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Mmstat.com.xml b/src/chrome/content/rules/Mmstat.com.xml index 8d6c43f23a2a..c68035667cb1 100644 --- a/src/chrome/content/rules/Mmstat.com.xml +++ b/src/chrome/content/rules/Mmstat.com.xml @@ -3,7 +3,7 @@ Mismatch: - ^(www.)? - + Insecure cookies are set for these domains: - .mmstat.com diff --git a/src/chrome/content/rules/MnCDN.com.xml b/src/chrome/content/rules/MnCDN.com.xml index 2f3db288a77a..f5c4769e337f 100644 --- a/src/chrome/content/rules/MnCDN.com.xml +++ b/src/chrome/content/rules/MnCDN.com.xml @@ -24,7 +24,7 @@ --> - + - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/MoE.gov.my.xml b/src/chrome/content/rules/MoE.gov.my.xml new file mode 100644 index 000000000000..a144dccaab0b --- /dev/null +++ b/src/chrome/content/rules/MoE.gov.my.xml @@ -0,0 +1,136 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Moana_Surfrider.xml b/src/chrome/content/rules/Moana_Surfrider.xml index f9c158511b04..7f84fd8f9461 100644 --- a/src/chrome/content/rules/Moana_Surfrider.xml +++ b/src/chrome/content/rules/Moana_Surfrider.xml @@ -16,4 +16,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Moat.xml b/src/chrome/content/rules/Moat.xml index c86a644c8ebc..1c79146fdbfb 100644 --- a/src/chrome/content/rules/Moat.xml +++ b/src/chrome/content/rules/Moat.xml @@ -24,7 +24,7 @@ - + - + - @@ -53,7 +53,7 @@ - - + diff --git a/src/chrome/content/rules/Moava.xml b/src/chrome/content/rules/Moava.xml index 95723b0d4fec..6fe41a6ce1fc 100644 --- a/src/chrome/content/rules/Moava.xml +++ b/src/chrome/content/rules/Moava.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/MobStac.xml b/src/chrome/content/rules/MobStac.xml index 379e473047f0..e35703e70e16 100644 --- a/src/chrome/content/rules/MobStac.xml +++ b/src/chrome/content/rules/MobStac.xml @@ -5,7 +5,8 @@ - + + - - - - - - - - - - diff --git a/src/chrome/content/rules/Mobify.xml b/src/chrome/content/rules/Mobify.xml index a66bdd76bfe9..3b051cda852b 100644 --- a/src/chrome/content/rules/Mobify.xml +++ b/src/chrome/content/rules/Mobify.xml @@ -1,8 +1,13 @@ + + @@ -49,7 +54,7 @@ --> - + https://mobile01.com/: (28, 'Connection timed out after 20001 milliseconds') --> - + diff --git a/src/chrome/content/rules/Mobile_Asia_Expo.xml b/src/chrome/content/rules/Mobile_Asia_Expo.xml index 07a1dac2e1e2..34a3275fba53 100644 --- a/src/chrome/content/rules/Mobile_Asia_Expo.xml +++ b/src/chrome/content/rules/Mobile_Asia_Expo.xml @@ -19,4 +19,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Mobile_Enterprise_360.com.xml b/src/chrome/content/rules/Mobile_Enterprise_360.com.xml index 5ee80c5eccf1..328a8fa64ff8 100644 --- a/src/chrome/content/rules/Mobile_Enterprise_360.com.xml +++ b/src/chrome/content/rules/Mobile_Enterprise_360.com.xml @@ -6,7 +6,7 @@ - + @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Mobile_Nations.xml b/src/chrome/content/rules/Mobile_Nations.xml index f498dc2006ff..faf0e9897e34 100644 --- a/src/chrome/content/rules/Mobile_Nations.xml +++ b/src/chrome/content/rules/Mobile_Nations.xml @@ -1,10 +1,8 @@ - - - - - - - + + diff --git a/src/chrome/content/rules/Mobile_Vikings.xml b/src/chrome/content/rules/Mobile_Vikings.xml index f457d5bd4d23..6f96fdd62210 100644 --- a/src/chrome/content/rules/Mobile_Vikings.xml +++ b/src/chrome/content/rules/Mobile_Vikings.xml @@ -20,4 +20,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Mobio_INsider.xml b/src/chrome/content/rules/Mobio_INsider.xml index fcbb70bdd8da..dcc667a812c7 100644 --- a/src/chrome/content/rules/Mobio_INsider.xml +++ b/src/chrome/content/rules/Mobio_INsider.xml @@ -6,7 +6,7 @@ Fetch error: http://stage-mobioinsider.com/ => https://stage-mobioinsider.com/: Fetch error: http://www.stage-mobioinsider.com/ => https://www.stage-mobioinsider.com/: (28, 'Operation timed out after 30001 milliseconds with 0 bytes received') --> - + @@ -20,4 +20,4 @@ Fetch error: http://www.stage-mobioinsider.com/ => https://www.stage-mobioinside - \ No newline at end of file + diff --git a/src/chrome/content/rules/Mobypicture.xml b/src/chrome/content/rules/Mobypicture.xml index 1b2053271bc2..2289ea9ecce8 100644 --- a/src/chrome/content/rules/Mobypicture.xml +++ b/src/chrome/content/rules/Mobypicture.xml @@ -64,7 +64,7 @@ Fetch error: http://mobypicture.com/ => https://mobypicture.com/: (60, 'SSL cert * Secured by us --> - + @@ -96,6 +96,6 @@ Fetch error: http://mobypicture.com/ => https://mobypicture.com/: (60, 'SSL cert to="https://d3l076gtvxuom7.cloudfront.net/" /> + to="https://vid.mobypicture.com/" /> diff --git a/src/chrome/content/rules/MochaHost.xml b/src/chrome/content/rules/MochaHost.xml index eed3ddc5ced2..b35ffa9e01d0 100644 --- a/src/chrome/content/rules/MochaHost.xml +++ b/src/chrome/content/rules/MochaHost.xml @@ -4,7 +4,7 @@ - + diff --git a/src/chrome/content/rules/Mochimedia.xml b/src/chrome/content/rules/Mochimedia.xml index 0cc75465c5ac..8aa94c1c8551 100644 --- a/src/chrome/content/rules/Mochimedia.xml +++ b/src/chrome/content/rules/Mochimedia.xml @@ -1,9 +1,3 @@ - diff --git a/src/chrome/content/rules/Mochtu.de.xml b/src/chrome/content/rules/Mochtu.de.xml index 3bd63cc6be1b..4065a1e9b687 100644 --- a/src/chrome/content/rules/Mochtu.de.xml +++ b/src/chrome/content/rules/Mochtu.de.xml @@ -12,7 +12,7 @@ Fetch error: http://www.mochtu.de/ => https://mochtu.de/: (51, "SSL: no alternat - walla.mochtu.de --> - + @@ -23,7 +23,7 @@ Fetch error: http://www.mochtu.de/ => https://mochtu.de/: (51, "SSL: no alternat - + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ModMyPi.xml b/src/chrome/content/rules/ModMyPi.xml index 68cd0713041c..a01c2c543484 100644 --- a/src/chrome/content/rules/ModMyPi.xml +++ b/src/chrome/content/rules/ModMyPi.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/ModTheSims.info.xml b/src/chrome/content/rules/ModTheSims.info.xml new file mode 100644 index 000000000000..d80ae07e19b1 --- /dev/null +++ b/src/chrome/content/rules/ModTheSims.info.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Mod_DB.com.xml b/src/chrome/content/rules/Mod_DB.com.xml index 8985e1b42dbd..52a3cb2e82a3 100644 --- a/src/chrome/content/rules/Mod_DB.com.xml +++ b/src/chrome/content/rules/Mod_DB.com.xml @@ -20,10 +20,11 @@ --> - + + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Model_Mayhem-problematic.xml b/src/chrome/content/rules/Model_Mayhem-problematic.xml index 0148207b118b..d6e827df2678 100644 --- a/src/chrome/content/rules/Model_Mayhem-problematic.xml +++ b/src/chrome/content/rules/Model_Mayhem-problematic.xml @@ -7,7 +7,6 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Model_Mayhem.xml b/src/chrome/content/rules/Model_Mayhem.xml index 18148eb88f85..cbaa02afe65d 100644 --- a/src/chrome/content/rules/Model_Mayhem.xml +++ b/src/chrome/content/rules/Model_Mayhem.xml @@ -13,7 +13,8 @@ - + + diff --git a/src/chrome/content/rules/ModerateUmmah.com.xml b/src/chrome/content/rules/ModerateUmmah.com.xml new file mode 100644 index 000000000000..bdb266ced85a --- /dev/null +++ b/src/chrome/content/rules/ModerateUmmah.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Modern.IE.xml b/src/chrome/content/rules/Modern.IE.xml index 742dff41a795..d4e4bb7a01a0 100644 --- a/src/chrome/content/rules/Modern.IE.xml +++ b/src/chrome/content/rules/Modern.IE.xml @@ -30,7 +30,7 @@ Fetch error: http://remote.modern.ie/ => https://remote.modern.ie/: (6, 'Could n * Secured by us --> - + @@ -48,8 +48,8 @@ Fetch error: http://remote.modern.ie/ => https://remote.modern.ie/: (6, 'Could n - - + + diff --git a/src/chrome/content/rules/Modern_Giver.xml b/src/chrome/content/rules/Modern_Giver.xml index 39a78375659b..eabe3bd1f081 100644 --- a/src/chrome/content/rules/Modern_Giver.xml +++ b/src/chrome/content/rules/Modern_Giver.xml @@ -8,7 +8,7 @@ - + diff --git a/src/chrome/content/rules/Modernrepo.com-problematic.xml b/src/chrome/content/rules/Modernrepo.com-problematic.xml deleted file mode 100644 index 9b73fee03e29..000000000000 --- a/src/chrome/content/rules/Modernrepo.com-problematic.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Modernrepo.com.xml b/src/chrome/content/rules/Modernrepo.com.xml deleted file mode 100644 index 82c1f020f238..000000000000 --- a/src/chrome/content/rules/Modernrepo.com.xml +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Modernus.xml b/src/chrome/content/rules/Modernus.xml index d6fe629928b2..ba0b434dfa74 100644 --- a/src/chrome/content/rules/Modernus.xml +++ b/src/chrome/content/rules/Modernus.xml @@ -13,10 +13,6 @@ - + - - - \ No newline at end of file + diff --git a/src/chrome/content/rules/Modicine.ru.xml b/src/chrome/content/rules/Modicine.ru.xml new file mode 100644 index 000000000000..18c68d5cae92 --- /dev/null +++ b/src/chrome/content/rules/Modicine.ru.xml @@ -0,0 +1,10 @@ + + + + + + + diff --git a/src/chrome/content/rules/Modoee.com.xml b/src/chrome/content/rules/Modoee.com.xml new file mode 100644 index 000000000000..5cc20ffb593c --- /dev/null +++ b/src/chrome/content/rules/Modoee.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/ModrsBook.com.xml b/src/chrome/content/rules/ModrsBook.com.xml new file mode 100644 index 000000000000..1c6d47fd6b2e --- /dev/null +++ b/src/chrome/content/rules/ModrsBook.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Modulus.io.xml b/src/chrome/content/rules/Modulus.io.xml index 1078ba68b6b1..096a4db939ee 100644 --- a/src/chrome/content/rules/Modulus.io.xml +++ b/src/chrome/content/rules/Modulus.io.xml @@ -33,7 +33,7 @@ Fetch error: http://www.modulus.io/ => https://modulus.io/: (28, 'Connection tim - .modulus.io --> - + diff --git a/src/chrome/content/rules/Moelleken.org.xml b/src/chrome/content/rules/Moelleken.org.xml index b1d8651012f7..0ebc289f6817 100644 --- a/src/chrome/content/rules/Moelleken.org.xml +++ b/src/chrome/content/rules/Moelleken.org.xml @@ -14,7 +14,7 @@ - + - + + - - - \ No newline at end of file + diff --git a/src/chrome/content/rules/Moikrug.ru.xml b/src/chrome/content/rules/Moikrug.ru.xml index 5e8e7af50b50..251512d193fa 100644 --- a/src/chrome/content/rules/Moikrug.ru.xml +++ b/src/chrome/content/rules/Moikrug.ru.xml @@ -45,7 +45,7 @@ - + - - - - diff --git a/src/chrome/content/rules/MojoHaus.org.xml b/src/chrome/content/rules/MojoHaus.org.xml new file mode 100644 index 000000000000..ca431159f954 --- /dev/null +++ b/src/chrome/content/rules/MojoHaus.org.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Mollom.xml b/src/chrome/content/rules/Mollom.xml index e3b0fdcbe525..32765046c99c 100644 --- a/src/chrome/content/rules/Mollom.xml +++ b/src/chrome/content/rules/Mollom.xml @@ -19,7 +19,7 @@ Fetch error: http://wdc-api04.mollom.com/ => https://wdc-api04.mollom.com/: (28, - xmlrpc2 --> - + diff --git a/src/chrome/content/rules/MomentusMedia.xml b/src/chrome/content/rules/MomentusMedia.xml deleted file mode 100644 index e21678f0ce58..000000000000 --- a/src/chrome/content/rules/MomentusMedia.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Mommys_Little_Sunshine.com.xml b/src/chrome/content/rules/Mommys_Little_Sunshine.com.xml deleted file mode 100644 index 8526ba88a068..000000000000 --- a/src/chrome/content/rules/Mommys_Little_Sunshine.com.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Monarch.co.uk.xml b/src/chrome/content/rules/Monarch.co.uk.xml index 0a3e5adb81a4..d54bfff89c49 100644 --- a/src/chrome/content/rules/Monarch.co.uk.xml +++ b/src/chrome/content/rules/Monarch.co.uk.xml @@ -5,10 +5,10 @@ Fetch error: http://monarch.co.uk/ => https://www.monarch.co.uk/: (60, 'SSL cert Fetch error: http://www.monarch.co.uk/ => https://www.monarch.co.uk/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Monash.edu.xml b/src/chrome/content/rules/Monash.edu.xml index 597b048e75ec..8d99a635fd50 100644 --- a/src/chrome/content/rules/Monash.edu.xml +++ b/src/chrome/content/rules/Monash.edu.xml @@ -25,7 +25,7 @@ Non-2xx HTTP code: http://login.monash.edu/ (200) => https://login.monash.edu/ ( - Images on (www.)? from www.monash.edu.au --> - + diff --git a/src/chrome/content/rules/Mondemp3.com.xml b/src/chrome/content/rules/Mondemp3.com.xml index 472f332156ed..3e2d6f74284c 100644 --- a/src/chrome/content/rules/Mondemp3.com.xml +++ b/src/chrome/content/rules/Mondemp3.com.xml @@ -7,7 +7,7 @@ Fetch error: http://www.mondemp3.com/ => https://www.mondemp3.com/: (51, "SSL: n Disabled by https-everywhere-checker because: Fetch error: http://mondemp3.com/ => https://mondemp3.com/: (60, 'SSL certificate problem: self signed certificate') --> - + @@ -18,4 +18,4 @@ Fetch error: http://mondemp3.com/ => https://mondemp3.com/: (60, 'SSL certificat - \ No newline at end of file + diff --git a/src/chrome/content/rules/Monetate.xml b/src/chrome/content/rules/Monetate.xml index 6ffc20326ab0..622e460c38b2 100644 --- a/src/chrome/content/rules/Monetate.xml +++ b/src/chrome/content/rules/Monetate.xml @@ -17,14 +17,21 @@ --> - - - + + + + + + + + + + + - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Monex.co.jp.xml b/src/chrome/content/rules/Monex.co.jp.xml index 4db72ede9ee0..7ec0ff98f108 100644 --- a/src/chrome/content/rules/Monex.co.jp.xml +++ b/src/chrome/content/rules/Monex.co.jp.xml @@ -21,7 +21,7 @@ Fetch error: http://its2.monex.co.jp/ => https://its2.monex.co.jp/: (28, 'Connec --> - + diff --git a/src/chrome/content/rules/Money.pl-falsemixed.xml b/src/chrome/content/rules/Money.pl-falsemixed.xml index 3b88aa32258c..93707b9568c1 100644 --- a/src/chrome/content/rules/Money.pl-falsemixed.xml +++ b/src/chrome/content/rules/Money.pl-falsemixed.xml @@ -6,7 +6,7 @@ Fetch error: http://przetargi.money.pl/ => https://przetargi.money.pl/: Too many For rules not causing false/broken MCB, see Money.pl.xml. --> - + @@ -19,7 +19,7 @@ Fetch error: http://przetargi.money.pl/ => https://przetargi.money.pl/: Too many - + https://www.money.pl/: Too many redirects w * Secured by us --> - + diff --git a/src/chrome/content/rules/Money_Saving_Expert.com.xml b/src/chrome/content/rules/Money_Saving_Expert.com.xml index 20a65365964f..10a1d51b5c0d 100644 --- a/src/chrome/content/rules/Money_Saving_Expert.com.xml +++ b/src/chrome/content/rules/Money_Saving_Expert.com.xml @@ -42,4 +42,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Moneybookers.xml b/src/chrome/content/rules/Moneybookers.xml index 892e49d32d77..510c7efc7333 100644 --- a/src/chrome/content/rules/Moneybookers.xml +++ b/src/chrome/content/rules/Moneybookers.xml @@ -23,18 +23,16 @@ --> - + + - + - - + diff --git a/src/chrome/content/rules/Mongabay.com-problematic.xml b/src/chrome/content/rules/Mongabay.com-problematic.xml index 842763ba00a0..d2af07a9d521 100644 --- a/src/chrome/content/rules/Mongabay.com-problematic.xml +++ b/src/chrome/content/rules/Mongabay.com-problematic.xml @@ -7,7 +7,6 @@ - + diff --git a/src/chrome/content/rules/Mongabay.com.xml b/src/chrome/content/rules/Mongabay.com.xml index 2cb557b47d92..08986b5349ac 100644 --- a/src/chrome/content/rules/Mongabay.com.xml +++ b/src/chrome/content/rules/Mongabay.com.xml @@ -42,4 +42,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/MongoDB.com.xml b/src/chrome/content/rules/MongoDB.com.xml index 6a335a107614..3c2f51f76eb2 100644 --- a/src/chrome/content/rules/MongoDB.com.xml +++ b/src/chrome/content/rules/MongoDB.com.xml @@ -12,6 +12,7 @@ + diff --git a/src/chrome/content/rules/MongoDB.org.xml b/src/chrome/content/rules/MongoDB.org.xml index 8825714e97cf..50633ce1e216 100644 --- a/src/chrome/content/rules/MongoDB.org.xml +++ b/src/chrome/content/rules/MongoDB.org.xml @@ -43,7 +43,7 @@ - + https://www.monitis.com/: Cycle detected - U - portal --> - + - + + + @@ -40,7 +42,6 @@ Fetch error: http://monitis.com/ => https://www.monitis.com/: Cycle detected - U - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Monkeys-Audio.xml b/src/chrome/content/rules/Monkeys-Audio.xml deleted file mode 100644 index 15a6ce3bb0f2..000000000000 --- a/src/chrome/content/rules/Monkeys-Audio.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/MonkeysAudio.com.xml b/src/chrome/content/rules/MonkeysAudio.com.xml new file mode 100644 index 000000000000..122885ffc919 --- /dev/null +++ b/src/chrome/content/rules/MonkeysAudio.com.xml @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Monmouthshire.gov.uk.xml b/src/chrome/content/rules/Monmouthshire.gov.uk.xml index 9a85d1104170..0cc3b3f4d110 100644 --- a/src/chrome/content/rules/Monmouthshire.gov.uk.xml +++ b/src/chrome/content/rules/Monmouthshire.gov.uk.xml @@ -39,7 +39,7 @@ Fetch error: http://www.monmouthshire.gov.uk/ => https://www.monmouthshire.gov.u ˢ Secured by us --> - + @@ -54,7 +54,7 @@ Fetch error: http://www.monmouthshire.gov.uk/ => https://www.monmouthshire.gov.u - + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Monoprice.xml b/src/chrome/content/rules/Monoprice.xml index 15f55d8fd26c..d05d020d9906 100644 --- a/src/chrome/content/rules/Monoprice.xml +++ b/src/chrome/content/rules/Monoprice.xml @@ -5,7 +5,8 @@ - + + @@ -14,7 +15,6 @@ - + diff --git a/src/chrome/content/rules/Monotype-Imaging.xml b/src/chrome/content/rules/Monotype-Imaging.xml index b174aa25c398..ed34a92281e1 100644 --- a/src/chrome/content/rules/Monotype-Imaging.xml +++ b/src/chrome/content/rules/Monotype-Imaging.xml @@ -1,7 +1,6 @@ - + + https://cookie.monster.com/: (60, 'SSL certificate problem: certificate has expired') +Fetch error: http://oas.monster.com/ => https://oas.monster.com/: (60, 'SSL certificate problem: certificate has expired') + + Other Monster rulesets: + + - Admissions.com.xml + - Fastweb.com.xml + - Newjobs.com.xml + + Invalid certificate: + - advertising + - career-services + - inside + - jdn + - my + - partner + - promotion + - resume + Time out: + - chat + - company + - jobs + - jobsearch + Redirect to http: + - ^ + - answers + - help + +--> + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Monster.xml b/src/chrome/content/rules/Monster.xml deleted file mode 100644 index 006f60fe094e..000000000000 --- a/src/chrome/content/rules/Monster.xml +++ /dev/null @@ -1,140 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/MonsterDivx.com.xml b/src/chrome/content/rules/MonsterDivx.com.xml deleted file mode 100644 index 6f38a39d4039..000000000000 --- a/src/chrome/content/rules/MonsterDivx.com.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/MonsterLessons.com.xml b/src/chrome/content/rules/MonsterLessons.com.xml new file mode 100644 index 000000000000..b443853522b5 --- /dev/null +++ b/src/chrome/content/rules/MonsterLessons.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Monster_WoW.xml b/src/chrome/content/rules/Monster_WoW.xml index b84a115de4f9..417b4a6ccbaf 100644 --- a/src/chrome/content/rules/Monster_WoW.xml +++ b/src/chrome/content/rules/Monster_WoW.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://forum.monster-wow.com/ => https://forum.monster-wow.com/: Too many redirects while fetching 'https://forum.monster-wow.com/' --> - + @@ -12,9 +12,9 @@ Fetch error: http://forum.monster-wow.com/ => https://forum.monster-wow.com/: To - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Monthly_Review.org.xml b/src/chrome/content/rules/Monthly_Review.org.xml index abb6e08ec287..cfb91fb8d51e 100644 --- a/src/chrome/content/rules/Monthly_Review.org.xml +++ b/src/chrome/content/rules/Monthly_Review.org.xml @@ -21,7 +21,7 @@ Fetch error: http://mrzine.monthlyreview.org/ => https://mrzine.monthlyreview.or * Secured by us --> - + diff --git a/src/chrome/content/rules/Monty_Program.xml b/src/chrome/content/rules/Monty_Program.xml index 9fce947d2630..d9b68d7d02c3 100644 --- a/src/chrome/content/rules/Monty_Program.xml +++ b/src/chrome/content/rules/Monty_Program.xml @@ -5,7 +5,7 @@ Other Monty Program rulesets: - AskMonty.xml - - MariaDB.xml + - MariaDB.org.xml Problematic subdomains: diff --git a/src/chrome/content/rules/MoodSmith.com.xml b/src/chrome/content/rules/MoodSmith.com.xml index 5ced8fe16b0c..48194938915f 100644 --- a/src/chrome/content/rules/MoodSmith.com.xml +++ b/src/chrome/content/rules/MoodSmith.com.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Mood_Disorders.ca.xml b/src/chrome/content/rules/Mood_Disorders.ca.xml index 2d7e344ab0e0..0913145b69dd 100644 --- a/src/chrome/content/rules/Mood_Disorders.ca.xml +++ b/src/chrome/content/rules/Mood_Disorders.ca.xml @@ -16,7 +16,7 @@ --> - + - + - + diff --git a/src/chrome/content/rules/Moodle.net.xml b/src/chrome/content/rules/Moodle.net.xml index 0e37bc8a3fb0..03a0a4be6bd6 100644 --- a/src/chrome/content/rules/Moodle.net.xml +++ b/src/chrome/content/rules/Moodle.net.xml @@ -29,7 +29,7 @@ - + - + - + diff --git a/src/chrome/content/rules/MoonPig.xml b/src/chrome/content/rules/MoonPig.xml index 56483e4a64a4..f79954fc908a 100644 --- a/src/chrome/content/rules/MoonPig.xml +++ b/src/chrome/content/rules/MoonPig.xml @@ -4,7 +4,7 @@ - + diff --git a/src/chrome/content/rules/MoonScript.org.xml b/src/chrome/content/rules/MoonScript.org.xml new file mode 100644 index 000000000000..6dec8de0df90 --- /dev/null +++ b/src/chrome/content/rules/MoonScript.org.xml @@ -0,0 +1,13 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Moonfruit.com.xml b/src/chrome/content/rules/Moonfruit.com.xml index a98b7b7d2f47..36ae0324e75b 100644 --- a/src/chrome/content/rules/Moonfruit.com.xml +++ b/src/chrome/content/rules/Moonfruit.com.xml @@ -19,14 +19,14 @@ - + + - + diff --git a/src/chrome/content/rules/Mooshi.com.au.xml b/src/chrome/content/rules/Mooshi.com.au.xml deleted file mode 100644 index 55bfd388bf3f..000000000000 --- a/src/chrome/content/rules/Mooshi.com.au.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Moot.it.xml b/src/chrome/content/rules/Moot.it.xml index f99f3b6c6237..da5a5f80bad0 100644 --- a/src/chrome/content/rules/Moot.it.xml +++ b/src/chrome/content/rules/Moot.it.xml @@ -21,7 +21,10 @@ - + + + + @@ -33,4 +36,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/MootiPass.com.xml b/src/chrome/content/rules/MootiPass.com.xml deleted file mode 100644 index 45be926b9b43..000000000000 --- a/src/chrome/content/rules/MootiPass.com.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Moovweb.xml b/src/chrome/content/rules/Moovweb.xml index fb87e4101537..be0af42a846b 100644 --- a/src/chrome/content/rules/Moovweb.xml +++ b/src/chrome/content/rules/Moovweb.xml @@ -23,8 +23,11 @@ - - + + + + + @@ -33,10 +36,7 @@ - - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Moreal.co.xml b/src/chrome/content/rules/Moreal.co.xml deleted file mode 100644 index bf13660ddd90..000000000000 --- a/src/chrome/content/rules/Moreal.co.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Moreover-Technologies.xml b/src/chrome/content/rules/Moreover-Technologies.xml index 5d40df258279..953a3335397a 100644 --- a/src/chrome/content/rules/Moreover-Technologies.xml +++ b/src/chrome/content/rules/Moreover-Technologies.xml @@ -6,13 +6,12 @@ --> - + - + diff --git a/src/chrome/content/rules/Morgenweb.de.xml b/src/chrome/content/rules/Morgenweb.de.xml index 561c69e2eacc..5d3935e6b520 100644 --- a/src/chrome/content/rules/Morgenweb.de.xml +++ b/src/chrome/content/rules/Morgenweb.de.xml @@ -1,5 +1,19 @@ + - + + + + + + - + + + diff --git a/src/chrome/content/rules/Morning_Star_Online.co.uk.xml b/src/chrome/content/rules/Morning_Star_Online.co.uk.xml index 77709788b5e3..c01e45c3c6f2 100644 --- a/src/chrome/content/rules/Morning_Star_Online.co.uk.xml +++ b/src/chrome/content/rules/Morning_Star_Online.co.uk.xml @@ -10,7 +10,7 @@ Fetch error: http://shop.morningstaronline.co.uk/ => https://shop.morningstaronl * Secured by us --> - + diff --git a/src/chrome/content/rules/Moroccan-Bazaar.xml b/src/chrome/content/rules/Moroccan-Bazaar.xml deleted file mode 100644 index c05516b1c699..000000000000 --- a/src/chrome/content/rules/Moroccan-Bazaar.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Morphis.com.xml b/src/chrome/content/rules/Morphis.com.xml index d7560a57d1cb..a07cfa979635 100644 --- a/src/chrome/content/rules/Morphis.com.xml +++ b/src/chrome/content/rules/Morphis.com.xml @@ -7,7 +7,7 @@ Fetch error: http://www.morphis.com/ => https://morphis.com/: (51, "SSL: no alte www.morphis.com: Mismatched --> - + diff --git a/src/chrome/content/rules/Morpho.hu.xml b/src/chrome/content/rules/Morpho.hu.xml index f1d9b75608a2..a302c1c8ac51 100644 --- a/src/chrome/content/rules/Morpho.hu.xml +++ b/src/chrome/content/rules/Morpho.hu.xml @@ -14,7 +14,7 @@ --> - + https://morrisons.com/: (60, 'SSL certific - + + + + - + + + + @@ -64,7 +70,6 @@ Fetch error: http://morrisons.com/ => https://morrisons.com/: (60, 'SSL certific - + diff --git a/src/chrome/content/rules/Morrisons_Cellar.com.xml b/src/chrome/content/rules/Morrisons_Cellar.com.xml index 5a83436dba53..1faeb8894500 100644 --- a/src/chrome/content/rules/Morrisons_Cellar.com.xml +++ b/src/chrome/content/rules/Morrisons_Cellar.com.xml @@ -18,11 +18,11 @@ Fetch error: http://morrisonscellar.com/ => https://morrisonscellar.com/webapp/w * Secured by us --> - + - + diff --git a/src/chrome/content/rules/Mosh.org.xml b/src/chrome/content/rules/Mosh.org.xml new file mode 100644 index 000000000000..571203759165 --- /dev/null +++ b/src/chrome/content/rules/Mosh.org.xml @@ -0,0 +1,10 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Moshimonsters.com.xml b/src/chrome/content/rules/Moshimonsters.com.xml new file mode 100644 index 000000000000..470a19b338b1 --- /dev/null +++ b/src/chrome/content/rules/Moshimonsters.com.xml @@ -0,0 +1,24 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Moswarat.com.xml b/src/chrome/content/rules/Moswarat.com.xml new file mode 100644 index 000000000000..9e3da3cdc6dd --- /dev/null +++ b/src/chrome/content/rules/Moswarat.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/MotherJones.com.xml b/src/chrome/content/rules/MotherJones.com.xml index 82112b74f093..38010bc5a8bc 100644 --- a/src/chrome/content/rules/MotherJones.com.xml +++ b/src/chrome/content/rules/MotherJones.com.xml @@ -1,35 +1,15 @@ - - + - - - - - - - - - - - + + + + + + diff --git a/src/chrome/content/rules/Motherpipe.co.uk.xml b/src/chrome/content/rules/Motherpipe.co.uk.xml index f63bc554269b..bd4a8a0fce3b 100644 --- a/src/chrome/content/rules/Motherpipe.co.uk.xml +++ b/src/chrome/content/rules/Motherpipe.co.uk.xml @@ -9,7 +9,7 @@ Fetch error: http://www.motherpipe.co.uk/ => https://www.motherpipe.co.uk/: (28, - Motherpipe.com.xml --> - + diff --git a/src/chrome/content/rules/Motherpipe.com.xml b/src/chrome/content/rules/Motherpipe.com.xml index 5565546526ec..1b28da2551f4 100644 --- a/src/chrome/content/rules/Motherpipe.com.xml +++ b/src/chrome/content/rules/Motherpipe.com.xml @@ -9,7 +9,7 @@ Fetch error: http://search.motherpipe.com/ => https://search.motherpipe.com/: (2 (www.)?motherpipe.com: Refused --> - + diff --git a/src/chrome/content/rules/Motley-Fool-Australia.xml b/src/chrome/content/rules/Motley-Fool-Australia.xml new file mode 100644 index 000000000000..732ac8fc59bc --- /dev/null +++ b/src/chrome/content/rules/Motley-Fool-Australia.xml @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Motley-Fool-Canada.xml b/src/chrome/content/rules/Motley-Fool-Canada.xml new file mode 100644 index 000000000000..0f2910925785 --- /dev/null +++ b/src/chrome/content/rules/Motley-Fool-Canada.xml @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Motley-Fool-Germany.xml b/src/chrome/content/rules/Motley-Fool-Germany.xml new file mode 100644 index 000000000000..014c1c853f46 --- /dev/null +++ b/src/chrome/content/rules/Motley-Fool-Germany.xml @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Motley-Fool-Singapore.xml b/src/chrome/content/rules/Motley-Fool-Singapore.xml new file mode 100644 index 000000000000..33ef4fe9cc8f --- /dev/null +++ b/src/chrome/content/rules/Motley-Fool-Singapore.xml @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Motley-Fool-UK.xml b/src/chrome/content/rules/Motley-Fool-UK.xml new file mode 100644 index 000000000000..c911aa461732 --- /dev/null +++ b/src/chrome/content/rules/Motley-Fool-UK.xml @@ -0,0 +1,26 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Motley-Fool.xml b/src/chrome/content/rules/Motley-Fool.xml index 61929f68b76d..db7d54a0886a 100644 --- a/src/chrome/content/rules/Motley-Fool.xml +++ b/src/chrome/content/rules/Motley-Fool.xml @@ -1,74 +1,73 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Moto-G.com.xml b/src/chrome/content/rules/Moto-G.com.xml index ae84e1432631..d05a2f0fc8ff 100644 --- a/src/chrome/content/rules/Moto-G.com.xml +++ b/src/chrome/content/rules/Moto-G.com.xml @@ -20,7 +20,7 @@ Fetch error: http://www.moto-g.com/ => https://www.moto-g.com/: (60, 'SSL certif - ^ (dropped) --> - + diff --git a/src/chrome/content/rules/Motorola.xml b/src/chrome/content/rules/Motorola.xml index 5371ca8cf749..96666e132ced 100644 --- a/src/chrome/content/rules/Motorola.xml +++ b/src/chrome/content/rules/Motorola.xml @@ -67,7 +67,7 @@ Non-2xx HTTP code: http://www.motorola.de/ (200) => https://www.motorola.de/ (40 * Secured by us --> - + @@ -79,7 +79,7 @@ Non-2xx HTTP code: http://www.motorola.de/ (200) => https://www.motorola.de/ (40 - + @@ -87,19 +87,19 @@ Non-2xx HTTP code: http://www.motorola.de/ (200) => https://www.motorola.de/ (40 - + - + - + - + - + https://www.mototradeup.com/: (60, 'SSL !www: mismatched, CN: mac.fairbanksllc.com --> - + - + @@ -23,4 +23,4 @@ Fetch error: http://mototradeup.com/ => https://www.mototradeup.com/: (60, 'SSL - \ No newline at end of file + diff --git a/src/chrome/content/rules/Motricity.xml b/src/chrome/content/rules/Motricity.xml index 3780449a1239..e6f314745c7d 100644 --- a/src/chrome/content/rules/Motricity.xml +++ b/src/chrome/content/rules/Motricity.xml @@ -12,13 +12,12 @@ Fetch error: http://webshared.mcore.com/ => https://webshared.mcore.com/: (6, 'C - sry.it.mcore.com --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Mount_Sinai.org.xml b/src/chrome/content/rules/Mount_Sinai.org.xml index 1c2c15cbfe7a..9cd932537ba9 100644 --- a/src/chrome/content/rules/Mount_Sinai.org.xml +++ b/src/chrome/content/rules/Mount_Sinai.org.xml @@ -30,13 +30,14 @@ - + + + - + diff --git a/src/chrome/content/rules/MountaineeringMethodology.com.xml b/src/chrome/content/rules/MountaineeringMethodology.com.xml new file mode 100644 index 000000000000..d3dcce65694d --- /dev/null +++ b/src/chrome/content/rules/MountaineeringMethodology.com.xml @@ -0,0 +1,12 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Mountspace.com.xml b/src/chrome/content/rules/Mountspace.com.xml deleted file mode 100644 index 9e866b341858..000000000000 --- a/src/chrome/content/rules/Mountspace.com.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Mountyhall.com.xml b/src/chrome/content/rules/Mountyhall.com.xml index 3f0b998da86a..33ab7c429614 100644 --- a/src/chrome/content/rules/Mountyhall.com.xml +++ b/src/chrome/content/rules/Mountyhall.com.xml @@ -19,7 +19,7 @@ phpmyadmin.mountyhall.com --> - + diff --git a/src/chrome/content/rules/Mouseflow.xml b/src/chrome/content/rules/Mouseflow.xml index 74fa041ad403..8c87ef2f1b9c 100644 --- a/src/chrome/content/rules/Mouseflow.xml +++ b/src/chrome/content/rules/Mouseflow.xml @@ -9,7 +9,7 @@ Fetch error: http://www.mouseflow.nl/ => https://www.mouseflow.nl/: (28, 'Connec Mismtached: - go.mouseflow.com --> - + diff --git a/src/chrome/content/rules/Mov.ad.xml b/src/chrome/content/rules/Mov.ad.xml index 96790563ce2b..10097e16fb39 100644 --- a/src/chrome/content/rules/Mov.ad.xml +++ b/src/chrome/content/rules/Mov.ad.xml @@ -17,14 +17,14 @@ - reptracy.movad.net - dev.reptracy.movad.net --> - + - + - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/MoveOn.org-falsemixed.xml b/src/chrome/content/rules/MoveOn.org-falsemixed.xml index e98ee2356b56..8dee75777009 100644 --- a/src/chrome/content/rules/MoveOn.org-falsemixed.xml +++ b/src/chrome/content/rules/MoveOn.org-falsemixed.xml @@ -5,18 +5,12 @@ - - - - - + diff --git a/src/chrome/content/rules/MoveOn.org.xml b/src/chrome/content/rules/MoveOn.org.xml new file mode 100644 index 000000000000..9a6a5b766511 --- /dev/null +++ b/src/chrome/content/rules/MoveOn.org.xml @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/MoveOn.xml b/src/chrome/content/rules/MoveOn.xml deleted file mode 100644 index 1322b45978ea..000000000000 --- a/src/chrome/content/rules/MoveOn.xml +++ /dev/null @@ -1,92 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Moverall.com.xml b/src/chrome/content/rules/Moverall.com.xml index 92ea9479654e..d5b6e87cea64 100644 --- a/src/chrome/content/rules/Moverall.com.xml +++ b/src/chrome/content/rules/Moverall.com.xml @@ -6,10 +6,11 @@ Fetch error: http://www.moverall.com/ => https://www.moverall.com/: (60, 'SSL ce Fetch error: http://moverall.com/ => https://www.moverall.com/: (60, 'SSL certificate problem: certificate has expired') --> - + - + + @@ -18,7 +19,7 @@ Fetch error: http://moverall.com/ => https://www.moverall.com/: (60, 'SSL certif - + diff --git a/src/chrome/content/rules/Movian.tv.xml b/src/chrome/content/rules/Movian.tv.xml index 38edd537a8cb..6b9dfc9f4788 100644 --- a/src/chrome/content/rules/Movian.tv.xml +++ b/src/chrome/content/rules/Movian.tv.xml @@ -7,7 +7,7 @@ - + diff --git a/src/chrome/content/rules/Movie2k.tv.xml b/src/chrome/content/rules/Movie2k.tv.xml index 0780747d78c3..fb6dc003b8ec 100644 --- a/src/chrome/content/rules/Movie2k.tv.xml +++ b/src/chrome/content/rules/Movie2k.tv.xml @@ -10,7 +10,7 @@ Fetch error: http://www.movie2k.pe/ => https://www.movie2k.pe/: (51, "SSL: no al movie2k.tv is on sale --> - + diff --git a/src/chrome/content/rules/MovieTH.com.xml b/src/chrome/content/rules/MovieTH.com.xml deleted file mode 100644 index 1ce8dfe96d59..000000000000 --- a/src/chrome/content/rules/MovieTH.com.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/MovieTickets.com.xml b/src/chrome/content/rules/MovieTickets.com.xml index dfb6cbf9da85..dd0a58b9e788 100644 --- a/src/chrome/content/rules/MovieTickets.com.xml +++ b/src/chrome/content/rules/MovieTickets.com.xml @@ -12,7 +12,7 @@ Non-2xx HTTP code: http://movietickets.com/ (200) => https://movietickets.com/ ( - reviews.movietickets.com --> - + diff --git a/src/chrome/content/rules/Moviease.com.xml b/src/chrome/content/rules/Moviease.com.xml index 91c22fba18bc..5c529b432320 100644 --- a/src/chrome/content/rules/Moviease.com.xml +++ b/src/chrome/content/rules/Moviease.com.xml @@ -1,7 +1,7 @@ @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Moviefone.xml b/src/chrome/content/rules/Moviefone.xml index 2da44c03cb72..14de066450c0 100644 --- a/src/chrome/content/rules/Moviefone.xml +++ b/src/chrome/content/rules/Moviefone.xml @@ -1,27 +1,11 @@ - - - - + - - + - - - - - - + diff --git a/src/chrome/content/rules/Moviemagnet.net.xml b/src/chrome/content/rules/Moviemagnet.net.xml index 944a27d52187..1052940dd4e2 100644 --- a/src/chrome/content/rules/Moviemagnet.net.xml +++ b/src/chrome/content/rules/Moviemagnet.net.xml @@ -5,7 +5,7 @@ Fetch error: http://moviemagnet.net/ => https://moviemagnet.net/: (35, 'Unknown Fetch error: http://www.moviemagnet.net/ => https://www.moviemagnet.net/: (35, 'Unknown SSL protocol error in connection to www.moviemagnet.net:443 ') --> - + diff --git a/src/chrome/content/rules/Movieposter.com.xml b/src/chrome/content/rules/Movieposter.com.xml index af10d8d01ef9..adc881ec97bf 100644 --- a/src/chrome/content/rules/Movieposter.com.xml +++ b/src/chrome/content/rules/Movieposter.com.xml @@ -6,4 +6,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Moxie_Soft.com.xml b/src/chrome/content/rules/Moxie_Soft.com.xml index 81e7b395d6fc..3abef4a69726 100644 --- a/src/chrome/content/rules/Moxie_Soft.com.xml +++ b/src/chrome/content/rules/Moxie_Soft.com.xml @@ -23,12 +23,14 @@ Fetch error: http://moxiesoft.com/ => https://moxiesoft.com/: (60, 'SSL certific * Secured by us --> - + - + + - + + - - - + + + + + + + + + - + diff --git a/src/chrome/content/rules/Mozdev.xml b/src/chrome/content/rules/Mozdev.xml deleted file mode 100644 index fe1b9766759b..000000000000 --- a/src/chrome/content/rules/Mozdev.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Mozdev_Group.com.xml b/src/chrome/content/rules/Mozdev_Group.com.xml index 7e9eaba6c815..e4cd01ffe4d4 100644 --- a/src/chrome/content/rules/Mozdev_Group.com.xml +++ b/src/chrome/content/rules/Mozdev_Group.com.xml @@ -23,7 +23,14 @@ - + + + + + + + + diff --git a/src/chrome/content/rules/Mozgvya.com.xml b/src/chrome/content/rules/Mozgvya.com.xml new file mode 100644 index 000000000000..c769577b1fd5 --- /dev/null +++ b/src/chrome/content/rules/Mozgvya.com.xml @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Mozilla-Russia.org.xml b/src/chrome/content/rules/Mozilla-Russia.org.xml index 81a4893b99c9..d07eff5bb1e2 100644 --- a/src/chrome/content/rules/Mozilla-Russia.org.xml +++ b/src/chrome/content/rules/Mozilla-Russia.org.xml @@ -31,7 +31,9 @@ - + + + diff --git a/src/chrome/content/rules/Mozilla-self-signed.xml b/src/chrome/content/rules/Mozilla-self-signed.xml deleted file mode 100644 index d3b207fc90ad..000000000000 --- a/src/chrome/content/rules/Mozilla-self-signed.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Mozilla.com.xml b/src/chrome/content/rules/Mozilla.com.xml index d27a7d4bd3e8..172c11a4f656 100644 --- a/src/chrome/content/rules/Mozilla.com.xml +++ b/src/chrome/content/rules/Mozilla.com.xml @@ -1,143 +1,62 @@ - - + - + - - - - - - - - - - - - - + - - + + + + - - + - + - - - - - + - diff --git a/src/chrome/content/rules/Mozilla.jp.xml b/src/chrome/content/rules/Mozilla.jp.xml index 0ad6c147ff6e..aeea565bb0b0 100644 --- a/src/chrome/content/rules/Mozilla.jp.xml +++ b/src/chrome/content/rules/Mozilla.jp.xml @@ -1,44 +1,13 @@ - - - - - + + + + - - - - - - - - - + diff --git a/src/chrome/content/rules/Mozilla.net.xml b/src/chrome/content/rules/Mozilla.net.xml index c33a392b9e98..d48d84834427 100644 --- a/src/chrome/content/rules/Mozilla.net.xml +++ b/src/chrome/content/rules/Mozilla.net.xml @@ -8,56 +8,38 @@ - hardhat.mozilla.net Problematic hosts in *mozilla.net: - - download.cdn ¹ - hardhat ² - - www ³ - ¹ 404; mismatched, CN: gp1.wac.edgecastcdn.net ² Works; mismatched, CN: gp1.wac.edgecastcdn.net - ³ Prompts for LDAP login; mismatched, CN: static-san.mozilla.org - - Observed hosts in *mozilla.net: - - static-cdn.addons - - static-ssl-cdn.addons - - in *cdn - - activations - - addons - - air - - code - - developer - - download (→ ftp.mozilla.org) - - download-installer - - fhr - - marketplace - - mozorg - - support - - versioncheck - - videos-cdn - - www (→ www.mozilla.org) - - Mixed content: - - Images on hardhat.cdn.mozilla.net from www.mozilla.org * - - Ad on activations.cdn.mozilla.net from getpocket.com * - * Secured by us --> - + + - - + + + + + + + + + + + + + + + + + + - - - - - - + diff --git a/src/chrome/content/rules/Mozilla.xml b/src/chrome/content/rules/Mozilla.xml index a019532d40ef..55908ba52d1c 100644 --- a/src/chrome/content/rules/Mozilla.xml +++ b/src/chrome/content/rules/Mozilla.xml @@ -1,31 +1,33 @@ @@ -226,50 +89,43 @@ https://mail1.eff.org/pipermail/https-everywhere-rules/2013-June/001635.html --> - + - + - - - - - - - - - - - - - - - + - + + + + + - + + + + @@ -282,21 +138,9 @@ - + - - - - - - - - https://mozillaignite.com/: (6, 'Could not resolve host: mozillaignite.com') -Fetch error: http://www.mozillaignite.com/ => https://www.mozillaignite.com/: (6, 'Could not resolve host: www.mozillaignite.com') - ---> - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Mozilla_Webmaker.xml b/src/chrome/content/rules/Mozilla_Webmaker.xml index 2bf5785dc9ed..c6ef1b6f8f81 100644 --- a/src/chrome/content/rules/Mozilla_Webmaker.xml +++ b/src/chrome/content/rules/Mozilla_Webmaker.xml @@ -1,28 +1,17 @@ - - - - + + - - - - - - - + + diff --git a/src/chrome/content/rules/Mozillalabs.com.xml b/src/chrome/content/rules/Mozillalabs.com.xml new file mode 100644 index 000000000000..e8e36741fb14 --- /dev/null +++ b/src/chrome/content/rules/Mozillalabs.com.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Mozillians.org.xml b/src/chrome/content/rules/Mozillians.org.xml deleted file mode 100644 index 7432a489a1ab..000000000000 --- a/src/chrome/content/rules/Mozillians.org.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Mozio.com.xml b/src/chrome/content/rules/Mozio.com.xml new file mode 100644 index 000000000000..ecacac3d5ae6 --- /dev/null +++ b/src/chrome/content/rules/Mozio.com.xml @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Moztw.org.xml b/src/chrome/content/rules/Moztw.org.xml index 16002f266056..9383d5d4eafb 100644 --- a/src/chrome/content/rules/Moztw.org.xml +++ b/src/chrome/content/rules/Moztw.org.xml @@ -3,7 +3,7 @@ Timeout: - mozlinks - + Refused: www ( equal to ^ ) --> @@ -12,10 +12,10 @@ - + - + diff --git a/src/chrome/content/rules/Mozy.xml b/src/chrome/content/rules/Mozy.xml index 4d81cdbbe554..3faf135a6079 100644 --- a/src/chrome/content/rules/Mozy.xml +++ b/src/chrome/content/rules/Mozy.xml @@ -4,8 +4,8 @@ - - + + diff --git a/src/chrome/content/rules/Mp3-Juices.com.xml b/src/chrome/content/rules/Mp3-Juices.com.xml deleted file mode 100644 index 8ffded2b8297..000000000000 --- a/src/chrome/content/rules/Mp3-Juices.com.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Mpornpass.com.xml b/src/chrome/content/rules/Mpornpass.com.xml index 6114fc95d14b..a491bb408572 100644 --- a/src/chrome/content/rules/Mpornpass.com.xml +++ b/src/chrome/content/rules/Mpornpass.com.xml @@ -30,7 +30,7 @@ --> - + - + + + + + + + + + + + diff --git a/src/chrome/content/rules/Mr_cote.info.xml b/src/chrome/content/rules/Mr_cote.info.xml index 6349b852bca5..5ac3b426dead 100644 --- a/src/chrome/content/rules/Mr_cote.info.xml +++ b/src/chrome/content/rules/Mr_cote.info.xml @@ -12,7 +12,7 @@ Fetch error: http://www.mrcote.info/ => https://www.mrcote.info/: (60, 'SSL cert * Secured by us --> - + diff --git a/src/chrome/content/rules/Mrlocksmith.com.xml b/src/chrome/content/rules/Mrlocksmith.com.xml new file mode 100644 index 000000000000..f149552f3fbc --- /dev/null +++ b/src/chrome/content/rules/Mrlocksmith.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Mrs_McNastys.xml b/src/chrome/content/rules/Mrs_McNastys.xml index 3844fa54f9d0..ceab4bbdfc2b 100644 --- a/src/chrome/content/rules/Mrs_McNastys.xml +++ b/src/chrome/content/rules/Mrs_McNastys.xml @@ -7,15 +7,15 @@ Fetch error: http://www.mrsmcnastys.com/ => https://www.mrsmcnastys.com/: (7, 'F Disabled by https-everywhere-checker because: Fetch error: http://mrsmcnastys.com/ => https://mrsmcnastys.com/: (7, 'Failed to connect to mrsmcnastys.com port 443: Connection refused') --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/MtGox.xml b/src/chrome/content/rules/MtGox.xml index f812cd122609..df091c9148cd 100644 --- a/src/chrome/content/rules/MtGox.xml +++ b/src/chrome/content/rules/MtGox.xml @@ -4,16 +4,20 @@ Disabled by https-everywhere-checker because: Fetch error: http://mtgox.com/ => https://mtgox.com/: (60, 'SSL certificate problem: certificate has expired') --> - + - + + + + + + - + - + diff --git a/src/chrome/content/rules/MtSystems.ch.xml b/src/chrome/content/rules/MtSystems.ch.xml deleted file mode 100644 index adde432b6646..000000000000 --- a/src/chrome/content/rules/MtSystems.ch.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/MtSystems.com.xml b/src/chrome/content/rules/MtSystems.com.xml new file mode 100644 index 000000000000..d97a378f8b6e --- /dev/null +++ b/src/chrome/content/rules/MtSystems.com.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Mtstatic.com.xml b/src/chrome/content/rules/Mtstatic.com.xml index 0db8bc9f65a6..772b928abb9a 100644 --- a/src/chrome/content/rules/Mtstatic.com.xml +++ b/src/chrome/content/rules/Mtstatic.com.xml @@ -1,15 +1,11 @@ - + - + - - - + diff --git a/src/chrome/content/rules/Mudah.my.xml b/src/chrome/content/rules/Mudah.my.xml new file mode 100644 index 000000000000..fd576ef339ea --- /dev/null +++ b/src/chrome/content/rules/Mudah.my.xml @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Muenchen-Transparent.xml b/src/chrome/content/rules/Muenchen-Transparent.xml new file mode 100644 index 000000000000..d52614d312ec --- /dev/null +++ b/src/chrome/content/rules/Muenchen-Transparent.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Muenchen.de.xml b/src/chrome/content/rules/Muenchen.de.xml index 496dc6d679d2..9d745a74ef5b 100644 --- a/src/chrome/content/rules/Muenchen.de.xml +++ b/src/chrome/content/rules/Muenchen.de.xml @@ -1,4 +1,4 @@ - - + + diff --git a/src/chrome/content/rules/Muflihun.com.xml b/src/chrome/content/rules/Muflihun.com.xml new file mode 100644 index 000000000000..8773caa8ffbb --- /dev/null +++ b/src/chrome/content/rules/Muflihun.com.xml @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Muftah.org.xml b/src/chrome/content/rules/Muftah.org.xml new file mode 100644 index 000000000000..2a88419fc6d5 --- /dev/null +++ b/src/chrome/content/rules/Muftah.org.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/MugenMonkey.com.xml b/src/chrome/content/rules/MugenMonkey.com.xml index 1307da157269..f0d273c32a63 100644 --- a/src/chrome/content/rules/MugenMonkey.com.xml +++ b/src/chrome/content/rules/MugenMonkey.com.xml @@ -12,7 +12,7 @@ - + + + + + + + + diff --git a/src/chrome/content/rules/MujBiz.cz.xml b/src/chrome/content/rules/MujBiz.cz.xml index 5818174d2b68..35db5f7db281 100644 --- a/src/chrome/content/rules/MujBiz.cz.xml +++ b/src/chrome/content/rules/MujBiz.cz.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Mullet.se.xml b/src/chrome/content/rules/Mullet.se.xml index 6ed51c8ff50e..60a3a9f63977 100644 --- a/src/chrome/content/rules/Mullet.se.xml +++ b/src/chrome/content/rules/Mullet.se.xml @@ -1,7 +1,6 @@ - - + diff --git a/src/chrome/content/rules/MultiSeek.xml b/src/chrome/content/rules/MultiSeek.xml index 05d96eb3d04c..4b3f0848f275 100644 --- a/src/chrome/content/rules/MultiSeek.xml +++ b/src/chrome/content/rules/MultiSeek.xml @@ -6,7 +6,7 @@ Fetch error: http://mail.multiseek.net/ => https://mail.multiseek.net/: (51, "SS www.multiseek.net: Mismatched --> - + diff --git a/src/chrome/content/rules/MultiSoft.xml b/src/chrome/content/rules/MultiSoft.xml index 9e84032155b0..b9b0df07505b 100644 --- a/src/chrome/content/rules/MultiSoft.xml +++ b/src/chrome/content/rules/MultiSoft.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/MultiVPN.xml b/src/chrome/content/rules/MultiVPN.xml deleted file mode 100644 index 18d98145b43b..000000000000 --- a/src/chrome/content/rules/MultiVPN.xml +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Multicast_Media.xml b/src/chrome/content/rules/Multicast_Media.xml index 49e1290cc4f7..dd6065e287be 100644 --- a/src/chrome/content/rules/Multicast_Media.xml +++ b/src/chrome/content/rules/Multicast_Media.xml @@ -10,7 +10,7 @@ Fetch error: http://multicastmedia.com/ => https://www.kitd.com/multicast/: (51, - (www.) (mismatched, CN: *.kitd.com) --> - + @@ -25,4 +25,4 @@ Fetch error: http://multicastmedia.com/ => https://www.kitd.com/multicast/: (51, - \ No newline at end of file + diff --git a/src/chrome/content/rules/Multicore-DevCon.com.xml b/src/chrome/content/rules/Multicore-DevCon.com.xml index 6302dc0082b4..835fe0666228 100644 --- a/src/chrome/content/rules/Multicore-DevCon.com.xml +++ b/src/chrome/content/rules/Multicore-DevCon.com.xml @@ -12,7 +12,7 @@ Fetch error: http://multicore-devcon.com/ => https://multicore-devcon.com/: (60, Fetch error: http://www.multicore-devcon.com/ => https://www.multicore-devcon.com/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/Multimedia.cx.xml b/src/chrome/content/rules/Multimedia.cx.xml new file mode 100644 index 000000000000..aab6d520bb39 --- /dev/null +++ b/src/chrome/content/rules/Multimedia.cx.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Multinationales.org.xml b/src/chrome/content/rules/Multinationales.org.xml new file mode 100644 index 000000000000..b50a4ec7a2a8 --- /dev/null +++ b/src/chrome/content/rules/Multinationales.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Multiply.xml b/src/chrome/content/rules/Multiply.xml index a71c152e10d1..99a07d0e8b71 100644 --- a/src/chrome/content/rules/Multiply.xml +++ b/src/chrome/content/rules/Multiply.xml @@ -9,7 +9,7 @@ Fetch error: http://multiply.com/ => https://multiply.com/: (51, "SSL: no altern - multiply (ditto) --> - + diff --git a/src/chrome/content/rules/Mumzworld.com.xml b/src/chrome/content/rules/Mumzworld.com.xml index 2239a687f7fc..597056bb6f81 100644 --- a/src/chrome/content/rules/Mumzworld.com.xml +++ b/src/chrome/content/rules/Mumzworld.com.xml @@ -22,7 +22,8 @@ - + + diff --git a/src/chrome/content/rules/Muni.cz.xml b/src/chrome/content/rules/Muni.cz.xml index 21a66966eeb7..a97dcf50f705 100644 --- a/src/chrome/content/rules/Muni.cz.xml +++ b/src/chrome/content/rules/Muni.cz.xml @@ -9,13 +9,13 @@ Nonfunctional subdomains: - + - 95 ¹ - patat06 ² - science ³ - (www.)veda ³ - www.video ⁴ - + ¹ Shows webserver.ics; mismatched, CN: webserver.ics.muni.cz ² Shows marach.ics; mismatched, CN: www.cerit.cz ³ Shows morwen2.rect; mismatched, CN: morwen2.rect.muni.cz @@ -51,8 +51,8 @@ - (www.)kite * * $ redirects to http - - + + Fully covered subdomains: - (www.) @@ -88,7 +88,7 @@ Observed cookie domains: - cic - - czs + - czs - em2il - www.em2il - idp2.ics diff --git a/src/chrome/content/rules/Muqri.com.xml b/src/chrome/content/rules/Muqri.com.xml new file mode 100644 index 000000000000..4cec05fbd39f --- /dev/null +++ b/src/chrome/content/rules/Muqri.com.xml @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/MusaFurber.com.xml b/src/chrome/content/rules/MusaFurber.com.xml new file mode 100644 index 000000000000..46e011b4f0cb --- /dev/null +++ b/src/chrome/content/rules/MusaFurber.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Musalbas.com.xml b/src/chrome/content/rules/Musalbas.com.xml index 329076dd5bd7..a1b1a3e7d5ca 100644 --- a/src/chrome/content/rules/Musalbas.com.xml +++ b/src/chrome/content/rules/Musalbas.com.xml @@ -13,7 +13,7 @@ - + https://muse-cdn.warnerartist - Images on preorder from wmiuk.edgeboss.net --> - + diff --git a/src/chrome/content/rules/Muselive.com.xml b/src/chrome/content/rules/Muselive.com.xml index 4f7f9770cdae..2a31bdc4ee9e 100644 --- a/src/chrome/content/rules/Muselive.com.xml +++ b/src/chrome/content/rules/Muselive.com.xml @@ -11,7 +11,7 @@ Fetch error: http://community.muselive.com/ => https://community.muselive.com/: - community.muselive.com --> - + diff --git a/src/chrome/content/rules/Museodelprado.es.xml b/src/chrome/content/rules/Museodelprado.es.xml index 03c3536ab3f3..80eb9810b248 100644 --- a/src/chrome/content/rules/Museodelprado.es.xml +++ b/src/chrome/content/rules/Museodelprado.es.xml @@ -9,12 +9,12 @@ Fetch error: http://static.museodelprado.es/ => https://static.museodelprado.es/ Fetch error: http://museodelprado.es/ => https://museodelprado.es/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + - + diff --git a/src/chrome/content/rules/Music-Map.com.xml b/src/chrome/content/rules/Music-Map.com.xml new file mode 100644 index 000000000000..2017cb0880d8 --- /dev/null +++ b/src/chrome/content/rules/Music-Map.com.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Music-Week.xml b/src/chrome/content/rules/Music-Week.xml index e1cb6c8829c8..b6fa8073a116 100644 --- a/src/chrome/content/rules/Music-Week.xml +++ b/src/chrome/content/rules/Music-Week.xml @@ -4,7 +4,7 @@ - + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/MusicBrainz.xml b/src/chrome/content/rules/MusicBrainz.xml deleted file mode 100644 index 2939753fcd31..000000000000 --- a/src/chrome/content/rules/MusicBrainz.xml +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/MusicPD.org.xml b/src/chrome/content/rules/MusicPD.org.xml new file mode 100644 index 000000000000..af1d7c6d25ef --- /dev/null +++ b/src/chrome/content/rules/MusicPD.org.xml @@ -0,0 +1,22 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Musicians_Friend.xml b/src/chrome/content/rules/Musicians_Friend.xml index 5e7e4b9cbf5c..a06805b7509d 100644 --- a/src/chrome/content/rules/Musicians_Friend.xml +++ b/src/chrome/content/rules/Musicians_Friend.xml @@ -17,10 +17,12 @@ Non-2xx HTTP code: http://musiciansfriend.com/ (200) => http://musiciansfriend.c At least some pages redirect to http. --> - + - + + + @@ -32,4 +34,4 @@ Non-2xx HTTP code: http://musiciansfriend.com/ (200) => http://musiciansfriend.c - \ No newline at end of file + diff --git a/src/chrome/content/rules/Musicmetric.xml b/src/chrome/content/rules/Musicmetric.xml index bf11e4a964ce..0f0245264af1 100644 --- a/src/chrome/content/rules/Musicmetric.xml +++ b/src/chrome/content/rules/Musicmetric.xml @@ -19,7 +19,7 @@ Fetch error: http://knowledgebase.musicmetric.com/ => https://knowledgebase.musi - knowledgebase.musicmetric.com --> - + @@ -31,7 +31,7 @@ Fetch error: http://knowledgebase.musicmetric.com/ => https://knowledgebase.musi --> - + - + + + + + + @@ -34,7 +39,6 @@ - + diff --git a/src/chrome/content/rules/MusikhusetAarhus.dk.xml b/src/chrome/content/rules/MusikhusetAarhus.dk.xml new file mode 100644 index 000000000000..afd737ed635e --- /dev/null +++ b/src/chrome/content/rules/MusikhusetAarhus.dk.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Musixmatch.com.xml b/src/chrome/content/rules/Musixmatch.com.xml index 1431736bd84f..201f681cffe8 100644 --- a/src/chrome/content/rules/Musixmatch.com.xml +++ b/src/chrome/content/rules/Musixmatch.com.xml @@ -41,7 +41,7 @@ - + - - + + + + + - - - - - - + diff --git a/src/chrome/content/rules/Muslim-Library.com.xml b/src/chrome/content/rules/Muslim-Library.com.xml new file mode 100644 index 000000000000..72a5db7000cd --- /dev/null +++ b/src/chrome/content/rules/Muslim-Library.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/MuslimAnswers.net.xml b/src/chrome/content/rules/MuslimAnswers.net.xml new file mode 100644 index 000000000000..819ac99d8c74 --- /dev/null +++ b/src/chrome/content/rules/MuslimAnswers.net.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/MuslimCentral.com.xml b/src/chrome/content/rules/MuslimCentral.com.xml new file mode 100644 index 000000000000..843cba81c8c7 --- /dev/null +++ b/src/chrome/content/rules/MuslimCentral.com.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/MuslimIssues.com.xml b/src/chrome/content/rules/MuslimIssues.com.xml deleted file mode 100644 index 114ff918725e..000000000000 --- a/src/chrome/content/rules/MuslimIssues.com.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/MuslimMatters.org.xml b/src/chrome/content/rules/MuslimMatters.org.xml new file mode 100644 index 000000000000..135192f903e1 --- /dev/null +++ b/src/chrome/content/rules/MuslimMatters.org.xml @@ -0,0 +1,12 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Muslim_Aid.org.xml b/src/chrome/content/rules/Muslim_Aid.org.xml new file mode 100644 index 000000000000..42e67f11cf63 --- /dev/null +++ b/src/chrome/content/rules/Muslim_Aid.org.xml @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/MuslimsCondemn.com.xml b/src/chrome/content/rules/MuslimsCondemn.com.xml deleted file mode 100644 index 0a244c0fa220..000000000000 --- a/src/chrome/content/rules/MuslimsCondemn.com.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/MuslimsDiscuss.com.xml b/src/chrome/content/rules/MuslimsDiscuss.com.xml deleted file mode 100644 index 14b186bd88a2..000000000000 --- a/src/chrome/content/rules/MuslimsDiscuss.com.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Musopen.xml b/src/chrome/content/rules/Musopen.xml index b10b1b1a8bad..f8b4524bd7ab 100644 --- a/src/chrome/content/rules/Musopen.xml +++ b/src/chrome/content/rules/Musopen.xml @@ -26,7 +26,7 @@ - + diff --git a/src/chrome/content/rules/Muspy.xml b/src/chrome/content/rules/Muspy.xml index 75cdbd17b20f..f31f2ce4ea23 100644 --- a/src/chrome/content/rules/Muspy.xml +++ b/src/chrome/content/rules/Muspy.xml @@ -6,4 +6,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Mutantbrains.com.xml b/src/chrome/content/rules/Mutantbrains.com.xml index 026306cde1a3..73854df3f236 100644 --- a/src/chrome/content/rules/Mutantbrains.com.xml +++ b/src/chrome/content/rules/Mutantbrains.com.xml @@ -2,7 +2,6 @@ - + diff --git a/src/chrome/content/rules/Mutoon.one.xml b/src/chrome/content/rules/Mutoon.one.xml new file mode 100644 index 000000000000..744f0618b9b2 --- /dev/null +++ b/src/chrome/content/rules/Mutoon.one.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Mutt.org.xml b/src/chrome/content/rules/Mutt.org.xml deleted file mode 100644 index 85b09039e983..000000000000 --- a/src/chrome/content/rules/Mutt.org.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Mutterschaftsgeld.de.xml b/src/chrome/content/rules/Mutterschaftsgeld.de.xml index 31c18b441755..f8aa6aa47bf6 100644 --- a/src/chrome/content/rules/Mutterschaftsgeld.de.xml +++ b/src/chrome/content/rules/Mutterschaftsgeld.de.xml @@ -1,8 +1,8 @@ - + - + diff --git a/src/chrome/content/rules/Muttscomics.com.xml b/src/chrome/content/rules/Muttscomics.com.xml deleted file mode 100644 index b79e025f6c5d..000000000000 --- a/src/chrome/content/rules/Muttscomics.com.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Mux.de.xml b/src/chrome/content/rules/Mux.de.xml index 2f7515d3d13f..f71d953d4501 100644 --- a/src/chrome/content/rules/Mux.de.xml +++ b/src/chrome/content/rules/Mux.de.xml @@ -10,7 +10,7 @@ Fetch error: http://www.mux.de/ => https://www.mux.de/: Too many redirects while - reichenbachdelikatessen.mux.de - bidjanbek.mux.de --> - + diff --git a/src/chrome/content/rules/Mvnrepository.com.xml b/src/chrome/content/rules/Mvnrepository.com.xml new file mode 100644 index 000000000000..58c8f35ddcd5 --- /dev/null +++ b/src/chrome/content/rules/Mvnrepository.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Mwave.com.au.xml b/src/chrome/content/rules/Mwave.com.au.xml new file mode 100644 index 000000000000..91e00d1c4e33 --- /dev/null +++ b/src/chrome/content/rules/Mwave.com.au.xml @@ -0,0 +1,17 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Mwave.xml b/src/chrome/content/rules/Mwave.xml deleted file mode 100644 index 0bbfd451619d..000000000000 --- a/src/chrome/content/rules/Mwave.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Mxptint.net.xml b/src/chrome/content/rules/Mxptint.net.xml index 586da3ade8f1..6a73ba27b14e 100644 --- a/src/chrome/content/rules/Mxptint.net.xml +++ b/src/chrome/content/rules/Mxptint.net.xml @@ -1,30 +1,50 @@ + + + + + + + + + + + - - - - - - - + + + + + + + + + + diff --git a/src/chrome/content/rules/My-Aime.net.xml b/src/chrome/content/rules/My-Aime.net.xml new file mode 100644 index 000000000000..6f23c565d680 --- /dev/null +++ b/src/chrome/content/rules/My-Aime.net.xml @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/src/chrome/content/rules/My-Files.xml b/src/chrome/content/rules/My-Files.xml index 6cd910bc568a..b4fa63340e6d 100644 --- a/src/chrome/content/rules/My-Files.xml +++ b/src/chrome/content/rules/My-Files.xml @@ -6,7 +6,7 @@ Fetch error: http://w01.my-files.de/ => https://w01.my-files.de/: (60, 'SSL cert Disabled by https-everywhere-checker because: Fetch error: http://w01.my-files.de/ => https://w01.my-files.de/: (60, 'SSL certificate problem: certificate has expired') --> - + - + diff --git a/src/chrome/content/rules/My.com.xml b/src/chrome/content/rules/My.com.xml index 1721aad6db13..ee17f7707d3f 100644 --- a/src/chrome/content/rules/My.com.xml +++ b/src/chrome/content/rules/My.com.xml @@ -14,8 +14,7 @@ - - + @@ -37,7 +36,6 @@ - diff --git a/src/chrome/content/rules/MyAMS.org.xml b/src/chrome/content/rules/MyAMS.org.xml new file mode 100644 index 000000000000..cd2e15239513 --- /dev/null +++ b/src/chrome/content/rules/MyAMS.org.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/MyBB_Central.xml b/src/chrome/content/rules/MyBB_Central.xml index 3d501443db24..2b5ce5cb3624 100644 --- a/src/chrome/content/rules/MyBB_Central.xml +++ b/src/chrome/content/rules/MyBB_Central.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/MyBenefits-CalWIN.xml b/src/chrome/content/rules/MyBenefits-CalWIN.xml index c74154329f1b..39e4ae30afe2 100644 --- a/src/chrome/content/rules/MyBenefits-CalWIN.xml +++ b/src/chrome/content/rules/MyBenefits-CalWIN.xml @@ -14,8 +14,7 @@ - + diff --git a/src/chrome/content/rules/MyBetter.com.xml b/src/chrome/content/rules/MyBetter.com.xml index 40a9d1aada3f..6322855ef60c 100644 --- a/src/chrome/content/rules/MyBetter.com.xml +++ b/src/chrome/content/rules/MyBetter.com.xml @@ -15,19 +15,17 @@ Fetch error: http://mybetter.com/ => https://mybetter.com/: (60, 'SSL certificat - server2...:2222 --> - + - + + - - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/MyBrowserAddon.com.xml b/src/chrome/content/rules/MyBrowserAddon.com.xml new file mode 100644 index 000000000000..cc29cedad44c --- /dev/null +++ b/src/chrome/content/rules/MyBrowserAddon.com.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/MyBuys.xml b/src/chrome/content/rules/MyBuys.xml index 9ab1ca1c7f7b..781079adca73 100644 --- a/src/chrome/content/rules/MyBuys.xml +++ b/src/chrome/content/rules/MyBuys.xml @@ -51,7 +51,12 @@ - + + + + + + diff --git a/src/chrome/content/rules/MyCalendar.xml b/src/chrome/content/rules/MyCalendar.xml deleted file mode 100644 index 3ab4aad17076..000000000000 --- a/src/chrome/content/rules/MyCalendar.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/MyCharity.ie.xml b/src/chrome/content/rules/MyCharity.ie.xml index be7342991725..2add9da0b56b 100644 --- a/src/chrome/content/rules/MyCharity.ie.xml +++ b/src/chrome/content/rules/MyCharity.ie.xml @@ -5,7 +5,7 @@ Fetch error: http://mycharity.ie/ => https://www.mycharity.ie/: (7, 'Failed to c Fetch error: http://www.mycharity.ie/ => https://www.mycharity.ie/: (7, 'Failed to connect to www.mycharity.ie port 443: Connection refused') --> - + diff --git a/src/chrome/content/rules/MyChart.xml b/src/chrome/content/rules/MyChart.xml index 42ecbd2d8564..04f201679b6f 100644 --- a/src/chrome/content/rules/MyChart.xml +++ b/src/chrome/content/rules/MyChart.xml @@ -1,10 +1,10 @@ - + - + - + @@ -9,12 +23,32 @@ - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/MyCryptoPedia.com.xml b/src/chrome/content/rules/MyCryptoPedia.com.xml new file mode 100644 index 000000000000..f02fbbfedeee --- /dev/null +++ b/src/chrome/content/rules/MyCryptoPedia.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/MyEdAccount.Com.xml b/src/chrome/content/rules/MyEdAccount.Com.xml deleted file mode 100644 index ec1940db73b6..000000000000 --- a/src/chrome/content/rules/MyEdAccount.Com.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/MyFBO.com.xml b/src/chrome/content/rules/MyFBO.com.xml index df8a9b9ff358..d8d43095fcbd 100644 --- a/src/chrome/content/rules/MyFBO.com.xml +++ b/src/chrome/content/rules/MyFBO.com.xml @@ -1,9 +1,28 @@ + + - - - + + + + + + + + + + + + + + + - \ No newline at end of file + + diff --git a/src/chrome/content/rules/MyFRITZ.net.xml b/src/chrome/content/rules/MyFRITZ.net.xml new file mode 100644 index 000000000000..7d6094d58330 --- /dev/null +++ b/src/chrome/content/rules/MyFRITZ.net.xml @@ -0,0 +1,12 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/MyFreeCopyright.com-problematic.xml b/src/chrome/content/rules/MyFreeCopyright.com-problematic.xml deleted file mode 100644 index 094cfa49d468..000000000000 --- a/src/chrome/content/rules/MyFreeCopyright.com-problematic.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/MyFreeCopyright.com.xml b/src/chrome/content/rules/MyFreeCopyright.com.xml deleted file mode 100644 index 916088d04991..000000000000 --- a/src/chrome/content/rules/MyFreeCopyright.com.xml +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/MyGirlFund.xml b/src/chrome/content/rules/MyGirlFund.xml index cd88e0ee0f95..174a96c78244 100644 --- a/src/chrome/content/rules/MyGirlFund.xml +++ b/src/chrome/content/rules/MyGirlFund.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/MyGoxClaim.com.xml b/src/chrome/content/rules/MyGoxClaim.com.xml deleted file mode 100644 index 3ace003f066b..000000000000 --- a/src/chrome/content/rules/MyGoxClaim.com.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/MyInteriorDecorator.com.xml b/src/chrome/content/rules/MyInteriorDecorator.com.xml index 169d91a77578..85f4725be6bc 100644 --- a/src/chrome/content/rules/MyInteriorDecorator.com.xml +++ b/src/chrome/content/rules/MyInteriorDecorator.com.xml @@ -7,7 +7,7 @@ Fetch error: http://www.myinteriordecorator.com/ => https://www.myinteriordecora Disabled by https-everywhere-checker because: Fetch error: http://myinteriordecorator.com/ => https://myinteriordecorator.com/: (51, "SSL: no alternative certificate subject name matches target host name 'myinteriordecorator.com'") --> - + @@ -18,4 +18,4 @@ Fetch error: http://myinteriordecorator.com/ => https://myinteriordecorator.com/ - \ No newline at end of file + diff --git a/src/chrome/content/rules/MyLeague.xml b/src/chrome/content/rules/MyLeague.xml index e50580b7b57e..422fafff115f 100644 --- a/src/chrome/content/rules/MyLeague.xml +++ b/src/chrome/content/rules/MyLeague.xml @@ -8,7 +8,7 @@ - + diff --git a/src/chrome/content/rules/MyLifetime.com.xml b/src/chrome/content/rules/MyLifetime.com.xml index daba5f007c56..5a1b518b9340 100644 --- a/src/chrome/content/rules/MyLifetime.com.xml +++ b/src/chrome/content/rules/MyLifetime.com.xml @@ -64,7 +64,7 @@ Fetch error: http://ssos.mylifetime.com/ => https://ssos.mylifetime.com/: (6, 'C * → akamai --> - + diff --git a/src/chrome/content/rules/MyLikes.xml b/src/chrome/content/rules/MyLikes.xml index 18208a0e4dc7..cfbb9ada2c17 100644 --- a/src/chrome/content/rules/MyLikes.xml +++ b/src/chrome/content/rules/MyLikes.xml @@ -1,10 +1,6 @@ - + - - + + @@ -43,8 +39,8 @@ Fetch error: http://mlv-cdn.com/ => https://mylikes.com/: (28, 'Connection timed - + @@ -55,4 +51,4 @@ Fetch error: http://mlv-cdn.com/ => https://mylikes.com/: (28, 'Connection timed - \ No newline at end of file + diff --git a/src/chrome/content/rules/MyPlayDirect.xml b/src/chrome/content/rules/MyPlayDirect.xml index 218d534444b4..52c717c99245 100644 --- a/src/chrome/content/rules/MyPlayDirect.xml +++ b/src/chrome/content/rules/MyPlayDirect.xml @@ -5,11 +5,11 @@ Fetch error: http://myplaydirect.com/ => https://www.myplaydirect.com/: (60, 'SS Fetch error: http://www.myplaydirect.com/ => https://www.myplaydirect.com/: (60, 'SSL certificate problem: certificate has expired') --> - + - + diff --git a/src/chrome/content/rules/MyPoints.xml b/src/chrome/content/rules/MyPoints.xml index 280c4110182f..9ece5cd52a0a 100644 --- a/src/chrome/content/rules/MyPoints.xml +++ b/src/chrome/content/rules/MyPoints.xml @@ -19,8 +19,8 @@ - - + + - + - + - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/MySQL.xml b/src/chrome/content/rules/MySQL.xml index 05c940db822a..690226bd8e89 100644 --- a/src/chrome/content/rules/MySQL.xml +++ b/src/chrome/content/rules/MySQL.xml @@ -1,13 +1,5 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/MySkreen.com.xml b/src/chrome/content/rules/MySkreen.com.xml index 415d97ec57fe..57145515ffb5 100644 --- a/src/chrome/content/rules/MySkreen.com.xml +++ b/src/chrome/content/rules/MySkreen.com.xml @@ -9,12 +9,11 @@ Fetch error: http://medias.myskreen.com/ => https://medias.myskreen.com/: (60, ' - www (redirects to http, valid cert) --> - + - + diff --git a/src/chrome/content/rules/MySociety.org.xml b/src/chrome/content/rules/MySociety.org.xml index ea1d9fc9fb8d..06922e9f44b8 100644 --- a/src/chrome/content/rules/MySociety.org.xml +++ b/src/chrome/content/rules/MySociety.org.xml @@ -8,7 +8,7 @@ Fetch error: http://mysociety.org/ => https://mysociety.org/: (51, "SSL: no alte - www.mysociety.org --> - + diff --git a/src/chrome/content/rules/MyStockOptions.com.xml b/src/chrome/content/rules/MyStockOptions.com.xml index 1c2ae95e91c0..6d6def4fc041 100644 --- a/src/chrome/content/rules/MyStockOptions.com.xml +++ b/src/chrome/content/rules/MyStockOptions.com.xml @@ -7,7 +7,7 @@ - + diff --git a/src/chrome/content/rules/MyTUM.de.xml b/src/chrome/content/rules/MyTUM.de.xml index da01138be06e..965c22d56c77 100644 --- a/src/chrome/content/rules/MyTUM.de.xml +++ b/src/chrome/content/rules/MyTUM.de.xml @@ -1,7 +1,7 @@ - + diff --git a/src/chrome/content/rules/MyTextGraphics.com.xml b/src/chrome/content/rules/MyTextGraphics.com.xml index 334f35797753..d49e8388a6b0 100644 --- a/src/chrome/content/rules/MyTextGraphics.com.xml +++ b/src/chrome/content/rules/MyTextGraphics.com.xml @@ -52,4 +52,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/MyTime.com.xml b/src/chrome/content/rules/MyTime.com.xml index fa11e0d41c38..bdf1c448c192 100644 --- a/src/chrome/content/rules/MyTime.com.xml +++ b/src/chrome/content/rules/MyTime.com.xml @@ -5,7 +5,7 @@ - + - - - - - - - - - - + - - + + diff --git a/src/chrome/content/rules/MyWOT.xml b/src/chrome/content/rules/MyWOT.xml index d8cabce1ab7c..6258d5df3070 100644 --- a/src/chrome/content/rules/MyWOT.xml +++ b/src/chrome/content/rules/MyWOT.xml @@ -9,7 +9,7 @@ Fetch error: http://www.mywot.net/ => https://www.mywot.net/: (51, "SSL: no alte - d203dmbd9wdx7j.cloudfront.net --> - + @@ -17,13 +17,13 @@ Fetch error: http://www.mywot.net/ => https://www.mywot.net/: (51, "SSL: no alte - + - + diff --git a/src/chrome/content/rules/MyWell-Being.com.xml b/src/chrome/content/rules/MyWell-Being.com.xml index 49119f604b9a..662ca6c09c46 100644 --- a/src/chrome/content/rules/MyWell-Being.com.xml +++ b/src/chrome/content/rules/MyWell-Being.com.xml @@ -13,7 +13,7 @@ Fetch error: http://www.mywell-being.com/ => https://www.mywell-being.com/: (28, --> - + @@ -22,4 +22,4 @@ Fetch error: http://www.mywell-being.com/ => https://www.mywell-being.com/: (28, - \ No newline at end of file + diff --git a/src/chrome/content/rules/My_Aloe_Cleanse.com.xml b/src/chrome/content/rules/My_Aloe_Cleanse.com.xml deleted file mode 100644 index b083ceaa8e57..000000000000 --- a/src/chrome/content/rules/My_Aloe_Cleanse.com.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/My_Care_In_Birmingham.org.uk.xml b/src/chrome/content/rules/My_Care_In_Birmingham.org.uk.xml index aad26a28dac4..de5b16d97490 100644 --- a/src/chrome/content/rules/My_Care_In_Birmingham.org.uk.xml +++ b/src/chrome/content/rules/My_Care_In_Birmingham.org.uk.xml @@ -26,7 +26,7 @@ - + - + - - - - - - - - - - - diff --git a/src/chrome/content/rules/My_IP.ms.xml b/src/chrome/content/rules/My_IP.ms.xml index 73b33bb90898..cd2f1ff738c4 100644 --- a/src/chrome/content/rules/My_IP.ms.xml +++ b/src/chrome/content/rules/My_IP.ms.xml @@ -4,7 +4,7 @@ - + - + - + diff --git a/src/chrome/content/rules/My_LiveChat.xml b/src/chrome/content/rules/My_LiveChat.xml index d495f7689089..0d9bfe2517c3 100644 --- a/src/chrome/content/rules/My_LiveChat.xml +++ b/src/chrome/content/rules/My_LiveChat.xml @@ -27,7 +27,7 @@ --> - + - + https://myoptplussecure.com/: (7, 'Failed to connect to myoptplussecure.com port 80: Connection refused') Fetch error: http://www.myoptplussecure.com/ => https://www.myoptplussecure.com/: (7, 'Failed to connect to www.myoptplussecure.com port 80: Connection refused') --> - + diff --git a/src/chrome/content/rules/My_OptimizerPlus.com.xml b/src/chrome/content/rules/My_OptimizerPlus.com.xml index 9b762fcb0ac6..c798bd400522 100644 --- a/src/chrome/content/rules/My_OptimizerPlus.com.xml +++ b/src/chrome/content/rules/My_OptimizerPlus.com.xml @@ -5,7 +5,7 @@ Fetch error: http://myoptimizerplus.com/ => https://myoptimizerplus.com/: (51, " Fetch error: http://www.myoptimizerplus.com/ => https://www.myoptimizerplus.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.myoptimizerplus.com'") --> - + diff --git a/src/chrome/content/rules/My_Radio_Creative.xml b/src/chrome/content/rules/My_Radio_Creative.xml index 31e09ca5a4c6..cc019cf3ed32 100644 --- a/src/chrome/content/rules/My_Radio_Creative.xml +++ b/src/chrome/content/rules/My_Radio_Creative.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://myradiocreative.com/ => https://myradiocreative.com/: (6, 'Could not resolve host: myradiocreative.com') --> - + @@ -15,4 +15,4 @@ Fetch error: http://myradiocreative.com/ => https://myradiocreative.com/: (6, 'C - \ No newline at end of file + diff --git a/src/chrome/content/rules/My_Shadow.com.xml b/src/chrome/content/rules/My_Shadow.com.xml index 4e58ca82297f..b957fc970643 100644 --- a/src/chrome/content/rules/My_Shadow.com.xml +++ b/src/chrome/content/rules/My_Shadow.com.xml @@ -18,7 +18,7 @@ --> - + - + diff --git a/src/chrome/content/rules/My_Virtual_Paper.xml b/src/chrome/content/rules/My_Virtual_Paper.xml deleted file mode 100644 index fa9ae44102c4..000000000000 --- a/src/chrome/content/rules/My_Virtual_Paper.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Mycoles.com.au.xml b/src/chrome/content/rules/Mycoles.com.au.xml new file mode 100644 index 000000000000..9825ac5a498b --- /dev/null +++ b/src/chrome/content/rules/Mycoles.com.au.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Mydigipass.com.xml b/src/chrome/content/rules/Mydigipass.com.xml deleted file mode 100644 index e12c91b35c96..000000000000 --- a/src/chrome/content/rules/Mydigipass.com.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Mydrive.ch.xml b/src/chrome/content/rules/Mydrive.ch.xml new file mode 100644 index 000000000000..5d3eda70c86c --- /dev/null +++ b/src/chrome/content/rules/Mydrive.ch.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Mydrive.xml b/src/chrome/content/rules/Mydrive.xml deleted file mode 100644 index 693ecc53a87d..000000000000 --- a/src/chrome/content/rules/Mydrive.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Myfolder.xml b/src/chrome/content/rules/Myfolder.xml index dd93b4e43b3c..467fb78f64de 100644 --- a/src/chrome/content/rules/Myfolder.xml +++ b/src/chrome/content/rules/Myfolder.xml @@ -14,13 +14,13 @@ Fetch error: http://www.myfolder.net/ => https://www.myfolder.net/: (28, 'Connec - vaccine (cert: www.myfolder.net; shows www's data) --> - + - + diff --git a/src/chrome/content/rules/Myftp.utechsoft.com.xml b/src/chrome/content/rules/Myftp.utechsoft.com.xml deleted file mode 100644 index b81bd445a03f..000000000000 --- a/src/chrome/content/rules/Myftp.utechsoft.com.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/chrome/content/rules/Myheritage.xml b/src/chrome/content/rules/Myheritage.xml index 343a2a8a3669..de96498b69b2 100644 --- a/src/chrome/content/rules/Myheritage.xml +++ b/src/chrome/content/rules/Myheritage.xml @@ -18,17 +18,17 @@ Fetch error: http://myheritage.com.il/ => https://myheritage.com.il/: (6, 'Could Nonfunctional domains: - blog.myheritage.* -> stupid error 29 by incapsula - helpcenter.myheritage.* -> wrong cert (valid for nanorep.com) - + Mixed content: - iframes on myheritage.* * - + * secured by us Other MyHeritage rulesets: - Mhcache.com - Myheritageimages.com --> - + @@ -124,7 +124,7 @@ Fetch error: http://myheritage.com.il/ => https://myheritage.com.il/: (6, 'Could - + diff --git a/src/chrome/content/rules/Myitcv.org.uk.xml b/src/chrome/content/rules/Myitcv.org.uk.xml index 120cadd9de03..dfeb9d6f7817 100644 --- a/src/chrome/content/rules/Myitcv.org.uk.xml +++ b/src/chrome/content/rules/Myitcv.org.uk.xml @@ -14,7 +14,7 @@ Fetch error: http://www.myitcv.org.uk/ => https://www.myitcv.org.uk/: (7, 'Faile * github --> - + diff --git a/src/chrome/content/rules/Myjobscotland.gov.uk.xml b/src/chrome/content/rules/Myjobscotland.gov.uk.xml index 02f5b4682646..8eb108c5454a 100644 --- a/src/chrome/content/rules/Myjobscotland.gov.uk.xml +++ b/src/chrome/content/rules/Myjobscotland.gov.uk.xml @@ -35,7 +35,7 @@ --> - + https://mynaweb.com/: (51, "SSL: no alternat api sets myna cookie on whichever domain it is loaded from --> - + - + + + - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Mynewsdesk.com.xml b/src/chrome/content/rules/Mynewsdesk.com.xml index 97ba71828cd9..2975479440a9 100644 --- a/src/chrome/content/rules/Mynewsdesk.com.xml +++ b/src/chrome/content/rules/Mynewsdesk.com.xml @@ -32,7 +32,7 @@ Fetch error: http://get.mynewsdesk.com/ => https://get.mynewsdesk.com/: (60, 'SS ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -50,7 +50,7 @@ Fetch error: http://get.mynewsdesk.com/ => https://get.mynewsdesk.com/: (60, 'SS - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Myricom.com.xml b/src/chrome/content/rules/Myricom.com.xml index 7654939df549..ad21f548b088 100644 --- a/src/chrome/content/rules/Myricom.com.xml +++ b/src/chrome/content/rules/Myricom.com.xml @@ -10,7 +10,7 @@ Fetch error: http://www.myricom.com/ => https://www.myricom.com/: (51, "SSL: no - www.myricom.com --> - + diff --git a/src/chrome/content/rules/Mysitemyway.xml b/src/chrome/content/rules/Mysitemyway.xml index 52c08a9973da..d7e0e9df346c 100644 --- a/src/chrome/content/rules/Mysitemyway.xml +++ b/src/chrome/content/rules/Mysitemyway.xml @@ -7,7 +7,7 @@ Fetch error: http://www.mysitemyway.com/ => https://www.mysitemyway.com/: (60, ' Disabled by https-everywhere-checker because: Fetch error: http://www.mysitemyway.com/ => https://www.mysitemyway.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.mysitemyway.com'") --> - + @@ -15,4 +15,4 @@ Fetch error: http://www.mysitemyway.com/ => https://www.mysitemyway.com/: (51, " - \ No newline at end of file + diff --git a/src/chrome/content/rules/Myspace.xml b/src/chrome/content/rules/Myspace.xml index ec8580bf0a1d..5f3136ff48b7 100644 --- a/src/chrome/content/rules/Myspace.xml +++ b/src/chrome/content/rules/Myspace.xml @@ -38,7 +38,7 @@ --> - + - + diff --git a/src/chrome/content/rules/N-2.org.xml b/src/chrome/content/rules/N-2.org.xml index 73e22335ded2..1e41437a6fbf 100644 --- a/src/chrome/content/rules/N-2.org.xml +++ b/src/chrome/content/rules/N-2.org.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.n-2.org/ => https://www.n-2.org/: (6, 'Could not resolve host: www.n-2.org') --> - + diff --git a/src/chrome/content/rules/N-ERGIE.xml b/src/chrome/content/rules/N-ERGIE.xml index c2e2d8aaaaef..231739f5d612 100644 --- a/src/chrome/content/rules/N-ERGIE.xml +++ b/src/chrome/content/rules/N-ERGIE.xml @@ -1,8 +1,7 @@ - + - + - diff --git a/src/chrome/content/rules/N-JOY.de.xml b/src/chrome/content/rules/N-JOY.de.xml index f9e88700290c..0b5b1951a26b 100644 --- a/src/chrome/content/rules/N-JOY.de.xml +++ b/src/chrome/content/rules/N-JOY.de.xml @@ -15,7 +15,7 @@ - + - + https://ehmlive.n-somerset.gov - travelcardonline.n-somerset.gov.uk --> - + @@ -66,7 +66,7 @@ Fetch error: http://ehmlive.n-somerset.gov.uk/ => https://ehmlive.n-somerset.gov - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/NAACP.org.xml b/src/chrome/content/rules/NAACP.org.xml deleted file mode 100644 index 14590767212b..000000000000 --- a/src/chrome/content/rules/NAACP.org.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/NAB.com.au.xml b/src/chrome/content/rules/NAB.com.au.xml new file mode 100644 index 000000000000..50e80443d46e --- /dev/null +++ b/src/chrome/content/rules/NAB.com.au.xml @@ -0,0 +1,225 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/NAB.org.xml b/src/chrome/content/rules/NAB.org.xml index c21b185e1bc7..89cd23860de1 100644 --- a/src/chrome/content/rules/NAB.org.xml +++ b/src/chrome/content/rules/NAB.org.xml @@ -26,4 +26,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/NAB.xml b/src/chrome/content/rules/NAB.xml deleted file mode 100644 index 1d0dbb1fcc57..000000000000 --- a/src/chrome/content/rules/NAB.xml +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/NADAguides.xml b/src/chrome/content/rules/NADAguides.xml index 17dd8d66633d..9752e4536927 100644 --- a/src/chrome/content/rules/NADAguides.xml +++ b/src/chrome/content/rules/NADAguides.xml @@ -5,12 +5,14 @@ Fetch error: http://nadaguides.com/ => https://www.nadaguides.com/: Cycle detect - + + + - + diff --git a/src/chrome/content/rules/NARSOL.org.xml b/src/chrome/content/rules/NARSOL.org.xml new file mode 100644 index 000000000000..99d375f60b4e --- /dev/null +++ b/src/chrome/content/rules/NARSOL.org.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/NASA.gov-falsemixed.xml b/src/chrome/content/rules/NASA.gov-falsemixed.xml index 3f1192b1587c..681319da547f 100644 --- a/src/chrome/content/rules/NASA.gov-falsemixed.xml +++ b/src/chrome/content/rules/NASA.gov-falsemixed.xml @@ -6,26 +6,9 @@ - - - - - - - - - - - - - - - - + @@ -462,14 +434,12 @@ Non-2xx HTTP code: http://marsstaticcdn.jpl.nasa.gov/ (200) => https://d3r05mwud - - @@ -484,11 +454,9 @@ Non-2xx HTTP code: http://marsstaticcdn.jpl.nasa.gov/ (200) => https://d3r05mwud - - @@ -496,13 +464,12 @@ Non-2xx HTTP code: http://marsstaticcdn.jpl.nasa.gov/ (200) => https://d3r05mwud - + - - + @@ -529,14 +496,14 @@ Non-2xx HTTP code: http://marsstaticcdn.jpl.nasa.gov/ (200) => https://d3r05mwud - + - + @@ -545,12 +512,11 @@ Non-2xx HTTP code: http://marsstaticcdn.jpl.nasa.gov/ (200) => https://d3r05mwud - + - @@ -558,7 +524,6 @@ Non-2xx HTTP code: http://marsstaticcdn.jpl.nasa.gov/ (200) => https://d3r05mwud - @@ -573,7 +538,6 @@ Non-2xx HTTP code: http://marsstaticcdn.jpl.nasa.gov/ (200) => https://d3r05mwud - @@ -582,8 +546,6 @@ Non-2xx HTTP code: http://marsstaticcdn.jpl.nasa.gov/ (200) => https://d3r05mwud - - @@ -592,8 +554,6 @@ Non-2xx HTTP code: http://marsstaticcdn.jpl.nasa.gov/ (200) => https://d3r05mwud - - @@ -606,10 +566,9 @@ Non-2xx HTTP code: http://marsstaticcdn.jpl.nasa.gov/ (200) => https://d3r05mwud - - + @@ -619,6 +578,7 @@ Non-2xx HTTP code: http://marsstaticcdn.jpl.nasa.gov/ (200) => https://d3r05mwud + @@ -636,60 +596,22 @@ Non-2xx HTTP code: http://marsstaticcdn.jpl.nasa.gov/ (200) => https://d3r05mwud - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -724,80 +646,13 @@ Non-2xx HTTP code: http://marsstaticcdn.jpl.nasa.gov/ (200) => https://d3r05mwud - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - + @@ -806,14 +661,6 @@ Non-2xx HTTP code: http://marsstaticcdn.jpl.nasa.gov/ (200) => https://d3r05mwud - - - - - diff --git a/src/chrome/content/rules/NASDAQ.xml b/src/chrome/content/rules/NASDAQ.xml index 14dc97851183..13b16ab72eb0 100644 --- a/src/chrome/content/rules/NASDAQ.xml +++ b/src/chrome/content/rules/NASDAQ.xml @@ -25,7 +25,7 @@ Fetch error: http://secure.directorsdesk.com/ => https://secure.directorsdesk.co - + @@ -35,16 +35,6 @@ Fetch error: http://secure.directorsdesk.com/ => https://secure.directorsdesk.co - - - - - - - + diff --git a/src/chrome/content/rules/NAVTEQ-problematic.xml b/src/chrome/content/rules/NAVTEQ-problematic.xml index a9b02298e4d8..dd49f70b421c 100644 --- a/src/chrome/content/rules/NAVTEQ-problematic.xml +++ b/src/chrome/content/rules/NAVTEQ-problematic.xml @@ -9,7 +9,6 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/NAVTEQ.xml b/src/chrome/content/rules/NAVTEQ.xml index 38c6d616284e..6003c4b52b17 100644 --- a/src/chrome/content/rules/NAVTEQ.xml +++ b/src/chrome/content/rules/NAVTEQ.xml @@ -28,10 +28,12 @@ Fetch error: http://www.navteqmedia.com/ => https://primeplace.nokia.com/: (51, * Mismatched, CN: mapreporter.navteq.com --> - + - + + + diff --git a/src/chrome/content/rules/NAY.sk.xml b/src/chrome/content/rules/NAY.sk.xml deleted file mode 100644 index 3155ae7d809a..000000000000 --- a/src/chrome/content/rules/NAY.sk.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - diff --git a/src/chrome/content/rules/NBC-News.xml b/src/chrome/content/rules/NBC-News.xml index 2b93001aabd4..64f45afb252f 100644 --- a/src/chrome/content/rules/NBC-News.xml +++ b/src/chrome/content/rules/NBC-News.xml @@ -1,30 +1,22 @@ - - + - - - - - - - + + + + + + diff --git a/src/chrome/content/rules/NBCOlympics.com.xml b/src/chrome/content/rules/NBCOlympics.com.xml new file mode 100644 index 000000000000..c0d8163d14fa --- /dev/null +++ b/src/chrome/content/rules/NBCOlympics.com.xml @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/NBCUDigitalAdOps.com.xml b/src/chrome/content/rules/NBCUDigitalAdOps.com.xml new file mode 100644 index 000000000000..c703e7676c28 --- /dev/null +++ b/src/chrome/content/rules/NBCUDigitalAdOps.com.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/NBCUniversal_Media.xml b/src/chrome/content/rules/NBCUniversal_Media.xml deleted file mode 100644 index af80f8805072..000000000000 --- a/src/chrome/content/rules/NBCUniversal_Media.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/NBCWashington.com.xml b/src/chrome/content/rules/NBCWashington.com.xml new file mode 100644 index 000000000000..d2fb81b198cb --- /dev/null +++ b/src/chrome/content/rules/NBCWashington.com.xml @@ -0,0 +1,39 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/NBN_Co.com.au.xml b/src/chrome/content/rules/NBN_Co.com.au.xml index 57089158213a..08704fb21633 100644 --- a/src/chrome/content/rules/NBN_Co.com.au.xml +++ b/src/chrome/content/rules/NBN_Co.com.au.xml @@ -1,44 +1,29 @@ - + - - - - - - - - - + + + + + - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/NCC_Group.com.xml b/src/chrome/content/rules/NCC_Group.com.xml index a815d00a8f72..b5ce3333ba69 100644 --- a/src/chrome/content/rules/NCC_Group.com.xml +++ b/src/chrome/content/rules/NCC_Group.com.xml @@ -3,7 +3,6 @@ - Escrow_Live.net.xml - NCC_Group.trust.xml - - NCC_Group_Domain_Services.com.xml - Who_do_you.trust.xml --> diff --git a/src/chrome/content/rules/NCC_Group_Domain_Services.com.xml b/src/chrome/content/rules/NCC_Group_Domain_Services.com.xml deleted file mode 100644 index 458d252aa23d..000000000000 --- a/src/chrome/content/rules/NCC_Group_Domain_Services.com.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/NCISF.org.xml b/src/chrome/content/rules/NCISF.org.xml index 7918ab8bf223..36de1a5a0647 100644 --- a/src/chrome/content/rules/NCISF.org.xml +++ b/src/chrome/content/rules/NCISF.org.xml @@ -5,7 +5,7 @@ Fetch error: http://ncisf.org/ => https://ncisf.org/: (7, 'Failed to connect to Fetch error: http://www.ncisf.org/ => https://www.ncisf.org/: (7, 'Failed to connect to www.ncisf.org port 443: Connection refused') --> - + diff --git a/src/chrome/content/rules/NCJRS.gov.xml b/src/chrome/content/rules/NCJRS.gov.xml index eb8d772394f5..a5a56cf29895 100644 --- a/src/chrome/content/rules/NCJRS.gov.xml +++ b/src/chrome/content/rules/NCJRS.gov.xml @@ -7,7 +7,7 @@ Fetch error: http://ncjrs.gov/ => https://ncjrs.gov/: (51, "SSL: no alternative --> - + diff --git a/src/chrome/content/rules/NCL.ac.uk.xml b/src/chrome/content/rules/NCL.ac.uk.xml index 00fad4ba3f13..16b10e72978b 100644 --- a/src/chrome/content/rules/NCL.ac.uk.xml +++ b/src/chrome/content/rules/NCL.ac.uk.xml @@ -11,7 +11,7 @@ Fetch error: http://saptraining.ncl.ac.uk/ => https://saptraining.ncl.ac.uk/: (6 - www.nhsn ᵖ ᵖ Shows default page - + Problematic hosts in *ncl.ac.uk: @@ -27,7 +27,7 @@ Fetch error: http://saptraining.ncl.ac.uk/ => https://saptraining.ncl.ac.uk/: (6 - Image on teaching from www.ncl.ac.uk --> - + @@ -57,7 +57,7 @@ Fetch error: http://saptraining.ncl.ac.uk/ => https://saptraining.ncl.ac.uk/: (6 - + @@ -68,7 +68,7 @@ Fetch error: http://saptraining.ncl.ac.uk/ => https://saptraining.ncl.ac.uk/: (6 - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/NCRegister.com.xml b/src/chrome/content/rules/NCRegister.com.xml new file mode 100644 index 000000000000..eaf24a6f74f3 --- /dev/null +++ b/src/chrome/content/rules/NCRegister.com.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/NCStateFair.org.xml b/src/chrome/content/rules/NCStateFair.org.xml new file mode 100644 index 000000000000..262ca051435d --- /dev/null +++ b/src/chrome/content/rules/NCStateFair.org.xml @@ -0,0 +1,13 @@ + + + + + + + diff --git a/src/chrome/content/rules/NCWIT.org.xml b/src/chrome/content/rules/NCWIT.org.xml index be44bc794c1b..1c8a4f1403ed 100644 --- a/src/chrome/content/rules/NCWIT.org.xml +++ b/src/chrome/content/rules/NCWIT.org.xml @@ -5,7 +5,7 @@ - + + + + + + + + + diff --git a/src/chrome/content/rules/NCsoft.com.xml b/src/chrome/content/rules/NCsoft.com.xml index 5e469e76ea1e..83eeb60d4c66 100644 --- a/src/chrome/content/rules/NCsoft.com.xml +++ b/src/chrome/content/rules/NCsoft.com.xml @@ -12,13 +12,16 @@ Fetch error: http://ncsoft.com/ => https://ncsoft.com/: (28, 'Operation timed ou - WildStar-online.com.xml --> - + - + + + + + - + diff --git a/src/chrome/content/rules/NDCHost.com.xml b/src/chrome/content/rules/NDCHost.com.xml index 6f05e8f52755..3fa61d25e0fb 100644 --- a/src/chrome/content/rules/NDCHost.com.xml +++ b/src/chrome/content/rules/NDCHost.com.xml @@ -9,13 +9,14 @@ - + + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/NDI.org.xml b/src/chrome/content/rules/NDI.org.xml index a39ff585894f..5bb88cf74083 100644 --- a/src/chrome/content/rules/NDI.org.xml +++ b/src/chrome/content/rules/NDI.org.xml @@ -12,13 +12,15 @@ - + + + + - + diff --git a/src/chrome/content/rules/NDN_media_services.com.xml b/src/chrome/content/rules/NDN_media_services.com.xml deleted file mode 100644 index c7dd0d89024c..000000000000 --- a/src/chrome/content/rules/NDN_media_services.com.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/NEC_Display.com.xml b/src/chrome/content/rules/NEC_Display.com.xml index acf020af6ab0..b52ed1f83cdb 100644 --- a/src/chrome/content/rules/NEC_Display.com.xml +++ b/src/chrome/content/rules/NEC_Display.com.xml @@ -15,7 +15,8 @@ - + + diff --git a/src/chrome/content/rules/NEDCC.org.xml b/src/chrome/content/rules/NEDCC.org.xml deleted file mode 100644 index e6d0b92cf5ff..000000000000 --- a/src/chrome/content/rules/NEDCC.org.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/NEO-Direct.xml b/src/chrome/content/rules/NEO-Direct.xml index 24e6fcaf5b84..87187110f3aa 100644 --- a/src/chrome/content/rules/NEO-Direct.xml +++ b/src/chrome/content/rules/NEO-Direct.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://neo-direct.com/ => https://www.neo-direct.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.neo-direct.com'") Fetch error: http://www.neo-direct.com/ => https://www.neo-direct.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.neo-direct.com'") --> - + diff --git a/src/chrome/content/rules/NEOS.eu.xml b/src/chrome/content/rules/NEOS.eu.xml index 0591e136d0dc..09dcd4b5e98f 100644 --- a/src/chrome/content/rules/NEOS.eu.xml +++ b/src/chrome/content/rules/NEOS.eu.xml @@ -33,7 +33,7 @@ - + + diff --git a/src/chrome/content/rules/NETZWELT.de.xml b/src/chrome/content/rules/NETZWELT.de.xml new file mode 100644 index 000000000000..7b2ce4fa8b25 --- /dev/null +++ b/src/chrome/content/rules/NETZWELT.de.xml @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/NFARL.org.xml b/src/chrome/content/rules/NFARL.org.xml new file mode 100644 index 000000000000..1be2c90bc3f0 --- /dev/null +++ b/src/chrome/content/rules/NFARL.org.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/NFrance.xml b/src/chrome/content/rules/NFrance.xml index 5f6195fbd0b8..72ae9946877b 100644 --- a/src/chrome/content/rules/NFrance.xml +++ b/src/chrome/content/rules/NFrance.xml @@ -6,4 +6,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/NGA_cn.xml b/src/chrome/content/rules/NGA_cn.xml new file mode 100644 index 000000000000..4d3ca6fec3d7 --- /dev/null +++ b/src/chrome/content/rules/NGA_cn.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/NGP-VAN.xml b/src/chrome/content/rules/NGP-VAN.xml new file mode 100644 index 000000000000..db2538cea31d --- /dev/null +++ b/src/chrome/content/rules/NGP-VAN.xml @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/NGP_VAN.xml b/src/chrome/content/rules/NGP_VAN.xml deleted file mode 100644 index c6f43caea14e..000000000000 --- a/src/chrome/content/rules/NGP_VAN.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/NHM.ac.uk.xml b/src/chrome/content/rules/NHM.ac.uk.xml deleted file mode 100644 index c08b370cacb4..000000000000 --- a/src/chrome/content/rules/NHM.ac.uk.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/NHN-Corporation.xml b/src/chrome/content/rules/NHN-Corporation.xml deleted file mode 100644 index a827378841b8..000000000000 --- a/src/chrome/content/rules/NHN-Corporation.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/NHN_Next.org.xml b/src/chrome/content/rules/NHN_Next.org.xml deleted file mode 100644 index 4ecdbb9d6ba5..000000000000 --- a/src/chrome/content/rules/NHN_Next.org.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/NHS-Direct.xml b/src/chrome/content/rules/NHS-Direct.xml index 58156537d3ae..e24b0a0a3a59 100644 --- a/src/chrome/content/rules/NHS-Direct.xml +++ b/src/chrome/content/rules/NHS-Direct.xml @@ -6,7 +6,7 @@ Fetch error: http://nhsdirect.nhs.uk/ => https://www.nhsdirect.nhs.uk/: (60, 'SS Disabled by https-everywhere-checker because: Fetch error: http://nhsdirect.nhs.uk/ => https://www.nhsdirect.nhs.uk/: (6, 'Could not resolve host: nhsdirect.nhs.uk') --> - + diff --git a/src/chrome/content/rules/NHS.uk-falsemixed.xml b/src/chrome/content/rules/NHS.uk-falsemixed.xml index 2815b0af3c6c..e54e8b4a9ec1 100644 --- a/src/chrome/content/rules/NHS.uk-falsemixed.xml +++ b/src/chrome/content/rules/NHS.uk-falsemixed.xml @@ -8,7 +8,7 @@ - + https://www.noo.org.uk/: (51, "SSL: no al Other NHS rulesets: - - mystar.org.uk.xml - NHS_ePortfolios.org.xml @@ -276,7 +275,7 @@ Fetch error: http://www.noo.nhs.uk/ => https://www.noo.org.uk/: (51, "SSL: no al ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -623,7 +622,7 @@ Fetch error: http://www.noo.nhs.uk/ => https://www.noo.org.uk/: (51, "SSL: no al - + - - + + - + + + @@ -31,7 +33,6 @@ - + diff --git a/src/chrome/content/rules/NIC.br.xml b/src/chrome/content/rules/NIC.br.xml index dfeba744aa20..143c9c4b2133 100644 --- a/src/chrome/content/rules/NIC.br.xml +++ b/src/chrome/content/rules/NIC.br.xml @@ -26,7 +26,9 @@ - + + + - + @@ -48,7 +48,7 @@ Fetch error: http://docs.nice.org.uk/ => https://docs.nice.org.uk/: (6, 'Could n - + - + + + + - + diff --git a/src/chrome/content/rules/NIFC.gov.xml b/src/chrome/content/rules/NIFC.gov.xml deleted file mode 100644 index b40f73fb8630..000000000000 --- a/src/chrome/content/rules/NIFC.gov.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/NIFTY.xml b/src/chrome/content/rules/NIFTY.xml deleted file mode 100644 index a083ecc3ec25..000000000000 --- a/src/chrome/content/rules/NIFTY.xml +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/NIIF.xml b/src/chrome/content/rules/NIIF.xml index 0874bac9fbd0..c6969e285ff6 100644 --- a/src/chrome/content/rules/NIIF.xml +++ b/src/chrome/content/rules/NIIF.xml @@ -1,14 +1,13 @@ - - - + + + + - - + diff --git a/src/chrome/content/rules/NIPS.cc.xml b/src/chrome/content/rules/NIPS.cc.xml index e39c64f8e99f..4a4f34d54bd6 100644 --- a/src/chrome/content/rules/NIPS.cc.xml +++ b/src/chrome/content/rules/NIPS.cc.xml @@ -21,7 +21,7 @@ - + https://signup.nj.com/: (28, 'Connection t * Secured by us --> - + diff --git a/src/chrome/content/rules/NJIT.edu.xml b/src/chrome/content/rules/NJIT.edu.xml index 1b2d8bc4c92d..db40c1d4a047 100644 --- a/src/chrome/content/rules/NJIT.edu.xml +++ b/src/chrome/content/rules/NJIT.edu.xml @@ -90,7 +90,7 @@ Exceptions: --> - + - + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/NK_News.org.xml b/src/chrome/content/rules/NK_News.org.xml index 423958828ba4..c03c4988f12b 100644 --- a/src/chrome/content/rules/NK_News.org.xml +++ b/src/chrome/content/rules/NK_News.org.xml @@ -1,19 +1,4 @@ - - + + + - - - - - - - - - + diff --git a/src/chrome/content/rules/NLFacile.com.xml b/src/chrome/content/rules/NLFacile.com.xml new file mode 100644 index 000000000000..ba0f88a45478 --- /dev/null +++ b/src/chrome/content/rules/NLFacile.com.xml @@ -0,0 +1,11 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/NLayer-Communications.xml b/src/chrome/content/rules/NLayer-Communications.xml deleted file mode 100644 index 392f28dd89de..000000000000 --- a/src/chrome/content/rules/NLayer-Communications.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/NMU.xml b/src/chrome/content/rules/NMU.xml index f7a5bd914afa..fb7a0ecf7706 100644 --- a/src/chrome/content/rules/NMU.xml +++ b/src/chrome/content/rules/NMU.xml @@ -1,13 +1,15 @@ - + + + + - + - + diff --git a/src/chrome/content/rules/NNM-Club.xml b/src/chrome/content/rules/NNM-Club.xml index 0c9e4f1e6e0c..3708ad8bcd8e 100644 --- a/src/chrome/content/rules/NNM-Club.xml +++ b/src/chrome/content/rules/NNM-Club.xml @@ -5,7 +5,7 @@ Fetch error: http://ipv6.nnm-club.me/ => https://ipv6.nnm-club.me/: (7, '') Fetch error: http://ipv6.nnmclub.to/ => https://ipv6.nnmclub.to/: (7, '') ipv4. mismatch tor. mismatch--> - + @@ -15,11 +15,11 @@ tor. mismatch--> - + - + diff --git a/src/chrome/content/rules/NOO.org.uk.xml b/src/chrome/content/rules/NOO.org.uk.xml index b02bc4ac2921..1f226b1c81b8 100644 --- a/src/chrome/content/rules/NOO.org.uk.xml +++ b/src/chrome/content/rules/NOO.org.uk.xml @@ -7,7 +7,7 @@ Fetch error: http://noo.org.uk/ => https://www.noo.org.uk/: (51, "SSL: no altern ^noo.org.uk: Mismatched --> - + @@ -18,7 +18,7 @@ Fetch error: http://noo.org.uk/ => https://www.noo.org.uk/: (51, "SSL: no altern - + + + + + + + + + + + diff --git a/src/chrome/content/rules/NPAC.com.xml b/src/chrome/content/rules/NPAC.com.xml index 2ad10b8cf991..debade23e1b0 100644 --- a/src/chrome/content/rules/NPAC.com.xml +++ b/src/chrome/content/rules/NPAC.com.xml @@ -14,7 +14,7 @@ - www.npac.com --> - + diff --git a/src/chrome/content/rules/NPD_Group.xml b/src/chrome/content/rules/NPD_Group.xml index d3d0b6b20566..8feae1da0d9b 100644 --- a/src/chrome/content/rules/NPD_Group.xml +++ b/src/chrome/content/rules/NPD_Group.xml @@ -7,7 +7,10 @@ - + + + + @@ -15,10 +18,7 @@ - - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/NPI.org.uk.xml b/src/chrome/content/rules/NPI.org.uk.xml index bb83dbccd6a3..4f18bbdda3c7 100644 --- a/src/chrome/content/rules/NPI.org.uk.xml +++ b/src/chrome/content/rules/NPI.org.uk.xml @@ -4,7 +4,7 @@ - + + + + + + + diff --git a/src/chrome/content/rules/NPR.org.xml b/src/chrome/content/rules/NPR.org.xml index 8677bb3f36d1..0ea49ce93c98 100644 --- a/src/chrome/content/rules/NPR.org.xml +++ b/src/chrome/content/rules/NPR.org.xml @@ -1,69 +1,73 @@ - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - diff --git a/src/chrome/content/rules/NPTEd.org.xml b/src/chrome/content/rules/NPTEd.org.xml deleted file mode 100644 index d70fb14cf2d1..000000000000 --- a/src/chrome/content/rules/NPTEd.org.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/NPario.xml b/src/chrome/content/rules/NPario.xml deleted file mode 100644 index e515c09988a6..000000000000 --- a/src/chrome/content/rules/NPario.xml +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/NQuran.com.xml b/src/chrome/content/rules/NQuran.com.xml new file mode 100644 index 000000000000..0e99fd307875 --- /dev/null +++ b/src/chrome/content/rules/NQuran.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/NSRC.xml b/src/chrome/content/rules/NSRC.xml index 73aaa11586b4..36446166d65b 100644 --- a/src/chrome/content/rules/NSRC.xml +++ b/src/chrome/content/rules/NSRC.xml @@ -13,7 +13,7 @@ --> - + https://nsslabs.com/: (28, 'Connection timed Fetch error: http://dev.nsslabs.com/ => https://dev.nsslabs.com/: (6, 'Could not resolve host: dev.nsslabs.com') --> - + diff --git a/src/chrome/content/rules/NTNU.no.xml b/src/chrome/content/rules/NTNU.no.xml index e0a7999905c8..0d3636572471 100644 --- a/src/chrome/content/rules/NTNU.no.xml +++ b/src/chrome/content/rules/NTNU.no.xml @@ -22,7 +22,7 @@ Fetch error: http://er.ntnu.no/ => https://er.ntnu.no/: (60, 'SSL certificate pr * Secured by us --> - + diff --git a/src/chrome/content/rules/NTP.org.xml b/src/chrome/content/rules/NTP.org.xml index 2888603a4010..8f7ea48934b6 100644 --- a/src/chrome/content/rules/NTP.org.xml +++ b/src/chrome/content/rules/NTP.org.xml @@ -3,7 +3,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://lists.ntp.org/ => https://lists.ntp.org/: (60, 'SSL certificate problem: certificate has expired') - Remark: [0-9].*pool.ntp.org are completely omitted here. + Remark: [0-9].*pool.ntp.org are completely omitted here. *.pool.ntp.org are omitted if they do not give SSL error. Non-functional hosts @@ -74,7 +74,7 @@ Fetch error: http://lists.ntp.org/ => https://lists.ntp.org/: (60, 'SSL certific - support.ntp.org - twiki.ntp.org --> - + diff --git a/src/chrome/content/rules/NTT.com.xml b/src/chrome/content/rules/NTT.com.xml index 098bcdbf4986..7c544118760e 100644 --- a/src/chrome/content/rules/NTT.com.xml +++ b/src/chrome/content/rules/NTT.com.xml @@ -13,10 +13,11 @@ Fetch error: http://ntt.com/ => https://www.ntt.com/: Too many redirects while f * Secured by us --> - + - + + - + diff --git a/src/chrome/content/rules/NTU.edu.tw-falsemixed.xml b/src/chrome/content/rules/NTU.edu.tw-falsemixed.xml index db2f59298b72..0a82c0bb8a6b 100644 --- a/src/chrome/content/rules/NTU.edu.tw-falsemixed.xml +++ b/src/chrome/content/rules/NTU.edu.tw-falsemixed.xml @@ -7,7 +7,7 @@ - + https://galogin.ntu.edu.tw/: (60, 'SS Mixed content: - css, on: - + - epaper from $self ˢ - galong from fonts.googleapis.com ˢ @@ -126,7 +126,7 @@ Fetch error: http://galogin.ntu.edu.tw/ => https://galogin.ntu.edu.tw/: (60, 'SS ˢ Secured by us --> - + @@ -164,8 +164,8 @@ Fetch error: http://galogin.ntu.edu.tw/ => https://galogin.ntu.edu.tw/: (60, 'SS - - + + https://www.ntvspor.net/: Too many redir Fetch error: http://ntvspor.net/ => https://www.ntvspor.net/: Too many redirects while fetching 'https://www.ntvspor.net/' --> - + - + diff --git a/src/chrome/content/rules/NTpandp.com.xml b/src/chrome/content/rules/NTpandp.com.xml deleted file mode 100644 index ad5af65e3c46..000000000000 --- a/src/chrome/content/rules/NTpandp.com.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/NV.ua.xml b/src/chrome/content/rules/NV.ua.xml new file mode 100644 index 000000000000..b0a2e139bac0 --- /dev/null +++ b/src/chrome/content/rules/NV.ua.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/NVMExpress.org.xml b/src/chrome/content/rules/NVMExpress.org.xml new file mode 100644 index 000000000000..4cc0d250c399 --- /dev/null +++ b/src/chrome/content/rules/NVMExpress.org.xml @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/NVidia-mismatches.xml b/src/chrome/content/rules/NVidia-mismatches.xml deleted file mode 100644 index 26580f2e8154..000000000000 --- a/src/chrome/content/rules/NVidia-mismatches.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/NVidia.co.uk.xml b/src/chrome/content/rules/NVidia.co.uk.xml index 24a98f3e2af4..5e8f19408b3c 100644 --- a/src/chrome/content/rules/NVidia.co.uk.xml +++ b/src/chrome/content/rules/NVidia.co.uk.xml @@ -16,7 +16,7 @@ Non-2xx HTTP code: http://nvidia.co.uk/ (200) => https://www.nvidia.co.uk/ (504) ² Akamai --> - + diff --git a/src/chrome/content/rules/NVidia.eu.xml b/src/chrome/content/rules/NVidia.eu.xml index 3339b4b83070..015a3f046e5d 100644 --- a/src/chrome/content/rules/NVidia.eu.xml +++ b/src/chrome/content/rules/NVidia.eu.xml @@ -14,7 +14,7 @@ Fetch error: http://partners.nvidia.eu/ => https://partners.nvidia.eu/: (60, 'SS * Zendesk --> - + diff --git a/src/chrome/content/rules/NVidia.ru.xml b/src/chrome/content/rules/NVidia.ru.xml index 9a4712a9dfaf..de82be2f3eaf 100644 --- a/src/chrome/content/rules/NVidia.ru.xml +++ b/src/chrome/content/rules/NVidia.ru.xml @@ -23,7 +23,7 @@ - + diff --git a/src/chrome/content/rules/NVidia.xml b/src/chrome/content/rules/NVidia.xml index 15722a3048bb..593174afa66f 100644 --- a/src/chrome/content/rules/NVidia.xml +++ b/src/chrome/content/rules/NVidia.xml @@ -1,8 +1,5 @@ + + - - - - - - - - + @@ -150,11 +146,9 @@ - - @@ -188,20 +182,15 @@ - - - - - + - - + diff --git a/src/chrome/content/rules/NVisium.com.xml b/src/chrome/content/rules/NVisium.com.xml index f6a81a87f14d..8f9a78ef40a8 100644 --- a/src/chrome/content/rules/NVisium.com.xml +++ b/src/chrome/content/rules/NVisium.com.xml @@ -11,7 +11,7 @@ Fetch error: http://blog.nvisium.com/ => https://blog.nvisium.com/: (6, 'Could n ˢ Secured by us --> - + diff --git a/src/chrome/content/rules/NXBus.co.uk.xml b/src/chrome/content/rules/NXBus.co.uk.xml new file mode 100644 index 000000000000..3f36c07a4c8c --- /dev/null +++ b/src/chrome/content/rules/NXBus.co.uk.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/NYDailyNews.com-falsemixed.xml b/src/chrome/content/rules/NYDailyNews.com-falsemixed.xml index 0097fcfaa072..4c93a2e949a5 100644 --- a/src/chrome/content/rules/NYDailyNews.com-falsemixed.xml +++ b/src/chrome/content/rules/NYDailyNews.com-falsemixed.xml @@ -1,13 +1,26 @@ + + + + + + + - + diff --git a/src/chrome/content/rules/NYDailyNews.xml b/src/chrome/content/rules/NYDailyNews.xml index 7bdbd6957de2..aaee3f6af7cf 100644 --- a/src/chrome/content/rules/NYDailyNews.xml +++ b/src/chrome/content/rules/NYDailyNews.xml @@ -1,6 +1,4 @@ - - - - - - - + + + + - - - - - - - + diff --git a/src/chrome/content/rules/NYI.net-falsemixed.xml b/src/chrome/content/rules/NYI.net-falsemixed.xml index 67fc5290b1f2..6d4f4c68a601 100644 --- a/src/chrome/content/rules/NYI.net-falsemixed.xml +++ b/src/chrome/content/rules/NYI.net-falsemixed.xml @@ -6,7 +6,7 @@ Fetch error: http://webmail.nyi.net/ => https://webmail.nyi.net/: (28, 'Connecti For rules not causing broken MCB, see NYI.net.xml. --> - + diff --git a/src/chrome/content/rules/NYI.net.xml b/src/chrome/content/rules/NYI.net.xml index dea7f2355427..9e44be313fb5 100644 --- a/src/chrome/content/rules/NYI.net.xml +++ b/src/chrome/content/rules/NYI.net.xml @@ -28,7 +28,7 @@ Fetch error: http://webmail.nyi.net/webmailimages/sm_logo_tp.png => https://webm * Secured by us --> - + diff --git a/src/chrome/content/rules/NYK.eu.xml b/src/chrome/content/rules/NYK.eu.xml new file mode 100644 index 000000000000..4240cf33335a --- /dev/null +++ b/src/chrome/content/rules/NYK.eu.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/NYK_Europe.com-falsemixed.xml b/src/chrome/content/rules/NYK_Europe.com-falsemixed.xml index 20140d430eb0..16d8d5bf31f7 100644 --- a/src/chrome/content/rules/NYK_Europe.com-falsemixed.xml +++ b/src/chrome/content/rules/NYK_Europe.com-falsemixed.xml @@ -12,7 +12,7 @@ Fetch error: http://nykeurope.com/ => https://nykeurope.com/: Too many redirects For rules not causing mixed content, see NYK_Europe.com.xml. --> - + diff --git a/src/chrome/content/rules/NYMag.com.xml b/src/chrome/content/rules/NYMag.com.xml new file mode 100644 index 000000000000..9b215b2a3b13 --- /dev/null +++ b/src/chrome/content/rules/NYMag.com.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/NYSE_Euronext.xml b/src/chrome/content/rules/NYSE_Euronext.xml index 1eb0f6366fab..858e33897eb4 100644 --- a/src/chrome/content/rules/NYSE_Euronext.xml +++ b/src/chrome/content/rules/NYSE_Euronext.xml @@ -32,10 +32,23 @@ Fetch error: http://nyx.com/ => https://www.nyx.com/: (28, 'Resolving timed out - usequities --> - + - + + + + + + + + + + + + + + @@ -44,7 +57,6 @@ Fetch error: http://nyx.com/ => https://www.nyx.com/: (28, 'Resolving timed out - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/NYT_Co.com.xml b/src/chrome/content/rules/NYT_Co.com.xml index 53159dbefccc..7b8a083bd965 100644 --- a/src/chrome/content/rules/NYT_Co.com.xml +++ b/src/chrome/content/rules/NYT_Co.com.xml @@ -1,30 +1,36 @@ - - - + + + + diff --git a/src/chrome/content/rules/NYTimes-Problematic.xml b/src/chrome/content/rules/NYTimes-Problematic.xml deleted file mode 100644 index 45beeb4f5038..000000000000 --- a/src/chrome/content/rules/NYTimes-Problematic.xml +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/NYTimes.xml b/src/chrome/content/rules/NYTimes.xml index bc9813ea6ad9..feffd672a6ec 100644 --- a/src/chrome/content/rules/NYTimes.xml +++ b/src/chrome/content/rules/NYTimes.xml @@ -1,12 +1,8 @@ - - - - - + + + + + + + + + - + + - + @@ -71,18 +68,28 @@ - + + + + + + + + + + + + - - + + - diff --git a/src/chrome/content/rules/NZBIndex.xml b/src/chrome/content/rules/NZBIndex.xml index 5a4085301dbb..96953ffd68a5 100644 --- a/src/chrome/content/rules/NZBIndex.xml +++ b/src/chrome/content/rules/NZBIndex.xml @@ -8,7 +8,7 @@ - + diff --git a/src/chrome/content/rules/NZBMatrix.xml b/src/chrome/content/rules/NZBMatrix.xml index c1b0e45dd459..a270d730bd88 100644 --- a/src/chrome/content/rules/NZBMatrix.xml +++ b/src/chrome/content/rules/NZBMatrix.xml @@ -3,11 +3,13 @@ Disabled by https-everywhere-checker because: Fetch error: http://nzbmatrix.com/ => https://nzbmatrix.com/: (28, 'Resolving timed out after 10519 milliseconds') --> - + + + - - - + + + - + diff --git a/src/chrome/content/rules/NZF.org.uk.xml b/src/chrome/content/rules/NZF.org.uk.xml new file mode 100644 index 000000000000..83f7ae3b5a42 --- /dev/null +++ b/src/chrome/content/rules/NZF.org.uk.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/NZ_Herald.co.nz-problematic.xml b/src/chrome/content/rules/NZ_Herald.co.nz-problematic.xml index b90cab728772..8e214e03773b 100644 --- a/src/chrome/content/rules/NZ_Herald.co.nz-problematic.xml +++ b/src/chrome/content/rules/NZ_Herald.co.nz-problematic.xml @@ -14,4 +14,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Nabble.com.xml b/src/chrome/content/rules/Nabble.com.xml new file mode 100644 index 000000000000..e5979a0eb428 --- /dev/null +++ b/src/chrome/content/rules/Nabble.com.xml @@ -0,0 +1,10 @@ + + + + + + + diff --git a/src/chrome/content/rules/Nadim.computer.xml b/src/chrome/content/rules/Nadim.computer.xml deleted file mode 100644 index 3cf644dd01dd..000000000000 --- a/src/chrome/content/rules/Nadim.computer.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Nadir.org.xml b/src/chrome/content/rules/Nadir.org.xml index 1ac226309c1e..e404cc7fea06 100644 --- a/src/chrome/content/rules/Nadir.org.xml +++ b/src/chrome/content/rules/Nadir.org.xml @@ -29,7 +29,7 @@ - + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Nagios.org.xml b/src/chrome/content/rules/Nagios.org.xml new file mode 100644 index 000000000000..8dfe84c39177 --- /dev/null +++ b/src/chrome/content/rules/Nagios.org.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Nagra.com.xml b/src/chrome/content/rules/Nagra.com.xml index e1beb3bf2374..e104d40778d0 100644 --- a/src/chrome/content/rules/Nagra.com.xml +++ b/src/chrome/content/rules/Nagra.com.xml @@ -17,13 +17,14 @@ - + + + - + diff --git a/src/chrome/content/rules/NakedCapitalism.com.xml b/src/chrome/content/rules/NakedCapitalism.com.xml new file mode 100644 index 000000000000..6791fe4940a1 --- /dev/null +++ b/src/chrome/content/rules/NakedCapitalism.com.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Name.com.xml b/src/chrome/content/rules/Name.com.xml index 7f78a7b89e7f..dc6b26333c9a 100644 --- a/src/chrome/content/rules/Name.com.xml +++ b/src/chrome/content/rules/Name.com.xml @@ -29,7 +29,7 @@ - + https://namecentral.com/: (6, 'Could not ² Mismatched, CN: namecentral.com --> - + - + - + diff --git a/src/chrome/content/rules/NameMedia.xml b/src/chrome/content/rules/NameMedia.xml index d528816e2242..20180e9cc599 100644 --- a/src/chrome/content/rules/NameMedia.xml +++ b/src/chrome/content/rules/NameMedia.xml @@ -5,15 +5,15 @@ - + + - + - + diff --git a/src/chrome/content/rules/NameSilo.xml b/src/chrome/content/rules/NameSilo.xml new file mode 100644 index 000000000000..ddb8f9901c94 --- /dev/null +++ b/src/chrome/content/rules/NameSilo.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Names.xml b/src/chrome/content/rules/Names.xml index 2814db74742b..c55c4da49a4c 100644 --- a/src/chrome/content/rules/Names.xml +++ b/src/chrome/content/rules/Names.xml @@ -33,7 +33,7 @@ - + - - - - - - - - - - - diff --git a/src/chrome/content/rules/Nanigans.xml b/src/chrome/content/rules/Nanigans.xml index 463ab0a17c51..3ed5003e51f2 100644 --- a/src/chrome/content/rules/Nanigans.xml +++ b/src/chrome/content/rules/Nanigans.xml @@ -16,7 +16,7 @@ Fetch error: http://lp.nanigans.com/ => https://lp.nanigans.com/: (28, 'Connecti ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -30,7 +30,7 @@ Fetch error: http://lp.nanigans.com/ => https://lp.nanigans.com/: (28, 'Connecti --> - + https://napoleonmakeupacademy.com/: (28, 'Operation timed out after 30001 milliseconds with 0 bytes received') --> - + - - + + - + diff --git a/src/chrome/content/rules/Naromax.xml b/src/chrome/content/rules/Naromax.xml deleted file mode 100644 index fc91ac5496b1..000000000000 --- a/src/chrome/content/rules/Naromax.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Nartac.com.xml b/src/chrome/content/rules/Nartac.com.xml index bfd6308e7791..640920c5c64a 100644 --- a/src/chrome/content/rules/Nartac.com.xml +++ b/src/chrome/content/rules/Nartac.com.xml @@ -8,7 +8,7 @@ Fetch error: http://nartac.com/ => https://nartac.com/: (51, "SSL: no alternativ - 2015.nartac.com --> - + diff --git a/src/chrome/content/rules/Nasjonal_Sikkerhetsmyndighet.xml b/src/chrome/content/rules/Nasjonal_Sikkerhetsmyndighet.xml deleted file mode 100644 index 190e8ff2b79b..000000000000 --- a/src/chrome/content/rules/Nasjonal_Sikkerhetsmyndighet.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Nasuni.com.xml b/src/chrome/content/rules/Nasuni.com.xml index be42b3f7daf4..55b22ab1ab0a 100644 --- a/src/chrome/content/rules/Nasuni.com.xml +++ b/src/chrome/content/rules/Nasuni.com.xml @@ -8,6 +8,6 @@ - + diff --git a/src/chrome/content/rules/NatMonitor.com.xml b/src/chrome/content/rules/NatMonitor.com.xml index 00562c9255cb..68236f3b1e30 100644 --- a/src/chrome/content/rules/NatMonitor.com.xml +++ b/src/chrome/content/rules/NatMonitor.com.xml @@ -1,31 +1,18 @@ - - + - - - - - - - + + + + + + + + diff --git a/src/chrome/content/rules/NatalieJonckheere.com.xml b/src/chrome/content/rules/NatalieJonckheere.com.xml new file mode 100644 index 000000000000..b5c0cf8102c8 --- /dev/null +++ b/src/chrome/content/rules/NatalieJonckheere.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/National-Academies.xml b/src/chrome/content/rules/National-Academies.xml index ae4623313d55..a8a44e68730d 100644 --- a/src/chrome/content/rules/National-Academies.xml +++ b/src/chrome/content/rules/National-Academies.xml @@ -25,13 +25,13 @@ --> - + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/National-Arbitration-Forum.xml b/src/chrome/content/rules/National-Arbitration-Forum.xml index 5701560fa8e0..1c770da45d4f 100644 --- a/src/chrome/content/rules/National-Arbitration-Forum.xml +++ b/src/chrome/content/rules/National-Arbitration-Forum.xml @@ -3,7 +3,7 @@ - + diff --git a/src/chrome/content/rules/National-Broadcasting-Company.xml b/src/chrome/content/rules/National-Broadcasting-Company.xml index 195702b82434..a66c93d2318d 100644 --- a/src/chrome/content/rules/National-Broadcasting-Company.xml +++ b/src/chrome/content/rules/National-Broadcasting-Company.xml @@ -2,7 +2,6 @@ Other National Broadcasting Company rulesets: - NBC-News.xml - - S-nbcnews.com.xml --> @@ -10,10 +9,10 @@ - + - + - + - + diff --git a/src/chrome/content/rules/National-Rail-Enquiries-mismatches.xml b/src/chrome/content/rules/National-Rail-Enquiries-mismatches.xml index 581a0140b098..2608c44ec127 100644 --- a/src/chrome/content/rules/National-Rail-Enquiries-mismatches.xml +++ b/src/chrome/content/rules/National-Rail-Enquiries-mismatches.xml @@ -5,13 +5,11 @@ - - + - + diff --git a/src/chrome/content/rules/National-Rail-Enquiries.xml b/src/chrome/content/rules/National-Rail-Enquiries.xml index f937ad552b59..3ca358d0d493 100644 --- a/src/chrome/content/rules/National-Rail-Enquiries.xml +++ b/src/chrome/content/rules/National-Rail-Enquiries.xml @@ -18,7 +18,10 @@ - + + + + diff --git a/src/chrome/content/rules/National-Renewable-Energy-Laboratory.xml b/src/chrome/content/rules/National-Renewable-Energy-Laboratory.xml index f759d19e214e..5dbc974009a1 100644 --- a/src/chrome/content/rules/National-Renewable-Energy-Laboratory.xml +++ b/src/chrome/content/rules/National-Renewable-Energy-Laboratory.xml @@ -1,56 +1,24 @@ - + Time out: + pvwatts.nrel.gov - - - +--> + - - + + + + + + + + + - - + diff --git a/src/chrome/content/rules/National-Research-Council-Canada.xml b/src/chrome/content/rules/National-Research-Council-Canada.xml index 630f92faab2e..f585ea1e4be2 100644 --- a/src/chrome/content/rules/National-Research-Council-Canada.xml +++ b/src/chrome/content/rules/National-Research-Council-Canada.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://nrc-cnrc.gc.ca/ => https://nrc-cnrc.gc.ca/: Cycle detected - URL already encountered: https://www.nrc-cnrc.gc.ca/index.html Fetch error: http://www.nrc-cnrc.gc.ca/ => https://www.nrc-cnrc.gc.ca/: Cycle detected - URL already encountered: https://www.nrc-cnrc.gc.ca/index.html --> - + diff --git a/src/chrome/content/rules/National-Science-Foundation.xml b/src/chrome/content/rules/National-Science-Foundation.xml index 589853978c2c..d499271eea55 100644 --- a/src/chrome/content/rules/National-Science-Foundation.xml +++ b/src/chrome/content/rules/National-Science-Foundation.xml @@ -60,7 +60,7 @@ --> - + diff --git a/src/chrome/content/rules/National-University-of-Ireland-mismatches.xml b/src/chrome/content/rules/National-University-of-Ireland-mismatches.xml index 2c266ad1fd44..edfb1ad4630f 100644 --- a/src/chrome/content/rules/National-University-of-Ireland-mismatches.xml +++ b/src/chrome/content/rules/National-University-of-Ireland-mismatches.xml @@ -2,7 +2,6 @@ - + diff --git a/src/chrome/content/rules/National-University-of-Ireland.xml b/src/chrome/content/rules/National-University-of-Ireland.xml index ca188c7d5abb..44083893b631 100644 --- a/src/chrome/content/rules/National-University-of-Ireland.xml +++ b/src/chrome/content/rules/National-University-of-Ireland.xml @@ -7,13 +7,13 @@ Fetch error: http://www.deri.ie/ => https://www.deri.ie/: (28, 'Operation timed Mismatch: - ^nuigalway.ie --> - + - + diff --git a/src/chrome/content/rules/NationalArchivesGovUK.xml b/src/chrome/content/rules/NationalArchivesGovUK.xml index 45beb4a24788..30798a4115d7 100644 --- a/src/chrome/content/rules/NationalArchivesGovUK.xml +++ b/src/chrome/content/rules/NationalArchivesGovUK.xml @@ -49,7 +49,7 @@ Fetch error: http://community.nationalarchives.gov.uk/ => https://community.nati ² Unsecurable --> - + @@ -91,7 +91,7 @@ Fetch error: http://community.nationalarchives.gov.uk/ => https://community.nati --> - + - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/NationalE-HealthTransitionAuthority.xml b/src/chrome/content/rules/NationalE-HealthTransitionAuthority.xml index 0ad06e82dab8..7fa7dea6fe83 100644 --- a/src/chrome/content/rules/NationalE-HealthTransitionAuthority.xml +++ b/src/chrome/content/rules/NationalE-HealthTransitionAuthority.xml @@ -1,7 +1,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/NationalEatingDisorders.org.xml b/src/chrome/content/rules/NationalEatingDisorders.org.xml index acea6890e36c..170a15494dda 100644 --- a/src/chrome/content/rules/NationalEatingDisorders.org.xml +++ b/src/chrome/content/rules/NationalEatingDisorders.org.xml @@ -3,7 +3,7 @@ bp.nationaleatingdisorders.org Wildcard DNS but without wildcard certificate. - + All other subdomains are mismatched. --> diff --git a/src/chrome/content/rules/NationalEthicsApplicationForm.xml b/src/chrome/content/rules/NationalEthicsApplicationForm.xml deleted file mode 100644 index 1b2b7fbbbd06..000000000000 --- a/src/chrome/content/rules/NationalEthicsApplicationForm.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/NationalHealthandMedicalResearchCouncil.xml b/src/chrome/content/rules/NationalHealthandMedicalResearchCouncil.xml index 2b9ad3f95b33..3ec1b656746a 100644 --- a/src/chrome/content/rules/NationalHealthandMedicalResearchCouncil.xml +++ b/src/chrome/content/rules/NationalHealthandMedicalResearchCouncil.xml @@ -1,7 +1,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/NationalLibraryofAustralia.xml b/src/chrome/content/rules/NationalLibraryofAustralia.xml index 2e4964daad93..15d12922f753 100644 --- a/src/chrome/content/rules/NationalLibraryofAustralia.xml +++ b/src/chrome/content/rules/NationalLibraryofAustralia.xml @@ -1,7 +1,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/NationalLottery.xml b/src/chrome/content/rules/NationalLottery.xml deleted file mode 100644 index fdb560462f86..000000000000 --- a/src/chrome/content/rules/NationalLottery.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/NationalRSOL.org.xml b/src/chrome/content/rules/NationalRSOL.org.xml new file mode 100644 index 000000000000..7187c13e4c1b --- /dev/null +++ b/src/chrome/content/rules/NationalRSOL.org.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/NationalReview.com.xml b/src/chrome/content/rules/NationalReview.com.xml index dc85c7a1f41c..ceadf9c40e58 100644 --- a/src/chrome/content/rules/NationalReview.com.xml +++ b/src/chrome/content/rules/NationalReview.com.xml @@ -6,7 +6,7 @@ Fetch error: http://nr-media-01.nationalreview.com/ => https://nr-media-01.natio Disabled by https-everywhere-checker because: Fetch error: http://nr-media-01.nationalreview.com/ => https://nr-media-01.nationalreview.com/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/National_Academy_of_Engineering.xml b/src/chrome/content/rules/National_Academy_of_Engineering.xml index ddadb1507411..7160feb47909 100644 --- a/src/chrome/content/rules/National_Academy_of_Engineering.xml +++ b/src/chrome/content/rules/National_Academy_of_Engineering.xml @@ -8,10 +8,10 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/National_Bureau_of_Economic_Research.xml b/src/chrome/content/rules/National_Bureau_of_Economic_Research.xml index c085e1c13162..43b105be2da9 100644 --- a/src/chrome/content/rules/National_Bureau_of_Economic_Research.xml +++ b/src/chrome/content/rules/National_Bureau_of_Economic_Research.xml @@ -7,4 +7,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/National_Geographic.com-problematic.xml b/src/chrome/content/rules/National_Geographic.com-problematic.xml deleted file mode 100644 index 2c69fc2bef20..000000000000 --- a/src/chrome/content/rules/National_Geographic.com-problematic.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/National_Geographic.com.xml b/src/chrome/content/rules/National_Geographic.com.xml new file mode 100644 index 000000000000..36a6fc440cf5 --- /dev/null +++ b/src/chrome/content/rules/National_Geographic.com.xml @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/National_Geographic.xml b/src/chrome/content/rules/National_Geographic.xml deleted file mode 100644 index 678895c808aa..000000000000 --- a/src/chrome/content/rules/National_Geographic.xml +++ /dev/null @@ -1,154 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/National_Institute_for_Social_Media.xml b/src/chrome/content/rules/National_Institute_for_Social_Media.xml index 588baac17939..fbd5a1c0e97f 100644 --- a/src/chrome/content/rules/National_Institute_for_Social_Media.xml +++ b/src/chrome/content/rules/National_Institute_for_Social_Media.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/National_Oceanic_and_Atmospheric_Administration.xml b/src/chrome/content/rules/National_Oceanic_and_Atmospheric_Administration.xml index f60264a50a89..7d64a673afb7 100644 --- a/src/chrome/content/rules/National_Oceanic_and_Atmospheric_Administration.xml +++ b/src/chrome/content/rules/National_Oceanic_and_Atmospheric_Administration.xml @@ -74,7 +74,7 @@ Fetch error: http://nes.ncdc.noaa.gov/ => https://nes.ncdc.noaa.gov/: (51, "SSL: * Secured by us --> - + @@ -102,7 +102,7 @@ Fetch error: http://nes.ncdc.noaa.gov/ => https://nes.ncdc.noaa.gov/: (51, "SSL: --> - + https://www.science.nature.nps.gov/: (6, 'Could not resolve host: www.science.nature.nps.gov') Fetch error: http://www.npssa.nps.gov/ => https://www.npssa.nps.gov/: (6, 'Could not resolve host: www.npssa.nps.gov') - National Park Service + National Park Service @@ -48,7 +48,7 @@ Fetch error: http://www.npssa.nps.gov/ => https://www.npssa.nps.gov/: (6, 'Could ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -56,7 +56,6 @@ Fetch error: http://www.npssa.nps.gov/ => https://www.npssa.nps.gov/: (6, 'Could - @@ -98,7 +97,7 @@ Fetch error: http://www.npssa.nps.gov/ => https://www.npssa.nps.gov/: (6, 'Could - + - + + + - + diff --git a/src/chrome/content/rules/National_Transport_Safety_Board.xml b/src/chrome/content/rules/National_Transport_Safety_Board.xml deleted file mode 100644 index 4a9b0f1ebe99..000000000000 --- a/src/chrome/content/rules/National_Transport_Safety_Board.xml +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/National_Travel_Health_Network_and_Centre.xml b/src/chrome/content/rules/National_Travel_Health_Network_and_Centre.xml index 1289c1747572..36cb99eb3e6d 100644 --- a/src/chrome/content/rules/National_Travel_Health_Network_and_Centre.xml +++ b/src/chrome/content/rules/National_Travel_Health_Network_and_Centre.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://nathnac.org/ => https://www.nathnac.org/: (35, 'Unknown SSL protocol error in connection to www.nathnac.org:443 ') --> - + diff --git a/src/chrome/content/rules/National_Wildlife_Foundation.xml b/src/chrome/content/rules/National_Wildlife_Foundation.xml index d136a9d2f542..b559c8e21d0e 100644 --- a/src/chrome/content/rules/National_Wildlife_Foundation.xml +++ b/src/chrome/content/rules/National_Wildlife_Foundation.xml @@ -57,7 +57,7 @@ - + - + diff --git a/src/chrome/content/rules/Nationalserviceresources.org.xml b/src/chrome/content/rules/Nationalserviceresources.org.xml index 0f98875b5a24..c13a2957ec24 100644 --- a/src/chrome/content/rules/Nationalserviceresources.org.xml +++ b/src/chrome/content/rules/Nationalserviceresources.org.xml @@ -17,7 +17,7 @@ Fetch error: http://www.nationalserviceresources.org/ => https://www.nationalser * Mismatched, CN: acquia-sites.com --> - + @@ -28,4 +28,4 @@ Fetch error: http://www.nationalserviceresources.org/ => https://www.nationalser - \ No newline at end of file + diff --git a/src/chrome/content/rules/Nationwide.xml b/src/chrome/content/rules/Nationwide.xml index 8b24af4af584..12e6a623ef9d 100644 --- a/src/chrome/content/rules/Nationwide.xml +++ b/src/chrome/content/rules/Nationwide.xml @@ -28,10 +28,13 @@ Fetch error: http://olb.nationwideuk.ie/ => https://olb.nationwideuk.ie/: (60, ' - nationwide-jobs.co.uk (cert only matches www) --> - + - + + + + @@ -47,19 +50,14 @@ Fetch error: http://olb.nationwideuk.ie/ => https://olb.nationwideuk.ie/: (60, ' - - - + diff --git a/src/chrome/content/rules/Nativo.net.xml b/src/chrome/content/rules/Nativo.net.xml index 074dba360b4c..a8a3f104f803 100644 --- a/src/chrome/content/rules/Nativo.net.xml +++ b/src/chrome/content/rules/Nativo.net.xml @@ -4,8 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://beta.nativo.net/ => https://beta.nativo.net/: (6, 'Could not resolve host: beta.nativo.net') For other Nativo coverage, see: - Ntv.io.xml - Postrelease.com.xml + + Ntv.io.xml Partially covered subdomains: @@ -19,7 +18,7 @@ Fetch error: http://beta.nativo.net/ => https://beta.nativo.net/: (6, 'Could not - beta --> - + @@ -27,10 +26,6 @@ Fetch error: http://beta.nativo.net/ => https://beta.nativo.net/: (6, 'Could not - - - + diff --git a/src/chrome/content/rules/Natl-American-Arab-Nursing-Assn.xml b/src/chrome/content/rules/Natl-American-Arab-Nursing-Assn.xml index 7692c455bfdb..de332b2ae2f4 100644 --- a/src/chrome/content/rules/Natl-American-Arab-Nursing-Assn.xml +++ b/src/chrome/content/rules/Natl-American-Arab-Nursing-Assn.xml @@ -1,16 +1,12 @@ - - + - + diff --git a/src/chrome/content/rules/Natl-Childrens-Leukemia-Foundation.xml b/src/chrome/content/rules/Natl-Childrens-Leukemia-Foundation.xml index ba7d15569feb..e79c56b7292e 100644 --- a/src/chrome/content/rules/Natl-Childrens-Leukemia-Foundation.xml +++ b/src/chrome/content/rules/Natl-Childrens-Leukemia-Foundation.xml @@ -12,7 +12,7 @@ Fetch error: http://leukemiafoundation.org/ => https://www.leukemiafoundation.or Fetch error: http://www.leukemiafoundation.org/ => https://www.leukemiafoundation.org/: (28, 'Connection timed out after 10001 milliseconds') --> - + diff --git a/src/chrome/content/rules/Nattstad.se.xml b/src/chrome/content/rules/Nattstad.se.xml index 481e97180768..577899251acb 100644 --- a/src/chrome/content/rules/Nattstad.se.xml +++ b/src/chrome/content/rules/Nattstad.se.xml @@ -5,7 +5,7 @@ Fetch error: http://nattstad.se/ => https://www.nattstad.se/: (51, "SSL: no alte Fetch error: http://www.nattstad.se/ => https://www.nattstad.se/: (51, "SSL: no alternative certificate subject name matches target host name 'www.nattstad.se'") --> - + diff --git a/src/chrome/content/rules/Natural-Environment-Research-Council.xml b/src/chrome/content/rules/Natural-Environment-Research-Council.xml index fc8d5b6e2423..148bfca716d5 100644 --- a/src/chrome/content/rules/Natural-Environment-Research-Council.xml +++ b/src/chrome/content/rules/Natural-Environment-Research-Council.xml @@ -9,7 +9,7 @@ - + diff --git a/src/chrome/content/rules/Natural_Message.com.xml b/src/chrome/content/rules/Natural_Message.com.xml deleted file mode 100644 index 295dbaa8e2c2..000000000000 --- a/src/chrome/content/rules/Natural_Message.com.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Natural_Resources.Wales.xml b/src/chrome/content/rules/Natural_Resources.Wales.xml index 1f8f4361602a..9167f6ac13bd 100644 --- a/src/chrome/content/rules/Natural_Resources.Wales.xml +++ b/src/chrome/content/rules/Natural_Resources.Wales.xml @@ -4,7 +4,7 @@ - + https://store.naturalskinshop.com/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + @@ -22,4 +22,4 @@ Fetch error: http://store.naturalskinshop.com/ => https://store.naturalskinshop. - \ No newline at end of file + diff --git a/src/chrome/content/rules/Nature.com.xml b/src/chrome/content/rules/Nature.com.xml index 1381b8d110bd..da81f92eaed8 100644 --- a/src/chrome/content/rules/Nature.com.xml +++ b/src/chrome/content/rules/Nature.com.xml @@ -89,7 +89,7 @@ - + @@ -120,7 +120,7 @@ - + @@ -136,7 +136,7 @@ - + diff --git a/src/chrome/content/rules/Nature.org.xml b/src/chrome/content/rules/Nature.org.xml index 7c0013fd0b29..a659f3087b36 100644 --- a/src/chrome/content/rules/Nature.org.xml +++ b/src/chrome/content/rules/Nature.org.xml @@ -1,6 +1,7 @@ - + - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/NatureAsia.com.xml b/src/chrome/content/rules/NatureAsia.com.xml new file mode 100644 index 000000000000..d5ce549fbb99 --- /dev/null +++ b/src/chrome/content/rules/NatureAsia.com.xml @@ -0,0 +1,22 @@ + + + + + + + + diff --git a/src/chrome/content/rules/NatureCast.org.xml b/src/chrome/content/rules/NatureCast.org.xml new file mode 100644 index 000000000000..9ededa480c18 --- /dev/null +++ b/src/chrome/content/rules/NatureCast.org.xml @@ -0,0 +1,19 @@ + + + + + + + + diff --git a/src/chrome/content/rules/NatureIndex.com.xml b/src/chrome/content/rules/NatureIndex.com.xml new file mode 100644 index 000000000000..e0f0c8f2d64b --- /dev/null +++ b/src/chrome/content/rules/NatureIndex.com.xml @@ -0,0 +1,12 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Nature_Shop.xml b/src/chrome/content/rules/Nature_Shop.xml index 4347d3484300..b12f9699ca9e 100644 --- a/src/chrome/content/rules/Nature_Shop.xml +++ b/src/chrome/content/rules/Nature_Shop.xml @@ -13,4 +13,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Naturvardsverket.se.xml b/src/chrome/content/rules/Naturvardsverket.se.xml index 36b0b6fdcf3f..749cf63cbcda 100644 --- a/src/chrome/content/rules/Naturvardsverket.se.xml +++ b/src/chrome/content/rules/Naturvardsverket.se.xml @@ -1,7 +1,6 @@ - - + diff --git a/src/chrome/content/rules/Nau.ch.xml b/src/chrome/content/rules/Nau.ch.xml new file mode 100644 index 000000000000..5b50f5f22b9b --- /dev/null +++ b/src/chrome/content/rules/Nau.ch.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Naughty_Show_Reviews.com.xml b/src/chrome/content/rules/Naughty_Show_Reviews.com.xml deleted file mode 100644 index 33bede1fb330..000000000000 --- a/src/chrome/content/rules/Naughty_Show_Reviews.com.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Naukri.xml b/src/chrome/content/rules/Naukri.xml index c5ca589c29a6..df5ce5e3fa08 100644 --- a/src/chrome/content/rules/Naukri.xml +++ b/src/chrome/content/rules/Naukri.xml @@ -1,124 +1,49 @@ - - - - + + + + + + + - + + - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + diff --git a/src/chrome/content/rules/Nautil.us.xml b/src/chrome/content/rules/Nautil.us.xml index ece92666a8a4..f4a99fd98578 100644 --- a/src/chrome/content/rules/Nautil.us.xml +++ b/src/chrome/content/rules/Nautil.us.xml @@ -5,10 +5,6 @@ - static - - (www.): refused - - Mixed content: - Images on shop from $self ¹ @@ -18,16 +14,18 @@ ² Unsecurable <= refused --> - + - + + + + - + diff --git a/src/chrome/content/rules/Navdem.com.xml b/src/chrome/content/rules/Navdem.com.xml index edbe9cbf8f1d..d636d27812ed 100644 --- a/src/chrome/content/rules/Navdem.com.xml +++ b/src/chrome/content/rules/Navdem.com.xml @@ -5,7 +5,7 @@ Fetch error: http://navdem.com/ => https://navdem.com/: (35, 'error:14077438:SSL Fetch error: http://www.navdem.com/ => https://www.navdem.com/: (35, 'error:14077438:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert internal error') --> - + diff --git a/src/chrome/content/rules/Naver.com.xml b/src/chrome/content/rules/Naver.com.xml deleted file mode 100644 index 23f573cbe183..000000000000 --- a/src/chrome/content/rules/Naver.com.xml +++ /dev/null @@ -1,152 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Naver.net.xml b/src/chrome/content/rules/Naver.net.xml index f5ffdf537232..c1bb584f4c5b 100644 --- a/src/chrome/content/rules/Naver.net.xml +++ b/src/chrome/content/rules/Naver.net.xml @@ -36,13 +36,14 @@ --> - + + + - + diff --git a/src/chrome/content/rules/Naver_Corp.com.xml b/src/chrome/content/rules/Naver_Corp.com.xml index 38516699a3dd..7e567a053b41 100644 --- a/src/chrome/content/rules/Naver_Corp.com.xml +++ b/src/chrome/content/rules/Naver_Corp.com.xml @@ -1,9 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Nawaat.xml b/src/chrome/content/rules/Nawaat.xml index 74275739ddf5..6e5097fdf4d1 100644 --- a/src/chrome/content/rules/Nawaat.xml +++ b/src/chrome/content/rules/Nawaat.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Nazariyat.org.xml b/src/chrome/content/rules/Nazariyat.org.xml new file mode 100644 index 000000000000..401cac81ca52 --- /dev/null +++ b/src/chrome/content/rules/Nazariyat.org.xml @@ -0,0 +1,12 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Nazwa.pl.xml b/src/chrome/content/rules/Nazwa.pl.xml index e4d9de7aabec..80c6b167dc94 100644 --- a/src/chrome/content/rules/Nazwa.pl.xml +++ b/src/chrome/content/rules/Nazwa.pl.xml @@ -20,7 +20,7 @@ - + diff --git a/src/chrome/content/rules/Ncloud.dk.xml b/src/chrome/content/rules/Ncloud.dk.xml index d80b4e35ca94..4ce0b3aa1022 100644 --- a/src/chrome/content/rules/Ncloud.dk.xml +++ b/src/chrome/content/rules/Ncloud.dk.xml @@ -8,12 +8,11 @@ Fetch error: http://partner.ncloud.dk/ => https://partner.ncloud.dk/: (28, 'Conn For other Netgroup coverage, see Netgroup.dk.xml. --> - + - + diff --git a/src/chrome/content/rules/Ndla.no.xml b/src/chrome/content/rules/Ndla.no.xml index c1acd55cdb67..f38ef790ec86 100644 --- a/src/chrome/content/rules/Ndla.no.xml +++ b/src/chrome/content/rules/Ndla.no.xml @@ -4,7 +4,7 @@ - bak.ndla.no - ndlap4prodadm01v.ndlap4.ndla.no - ndlat4cm02v.ndlap4.ndla.no - + Mismatch: - arkiv.ndla.no - 2009.arkiv.ndla.no @@ -25,12 +25,12 @@ - ndlat4vhosts01v.ndlap4.ndla.no - ndlat4vhosts02v.ndlap4.ndla.no - ndlat4vhosts03v.ndlap4.ndla.no - - + + Different content: - samskrive.ndla.no - sti.ndla.no - + Timeout: - nettskole.ndla.no - www.nettskole.ndla.no @@ -39,7 +39,7 @@ Redirects to HTTP: - deling.ndla.no - fyr.ndla.no - + Other HTTPS failure: - ndlap4stream01v.ndlap4.ndla.no @@ -58,6 +58,6 @@ - + diff --git a/src/chrome/content/rules/Ndr.de.xml b/src/chrome/content/rules/Ndr.de.xml index a79a12eaa920..5c5eb37ed802 100644 --- a/src/chrome/content/rules/Ndr.de.xml +++ b/src/chrome/content/rules/Ndr.de.xml @@ -21,9 +21,9 @@ - + - + diff --git a/src/chrome/content/rules/Nearbuysystems.com.xml b/src/chrome/content/rules/Nearbuysystems.com.xml index 96ddbd5a576b..034daddfbbaa 100644 --- a/src/chrome/content/rules/Nearbuysystems.com.xml +++ b/src/chrome/content/rules/Nearbuysystems.com.xml @@ -6,7 +6,7 @@ Fetch error: http://luneta.nearbuysystems.com/ => https://luneta.nearbuysystems. -refused: - (www.) --> - + diff --git a/src/chrome/content/rules/NeatoShop.xml b/src/chrome/content/rules/NeatoShop.xml index 625abda2846c..6478b25ece2f 100644 --- a/src/chrome/content/rules/NeatoShop.xml +++ b/src/chrome/content/rules/NeatoShop.xml @@ -5,11 +5,12 @@ - + + - + https://ipv6.nebezi.cz/: (7, '') Other Nebezi.cz rulesets: - DoesNotWork.eu.xml --> - + diff --git a/src/chrome/content/rules/Nebrija.com.xml b/src/chrome/content/rules/Nebrija.com.xml index a9b31c893e93..cbbc8a576104 100644 --- a/src/chrome/content/rules/Nebrija.com.xml +++ b/src/chrome/content/rules/Nebrija.com.xml @@ -13,7 +13,7 @@ Fetch error: http://www.nebrija.com/ => https://www.nebrija.com/: (60, 'SSL cert * mysql.nebrija.com * webmail.nebrija.com --> - + diff --git a/src/chrome/content/rules/Nebula.xml b/src/chrome/content/rules/Nebula.xml index e236d9232cdd..23882f644d50 100644 --- a/src/chrome/content/rules/Nebula.xml +++ b/src/chrome/content/rules/Nebula.xml @@ -10,7 +10,7 @@ Fetch error: http://www.nebula.com/ => https://www.nebula.com/: (7, 'Failed to c - nebula-www.s3.amazonaws.com --> - + diff --git a/src/chrome/content/rules/NecessaryAndProportionate.net.xml b/src/chrome/content/rules/NecessaryAndProportionate.net.xml new file mode 100644 index 000000000000..9004e67ed4ca --- /dev/null +++ b/src/chrome/content/rules/NecessaryAndProportionate.net.xml @@ -0,0 +1,12 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Necessary_and_Proportionate.org.xml b/src/chrome/content/rules/Necessary_and_Proportionate.org.xml deleted file mode 100644 index e14065e92a0a..000000000000 --- a/src/chrome/content/rules/Necessary_and_Proportionate.org.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Neck2Neck.xml b/src/chrome/content/rules/Neck2Neck.xml index b1c64597ca6b..c5f4a836e4e6 100644 --- a/src/chrome/content/rules/Neck2Neck.xml +++ b/src/chrome/content/rules/Neck2Neck.xml @@ -6,4 +6,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Necuhb.xml b/src/chrome/content/rules/Necuhb.xml index c49c9b48fe04..fa653cc71fdb 100644 --- a/src/chrome/content/rules/Necuhb.xml +++ b/src/chrome/content/rules/Necuhb.xml @@ -1,12 +1,12 @@ - + - - - - + diff --git a/src/chrome/content/rules/NedLinux.com.xml b/src/chrome/content/rules/NedLinux.com.xml deleted file mode 100644 index dc10ade2d433..000000000000 --- a/src/chrome/content/rules/NedLinux.com.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Nederland.xml b/src/chrome/content/rules/Nederland.xml index 970da6971995..357eb72046e8 100644 --- a/src/chrome/content/rules/Nederland.xml +++ b/src/chrome/content/rules/Nederland.xml @@ -97,7 +97,7 @@ Fetch error: http://www.zwijndrecht.nl/ => https://www.zwijndrecht.nl/: (51, "SS * 404 --> - + - + @@ -22,4 +22,4 @@ Fetch error: http://negotiatingsalary.com/ => https://negotiatingsalary.com/: To - \ No newline at end of file + diff --git a/src/chrome/content/rules/Neil.brown.name.xml b/src/chrome/content/rules/Neil.brown.name.xml new file mode 100644 index 000000000000..023f242b8fc3 --- /dev/null +++ b/src/chrome/content/rules/Neil.brown.name.xml @@ -0,0 +1,31 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Neis-One.org.xml b/src/chrome/content/rules/Neis-One.org.xml new file mode 100644 index 000000000000..07491add0043 --- /dev/null +++ b/src/chrome/content/rules/Neis-One.org.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Neis-One.org_mixedcontent.xml b/src/chrome/content/rules/Neis-One.org_mixedcontent.xml new file mode 100644 index 000000000000..0e68cc40a21e --- /dev/null +++ b/src/chrome/content/rules/Neis-One.org_mixedcontent.xml @@ -0,0 +1,9 @@ + + + + + + + diff --git a/src/chrome/content/rules/Nelonen.fi-mixedvideo.xml b/src/chrome/content/rules/Nelonen.fi-mixedvideo.xml deleted file mode 100644 index dc5c18af7ce3..000000000000 --- a/src/chrome/content/rules/Nelonen.fi-mixedvideo.xml +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Nelonen.fi.xml b/src/chrome/content/rules/Nelonen.fi.xml index 959237967b42..e5bd1acb1f13 100644 --- a/src/chrome/content/rules/Nelonen.fi.xml +++ b/src/chrome/content/rules/Nelonen.fi.xml @@ -1,108 +1,16 @@ - - + - - - - - - - - - - - - - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Nelonenmedia.fi.xml b/src/chrome/content/rules/Nelonenmedia.fi.xml index 59614492d963..c3210d3e9556 100644 --- a/src/chrome/content/rules/Nelonenmedia.fi.xml +++ b/src/chrome/content/rules/Nelonenmedia.fi.xml @@ -19,7 +19,8 @@ --> - + + @@ -29,7 +30,6 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/NemID.xml b/src/chrome/content/rules/NemID.xml index 57fd495da080..9ee7eabefed8 100644 --- a/src/chrome/content/rules/NemID.xml +++ b/src/chrome/content/rules/NemID.xml @@ -18,7 +18,7 @@ - + diff --git a/src/chrome/content/rules/NemLog-in.dk.xml b/src/chrome/content/rules/NemLog-in.dk.xml index bd53bd00fe72..60943e8ed234 100644 --- a/src/chrome/content/rules/NemLog-in.dk.xml +++ b/src/chrome/content/rules/NemLog-in.dk.xml @@ -21,7 +21,7 @@ --> - + https://neo-interactive.hu/: Too many Disabled by https-everywhere-checker because: Fetch error: http://neo-interactive.hu/ => https://neo-interactive.hu/: Cycle detected - URL already encountered: https://neo-interactive.hu/ --> - + diff --git a/src/chrome/content/rules/NeoSmart.com.xml b/src/chrome/content/rules/NeoSmart.com.xml index 8e1635cd9faf..f6b9f5592cf3 100644 --- a/src/chrome/content/rules/NeoSmart.com.xml +++ b/src/chrome/content/rules/NeoSmart.com.xml @@ -16,7 +16,8 @@ - + + @@ -25,7 +26,6 @@ - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/NeonMob.com.xml b/src/chrome/content/rules/NeonMob.com.xml index 41ae0a06467c..4e0f603c44ef 100644 --- a/src/chrome/content/rules/NeonMob.com.xml +++ b/src/chrome/content/rules/NeonMob.com.xml @@ -10,7 +10,7 @@ - + diff --git a/src/chrome/content/rules/Neos.io.xml b/src/chrome/content/rules/Neos.io.xml index c52b0a0178aa..82b255e6e69e 100644 --- a/src/chrome/content/rules/Neos.io.xml +++ b/src/chrome/content/rules/Neos.io.xml @@ -24,7 +24,7 @@ Fetch error: http://jira.neos.io/ => https://jira.neos.io/: (28, 'Connection tim - translate.neos.io --> - + diff --git a/src/chrome/content/rules/Neoseeker.xml b/src/chrome/content/rules/Neoseeker.xml index c9d558985902..443633810ddc 100644 --- a/src/chrome/content/rules/Neoseeker.xml +++ b/src/chrome/content/rules/Neoseeker.xml @@ -29,7 +29,7 @@ Fetch error: http://neoseeker.com/ => https://neoseeker.com/: (60, 'SSL certific - cdn.staticneo.com --> - + diff --git a/src/chrome/content/rules/Neowin.net.xml b/src/chrome/content/rules/Neowin.net.xml deleted file mode 100644 index cf954c90a08e..000000000000 --- a/src/chrome/content/rules/Neowin.net.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Nerds_Nook.com.xml b/src/chrome/content/rules/Nerds_Nook.com.xml index 2aeabf3fbc1b..5b47472b3524 100644 --- a/src/chrome/content/rules/Nerds_Nook.com.xml +++ b/src/chrome/content/rules/Nerds_Nook.com.xml @@ -9,7 +9,7 @@ Fetch error: http://www.nerdsnook.com/ => https://www.nerdsnook.com/: (60, 'SSL - .nerdsnook.com --> - + diff --git a/src/chrome/content/rules/Nerf_NOW.xml b/src/chrome/content/rules/Nerf_NOW.xml index 2e4822980bb1..6b31e68bde43 100644 --- a/src/chrome/content/rules/Nerf_NOW.xml +++ b/src/chrome/content/rules/Nerf_NOW.xml @@ -6,4 +6,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Nero.xml b/src/chrome/content/rules/Nero.xml deleted file mode 100644 index bc6264cc05b2..000000000000 --- a/src/chrome/content/rules/Nero.xml +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Nervous.io.xml b/src/chrome/content/rules/Nervous.io.xml deleted file mode 100644 index 13e2347b55f6..000000000000 --- a/src/chrome/content/rules/Nervous.io.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Nervous_Systems.org.xml b/src/chrome/content/rules/Nervous_Systems.org.xml index 0e7a78b86cc6..2699ba389544 100644 --- a/src/chrome/content/rules/Nervous_Systems.org.xml +++ b/src/chrome/content/rules/Nervous_Systems.org.xml @@ -4,7 +4,7 @@ - + - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Net-A-Porter.com.xml b/src/chrome/content/rules/Net-A-Porter.com.xml index 3aad7beeb9f1..6a9665226a3a 100644 --- a/src/chrome/content/rules/Net-A-Porter.com.xml +++ b/src/chrome/content/rules/Net-A-Porter.com.xml @@ -26,7 +26,7 @@ Fetch error: http://fashionfix.net-a-porter.com/ => https://fashionfix.net-a-por ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -50,7 +50,7 @@ Fetch error: http://fashionfix.net-a-porter.com/ => https://fashionfix.net-a-por - + - + https://net-backup.com/: (51, "SSL: no alternative certificate subject name matches target host name 'net-backup.com'") -Fetch error: http://www.net-backup.com/ => https://www.net-backup.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.net-backup.com'") - - For other Rose Web Services coverage, see RoseHosting.com.xml. - - - Mixed content: - - - Image on (www.)? from wwp.icq.com * - - * Secured by us - ---> - - - - - - - - - diff --git a/src/chrome/content/rules/Net-Dynamics.xml b/src/chrome/content/rules/Net-Dynamics.xml index 1e0ef3d225d8..a93d7320bdaf 100644 --- a/src/chrome/content/rules/Net-Dynamics.xml +++ b/src/chrome/content/rules/Net-Dynamics.xml @@ -10,7 +10,7 @@ - + https://www.net-housting.de/: (51, " - (www.)housting.de (mismatched, CN: *.net-housting.de) --> - + @@ -34,4 +34,4 @@ Fetch error: http://www.net-housting.de/ => https://www.net-housting.de/: (51, " - \ No newline at end of file + diff --git a/src/chrome/content/rules/Net-Results.xml b/src/chrome/content/rules/Net-Results.xml index c52771005d7b..d9f347663eaa 100644 --- a/src/chrome/content/rules/Net-Results.xml +++ b/src/chrome/content/rules/Net-Results.xml @@ -8,23 +8,15 @@ - + + - - + --> - + - - - - - \ No newline at end of file + diff --git a/src/chrome/content/rules/Net-dns.org.xml b/src/chrome/content/rules/Net-dns.org.xml new file mode 100644 index 000000000000..796fa6b2f812 --- /dev/null +++ b/src/chrome/content/rules/Net-dns.org.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Net-metrix.ch.xml b/src/chrome/content/rules/Net-metrix.ch.xml new file mode 100644 index 000000000000..f3306592b452 --- /dev/null +++ b/src/chrome/content/rules/Net-metrix.ch.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/NetApp.xml b/src/chrome/content/rules/NetApp.xml index 5e0dbfc70bbb..b29cebd1dc01 100644 --- a/src/chrome/content/rules/NetApp.xml +++ b/src/chrome/content/rules/NetApp.xml @@ -72,7 +72,7 @@ Fetch error: http://tech.netapp.com/ => https://tech.netapp.com/: (51, "SSL: no * Secured by us --> - + diff --git a/src/chrome/content/rules/NetBSD.xml b/src/chrome/content/rules/NetBSD.xml index 409f70617ff2..444a94119fcb 100644 --- a/src/chrome/content/rules/NetBSD.xml +++ b/src/chrome/content/rules/NetBSD.xml @@ -2,42 +2,27 @@ Nonfunctional hosts in *netbsd.org: - cvsweb ¹ - - ftp ² - www.jp ¹ - man ² - - nxr ² - - nyftp ¹ ¹ Dropped ² Refused - - - Mixed content: - - - Mixed css on mail-index from www.google.com ¹ ³ - - - Images, on: - - - blog from ftp ² - - mail-index, www from www ¹ - - ¹ Secured by us - ² Unsecurable <= refused - ³ Trivial - --> + + + + - - + - - + + + + + + + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - + diff --git a/src/chrome/content/rules/NetBet.xml b/src/chrome/content/rules/NetBet.xml index 55f661897fcf..1ded0396c07b 100644 --- a/src/chrome/content/rules/NetBet.xml +++ b/src/chrome/content/rules/NetBet.xml @@ -5,7 +5,7 @@ Fetch error: http://betnet.fr/ => https://betnet.fr/: (7, 'Failed to connect to Fetch error: http://www.betnet.fr/ => https://www.betnet.fr/: (7, 'Failed to connect to www.betnet.fr port 443: Connection refused') --> - + diff --git a/src/chrome/content/rules/NetClean.com.xml b/src/chrome/content/rules/NetClean.com.xml index b80fdf8544a0..ce727c48babc 100644 --- a/src/chrome/content/rules/NetClean.com.xml +++ b/src/chrome/content/rules/NetClean.com.xml @@ -20,7 +20,7 @@ Fetch error: http://netclean.com/ => https://netclean.com/: (28, 'Connection tim ² Not secured by us <= mismatched --> - + diff --git a/src/chrome/content/rules/NetCologne.xml b/src/chrome/content/rules/NetCologne.xml index 8c1c0d81859f..c15df6dc6ccf 100644 --- a/src/chrome/content/rules/NetCologne.xml +++ b/src/chrome/content/rules/NetCologne.xml @@ -1,60 +1,103 @@ - - - + - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/NetDNA.xml b/src/chrome/content/rules/NetDNA.xml index cf623e42fd94..0ef9e24de297 100644 --- a/src/chrome/content/rules/NetDNA.xml +++ b/src/chrome/content/rules/NetDNA.xml @@ -42,7 +42,7 @@ Fetch error: http://hddn.com/ => https://hddn.com/: (51, "SSL: no alternative ce ʰ WP Engine / redirects to http --> - + @@ -65,8 +65,8 @@ Fetch error: http://hddn.com/ => https://hddn.com/: (51, "SSL: no alternative ce - - + + + + @@ -65,7 +67,7 @@ - + diff --git a/src/chrome/content/rules/NetEase.im.xml b/src/chrome/content/rules/NetEase.im.xml index 49a208a97043..54c0b674a608 100644 --- a/src/chrome/content/rules/NetEase.im.xml +++ b/src/chrome/content/rules/NetEase.im.xml @@ -17,7 +17,7 @@ - + diff --git a/src/chrome/content/rules/NetFronts-mismatches.xml b/src/chrome/content/rules/NetFronts-mismatches.xml index 32dc73e106eb..7c3f777cba94 100644 --- a/src/chrome/content/rules/NetFronts-mismatches.xml +++ b/src/chrome/content/rules/NetFronts-mismatches.xml @@ -6,10 +6,11 @@ - + + - + https://hosting-advantage.com/: (6 - (www.)web-hsoting.com (ditto) --> - + - + + + + + + + + + + + + diff --git a/src/chrome/content/rules/NetMarketShare.xml b/src/chrome/content/rules/NetMarketShare.xml index 18307cf61511..8fabc5e1000d 100644 --- a/src/chrome/content/rules/NetMarketShare.xml +++ b/src/chrome/content/rules/NetMarketShare.xml @@ -8,7 +8,7 @@ --> - + - - - + + @@ -38,8 +37,8 @@ - - + + - + diff --git a/src/chrome/content/rules/NetMile.co.jp.xml b/src/chrome/content/rules/NetMile.co.jp.xml index 9370c6e28268..90da3a79dfe9 100644 --- a/src/chrome/content/rules/NetMile.co.jp.xml +++ b/src/chrome/content/rules/NetMile.co.jp.xml @@ -8,7 +8,7 @@ Fetch error: http://www.netmile.co.jp/ => https://www.netmile.co.jp/: (28, 'Oper ^netmile.co.jp doesn't exist. --> - + @@ -18,7 +18,6 @@ Fetch error: http://www.netmile.co.jp/ => https://www.netmile.co.jp/: (28, 'Oper - + diff --git a/src/chrome/content/rules/NetNow.co.xml b/src/chrome/content/rules/NetNow.co.xml deleted file mode 100644 index 999f079da0f7..000000000000 --- a/src/chrome/content/rules/NetNow.co.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/NetPR.xml b/src/chrome/content/rules/NetPR.xml index 812012ce8326..18553f0858d3 100644 --- a/src/chrome/content/rules/NetPR.xml +++ b/src/chrome/content/rules/NetPR.xml @@ -10,7 +10,7 @@ - + diff --git a/src/chrome/content/rules/NetSeer.xml b/src/chrome/content/rules/NetSeer.xml deleted file mode 100644 index 0ba558c7e298..000000000000 --- a/src/chrome/content/rules/NetSeer.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/NetShelter.xml b/src/chrome/content/rules/NetShelter.xml index 30da2884d5d5..556e7202b3e8 100644 --- a/src/chrome/content/rules/NetShelter.xml +++ b/src/chrome/content/rules/NetShelter.xml @@ -17,7 +17,7 @@ Fetch error: http://ad.netshelter.net/ => https://ad.netshelter.net/: (6, 'Could - (www.)netshelter.net --> - + diff --git a/src/chrome/content/rules/NetWorks_Group.com.xml b/src/chrome/content/rules/NetWorks_Group.com.xml deleted file mode 100644 index 5ffc760b55a9..000000000000 --- a/src/chrome/content/rules/NetWorks_Group.com.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Net_Index.xml b/src/chrome/content/rules/Net_Index.xml index 9aa7f82c85e1..f9aeccc0e42d 100644 --- a/src/chrome/content/rules/Net_Index.xml +++ b/src/chrome/content/rules/Net_Index.xml @@ -11,10 +11,11 @@ - + + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Net_Mobile.xml b/src/chrome/content/rules/Net_Mobile.xml index 03fc9023c355..24c8bfdb478c 100644 --- a/src/chrome/content/rules/Net_Mobile.xml +++ b/src/chrome/content/rules/Net_Mobile.xml @@ -5,4 +5,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Net_Mundial.net.xml b/src/chrome/content/rules/Net_Mundial.net.xml index 4d8b93955a21..390f7a8cd39e 100644 --- a/src/chrome/content/rules/Net_Mundial.net.xml +++ b/src/chrome/content/rules/Net_Mundial.net.xml @@ -12,7 +12,7 @@ Fetch error: http://netmundial.net/ => https://netmundial.net/: (6, 'Could not r Fetch error: http://www.netmundial.net/ => https://www.netmundial.net/: (6, 'Could not resolve host: www.netmundial.net') --> - + diff --git a/src/chrome/content/rules/Net_Nanny.xml b/src/chrome/content/rules/Net_Nanny.xml index 2e60c1edf46b..1bdba99aba7f 100644 --- a/src/chrome/content/rules/Net_Nanny.xml +++ b/src/chrome/content/rules/Net_Nanny.xml @@ -18,7 +18,7 @@ - + https://netcloude.cz/: (60, 'SSL certificat Fetch error: http://www.netcloude.cz/ => https://www.netcloude.cz/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/Netdev01.org.xml b/src/chrome/content/rules/Netdev01.org.xml index 97cf458c6f63..39e1f0aab3cb 100644 --- a/src/chrome/content/rules/Netdev01.org.xml +++ b/src/chrome/content/rules/Netdev01.org.xml @@ -4,7 +4,7 @@ - + - + https://www.netelligent.ca/: (60, 'SS * Secured by us --> - + - + - + - + - - - - - - - - - - - - - + - - - - - - - diff --git a/src/chrome/content/rules/Netfirms.xml b/src/chrome/content/rules/Netfirms.xml index 589d76f5e425..92fcb634dda7 100644 --- a/src/chrome/content/rules/Netfirms.xml +++ b/src/chrome/content/rules/Netfirms.xml @@ -1,13 +1,15 @@ - + + + + - + - + diff --git a/src/chrome/content/rules/Netflame.cc.xml b/src/chrome/content/rules/Netflame.cc.xml index 72bc664827b8..52dd9676f31c 100644 --- a/src/chrome/content/rules/Netflame.cc.xml +++ b/src/chrome/content/rules/Netflame.cc.xml @@ -20,7 +20,7 @@ Fetch error: http://ssl-hints.netflame.cc/ => https://ssl-hints.netflame.cc/: (5 - fcR --> - + diff --git a/src/chrome/content/rules/Netfox.ru.xml b/src/chrome/content/rules/Netfox.ru.xml index 87438a5d60e4..13dd4e9f73f9 100644 --- a/src/chrome/content/rules/Netfox.ru.xml +++ b/src/chrome/content/rules/Netfox.ru.xml @@ -3,7 +3,7 @@ - + diff --git a/src/chrome/content/rules/Netgear.xml b/src/chrome/content/rules/Netgear.xml index ce0d5a1f919c..37727288a87a 100644 --- a/src/chrome/content/rules/Netgear.xml +++ b/src/chrome/content/rules/Netgear.xml @@ -1,35 +1,23 @@ - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Netguava.xml b/src/chrome/content/rules/Netguava.xml index 4870a77e4e5e..4d85b2ccaca9 100644 --- a/src/chrome/content/rules/Netguava.xml +++ b/src/chrome/content/rules/Netguava.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Nether.xml b/src/chrome/content/rules/Nether.xml index 4bfc74b873b6..183b0315a680 100644 --- a/src/chrome/content/rules/Nether.xml +++ b/src/chrome/content/rules/Nether.xml @@ -1,7 +1,7 @@ - + diff --git a/src/chrome/content/rules/Netim.com.xml b/src/chrome/content/rules/Netim.com.xml index 0cadc857d764..dcc2a05fc44b 100644 --- a/src/chrome/content/rules/Netim.com.xml +++ b/src/chrome/content/rules/Netim.com.xml @@ -1,5 +1,15 @@ + - + + + - + + + diff --git a/src/chrome/content/rules/Netistrar.com.xml b/src/chrome/content/rules/Netistrar.com.xml index c7758175a00b..0fba07c9d74e 100644 --- a/src/chrome/content/rules/Netistrar.com.xml +++ b/src/chrome/content/rules/Netistrar.com.xml @@ -22,7 +22,7 @@ Fetch error: http://secure.netistrar.com/ => https://secure.netistrar.com/: (7, - www.netistrar.com --> - + diff --git a/src/chrome/content/rules/Netlib.org.xml b/src/chrome/content/rules/Netlib.org.xml new file mode 100644 index 000000000000..29b615659786 --- /dev/null +++ b/src/chrome/content/rules/Netlib.org.xml @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Netlify.com.xml b/src/chrome/content/rules/Netlify.com.xml deleted file mode 100644 index db2ce76a1a5f..000000000000 --- a/src/chrome/content/rules/Netlify.com.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Netline.com.xml b/src/chrome/content/rules/Netline.com.xml deleted file mode 100644 index 484b52f3ff63..000000000000 --- a/src/chrome/content/rules/Netline.com.xml +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Netload.xml b/src/chrome/content/rules/Netload.xml index 8a02344a8ec3..4403f2573a15 100644 --- a/src/chrome/content/rules/Netload.xml +++ b/src/chrome/content/rules/Netload.xml @@ -5,7 +5,7 @@ Fetch error: http://netload.in/ => https://netload.in/: (6, 'Could not resolve h Fetch error: http://www.netload.in/ => https://www.netload.in/: (6, 'Could not resolve host: www.netload.in') --> - + diff --git a/src/chrome/content/rules/Netmarble.xml b/src/chrome/content/rules/Netmarble.xml index 17e44f0e1a73..6dc13a48d0fd 100644 --- a/src/chrome/content/rules/Netmarble.xml +++ b/src/chrome/content/rules/Netmarble.xml @@ -49,7 +49,14 @@ - + + + + + + + + @@ -58,10 +65,9 @@ - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Netmeister.org.xml b/src/chrome/content/rules/Netmeister.org.xml deleted file mode 100644 index 9fc537b90e40..000000000000 --- a/src/chrome/content/rules/Netmeister.org.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Netnea.com.xml b/src/chrome/content/rules/Netnea.com.xml deleted file mode 100644 index fe341bd491d9..000000000000 --- a/src/chrome/content/rules/Netnea.com.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Netnod.se.xml b/src/chrome/content/rules/Netnod.se.xml index 2ba1a08d5104..ae4cb995612d 100644 --- a/src/chrome/content/rules/Netnod.se.xml +++ b/src/chrome/content/rules/Netnod.se.xml @@ -12,7 +12,7 @@ - + - - - - - - - - diff --git a/src/chrome/content/rules/Netscape.com.xml b/src/chrome/content/rules/Netscape.com.xml index 7a5b27d16df4..e391d6f5e548 100644 --- a/src/chrome/content/rules/Netscape.com.xml +++ b/src/chrome/content/rules/Netscape.com.xml @@ -8,7 +8,7 @@ Fetch error: http://www.netscape.com/ => https://netscape.aol.com/: (7, 'Failed For other AOL coverage, see AOL.xml. --> - + diff --git a/src/chrome/content/rules/Netsekure.org.xml b/src/chrome/content/rules/Netsekure.org.xml index 634999c03b0d..a98b9019bf34 100644 --- a/src/chrome/content/rules/Netsekure.org.xml +++ b/src/chrome/content/rules/Netsekure.org.xml @@ -14,7 +14,7 @@ Fetch error: http://netsekure.org/ => https://netsekure.org/: (60, 'SSL certific * Secured by us --> - + diff --git a/src/chrome/content/rules/Netsparker.com.xml b/src/chrome/content/rules/Netsparker.com.xml deleted file mode 100644 index f04b4aa8a242..000000000000 --- a/src/chrome/content/rules/Netsparker.com.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Netswarm.net.xml b/src/chrome/content/rules/Netswarm.net.xml index 12a3fee6c80b..b8ba9ed89b09 100644 --- a/src/chrome/content/rules/Netswarm.net.xml +++ b/src/chrome/content/rules/Netswarm.net.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Nettica.xml b/src/chrome/content/rules/Nettica.xml index 158d22ef16f4..e34297a6c445 100644 --- a/src/chrome/content/rules/Nettica.xml +++ b/src/chrome/content/rules/Nettica.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://nettica.com/ => https://www.nettica.com/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/Nettitude.co.uk.xml b/src/chrome/content/rules/Nettitude.co.uk.xml deleted file mode 100644 index bcd0c313300f..000000000000 --- a/src/chrome/content/rules/Nettitude.co.uk.xml +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Nettitude.com.xml b/src/chrome/content/rules/Nettitude.com.xml deleted file mode 100644 index 8e7c38d116a9..000000000000 --- a/src/chrome/content/rules/Nettitude.com.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Nettog.dk.xml b/src/chrome/content/rules/Nettog.dk.xml new file mode 100644 index 000000000000..b27770d96335 --- /dev/null +++ b/src/chrome/content/rules/Nettog.dk.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Netverify.xml b/src/chrome/content/rules/Netverify.xml index 2515da4b70cd..bd022954829b 100644 --- a/src/chrome/content/rules/Netverify.xml +++ b/src/chrome/content/rules/Netverify.xml @@ -14,4 +14,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Netviewer.com.xml b/src/chrome/content/rules/Netviewer.com.xml index fc8949fbfd10..dc6399fa4b34 100644 --- a/src/chrome/content/rules/Netviewer.com.xml +++ b/src/chrome/content/rules/Netviewer.com.xml @@ -12,7 +12,7 @@ Fetch error: http://my.netviewer.com/ => https://my.netviewer.com/: (28, 'Connec - www.netviewer.com --> - + @@ -25,7 +25,7 @@ Fetch error: http://my.netviewer.com/ => https://my.netviewer.com/: (28, 'Connec --> - + - + + + + - - - - - - - - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Network-Solutions.xml b/src/chrome/content/rules/Network-Solutions.xml index 4862beeade90..a9de0d60c11e 100644 --- a/src/chrome/content/rules/Network-Solutions.xml +++ b/src/chrome/content/rules/Network-Solutions.xml @@ -46,7 +46,7 @@ - + - + - + diff --git a/src/chrome/content/rules/NetworkWorld.xml b/src/chrome/content/rules/NetworkWorld.xml index 7ac34571a173..a1c6ea5e10d6 100644 --- a/src/chrome/content/rules/NetworkWorld.xml +++ b/src/chrome/content/rules/NetworkWorld.xml @@ -61,15 +61,17 @@ Fetch error: http://subscribenww.com/ => https://subscribenww.com/: (60, 'SSL ce * Secured by us --> - + - + + + - + - + - + @@ -22,4 +22,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Network_Maker.xml b/src/chrome/content/rules/Network_Maker.xml deleted file mode 100644 index 69703b2322c2..000000000000 --- a/src/chrome/content/rules/Network_Maker.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/NetworkedBlogs.xml b/src/chrome/content/rules/NetworkedBlogs.xml index 050ef19e3e33..131a0c2197dc 100644 --- a/src/chrome/content/rules/NetworkedBlogs.xml +++ b/src/chrome/content/rules/NetworkedBlogs.xml @@ -15,7 +15,8 @@ - + + diff --git a/src/chrome/content/rules/Networkhm.com.xml b/src/chrome/content/rules/Networkhm.com.xml deleted file mode 100644 index 92053901014c..000000000000 --- a/src/chrome/content/rules/Networkhm.com.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Networking4all.com.xml b/src/chrome/content/rules/Networking4all.com.xml deleted file mode 100644 index a712b4ddce30..000000000000 --- a/src/chrome/content/rules/Networking4all.com.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Netzguerilla.net.xml b/src/chrome/content/rules/Netzguerilla.net.xml index 9a37ce4d2dbb..2afff47a1830 100644 --- a/src/chrome/content/rules/Netzguerilla.net.xml +++ b/src/chrome/content/rules/Netzguerilla.net.xml @@ -5,7 +5,9 @@ - + + + - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Netzpolitik.xml b/src/chrome/content/rules/Netzpolitik.xml index f71baa6dff2f..d8233407b70c 100644 --- a/src/chrome/content/rules/Netzpolitik.xml +++ b/src/chrome/content/rules/Netzpolitik.xml @@ -1,10 +1,30 @@ + - + + + + + + + + + + + + + - diff --git a/src/chrome/content/rules/Netztaucher.xml b/src/chrome/content/rules/Netztaucher.xml index 30feca433237..98a93d368feb 100644 --- a/src/chrome/content/rules/Netztaucher.xml +++ b/src/chrome/content/rules/Netztaucher.xml @@ -30,7 +30,7 @@ --> - + https://registry.neustar.biz/: (60, - NPAC.com.xml - Neustar_Localeze.biz.xml - Neuweb.biz.xml - - TCPA_Compliance.us.xml - UltraDNS.xml - - UltraDNS.com.xml - Webmetrics.com.xml - Neustar.com.xml - UltraTools.com.xml @@ -77,7 +75,7 @@ Fetch error: http://registry.neustar.biz/ => https://registry.neustar.biz/: (60, - static.wpm.neustar.biz --> - + @@ -123,7 +121,7 @@ Fetch error: http://registry.neustar.biz/ => https://registry.neustar.biz/: (60, - + https://ads.neudesicmediagrou Disabled by https-everywhere-checker because: Fetch error: http://ads.neudesicmediagroup.com/ => https://ads.neudesicmediagroup.com/: (28, 'Connection timed out after 10001 milliseconds') --> - + - - + - + - + diff --git a/src/chrome/content/rules/Neustar.com.xml b/src/chrome/content/rules/Neustar.com.xml index 06eb0609e525..9c7e89a52a83 100644 --- a/src/chrome/content/rules/Neustar.com.xml +++ b/src/chrome/content/rules/Neustar.com.xml @@ -12,14 +12,14 @@ Fetch error: http://payment.neustar.com/ => https://payment.neustar.com/: (51, " For other NeuStar coverage, see NeuStar.xml. --> - + - + - + diff --git a/src/chrome/content/rules/NeverDDoS.com.xml b/src/chrome/content/rules/NeverDDoS.com.xml deleted file mode 100644 index c4ec4b02c9c9..000000000000 --- a/src/chrome/content/rules/NeverDDoS.com.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Nevill_Holt_Opera.xml b/src/chrome/content/rules/Nevill_Holt_Opera.xml index 10dbbe0cd668..ce0bb40c5f04 100644 --- a/src/chrome/content/rules/Nevill_Holt_Opera.xml +++ b/src/chrome/content/rules/Nevill_Holt_Opera.xml @@ -10,10 +10,10 @@ Fetch error: http://nevillholtopera.net/ => https://www.nevillholtopera.net/: (6 - ^ ("Error"; mismatched, CN: *.eurodiet.co.uk) --> - + - + diff --git a/src/chrome/content/rules/Nevistas_Health.com.xml b/src/chrome/content/rules/Nevistas_Health.com.xml index 381a3493756b..41f7c2cfb491 100644 --- a/src/chrome/content/rules/Nevistas_Health.com.xml +++ b/src/chrome/content/rules/Nevistas_Health.com.xml @@ -16,7 +16,7 @@ Fetch error: http://www.nevistashealth.com/ => https://www.nevistashealth.com/: * Secured by us --> - + diff --git a/src/chrome/content/rules/New-Dream-Network.xml b/src/chrome/content/rules/New-Dream-Network.xml index 5c6490a33a36..9eeb77ae804d 100644 --- a/src/chrome/content/rules/New-Dream-Network.xml +++ b/src/chrome/content/rules/New-Dream-Network.xml @@ -8,10 +8,11 @@ Fetch error: http://newdream.net/ => https://newdream.net/: (60, 'SSL certificat - DreamHost.xml --> - + - + + - + https://www.newmoon.com/: (51, "SSL: no alte Fetch error: http://www.newmoon.com/ => https://www.newmoon.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.newmoon.com'") --> - + diff --git a/src/chrome/content/rules/New-Relic.xml b/src/chrome/content/rules/New-Relic.xml index cdaa9977ba80..75a13e9f2cba 100644 --- a/src/chrome/content/rules/New-Relic.xml +++ b/src/chrome/content/rules/New-Relic.xml @@ -85,7 +85,7 @@ - + https://a856-citystore.nyc.gov/: - portal/site/nycgov/menuitem.beb0d8fdaa9e1607a62fa24601c789a0/ --> - + @@ -119,7 +119,7 @@ Fetch error: http://a856-citystore.nyc.gov/ => https://a856-citystore.nyc.gov/: - + - + diff --git a/src/chrome/content/rules/New-York-University.xml b/src/chrome/content/rules/New-York-University.xml index b8151219e51d..b7c42491c26f 100644 --- a/src/chrome/content/rules/New-York-University.xml +++ b/src/chrome/content/rules/New-York-University.xml @@ -100,7 +100,42 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -128,11 +163,9 @@ Not handled here in case they're used on unsecurable pages. --> - + - @@ -145,7 +178,6 @@ - + diff --git a/src/chrome/content/rules/NewIT.xml b/src/chrome/content/rules/NewIT.xml index ed05168c9119..67aefa673adf 100644 --- a/src/chrome/content/rules/NewIT.xml +++ b/src/chrome/content/rules/NewIT.xml @@ -2,7 +2,7 @@ - + diff --git a/src/chrome/content/rules/NewInt.org.xml b/src/chrome/content/rules/NewInt.org.xml index bc747ee3a6d0..582ce646de38 100644 --- a/src/chrome/content/rules/NewInt.org.xml +++ b/src/chrome/content/rules/NewInt.org.xml @@ -42,7 +42,7 @@ - + + + + + + diff --git a/src/chrome/content/rules/NewIzv.ru.xml b/src/chrome/content/rules/NewIzv.ru.xml deleted file mode 100644 index b2b02c02ec0b..000000000000 --- a/src/chrome/content/rules/NewIzv.ru.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/NewScientist.com.xml b/src/chrome/content/rules/NewScientist.com.xml index ba6c5e3e6822..66db79b348e0 100644 --- a/src/chrome/content/rules/NewScientist.com.xml +++ b/src/chrome/content/rules/NewScientist.com.xml @@ -54,7 +54,7 @@ - + https://www.newscienti For other NewScientist coverage, see NewScientist.com.xml. --> - + diff --git a/src/chrome/content/rules/NewYorkVocalCoaching.xml b/src/chrome/content/rules/NewYorkVocalCoaching.xml index a1c356667b76..fe3ccbd80ab4 100644 --- a/src/chrome/content/rules/NewYorkVocalCoaching.xml +++ b/src/chrome/content/rules/NewYorkVocalCoaching.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.theapp.voicelessonstotheworld.com/ => https://www.theapp.voicelessonstotheworld.com/: (6, 'Could not resolve host: www.theapp.voicelessonstotheworld.com') --> - + diff --git a/src/chrome/content/rules/New_Climate_for_Peace.org.xml b/src/chrome/content/rules/New_Climate_for_Peace.org.xml index 35bf09413c00..8610fb0819fb 100644 --- a/src/chrome/content/rules/New_Climate_for_Peace.org.xml +++ b/src/chrome/content/rules/New_Climate_for_Peace.org.xml @@ -8,7 +8,7 @@ - + - + + + diff --git a/src/chrome/content/rules/New_Flag.xml b/src/chrome/content/rules/New_Flag.xml deleted file mode 100644 index 0872098e4f9c..000000000000 --- a/src/chrome/content/rules/New_Flag.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/New_Republic.com-problematic.xml b/src/chrome/content/rules/New_Republic.com-problematic.xml index 120ff08ee711..a45a4efc2f08 100644 --- a/src/chrome/content/rules/New_Republic.com-problematic.xml +++ b/src/chrome/content/rules/New_Republic.com-problematic.xml @@ -8,7 +8,7 @@ - + - + https://www.newyorkneedsyou.org/ * Secured by us --> - + diff --git a/src/chrome/content/rules/Newcastle.gov.uk.xml b/src/chrome/content/rules/Newcastle.gov.uk.xml index fbf53bfd9eec..0e755032017e 100644 --- a/src/chrome/content/rules/Newcastle.gov.uk.xml +++ b/src/chrome/content/rules/Newcastle.gov.uk.xml @@ -1,92 +1,27 @@ - - - - - + - + + - - - - - - - - - - - - - - - - - - - - - - - - + diff --git a/src/chrome/content/rules/Newegg.com.xml b/src/chrome/content/rules/Newegg.com.xml index 4b23dfb2efab..88a64cf08ef7 100644 --- a/src/chrome/content/rules/Newegg.com.xml +++ b/src/chrome/content/rules/Newegg.com.xml @@ -141,7 +141,7 @@ - + diff --git a/src/chrome/content/rules/Newgrounds.com.xml b/src/chrome/content/rules/Newgrounds.com.xml new file mode 100644 index 000000000000..f837382972b6 --- /dev/null +++ b/src/chrome/content/rules/Newgrounds.com.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Newgrounds.xml b/src/chrome/content/rules/Newgrounds.xml deleted file mode 100644 index 547341b629a1..000000000000 --- a/src/chrome/content/rules/Newgrounds.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Newport_Motorsports.xml b/src/chrome/content/rules/Newport_Motorsports.xml index ccaef90f8dc8..55dd0354ab9b 100644 --- a/src/chrome/content/rules/Newport_Motorsports.xml +++ b/src/chrome/content/rules/Newport_Motorsports.xml @@ -7,15 +7,15 @@ Fetch error: http://www.newportmotorsports.com/ => https://www.newportmotorsport Disabled by https-everywhere-checker because: Fetch error: http://newportmotorsports.com/ => https://newportmotorsports.com/: (51, "SSL: no alternative certificate subject name matches target host name 'newportmotorsports.com'") --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/News-Corporation-mismatches.xml b/src/chrome/content/rules/News-Corporation-mismatches.xml index 16755d26dda7..e312feb41152 100644 --- a/src/chrome/content/rules/News-Corporation-mismatches.xml +++ b/src/chrome/content/rules/News-Corporation-mismatches.xml @@ -8,61 +8,26 @@ (www.)edgesuite.net/404.fox(business|news).com/ --> + - - - - + - - - - - - - - - - - - - - - - - - - - - - - + diff --git a/src/chrome/content/rules/News-Corporation.xml b/src/chrome/content/rules/News-Corporation.xml deleted file mode 100644 index ce2fd3c59571..000000000000 --- a/src/chrome/content/rules/News-Corporation.xml +++ /dev/null @@ -1,105 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/News-Gazette.xml b/src/chrome/content/rules/News-Gazette.xml index d0145568d3a8..ee32e8defbb1 100644 --- a/src/chrome/content/rules/News-Gazette.xml +++ b/src/chrome/content/rules/News-Gazette.xml @@ -1,10 +1,20 @@ + + + + + + - + diff --git a/src/chrome/content/rules/News-Limited.xml b/src/chrome/content/rules/News-Limited.xml new file mode 100644 index 000000000000..c9fb31bc8230 --- /dev/null +++ b/src/chrome/content/rules/News-Limited.xml @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/News-Registry.xml b/src/chrome/content/rules/News-Registry.xml index 727b18754b03..d69a196ac90f 100644 --- a/src/chrome/content/rules/News-Registry.xml +++ b/src/chrome/content/rules/News-Registry.xml @@ -18,7 +18,7 @@ Fetch error: http://www.newsregistry.com/ => https://www.newsregistry.com/: (6, - marketing.newsregistry.com (times out) --> - + diff --git a/src/chrome/content/rules/News.com.xml b/src/chrome/content/rules/News.com.xml new file mode 100644 index 000000000000..aea3022a4330 --- /dev/null +++ b/src/chrome/content/rules/News.com.xml @@ -0,0 +1,23 @@ + + + + + + + diff --git a/src/chrome/content/rules/News9daily.org.xml b/src/chrome/content/rules/News9daily.org.xml deleted file mode 100644 index e189c81b5597..000000000000 --- a/src/chrome/content/rules/News9daily.org.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/NewsBlur.com.xml b/src/chrome/content/rules/NewsBlur.com.xml index d1f448d67608..19c50571c086 100644 --- a/src/chrome/content/rules/NewsBlur.com.xml +++ b/src/chrome/content/rules/NewsBlur.com.xml @@ -1,22 +1,17 @@ - + - - - - - + diff --git a/src/chrome/content/rules/NewsCred.com.xml b/src/chrome/content/rules/NewsCred.com.xml index 0508397a065e..ffa63120ce59 100644 --- a/src/chrome/content/rules/NewsCred.com.xml +++ b/src/chrome/content/rules/NewsCred.com.xml @@ -37,7 +37,11 @@ --> - + + + + + https://www.newsdaily.com/: (28, 'Conn * Secured by us --> - + - + https://www.newsgator.com/: (7, 'Failed to connect to www.newsgator.com port 443: Connection refused') Fetch error: http://www.newsgator.com/ => https://www.newsgator.com/: (7, 'Failed to connect to www.newsgator.com port 443: Connection refused') --> - + - + diff --git a/src/chrome/content/rules/NewsLook.xml b/src/chrome/content/rules/NewsLook.xml index bb09bd770340..911e2d0d36f7 100644 --- a/src/chrome/content/rules/NewsLook.xml +++ b/src/chrome/content/rules/NewsLook.xml @@ -1,44 +1,17 @@ - - + - - - - - - - - - - - + + + + + diff --git a/src/chrome/content/rules/NewsNetz.ch.xml b/src/chrome/content/rules/NewsNetz.ch.xml index 08d2809a7e1a..b7abee97a7fc 100644 --- a/src/chrome/content/rules/NewsNetz.ch.xml +++ b/src/chrome/content/rules/NewsNetz.ch.xml @@ -1,4 +1,4 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/NewsWhip-mismatches.xml b/src/chrome/content/rules/NewsWhip-mismatches.xml index aa9ca425d58a..9f8d58113134 100644 --- a/src/chrome/content/rules/NewsWhip-mismatches.xml +++ b/src/chrome/content/rules/NewsWhip-mismatches.xml @@ -11,7 +11,7 @@ - + - + https://mail.newsinc.com/: (6, 'Could not resolve host: mail.newsinc.com') -Fetch error: http://mailfire.newsinc.com/ => https://mailfire.newsinc.com/: (6, 'Could not resolve host: mailfire.newsinc.com') -Fetch error: http://assets.newsinc.com/ => https://s3.amazonaws.com/assets.newsinc.com/: (52, 'Empty reply from server') - - CDN buckets: - - - landing.newsinc.com.s3.amazonaws.com | landing.newsinc.com.edgesuite.net - - - a1742.g1.akamai.net - - - assets.newsinc.com.s3.amazonaws.com | assets.newsinc.com.edgesuite.net - - - a1683.g.akamai.net - - - widget.newsinc.com.s3.amazonaws.com - - - dme-prod-1955759440.us-east-1.elb.amazonaws.com - - - pp-serve - - - dmeserv.newsinc.com.edgesuite.net - - - Nonfunctional subdomains: - - - (www.) * - - control ** - - dashboard ** - - dmeserv (503, akamai) - - pp-serve * - - * Refused - ** Reset - - - Problematic subdomains: - - - assets ¹ - - autodiscover (refused) - - landing ¹ - - widget ³ - - ¹ Works, akamai - ³ amazonaws - - - Fully covered subdomains: - - - assets (→ s3.amazonaws.com) - - autodiscover (→ autodiscover-s.outlook.com) - - embed - - landing (→ s3.amazonaws.com) - - launch - - mail - - mailfire - - widget (→ s3.amazonaws.com) - - - Mixed content: - - - css on embed from assets * - - - Web bugs on embed from pixel.quantcast.com * - - * Secured by us - ---> - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/News_Funnel.xml b/src/chrome/content/rules/News_Funnel.xml index 405b7170f786..1b3b026b60d2 100644 --- a/src/chrome/content/rules/News_Funnel.xml +++ b/src/chrome/content/rules/News_Funnel.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/News_Limited.xml b/src/chrome/content/rules/News_Limited.xml deleted file mode 100644 index 04f30c728ae9..000000000000 --- a/src/chrome/content/rules/News_Limited.xml +++ /dev/null @@ -1,53 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/News_Review.com.xml b/src/chrome/content/rules/News_Review.com.xml index b2bd1741fcbc..183b9ab6007e 100644 --- a/src/chrome/content/rules/News_Review.com.xml +++ b/src/chrome/content/rules/News_Review.com.xml @@ -33,7 +33,7 @@ - + - + + - + diff --git a/src/chrome/content/rules/Newsmax.com.xml b/src/chrome/content/rules/Newsmax.com.xml index dc9afa7de1a4..1fc206788ca4 100644 --- a/src/chrome/content/rules/Newsmax.com.xml +++ b/src/chrome/content/rules/Newsmax.com.xml @@ -39,7 +39,7 @@ - + https://www.newsmaxhealth.com/: (28, ' ^newsmaxhealth.com: Mismatched --> - + @@ -21,7 +21,7 @@ Fetch error: http://newsmaxhealth.com/ => https://www.newsmaxhealth.com/: (28, ' - + - - - - - - - - - - - - diff --git a/src/chrome/content/rules/NewspaperDirect.xml b/src/chrome/content/rules/NewspaperDirect.xml index e927a74eaff7..151ad530a1f0 100644 --- a/src/chrome/content/rules/NewspaperDirect.xml +++ b/src/chrome/content/rules/NewspaperDirect.xml @@ -1,38 +1,17 @@ - - - - - - - - + diff --git a/src/chrome/content/rules/Newstral.com.xml b/src/chrome/content/rules/Newstral.com.xml index cff0fc91130e..bff21ab4901d 100644 --- a/src/chrome/content/rules/Newstral.com.xml +++ b/src/chrome/content/rules/Newstral.com.xml @@ -13,7 +13,7 @@ - + diff --git a/src/chrome/content/rules/Newsvine.com.xml b/src/chrome/content/rules/Newsvine.com.xml index ad5f9a47183a..010b9696e86f 100644 --- a/src/chrome/content/rules/Newsvine.com.xml +++ b/src/chrome/content/rules/Newsvine.com.xml @@ -21,7 +21,7 @@ - .newsvine.com --> - + diff --git a/src/chrome/content/rules/Newyorkcasual.com.xml b/src/chrome/content/rules/Newyorkcasual.com.xml deleted file mode 100644 index ff41a755af42..000000000000 --- a/src/chrome/content/rules/Newyorkcasual.com.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/src/chrome/content/rules/Newzbin.xml b/src/chrome/content/rules/Newzbin.xml index b13f1d3b28c5..b4ca9fb0185d 100644 --- a/src/chrome/content/rules/Newzbin.xml +++ b/src/chrome/content/rules/Newzbin.xml @@ -8,12 +8,12 @@ Disabled by https-everywhere-checker because: Fetch error: http://newzbin.com/ => https://www.newzbin2.es/: (7, 'Failed to connect to www.newzbin2.es port 443: Connection refused') Fetch error: http://newzbin2.es/ => https://www.newzbin2.es/: (7, 'Failed to connect to www.newzbin2.es port 443: Connection refused') --> - + - - + + + - - + diff --git a/src/chrome/content/rules/Newzsec.com.xml b/src/chrome/content/rules/Newzsec.com.xml index d0c82dfd52f8..b4ef776c54cd 100644 --- a/src/chrome/content/rules/Newzsec.com.xml +++ b/src/chrome/content/rules/Newzsec.com.xml @@ -7,7 +7,7 @@ Non-2xx HTTP code: http://www.newzsec.com/ (200) => https://saltysailor.github.i (www.)?newzsec.com: Some paths 404 --> - + diff --git a/src/chrome/content/rules/Nexac.com.xml b/src/chrome/content/rules/Nexac.com.xml index 171ceead6118..49b75516ebec 100644 --- a/src/chrome/content/rules/Nexac.com.xml +++ b/src/chrome/content/rules/Nexac.com.xml @@ -27,7 +27,7 @@ Fetch error: http://nexac.com/ => https://www.datalogix.com/index.php?id=19: Too Web bugs. --> - + @@ -46,4 +46,4 @@ Fetch error: http://nexac.com/ => https://www.datalogix.com/index.php?id=19: Too - \ No newline at end of file + diff --git a/src/chrome/content/rules/Nexaway.xml b/src/chrome/content/rules/Nexaway.xml deleted file mode 100644 index 8924ae2c1d68..000000000000 --- a/src/chrome/content/rules/Nexaway.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Next.xml b/src/chrome/content/rules/Next.xml index 49ec66ea0641..50ace319a712 100644 --- a/src/chrome/content/rules/Next.xml +++ b/src/chrome/content/rules/Next.xml @@ -75,7 +75,7 @@ Fetch error: http://m.next.co.uk/ => https://m.next.co.uk/: (28, 'Connection tim ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -134,8 +134,8 @@ Fetch error: http://m.next.co.uk/ => https://m.next.co.uk/: (28, 'Connection tim - - + + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Nextbit.com.xml b/src/chrome/content/rules/Nextbit.com.xml deleted file mode 100644 index ceab94e1f338..000000000000 --- a/src/chrome/content/rules/Nextbit.com.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Nextiva.xml b/src/chrome/content/rules/Nextiva.xml deleted file mode 100644 index 9cf1440fc629..000000000000 --- a/src/chrome/content/rules/Nextiva.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Nextmuni.xml b/src/chrome/content/rules/Nextmuni.xml new file mode 100644 index 000000000000..6493446430fd --- /dev/null +++ b/src/chrome/content/rules/Nextmuni.xml @@ -0,0 +1,15 @@ + + + + + + + diff --git a/src/chrome/content/rules/Nextpowerup.com.xml b/src/chrome/content/rules/Nextpowerup.com.xml deleted file mode 100644 index a1b0a3fbea2d..000000000000 --- a/src/chrome/content/rules/Nextpowerup.com.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/Nexway.com.xml b/src/chrome/content/rules/Nexway.com.xml new file mode 100644 index 000000000000..99163a36c59f --- /dev/null +++ b/src/chrome/content/rules/Nexway.com.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Ngage_ICS.xml b/src/chrome/content/rules/Ngage_ICS.xml index 3936b3a072ee..80e98a56edfc 100644 --- a/src/chrome/content/rules/Ngage_ICS.xml +++ b/src/chrome/content/rules/Ngage_ICS.xml @@ -15,10 +15,6 @@ - + - - - \ No newline at end of file + diff --git a/src/chrome/content/rules/Nginx.org.xml b/src/chrome/content/rules/Nginx.org.xml index c2fb3324356e..5ab8d317c4ba 100644 --- a/src/chrome/content/rules/Nginx.org.xml +++ b/src/chrome/content/rules/Nginx.org.xml @@ -1,34 +1,14 @@ - - + + + - - - + - - - - - - - + diff --git a/src/chrome/content/rules/Ngrok.com.xml b/src/chrome/content/rules/Ngrok.com.xml index f3a079e6d086..057db72129b2 100644 --- a/src/chrome/content/rules/Ngrok.com.xml +++ b/src/chrome/content/rules/Ngrok.com.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://dl.ngrok.com/ => https://dl.ngrok.com/: (28, 'Connection timed out after 20001 milliseconds') --> - + diff --git a/src/chrome/content/rules/Ngx.cc.xml b/src/chrome/content/rules/Ngx.cc.xml index d61a6cf70844..9343403f5e79 100644 --- a/src/chrome/content/rules/Ngx.cc.xml +++ b/src/chrome/content/rules/Ngx.cc.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://b.ngx.cc/ => https://b.ngx.cc/: (6, 'Could not resolve host: b.ngx.cc') --> - + diff --git a/src/chrome/content/rules/Nhentai.net.xml b/src/chrome/content/rules/Nhentai.net.xml new file mode 100644 index 000000000000..e2756aba9422 --- /dev/null +++ b/src/chrome/content/rules/Nhentai.net.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/NiKec_Solutions.xml b/src/chrome/content/rules/NiKec_Solutions.xml index a83196076729..25fe77af5d1e 100644 --- a/src/chrome/content/rules/NiKec_Solutions.xml +++ b/src/chrome/content/rules/NiKec_Solutions.xml @@ -19,4 +19,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Nianet.dk.xml b/src/chrome/content/rules/Nianet.dk.xml new file mode 100644 index 000000000000..198daab6c651 --- /dev/null +++ b/src/chrome/content/rules/Nianet.dk.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Nic.bc.ca.xml b/src/chrome/content/rules/Nic.bc.ca.xml new file mode 100644 index 000000000000..686700ebc934 --- /dev/null +++ b/src/chrome/content/rules/Nic.bc.ca.xml @@ -0,0 +1,12 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Nic.cz.xml b/src/chrome/content/rules/Nic.cz.xml index 32418cd95527..346aaeb34fbe 100644 --- a/src/chrome/content/rules/Nic.cz.xml +++ b/src/chrome/content/rules/Nic.cz.xml @@ -8,23 +8,13 @@ - MojeID.cz.xml - Turris.cz.xml - Observed cookie domains: - - . - - .labs * - - stats ¹ - - www ¹ - ¹ Not secured by server - * Tracking cookies only - - Mixed content: - - Bugs on knihy from i.creativecommons.org * - * Secured by us - Mismatched: - jsns.nic.cz --> + + @@ -35,6 +25,7 @@ + @@ -43,9 +34,8 @@ - - + diff --git a/src/chrome/content/rules/Nic.ir.xml b/src/chrome/content/rules/Nic.ir.xml new file mode 100644 index 000000000000..5bcc89a1eae6 --- /dev/null +++ b/src/chrome/content/rules/Nic.ir.xml @@ -0,0 +1,14 @@ + + + + + + + diff --git a/src/chrome/content/rules/NicAc.xml b/src/chrome/content/rules/NicAc.xml index cf52f8324771..d5844c1261f9 100644 --- a/src/chrome/content/rules/NicAc.xml +++ b/src/chrome/content/rules/NicAc.xml @@ -2,7 +2,7 @@ - + diff --git a/src/chrome/content/rules/NicIo.xml b/src/chrome/content/rules/NicIo.xml index 8cee5fb69743..2571f95f8273 100644 --- a/src/chrome/content/rules/NicIo.xml +++ b/src/chrome/content/rules/NicIo.xml @@ -2,7 +2,7 @@ - + diff --git a/src/chrome/content/rules/Nice_n_Naughty.xml b/src/chrome/content/rules/Nice_n_Naughty.xml index 6953a1c99647..1420b6b9572d 100644 --- a/src/chrome/content/rules/Nice_n_Naughty.xml +++ b/src/chrome/content/rules/Nice_n_Naughty.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Nicereply.com.xml b/src/chrome/content/rules/Nicereply.com.xml index 8eb57c8fe6cf..197afa0deeeb 100644 --- a/src/chrome/content/rules/Nicereply.com.xml +++ b/src/chrome/content/rules/Nicereply.com.xml @@ -21,7 +21,7 @@ --> - + - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/NickyHager.info.xml b/src/chrome/content/rules/NickyHager.info.xml new file mode 100644 index 000000000000..d694b7cbba55 --- /dev/null +++ b/src/chrome/content/rules/NickyHager.info.xml @@ -0,0 +1,9 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Nicky_Hager.xml b/src/chrome/content/rules/Nicky_Hager.xml deleted file mode 100644 index 4886927ab1ed..000000000000 --- a/src/chrome/content/rules/Nicky_Hager.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Nicotine-Anonymous.xml b/src/chrome/content/rules/Nicotine-Anonymous.xml index b16246f845ba..f755e532e732 100644 --- a/src/chrome/content/rules/Nicotine-Anonymous.xml +++ b/src/chrome/content/rules/Nicotine-Anonymous.xml @@ -8,4 +8,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Nicovideo.jp.xml b/src/chrome/content/rules/Nicovideo.jp.xml index 4d7118edf573..53d21e590f28 100644 --- a/src/chrome/content/rules/Nicovideo.jp.xml +++ b/src/chrome/content/rules/Nicovideo.jp.xml @@ -3,47 +3,49 @@ - Friends.nico.xml - Nimg.jp.xml - - Simg.jp.xml Nonfunctional subdomains: - - (www.) ¹ - bbs ¹ - - blog ¹ - - ch ¹ - - ex ¹ - - help ¹ - - info ² - - live ¹ - - rd ¹ - - seiga ¹ + - ex ² + - jk ¹ ¹ Dropped ² Refused - Problematic subdomains: - sales.ads * + - help * * Mismatched - - Fully covered subdomains: - - - ads - - account - - secure.ch - - secure - --> - + + + + + + + + + + + + + + + + + + - + + diff --git a/src/chrome/content/rules/Niden.net.xml b/src/chrome/content/rules/Niden.net.xml index cfb6b62e09e7..749aa5301b95 100644 --- a/src/chrome/content/rules/Niden.net.xml +++ b/src/chrome/content/rules/Niden.net.xml @@ -10,7 +10,7 @@ - + https://nie-wieder-vds.de/: (7, 'F - nie-wieder-vds.de --> - + diff --git a/src/chrome/content/rules/Nieuweautokopen.nl.xml b/src/chrome/content/rules/Nieuweautokopen.nl.xml new file mode 100644 index 000000000000..617536d9dda8 --- /dev/null +++ b/src/chrome/content/rules/Nieuweautokopen.nl.xml @@ -0,0 +1,97 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Nifty.com.xml b/src/chrome/content/rules/Nifty.com.xml new file mode 100644 index 000000000000..d6756c8a6cba --- /dev/null +++ b/src/chrome/content/rules/Nifty.com.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/NightDev.com.xml b/src/chrome/content/rules/NightDev.com.xml index 1323b2e32d9f..dd4c84d62353 100644 --- a/src/chrome/content/rules/NightDev.com.xml +++ b/src/chrome/content/rules/NightDev.com.xml @@ -1,7 +1,6 @@ - + https://www.nightlove.me/: (28, 'Connec Disabled by https-everywhere-checker because: Fetch error: http://nightlove.me/ => https://nightlove.me/: (6, 'Could not resolve host: nightlove.me') --> - + @@ -18,4 +18,4 @@ Fetch error: http://nightlove.me/ => https://nightlove.me/: (6, 'Could not resol - \ No newline at end of file + diff --git a/src/chrome/content/rules/Nightcode.info.xml b/src/chrome/content/rules/Nightcode.info.xml index 192c70bcf34b..ed9d495c0580 100644 --- a/src/chrome/content/rules/Nightcode.info.xml +++ b/src/chrome/content/rules/Nightcode.info.xml @@ -12,12 +12,11 @@ Fetch error: http://nightcode.info/ => https://nightcode.info/: (28, 'Connection www.nightcode.info doesn't exist. --> - + - + diff --git a/src/chrome/content/rules/Nightmarish-Dream.ru.xml b/src/chrome/content/rules/Nightmarish-Dream.ru.xml new file mode 100644 index 000000000000..dd45d8d8d338 --- /dev/null +++ b/src/chrome/content/rules/Nightmarish-Dream.ru.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Nightweb.net.xml b/src/chrome/content/rules/Nightweb.net.xml index 472e9c0e629e..bf1f7ee38276 100644 --- a/src/chrome/content/rules/Nightweb.net.xml +++ b/src/chrome/content/rules/Nightweb.net.xml @@ -12,12 +12,11 @@ Fetch error: http://nightweb.net/ => https://nightweb.net/: (28, 'Connection tim www.nightweb.net doesn't exist. --> - + - + diff --git a/src/chrome/content/rules/Nijyuyon-Bimuunzu.xml b/src/chrome/content/rules/Nijyuyon-Bimuunzu.xml index 4360250acd24..939b7215e39c 100644 --- a/src/chrome/content/rules/Nijyuyon-Bimuunzu.xml +++ b/src/chrome/content/rules/Nijyuyon-Bimuunzu.xml @@ -1,19 +1,11 @@ - + - - - + diff --git a/src/chrome/content/rules/Nik_Cub.com.xml b/src/chrome/content/rules/Nik_Cub.com.xml index 68403c188cf1..55eaf894fe46 100644 --- a/src/chrome/content/rules/Nik_Cub.com.xml +++ b/src/chrome/content/rules/Nik_Cub.com.xml @@ -5,7 +5,7 @@ Fetch error: http://nikcub.com/ => https://nikcub.com/: (28, 'Operation timed ou Fetch error: http://www.nikcub.com/ => https://www.nikcub.com/: (28, 'Operation timed out after 30001 milliseconds with 0 bytes received') --> - + diff --git a/src/chrome/content/rules/Nik_Software.xml b/src/chrome/content/rules/Nik_Software.xml index 82934e7ee0df..ce9e29b33271 100644 --- a/src/chrome/content/rules/Nik_Software.xml +++ b/src/chrome/content/rules/Nik_Software.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://shop.niksoftware.com/ => https://shop.niksoftware.com/: (28, 'Connection timed out after 20000 milliseconds') --> - + @@ -12,7 +12,6 @@ Fetch error: http://shop.niksoftware.com/ => https://shop.niksoftware.com/: (28, - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Nikhef.nl.xml b/src/chrome/content/rules/Nikhef.nl.xml index cae932698f69..ecc6d4377aa6 100644 --- a/src/chrome/content/rules/Nikhef.nl.xml +++ b/src/chrome/content/rules/Nikhef.nl.xml @@ -12,7 +12,7 @@ Fetch error: http://teams.nikhef.nl/ => https://teams.nikhef.nl/: (6, 'Could not - www.nikhef.nl --> - + @@ -29,7 +29,7 @@ Fetch error: http://teams.nikhef.nl/ => https://teams.nikhef.nl/: (6, 'Could not --> - + https://cn.nikkei.com/: (60, 'SSL certificate problem: unable to get local issuer certificate') - Reset: invz.nikkei.com leap.nikkei.com sp.nikkei.com Refused: - www.nikkei.com + nikkei.com adb.nikkei.com adpriv.nikkei.com adprivcache.nikkei.com @@ -69,12 +65,14 @@ Fetch error: http://cn.nikkei.com/ => https://cn.nikkei.com/: (60, 'SSL certific link.asia.nikkei.com video.asia.nikkei.com cdn.nikkei.com + cn.nikkei.com mail.cn.nikkei.com regist.asia.dev.nikkei.com faq.nikkei.com mainta.nikkei.com niid.nikkei.com nkispa.nikkei.com + sp-ssl.nikkei.com stats.nikkei.com style.nikkei.com @@ -84,24 +82,27 @@ Fetch error: http://cn.nikkei.com/ => https://cn.nikkei.com/: (60, 'SSL certific MCB: zh.cn.nikkei.com (can be secured) - Too many redirects: - support.nikkei.com --> - + + + - + - + + + diff --git a/src/chrome/content/rules/Nikon-Lenswear.com.xml b/src/chrome/content/rules/Nikon-Lenswear.com.xml deleted file mode 100644 index 3eb443f48e6e..000000000000 --- a/src/chrome/content/rules/Nikon-Lenswear.com.xml +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Nikonrumors.com.xml b/src/chrome/content/rules/Nikonrumors.com.xml new file mode 100644 index 000000000000..667343db86dd --- /dev/null +++ b/src/chrome/content/rules/Nikonrumors.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Nikos_Dano.com.xml b/src/chrome/content/rules/Nikos_Dano.com.xml index e545efb538d8..7f75b4209274 100644 --- a/src/chrome/content/rules/Nikos_Dano.com.xml +++ b/src/chrome/content/rules/Nikos_Dano.com.xml @@ -5,7 +5,7 @@ Fetch error: http://nikosdano.com/ => https://nikosdano.com/: (7, 'Failed to con Fetch error: http://www.nikosdano.com/ => https://www.nikosdano.com/: (7, 'Failed to connect to www.nikosdano.com port 443: Connection refused') --> - + diff --git a/src/chrome/content/rules/Nileshgr.com.xml b/src/chrome/content/rules/Nileshgr.com.xml index c3aac683cddb..de2860b8ab43 100644 --- a/src/chrome/content/rules/Nileshgr.com.xml +++ b/src/chrome/content/rules/Nileshgr.com.xml @@ -16,7 +16,7 @@ --> - + - + + @@ -23,4 +24,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Nimg.jp.xml b/src/chrome/content/rules/Nimg.jp.xml index 831888836d90..4b391cf6f396 100644 --- a/src/chrome/content/rules/Nimg.jp.xml +++ b/src/chrome/content/rules/Nimg.jp.xml @@ -22,6 +22,9 @@ - sp.ch.res.dev.nimg.jp SSL peer certificate was not OK: + - icons.nimg.jp + - res.nimg.jp + - uni.res.nimg.jp - usericon.nimg.jp 4xx client error: @@ -36,29 +39,26 @@ - - - - - - + + + + + + + + + - - - - - - diff --git a/src/chrome/content/rules/NimporteQui.com.xml b/src/chrome/content/rules/NimporteQui.com.xml new file mode 100644 index 000000000000..5fb65284bb12 --- /dev/null +++ b/src/chrome/content/rules/NimporteQui.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Nimzone.com.xml b/src/chrome/content/rules/Nimzone.com.xml index d8c8b225e95c..6dded285aef5 100644 --- a/src/chrome/content/rules/Nimzone.com.xml +++ b/src/chrome/content/rules/Nimzone.com.xml @@ -3,7 +3,6 @@ - + diff --git a/src/chrome/content/rules/Nine.xml b/src/chrome/content/rules/Nine.xml index 57bb94dcb52d..f197ec596697 100644 --- a/src/chrome/content/rules/Nine.xml +++ b/src/chrome/content/rules/Nine.xml @@ -2,7 +2,7 @@ - + diff --git a/src/chrome/content/rules/Ning-falsemixed.xml b/src/chrome/content/rules/Ning-falsemixed.xml index db39af473dbb..36a156849b68 100644 --- a/src/chrome/content/rules/Ning-falsemixed.xml +++ b/src/chrome/content/rules/Ning-falsemixed.xml @@ -1,19 +1,45 @@ - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Ning.xml b/src/chrome/content/rules/Ning.xml index 53cd0e2b4da9..710e61cda61a 100644 --- a/src/chrome/content/rules/Ning.xml +++ b/src/chrome/content/rules/Ning.xml @@ -1,127 +1,31 @@ - + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Ninja-Build.org.xml b/src/chrome/content/rules/Ninja-Build.org.xml new file mode 100644 index 000000000000..9226d4c36127 --- /dev/null +++ b/src/chrome/content/rules/Ninja-Build.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Nintendo.com.xml b/src/chrome/content/rules/Nintendo.com.xml deleted file mode 100644 index 698f9ab8b3a6..000000000000 --- a/src/chrome/content/rules/Nintendo.com.xml +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Nintendo.de.xml b/src/chrome/content/rules/Nintendo.de.xml deleted file mode 100644 index 2f6f4d14fda2..000000000000 --- a/src/chrome/content/rules/Nintendo.de.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Nintendo.xml b/src/chrome/content/rules/Nintendo.xml new file mode 100644 index 000000000000..a8d79e4c820c --- /dev/null +++ b/src/chrome/content/rules/Nintendo.xml @@ -0,0 +1,136 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Nintendo_World_Report.xml b/src/chrome/content/rules/Nintendo_World_Report.xml index 776b639e31ce..e96857416afc 100644 --- a/src/chrome/content/rules/Nintendo_World_Report.xml +++ b/src/chrome/content/rules/Nintendo_World_Report.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Nintendolife.com.xml b/src/chrome/content/rules/Nintendolife.com.xml new file mode 100644 index 000000000000..945a1ee157de --- /dev/null +++ b/src/chrome/content/rules/Nintendolife.com.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/NinthDecimal.com.xml b/src/chrome/content/rules/NinthDecimal.com.xml index fc9129e0ce2b..179a8be2bce7 100644 --- a/src/chrome/content/rules/NinthDecimal.com.xml +++ b/src/chrome/content/rules/NinthDecimal.com.xml @@ -46,7 +46,7 @@ - + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/NiteTimeToys.com.xml b/src/chrome/content/rules/NiteTimeToys.com.xml index 4bc26dd4087d..d22d02141181 100644 --- a/src/chrome/content/rules/NiteTimeToys.com.xml +++ b/src/chrome/content/rules/NiteTimeToys.com.xml @@ -24,7 +24,7 @@ Fetch error: http://affiliates.nitetimetoys.com/ => https://affiliates.nitetimet * Secured by us --> - + diff --git a/src/chrome/content/rules/Nitro.dk.xml b/src/chrome/content/rules/Nitro.dk.xml index f8f7cf2e1c2b..611a7700e92e 100644 --- a/src/chrome/content/rules/Nitro.dk.xml +++ b/src/chrome/content/rules/Nitro.dk.xml @@ -2,9 +2,8 @@ - + - + diff --git a/src/chrome/content/rules/Nitro_Cloud.com.xml b/src/chrome/content/rules/Nitro_Cloud.com.xml index 7667a6485266..8cc8ad2f8d56 100644 --- a/src/chrome/content/rules/Nitro_Cloud.com.xml +++ b/src/chrome/content/rules/Nitro_Cloud.com.xml @@ -2,7 +2,6 @@ Other Nitro Software rulesets: - - Milodev.com.xml - PDF_to_Word.com.xml --> diff --git a/src/chrome/content/rules/Nixsrv.com.xml b/src/chrome/content/rules/Nixsrv.com.xml deleted file mode 100644 index b2eb89e8fbf7..000000000000 --- a/src/chrome/content/rules/Nixsrv.com.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Njal.la.xml b/src/chrome/content/rules/Njal.la.xml new file mode 100644 index 000000000000..d4f9853850ea --- /dev/null +++ b/src/chrome/content/rules/Njal.la.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Nlgcdn.com.xml b/src/chrome/content/rules/Nlgcdn.com.xml deleted file mode 100644 index cb0fc2862902..000000000000 --- a/src/chrome/content/rules/Nlgcdn.com.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Nnetworks.xml b/src/chrome/content/rules/Nnetworks.xml deleted file mode 100644 index 844406cc4e02..000000000000 --- a/src/chrome/content/rules/Nnetworks.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/No-DPI-campaign.xml b/src/chrome/content/rules/No-DPI-campaign.xml deleted file mode 100644 index dacce861536e..000000000000 --- a/src/chrome/content/rules/No-DPI-campaign.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/No-Thank-You.de.xml b/src/chrome/content/rules/No-Thank-You.de.xml new file mode 100644 index 000000000000..e8b2f535c040 --- /dev/null +++ b/src/chrome/content/rules/No-Thank-You.de.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/NoScript.net.xml b/src/chrome/content/rules/NoScript.net.xml deleted file mode 100644 index 15ba2b25e834..000000000000 --- a/src/chrome/content/rules/NoScript.net.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/NoTex.xml b/src/chrome/content/rules/NoTex.xml deleted file mode 100644 index 71ffd70e7bff..000000000000 --- a/src/chrome/content/rules/NoTex.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/No_1366.org.xml b/src/chrome/content/rules/No_1366.org.xml index afe4e84f8e06..d1990b5fcd9d 100644 --- a/src/chrome/content/rules/No_1366.org.xml +++ b/src/chrome/content/rules/No_1366.org.xml @@ -5,7 +5,7 @@ Fetch error: http://no1366.org/ => https://no1366.org/: (60, 'SSL certificate pr Fetch error: http://www.no1366.org/ => https://www.no1366.org/: (60, 'SSL certificate problem: self signed certificate') --> - + diff --git a/src/chrome/content/rules/No_Bitcoin_License.org.xml b/src/chrome/content/rules/No_Bitcoin_License.org.xml deleted file mode 100644 index 835cda2485b3..000000000000 --- a/src/chrome/content/rules/No_Bitcoin_License.org.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/No_Starch_Press.xml b/src/chrome/content/rules/No_Starch_Press.xml index 8f8300c1d3ad..e3594a66aac3 100644 --- a/src/chrome/content/rules/No_Starch_Press.xml +++ b/src/chrome/content/rules/No_Starch_Press.xml @@ -31,7 +31,9 @@ - + + + - + diff --git a/src/chrome/content/rules/Nodejitsu.com.xml b/src/chrome/content/rules/Nodejitsu.com.xml index 872419f19c18..f53c1d4d74bb 100644 --- a/src/chrome/content/rules/Nodejitsu.com.xml +++ b/src/chrome/content/rules/Nodejitsu.com.xml @@ -26,7 +26,7 @@ Fetch error: http://www.legal.nodejitsu.com/ => https://legal.nodejitsu.com/: (7 * Secured by us --> - + @@ -49,7 +49,7 @@ Fetch error: http://www.legal.nodejitsu.com/ => https://legal.nodejitsu.com/: (7 --> - + - + + + + + + + + + + + diff --git a/src/chrome/content/rules/Noelia.xml b/src/chrome/content/rules/Noelia.xml index cd14baf9930c..6058fc8d7107 100644 --- a/src/chrome/content/rules/Noelia.xml +++ b/src/chrome/content/rules/Noelia.xml @@ -5,7 +5,7 @@ Fetch error: http://noelia.fi/ => https://noelia.fi/: (60, 'SSL certificate prob Fetch error: http://www.noelia.fi/ => https://www.noelia.fi/: (60, 'SSL certificate problem: certificate has expired') --> - + @@ -16,4 +16,4 @@ Fetch error: http://www.noelia.fi/ => https://www.noelia.fi/: (60, 'SSL certific - \ No newline at end of file + diff --git a/src/chrome/content/rules/Noembed.com.xml b/src/chrome/content/rules/Noembed.com.xml index ce59e35a4787..53c6573ead4f 100644 --- a/src/chrome/content/rules/Noembed.com.xml +++ b/src/chrome/content/rules/Noembed.com.xml @@ -1,18 +1,7 @@ - - - - + - - - - + - - \ No newline at end of file + diff --git a/src/chrome/content/rules/NoiseProtocol.org.xml b/src/chrome/content/rules/NoiseProtocol.org.xml new file mode 100644 index 000000000000..568e2a45ea45 --- /dev/null +++ b/src/chrome/content/rules/NoiseProtocol.org.xml @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/NoiseTrade.xml b/src/chrome/content/rules/NoiseTrade.xml new file mode 100644 index 000000000000..c6ddcf4da38b --- /dev/null +++ b/src/chrome/content/rules/NoiseTrade.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Nokia.xml b/src/chrome/content/rules/Nokia.xml index f2a8fb692bf5..2bd6c281d754 100644 --- a/src/chrome/content/rules/Nokia.xml +++ b/src/chrome/content/rules/Nokia.xml @@ -1,8 +1,13 @@ + + diff --git a/src/chrome/content/rules/Nokia_Siemens_Networks.xml b/src/chrome/content/rules/Nokia_Siemens_Networks.xml index 9a3ffbb872f5..304fcbf82b18 100644 --- a/src/chrome/content/rules/Nokia_Siemens_Networks.xml +++ b/src/chrome/content/rules/Nokia_Siemens_Networks.xml @@ -17,7 +17,11 @@ - + + + + + @@ -37,4 +41,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Nomadesk.xml b/src/chrome/content/rules/Nomadesk.xml index 912b40b1e3f8..b65165387ebe 100644 --- a/src/chrome/content/rules/Nomadesk.xml +++ b/src/chrome/content/rules/Nomadesk.xml @@ -17,7 +17,8 @@ Fetch error: http://nomadesk.com/ => https://www.nomadesk.com/: (28, 'Connection - + + @@ -29,7 +30,6 @@ Fetch error: http://nomadesk.com/ => https://www.nomadesk.com/: (28, 'Connection - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Nomovok.com.xml b/src/chrome/content/rules/Nomovok.com.xml deleted file mode 100644 index feff028f3068..000000000000 --- a/src/chrome/content/rules/Nomovok.com.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Nonexiste.net.xml b/src/chrome/content/rules/Nonexiste.net.xml deleted file mode 100644 index 75aac575e093..000000000000 --- a/src/chrome/content/rules/Nonexiste.net.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Nookipedia.com.xml b/src/chrome/content/rules/Nookipedia.com.xml new file mode 100644 index 000000000000..c653dbca8206 --- /dev/null +++ b/src/chrome/content/rules/Nookipedia.com.xml @@ -0,0 +1,11 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Nootriment.xml b/src/chrome/content/rules/Nootriment.xml index 0971ee23c242..2c3b7d5aa3f8 100644 --- a/src/chrome/content/rules/Nootriment.xml +++ b/src/chrome/content/rules/Nootriment.xml @@ -1,8 +1,8 @@ - diff --git a/src/chrome/content/rules/NordicHardware-mismatches.xml b/src/chrome/content/rules/NordicHardware-mismatches.xml index 29a27e3d77bd..dee9df0c1f4a 100644 --- a/src/chrome/content/rules/NordicHardware-mismatches.xml +++ b/src/chrome/content/rules/NordicHardware-mismatches.xml @@ -2,7 +2,6 @@ - + diff --git a/src/chrome/content/rules/NordicHardware.xml b/src/chrome/content/rules/NordicHardware.xml index b0216ff5bea9..1b485d26c112 100644 --- a/src/chrome/content/rules/NordicHardware.xml +++ b/src/chrome/content/rules/NordicHardware.xml @@ -12,7 +12,7 @@ Fetch error: http://www.nordichardware.com/ => https://www.nordichardware.com/: Fetch error: http://nordichardware.se/ => https://www.nordichardware.se/: (60, 'SSL certificate problem: unable to get local issuer certificate') Fetch error: http://www.nordichardware.se/ => https://www.nordichardware.se/: (60, 'SSL certificate problem: unable to get local issuer certificate') - www.nordichardware.com , nordichardware.se , www.nordichardware.se , nordichardware.com , admin.nordichardware.se , admin.nordichardware.com + www.nordichardware.com , nordichardware.se , www.nordichardware.se , nordichardware.com , admin.nordichardware.se , admin.nordichardware.com Problematic domains: @@ -26,7 +26,7 @@ Fetch error: http://www.nordichardware.se/ => https://www.nordichardware.se/: (6 - ads.nordichardware.com (CN: www.nordichardware.com; 404) --> - + diff --git a/src/chrome/content/rules/Nordic_Academy.no.xml b/src/chrome/content/rules/Nordic_Academy.no.xml index a8a881e747d9..da09732520d3 100644 --- a/src/chrome/content/rules/Nordic_Academy.no.xml +++ b/src/chrome/content/rules/Nordic_Academy.no.xml @@ -10,7 +10,7 @@ Fetch error: http://vpn.nordicacademy.no/ => https://vpn.nordicacademy.no/: (60, - (www.) (http reply) --> - + @@ -18,7 +18,6 @@ Fetch error: http://vpn.nordicacademy.no/ => https://vpn.nordicacademy.no/: (60, - + diff --git a/src/chrome/content/rules/Nordkurier.xml b/src/chrome/content/rules/Nordkurier.xml new file mode 100644 index 000000000000..d655f8535ea6 --- /dev/null +++ b/src/chrome/content/rules/Nordkurier.xml @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Nordvpn.com.xml b/src/chrome/content/rules/Nordvpn.com.xml deleted file mode 100644 index 6ca5d2178aeb..000000000000 --- a/src/chrome/content/rules/Nordvpn.com.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Norge.no.xml b/src/chrome/content/rules/Norge.no.xml index 6440664853bc..62270acf89b0 100644 --- a/src/chrome/content/rules/Norge.no.xml +++ b/src/chrome/content/rules/Norge.no.xml @@ -3,7 +3,7 @@ Timeout: - psi.norge.no - www2.norge.no - + Mismatch: - test.norge.no diff --git a/src/chrome/content/rules/Norid.no.xml b/src/chrome/content/rules/Norid.no.xml index 3ac8e232e877..3e9eeba773c2 100644 --- a/src/chrome/content/rules/Norid.no.xml +++ b/src/chrome/content/rules/Norid.no.xml @@ -11,13 +11,13 @@ - + + - + diff --git a/src/chrome/content/rules/Noris.org.xml b/src/chrome/content/rules/Noris.org.xml index 0c9736721770..8d2975f0ea81 100644 --- a/src/chrome/content/rules/Noris.org.xml +++ b/src/chrome/content/rules/Noris.org.xml @@ -1,7 +1,10 @@ - + + + + https://www.norman.com/: (51, "SSL: no al * Unsecurable <= refused --> - + @@ -32,7 +32,7 @@ Fetch error: http://www.norman.com/ => https://www.norman.com/: (51, "SSL: no al - + - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/North-American-Network-Operators-Group.xml b/src/chrome/content/rules/North-American-Network-Operators-Group.xml index 738314d4491e..812ccd5026b0 100644 --- a/src/chrome/content/rules/North-American-Network-Operators-Group.xml +++ b/src/chrome/content/rules/North-American-Network-Operators-Group.xml @@ -31,7 +31,7 @@ Fetch error: http://text.nanog.org/ => https://text.nanog.org/: (28, 'Connection - css on bcop from $self --> - + diff --git a/src/chrome/content/rules/North-Carolina-State-University-problematic.xml b/src/chrome/content/rules/North-Carolina-State-University-problematic.xml index faf60e17c496..91e6f016a081 100644 --- a/src/chrome/content/rules/North-Carolina-State-University-problematic.xml +++ b/src/chrome/content/rules/North-Carolina-State-University-problematic.xml @@ -2,7 +2,7 @@ For rules that are on by default, see North-Carolina-State-University.xml. --> - + diff --git a/src/chrome/content/rules/North-Carolina-State-University.xml b/src/chrome/content/rules/North-Carolina-State-University.xml index 54448fe3ed09..48575eb519f8 100644 --- a/src/chrome/content/rules/North-Carolina-State-University.xml +++ b/src/chrome/content/rules/North-Carolina-State-University.xml @@ -94,7 +94,7 @@ Fetch error: http://my.lib.ncsu.edu/ => https://my.lib.ncsu.edu/: (6, 'Could not ² Unsecurable --> - + @@ -173,7 +173,7 @@ Fetch error: http://my.lib.ncsu.edu/ => https://my.lib.ncsu.edu/: (6, 'Could not - + @@ -184,7 +184,7 @@ Fetch error: http://my.lib.ncsu.edu/ => https://my.lib.ncsu.edu/: (6, 'Could not - + @@ -41,7 +41,7 @@ --> - + - - - - - - - - - - - - diff --git a/src/chrome/content/rules/North_Norfolk.org.xml b/src/chrome/content/rules/North_Norfolk.org.xml deleted file mode 100644 index 951d04afdcf1..000000000000 --- a/src/chrome/content/rules/North_Norfolk.org.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/North_Warks.gov.uk.xml b/src/chrome/content/rules/North_Warks.gov.uk.xml index c535b8e918ec..3512fa81b822 100644 --- a/src/chrome/content/rules/North_Warks.gov.uk.xml +++ b/src/chrome/content/rules/North_Warks.gov.uk.xml @@ -33,8 +33,8 @@ - - + + - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Northern_Tool.com.xml b/src/chrome/content/rules/Northern_Tool.com.xml index d3030171c469..c592412e0f00 100644 --- a/src/chrome/content/rules/Northern_Tool.com.xml +++ b/src/chrome/content/rules/Northern_Tool.com.xml @@ -25,7 +25,10 @@ - + + + + diff --git a/src/chrome/content/rules/Northpole.fi.xml b/src/chrome/content/rules/Northpole.fi.xml index 9222e38f60e7..f680a6247e35 100644 --- a/src/chrome/content/rules/Northpole.fi.xml +++ b/src/chrome/content/rules/Northpole.fi.xml @@ -1,8 +1,8 @@ - - - + + + diff --git a/src/chrome/content/rules/Northwest_Swim_Shop.xml b/src/chrome/content/rules/Northwest_Swim_Shop.xml deleted file mode 100644 index 027902603c57..000000000000 --- a/src/chrome/content/rules/Northwest_Swim_Shop.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Northwestern_University.xml b/src/chrome/content/rules/Northwestern_University.xml index 3bbf35a52376..3bf8acbb9770 100644 --- a/src/chrome/content/rules/Northwestern_University.xml +++ b/src/chrome/content/rules/Northwestern_University.xml @@ -101,7 +101,55 @@ --> - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -110,8 +158,6 @@ - @@ -122,4 +168,5 @@ + diff --git a/src/chrome/content/rules/Norton.xml b/src/chrome/content/rules/Norton.xml index 8a8f04d49e46..0ba38ae869ab 100644 --- a/src/chrome/content/rules/Norton.xml +++ b/src/chrome/content/rules/Norton.xml @@ -73,7 +73,7 @@ - + @@ -96,7 +96,7 @@ - + @@ -129,7 +129,7 @@ - + @@ -147,13 +147,13 @@ - + - + - + diff --git a/src/chrome/content/rules/Norton_Online_Backup.xml b/src/chrome/content/rules/Norton_Online_Backup.xml index 1529813445ad..cc53001eaf45 100644 --- a/src/chrome/content/rules/Norton_Online_Backup.xml +++ b/src/chrome/content/rules/Norton_Online_Backup.xml @@ -11,7 +11,16 @@ - + + + + + + + + + + @@ -23,7 +32,6 @@ - + diff --git a/src/chrome/content/rules/Norwalk_Reflector.xml b/src/chrome/content/rules/Norwalk_Reflector.xml index 4420d7eef744..59b587413b90 100644 --- a/src/chrome/content/rules/Norwalk_Reflector.xml +++ b/src/chrome/content/rules/Norwalk_Reflector.xml @@ -12,4 +12,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/NorwegianClass101.com.xml b/src/chrome/content/rules/NorwegianClass101.com.xml index b799f61d58b9..09d205d4b73e 100644 --- a/src/chrome/content/rules/NorwegianClass101.com.xml +++ b/src/chrome/content/rules/NorwegianClass101.com.xml @@ -13,7 +13,7 @@ - + + + + + + + + + + diff --git a/src/chrome/content/rules/NotAlwaysFriendly.com.xml b/src/chrome/content/rules/NotAlwaysFriendly.com.xml new file mode 100644 index 000000000000..31be8895efce --- /dev/null +++ b/src/chrome/content/rules/NotAlwaysFriendly.com.xml @@ -0,0 +1,18 @@ + + + + + + + + diff --git a/src/chrome/content/rules/NotAlwaysHopeless.com.xml b/src/chrome/content/rules/NotAlwaysHopeless.com.xml new file mode 100644 index 000000000000..f197e5d6230e --- /dev/null +++ b/src/chrome/content/rules/NotAlwaysHopeless.com.xml @@ -0,0 +1,12 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/NotAlwaysRight.com.xml b/src/chrome/content/rules/NotAlwaysRight.com.xml new file mode 100644 index 000000000000..69e037d735af --- /dev/null +++ b/src/chrome/content/rules/NotAlwaysRight.com.xml @@ -0,0 +1,19 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/NotAlwaysWorking.com.xml b/src/chrome/content/rules/NotAlwaysWorking.com.xml new file mode 100644 index 000000000000..19ac67ae6b8f --- /dev/null +++ b/src/chrome/content/rules/NotAlwaysWorking.com.xml @@ -0,0 +1,18 @@ + + + + + + + + diff --git a/src/chrome/content/rules/NotBackingDownUMass.org.xml b/src/chrome/content/rules/NotBackingDownUMass.org.xml new file mode 100644 index 000000000000..6ae63bd38ed3 --- /dev/null +++ b/src/chrome/content/rules/NotBackingDownUMass.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Not_Alone.gov.xml b/src/chrome/content/rules/Not_Alone.gov.xml deleted file mode 100644 index b138adf9d460..000000000000 --- a/src/chrome/content/rules/Not_Alone.gov.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Not_Enough_Shaders.com.xml b/src/chrome/content/rules/Not_Enough_Shaders.com.xml index 76525d86dfd8..367dfd8666ef 100644 --- a/src/chrome/content/rules/Not_Enough_Shaders.com.xml +++ b/src/chrome/content/rules/Not_Enough_Shaders.com.xml @@ -25,7 +25,7 @@ Fetch error: http://www.notenoughshaders.com/ => https://www.notenoughshaders.co * Secured by us --> - + diff --git a/src/chrome/content/rules/NotaNet.com.br.xml b/src/chrome/content/rules/NotaNet.com.br.xml index 0ae9dc895868..6cdb521c6409 100644 --- a/src/chrome/content/rules/NotaNet.com.br.xml +++ b/src/chrome/content/rules/NotaNet.com.br.xml @@ -10,7 +10,7 @@ Fetch error: http://www.notanet.com.br/ => https://www.notanet.com.br/: (60, 'SS ^: Cert only matches www --> - + diff --git a/src/chrome/content/rules/Notabug.io.xml b/src/chrome/content/rules/Notabug.io.xml new file mode 100644 index 000000000000..24492ace788c --- /dev/null +++ b/src/chrome/content/rules/Notabug.io.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Notacon.org.xml b/src/chrome/content/rules/Notacon.org.xml index 14abbd430e0e..089a3538d2cc 100644 --- a/src/chrome/content/rules/Notacon.org.xml +++ b/src/chrome/content/rules/Notacon.org.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://notacon.org/ => https://notacon.org/: (51, "SSL: no alternative certificate subject name matches target host name 'notacon.org'") Fetch error: http://www.notacon.org/ => https://www.notacon.org/: (51, "SSL: no alternative certificate subject name matches target host name 'www.notacon.org'") --> - + diff --git a/src/chrome/content/rules/NoteFly.xml b/src/chrome/content/rules/NoteFly.xml index 8d39427803c8..88010b270b86 100644 --- a/src/chrome/content/rules/NoteFly.xml +++ b/src/chrome/content/rules/NoteFly.xml @@ -3,7 +3,6 @@ - https://www.noteapp.com/: (56, 'SSL read * git.noteapp.com * rtc.noteapp.com --> - + diff --git a/src/chrome/content/rules/Noted_Code.com.xml b/src/chrome/content/rules/Noted_Code.com.xml deleted file mode 100644 index 48c9da485a07..000000000000 --- a/src/chrome/content/rules/Noted_Code.com.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Notepad++.xml b/src/chrome/content/rules/Notepad++.xml index a7015a09eae6..87d74188e201 100644 --- a/src/chrome/content/rules/Notepad++.xml +++ b/src/chrome/content/rules/Notepad++.xml @@ -1,24 +1,15 @@ - + + + - - - - + diff --git a/src/chrome/content/rules/Notex.ch.xml b/src/chrome/content/rules/Notex.ch.xml new file mode 100644 index 000000000000..11a020971497 --- /dev/null +++ b/src/chrome/content/rules/Notex.ch.xml @@ -0,0 +1,11 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Nottingham.ac.uk-falsemixed.xml b/src/chrome/content/rules/Nottingham.ac.uk-falsemixed.xml index fade25d43944..d5ee2c61ab02 100644 --- a/src/chrome/content/rules/Nottingham.ac.uk-falsemixed.xml +++ b/src/chrome/content/rules/Nottingham.ac.uk-falsemixed.xml @@ -7,7 +7,7 @@ - + https://selfservice.notting ˢ Secured by us --> - + @@ -146,7 +146,7 @@ Fetch error: http://selfservice.nottingham.ac.uk/ => https://selfservice.notting - + + + + + + + + + diff --git a/src/chrome/content/rules/Novaapi.net.xml b/src/chrome/content/rules/Novaapi.net.xml index bbef8a43f55a..d93c5773d0ad 100644 --- a/src/chrome/content/rules/Novaapi.net.xml +++ b/src/chrome/content/rules/Novaapi.net.xml @@ -1,3 +1,20 @@ + diff --git a/src/chrome/content/rules/Novartisart.com.xml b/src/chrome/content/rules/Novartisart.com.xml index 66695c2287bd..c0784e7e97a1 100644 --- a/src/chrome/content/rules/Novartisart.com.xml +++ b/src/chrome/content/rules/Novartisart.com.xml @@ -12,4 +12,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Novell.xml b/src/chrome/content/rules/Novell.xml index 65a16f213c16..54d9dfb6277f 100644 --- a/src/chrome/content/rules/Novell.xml +++ b/src/chrome/content/rules/Novell.xml @@ -22,7 +22,7 @@ Fetch error: http://shop.novell.com/ => https://shop.novell.com/: (51, "SSL: no ² Dropped --> - + diff --git a/src/chrome/content/rules/Novosoft.net.xml b/src/chrome/content/rules/Novosoft.net.xml index b18a1352c75a..249bc48e4b67 100644 --- a/src/chrome/content/rules/Novosoft.net.xml +++ b/src/chrome/content/rules/Novosoft.net.xml @@ -5,7 +5,7 @@ Fetch error: http://novosoft.net/ => https://novosoft.net/: (51, "SSL: no altern Fetch error: http://www.novosoft.net/ => https://www.novosoft.net/: (51, "SSL: no alternative certificate subject name matches target host name 'www.novosoft.net'") --> - + diff --git a/src/chrome/content/rules/NowSecure.com.xml b/src/chrome/content/rules/NowSecure.com.xml index a16fdddaf5d0..3a23465f84d1 100644 --- a/src/chrome/content/rules/NowSecure.com.xml +++ b/src/chrome/content/rules/NowSecure.com.xml @@ -18,7 +18,7 @@ - + - + - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Noxsolutions.com.xml b/src/chrome/content/rules/Noxsolutions.com.xml new file mode 100644 index 000000000000..cb91478c433e --- /dev/null +++ b/src/chrome/content/rules/Noxsolutions.com.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/Np-Edv.at.xml b/src/chrome/content/rules/Np-Edv.at.xml deleted file mode 100644 index c3d059f66452..000000000000 --- a/src/chrome/content/rules/Np-Edv.at.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Npm_js.org.xml b/src/chrome/content/rules/Npm_js.org.xml index c2c2c4558414..5d3220cb935c 100644 --- a/src/chrome/content/rules/Npm_js.org.xml +++ b/src/chrome/content/rules/Npm_js.org.xml @@ -1,42 +1,25 @@ - + - - - - + + + + + - - - - + diff --git a/src/chrome/content/rules/Npower.xml b/src/chrome/content/rules/Npower.xml index 07d6c6cd156e..5a3c5d495d1f 100644 --- a/src/chrome/content/rules/Npower.xml +++ b/src/chrome/content/rules/Npower.xml @@ -21,4 +21,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Nrelate.xml b/src/chrome/content/rules/Nrelate.xml deleted file mode 100644 index 5479ac967528..000000000000 --- a/src/chrome/content/rules/Nrelate.xml +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Nrk.no.xml b/src/chrome/content/rules/Nrk.no.xml index 8c2d91eff07e..10df680234ef 100644 --- a/src/chrome/content/rules/Nrk.no.xml +++ b/src/chrome/content/rules/Nrk.no.xml @@ -51,7 +51,7 @@ Fetch error: http://fil.nrk.no/ => https://fil.nrk.no/: (56, 'SSL read: error:00 ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -72,7 +72,7 @@ Fetch error: http://fil.nrk.no/ => https://fil.nrk.no/: (56, 'SSL read: error:00 - + https://ovh.nserver.ru/: (7, 'Failed to c - .gpt.nserver.ru --> - + diff --git a/src/chrome/content/rules/Nstatic.com.xml b/src/chrome/content/rules/Nstatic.com.xml new file mode 100644 index 000000000000..4eed269ddb73 --- /dev/null +++ b/src/chrome/content/rules/Nstatic.com.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/Ntmx.de.xml b/src/chrome/content/rules/Ntmx.de.xml index ef892f22c3a2..ffd406fde61e 100644 --- a/src/chrome/content/rules/Ntmx.de.xml +++ b/src/chrome/content/rules/Ntmx.de.xml @@ -14,7 +14,7 @@ Non-2xx HTTP code: http://www.ntmx.de/ (200) => https://ntmx.de/ (403) - mail --> - + diff --git a/src/chrome/content/rules/Ntv.io.xml b/src/chrome/content/rules/Ntv.io.xml index f6596efac3e7..a6bdb2ef1449 100644 --- a/src/chrome/content/rules/Ntv.io.xml +++ b/src/chrome/content/rules/Ntv.io.xml @@ -1,23 +1,23 @@ - - + + + diff --git a/src/chrome/content/rules/NuBlue.xml b/src/chrome/content/rules/NuBlue.xml index 731100daf8fb..e14461d5a14a 100644 --- a/src/chrome/content/rules/NuBlue.xml +++ b/src/chrome/content/rules/NuBlue.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/NuGet.xml b/src/chrome/content/rules/NuGet.xml index f8a4b32900ea..02852f7a4d9a 100644 --- a/src/chrome/content/rules/NuGet.xml +++ b/src/chrome/content/rules/NuGet.xml @@ -27,7 +27,7 @@ --> - + https://customz.nustarz.com/: (51, " * Secured by us --> - + @@ -34,7 +34,6 @@ Fetch error: http://customz.nustarz.com/ => https://customz.nustarz.com/: (51, " - + diff --git a/src/chrome/content/rules/Nu_Image_Medical.xml b/src/chrome/content/rules/Nu_Image_Medical.xml index 50efc198e29f..1fff890fd4b1 100644 --- a/src/chrome/content/rules/Nu_Image_Medical.xml +++ b/src/chrome/content/rules/Nu_Image_Medical.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Nuand.com.xml b/src/chrome/content/rules/Nuand.com.xml index 98dff86109b0..848a4cec569a 100644 --- a/src/chrome/content/rules/Nuand.com.xml +++ b/src/chrome/content/rules/Nuand.com.xml @@ -1,10 +1,10 @@ @@ -27,16 +29,8 @@ --> + - - - - - - - - + diff --git a/src/chrome/content/rules/NuclearCat.com.xml b/src/chrome/content/rules/NuclearCat.com.xml deleted file mode 100644 index 9f9e25bdfb82..000000000000 --- a/src/chrome/content/rules/NuclearCat.com.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Nudevista.com.xml b/src/chrome/content/rules/Nudevista.com.xml index 2fb7330486e9..3d9a7651178e 100644 --- a/src/chrome/content/rules/Nudevista.com.xml +++ b/src/chrome/content/rules/Nudevista.com.xml @@ -4,7 +4,9 @@ --> - + + + https://71.nuggad.net/: (6, 'Could not res Fetch error: http://mtm.nuggad.net/ => https://mtm.nuggad.net/: Too many redirects while fetching 'https://mtm.nuggad.net/' --> - + diff --git a/src/chrome/content/rules/Nuitka.net.xml b/src/chrome/content/rules/Nuitka.net.xml new file mode 100644 index 000000000000..4d238b30d72a --- /dev/null +++ b/src/chrome/content/rules/Nuitka.net.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Nulab-Inc.com.xml b/src/chrome/content/rules/Nulab-Inc.com.xml index 2ed86470aac3..b3f9dbf8350c 100644 --- a/src/chrome/content/rules/Nulab-Inc.com.xml +++ b/src/chrome/content/rules/Nulab-Inc.com.xml @@ -5,7 +5,8 @@ - + + - + - - - - - - diff --git a/src/chrome/content/rules/NumPy.org.xml b/src/chrome/content/rules/NumPy.org.xml new file mode 100644 index 000000000000..c6482a9f811c --- /dev/null +++ b/src/chrome/content/rules/NumPy.org.xml @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Numa.paris.xml b/src/chrome/content/rules/Numa.paris.xml index 9cb4b9fbb7af..e9f5bc3c67b9 100644 --- a/src/chrome/content/rules/Numa.paris.xml +++ b/src/chrome/content/rules/Numa.paris.xml @@ -42,7 +42,7 @@ Fetch error: http://numa.paris/ => https://www.numa.paris/: (60, 'SSL certificat ² Not secured by us <= mismatched --> - + diff --git a/src/chrome/content/rules/Number-Resource-Organization.xml b/src/chrome/content/rules/Number-Resource-Organization.xml index e1f38866aba8..6089d77e0223 100644 --- a/src/chrome/content/rules/Number-Resource-Organization.xml +++ b/src/chrome/content/rules/Number-Resource-Organization.xml @@ -8,7 +8,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Numergy.com.xml b/src/chrome/content/rules/Numergy.com.xml new file mode 100644 index 000000000000..b157c3cc5d1f --- /dev/null +++ b/src/chrome/content/rules/Numergy.com.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Numergy.xml b/src/chrome/content/rules/Numergy.xml deleted file mode 100644 index 2e33dae6f256..000000000000 --- a/src/chrome/content/rules/Numergy.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Nuqayah.com.xml b/src/chrome/content/rules/Nuqayah.com.xml new file mode 100644 index 000000000000..91de689f471a --- /dev/null +++ b/src/chrome/content/rules/Nuqayah.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Nurago.xml b/src/chrome/content/rules/Nurago.xml index ea100f70bffa..ae34cf6f6cb8 100644 --- a/src/chrome/content/rules/Nurago.xml +++ b/src/chrome/content/rules/Nurago.xml @@ -9,8 +9,5 @@ - - - diff --git a/src/chrome/content/rules/NutriCentre.xml b/src/chrome/content/rules/NutriCentre.xml index 075639bb3ee9..f3ee3e753817 100644 --- a/src/chrome/content/rules/NutriCentre.xml +++ b/src/chrome/content/rules/NutriCentre.xml @@ -5,11 +5,11 @@ Fetch error: http://nutricentre.com/ => https://www.nutricentre.com/: (28, 'Conn Fetch error: http://www.nutricentre.com/ => https://www.nutricentre.com/: (7, 'Failed to connect to www.nutricentre.com port 443: Connection refused') --> - + - + diff --git a/src/chrome/content/rules/Nutrition.gov.xml b/src/chrome/content/rules/Nutrition.gov.xml deleted file mode 100644 index ea20095de5b4..000000000000 --- a/src/chrome/content/rules/Nutrition.gov.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Nutritiondata.self.com.xml b/src/chrome/content/rules/Nutritiondata.self.com.xml index 73913f7c5ead..8643e33ad33d 100644 --- a/src/chrome/content/rules/Nutritiondata.self.com.xml +++ b/src/chrome/content/rules/Nutritiondata.self.com.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.nutritiondata.self.com/ => https://www.nutritiondata.self.com/: (6, 'Could not resolve host: www.nutritiondata.self.com') --> - + diff --git a/src/chrome/content/rules/Nuttcp.net.xml b/src/chrome/content/rules/Nuttcp.net.xml new file mode 100644 index 000000000000..94d297746593 --- /dev/null +++ b/src/chrome/content/rules/Nuttcp.net.xml @@ -0,0 +1,17 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Nuuvem.com.xml b/src/chrome/content/rules/Nuuvem.com.xml index 26a4d970d43d..f23d864c0d86 100644 --- a/src/chrome/content/rules/Nuuvem.com.xml +++ b/src/chrome/content/rules/Nuuvem.com.xml @@ -1,6 +1,6 @@ - + @@ -16,4 +16,4 @@ Fetch error: http://www.nuwear.com/ => https://www.nuwear.com/: (60, 'SSL certif - \ No newline at end of file + diff --git a/src/chrome/content/rules/Nvcc.edu.xml b/src/chrome/content/rules/Nvcc.edu.xml index de9dd1734b08..44a96978c845 100644 --- a/src/chrome/content/rules/Nvcc.edu.xml +++ b/src/chrome/content/rules/Nvcc.edu.xml @@ -14,7 +14,7 @@ Fetch error: http://www.student.nvcc.edu/ => https://www.student.nvcc.edu/: (28, Refused: novastartalk.nvcc.edu --> - + diff --git a/src/chrome/content/rules/Nxt_Forum.org.xml b/src/chrome/content/rules/Nxt_Forum.org.xml index 0c1abcf6b3b7..f8c613c1df99 100644 --- a/src/chrome/content/rules/Nxt_Forum.org.xml +++ b/src/chrome/content/rules/Nxt_Forum.org.xml @@ -1,4 +1,12 @@ + - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Nxtck.com.xml b/src/chrome/content/rules/Nxtck.com.xml index da2027811576..be9eddc5b81f 100644 --- a/src/chrome/content/rules/Nxtck.com.xml +++ b/src/chrome/content/rules/Nxtck.com.xml @@ -12,4 +12,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Nxtgn.org.xml b/src/chrome/content/rules/Nxtgn.org.xml deleted file mode 100644 index 1a279259b9ad..000000000000 --- a/src/chrome/content/rules/Nxtgn.org.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Nyaa.eu.xml b/src/chrome/content/rules/Nyaa.eu.xml index d0424550a7db..06ce57927f9a 100644 --- a/src/chrome/content/rules/Nyaa.eu.xml +++ b/src/chrome/content/rules/Nyaa.eu.xml @@ -9,7 +9,7 @@ Fetch error: http://sukebei.nyaa.eu/ => https://sukebei.nyaa.eu/: (6, 'Could not Self-signed, mismatch: - cthuko.nyaa.eu --> - + diff --git a/src/chrome/content/rules/Nyaa.se.xml b/src/chrome/content/rules/Nyaa.se.xml deleted file mode 100644 index bca533c089eb..000000000000 --- a/src/chrome/content/rules/Nyaa.se.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Nyaa.si.xml b/src/chrome/content/rules/Nyaa.si.xml new file mode 100644 index 000000000000..019ce97a4c95 --- /dev/null +++ b/src/chrome/content/rules/Nyaa.si.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Nymity.ch.xml b/src/chrome/content/rules/Nymity.ch.xml index 73cc4dc9db06..49e3efb4a47f 100644 --- a/src/chrome/content/rules/Nymity.ch.xml +++ b/src/chrome/content/rules/Nymity.ch.xml @@ -14,7 +14,7 @@ - + + + - - - + + + diff --git a/src/chrome/content/rules/Nzbplanet.net.xml b/src/chrome/content/rules/Nzbplanet.net.xml index 80b08823a158..c4f73de4f56d 100644 --- a/src/chrome/content/rules/Nzbplanet.net.xml +++ b/src/chrome/content/rules/Nzbplanet.net.xml @@ -6,4 +6,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/O2_online.de.xml b/src/chrome/content/rules/O2_online.de.xml index c1bda44b8dfa..f7c542d3e7f7 100644 --- a/src/chrome/content/rules/O2_online.de.xml +++ b/src/chrome/content/rules/O2_online.de.xml @@ -61,7 +61,16 @@ - + + + + + + + + + + - + - + diff --git a/src/chrome/content/rules/OADOI.org.xml b/src/chrome/content/rules/OADOI.org.xml new file mode 100644 index 000000000000..468a212e9000 --- /dev/null +++ b/src/chrome/content/rules/OADOI.org.xml @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/OAG.com-falsemixed.xml b/src/chrome/content/rules/OAG.com-falsemixed.xml deleted file mode 100644 index e129c930a7c9..000000000000 --- a/src/chrome/content/rules/OAG.com-falsemixed.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/OAG.xml b/src/chrome/content/rules/OAG.xml index 3abcb7f0e95d..bf676196266e 100644 --- a/src/chrome/content/rules/OAG.xml +++ b/src/chrome/content/rules/OAG.xml @@ -1,46 +1,14 @@ - - - - - - - - - - + + diff --git a/src/chrome/content/rules/OASIS_Open.org-falsemixed.xml b/src/chrome/content/rules/OASIS_Open.org-falsemixed.xml index c7d1c18342d1..c90b823d7b85 100644 --- a/src/chrome/content/rules/OASIS_Open.org-falsemixed.xml +++ b/src/chrome/content/rules/OASIS_Open.org-falsemixed.xml @@ -9,7 +9,7 @@ - + https://blogs.oasis-open.org/: (6, 'Could not resolve host: blogs.oasis-open.org') - For rules causing false/broken MCB, see OASIS_Open.org-falsemixed.xml. - Nonfunctional hosts in *oasis-open.org: - - - cybersecurity ¹ - - events ² - - interoperate-iot ¹ - - search ² - - ¹ Redirects to http - ² Shows blank tree - - - Insecure cookies are set for these domains and hosts: - - - .oasis-open.org - - .blogs.oasis-open.org - - www.oasis-open.org - + Invalid certificate: + - events.oasis-open.org + - search.oasis-open.org + - interoperate-iot.oasis-open.org Mixed content: - - - css on psi from www.oasis-open.org * - - Images on psi from www.oasis-open.org * - - * Secured by us - + - psi.oasis-open.org --> - + - - + - + - - - - - - - + https://www.vis.occrp.org/: (6, 'Could - www.occrp.org --> - + diff --git a/src/chrome/content/rules/OCamlCore.org.xml b/src/chrome/content/rules/OCamlCore.org.xml index 275a0362faf9..c956edfc0920 100644 --- a/src/chrome/content/rules/OCamlCore.org.xml +++ b/src/chrome/content/rules/OCamlCore.org.xml @@ -16,7 +16,7 @@ Fetch error: http://static.ocamlcore.org/ => https://static.ocamlcore.org/: (60, * Shows lists.ocamlcore.org --> - + diff --git a/src/chrome/content/rules/OD.org.xml b/src/chrome/content/rules/OD.org.xml deleted file mode 100644 index b78e310099c2..000000000000 --- a/src/chrome/content/rules/OD.org.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/ODMWheels.xml b/src/chrome/content/rules/ODMWheels.xml deleted file mode 100644 index 1a210d2112fa..000000000000 --- a/src/chrome/content/rules/ODMWheels.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/OECD.xml b/src/chrome/content/rules/OECD.xml index 26f0979290fe..5e0a9bb3c3e6 100644 --- a/src/chrome/content/rules/OECD.xml +++ b/src/chrome/content/rules/OECD.xml @@ -7,4 +7,4 @@ --> - \ No newline at end of file + diff --git a/src/chrome/content/rules/OEPNVKarte.xml b/src/chrome/content/rules/OEPNVKarte.xml new file mode 100644 index 000000000000..755ce487906b --- /dev/null +++ b/src/chrome/content/rules/OEPNVKarte.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/OFB.xml b/src/chrome/content/rules/OFB.xml index 22bf13b9c24b..4ac662f066dc 100644 --- a/src/chrome/content/rules/OFB.xml +++ b/src/chrome/content/rules/OFB.xml @@ -10,10 +10,11 @@ Fetch error: http://ofb.net/ => https://ofb.net/: (60, 'SSL certificate problem: - lists (cert: ofb.net; 302s to ofb.net/wp-signup.php?new=lists) --> - + - + + diff --git a/src/chrome/content/rules/OFFLINE.ee.xml b/src/chrome/content/rules/OFFLINE.ee.xml index 83868d44c8f9..547555dbc46d 100644 --- a/src/chrome/content/rules/OFFLINE.ee.xml +++ b/src/chrome/content/rules/OFFLINE.ee.xml @@ -12,7 +12,6 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/OFX.com.xml b/src/chrome/content/rules/OFX.com.xml new file mode 100644 index 000000000000..c98f3da65713 --- /dev/null +++ b/src/chrome/content/rules/OFX.com.xml @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/OH-Tech.org.xml b/src/chrome/content/rules/OH-Tech.org.xml index 3043641e93f7..81fbc02eae7d 100644 --- a/src/chrome/content/rules/OH-Tech.org.xml +++ b/src/chrome/content/rules/OH-Tech.org.xml @@ -17,7 +17,7 @@ --> - + - - - - - - - - - diff --git a/src/chrome/content/rules/OHeffernan.xml b/src/chrome/content/rules/OHeffernan.xml index 623579310536..c939f4b597cf 100644 --- a/src/chrome/content/rules/OHeffernan.xml +++ b/src/chrome/content/rules/OHeffernan.xml @@ -3,7 +3,7 @@ - diff --git a/src/chrome/content/rules/OKCoin.cn.xml b/src/chrome/content/rules/OKCoin.cn.xml index d865303aac60..b850ec232e99 100644 --- a/src/chrome/content/rules/OKCoin.cn.xml +++ b/src/chrome/content/rules/OKCoin.cn.xml @@ -25,7 +25,7 @@ Fetch error: http://img.okcoin.cn/ => https://img.okcoin.cn/: (6, 'Could not res - www.okcoin.cn --> - + diff --git a/src/chrome/content/rules/OKCoin.com.xml b/src/chrome/content/rules/OKCoin.com.xml index 0568fa3b466a..a92abf21aff7 100644 --- a/src/chrome/content/rules/OKCoin.com.xml +++ b/src/chrome/content/rules/OKCoin.com.xml @@ -16,7 +16,7 @@ Fetch error: http://img.okcoin.com/ => https://img.okcoin.com/: (6, 'Could not r - www.okcoin.com --> - + diff --git a/src/chrome/content/rules/OKPAY.com.xml b/src/chrome/content/rules/OKPAY.com.xml deleted file mode 100644 index 53dc5b1dea4e..000000000000 --- a/src/chrome/content/rules/OKPAY.com.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/OKamel.com.xml b/src/chrome/content/rules/OKamel.com.xml new file mode 100644 index 000000000000..2f45d3ac9af7 --- /dev/null +++ b/src/chrome/content/rules/OKamel.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/OLPC.xml b/src/chrome/content/rules/OLPC.xml index 2deaafe686bb..b2aff2bfff68 100644 --- a/src/chrome/content/rules/OLPC.xml +++ b/src/chrome/content/rules/OLPC.xml @@ -4,13 +4,12 @@ Disabled by https-everywhere-checker because: Fetch error: http://dev.laptop.org/ => https://dev.laptop.org/: (60, 'SSL certificate problem: certificate has expired') --> - + - + - + diff --git a/src/chrome/content/rules/OMC.net.xml b/src/chrome/content/rules/OMC.net.xml new file mode 100644 index 000000000000..c895bb006879 --- /dev/null +++ b/src/chrome/content/rules/OMC.net.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/OMDb_API.com.xml b/src/chrome/content/rules/OMDb_API.com.xml new file mode 100644 index 000000000000..b6148648c6fc --- /dev/null +++ b/src/chrome/content/rules/OMDb_API.com.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/OMG_uk.com.xml b/src/chrome/content/rules/OMG_uk.com.xml deleted file mode 100644 index 655109d818b8..000000000000 --- a/src/chrome/content/rules/OMG_uk.com.xml +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/OMNeTpp.org.xml b/src/chrome/content/rules/OMNeTpp.org.xml index a86500ac69ef..ef6dfeec10a7 100644 --- a/src/chrome/content/rules/OMNeTpp.org.xml +++ b/src/chrome/content/rules/OMNeTpp.org.xml @@ -7,7 +7,7 @@ - + https://coyote.srv1.oms.eu/: (60, 'SSL certificate problem: certificate has expired') --> - + @@ -12,7 +12,7 @@ Fetch error: http://coyote.srv1.oms.eu/ => https://coyote.srv1.oms.eu/: (60, 'SS diff --git a/src/chrome/content/rules/ON24-mismatches.xml b/src/chrome/content/rules/ON24-mismatches.xml index ea98f8a55d62..7ba025e6d13a 100644 --- a/src/chrome/content/rules/ON24-mismatches.xml +++ b/src/chrome/content/rules/ON24-mismatches.xml @@ -2,7 +2,6 @@ - + diff --git a/src/chrome/content/rules/ON24.xml b/src/chrome/content/rules/ON24.xml index 9152ad2a81c7..959921f3c30f 100644 --- a/src/chrome/content/rules/ON24.xml +++ b/src/chrome/content/rules/ON24.xml @@ -15,7 +15,10 @@ - + + + + - - + + + - + diff --git a/src/chrome/content/rules/ONEweb.xml b/src/chrome/content/rules/ONEweb.xml index b3933dfe462f..77350171057c 100644 --- a/src/chrome/content/rules/ONEweb.xml +++ b/src/chrome/content/rules/ONEweb.xml @@ -20,4 +20,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/ONOrobot.org.xml b/src/chrome/content/rules/ONOrobot.org.xml index 6b58c7f1fe14..13639039a86d 100644 --- a/src/chrome/content/rules/ONOrobot.org.xml +++ b/src/chrome/content/rules/ONOrobot.org.xml @@ -7,7 +7,7 @@ Fetch error: http://www.onorobot.org/ => https://www.onorobot.org/: (28, 'Connec For other Tactical Technology coverage, see Tactical_Tech.org.xml. --> - + diff --git a/src/chrome/content/rules/OODA.com.xml b/src/chrome/content/rules/OODA.com.xml index a7a004a19903..76444cab1c60 100644 --- a/src/chrome/content/rules/OODA.com.xml +++ b/src/chrome/content/rules/OODA.com.xml @@ -29,4 +29,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/OODA_Loop.com.xml b/src/chrome/content/rules/OODA_Loop.com.xml index 0802414ea563..2ae58d4c2989 100644 --- a/src/chrome/content/rules/OODA_Loop.com.xml +++ b/src/chrome/content/rules/OODA_Loop.com.xml @@ -31,4 +31,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/OPM.gov.xml b/src/chrome/content/rules/OPM.gov.xml index fd986d0c3ee1..d82a941b8725 100644 --- a/src/chrome/content/rules/OPM.gov.xml +++ b/src/chrome/content/rules/OPM.gov.xml @@ -1,44 +1,16 @@ - - - - - - - - - + + + + + + + + - - - - - - - - - - + + - - + diff --git a/src/chrome/content/rules/OPML.xml b/src/chrome/content/rules/OPML.xml deleted file mode 100644 index d6eaa1578216..000000000000 --- a/src/chrome/content/rules/OPML.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/OPNsense.org.xml b/src/chrome/content/rules/OPNsense.org.xml index 172e6bc46e6b..7796ac86608d 100644 --- a/src/chrome/content/rules/OPNsense.org.xml +++ b/src/chrome/content/rules/OPNsense.org.xml @@ -20,7 +20,7 @@ --> - + https://orafarm.com/: Too many redirects whi Fetch error: http://www.orafarm.com/ => https://www.orafarm.com/: Too many redirects while fetching 'https://www.orafarm.com/' --> - + @@ -16,4 +16,4 @@ Fetch error: http://www.orafarm.com/ => https://www.orafarm.com/: Too many redir - \ No newline at end of file + diff --git a/src/chrome/content/rules/ORF.at.xml b/src/chrome/content/rules/ORF.at.xml new file mode 100644 index 000000000000..a70413afa08e --- /dev/null +++ b/src/chrome/content/rules/ORF.at.xml @@ -0,0 +1,254 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/OReilly-Media-mismatches.xml b/src/chrome/content/rules/OReilly-Media-mismatches.xml deleted file mode 100644 index b06db233b869..000000000000 --- a/src/chrome/content/rules/OReilly-Media-mismatches.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/OReilly-Media.xml b/src/chrome/content/rules/OReilly-Media.xml deleted file mode 100644 index 6075ab0e2522..000000000000 --- a/src/chrome/content/rules/OReilly-Media.xml +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/OReilly.com.xml b/src/chrome/content/rules/OReilly.com.xml new file mode 100644 index 000000000000..e98f96959caf --- /dev/null +++ b/src/chrome/content/rules/OReilly.com.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/OS.uk.xml b/src/chrome/content/rules/OS.uk.xml index 44c08a1c3e94..ac0a6d7dfc7c 100644 --- a/src/chrome/content/rules/OS.uk.xml +++ b/src/chrome/content/rules/OS.uk.xml @@ -8,7 +8,7 @@ - + - - - + - - - - + + diff --git a/src/chrome/content/rules/OSDC.com.au.xml b/src/chrome/content/rules/OSDC.com.au.xml index 12839c966f2f..8ff15ffdb951 100644 --- a/src/chrome/content/rules/OSDC.com.au.xml +++ b/src/chrome/content/rules/OSDC.com.au.xml @@ -14,7 +14,7 @@ Fetch error: http://www.osdc.com.au/ => https://2015.osdc.com.au/: (60, 'SSL cer - 2015.osdc.com.au --> - + @@ -30,7 +30,7 @@ Fetch error: http://www.osdc.com.au/ => https://2015.osdc.com.au/: (60, 'SSL cer --> - + - - - - - - - - - - - - diff --git a/src/chrome/content/rules/OSGeo.org.xml b/src/chrome/content/rules/OSGeo.org.xml index 82a75e97a9e9..450f71b365b5 100644 --- a/src/chrome/content/rules/OSGeo.org.xml +++ b/src/chrome/content/rules/OSGeo.org.xml @@ -1,108 +1,79 @@ - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + + diff --git a/src/chrome/content/rules/OSI_Codes.xml b/src/chrome/content/rules/OSI_Codes.xml index c5d8bd563948..1b78b115faa4 100644 --- a/src/chrome/content/rules/OSI_Codes.xml +++ b/src/chrome/content/rules/OSI_Codes.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://osicodesinc.com/ => https://osicodesinc.com/: (51, "SSL: no alternative certificate subject name matches target host name 'osicodesinc.com'") --> - + @@ -12,4 +12,4 @@ Fetch error: http://osicodesinc.com/ => https://osicodesinc.com/: (51, "SSL: no - \ No newline at end of file + diff --git a/src/chrome/content/rules/OSM_Group.xml b/src/chrome/content/rules/OSM_Group.xml index 8b163908c07a..6783a2d11703 100644 --- a/src/chrome/content/rules/OSM_Group.xml +++ b/src/chrome/content/rules/OSM_Group.xml @@ -9,7 +9,7 @@ Fetch error: http://www.osmglobal.com/ => https://www.osmglobal.com/: (35, 'erro - ^ (mismatched, CN: sip.osmglobal.com) --> - + @@ -21,4 +21,4 @@ Fetch error: http://www.osmglobal.com/ => https://www.osmglobal.com/: (35, 'erro - \ No newline at end of file + diff --git a/src/chrome/content/rules/OSNews.com.xml b/src/chrome/content/rules/OSNews.com.xml new file mode 100644 index 000000000000..e28d33b04371 --- /dev/null +++ b/src/chrome/content/rules/OSNews.com.xml @@ -0,0 +1,11 @@ + + + + + + + diff --git a/src/chrome/content/rules/OSR_Foundation.org-problematic.xml b/src/chrome/content/rules/OSR_Foundation.org-problematic.xml index 3da4234a4bc0..4b2df931638c 100644 --- a/src/chrome/content/rules/OSR_Foundation.org-problematic.xml +++ b/src/chrome/content/rules/OSR_Foundation.org-problematic.xml @@ -1,5 +1,5 @@ diff --git a/src/chrome/content/rules/OSU.edu-falsemixed.xml b/src/chrome/content/rules/OSU.edu-falsemixed.xml index f8ce1992d317..8c1912f9a71e 100644 --- a/src/chrome/content/rules/OSU.edu-falsemixed.xml +++ b/src/chrome/content/rules/OSU.edu-falsemixed.xml @@ -6,7 +6,7 @@ Fetch error: http://footprint.osu.edu/ => https://footprint.osu.edu/: (51, "SSL: For rules not causing false/broken MCB, see Ohio-State-University.xml. --> - + @@ -30,7 +30,7 @@ Fetch error: http://footprint.osu.edu/ => https://footprint.osu.edu/: (51, "SSL: - + - + - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/OS_Systems.xml b/src/chrome/content/rules/OS_Systems.xml index bf1fb672c293..85d3a3898ae2 100644 --- a/src/chrome/content/rules/OS_Systems.xml +++ b/src/chrome/content/rules/OS_Systems.xml @@ -14,4 +14,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/OSwatch.net.xml b/src/chrome/content/rules/OSwatch.net.xml deleted file mode 100644 index e6565d81ef45..000000000000 --- a/src/chrome/content/rules/OSwatch.net.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/OU.edu.xml b/src/chrome/content/rules/OU.edu.xml index ded9bc3c4f4e..1f5b3a21689c 100644 --- a/src/chrome/content/rules/OU.edu.xml +++ b/src/chrome/content/rules/OU.edu.xml @@ -1,82 +1,35 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/OUYA.xml b/src/chrome/content/rules/OUYA.xml deleted file mode 100644 index a0ad96bd362d..000000000000 --- a/src/chrome/content/rules/OUYA.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/OVH.us.xml b/src/chrome/content/rules/OVH.us.xml index 2a0321bd6b4f..7be032785227 100644 --- a/src/chrome/content/rules/OVH.us.xml +++ b/src/chrome/content/rules/OVH.us.xml @@ -14,7 +14,7 @@ Fetch error: http://forum.ovh.us/ => https://forum.ovh.us/: (60, 'SSL certificat - forum.ovh.us --> - + diff --git a/src/chrome/content/rules/OVPN.xml b/src/chrome/content/rules/OVPN.xml index 6aeef8a7fa7a..066143b09282 100644 --- a/src/chrome/content/rules/OVPN.xml +++ b/src/chrome/content/rules/OVPN.xml @@ -10,7 +10,7 @@ - board - cp --> - + - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Oak-Ridge-National-Laboratory.xml b/src/chrome/content/rules/Oak-Ridge-National-Laboratory.xml index 91c22d8e981d..a2467ac1040d 100644 --- a/src/chrome/content/rules/Oak-Ridge-National-Laboratory.xml +++ b/src/chrome/content/rules/Oak-Ridge-National-Laboratory.xml @@ -158,7 +158,7 @@ Fetch error: http://sustainability-ornl.org/ => https://sustainability-ornl.org/ ˢ Secured by us --> - + diff --git a/src/chrome/content/rules/OakValleyChico.com.xml b/src/chrome/content/rules/OakValleyChico.com.xml new file mode 100644 index 000000000000..e8ba5504378e --- /dev/null +++ b/src/chrome/content/rules/OakValleyChico.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Oaklandish.xml b/src/chrome/content/rules/Oaklandish.xml index ddbb6097e5af..c4b8e0b35672 100644 --- a/src/chrome/content/rules/Oaklandish.xml +++ b/src/chrome/content/rules/Oaklandish.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/ObDev.at.xml b/src/chrome/content/rules/ObDev.at.xml index f0f80a5ede09..edb41b172b34 100644 --- a/src/chrome/content/rules/ObDev.at.xml +++ b/src/chrome/content/rules/ObDev.at.xml @@ -21,7 +21,7 @@ - + - + + diff --git a/src/chrome/content/rules/Oberlin_College.xml b/src/chrome/content/rules/Oberlin_College.xml index 93ce5f1f3ca0..a66cb7371f66 100644 --- a/src/chrome/content/rules/Oberlin_College.xml +++ b/src/chrome/content/rules/Oberlin_College.xml @@ -34,20 +34,24 @@ Fetch error: http://oncampus.csr.oberlin.edu/ => https://oncampus.csr.oberlin.ed - oncampus --> - + - - + + + + + + + - + - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Oblivia.vc.xml b/src/chrome/content/rules/Oblivia.vc.xml deleted file mode 100644 index e8d86fc6191a..000000000000 --- a/src/chrome/content/rules/Oblivia.vc.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Obnox.de.xml b/src/chrome/content/rules/Obnox.de.xml deleted file mode 100644 index 959362d341ea..000000000000 --- a/src/chrome/content/rules/Obnox.de.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/OboeInsight.com.xml b/src/chrome/content/rules/OboeInsight.com.xml new file mode 100644 index 000000000000..71bfb1f9c856 --- /dev/null +++ b/src/chrome/content/rules/OboeInsight.com.xml @@ -0,0 +1,17 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/ObsPol.be.xml b/src/chrome/content/rules/ObsPol.be.xml new file mode 100644 index 000000000000..759538e61f62 --- /dev/null +++ b/src/chrome/content/rules/ObsPol.be.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Occupy_Corporatism.com.xml b/src/chrome/content/rules/Occupy_Corporatism.com.xml index 2d3eca5d2f7e..b6e25ca4ea72 100644 --- a/src/chrome/content/rules/Occupy_Corporatism.com.xml +++ b/src/chrome/content/rules/Occupy_Corporatism.com.xml @@ -23,7 +23,7 @@ --> - + - - - - - - diff --git a/src/chrome/content/rules/Ocean-Climate.org.xml b/src/chrome/content/rules/Ocean-Climate.org.xml new file mode 100644 index 000000000000..2ccab69482c1 --- /dev/null +++ b/src/chrome/content/rules/Ocean-Climate.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/OceaniaBedCollection.com.xml b/src/chrome/content/rules/OceaniaBedCollection.com.xml new file mode 100644 index 000000000000..e82772487281 --- /dev/null +++ b/src/chrome/content/rules/OceaniaBedCollection.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/OceaniaCruises.com.xml b/src/chrome/content/rules/OceaniaCruises.com.xml new file mode 100644 index 000000000000..0aef6c30f203 --- /dev/null +++ b/src/chrome/content/rules/OceaniaCruises.com.xml @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Ocelot.li.xml b/src/chrome/content/rules/Ocelot.li.xml deleted file mode 100644 index be73dcc847e3..000000000000 --- a/src/chrome/content/rules/Ocelot.li.xml +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Oclaserver.com.xml b/src/chrome/content/rules/Oclaserver.com.xml index ff7b23ef37c8..2e3390f5a349 100644 --- a/src/chrome/content/rules/Oclaserver.com.xml +++ b/src/chrome/content/rules/Oclaserver.com.xml @@ -10,7 +10,7 @@ - + - - - - - - - diff --git a/src/chrome/content/rules/Octopuce.fr.xml b/src/chrome/content/rules/Octopuce.fr.xml index dc55e1245a9f..51776a9b0740 100644 --- a/src/chrome/content/rules/Octopuce.fr.xml +++ b/src/chrome/content/rules/Octopuce.fr.xml @@ -5,7 +5,7 @@ - + https://kuki.js.test.octopus ²: Invalid certificate --> - + diff --git a/src/chrome/content/rules/Oculu.com.xml b/src/chrome/content/rules/Oculu.com.xml index fd8f1704c14b..53e4dc5c1051 100644 --- a/src/chrome/content/rules/Oculu.com.xml +++ b/src/chrome/content/rules/Oculu.com.xml @@ -34,7 +34,8 @@ - + + @@ -43,4 +44,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Oculus.com.xml b/src/chrome/content/rules/Oculus.com.xml deleted file mode 100644 index 03bf25cb4860..000000000000 --- a/src/chrome/content/rules/Oculus.com.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/OculusVR.com.xml b/src/chrome/content/rules/OculusVR.com.xml new file mode 100644 index 000000000000..bd9b0c819d2a --- /dev/null +++ b/src/chrome/content/rules/OculusVR.com.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Oculus_VR.xml b/src/chrome/content/rules/Oculus_VR.xml deleted file mode 100644 index ba08ce6603e7..000000000000 --- a/src/chrome/content/rules/Oculus_VR.xml +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Odesk.by.xml b/src/chrome/content/rules/Odesk.by.xml index 4274960558da..b6f2b2cc98a7 100644 --- a/src/chrome/content/rules/Odesk.by.xml +++ b/src/chrome/content/rules/Odesk.by.xml @@ -7,7 +7,7 @@ Fetch error: http://www.odesk.by/ => https://odesk.by/: (7, 'Failed to connect t www: mismatched --> - + diff --git a/src/chrome/content/rules/Odoo.com.xml b/src/chrome/content/rules/Odoo.com.xml index 72d8ef9c6a54..f99c32c72ba5 100644 --- a/src/chrome/content/rules/Odoo.com.xml +++ b/src/chrome/content/rules/Odoo.com.xml @@ -26,7 +26,7 @@ Fetch error: http://demo1.odoo.com/ => https://demo1.odoo.com/: (60, 'SSL certif - www.odoo.com --> - + diff --git a/src/chrome/content/rules/Oe24.xml b/src/chrome/content/rules/Oe24.xml index 084bcfdf8f25..50bd9a9e6899 100644 --- a/src/chrome/content/rules/Oe24.xml +++ b/src/chrome/content/rules/Oe24.xml @@ -7,7 +7,7 @@ - + diff --git a/src/chrome/content/rules/Oeffentliche.de.xml b/src/chrome/content/rules/Oeffentliche.de.xml index 2bec06978d2f..0caacd27b7ca 100644 --- a/src/chrome/content/rules/Oeffentliche.de.xml +++ b/src/chrome/content/rules/Oeffentliche.de.xml @@ -16,7 +16,7 @@ --> - + http://oeticket.com/ (403) - - For other Eventim coverage, see Eventim.xml. + For other Eventim coverage, see Eventim.com.xml. Problematic subdomains: - - - ^ (mismatched, cert only matches www) - - - Many (most?) pages redirect to http. - + - ^ (timeout) + - m (refused) --> - - + - - - + + diff --git a/src/chrome/content/rules/Ofcom.org.uk-falsemixed.xml b/src/chrome/content/rules/Ofcom.org.uk-falsemixed.xml index 6fe3e8fc62b9..a27528efef3e 100644 --- a/src/chrome/content/rules/Ofcom.org.uk-falsemixed.xml +++ b/src/chrome/content/rules/Ofcom.org.uk-falsemixed.xml @@ -8,7 +8,7 @@ - + https://offensive-security.com/: (51, "SSL: no alternative certificate subject name matches target host name 'offensive-security.com'") - + Timeout: + cracker.offensive-security.com --> - - - + - + + - - - - - - - - - + diff --git a/src/chrome/content/rules/Offensive_Bits.com.xml b/src/chrome/content/rules/Offensive_Bits.com.xml index c8c4ff1e218e..fcf2c2df14c7 100644 --- a/src/chrome/content/rules/Offensive_Bits.com.xml +++ b/src/chrome/content/rules/Offensive_Bits.com.xml @@ -5,7 +5,7 @@ Fetch error: http://offensivebits.com/ => https://offensivebits.com/: (28, 'Conn Fetch error: http://www.offensivebits.com/ => https://www.offensivebits.com/: (28, 'Connection timed out after 20000 milliseconds') --> - + diff --git a/src/chrome/content/rules/Offerpop.com.xml b/src/chrome/content/rules/Offerpop.com.xml index 300b46b02eef..f31556fbca9d 100644 --- a/src/chrome/content/rules/Offerpop.com.xml +++ b/src/chrome/content/rules/Offerpop.com.xml @@ -25,7 +25,7 @@ Fetch error: http://images.offerpop.com/ => https://d3nxc88n0lpo37.cloudfront.ne - community.offerpop.com --> - + @@ -44,7 +44,7 @@ Fetch error: http://images.offerpop.com/ => https://d3nxc88n0lpo37.cloudfront.ne - + - - - - - - - - - - diff --git a/src/chrome/content/rules/Office-of-the-Commissioner-of-Lobbying-of-Canada.xml b/src/chrome/content/rules/Office-of-the-Commissioner-of-Lobbying-of-Canada.xml index 1e282477446a..5f912d29174a 100644 --- a/src/chrome/content/rules/Office-of-the-Commissioner-of-Lobbying-of-Canada.xml +++ b/src/chrome/content/rules/Office-of-the-Commissioner-of-Lobbying-of-Canada.xml @@ -4,12 +4,12 @@ Disabled by https-everywhere-checker because: Fetch error: http://ocl-cal.gc.ca/ => https://ocl-cal.gc.ca/eic/site/012.nsf/Intro: (51, "SSL: no alternative certificate subject name matches target host name 'ocl-cal.gc.ca'") --> - + - + - + diff --git a/src/chrome/content/rules/Office.com.xml b/src/chrome/content/rules/Office.com.xml index e3df71a2e217..efa57152f881 100644 --- a/src/chrome/content/rules/Office.com.xml +++ b/src/chrome/content/rules/Office.com.xml @@ -47,8 +47,8 @@ - - + + https://secure.officeleaks.com/: www: Redirects to http --> - + - + diff --git a/src/chrome/content/rules/Office_Depot.xml b/src/chrome/content/rules/Office_Depot.xml index 1dbba6a29e76..9b4be5b34a92 100644 --- a/src/chrome/content/rules/Office_Depot.xml +++ b/src/chrome/content/rules/Office_Depot.xml @@ -59,4 +59,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/OfficeofNationalAssessments.xml b/src/chrome/content/rules/OfficeofNationalAssessments.xml deleted file mode 100644 index e8351d6a6158..000000000000 --- a/src/chrome/content/rules/OfficeofNationalAssessments.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/OfficeofParliamentaryCounsel.xml b/src/chrome/content/rules/OfficeofParliamentaryCounsel.xml index a544b7d21770..6b06f343957f 100644 --- a/src/chrome/content/rules/OfficeofParliamentaryCounsel.xml +++ b/src/chrome/content/rules/OfficeofParliamentaryCounsel.xml @@ -4,10 +4,10 @@ Disabled by https-everywhere-checker because: Fetch error: http://opc.gov.au/ => https://www.opc.gov.au/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/OfficeoftheMigrationAgentsRegistrationAuthority.xml b/src/chrome/content/rules/OfficeoftheMigrationAgentsRegistrationAuthority.xml index 8d8fc67b7ef5..d889d827e975 100644 --- a/src/chrome/content/rules/OfficeoftheMigrationAgentsRegistrationAuthority.xml +++ b/src/chrome/content/rules/OfficeoftheMigrationAgentsRegistrationAuthority.xml @@ -1,7 +1,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Officer_Down_Memorial_Page.xml b/src/chrome/content/rules/Officer_Down_Memorial_Page.xml index 83fc403d5e9f..de88ca6d4834 100644 --- a/src/chrome/content/rules/Officer_Down_Memorial_Page.xml +++ b/src/chrome/content/rules/Officer_Down_Memorial_Page.xml @@ -14,7 +14,8 @@ - + + diff --git a/src/chrome/content/rules/Officeworks.com.au.xml b/src/chrome/content/rules/Officeworks.com.au.xml new file mode 100644 index 000000000000..88a0388e806f --- /dev/null +++ b/src/chrome/content/rules/Officeworks.com.au.xml @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Officeworks.xml b/src/chrome/content/rules/Officeworks.xml deleted file mode 100644 index df71f9c8ae15..000000000000 --- a/src/chrome/content/rules/Officeworks.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Officeworld.ch.xml b/src/chrome/content/rules/Officeworld.ch.xml new file mode 100644 index 000000000000..b6e4eb4bd8e6 --- /dev/null +++ b/src/chrome/content/rules/Officeworld.ch.xml @@ -0,0 +1,14 @@ + + + + + + + diff --git a/src/chrome/content/rules/Officiel-des-Vacances.com.xml b/src/chrome/content/rules/Officiel-des-Vacances.com.xml index c7dbad17c35f..48133137ea97 100644 --- a/src/chrome/content/rules/Officiel-des-Vacances.com.xml +++ b/src/chrome/content/rules/Officiel-des-Vacances.com.xml @@ -48,7 +48,7 @@ --> - + + + + + + + + + + diff --git a/src/chrome/content/rules/Ohio-State-University.xml b/src/chrome/content/rules/Ohio-State-University.xml index b3c45a7a9223..6d06fe575746 100644 --- a/src/chrome/content/rules/Ohio-State-University.xml +++ b/src/chrome/content/rules/Ohio-State-University.xml @@ -307,7 +307,7 @@ Fetch error: http://www.mansfield.osu.edu/ => https://www.mansfield.osu.edu/: (5 ˢ Secured by us --> - + @@ -848,8 +848,8 @@ Fetch error: http://www.mansfield.osu.edu/ => https://www.mansfield.osu.edu/: (5 - - + + https://upem.it.ohio-state.edu - css on www.gradsch from www.osu.edu * ˢ - Images, on: - + - nucleus.con from silverlight.dlservice.microsoft.com - nucleus.con from go2.microsoft.com - studentweb.con from nursing.osu.edu ˢ @@ -96,7 +96,7 @@ Fetch error: http://newman.uts.ohio-state.edu/ => https://upem.it.ohio-state.edu ˢ Secured by us --> - + @@ -180,8 +180,8 @@ Fetch error: http://newman.uts.ohio-state.edu/ => https://upem.it.ohio-state.edu - - + + https://proxy.ohiolink.edu/: (7, 'Fai - www.ohiolink.edu --> - + @@ -60,7 +60,7 @@ Fetch error: http://proxy.ohiolink.edu/ => https://proxy.ohiolink.edu/: (7, 'Fai - + https://ohling.com/: (51, "SSL: no alternative certificate subject name matches target host name 'ohling.com'") -Fetch error: http://www.ohling.com/ => https://www.ohling.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.ohling.com'") - -Disabled by https-everywhere-checker because: -Fetch error: http://ohling.com/ => https://ohling.com/: (28, 'Connection timed out after 10001 milliseconds') -Fetch error: http://www.ohling.com/ => https://www.ohling.com/: (28, 'Connection timed out after 10001 milliseconds') ---> - - - - - - - - - diff --git a/src/chrome/content/rules/Ohloh.xml b/src/chrome/content/rules/Ohloh.xml deleted file mode 100644 index 4365b0d17b1b..000000000000 --- a/src/chrome/content/rules/Ohloh.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Ohnward.com.xml b/src/chrome/content/rules/Ohnward.com.xml index f4c5a0a9f770..ecb73fda46d5 100644 --- a/src/chrome/content/rules/Ohnward.com.xml +++ b/src/chrome/content/rules/Ohnward.com.xml @@ -11,7 +11,7 @@ Fetch error: http://fas.ohnward.com/ => https://fas.ohnward.com/: (28, 'Connecti - www.fas.ohnward.com --> - + diff --git a/src/chrome/content/rules/Oilshell.org.xml b/src/chrome/content/rules/Oilshell.org.xml new file mode 100644 index 000000000000..7b16cad231c8 --- /dev/null +++ b/src/chrome/content/rules/Oilshell.org.xml @@ -0,0 +1,13 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Ojrq.net.xml b/src/chrome/content/rules/Ojrq.net.xml index 8d0bab200743..9084adf47069 100644 --- a/src/chrome/content/rules/Ojrq.net.xml +++ b/src/chrome/content/rules/Ojrq.net.xml @@ -27,7 +27,7 @@ - + - - - - - - - - - diff --git a/src/chrome/content/rules/OkCimg.com.xml b/src/chrome/content/rules/OkCimg.com.xml index 7577f3adce62..5150546df971 100644 --- a/src/chrome/content/rules/OkCimg.com.xml +++ b/src/chrome/content/rules/OkCimg.com.xml @@ -11,7 +11,7 @@ Fetch error: http://ads.okcimg.com/ => https://ads.okcimg.com/: (28, 'Operation - .okcimg.com --> - + @@ -30,7 +30,7 @@ Fetch error: http://ads.okcimg.com/ => https://ads.okcimg.com/: (28, 'Operation - + diff --git a/src/chrome/content/rules/OkCupid.xml b/src/chrome/content/rules/OkCupid.xml index b22d3e589fed..bc9f4c240e96 100644 --- a/src/chrome/content/rules/OkCupid.xml +++ b/src/chrome/content/rules/OkCupid.xml @@ -1,6 +1,5 @@ - + + + + + + + + diff --git a/src/chrome/content/rules/Okdiario.com.xml b/src/chrome/content/rules/Okdiario.com.xml new file mode 100644 index 000000000000..3c9b76537c11 --- /dev/null +++ b/src/chrome/content/rules/Okdiario.com.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Okoun.cz.xml b/src/chrome/content/rules/Okoun.cz.xml index 5280de9e2551..20548a066dcd 100644 --- a/src/chrome/content/rules/Okoun.cz.xml +++ b/src/chrome/content/rules/Okoun.cz.xml @@ -8,5 +8,4 @@ - diff --git a/src/chrome/content/rules/Okta.com.xml b/src/chrome/content/rules/Okta.com.xml index d6b1b2ca6c82..4f03efe73fd0 100644 --- a/src/chrome/content/rules/Okta.com.xml +++ b/src/chrome/content/rules/Okta.com.xml @@ -1,23 +1,15 @@ - - + - + @@ -42,16 +34,7 @@ Fetch error: http://community.okta.com/ => https://community.okta.com/: (60, 'SS --> - - - - - - - - - + diff --git a/src/chrome/content/rules/Olark.xml b/src/chrome/content/rules/Olark.xml index d45413363ee2..838de8fba91d 100644 --- a/src/chrome/content/rules/Olark.xml +++ b/src/chrome/content/rules/Olark.xml @@ -31,7 +31,7 @@ --> - + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Olioboard.com.xml b/src/chrome/content/rules/Olioboard.com.xml deleted file mode 100644 index 059235d330b1..000000000000 --- a/src/chrome/content/rules/Olioboard.com.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Ology.com-problematic.xml b/src/chrome/content/rules/Ology.com-problematic.xml index a68030d47846..c14f97601022 100644 --- a/src/chrome/content/rules/Ology.com-problematic.xml +++ b/src/chrome/content/rules/Ology.com-problematic.xml @@ -5,7 +5,7 @@ - + @@ -14,4 +14,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Ology.com.xml b/src/chrome/content/rules/Ology.com.xml deleted file mode 100644 index f6491b59b140..000000000000 --- a/src/chrome/content/rules/Ology.com.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Olx.pt.xml b/src/chrome/content/rules/Olx.pt.xml index 698472a904d0..b19f4fb2d4b6 100644 --- a/src/chrome/content/rules/Olx.pt.xml +++ b/src/chrome/content/rules/Olx.pt.xml @@ -1,7 +1,7 @@ diff --git a/src/chrome/content/rules/OmNovia-Technologies.xml b/src/chrome/content/rules/OmNovia-Technologies.xml index 540cb03bcf07..5873f34b2dde 100644 --- a/src/chrome/content/rules/OmNovia-Technologies.xml +++ b/src/chrome/content/rules/OmNovia-Technologies.xml @@ -3,7 +3,7 @@ - + + + + + + + + + diff --git a/src/chrome/content/rules/OmakaseWeb.com.xml b/src/chrome/content/rules/OmakaseWeb.com.xml index 2bed54c84ac0..1a429a0be70c 100644 --- a/src/chrome/content/rules/OmakaseWeb.com.xml +++ b/src/chrome/content/rules/OmakaseWeb.com.xml @@ -7,7 +7,7 @@ Fetch error: http://www.omakaseweb.com/ => https://www.omakaseweb.com/: (28, 'Co For other GMO coverage, see GMO_Internet.xml. --> - + diff --git a/src/chrome/content/rules/Omeda.xml b/src/chrome/content/rules/Omeda.xml index ce72a94e0582..05eef76d3011 100644 --- a/src/chrome/content/rules/Omeda.xml +++ b/src/chrome/content/rules/Omeda.xml @@ -4,7 +4,7 @@ - + + + + + + + + + + diff --git a/src/chrome/content/rules/OmniTI.com.xml b/src/chrome/content/rules/OmniTI.com.xml deleted file mode 100644 index c927eb690669..000000000000 --- a/src/chrome/content/rules/OmniTI.com.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/OmniTI.net.xml b/src/chrome/content/rules/OmniTI.net.xml deleted file mode 100644 index e9598a1478bb..000000000000 --- a/src/chrome/content/rules/OmniTI.net.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/OmniUpdate.com.xml b/src/chrome/content/rules/OmniUpdate.com.xml index 00d365d53992..8a2fcb00a828 100644 --- a/src/chrome/content/rules/OmniUpdate.com.xml +++ b/src/chrome/content/rules/OmniUpdate.com.xml @@ -18,13 +18,15 @@ - + + + + - + diff --git a/src/chrome/content/rules/Omniref.com.xml b/src/chrome/content/rules/Omniref.com.xml index 4b91868bf67b..99eebd43c747 100644 --- a/src/chrome/content/rules/Omniref.com.xml +++ b/src/chrome/content/rules/Omniref.com.xml @@ -11,7 +11,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://omniref.com/ => https://omniref.com/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/Omnirom.org.xml b/src/chrome/content/rules/Omnirom.org.xml index 58f85d7d0689..673bd965a6c9 100644 --- a/src/chrome/content/rules/Omnirom.org.xml +++ b/src/chrome/content/rules/Omnirom.org.xml @@ -1,6 +1,18 @@ + - - - + + + + + + + + + + + + - diff --git a/src/chrome/content/rules/Omnitec.xml b/src/chrome/content/rules/Omnitec.xml deleted file mode 100644 index c8c21cec3c7b..000000000000 --- a/src/chrome/content/rules/Omnitec.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Omnitec_Inc.com.xml b/src/chrome/content/rules/Omnitec_Inc.com.xml deleted file mode 100644 index e7be7e8a5c38..000000000000 --- a/src/chrome/content/rules/Omnitec_Inc.com.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Omniture.com.xml b/src/chrome/content/rules/Omniture.com.xml index 42bf9668ab05..b9e8d6b5dcaa 100644 --- a/src/chrome/content/rules/Omniture.com.xml +++ b/src/chrome/content/rules/Omniture.com.xml @@ -42,7 +42,7 @@ --> - + - + https://on-disk.com/: (60, 'SSL certificate Cert only matches ^on-disk.com --> - + - + diff --git a/src/chrome/content/rules/On-web.fr.xml b/src/chrome/content/rules/On-web.fr.xml index 6148f9680538..019fac33c5c9 100644 --- a/src/chrome/content/rules/On-web.fr.xml +++ b/src/chrome/content/rules/On-web.fr.xml @@ -27,4 +27,4 @@ Fetch error: http://on-web.fr/ => https://www.planet-work.com/: (28, 'Operation - \ No newline at end of file + diff --git a/src/chrome/content/rules/OnApp.com.xml b/src/chrome/content/rules/OnApp.com.xml index 4ee5ea66f0a0..91218595539c 100644 --- a/src/chrome/content/rules/OnApp.com.xml +++ b/src/chrome/content/rules/OnApp.com.xml @@ -29,7 +29,7 @@ - + https://blog.onlive.com/: (51, "SSL: no * Mismatched --> - + - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/OnSugar.xml b/src/chrome/content/rules/OnSugar.xml index 0e5785405ed4..305e136916ff 100644 --- a/src/chrome/content/rules/OnSugar.xml +++ b/src/chrome/content/rules/OnSugar.xml @@ -12,11 +12,9 @@ 301s back to www. --> - - - + - + - + - - - - - - - - - - - - + + + - + diff --git a/src/chrome/content/rules/Onarbor.com.xml b/src/chrome/content/rules/Onarbor.com.xml index 4717071e2923..6870a82887dd 100644 --- a/src/chrome/content/rules/Onarbor.com.xml +++ b/src/chrome/content/rules/Onarbor.com.xml @@ -5,7 +5,7 @@ Fetch error: http://onarbor.com/ => https://onarbor.com/: (7, 'Failed to connect Fetch error: http://www.onarbor.com/ => https://www.onarbor.com/: (7, 'Failed to connect to www.onarbor.com port 443: Connection refused') --> - + diff --git a/src/chrome/content/rules/OnboardKit.com.xml b/src/chrome/content/rules/OnboardKit.com.xml deleted file mode 100644 index ff85203253b4..000000000000 --- a/src/chrome/content/rules/OnboardKit.com.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Onclickads.net.xml b/src/chrome/content/rules/Onclickads.net.xml index 57b80cc34cf6..f533a3ed9d0c 100644 --- a/src/chrome/content/rules/Onclickads.net.xml +++ b/src/chrome/content/rules/Onclickads.net.xml @@ -21,7 +21,7 @@ --> - + https://ondarossa.info/: (51, "SSL: no alternative certificate subject name matches target host name 'ondarossa.info'") -Fetch error: http://web.ondarossa.info/ => https://web.ondarossa.info/: (51, "SSL: no alternative certificate subject name matches target host name 'web.ondarossa.info'") - - Mixed content: - - - Image on www from $self * - - * Secured by us + Invalid certificate: + ondarossa.info + dev.ondarossa.info + mail.ondarossa.info + player.ondarossa.info + techrec.ondarossa.info + web.ondarossa.info + + Login required: + autogestione.ondarossa.info + edicola.ondarossa.info + megaror.ondarossa.info + rec.ondarossa.info + webmail.ondarossa.info + webmail2.ondarossa.info --> - + - - + + + + diff --git a/src/chrome/content/rules/One-Good-Driver.xml b/src/chrome/content/rules/One-Good-Driver.xml deleted file mode 100644 index ee224ffaa0be..000000000000 --- a/src/chrome/content/rules/One-Good-Driver.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/One2Buy.xml b/src/chrome/content/rules/One2Buy.xml index 7d0278a70123..0b2fe760929c 100644 --- a/src/chrome/content/rules/One2Buy.xml +++ b/src/chrome/content/rules/One2Buy.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/OneBookShelf.xml b/src/chrome/content/rules/OneBookShelf.xml index 2da78c43972a..56698596b203 100644 --- a/src/chrome/content/rules/OneBookShelf.xml +++ b/src/chrome/content/rules/OneBookShelf.xml @@ -1,13 +1,10 @@ - - + - - - @@ -47,7 +42,5 @@ Fetch error: http://www.dndclassics.com/ => https://www.dndclassics.com/: (60, ' - - diff --git a/src/chrome/content/rules/OneCloudSecurity.com.xml b/src/chrome/content/rules/OneCloudSecurity.com.xml index e3dcd135488f..60b73579a31b 100644 --- a/src/chrome/content/rules/OneCloudSecurity.com.xml +++ b/src/chrome/content/rules/OneCloudSecurity.com.xml @@ -11,7 +11,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://onecloudsecurity.com/ => https://onecloudsecurity.com/: Too many redirects while fetching 'https://onecloudsecurity.com/' --> - + @@ -22,4 +22,4 @@ Fetch error: http://onecloudsecurity.com/ => https://onecloudsecurity.com/: Too - \ No newline at end of file + diff --git a/src/chrome/content/rules/OneExchange.xml b/src/chrome/content/rules/OneExchange.xml index 05444727f1d9..1484378a0979 100644 --- a/src/chrome/content/rules/OneExchange.xml +++ b/src/chrome/content/rules/OneExchange.xml @@ -2,9 +2,8 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/OneMathematicalCat.org.xml b/src/chrome/content/rules/OneMathematicalCat.org.xml new file mode 100644 index 000000000000..5cfd0e2c6d10 --- /dev/null +++ b/src/chrome/content/rules/OneMathematicalCat.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/OneNetworkDirect.xml b/src/chrome/content/rules/OneNetworkDirect.xml index bbfade497558..c5c812456205 100644 --- a/src/chrome/content/rules/OneNetworkDirect.xml +++ b/src/chrome/content/rules/OneNetworkDirect.xml @@ -14,4 +14,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/OnePlus.net.xml b/src/chrome/content/rules/OnePlus.net.xml index a90f53d6a871..9eef18d8684b 100644 --- a/src/chrome/content/rules/OnePlus.net.xml +++ b/src/chrome/content/rules/OnePlus.net.xml @@ -27,7 +27,7 @@ - + - + + + + - - + - + - + https://onemancan.org/: (51, "SSL: no alte Fetch error: http://www.onemancan.org/ => https://www.onemancan.org/: (51, "SSL: no alternative certificate subject name matches target host name 'www.onemancan.org'") --> - + @@ -16,4 +16,4 @@ Fetch error: http://www.onemancan.org/ => https://www.onemancan.org/: (51, "SSL: - \ No newline at end of file + diff --git a/src/chrome/content/rules/One_Month.com.xml b/src/chrome/content/rules/One_Month.com.xml index f91c00f8d6e6..dc6ed777ef2d 100644 --- a/src/chrome/content/rules/One_Month.com.xml +++ b/src/chrome/content/rules/One_Month.com.xml @@ -43,7 +43,7 @@ Fetch error: http://refer.onemonth.com/ => https://refer.onemonth.com/: (60, 'SS * Secured by us --> - + diff --git a/src/chrome/content/rules/One_in_3_Campaign.xml b/src/chrome/content/rules/One_in_3_Campaign.xml index 940733e85f88..e7a204ab164a 100644 --- a/src/chrome/content/rules/One_in_3_Campaign.xml +++ b/src/chrome/content/rules/One_in_3_Campaign.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Onebillion.org.uk.xml b/src/chrome/content/rules/Onebillion.org.uk.xml index c6cf5acb1256..836de864ea78 100644 --- a/src/chrome/content/rules/Onebillion.org.uk.xml +++ b/src/chrome/content/rules/Onebillion.org.uk.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.onebillion.org.uk/ => https://www.onebillion.org.uk/: (51, "SSL: no alternative certificate subject name matches target host name 'www.onebillion.org.uk'") --> - + diff --git a/src/chrome/content/rules/Onebitbug.me.xml b/src/chrome/content/rules/Onebitbug.me.xml index bff911ebd95e..152d083ceabc 100644 --- a/src/chrome/content/rules/Onebitbug.me.xml +++ b/src/chrome/content/rules/Onebitbug.me.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.onebitbug.me/ => https://www.onebitbug.me/: (51, "SSL: no alternative certificate subject name matches target host name 'www.onebitbug.me'") --> - + diff --git a/src/chrome/content/rules/Onepager.xml b/src/chrome/content/rules/Onepager.xml index b97ea74e835b..00f2fa728fda 100644 --- a/src/chrome/content/rules/Onepager.xml +++ b/src/chrome/content/rules/Onepager.xml @@ -16,4 +16,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Oneworld-Publications.com.xml b/src/chrome/content/rules/Oneworld-Publications.com.xml new file mode 100644 index 000000000000..742ae8197850 --- /dev/null +++ b/src/chrome/content/rules/Oneworld-Publications.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Onion.to.xml b/src/chrome/content/rules/Onion.to.xml index 123c4d5cf59b..bd206738d303 100644 --- a/src/chrome/content/rules/Onion.to.xml +++ b/src/chrome/content/rules/Onion.to.xml @@ -1,9 +1,19 @@ + + + + + + diff --git a/src/chrome/content/rules/Onion.xml b/src/chrome/content/rules/Onion.xml deleted file mode 100644 index d8b0bf799b4c..000000000000 --- a/src/chrome/content/rules/Onion.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/OnionCat.org.xml b/src/chrome/content/rules/OnionCat.org.xml index 29f49206b072..ec9425c5d26e 100644 --- a/src/chrome/content/rules/OnionCat.org.xml +++ b/src/chrome/content/rules/OnionCat.org.xml @@ -5,7 +5,7 @@ ^onioncat.org: Mismatched --> - + diff --git a/src/chrome/content/rules/OnionGit.eu.xml b/src/chrome/content/rules/OnionGit.eu.xml deleted file mode 100644 index c560893d8e34..000000000000 --- a/src/chrome/content/rules/OnionGit.eu.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/OnionShare.org.xml b/src/chrome/content/rules/OnionShare.org.xml index ca20806c20eb..387fde444eaa 100644 --- a/src/chrome/content/rules/OnionShare.org.xml +++ b/src/chrome/content/rules/OnionShare.org.xml @@ -1,10 +1,8 @@ - + - - + diff --git a/src/chrome/content/rules/OnionTip.com.xml b/src/chrome/content/rules/OnionTip.com.xml index d96d0b75a1de..3b5a55d7a948 100644 --- a/src/chrome/content/rules/OnionTip.com.xml +++ b/src/chrome/content/rules/OnionTip.com.xml @@ -5,7 +5,7 @@ Fetch error: http://oniontip.com/ => https://oniontip.com/: (7, 'Failed to conne Fetch error: http://www.oniontip.com/ => https://www.oniontip.com/: (7, 'Failed to connect to www.oniontip.com port 443: No route to host') --> - + diff --git a/src/chrome/content/rules/Online-Mahnantrag.de.xml b/src/chrome/content/rules/Online-Mahnantrag.de.xml index 349cebce3e92..e1ae3eb1668d 100644 --- a/src/chrome/content/rules/Online-Mahnantrag.de.xml +++ b/src/chrome/content/rules/Online-Mahnantrag.de.xml @@ -1,9 +1,17 @@ + + - + - diff --git a/src/chrome/content/rules/Online-Register.xml b/src/chrome/content/rules/Online-Register.xml index 98d8ce58527b..29368adc1429 100644 --- a/src/chrome/content/rules/Online-Register.xml +++ b/src/chrome/content/rules/Online-Register.xml @@ -10,7 +10,7 @@ - + diff --git a/src/chrome/content/rules/Online-convert.com.xml b/src/chrome/content/rules/Online-convert.com.xml index 9e67691b3dec..1c225e76e0d5 100644 --- a/src/chrome/content/rules/Online-convert.com.xml +++ b/src/chrome/content/rules/Online-convert.com.xml @@ -5,12 +5,19 @@ - + + + + + + + + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Online-metrix.net.xml b/src/chrome/content/rules/Online-metrix.net.xml index 67d4f64fb5a0..a0d2d6014740 100644 --- a/src/chrome/content/rules/Online-metrix.net.xml +++ b/src/chrome/content/rules/Online-metrix.net.xml @@ -3,7 +3,7 @@ - + - + + + + + + - - + diff --git a/src/chrome/content/rules/OnlineSBI.com.xml b/src/chrome/content/rules/OnlineSBI.com.xml index 26bfd61dea92..0a807e7fa2e1 100644 --- a/src/chrome/content/rules/OnlineSBI.com.xml +++ b/src/chrome/content/rules/OnlineSBI.com.xml @@ -1,57 +1,19 @@ - - - + + + - + @@ -65,24 +27,10 @@ Fetch error: http://cmp.onlinesbi.com/ => https://cmp.onlinesbi.com/: (28, 'Conn - - - - - - - - - - - - + - + + diff --git a/src/chrome/content/rules/OnlineShoes.com.xml b/src/chrome/content/rules/OnlineShoes.com.xml index b904a7528404..7aff1d87d490 100644 --- a/src/chrome/content/rules/OnlineShoes.com.xml +++ b/src/chrome/content/rules/OnlineShoes.com.xml @@ -8,10 +8,11 @@ Fetch error: http://onlineshoes.com/ => https://www.onlineshoes.com/: (6, 'Could - ^ (reset) --> - + - + + @@ -20,7 +21,6 @@ Fetch error: http://onlineshoes.com/ => https://www.onlineshoes.com/: (6, 'Could - + diff --git a/src/chrome/content/rules/Online_EMR.xml b/src/chrome/content/rules/Online_EMR.xml index 9da664051add..c57465fd4243 100644 --- a/src/chrome/content/rules/Online_EMR.xml +++ b/src/chrome/content/rules/Online_EMR.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Online_Wellness_Association.xml b/src/chrome/content/rules/Online_Wellness_Association.xml deleted file mode 100644 index d3d01ed9cd39..000000000000 --- a/src/chrome/content/rules/Online_Wellness_Association.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Onlinecreditcenter6.com.xml b/src/chrome/content/rules/Onlinecreditcenter6.com.xml index b419491cc38f..6c6973cfbc73 100644 --- a/src/chrome/content/rules/Onlinecreditcenter6.com.xml +++ b/src/chrome/content/rules/Onlinecreditcenter6.com.xml @@ -4,10 +4,10 @@ --> - + + - + diff --git a/src/chrome/content/rules/Onliner.by.xml b/src/chrome/content/rules/Onliner.by.xml new file mode 100644 index 000000000000..6eb2a904f925 --- /dev/null +++ b/src/chrome/content/rules/Onliner.by.xml @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Onlychange.com.xml b/src/chrome/content/rules/Onlychange.com.xml index ef5d3e9a80d2..13dc45e750df 100644 --- a/src/chrome/content/rules/Onlychange.com.xml +++ b/src/chrome/content/rules/Onlychange.com.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Onlyoffice.com.xml b/src/chrome/content/rules/Onlyoffice.com.xml new file mode 100644 index 000000000000..53f8c56a8751 --- /dev/null +++ b/src/chrome/content/rules/Onlyoffice.com.xml @@ -0,0 +1,15 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Onlyoffice.org.xml b/src/chrome/content/rules/Onlyoffice.org.xml new file mode 100644 index 000000000000..c5a161ec5489 --- /dev/null +++ b/src/chrome/content/rules/Onlyoffice.org.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Ono.xml b/src/chrome/content/rules/Ono.xml index e032b45ad8bc..d745ed0bbe6c 100644 --- a/src/chrome/content/rules/Ono.xml +++ b/src/chrome/content/rules/Ono.xml @@ -11,4 +11,4 @@ --> - \ No newline at end of file + diff --git a/src/chrome/content/rules/Onpage.org.xml b/src/chrome/content/rules/Onpage.org.xml new file mode 100644 index 000000000000..279ed74d38f7 --- /dev/null +++ b/src/chrome/content/rules/Onpage.org.xml @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Onsalesit.com.xml b/src/chrome/content/rules/Onsalesit.com.xml index c419d51584be..adb28b53ef28 100644 --- a/src/chrome/content/rules/Onsalesit.com.xml +++ b/src/chrome/content/rules/Onsalesit.com.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Onstream-Media.xml b/src/chrome/content/rules/Onstream-Media.xml index 0f164a215d77..c40129b883ad 100644 --- a/src/chrome/content/rules/Onstream-Media.xml +++ b/src/chrome/content/rules/Onstream-Media.xml @@ -15,7 +15,6 @@ - + diff --git a/src/chrome/content/rules/Onswipe.com.xml b/src/chrome/content/rules/Onswipe.com.xml new file mode 100644 index 000000000000..bcc19eb84d92 --- /dev/null +++ b/src/chrome/content/rules/Onswipe.com.xml @@ -0,0 +1,12 @@ + + + + + + + diff --git a/src/chrome/content/rules/Onswipe.xml b/src/chrome/content/rules/Onswipe.xml deleted file mode 100644 index fab6747fdde1..000000000000 --- a/src/chrome/content/rules/Onswipe.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Ontario_Minor_Hockey_Association.xml b/src/chrome/content/rules/Ontario_Minor_Hockey_Association.xml index c74751da19e4..079d81e867a3 100644 --- a/src/chrome/content/rules/Ontario_Minor_Hockey_Association.xml +++ b/src/chrome/content/rules/Ontario_Minor_Hockey_Association.xml @@ -7,7 +7,7 @@ Fetch error: http://www.omha.net/ => https://www.omha.net/: (51, "SSL: no altern Disabled by https-everywhere-checker because: Fetch error: http://omha.net/ => https://omha.net/: (51, "SSL: no alternative certificate subject name matches target host name 'omha.net'") --> - + @@ -18,4 +18,4 @@ Fetch error: http://omha.net/ => https://omha.net/: (51, "SSL: no alternative ce - \ No newline at end of file + diff --git a/src/chrome/content/rules/Onthe.io.xml b/src/chrome/content/rules/Onthe.io.xml index c38182fe66ef..995e5e61610f 100644 --- a/src/chrome/content/rules/Onthe.io.xml +++ b/src/chrome/content/rules/Onthe.io.xml @@ -24,7 +24,7 @@ --> - + https://dl2.oo-software. Active mixed content: - corp* - + * Secured by us More O&O rulesets: - Syspectr.com --> - + diff --git a/src/chrome/content/rules/Ookla.xml b/src/chrome/content/rules/Ookla.xml index 355d2c426079..a2edd227a1fd 100644 --- a/src/chrome/content/rules/Ookla.xml +++ b/src/chrome/content/rules/Ookla.xml @@ -23,7 +23,7 @@ - + - + diff --git a/src/chrome/content/rules/Ooyala.xml b/src/chrome/content/rules/Ooyala.xml index f1213d63d2a4..0dc7450889c3 100644 --- a/src/chrome/content/rules/Ooyala.xml +++ b/src/chrome/content/rules/Ooyala.xml @@ -56,7 +56,7 @@ - + diff --git a/src/chrome/content/rules/Op5.com.xml b/src/chrome/content/rules/Op5.com.xml index 5990cc68d189..bcff4aaf3b31 100644 --- a/src/chrome/content/rules/Op5.com.xml +++ b/src/chrome/content/rules/Op5.com.xml @@ -5,7 +5,7 @@ - + https://www.opalang.org/: (28, 'Connecti - forum (ditto) --> - + - + diff --git a/src/chrome/content/rules/Open-Invention-Network.xml b/src/chrome/content/rules/Open-Invention-Network.xml deleted file mode 100644 index 8483e753f07a..000000000000 --- a/src/chrome/content/rules/Open-Invention-Network.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Open-Source-Education-Center.xml b/src/chrome/content/rules/Open-Source-Education-Center.xml index e78389cb6af6..3f23d4240994 100644 --- a/src/chrome/content/rules/Open-Source-Education-Center.xml +++ b/src/chrome/content/rules/Open-Source-Education-Center.xml @@ -10,7 +10,7 @@ - + - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Open.ac.uk.xml b/src/chrome/content/rules/Open.ac.uk.xml index 6d3235b6a4e1..ef936c2f6a0a 100644 --- a/src/chrome/content/rules/Open.ac.uk.xml +++ b/src/chrome/content/rules/Open.ac.uk.xml @@ -48,6 +48,13 @@ - + + + + + + + diff --git a/src/chrome/content/rules/OpenAI.com.xml b/src/chrome/content/rules/OpenAI.com.xml index 5653aec0237e..69aa221457cb 100644 --- a/src/chrome/content/rules/OpenAI.com.xml +++ b/src/chrome/content/rules/OpenAI.com.xml @@ -4,7 +4,7 @@ - + http://www.openadultdirectory - \ No newline at end of file + diff --git a/src/chrome/content/rules/OpenAthens.xml b/src/chrome/content/rules/OpenAthens.xml deleted file mode 100644 index e1b08b61c656..000000000000 --- a/src/chrome/content/rules/OpenAthens.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/OpenBL.org.xml b/src/chrome/content/rules/OpenBL.org.xml deleted file mode 100644 index 09b2dc64c166..000000000000 --- a/src/chrome/content/rules/OpenBL.org.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/OpenBSD.org.xml b/src/chrome/content/rules/OpenBSD.org.xml index 183887da3e8c..dc5b473d84da 100644 --- a/src/chrome/content/rules/OpenBSD.org.xml +++ b/src/chrome/content/rules/OpenBSD.org.xml @@ -1,4 +1,4 @@ - - + - + - - - - - - - - diff --git a/src/chrome/content/rules/OpenCCC.xml b/src/chrome/content/rules/OpenCCC.xml index 3219e5c0d253..261f0eeafb53 100644 --- a/src/chrome/content/rules/OpenCCC.xml +++ b/src/chrome/content/rules/OpenCCC.xml @@ -8,8 +8,7 @@ - + @@ -23,4 +22,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/OpenCPU.org.xml b/src/chrome/content/rules/OpenCPU.org.xml index 390e7860eea8..157bf2eb32e2 100644 --- a/src/chrome/content/rules/OpenCPU.org.xml +++ b/src/chrome/content/rules/OpenCPU.org.xml @@ -16,7 +16,7 @@ --> - + https://opencsw.org/: (51, "SSL: no alternat * Redirects to http --> - + diff --git a/src/chrome/content/rules/OpenCV.org.xml b/src/chrome/content/rules/OpenCV.org.xml new file mode 100644 index 000000000000..2c532ae70cff --- /dev/null +++ b/src/chrome/content/rules/OpenCV.org.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/OpenClassrooms.xml b/src/chrome/content/rules/OpenClassrooms.xml index 5a9178556618..34ef978b83d9 100644 --- a/src/chrome/content/rules/OpenClassrooms.xml +++ b/src/chrome/content/rules/OpenClassrooms.xml @@ -26,7 +26,7 @@ - + https://support.opencorporate - www.opencorporates.com --> - + diff --git a/src/chrome/content/rules/OpenDZ.xml b/src/chrome/content/rules/OpenDZ.xml index 0be508739abc..043a501b1706 100644 --- a/src/chrome/content/rules/OpenDZ.xml +++ b/src/chrome/content/rules/OpenDZ.xml @@ -8,7 +8,7 @@ - + diff --git a/src/chrome/content/rules/OpenDefinition.org.xml b/src/chrome/content/rules/OpenDefinition.org.xml new file mode 100644 index 000000000000..2ea9fc7dcfab --- /dev/null +++ b/src/chrome/content/rules/OpenDefinition.org.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/OpenF2.org.xml b/src/chrome/content/rules/OpenF2.org.xml index 5270501543fa..f1ade5984003 100644 --- a/src/chrome/content/rules/OpenF2.org.xml +++ b/src/chrome/content/rules/OpenF2.org.xml @@ -60,9 +60,15 @@ --> - + + - + + + + + + @@ -72,10 +78,7 @@ - - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/OpenFabrics-Alliance.xml b/src/chrome/content/rules/OpenFabrics-Alliance.xml index 32565259dfa9..7271fba7a62f 100644 --- a/src/chrome/content/rules/OpenFabrics-Alliance.xml +++ b/src/chrome/content/rules/OpenFabrics-Alliance.xml @@ -20,7 +20,7 @@ - + - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/OpenGL.xml b/src/chrome/content/rules/OpenGL.xml index 6351e0e2e771..f7bae68c5b06 100644 --- a/src/chrome/content/rules/OpenGL.xml +++ b/src/chrome/content/rules/OpenGL.xml @@ -17,7 +17,7 @@ --> - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/OpenHub.net.xml b/src/chrome/content/rules/OpenHub.net.xml new file mode 100644 index 000000000000..627c44e9213c --- /dev/null +++ b/src/chrome/content/rules/OpenHub.net.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/OpenIT.xml b/src/chrome/content/rules/OpenIT.xml index d765413cae45..593399287f47 100644 --- a/src/chrome/content/rules/OpenIT.xml +++ b/src/chrome/content/rules/OpenIT.xml @@ -7,7 +7,7 @@ Fetch error: http://www.openit.de/ => https://www.openit.de/: (60, 'SSL certific Cert only matches www. --> - + diff --git a/src/chrome/content/rules/OpenITC.co.uk.xml b/src/chrome/content/rules/OpenITC.co.uk.xml index 35caecad9b4a..55907b5c0877 100644 --- a/src/chrome/content/rules/OpenITC.co.uk.xml +++ b/src/chrome/content/rules/OpenITC.co.uk.xml @@ -11,7 +11,7 @@ Fetch error: http://forums.openitc.co.uk/ => https://forums.openitc.co.uk/: (7, - forums.openitc.co.uk --> - + diff --git a/src/chrome/content/rules/OpenITP.org.xml b/src/chrome/content/rules/OpenITP.org.xml index 0846ca19247c..7a5b37c794b5 100644 --- a/src/chrome/content/rules/OpenITP.org.xml +++ b/src/chrome/content/rules/OpenITP.org.xml @@ -30,7 +30,7 @@ Fetch error: http://www.openitp.org/ => https://www.openitp.org/: (28, 'Connecti ˢ Secured by us --> - + @@ -41,7 +41,7 @@ Fetch error: http://www.openitp.org/ => https://www.openitp.org/: (28, 'Connecti - + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/OpenLayers.org.xml b/src/chrome/content/rules/OpenLayers.org.xml new file mode 100644 index 000000000000..90d31d98ca5b --- /dev/null +++ b/src/chrome/content/rules/OpenLayers.org.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/OpenMPT.xml b/src/chrome/content/rules/OpenMPT.xml index 816f1b8042e9..83cda6d56103 100644 --- a/src/chrome/content/rules/OpenMPT.xml +++ b/src/chrome/content/rules/OpenMPT.xml @@ -11,11 +11,11 @@ - + - + - + diff --git a/src/chrome/content/rules/OpenMW.xml b/src/chrome/content/rules/OpenMW.xml index bd5b0c6a5759..3e374bd06ca0 100644 --- a/src/chrome/content/rules/OpenMW.xml +++ b/src/chrome/content/rules/OpenMW.xml @@ -27,7 +27,7 @@ - + - - - - - - - - - - - - diff --git a/src/chrome/content/rules/OpenMandriva.org.xml b/src/chrome/content/rules/OpenMandriva.org.xml index 9dbd05ccceae..d015929f3db2 100644 --- a/src/chrome/content/rules/OpenMandriva.org.xml +++ b/src/chrome/content/rules/OpenMandriva.org.xml @@ -26,7 +26,7 @@ Fetch error: http://archives.forums.openmandriva.org/ => https://archives.forums www-static.openmandriva.org --> - + diff --git a/src/chrome/content/rules/OpenNIC.org.xml b/src/chrome/content/rules/OpenNIC.org.xml index 2da7566a3319..e83e4f271d0c 100644 --- a/src/chrome/content/rules/OpenNIC.org.xml +++ b/src/chrome/content/rules/OpenNIC.org.xml @@ -1,34 +1,34 @@ - - + - + + - - - - + - + diff --git a/src/chrome/content/rules/OpenPGP-in-Russia.xml b/src/chrome/content/rules/OpenPGP-in-Russia.xml index ec17e0e34e75..494e1c7e0615 100644 --- a/src/chrome/content/rules/OpenPGP-in-Russia.xml +++ b/src/chrome/content/rules/OpenPGP-in-Russia.xml @@ -9,7 +9,7 @@ - + diff --git a/src/chrome/content/rules/OpenPetition.de.xml b/src/chrome/content/rules/OpenPetition.de.xml index 6e85d569dc11..715bf63d2289 100644 --- a/src/chrome/content/rules/OpenPetition.de.xml +++ b/src/chrome/content/rules/OpenPetition.de.xml @@ -1,8 +1,8 @@ - - + + diff --git a/src/chrome/content/rules/OpenSC-Project.xml b/src/chrome/content/rules/OpenSC-Project.xml index 521811ffbeef..dad05979a6c6 100644 --- a/src/chrome/content/rules/OpenSC-Project.xml +++ b/src/chrome/content/rules/OpenSC-Project.xml @@ -10,7 +10,7 @@ - www.opensc-project.org --> - + diff --git a/src/chrome/content/rules/OpenSLR.org.xml b/src/chrome/content/rules/OpenSLR.org.xml new file mode 100644 index 000000000000..17d6b5768fda --- /dev/null +++ b/src/chrome/content/rules/OpenSLR.org.xml @@ -0,0 +1,10 @@ + + + + + + + diff --git a/src/chrome/content/rules/OpenSMTPD.org.xml b/src/chrome/content/rules/OpenSMTPD.org.xml new file mode 100644 index 000000000000..2fef7b2fe06f --- /dev/null +++ b/src/chrome/content/rules/OpenSMTPD.org.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/OpenSRS.com.xml b/src/chrome/content/rules/OpenSRS.com.xml index 552ab6a3a339..6953c006ce00 100644 --- a/src/chrome/content/rules/OpenSRS.com.xml +++ b/src/chrome/content/rules/OpenSRS.com.xml @@ -7,13 +7,16 @@ - + + - + + + @@ -22,7 +25,6 @@ - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/OpenSUSE.xml b/src/chrome/content/rules/OpenSUSE.xml index c83e0b712b0e..cabb6afb4964 100644 --- a/src/chrome/content/rules/OpenSUSE.xml +++ b/src/chrome/content/rules/OpenSUSE.xml @@ -1,75 +1,49 @@ - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/OpenSVC.xml b/src/chrome/content/rules/OpenSVC.xml index 51ac18b4a48b..1ad973e2033d 100644 --- a/src/chrome/content/rules/OpenSVC.xml +++ b/src/chrome/content/rules/OpenSVC.xml @@ -28,7 +28,7 @@ - + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/OpenShift.xml b/src/chrome/content/rules/OpenShift.xml index acf8c96e5fae..676f748d630e 100644 --- a/src/chrome/content/rules/OpenShift.xml +++ b/src/chrome/content/rules/OpenShift.xml @@ -8,7 +8,7 @@ - + https://developer.opensignal.com/: (6, 'Could not resolve host: developer.opensignal.com') - + Mismatch: + support.opensignal.com + Working URL not found: + data-api.opensignal.com + data-api-prod.opensignal.com + data-api-stag.opensignal.com + opensignal-api.opensignal.com + Timeout: + upload.opensignal.com --> - - - + - + + + + + + + + + + - - - + diff --git a/src/chrome/content/rules/OpenSnowMap.org.xml b/src/chrome/content/rules/OpenSnowMap.org.xml new file mode 100644 index 000000000000..0901fc80b3d9 --- /dev/null +++ b/src/chrome/content/rules/OpenSnowMap.org.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/OpenSocietyFoundations.org.xml b/src/chrome/content/rules/OpenSocietyFoundations.org.xml new file mode 100644 index 000000000000..201f40b904fd --- /dev/null +++ b/src/chrome/content/rules/OpenSocietyFoundations.org.xml @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/OpenStreetMap.de.xml b/src/chrome/content/rules/OpenStreetMap.de.xml index b039525ebaa0..4b184a523f7a 100644 --- a/src/chrome/content/rules/OpenStreetMap.de.xml +++ b/src/chrome/content/rules/OpenStreetMap.de.xml @@ -1,17 +1,40 @@ + + + + + + + + + - - - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/OpenStreetMap.org.xml b/src/chrome/content/rules/OpenStreetMap.org.xml deleted file mode 100644 index 2a87500bad93..000000000000 --- a/src/chrome/content/rules/OpenStreetMap.org.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/OpenTPX.org.xml b/src/chrome/content/rules/OpenTPX.org.xml deleted file mode 100644 index f4207a8a388a..000000000000 --- a/src/chrome/content/rules/OpenTPX.org.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/OpenTTD-expired.xml b/src/chrome/content/rules/OpenTTD-expired.xml deleted file mode 100644 index 87d9227a4b14..000000000000 --- a/src/chrome/content/rules/OpenTTD-expired.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/OpenTTD.xml b/src/chrome/content/rules/OpenTTD.xml index bf9651a15220..ab5876333eef 100644 --- a/src/chrome/content/rules/OpenTTD.xml +++ b/src/chrome/content/rules/OpenTTD.xml @@ -1,35 +1,45 @@ - - - - - - - - - - - - - - - - - - + - + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/OpenTable.lgbt.xml b/src/chrome/content/rules/OpenTable.lgbt.xml new file mode 100644 index 000000000000..bc49533aed74 --- /dev/null +++ b/src/chrome/content/rules/OpenTable.lgbt.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/OpenTopoMap.org.xml b/src/chrome/content/rules/OpenTopoMap.org.xml new file mode 100644 index 000000000000..745428fbc31a --- /dev/null +++ b/src/chrome/content/rules/OpenTopoMap.org.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/OpenVAS.org.xml b/src/chrome/content/rules/OpenVAS.org.xml deleted file mode 100644 index b2e9b23caee5..000000000000 --- a/src/chrome/content/rules/OpenVAS.org.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/OpenVPN.xml b/src/chrome/content/rules/OpenVPN.xml index 5d0dee1b69f3..c5a92a4f5098 100644 --- a/src/chrome/content/rules/OpenVPN.xml +++ b/src/chrome/content/rules/OpenVPN.xml @@ -1,23 +1,139 @@ - + Refused: + autodiscover.openvpn.net + do-pgmt.cloud.openvpn.net + localhost.openvpn.net + pgmt-client-tests.openvpn.net + pgmt-client-tests2.openvpn.net + ssltest.openvpn.net + + Time out: + apitest.openvpn.net + archive.openvpn.net + asirc.openvpn.net + asn3.openvpn.net + awsc.openvpn.net + backup.openvpn.net + beta.openvpn.net + billing.openvpn.net + billing-staging.openvpn.net + cftest.openvpn.net + connect.openvpn.net + crm.openvpn.net + dag.openvpn.net + dalweb.openvpn.net + dev.openvpn.net + dev1.openvpn.net + dev4.openvpn.net + dev8.openvpn.net + o1.email.openvpn.net + files.openvpn.net + hp.openvpn.net + hp-demo.openvpn.net + internal.openvpn.net + jenkins-test.openvpn.net + lists.openvpn.net + magnetar.openvpn.net + mail.openvpn.net + meet.openvpn.net + mon.openvpn.net + nokia.openvpn.net + pgmt-client-tests3.openvpn.net + planet.openvpn.net + pr.openvpn.net + ptdev.openvpn.net + o87.ptr9077.openvpn.net + puppet.openvpn.net + puppet-test.openvpn.net + puppet4.openvpn.net + qatesting.openvpn.net + seafailover.openvpn.net + seaweb.openvpn.net + seaweb1.openvpn.net + secure.openvpn.net + sp.openvpn.net + status.openvpn.net + support-staging-instance.openvpn.net + svn.openvpn.net + test.openvpn.net + testing.openvpn.net + testweb.openvpn.net + webdev.openvpn.net + wiki.openvpn.net + wp.openvpn.net + wpd.openvpn.net + zstatus.openvpn.net + + Too many redirects: + as-dev-ua1.openvpn.net + as-dev-ua2.openvpn.net + as-dev-ua3.openvpn.net + internalvpn.openvpn.net + Unreachable: + community6.openvpn.net + forums6.openvpn.net +--> + + + + + + + + + + + + + + + + + + + + + - - - - - - - + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/OpenVim.com.xml b/src/chrome/content/rules/OpenVim.com.xml new file mode 100644 index 000000000000..900eed74248f --- /dev/null +++ b/src/chrome/content/rules/OpenVim.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/OpenWRT.xml b/src/chrome/content/rules/OpenWRT.xml index 56675f43b2c6..3cc002659093 100644 --- a/src/chrome/content/rules/OpenWRT.xml +++ b/src/chrome/content/rules/OpenWRT.xml @@ -19,6 +19,9 @@ + + + @@ -26,7 +29,6 @@ - - + + + + + + + + + diff --git a/src/chrome/content/rules/OpenWall.org.xml b/src/chrome/content/rules/OpenWall.org.xml new file mode 100644 index 000000000000..b87342aec9c6 --- /dev/null +++ b/src/chrome/content/rules/OpenWall.org.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/OpenWeatherMap.org.xml b/src/chrome/content/rules/OpenWeatherMap.org.xml new file mode 100644 index 000000000000..fef7becc925f --- /dev/null +++ b/src/chrome/content/rules/OpenWeatherMap.org.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/OpenX.org.xml b/src/chrome/content/rules/OpenX.org.xml deleted file mode 100644 index c9cdf05998d3..000000000000 --- a/src/chrome/content/rules/OpenX.org.xml +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/OpenX.xml b/src/chrome/content/rules/OpenX.xml index 6b744aa26128..62763e7840cd 100644 --- a/src/chrome/content/rules/OpenX.xml +++ b/src/chrome/content/rules/OpenX.xml @@ -1,168 +1,89 @@ + - - - + + + - - - - + + + + + - - - - - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + to="https:" /> diff --git a/src/chrome/content/rules/OpenXMPP.com.xml b/src/chrome/content/rules/OpenXMPP.com.xml index 5b9da6c71f39..c5c62fcb0869 100644 --- a/src/chrome/content/rules/OpenXMPP.com.xml +++ b/src/chrome/content/rules/OpenXMPP.com.xml @@ -8,7 +8,7 @@ Fetch error: http://openxmpp.com/ => https://openxmpp.com/: (7, 'Failed to conne - www.openxmpp.com --> - + diff --git a/src/chrome/content/rules/OpenXMarket.jp.xml b/src/chrome/content/rules/OpenXMarket.jp.xml deleted file mode 100644 index 79ab398a50c6..000000000000 --- a/src/chrome/content/rules/OpenXMarket.jp.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - diff --git a/src/chrome/content/rules/OpenX_Enterprise.com.xml b/src/chrome/content/rules/OpenX_Enterprise.com.xml deleted file mode 100644 index 5c94f78ffe92..000000000000 --- a/src/chrome/content/rules/OpenX_Enterprise.com.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/OpenX_ad_exchange.com.xml b/src/chrome/content/rules/OpenX_ad_exchange.com.xml index 902b8a5dbd17..e26028b2f86d 100644 --- a/src/chrome/content/rules/OpenX_ad_exchange.com.xml +++ b/src/chrome/content/rules/OpenX_ad_exchange.com.xml @@ -22,7 +22,7 @@ --> - + - + - + - + - + - - - - - - - - - diff --git a/src/chrome/content/rules/Open_Hub.net.xml b/src/chrome/content/rules/Open_Hub.net.xml deleted file mode 100644 index 3e8e9d25360f..000000000000 --- a/src/chrome/content/rules/Open_Hub.net.xml +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Open_Hunt.co.xml b/src/chrome/content/rules/Open_Hunt.co.xml index aab3a05adced..f2a5d66edff5 100644 --- a/src/chrome/content/rules/Open_Hunt.co.xml +++ b/src/chrome/content/rules/Open_Hunt.co.xml @@ -5,13 +5,13 @@ Fetch error: http://openhunt.co/ => https://openhunt.co/: (7, 'Failed to connect Fetch error: http://www.openhunt.co/ => https://www.openhunt.co/: (51, "SSL: no alternative certificate subject name matches target host name 'www.openhunt.co'") --> - + - + diff --git a/src/chrome/content/rules/Open_InfoSec_Foundation.org-problematic.xml b/src/chrome/content/rules/Open_InfoSec_Foundation.org-problematic.xml index 96c9fb25b774..ebadc3247b57 100644 --- a/src/chrome/content/rules/Open_InfoSec_Foundation.org-problematic.xml +++ b/src/chrome/content/rules/Open_InfoSec_Foundation.org-problematic.xml @@ -7,7 +7,7 @@ * See https://whatsmychaincert.com --> - + diff --git a/src/chrome/content/rules/Open_Knowledge_Foundation.xml b/src/chrome/content/rules/Open_Knowledge_Foundation.xml index 9a4296486852..270106e558c0 100644 --- a/src/chrome/content/rules/Open_Knowledge_Foundation.xml +++ b/src/chrome/content/rules/Open_Knowledge_Foundation.xml @@ -65,7 +65,7 @@ - + - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Open_Objects.com.xml b/src/chrome/content/rules/Open_Objects.com.xml index 5a43bdfa5dcf..da985c329d83 100644 --- a/src/chrome/content/rules/Open_Objects.com.xml +++ b/src/chrome/content/rules/Open_Objects.com.xml @@ -6,7 +6,7 @@ Fetch error: http://apps.openobjects.com/ => https://apps.openobjects.com/: (52, (www.)?obenobjects.com: refused --> - + diff --git a/src/chrome/content/rules/Open_Rights_Group.xml b/src/chrome/content/rules/Open_Rights_Group.xml index 374c42e7f16a..916065517474 100644 --- a/src/chrome/content/rules/Open_Rights_Group.xml +++ b/src/chrome/content/rules/Open_Rights_Group.xml @@ -1,40 +1,27 @@ - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Open_Source.org-problematic.xml b/src/chrome/content/rules/Open_Source.org-problematic.xml deleted file mode 100644 index 945f77708664..000000000000 --- a/src/chrome/content/rules/Open_Source.org-problematic.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Open_Source.org.xml b/src/chrome/content/rules/Open_Source.org.xml index 2e6fec1f15ea..fc51c4603f99 100644 --- a/src/chrome/content/rules/Open_Source.org.xml +++ b/src/chrome/content/rules/Open_Source.org.xml @@ -1,10 +1,8 @@ - - + + diff --git a/src/chrome/content/rules/Open_Source_Hacker.com.xml b/src/chrome/content/rules/Open_Source_Hacker.com.xml deleted file mode 100644 index 547e40fe9d31..000000000000 --- a/src/chrome/content/rules/Open_Source_Hacker.com.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Open_Virtualization_Alliance.org.xml b/src/chrome/content/rules/Open_Virtualization_Alliance.org.xml deleted file mode 100644 index fba2e44bbc27..000000000000 --- a/src/chrome/content/rules/Open_Virtualization_Alliance.org.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Open_Web.or.kr.xml b/src/chrome/content/rules/Open_Web.or.kr.xml deleted file mode 100644 index c4084ddfb04f..000000000000 --- a/src/chrome/content/rules/Open_Web.or.kr.xml +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Openas.org.xml b/src/chrome/content/rules/Openas.org.xml deleted file mode 100644 index df6f18873450..000000000000 --- a/src/chrome/content/rules/Openas.org.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - diff --git a/src/chrome/content/rules/Openbaar_Ministerie.xml b/src/chrome/content/rules/Openbaar_Ministerie.xml index db01d16917e0..3589b08024f1 100644 --- a/src/chrome/content/rules/Openbaar_Ministerie.xml +++ b/src/chrome/content/rules/Openbaar_Ministerie.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Opendemocracy.net.xml b/src/chrome/content/rules/Opendemocracy.net.xml index 0c69f9e2e6b8..05d07777f364 100644 --- a/src/chrome/content/rules/Opendemocracy.net.xml +++ b/src/chrome/content/rules/Opendemocracy.net.xml @@ -22,7 +22,7 @@ - + https://www.openfmri.org/: (51, "SSL: no alternative certificate subject name matches target host name 'www.openfmri.org'") --> - + diff --git a/src/chrome/content/rules/Openfiler.xml b/src/chrome/content/rules/Openfiler.xml index 034d3f09f426..ca2b3e3333fe 100644 --- a/src/chrome/content/rules/Openfiler.xml +++ b/src/chrome/content/rules/Openfiler.xml @@ -20,7 +20,7 @@ Fetch error: http://store.openfiler.com/ => https://store.openfiler.com/: (7, 'F - store --> - + diff --git a/src/chrome/content/rules/Opengarden.com.xml b/src/chrome/content/rules/Opengarden.com.xml index 1c6bb1000ad5..177a47f14520 100644 --- a/src/chrome/content/rules/Opengarden.com.xml +++ b/src/chrome/content/rules/Opengarden.com.xml @@ -15,7 +15,7 @@ Fetch error: http://www.opengarden.com/ => https://opengarden.com/: (51, "SSL: n * Works, cert only matches ^opengarden.com --> - + diff --git a/src/chrome/content/rules/Openhost.xml b/src/chrome/content/rules/Openhost.xml index 9f64f381049a..834cb81cccdc 100644 --- a/src/chrome/content/rules/Openhost.xml +++ b/src/chrome/content/rules/Openhost.xml @@ -12,7 +12,7 @@ Non-2xx HTTP code: http://www.mycp.co.nz/ (200) => https://hspc.openhost.net.nz/ * Secured by us --> - + @@ -27,9 +27,9 @@ Non-2xx HTTP code: http://www.mycp.co.nz/ (200) => https://hspc.openhost.net.nz/ - - - + + + + + + + + + + diff --git a/src/chrome/content/rules/Openindiana.org.xml b/src/chrome/content/rules/Openindiana.org.xml new file mode 100644 index 000000000000..7c343854f617 --- /dev/null +++ b/src/chrome/content/rules/Openindiana.org.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Openjpeg.org.xml b/src/chrome/content/rules/Openjpeg.org.xml new file mode 100644 index 000000000000..b2a47934ce7a --- /dev/null +++ b/src/chrome/content/rules/Openjpeg.org.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/Openload.xml b/src/chrome/content/rules/Openload.xml index 19f651d18a07..86a8edbd2907 100644 --- a/src/chrome/content/rules/Openload.xml +++ b/src/chrome/content/rules/Openload.xml @@ -32,7 +32,7 @@ - + @@ -43,7 +43,7 @@ - + diff --git a/src/chrome/content/rules/Openmoko.xml b/src/chrome/content/rules/Openmoko.xml index db44760f76d4..0c08c30b529a 100644 --- a/src/chrome/content/rules/Openmoko.xml +++ b/src/chrome/content/rules/Openmoko.xml @@ -24,7 +24,7 @@ - + https://www.openpgpkey.info/: (51, " --> - + diff --git a/src/chrome/content/rules/Openprovider.ru.xml b/src/chrome/content/rules/Openprovider.ru.xml index 0ec7d7ce9f95..b00f1109a7ff 100644 --- a/src/chrome/content/rules/Openprovider.ru.xml +++ b/src/chrome/content/rules/Openprovider.ru.xml @@ -2,5 +2,7 @@ + + diff --git a/src/chrome/content/rules/Openquantumsafe.org.xml b/src/chrome/content/rules/Openquantumsafe.org.xml new file mode 100644 index 000000000000..910215ddefbe --- /dev/null +++ b/src/chrome/content/rules/Openquantumsafe.org.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Openreach.co.uk.xml b/src/chrome/content/rules/Openreach.co.uk.xml index d93ae8f7cb94..4f945ced4739 100644 --- a/src/chrome/content/rules/Openreach.co.uk.xml +++ b/src/chrome/content/rules/Openreach.co.uk.xml @@ -17,7 +17,7 @@ - + - + + + + + + + diff --git a/src/chrome/content/rules/Openstreetmap.fr.xml b/src/chrome/content/rules/Openstreetmap.fr.xml index 6bfc894e7a79..b6ad6c7cac20 100644 --- a/src/chrome/content/rules/Openstreetmap.fr.xml +++ b/src/chrome/content/rules/Openstreetmap.fr.xml @@ -1,46 +1,111 @@ - - + + - - - - - + + + + + + + - - + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - diff --git a/src/chrome/content/rules/Opentransfer.com.xml b/src/chrome/content/rules/Opentransfer.com.xml index 14502df81bac..612618a8485b 100644 --- a/src/chrome/content/rules/Opentransfer.com.xml +++ b/src/chrome/content/rules/Opentransfer.com.xml @@ -23,7 +23,7 @@ - + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Operacdn.com.xml b/src/chrome/content/rules/Operacdn.com.xml index b2cf8c6d465f..dac3605a31ef 100644 --- a/src/chrome/content/rules/Operacdn.com.xml +++ b/src/chrome/content/rules/Operacdn.com.xml @@ -17,7 +17,7 @@ - + https://operationfabulous.com/: (60, 'SSL certificate problem: unable to get local issuer certificate') Fetch error: http://www.operationfabulous.com/ => https://www.operationfabulous.com/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + diff --git a/src/chrome/content/rules/Opg.tv.xml b/src/chrome/content/rules/Opg.tv.xml new file mode 100644 index 000000000000..dc208a2cf31b --- /dev/null +++ b/src/chrome/content/rules/Opg.tv.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Ophan.co.uk.xml b/src/chrome/content/rules/Ophan.co.uk.xml index c44b42d85636..2e63c8c28726 100644 --- a/src/chrome/content/rules/Ophan.co.uk.xml +++ b/src/chrome/content/rules/Ophan.co.uk.xml @@ -32,7 +32,7 @@ - + - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Opintoluotsi.xml b/src/chrome/content/rules/Opintoluotsi.xml index 22e19c017c43..15f39ca87d3a 100644 --- a/src/chrome/content/rules/Opintoluotsi.xml +++ b/src/chrome/content/rules/Opintoluotsi.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://opintoluotsi.fi/ => https://opintoluotsi.fi/: (51, "SSL: no alternative certificate subject name matches target host name 'opintoluotsi.fi'") Fetch error: http://www.opintoluotsi.fi/ => https://www.opintoluotsi.fi/: (51, "SSL: no alternative certificate subject name matches target host name 'www.opintoluotsi.fi'") --> - + diff --git a/src/chrome/content/rules/Oplata.info.xml b/src/chrome/content/rules/Oplata.info.xml index 4308f3e7b108..53d7cf7c2e27 100644 --- a/src/chrome/content/rules/Oplata.info.xml +++ b/src/chrome/content/rules/Oplata.info.xml @@ -13,4 +13,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Oppelt.com.xml b/src/chrome/content/rules/Oppelt.com.xml index 671df3a71272..feab762ca5c0 100644 --- a/src/chrome/content/rules/Oppelt.com.xml +++ b/src/chrome/content/rules/Oppelt.com.xml @@ -12,7 +12,7 @@ Fetch error: http://www.oppelt.com/ => https://www.oppelt.com/: (60, 'SSL certif * Secured by us --> - + diff --git a/src/chrome/content/rules/Opportunity.org.uk.xml b/src/chrome/content/rules/Opportunity.org.uk.xml new file mode 100644 index 000000000000..f6a588ec216c --- /dev/null +++ b/src/chrome/content/rules/Opportunity.org.uk.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Oprah.com.xml b/src/chrome/content/rules/Oprah.com.xml new file mode 100644 index 000000000000..65b52abc50a1 --- /dev/null +++ b/src/chrome/content/rules/Oprah.com.xml @@ -0,0 +1,9 @@ + + + + + + diff --git a/src/chrome/content/rules/Opscode.com.xml b/src/chrome/content/rules/Opscode.com.xml index 7c24779c19d8..b2f45815ee83 100644 --- a/src/chrome/content/rules/Opscode.com.xml +++ b/src/chrome/content/rules/Opscode.com.xml @@ -19,11 +19,14 @@ - + + + + + - + diff --git a/src/chrome/content/rules/Opsmate.xml b/src/chrome/content/rules/Opsmate.xml index 17f37abb342a..2d413c5d3a25 100644 --- a/src/chrome/content/rules/Opsmate.xml +++ b/src/chrome/content/rules/Opsmate.xml @@ -2,6 +2,5 @@ - - + diff --git a/src/chrome/content/rules/OptOutPrescreen.com.xml b/src/chrome/content/rules/OptOutPrescreen.com.xml index cd7bc98d85a1..ba667f3c523f 100644 --- a/src/chrome/content/rules/OptOutPrescreen.com.xml +++ b/src/chrome/content/rules/OptOutPrescreen.com.xml @@ -17,8 +17,7 @@ - + + + + + + - + + + diff --git a/src/chrome/content/rules/Optical-Society-of-America.xml b/src/chrome/content/rules/Optical-Society-of-America.xml index 61de6ce48590..d076cee20ad1 100644 --- a/src/chrome/content/rules/Optical-Society-of-America.xml +++ b/src/chrome/content/rules/Optical-Society-of-America.xml @@ -14,29 +14,28 @@ Fetch error: http://www.opticsinfobase.org/ => https://www.opticsinfobase.org/: !functional: - (www.)osa-opn.org (www: interrupted; doesn't translate directly to osa.org) --> - + - + + + - + - + - - + diff --git a/src/chrome/content/rules/Opticallimits.com.xml b/src/chrome/content/rules/Opticallimits.com.xml new file mode 100644 index 000000000000..7931d1120176 --- /dev/null +++ b/src/chrome/content/rules/Opticallimits.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Optimal-Payments.xml b/src/chrome/content/rules/Optimal-Payments.xml index aca66c0adb3c..c0d0e3932ac5 100644 --- a/src/chrome/content/rules/Optimal-Payments.xml +++ b/src/chrome/content/rules/Optimal-Payments.xml @@ -12,16 +12,19 @@ Fetch error: http://www.neteller-group.com/ => https://www.optimalpayments.com/: Fetch error: http://optimalpayments.com/ => https://www.optimalpayments.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.optimalpayments.com'") !functional: www1.netbanx.com --> - + - + + + + - + diff --git a/src/chrome/content/rules/Optimise.com.br.xml b/src/chrome/content/rules/Optimise.com.br.xml index 8f02be9e87de..5a1192ef63cc 100644 --- a/src/chrome/content/rules/Optimise.com.br.xml +++ b/src/chrome/content/rules/Optimise.com.br.xml @@ -16,7 +16,7 @@ - + @@ -12,7 +11,7 @@ - + https://na-sjn.marketo.com/rs/optimizely/images/Customer_Story_Backcountry.pdf (403) - For rules covering resources which do not secure mixed content, see optimizely.com-resources.xml. @@ -13,21 +9,13 @@ Non-2xx HTTP code: http://pages.optimizely.com/rs/optimizely/images/Customer_Sto - cdn.optimizely.com.edgekey.net ← cdn3 - Nonfunctional hosts in *optimizely.com: - - - pages ᵃ - - ᵃ Marketo / shows another domain - - Problematic hosts in *optimizely.com: - cdn4 ᴬ - - support ᵈ - log3 ᵐ + - pages ᵐ ᴬ Akamai / mismatched - ᵈ Dropped, preemptable redirect ᵐ Mismatched @@ -48,7 +36,7 @@ Non-2xx HTTP code: http://pages.optimizely.com/rs/optimizely/images/Customer_Sto - optimizelySegments --> - + @@ -64,6 +52,7 @@ Non-2xx HTTP code: http://pages.optimizely.com/rs/optimizely/images/Customer_Sto + @@ -80,62 +69,10 @@ Non-2xx HTTP code: http://pages.optimizely.com/rs/optimizely/images/Customer_Sto - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Optimost.xml b/src/chrome/content/rules/Optimost.xml index 48d01f7ec7b7..774f6bdfdaa7 100644 --- a/src/chrome/content/rules/Optimost.xml +++ b/src/chrome/content/rules/Optimost.xml @@ -13,7 +13,8 @@ --> - + + - \ No newline at end of file + diff --git a/src/chrome/content/rules/OptionsAnimal.com.xml b/src/chrome/content/rules/OptionsAnimal.com.xml index a58671526eeb..eccd5c868206 100644 --- a/src/chrome/content/rules/OptionsAnimal.com.xml +++ b/src/chrome/content/rules/OptionsAnimal.com.xml @@ -21,19 +21,19 @@ Non-2xx HTTP code: http://optionsanimal.com/ (200) => https://optionsanimal.com/ * Secured by us --> - + - + + - + diff --git a/src/chrome/content/rules/Optorb.com.xml b/src/chrome/content/rules/Optorb.com.xml deleted file mode 100644 index 0a9f5fe95e7c..000000000000 --- a/src/chrome/content/rules/Optorb.com.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Opus-codec.org.xml b/src/chrome/content/rules/Opus-codec.org.xml index a3453bce33ed..8c99d940028d 100644 --- a/src/chrome/content/rules/Opus-codec.org.xml +++ b/src/chrome/content/rules/Opus-codec.org.xml @@ -5,6 +5,6 @@ cert is not valid for https://git.opus-codec.org/ - + diff --git a/src/chrome/content/rules/OrWall.org.xml b/src/chrome/content/rules/OrWall.org.xml index 783134967373..5e7b5318fb41 100644 --- a/src/chrome/content/rules/OrWall.org.xml +++ b/src/chrome/content/rules/OrWall.org.xml @@ -1,9 +1,12 @@ + - + - diff --git a/src/chrome/content/rules/Oracle-mismatches.xml b/src/chrome/content/rules/Oracle-mismatches.xml deleted file mode 100644 index 403b51bf5fa4..000000000000 --- a/src/chrome/content/rules/Oracle-mismatches.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Oracle.xml b/src/chrome/content/rules/Oracle.xml index a149edb4a122..e02b661e3c4d 100644 --- a/src/chrome/content/rules/Oracle.xml +++ b/src/chrome/content/rules/Oracle.xml @@ -1,49 +1,32 @@ + + - - + + + - + + - - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - @@ -347,24 +175,28 @@ Fetch error: http://oracleimg.com/ => https://www.oracleimg.com/: Too many redir - + - + + + + + + - + - - + @@ -376,37 +208,23 @@ Fetch error: http://oracleimg.com/ => https://www.oracleimg.com/: Too many redir + + - - + - - - + - - - + + - - - - - - - + + @@ -425,8 +243,7 @@ Fetch error: http://oracleimg.com/ => https://www.oracleimg.com/: Too many redir - + @@ -435,35 +252,18 @@ Fetch error: http://oracleimg.com/ => https://www.oracleimg.com/: Too many redir - - - - - - - - - - - + + - - - - - + + + - @@ -473,15 +273,5 @@ Fetch error: http://oracleimg.com/ => https://www.oracleimg.com/: Too many redir - - - - - - - + diff --git a/src/chrome/content/rules/Orange.xml b/src/chrome/content/rules/Orange.xml index 833d924d17a2..abf60fa5dfb9 100644 --- a/src/chrome/content/rules/Orange.xml +++ b/src/chrome/content/rules/Orange.xml @@ -39,28 +39,35 @@ Fetch error: http://orange.ch/ => https://www.orange.ch/: (7, 'Failed to connect - connection failed --> - + - + + + + + - + + + + + + + - + - - + - + diff --git a/src/chrome/content/rules/OrangeNaturals.com.xml b/src/chrome/content/rules/OrangeNaturals.com.xml new file mode 100644 index 000000000000..69376b766bfd --- /dev/null +++ b/src/chrome/content/rules/OrangeNaturals.com.xml @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/src/chrome/content/rules/OrangeWebsite.com.xml b/src/chrome/content/rules/OrangeWebsite.com.xml index d86a6e9282df..29e7bf9cc75f 100644 --- a/src/chrome/content/rules/OrangeWebsite.com.xml +++ b/src/chrome/content/rules/OrangeWebsite.com.xml @@ -21,4 +21,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Orange_Geek.xml b/src/chrome/content/rules/Orange_Geek.xml index dd8e684c4753..53e4f00e93e8 100644 --- a/src/chrome/content/rules/Orange_Geek.xml +++ b/src/chrome/content/rules/Orange_Geek.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Orange_Static.com.xml b/src/chrome/content/rules/Orange_Static.com.xml index 406c0efb11fa..119c3906d660 100644 --- a/src/chrome/content/rules/Orange_Static.com.xml +++ b/src/chrome/content/rules/Orange_Static.com.xml @@ -1,24 +1,9 @@ - - + - - + diff --git a/src/chrome/content/rules/Orbital_ATK.com.xml b/src/chrome/content/rules/Orbital_ATK.com.xml index 2ab8ffabd8aa..3311299da78b 100644 --- a/src/chrome/content/rules/Orbital_ATK.com.xml +++ b/src/chrome/content/rules/Orbital_ATK.com.xml @@ -6,7 +6,7 @@ - + https://orbital.com/: (51, "SSL: no alternat Fetch error: http://www.orbital.com/ => https://www.orbital.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.orbital.com'") --> - + @@ -23,4 +23,4 @@ Fetch error: http://www.orbital.com/ => https://www.orbital.com/: (51, "SSL: no - \ No newline at end of file + diff --git a/src/chrome/content/rules/Orchid_Diva.xml b/src/chrome/content/rules/Orchid_Diva.xml index 9cf42b67cbce..6a695af3a747 100644 --- a/src/chrome/content/rules/Orchid_Diva.xml +++ b/src/chrome/content/rules/Orchid_Diva.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/OrderBook.net.xml b/src/chrome/content/rules/OrderBook.net.xml index 695f51759dd7..dc5aa052a065 100644 --- a/src/chrome/content/rules/OrderBook.net.xml +++ b/src/chrome/content/rules/OrderBook.net.xml @@ -5,7 +5,7 @@ Fetch error: http://orderbook.net/ => https://orderbook.net/: (7, 'Failed to con Fetch error: http://www.orderbook.net/ => https://www.orderbook.net/: (7, 'Failed to connect to www.orderbook.net port 443: Connection refused') --> - + diff --git a/src/chrome/content/rules/Ordnance_Survey.xml b/src/chrome/content/rules/Ordnance_Survey.xml index 0d6a56a6623d..d13ec8037f92 100644 --- a/src/chrome/content/rules/Ordnance_Survey.xml +++ b/src/chrome/content/rules/Ordnance_Survey.xml @@ -16,7 +16,7 @@ - + https://osulibrary.oregonstate.edu/: (60, 'SSL certificate problem: unable to get local issuer certificate') - Other Oregon State University rulesets: - osufoundation.org.xml @@ -11,29 +8,19 @@ Fetch error: http://osulibrary.oregonstate.edu/ => https://osulibrary.oregonstat Nonfunctional hosts in *oregonstate.edu: - - ecampus ᵃ - - ᵃ Shows another domain - - www.oregonstate.edu: mismatched - - Mixed content: - - - css on osulibrary from fonts.googleapis.com ˢ - - Images on ^ from $self ˢ - - ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ - --> - + + + + - + diff --git a/src/chrome/content/rules/Organization_of_American_States.xml b/src/chrome/content/rules/Organization_of_American_States.xml deleted file mode 100644 index 9033fa0dec2c..000000000000 --- a/src/chrome/content/rules/Organization_of_American_States.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Orgmode.org.xml b/src/chrome/content/rules/Orgmode.org.xml new file mode 100644 index 000000000000..3176dea99a11 --- /dev/null +++ b/src/chrome/content/rules/Orgmode.org.xml @@ -0,0 +1,18 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Orgreen_Optics.com.xml b/src/chrome/content/rules/Orgreen_Optics.com.xml index 20b4f801a5df..60945b3da64a 100644 --- a/src/chrome/content/rules/Orgreen_Optics.com.xml +++ b/src/chrome/content/rules/Orgreen_Optics.com.xml @@ -7,7 +7,7 @@ Fetch error: http://www.orgreenoptics.com/ => https://orgreenoptics.com/: (60, ' www: cert only matches ^orgreenoptics.com. --> - + diff --git a/src/chrome/content/rules/Origin.com.xml b/src/chrome/content/rules/Origin.com.xml index 22885530047f..2ccdfcd3e335 100644 --- a/src/chrome/content/rules/Origin.com.xml +++ b/src/chrome/content/rules/Origin.com.xml @@ -24,7 +24,7 @@ - + + + + + + + + + diff --git a/src/chrome/content/rules/Orion.xml b/src/chrome/content/rules/Orion.xml deleted file mode 100644 index 06a38aeefd60..000000000000 --- a/src/chrome/content/rules/Orion.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Orion_Magazine.org.xml b/src/chrome/content/rules/Orion_Magazine.org.xml index abd61c226a36..f38bde1db6df 100644 --- a/src/chrome/content/rules/Orion_Magazine.org.xml +++ b/src/chrome/content/rules/Orion_Magazine.org.xml @@ -4,7 +4,7 @@ - + diff --git a/src/chrome/content/rules/Orion_Systems_Integrators.xml b/src/chrome/content/rules/Orion_Systems_Integrators.xml index ec01012a1e28..4b50ae0ccebc 100644 --- a/src/chrome/content/rules/Orion_Systems_Integrators.xml +++ b/src/chrome/content/rules/Orion_Systems_Integrators.xml @@ -5,7 +5,7 @@ Fetch error: http://orioninc.com/ => https://orioninc.com/: (51, "SSL: no altern Fetch error: http://time.orioninc.com/ => https://time.orioninc.com/: (6, 'Could not resolve host: time.orioninc.com') --> - + @@ -17,4 +17,4 @@ Fetch error: http://time.orioninc.com/ => https://time.orioninc.com/: (6, 'Could - \ No newline at end of file + diff --git a/src/chrome/content/rules/Orkut.xml b/src/chrome/content/rules/Orkut.xml index 81c8f10394df..ae2ab06f71c2 100644 --- a/src/chrome/content/rules/Orkut.xml +++ b/src/chrome/content/rules/Orkut.xml @@ -11,7 +11,7 @@ Fetch error: http://www.orkut.com.br/ => https://www.orkut.com.br/: (6, 'Could n For other Google coverage, see GoogleServices.xml. --> - + @@ -31,4 +31,4 @@ Fetch error: http://www.orkut.com.br/ => https://www.orkut.com.br/: (6, 'Could n - \ No newline at end of file + diff --git a/src/chrome/content/rules/Orkz.net.xml b/src/chrome/content/rules/Orkz.net.xml index ee48829accf2..3df382677ca4 100644 --- a/src/chrome/content/rules/Orkz.net.xml +++ b/src/chrome/content/rules/Orkz.net.xml @@ -10,7 +10,7 @@ Problematic hosts in *orkz.net: - webmail * - + * Handshake fails --> diff --git a/src/chrome/content/rules/OrlandoCriminalDefenseAttorneyBlog.com.xml b/src/chrome/content/rules/OrlandoCriminalDefenseAttorneyBlog.com.xml new file mode 100644 index 000000000000..e0167895854c --- /dev/null +++ b/src/chrome/content/rules/OrlandoCriminalDefenseAttorneyBlog.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Oron.xml b/src/chrome/content/rules/Oron.xml index 47c78c2efcc3..689d22bf0ad5 100644 --- a/src/chrome/content/rules/Oron.xml +++ b/src/chrome/content/rules/Oron.xml @@ -6,7 +6,7 @@ Fetch error: http://secure.oron.com/ => https://secure.oron.com/: (7, 'Failed to Disabled by https-everywhere-checker because: Fetch error: http://secure.oron.com/ => https://secure.oron.com/: (7, 'Failed to connect to secure.oron.com port 443: Connection refused') --> - + diff --git a/src/chrome/content/rules/OrthogonalPublishing.com.xml b/src/chrome/content/rules/OrthogonalPublishing.com.xml new file mode 100644 index 000000000000..e3be8780997e --- /dev/null +++ b/src/chrome/content/rules/OrthogonalPublishing.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Orxrdr.com.xml b/src/chrome/content/rules/Orxrdr.com.xml index 3ee3630e5fee..79e1c16c0cac 100644 --- a/src/chrome/content/rules/Orxrdr.com.xml +++ b/src/chrome/content/rules/Orxrdr.com.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Os-cillation-mismatches.xml b/src/chrome/content/rules/Os-cillation-mismatches.xml index a1bfe3fcde11..5944dc245ada 100644 --- a/src/chrome/content/rules/Os-cillation-mismatches.xml +++ b/src/chrome/content/rules/Os-cillation-mismatches.xml @@ -15,7 +15,7 @@ - anfrage.os-cillation.de --> - + @@ -26,7 +26,7 @@ --> - + https://schweissgut.net/: (60, 'SSL cert Fetch error: http://www.schweissgut.net/ => https://schweissgut.net/: (60, 'SSL certificate problem: unable to get local issuer certificate') See Os-cillation-mismatches.xml for problematic rules. --> - + diff --git a/src/chrome/content/rules/Oseems.com.xml b/src/chrome/content/rules/Oseems.com.xml index 0b230b0f9a64..af02b17952f6 100644 --- a/src/chrome/content/rules/Oseems.com.xml +++ b/src/chrome/content/rules/Oseems.com.xml @@ -5,7 +5,7 @@ Fetch error: http://oseems.com/ => https://oseems.com/: Too many redirects while Fetch error: http://apps.oseems.com/ => https://apps.oseems.com/: Too many redirects while fetching 'https://apps.oseems.com/' --> - + diff --git a/src/chrome/content/rules/OshkoshAirport.com.xml b/src/chrome/content/rules/OshkoshAirport.com.xml new file mode 100644 index 000000000000..5fda2c0c9744 --- /dev/null +++ b/src/chrome/content/rules/OshkoshAirport.com.xml @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/OsmAnd.net.xml b/src/chrome/content/rules/OsmAnd.net.xml index 0eb3193bdf28..cdfebe58f0b7 100644 --- a/src/chrome/content/rules/OsmAnd.net.xml +++ b/src/chrome/content/rules/OsmAnd.net.xml @@ -1,44 +1,34 @@ - - - - - - - + - + + + + + - + diff --git a/src/chrome/content/rules/Osmo.xml b/src/chrome/content/rules/Osmo.xml index 7b810a7be1e1..d7bdc8695d49 100644 --- a/src/chrome/content/rules/Osmo.xml +++ b/src/chrome/content/rules/Osmo.xml @@ -8,7 +8,7 @@ - + diff --git a/src/chrome/content/rules/Ossec.net.xml b/src/chrome/content/rules/Ossec.net.xml new file mode 100644 index 000000000000..6d2f10bd3370 --- /dev/null +++ b/src/chrome/content/rules/Ossec.net.xml @@ -0,0 +1,19 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Ostagram.ru.xml b/src/chrome/content/rules/Ostagram.ru.xml index 1f79bbb70cc5..c2eb1fb17675 100644 --- a/src/chrome/content/rules/Ostagram.ru.xml +++ b/src/chrome/content/rules/Ostagram.ru.xml @@ -3,7 +3,7 @@ - + diff --git a/src/chrome/content/rules/Ostel.co.xml b/src/chrome/content/rules/Ostel.co.xml deleted file mode 100644 index a14d9b01a559..000000000000 --- a/src/chrome/content/rules/Ostel.co.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Otavamedia.xml b/src/chrome/content/rules/Otavamedia.xml index 21bd2dccd4ea..763cfa427bde 100644 --- a/src/chrome/content/rules/Otavamedia.xml +++ b/src/chrome/content/rules/Otavamedia.xml @@ -27,7 +27,7 @@ Fetch error: http://www.plazakauppa.fi/ => https://www.plazakauppa.fi/: (28, 'Co - (www.)plaza.fi (ditto) --> - + @@ -37,7 +37,7 @@ Fetch error: http://www.plazakauppa.fi/ => https://www.plazakauppa.fi/: (28, 'Co - + diff --git a/src/chrome/content/rules/Ote.xml b/src/chrome/content/rules/Ote.xml index 075d4e155209..ee5500e10286 100644 --- a/src/chrome/content/rules/Ote.xml +++ b/src/chrome/content/rules/Ote.xml @@ -8,7 +8,7 @@ Fetch error: http://adman.otenet.gr/ => https://adman.otenet.gr/: (7, 'Failed to Fetch error: http://ote.gr/ => https://ote.gr/: (51, "SSL: no alternative certificate subject name matches target host name 'ote.gr'") This ruleset is experimental. If you experience problems please open an issue at https://github.com/kargig/https-everywhere-greek-rules --> - + @@ -19,9 +19,7 @@ Fetch error: http://ote.gr/ => https://ote.gr/: (51, "SSL: no alternative certif - - - + diff --git a/src/chrome/content/rules/Otpdirekt.sk.xml b/src/chrome/content/rules/Otpdirekt.sk.xml index 48a163f0aa4b..eeb0ecc0a9a1 100644 --- a/src/chrome/content/rules/Otpdirekt.sk.xml +++ b/src/chrome/content/rules/Otpdirekt.sk.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://otpdirekt.sk/ => https://www.otpdirekt.sk/: (6, 'Could not resolve host: otpdirekt.sk') Fetch error: http://www.otpdirekt.sk/ => https://www.otpdirekt.sk/: (51, "SSL: no alternative certificate subject name matches target host name 'www.otpdirekt.sk'") --> - + diff --git a/src/chrome/content/rules/Otrojah.org.xml b/src/chrome/content/rules/Otrojah.org.xml new file mode 100644 index 000000000000..889671072f18 --- /dev/null +++ b/src/chrome/content/rules/Otrojah.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Otrs.com.xml b/src/chrome/content/rules/Otrs.com.xml new file mode 100644 index 000000000000..8d524e3106a8 --- /dev/null +++ b/src/chrome/content/rules/Otrs.com.xml @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Otrs.org.xml b/src/chrome/content/rules/Otrs.org.xml new file mode 100644 index 000000000000..1a48d8d39c56 --- /dev/null +++ b/src/chrome/content/rules/Otrs.org.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Otsuka-shokai.co.jp.xml b/src/chrome/content/rules/Otsuka-shokai.co.jp.xml index 911c888d1074..72d0ea7eb858 100644 --- a/src/chrome/content/rules/Otsuka-shokai.co.jp.xml +++ b/src/chrome/content/rules/Otsuka-shokai.co.jp.xml @@ -22,13 +22,14 @@ - + + + - + diff --git a/src/chrome/content/rules/Otto.de.xml b/src/chrome/content/rules/Otto.de.xml index d0885c991d3e..bd4b30c2cbff 100644 --- a/src/chrome/content/rules/Otto.de.xml +++ b/src/chrome/content/rules/Otto.de.xml @@ -7,7 +7,7 @@ Fetch error: http://pxc.otto.de/ => https://pxc.otto.de/: Pycurl fetch failed fo - affiliate.otto.de - rot4.otto.de --> - + diff --git a/src/chrome/content/rules/Otumm.com.xml b/src/chrome/content/rules/Otumm.com.xml index 5b3e30ec8561..c47e01a96aa8 100644 --- a/src/chrome/content/rules/Otumm.com.xml +++ b/src/chrome/content/rules/Otumm.com.xml @@ -19,7 +19,7 @@ Fetch error: http://www.otumm.com/ => https://otumm.com/: (60, 'SSL certificate * Secured by us --> - + diff --git a/src/chrome/content/rules/Oumedicine.com.xml b/src/chrome/content/rules/Oumedicine.com.xml index ab2802e96923..8a06f21ceb21 100644 --- a/src/chrome/content/rules/Oumedicine.com.xml +++ b/src/chrome/content/rules/Oumedicine.com.xml @@ -1,9 +1,22 @@ - - - - - + + + + + + + + + + + + to="https:" /> + diff --git a/src/chrome/content/rules/Oumma.com.xml b/src/chrome/content/rules/Oumma.com.xml new file mode 100644 index 000000000000..54d83492083a --- /dev/null +++ b/src/chrome/content/rules/Oumma.com.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Ouo.xml b/src/chrome/content/rules/Ouo.xml new file mode 100644 index 000000000000..01c56987bf6d --- /dev/null +++ b/src/chrome/content/rules/Ouo.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Our-Hometown.xml b/src/chrome/content/rules/Our-Hometown.xml index 3d2e6a53c07b..a19c18483981 100644 --- a/src/chrome/content/rules/Our-Hometown.xml +++ b/src/chrome/content/rules/Our-Hometown.xml @@ -6,13 +6,13 @@ Non-2xx HTTP code: http://our-hometown.com/ (200) => https://www.our-hometown.co Disabled by https-everywhere-checker because: Non-2xx HTTP code: http://our-hometown.com/ (200) => https://www.our-hometown.com/ (401) --> - + - + - + - + diff --git a/src/chrome/content/rules/OurCommons.ca.xml b/src/chrome/content/rules/OurCommons.ca.xml new file mode 100644 index 000000000000..8b6746a4f174 --- /dev/null +++ b/src/chrome/content/rules/OurCommons.ca.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/OurWorldOfText.com.xml b/src/chrome/content/rules/OurWorldOfText.com.xml new file mode 100644 index 000000000000..e1c7e611945d --- /dev/null +++ b/src/chrome/content/rules/OurWorldOfText.com.xml @@ -0,0 +1,15 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Ourneighborhoodmilf.com.xml b/src/chrome/content/rules/Ourneighborhoodmilf.com.xml index 0ca8eac1b2e9..cab6eba31b91 100644 --- a/src/chrome/content/rules/Ourneighborhoodmilf.com.xml +++ b/src/chrome/content/rules/Ourneighborhoodmilf.com.xml @@ -11,7 +11,7 @@ - + - + diff --git a/src/chrome/content/rules/OutWit.com.xml b/src/chrome/content/rules/OutWit.com.xml index af9c50bad953..2532e7c6897f 100644 --- a/src/chrome/content/rules/OutWit.com.xml +++ b/src/chrome/content/rules/OutWit.com.xml @@ -12,7 +12,7 @@ - + + @@ -107,6 +108,7 @@ + @@ -115,7 +117,7 @@ - + https://www.outernet.is/: (60, 'SSL certific - + diff --git a/src/chrome/content/rules/Outflux.net.xml b/src/chrome/content/rules/Outflux.net.xml index 698202958486..3b64f20a0e5b 100644 --- a/src/chrome/content/rules/Outflux.net.xml +++ b/src/chrome/content/rules/Outflux.net.xml @@ -1,10 +1,8 @@ - + - - + diff --git a/src/chrome/content/rules/Outlook_Live.xml b/src/chrome/content/rules/Outlook_Live.xml deleted file mode 100644 index 6c699999a583..000000000000 --- a/src/chrome/content/rules/Outlook_Live.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Outreachy.org.xml b/src/chrome/content/rules/Outreachy.org.xml new file mode 100644 index 000000000000..4406bb252cca --- /dev/null +++ b/src/chrome/content/rules/Outreachy.org.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Outspark.xml b/src/chrome/content/rules/Outspark.xml index 3580598c6d20..2c574e7d018e 100644 --- a/src/chrome/content/rules/Outspark.xml +++ b/src/chrome/content/rules/Outspark.xml @@ -18,7 +18,7 @@ - + - + - + - + - + diff --git a/src/chrome/content/rules/Overclock.net-problematic.xml b/src/chrome/content/rules/Overclock.net-problematic.xml deleted file mode 100644 index cb4feadef807..000000000000 --- a/src/chrome/content/rules/Overclock.net-problematic.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Overclock.net.xml b/src/chrome/content/rules/Overclock.net.xml index 599701322ac7..c25a7296b356 100644 --- a/src/chrome/content/rules/Overclock.net.xml +++ b/src/chrome/content/rules/Overclock.net.xml @@ -1,35 +1,12 @@ - - + + + - - - + diff --git a/src/chrome/content/rules/Overclockers.at.xml b/src/chrome/content/rules/Overclockers.at.xml index 26a85576f20c..cd048515e095 100644 --- a/src/chrome/content/rules/Overclockers.at.xml +++ b/src/chrome/content/rules/Overclockers.at.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://bitte.overclockers.at/ => https://bitte.overclockers.at/: (6, 'Could not resolve host: bitte.overclockers.at') --> - + diff --git a/src/chrome/content/rules/Overclockers.com.xml b/src/chrome/content/rules/Overclockers.com.xml index ffaeb836bc68..3be70950dd71 100644 --- a/src/chrome/content/rules/Overclockers.com.xml +++ b/src/chrome/content/rules/Overclockers.com.xml @@ -3,49 +3,16 @@ - INet-Interactive.xml - - Expired 2014-07-20 - - - Mixed content: - - - css from $self * - - - Images from $self * - - - favicon from $self * - - - Bug from s.skimresources.com * - - * Secured by us - --> - + - - - - - - - - - - + - - + - + diff --git a/src/chrome/content/rules/Overlake-Hospital.xml b/src/chrome/content/rules/Overlake-Hospital.xml index e856d5dab6d4..ba39f3b9d7ae 100644 --- a/src/chrome/content/rules/Overlake-Hospital.xml +++ b/src/chrome/content/rules/Overlake-Hospital.xml @@ -1,10 +1,10 @@ - + - + - - - - - - - + + + + + + + - + diff --git a/src/chrome/content/rules/Overpass-api.de.xml b/src/chrome/content/rules/Overpass-api.de.xml new file mode 100644 index 000000000000..1e60ad83e9dd --- /dev/null +++ b/src/chrome/content/rules/Overpass-api.de.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Oversee.xml b/src/chrome/content/rules/Oversee.xml index 0e92c2f41ed3..5c9e54591b20 100644 --- a/src/chrome/content/rules/Oversee.xml +++ b/src/chrome/content/rules/Oversee.xml @@ -1,50 +1,22 @@ - - + Non-functional hosts + Couldn't connect to server: + - domainfest.com + - www.domainfest.com + SSL peer certificate was not OK: + - oversee.net + - www.oversee.net +--> + - - - - - - - - - - - - - - - - - - - + diff --git a/src/chrome/content/rules/OvershootDay.org.xml b/src/chrome/content/rules/OvershootDay.org.xml new file mode 100644 index 000000000000..1a1d2a57ad8f --- /dev/null +++ b/src/chrome/content/rules/OvershootDay.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Overstock.com.xml b/src/chrome/content/rules/Overstock.com.xml index c2438bf08d05..291305fcfe01 100644 --- a/src/chrome/content/rules/Overstock.com.xml +++ b/src/chrome/content/rules/Overstock.com.xml @@ -50,9 +50,14 @@ --> - + + + - + + + + diff --git a/src/chrome/content/rules/Overview_Project.org.xml b/src/chrome/content/rules/Overview_Project.org.xml index 27ceed9f37ae..66463de010eb 100644 --- a/src/chrome/content/rules/Overview_Project.org.xml +++ b/src/chrome/content/rules/Overview_Project.org.xml @@ -5,7 +5,7 @@ Fetch error: http://overviewproject.org/ => https://overviewproject.org/: (60, ' Fetch error: http://www.overviewproject.org/ => https://www.overviewproject.org/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/Ovh.xml b/src/chrome/content/rules/Ovh.xml index 014b07231cbe..5b2ddee20c6a 100644 --- a/src/chrome/content/rules/Ovh.xml +++ b/src/chrome/content/rules/Ovh.xml @@ -1,12 +1,5 @@ - - - - + + - + - - + - - - @@ -139,97 +51,62 @@ Fetch error: http://ssl8.ovh.net/ => https://ssl8.ovh.net/: (28, 'Connection tim - - - - - - + - + - + - + - + - + - + - + - + - + - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - + + diff --git a/src/chrome/content/rules/Ovi.com.xml b/src/chrome/content/rules/Ovi.com.xml deleted file mode 100644 index 406c67688b32..000000000000 --- a/src/chrome/content/rules/Ovi.com.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Ovid.xml b/src/chrome/content/rules/Ovid.xml index 5582bba7144f..a0b1a4871f04 100644 --- a/src/chrome/content/rules/Ovid.xml +++ b/src/chrome/content/rules/Ovid.xml @@ -7,11 +7,13 @@ --> - + + + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Ovscruise.com.xml b/src/chrome/content/rules/Ovscruise.com.xml new file mode 100644 index 000000000000..625f472eebbe --- /dev/null +++ b/src/chrome/content/rules/Ovscruise.com.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Ow.ly.xml b/src/chrome/content/rules/Ow.ly.xml index 0999a8cb576d..ba9b121bab95 100644 --- a/src/chrome/content/rules/Ow.ly.xml +++ b/src/chrome/content/rules/Ow.ly.xml @@ -1,23 +1,16 @@ - - + diff --git a/src/chrome/content/rules/Owl.English.Purdue.edu.xml b/src/chrome/content/rules/Owl.English.Purdue.edu.xml deleted file mode 100644 index 01c3a4f88b31..000000000000 --- a/src/chrome/content/rules/Owl.English.Purdue.edu.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/src/chrome/content/rules/Own.ag.xml b/src/chrome/content/rules/Own.ag.xml new file mode 100644 index 000000000000..960a88ecc5b9 --- /dev/null +++ b/src/chrome/content/rules/Own.ag.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/OwnCloud.com.xml b/src/chrome/content/rules/OwnCloud.com.xml index c2c4e7718784..45d6480507e0 100644 --- a/src/chrome/content/rules/OwnCloud.com.xml +++ b/src/chrome/content/rules/OwnCloud.com.xml @@ -30,7 +30,7 @@ Fetch error: http://static.owncloud.com/ => https://opendesktop.org/: Too many r Not secured by us <= mismatched --> - + @@ -49,7 +49,7 @@ Fetch error: http://static.owncloud.com/ => https://opendesktop.org/: Too many r - + https://mailman.owncloud.org/: (60, 'SSL certificate problem: unable to get local issuer certificate') -Fetch error: http://stats.owncloud.org/ => https://stats.owncloud.org/: (60, 'SSL certificate problem: unable to get local issuer certificate') - - Problematic hosts in *owncloud.org: - - - docs * - - * Revoked - ---> - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/OwnedCore.com.xml b/src/chrome/content/rules/OwnedCore.com.xml index c88adc06b9d4..757862483914 100644 --- a/src/chrome/content/rules/OwnedCore.com.xml +++ b/src/chrome/content/rules/OwnedCore.com.xml @@ -11,7 +11,7 @@ Fetch error: http://www.ownedcore.com/ => https://www.ownedcore.com/: Too many r * Secured by us --> - + diff --git a/src/chrome/content/rules/Owner.io.xml b/src/chrome/content/rules/Owner.io.xml index e30ee2e2fb54..56d96acabac2 100644 --- a/src/chrome/content/rules/Owner.io.xml +++ b/src/chrome/content/rules/Owner.io.xml @@ -23,7 +23,7 @@ --> - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Oxford_University_Press.xml b/src/chrome/content/rules/Oxford_University_Press.xml index 5a29c3829ed5..6a4e7d880e00 100644 --- a/src/chrome/content/rules/Oxford_University_Press.xml +++ b/src/chrome/content/rules/Oxford_University_Press.xml @@ -52,7 +52,7 @@ --> - + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/OzBargain.xml b/src/chrome/content/rules/OzBargain.xml deleted file mode 100644 index 898f0865aff0..000000000000 --- a/src/chrome/content/rules/OzBargain.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Ozon.Travel.xml b/src/chrome/content/rules/Ozon.Travel.xml index 44eecc147540..235506da6422 100644 --- a/src/chrome/content/rules/Ozon.Travel.xml +++ b/src/chrome/content/rules/Ozon.Travel.xml @@ -16,7 +16,7 @@ --> - + diff --git a/src/chrome/content/rules/Ozon.ru.xml b/src/chrome/content/rules/Ozon.ru.xml deleted file mode 100644 index 59c259555e5e..000000000000 --- a/src/chrome/content/rules/Ozon.ru.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/P6R.com.xml b/src/chrome/content/rules/P6R.com.xml index e21457230b64..76448a580c5a 100644 --- a/src/chrome/content/rules/P6R.com.xml +++ b/src/chrome/content/rules/P6R.com.xml @@ -1,9 +1,9 @@ - + + - diff --git a/src/chrome/content/rules/PACW.org.xml b/src/chrome/content/rules/PACW.org.xml deleted file mode 100644 index bc73c4fedac6..000000000000 --- a/src/chrome/content/rules/PACW.org.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/PBHS.xml b/src/chrome/content/rules/PBHS.xml index 2603a28810c8..fefa606ea24a 100644 --- a/src/chrome/content/rules/PBHS.xml +++ b/src/chrome/content/rules/PBHS.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/PBS.org.xml b/src/chrome/content/rules/PBS.org.xml new file mode 100644 index 000000000000..0af714155691 --- /dev/null +++ b/src/chrome/content/rules/PBS.org.xml @@ -0,0 +1,19 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/PBS.xml b/src/chrome/content/rules/PBS.xml deleted file mode 100644 index 75f4371db688..000000000000 --- a/src/chrome/content/rules/PBS.xml +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/PBSKids.org.xml b/src/chrome/content/rules/PBSKids.org.xml new file mode 100644 index 000000000000..21dea9a13bda --- /dev/null +++ b/src/chrome/content/rules/PBSKids.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/PB_Web_Dev.com.xml b/src/chrome/content/rules/PB_Web_Dev.com.xml deleted file mode 100644 index 63296c4f9767..000000000000 --- a/src/chrome/content/rules/PB_Web_Dev.com.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/PBase.xml b/src/chrome/content/rules/PBase.xml index 06847d92144d..897dbe7a2cb9 100644 --- a/src/chrome/content/rules/PBase.xml +++ b/src/chrome/content/rules/PBase.xml @@ -18,13 +18,14 @@ - + + + - + diff --git a/src/chrome/content/rules/PBwiki.xml b/src/chrome/content/rules/PBwiki.xml deleted file mode 100644 index 0c2180ca235e..000000000000 --- a/src/chrome/content/rules/PBwiki.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/PBworks.com.xml b/src/chrome/content/rules/PBworks.com.xml new file mode 100644 index 000000000000..1ad92195861f --- /dev/null +++ b/src/chrome/content/rules/PBworks.com.xml @@ -0,0 +1,10 @@ + + + + + + + + diff --git a/src/chrome/content/rules/PBworks.xml b/src/chrome/content/rules/PBworks.xml index d94f6d5dcd6e..72742ef0d361 100644 --- a/src/chrome/content/rules/PBworks.xml +++ b/src/chrome/content/rules/PBworks.xml @@ -3,7 +3,7 @@ - + - + @@ -56,7 +56,7 @@ Fetch error: http://bugs.pcbsd.org/ => https://bugs.pcbsd.org/: (60, 'SSL certif - + - + + + + + + diff --git a/src/chrome/content/rules/PCCU.edu.tw.xml b/src/chrome/content/rules/PCCU.edu.tw.xml index b8ac64ba8025..6684f5780792 100644 --- a/src/chrome/content/rules/PCCU.edu.tw.xml +++ b/src/chrome/content/rules/PCCU.edu.tw.xml @@ -56,7 +56,7 @@ - + + + + + + + + + diff --git a/src/chrome/content/rules/PCGamesHardware.de.xml b/src/chrome/content/rules/PCGamesHardware.de.xml new file mode 100644 index 000000000000..2a26ec7c7c3e --- /dev/null +++ b/src/chrome/content/rules/PCGamesHardware.de.xml @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/PCI-Security-Standards-Council.xml b/src/chrome/content/rules/PCI-Security-Standards-Council.xml deleted file mode 100644 index 2a0aa20c8d53..000000000000 --- a/src/chrome/content/rules/PCI-Security-Standards-Council.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/PCPD.org.hk.xml b/src/chrome/content/rules/PCPD.org.hk.xml new file mode 100644 index 000000000000..efbbf4a3aa3e --- /dev/null +++ b/src/chrome/content/rules/PCPD.org.hk.xml @@ -0,0 +1,19 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/PCPro.co.uk.xml b/src/chrome/content/rules/PCPro.co.uk.xml index 013d71db4a8d..620a6300d6a9 100644 --- a/src/chrome/content/rules/PCPro.co.uk.xml +++ b/src/chrome/content/rules/PCPro.co.uk.xml @@ -10,7 +10,7 @@ Fetch error: http://sprites.pcpro.co.uk/ => https://desawk404a9v3.cloudfront.net pcpro.s3.amazonaws.com --> - + diff --git a/src/chrome/content/rules/PCS.com.xml b/src/chrome/content/rules/PCS.com.xml index 5a8898d0038d..ec1e79b21db2 100644 --- a/src/chrome/content/rules/PCS.com.xml +++ b/src/chrome/content/rules/PCS.com.xml @@ -1,41 +1,20 @@ - + - - - - - + + - + - + diff --git a/src/chrome/content/rules/PCWorld.xml b/src/chrome/content/rules/PCWorld.xml index 35301d7ccb51..aa3b2da88745 100644 --- a/src/chrome/content/rules/PCWorld.xml +++ b/src/chrome/content/rules/PCWorld.xml @@ -1,11 +1,36 @@ - + + + + + + diff --git a/src/chrome/content/rules/PC_Booster.xml b/src/chrome/content/rules/PC_Booster.xml index ed30e91907f1..75419906b130 100644 --- a/src/chrome/content/rules/PC_Booster.xml +++ b/src/chrome/content/rules/PC_Booster.xml @@ -9,16 +9,13 @@ - + + - - - + diff --git a/src/chrome/content/rules/PConline.xml b/src/chrome/content/rules/PConline.xml index efb4cca2e7d0..fadda50725a5 100644 --- a/src/chrome/content/rules/PConline.xml +++ b/src/chrome/content/rules/PConline.xml @@ -1,28 +1,42 @@ - - + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + + - diff --git a/src/chrome/content/rules/PCtipp.ch.xml b/src/chrome/content/rules/PCtipp.ch.xml new file mode 100644 index 000000000000..d17ec651e5cd --- /dev/null +++ b/src/chrome/content/rules/PCtipp.ch.xml @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/PDE.cc.xml b/src/chrome/content/rules/PDE.cc.xml new file mode 100644 index 000000000000..2f0fffbdb380 --- /dev/null +++ b/src/chrome/content/rules/PDE.cc.xml @@ -0,0 +1,9 @@ + + + + + + + + diff --git a/src/chrome/content/rules/PDFMerge.com.xml b/src/chrome/content/rules/PDFMerge.com.xml index 9c0ff782ea55..a3aff571b0e3 100644 --- a/src/chrome/content/rules/PDFMerge.com.xml +++ b/src/chrome/content/rules/PDFMerge.com.xml @@ -5,6 +5,6 @@ - diff --git a/src/chrome/content/rules/PDF_Labs.com.xml b/src/chrome/content/rules/PDF_Labs.com.xml index ca1508b1e624..f0c9d45d415a 100644 --- a/src/chrome/content/rules/PDF_Labs.com.xml +++ b/src/chrome/content/rules/PDF_Labs.com.xml @@ -4,7 +4,7 @@ - + + + + + + + diff --git a/src/chrome/content/rules/PEP-project.org.xml b/src/chrome/content/rules/PEP-project.org.xml index 33331639d4f2..8bbee5a12c53 100644 --- a/src/chrome/content/rules/PEP-project.org.xml +++ b/src/chrome/content/rules/PEP-project.org.xml @@ -1,5 +1,5 @@ - + diff --git a/src/chrome/content/rules/PG_CDN.com.xml b/src/chrome/content/rules/PG_CDN.com.xml deleted file mode 100644 index da16fc36faf6..000000000000 --- a/src/chrome/content/rules/PG_CDN.com.xml +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/PGi-problematic.xml b/src/chrome/content/rules/PGi-problematic.xml index 5f6a815b0db4..ef83e4825164 100644 --- a/src/chrome/content/rules/PGi-problematic.xml +++ b/src/chrome/content/rules/PGi-problematic.xml @@ -4,13 +4,14 @@ --> - + + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/PHP.xml b/src/chrome/content/rules/PHP.xml index aad97287b083..b16fbcce5828 100644 --- a/src/chrome/content/rules/PHP.xml +++ b/src/chrome/content/rules/PHP.xml @@ -6,11 +6,9 @@ - gcov ² - gtk ³ - lxr ¹ - - museum ¹ - news ¹ - snaps ¹ - talks ³ - - windows ¹ - www ⁴ ¹ Refused @@ -46,6 +44,7 @@ + @@ -56,6 +55,7 @@ + diff --git a/src/chrome/content/rules/PHPNET.xml b/src/chrome/content/rules/PHPNET.xml index f239b6764f6b..a55bbbc6ab8a 100644 --- a/src/chrome/content/rules/PHPNET.xml +++ b/src/chrome/content/rules/PHPNET.xml @@ -20,7 +20,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/PHPartners.org.xml b/src/chrome/content/rules/PHPartners.org.xml deleted file mode 100644 index f72601253060..000000000000 --- a/src/chrome/content/rules/PHPartners.org.xml +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/PH_Cheats.xml b/src/chrome/content/rules/PH_Cheats.xml index 623e6accc2e0..5d3b2145ed9b 100644 --- a/src/chrome/content/rules/PH_Cheats.xml +++ b/src/chrome/content/rules/PH_Cheats.xml @@ -9,7 +9,7 @@ Fetch error: http://phcheats.com/ => https://phcheats.com/: Cycle detected - URL Mixed image from levelrapido.com --> - + @@ -20,4 +20,4 @@ Fetch error: http://phcheats.com/ => https://phcheats.com/: Cycle detected - URL - \ No newline at end of file + diff --git a/src/chrome/content/rules/PICMET.org.xml b/src/chrome/content/rules/PICMET.org.xml index adec65c18e91..c1b02a56227d 100644 --- a/src/chrome/content/rules/PICMET.org.xml +++ b/src/chrome/content/rules/PICMET.org.xml @@ -1,19 +1,8 @@ - - - - - + + + - - + diff --git a/src/chrome/content/rules/PIERS.xml b/src/chrome/content/rules/PIERS.xml index 89abdc9784c0..2f33c09d5189 100644 --- a/src/chrome/content/rules/PIERS.xml +++ b/src/chrome/content/rules/PIERS.xml @@ -7,7 +7,7 @@ - + https://www20.pipni.cz/: (28, 'Connection - www5.pipni.cz - www9.pipni.cz --> - + diff --git a/src/chrome/content/rules/PIXinsight.com.tw.xml b/src/chrome/content/rules/PIXinsight.com.tw.xml index b2f14897d2dc..b2cb3e17316a 100644 --- a/src/chrome/content/rules/PIXinsight.com.tw.xml +++ b/src/chrome/content/rules/PIXinsight.com.tw.xml @@ -10,17 +10,14 @@ --> - + - - - + diff --git a/src/chrome/content/rules/PI_CERT.it.xml b/src/chrome/content/rules/PI_CERT.it.xml index 71dc5947f25d..af792c5f6107 100644 --- a/src/chrome/content/rules/PI_CERT.it.xml +++ b/src/chrome/content/rules/PI_CERT.it.xml @@ -12,7 +12,7 @@ - + - + - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/PJ_Media.xml b/src/chrome/content/rules/PJ_Media.xml index 182a2226d380..5c6bd70d8c03 100644 --- a/src/chrome/content/rules/PJ_Media.xml +++ b/src/chrome/content/rules/PJ_Media.xml @@ -1,7 +1,6 @@ diff --git a/src/chrome/content/rules/PKWARE.com.xml b/src/chrome/content/rules/PKWARE.com.xml index 5681cc3c4d7d..be4266660bff 100644 --- a/src/chrome/content/rules/PKWARE.com.xml +++ b/src/chrome/content/rules/PKWARE.com.xml @@ -9,7 +9,8 @@ Fetch error: http://pkware.com/ => https://pkware.com/: (35, 'error:14094410:SSL - + + @@ -21,4 +22,4 @@ Fetch error: http://pkware.com/ => https://pkware.com/: (35, 'error:14094410:SSL - \ No newline at end of file + diff --git a/src/chrome/content/rules/PL-Casual-Dating.xml b/src/chrome/content/rules/PL-Casual-Dating.xml deleted file mode 100644 index 775860b25b27..000000000000 --- a/src/chrome/content/rules/PL-Casual-Dating.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/PLD-Linux.org.xml b/src/chrome/content/rules/PLD-Linux.org.xml index 250b8991ea04..72d86ae312fc 100644 --- a/src/chrome/content/rules/PLD-Linux.org.xml +++ b/src/chrome/content/rules/PLD-Linux.org.xml @@ -50,7 +50,7 @@ - + - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/PNC.xml b/src/chrome/content/rules/PNC.xml deleted file mode 100644 index a0a57300649d..000000000000 --- a/src/chrome/content/rules/PNC.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/PNP4Nagios.org.xml b/src/chrome/content/rules/PNP4Nagios.org.xml index 75d172758132..478a6416b05d 100644 --- a/src/chrome/content/rules/PNP4Nagios.org.xml +++ b/src/chrome/content/rules/PNP4Nagios.org.xml @@ -5,7 +5,7 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/POLi_Payments.com.xml b/src/chrome/content/rules/POLi_Payments.com.xml deleted file mode 100644 index 982b36d200a3..000000000000 --- a/src/chrome/content/rules/POLi_Payments.com.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/POODLE.io.xml b/src/chrome/content/rules/POODLE.io.xml index 7587bca6d399..aeebe7ff1340 100644 --- a/src/chrome/content/rules/POODLE.io.xml +++ b/src/chrome/content/rules/POODLE.io.xml @@ -1,10 +1,8 @@ - + - - + diff --git a/src/chrome/content/rules/POODLE_Test.com.xml b/src/chrome/content/rules/POODLE_Test.com.xml index a9bc537a24ad..de2463332e45 100644 --- a/src/chrome/content/rules/POODLE_Test.com.xml +++ b/src/chrome/content/rules/POODLE_Test.com.xml @@ -5,7 +5,7 @@ Fetch error: http://poodletest.com/ => https://poodletest.com/: (28, 'Connection Fetch error: http://www.poodletest.com/ => https://www.poodletest.com/: (28, 'Connection timed out after 20001 milliseconds') --> - + diff --git a/src/chrome/content/rules/POP.xml b/src/chrome/content/rules/POP.xml deleted file mode 100644 index abbed0e1ffaa..000000000000 --- a/src/chrome/content/rules/POP.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/PORTAL_Masq.com.xml b/src/chrome/content/rules/PORTAL_Masq.com.xml index 65c938538ebe..0e158bc278fd 100644 --- a/src/chrome/content/rules/PORTAL_Masq.com.xml +++ b/src/chrome/content/rules/PORTAL_Masq.com.xml @@ -24,7 +24,7 @@ Fetch error: http://www.portalmasq.com/ => https://www.portalmasq.com/: (28, 'Op - .portalmasq.com --> - + diff --git a/src/chrome/content/rules/POS_Portal.com.xml b/src/chrome/content/rules/POS_Portal.com.xml index baae97901387..9a4a98b36ca8 100644 --- a/src/chrome/content/rules/POS_Portal.com.xml +++ b/src/chrome/content/rules/POS_Portal.com.xml @@ -17,7 +17,8 @@ - + + diff --git a/src/chrome/content/rules/PPCoin.xml b/src/chrome/content/rules/PPCoin.xml index c6af04cbd91a..013e0514f9ae 100644 --- a/src/chrome/content/rules/PPCoin.xml +++ b/src/chrome/content/rules/PPCoin.xml @@ -20,4 +20,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/PPS.xml b/src/chrome/content/rules/PPS.xml index 796377c42735..948decc90e20 100644 --- a/src/chrome/content/rules/PPS.xml +++ b/src/chrome/content/rules/PPS.xml @@ -57,7 +57,7 @@ Fetch error: http://tg.piratenpartei.ch/ => https://tg.piratenpartei.ch/: (51, " ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + diff --git a/src/chrome/content/rules/PPSSPP.org.xml b/src/chrome/content/rules/PPSSPP.org.xml new file mode 100644 index 000000000000..5be4ffac4e4d --- /dev/null +++ b/src/chrome/content/rules/PPSSPP.org.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/PQCrypto.org.xml b/src/chrome/content/rules/PQCrypto.org.xml index 695e8b9a04d4..3fa64d15a1e3 100644 --- a/src/chrome/content/rules/PQCrypto.org.xml +++ b/src/chrome/content/rules/PQCrypto.org.xml @@ -2,5 +2,7 @@ + + diff --git a/src/chrome/content/rules/PQ_Archiver.com.xml b/src/chrome/content/rules/PQ_Archiver.com.xml deleted file mode 100644 index 0ca5b9c23b78..000000000000 --- a/src/chrome/content/rules/PQ_Archiver.com.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/PR-Newswire.xml b/src/chrome/content/rules/PR-Newswire.xml index b324a16fe8b3..1c29a9029679 100644 --- a/src/chrome/content/rules/PR-Newswire.xml +++ b/src/chrome/content/rules/PR-Newswire.xml @@ -1,45 +1,21 @@ - - + - - + + - - - - - - + - + diff --git a/src/chrome/content/rules/PRQ.se.xml b/src/chrome/content/rules/PRQ.se.xml index b99acd8aa40e..ade95bd8a77b 100644 --- a/src/chrome/content/rules/PRQ.se.xml +++ b/src/chrome/content/rules/PRQ.se.xml @@ -1,11 +1,27 @@ - + + Timeout was reached: + - admin + + HTTP authentication required: + - mgmt + + Customer subdomains: + - host-*.cust.prq.se +--> + + + + + - + - diff --git a/src/chrome/content/rules/PRV.se.xml b/src/chrome/content/rules/PRV.se.xml index 8a27ebc9b34f..5130e0f47f50 100644 --- a/src/chrome/content/rules/PRV.se.xml +++ b/src/chrome/content/rules/PRV.se.xml @@ -1,7 +1,13 @@ - + - - - + + + + + + + + + diff --git a/src/chrome/content/rules/PRX.xml b/src/chrome/content/rules/PRX.xml index 086fc3f07882..6ce69a5046f9 100644 --- a/src/chrome/content/rules/PRX.xml +++ b/src/chrome/content/rules/PRX.xml @@ -18,16 +18,13 @@ - + + - - - + diff --git a/src/chrome/content/rules/PR_SA.pl.xml b/src/chrome/content/rules/PR_SA.pl.xml index aed0c97c16db..7f3e2be5720e 100644 --- a/src/chrome/content/rules/PR_SA.pl.xml +++ b/src/chrome/content/rules/PR_SA.pl.xml @@ -10,7 +10,7 @@ - + - + - - - - - diff --git a/src/chrome/content/rules/PS3Crunch.xml b/src/chrome/content/rules/PS3Crunch.xml index 85a91ab1e259..84757c948325 100644 --- a/src/chrome/content/rules/PS3Crunch.xml +++ b/src/chrome/content/rules/PS3Crunch.xml @@ -12,4 +12,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/PSA_Rips.com.xml b/src/chrome/content/rules/PSA_Rips.com.xml deleted file mode 100644 index 8ef91eef5c7a..000000000000 --- a/src/chrome/content/rules/PSA_Rips.com.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/PSC.edu.xml b/src/chrome/content/rules/PSC.edu.xml index aceaeb0104c8..3f26dda2aa77 100644 --- a/src/chrome/content/rules/PSC.edu.xml +++ b/src/chrome/content/rules/PSC.edu.xml @@ -19,16 +19,16 @@ Fetch error: http://delicate.psc.edu/ => https://delicate.psc.edu/: (28, 'Connec - www --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/PSI-Network.de.xml b/src/chrome/content/rules/PSI-Network.de.xml new file mode 100644 index 000000000000..3ece57ae3f17 --- /dev/null +++ b/src/chrome/content/rules/PSI-Network.de.xml @@ -0,0 +1,13 @@ + + + + + + + + diff --git a/src/chrome/content/rules/PSSL.com.xml b/src/chrome/content/rules/PSSL.com.xml index 1779ab5c9f7c..81417f5fcbfb 100644 --- a/src/chrome/content/rules/PSSL.com.xml +++ b/src/chrome/content/rules/PSSL.com.xml @@ -1,22 +1,22 @@ - + + + - + - - - - - - \ No newline at end of file + diff --git a/src/chrome/content/rules/PSX-Extreme.xml b/src/chrome/content/rules/PSX-Extreme.xml index 6566219e071f..68c7e2923cf2 100644 --- a/src/chrome/content/rules/PSX-Extreme.xml +++ b/src/chrome/content/rules/PSX-Extreme.xml @@ -10,7 +10,6 @@ - + diff --git a/src/chrome/content/rules/PTE.xml b/src/chrome/content/rules/PTE.xml index 2d14bcbea3a7..11df7a04d821 100644 --- a/src/chrome/content/rules/PTE.xml +++ b/src/chrome/content/rules/PTE.xml @@ -1,5 +1,5 @@ - + diff --git a/src/chrome/content/rules/PTT.br.xml b/src/chrome/content/rules/PTT.br.xml index c56b16745252..f03aa5fa7380 100644 --- a/src/chrome/content/rules/PTT.br.xml +++ b/src/chrome/content/rules/PTT.br.xml @@ -15,7 +15,7 @@ Fetch error: http://ptt.br/ => https://ptt.br/: (60, 'SSL certificate problem: u * Secured by us --> - + diff --git a/src/chrome/content/rules/PZN.lgbt.xml b/src/chrome/content/rules/PZN.lgbt.xml new file mode 100644 index 000000000000..ae97ddaf6c4d --- /dev/null +++ b/src/chrome/content/rules/PZN.lgbt.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Pabo.xml b/src/chrome/content/rules/Pabo.xml index 25d57d5094b1..9c02296b03e6 100644 --- a/src/chrome/content/rules/Pabo.xml +++ b/src/chrome/content/rules/Pabo.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/PacBSD.org.xml b/src/chrome/content/rules/PacBSD.org.xml index b4a116bfce91..0179dd977333 100644 --- a/src/chrome/content/rules/PacBSD.org.xml +++ b/src/chrome/content/rules/PacBSD.org.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://aur.pacbsd.org/ => https://aur.pacbsd.org/: (6, 'Could not resolve host: aur.pacbsd.org') --> - + @@ -15,7 +15,7 @@ Fetch error: http://aur.pacbsd.org/ => https://aur.pacbsd.org/: (6, 'Could not r - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Pace_Bus.com.xml b/src/chrome/content/rules/Pace_Bus.com.xml deleted file mode 100644 index 0d63d2e4b2ed..000000000000 --- a/src/chrome/content/rules/Pace_Bus.com.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Pachube.com.xml b/src/chrome/content/rules/Pachube.com.xml deleted file mode 100644 index 8f999ea61ca3..000000000000 --- a/src/chrome/content/rules/Pachube.com.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Package_Lab.com.xml b/src/chrome/content/rules/Package_Lab.com.xml index 04c18912891a..742bbd4e888a 100644 --- a/src/chrome/content/rules/Package_Lab.com.xml +++ b/src/chrome/content/rules/Package_Lab.com.xml @@ -6,7 +6,7 @@ Fetch error: http://static.packagelab.com/ => https://static.packagelab.com/: (6 Fetch error: http://www.packagelab.com/ => https://www.packagelab.com/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/Packet.net.xml b/src/chrome/content/rules/Packet.net.xml index bb7c2e917ca2..c6a857ef6b26 100644 --- a/src/chrome/content/rules/Packet.net.xml +++ b/src/chrome/content/rules/Packet.net.xml @@ -17,7 +17,7 @@ - + https://packetstatic.com/: (51, "SSL: n www.packetstatic.com: Mismatched --> - + diff --git a/src/chrome/content/rules/Packt_Publishing-problematic.xml b/src/chrome/content/rules/Packt_Publishing-problematic.xml index 031485d9456d..06abc9f3a780 100644 --- a/src/chrome/content/rules/Packt_Publishing-problematic.xml +++ b/src/chrome/content/rules/Packt_Publishing-problematic.xml @@ -7,7 +7,6 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Packt_Publishing.xml b/src/chrome/content/rules/Packt_Publishing.xml index 4ba2aa0f3fe3..5e18f02f6005 100644 --- a/src/chrome/content/rules/Packt_Publishing.xml +++ b/src/chrome/content/rules/Packt_Publishing.xml @@ -25,13 +25,15 @@ - + + + + - + diff --git a/src/chrome/content/rules/Pacnet.xml b/src/chrome/content/rules/Pacnet.xml deleted file mode 100644 index 0821c2dd676e..000000000000 --- a/src/chrome/content/rules/Pacnet.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/PagPop.xml b/src/chrome/content/rules/PagPop.xml index f237ddd93502..52c14af8389f 100644 --- a/src/chrome/content/rules/PagPop.xml +++ b/src/chrome/content/rules/PagPop.xml @@ -6,18 +6,17 @@ Fetch error: http://vitalcred.com.br/ => https://vitalcred.com.br/: (6, 'Could n Disabled by https-everywhere-checker because: Fetch error: http://pagpop.com.br/ => https://pagpop.com.br/: (60, 'SSL certificate problem: certificate has expired') --> - + - - + + - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/PageAbode.com.xml b/src/chrome/content/rules/PageAbode.com.xml new file mode 100644 index 000000000000..134c2c24956f --- /dev/null +++ b/src/chrome/content/rules/PageAbode.com.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/PageFair.com.xml b/src/chrome/content/rules/PageFair.com.xml index 19d226265065..cb1ff139b786 100644 --- a/src/chrome/content/rules/PageFair.com.xml +++ b/src/chrome/content/rules/PageFair.com.xml @@ -16,7 +16,7 @@ --> - + https://g1-bre.pagekite.net/: (6, 'Could not resolve host: g1-bre.pagekite.net') --> - + diff --git a/src/chrome/content/rules/Pagely.xml b/src/chrome/content/rules/Pagely.xml index 1bfa9e1e6aa4..cdd7f535c3a8 100644 --- a/src/chrome/content/rules/Pagely.xml +++ b/src/chrome/content/rules/Pagely.xml @@ -1,4 +1,4 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Pagina_Zero.xml b/src/chrome/content/rules/Pagina_Zero.xml index b5180a2f7b1c..6ff30b89f3d0 100644 --- a/src/chrome/content/rules/Pagina_Zero.xml +++ b/src/chrome/content/rules/Pagina_Zero.xml @@ -7,7 +7,7 @@ Fetch error: http://www.paginazero.com.br/ => https://www.paginazero.com.br/: (5 Disabled by https-everywhere-checker because: Fetch error: http://paginazero.com.br/ => https://paginazero.com.br/: (51, "SSL: no alternative certificate subject name matches target host name 'paginazero.com.br'") --> - + @@ -18,4 +18,4 @@ Fetch error: http://paginazero.com.br/ => https://paginazero.com.br/: (51, "SSL: - \ No newline at end of file + diff --git a/src/chrome/content/rules/Paglen.com.xml b/src/chrome/content/rules/Paglen.com.xml new file mode 100644 index 000000000000..03530fe35dc8 --- /dev/null +++ b/src/chrome/content/rules/Paglen.com.xml @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Pagoda_Box.xml b/src/chrome/content/rules/Pagoda_Box.xml index 0f395f123d2f..6d985e7f7c32 100644 --- a/src/chrome/content/rules/Pagoda_Box.xml +++ b/src/chrome/content/rules/Pagoda_Box.xml @@ -20,12 +20,15 @@ Fetch error: http://pagodabox.com/ => https://pagodabox.com/: (60, 'SSL certific - help (redirects to http; mismatched, CN: *.assistly.com) --> - + - + + + + @@ -35,7 +38,6 @@ Fetch error: http://pagodabox.com/ => https://pagodabox.com/: (60, 'SSL certific - + diff --git a/src/chrome/content/rules/Pair-Networks.xml b/src/chrome/content/rules/Pair-Networks.xml index 20cce32140ac..8494d5420bce 100644 --- a/src/chrome/content/rules/Pair-Networks.xml +++ b/src/chrome/content/rules/Pair-Networks.xml @@ -7,46 +7,25 @@ - blog.pairnic.com (cert: *.pair.com; redirects there) - (www.)pairvps.com - (www.)quickserve.com (ditto) - --> - - - + + + - - - - - - - - - - - - - - - - - - + + + + + - + + diff --git a/src/chrome/content/rules/PalSolidarity.org.xml b/src/chrome/content/rules/PalSolidarity.org.xml index 0f13dd0c6599..7ce7815e0e33 100644 --- a/src/chrome/content/rules/PalSolidarity.org.xml +++ b/src/chrome/content/rules/PalSolidarity.org.xml @@ -3,7 +3,7 @@ - iframe from www.youtube.com * - css on ^, spain from $self * - + - Images, on: - ^, spain from $self * @@ -24,7 +24,7 @@ - + - + + @@ -21,7 +22,6 @@ - + diff --git a/src/chrome/content/rules/Pale_Moon.org.xml b/src/chrome/content/rules/Pale_Moon.org.xml index 21f25de3e96d..7530c3674212 100644 --- a/src/chrome/content/rules/Pale_Moon.org.xml +++ b/src/chrome/content/rules/Pale_Moon.org.xml @@ -1,71 +1,18 @@ - + + + - - - - - - - - - - - + + - + + diff --git a/src/chrome/content/rules/Palfrader.org.xml b/src/chrome/content/rules/Palfrader.org.xml index 187e0600a5a5..d776a79d06ab 100644 --- a/src/chrome/content/rules/Palfrader.org.xml +++ b/src/chrome/content/rules/Palfrader.org.xml @@ -4,7 +4,7 @@ - + https://developer.palm.com/: (28, 'Co For other Hewlett Packard coverage, see Hewlett-Packard.xml. --> - + @@ -20,7 +20,6 @@ Fetch error: http://developer.palm.com/ => https://developer.palm.com/: (28, 'Co - + diff --git a/src/chrome/content/rules/Palm_Coast_Data-problematic.xml b/src/chrome/content/rules/Palm_Coast_Data-problematic.xml deleted file mode 100644 index 34e1bf735966..000000000000 --- a/src/chrome/content/rules/Palm_Coast_Data-problematic.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Palm_Coast_Data.xml b/src/chrome/content/rules/Palm_Coast_Data.xml index ab7d9c26ac45..29b9b4544946 100644 --- a/src/chrome/content/rules/Palm_Coast_Data.xml +++ b/src/chrome/content/rules/Palm_Coast_Data.xml @@ -1,35 +1,22 @@ - + - + + + + - + diff --git a/src/chrome/content/rules/Palmetto.com.xml b/src/chrome/content/rules/Palmetto.com.xml index b9590af4b7cf..0a2325ee825b 100644 --- a/src/chrome/content/rules/Palmetto.com.xml +++ b/src/chrome/content/rules/Palmetto.com.xml @@ -13,4 +13,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Palms_Casino_Resort.xml b/src/chrome/content/rules/Palms_Casino_Resort.xml index 6eac693b0008..ad4839edd308 100644 --- a/src/chrome/content/rules/Palms_Casino_Resort.xml +++ b/src/chrome/content/rules/Palms_Casino_Resort.xml @@ -11,7 +11,7 @@ - + https://portal3.wi - portal3.wildfire.paloaltonetworks.com --> - + diff --git a/src/chrome/content/rules/Palo_Alto_Research_Center.xml b/src/chrome/content/rules/Palo_Alto_Research_Center.xml index 66d2e96fa9da..6a689ce3e437 100644 --- a/src/chrome/content/rules/Palo_Alto_Research_Center.xml +++ b/src/chrome/content/rules/Palo_Alto_Research_Center.xml @@ -11,4 +11,4 @@ --> - \ No newline at end of file + diff --git a/src/chrome/content/rules/Pan-Islamic_Malaysian_Party.xml b/src/chrome/content/rules/Pan-Islamic_Malaysian_Party.xml index 06f88c9dab73..8ec290f6dd9a 100644 --- a/src/chrome/content/rules/Pan-Islamic_Malaysian_Party.xml +++ b/src/chrome/content/rules/Pan-Islamic_Malaysian_Party.xml @@ -15,4 +15,4 @@ Fetch error: http://pas.org.my/ => https://pas.org.my/: (60, 'SSL certificate pr - \ No newline at end of file + diff --git a/src/chrome/content/rules/Panasonic.com.xml b/src/chrome/content/rules/Panasonic.com.xml index 3c1acb14dcde..8058b5b37468 100644 --- a/src/chrome/content/rules/Panasonic.com.xml +++ b/src/chrome/content/rules/Panasonic.com.xml @@ -1,38 +1,57 @@ - - - - - + + + + + + + + + + + + + + + + - - - + diff --git a/src/chrome/content/rules/Panax.xml b/src/chrome/content/rules/Panax.xml index 70c2b853513b..9bc36949d220 100644 --- a/src/chrome/content/rules/Panax.xml +++ b/src/chrome/content/rules/Panax.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Panda-Express.xml b/src/chrome/content/rules/Panda-Express.xml index 9c07365367fd..9063d3c78fae 100644 --- a/src/chrome/content/rules/Panda-Express.xml +++ b/src/chrome/content/rules/Panda-Express.xml @@ -24,14 +24,12 @@ - - + + - \ No newline at end of file + diff --git a/src/chrome/content/rules/PandaWhale.xml b/src/chrome/content/rules/PandaWhale.xml index 6323547bcddb..73232d1b76d9 100644 --- a/src/chrome/content/rules/PandaWhale.xml +++ b/src/chrome/content/rules/PandaWhale.xml @@ -11,10 +11,10 @@ Fetch error: http://pandawhale.com/ => https://pandawhale.com/: (35, 'error:1407 Cert only matches ^. --> - + - + diff --git a/src/chrome/content/rules/Pando.xml b/src/chrome/content/rules/Pando.xml index 22f9d041a534..fc5e6db3be66 100644 --- a/src/chrome/content/rules/Pando.xml +++ b/src/chrome/content/rules/Pando.xml @@ -12,9 +12,9 @@ - + - + - - - - - - - - diff --git a/src/chrome/content/rules/Pangora.xml b/src/chrome/content/rules/Pangora.xml deleted file mode 100644 index f2d1f43fcbcd..000000000000 --- a/src/chrome/content/rules/Pangora.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Panic.xml b/src/chrome/content/rules/Panic.xml index b484edcbbe4d..d3d501673464 100644 --- a/src/chrome/content/rules/Panic.xml +++ b/src/chrome/content/rules/Panic.xml @@ -4,8 +4,8 @@ - - + + - - - - - - - - - diff --git a/src/chrome/content/rules/Panli.com.xml b/src/chrome/content/rules/Panli.com.xml new file mode 100644 index 000000000000..9f443e35c270 --- /dev/null +++ b/src/chrome/content/rules/Panli.com.xml @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Panopticlick.com.xml b/src/chrome/content/rules/Panopticlick.com.xml index 86a0cf584331..446759515cfa 100644 --- a/src/chrome/content/rules/Panopticlick.com.xml +++ b/src/chrome/content/rules/Panopticlick.com.xml @@ -1,21 +1,14 @@ - - + + - - - - - + diff --git a/src/chrome/content/rules/Panopto.com.xml b/src/chrome/content/rules/Panopto.com.xml index a653e5d16ef8..81c03582aa19 100644 --- a/src/chrome/content/rules/Panopto.com.xml +++ b/src/chrome/content/rules/Panopto.com.xml @@ -28,7 +28,7 @@ Fetch error: http://helpdesk.panopto.com/ => https://helpdesk.panopto.com/: (6, ˢ Secured by us --> - + @@ -55,7 +55,7 @@ Fetch error: http://helpdesk.panopto.com/ => https://helpdesk.panopto.com/: (6, - + https://memopol.panoptykon.org/: (6, 'Could not resolve host: memopol.panoptykon.org') --> - + diff --git a/src/chrome/content/rules/Panoramio.com.xml b/src/chrome/content/rules/Panoramio.com.xml index 75c4ce987bdf..b30fd173296b 100644 --- a/src/chrome/content/rules/Panoramio.com.xml +++ b/src/chrome/content/rules/Panoramio.com.xml @@ -15,6 +15,6 @@ - diff --git a/src/chrome/content/rules/Panthema.net.xml b/src/chrome/content/rules/Panthema.net.xml new file mode 100644 index 000000000000..bad85424a9de --- /dev/null +++ b/src/chrome/content/rules/Panthema.net.xml @@ -0,0 +1,13 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Pantheon.xml b/src/chrome/content/rules/Pantheon.xml index 56af1bbe0d1d..2d5b107a0617 100644 --- a/src/chrome/content/rules/Pantheon.xml +++ b/src/chrome/content/rules/Pantheon.xml @@ -34,7 +34,7 @@ --> - + https://www.pao-pao.net/: (7, 'Failed to connect to www.pao-pao.net port 443: Connection refused') --> - + diff --git a/src/chrome/content/rules/PaoDelicia.com.xml b/src/chrome/content/rules/PaoDelicia.com.xml index 9166197d97ad..cf95e6313237 100644 --- a/src/chrome/content/rules/PaoDelicia.com.xml +++ b/src/chrome/content/rules/PaoDelicia.com.xml @@ -5,7 +5,7 @@ Fetch error: http://paodelicia.com/ => https://paodelicia.com/: (51, "SSL: no al Fetch error: http://www.paodelicia.com/ => https://www.paodelicia.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.paodelicia.com'") --> - + @@ -16,4 +16,4 @@ Fetch error: http://www.paodelicia.com/ => https://www.paodelicia.com/: (51, "SS - \ No newline at end of file + diff --git a/src/chrome/content/rules/Papakaya.com.xml b/src/chrome/content/rules/Papakaya.com.xml index 1e4e3ed5f132..ac2e25e59005 100644 --- a/src/chrome/content/rules/Papakaya.com.xml +++ b/src/chrome/content/rules/Papakaya.com.xml @@ -1,9 +1,4 @@ - - + @@ -12,7 +7,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Paperspace.io.xml b/src/chrome/content/rules/Paperspace.io.xml index 5d40ac8f44af..8ee91fd5df79 100644 --- a/src/chrome/content/rules/Paperspace.io.xml +++ b/src/chrome/content/rules/Paperspace.io.xml @@ -17,7 +17,7 @@ --> - + https://www.parapoupar.com/: (51, "SS Disabled by https-everywhere-checker because: Fetch error: http://parapoupar.com/ => https://parapoupar.com/: (51, "SSL: no alternative certificate subject name matches target host name 'parapoupar.com'") --> - + diff --git a/src/chrome/content/rules/Parabola.nu.xml b/src/chrome/content/rules/Parabola.nu.xml index 2231f581c6d1..05abee485474 100644 --- a/src/chrome/content/rules/Parabola.nu.xml +++ b/src/chrome/content/rules/Parabola.nu.xml @@ -21,6 +21,6 @@ - + diff --git a/src/chrome/content/rules/Paradysz.xml b/src/chrome/content/rules/Paradysz.xml index 0bc3d8fb7725..13f19a206570 100644 --- a/src/chrome/content/rules/Paradysz.xml +++ b/src/chrome/content/rules/Paradysz.xml @@ -11,13 +11,13 @@ - + + - + - + diff --git a/src/chrome/content/rules/Paragon_IE.com.xml b/src/chrome/content/rules/Paragon_IE.com.xml index 15a69eea3009..d89458b375ab 100644 --- a/src/chrome/content/rules/Paragon_IE.com.xml +++ b/src/chrome/content/rules/Paragon_IE.com.xml @@ -15,7 +15,7 @@ Fetch error: http://asgard.paragonie.com/ => https://asgard.paragonie.com/: (6, - .paragonie.com --> - + @@ -29,7 +29,7 @@ Fetch error: http://asgard.paragonie.com/ => https://asgard.paragonie.com/: (6, - + + + + + + diff --git a/src/chrome/content/rules/Paramount-Pictures.xml b/src/chrome/content/rules/Paramount-Pictures.xml index dd7476f4866d..3dbe9a23ed01 100644 --- a/src/chrome/content/rules/Paramount-Pictures.xml +++ b/src/chrome/content/rules/Paramount-Pictures.xml @@ -15,7 +15,7 @@ - + - + @@ -37,7 +37,7 @@ Fetch error: http://shareideas.parature.com/ => https://shareideas.parature.com/ --> - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Parcelforce.xml b/src/chrome/content/rules/Parcelforce.xml deleted file mode 100644 index d79cc2a3ad0f..000000000000 --- a/src/chrome/content/rules/Parcelforce.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Pardot-mismatches.xml b/src/chrome/content/rules/Pardot-mismatches.xml index 6130173ce1f6..fd5dc50b6500 100644 --- a/src/chrome/content/rules/Pardot-mismatches.xml +++ b/src/chrome/content/rules/Pardot-mismatches.xml @@ -7,7 +7,6 @@ - + diff --git a/src/chrome/content/rules/Pardot.xml b/src/chrome/content/rules/Pardot.xml index d1f62a32afb7..7bc562ed9436 100644 --- a/src/chrome/content/rules/Pardot.xml +++ b/src/chrome/content/rules/Pardot.xml @@ -50,7 +50,7 @@ Fetch error: http://help.pardot.com/ => https://help.pardot.com/: (51, "SSL: no loaded from. --> - + @@ -86,9 +86,6 @@ Fetch error: http://help.pardot.com/ => https://help.pardot.com/: (51, "SSL: no - - diff --git a/src/chrome/content/rules/ParisSchoolOfEconomics.xml b/src/chrome/content/rules/ParisSchoolOfEconomics.xml new file mode 100644 index 000000000000..992241bde1a6 --- /dev/null +++ b/src/chrome/content/rules/ParisSchoolOfEconomics.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Paris_Diderot_University.xml b/src/chrome/content/rules/Paris_Diderot_University.xml index 041647969a77..38985c932d53 100644 --- a/src/chrome/content/rules/Paris_Diderot_University.xml +++ b/src/chrome/content/rules/Paris_Diderot_University.xml @@ -20,4 +20,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Paris_School_of_Economics.eu.xml b/src/chrome/content/rules/Paris_School_of_Economics.eu.xml deleted file mode 100644 index 84bc50207691..000000000000 --- a/src/chrome/content/rules/Paris_School_of_Economics.eu.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Park_Models_Direct.xml b/src/chrome/content/rules/Park_Models_Direct.xml index 47bfad78551a..18032e726abb 100644 --- a/src/chrome/content/rules/Park_Models_Direct.xml +++ b/src/chrome/content/rules/Park_Models_Direct.xml @@ -8,9 +8,9 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/ParkerLab.com.xml b/src/chrome/content/rules/ParkerLab.com.xml new file mode 100644 index 000000000000..d2ab8dc17a26 --- /dev/null +++ b/src/chrome/content/rules/ParkerLab.com.xml @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/src/chrome/content/rules/ParkerLabs.com.xml b/src/chrome/content/rules/ParkerLabs.com.xml new file mode 100644 index 000000000000..3e49764bb396 --- /dev/null +++ b/src/chrome/content/rules/ParkerLabs.com.xml @@ -0,0 +1,16 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Parker_Soft.co.uk.xml b/src/chrome/content/rules/Parker_Soft.co.uk.xml index a808f34cd110..3c5327b0aa70 100644 --- a/src/chrome/content/rules/Parker_Soft.co.uk.xml +++ b/src/chrome/content/rules/Parker_Soft.co.uk.xml @@ -23,10 +23,11 @@ --> - + + + - + diff --git a/src/chrome/content/rules/Parkerpen.com.xml b/src/chrome/content/rules/Parkerpen.com.xml index cfc72ca9c02d..f389cdc16c3f 100644 --- a/src/chrome/content/rules/Parkerpen.com.xml +++ b/src/chrome/content/rules/Parkerpen.com.xml @@ -1,19 +1,23 @@ + - - - + - + diff --git a/src/chrome/content/rules/Parkrun.org.uk.xml b/src/chrome/content/rules/Parkrun.org.uk.xml index 2e6474998412..6b834b42f0b1 100644 --- a/src/chrome/content/rules/Parkrun.org.uk.xml +++ b/src/chrome/content/rules/Parkrun.org.uk.xml @@ -4,7 +4,7 @@ - + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Parrable.com.xml b/src/chrome/content/rules/Parrable.com.xml index cfe45ed03ab0..a0a789834740 100644 --- a/src/chrome/content/rules/Parrable.com.xml +++ b/src/chrome/content/rules/Parrable.com.xml @@ -5,13 +5,13 @@ - + + - + diff --git a/src/chrome/content/rules/Parrot.com.xml b/src/chrome/content/rules/Parrot.com.xml index 80b26428fbf0..ddaa99c0888c 100644 --- a/src/chrome/content/rules/Parrot.com.xml +++ b/src/chrome/content/rules/Parrot.com.xml @@ -43,7 +43,7 @@ Fetch error: http://www.recrute.parrot.com/ => https://www.recrute.parrot.com/: ² Not secured by us <= mismatched --> - + diff --git a/src/chrome/content/rules/Parrot.xml b/src/chrome/content/rules/Parrot.xml index c1a924ce5e51..c7655d3b9e24 100644 --- a/src/chrome/content/rules/Parrot.xml +++ b/src/chrome/content/rules/Parrot.xml @@ -17,4 +17,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Parse.ly-mismatches.xml b/src/chrome/content/rules/Parse.ly-mismatches.xml index 2c9f3059f177..c718942c1525 100644 --- a/src/chrome/content/rules/Parse.ly-mismatches.xml +++ b/src/chrome/content/rules/Parse.ly-mismatches.xml @@ -10,7 +10,6 @@ - + diff --git a/src/chrome/content/rules/ParseCDN.com.xml b/src/chrome/content/rules/ParseCDN.com.xml index 490ede6e43d2..b34a8ac411b8 100644 --- a/src/chrome/content/rules/ParseCDN.com.xml +++ b/src/chrome/content/rules/ParseCDN.com.xml @@ -16,7 +16,7 @@ Fetch error: http://www.parsecdn.com/js/parse-1.2.19.min.js => https://www.parse ^parsecdn.com doesn't exist. --> - + diff --git a/src/chrome/content/rules/Parship.nl.xml b/src/chrome/content/rules/Parship.nl.xml index 92eea9e7f46b..3678e0a962d4 100644 --- a/src/chrome/content/rules/Parship.nl.xml +++ b/src/chrome/content/rules/Parship.nl.xml @@ -1,5 +1,14 @@ + - + + + + - + + + diff --git a/src/chrome/content/rules/Part_Spider.com.xml b/src/chrome/content/rules/Part_Spider.com.xml index cd80a54b0984..6ab483092a06 100644 --- a/src/chrome/content/rules/Part_Spider.com.xml +++ b/src/chrome/content/rules/Part_Spider.com.xml @@ -13,7 +13,7 @@ Fetch error: http://www.partspider.com/ => https://partspider.com/: (28, 'Connec - partspider.com --> - + diff --git a/src/chrome/content/rules/Parter.ru.xml b/src/chrome/content/rules/Parter.ru.xml new file mode 100644 index 000000000000..d1533038b972 --- /dev/null +++ b/src/chrome/content/rules/Parter.ru.xml @@ -0,0 +1,21 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/ParticlesForJustice.org.xml b/src/chrome/content/rules/ParticlesForJustice.org.xml new file mode 100644 index 000000000000..9a9822c962c3 --- /dev/null +++ b/src/chrome/content/rules/ParticlesForJustice.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/PartitionWizard.com.xml b/src/chrome/content/rules/PartitionWizard.com.xml new file mode 100644 index 000000000000..51db84b17528 --- /dev/null +++ b/src/chrome/content/rules/PartitionWizard.com.xml @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Partypoker.com.xml b/src/chrome/content/rules/Partypoker.com.xml index 797a4460728d..2a1a89320189 100644 --- a/src/chrome/content/rules/Partypoker.com.xml +++ b/src/chrome/content/rules/Partypoker.com.xml @@ -1,9 +1,8 @@ - + - - + diff --git a/src/chrome/content/rules/Pashm.com.xml b/src/chrome/content/rules/Pashm.com.xml index 74409243f3c6..fdd851d716d0 100644 --- a/src/chrome/content/rules/Pashm.com.xml +++ b/src/chrome/content/rules/Pashm.com.xml @@ -14,7 +14,7 @@ Fetch error: http://www.pashm.com/ => https://pashm.com/: (28, 'Connection timed - www (redirects to http) --> - + diff --git a/src/chrome/content/rules/PasportaServo.org.xml b/src/chrome/content/rules/PasportaServo.org.xml deleted file mode 100644 index c8b8e6441599..000000000000 --- a/src/chrome/content/rules/PasportaServo.org.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/PassMark.com.xml b/src/chrome/content/rules/PassMark.com.xml index eddd34ba570e..397484167261 100644 --- a/src/chrome/content/rules/PassMark.com.xml +++ b/src/chrome/content/rules/PassMark.com.xml @@ -12,7 +12,7 @@ - + diff --git a/src/chrome/content/rules/PassSource.xml b/src/chrome/content/rules/PassSource.xml index 8af3320b9fc7..40b27d33ce36 100644 --- a/src/chrome/content/rules/PassSource.xml +++ b/src/chrome/content/rules/PassSource.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/PassageBank.xml b/src/chrome/content/rules/PassageBank.xml index 134dde8daadc..338537302da5 100644 --- a/src/chrome/content/rules/PassageBank.xml +++ b/src/chrome/content/rules/PassageBank.xml @@ -17,4 +17,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Passed.cc.xml b/src/chrome/content/rules/Passed.cc.xml index 773663db134d..0185b566239c 100644 --- a/src/chrome/content/rules/Passed.cc.xml +++ b/src/chrome/content/rules/Passed.cc.xml @@ -5,7 +5,7 @@ Fetch error: http://passed.cc/ => https://passed.cc/: (35, 'Unknown SSL protocol Fetch error: http://www.passed.cc/ => https://www.passed.cc/: (35, 'Unknown SSL protocol error in connection to www.passed.cc:443 ') --> - + @@ -16,4 +16,4 @@ Fetch error: http://www.passed.cc/ => https://www.passed.cc/: (35, 'Unknown SSL - \ No newline at end of file + diff --git a/src/chrome/content/rules/Passionfruit_Ads.com.xml b/src/chrome/content/rules/Passionfruit_Ads.com.xml index 3c035bc3907b..8429536681f3 100644 --- a/src/chrome/content/rules/Passionfruit_Ads.com.xml +++ b/src/chrome/content/rules/Passionfruit_Ads.com.xml @@ -33,10 +33,12 @@ Fetch error: http://passionfruitads.com/ => https://app.passionfruitads.com/: (7 - load (→ passionfruit.herokuapp.com) --> - + - + + + @@ -50,4 +52,4 @@ Fetch error: http://passionfruitads.com/ => https://app.passionfruitads.com/: (7 - \ No newline at end of file + diff --git a/src/chrome/content/rules/Passwd.hu.xml b/src/chrome/content/rules/Passwd.hu.xml index e4208c93e66c..8bc91b926e5d 100644 --- a/src/chrome/content/rules/Passwd.hu.xml +++ b/src/chrome/content/rules/Passwd.hu.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Password-Safe.xml b/src/chrome/content/rules/Password-Safe.xml index 9eab04d51371..92596a975693 100644 --- a/src/chrome/content/rules/Password-Safe.xml +++ b/src/chrome/content/rules/Password-Safe.xml @@ -3,8 +3,7 @@ - + diff --git a/src/chrome/content/rules/PasswordBox.com.xml b/src/chrome/content/rules/PasswordBox.com.xml index 516667907b06..6d80787421b5 100644 --- a/src/chrome/content/rules/PasswordBox.com.xml +++ b/src/chrome/content/rules/PasswordBox.com.xml @@ -17,22 +17,22 @@ Fetch error: http://psswrdbx.com/ => https://psswrdbx.com/: (28, 'Operation time - extensions --> - + - + + - + + + - - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Paste.ee.xml b/src/chrome/content/rules/Paste.ee.xml index bcf9540a05b9..c11803388e6e 100644 --- a/src/chrome/content/rules/Paste.ee.xml +++ b/src/chrome/content/rules/Paste.ee.xml @@ -15,7 +15,7 @@ Non-2xx HTTP code: http://www.paste.ee/ (200) => https://www.paste.ee/ (404) - www.paste.ee --> - + diff --git a/src/chrome/content/rules/PasteVault.com.xml b/src/chrome/content/rules/PasteVault.com.xml deleted file mode 100644 index 5c29e5309706..000000000000 --- a/src/chrome/content/rules/PasteVault.com.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Pastebin.ca.xml b/src/chrome/content/rules/Pastebin.ca.xml index 13201eedca26..197317effefd 100644 --- a/src/chrome/content/rules/Pastebin.ca.xml +++ b/src/chrome/content/rules/Pastebin.ca.xml @@ -16,7 +16,7 @@ - + diff --git a/src/chrome/content/rules/Pasteur.fr.xml b/src/chrome/content/rules/Pasteur.fr.xml index aed7238cbe68..773d83d081c7 100644 --- a/src/chrome/content/rules/Pasteur.fr.xml +++ b/src/chrome/content/rules/Pasteur.fr.xml @@ -40,7 +40,7 @@ - + + + + + + + diff --git a/src/chrome/content/rules/Patches-Scrolls.de.xml b/src/chrome/content/rules/Patches-Scrolls.de.xml new file mode 100644 index 000000000000..ab7137003643 --- /dev/null +++ b/src/chrome/content/rules/Patches-Scrolls.de.xml @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Patent-Baristas.xml b/src/chrome/content/rules/Patent-Baristas.xml index 09ca728691fd..3d272e899e27 100644 --- a/src/chrome/content/rules/Patent-Baristas.xml +++ b/src/chrome/content/rules/Patent-Baristas.xml @@ -5,7 +5,7 @@ - + - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Path_of_Exile.com.xml b/src/chrome/content/rules/Path_of_Exile.com.xml index a4d7c3d60ef9..05160eef75cb 100644 --- a/src/chrome/content/rules/Path_of_Exile.com.xml +++ b/src/chrome/content/rules/Path_of_Exile.com.xml @@ -16,19 +16,18 @@ - + + - - + diff --git a/src/chrome/content/rules/Pathways2gsfa.org.xml b/src/chrome/content/rules/Pathways2gsfa.org.xml index f4e443faf7de..280c7e5d632b 100644 --- a/src/chrome/content/rules/Pathways2gsfa.org.xml +++ b/src/chrome/content/rules/Pathways2gsfa.org.xml @@ -7,7 +7,7 @@ Fetch error: http://www.pathways2gsfa.org/ => https://www.pathways2gsfa.org/: (6 ^: cert only matches www --> - + diff --git a/src/chrome/content/rules/PatientsLikeMe.com.xml b/src/chrome/content/rules/PatientsLikeMe.com.xml index 0ef639f7d3d1..f3857d6fd12a 100644 --- a/src/chrome/content/rules/PatientsLikeMe.com.xml +++ b/src/chrome/content/rules/PatientsLikeMe.com.xml @@ -43,7 +43,9 @@ - + + + diff --git a/src/chrome/content/rules/Patreon.com.xml b/src/chrome/content/rules/Patreon.com.xml index d98f33e88145..54078db8ce92 100644 --- a/src/chrome/content/rules/Patreon.com.xml +++ b/src/chrome/content/rules/Patreon.com.xml @@ -20,7 +20,7 @@ - + diff --git a/src/chrome/content/rules/PatriotPost.com.xml b/src/chrome/content/rules/PatriotPost.com.xml new file mode 100644 index 000000000000..7eeafb8d2d84 --- /dev/null +++ b/src/chrome/content/rules/PatriotPost.com.xml @@ -0,0 +1,9 @@ + + + + + + + diff --git a/src/chrome/content/rules/PatriotPost.us.xml b/src/chrome/content/rules/PatriotPost.us.xml new file mode 100644 index 000000000000..f693dfa80e73 --- /dev/null +++ b/src/chrome/content/rules/PatriotPost.us.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Patriotgaming.com.xml b/src/chrome/content/rules/Patriotgaming.com.xml new file mode 100644 index 000000000000..91322e76dc2e --- /dev/null +++ b/src/chrome/content/rules/Patriotgaming.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Patriotsuperbowl.us.xml b/src/chrome/content/rules/Patriotsuperbowl.us.xml deleted file mode 100644 index 45d82032c06c..000000000000 --- a/src/chrome/content/rules/Patriotsuperbowl.us.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/PaulDotCom.com.xml b/src/chrome/content/rules/PaulDotCom.com.xml index 67dc7b62b083..7e48ad07db64 100644 --- a/src/chrome/content/rules/PaulDotCom.com.xml +++ b/src/chrome/content/rules/PaulDotCom.com.xml @@ -23,7 +23,7 @@ Fetch error: http://www.pauldotcom.com/ => https://www.pauldotcom.com/: (60, 'SS * Secured by us --> - + diff --git a/src/chrome/content/rules/PaulTan.org.xml b/src/chrome/content/rules/PaulTan.org.xml new file mode 100644 index 000000000000..e9ba4cc9825b --- /dev/null +++ b/src/chrome/content/rules/PaulTan.org.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/PavonisInteractive.xml b/src/chrome/content/rules/PavonisInteractive.xml new file mode 100644 index 000000000000..38eff8ad266b --- /dev/null +++ b/src/chrome/content/rules/PavonisInteractive.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Paxton_Record.xml b/src/chrome/content/rules/Paxton_Record.xml index 776013ab18d0..74c3a73bb0af 100644 --- a/src/chrome/content/rules/Paxton_Record.xml +++ b/src/chrome/content/rules/Paxton_Record.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Pay.gov.xml b/src/chrome/content/rules/Pay.gov.xml deleted file mode 100644 index 096c2d8b6a3d..000000000000 --- a/src/chrome/content/rules/Pay.gov.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Pay4Bugs.com.xml b/src/chrome/content/rules/Pay4Bugs.com.xml index 7497b346bef6..d2eb12b51cb2 100644 --- a/src/chrome/content/rules/Pay4Bugs.com.xml +++ b/src/chrome/content/rules/Pay4Bugs.com.xml @@ -18,7 +18,7 @@ --> - + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/PayPal-Gifts.com.xml b/src/chrome/content/rules/PayPal-Gifts.com.xml new file mode 100644 index 000000000000..54e2b8f32715 --- /dev/null +++ b/src/chrome/content/rules/PayPal-Gifts.com.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/PayPal.co.uk.xml b/src/chrome/content/rules/PayPal.co.uk.xml new file mode 100644 index 000000000000..9b758ffadbf0 --- /dev/null +++ b/src/chrome/content/rules/PayPal.co.uk.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/PayPal.me.xml b/src/chrome/content/rules/PayPal.me.xml new file mode 100644 index 000000000000..6d3f6b61bc4f --- /dev/null +++ b/src/chrome/content/rules/PayPal.me.xml @@ -0,0 +1,27 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/PayPal.xml b/src/chrome/content/rules/PayPal.xml index 67a3527b6aad..3f675e1a3cb0 100644 --- a/src/chrome/content/rules/PayPal.xml +++ b/src/chrome/content/rules/PayPal.xml @@ -2,21 +2,15 @@ Other PayPal rulesets: - PayPal_Forward.xml - - paypalobjects.com.xml - Where.com.xml - + - PayPal.co.uk.xml CDN buckets: - paypal.112.2o7.net - where-spotlight.s3.amazonaws.com - --> - - - - @@ -26,18 +20,8 @@ - - - - - - - - - - + + diff --git a/src/chrome/content/rules/PayPal_Forward.xml b/src/chrome/content/rules/PayPal_Forward.xml index 31d9412b82d3..1006ddc0b04c 100644 --- a/src/chrome/content/rules/PayPal_Forward.xml +++ b/src/chrome/content/rules/PayPal_Forward.xml @@ -7,7 +7,7 @@ Fetch error: http://www.paypal-forward.com/ => https://www.paypal-forward.com/: For other PayPal coverage, see PayPal.xml. --> - + @@ -15,4 +15,4 @@ Fetch error: http://www.paypal-forward.com/ => https://www.paypal-forward.com/: - \ No newline at end of file + diff --git a/src/chrome/content/rules/PayPalobjects.com.xml b/src/chrome/content/rules/PayPalobjects.com.xml new file mode 100644 index 000000000000..bf700e0957c9 --- /dev/null +++ b/src/chrome/content/rules/PayPalobjects.com.xml @@ -0,0 +1,25 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/PayQuake.xml b/src/chrome/content/rules/PayQuake.xml deleted file mode 100644 index 0ec103f5d1c9..000000000000 --- a/src/chrome/content/rules/PayQuake.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/PaySmart.com.au.xml b/src/chrome/content/rules/PaySmart.com.au.xml new file mode 100644 index 000000000000..cb58ceb7a53c --- /dev/null +++ b/src/chrome/content/rules/PaySmart.com.au.xml @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/PayTrust.com.xml b/src/chrome/content/rules/PayTrust.com.xml new file mode 100644 index 000000000000..ed13141ec2e4 --- /dev/null +++ b/src/chrome/content/rules/PayTrust.com.xml @@ -0,0 +1,11 @@ + + + + + + diff --git a/src/chrome/content/rules/PaymentsSource.com.xml b/src/chrome/content/rules/PaymentsSource.com.xml index 3ab6f84f99df..c138ed7ce3c3 100644 --- a/src/chrome/content/rules/PaymentsSource.com.xml +++ b/src/chrome/content/rules/PaymentsSource.com.xml @@ -8,10 +8,11 @@ - + + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Payoneer.com.xml b/src/chrome/content/rules/Payoneer.com.xml index e8e031232313..6e01494527ae 100644 --- a/src/chrome/content/rules/Payoneer.com.xml +++ b/src/chrome/content/rules/Payoneer.com.xml @@ -1,18 +1,29 @@ - - - - + + + + + + + + + + + + + + + + + + - - + diff --git a/src/chrome/content/rules/Payonline.ru.xml b/src/chrome/content/rules/Payonline.ru.xml index caf9b3363b2b..847255a3add9 100644 --- a/src/chrome/content/rules/Payonline.ru.xml +++ b/src/chrome/content/rules/Payonline.ru.xml @@ -5,7 +5,7 @@ smasol. mismatch--> - + diff --git a/src/chrome/content/rules/Paypal_Giving_Fund.org.xml b/src/chrome/content/rules/Paypal_Giving_Fund.org.xml index 04312d3bdf12..041c3314d9c8 100644 --- a/src/chrome/content/rules/Paypal_Giving_Fund.org.xml +++ b/src/chrome/content/rules/Paypal_Giving_Fund.org.xml @@ -27,7 +27,7 @@ Fetch error: http://paypalgivingfund.org/ => https://paypalgivingfund.org/: (51, - Bug from www.facebook.com --> - + diff --git a/src/chrome/content/rules/Paysafecard.com.xml b/src/chrome/content/rules/Paysafecard.com.xml index 036a23afdbc9..1dfe1154ee13 100644 --- a/src/chrome/content/rules/Paysafecard.com.xml +++ b/src/chrome/content/rules/Paysafecard.com.xml @@ -14,7 +14,9 @@ - + + + @@ -23,7 +25,6 @@ - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Paysol.se.xml b/src/chrome/content/rules/Paysol.se.xml index 02a5f7c7538a..675070fbbadd 100644 --- a/src/chrome/content/rules/Paysol.se.xml +++ b/src/chrome/content/rules/Paysol.se.xml @@ -6,11 +6,11 @@ Fetch error: http://secure.paysol.se/ => https://secure.paysol.se/: (60, 'SSL ce Disabled by https-everywhere-checker because: Fetch error: http://secure.paysol.se/ => https://secure.paysol.se/: (60, 'SSL certificate problem: certificate has expired') --> - + - + - + diff --git a/src/chrome/content/rules/Payson.xml b/src/chrome/content/rules/Payson.xml index a78bdea308c2..29f7c29f5867 100644 --- a/src/chrome/content/rules/Payson.xml +++ b/src/chrome/content/rules/Payson.xml @@ -1,18 +1,29 @@ - - - - + - + 404 on HTTPS: - + - test-mobileapi.payson.se +--> + + + + + + + + + + + + + + + - - + diff --git a/src/chrome/content/rules/Paytoll.xml b/src/chrome/content/rules/Paytoll.xml index df2e4ab0c409..654e83835de6 100644 --- a/src/chrome/content/rules/Paytoll.xml +++ b/src/chrome/content/rules/Paytoll.xml @@ -3,10 +3,10 @@ Disabled by https-everywhere-checker because: Non-2xx HTTP code: http://secure.paytoll.eu/ (200) => https://secure.paytoll.eu/ (403) - For other Eventim coverage, see Eventim.xml. + For other Eventim coverage, see Eventim.com.xml. --> - + @@ -14,7 +14,6 @@ Non-2xx HTTP code: http://secure.paytoll.eu/ (200) => https://secure.paytoll.eu/ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Payza.xml b/src/chrome/content/rules/Payza.xml deleted file mode 100644 index d85025533fea..000000000000 --- a/src/chrome/content/rules/Payza.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Pbsrc.com.xml b/src/chrome/content/rules/Pbsrc.com.xml index a0f3dd492a6b..f48e4d024c69 100644 --- a/src/chrome/content/rules/Pbsrc.com.xml +++ b/src/chrome/content/rules/Pbsrc.com.xml @@ -51,7 +51,7 @@ --> - + @@ -80,7 +80,7 @@ - + diff --git a/src/chrome/content/rules/Pcengines.ch.xml b/src/chrome/content/rules/Pcengines.ch.xml new file mode 100644 index 000000000000..d16c2602653f --- /dev/null +++ b/src/chrome/content/rules/Pcengines.ch.xml @@ -0,0 +1,11 @@ + + + + + + + diff --git a/src/chrome/content/rules/Pdfcrowd.com.xml b/src/chrome/content/rules/Pdfcrowd.com.xml index fcf0d39e354d..4f1574763cac 100644 --- a/src/chrome/content/rules/Pdfcrowd.com.xml +++ b/src/chrome/content/rules/Pdfcrowd.com.xml @@ -1,16 +1,15 @@ - + + - - - - - + + + diff --git a/src/chrome/content/rules/PeKwm.org.xml b/src/chrome/content/rules/PeKwm.org.xml deleted file mode 100644 index df9c32c01d7a..000000000000 --- a/src/chrome/content/rules/PeKwm.org.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Peace_Center_for_the_Performing_Arts.xml b/src/chrome/content/rules/Peace_Center_for_the_Performing_Arts.xml index 960b66e34d33..69ce2e49efa9 100644 --- a/src/chrome/content/rules/Peace_Center_for_the_Performing_Arts.xml +++ b/src/chrome/content/rules/Peace_Center_for_the_Performing_Arts.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Pearson-mismatches.xml b/src/chrome/content/rules/Pearson-mismatches.xml index bf7f97e541c2..a3b613e63264 100644 --- a/src/chrome/content/rules/Pearson-mismatches.xml +++ b/src/chrome/content/rules/Pearson-mismatches.xml @@ -3,7 +3,6 @@ - + diff --git a/src/chrome/content/rules/Pearson.xml b/src/chrome/content/rules/Pearson.xml index f17e778e33fd..a0cf4097a0c8 100644 --- a/src/chrome/content/rules/Pearson.xml +++ b/src/chrome/content/rules/Pearson.xml @@ -1,59 +1,42 @@ - - - + + + + + + + + - - - - - + - - - - - - + + + + - + - - + - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Pebble.xml b/src/chrome/content/rules/Pebble.xml index 805098e0bf4e..3fc0ea27d093 100644 --- a/src/chrome/content/rules/Pebble.xml +++ b/src/chrome/content/rules/Pebble.xml @@ -9,7 +9,10 @@ - + + + + diff --git a/src/chrome/content/rules/PebblePad.co.uk.xml b/src/chrome/content/rules/PebblePad.co.uk.xml index 837b8a838fc5..2a70e1b3cebb 100644 --- a/src/chrome/content/rules/PebblePad.co.uk.xml +++ b/src/chrome/content/rules/PebblePad.co.uk.xml @@ -18,7 +18,7 @@ - + - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Peer39.xml b/src/chrome/content/rules/Peer39.xml index a7e27d17adde..bda730956fb6 100644 --- a/src/chrome/content/rules/Peer39.xml +++ b/src/chrome/content/rules/Peer39.xml @@ -11,11 +11,11 @@ --> - + + - + diff --git a/src/chrome/content/rules/PeerJ.com.xml b/src/chrome/content/rules/PeerJ.com.xml new file mode 100644 index 000000000000..279fd5832e9d --- /dev/null +++ b/src/chrome/content/rules/PeerJ.com.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/PeerJ.xml b/src/chrome/content/rules/PeerJ.xml deleted file mode 100644 index ad6505623170..000000000000 --- a/src/chrome/content/rules/PeerJ.xml +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/PeerLibrary.org.xml b/src/chrome/content/rules/PeerLibrary.org.xml index c1dc1ee657bf..841b06c988f0 100644 --- a/src/chrome/content/rules/PeerLibrary.org.xml +++ b/src/chrome/content/rules/PeerLibrary.org.xml @@ -10,7 +10,7 @@ Fetch error: http://www.peerlibrary.org/ => https://www.peerlibrary.org/: (51, " * Tumblr --> - + diff --git a/src/chrome/content/rules/PeerTransfer.com.xml b/src/chrome/content/rules/PeerTransfer.com.xml index 0c8107fc28d5..5c1ef2822ad9 100644 --- a/src/chrome/content/rules/PeerTransfer.com.xml +++ b/src/chrome/content/rules/PeerTransfer.com.xml @@ -5,7 +5,7 @@ Non-2xx HTTP code: http://info.peertransfer.com/css/mktLPSupport.css (200) => ht Non-2xx HTTP code: http://info.peertransfer.com/rs/857-SYJ-051/images/ptflywirelogo.png (200) => https://na-abm.marketo.com/rs/857-SYJ-051/images/ptflywirelogo.png (403) Nonfunctional hosts in *peertransfer.com: - + - info * * Marketo @@ -27,7 +27,7 @@ Non-2xx HTTP code: http://info.peertransfer.com/rs/857-SYJ-051/images/ptflywirel * Secured by us --> - + @@ -53,7 +53,7 @@ Non-2xx HTTP code: http://info.peertransfer.com/rs/857-SYJ-051/images/ptflywirel - + - + - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Peerius.com-problematic.xml b/src/chrome/content/rules/Peerius.com-problematic.xml index 67f274da85d2..3fa7d15ba4be 100644 --- a/src/chrome/content/rules/Peerius.com-problematic.xml +++ b/src/chrome/content/rules/Peerius.com-problematic.xml @@ -14,4 +14,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Peerius.com.xml b/src/chrome/content/rules/Peerius.com.xml index 6906660ed632..d8a587747584 100644 --- a/src/chrome/content/rules/Peerius.com.xml +++ b/src/chrome/content/rules/Peerius.com.xml @@ -32,4 +32,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Peertech.org.xml b/src/chrome/content/rules/Peertech.org.xml index 70add45016e0..6f1e9f61b5ae 100644 --- a/src/chrome/content/rules/Peertech.org.xml +++ b/src/chrome/content/rules/Peertech.org.xml @@ -5,7 +5,7 @@ Fetch error: http://peertech.org/ => https://peertech.org/: (28, 'Connection tim Fetch error: http://www.peertech.org/ => https://www.peertech.org/: (28, 'Connection timed out after 20001 milliseconds') --> - + diff --git a/src/chrome/content/rules/Peff.net.xml b/src/chrome/content/rules/Peff.net.xml new file mode 100644 index 000000000000..5edb28d58d18 --- /dev/null +++ b/src/chrome/content/rules/Peff.net.xml @@ -0,0 +1,16 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Pega.xml b/src/chrome/content/rules/Pega.xml index 66764abecb8f..942ba7dda9ec 100644 --- a/src/chrome/content/rules/Pega.xml +++ b/src/chrome/content/rules/Pega.xml @@ -1,4 +1,9 @@ + + diff --git a/src/chrome/content/rules/Pegaz_Hosting.com.xml b/src/chrome/content/rules/Pegaz_Hosting.com.xml index f936779c70a7..51ff94745e56 100644 --- a/src/chrome/content/rules/Pegaz_Hosting.com.xml +++ b/src/chrome/content/rules/Pegaz_Hosting.com.xml @@ -14,4 +14,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Pen_Test_Partners.com.xml b/src/chrome/content/rules/Pen_Test_Partners.com.xml index 01a06635eb65..3ec16d1d5d3c 100644 --- a/src/chrome/content/rules/Pen_Test_Partners.com.xml +++ b/src/chrome/content/rules/Pen_Test_Partners.com.xml @@ -4,7 +4,7 @@ - + - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Pendle.gov.uk.xml b/src/chrome/content/rules/Pendle.gov.uk.xml index 48c2ccbeb7f0..ee21c255a077 100644 --- a/src/chrome/content/rules/Pendle.gov.uk.xml +++ b/src/chrome/content/rules/Pendle.gov.uk.xml @@ -21,7 +21,7 @@ - .www.pendle.gov.uk --> - + @@ -37,8 +37,8 @@ - - + + - \ No newline at end of file + diff --git a/src/chrome/content/rules/PengPod.com.xml b/src/chrome/content/rules/PengPod.com.xml index e4d1441bb367..f0964c952ed4 100644 --- a/src/chrome/content/rules/PengPod.com.xml +++ b/src/chrome/content/rules/PengPod.com.xml @@ -8,7 +8,7 @@ - + diff --git a/src/chrome/content/rules/PenguinWebHosting.xml b/src/chrome/content/rules/PenguinWebHosting.xml index 911d89d42b32..9923b619633e 100644 --- a/src/chrome/content/rules/PenguinWebHosting.xml +++ b/src/chrome/content/rules/PenguinWebHosting.xml @@ -5,20 +5,17 @@ Fetch error: http://pcicomplianthosting.com/ => https://pcicomplianthosting.com/ Fetch error: http://penguinwebhosting.com/ => https://www.pcicomplianthosting.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.pcicomplianthosting.com'") --> - + - + - + + - - - + + + + + + + + + + + + + + + + + + + + + + + @@ -66,7 +88,7 @@ --> - + - + @@ -22,7 +22,7 @@ Fetch error: http://pentestgeek.com/ => https://pentestgeek.com/: (51, "SSL: no - + - + diff --git a/src/chrome/content/rules/People.com-problematic.xml b/src/chrome/content/rules/People.com-problematic.xml deleted file mode 100644 index 7a2da3a19584..000000000000 --- a/src/chrome/content/rules/People.com-problematic.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/People.com.xml b/src/chrome/content/rules/People.com.xml index 03a5dab15b29..445234e205c0 100644 --- a/src/chrome/content/rules/People.com.xml +++ b/src/chrome/content/rules/People.com.xml @@ -1,54 +1,14 @@ - + + - + diff --git a/src/chrome/content/rules/Peoples_Choice_Awards.xml b/src/chrome/content/rules/Peoples_Choice_Awards.xml index 1b3b3fb210fc..a3751970a902 100644 --- a/src/chrome/content/rules/Peoples_Choice_Awards.xml +++ b/src/chrome/content/rules/Peoples_Choice_Awards.xml @@ -15,7 +15,8 @@ - + + diff --git a/src/chrome/content/rules/PepperJam_Exchange.xml b/src/chrome/content/rules/PepperJam_Exchange.xml index 5148dbf9a21b..dbe04d8f3e6c 100644 --- a/src/chrome/content/rules/PepperJam_Exchange.xml +++ b/src/chrome/content/rules/PepperJam_Exchange.xml @@ -15,16 +15,13 @@ - + + - - - + diff --git a/src/chrome/content/rules/Pepperfish.xml b/src/chrome/content/rules/Pepperfish.xml index 2565b0bcadbb..6f0e321a5f36 100644 --- a/src/chrome/content/rules/Pepperfish.xml +++ b/src/chrome/content/rules/Pepperfish.xml @@ -14,12 +14,11 @@ Fetch error: http://secure.pepperfish.net/ => https://secure.pepperfish.net/: (2 - (www.) (400; mismatched, CN: secure.pepperfish.net) --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Perceptive-Pixel.xml b/src/chrome/content/rules/Perceptive-Pixel.xml index 3ff43b737197..cb99921b190d 100644 --- a/src/chrome/content/rules/Perceptive-Pixel.xml +++ b/src/chrome/content/rules/Perceptive-Pixel.xml @@ -3,10 +3,10 @@ - + - + - + @@ -44,7 +44,7 @@ Fetch error: http://customers.percona.com/ => https://customers.percona.com/: To - + - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/PerfectPixel.de.xml b/src/chrome/content/rules/PerfectPixel.de.xml new file mode 100644 index 000000000000..b3d5368cc236 --- /dev/null +++ b/src/chrome/content/rules/PerfectPixel.de.xml @@ -0,0 +1,12 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Perfect_Audience.xml b/src/chrome/content/rules/Perfect_Audience.xml index d2246cd288d2..03c9d17e7fa0 100644 --- a/src/chrome/content/rules/Perfect_Audience.xml +++ b/src/chrome/content/rules/Perfect_Audience.xml @@ -41,25 +41,12 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Perfect_Market.com-problematic.xml b/src/chrome/content/rules/Perfect_Market.com-problematic.xml index 9bc8c288b92a..7a655f9c4e6f 100644 --- a/src/chrome/content/rules/Perfect_Market.com-problematic.xml +++ b/src/chrome/content/rules/Perfect_Market.com-problematic.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Perfect_Market.com.xml b/src/chrome/content/rules/Perfect_Market.com.xml index 4761752117bb..fd9f304fef60 100644 --- a/src/chrome/content/rules/Perfect_Market.com.xml +++ b/src/chrome/content/rules/Perfect_Market.com.xml @@ -21,4 +21,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Perfect_Money.xml b/src/chrome/content/rules/Perfect_Money.xml index aa32de06d9db..54aa1da94ce3 100644 --- a/src/chrome/content/rules/Perfect_Money.xml +++ b/src/chrome/content/rules/Perfect_Money.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Perfect_Sense_Digital.xml b/src/chrome/content/rules/Perfect_Sense_Digital.xml index 48b1bda9c3b9..8fe7ebd2e71c 100644 --- a/src/chrome/content/rules/Perfect_Sense_Digital.xml +++ b/src/chrome/content/rules/Perfect_Sense_Digital.xml @@ -19,4 +19,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Perform.xml b/src/chrome/content/rules/Perform.xml deleted file mode 100644 index 8a804e53397f..000000000000 --- a/src/chrome/content/rules/Perform.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/PerformGroup.com.xml b/src/chrome/content/rules/PerformGroup.com.xml new file mode 100644 index 000000000000..90c4dff6a321 --- /dev/null +++ b/src/chrome/content/rules/PerformGroup.com.xml @@ -0,0 +1,19 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Performable.com.xml b/src/chrome/content/rules/Performable.com.xml index 5158250dcc4f..bd8dd0418c4f 100644 --- a/src/chrome/content/rules/Performable.com.xml +++ b/src/chrome/content/rules/Performable.com.xml @@ -13,12 +13,11 @@ Fetch error: http://analytics.performable.com/ => https://analytics.performable. Web bugs. --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Performance-Horizon-Group.xml b/src/chrome/content/rules/Performance-Horizon-Group.xml index 3b428f97bcb9..494ef2335ed7 100644 --- a/src/chrome/content/rules/Performance-Horizon-Group.xml +++ b/src/chrome/content/rules/Performance-Horizon-Group.xml @@ -4,18 +4,17 @@ - + - + - + diff --git a/src/chrome/content/rules/Performance-PCs.com.xml b/src/chrome/content/rules/Performance-PCs.com.xml new file mode 100644 index 000000000000..6f6f2fb0b579 --- /dev/null +++ b/src/chrome/content/rules/Performance-PCs.com.xml @@ -0,0 +1,18 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Performance.gov.xml b/src/chrome/content/rules/Performance.gov.xml index 570c5da2b7c6..d09852c0865e 100644 --- a/src/chrome/content/rules/Performance.gov.xml +++ b/src/chrome/content/rules/Performance.gov.xml @@ -52,7 +52,7 @@ - + https://performancealley.com/: (51, "SSL: no alternative certificate subject name matches target host name 'performancealley.com'") -Fetch error: http://shop.performancealley.com/ => https://shop.performancealley.com/: (51, "SSL: no alternative certificate subject name matches target host name 'shop.performancealley.com'") -Fetch error: http://www.performancealley.com/ => https://www.performancealley.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.performancealley.com'") - -Disabled by https-everywhere-checker because: -Fetch error: http://performancealley.com/ => https://performancealley.com/: (60, 'SSL certificate problem: self signed certificate') - Nonfunctional subdomains: - - - blog - ---> - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Performance_Wheel_and_Tire_Warehouse.xml b/src/chrome/content/rules/Performance_Wheel_and_Tire_Warehouse.xml index 41f6aabd8d63..e1a050973976 100644 --- a/src/chrome/content/rules/Performance_Wheel_and_Tire_Warehouse.xml +++ b/src/chrome/content/rules/Performance_Wheel_and_Tire_Warehouse.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://performancewheel.com/ => https://performancewheel.com/: (51, "SSL: no alternative certificate subject name matches target host name 'performancewheel.com'") Fetch error: http://www.performancewheel.com/ => https://www.performancewheel.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.performancewheel.com'") --> - + @@ -16,4 +16,4 @@ Fetch error: http://www.performancewheel.com/ => https://www.performancewheel.co - \ No newline at end of file + diff --git a/src/chrome/content/rules/Perl-Foundation.xml b/src/chrome/content/rules/Perl-Foundation.xml index 66e110af75c0..31bf003f3623 100644 --- a/src/chrome/content/rules/Perl-Foundation.xml +++ b/src/chrome/content/rules/Perl-Foundation.xml @@ -2,7 +2,7 @@ - + diff --git a/src/chrome/content/rules/Perl.org.xml b/src/chrome/content/rules/Perl.org.xml index ce4316fa5eb3..3dc42b2b7b39 100644 --- a/src/chrome/content/rules/Perl.org.xml +++ b/src/chrome/content/rules/Perl.org.xml @@ -6,36 +6,15 @@ - st.pimg.net - Problematic domains: - - - ^ ¹ - - perldoc (works; mismatched, CN: *.a.ssl.fastly.net) - - svn.perl.org (works, self-signed) - - ¹ Refused - - Nonfunctional perl.org subdomains: - - blob * - blogs * - - books * - - cpan * - - cpanratings * - cpansearch (times out) - - dbi * - - dev * - - perl5.git * - history * - irc (http reply) - - www.irc * - - jobs * - - learn * - - lists * - - log (blogspot) - - noc * - pdl * - use * + - svn (times out) * Refused @@ -43,22 +22,29 @@ Mixed image from www on rt --> - + - - + + + + + + + + + + + + + + + + + - - - - - - + diff --git a/src/chrome/content/rules/Personal_Data_Ecosystem_Consortium.xml b/src/chrome/content/rules/Personal_Data_Ecosystem_Consortium.xml deleted file mode 100644 index a6ec77010bc7..000000000000 --- a/src/chrome/content/rules/Personal_Data_Ecosystem_Consortium.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Personal_Democracy_Forum.xml b/src/chrome/content/rules/Personal_Democracy_Forum.xml index fed94001450f..e1a9d58d652a 100644 --- a/src/chrome/content/rules/Personal_Democracy_Forum.xml +++ b/src/chrome/content/rules/Personal_Democracy_Forum.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Personalausweisportal.de.xml b/src/chrome/content/rules/Personalausweisportal.de.xml index e346ea0ef76c..622ef2da77b8 100644 --- a/src/chrome/content/rules/Personalausweisportal.de.xml +++ b/src/chrome/content/rules/Personalausweisportal.de.xml @@ -1,7 +1,7 @@ - + diff --git a/src/chrome/content/rules/PersonalityPage.com.xml b/src/chrome/content/rules/PersonalityPage.com.xml new file mode 100644 index 000000000000..e8b32ba6fdfb --- /dev/null +++ b/src/chrome/content/rules/PersonalityPage.com.xml @@ -0,0 +1,11 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/PersonalityPage.xml b/src/chrome/content/rules/PersonalityPage.xml deleted file mode 100644 index cb41b0aecaaa..000000000000 --- a/src/chrome/content/rules/PersonalityPage.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Personforce.xml b/src/chrome/content/rules/Personforce.xml index f4d783da4a57..dc10e46a62b6 100644 --- a/src/chrome/content/rules/Personforce.xml +++ b/src/chrome/content/rules/Personforce.xml @@ -1,7 +1,8 @@ - + + + + + + + + + + diff --git a/src/chrome/content/rules/PetTravel.com.xml b/src/chrome/content/rules/PetTravel.com.xml new file mode 100644 index 000000000000..92a170e3a630 --- /dev/null +++ b/src/chrome/content/rules/PetTravel.com.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/Pet_Nanny.xml b/src/chrome/content/rules/Pet_Nanny.xml index be2e54527cf6..d3df98c6e0b6 100644 --- a/src/chrome/content/rules/Pet_Nanny.xml +++ b/src/chrome/content/rules/Pet_Nanny.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Petapixel.com.xml b/src/chrome/content/rules/Petapixel.com.xml new file mode 100644 index 000000000000..d18972b436b4 --- /dev/null +++ b/src/chrome/content/rules/Petapixel.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Peter-Caprioli.xml b/src/chrome/content/rules/Peter-Caprioli.xml index 95d441e5ad49..4fcec786ab22 100644 --- a/src/chrome/content/rules/Peter-Caprioli.xml +++ b/src/chrome/content/rules/Peter-Caprioli.xml @@ -4,7 +4,7 @@ - + diff --git a/src/chrome/content/rules/Peter_Aba.com.xml b/src/chrome/content/rules/Peter_Aba.com.xml index 58658f949f26..d139e9016f29 100644 --- a/src/chrome/content/rules/Peter_Aba.com.xml +++ b/src/chrome/content/rules/Peter_Aba.com.xml @@ -6,7 +6,7 @@ Fetch error: http://dimebag.peteraba.com/ => https://dimebag.peteraba.com/: (51, www.peteraba.com: Mismatched --> - + diff --git a/src/chrome/content/rules/Peterborough.gov.uk.xml b/src/chrome/content/rules/Peterborough.gov.uk.xml index e189cf8a442c..7dbbc5d28c83 100644 --- a/src/chrome/content/rules/Peterborough.gov.uk.xml +++ b/src/chrome/content/rules/Peterborough.gov.uk.xml @@ -62,7 +62,7 @@ Fetch error: http://consult.peterborough.gov.uk/ => https://peterborough.objecti - consult.peterborough.gov.uk --> - + @@ -86,7 +86,7 @@ Fetch error: http://consult.peterborough.gov.uk/ => https://peterborough.objecti - + - + - - - - - - - diff --git a/src/chrome/content/rules/Petridish.org.xml b/src/chrome/content/rules/Petridish.org.xml new file mode 100644 index 000000000000..3e083bbdfa61 --- /dev/null +++ b/src/chrome/content/rules/Petridish.org.xml @@ -0,0 +1,14 @@ + + + + + + diff --git a/src/chrome/content/rules/Petridish.xml b/src/chrome/content/rules/Petridish.xml deleted file mode 100644 index 5cf2f8750ab0..000000000000 --- a/src/chrome/content/rules/Petridish.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - diff --git a/src/chrome/content/rules/Petstore.com.xml b/src/chrome/content/rules/Petstore.com.xml index 7434866c22ed..7c5105ed5944 100644 --- a/src/chrome/content/rules/Petstore.com.xml +++ b/src/chrome/content/rules/Petstore.com.xml @@ -7,7 +7,7 @@ Fetch error: http://www.petstore.com/ => https://www.petstore.com/: Too many red ^: expired 2013-12-02 --> - + diff --git a/src/chrome/content/rules/Petteri-Raty-mismatches.xml b/src/chrome/content/rules/Petteri-Raty-mismatches.xml index 40790a9d4a19..777a97b1e183 100644 --- a/src/chrome/content/rules/Petteri-Raty-mismatches.xml +++ b/src/chrome/content/rules/Petteri-Raty-mismatches.xml @@ -7,7 +7,6 @@ - + diff --git a/src/chrome/content/rules/Petteri-Raty.xml b/src/chrome/content/rules/Petteri-Raty.xml index 686962a5b6c1..fc743fceec88 100644 --- a/src/chrome/content/rules/Petteri-Raty.xml +++ b/src/chrome/content/rules/Petteri-Raty.xml @@ -5,7 +5,8 @@ - + + diff --git a/src/chrome/content/rules/PewDiePie.net.xml b/src/chrome/content/rules/PewDiePie.net.xml deleted file mode 100644 index 013cdfd7f81f..000000000000 --- a/src/chrome/content/rules/PewDiePie.net.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/PfSense.org.xml b/src/chrome/content/rules/PfSense.org.xml index f532f54337b5..784fefb8e98e 100644 --- a/src/chrome/content/rules/PfSense.org.xml +++ b/src/chrome/content/rules/PfSense.org.xml @@ -5,7 +5,7 @@ Fetch error: http://devwiki.pfsense.org/ => https://devwiki.pfsense.org/: (60, ' Nonfunctional subdomains: - - various downloads URLs not listed below + - various downloads URLs not listed below Fully covered subdomains: @@ -37,7 +37,7 @@ Fetch error: http://devwiki.pfsense.org/ => https://devwiki.pfsense.org/: (60, ' * Secured by us --> - + diff --git a/src/chrome/content/rules/Pfefferkoerner.de.xml b/src/chrome/content/rules/Pfefferkoerner.de.xml index 703c75cf7ee9..5c0ce27f3366 100644 --- a/src/chrome/content/rules/Pfefferkoerner.de.xml +++ b/src/chrome/content/rules/Pfefferkoerner.de.xml @@ -6,7 +6,7 @@ Fetch error: http://www.pfefferkoerner.de/ => https://www.pfefferkoerner.de/: (5 redirects to https://www.ndr.de/fernsehen/sendungen/pfefferkoerner/ --> - + diff --git a/src/chrome/content/rules/Pfennigparade.de.xml b/src/chrome/content/rules/Pfennigparade.de.xml new file mode 100644 index 000000000000..676f8634b6cf --- /dev/null +++ b/src/chrome/content/rules/Pfennigparade.de.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Pfennigparade.xml b/src/chrome/content/rules/Pfennigparade.xml deleted file mode 100644 index f7da08d607b3..000000000000 --- a/src/chrome/content/rules/Pfennigparade.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Pfizer.xml b/src/chrome/content/rules/Pfizer.xml index 556dcd9f492b..6e6176ad4579 100644 --- a/src/chrome/content/rules/Pfizer.xml +++ b/src/chrome/content/rules/Pfizer.xml @@ -3,7 +3,6 @@ - Pfizer_helpful_answers.com.xml - Pfizer_pro.com.xml - - ZYVOXassist.com.xml Problematic hosts in *pfizer.com: diff --git a/src/chrome/content/rules/Pfizer_pro.com.xml b/src/chrome/content/rules/Pfizer_pro.com.xml index a59b42c9dccb..7d4b95307307 100644 --- a/src/chrome/content/rules/Pfizer_pro.com.xml +++ b/src/chrome/content/rules/Pfizer_pro.com.xml @@ -41,7 +41,7 @@ --> - + + + + + + diff --git a/src/chrome/content/rules/PhDelirium.com.xml b/src/chrome/content/rules/PhDelirium.com.xml new file mode 100644 index 000000000000..4bc50d90d8b1 --- /dev/null +++ b/src/chrome/content/rules/PhDelirium.com.xml @@ -0,0 +1,12 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/PhantaFriends.de.xml b/src/chrome/content/rules/PhantaFriends.de.xml new file mode 100644 index 000000000000..96344ec02dcb --- /dev/null +++ b/src/chrome/content/rules/PhantaFriends.de.xml @@ -0,0 +1,29 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Pheedcontent.com.xml b/src/chrome/content/rules/Pheedcontent.com.xml index 38a1749bd8a3..9b15fad6f5bf 100644 --- a/src/chrome/content/rules/Pheedcontent.com.xml +++ b/src/chrome/content/rules/Pheedcontent.com.xml @@ -25,4 +25,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Pheedo.com.xml b/src/chrome/content/rules/Pheedo.com.xml index 80b91b62054a..71414666d6c6 100644 --- a/src/chrome/content/rules/Pheedo.com.xml +++ b/src/chrome/content/rules/Pheedo.com.xml @@ -38,7 +38,11 @@ - + + + + + - + diff --git a/src/chrome/content/rules/Phillips_Academy_Andover.xml b/src/chrome/content/rules/Phillips_Academy_Andover.xml index 781cddc5f309..bd6944241faf 100644 --- a/src/chrome/content/rules/Phillips_Academy_Andover.xml +++ b/src/chrome/content/rules/Phillips_Academy_Andover.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://colwizlive.andover.edu/ => https://colwizlive.andover.edu/: (28, 'Connection timed out after 20001 milliseconds') --> - + @@ -13,30 +13,30 @@ Fetch error: http://colwizlive.andover.edu/ => https://colwizlive.andover.edu/: - - + + - + - + - + - + - - + + diff --git a/src/chrome/content/rules/Philosophy-Documentation-Center.xml b/src/chrome/content/rules/Philosophy-Documentation-Center.xml index 2d913f80af8f..dec0104e7ccc 100644 --- a/src/chrome/content/rules/Philosophy-Documentation-Center.xml +++ b/src/chrome/content/rules/Philosophy-Documentation-Center.xml @@ -21,7 +21,7 @@ Fetch error: http://secure.pdcnet.org/ => https://secure.pdcnet.org/: (60, 'SSL - www.secure.pdcnet.org --> - + @@ -33,7 +33,7 @@ Fetch error: http://secure.pdcnet.org/ => https://secure.pdcnet.org/: (60, 'SSL --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Phoenix-Media-Group.xml b/src/chrome/content/rules/Phoenix-Media-Group.xml index a2311e524464..ddb93c17ff55 100644 --- a/src/chrome/content/rules/Phoenix-Media-Group.xml +++ b/src/chrome/content/rules/Phoenix-Media-Group.xml @@ -3,7 +3,7 @@ - + diff --git a/src/chrome/content/rules/Phoenix.com.xml b/src/chrome/content/rules/Phoenix.com.xml deleted file mode 100644 index 267ba4b34dc1..000000000000 --- a/src/chrome/content/rules/Phoenix.com.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Phoenix.edu.xml b/src/chrome/content/rules/Phoenix.edu.xml index cedb1960bade..295ba4e94b2f 100644 --- a/src/chrome/content/rules/Phoenix.edu.xml +++ b/src/chrome/content/rules/Phoenix.edu.xml @@ -27,7 +27,14 @@ Fetch error: http://phoenix.edu/ => https://phoenix.edu/: (60, 'SSL certificate - + + + + + + + + @@ -40,16 +47,11 @@ Fetch error: http://phoenix.edu/ => https://phoenix.edu/: (60, 'SSL certificate - - - + diff --git a/src/chrome/content/rules/Phone-analytics.com.xml b/src/chrome/content/rules/Phone-analytics.com.xml index 877f6f174f04..3cf28ee5a319 100644 --- a/src/chrome/content/rules/Phone-analytics.com.xml +++ b/src/chrome/content/rules/Phone-analytics.com.xml @@ -10,16 +10,17 @@ Fetch error: http://phone-analytics.com/ => https://ssl.phone-analytics.com/: (2 - (www.) (cert only matches ssl) --> - + - + + + - + diff --git a/src/chrome/content/rules/Phone_House.com.xml b/src/chrome/content/rules/Phone_House.com.xml deleted file mode 100644 index afe85f6b2fd4..000000000000 --- a/src/chrome/content/rules/Phone_House.com.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Phoronix-Media.xml b/src/chrome/content/rules/Phoronix-Media.xml index 06ef3d4aa46d..a199de1f6472 100644 --- a/src/chrome/content/rules/Phoronix-Media.xml +++ b/src/chrome/content/rules/Phoronix-Media.xml @@ -1,51 +1,45 @@ - + - - - + + + - - + + + - - + + + - + + + + + + + + - + + diff --git a/src/chrome/content/rules/Photo-Montier.org.xml b/src/chrome/content/rules/Photo-Montier.org.xml new file mode 100644 index 000000000000..b7b64fc28145 --- /dev/null +++ b/src/chrome/content/rules/Photo-Montier.org.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/PhotoBTC.com.xml b/src/chrome/content/rules/PhotoBTC.com.xml deleted file mode 100644 index 9ef7cc595ce5..000000000000 --- a/src/chrome/content/rules/PhotoBTC.com.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/PhotoBlab.xml b/src/chrome/content/rules/PhotoBlab.xml index ad5d5bb70355..aa1158a9668d 100644 --- a/src/chrome/content/rules/PhotoBlab.xml +++ b/src/chrome/content/rules/PhotoBlab.xml @@ -17,7 +17,7 @@ Fetch error: http://photoblab.com/ => https://photoblab.herokuapp.com/: (6, 'Cou - (www.)photoblab.com (mismatched, CN: *.herokuapp.com) --> - + diff --git a/src/chrome/content/rules/PhotoPea.com.xml b/src/chrome/content/rules/PhotoPea.com.xml new file mode 100644 index 000000000000..3a9fbc82ef15 --- /dev/null +++ b/src/chrome/content/rules/PhotoPea.com.xml @@ -0,0 +1,17 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/PhotoShelter.xml b/src/chrome/content/rules/PhotoShelter.xml index 06c521adaa12..d9e662b95e5b 100644 --- a/src/chrome/content/rules/PhotoShelter.xml +++ b/src/chrome/content/rules/PhotoShelter.xml @@ -1,43 +1,33 @@ - + - - - + + - - - + + - - + + + + diff --git a/src/chrome/content/rules/PhotoSugar.com.xml b/src/chrome/content/rules/PhotoSugar.com.xml deleted file mode 100644 index 7e4163ba1471..000000000000 --- a/src/chrome/content/rules/PhotoSugar.com.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Photobucket.xml b/src/chrome/content/rules/Photobucket.xml index 7b78dfcd3c5e..1a3412963d24 100644 --- a/src/chrome/content/rules/Photobucket.xml +++ b/src/chrome/content/rules/Photobucket.xml @@ -19,7 +19,7 @@ - wac.3B49.edgecastcdn.net - - static.pbsrc.com + - static.pbsrc.com - cdn.photobucket.com.c.footprint.net diff --git a/src/chrome/content/rules/Photographer.io.xml b/src/chrome/content/rules/Photographer.io.xml index a62dfcfb41d2..e304a4a4ad71 100644 --- a/src/chrome/content/rules/Photographer.io.xml +++ b/src/chrome/content/rules/Photographer.io.xml @@ -11,7 +11,7 @@ Fetch error: http://photographer.io/ => https://photographer.io/: (7, 'Failed to - blog (503, valid cert) --> - + @@ -22,4 +22,4 @@ Fetch error: http://photographer.io/ => https://photographer.io/: (7, 'Failed to - \ No newline at end of file + diff --git a/src/chrome/content/rules/Photographylife.com.xml b/src/chrome/content/rules/Photographylife.com.xml new file mode 100644 index 000000000000..e85e8f7b7cad --- /dev/null +++ b/src/chrome/content/rules/Photographylife.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/PhotonConsulting.xml b/src/chrome/content/rules/PhotonConsulting.xml deleted file mode 100644 index 1ae2f270d5e5..000000000000 --- a/src/chrome/content/rules/PhotonConsulting.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/Photoprintit.com.xml b/src/chrome/content/rules/Photoprintit.com.xml index 8edd8b72e369..5d4b5a522256 100644 --- a/src/chrome/content/rules/Photoprintit.com.xml +++ b/src/chrome/content/rules/Photoprintit.com.xml @@ -1,15 +1,13 @@ - + + - - + --> - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Photosynth.xml b/src/chrome/content/rules/Photosynth.xml index 94160088fee1..da47218da5ee 100644 --- a/src/chrome/content/rules/Photosynth.xml +++ b/src/chrome/content/rules/Photosynth.xml @@ -7,7 +7,7 @@ Fetch error: http://cdn.photosynth.net/ => https://cdn.photosynth.net/: (6, 'Cou For other Microsoft coverage, see Microsoft.xml. --> - + diff --git a/src/chrome/content/rules/PhpBB.xml b/src/chrome/content/rules/PhpBB.xml index ba94654d7544..a1f35c90d98e 100644 --- a/src/chrome/content/rules/PhpBB.xml +++ b/src/chrome/content/rules/PhpBB.xml @@ -38,14 +38,20 @@ - + + + + + + + + - + diff --git a/src/chrome/content/rules/Phparchitect.xml b/src/chrome/content/rules/Phparchitect.xml index 354beb75c909..9f447711f0ed 100644 --- a/src/chrome/content/rules/Phparchitect.xml +++ b/src/chrome/content/rules/Phparchitect.xml @@ -5,7 +5,11 @@ - + + + + + @@ -18,4 +22,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Phpclasses.org.xml b/src/chrome/content/rules/Phpclasses.org.xml index 583a8b6cc5c8..5841140342a2 100644 --- a/src/chrome/content/rules/Phpclasses.org.xml +++ b/src/chrome/content/rules/Phpclasses.org.xml @@ -7,7 +7,7 @@ ww.phpclasses.net mismatch--> - + diff --git a/src/chrome/content/rules/Phpdoc.org.xml b/src/chrome/content/rules/Phpdoc.org.xml index 63771c6d9daa..48450dc15c42 100644 --- a/src/chrome/content/rules/Phpdoc.org.xml +++ b/src/chrome/content/rules/Phpdoc.org.xml @@ -5,7 +5,7 @@ Fetch error: http://qa.phpdoc.org/ => https://qa.phpdoc.org/: (6, 'Could not res --> - + @@ -14,7 +14,7 @@ Fetch error: http://qa.phpdoc.org/ => https://qa.phpdoc.org/: (6, 'Could not res - + diff --git a/src/chrome/content/rules/Phusion_Passenger.com.xml b/src/chrome/content/rules/Phusion_Passenger.com.xml index 69028beb42a2..de3f5ee936f1 100644 --- a/src/chrome/content/rules/Phusion_Passenger.com.xml +++ b/src/chrome/content/rules/Phusion_Passenger.com.xml @@ -13,7 +13,7 @@ - + - - - - - - - - diff --git a/src/chrome/content/rules/PhysicsOverflow.org.xml b/src/chrome/content/rules/PhysicsOverflow.org.xml new file mode 100644 index 000000000000..9965abffb4b3 --- /dev/null +++ b/src/chrome/content/rules/PhysicsOverflow.org.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/PhysicsTravelGuide.com.xml b/src/chrome/content/rules/PhysicsTravelGuide.com.xml new file mode 100644 index 000000000000..f6f6ee777349 --- /dev/null +++ b/src/chrome/content/rules/PhysicsTravelGuide.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Physics_Forums.com.xml b/src/chrome/content/rules/Physics_Forums.com.xml index 527b478c376a..1d5ced7a58d1 100644 --- a/src/chrome/content/rules/Physics_Forums.com.xml +++ b/src/chrome/content/rules/Physics_Forums.com.xml @@ -6,7 +6,7 @@ - + + + + + + + + + + diff --git a/src/chrome/content/rules/PiaoHua.com.xml b/src/chrome/content/rules/PiaoHua.com.xml new file mode 100644 index 000000000000..68371977ddc7 --- /dev/null +++ b/src/chrome/content/rules/PiaoHua.com.xml @@ -0,0 +1,30 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Piatnik.de.xml b/src/chrome/content/rules/Piatnik.de.xml deleted file mode 100644 index 15de91972ff1..000000000000 --- a/src/chrome/content/rules/Piatnik.de.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/chrome/content/rules/Piatt_County_Journal-Republican.xml b/src/chrome/content/rules/Piatt_County_Journal-Republican.xml index d34fee81ef56..5492b09eb124 100644 --- a/src/chrome/content/rules/Piatt_County_Journal-Republican.xml +++ b/src/chrome/content/rules/Piatt_County_Journal-Republican.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Piazza.com.xml b/src/chrome/content/rules/Piazza.com.xml index 838f5f98f695..32dc23bdde0c 100644 --- a/src/chrome/content/rules/Piazza.com.xml +++ b/src/chrome/content/rules/Piazza.com.xml @@ -10,7 +10,7 @@ - + diff --git a/src/chrome/content/rules/Picatcha.xml b/src/chrome/content/rules/Picatcha.xml index e4e2c939e2d6..3a782f55e15c 100644 --- a/src/chrome/content/rules/Picatcha.xml +++ b/src/chrome/content/rules/Picatcha.xml @@ -12,7 +12,7 @@ Fetch error: http://www.api.picatcha.com/ => https://www.api.picatcha.com/: (60, (www.)api serves captchas on 3rd-party websites. --> - + @@ -20,4 +20,4 @@ Fetch error: http://www.api.picatcha.com/ => https://www.api.picatcha.com/: (60, - \ No newline at end of file + diff --git a/src/chrome/content/rules/Pickaweb.xml b/src/chrome/content/rules/Pickaweb.xml index adf6b5e115ef..f434de87f798 100644 --- a/src/chrome/content/rules/Pickaweb.xml +++ b/src/chrome/content/rules/Pickaweb.xml @@ -27,4 +27,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Picload.org.xml b/src/chrome/content/rules/Picload.org.xml index bedb26fc2020..d92ecfd6a8aa 100644 --- a/src/chrome/content/rules/Picload.org.xml +++ b/src/chrome/content/rules/Picload.org.xml @@ -15,7 +15,7 @@ - + https://www.picomoney.com/: (7, 'Faile Disabled by https-everywhere-checker because: Fetch error: http://picomoney.com/ => https://picomoney.com/: Cycle detected - URL already encountered: http://www.picomoney.com/ --> - + @@ -18,4 +18,4 @@ Fetch error: http://picomoney.com/ => https://picomoney.com/: Cycle detected - U - \ No newline at end of file + diff --git a/src/chrome/content/rules/Picosong.com.xml b/src/chrome/content/rules/Picosong.com.xml new file mode 100644 index 000000000000..3ca54d78ab17 --- /dev/null +++ b/src/chrome/content/rules/Picosong.com.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Picsity.com.xml b/src/chrome/content/rules/Picsity.com.xml deleted file mode 100644 index 590589ab98cb..000000000000 --- a/src/chrome/content/rules/Picsity.com.xml +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Pictos.xml b/src/chrome/content/rules/Pictos.xml index a76c06708d3d..c6760280ea12 100644 --- a/src/chrome/content/rules/Pictos.xml +++ b/src/chrome/content/rules/Pictos.xml @@ -25,7 +25,7 @@ - + https://www.pidg.in/: (51, "SSL: no alternat For other Pidgin coverage, see Pidgin.xml. --> - + diff --git a/src/chrome/content/rules/Pidgin.xml b/src/chrome/content/rules/Pidgin.xml index 00667abf42b3..91fc43bebaab 100644 --- a/src/chrome/content/rules/Pidgin.xml +++ b/src/chrome/content/rules/Pidgin.xml @@ -1,44 +1,36 @@ - - + - - - - - - - - - - - - - - - + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Pietsmiet.de.xml b/src/chrome/content/rules/Pietsmiet.de.xml new file mode 100644 index 000000000000..532a2320ef04 --- /dev/null +++ b/src/chrome/content/rules/Pietsmiet.de.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/Pikabu.ru.xml b/src/chrome/content/rules/Pikabu.ru.xml new file mode 100644 index 000000000000..4d37249fe997 --- /dev/null +++ b/src/chrome/content/rules/Pikabu.ru.xml @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/PikminWiki.com.xml b/src/chrome/content/rules/PikminWiki.com.xml new file mode 100644 index 000000000000..175913752e0d --- /dev/null +++ b/src/chrome/content/rules/PikminWiki.com.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Pilgrimage_Software.com.xml b/src/chrome/content/rules/Pilgrimage_Software.com.xml index 7bd6a677e012..407a43b0cbbe 100644 --- a/src/chrome/content/rules/Pilgrimage_Software.com.xml +++ b/src/chrome/content/rules/Pilgrimage_Software.com.xml @@ -1,13 +1,5 @@ - - - - diff --git a/src/chrome/content/rules/Pillow.xml b/src/chrome/content/rules/Pillow.xml index 86ac918c2cff..a74d21bd5227 100644 --- a/src/chrome/content/rules/Pillow.xml +++ b/src/chrome/content/rules/Pillow.xml @@ -4,5 +4,5 @@ - + diff --git a/src/chrome/content/rules/Pimienta.org.xml b/src/chrome/content/rules/Pimienta.org.xml new file mode 100644 index 000000000000..9562e40f9126 --- /dev/null +++ b/src/chrome/content/rules/Pimienta.org.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Pinboard.in.xml b/src/chrome/content/rules/Pinboard.in.xml new file mode 100644 index 000000000000..1349656d03c0 --- /dev/null +++ b/src/chrome/content/rules/Pinboard.in.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Pinboard.xml b/src/chrome/content/rules/Pinboard.xml deleted file mode 100644 index c391b5b0e356..000000000000 --- a/src/chrome/content/rules/Pinboard.xml +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/PinchOfNom.com.xml b/src/chrome/content/rules/PinchOfNom.com.xml new file mode 100644 index 000000000000..57ba60506b50 --- /dev/null +++ b/src/chrome/content/rules/PinchOfNom.com.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Pine64.com.xml b/src/chrome/content/rules/Pine64.com.xml index f1b6f6e617e6..5889cb019653 100644 --- a/src/chrome/content/rules/Pine64.com.xml +++ b/src/chrome/content/rules/Pine64.com.xml @@ -9,7 +9,7 @@ Fetch error: http://www.pine64.com/ => https://www.pine64.com/: (51, "SSL: no al holiday.pine64.com --> - + diff --git a/src/chrome/content/rules/Pinescharter.net.xml b/src/chrome/content/rules/Pinescharter.net.xml index 441fcffb376a..79bfcd0c9c93 100644 --- a/src/chrome/content/rules/Pinescharter.net.xml +++ b/src/chrome/content/rules/Pinescharter.net.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Ping.pe.xml b/src/chrome/content/rules/Ping.pe.xml new file mode 100644 index 000000000000..2de5389f0d21 --- /dev/null +++ b/src/chrome/content/rules/Ping.pe.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/PingOne.xml b/src/chrome/content/rules/PingOne.xml index db582fcfff3f..a2dc2c45a1e4 100644 --- a/src/chrome/content/rules/PingOne.xml +++ b/src/chrome/content/rules/PingOne.xml @@ -20,4 +20,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Ping_Identity.xml b/src/chrome/content/rules/Ping_Identity.xml index bd352bbd7462..8db498d9fcd2 100644 --- a/src/chrome/content/rules/Ping_Identity.xml +++ b/src/chrome/content/rules/Ping_Identity.xml @@ -1,9 +1,4 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/PinkNews.co.uk.xml b/src/chrome/content/rules/PinkNews.co.uk.xml index 292a00c635c0..f2de26e43da6 100644 --- a/src/chrome/content/rules/PinkNews.co.uk.xml +++ b/src/chrome/content/rules/PinkNews.co.uk.xml @@ -16,7 +16,7 @@ Fetch error: http://www.pinknews.co.uk/ => https://www.pinknews.co.uk/: Too many * Secured by us --> - + diff --git a/src/chrome/content/rules/Pinocc.io.xml b/src/chrome/content/rules/Pinocc.io.xml index 21a747cb18c3..9a2e87020962 100644 --- a/src/chrome/content/rules/Pinocc.io.xml +++ b/src/chrome/content/rules/Pinocc.io.xml @@ -23,7 +23,7 @@ Fetch error: http://www.pinocc.io/ => https://pinocc.io/: (60, 'SSL certificate - www.pinocc.io --> - + @@ -39,7 +39,7 @@ Fetch error: http://www.pinocc.io/ => https://pinocc.io/: (60, 'SSL certificate - + https://extranets.pinsentmasons.com/: (7, 'Failed to connect to extranets.pinsentmasons.com port 443: Connection refused') --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Pinta-Outlet.fi.xml b/src/chrome/content/rules/Pinta-Outlet.fi.xml index aa7b1f12a977..942f594f166d 100644 --- a/src/chrome/content/rules/Pinta-Outlet.fi.xml +++ b/src/chrome/content/rules/Pinta-Outlet.fi.xml @@ -9,7 +9,7 @@ Fetch error: http://www.pinta-outlet.fi/ => https://pinta-outlet.fi/: (60, 'SSL - www (cert only matches ^pinta-outlet.fi) --> - + diff --git a/src/chrome/content/rules/Pinterest.xml b/src/chrome/content/rules/Pinterest.xml deleted file mode 100644 index 07fd8459897d..000000000000 --- a/src/chrome/content/rules/Pinterest.xml +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Pipedot.org.xml b/src/chrome/content/rules/Pipedot.org.xml index a304b46c47f7..41f5f64250fb 100644 --- a/src/chrome/content/rules/Pipedot.org.xml +++ b/src/chrome/content/rules/Pipedot.org.xml @@ -18,7 +18,7 @@ Fetch error: http://bugs.pipedot.org/ => https://bugs.pipedot.org/: (60, 'SSL ce - .pipedot.org --> - + diff --git a/src/chrome/content/rules/Pipl.xml b/src/chrome/content/rules/Pipl.xml index 64cdb019d01c..3b499df92744 100644 --- a/src/chrome/content/rules/Pipl.xml +++ b/src/chrome/content/rules/Pipl.xml @@ -12,7 +12,7 @@ - + diff --git a/src/chrome/content/rules/Piquadro.xml b/src/chrome/content/rules/Piquadro.xml index 951e7ef4dd92..174507b21fdc 100644 --- a/src/chrome/content/rules/Piquadro.xml +++ b/src/chrome/content/rules/Piquadro.xml @@ -1,15 +1,15 @@ - + - + diff --git a/src/chrome/content/rules/Pirata.cat.xml b/src/chrome/content/rules/Pirata.cat.xml new file mode 100644 index 000000000000..caddbd5dc166 --- /dev/null +++ b/src/chrome/content/rules/Pirata.cat.xml @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/PirateHD.com.xml b/src/chrome/content/rules/PirateHD.com.xml index 13668a1da748..07376d142220 100644 --- a/src/chrome/content/rules/PirateHD.com.xml +++ b/src/chrome/content/rules/PirateHD.com.xml @@ -12,7 +12,7 @@ Fetch error: http://piratehd.com/ => https://piratehd.com/: (28, 'Connection tim - .piratehd.com --> - + diff --git a/src/chrome/content/rules/PirateParty.xml b/src/chrome/content/rules/PirateParty.xml index 993370c81359..aa962bb9701d 100644 --- a/src/chrome/content/rules/PirateParty.xml +++ b/src/chrome/content/rules/PirateParty.xml @@ -1,4 +1,18 @@ + + + - - + + - + diff --git a/src/chrome/content/rules/Pirate_Party.ca.xml b/src/chrome/content/rules/Pirate_Party.ca.xml deleted file mode 100644 index c53bf421d801..000000000000 --- a/src/chrome/content/rules/Pirate_Party.ca.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Pirate_Party.org.au.xml b/src/chrome/content/rules/Pirate_Party.org.au.xml index 08d79d6255a8..8a749efe227f 100644 --- a/src/chrome/content/rules/Pirate_Party.org.au.xml +++ b/src/chrome/content/rules/Pirate_Party.org.au.xml @@ -29,7 +29,7 @@ --> - + https://edinburgh.pirateparty.org.uk/: (51, "SSL: no alternative certificate subject name matches target host name 'edinburgh.pirateparty.org.uk'") -Fetch error: http://glasgow.pirateparty.org.uk/ => https://glasgow.pirateparty.org.uk/: (51, "SSL: no alternative certificate subject name matches target host name 'glasgow.pirateparty.org.uk'") -Fetch error: http://manchester.pirateparty.org.uk/ => https://manchester.pirateparty.org.uk/: (51, "SSL: no alternative certificate subject name matches target host name 'manchester.pirateparty.org.uk'") -Fetch error: http://tpb.pirateparty.org.uk/ => https://tpb.pirateparty.org.uk/: (51, "SSL: no alternative certificate subject name matches target host name 'tpb.pirateparty.org.uk'") - - For other Pirate Party coverage, see PirateParty.xml. - ---> - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Piraten-Schwaben.de.xml b/src/chrome/content/rules/Piraten-Schwaben.de.xml index 41e2f5a335d0..5b24c66b5009 100644 --- a/src/chrome/content/rules/Piraten-Schwaben.de.xml +++ b/src/chrome/content/rules/Piraten-Schwaben.de.xml @@ -20,7 +20,7 @@ - + https://www.piraten-ufr.de/: (60, 'SS * Secured by us --> - + diff --git a/src/chrome/content/rules/Piratenkleider.de.xml b/src/chrome/content/rules/Piratenkleider.de.xml new file mode 100644 index 000000000000..5e631f143ba8 --- /dev/null +++ b/src/chrome/content/rules/Piratenkleider.de.xml @@ -0,0 +1,16 @@ + + + + + + + diff --git a/src/chrome/content/rules/Piratenlogin.de.xml b/src/chrome/content/rules/Piratenlogin.de.xml deleted file mode 100644 index 8ddfb6a0463e..000000000000 --- a/src/chrome/content/rules/Piratenlogin.de.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Piratenpartei-bayern.de.xml b/src/chrome/content/rules/Piratenpartei-bayern.de.xml index c41755796ff8..4eb46665d5fd 100644 --- a/src/chrome/content/rules/Piratenpartei-bayern.de.xml +++ b/src/chrome/content/rules/Piratenpartei-bayern.de.xml @@ -20,7 +20,7 @@ - + https://w.piratenpartei.at/: (51, "SS For other Pirate Party coverage, see PirateParty.xml. --> - + diff --git a/src/chrome/content/rules/Piratenpartei.de.xml b/src/chrome/content/rules/Piratenpartei.de.xml index fd72a7af1aed..644db7cb03a7 100644 --- a/src/chrome/content/rules/Piratenpartei.de.xml +++ b/src/chrome/content/rules/Piratenpartei.de.xml @@ -40,7 +40,7 @@ Fetch error: http://pshop.piratenpartei.de/ => https://pshop.piratenpartei.de/: - .shop.piratenpartei.de --> - + @@ -69,7 +69,7 @@ Fetch error: http://pshop.piratenpartei.de/ => https://pshop.piratenpartei.de/: - + https://www.www.pirati.cz/: (6, 'Could ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -62,7 +62,7 @@ Fetch error: http://www.www.pirati.cz/ => https://www.www.pirati.cz/: (6, 'Could --> - + https://www.piratpartiet.se/: (60, ' For other Pirate Party coverage, see PirateParty.xml. --> - + diff --git a/src/chrome/content/rules/Piratpartiet.xml b/src/chrome/content/rules/Piratpartiet.xml index 5f89c2c2e751..04bcceb8457b 100644 --- a/src/chrome/content/rules/Piratpartiet.xml +++ b/src/chrome/content/rules/Piratpartiet.xml @@ -6,7 +6,7 @@ Fetch error: http://arbeidskontoret.piratpartiet.no/ => https://arbeidskontoret. Non-functional domain: - piratpartiet.no (hostname mismatch, CN: *.piratpartiet.no) --> - + diff --git a/src/chrome/content/rules/Piriform.xml b/src/chrome/content/rules/Piriform.xml index 1a5737991308..eb7ed0b38fc8 100644 --- a/src/chrome/content/rules/Piriform.xml +++ b/src/chrome/content/rules/Piriform.xml @@ -66,20 +66,24 @@ - + + + + + + to="https://s1.pir.fm/" /> + to="https://download.piriform.com/" /> diff --git a/src/chrome/content/rules/Piscatus.se.xml b/src/chrome/content/rules/Piscatus.se.xml index b5029bc3b0c5..21025962ecec 100644 --- a/src/chrome/content/rules/Piscatus.se.xml +++ b/src/chrome/content/rules/Piscatus.se.xml @@ -8,10 +8,9 @@ Disabled by https-everywhere-checker because: Fetch error: http://piscatus.se/ => https://piscatus.se/: (7, 'Failed to connect to piscatus.se port 443: Connection refused') Fetch error: http://www.piscatus.se/ => https://www.piscatus.se/: (7, 'Failed to connect to www.piscatus.se port 443: Connection refused') --> - + - - + diff --git a/src/chrome/content/rules/Piston_Cloud_Computing.xml b/src/chrome/content/rules/Piston_Cloud_Computing.xml index fe666fa8488e..a91a42904095 100644 --- a/src/chrome/content/rules/Piston_Cloud_Computing.xml +++ b/src/chrome/content/rules/Piston_Cloud_Computing.xml @@ -10,7 +10,7 @@ Fetch error: http://www.pistoncloud.com/ => https://www.pistoncloud.com/: (51, " Cert only matches www. --> - + diff --git a/src/chrome/content/rules/Pittsburgh-Post-Gazette.xml b/src/chrome/content/rules/Pittsburgh-Post-Gazette.xml index 1a2ce8ab9b31..043abf194b45 100644 --- a/src/chrome/content/rules/Pittsburgh-Post-Gazette.xml +++ b/src/chrome/content/rules/Pittsburgh-Post-Gazette.xml @@ -92,7 +92,7 @@ --> - + - + diff --git a/src/chrome/content/rules/Pittsburgh_Massage_and_Wellness.com.xml b/src/chrome/content/rules/Pittsburgh_Massage_and_Wellness.com.xml deleted file mode 100644 index 7ba5ab03b910..000000000000 --- a/src/chrome/content/rules/Pittsburgh_Massage_and_Wellness.com.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Pivotal.xml b/src/chrome/content/rules/Pivotal.xml index b9de1b9e2e0c..4339d714f78d 100644 --- a/src/chrome/content/rules/Pivotal.xml +++ b/src/chrome/content/rules/Pivotal.xml @@ -3,7 +3,6 @@ - Cloud_Foundry.xml - Cloud_Foundry.org.xml - - Pivotaltracker.xml - RabbitMQ.xml - Spring.io.xml diff --git a/src/chrome/content/rules/Pivotal_Labs.xml b/src/chrome/content/rules/Pivotal_Labs.xml deleted file mode 100644 index c26c3f218d54..000000000000 --- a/src/chrome/content/rules/Pivotal_Labs.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Pivotaltracker.xml b/src/chrome/content/rules/Pivotaltracker.xml deleted file mode 100644 index bf6c8e0841b9..000000000000 --- a/src/chrome/content/rules/Pivotaltracker.xml +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Piwigo.com.xml b/src/chrome/content/rules/Piwigo.com.xml new file mode 100644 index 000000000000..c6ddfb782f1f --- /dev/null +++ b/src/chrome/content/rules/Piwigo.com.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Piwigo.org.xml b/src/chrome/content/rules/Piwigo.org.xml new file mode 100644 index 000000000000..9acf770ccf4d --- /dev/null +++ b/src/chrome/content/rules/Piwigo.org.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Piwik.org.xml b/src/chrome/content/rules/Piwik.org.xml index 88b1cfe78616..49c93b333460 100644 --- a/src/chrome/content/rules/Piwik.org.xml +++ b/src/chrome/content/rules/Piwik.org.xml @@ -35,7 +35,7 @@ - + - + + - + + + + + + + diff --git a/src/chrome/content/rules/Pixelh8.xml b/src/chrome/content/rules/Pixelh8.xml index 99042ed6064c..b7c09699ce84 100644 --- a/src/chrome/content/rules/Pixelh8.xml +++ b/src/chrome/content/rules/Pixelh8.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://pixelh8.co.uk/ => https://pixelh8.co.uk/: (51, "SSL: no alternative certificate subject name matches target host name 'pixelh8.co.uk'") Fetch error: http://www.pixelh8.co.uk/ => https://www.pixelh8.co.uk/: (51, "SSL: no alternative certificate subject name matches target host name 'www.pixelh8.co.uk'") --> - + @@ -16,4 +16,4 @@ Fetch error: http://www.pixelh8.co.uk/ => https://www.pixelh8.co.uk/: (51, "SSL: - \ No newline at end of file + diff --git a/src/chrome/content/rules/Pixiq.xml b/src/chrome/content/rules/Pixiq.xml deleted file mode 100644 index 8416a80b5e8d..000000000000 --- a/src/chrome/content/rules/Pixiq.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Pixiv.xml b/src/chrome/content/rules/Pixiv.xml index b4c82c986394..951886c14fcd 100644 --- a/src/chrome/content/rules/Pixiv.xml +++ b/src/chrome/content/rules/Pixiv.xml @@ -1,32 +1,34 @@ + Non-functional hosts + Couldn't connect to server: + - inside.pixiv.net + + Timeout was reached: + - dev.pixiv.net + - help.pixiv.net + - mx.pixiv.net + + SSL peer certificate was not OK: + - iracon.pixiv.net + - genepixiv.pr.pixiv.net + - kurofune.pr.pixiv.net + - pool.pr.pixiv.net + - times.pixiv.net + Different content: + - m.pixiv.net +--> + + + + + + + @@ -34,24 +36,24 @@ + + + - - - + + - - - - - - - - - - + + + + + + diff --git a/src/chrome/content/rules/Pixlr.com.xml b/src/chrome/content/rules/Pixlr.com.xml new file mode 100644 index 000000000000..b6a5d51b88ee --- /dev/null +++ b/src/chrome/content/rules/Pixlr.com.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Pixlr.xml b/src/chrome/content/rules/Pixlr.xml deleted file mode 100644 index 9e1650ad5041..000000000000 --- a/src/chrome/content/rules/Pixlr.xml +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Pixnet.cc.xml b/src/chrome/content/rules/Pixnet.cc.xml index 401f70fde9e5..274ae8229f07 100644 --- a/src/chrome/content/rules/Pixnet.cc.xml +++ b/src/chrome/content/rules/Pixnet.cc.xml @@ -11,7 +11,7 @@ --> - + - + diff --git a/src/chrome/content/rules/Pizzahut.xml b/src/chrome/content/rules/Pizzahut.xml index 432a786ed386..466733c3bf33 100644 --- a/src/chrome/content/rules/Pizzahut.xml +++ b/src/chrome/content/rules/Pizzahut.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://delivery.pizzahut.co.uk/ => https://delivery.pizzahut.co.uk/: (51, "SSL: no alternative certificate subject name matches target host name 'delivery.pizzahut.co.uk'") --> - + diff --git a/src/chrome/content/rules/Pkcell.com.xml b/src/chrome/content/rules/Pkcell.com.xml new file mode 100644 index 000000000000..a26b9dee4107 --- /dev/null +++ b/src/chrome/content/rules/Pkcell.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Pkgs.org.xml b/src/chrome/content/rules/Pkgs.org.xml index 2195711548c0..8c1ac6977b18 100644 --- a/src/chrome/content/rules/Pkgs.org.xml +++ b/src/chrome/content/rules/Pkgs.org.xml @@ -1,5 +1,34 @@ + + + + + + + + + + + + + + + + + + + + - diff --git a/src/chrome/content/rules/Pkr.com.xml b/src/chrome/content/rules/Pkr.com.xml index cc953e6057c3..0f140681c875 100644 --- a/src/chrome/content/rules/Pkr.com.xml +++ b/src/chrome/content/rules/Pkr.com.xml @@ -5,7 +5,7 @@ Fetch error: http://pkr.com/ => https://pkr.com/: (28, 'Connection timed out aft Fetch error: http://www.pkr.com/ => https://www.pkr.com/: (7, 'Failed to connect to www.pkr.com port 443: Connection refused') --> - + diff --git a/src/chrome/content/rules/Pl.vc.xml b/src/chrome/content/rules/Pl.vc.xml deleted file mode 100644 index 285b6fabae5f..000000000000 --- a/src/chrome/content/rules/Pl.vc.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Placehold.it.xml b/src/chrome/content/rules/Placehold.it.xml deleted file mode 100644 index 2d8822b22266..000000000000 --- a/src/chrome/content/rules/Placehold.it.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Planet-Source-Code.com.xml b/src/chrome/content/rules/Planet-Source-Code.com.xml deleted file mode 100644 index 98660dcf7090..000000000000 --- a/src/chrome/content/rules/Planet-Source-Code.com.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Planet3dnow.de.xml b/src/chrome/content/rules/Planet3dnow.de.xml index 2cf106413d0e..ffbade1e9647 100644 --- a/src/chrome/content/rules/Planet3dnow.de.xml +++ b/src/chrome/content/rules/Planet3dnow.de.xml @@ -1,5 +1,5 @@ - + - + diff --git a/src/chrome/content/rules/PlanetLab-mismatches.org.xml b/src/chrome/content/rules/PlanetLab-mismatches.org.xml index 08ebc320b382..756377a9d4e7 100644 --- a/src/chrome/content/rules/PlanetLab-mismatches.org.xml +++ b/src/chrome/content/rules/PlanetLab-mismatches.org.xml @@ -2,7 +2,6 @@ - + diff --git a/src/chrome/content/rules/PlanetLab.org.xml b/src/chrome/content/rules/PlanetLab.org.xml index f772ed767d74..f51e889416fa 100644 --- a/src/chrome/content/rules/PlanetLab.org.xml +++ b/src/chrome/content/rules/PlanetLab.org.xml @@ -4,13 +4,13 @@ Disabled by https-everywhere-checker because: Fetch error: http://svn.planet-lab.org/ => https://svn.planet-lab.org/: (60, 'SSL certificate problem: certificate has expired') --> - + - + diff --git a/src/chrome/content/rules/PlanetRomeo.xml b/src/chrome/content/rules/PlanetRomeo.xml deleted file mode 100644 index aa48fea14b61..000000000000 --- a/src/chrome/content/rules/PlanetRomeo.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Planet_Emu.net.xml b/src/chrome/content/rules/Planet_Emu.net.xml index e30de2ecac85..53de27588c52 100644 --- a/src/chrome/content/rules/Planet_Emu.net.xml +++ b/src/chrome/content/rules/Planet_Emu.net.xml @@ -9,7 +9,8 @@ - + + - + + - + - + - - - - - - + diff --git a/src/chrome/content/rules/PlantCommunity.de.xml b/src/chrome/content/rules/PlantCommunity.de.xml index 3dfbcb273a0e..f3d05ed4ec16 100644 --- a/src/chrome/content/rules/PlantCommunity.de.xml +++ b/src/chrome/content/rules/PlantCommunity.de.xml @@ -19,7 +19,7 @@ Fetch error: http://www.plantcommunity.de/ => https://www.plantcommunity.de/: (5 * Secured by us --> - + diff --git a/src/chrome/content/rules/PlantOGram.com.xml b/src/chrome/content/rules/PlantOGram.com.xml new file mode 100644 index 000000000000..f5593ced285e --- /dev/null +++ b/src/chrome/content/rules/PlantOGram.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/PlantSolution.de-falsemixed.xml b/src/chrome/content/rules/PlantSolution.de-falsemixed.xml index 47d1f90f5703..fbfe786ac96d 100644 --- a/src/chrome/content/rules/PlantSolution.de-falsemixed.xml +++ b/src/chrome/content/rules/PlantSolution.de-falsemixed.xml @@ -8,7 +8,7 @@ - + - - - - - - - - - - - diff --git a/src/chrome/content/rules/Plantronics.xml b/src/chrome/content/rules/Plantronics.xml index 9e349983e6fc..c4422354c831 100644 --- a/src/chrome/content/rules/Plantronics.xml +++ b/src/chrome/content/rules/Plantronics.xml @@ -2,7 +2,7 @@ - + diff --git a/src/chrome/content/rules/Plasti_Dip_Uruguay.com.xml b/src/chrome/content/rules/Plasti_Dip_Uruguay.com.xml deleted file mode 100644 index 7668ba08968c..000000000000 --- a/src/chrome/content/rules/Plasti_Dip_Uruguay.com.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Plastic-Bin.com.xml b/src/chrome/content/rules/Plastic-Bin.com.xml deleted file mode 100644 index b6b8eae64132..000000000000 --- a/src/chrome/content/rules/Plastic-Bin.com.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Platform_Admin.com.xml b/src/chrome/content/rules/Platform_Admin.com.xml deleted file mode 100644 index dfa51030651f..000000000000 --- a/src/chrome/content/rules/Platform_Admin.com.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Plati.ru.xml b/src/chrome/content/rules/Plati.ru.xml index 24ed9b7ba346..09311a16500f 100644 --- a/src/chrome/content/rules/Plati.ru.xml +++ b/src/chrome/content/rules/Plati.ru.xml @@ -19,4 +19,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Platinum_Performance.com.xml b/src/chrome/content/rules/Platinum_Performance.com.xml index 01f520df420f..db92441e461c 100644 --- a/src/chrome/content/rules/Platinum_Performance.com.xml +++ b/src/chrome/content/rules/Platinum_Performance.com.xml @@ -29,7 +29,7 @@ - + https://en-support.psm.pl For other Sony coverage, see Sony.xml. --> - + - + https://support.us.playstation.com/: (60, 'SSL certificate problem: unable to get local issuer certificate') -Non-2xx HTTP code: http://secure.us.playstation.com/ (200) => https://secure.us.playstation.com/ (503) -Fetch error: http://support.us.playstation.com/ => https://support.us.playstation.com/: (60, 'SSL certificate problem: unable to get local issuer certificate') - For other Sony coverage, see Sony.xml. @@ -21,7 +15,9 @@ Fetch error: http://support.us.playstation.com/ => https://support.us.playstatio Nonfunctional hosts in *playstation.com: - blog.eu ᵈ + - community.us (refused) - mypsn.eu ᵈ + - on.us (timeout) - fp.profiles.us ᵈ ᵈ Dropped @@ -29,10 +25,9 @@ Fetch error: http://support.us.playstation.com/ => https://support.us.playstatio Problematic hosts in *playstation.com: + - ^ (mismatched) - metrics.aem ᵐ - - static.blog ᴬ - uk ᵐ - - us ᴬ - cdn.us ³ - service1.us ᵉ - www.us ᵐ @@ -75,12 +70,14 @@ Fetch error: http://support.us.playstation.com/ => https://support.us.playstatio * Secured by us --> - + + + @@ -88,15 +85,15 @@ Fetch error: http://support.us.playstation.com/ => https://support.us.playstatio + + - - @@ -106,72 +103,16 @@ Fetch error: http://support.us.playstation.com/ => https://support.us.playstatio - - - - - - - - - - - - - - - + - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/PlayStation_Network.com.xml b/src/chrome/content/rules/PlayStation_Network.com.xml index 428fee951b18..4f240e4c5645 100644 --- a/src/chrome/content/rules/PlayStation_Network.com.xml +++ b/src/chrome/content/rules/PlayStation_Network.com.xml @@ -16,7 +16,7 @@ - + - + diff --git a/src/chrome/content/rules/Player-Attack.xml b/src/chrome/content/rules/Player-Attack.xml deleted file mode 100644 index 5258fc1e507c..000000000000 --- a/src/chrome/content/rules/Player-Attack.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/PlayerAttack.com.xml b/src/chrome/content/rules/PlayerAttack.com.xml new file mode 100644 index 000000000000..6cfa88a41f3f --- /dev/null +++ b/src/chrome/content/rules/PlayerAttack.com.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/PlayerAuctions.com.xml b/src/chrome/content/rules/PlayerAuctions.com.xml index 79cda96596f0..93fd909aee81 100644 --- a/src/chrome/content/rules/PlayerAuctions.com.xml +++ b/src/chrome/content/rules/PlayerAuctions.com.xml @@ -18,7 +18,7 @@ Fetch error: http://kimage.playerauctions.com/ => https://kimage.playerauctions. - (s)cdn01 (works; mismatched, CN: edgecastcdn.net) --> - + diff --git a/src/chrome/content/rules/Playfire.com.xml b/src/chrome/content/rules/Playfire.com.xml index 0ebdc985c7c4..e6c3bcd44a3f 100644 --- a/src/chrome/content/rules/Playfire.com.xml +++ b/src/chrome/content/rules/Playfire.com.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://forums.playfire.com/ => https://www.forums.playfire.com/: (6, 'Could not resolve host: www.forums.playfire.com') Fetch error: http://www.forums.playfire.com/ => https://www.forums.playfire.com/: (6, 'Could not resolve host: www.forums.playfire.com') --> - + diff --git a/src/chrome/content/rules/Playgrub.com.xml b/src/chrome/content/rules/Playgrub.com.xml deleted file mode 100644 index 66091539f605..000000000000 --- a/src/chrome/content/rules/Playgrub.com.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Playwire.xml b/src/chrome/content/rules/Playwire.xml index b005e9c6ce1f..7acbdd98773d 100644 --- a/src/chrome/content/rules/Playwire.xml +++ b/src/chrome/content/rules/Playwire.xml @@ -32,7 +32,7 @@ Fetch error: http://support.playwire.com/ => https://www.playwiresupport.com/: ( * Mismatched --> - + diff --git a/src/chrome/content/rules/Please_Ignore.com.xml b/src/chrome/content/rules/Please_Ignore.com.xml index 49031570205e..099e2a0a234c 100644 --- a/src/chrome/content/rules/Please_Ignore.com.xml +++ b/src/chrome/content/rules/Please_Ignore.com.xml @@ -1,7 +1,10 @@ - + + + + - + diff --git a/src/chrome/content/rules/Pliktverket.se.xml b/src/chrome/content/rules/Pliktverket.se.xml index 45b3032f7c6e..e551b1b15134 100644 --- a/src/chrome/content/rules/Pliktverket.se.xml +++ b/src/chrome/content/rules/Pliktverket.se.xml @@ -8,10 +8,9 @@ Disabled by https-everywhere-checker because: Fetch error: http://pliktverket.se/ => https://pliktverket.se/: (60, 'SSL certificate problem: certificate has expired') Fetch error: http://www.pliktverket.se/ => https://www.pliktverket.se/: (60, 'SSL certificate problem: certificate has expired') --> - + - - + diff --git a/src/chrome/content/rules/Plimus.com.xml b/src/chrome/content/rules/Plimus.com.xml deleted file mode 100644 index 9b55c1ada2aa..000000000000 --- a/src/chrome/content/rules/Plimus.com.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Plista.xml b/src/chrome/content/rules/Plista.xml index c32e5b4432d0..e2713fd49812 100644 --- a/src/chrome/content/rules/Plista.xml +++ b/src/chrome/content/rules/Plista.xml @@ -1,18 +1,145 @@ - + - + TLS error: + - plista125.plista.com - - +--> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Plone.org.xml b/src/chrome/content/rules/Plone.org.xml index a3648e795d8b..1ca6b6d78c97 100644 --- a/src/chrome/content/rules/Plone.org.xml +++ b/src/chrome/content/rules/Plone.org.xml @@ -26,7 +26,9 @@ - + + + - + diff --git a/src/chrome/content/rules/PlugRush.com-problematic.xml b/src/chrome/content/rules/PlugRush.com-problematic.xml index 72ef6c990a72..fc68339ab26c 100644 --- a/src/chrome/content/rules/PlugRush.com-problematic.xml +++ b/src/chrome/content/rules/PlugRush.com-problematic.xml @@ -11,7 +11,7 @@ - + - + - + https://www.plus.net/: Redirect for 'http://www - + + + + + @@ -46,7 +50,6 @@ Fetch error: http://plus.net/ => https://www.plus.net/: Redirect for 'http://www - + diff --git a/src/chrome/content/rules/Plusgirot.se.xml b/src/chrome/content/rules/Plusgirot.se.xml index 3398abb1ef1c..3c23c875266b 100644 --- a/src/chrome/content/rules/Plusgirot.se.xml +++ b/src/chrome/content/rules/Plusgirot.se.xml @@ -5,7 +5,7 @@ Fetch error: http://plusgirot.se/ => https://www.plusgirot.se/: (35, 'error:1407 Fetch error: http://www.plusgirot.se/ => https://www.plusgirot.se/: (35, 'error:14077458:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 unrecognized name') --> - + diff --git a/src/chrome/content/rules/Pluska.sk.xml b/src/chrome/content/rules/Pluska.sk.xml index 89fd807ac04c..e2f4c6fd6d59 100644 --- a/src/chrome/content/rules/Pluska.sk.xml +++ b/src/chrome/content/rules/Pluska.sk.xml @@ -27,6 +27,9 @@ Error 404: - dobrejedlo.pluska.sk + +pluska.sk returns certificate for www.pluska.sk + --> @@ -40,6 +43,9 @@ + + diff --git a/src/chrome/content/rules/Plusme.net-falsemixed.xml b/src/chrome/content/rules/Plusme.net-falsemixed.xml deleted file mode 100644 index 4105de148da1..000000000000 --- a/src/chrome/content/rules/Plusme.net-falsemixed.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Plusme.net.xml b/src/chrome/content/rules/Plusme.net.xml deleted file mode 100644 index 1b5572598281..000000000000 --- a/src/chrome/content/rules/Plusme.net.xml +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Plymouth-University.xml b/src/chrome/content/rules/Plymouth-University.xml deleted file mode 100644 index 28c60f83d526..000000000000 --- a/src/chrome/content/rules/Plymouth-University.xml +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Po.st.xml b/src/chrome/content/rules/Po.st.xml deleted file mode 100644 index 525f4d355076..000000000000 --- a/src/chrome/content/rules/Po.st.xml +++ /dev/null @@ -1,55 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Poal.me.xml b/src/chrome/content/rules/Poal.me.xml new file mode 100644 index 000000000000..c09b82df572a --- /dev/null +++ b/src/chrome/content/rules/Poal.me.xml @@ -0,0 +1,15 @@ + + + + + + + diff --git a/src/chrome/content/rules/Pobox.xml b/src/chrome/content/rules/Pobox.xml index 2e1d5701f72f..cf2d68875680 100644 --- a/src/chrome/content/rules/Pobox.xml +++ b/src/chrome/content/rules/Pobox.xml @@ -1,19 +1,24 @@ + - + + + + - - + - + diff --git a/src/chrome/content/rules/PocketMatrix.com.xml b/src/chrome/content/rules/PocketMatrix.com.xml index 98f2032047a2..98f5e5ea1cae 100644 --- a/src/chrome/content/rules/PocketMatrix.com.xml +++ b/src/chrome/content/rules/PocketMatrix.com.xml @@ -1,28 +1,15 @@ - - + - - - - - - - - - - + + + diff --git a/src/chrome/content/rules/Pocketbook.xml b/src/chrome/content/rules/Pocketbook.xml deleted file mode 100644 index ce199a84b071..000000000000 --- a/src/chrome/content/rules/Pocketbook.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Pocketgamer.biz.xml b/src/chrome/content/rules/Pocketgamer.biz.xml index f8b7cbbe3875..a9756e2b4afb 100644 --- a/src/chrome/content/rules/Pocketgamer.biz.xml +++ b/src/chrome/content/rules/Pocketgamer.biz.xml @@ -1,9 +1,9 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/PodVertise.xml b/src/chrome/content/rules/PodVertise.xml index 12007fc8a5e4..5f4cd7553c0a 100644 --- a/src/chrome/content/rules/PodVertise.xml +++ b/src/chrome/content/rules/PodVertise.xml @@ -4,7 +4,7 @@ - + - + - + https://poderpda.com/: Too many redirects w Fetch error: http://www.poderpda.com/ => https://www.poderpda.com/: Too many redirects while fetching 'https://www.poderpda.com/' --> - + @@ -17,4 +17,4 @@ Fetch error: http://www.poderpda.com/ => https://www.poderpda.com/: Too many red - \ No newline at end of file + diff --git a/src/chrome/content/rules/Podhurl.com.xml b/src/chrome/content/rules/Podhurl.com.xml new file mode 100644 index 000000000000..13184fa32433 --- /dev/null +++ b/src/chrome/content/rules/Podhurl.com.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/Podnapisi.xml b/src/chrome/content/rules/Podnapisi.xml index 8329d6ef86d4..a52acbedc87d 100644 --- a/src/chrome/content/rules/Podnapisi.xml +++ b/src/chrome/content/rules/Podnapisi.xml @@ -21,7 +21,7 @@ --> - + https://www.podseed.org/: (60, 'SSL cert Fetch error: http://cache.podseed.org/ => https://cache.podseed.org/: (7, 'Failed to connect to cache.podseed.org port 443: No route to host') --> - + diff --git a/src/chrome/content/rules/Poesie-Francaise.fr.xml b/src/chrome/content/rules/Poesie-Francaise.fr.xml new file mode 100644 index 000000000000..112fea8a5aa2 --- /dev/null +++ b/src/chrome/content/rules/Poesie-Francaise.fr.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Pogo.xml b/src/chrome/content/rules/Pogo.xml index 2f0ab41d8818..8c10e64fb84e 100644 --- a/src/chrome/content/rules/Pogo.xml +++ b/src/chrome/content/rules/Pogo.xml @@ -1,13 +1,15 @@ - + + + - + diff --git a/src/chrome/content/rules/Pogoplug.com.xml b/src/chrome/content/rules/Pogoplug.com.xml deleted file mode 100644 index d749148b7600..000000000000 --- a/src/chrome/content/rules/Pogoplug.com.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Point.im.xml b/src/chrome/content/rules/Point.im.xml index 635a3f562e03..f9d8baba4c09 100644 --- a/src/chrome/content/rules/Point.im.xml +++ b/src/chrome/content/rules/Point.im.xml @@ -6,7 +6,7 @@ - diff --git a/src/chrome/content/rules/Pointroll.xml b/src/chrome/content/rules/Pointroll.xml index 55c64f6201b3..5c6611fe46a2 100644 --- a/src/chrome/content/rules/Pointroll.xml +++ b/src/chrome/content/rules/Pointroll.xml @@ -12,10 +12,16 @@ Fetch error: http://pointroll.com/ => https://pointroll.com/: (7, 'Failed to con - t --> - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Pokaa.fr.xml b/src/chrome/content/rules/Pokaa.fr.xml new file mode 100644 index 000000000000..25029bcc8ddb --- /dev/null +++ b/src/chrome/content/rules/Pokaa.fr.xml @@ -0,0 +1,13 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/PokeCommunity.com.xml b/src/chrome/content/rules/PokeCommunity.com.xml new file mode 100644 index 000000000000..71a73fdc04e2 --- /dev/null +++ b/src/chrome/content/rules/PokeCommunity.com.xml @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Pokemon_World_Online.xml b/src/chrome/content/rules/Pokemon_World_Online.xml index f1187932f9c4..a321c4fe0017 100644 --- a/src/chrome/content/rules/Pokemon_World_Online.xml +++ b/src/chrome/content/rules/Pokemon_World_Online.xml @@ -8,7 +8,7 @@ Fetch error: http://www.pokemon-world-online.net/ => https://www.pokemon-world-o Disabled by https-everywhere-checker because: Fetch error: http://pokemon-world-online.net/ => https://pokemon-world-online.net/: (28, 'Connection timed out after 10001 milliseconds') --> - + @@ -20,4 +20,4 @@ Fetch error: http://pokemon-world-online.net/ => https://pokemon-world-online.ne - \ No newline at end of file + diff --git a/src/chrome/content/rules/Poky.xml b/src/chrome/content/rules/Poky.xml index b5a7923ddf25..0a73e979a97e 100644 --- a/src/chrome/content/rules/Poky.xml +++ b/src/chrome/content/rules/Poky.xml @@ -8,13 +8,16 @@ Fetch error: http://pokylinux.org/ => https://pokylinux.org/: (51, "SSL: no alte For other Linux Foundation coverage, see LinuxFoundation.xml. --> - + - + + + + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Police_Mutual.xml b/src/chrome/content/rules/Police_Mutual.xml index a7d7efaa8c94..fbddbba64d79 100644 --- a/src/chrome/content/rules/Police_Mutual.xml +++ b/src/chrome/content/rules/Police_Mutual.xml @@ -6,7 +6,8 @@ - + + @@ -18,4 +19,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Policia.es.xml b/src/chrome/content/rules/Policia.es.xml index 4ba709dda4ec..463d9d259c4d 100644 --- a/src/chrome/content/rules/Policia.es.xml +++ b/src/chrome/content/rules/Policia.es.xml @@ -1,6 +1,20 @@ - - - + + + + + + + diff --git a/src/chrome/content/rules/PolicyMic.xml b/src/chrome/content/rules/PolicyMic.xml index 4e944c9510df..8acf7f4322d5 100644 --- a/src/chrome/content/rules/PolicyMic.xml +++ b/src/chrome/content/rules/PolicyMic.xml @@ -25,17 +25,19 @@ Fetch error: http://policymic.com/ => https://policymic.com/: (7, 'Failed to con * Secured by us --> - + - + + + + + - @@ -43,4 +45,5 @@ Fetch error: http://policymic.com/ => https://policymic.com/: (7, 'Failed to con + diff --git a/src/chrome/content/rules/Polisen.se.xml b/src/chrome/content/rules/Polisen.se.xml new file mode 100644 index 000000000000..d7ca648c65c8 --- /dev/null +++ b/src/chrome/content/rules/Polisen.se.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Polit.ru.xml b/src/chrome/content/rules/Polit.ru.xml index e4647e7faedf..39c51dab8e1c 100644 --- a/src/chrome/content/rules/Polit.ru.xml +++ b/src/chrome/content/rules/Polit.ru.xml @@ -5,10 +5,10 @@ Fetch error: http://polit.ru/ => https://polit.ru/: (60, 'SSL certificate proble Fetch error: http://www.polit.ru/ => https://polit.ru/: (60, 'SSL certificate problem: certificate has expired') www. mismatch admin. mismatch--> - + - + diff --git a/src/chrome/content/rules/PolitiFact.xml b/src/chrome/content/rules/PolitiFact.xml index 801dd7a348a3..a04d11d5c6bf 100644 --- a/src/chrome/content/rules/PolitiFact.xml +++ b/src/chrome/content/rules/PolitiFact.xml @@ -1,27 +1,10 @@ - - - - - - - - - + + + + - + diff --git a/src/chrome/content/rules/Political_Compass.org.xml b/src/chrome/content/rules/Political_Compass.org.xml index 7cd07d28c1f3..53906c875de9 100644 --- a/src/chrome/content/rules/Political_Compass.org.xml +++ b/src/chrome/content/rules/Political_Compass.org.xml @@ -12,7 +12,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Politico.xml b/src/chrome/content/rules/Politico.xml index f8b683a745c9..93cc3dff1cb1 100644 --- a/src/chrome/content/rules/Politico.xml +++ b/src/chrome/content/rules/Politico.xml @@ -1,79 +1,34 @@ - - - - - - - - - - - - - - + - + + + + + + + + + + - - - - - - - - - - - - - + diff --git a/src/chrome/content/rules/Politico_Pro.com.xml b/src/chrome/content/rules/Politico_Pro.com.xml index 86cf820f5f8f..83c2674e4e19 100644 --- a/src/chrome/content/rules/Politico_Pro.com.xml +++ b/src/chrome/content/rules/Politico_Pro.com.xml @@ -24,7 +24,7 @@ - + https://www.politiken.dk/: Too many red * Secured by us --> - + diff --git a/src/chrome/content/rules/Polity.co.uk.xml b/src/chrome/content/rules/Polity.co.uk.xml index 9324a82adfd6..dd8c7fa1ae61 100644 --- a/src/chrome/content/rules/Polity.co.uk.xml +++ b/src/chrome/content/rules/Polity.co.uk.xml @@ -8,7 +8,7 @@ Fetch error: http://www.polity.co.uk/ => https://www.polity.co.uk/: (51, "SSL: n - www.polity.co.uk --> - + @@ -19,7 +19,7 @@ Fetch error: http://www.polity.co.uk/ => https://www.polity.co.uk/: (51, "SSL: n --> - + https://www.polk.com/: (60, 'SSL certificate problem: unable to get local issuer certificate') Fetch error: http://www.polk.com/ => https://www.polk.com/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + - + diff --git a/src/chrome/content/rules/Poll_Everywhere.com.xml b/src/chrome/content/rules/Poll_Everywhere.com.xml deleted file mode 100644 index e19647f661e6..000000000000 --- a/src/chrome/content/rules/Poll_Everywhere.com.xml +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Pollen.cl.xml b/src/chrome/content/rules/Pollen.cl.xml new file mode 100644 index 000000000000..b4d52d18f49d --- /dev/null +++ b/src/chrome/content/rules/Pollen.cl.xml @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Polskie_Radio.pl-mixedcontent.xml b/src/chrome/content/rules/Polskie_Radio.pl-mixedcontent.xml index 539426fb11b6..d01153676db4 100644 --- a/src/chrome/content/rules/Polskie_Radio.pl-mixedcontent.xml +++ b/src/chrome/content/rules/Polskie_Radio.pl-mixedcontent.xml @@ -7,7 +7,7 @@ - + - + https://www.polybrowser.com/: (28, ' * Secured by us --> - + diff --git a/src/chrome/content/rules/PolyGrant.com.xml b/src/chrome/content/rules/PolyGrant.com.xml index 9b02d063623b..6ae08576d798 100644 --- a/src/chrome/content/rules/PolyGrant.com.xml +++ b/src/chrome/content/rules/PolyGrant.com.xml @@ -10,7 +10,7 @@ Fetch error: http://www.polygrant.com/ => https://www.polygrant.com/: (7, 'Faile - www.polygrant.com --> - + @@ -20,7 +20,7 @@ Fetch error: http://www.polygrant.com/ => https://www.polygrant.com/: (7, 'Faile --> - + @@ -8,7 +13,6 @@ - @@ -16,8 +20,7 @@ - - + diff --git a/src/chrome/content/rules/Polygon.com.xml b/src/chrome/content/rules/Polygon.com.xml index 29f33e003e9b..8b6e399d3614 100644 --- a/src/chrome/content/rules/Polygon.com.xml +++ b/src/chrome/content/rules/Polygon.com.xml @@ -1,79 +1,10 @@ - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + diff --git a/src/chrome/content/rules/Polymer-Project.org.xml b/src/chrome/content/rules/Polymer-Project.org.xml index 61bfde665ae7..e9ab3f8c8f3f 100644 --- a/src/chrome/content/rules/Polymer-Project.org.xml +++ b/src/chrome/content/rules/Polymer-Project.org.xml @@ -1,17 +1,32 @@ + + + + + + + + + - - + + diff --git a/src/chrome/content/rules/Polytechnic-University-of-Catalonia-mismatches.xml b/src/chrome/content/rules/Polytechnic-University-of-Catalonia-mismatches.xml deleted file mode 100644 index 69066b488e31..000000000000 --- a/src/chrome/content/rules/Polytechnic-University-of-Catalonia-mismatches.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - diff --git a/src/chrome/content/rules/Polytechnic-University-of-Catalonia.xml b/src/chrome/content/rules/Polytechnic-University-of-Catalonia.xml deleted file mode 100644 index eb437dc67474..000000000000 --- a/src/chrome/content/rules/Polytechnic-University-of-Catalonia.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/PonderingIslam.com.xml b/src/chrome/content/rules/PonderingIslam.com.xml new file mode 100644 index 000000000000..ca04f10166d3 --- /dev/null +++ b/src/chrome/content/rules/PonderingIslam.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Ponderwall.com.xml b/src/chrome/content/rules/Ponderwall.com.xml new file mode 100644 index 000000000000..7047e71317fe --- /dev/null +++ b/src/chrome/content/rules/Ponderwall.com.xml @@ -0,0 +1,12 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Ponemon.xml b/src/chrome/content/rules/Ponemon.xml index 23fdb947570d..fca9df128ad2 100644 --- a/src/chrome/content/rules/Ponemon.xml +++ b/src/chrome/content/rules/Ponemon.xml @@ -8,7 +8,7 @@ Fetch error: http://rim.ponemon.org/ => https://rim.ponemon.org/: (60, 'SSL cert - (www.) (redirects to rim, CN: rim.ponemon.org) --> - + @@ -16,7 +16,6 @@ Fetch error: http://rim.ponemon.org/ => https://rim.ponemon.org/: (60, 'SSL cert - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Pony.fm.xml b/src/chrome/content/rules/Pony.fm.xml index c5f5d0911854..28ee4ee384fa 100644 --- a/src/chrome/content/rules/Pony.fm.xml +++ b/src/chrome/content/rules/Pony.fm.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://s.pony.fm/ => https://s.pony.fm/: (51, "SSL: no alternative certificate subject name matches target host name 's.pony.fm'") --> - + @@ -16,4 +16,4 @@ Fetch error: http://s.pony.fm/ => https://s.pony.fm/: (51, "SSL: no alternative - \ No newline at end of file + diff --git a/src/chrome/content/rules/PonyChat.net.xml b/src/chrome/content/rules/PonyChat.net.xml deleted file mode 100644 index ba8d566921e1..000000000000 --- a/src/chrome/content/rules/PonyChat.net.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Poo.solutions.xml b/src/chrome/content/rules/Poo.solutions.xml deleted file mode 100644 index 0cc6d5d0e080..000000000000 --- a/src/chrome/content/rules/Poo.solutions.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/Poolp.org.xml b/src/chrome/content/rules/Poolp.org.xml index 8f2407e28133..f64668dbbfd8 100644 --- a/src/chrome/content/rules/Poolp.org.xml +++ b/src/chrome/content/rules/Poolp.org.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Poopjournal.rocks.xml b/src/chrome/content/rules/Poopjournal.rocks.xml deleted file mode 100644 index 778fdd59b942..000000000000 --- a/src/chrome/content/rules/Poopjournal.rocks.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/Poor_Man_Motorsports.xml b/src/chrome/content/rules/Poor_Man_Motorsports.xml index 3c58a01f00fb..3b089bf2fc32 100644 --- a/src/chrome/content/rules/Poor_Man_Motorsports.xml +++ b/src/chrome/content/rules/Poor_Man_Motorsports.xml @@ -4,9 +4,9 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Pop2imap.com.xml b/src/chrome/content/rules/Pop2imap.com.xml new file mode 100644 index 000000000000..4db03846d0e9 --- /dev/null +++ b/src/chrome/content/rules/Pop2imap.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/PopAtomic.xml b/src/chrome/content/rules/PopAtomic.xml deleted file mode 100644 index e26e7bee379b..000000000000 --- a/src/chrome/content/rules/PopAtomic.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/PopCash.net.xml b/src/chrome/content/rules/PopCash.net.xml index d697b77ac200..c9017e3bac5c 100644 --- a/src/chrome/content/rules/PopCash.net.xml +++ b/src/chrome/content/rules/PopCash.net.xml @@ -1,16 +1,9 @@ + + + + - - - - - - - - - + + diff --git a/src/chrome/content/rules/PopCrunch.com.xml b/src/chrome/content/rules/PopCrunch.com.xml deleted file mode 100644 index fd31742af3fa..000000000000 --- a/src/chrome/content/rules/PopCrunch.com.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/PopSci.com.xml b/src/chrome/content/rules/PopSci.com.xml index 4009e72af4f3..2f87d2c98eac 100644 --- a/src/chrome/content/rules/PopSci.com.xml +++ b/src/chrome/content/rules/PopSci.com.xml @@ -15,6 +15,6 @@ - + diff --git a/src/chrome/content/rules/Pop_Goes_the_Week.xml b/src/chrome/content/rules/Pop_Goes_the_Week.xml index 417b20516819..b3afe3fa9277 100644 --- a/src/chrome/content/rules/Pop_Goes_the_Week.xml +++ b/src/chrome/content/rules/Pop_Goes_the_Week.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Popehat.com.xml b/src/chrome/content/rules/Popehat.com.xml index d2469fd9b701..7356deb7d528 100644 --- a/src/chrome/content/rules/Popehat.com.xml +++ b/src/chrome/content/rules/Popehat.com.xml @@ -6,7 +6,7 @@ Fetch error: http://webdisk.popehat.com/ => https://webdisk.popehat.com/: (51, " Fetch error: http://webmail.popehat.com/ => https://webmail.popehat.com/: (51, "SSL: no alternative certificate subject name matches target host name 'webmail.popehat.com'") --> - + diff --git a/src/chrome/content/rules/Poppy-Sports.xml b/src/chrome/content/rules/Poppy-Sports.xml index 5581b92ac638..69c3d004e359 100644 --- a/src/chrome/content/rules/Poppy-Sports.xml +++ b/src/chrome/content/rules/Poppy-Sports.xml @@ -4,15 +4,14 @@ Disabled by https-everywhere-checker because: Fetch error: http://poppysports.com/ => https://www.poppysports.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.poppysports.com'") --> - + - - + - + diff --git a/src/chrome/content/rules/Poppy_UK.xml b/src/chrome/content/rules/Poppy_UK.xml deleted file mode 100644 index d20c58fbb34e..000000000000 --- a/src/chrome/content/rules/Poppy_UK.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Pops.co.xml b/src/chrome/content/rules/Pops.co.xml new file mode 100644 index 000000000000..b816f48cb79c --- /dev/null +++ b/src/chrome/content/rules/Pops.co.xml @@ -0,0 +1,11 @@ + + + + + + + diff --git a/src/chrome/content/rules/Popular.com.tw.xml b/src/chrome/content/rules/Popular.com.tw.xml deleted file mode 100644 index 3140f4b8b2f7..000000000000 --- a/src/chrome/content/rules/Popular.com.tw.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Popular_Photography.xml b/src/chrome/content/rules/Popular_Photography.xml index 4013d35cd8d5..62ed432387ed 100644 --- a/src/chrome/content/rules/Popular_Photography.xml +++ b/src/chrome/content/rules/Popular_Photography.xml @@ -19,7 +19,8 @@ Fetch error: http://popphoto.com/ => https://www.popphoto.com/: Cycle detected - - + + - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/PopupCheck.com.xml b/src/chrome/content/rules/PopupCheck.com.xml new file mode 100644 index 000000000000..20a574c6ff20 --- /dev/null +++ b/src/chrome/content/rules/PopupCheck.com.xml @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Porlaputa.com.xml b/src/chrome/content/rules/Porlaputa.com.xml index 4329d3970370..58ecf9a18a85 100644 --- a/src/chrome/content/rules/Porlaputa.com.xml +++ b/src/chrome/content/rules/Porlaputa.com.xml @@ -16,7 +16,7 @@ - + @@ -25,4 +25,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Porn-W.xml b/src/chrome/content/rules/Porn-W.xml index a9ee5f656bf3..3c554e1fe207 100644 --- a/src/chrome/content/rules/Porn-W.xml +++ b/src/chrome/content/rules/Porn-W.xml @@ -3,9 +3,9 @@ - + - + diff --git a/src/chrome/content/rules/PornBB.org.xml b/src/chrome/content/rules/PornBB.org.xml new file mode 100644 index 000000000000..2f9823a7adef --- /dev/null +++ b/src/chrome/content/rules/PornBB.org.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Porn_Worms.com-falsemixed.xml b/src/chrome/content/rules/Porn_Worms.com-falsemixed.xml index 4569e8da19a7..2668f42e9d64 100644 --- a/src/chrome/content/rules/Porn_Worms.com-falsemixed.xml +++ b/src/chrome/content/rules/Porn_Worms.com-falsemixed.xml @@ -27,7 +27,7 @@ Fetch error: http://www.pornworms.com/ => https://www.pornworms.com/: (60, 'SSL - www --> - + diff --git a/src/chrome/content/rules/Porn_Worms.com.xml b/src/chrome/content/rules/Porn_Worms.com.xml index ffe9beebd8dc..b994c82c83b0 100644 --- a/src/chrome/content/rules/Porn_Worms.com.xml +++ b/src/chrome/content/rules/Porn_Worms.com.xml @@ -62,7 +62,7 @@ Fetch error: http://pornworms.com/ => https://pornworms.com/: (60, 'SSL certific - adserver.juicyads.com --> - + diff --git a/src/chrome/content/rules/Pornwikileaks.com.xml b/src/chrome/content/rules/Pornwikileaks.com.xml new file mode 100644 index 000000000000..a837539cac19 --- /dev/null +++ b/src/chrome/content/rules/Pornwikileaks.com.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/PortForward.com.xml b/src/chrome/content/rules/PortForward.com.xml index 62c1d97b5204..d2e5ce38cdb6 100644 --- a/src/chrome/content/rules/PortForward.com.xml +++ b/src/chrome/content/rules/PortForward.com.xml @@ -1,22 +1,26 @@ - + Timeout: + - forum + - mail + Expired: + - screenshots +--> + - - - - - - - + + + + diff --git a/src/chrome/content/rules/PortableApps.com.xml b/src/chrome/content/rules/PortableApps.com.xml index a806da544298..af71b8eb529e 100644 --- a/src/chrome/content/rules/PortableApps.com.xml +++ b/src/chrome/content/rules/PortableApps.com.xml @@ -1,7 +1,16 @@ + + + diff --git a/src/chrome/content/rules/Portadi.com.xml b/src/chrome/content/rules/Portadi.com.xml deleted file mode 100644 index 5b93cd5464ac..000000000000 --- a/src/chrome/content/rules/Portadi.com.xml +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Portland_Mercury.com.xml b/src/chrome/content/rules/Portland_Mercury.com.xml index 2f6c843883e6..80fa471221e2 100644 --- a/src/chrome/content/rules/Portland_Mercury.com.xml +++ b/src/chrome/content/rules/Portland_Mercury.com.xml @@ -1,6 +1,17 @@ + - - - - - + + + + + - + diff --git a/src/chrome/content/rules/Portland_State_University-falsemixed.xml b/src/chrome/content/rules/Portland_State_University-falsemixed.xml deleted file mode 100644 index 13a9070fcee7..000000000000 --- a/src/chrome/content/rules/Portland_State_University-falsemixed.xml +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Portland_State_University.xml b/src/chrome/content/rules/Portland_State_University.xml index db0dadfcd841..c3272b0abb62 100644 --- a/src/chrome/content/rules/Portland_State_University.xml +++ b/src/chrome/content/rules/Portland_State_University.xml @@ -1,143 +1,51 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Portner_Press.com.au.xml b/src/chrome/content/rules/Portner_Press.com.au.xml index efa0745ac164..2fa3ddfbf163 100644 --- a/src/chrome/content/rules/Portner_Press.com.au.xml +++ b/src/chrome/content/rules/Portner_Press.com.au.xml @@ -1,9 +1,4 @@ - + - + diff --git a/src/chrome/content/rules/Portsmouth.gov.uk.xml b/src/chrome/content/rules/Portsmouth.gov.uk.xml new file mode 100644 index 000000000000..e33666500893 --- /dev/null +++ b/src/chrome/content/rules/Portsmouth.gov.uk.xml @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Portugal.gov.pt.xml b/src/chrome/content/rules/Portugal.gov.pt.xml index 60bbe8d70444..afb163b1bf99 100644 --- a/src/chrome/content/rules/Portugal.gov.pt.xml +++ b/src/chrome/content/rules/Portugal.gov.pt.xml @@ -1,37 +1,12 @@ - - - - - - + + + + - - - - - - - - - - + diff --git a/src/chrome/content/rules/PoshLiving.xml b/src/chrome/content/rules/PoshLiving.xml deleted file mode 100644 index 591bef39513a..000000000000 --- a/src/chrome/content/rules/PoshLiving.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Positive-Software.xml b/src/chrome/content/rules/Positive-Software.xml index e06a105b7c67..c568decbcba1 100644 --- a/src/chrome/content/rules/Positive-Software.xml +++ b/src/chrome/content/rules/Positive-Software.xml @@ -11,7 +11,7 @@ Fetch error: http://license.psoft.net/ => https://license.psoft.net/: (60, 'SSL (www.)?psoft.net: Refused --> - + diff --git a/src/chrome/content/rules/PositiveSSL.xml b/src/chrome/content/rules/PositiveSSL.xml index f50fbd6da0be..915656e38a98 100644 --- a/src/chrome/content/rules/PositiveSSL.xml +++ b/src/chrome/content/rules/PositiveSSL.xml @@ -8,7 +8,7 @@ --> - + diff --git a/src/chrome/content/rules/Post-Gazette.com-falsemixed.xml b/src/chrome/content/rules/Post-Gazette.com-falsemixed.xml index 3b38d3fae284..c21d6488ad98 100644 --- a/src/chrome/content/rules/Post-Gazette.com-falsemixed.xml +++ b/src/chrome/content/rules/Post-Gazette.com-falsemixed.xml @@ -16,7 +16,7 @@ - + - diff --git a/src/chrome/content/rules/Post.ch.xml b/src/chrome/content/rules/Post.ch.xml index a58e6ff49e35..712b7b815b8f 100644 --- a/src/chrome/content/rules/Post.ch.xml +++ b/src/chrome/content/rules/Post.ch.xml @@ -12,7 +12,7 @@ Fetch error: http://www.mypostbusiness.ch/ => https://www.mypostbusiness.ch/: (6 * Refused --> - + @@ -30,8 +30,6 @@ Fetch error: http://www.mypostbusiness.ch/ => https://www.mypostbusiness.ch/: (6 - - @@ -41,7 +39,6 @@ Fetch error: http://www.mypostbusiness.ch/ => https://www.mypostbusiness.ch/: (6 - diff --git a/src/chrome/content/rules/PostImage.xml b/src/chrome/content/rules/PostImage.xml new file mode 100644 index 000000000000..725b2e1580c4 --- /dev/null +++ b/src/chrome/content/rules/PostImage.xml @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/PostNord.se.xml b/src/chrome/content/rules/PostNord.se.xml index e3e07d5c604b..1ae9c07b7097 100644 --- a/src/chrome/content/rules/PostNord.se.xml +++ b/src/chrome/content/rules/PostNord.se.xml @@ -1,40 +1,33 @@ - - - + - - - - - - - - - - - - + + + + + + + + + + diff --git a/src/chrome/content/rules/PostPoints_Rewards.com.xml b/src/chrome/content/rules/PostPoints_Rewards.com.xml deleted file mode 100644 index 534509006cf9..000000000000 --- a/src/chrome/content/rules/PostPoints_Rewards.com.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Post_to.Me.xml b/src/chrome/content/rules/Post_to.Me.xml index 88574c8a820f..f03a613d17c7 100644 --- a/src/chrome/content/rules/Post_to.Me.xml +++ b/src/chrome/content/rules/Post_to.Me.xml @@ -25,7 +25,7 @@ --> - + - + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Postal_Heritage.org.uk.xml b/src/chrome/content/rules/Postal_Heritage.org.uk.xml index 53b1971170a2..1b2bc046f062 100644 --- a/src/chrome/content/rules/Postal_Heritage.org.uk.xml +++ b/src/chrome/content/rules/Postal_Heritage.org.uk.xml @@ -6,7 +6,7 @@ Fetch error: http://assets1.postalheritage.org.uk/ => https://assets1.postalheri At least some pages redirect to http. --> - + diff --git a/src/chrome/content/rules/Postbox-Inc.com.xml b/src/chrome/content/rules/Postbox-Inc.com.xml index 0dfc763802dd..9ee4a5300ec6 100644 --- a/src/chrome/content/rules/Postbox-Inc.com.xml +++ b/src/chrome/content/rules/Postbox-Inc.com.xml @@ -14,7 +14,7 @@ - + - + diff --git a/src/chrome/content/rules/Poste-Impresa.it.xml b/src/chrome/content/rules/Poste-Impresa.it.xml deleted file mode 100644 index cd5512bf4813..000000000000 --- a/src/chrome/content/rules/Poste-Impresa.it.xml +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Poste.it.xml b/src/chrome/content/rules/Poste.it.xml index bae0497955a2..b000f8a3ddef 100644 --- a/src/chrome/content/rules/Poste.it.xml +++ b/src/chrome/content/rules/Poste.it.xml @@ -12,10 +12,8 @@ Fetch error: http://myposteimpresa.poste.it/ => https://myposteimpresa.poste.it/ - Kipoint.it.xml - PI_CERT.it.xml - Posta-Online.it.xml - - Poste-Impresa.it.xml - PosteShop.it.xml - Postel.it.xml - - Risparmio_Postale.it.xml - SDA.it.xml @@ -42,7 +40,7 @@ Fetch error: http://myposteimpresa.poste.it/ => https://myposteimpresa.poste.it/ * Secured by us --> - + @@ -68,7 +66,7 @@ Fetch error: http://myposteimpresa.poste.it/ => https://myposteimpresa.poste.it/ - + https://www.posteshop.it/: (6, 'Could not r ^posteshop.it: Mismatched --> - + @@ -21,7 +21,7 @@ Fetch error: http://posteshop.it/ => https://www.posteshop.it/: (6, 'Could not r - + - + https://m.posteo.de/: (6, 'Could not resolve host: m.posteo.de') - - Fully covered subdomains: - - - $ - - autodiscover - - api - - cdn - - www - - lists - - m - ---> - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Poster_Store_UK.xml b/src/chrome/content/rules/Poster_Store_UK.xml deleted file mode 100644 index ad09d4309939..000000000000 --- a/src/chrome/content/rules/Poster_Store_UK.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Posterous.xml b/src/chrome/content/rules/Posterous.xml deleted file mode 100644 index 905bce41fd75..000000000000 --- a/src/chrome/content/rules/Posterous.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/PostgreSQL-self-signed.xml b/src/chrome/content/rules/PostgreSQL-self-signed.xml deleted file mode 100644 index bac81b5886e0..000000000000 --- a/src/chrome/content/rules/PostgreSQL-self-signed.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/PostgreSQL.xml b/src/chrome/content/rules/PostgreSQL.xml deleted file mode 100644 index 9ca7a3da94e7..000000000000 --- a/src/chrome/content/rules/PostgreSQL.xml +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Postgresql.eu.xml b/src/chrome/content/rules/Postgresql.eu.xml new file mode 100644 index 000000000000..7ba6685c29f2 --- /dev/null +++ b/src/chrome/content/rules/Postgresql.eu.xml @@ -0,0 +1,9 @@ + + + + + + + diff --git a/src/chrome/content/rules/Postgresql.fr.xml b/src/chrome/content/rules/Postgresql.fr.xml new file mode 100644 index 000000000000..f78230527fbd --- /dev/null +++ b/src/chrome/content/rules/Postgresql.fr.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Postgresql.org.xml b/src/chrome/content/rules/Postgresql.org.xml new file mode 100644 index 000000000000..e9380378d289 --- /dev/null +++ b/src/chrome/content/rules/Postgresql.org.xml @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Postgresql.us.xml b/src/chrome/content/rules/Postgresql.us.xml new file mode 100644 index 000000000000..d64d40b119e9 --- /dev/null +++ b/src/chrome/content/rules/Postgresql.us.xml @@ -0,0 +1,20 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Posthaven.com-problematic.xml b/src/chrome/content/rules/Posthaven.com-problematic.xml deleted file mode 100644 index a4bd396ed943..000000000000 --- a/src/chrome/content/rules/Posthaven.com-problematic.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Posthaven.com.xml b/src/chrome/content/rules/Posthaven.com.xml index cf93fb49a1da..0b1ad7e68502 100644 --- a/src/chrome/content/rules/Posthaven.com.xml +++ b/src/chrome/content/rules/Posthaven.com.xml @@ -1,31 +1,20 @@ - + - - + + + + + - - - + + + diff --git a/src/chrome/content/rules/Postimage.xml b/src/chrome/content/rules/Postimage.xml deleted file mode 100644 index 627c07ccb8c5..000000000000 --- a/src/chrome/content/rules/Postimage.xml +++ /dev/null @@ -1,151 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Postini.xml b/src/chrome/content/rules/Postini.xml deleted file mode 100644 index 192597dc7cf8..000000000000 --- a/src/chrome/content/rules/Postini.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Postlapsaria.xml b/src/chrome/content/rules/Postlapsaria.xml index d23cfd0b698e..6b42d7148e45 100644 --- a/src/chrome/content/rules/Postlapsaria.xml +++ b/src/chrome/content/rules/Postlapsaria.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Postnewsads.com.xml b/src/chrome/content/rules/Postnewsads.com.xml index f7d48a9fd0a5..2f2da0375b84 100644 --- a/src/chrome/content/rules/Postnewsads.com.xml +++ b/src/chrome/content/rules/Postnewsads.com.xml @@ -8,7 +8,7 @@ Fetch error: http://www.postnewsads.com/ => https://postnewsads.com/: (35, 'Unkn www.postnewsads.com: 404 --> - + diff --git a/src/chrome/content/rules/Postscapes.com.xml b/src/chrome/content/rules/Postscapes.com.xml index dd42653a9720..8197e998c6de 100644 --- a/src/chrome/content/rules/Postscapes.com.xml +++ b/src/chrome/content/rules/Postscapes.com.xml @@ -6,7 +6,7 @@ Time out: about.postscapes.com - + No working URL known: clips.postscapes.com iotawards.postscapes.com diff --git a/src/chrome/content/rules/Postwire.com.xml b/src/chrome/content/rules/Postwire.com.xml index af89bb52a082..206c524d57be 100644 --- a/src/chrome/content/rules/Postwire.com.xml +++ b/src/chrome/content/rules/Postwire.com.xml @@ -17,7 +17,7 @@ - + - - - - - - + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/PowNed.xml b/src/chrome/content/rules/PowNed.xml index 0c6117dfc8d8..a3e32ed12063 100644 --- a/src/chrome/content/rules/PowNed.xml +++ b/src/chrome/content/rules/PowNed.xml @@ -6,11 +6,10 @@ Fetch error: http://registratie.powned.tv/ => https://registratie.powned.tv/: (2 !functional: - (www.)powned.tv --> - + - + diff --git a/src/chrome/content/rules/PowWeb.xml b/src/chrome/content/rules/PowWeb.xml index a9039d6ee712..5be795d29092 100644 --- a/src/chrome/content/rules/PowWeb.xml +++ b/src/chrome/content/rules/PowWeb.xml @@ -1,13 +1,16 @@ - + + + + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Powells.com.xml b/src/chrome/content/rules/Powells.com.xml index 3fa70e9ff0d8..3e9c07c0a4cb 100644 --- a/src/chrome/content/rules/Powells.com.xml +++ b/src/chrome/content/rules/Powells.com.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://powells.com/ => https://www.powells.com/: Too many redirects while fetching 'https://www.powells.com/' --> - + diff --git a/src/chrome/content/rules/PowerDNS.com.xml b/src/chrome/content/rules/PowerDNS.com.xml index 45c2472bc9bf..36d9bf0f1f47 100644 --- a/src/chrome/content/rules/PowerDNS.com.xml +++ b/src/chrome/content/rules/PowerDNS.com.xml @@ -1,21 +1,28 @@ - - + + + + + - - - + + + + + - + https://app.powerpay.biz/: (56, 'OpenSSL SSL_read: SSL_ERROR_SYSCALL, errno 104') +Fetch error: http://merchantcenter.powerpay.biz/ => https://merchantcenter.powerpay.biz/: (56, 'OpenSSL SSL_read: SSL_ERROR_SYSCALL, errno 104') + Other PowerPay rulesets: - - E-onlinedata.com.xml (www.): 404; mismatched, CN: www.e-onlinedata.com @@ -9,8 +14,8 @@ --> - - + + diff --git a/src/chrome/content/rules/PowerShell_Gallery.com.xml b/src/chrome/content/rules/PowerShell_Gallery.com.xml index e715249e279a..0ad6e4517f88 100644 --- a/src/chrome/content/rules/PowerShell_Gallery.com.xml +++ b/src/chrome/content/rules/PowerShell_Gallery.com.xml @@ -13,7 +13,7 @@ - + - + - + - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Power_Speaking.com.xml b/src/chrome/content/rules/Power_Speaking.com.xml deleted file mode 100644 index 67709f9cd006..000000000000 --- a/src/chrome/content/rules/Power_Speaking.com.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Power_to_the_Pooch.xml b/src/chrome/content/rules/Power_to_the_Pooch.xml index 7a09822725cf..6fb0ac8c8179 100644 --- a/src/chrome/content/rules/Power_to_the_Pooch.xml +++ b/src/chrome/content/rules/Power_to_the_Pooch.xml @@ -7,7 +7,7 @@ Fetch error: http://www.powertothepooch.com/ => https://www.powertothepooch.com/ Disabled by https-everywhere-checker because: Fetch error: http://powertothepooch.com/ => https://powertothepooch.com/: (28, 'Connection timed out after 10001 milliseconds') --> - + @@ -18,4 +18,4 @@ Fetch error: http://powertothepooch.com/ => https://powertothepooch.com/: (28, ' - \ No newline at end of file + diff --git a/src/chrome/content/rules/Powered_by_Paquin.xml b/src/chrome/content/rules/Powered_by_Paquin.xml index 3e9337695b2a..71e18aa349ed 100644 --- a/src/chrome/content/rules/Powered_by_Paquin.xml +++ b/src/chrome/content/rules/Powered_by_Paquin.xml @@ -7,7 +7,7 @@ Fetch error: http://www.poweredbypaquin.com/ => https://www.poweredbypaquin.com/ Disabled by https-everywhere-checker because: Fetch error: http://poweredbypaquin.com/ => https://poweredbypaquin.com/: (28, 'Connection timed out after 10000 milliseconds') --> - + @@ -18,4 +18,4 @@ Fetch error: http://poweredbypaquin.com/ => https://poweredbypaquin.com/: (28, ' - \ No newline at end of file + diff --git a/src/chrome/content/rules/Powerhosting.dk.xml b/src/chrome/content/rules/Powerhosting.dk.xml index 650eb3dfed5e..5b69b2c57957 100644 --- a/src/chrome/content/rules/Powerhosting.dk.xml +++ b/src/chrome/content/rules/Powerhosting.dk.xml @@ -20,7 +20,9 @@ - + + + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Powernotebooks.com.xml b/src/chrome/content/rules/Powernotebooks.com.xml index 1e80eed6a9ca..103a2482d52d 100644 --- a/src/chrome/content/rules/Powernotebooks.com.xml +++ b/src/chrome/content/rules/Powernotebooks.com.xml @@ -5,7 +5,7 @@ Fetch error: http://powernotebooks.com/ => https://powernotebooks.com/: (60, 'SS Fetch error: http://www.powernotebooks.com/ => https://www.powernotebooks.com/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/Poynton.ca.xml b/src/chrome/content/rules/Poynton.ca.xml new file mode 100644 index 000000000000..c0f224f5049c --- /dev/null +++ b/src/chrome/content/rules/Poynton.ca.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/PracticeBusiness.co.uk.xml b/src/chrome/content/rules/PracticeBusiness.co.uk.xml new file mode 100644 index 000000000000..e32e3ee2d57a --- /dev/null +++ b/src/chrome/content/rules/PracticeBusiness.co.uk.xml @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Praegnanz.de.xml b/src/chrome/content/rules/Praegnanz.de.xml index d9897d7d5857..54f31c0ba81f 100644 --- a/src/chrome/content/rules/Praegnanz.de.xml +++ b/src/chrome/content/rules/Praegnanz.de.xml @@ -1,4 +1,4 @@ - + @@ -7,7 +7,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/PragmaticMarketing.com.xml b/src/chrome/content/rules/PragmaticMarketing.com.xml new file mode 100644 index 000000000000..4cccd8f55ec8 --- /dev/null +++ b/src/chrome/content/rules/PragmaticMarketing.com.xml @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Pragmatic_Marketing.com.xml b/src/chrome/content/rules/Pragmatic_Marketing.com.xml deleted file mode 100644 index 94133f72923b..000000000000 --- a/src/chrome/content/rules/Pragmatic_Marketing.com.xml +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Pragmatic_Studio.com.xml b/src/chrome/content/rules/Pragmatic_Studio.com.xml index 59334f7875bb..0e5d9122bcbf 100644 --- a/src/chrome/content/rules/Pragmatic_Studio.com.xml +++ b/src/chrome/content/rules/Pragmatic_Studio.com.xml @@ -16,7 +16,7 @@ Fetch error: http://alumni.pragmaticstudio.com/ => https://alumni.pragmaticstudi - online --> - + diff --git a/src/chrome/content/rules/Pravda.sk.xml b/src/chrome/content/rules/Pravda.sk.xml new file mode 100644 index 000000000000..05f37a2184b7 --- /dev/null +++ b/src/chrome/content/rules/Pravda.sk.xml @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Pravduh.com.xml b/src/chrome/content/rules/Pravduh.com.xml new file mode 100644 index 000000000000..8dc0872091fa --- /dev/null +++ b/src/chrome/content/rules/Pravduh.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/PravyDiplom.cz.xml b/src/chrome/content/rules/PravyDiplom.cz.xml index 0fe773e88f04..544c09ea99bb 100644 --- a/src/chrome/content/rules/PravyDiplom.cz.xml +++ b/src/chrome/content/rules/PravyDiplom.cz.xml @@ -11,7 +11,6 @@ - diff --git a/src/chrome/content/rules/PrayerTimes.date.xml b/src/chrome/content/rules/PrayerTimes.date.xml new file mode 100644 index 000000000000..5d04051b9438 --- /dev/null +++ b/src/chrome/content/rules/PrayerTimes.date.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/PreCharge.com.xml b/src/chrome/content/rules/PreCharge.com.xml deleted file mode 100644 index 641bd3c048fc..000000000000 --- a/src/chrome/content/rules/PreCharge.com.xml +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/PreCharge.net.xml b/src/chrome/content/rules/PreCharge.net.xml index 6ef0b04e3f95..0149b52efdf2 100644 --- a/src/chrome/content/rules/PreCharge.net.xml +++ b/src/chrome/content/rules/PreCharge.net.xml @@ -36,7 +36,8 @@ --> - + + - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Precos.com.pt.xml b/src/chrome/content/rules/Precos.com.pt.xml deleted file mode 100644 index b71235675afb..000000000000 --- a/src/chrome/content/rules/Precos.com.pt.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Prediction.IO.xml b/src/chrome/content/rules/Prediction.IO.xml index 1ba7eb3ca47d..8fd11abd9f7c 100644 --- a/src/chrome/content/rules/Prediction.IO.xml +++ b/src/chrome/content/rules/Prediction.IO.xml @@ -46,7 +46,7 @@ Fetch error: http://static.prediction.io/ => https://static.prediction.io/: (6, * Secured by us --> - + diff --git a/src/chrome/content/rules/Preferred_Reservations.xml b/src/chrome/content/rules/Preferred_Reservations.xml index db17a1b5787e..419a974ca6dd 100644 --- a/src/chrome/content/rules/Preferred_Reservations.xml +++ b/src/chrome/content/rules/Preferred_Reservations.xml @@ -8,7 +8,7 @@ Fetch error: http://vr.preferred-reservations.com/ => https://vr.preferred-reser - www (works; mismatched, CN: vr.preferred-reservations.com) --> - + @@ -16,7 +16,6 @@ Fetch error: http://vr.preferred-reservations.com/ => https://vr.preferred-reser - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/PremierLiga.ru.xml b/src/chrome/content/rules/PremierLiga.ru.xml new file mode 100644 index 000000000000..4d7e8efec328 --- /dev/null +++ b/src/chrome/content/rules/PremierLiga.ru.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Premier_Tax_Free.xml b/src/chrome/content/rules/Premier_Tax_Free.xml index 265db1e38031..1bd42f6a33e4 100644 --- a/src/chrome/content/rules/Premier_Tax_Free.xml +++ b/src/chrome/content/rules/Premier_Tax_Free.xml @@ -1,8 +1,4 @@ - - + @@ -11,7 +7,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Premiumize.xml b/src/chrome/content/rules/Premiumize.xml index c9c24f4508bf..de656bf9da03 100644 --- a/src/chrome/content/rules/Premiumize.xml +++ b/src/chrome/content/rules/Premiumize.xml @@ -19,7 +19,7 @@ - + + + + + + + diff --git a/src/chrome/content/rules/PressFreedomFoundation.org.xml b/src/chrome/content/rules/PressFreedomFoundation.org.xml new file mode 100644 index 000000000000..e259c9baa14c --- /dev/null +++ b/src/chrome/content/rules/PressFreedomFoundation.org.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/PressLabs.com.xml b/src/chrome/content/rules/PressLabs.com.xml new file mode 100644 index 000000000000..546427583305 --- /dev/null +++ b/src/chrome/content/rules/PressLabs.com.xml @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/PressLabs.xml b/src/chrome/content/rules/PressLabs.xml deleted file mode 100644 index 4a7a8dbec619..000000000000 --- a/src/chrome/content/rules/PressLabs.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/PressLabs_SSL.xml b/src/chrome/content/rules/PressLabs_SSL.xml index cb2528f456ac..5a49ab6782c7 100644 --- a/src/chrome/content/rules/PressLabs_SSL.xml +++ b/src/chrome/content/rules/PressLabs_SSL.xml @@ -3,13 +3,13 @@ Disabled by https-everywhere-checker because: Fetch error: http://plssl.com/ => https://plssl.com/: (7, 'Failed to connect to plssl.com port 443: Connection refused') - For other Press Labs coverage, see PressLabs.xml. + For other Press Labs coverage, see PressLabs.com.xml. Clients have unique subdomains. --> - + @@ -18,4 +18,4 @@ Fetch error: http://plssl.com/ => https://plssl.com/: (7, 'Failed to connect to - \ No newline at end of file + diff --git a/src/chrome/content/rules/PressPage.com.xml b/src/chrome/content/rules/PressPage.com.xml index d4924276d115..ac036246ed2e 100644 --- a/src/chrome/content/rules/PressPage.com.xml +++ b/src/chrome/content/rules/PressPage.com.xml @@ -19,7 +19,7 @@ Fetch error: http://client.presspage.com/ => https://client.presspage.com/: (60, ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -33,7 +33,7 @@ Fetch error: http://client.presspage.com/ => https://client.presspage.com/: (60, - + + + + + + diff --git a/src/chrome/content/rules/PressPlus.xml b/src/chrome/content/rules/PressPlus.xml index 4696ac55365d..b9abcb52ae72 100644 --- a/src/chrome/content/rules/PressPlus.xml +++ b/src/chrome/content/rules/PressPlus.xml @@ -1,15 +1,12 @@ - + - - + - - - - - - - - - - - - + diff --git a/src/chrome/content/rules/PressReader.com.xml b/src/chrome/content/rules/PressReader.com.xml index 368f9df7ff44..6bf655417fe5 100644 --- a/src/chrome/content/rules/PressReader.com.xml +++ b/src/chrome/content/rules/PressReader.com.xml @@ -33,7 +33,7 @@ Fetch error: http://cache3-res.pressreader.com/ => https://cache3-res.pressreade ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -49,7 +49,7 @@ Fetch error: http://cache3-res.pressreader.com/ => https://cache3-res.pressreade --> - + https://static.pressable.com/: (6, - help.pressable.com --> - + diff --git a/src/chrome/content/rules/Presseportal.de.xml b/src/chrome/content/rules/Presseportal.de.xml new file mode 100644 index 000000000000..9bd2bbc7ca97 --- /dev/null +++ b/src/chrome/content/rules/Presseportal.de.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Pressflex.xml b/src/chrome/content/rules/Pressflex.xml index d403db763b3d..f11ec7727bc8 100644 --- a/src/chrome/content/rules/Pressflex.xml +++ b/src/chrome/content/rules/Pressflex.xml @@ -18,10 +18,11 @@ Fetch error: http://blogads.com/ => https://web.blogads.com/: (60, 'SSL certific - adserver.pressflex.com (self-signed; 404) --> - + - + + - + @@ -62,7 +62,7 @@ Fetch error: http://medias3.prestashop.com/ => https://medias3.prestashop.com/: - + https://exgf.teenbff.com/: (28, 'Connection timed out after 20001 milliseconds') --> - + - + diff --git a/src/chrome/content/rules/PrettyLightsMusic.com.xml b/src/chrome/content/rules/PrettyLightsMusic.com.xml new file mode 100644 index 000000000000..9fa051f528f9 --- /dev/null +++ b/src/chrome/content/rules/PrettyLightsMusic.com.xml @@ -0,0 +1,17 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/PrettyLightsMusic.xml b/src/chrome/content/rules/PrettyLightsMusic.xml deleted file mode 100644 index 9571916d339e..000000000000 --- a/src/chrome/content/rules/PrettyLightsMusic.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/PrettyLittleThing.com.xml b/src/chrome/content/rules/PrettyLittleThing.com.xml index b47190947cca..f4e1bd49d35d 100644 --- a/src/chrome/content/rules/PrettyLittleThing.com.xml +++ b/src/chrome/content/rules/PrettyLittleThing.com.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Prgmr.com.xml b/src/chrome/content/rules/Prgmr.com.xml index 7bc700d2af6b..14af28204504 100644 --- a/src/chrome/content/rules/Prgmr.com.xml +++ b/src/chrome/content/rules/Prgmr.com.xml @@ -15,13 +15,13 @@ --> - + - + https://hothardware.pricegr otherwise have no rules off by default. --> - + - + - + diff --git a/src/chrome/content/rules/PriceGrabber.xml b/src/chrome/content/rules/PriceGrabber.xml index 6ce184d2b385..77f80f7bbfae 100644 --- a/src/chrome/content/rules/PriceGrabber.xml +++ b/src/chrome/content/rules/PriceGrabber.xml @@ -11,11 +11,6 @@ Fetch error: http://partners.pricegrabber.com/ => https://partner.pricegrabber.c Clients are handled in PriceGrabber-clients.xml. - Other PriceGrabber rulesets: - - - PG_CDN.com.xml - - CDN buckets: - d2iz0h6pqiasve.cloudfront.net @@ -56,7 +51,7 @@ Fetch error: http://partners.pricegrabber.com/ => https://partner.pricegrabber.c - Ads on www from $self --> - + diff --git a/src/chrome/content/rules/PriceRunner.xml b/src/chrome/content/rules/PriceRunner.xml index f54d32c6c63a..1710fa4d1475 100644 --- a/src/chrome/content/rules/PriceRunner.xml +++ b/src/chrome/content/rules/PriceRunner.xml @@ -14,9 +14,11 @@ - + + + - + @@ -28,4 +30,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/PriceZombie.com.xml b/src/chrome/content/rules/PriceZombie.com.xml deleted file mode 100644 index 0127dd05f5b5..000000000000 --- a/src/chrome/content/rules/PriceZombie.com.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/PrimeCaster.net.xml b/src/chrome/content/rules/PrimeCaster.net.xml new file mode 100644 index 000000000000..d4b885e241b2 --- /dev/null +++ b/src/chrome/content/rules/PrimeCaster.net.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/PrimeHost.ca.xml b/src/chrome/content/rules/PrimeHost.ca.xml new file mode 100644 index 000000000000..993d9d2d3433 --- /dev/null +++ b/src/chrome/content/rules/PrimeHost.ca.xml @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Primes_Eco_Energie.com.xml b/src/chrome/content/rules/Primes_Eco_Energie.com.xml deleted file mode 100644 index face40f4242e..000000000000 --- a/src/chrome/content/rules/Primes_Eco_Energie.com.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Primus.com.xml b/src/chrome/content/rules/Primus.com.xml index f94443f27212..974fe19a2db6 100644 --- a/src/chrome/content/rules/Primus.com.xml +++ b/src/chrome/content/rules/Primus.com.xml @@ -6,17 +6,19 @@ Fetch error: http://primus.com/ => https://www.primus.com/: (60, 'SSL certificat Disabled by https-everywhere-checker because: Fetch error: http://primus.com/ => https://www.primus.com/: (6, 'Could not resolve host: primus.com') --> - + - + + + + - + - + diff --git a/src/chrome/content/rules/Primus_Canada.xml b/src/chrome/content/rules/Primus_Canada.xml index b857153f9032..4327bffaf6dc 100644 --- a/src/chrome/content/rules/Primus_Canada.xml +++ b/src/chrome/content/rules/Primus_Canada.xml @@ -49,7 +49,7 @@ Fetch error: http://monotelephone.primus.ca/ => https://monotelephone.primus.ca/ ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -86,7 +86,7 @@ Fetch error: http://monotelephone.primus.ca/ => https://monotelephone.primus.ca/ - + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/PrintFriendly.xml b/src/chrome/content/rules/PrintFriendly.xml index ff79d9749bd1..5f1ad3fd2912 100644 --- a/src/chrome/content/rules/PrintFriendly.xml +++ b/src/chrome/content/rules/PrintFriendly.xml @@ -1,28 +1,28 @@ - + - - - - - - + - - - + + + + + + + + diff --git a/src/chrome/content/rules/PrintMojo.xml b/src/chrome/content/rules/PrintMojo.xml deleted file mode 100644 index 737c2703ba0f..000000000000 --- a/src/chrome/content/rules/PrintMojo.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Printrbot.com.xml b/src/chrome/content/rules/Printrbot.com.xml new file mode 100644 index 000000000000..da80f3ed21f1 --- /dev/null +++ b/src/chrome/content/rules/Printrbot.com.xml @@ -0,0 +1,16 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Printrbot.xml b/src/chrome/content/rules/Printrbot.xml deleted file mode 100644 index a95c70803f8f..000000000000 --- a/src/chrome/content/rules/Printrbot.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Prisma-IT.com.xml b/src/chrome/content/rules/Prisma-IT.com.xml index e86364312882..88128da1bcb1 100644 --- a/src/chrome/content/rules/Prisma-IT.com.xml +++ b/src/chrome/content/rules/Prisma-IT.com.xml @@ -16,7 +16,7 @@ - + - + diff --git a/src/chrome/content/rules/Priv.gc.ca.xml b/src/chrome/content/rules/Priv.gc.ca.xml deleted file mode 100644 index daaca5a05025..000000000000 --- a/src/chrome/content/rules/Priv.gc.ca.xml +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Privacy-SOS.xml b/src/chrome/content/rules/Privacy-SOS.xml index 1f97d97d0a36..a701dce8ab76 100644 --- a/src/chrome/content/rules/Privacy-SOS.xml +++ b/src/chrome/content/rules/Privacy-SOS.xml @@ -15,8 +15,7 @@ - + diff --git a/src/chrome/content/rules/PrivacyChoice.xml b/src/chrome/content/rules/PrivacyChoice.xml index 52ee4c3b830b..b97eaed3a2c8 100644 --- a/src/chrome/content/rules/PrivacyChoice.xml +++ b/src/chrome/content/rules/PrivacyChoice.xml @@ -43,7 +43,7 @@ Fetch error: http://www.privacychoice.org/ => https://www.privacychoice.org/: (6 * Secured by us --> - + diff --git a/src/chrome/content/rules/Privacy_Solutions.no.xml b/src/chrome/content/rules/Privacy_Solutions.no.xml index 7bc8f2cb515e..15f10061c7fe 100644 --- a/src/chrome/content/rules/Privacy_Solutions.no.xml +++ b/src/chrome/content/rules/Privacy_Solutions.no.xml @@ -17,20 +17,21 @@ Fetch error: http://privacysolutions.no/ => https://privacysolutions.no/: (60, ' * Secured by us --> - + - + + + - + - + diff --git a/src/chrome/content/rules/Privacy_tools.io.xml b/src/chrome/content/rules/Privacy_tools.io.xml deleted file mode 100644 index d47dcf48d42d..000000000000 --- a/src/chrome/content/rules/Privacy_tools.io.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Privacyfix.xml b/src/chrome/content/rules/Privacyfix.xml index ceac649a14c0..98d5eee47a04 100644 --- a/src/chrome/content/rules/Privacyfix.xml +++ b/src/chrome/content/rules/Privacyfix.xml @@ -8,7 +8,7 @@ Fetch error: http://www.privacyfix.com/ => https://www.privacyfix.com/: (28, 'Co For other PrivacyChoice coverage, see PrivacyChoice.xml. --> - + diff --git a/src/chrome/content/rules/PrivatVPN.xml b/src/chrome/content/rules/PrivatVPN.xml index 449dd6e71d44..534663d45c4d 100644 --- a/src/chrome/content/rules/PrivatVPN.xml +++ b/src/chrome/content/rules/PrivatVPN.xml @@ -3,4 +3,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Private-Internet-Access.xml b/src/chrome/content/rules/Private-Internet-Access.xml index c4288b1ef0d2..6d141f97d47e 100644 --- a/src/chrome/content/rules/Private-Internet-Access.xml +++ b/src/chrome/content/rules/Private-Internet-Access.xml @@ -6,7 +6,7 @@ - + https://privatelayer.com/: (60, 'SSL ce Fetch error: http://www.privatelayer.com/ => https://www.privatelayer.com/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + diff --git a/src/chrome/content/rules/Private-Tunnel.xml b/src/chrome/content/rules/Private-Tunnel.xml index 9e42048be1f2..128b248d977c 100644 --- a/src/chrome/content/rules/Private-Tunnel.xml +++ b/src/chrome/content/rules/Private-Tunnel.xml @@ -4,7 +4,7 @@ - + - + https://privatepaste.com/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/PrivateWifi.xml b/src/chrome/content/rules/PrivateWifi.xml index c0176195df87..c78a4694c1af 100644 --- a/src/chrome/content/rules/PrivateWifi.xml +++ b/src/chrome/content/rules/PrivateWifi.xml @@ -30,7 +30,7 @@ - + - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Privatesearch.io.xml b/src/chrome/content/rules/Privatesearch.io.xml index d4df422becdd..b5c038f30964 100644 --- a/src/chrome/content/rules/Privatesearch.io.xml +++ b/src/chrome/content/rules/Privatesearch.io.xml @@ -9,7 +9,7 @@ Fetch error: http://www.privatesearch.io/ => https://www.privatesearch.io/: (6, - .privatesearch.io --> - + diff --git a/src/chrome/content/rules/Privoxy.org.xml b/src/chrome/content/rules/Privoxy.org.xml new file mode 100644 index 000000000000..42d17ebe4969 --- /dev/null +++ b/src/chrome/content/rules/Privoxy.org.xml @@ -0,0 +1,17 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Pro-Linux.de.xml b/src/chrome/content/rules/Pro-Linux.de.xml index f5e0d1186d5d..c10da306cde5 100644 --- a/src/chrome/content/rules/Pro-Linux.de.xml +++ b/src/chrome/content/rules/Pro-Linux.de.xml @@ -20,8 +20,8 @@ Mixed content blocking (MCB) tiggered: - pro-linux.de - www.pro-linux.de - - Timeout: + + Timeout: - demon.pro-linux.de --> diff --git a/src/chrome/content/rules/Pro-Managed.xml b/src/chrome/content/rules/Pro-Managed.xml index a20284b743ef..0bcc2a9b00f2 100644 --- a/src/chrome/content/rules/Pro-Managed.xml +++ b/src/chrome/content/rules/Pro-Managed.xml @@ -10,4 +10,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Pro-market.net.xml b/src/chrome/content/rules/Pro-market.net.xml index 0aeea95e8cd2..44669281debf 100644 --- a/src/chrome/content/rules/Pro-market.net.xml +++ b/src/chrome/content/rules/Pro-market.net.xml @@ -1,20 +1,18 @@ - - - + - + + diff --git a/src/chrome/content/rules/ProCare.sk.xml b/src/chrome/content/rules/ProCare.sk.xml new file mode 100644 index 000000000000..8bc87e60fa8c --- /dev/null +++ b/src/chrome/content/rules/ProCare.sk.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ProPublica.org.xml b/src/chrome/content/rules/ProPublica.org.xml index 3bbefc03eb3e..761358391778 100644 --- a/src/chrome/content/rules/ProPublica.org.xml +++ b/src/chrome/content/rules/ProPublica.org.xml @@ -1,58 +1,36 @@ - - - - - - - - - - - - - + + + + + + + + + + + + + - - - - - - + diff --git a/src/chrome/content/rules/ProQuest.xml b/src/chrome/content/rules/ProQuest.xml index 5df1a7f399c4..0c8700566b77 100644 --- a/src/chrome/content/rules/ProQuest.xml +++ b/src/chrome/content/rules/ProQuest.xml @@ -22,7 +22,7 @@ Fetch error: http://pqshibboleth.proquest.com/ => https://pqshibboleth.proquest. * 504, akamai --> - + diff --git a/src/chrome/content/rules/ProVenue.net.xml b/src/chrome/content/rules/ProVenue.net.xml deleted file mode 100644 index 1867bf72d7ed..000000000000 --- a/src/chrome/content/rules/ProVenue.net.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/ProWebSector.gr.xml b/src/chrome/content/rules/ProWebSector.gr.xml index 45e8c8226d65..9565f5bd74f1 100644 --- a/src/chrome/content/rules/ProWebSector.gr.xml +++ b/src/chrome/content/rules/ProWebSector.gr.xml @@ -36,7 +36,7 @@ --> - + + + + + + + + + + diff --git a/src/chrome/content/rules/Process-One.net.xml b/src/chrome/content/rules/Process-One.net.xml index c0e7297f5dfb..1ef41695b6bd 100644 --- a/src/chrome/content/rules/Process-One.net.xml +++ b/src/chrome/content/rules/Process-One.net.xml @@ -25,7 +25,10 @@ - + + + + - + - + + - + + - + + - - + + - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Product_Safety.gov.au.xml b/src/chrome/content/rules/Product_Safety.gov.au.xml index 5054ab95dbf5..22b6cdb74bf6 100644 --- a/src/chrome/content/rules/Product_Safety.gov.au.xml +++ b/src/chrome/content/rules/Product_Safety.gov.au.xml @@ -5,7 +5,7 @@ - + - + - + - + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ProgrammableWeb.xml b/src/chrome/content/rules/ProgrammableWeb.xml index 9b7c13fe9c1d..c2451c19951d 100644 --- a/src/chrome/content/rules/ProgrammableWeb.xml +++ b/src/chrome/content/rules/ProgrammableWeb.xml @@ -6,7 +6,7 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Progress.com.xml b/src/chrome/content/rules/Progress.com.xml index 308a0d342bd5..fa298871bebe 100644 --- a/src/chrome/content/rules/Progress.com.xml +++ b/src/chrome/content/rules/Progress.com.xml @@ -66,7 +66,7 @@ Fetch error: http://origin-www.progress.com/ => https://origin-www.progress.com/ ² Secured by us --> - + diff --git a/src/chrome/content/rules/Progressive.hu.xml b/src/chrome/content/rules/Progressive.hu.xml deleted file mode 100644 index 751584934228..000000000000 --- a/src/chrome/content/rules/Progressive.hu.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - diff --git a/src/chrome/content/rules/Project-diva-ac.net.xml b/src/chrome/content/rules/Project-diva-ac.net.xml new file mode 100644 index 000000000000..743d3e183ada --- /dev/null +++ b/src/chrome/content/rules/Project-diva-ac.net.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/ProjectEuler.xml b/src/chrome/content/rules/ProjectEuler.xml index 3b8ffe7a0b65..d7191ae9adfd 100644 --- a/src/chrome/content/rules/ProjectEuler.xml +++ b/src/chrome/content/rules/ProjectEuler.xml @@ -13,7 +13,7 @@ - + - + diff --git a/src/chrome/content/rules/ProjectSeahorse.org.xml b/src/chrome/content/rules/ProjectSeahorse.org.xml new file mode 100644 index 000000000000..2748f5021042 --- /dev/null +++ b/src/chrome/content/rules/ProjectSeahorse.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Project_Dent.com.xml b/src/chrome/content/rules/Project_Dent.com.xml index c88232d29403..ef5932030055 100644 --- a/src/chrome/content/rules/Project_Dent.com.xml +++ b/src/chrome/content/rules/Project_Dent.com.xml @@ -6,7 +6,7 @@ - + diff --git a/src/chrome/content/rules/Project_Euclid.org.xml b/src/chrome/content/rules/Project_Euclid.org.xml index f0e3cc7e3599..d78a6bf33e74 100644 --- a/src/chrome/content/rules/Project_Euclid.org.xml +++ b/src/chrome/content/rules/Project_Euclid.org.xml @@ -6,7 +6,7 @@ - + https://wiki.projectmeshnet.org/ - map --> - + diff --git a/src/chrome/content/rules/Project_Vote_Smart.xml b/src/chrome/content/rules/Project_Vote_Smart.xml index 02b76050c5db..c8517e51d818 100644 --- a/src/chrome/content/rules/Project_Vote_Smart.xml +++ b/src/chrome/content/rules/Project_Vote_Smart.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Project_Wonderful.xml b/src/chrome/content/rules/Project_Wonderful.xml deleted file mode 100644 index a7deffa1f72d..000000000000 --- a/src/chrome/content/rules/Project_Wonderful.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Projectplace.com-problematic.xml b/src/chrome/content/rules/Projectplace.com-problematic.xml deleted file mode 100644 index f768f34cc2cf..000000000000 --- a/src/chrome/content/rules/Projectplace.com-problematic.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Projectplace.com.xml b/src/chrome/content/rules/Projectplace.com.xml index e9bd6aadfed2..8bfa7da06f11 100644 --- a/src/chrome/content/rules/Projectplace.com.xml +++ b/src/chrome/content/rules/Projectplace.com.xml @@ -1,84 +1,38 @@ - + - - - - - - - - - - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Prolaika.sk.xml b/src/chrome/content/rules/Prolaika.sk.xml new file mode 100644 index 000000000000..3f11f8fffb3c --- /dev/null +++ b/src/chrome/content/rules/Prolaika.sk.xml @@ -0,0 +1,11 @@ + + + + + + + diff --git a/src/chrome/content/rules/Prolexic.xml b/src/chrome/content/rules/Prolexic.xml index e80817443210..16c9efeb4118 100644 --- a/src/chrome/content/rules/Prolexic.xml +++ b/src/chrome/content/rules/Prolexic.xml @@ -10,7 +10,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Prometheus_Global.xml b/src/chrome/content/rules/Prometheus_Global.xml deleted file mode 100644 index b801201fc3b4..000000000000 --- a/src/chrome/content/rules/Prometheus_Global.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Prometric.xml b/src/chrome/content/rules/Prometric.xml index e1784795ec32..923fc5eda923 100644 --- a/src/chrome/content/rules/Prometric.xml +++ b/src/chrome/content/rules/Prometric.xml @@ -2,7 +2,7 @@ - + diff --git a/src/chrome/content/rules/Pronoun.com.xml b/src/chrome/content/rules/Pronoun.com.xml new file mode 100644 index 000000000000..66dbc098c67f --- /dev/null +++ b/src/chrome/content/rules/Pronoun.com.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Proofpoint.xml b/src/chrome/content/rules/Proofpoint.xml index 6fe896f2a043..331d76fdfece 100644 --- a/src/chrome/content/rules/Proofpoint.xml +++ b/src/chrome/content/rules/Proofpoint.xml @@ -11,7 +11,10 @@ - + + + + diff --git a/src/chrome/content/rules/PropellerAds.xml b/src/chrome/content/rules/PropellerAds.xml index 2d8f7ad00712..7f3798a2753d 100644 --- a/src/chrome/content/rules/PropellerAds.xml +++ b/src/chrome/content/rules/PropellerAds.xml @@ -13,13 +13,6 @@ - (www.)propellerads.com (rx_record_too_long) - - Problematic hosts in *propellerads.com: - - - img ᵐ - - ᵐ Mismatched - --> @@ -27,18 +20,9 @@ --> - - - - - + - - - diff --git a/src/chrome/content/rules/Prosody.im.xml b/src/chrome/content/rules/Prosody.im.xml index bb11188338f3..59ab3488037b 100644 --- a/src/chrome/content/rules/Prosody.im.xml +++ b/src/chrome/content/rules/Prosody.im.xml @@ -1,34 +1,10 @@ - - - - - - - - + + + diff --git a/src/chrome/content/rules/Prospect-Magazine.xml b/src/chrome/content/rules/Prospect-Magazine.xml deleted file mode 100644 index 114fc101c2d2..000000000000 --- a/src/chrome/content/rules/Prospect-Magazine.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/ProspectEye.com.xml b/src/chrome/content/rules/ProspectEye.com.xml index 38c0d103b09d..812e3a64cc6a 100644 --- a/src/chrome/content/rules/ProspectEye.com.xml +++ b/src/chrome/content/rules/ProspectEye.com.xml @@ -30,7 +30,7 @@ Fetch error: http://prospecteye.com/ => https://prospecteye.com/: (51, "SSL: no * Secured by us --> - + diff --git a/src/chrome/content/rules/ProspectMagazine.co.uk.xml b/src/chrome/content/rules/ProspectMagazine.co.uk.xml new file mode 100644 index 000000000000..210c87ffb6a2 --- /dev/null +++ b/src/chrome/content/rules/ProspectMagazine.co.uk.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Prospectparkzoo.com.xml b/src/chrome/content/rules/Prospectparkzoo.com.xml new file mode 100644 index 000000000000..f8967a60ec26 --- /dev/null +++ b/src/chrome/content/rules/Prospectparkzoo.com.xml @@ -0,0 +1,12 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/ProstoVPN.org.xml b/src/chrome/content/rules/ProstoVPN.org.xml new file mode 100644 index 000000000000..366f6814f1a6 --- /dev/null +++ b/src/chrome/content/rules/ProstoVPN.org.xml @@ -0,0 +1,18 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Prosystemfx.com.xml b/src/chrome/content/rules/Prosystemfx.com.xml index d1383a218f71..b5e9d22d67a5 100644 --- a/src/chrome/content/rules/Prosystemfx.com.xml +++ b/src/chrome/content/rules/Prosystemfx.com.xml @@ -10,16 +10,17 @@ Fetch error: http://prosystemfx.com/ => https://www.prosystemfx.com/: (56, 'SSL - + + + - + - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/ProtectWise.com.xml b/src/chrome/content/rules/ProtectWise.com.xml deleted file mode 100644 index 54eaa31e09f7..000000000000 --- a/src/chrome/content/rules/ProtectWise.com.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Protect_Network.xml b/src/chrome/content/rules/Protect_Network.xml index a93b81181401..886c6d212d5e 100644 --- a/src/chrome/content/rules/Protect_Network.xml +++ b/src/chrome/content/rules/Protect_Network.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://protectnetwork.org/ => https://protectnetwork.org/: (6, 'Could not resolve host: protectnetwork.org') --> - + @@ -16,4 +16,4 @@ Fetch error: http://protectnetwork.org/ => https://protectnetwork.org/: (6, 'Cou - \ No newline at end of file + diff --git a/src/chrome/content/rules/Protonirockerxow.onion.xml b/src/chrome/content/rules/Protonirockerxow.onion.xml index 2fad1ccdac99..bd46642578c8 100644 --- a/src/chrome/content/rules/Protonirockerxow.onion.xml +++ b/src/chrome/content/rules/Protonirockerxow.onion.xml @@ -1,28 +1,13 @@ - - - + - - + diff --git a/src/chrome/content/rules/Provantage.xml b/src/chrome/content/rules/Provantage.xml index bfa390c7c53b..472cbd9c9b1e 100644 --- a/src/chrome/content/rules/Provantage.xml +++ b/src/chrome/content/rules/Provantage.xml @@ -1,9 +1,9 @@ - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Provide-Support.xml b/src/chrome/content/rules/Provide-Support.xml index d7d9295430af..dc299e758204 100644 --- a/src/chrome/content/rules/Provide-Support.xml +++ b/src/chrome/content/rules/Provide-Support.xml @@ -54,7 +54,7 @@ - + + --> diff --git a/src/chrome/content/rules/Proxery.com.xml b/src/chrome/content/rules/Proxery.com.xml deleted file mode 100644 index 81899e5d194b..000000000000 --- a/src/chrome/content/rules/Proxery.com.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Proxifier.com.xml b/src/chrome/content/rules/Proxifier.com.xml new file mode 100644 index 000000000000..bdce853f5bc1 --- /dev/null +++ b/src/chrome/content/rules/Proxifier.com.xml @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Proxify.xml b/src/chrome/content/rules/Proxify.xml index bab5955029f2..954795fbd1bc 100644 --- a/src/chrome/content/rules/Proxify.xml +++ b/src/chrome/content/rules/Proxify.xml @@ -3,7 +3,7 @@ - + diff --git a/src/chrome/content/rules/Proxmox.com.xml b/src/chrome/content/rules/Proxmox.com.xml index c761c1d18a41..dd08d2b2d631 100644 --- a/src/chrome/content/rules/Proxmox.com.xml +++ b/src/chrome/content/rules/Proxmox.com.xml @@ -4,10 +4,12 @@ Disabled by https-everywhere-checker because: Fetch error: http://proxmox.com/ => https://proxmox.com/: (51, "SSL: no alternative certificate subject name matches target host name 'proxmox.com'") --> - + - + + + - + diff --git a/src/chrome/content/rules/ProxySite.com.xml b/src/chrome/content/rules/ProxySite.com.xml index 92641ecbd2b3..98b800743280 100644 --- a/src/chrome/content/rules/ProxySite.com.xml +++ b/src/chrome/content/rules/ProxySite.com.xml @@ -1,8 +1,7 @@ - + - + + + + + + + + + + + + + + + + + + + + + + + @@ -25,6 +46,7 @@ Fetch error: http://www.proxysite.com/ => https://www.proxysite.com/: (60, 'SSL + diff --git a/src/chrome/content/rules/PrudentBear.xml b/src/chrome/content/rules/PrudentBear.xml index a89c16694c88..691a2a8ca119 100644 --- a/src/chrome/content/rules/PrudentBear.xml +++ b/src/chrome/content/rules/PrudentBear.xml @@ -8,7 +8,7 @@ - + diff --git a/src/chrome/content/rules/PrxBx.com.xml b/src/chrome/content/rules/PrxBx.com.xml new file mode 100644 index 000000000000..ce43077b6eb6 --- /dev/null +++ b/src/chrome/content/rules/PrxBx.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/PrxBx.xml b/src/chrome/content/rules/PrxBx.xml deleted file mode 100644 index ee3eaf03ef8c..000000000000 --- a/src/chrome/content/rules/PrxBx.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Prxy.com.xml b/src/chrome/content/rules/Prxy.com.xml index c1504ebf9053..20cf9ad43ae9 100644 --- a/src/chrome/content/rules/Prxy.com.xml +++ b/src/chrome/content/rules/Prxy.com.xml @@ -13,12 +13,11 @@ - .prxy.com --> - + - - + + + + + + + + + + + diff --git a/src/chrome/content/rules/PubGears.com.xml b/src/chrome/content/rules/PubGears.com.xml deleted file mode 100644 index 0107b2104eaf..000000000000 --- a/src/chrome/content/rules/PubGears.com.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/PubMatic.xml b/src/chrome/content/rules/PubMatic.xml index 6fca761a8e01..d8da7ffbe549 100644 --- a/src/chrome/content/rules/PubMatic.xml +++ b/src/chrome/content/rules/PubMatic.xml @@ -45,7 +45,7 @@ --> - + - - - - - - - - - diff --git a/src/chrome/content/rules/PubNub.xml b/src/chrome/content/rules/PubNub.xml index 9c774270d1d5..9e6767ba3446 100644 --- a/src/chrome/content/rules/PubNub.xml +++ b/src/chrome/content/rules/PubNub.xml @@ -45,4 +45,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/PubSoft.org.xml b/src/chrome/content/rules/PubSoft.org.xml index 16b2d82d4987..ae064ac2fe49 100644 --- a/src/chrome/content/rules/PubSoft.org.xml +++ b/src/chrome/content/rules/PubSoft.org.xml @@ -1,4 +1,4 @@ - + diff --git a/src/chrome/content/rules/Pubdirecte.com.xml b/src/chrome/content/rules/Pubdirecte.com.xml deleted file mode 100644 index 901583a54000..000000000000 --- a/src/chrome/content/rules/Pubdirecte.com.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Public-Bank-Malaysia.xml b/src/chrome/content/rules/Public-Bank-Malaysia.xml deleted file mode 100644 index 90fbf06e1ff1..000000000000 --- a/src/chrome/content/rules/Public-Bank-Malaysia.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Public-Idees.xml b/src/chrome/content/rules/Public-Idees.xml index b5496a51c37c..315bbe90272c 100644 --- a/src/chrome/content/rules/Public-Idees.xml +++ b/src/chrome/content/rules/Public-Idees.xml @@ -12,4 +12,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Public-Knowledge.xml b/src/chrome/content/rules/Public-Knowledge.xml index 89255563058f..62baadefd773 100644 --- a/src/chrome/content/rules/Public-Knowledge.xml +++ b/src/chrome/content/rules/Public-Knowledge.xml @@ -2,8 +2,7 @@ - + diff --git a/src/chrome/content/rules/Public-Library-of-Science.xml b/src/chrome/content/rules/Public-Library-of-Science.xml index 435421e15bb3..603928436ca1 100644 --- a/src/chrome/content/rules/Public-Library-of-Science.xml +++ b/src/chrome/content/rules/Public-Library-of-Science.xml @@ -46,7 +46,7 @@ - + diff --git a/src/chrome/content/rules/Public.Resource.Org.xml b/src/chrome/content/rules/Public.Resource.Org.xml index 722aeabd3567..a25b6f9905e6 100644 --- a/src/chrome/content/rules/Public.Resource.Org.xml +++ b/src/chrome/content/rules/Public.Resource.Org.xml @@ -21,7 +21,7 @@ Fetch error: http://wwlbd.org/ => https://wwlbd.org/: (28, 'Connection timed out * Cert name mismatch --> - + diff --git a/src/chrome/content/rules/PublicBank.com.hk.xml b/src/chrome/content/rules/PublicBank.com.hk.xml new file mode 100644 index 000000000000..2b504da043ba --- /dev/null +++ b/src/chrome/content/rules/PublicBank.com.hk.xml @@ -0,0 +1,29 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/PublicCitizen.xml b/src/chrome/content/rules/PublicCitizen.xml index e904d14bbf32..4b9793b3dc3d 100644 --- a/src/chrome/content/rules/PublicCitizen.xml +++ b/src/chrome/content/rules/PublicCitizen.xml @@ -21,7 +21,9 @@ - + + + @@ -30,7 +32,6 @@ - + diff --git a/src/chrome/content/rules/PublicDomainReview.org.xml b/src/chrome/content/rules/PublicDomainReview.org.xml new file mode 100644 index 000000000000..d6ba6cb17b56 --- /dev/null +++ b/src/chrome/content/rules/PublicDomainReview.org.xml @@ -0,0 +1,13 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/PublicInsightNetwork.org.xml b/src/chrome/content/rules/PublicInsightNetwork.org.xml index 341372d80b3a..df15806922b3 100644 --- a/src/chrome/content/rules/PublicInsightNetwork.org.xml +++ b/src/chrome/content/rules/PublicInsightNetwork.org.xml @@ -6,7 +6,7 @@ Non-2xx HTTP code: http://publicinsightnetwork.org/ (200) => https://publicinsig Disabled by https-everywhere-checker because: Non-2xx HTTP code: http://publicinsightnetwork.org/ (200) => https://publicinsightnetwork.org/ (403) --> - + @@ -17,4 +17,4 @@ Non-2xx HTTP code: http://publicinsightnetwork.org/ (200) => https://publicinsig - \ No newline at end of file + diff --git a/src/chrome/content/rules/PublicIntelligence.net.xml b/src/chrome/content/rules/PublicIntelligence.net.xml deleted file mode 100644 index 5053d4c8a55d..000000000000 --- a/src/chrome/content/rules/PublicIntelligence.net.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/PublicMutual.xml b/src/chrome/content/rules/PublicMutual.xml new file mode 100644 index 000000000000..400c33c1fe77 --- /dev/null +++ b/src/chrome/content/rules/PublicMutual.xml @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/PublicSectorManagementProgram.xml b/src/chrome/content/rules/PublicSectorManagementProgram.xml index 99adf8ea2bd7..fc5a18c5842c 100644 --- a/src/chrome/content/rules/PublicSectorManagementProgram.xml +++ b/src/chrome/content/rules/PublicSectorManagementProgram.xml @@ -10,10 +10,10 @@ Disabled by https-everywhere-checker because: Fetch error: http://psmprogram.gov.au/ => https://www.psmprogram.gov.au/: Too many redirects while fetching 'https://www.psmprogram.gov.au/' --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/PublicSectorSuperannuationAccumulationPlan.xml b/src/chrome/content/rules/PublicSectorSuperannuationAccumulationPlan.xml index 044fb0920c3e..ac50267921a9 100644 --- a/src/chrome/content/rules/PublicSectorSuperannuationAccumulationPlan.xml +++ b/src/chrome/content/rules/PublicSectorSuperannuationAccumulationPlan.xml @@ -1,7 +1,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/PublicSectorSuperannuationScheme.xml b/src/chrome/content/rules/PublicSectorSuperannuationScheme.xml index bce28c73a7de..ec273014aa47 100644 --- a/src/chrome/content/rules/PublicSectorSuperannuationScheme.xml +++ b/src/chrome/content/rules/PublicSectorSuperannuationScheme.xml @@ -1,7 +1,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/PublicWWW.com.xml b/src/chrome/content/rules/PublicWWW.com.xml new file mode 100644 index 000000000000..a84e45b78ba9 --- /dev/null +++ b/src/chrome/content/rules/PublicWWW.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Public_Whip.xml b/src/chrome/content/rules/Public_Whip.xml index c9def4e07bad..866a648febd2 100644 --- a/src/chrome/content/rules/Public_Whip.xml +++ b/src/chrome/content/rules/Public_Whip.xml @@ -8,10 +8,10 @@ Fetch error: http://publicwhip.org.uk/ => https://www.publicwhip.org.uk/: (51, " !www doesn't work. --> - + - + diff --git a/src/chrome/content/rules/Publiekeomroep.nl.xml b/src/chrome/content/rules/Publiekeomroep.nl.xml index 2fb61c806521..d2fe2aed754f 100644 --- a/src/chrome/content/rules/Publiekeomroep.nl.xml +++ b/src/chrome/content/rules/Publiekeomroep.nl.xml @@ -9,7 +9,7 @@ --> - + - + diff --git a/src/chrome/content/rules/PublikDemand.xml b/src/chrome/content/rules/PublikDemand.xml index d43c808f3b88..300370d9f6d5 100644 --- a/src/chrome/content/rules/PublikDemand.xml +++ b/src/chrome/content/rules/PublikDemand.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://publikdemand.com/ => https://publikdemand.com/: (6, 'Could not resolve host: publikdemand.com') Fetch error: http://www.publikdemand.com/ => https://www.publikdemand.com/: (6, 'Could not resolve host: www.publikdemand.com') --> - + @@ -19,4 +19,4 @@ Fetch error: http://www.publikdemand.com/ => https://www.publikdemand.com/: (6, - \ No newline at end of file + diff --git a/src/chrome/content/rules/Puhkaeestis.ee.xml b/src/chrome/content/rules/Puhkaeestis.ee.xml index 8b2211ff86f7..1309e09b9f61 100644 --- a/src/chrome/content/rules/Puhkaeestis.ee.xml +++ b/src/chrome/content/rules/Puhkaeestis.ee.xml @@ -16,13 +16,13 @@ - + + - + diff --git a/src/chrome/content/rules/Pulpix.co.xml b/src/chrome/content/rules/Pulpix.co.xml index 60d4b92c237f..30f2f6de614d 100644 --- a/src/chrome/content/rules/Pulpix.co.xml +++ b/src/chrome/content/rules/Pulpix.co.xml @@ -25,7 +25,7 @@ Fetch error: http://pulpix.co/ => https://www.pulpix.co/: (7, 'Failed to connect - www.pulpix.co --> - + diff --git a/src/chrome/content/rules/Pulse.me.xml b/src/chrome/content/rules/Pulse.me.xml index e22950cd76cf..6b33a30ae1c5 100644 --- a/src/chrome/content/rules/Pulse.me.xml +++ b/src/chrome/content/rules/Pulse.me.xml @@ -5,7 +5,7 @@ Fetch error: http://www.pulse.me/ => https://www.pulse.me/: (60, 'SSL certificat Fetch error: http://pulse.me/ => https://www.pulse.me/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/PulsePoint-mismatches.xml b/src/chrome/content/rules/PulsePoint-mismatches.xml index 18adcf7c7541..ffda342e9f1c 100644 --- a/src/chrome/content/rules/PulsePoint-mismatches.xml +++ b/src/chrome/content/rules/PulsePoint-mismatches.xml @@ -15,7 +15,6 @@ - + diff --git a/src/chrome/content/rules/PulsePoint.xml b/src/chrome/content/rules/PulsePoint.xml index b4ade35295a4..5f13c0b16c1a 100644 --- a/src/chrome/content/rules/PulsePoint.xml +++ b/src/chrome/content/rules/PulsePoint.xml @@ -12,7 +12,6 @@ Fetch error: http://www.apertureinsight.com/ => https://www.apertureinsight.com/ Other PulsePoint rulesets: - Contextweb.com.xml - - Displaymarketplace.com.xml Nonfunctional domains: @@ -38,7 +37,7 @@ Fetch error: http://www.apertureinsight.com/ => https://www.apertureinsight.com/ ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -55,8 +54,8 @@ Fetch error: http://www.apertureinsight.com/ => https://www.apertureinsight.com/ --> - - + + diff --git a/src/chrome/content/rules/Puma.com.xml b/src/chrome/content/rules/Puma.com.xml index 03f62ec39ff8..4d5b723ea8ae 100644 --- a/src/chrome/content/rules/Puma.com.xml +++ b/src/chrome/content/rules/Puma.com.xml @@ -10,7 +10,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.puma.com/ => https://www.puma.com/: (60, 'SSL certificate problem: certificate has expired') Fetch error: http://puma.com/ => https://www.puma.com/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/Pumo.com.tw-falsemixed.xml b/src/chrome/content/rules/Pumo.com.tw-falsemixed.xml index e337aab5e40b..83d522a8a63a 100644 --- a/src/chrome/content/rules/Pumo.com.tw-falsemixed.xml +++ b/src/chrome/content/rules/Pumo.com.tw-falsemixed.xml @@ -4,13 +4,12 @@ --> - + - + diff --git a/src/chrome/content/rules/Punterlink.xml b/src/chrome/content/rules/Punterlink.xml index 2a9ffc754312..cce2d7e7739a 100644 --- a/src/chrome/content/rules/Punterlink.xml +++ b/src/chrome/content/rules/Punterlink.xml @@ -21,7 +21,7 @@ Fetch error: http://cdn.punterlink.co.uk/ => https://3026-iamnoonesolution.netdn - Mismatched, CN: *.trappedinsidethecomputer.net --> - + @@ -29,4 +29,4 @@ Fetch error: http://cdn.punterlink.co.uk/ => https://3026-iamnoonesolution.netdn - \ No newline at end of file + diff --git a/src/chrome/content/rules/Punycoder.com.xml b/src/chrome/content/rules/Punycoder.com.xml new file mode 100644 index 000000000000..452084dfe6f8 --- /dev/null +++ b/src/chrome/content/rules/Punycoder.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Puppet_Labs.xml b/src/chrome/content/rules/Puppet_Labs.xml index 01f4f9684c0f..ce5920f331b7 100644 --- a/src/chrome/content/rules/Puppet_Labs.xml +++ b/src/chrome/content/rules/Puppet_Labs.xml @@ -11,7 +11,7 @@ Fetch error: http://forgestagingapi.puppetlabs.com/ => https://forgestagingapi.p * Marketo --> - + @@ -48,7 +48,7 @@ Fetch error: http://forgestagingapi.puppetlabs.com/ => https://forgestagingapi.p --> - + https://www.purduealumni.org/: (60, Certs only match www. --> - + diff --git a/src/chrome/content/rules/Purdue_Plant_Doctor.xml b/src/chrome/content/rules/Purdue_Plant_Doctor.xml index 1d630b0c1050..7566651f9a05 100644 --- a/src/chrome/content/rules/Purdue_Plant_Doctor.xml +++ b/src/chrome/content/rules/Purdue_Plant_Doctor.xml @@ -13,4 +13,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Purdue_University.xml b/src/chrome/content/rules/Purdue_University.xml index e09de341ead5..8a5d9b13ae0b 100644 --- a/src/chrome/content/rules/Purdue_University.xml +++ b/src/chrome/content/rules/Purdue_University.xml @@ -79,7 +79,7 @@ ² Redirects to gweb; mismatched, CN: gweb.genomics.purdue.edu ³ Shows www.pharmacy; mismatched, CN: www.pharmacy.purdue.edu ⁴ Shows web02p.lib; mismatched, CN: web02p.lib.purdue.edu - ⁵ Shows api01p.lib; expired 2012-03-31, self-signed, CN: api01p.lib.purdue.edu + ⁵ Shows api01p.lib; expired 2012-03-31, self-signed, CN: api01p.lib.purdue.edu ⁶ Shows www.math; mismatched, CN: www.math.purdue.edu diff --git a/src/chrome/content/rules/Pure-Auto.xml b/src/chrome/content/rules/Pure-Auto.xml index f08f9e591b82..5bb1b2d9b3f9 100644 --- a/src/chrome/content/rules/Pure-Auto.xml +++ b/src/chrome/content/rules/Pure-Auto.xml @@ -4,7 +4,7 @@ - + diff --git a/src/chrome/content/rules/Pure-privacy.org.xml b/src/chrome/content/rules/Pure-privacy.org.xml index 991ce79bbf13..2f963b8ef1a7 100644 --- a/src/chrome/content/rules/Pure-privacy.org.xml +++ b/src/chrome/content/rules/Pure-privacy.org.xml @@ -7,7 +7,7 @@ Fetch error: http://www.pure-privacy.org/ => https://pure-privacy.org/: (60, 'SS www: mismatched, CN: download.truecrypt.ch --> - + diff --git a/src/chrome/content/rules/PureFTPd.org.xml b/src/chrome/content/rules/PureFTPd.org.xml index bcc128d90c07..1a223f8adcf2 100644 --- a/src/chrome/content/rules/PureFTPd.org.xml +++ b/src/chrome/content/rules/PureFTPd.org.xml @@ -2,19 +2,34 @@ The domain ucarp.org redirects to https://www.pureftpd.org/project/ucarp, see ucarp.org.xml - ᵐ Mismatched geocaching.pureftpd.org + Time out: + archives.pureftpd.org + + Invalid certificate: + blogbench.pureftpd.org + geocaching.pureftpd.org + libpuzzle.pureftpd.org + mysql-udf-global-user-variables.pureftpd.org + pincaster.pureftpd.org + php-webdav.pureftpd.org + sharedance.pureftpd.org + skycache.pureftpd.org + --> - + + + + + + + - - - - diff --git a/src/chrome/content/rules/PureHacking.xml b/src/chrome/content/rules/PureHacking.xml deleted file mode 100644 index dface9c2c71a..000000000000 --- a/src/chrome/content/rules/PureHacking.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/PureInfo.xml b/src/chrome/content/rules/PureInfo.xml index 975e804f21dd..2a7842725a92 100644 --- a/src/chrome/content/rules/PureInfo.xml +++ b/src/chrome/content/rules/PureInfo.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Pure_Cambogia.com.xml b/src/chrome/content/rules/Pure_Cambogia.com.xml deleted file mode 100644 index 8c3c6fd59a5c..000000000000 --- a/src/chrome/content/rules/Pure_Cambogia.com.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Pureloto.com.xml b/src/chrome/content/rules/Pureloto.com.xml deleted file mode 100644 index 524788f2f94a..000000000000 --- a/src/chrome/content/rules/Pureloto.com.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Pururin.io.xml b/src/chrome/content/rules/Pururin.io.xml new file mode 100644 index 000000000000..5e1b6022991d --- /dev/null +++ b/src/chrome/content/rules/Pururin.io.xml @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Push.IO.xml b/src/chrome/content/rules/Push.IO.xml deleted file mode 100644 index 8191f73c9c90..000000000000 --- a/src/chrome/content/rules/Push.IO.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/PushPlay.xml b/src/chrome/content/rules/PushPlay.xml index 53347c222de1..422fcdeb7ec8 100644 --- a/src/chrome/content/rules/PushPlay.xml +++ b/src/chrome/content/rules/PushPlay.xml @@ -20,4 +20,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Push_Popcorn.xml b/src/chrome/content/rules/Push_Popcorn.xml deleted file mode 100644 index c59f24b59736..000000000000 --- a/src/chrome/content/rules/Push_Popcorn.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Pusher.com.xml b/src/chrome/content/rules/Pusher.com.xml index dfe8678e73e3..6de43d03a166 100644 --- a/src/chrome/content/rules/Pusher.com.xml +++ b/src/chrome/content/rules/Pusher.com.xml @@ -1,7 +1,7 @@ @@ -23,7 +26,6 @@ - + diff --git a/src/chrome/content/rules/Pusher.xml b/src/chrome/content/rules/Pusher.xml deleted file mode 100644 index 9ba92676c3f5..000000000000 --- a/src/chrome/content/rules/Pusher.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/PusherApp.com.xml b/src/chrome/content/rules/PusherApp.com.xml new file mode 100644 index 000000000000..8673bc0f6113 --- /dev/null +++ b/src/chrome/content/rules/PusherApp.com.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Pushsquare.com.xml b/src/chrome/content/rules/Pushsquare.com.xml new file mode 100644 index 000000000000..bc28b44010ee --- /dev/null +++ b/src/chrome/content/rules/Pushsquare.com.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/PutLocker.xml b/src/chrome/content/rules/PutLocker.xml index 8cc6d1154080..ccee0e5ece64 100644 --- a/src/chrome/content/rules/PutLocker.xml +++ b/src/chrome/content/rules/PutLocker.xml @@ -23,7 +23,9 @@ - + + + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Pviq.com.xml b/src/chrome/content/rules/Pviq.com.xml deleted file mode 100644 index 3b78edcb35c1..000000000000 --- a/src/chrome/content/rules/Pviq.com.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/PwdHash.com.xml b/src/chrome/content/rules/PwdHash.com.xml index 55ce8652180a..3a7aa2092ff6 100644 --- a/src/chrome/content/rules/PwdHash.com.xml +++ b/src/chrome/content/rules/PwdHash.com.xml @@ -6,4 +6,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/PyCon.org.xml b/src/chrome/content/rules/PyCon.org.xml index 6f9c9d45918f..06dada7a4c66 100644 --- a/src/chrome/content/rules/PyCon.org.xml +++ b/src/chrome/content/rules/PyCon.org.xml @@ -36,7 +36,7 @@ Fetch error: http://2013.de.pycon.org/ => https://2013.de.pycon.org/: (60, 'SSL * Secured by us --> - + diff --git a/src/chrome/content/rules/PyData.org.xml b/src/chrome/content/rules/PyData.org.xml new file mode 100644 index 000000000000..03c5730e0bf1 --- /dev/null +++ b/src/chrome/content/rules/PyData.org.xml @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/PyPy.xml b/src/chrome/content/rules/PyPy.xml new file mode 100644 index 000000000000..d4896cd8dad8 --- /dev/null +++ b/src/chrome/content/rules/PyPy.xml @@ -0,0 +1,20 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/PyWeek.org.xml b/src/chrome/content/rules/PyWeek.org.xml index f386d093c3aa..f97a6c925ade 100644 --- a/src/chrome/content/rules/PyWeek.org.xml +++ b/src/chrome/content/rules/PyWeek.org.xml @@ -1,25 +1,18 @@ - - - - - + - + - - + diff --git a/src/chrome/content/rules/Pyneo.org.xml b/src/chrome/content/rules/Pyneo.org.xml index 575a1a12a9fc..934cc2a39c64 100644 --- a/src/chrome/content/rules/Pyneo.org.xml +++ b/src/chrome/content/rules/Pyneo.org.xml @@ -1,23 +1,10 @@ - - - + - - - - - diff --git a/src/chrome/content/rules/Python-RQ.org.xml b/src/chrome/content/rules/Python-RQ.org.xml new file mode 100644 index 000000000000..e5666f74baee --- /dev/null +++ b/src/chrome/content/rules/Python-RQ.org.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/src/chrome/content/rules/Python.org.xml b/src/chrome/content/rules/Python.org.xml index 32917bc2aba3..6b6025aaa444 100644 --- a/src/chrome/content/rules/Python.org.xml +++ b/src/chrome/content/rules/Python.org.xml @@ -1,68 +1,74 @@ - - + + + + + + + + + + + + + - + + - - - - + + + - + - + + + diff --git a/src/chrome/content/rules/PythonTutor.ru.xml b/src/chrome/content/rules/PythonTutor.ru.xml new file mode 100644 index 000000000000..405e187ab26b --- /dev/null +++ b/src/chrome/content/rules/PythonTutor.ru.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Pythonclock.org.xml b/src/chrome/content/rules/Pythonclock.org.xml index 9a876f0e04f6..7e70bd4a8c13 100644 --- a/src/chrome/content/rules/Pythonclock.org.xml +++ b/src/chrome/content/rules/Pythonclock.org.xml @@ -2,7 +2,7 @@ - + diff --git a/src/chrome/content/rules/Pythonhosted.org.xml b/src/chrome/content/rules/Pythonhosted.org.xml deleted file mode 100644 index d44a057d3fc5..000000000000 --- a/src/chrome/content/rules/Pythonhosted.org.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Q1Media.com.xml b/src/chrome/content/rules/Q1Media.com.xml index f13fdf744800..5b35635268f2 100644 --- a/src/chrome/content/rules/Q1Media.com.xml +++ b/src/chrome/content/rules/Q1Media.com.xml @@ -36,7 +36,7 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Q3k.org.xml b/src/chrome/content/rules/Q3k.org.xml index a10a61184c3c..b4741345a5f3 100644 --- a/src/chrome/content/rules/Q3k.org.xml +++ b/src/chrome/content/rules/Q3k.org.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.q3k.org/ => https://www.q3k.org/: (51, "SSL: no alternative certificate subject name matches target host name 'www.q3k.org'") --> - + diff --git a/src/chrome/content/rules/Q8Car.xml b/src/chrome/content/rules/Q8Car.xml index b695aacc8a2b..697ae0032054 100644 --- a/src/chrome/content/rules/Q8Car.xml +++ b/src/chrome/content/rules/Q8Car.xml @@ -15,7 +15,7 @@ Fetch error: http://images3.q8car.com/ => https://images3.q8car.com/: (6, 'Could * Secured by us --> - + @@ -29,7 +29,7 @@ Fetch error: http://images3.q8car.com/ => https://images3.q8car.com/: (6, 'Could - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/QBE-Re.com.xml b/src/chrome/content/rules/QBE-Re.com.xml new file mode 100644 index 000000000000..64dbab06a805 --- /dev/null +++ b/src/chrome/content/rules/QBE-Re.com.xml @@ -0,0 +1,26 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/QBE.com.au.xml b/src/chrome/content/rules/QBE.com.au.xml new file mode 100644 index 000000000000..6c435e1ecea5 --- /dev/null +++ b/src/chrome/content/rules/QBE.com.au.xml @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/QCon_New_York.com.xml b/src/chrome/content/rules/QCon_New_York.com.xml index ff2a375c27af..ca1307464103 100644 --- a/src/chrome/content/rules/QCon_New_York.com.xml +++ b/src/chrome/content/rules/QCon_New_York.com.xml @@ -6,7 +6,7 @@ - + https://www.qconsf.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.qconsf.com'") --> - + @@ -12,7 +12,7 @@ Fetch error: http://www.qconsf.com/ => https://www.qconsf.com/: (51, "SSL: no al - + + + + + + + + + + + diff --git a/src/chrome/content/rules/QQ.com-Problematic.xml b/src/chrome/content/rules/QQ.com-Problematic.xml deleted file mode 100644 index ed297af41080..000000000000 --- a/src/chrome/content/rules/QQ.com-Problematic.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/QQ.com-mixedcontent.xml b/src/chrome/content/rules/QQ.com-mixedcontent.xml index 22cc44b171c9..b73d0c41523f 100644 --- a/src/chrome/content/rules/QQ.com-mixedcontent.xml +++ b/src/chrome/content/rules/QQ.com-mixedcontent.xml @@ -1,19 +1,13 @@ - - - - - + + - + - + diff --git a/src/chrome/content/rules/QQ.xml b/src/chrome/content/rules/QQ.xml index ac2086567ba1..dc88cba15a5e 100644 --- a/src/chrome/content/rules/QQ.xml +++ b/src/chrome/content/rules/QQ.xml @@ -1,227 +1,79 @@ - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + @@ -229,143 +81,242 @@ + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + + + + + + + - - - - - + - - + + + + + + + + - - + + + + + + + + + + + + + + + + + + + + + - + + - - - - - - - - + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - + + + + + + + + + + + + + - - - + + + + - - + + + + - - + + + + + + + - + + + + + + + + diff --git a/src/chrome/content/rules/QR_Solutions.xml b/src/chrome/content/rules/QR_Solutions.xml index 9b8e2790b5a5..213a602a9422 100644 --- a/src/chrome/content/rules/QR_Solutions.xml +++ b/src/chrome/content/rules/QR_Solutions.xml @@ -8,7 +8,7 @@ - + - + + + + + + + + + + + diff --git a/src/chrome/content/rules/QSstats.com.xml b/src/chrome/content/rules/QSstats.com.xml index 8d1122b4cef3..efdd9d8d6d0a 100644 --- a/src/chrome/content/rules/QSstats.com.xml +++ b/src/chrome/content/rules/QSstats.com.xml @@ -16,7 +16,7 @@ - + - - - - - - - - - - diff --git a/src/chrome/content/rules/QTH.com.xml b/src/chrome/content/rules/QTH.com.xml index 2f4101874319..0809dc787715 100644 --- a/src/chrome/content/rules/QTH.com.xml +++ b/src/chrome/content/rules/QTH.com.xml @@ -7,14 +7,14 @@ - domains * - hosting * - swap * - + * Shows www12.qth.com Problematic hosts in *qth.com: - ssl * - + * Mismatched @@ -39,7 +39,7 @@ - + + + + + + + + + diff --git a/src/chrome/content/rules/QUADAtYork.ca.xml b/src/chrome/content/rules/QUADAtYork.ca.xml new file mode 100644 index 000000000000..f2d093ee832a --- /dev/null +++ b/src/chrome/content/rules/QUADAtYork.ca.xml @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/src/chrome/content/rules/QUnit_JS.com.xml b/src/chrome/content/rules/QUnit_JS.com.xml index 0f77dac55ae6..c2879ec64231 100644 --- a/src/chrome/content/rules/QUnit_JS.com.xml +++ b/src/chrome/content/rules/QUnit_JS.com.xml @@ -13,7 +13,7 @@ - + - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/QWKnet_LLC.com.xml b/src/chrome/content/rules/QWKnet_LLC.com.xml index 99232d324967..c0d61b4fad31 100644 --- a/src/chrome/content/rules/QWKnet_LLC.com.xml +++ b/src/chrome/content/rules/QWKnet_LLC.com.xml @@ -28,7 +28,7 @@ - + @@ -21,7 +21,7 @@ --> - + - - - - - - - - - - diff --git a/src/chrome/content/rules/Qari.one.xml b/src/chrome/content/rules/Qari.one.xml new file mode 100644 index 000000000000..10c2b2abdeb7 --- /dev/null +++ b/src/chrome/content/rules/Qari.one.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Qbox.me.xml b/src/chrome/content/rules/Qbox.me.xml index 40095352909d..8b7b4f5ebddd 100644 --- a/src/chrome/content/rules/Qbox.me.xml +++ b/src/chrome/content/rules/Qbox.me.xml @@ -13,7 +13,7 @@ --> - + @@ -34,6 +34,6 @@ - - + + diff --git a/src/chrome/content/rules/Qbrick.com.xml b/src/chrome/content/rules/Qbrick.com.xml index adfbd335822a..4044c2aa49de 100644 --- a/src/chrome/content/rules/Qbrick.com.xml +++ b/src/chrome/content/rules/Qbrick.com.xml @@ -6,7 +6,7 @@ Fetch error: http://vms.admin.qbrick.com/ => https://vms.admin.qbrick.com/: (6, (www.)?qbrick.com: Blank page --> - + @@ -26,7 +26,7 @@ Fetch error: http://vms.admin.qbrick.com/ => https://vms.admin.qbrick.com/: (6, - + https://wiki.qcloud.com/: (28, 'Connecti - o.qcloud.com Timeout: - - app.qcloud.com + - app.qcloud.com - bbs.qcloud.com - legu.qcloud.com - yun.weixin.qcloud.com --> - + @@ -61,7 +61,7 @@ Fetch error: http://wiki.qcloud.com/ => https://wiki.qcloud.com/: (28, 'Connecti - + diff --git a/src/chrome/content/rules/Qemu.org.xml b/src/chrome/content/rules/Qemu.org.xml new file mode 100644 index 000000000000..ad3b81f8db2b --- /dev/null +++ b/src/chrome/content/rules/Qemu.org.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Qhimg.com.xml b/src/chrome/content/rules/Qhimg.com.xml index f89af0bbbb07..826115eed7f0 100644 --- a/src/chrome/content/rules/Qhimg.com.xml +++ b/src/chrome/content/rules/Qhimg.com.xml @@ -77,7 +77,7 @@ - + diff --git a/src/chrome/content/rules/Qibla.com.xml b/src/chrome/content/rules/Qibla.com.xml index c4f295885fb3..a085c02004d7 100644 --- a/src/chrome/content/rules/Qibla.com.xml +++ b/src/chrome/content/rules/Qibla.com.xml @@ -1,11 +1,9 @@ - + + + diff --git a/src/chrome/content/rules/Qihu_CDN.com.xml b/src/chrome/content/rules/Qihu_CDN.com.xml index 86857eac013d..effd20ea65d3 100644 --- a/src/chrome/content/rules/Qihu_CDN.com.xml +++ b/src/chrome/content/rules/Qihu_CDN.com.xml @@ -6,14 +6,14 @@ Non-2xx HTTP code: http://shouji.ssl.qihucdn.com/ (200) => https://shouji.ssl.qi For other Qihoo 360 Technology coverage, see 360.cn.xml. --> - + - + + + + + + - + diff --git a/src/chrome/content/rules/Qlogo.cn.xml b/src/chrome/content/rules/Qlogo.cn.xml index 48536b760aab..4d655dba781b 100644 --- a/src/chrome/content/rules/Qlogo.cn.xml +++ b/src/chrome/content/rules/Qlogo.cn.xml @@ -1,6 +1,11 @@ + - - @@ -16,18 +21,6 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Qnetp.net.xml b/src/chrome/content/rules/Qnetp.net.xml index ca2c6cdfccf0..900a533abaa1 100644 --- a/src/chrome/content/rules/Qnetp.net.xml +++ b/src/chrome/content/rules/Qnetp.net.xml @@ -7,7 +7,7 @@ Fetch error: http://booster.qnetp.net/ => https://booster.qnetp.net/: (51, "SSL: www.qnetp.net: shows default page, valid cert --> - + diff --git a/src/chrome/content/rules/Qoo10.cn.xml b/src/chrome/content/rules/Qoo10.cn.xml index 0c836539f8ae..5c1102461781 100644 --- a/src/chrome/content/rules/Qoo10.cn.xml +++ b/src/chrome/content/rules/Qoo10.cn.xml @@ -41,8 +41,12 @@ --> - - + + + + + + @@ -51,7 +55,6 @@ - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Qoo10.com.xml b/src/chrome/content/rules/Qoo10.com.xml index 82206dea9711..739670a05225 100644 --- a/src/chrome/content/rules/Qoo10.com.xml +++ b/src/chrome/content/rules/Qoo10.com.xml @@ -43,8 +43,14 @@ --> - - + + + + + + + + @@ -56,7 +62,6 @@ - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Qpic.cn.xml b/src/chrome/content/rules/Qpic.cn.xml index 84c4aab3e7fc..2ec55d5024fb 100644 --- a/src/chrome/content/rules/Qpic.cn.xml +++ b/src/chrome/content/rules/Qpic.cn.xml @@ -1,12 +1,11 @@ - - + + + + + + - @@ -17,8 +16,14 @@ + + + + + + - + diff --git a/src/chrome/content/rules/Qrobe.it.xml b/src/chrome/content/rules/Qrobe.it.xml deleted file mode 100644 index b732b1079440..000000000000 --- a/src/chrome/content/rules/Qrobe.it.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Qt-project.org.xml b/src/chrome/content/rules/Qt-project.org.xml index 716e012adb09..ac81e4e6eb28 100644 --- a/src/chrome/content/rules/Qt-project.org.xml +++ b/src/chrome/content/rules/Qt-project.org.xml @@ -24,7 +24,7 @@ Fetch error: http://releases.qt-project.org/ => https://releases.qt-project.org/ * Expired --> - + @@ -40,7 +40,7 @@ Fetch error: http://releases.qt-project.org/ => https://releases.qt-project.org/ - + - + diff --git a/src/chrome/content/rules/Qt_Cloud_Services.com.xml b/src/chrome/content/rules/Qt_Cloud_Services.com.xml index f628aeeb8fab..6c428b3680c3 100644 --- a/src/chrome/content/rules/Qt_Cloud_Services.com.xml +++ b/src/chrome/content/rules/Qt_Cloud_Services.com.xml @@ -16,7 +16,7 @@ Fetch error: http://www.qtcloudservices.com/ => https://www.qtcloudservices.com/ *StatusPage.io --> - + @@ -35,7 +35,7 @@ Fetch error: http://www.qtcloudservices.com/ => https://www.qtcloudservices.com/ - + - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Quackquackgo.nl.xml b/src/chrome/content/rules/Quackquackgo.nl.xml index a942bcfdd15c..d8841cc7ec06 100644 --- a/src/chrome/content/rules/Quackquackgo.nl.xml +++ b/src/chrome/content/rules/Quackquackgo.nl.xml @@ -5,7 +5,7 @@ Fetch error: http://quackquackgo.nl/ => https://quackquackgo.nl/: (51, "SSL: no Fetch error: http://www.quackquackgo.nl/ => https://www.quackquackgo.nl/: (51, "SSL: no alternative certificate subject name matches target host name 'www.quackquackgo.nl'") --> - + diff --git a/src/chrome/content/rules/QuadPoint.org.xml b/src/chrome/content/rules/QuadPoint.org.xml index d006e49e37df..fb06d40d9401 100644 --- a/src/chrome/content/rules/QuadPoint.org.xml +++ b/src/chrome/content/rules/QuadPoint.org.xml @@ -38,7 +38,7 @@ --> - + - + - + diff --git a/src/chrome/content/rules/Quadriga_CX.com.xml b/src/chrome/content/rules/Quadriga_CX.com.xml index 2b17fc9641da..87b26c6e0c1b 100644 --- a/src/chrome/content/rules/Quadriga_CX.com.xml +++ b/src/chrome/content/rules/Quadriga_CX.com.xml @@ -22,7 +22,7 @@ - + - + - + - + https://pages.qualcomm.com/: (6, 'Cou Other Qualcomm rulesets: - - AllJoyn.org.xml Nonfunctional hosts in *qualcomm.com: @@ -27,7 +26,7 @@ Fetch error: http://pages.qualcomm.com/ => https://pages.qualcomm.com/: (6, 'Cou * Secured by us --> - + @@ -42,7 +41,7 @@ Fetch error: http://pages.qualcomm.com/ => https://pages.qualcomm.com/: (6, 'Cou - + - + diff --git a/src/chrome/content/rules/QualityUnit.xml b/src/chrome/content/rules/QualityUnit.xml index d5e72c3da721..4d5dc53bfe65 100644 --- a/src/chrome/content/rules/QualityUnit.xml +++ b/src/chrome/content/rules/QualityUnit.xml @@ -1,7 +1,6 @@ - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Qualys.xml b/src/chrome/content/rules/Qualys.xml index 9b3b33b6080f..b5f8cef4d1b4 100644 --- a/src/chrome/content/rules/Qualys.xml +++ b/src/chrome/content/rules/Qualys.xml @@ -50,7 +50,7 @@ --> - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Quantcast.xml b/src/chrome/content/rules/Quantcast.xml index 088db6172981..70d696a6f5cd 100644 --- a/src/chrome/content/rules/Quantcast.xml +++ b/src/chrome/content/rules/Quantcast.xml @@ -2,20 +2,63 @@ Other Quantcast rulesets: - Quantserve.com.xml + - QuantCount.xml + Redirect to plain: + - edirect.qapi.quantcast.com + - onedrive.redirect.qapi.quantcast.com + - outlook-calendar.redirect.qapi.quantcast.com + - outlook-mail.redirect.qapi.quantcast.com + - outlook-people.redirect.qapi.quantcast.com + - outlook-tasks.redirect.qapi.quantcast.com + - test.redirect.qapi.quantcast.com + + Connection refused: + - adtest-raw.quantcast.com + - adtest.quantcast.com + - autodiscover.quantcast.com + + Cert mismatch: + - branding.quantcast.com + - developer.quantcast.com + - em.quantcast.com + - go.quantcast.com + - help.quantcast.com + + Timeout: + - obm.quantcast.com --> + + + + + + + + + + + + + + + + + + - - + + + - + - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Quantix.xml b/src/chrome/content/rules/Quantix.xml deleted file mode 100644 index c24cade54dc4..000000000000 --- a/src/chrome/content/rules/Quantix.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Quantlib.org.xml b/src/chrome/content/rules/Quantlib.org.xml new file mode 100644 index 000000000000..5e62d7988492 --- /dev/null +++ b/src/chrome/content/rules/Quantlib.org.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Quantserve.com.xml b/src/chrome/content/rules/Quantserve.com.xml index 0485f1147c84..4677a9714d4b 100644 --- a/src/chrome/content/rules/Quantserve.com.xml +++ b/src/chrome/content/rules/Quantserve.com.xml @@ -1,5 +1,5 @@ diff --git a/src/chrome/content/rules/QuantumComputingReport.com.xml b/src/chrome/content/rules/QuantumComputingReport.com.xml new file mode 100644 index 000000000000..aa79d9b67770 --- /dev/null +++ b/src/chrome/content/rules/QuantumComputingReport.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/QuantumMAN.xml b/src/chrome/content/rules/QuantumMAN.xml deleted file mode 100644 index 48f0a8a140ca..000000000000 --- a/src/chrome/content/rules/QuantumMAN.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Quassel-irc.org.xml b/src/chrome/content/rules/Quassel-irc.org.xml new file mode 100644 index 000000000000..d45141eddcf2 --- /dev/null +++ b/src/chrome/content/rules/Quassel-irc.org.xml @@ -0,0 +1,19 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Quattroplay.com.xml b/src/chrome/content/rules/Quattroplay.com.xml index 8040a000ab26..1a6e5d23a874 100644 --- a/src/chrome/content/rules/Quattroplay.com.xml +++ b/src/chrome/content/rules/Quattroplay.com.xml @@ -4,10 +4,10 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Qubes-OS.org.xml b/src/chrome/content/rules/Qubes-OS.org.xml deleted file mode 100644 index 6072557fbfdc..000000000000 --- a/src/chrome/content/rules/Qubes-OS.org.xml +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Qubit_products.com.xml b/src/chrome/content/rules/Qubit_products.com.xml index 21e9c953e443..78de135bb5be 100644 --- a/src/chrome/content/rules/Qubit_products.com.xml +++ b/src/chrome/content/rules/Qubit_products.com.xml @@ -21,7 +21,7 @@ Fetch error: http://pong.qubitproducts.com/ => https://pong.qubitproducts.com/: ³ Desk.com --> - + @@ -32,7 +32,7 @@ Fetch error: http://pong.qubitproducts.com/ => https://pong.qubitproducts.com/: - + - + - + + + + + + + + + diff --git a/src/chrome/content/rules/Queer.de.xml b/src/chrome/content/rules/Queer.de.xml index d3b2be96d4ae..e8fab5363a29 100644 --- a/src/chrome/content/rules/Queer.de.xml +++ b/src/chrome/content/rules/Queer.de.xml @@ -1,4 +1,4 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Quest.com.xml b/src/chrome/content/rules/Quest.com.xml index 7535a7b50afb..44a52f12fa09 100644 --- a/src/chrome/content/rules/Quest.com.xml +++ b/src/chrome/content/rules/Quest.com.xml @@ -24,7 +24,7 @@ - + - + - + - + - + https://www.questionmarket.com/: ^questionmarket.com doesn't exist. --> - + diff --git a/src/chrome/content/rules/QuickBase.com.xml b/src/chrome/content/rules/QuickBase.com.xml new file mode 100644 index 000000000000..c8c8b7d9efe4 --- /dev/null +++ b/src/chrome/content/rules/QuickBase.com.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/QuickHash.com.xml b/src/chrome/content/rules/QuickHash.com.xml index cd6d01f209b6..482588dda8be 100644 --- a/src/chrome/content/rules/QuickHash.com.xml +++ b/src/chrome/content/rules/QuickHash.com.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.quickhash.com/ => https://www.quickhash.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.quickhash.com'") --> - + diff --git a/src/chrome/content/rules/QuickSFV.org.xml b/src/chrome/content/rules/QuickSFV.org.xml new file mode 100644 index 000000000000..af9bd7e39937 --- /dev/null +++ b/src/chrome/content/rules/QuickSFV.org.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/QuickSilverMail.net.xml b/src/chrome/content/rules/QuickSilverMail.net.xml new file mode 100644 index 000000000000..7f0e8444e132 --- /dev/null +++ b/src/chrome/content/rules/QuickSilverMail.net.xml @@ -0,0 +1,12 @@ + + + + + + + diff --git a/src/chrome/content/rules/Quick_Shopping_Cart.xml b/src/chrome/content/rules/Quick_Shopping_Cart.xml index b817eb336a37..8de97bf3b27b 100644 --- a/src/chrome/content/rules/Quick_Shopping_Cart.xml +++ b/src/chrome/content/rules/Quick_Shopping_Cart.xml @@ -9,7 +9,7 @@ Fetch error: http://www.fastshoppingcart.com/ => https://www.fastshoppingcart.co ^fastshoppingcart.com: Redirects to app over http --> - + @@ -21,7 +21,7 @@ Fetch error: http://www.fastshoppingcart.com/ => https://www.fastshoppingcart.co - + https://quickleak.se/: (7, 'Failed to connect to quickleak.se port 443: Connection refused') -Fetch error: http://www.quickleak.se/ => https://www.quickleak.se/: (7, 'Failed to connect to www.quickleak.se port 443: Connection refused') - ---> - - - - - - diff --git a/src/chrome/content/rules/Quicktranslate.com.xml b/src/chrome/content/rules/Quicktranslate.com.xml index 890e4dd29b74..f01f349a421c 100644 --- a/src/chrome/content/rules/Quicktranslate.com.xml +++ b/src/chrome/content/rules/Quicktranslate.com.xml @@ -15,7 +15,7 @@ - + - + - + - + - + - + - + - + - + + + diff --git a/src/chrome/content/rules/Quizly.co.xml b/src/chrome/content/rules/Quizly.co.xml new file mode 100644 index 000000000000..09b0dd08c432 --- /dev/null +++ b/src/chrome/content/rules/Quizly.co.xml @@ -0,0 +1,16 @@ + + + + + + + diff --git a/src/chrome/content/rules/Quizsnack.com.xml b/src/chrome/content/rules/Quizsnack.com.xml deleted file mode 100644 index 4aec6cf840c7..000000000000 --- a/src/chrome/content/rules/Quizsnack.com.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Qune.kuluttajavirasto.fi.xml b/src/chrome/content/rules/Qune.kuluttajavirasto.fi.xml index 758efc84ef8b..0c50a7b77b8e 100644 --- a/src/chrome/content/rules/Qune.kuluttajavirasto.fi.xml +++ b/src/chrome/content/rules/Qune.kuluttajavirasto.fi.xml @@ -6,8 +6,8 @@ Fetch error: http://qune.kuluttajavirasto.fi/ => https://qune.kuluttajavirasto.f Disabled by https-everywhere-checker because: Fetch error: http://qune.kuluttajavirasto.fi/ => https://qune.kuluttajavirasto.fi/: (6, 'Could not resolve host: qune.kuluttajavirasto.fi') --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Quora.xml b/src/chrome/content/rules/Quora.xml deleted file mode 100644 index 61e7835ed849..000000000000 --- a/src/chrome/content/rules/Quora.xml +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/QuoteMedia.xml b/src/chrome/content/rules/QuoteMedia.xml index 776223874b47..e2fafcc89964 100644 --- a/src/chrome/content/rules/QuoteMedia.xml +++ b/src/chrome/content/rules/QuoteMedia.xml @@ -17,7 +17,7 @@ - + - + - - - - - - - - - - diff --git a/src/chrome/content/rules/QuranCentral.com.xml b/src/chrome/content/rules/QuranCentral.com.xml new file mode 100644 index 000000000000..693938ec6c61 --- /dev/null +++ b/src/chrome/content/rules/QuranCentral.com.xml @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/QuranCore.com.xml b/src/chrome/content/rules/QuranCore.com.xml new file mode 100644 index 000000000000..759579981409 --- /dev/null +++ b/src/chrome/content/rules/QuranCore.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/QuranMss.com.xml b/src/chrome/content/rules/QuranMss.com.xml new file mode 100644 index 000000000000..9b2ad9aa9bac --- /dev/null +++ b/src/chrome/content/rules/QuranMss.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Quran_wa_Hadith.com.xml b/src/chrome/content/rules/Quran_wa_Hadith.com.xml new file mode 100644 index 000000000000..abbce4aa775d --- /dev/null +++ b/src/chrome/content/rules/Quran_wa_Hadith.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/QuranicAudio.com.xml b/src/chrome/content/rules/QuranicAudio.com.xml index 7c8e1035f0b5..958980dcd1f0 100644 --- a/src/chrome/content/rules/QuranicAudio.com.xml +++ b/src/chrome/content/rules/QuranicAudio.com.xml @@ -4,7 +4,6 @@ - Sunnah.com.xml Invalid certificate: - - www.quranicaudio.com - download2.quranicaudio.com - madinah.quranicaudio.com - makkah.quranicaudio.com @@ -13,6 +12,7 @@ --> + diff --git a/src/chrome/content/rules/Quto.ru.xml b/src/chrome/content/rules/Quto.ru.xml index f5e91cf55514..5e243957ad84 100644 --- a/src/chrome/content/rules/Quto.ru.xml +++ b/src/chrome/content/rules/Quto.ru.xml @@ -9,7 +9,7 @@ * Server sends no certificate chain, see https://whatsmychaincert.com --> - + diff --git a/src/chrome/content/rules/Quup.com.xml b/src/chrome/content/rules/Quup.com.xml index 0c49c24ce8fa..51917a1e1a2f 100644 --- a/src/chrome/content/rules/Quup.com.xml +++ b/src/chrome/content/rules/Quup.com.xml @@ -7,7 +7,7 @@ Fetch error: http://www.quup.com/ => https://quup.com/: (60, 'SSL certificate pr www.quup.com: Cert only matches ^quup.com --> - + @@ -18,7 +18,7 @@ Fetch error: http://www.quup.com/ => https://quup.com/: (60, 'SSL certificate pr - + https://box.qweery.nl/: (6, 'Could not resolve host: box.qweery.nl') !functional: - (www.)qweery.nl --> - + - + diff --git a/src/chrome/content/rules/Qxl.xml b/src/chrome/content/rules/Qxl.xml index 67cead286fa1..58e7255ff1ac 100644 --- a/src/chrome/content/rules/Qxl.xml +++ b/src/chrome/content/rules/Qxl.xml @@ -41,7 +41,7 @@ --> - + https://r-hpc.com/: (28, 'Connection timed out Fetch error: http://www.r-hpc.com/ => https://www.r-hpc.com/: (28, 'Connection timed out after 20001 milliseconds') --> - + diff --git a/src/chrome/content/rules/R-kom.xml b/src/chrome/content/rules/R-kom.xml index a68afb2abe58..919efe1aa0a8 100644 --- a/src/chrome/content/rules/R-kom.xml +++ b/src/chrome/content/rules/R-kom.xml @@ -1,11 +1,9 @@ - + + - - + - - diff --git a/src/chrome/content/rules/R-phylo.org.xml b/src/chrome/content/rules/R-phylo.org.xml new file mode 100644 index 000000000000..f6056cd89e18 --- /dev/null +++ b/src/chrome/content/rules/R-phylo.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/R-project.org.xml b/src/chrome/content/rules/R-project.org.xml index 858115f0fc68..20504cf7362a 100644 --- a/src/chrome/content/rules/R-project.org.xml +++ b/src/chrome/content/rules/R-project.org.xml @@ -12,7 +12,7 @@ translation.r-project.org --> - + @@ -25,9 +25,17 @@ + + + + + + + diff --git a/src/chrome/content/rules/R01.xml b/src/chrome/content/rules/R01.xml index c2ce92216bed..e0e643dca5d1 100644 --- a/src/chrome/content/rules/R01.xml +++ b/src/chrome/content/rules/R01.xml @@ -10,13 +10,12 @@ --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/R66T.xml b/src/chrome/content/rules/R66T.xml index 4036ccf7e210..8890155bb802 100644 --- a/src/chrome/content/rules/R66T.xml +++ b/src/chrome/content/rules/R66T.xml @@ -16,7 +16,7 @@ Fetch error: http://www.r66t.com/ => https://www.onsiteconcierge.com/: (51, "SSL - (www.)r66t.com (mismatched, CN: *.onsiteconcierge.com) --> - + @@ -30,4 +30,4 @@ Fetch error: http://www.r66t.com/ => https://www.onsiteconcierge.com/: (51, "SSL - \ No newline at end of file + diff --git a/src/chrome/content/rules/R7ls.net.xml b/src/chrome/content/rules/R7ls.net.xml index 81631b8ee863..6f7795e0a0f4 100644 --- a/src/chrome/content/rules/R7ls.net.xml +++ b/src/chrome/content/rules/R7ls.net.xml @@ -22,7 +22,7 @@ --> - + - + diff --git a/src/chrome/content/rules/RAINN.org.xml b/src/chrome/content/rules/RAINN.org.xml index 9ea0723348eb..0f484c96153d 100644 --- a/src/chrome/content/rules/RAINN.org.xml +++ b/src/chrome/content/rules/RAINN.org.xml @@ -29,7 +29,11 @@ - + + + + + @@ -39,7 +43,6 @@ - + diff --git a/src/chrome/content/rules/RAM_Host.us.xml b/src/chrome/content/rules/RAM_Host.us.xml index 6fd1afcdf312..a3b1276d327f 100644 --- a/src/chrome/content/rules/RAM_Host.us.xml +++ b/src/chrome/content/rules/RAM_Host.us.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://forum.ramhost.us/ => https://forum.ramhost.us/: Too many redirects while fetching 'https://forum.ramhost.us/' --> - + diff --git a/src/chrome/content/rules/RAND.xml b/src/chrome/content/rules/RAND.xml index 46c63fd82873..59ad4e41f8ba 100644 --- a/src/chrome/content/rules/RAND.xml +++ b/src/chrome/content/rules/RAND.xml @@ -15,7 +15,7 @@ - + - - - - - - - - - diff --git a/src/chrome/content/rules/RC24.xyz.xml b/src/chrome/content/rules/RC24.xyz.xml new file mode 100644 index 000000000000..6d32411cc7ec --- /dev/null +++ b/src/chrome/content/rules/RC24.xyz.xml @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/RCI.com.xml b/src/chrome/content/rules/RCI.com.xml new file mode 100644 index 000000000000..cce2efef0af8 --- /dev/null +++ b/src/chrome/content/rules/RCI.com.xml @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/RCUK.ac.uk-problematic.xml b/src/chrome/content/rules/RCUK.ac.uk-problematic.xml deleted file mode 100644 index 34a95fb5ba9c..000000000000 --- a/src/chrome/content/rules/RCUK.ac.uk-problematic.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/RCUK.ac.uk.xml b/src/chrome/content/rules/RCUK.ac.uk.xml index 11311245506d..cda38a59e01d 100644 --- a/src/chrome/content/rules/RCUK.ac.uk.xml +++ b/src/chrome/content/rules/RCUK.ac.uk.xml @@ -1,43 +1,20 @@ + - diff --git a/src/chrome/content/rules/RDO_project.org.xml b/src/chrome/content/rules/RDO_project.org.xml index a89b50a4b9a7..f2795f20a447 100644 --- a/src/chrome/content/rules/RDO_project.org.xml +++ b/src/chrome/content/rules/RDO_project.org.xml @@ -37,7 +37,7 @@ - + diff --git a/src/chrome/content/rules/RECRegistry.xml b/src/chrome/content/rules/RECRegistry.xml index 1db8d5086bb3..8bae0b6bbca9 100644 --- a/src/chrome/content/rules/RECRegistry.xml +++ b/src/chrome/content/rules/RECRegistry.xml @@ -1,7 +1,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/REMnux.org.xml b/src/chrome/content/rules/REMnux.org.xml index e9fd2a23420b..c44c4adb0e99 100644 --- a/src/chrome/content/rules/REMnux.org.xml +++ b/src/chrome/content/rules/REMnux.org.xml @@ -31,7 +31,7 @@ --> - + - + diff --git a/src/chrome/content/rules/REWAG.xml b/src/chrome/content/rules/REWAG.xml index 7761a6c30874..37790c9bbff2 100644 --- a/src/chrome/content/rules/REWAG.xml +++ b/src/chrome/content/rules/REWAG.xml @@ -10,7 +10,7 @@ Fetch error: http://www.rewag.de/ => https://www.rewag.de/: (60, 'SSL certificat Regensburger Energie- und Wasserversorgung AG --> - + diff --git a/src/chrome/content/rules/RFC_Express.xml b/src/chrome/content/rules/RFC_Express.xml index 00dc8ba7f361..a3c651a432f2 100644 --- a/src/chrome/content/rules/RFC_Express.xml +++ b/src/chrome/content/rules/RFC_Express.xml @@ -5,7 +5,7 @@ Fetch error: http://rfcexpress.com/ => https://rfcexpress.com/: (28, 'Connection Fetch error: http://www.rfcexpress.com/ => https://www.rfcexpress.com/: (28, 'Connection timed out after 20002 milliseconds') --> - + @@ -16,4 +16,4 @@ Fetch error: http://www.rfcexpress.com/ => https://www.rfcexpress.com/: (28, 'Co - \ No newline at end of file + diff --git a/src/chrome/content/rules/RHUL.ac.uk.xml b/src/chrome/content/rules/RHUL.ac.uk.xml index 85ccf0e9f9e9..1b41c7806d90 100644 --- a/src/chrome/content/rules/RHUL.ac.uk.xml +++ b/src/chrome/content/rules/RHUL.ac.uk.xml @@ -40,7 +40,11 @@ - + + + + + @@ -57,7 +61,6 @@ - + diff --git a/src/chrome/content/rules/RIA.com.xml b/src/chrome/content/rules/RIA.com.xml index 9fe513d331cd..e3ab3e703493 100644 --- a/src/chrome/content/rules/RIA.com.xml +++ b/src/chrome/content/rules/RIA.com.xml @@ -1,7 +1,6 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/RIAA.com.xml b/src/chrome/content/rules/RIAA.com.xml new file mode 100644 index 000000000000..a904746e1002 --- /dev/null +++ b/src/chrome/content/rules/RIAA.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/RIAA.xml b/src/chrome/content/rules/RIAA.xml deleted file mode 100644 index 821213f9157c..000000000000 --- a/src/chrome/content/rules/RIAA.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/RIKEN.jp.xml b/src/chrome/content/rules/RIKEN.jp.xml index 0b6523e74036..d8d3fd944586 100644 --- a/src/chrome/content/rules/RIKEN.jp.xml +++ b/src/chrome/content/rules/RIKEN.jp.xml @@ -3,6 +3,7 @@ - (www.)? ¹ - 100th ¹ + - hpci-tech.aics (timeout) - brainatlas.brain ¹ - bsi-ni.brain ¹ @@ -40,7 +41,6 @@ - @@ -73,7 +73,7 @@ - + - - - - - - - + diff --git a/src/chrome/content/rules/RIT.edu.xml b/src/chrome/content/rules/RIT.edu.xml index b3536d9e5852..5777799b8cdf 100644 --- a/src/chrome/content/rules/RIT.edu.xml +++ b/src/chrome/content/rules/RIT.edu.xml @@ -98,7 +98,7 @@ Fetch error: http://ntid.rit.edu/ => https://ntid.rit.edu/: (51, "SSL: no altern - favicon on artoncampus from $self --> - + @@ -119,6 +119,7 @@ Fetch error: http://ntid.rit.edu/ => https://ntid.rit.edu/: (51, "SSL: no altern + diff --git a/src/chrome/content/rules/RL_CDN.com.xml b/src/chrome/content/rules/RL_CDN.com.xml index cdb179e4f4c9..6d2c3bf68a3e 100644 --- a/src/chrome/content/rules/RL_CDN.com.xml +++ b/src/chrome/content/rules/RL_CDN.com.xml @@ -1,42 +1,14 @@ - - - - - + + + + - - - - - - - - + diff --git a/src/chrome/content/rules/RL_Rose.xml b/src/chrome/content/rules/RL_Rose.xml index e1123264ae6d..2f621868c4b5 100644 --- a/src/chrome/content/rules/RL_Rose.xml +++ b/src/chrome/content/rules/RL_Rose.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/RMF.pl.xml b/src/chrome/content/rules/RMF.pl.xml new file mode 100644 index 000000000000..e8cf5a793ad5 --- /dev/null +++ b/src/chrome/content/rules/RMF.pl.xml @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/RMIT.edu.au.xml b/src/chrome/content/rules/RMIT.edu.au.xml index 8dbc5d289015..1e764973b44f 100644 --- a/src/chrome/content/rules/RMIT.edu.au.xml +++ b/src/chrome/content/rules/RMIT.edu.au.xml @@ -76,7 +76,7 @@ - + https://www.rnrwheels.com/: (35, 'error:14 mixedcontent due to css served from static.ning.com --> - + - + + diff --git a/src/chrome/content/rules/RNW.nl.xml b/src/chrome/content/rules/RNW.nl.xml index 76f0ce5eb5b1..1ef5f9868686 100644 --- a/src/chrome/content/rules/RNW.nl.xml +++ b/src/chrome/content/rules/RNW.nl.xml @@ -10,18 +10,6 @@ * Refused - - Fully covered subdomains: - - - intranet - - ocs - - rvt-docs - - sites - - vpn - - webmail - - webtier - - Observed cookie domains: - . @@ -37,16 +25,14 @@ - .www --> - + - - + - + - + diff --git a/src/chrome/content/rules/RNZ.de.xml b/src/chrome/content/rules/RNZ.de.xml new file mode 100644 index 000000000000..9a790316d929 --- /dev/null +++ b/src/chrome/content/rules/RNZ.de.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/ROBEHA.de.xml b/src/chrome/content/rules/ROBEHA.de.xml new file mode 100644 index 000000000000..fd796845df43 --- /dev/null +++ b/src/chrome/content/rules/ROBEHA.de.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/ROBOXchange.xml b/src/chrome/content/rules/ROBOXchange.xml deleted file mode 100644 index fa8f61c19206..000000000000 --- a/src/chrome/content/rules/ROBOXchange.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/ROCKZi.com.xml b/src/chrome/content/rules/ROCKZi.com.xml index 22eec381f2e7..f19fadd05c92 100644 --- a/src/chrome/content/rules/ROCKZi.com.xml +++ b/src/chrome/content/rules/ROCKZi.com.xml @@ -18,7 +18,7 @@ Fetch error: http://rockzi.com/ => https://rockzi.com/: Too many redirects while * Secured by us --> - + diff --git a/src/chrome/content/rules/ROHC-lib.org.xml b/src/chrome/content/rules/ROHC-lib.org.xml index 1f4758696191..32c6909c27c2 100644 --- a/src/chrome/content/rules/ROHC-lib.org.xml +++ b/src/chrome/content/rules/ROHC-lib.org.xml @@ -12,7 +12,7 @@ Fetch error: http://www.rohc-lib.org/ => https://www.rohc-lib.org/: (60, 'SSL ce www: Mismatched --> - + diff --git a/src/chrome/content/rules/ROI.ru.xml b/src/chrome/content/rules/ROI.ru.xml index cbbd2fdcbee2..8732ee6065e3 100644 --- a/src/chrome/content/rules/ROI.ru.xml +++ b/src/chrome/content/rules/ROI.ru.xml @@ -12,13 +12,14 @@ - + + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/ROI_Solutions.xml b/src/chrome/content/rules/ROI_Solutions.xml index 5a0d9515706b..44e5d6ceda3d 100644 --- a/src/chrome/content/rules/ROI_Solutions.xml +++ b/src/chrome/content/rules/ROI_Solutions.xml @@ -8,4 +8,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/RPGRussia.com.xml b/src/chrome/content/rules/RPGRussia.com.xml new file mode 100644 index 000000000000..63f84bfb6d37 --- /dev/null +++ b/src/chrome/content/rules/RPGRussia.com.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/RPXCorp.com.xml b/src/chrome/content/rules/RPXCorp.com.xml index a536771ad42b..f8db44b0e6aa 100644 --- a/src/chrome/content/rules/RPXCorp.com.xml +++ b/src/chrome/content/rules/RPXCorp.com.xml @@ -31,6 +31,6 @@ - diff --git a/src/chrome/content/rules/RPXNow.com.xml b/src/chrome/content/rules/RPXNow.com.xml index 22fb17e9ca73..2dd66d8cee2e 100644 --- a/src/chrome/content/rules/RPXNow.com.xml +++ b/src/chrome/content/rules/RPXNow.com.xml @@ -1,52 +1,16 @@ - - + - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + diff --git a/src/chrome/content/rules/RPackages.io.xml b/src/chrome/content/rules/RPackages.io.xml new file mode 100644 index 000000000000..81db76e18e0a --- /dev/null +++ b/src/chrome/content/rules/RPackages.io.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/RPubs.com.xml b/src/chrome/content/rules/RPubs.com.xml new file mode 100644 index 000000000000..4d053b2896fc --- /dev/null +++ b/src/chrome/content/rules/RPubs.com.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/RRTS.com.xml b/src/chrome/content/rules/RRTS.com.xml index 59bf8871a20b..26af6c7da70a 100644 --- a/src/chrome/content/rules/RRTS.com.xml +++ b/src/chrome/content/rules/RRTS.com.xml @@ -21,7 +21,10 @@ - + + + + - - - diff --git a/src/chrome/content/rules/RSA-Security.xml b/src/chrome/content/rules/RSA-Security.xml deleted file mode 100644 index ce5ffbd645a0..000000000000 --- a/src/chrome/content/rules/RSA-Security.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/RSA.xml b/src/chrome/content/rules/RSA.xml index 26fdd61be37c..b2c416046b36 100644 --- a/src/chrome/content/rules/RSA.xml +++ b/src/chrome/content/rules/RSA.xml @@ -19,7 +19,8 @@ --> - + + @@ -28,7 +29,6 @@ - + diff --git a/src/chrome/content/rules/RSA_Conference.xml b/src/chrome/content/rules/RSA_Conference.xml index 78187a8d8e17..ef013691c8c5 100644 --- a/src/chrome/content/rules/RSA_Conference.xml +++ b/src/chrome/content/rules/RSA_Conference.xml @@ -11,7 +11,7 @@ Fetch error: http://dev.rsaconference.com/ => https://dev.rsaconference.com/: (6 - a127.g.akamai.net --> - + diff --git a/src/chrome/content/rules/RSBAC-mismatches.xml b/src/chrome/content/rules/RSBAC-mismatches.xml index 4c81934000b1..2a0cdfbca56d 100644 --- a/src/chrome/content/rules/RSBAC-mismatches.xml +++ b/src/chrome/content/rules/RSBAC-mismatches.xml @@ -10,7 +10,7 @@ - + - + https://mail.rsc.org.uk/ (40 - www.rsc.org.uk --> - + @@ -40,7 +40,7 @@ Non-2xx HTTP code: http://mail.rsc.org.uk/ (200) => https://mail.rsc.org.uk/ (40 - + - - - - - - - - - - - diff --git a/src/chrome/content/rules/RSI.ch.xml b/src/chrome/content/rules/RSI.ch.xml new file mode 100644 index 000000000000..062bf6c343ae --- /dev/null +++ b/src/chrome/content/rules/RSI.ch.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/RSOLConference.org.xml b/src/chrome/content/rules/RSOLConference.org.xml new file mode 100644 index 000000000000..d662d0bf9d3a --- /dev/null +++ b/src/chrome/content/rules/RSOLConference.org.xml @@ -0,0 +1,10 @@ + + + + + + + + diff --git a/src/chrome/content/rules/RSPB.xml b/src/chrome/content/rules/RSPB.xml index f0376f73beeb..c0ece1805e54 100644 --- a/src/chrome/content/rules/RSPB.xml +++ b/src/chrome/content/rules/RSPB.xml @@ -1,7 +1,10 @@ + + - @@ -10,4 +13,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/RSPCA_shop.co.uk.xml b/src/chrome/content/rules/RSPCA_shop.co.uk.xml index 414c12b2a509..0b273630731f 100644 --- a/src/chrome/content/rules/RSPCA_shop.co.uk.xml +++ b/src/chrome/content/rules/RSPCA_shop.co.uk.xml @@ -13,13 +13,13 @@ Fetch error: http://rspcashop.co.uk/ => https://rspcashop.co.uk/: (7, 'Failed to For other RSPCA coverage, see RSPCA.xml. --> - + - + diff --git a/src/chrome/content/rules/RSSinclude.xml b/src/chrome/content/rules/RSSinclude.xml index dce0bf803963..afdb785d118b 100644 --- a/src/chrome/content/rules/RSSinclude.xml +++ b/src/chrome/content/rules/RSSinclude.xml @@ -7,4 +7,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/RSSing.com.xml b/src/chrome/content/rules/RSSing.com.xml index 373fb9eca2cb..45766bb8326b 100644 --- a/src/chrome/content/rules/RSSing.com.xml +++ b/src/chrome/content/rules/RSSing.com.xml @@ -11,7 +11,7 @@ - + diff --git a/src/chrome/content/rules/RST_forums.com.xml b/src/chrome/content/rules/RST_forums.com.xml index 00f9badd68c0..47da661bddf8 100644 --- a/src/chrome/content/rules/RST_forums.com.xml +++ b/src/chrome/content/rules/RST_forums.com.xml @@ -8,7 +8,7 @@ Fetch error: http://www.rstforums.com/ => https://www.rstforums.com/: (51, "SSL: - .rstforums.com --> - + diff --git a/src/chrome/content/rules/RSVP.xml b/src/chrome/content/rules/RSVP.xml index a9afb5ba9841..21369c9282ee 100644 --- a/src/chrome/content/rules/RSVP.xml +++ b/src/chrome/content/rules/RSVP.xml @@ -9,7 +9,9 @@ - + + + diff --git a/src/chrome/content/rules/RStudio.com.xml b/src/chrome/content/rules/RStudio.com.xml index 088d2ec41c08..e32e843a1e94 100644 --- a/src/chrome/content/rules/RStudio.com.xml +++ b/src/chrome/content/rules/RStudio.com.xml @@ -2,8 +2,6 @@ Timeout: colorado.rstudio.com docs.rstudio.com - rmarkdown.rstudio.com - spark.rstudio.com www.spark.rstudio.com --> @@ -15,9 +13,17 @@ + + + + + + + diff --git a/src/chrome/content/rules/RT.com.xml b/src/chrome/content/rules/RT.com.xml index 0bdc4fb86927..0762e7ce3a82 100644 --- a/src/chrome/content/rules/RT.com.xml +++ b/src/chrome/content/rules/RT.com.xml @@ -1,100 +1,41 @@ - - - - + + + + - + - + + - - - - - - - - - - - - - - - - - - + + diff --git a/src/chrome/content/rules/RTE.xml b/src/chrome/content/rules/RTE.xml index cbb092d2ec15..e56a6c373df7 100644 --- a/src/chrome/content/rules/RTE.xml +++ b/src/chrome/content/rules/RTE.xml @@ -1,9 +1,4 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/RTHK.hk.xml b/src/chrome/content/rules/RTHK.hk.xml new file mode 100644 index 000000000000..2da74c285fc4 --- /dev/null +++ b/src/chrome/content/rules/RTHK.hk.xml @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/RTHK.org.hk.xml b/src/chrome/content/rules/RTHK.org.hk.xml new file mode 100644 index 000000000000..ddbbc30f6c53 --- /dev/null +++ b/src/chrome/content/rules/RTHK.org.hk.xml @@ -0,0 +1,28 @@ + + + + + + + diff --git a/src/chrome/content/rules/RTL.de.xml b/src/chrome/content/rules/RTL.de.xml deleted file mode 100644 index 34ce36d28c5a..000000000000 --- a/src/chrome/content/rules/RTL.de.xml +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/RTP.vc.xml b/src/chrome/content/rules/RTP.vc.xml index 59acf3805612..fe131b0b06ee 100644 --- a/src/chrome/content/rules/RTP.vc.xml +++ b/src/chrome/content/rules/RTP.vc.xml @@ -6,7 +6,7 @@ - + diff --git a/src/chrome/content/rules/RTR.ch.xml b/src/chrome/content/rules/RTR.ch.xml new file mode 100644 index 000000000000..33d42cb55fd1 --- /dev/null +++ b/src/chrome/content/rules/RTR.ch.xml @@ -0,0 +1,17 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/RTS-Planeta.xml b/src/chrome/content/rules/RTS-Planeta.xml new file mode 100644 index 000000000000..126a2415338f --- /dev/null +++ b/src/chrome/content/rules/RTS-Planeta.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/RTS.ch.xml b/src/chrome/content/rules/RTS.ch.xml new file mode 100644 index 000000000000..04fcc561572e --- /dev/null +++ b/src/chrome/content/rules/RTS.ch.xml @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/RT_Tire.xml b/src/chrome/content/rules/RT_Tire.xml index f6619a3e4751..4a21c6607bdd 100644 --- a/src/chrome/content/rules/RT_Tire.xml +++ b/src/chrome/content/rules/RT_Tire.xml @@ -5,7 +5,7 @@ Fetch error: http://rttire.com/ => https://rttire.com/: (51, "SSL: no alternativ Fetch error: http://www.rttire.com/ => https://www.rttire.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.rttire.com'") --> - + @@ -13,4 +13,4 @@ Fetch error: http://www.rttire.com/ => https://www.rttire.com/: (51, "SSL: no al - \ No newline at end of file + diff --git a/src/chrome/content/rules/RU-Golos.xml b/src/chrome/content/rules/RU-Golos.xml index 28492db510bf..5892ea98da73 100644 --- a/src/chrome/content/rules/RU-Golos.xml +++ b/src/chrome/content/rules/RU-Golos.xml @@ -10,4 +10,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/RUDI.net.xml b/src/chrome/content/rules/RUDI.net.xml index 8c5415c5fcc5..6db8a360446b 100644 --- a/src/chrome/content/rules/RUDI.net.xml +++ b/src/chrome/content/rules/RUDI.net.xml @@ -15,7 +15,7 @@ - + @@ -24,4 +24,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/RYOT.xml b/src/chrome/content/rules/RYOT.xml index 04fafa05fc58..4ae7eafd9a07 100644 --- a/src/chrome/content/rules/RYOT.xml +++ b/src/chrome/content/rules/RYOT.xml @@ -12,7 +12,7 @@ * See https://whatsmychaincert.com --> - + diff --git a/src/chrome/content/rules/RaKdigital.xml b/src/chrome/content/rules/RaKdigital.xml index 90e86b06f453..918b1077ae22 100644 --- a/src/chrome/content/rules/RaKdigital.xml +++ b/src/chrome/content/rules/RaKdigital.xml @@ -7,13 +7,13 @@ --> - + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Raam.org.xml b/src/chrome/content/rules/Raam.org.xml index 58e4b56d1256..69eb2494faeb 100644 --- a/src/chrome/content/rules/Raam.org.xml +++ b/src/chrome/content/rules/Raam.org.xml @@ -7,7 +7,7 @@ Fetch error: http://www.raam.org/ => https://raam.org/: (60, 'SSL certificate pr www.raam.org: Mismatched --> - + diff --git a/src/chrome/content/rules/RaceForward.org.xml b/src/chrome/content/rules/RaceForward.org.xml new file mode 100644 index 000000000000..8d23405768d4 --- /dev/null +++ b/src/chrome/content/rules/RaceForward.org.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Race_Forward.org.xml b/src/chrome/content/rules/Race_Forward.org.xml deleted file mode 100644 index 05d8a2ef10c3..000000000000 --- a/src/chrome/content/rules/Race_Forward.org.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Race_to_Health.co.uk.xml b/src/chrome/content/rules/Race_to_Health.co.uk.xml index 0cd61394f5a7..64acff0be94c 100644 --- a/src/chrome/content/rules/Race_to_Health.co.uk.xml +++ b/src/chrome/content/rules/Race_to_Health.co.uk.xml @@ -8,7 +8,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Racked.com.xml b/src/chrome/content/rules/Racked.com.xml index 98afde200e07..5098cc73c6d3 100644 --- a/src/chrome/content/rules/Racked.com.xml +++ b/src/chrome/content/rules/Racked.com.xml @@ -1,16 +1,46 @@ - + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Racket-lang.org.xml b/src/chrome/content/rules/Racket-lang.org.xml index 73eb1a6cf7d0..6bcf4ab09da3 100644 --- a/src/chrome/content/rules/Racket-lang.org.xml +++ b/src/chrome/content/rules/Racket-lang.org.xml @@ -1,28 +1,36 @@ - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Racketboy.com.xml b/src/chrome/content/rules/Racketboy.com.xml new file mode 100644 index 000000000000..9f235d49cceb --- /dev/null +++ b/src/chrome/content/rules/Racketboy.com.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Rackspace.co.uk.xml b/src/chrome/content/rules/Rackspace.co.uk.xml index 16a27ed96f0f..c8e8351237d2 100644 --- a/src/chrome/content/rules/Rackspace.co.uk.xml +++ b/src/chrome/content/rules/Rackspace.co.uk.xml @@ -40,7 +40,7 @@ Fetch error: http://buyonline.rackspace.co.uk/ => https://buyonline.rackspace.co * Secured by us --> - + @@ -57,7 +57,7 @@ Fetch error: http://buyonline.rackspace.co.uk/ => https://buyonline.rackspace.co - + https://www.rackspace.co.za/: (60, ' For other Rackspace coverage, see Rackspace.xml. --> - + diff --git a/src/chrome/content/rules/Rackspace.com.hk.xml b/src/chrome/content/rules/Rackspace.com.hk.xml index 0a1b9c6b0026..63c790ca9846 100644 --- a/src/chrome/content/rules/Rackspace.com.hk.xml +++ b/src/chrome/content/rules/Rackspace.com.hk.xml @@ -19,7 +19,7 @@ --> - + https://www.rackspace.dk/: (60, 'SSL ce For other Rackspace coverage, see Rackspace.xml. --> - + diff --git a/src/chrome/content/rules/Rackspace.hk.xml b/src/chrome/content/rules/Rackspace.hk.xml index ce065efd8405..2f0c9a32d776 100644 --- a/src/chrome/content/rules/Rackspace.hk.xml +++ b/src/chrome/content/rules/Rackspace.hk.xml @@ -7,7 +7,7 @@ Fetch error: http://www.rackspace.hk/ => https://www.rackspace.hk/: (51, "SSL: n For other Rackspace coverage, see Rackspace.xml. --> - + diff --git a/src/chrome/content/rules/Rackspace.xml b/src/chrome/content/rules/Rackspace.xml index 0b5c8347d6c4..8a6fb1b611b0 100644 --- a/src/chrome/content/rules/Rackspace.xml +++ b/src/chrome/content/rules/Rackspace.xml @@ -12,7 +12,6 @@ Fetch error: http://stories.rackspace.com/ => https://stories.rackspace.com/: (5 Other Rackspace rulesets: - - Mailgun.com.xml - Mailgun.net.xml - Mosso.com.xml - RackCDN.com.xml @@ -93,7 +92,7 @@ Fetch error: http://stories.rackspace.com/ => https://stories.rackspace.com/: (5 * Secured by us --> - + @@ -153,7 +152,7 @@ Fetch error: http://stories.rackspace.com/ => https://stories.rackspace.com/: (5 - + - + + + + + + + + + + diff --git a/src/chrome/content/rules/Radboud-University-Nijmegen.xml b/src/chrome/content/rules/Radboud-University-Nijmegen.xml index 86230fa3fb5d..de86948d19c5 100644 --- a/src/chrome/content/rules/Radboud-University-Nijmegen.xml +++ b/src/chrome/content/rules/Radboud-University-Nijmegen.xml @@ -11,30 +11,46 @@ Fetch error: http://ru.nl/ => https://www.ru.nl/: Cycle detected - URL already e - www2.cmbi.ru.nl (cert: www.cmbi.ru.nl; redirects to http) --> - + - + + - - - + + + + + + + + + + + + + + + + + + + + + + - - - + + - - + diff --git a/src/chrome/content/rules/Raddle.me.xml b/src/chrome/content/rules/Raddle.me.xml new file mode 100644 index 000000000000..ef5bd387ffe8 --- /dev/null +++ b/src/chrome/content/rules/Raddle.me.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Radentscheid-frankfurt.de.xml b/src/chrome/content/rules/Radentscheid-frankfurt.de.xml new file mode 100644 index 000000000000..8cb7cc10f080 --- /dev/null +++ b/src/chrome/content/rules/Radentscheid-frankfurt.de.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Radical_Designs.xml b/src/chrome/content/rules/Radical_Designs.xml deleted file mode 100644 index 802eced92d1a..000000000000 --- a/src/chrome/content/rules/Radical_Designs.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Radikal.com.tr.xml b/src/chrome/content/rules/Radikal.com.tr.xml deleted file mode 100644 index b625b7519283..000000000000 --- a/src/chrome/content/rules/Radikal.com.tr.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/RadioShack.xml b/src/chrome/content/rules/RadioShack.xml index 39bf030348e0..65317dce5f29 100644 --- a/src/chrome/content/rules/RadioShack.xml +++ b/src/chrome/content/rules/RadioShack.xml @@ -30,19 +30,20 @@ Fetch error: http://www.radioshackwireless.com/ => https://radioshackwireless.co - www.radioshackcorporation.com (self-signed; shows blank page) --> - + - + + - + @@ -84,18 +85,17 @@ Fetch error: http://www.radioshackwireless.com/ => https://radioshackwireless.co Cert only matches www. - + - + diff --git a/src/chrome/content/rules/RadioTamazuj.xml b/src/chrome/content/rules/RadioTamazuj.xml new file mode 100644 index 000000000000..21eefde36e95 --- /dev/null +++ b/src/chrome/content/rules/RadioTamazuj.xml @@ -0,0 +1,16 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Radio_Woodstock.com.xml b/src/chrome/content/rules/Radio_Woodstock.com.xml deleted file mode 100644 index c405b99e0459..000000000000 --- a/src/chrome/content/rules/Radio_Woodstock.com.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Radioeins.de.xml b/src/chrome/content/rules/Radioeins.de.xml index 5f6c90b461bc..3c4dc5fce396 100644 --- a/src/chrome/content/rules/Radioeins.de.xml +++ b/src/chrome/content/rules/Radioeins.de.xml @@ -31,7 +31,7 @@ - + - + + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Radioreference.com.xml b/src/chrome/content/rules/Radioreference.com.xml new file mode 100644 index 000000000000..caea01993746 --- /dev/null +++ b/src/chrome/content/rules/Radioreference.com.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/RadiumOne.xml b/src/chrome/content/rules/RadiumOne.xml index 8d19699c9b79..c3d49b0be7ec 100644 --- a/src/chrome/content/rules/RadiumOne.xml +++ b/src/chrome/content/rules/RadiumOne.xml @@ -1,35 +1,149 @@ + + + - - - + + + + + + + + - - - + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Raiffeisen.at.xml b/src/chrome/content/rules/Raiffeisen.at.xml new file mode 100644 index 000000000000..e6a65e931a90 --- /dev/null +++ b/src/chrome/content/rules/Raiffeisen.at.xml @@ -0,0 +1,29 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Raiffeisen.ch.xml b/src/chrome/content/rules/Raiffeisen.ch.xml new file mode 100644 index 000000000000..ddf3b3864c73 --- /dev/null +++ b/src/chrome/content/rules/Raiffeisen.ch.xml @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Raiffeisen.ru.xml b/src/chrome/content/rules/Raiffeisen.ru.xml index 39813ec3ebce..c6c7f8a763bf 100644 --- a/src/chrome/content/rules/Raiffeisen.ru.xml +++ b/src/chrome/content/rules/Raiffeisen.ru.xml @@ -118,7 +118,7 @@ ielba.raiffeisen.ru different content ⁶ redirect ⁷ protocol error --> - + diff --git a/src/chrome/content/rules/Raiffeisen.xml b/src/chrome/content/rules/Raiffeisen.xml deleted file mode 100644 index a02505438ce1..000000000000 --- a/src/chrome/content/rules/Raiffeisen.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Railsbox.io.xml b/src/chrome/content/rules/Railsbox.io.xml deleted file mode 100644 index 8242fc3f4afa..000000000000 --- a/src/chrome/content/rules/Railsbox.io.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Rakuten.co.jp.xml b/src/chrome/content/rules/Rakuten.co.jp.xml index 9133ae2b55eb..3262dfe1898d 100644 --- a/src/chrome/content/rules/Rakuten.co.jp.xml +++ b/src/chrome/content/rules/Rakuten.co.jp.xml @@ -3,15 +3,8 @@ Other Rakuten rulesets: - - nikki.ne.jp.xml - - r10s.com.xml - - r10s.jp.xml - rakuten-static.com.xml - - rakuten-static.de.xml - Rakuten.co.jp-mixed.xml - - rakuten.com.br.xml - - rakuten.com.xml - - rakuten.de.xml Nonfunctional domains: diff --git a/src/chrome/content/rules/Rally_Congress.xml b/src/chrome/content/rules/Rally_Congress.xml index fe9011eede6e..5da180e08f76 100644 --- a/src/chrome/content/rules/Rally_Congress.xml +++ b/src/chrome/content/rules/Rally_Congress.xml @@ -8,12 +8,11 @@ Fetch error: http://secure.rallycongress.com/ => https://secure.rallycongress.co - (www.) (shows secure; mismatched, CN: secure.rallycongress.com) --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Rally_Dev.com.xml b/src/chrome/content/rules/Rally_Dev.com.xml index 6491236861ca..8d57f28a0829 100644 --- a/src/chrome/content/rules/Rally_Dev.com.xml +++ b/src/chrome/content/rules/Rally_Dev.com.xml @@ -16,7 +16,7 @@ Fetch error: http://community.rallydev.com/ => https://community.rallydev.com/: - us1.rallydev.com --> - + diff --git a/src/chrome/content/rules/RamNode.com.xml b/src/chrome/content/rules/RamNode.com.xml index 0dda32d7fabf..4f7e9f663e6e 100644 --- a/src/chrome/content/rules/RamNode.com.xml +++ b/src/chrome/content/rules/RamNode.com.xml @@ -30,7 +30,9 @@ - + + + - + - - - - - - - @@ -79,73 +40,35 @@ Refused connection: - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - - - - + - + + - - diff --git a/src/chrome/content/rules/RamonHarvey.com.xml b/src/chrome/content/rules/RamonHarvey.com.xml new file mode 100644 index 000000000000..421eb5316217 --- /dev/null +++ b/src/chrome/content/rules/RamonHarvey.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/RanalloLawOffice.com.xml b/src/chrome/content/rules/RanalloLawOffice.com.xml new file mode 100644 index 000000000000..99b104245539 --- /dev/null +++ b/src/chrome/content/rules/RanalloLawOffice.com.xml @@ -0,0 +1,9 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Randaris-Anime.net.xml b/src/chrome/content/rules/Randaris-Anime.net.xml new file mode 100644 index 000000000000..6046bcba9c78 --- /dev/null +++ b/src/chrome/content/rules/Randaris-Anime.net.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Randischumann.dk.xml b/src/chrome/content/rules/Randischumann.dk.xml index 365cd3e57208..7b7fa280e743 100644 --- a/src/chrome/content/rules/Randischumann.dk.xml +++ b/src/chrome/content/rules/Randischumann.dk.xml @@ -5,7 +5,7 @@ Fetch error: http://psykologteam.dk/ => https://psykologteam.dk/: (6, 'Could not Fetch error: http://www.psykologteam.dk/ => https://www.psykologteam.dk/: (6, 'Could not resolve host: www.psykologteam.dk') --> - + diff --git a/src/chrome/content/rules/Random-House.xml b/src/chrome/content/rules/Random-House.xml index ed60cc3a549c..caab8bd21159 100644 --- a/src/chrome/content/rules/Random-House.xml +++ b/src/chrome/content/rules/Random-House.xml @@ -22,7 +22,7 @@ - + - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Range_Networks.com.xml b/src/chrome/content/rules/Range_Networks.com.xml index 7a028de4ffa8..e0cd1b0cf21b 100644 --- a/src/chrome/content/rules/Range_Networks.com.xml +++ b/src/chrome/content/rules/Range_Networks.com.xml @@ -13,7 +13,7 @@ Fetch error: http://support.rangenetworks.com/ => https://support.rangenetworks. * Secured by us --> - + diff --git a/src/chrome/content/rules/Rantoul_Press.xml b/src/chrome/content/rules/Rantoul_Press.xml index ae43613a686e..3c9b959e5220 100644 --- a/src/chrome/content/rules/Rantoul_Press.xml +++ b/src/chrome/content/rules/Rantoul_Press.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Rantsports.com.xml b/src/chrome/content/rules/Rantsports.com.xml new file mode 100644 index 000000000000..8eab6dd00d0e --- /dev/null +++ b/src/chrome/content/rules/Rantsports.com.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Raphael-Hertzog.xml b/src/chrome/content/rules/Raphael-Hertzog.xml index 3ba716303557..f81f8373e810 100644 --- a/src/chrome/content/rules/Raphael-Hertzog.xml +++ b/src/chrome/content/rules/Raphael-Hertzog.xml @@ -6,13 +6,13 @@ Fetch error: http://www.raphaelhertzog.com/ => https://www.raphaelhertzog.com/: Raphaël Hertzog --> - + - + https://browsercan.rapid7.com/: (6 - www.community.rapid7.com --> - + diff --git a/src/chrome/content/rules/RapidBuyr-problematic.xml b/src/chrome/content/rules/RapidBuyr-problematic.xml index f78c9cb1ee8e..f5f1b051ae6c 100644 --- a/src/chrome/content/rules/RapidBuyr-problematic.xml +++ b/src/chrome/content/rules/RapidBuyr-problematic.xml @@ -7,7 +7,6 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/RapidBuyr.xml b/src/chrome/content/rules/RapidBuyr.xml index d418a5373ebc..6393f96b267b 100644 --- a/src/chrome/content/rules/RapidBuyr.xml +++ b/src/chrome/content/rules/RapidBuyr.xml @@ -15,7 +15,8 @@ - + + - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Rapida.ru.xml b/src/chrome/content/rules/Rapida.ru.xml index 0aa1b7b69567..0009a94f795d 100644 --- a/src/chrome/content/rules/Rapida.ru.xml +++ b/src/chrome/content/rules/Rapida.ru.xml @@ -35,7 +35,7 @@ webmail.rapida.ru ³ ⁴ self signed ⁵ expired --> - + diff --git a/src/chrome/content/rules/Rapidgator.net.xml b/src/chrome/content/rules/Rapidgator.net.xml deleted file mode 100644 index fdf9be095172..000000000000 --- a/src/chrome/content/rules/Rapidgator.net.xml +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Raptr.com.xml b/src/chrome/content/rules/Raptr.com.xml index 7a4bf1e162db..f92a159e1162 100644 --- a/src/chrome/content/rules/Raptr.com.xml +++ b/src/chrome/content/rules/Raptr.com.xml @@ -1,55 +1,12 @@ - - + - - - - - - - - - - - - + diff --git a/src/chrome/content/rules/Rapture_Ready.xml b/src/chrome/content/rules/Rapture_Ready.xml index 69fbaca5d8e0..11b1936876d9 100644 --- a/src/chrome/content/rules/Rapture_Ready.xml +++ b/src/chrome/content/rules/Rapture_Ready.xml @@ -6,4 +6,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Rare.us.xml b/src/chrome/content/rules/Rare.us.xml index 7488f42ae200..e40d24a1f520 100644 --- a/src/chrome/content/rules/Rare.us.xml +++ b/src/chrome/content/rules/Rare.us.xml @@ -5,7 +5,7 @@ Fetch error: http://rare.us/ => https://rare.us/: Too many redirects while fetch Fetch error: http://www.rare.us/ => https://www.rare.us/: Too many redirects while fetching 'https://www.rare.us/' --> - + diff --git a/src/chrome/content/rules/RareConnect.xml b/src/chrome/content/rules/RareConnect.xml index 6a9c25db864b..4c72480ade5b 100644 --- a/src/chrome/content/rules/RareConnect.xml +++ b/src/chrome/content/rules/RareConnect.xml @@ -2,11 +2,10 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Rare_Diseases.org.xml b/src/chrome/content/rules/Rare_Diseases.org.xml index abb738dc2754..c06cfbfa615c 100644 --- a/src/chrome/content/rules/Rare_Diseases.org.xml +++ b/src/chrome/content/rules/Rare_Diseases.org.xml @@ -16,7 +16,7 @@ --> - + - - - - - - - - - - - diff --git a/src/chrome/content/rules/RateMyProfessors.com.xml b/src/chrome/content/rules/RateMyProfessors.com.xml new file mode 100644 index 000000000000..bf9f41acb358 --- /dev/null +++ b/src/chrome/content/rules/RateMyProfessors.com.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Rateip.com.xml b/src/chrome/content/rules/Rateip.com.xml index f4f8cc09ad10..4aee5dc8ef6d 100644 --- a/src/chrome/content/rules/Rateip.com.xml +++ b/src/chrome/content/rules/Rateip.com.xml @@ -11,7 +11,7 @@ Fetch error: http://www.rateip.com/ => https://www.rateip.com/: (28, 'Connection * Secured by us --> - + diff --git a/src/chrome/content/rules/RatfishOil.com-falsemixed.xml b/src/chrome/content/rules/RatfishOil.com-falsemixed.xml index dd06b8b33ea6..49c5b4279ef7 100644 --- a/src/chrome/content/rules/RatfishOil.com-falsemixed.xml +++ b/src/chrome/content/rules/RatfishOil.com-falsemixed.xml @@ -4,7 +4,7 @@ --> - + + + + + + + + diff --git a/src/chrome/content/rules/Raven_Software.xml b/src/chrome/content/rules/Raven_Software.xml index bce2c20e1688..9876cfd92ff5 100644 --- a/src/chrome/content/rules/Raven_Software.xml +++ b/src/chrome/content/rules/Raven_Software.xml @@ -9,7 +9,8 @@ - + + diff --git a/src/chrome/content/rules/Ravenjs.com.xml b/src/chrome/content/rules/Ravenjs.com.xml new file mode 100644 index 000000000000..6a3710f1c26b --- /dev/null +++ b/src/chrome/content/rules/Ravenjs.com.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Ravnopravnost.lgbt.xml b/src/chrome/content/rules/Ravnopravnost.lgbt.xml new file mode 100644 index 000000000000..127ad489765c --- /dev/null +++ b/src/chrome/content/rules/Ravnopravnost.lgbt.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/RawGit2.com.xml b/src/chrome/content/rules/RawGit2.com.xml new file mode 100644 index 000000000000..3d9400de2cfb --- /dev/null +++ b/src/chrome/content/rules/RawGit2.com.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Rawstudio.org.xml b/src/chrome/content/rules/Rawstudio.org.xml index 3c64159a6aef..65d32bcd3821 100644 --- a/src/chrome/content/rules/Rawstudio.org.xml +++ b/src/chrome/content/rules/Rawstudio.org.xml @@ -1,25 +1,23 @@ - + - - + + diff --git a/src/chrome/content/rules/Raymii.org.xml b/src/chrome/content/rules/Raymii.org.xml deleted file mode 100644 index 7f2833e97ec7..000000000000 --- a/src/chrome/content/rules/Raymii.org.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Raymond.CC.xml b/src/chrome/content/rules/Raymond.CC.xml index 74e4e1e7f043..c01d85716d63 100644 --- a/src/chrome/content/rules/Raymond.CC.xml +++ b/src/chrome/content/rules/Raymond.CC.xml @@ -4,7 +4,7 @@ - + diff --git a/src/chrome/content/rules/Rayner-Software.xml b/src/chrome/content/rules/Rayner-Software.xml index 17a716e61df9..a24859f5ce39 100644 --- a/src/chrome/content/rules/Rayner-Software.xml +++ b/src/chrome/content/rules/Rayner-Software.xml @@ -5,8 +5,7 @@ - + diff --git a/src/chrome/content/rules/RayyanInstitute.com.xml b/src/chrome/content/rules/RayyanInstitute.com.xml new file mode 100644 index 000000000000..d9f44e39543a --- /dev/null +++ b/src/chrome/content/rules/RayyanInstitute.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Razoo-mismatches.xml b/src/chrome/content/rules/Razoo-mismatches.xml index 283f52bacbba..c1a9d2fa574f 100644 --- a/src/chrome/content/rules/Razoo-mismatches.xml +++ b/src/chrome/content/rules/Razoo-mismatches.xml @@ -11,7 +11,6 @@ - media-secure doesn't exist - Data not on assets nor www --> - + diff --git a/src/chrome/content/rules/Razor_Servers.xml b/src/chrome/content/rules/Razor_Servers.xml index 8e795686a322..890b9d798af1 100644 --- a/src/chrome/content/rules/Razor_Servers.xml +++ b/src/chrome/content/rules/Razor_Servers.xml @@ -4,15 +4,15 @@ - (www.) (times out) --> - + - + + - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Razzies.com.xml b/src/chrome/content/rules/Razzies.com.xml new file mode 100644 index 000000000000..f9e5224edc46 --- /dev/null +++ b/src/chrome/content/rules/Razzies.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Rdio.xml b/src/chrome/content/rules/Rdio.xml deleted file mode 100644 index 208781e59e75..000000000000 --- a/src/chrome/content/rules/Rdio.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Re-publica.de.xml b/src/chrome/content/rules/Re-publica.de.xml index e38440095f1a..e25c536a6803 100644 --- a/src/chrome/content/rules/Re-publica.de.xml +++ b/src/chrome/content/rules/Re-publica.de.xml @@ -17,7 +17,7 @@ Non-2xx HTTP code: http://mail.re-publica.de/ (200) => https://ntmx.de/ (403) - mail (→ ntmx.de) --> - + diff --git a/src/chrome/content/rules/ReTargeter-mismatches.xml b/src/chrome/content/rules/ReTargeter-mismatches.xml index a9b6ca9ffbbc..fad3039a1cf9 100644 --- a/src/chrome/content/rules/ReTargeter-mismatches.xml +++ b/src/chrome/content/rules/ReTargeter-mismatches.xml @@ -8,7 +8,6 @@ - + diff --git a/src/chrome/content/rules/ReTargeter.xml b/src/chrome/content/rules/ReTargeter.xml index 6a795a2dfc77..47a434b03d8f 100644 --- a/src/chrome/content/rules/ReTargeter.xml +++ b/src/chrome/content/rules/ReTargeter.xml @@ -19,7 +19,7 @@ Fetch error: http://v2.retargeter.com/ => https://v2.retargeter.com/: (28, 'Conn - cdn (cert: *.netdna-ssl.com; 404) --> - + @@ -30,7 +30,7 @@ Fetch error: http://v2.retargeter.com/ => https://v2.retargeter.com/: (28, 'Conn - + - + + + + @@ -54,7 +57,6 @@ - + diff --git a/src/chrome/content/rules/Reactiongifs.com.xml b/src/chrome/content/rules/Reactiongifs.com.xml new file mode 100644 index 000000000000..3664c81e1a9e --- /dev/null +++ b/src/chrome/content/rules/Reactiongifs.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Read-Comics-in-Public.xml b/src/chrome/content/rules/Read-Comics-in-Public.xml deleted file mode 100644 index 7d38a7dade6f..000000000000 --- a/src/chrome/content/rules/Read-Comics-in-Public.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/ReadSpeaker.xml b/src/chrome/content/rules/ReadSpeaker.xml index 80b723f725b9..4fc5eca39733 100644 --- a/src/chrome/content/rules/ReadSpeaker.xml +++ b/src/chrome/content/rules/ReadSpeaker.xml @@ -14,7 +14,7 @@ Fetch error: http://asp.readspeaker.net/ => https://asp.readspeaker.net/: (60, ' ᵐ Mismatched --> - + diff --git a/src/chrome/content/rules/ReadTheDocs.xml b/src/chrome/content/rules/ReadTheDocs.xml index c2aa837cf64d..37229f1a3948 100644 --- a/src/chrome/content/rules/ReadTheDocs.xml +++ b/src/chrome/content/rules/ReadTheDocs.xml @@ -1,6 +1,6 @@ @@ -12,14 +12,14 @@ - + - + - + @@ -33,7 +33,7 @@ - + diff --git a/src/chrome/content/rules/ReadWriteWeb.xml b/src/chrome/content/rules/ReadWriteWeb.xml index 40828e78a1b5..4f8fcf8c093a 100644 --- a/src/chrome/content/rules/ReadWriteWeb.xml +++ b/src/chrome/content/rules/ReadWriteWeb.xml @@ -10,7 +10,7 @@ --> - + diff --git a/src/chrome/content/rules/Readability.com.xml b/src/chrome/content/rules/Readability.com.xml deleted file mode 100644 index 706709b17872..000000000000 --- a/src/chrome/content/rules/Readability.com.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Readers_Digest.com.xml b/src/chrome/content/rules/Readers_Digest.com.xml index 43382618a099..b0a84ac23e50 100644 --- a/src/chrome/content/rules/Readers_Digest.com.xml +++ b/src/chrome/content/rules/Readers_Digest.com.xml @@ -10,7 +10,7 @@ Nonfunctional domains: - rd.com - - media.rd.com (404; mismatched, CN: + - media.rd.com (404; mismatched, CN: - www.rd.com (redirects to http, valid cert) @@ -24,20 +24,12 @@ --> - - + + + - - - - + - - - - - \ No newline at end of file + diff --git a/src/chrome/content/rules/ReadrBoard.com.xml b/src/chrome/content/rules/ReadrBoard.com.xml index 561aa1b1ad6c..c9ef5e65e34a 100644 --- a/src/chrome/content/rules/ReadrBoard.com.xml +++ b/src/chrome/content/rules/ReadrBoard.com.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://readrboard.com/ => https://readrboard.com/: (51, "SSL: no alternative certificate subject name matches target host name 'readrboard.com'") Fetch error: http://www.readrboard.com/ => https://www.readrboard.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.readrboard.com'") --> - + diff --git a/src/chrome/content/rules/ReadyHosting.com.xml b/src/chrome/content/rules/ReadyHosting.com.xml index 42f812d9db36..b3ddce4aad54 100644 --- a/src/chrome/content/rules/ReadyHosting.com.xml +++ b/src/chrome/content/rules/ReadyHosting.com.xml @@ -1,7 +1,8 @@ - + + - - - - - - - - diff --git a/src/chrome/content/rules/Real-Debrid.com.xml b/src/chrome/content/rules/Real-Debrid.com.xml index 5ddcad7f93ab..518c517e96df 100644 --- a/src/chrome/content/rules/Real-Debrid.com.xml +++ b/src/chrome/content/rules/Real-Debrid.com.xml @@ -17,7 +17,7 @@ --> - + https://www.real.com/: Cycle detected - - stats.rnhh.de --> - + - + + - + - - https://www.real.com/: Cycle detected - + diff --git a/src/chrome/content/rules/RealClearPolitics.com.xml b/src/chrome/content/rules/RealClearPolitics.com.xml index ed3b27380e11..afbd60d87ad6 100644 --- a/src/chrome/content/rules/RealClearPolitics.com.xml +++ b/src/chrome/content/rules/RealClearPolitics.com.xml @@ -1,22 +1,13 @@ + + - - - \ No newline at end of file + diff --git a/src/chrome/content/rules/RealMatch.com.xml b/src/chrome/content/rules/RealMatch.com.xml index 50bc5b010f4f..7a5d04aad54e 100644 --- a/src/chrome/content/rules/RealMatch.com.xml +++ b/src/chrome/content/rules/RealMatch.com.xml @@ -10,7 +10,7 @@ Fetch error: http://realmatch.com/ => https://realmatch.com/: (51, "SSL: no alte - blog (http reply) --> - + @@ -22,4 +22,4 @@ Fetch error: http://realmatch.com/ => https://realmatch.com/: (51, "SSL: no alte - \ No newline at end of file + diff --git a/src/chrome/content/rules/RealTimeStatistics.net.xml b/src/chrome/content/rules/RealTimeStatistics.net.xml new file mode 100644 index 000000000000..37517b8f4276 --- /dev/null +++ b/src/chrome/content/rules/RealTimeStatistics.net.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/RealVNC.com.xml b/src/chrome/content/rules/RealVNC.com.xml index ee3c3aa51806..2571bf5969d7 100644 --- a/src/chrome/content/rules/RealVNC.com.xml +++ b/src/chrome/content/rules/RealVNC.com.xml @@ -16,7 +16,7 @@ --> - + https://realrobothigh.com/: (28, 'Conn www: mismatched --> - + - + + - + diff --git a/src/chrome/content/rules/Real_World_OCaml.org.xml b/src/chrome/content/rules/Real_World_OCaml.org.xml index 7facf2efb9b5..784cbde09548 100644 --- a/src/chrome/content/rules/Real_World_OCaml.org.xml +++ b/src/chrome/content/rules/Real_World_OCaml.org.xml @@ -1,15 +1,13 @@ - - - + + - + + + + + + + diff --git a/src/chrome/content/rules/Realtidbits.xml b/src/chrome/content/rules/Realtidbits.xml index 42d46500caa8..8103313fe53e 100644 --- a/src/chrome/content/rules/Realtidbits.xml +++ b/src/chrome/content/rules/Realtidbits.xml @@ -19,13 +19,15 @@ - + + + + - + diff --git a/src/chrome/content/rules/Realview_Digital.com.xml b/src/chrome/content/rules/Realview_Digital.com.xml index d5e077bc4298..f43eefdc5471 100644 --- a/src/chrome/content/rules/Realview_Digital.com.xml +++ b/src/chrome/content/rules/Realview_Digital.com.xml @@ -20,7 +20,7 @@ - blog ¹ - $client_vhosts ² - + ¹ Hubspot/mismatched ² Mixed css @@ -52,7 +52,7 @@ - + - + - + + + + + + + + diff --git a/src/chrome/content/rules/RebelMouse.com.xml b/src/chrome/content/rules/RebelMouse.com.xml index 158b35c9dfd1..2efe45e1975e 100644 --- a/src/chrome/content/rules/RebelMouse.com.xml +++ b/src/chrome/content/rules/RebelMouse.com.xml @@ -40,26 +40,16 @@ --> + - + + + - - - - + - - - - - - - - + diff --git a/src/chrome/content/rules/Rebel_Torrent.net.xml b/src/chrome/content/rules/Rebel_Torrent.net.xml deleted file mode 100644 index 6ad987b5e57b..000000000000 --- a/src/chrome/content/rules/Rebel_Torrent.net.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Recalll.co.xml b/src/chrome/content/rules/Recalll.co.xml index 95c9e4c012cd..5a5498b3b901 100644 --- a/src/chrome/content/rules/Recalll.co.xml +++ b/src/chrome/content/rules/Recalll.co.xml @@ -4,13 +4,13 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.recalll.co/ => https://www.recalll.co/: (60, 'SSL certificate problem: certificate has expired') --> - + - + - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Recipelab.org.xml b/src/chrome/content/rules/Recipelab.org.xml index b0e050edb63c..746dea973e1f 100644 --- a/src/chrome/content/rules/Recipelab.org.xml +++ b/src/chrome/content/rules/Recipelab.org.xml @@ -13,7 +13,7 @@ - + - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Reclam.de.xml b/src/chrome/content/rules/Reclam.de.xml new file mode 100644 index 000000000000..d5d3dcae1796 --- /dev/null +++ b/src/chrome/content/rules/Reclam.de.xml @@ -0,0 +1,18 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Recode.net.xml b/src/chrome/content/rules/Recode.net.xml index d84f5352f4b8..7f84ccfc9785 100644 --- a/src/chrome/content/rules/Recode.net.xml +++ b/src/chrome/content/rules/Recode.net.xml @@ -1,150 +1,19 @@ - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + diff --git a/src/chrome/content/rules/Record-Store-Day.xml b/src/chrome/content/rules/Record-Store-Day.xml index 5dd9169f193e..907b83158714 100644 --- a/src/chrome/content/rules/Record-Store-Day.xml +++ b/src/chrome/content/rules/Record-Store-Day.xml @@ -4,7 +4,7 @@ - + diff --git a/src/chrome/content/rules/RecycleNow.com.xml b/src/chrome/content/rules/RecycleNow.com.xml index 9ff4acab341d..0cd510ca2faf 100644 --- a/src/chrome/content/rules/RecycleNow.com.xml +++ b/src/chrome/content/rules/RecycleNow.com.xml @@ -8,7 +8,7 @@ - + diff --git a/src/chrome/content/rules/Red-Aril.xml b/src/chrome/content/rules/Red-Aril.xml index 4b8e4e068326..b1dd89176de8 100644 --- a/src/chrome/content/rules/Red-Aril.xml +++ b/src/chrome/content/rules/Red-Aril.xml @@ -22,7 +22,7 @@ Fetch error: http://p9.raasnet.com/ => https://p9.raasnet.com/: (60, 'SSL certif p\d?.raasnet.com: Included on 3rd-party websites. --> - + diff --git a/src/chrome/content/rules/Red.es.xml b/src/chrome/content/rules/Red.es.xml index 27662fb8ed25..16acef7280b5 100644 --- a/src/chrome/content/rules/Red.es.xml +++ b/src/chrome/content/rules/Red.es.xml @@ -12,7 +12,7 @@ - + diff --git a/src/chrome/content/rules/RedBubble.xml b/src/chrome/content/rules/RedBubble.xml index 19ede3c61ca8..3011580030fd 100644 --- a/src/chrome/content/rules/RedBubble.xml +++ b/src/chrome/content/rules/RedBubble.xml @@ -7,24 +7,18 @@ Nonfunctional hosts in *redbubble.com: - blog * + - shareholders (Invalid name) * WP Engine - - Problematic hosts in *redbubble.com: - - - feedback ¹ - - support ² - - ¹ Mismatched, CN: *.uservoice.com - ² Mismatched - --> + + @@ -35,12 +29,8 @@ - - - @@ -61,15 +51,10 @@ - - - - + + diff --git a/src/chrome/content/rules/RedFerret.net.xml b/src/chrome/content/rules/RedFerret.net.xml new file mode 100644 index 000000000000..9683fb548119 --- /dev/null +++ b/src/chrome/content/rules/RedFerret.net.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/RedPlum.com.xml b/src/chrome/content/rules/RedPlum.com.xml index 10ea144ae420..e2eba75ebcaf 100644 --- a/src/chrome/content/rules/RedPlum.com.xml +++ b/src/chrome/content/rules/RedPlum.com.xml @@ -30,7 +30,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Red_Bull.xml b/src/chrome/content/rules/Red_Bull.xml index 4350c7c81761..51a8f5fdfb28 100644 --- a/src/chrome/content/rules/Red_Bull.xml +++ b/src/chrome/content/rules/Red_Bull.xml @@ -1,221 +1,66 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Red_Bull_Content_Pool.xml b/src/chrome/content/rules/Red_Bull_Content_Pool.xml index aeaae9c769f8..5064409be43a 100644 --- a/src/chrome/content/rules/Red_Bull_Content_Pool.xml +++ b/src/chrome/content/rules/Red_Bull_Content_Pool.xml @@ -26,7 +26,16 @@ Fetch error: http://redbullcontentpool.com/ => https://www.redbullcontentpool.co - + + + + + + + + + + @@ -35,7 +44,6 @@ Fetch error: http://redbullcontentpool.com/ => https://www.redbullcontentpool.co - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Red_Bull_Media_House.xml b/src/chrome/content/rules/Red_Bull_Media_House.xml index 1eadf93307e4..31a150146549 100644 --- a/src/chrome/content/rules/Red_Bull_Media_House.xml +++ b/src/chrome/content/rules/Red_Bull_Media_House.xml @@ -23,13 +23,19 @@ --> - + + + + + + + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Red_Bull_Mobile-falsemixed.xml b/src/chrome/content/rules/Red_Bull_Mobile-falsemixed.xml index ab40591c3f23..701b7c03de69 100644 --- a/src/chrome/content/rules/Red_Bull_Mobile-falsemixed.xml +++ b/src/chrome/content/rules/Red_Bull_Mobile-falsemixed.xml @@ -5,7 +5,7 @@ - + diff --git a/src/chrome/content/rules/Red_Bull_Mobile.xml b/src/chrome/content/rules/Red_Bull_Mobile.xml index 7a375e249768..a541e8ae76f4 100644 --- a/src/chrome/content/rules/Red_Bull_Mobile.xml +++ b/src/chrome/content/rules/Red_Bull_Mobile.xml @@ -80,7 +80,7 @@ Fetch error: http://redbullmobile.com.au/ => https://redbullmobile.com.au/: (51, -falsemixed should be merged for Ffx 24. --> - + @@ -88,9 +88,15 @@ Fetch error: http://redbullmobile.com.au/ => https://redbullmobile.com.au/: (51, Avoid false/broken MCB: --> - + + + + + - + + + @@ -109,4 +115,4 @@ Fetch error: http://redbullmobile.com.au/ => https://redbullmobile.com.au/: (51, - \ No newline at end of file + diff --git a/src/chrome/content/rules/Red_Bull_TV.xml b/src/chrome/content/rules/Red_Bull_TV.xml index b6103330300b..e41e99b718f8 100644 --- a/src/chrome/content/rules/Red_Bull_TV.xml +++ b/src/chrome/content/rules/Red_Bull_TV.xml @@ -13,13 +13,12 @@ --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Red_Ferret.xml b/src/chrome/content/rules/Red_Ferret.xml deleted file mode 100644 index 22c24e6ae42d..000000000000 --- a/src/chrome/content/rules/Red_Ferret.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Red_Flush_Casino.xml b/src/chrome/content/rules/Red_Flush_Casino.xml index a120453aa36a..3b3e2a34c931 100644 --- a/src/chrome/content/rules/Red_Flush_Casino.xml +++ b/src/chrome/content/rules/Red_Flush_Casino.xml @@ -9,12 +9,11 @@ Fetch error: http://secure.redflush.com/ => https://secure.redflush.com/: (28, ' - (www.)redflushcasino.eu (no https) --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Red_Hat.xml b/src/chrome/content/rules/Red_Hat.xml index b12e892d8c3c..0e0a8ef89abf 100644 --- a/src/chrome/content/rules/Red_Hat.xml +++ b/src/chrome/content/rules/Red_Hat.xml @@ -10,7 +10,6 @@ - JBoss.xml - Opensource.com.xml - OpenShift.xml - - OVirt.org.xml - RDO_project.org.xml - RH_Cloud.com.xml - Spice-space.org.xml diff --git a/src/chrome/content/rules/Red_Letter_Days.co.uk.xml b/src/chrome/content/rules/Red_Letter_Days.co.uk.xml index d83eaec44bf3..22cea2a6b82d 100644 --- a/src/chrome/content/rules/Red_Letter_Days.co.uk.xml +++ b/src/chrome/content/rules/Red_Letter_Days.co.uk.xml @@ -6,7 +6,7 @@ - + https://redmatrix.me/: (6, 'Could not resolve host: redmatrix.me') -Fetch error: http://www.redmatrix.me/ => https://www.redmatrix.me/: (6, 'Could not resolve host: www.redmatrix.me') - ---> - - - - - - - - - - diff --git a/src/chrome/content/rules/Redbridge.gov.uk-falsemixed.xml b/src/chrome/content/rules/Redbridge.gov.uk-falsemixed.xml deleted file mode 100644 index de384f9e5c46..000000000000 --- a/src/chrome/content/rules/Redbridge.gov.uk-falsemixed.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Redbridge.gov.uk.xml b/src/chrome/content/rules/Redbridge.gov.uk.xml index d4fc0dbc3637..c307bc5c414a 100644 --- a/src/chrome/content/rules/Redbridge.gov.uk.xml +++ b/src/chrome/content/rules/Redbridge.gov.uk.xml @@ -1,12 +1,6 @@ - - + - + @@ -118,7 +105,7 @@ Fetch error: http://jobs.redbridge.gov.uk/ => https://jobs.redbridge.gov.uk/: (6 - + - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Redcdn.pl.xml b/src/chrome/content/rules/Redcdn.pl.xml index 03dd23015d88..3597f160fd0b 100644 --- a/src/chrome/content/rules/Redcdn.pl.xml +++ b/src/chrome/content/rules/Redcdn.pl.xml @@ -4,7 +4,7 @@ - + diff --git a/src/chrome/content/rules/Redcoon.pt.xml b/src/chrome/content/rules/Redcoon.pt.xml index eaed55a7046c..23271299cc5b 100644 --- a/src/chrome/content/rules/Redcoon.pt.xml +++ b/src/chrome/content/rules/Redcoon.pt.xml @@ -14,7 +14,7 @@ Fetch error: http://redcoon.pt/ => https://www.redcoon.pt/: (60, 'SSL certificat * Secured by us --> - + diff --git a/src/chrome/content/rules/RedditSearch.io.xml b/src/chrome/content/rules/RedditSearch.io.xml new file mode 100644 index 000000000000..bd993622bcad --- /dev/null +++ b/src/chrome/content/rules/RedditSearch.io.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/Reddit_static.com.xml b/src/chrome/content/rules/Reddit_static.com.xml index a7882837525e..d64dd6dd3b2b 100644 --- a/src/chrome/content/rules/Reddit_static.com.xml +++ b/src/chrome/content/rules/Reddit_static.com.xml @@ -16,7 +16,7 @@ --> - + - + - + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Redmine.org.xml b/src/chrome/content/rules/Redmine.org.xml index 11868d3496ec..258353c57374 100644 --- a/src/chrome/content/rules/Redmine.org.xml +++ b/src/chrome/content/rules/Redmine.org.xml @@ -1,11 +1,4 @@ - + - - + - + - + diff --git a/src/chrome/content/rules/Redmondmag.com.xml b/src/chrome/content/rules/Redmondmag.com.xml index acf96f1a0013..e348b73ea311 100644 --- a/src/chrome/content/rules/Redmondmag.com.xml +++ b/src/chrome/content/rules/Redmondmag.com.xml @@ -19,7 +19,7 @@ --> - + - - - - - - - - - diff --git a/src/chrome/content/rules/Redpill-Linpro.xml b/src/chrome/content/rules/Redpill-Linpro.xml index 1ebe54df36c5..d6d45d5f9c28 100644 --- a/src/chrome/content/rules/Redpill-Linpro.xml +++ b/src/chrome/content/rules/Redpill-Linpro.xml @@ -6,7 +6,7 @@ - (www.)redpill-linpro.se --> - + diff --git a/src/chrome/content/rules/Redports.org.xml b/src/chrome/content/rules/Redports.org.xml index 549380019c4c..ce2454854b87 100644 --- a/src/chrome/content/rules/Redports.org.xml +++ b/src/chrome/content/rules/Redports.org.xml @@ -7,7 +7,7 @@ Fetch error: http://redports.org/ => https://www.redports.org/: (28, 'Connection ^redports.org: Mismatched --> - + @@ -18,7 +18,7 @@ Fetch error: http://redports.org/ => https://www.redports.org/: (28, 'Connection - + - + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Reed_Business.net.xml b/src/chrome/content/rules/Reed_Business.net.xml index c6cb0711770a..04f757cb4a22 100644 --- a/src/chrome/content/rules/Reed_Business.net.xml +++ b/src/chrome/content/rules/Reed_Business.net.xml @@ -16,4 +16,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Reed_Business_Information_Australia.xml b/src/chrome/content/rules/Reed_Business_Information_Australia.xml deleted file mode 100644 index 4deea9503f81..000000000000 --- a/src/chrome/content/rules/Reed_Business_Information_Australia.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Reef_Builders.xml b/src/chrome/content/rules/Reef_Builders.xml index 7214e278cae2..1f1e50f70d7c 100644 --- a/src/chrome/content/rules/Reef_Builders.xml +++ b/src/chrome/content/rules/Reef_Builders.xml @@ -13,7 +13,9 @@ - + + + @@ -28,4 +30,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/ReelHD.com.xml b/src/chrome/content/rules/ReelHD.com.xml index 9ca6a7e90ef3..cb2c5f15599e 100644 --- a/src/chrome/content/rules/ReelHD.com.xml +++ b/src/chrome/content/rules/ReelHD.com.xml @@ -1,7 +1,7 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Refaktor.hu.xml b/src/chrome/content/rules/Refaktor.hu.xml index c954d2f010f2..d0239c323a4f 100644 --- a/src/chrome/content/rules/Refaktor.hu.xml +++ b/src/chrome/content/rules/Refaktor.hu.xml @@ -1,4 +1,10 @@ + @@ -6,10 +12,8 @@ - - - - + + diff --git a/src/chrome/content/rules/ReferMe.to.xml b/src/chrome/content/rules/ReferMe.to.xml new file mode 100644 index 000000000000..84f49f43f1ec --- /dev/null +++ b/src/chrome/content/rules/ReferMe.to.xml @@ -0,0 +1,10 @@ + + + + + + + diff --git a/src/chrome/content/rules/Referly.xml b/src/chrome/content/rules/Referly.xml index 939bab426a2e..aa5eb0f42343 100644 --- a/src/chrome/content/rules/Referly.xml +++ b/src/chrome/content/rules/Referly.xml @@ -1,11 +1,9 @@ - + - - - - + + diff --git a/src/chrome/content/rules/RefinedGuy.com.xml b/src/chrome/content/rules/RefinedGuy.com.xml new file mode 100644 index 000000000000..8b5db3ed9818 --- /dev/null +++ b/src/chrome/content/rules/RefinedGuy.com.xml @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/src/chrome/content/rules/RefinedLabs.xml b/src/chrome/content/rules/RefinedLabs.xml index e01dd2ae9ef8..717caf4ec4d9 100644 --- a/src/chrome/content/rules/RefinedLabs.xml +++ b/src/chrome/content/rules/RefinedLabs.xml @@ -1,4 +1,4 @@ - - + + diff --git a/src/chrome/content/rules/Refinitiv.com.xml b/src/chrome/content/rules/Refinitiv.com.xml new file mode 100644 index 000000000000..d33e70794cea --- /dev/null +++ b/src/chrome/content/rules/Refinitiv.com.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Reflected.net.xml b/src/chrome/content/rules/Reflected.net.xml index 6dd975378147..3a780f9a8d6c 100644 --- a/src/chrome/content/rules/Reflected.net.xml +++ b/src/chrome/content/rules/Reflected.net.xml @@ -18,7 +18,7 @@ --> - + - - - - \ No newline at end of file + + + + + diff --git a/src/chrome/content/rules/Reformal.xml b/src/chrome/content/rules/Reformal.xml index 1ccdf7cc78cf..2c75a87c054c 100644 --- a/src/chrome/content/rules/Reformal.xml +++ b/src/chrome/content/rules/Reformal.xml @@ -19,4 +19,4 @@ Fetch error: http://reformal.ru/ => https://reformal.ru/: (60, 'SSL certificate - \ No newline at end of file + diff --git a/src/chrome/content/rules/Refrog.xml b/src/chrome/content/rules/Refrog.xml index 2f021929202b..197d64877231 100644 --- a/src/chrome/content/rules/Refrog.xml +++ b/src/chrome/content/rules/Refrog.xml @@ -4,7 +4,7 @@ - + + + + + + + + + + diff --git a/src/chrome/content/rules/Reg.ru.xml b/src/chrome/content/rules/Reg.ru.xml index b8286466946c..3ae4cad4c0bd 100644 --- a/src/chrome/content/rules/Reg.ru.xml +++ b/src/chrome/content/rules/Reg.ru.xml @@ -11,13 +11,14 @@ - + + + - + diff --git a/src/chrome/content/rules/RegardsCitoyens.fr.xml b/src/chrome/content/rules/RegardsCitoyens.fr.xml new file mode 100644 index 000000000000..978df4edd9d2 --- /dev/null +++ b/src/chrome/content/rules/RegardsCitoyens.fr.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Regex101.xml b/src/chrome/content/rules/Regex101.xml index 032ea413fc31..0d220172924a 100644 --- a/src/chrome/content/rules/Regex101.xml +++ b/src/chrome/content/rules/Regex101.xml @@ -14,4 +14,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/RegioBank_Adviseurs.nl.xml b/src/chrome/content/rules/RegioBank_Adviseurs.nl.xml deleted file mode 100644 index 44f74d28fd93..000000000000 --- a/src/chrome/content/rules/RegioBank_Adviseurs.nl.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Regiochannel.com.xml b/src/chrome/content/rules/Regiochannel.com.xml deleted file mode 100644 index 0f97669dedc5..000000000000 --- a/src/chrome/content/rules/Regiochannel.com.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Register.com.xml b/src/chrome/content/rules/Register.com.xml index 6a1c2c9f0b7a..c5e6a445b272 100644 --- a/src/chrome/content/rules/Register.com.xml +++ b/src/chrome/content/rules/Register.com.xml @@ -18,8 +18,7 @@ - + diff --git a/src/chrome/content/rules/Regjeringen.no.xml b/src/chrome/content/rules/Regjeringen.no.xml index 73848e57b0bd..1100261a016a 100644 --- a/src/chrome/content/rules/Regjeringen.no.xml +++ b/src/chrome/content/rules/Regjeringen.no.xml @@ -17,7 +17,7 @@ Fetch error: http://ny.regjeringen.no/ => https://ny.regjeringen.no/: (6, 'Could ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -33,7 +33,7 @@ Fetch error: http://ny.regjeringen.no/ => https://ny.regjeringen.no/: (6, 'Could - + https://sync.security.p - .security.pp.regruhosting.ru --> - + diff --git a/src/chrome/content/rules/Regulations.gov.xml b/src/chrome/content/rules/Regulations.gov.xml deleted file mode 100644 index 89b887cde960..000000000000 --- a/src/chrome/content/rules/Regulations.gov.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Reichelt.de.xml b/src/chrome/content/rules/Reichelt.de.xml index efb533a35506..4b2a436b7de2 100644 --- a/src/chrome/content/rules/Reichelt.de.xml +++ b/src/chrome/content/rules/Reichelt.de.xml @@ -1,11 +1,35 @@ + + + + + + + + + - + + + + - - - - + + + + - + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Reifman.org.xml b/src/chrome/content/rules/Reifman.org.xml deleted file mode 100644 index 82b02ea69e1b..000000000000 --- a/src/chrome/content/rules/Reifman.org.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Reimanpub.com.xml b/src/chrome/content/rules/Reimanpub.com.xml index 9b3d6b25ad41..51f4f901dafe 100644 --- a/src/chrome/content/rules/Reimanpub.com.xml +++ b/src/chrome/content/rules/Reimanpub.com.xml @@ -9,13 +9,14 @@ - + + + - + diff --git a/src/chrome/content/rules/Reiner-SCT.com.xml b/src/chrome/content/rules/Reiner-SCT.com.xml index 5a150d9b061a..f6b637888771 100644 --- a/src/chrome/content/rules/Reiner-SCT.com.xml +++ b/src/chrome/content/rules/Reiner-SCT.com.xml @@ -16,7 +16,7 @@ Fetch error: http://tracking.reiner-sct.com/ => https://tracking.reiner-sct.com/ * Secured by us --> - + @@ -28,4 +28,4 @@ Fetch error: http://tracking.reiner-sct.com/ => https://tracking.reiner-sct.com/ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Rejected.us.xml b/src/chrome/content/rules/Rejected.us.xml new file mode 100644 index 000000000000..f5458609839f --- /dev/null +++ b/src/chrome/content/rules/Rejected.us.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Reklamport.com.xml b/src/chrome/content/rules/Reklamport.com.xml deleted file mode 100644 index 6016d9ec1f3f..000000000000 --- a/src/chrome/content/rules/Reklamport.com.xml +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Relate.org.uk.xml b/src/chrome/content/rules/Relate.org.uk.xml index e71fab16bef2..21b7ebadc468 100644 --- a/src/chrome/content/rules/Relate.org.uk.xml +++ b/src/chrome/content/rules/Relate.org.uk.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Relcom.host.xml b/src/chrome/content/rules/Relcom.host.xml index 657e4f3537ce..6d107d9a3e46 100644 --- a/src/chrome/content/rules/Relcom.host.xml +++ b/src/chrome/content/rules/Relcom.host.xml @@ -6,7 +6,7 @@ www.relcomhost.ru mismatch - + @@ -15,7 +15,7 @@ www.relcomhost.ru mismatch - + diff --git a/src/chrome/content/rules/Religion_News.com.xml b/src/chrome/content/rules/Religion_News.com.xml index f0acd7262e76..d928fe8c8cd6 100644 --- a/src/chrome/content/rules/Religion_News.com.xml +++ b/src/chrome/content/rules/Religion_News.com.xml @@ -23,14 +23,23 @@ Fetch error: http://religionnews.com/ => https://religionnews.com/: (60, 'SSL ce - + + + + + + + + + + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Remedy_Entertainment.xml b/src/chrome/content/rules/Remedy_Entertainment.xml index 073e41c3a28d..5457df14c976 100644 --- a/src/chrome/content/rules/Remedy_Entertainment.xml +++ b/src/chrome/content/rules/Remedy_Entertainment.xml @@ -14,4 +14,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/RememberTheMilk.xml b/src/chrome/content/rules/RememberTheMilk.xml index d10d2ea4fa8f..f87e6bbdbfd2 100644 --- a/src/chrome/content/rules/RememberTheMilk.xml +++ b/src/chrome/content/rules/RememberTheMilk.xml @@ -1,5 +1,5 @@ - - + - - - - - - - - - - + + + + - + + diff --git a/src/chrome/content/rules/Remmina.org.xml b/src/chrome/content/rules/Remmina.org.xml new file mode 100644 index 000000000000..cb11b0b90f68 --- /dev/null +++ b/src/chrome/content/rules/Remmina.org.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/RemoteCoder.io.xml b/src/chrome/content/rules/RemoteCoder.io.xml index 09150bd002ff..99422c613ebb 100644 --- a/src/chrome/content/rules/RemoteCoder.io.xml +++ b/src/chrome/content/rules/RemoteCoder.io.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.remotecoder.io/ => https://www.remotecoder.io/: (51, "SSL: no alternative certificate subject name matches target host name 'www.remotecoder.io'") --> - + diff --git a/src/chrome/content/rules/RemoteStorage.io.xml b/src/chrome/content/rules/RemoteStorage.io.xml index 761958cc8b19..9b11924eb04f 100644 --- a/src/chrome/content/rules/RemoteStorage.io.xml +++ b/src/chrome/content/rules/RemoteStorage.io.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.remotestorage.io/ => https://www.remotestorage.io/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/Removeddit.com.xml b/src/chrome/content/rules/Removeddit.com.xml new file mode 100644 index 000000000000..449d612b7151 --- /dev/null +++ b/src/chrome/content/rules/Removeddit.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Remus_Exhaust_Store.com.xml b/src/chrome/content/rules/Remus_Exhaust_Store.com.xml deleted file mode 100644 index b9060b0c62b1..000000000000 --- a/src/chrome/content/rules/Remus_Exhaust_Store.com.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/RenderFarming.net.xml b/src/chrome/content/rules/RenderFarming.net.xml index f575fbb15b4f..2d9a3449d048 100644 --- a/src/chrome/content/rules/RenderFarming.net.xml +++ b/src/chrome/content/rules/RenderFarming.net.xml @@ -12,7 +12,7 @@ Fetch error: http://renderfarming.net/ => https://renderfarming.net/: (51, "SSL: - www.renderfarming.net --> - + diff --git a/src/chrome/content/rules/Reno_Gazette-Journal.xml b/src/chrome/content/rules/Reno_Gazette-Journal.xml index b6d7e145b901..7cd97fe58fee 100644 --- a/src/chrome/content/rules/Reno_Gazette-Journal.xml +++ b/src/chrome/content/rules/Reno_Gazette-Journal.xml @@ -25,7 +25,9 @@ Fetch error: http://rgj.com/ => https://www.rgj.com/: (51, "SSL: no alternative - + + + @@ -37,4 +39,4 @@ Fetch error: http://rgj.com/ => https://www.rgj.com/: (51, "SSL: no alternative - \ No newline at end of file + diff --git a/src/chrome/content/rules/Renovation_Experts.xml b/src/chrome/content/rules/Renovation_Experts.xml deleted file mode 100644 index 796da0fb9c0b..000000000000 --- a/src/chrome/content/rules/Renovation_Experts.xml +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Renren.com.xml b/src/chrome/content/rules/Renren.com.xml index be7a47bd1fa8..4b66e8100366 100644 --- a/src/chrome/content/rules/Renren.com.xml +++ b/src/chrome/content/rules/Renren.com.xml @@ -31,7 +31,7 @@ Mixed content: - Image on licai from fmn.rrfmn.com ³ - + ³ Unsecurable <= 403 --> diff --git a/src/chrome/content/rules/Renrencaopan.com.xml b/src/chrome/content/rules/Renrencaopan.com.xml index 4cc26c9e320d..877b40645cd1 100644 --- a/src/chrome/content/rules/Renrencaopan.com.xml +++ b/src/chrome/content/rules/Renrencaopan.com.xml @@ -10,7 +10,7 @@ Fetch error: http://www.renrencaopan.com/ => https://www.renrencaopan.com/: (6, - www.renrencaopan.com --> - + diff --git a/src/chrome/content/rules/Rent_the_Runway.xml b/src/chrome/content/rules/Rent_the_Runway.xml index 364375ab04d8..2f81359d88b1 100644 --- a/src/chrome/content/rules/Rent_the_Runway.xml +++ b/src/chrome/content/rules/Rent_the_Runway.xml @@ -30,8 +30,11 @@ - - + + + + + - + diff --git a/src/chrome/content/rules/Rentex.xml b/src/chrome/content/rules/Rentex.xml deleted file mode 100644 index 978d74fee473..000000000000 --- a/src/chrome/content/rules/Rentex.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Rephial.org.xml b/src/chrome/content/rules/Rephial.org.xml new file mode 100644 index 000000000000..b713abe915c4 --- /dev/null +++ b/src/chrome/content/rules/Rephial.org.xml @@ -0,0 +1,14 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Replica_Perfection.xml b/src/chrome/content/rules/Replica_Perfection.xml index 50d103f3c514..8f247c6928f6 100644 --- a/src/chrome/content/rules/Replica_Perfection.xml +++ b/src/chrome/content/rules/Replica_Perfection.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Reporo.xml b/src/chrome/content/rules/Reporo.xml index e539fed23c75..c0aeca02b39d 100644 --- a/src/chrome/content/rules/Reporo.xml +++ b/src/chrome/content/rules/Reporo.xml @@ -44,7 +44,7 @@ --> - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Reporter-ohne-Grenzen.de.xml b/src/chrome/content/rules/Reporter-ohne-Grenzen.de.xml index f3601a260cc1..3c8192c3760f 100644 --- a/src/chrome/content/rules/Reporter-ohne-Grenzen.de.xml +++ b/src/chrome/content/rules/Reporter-ohne-Grenzen.de.xml @@ -17,7 +17,7 @@ - + https://en.rsf.org/: (28, 'Connection timed out after 20001 milliseconds') -Fetch error: http://fr.rsf.org/ => https://fr.rsf.org/: (28, 'Connection timed out after 20000 milliseconds') -Fetch error: http://index.rsf.org/ => https://index.rsf.org/: (28, 'Connection timed out after 20001 milliseconds') -Fetch error: http://www.rsf.org/ => https://www.rsf.org/: (28, 'Connection timed out after 20001 milliseconds') - Reporters Without Borders - For rules causing false/broken MCB, see RSF.org-falsemixed.xml. - Other Reporters Without Borders rulesets: - Reporter-ohne-Grenzen.de.xml - - Nonfunctional hosts in *rsf.org: - - - agir * - - * Redirets to http - - - Problematic hosts in *rsf.org: - - - boutique * - - * Shopify - - - Mixed content: - - - css on heroes from $self * - - - Images, on: - - - 12mars from $self * - - en, fr from ^rsf.org * - - fr from 12mars.rsf.org * - - heroes from $self * - - * Secured by us - + Connection refused: + www.rsf.org + en.rsf.org + es.rsf.org + fr.rsf.org + index.rsf.org + + Invalid certificate: + agir.rsf.org + campaign2014.rsf.org + deadtweet.rsf.org + + Timeout: + 12march.rsf.org + 12mars.rsf.org + 20juin.rsf.org + album.rsf.org + albums.rsf.org + ar.rsf.org + archives.rsf.org + blogs.rsf.org + campaign2015.rsf.org + dosh.rsf.org + freeaustintice.rsf.org + heroes.rsf.org + inscription.rsf.org + jamesfoley.rsf.org + journalmission.rsf.org + lankaenews.rsf.org + march12.rsf.org + membership.rsf.org + pacte2012.rsf.org + predators.rsf.org + questionaire.rsf.org + respublika-kz.rsf.org + rio2016.rsf.org + slides.rsf.org + surveillance.rsf.org + thejournalistsmemorial.rsf.org + vzglyad.rsf.org + wiki.rsf.org + wikileaks.rsf.org + zambiareports.rsf.org --> - + - - + + - - - - - - - + - - + - + diff --git a/src/chrome/content/rules/Represent.Us.xml b/src/chrome/content/rules/Represent.Us.xml index 50ab333e3961..9881c264824a 100644 --- a/src/chrome/content/rules/Represent.Us.xml +++ b/src/chrome/content/rules/Represent.Us.xml @@ -24,4 +24,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Republik.ch.xml b/src/chrome/content/rules/Republik.ch.xml new file mode 100644 index 000000000000..064bad80c9d3 --- /dev/null +++ b/src/chrome/content/rules/Republik.ch.xml @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/RequireJS.org.xml b/src/chrome/content/rules/RequireJS.org.xml new file mode 100644 index 000000000000..0d86a958c245 --- /dev/null +++ b/src/chrome/content/rules/RequireJS.org.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Research-Media-and-Cybernetics.xml b/src/chrome/content/rules/Research-Media-and-Cybernetics.xml index bf8c1f9cdb89..23fe2935764f 100644 --- a/src/chrome/content/rules/Research-Media-and-Cybernetics.xml +++ b/src/chrome/content/rules/Research-Media-and-Cybernetics.xml @@ -5,10 +5,10 @@ - - + + diff --git a/src/chrome/content/rules/Research.gov.xml b/src/chrome/content/rules/Research.gov.xml index 365c2e93edb3..f47ab679603e 100644 --- a/src/chrome/content/rules/Research.gov.xml +++ b/src/chrome/content/rules/Research.gov.xml @@ -24,7 +24,7 @@ --> - + https://surveys.researchresu ᵉ Expired --> - + diff --git a/src/chrome/content/rules/ResearcherID.com.xml b/src/chrome/content/rules/ResearcherID.com.xml new file mode 100644 index 000000000000..6dfd64ad10f3 --- /dev/null +++ b/src/chrome/content/rules/ResearcherID.com.xml @@ -0,0 +1,29 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ResellerRatings.xml b/src/chrome/content/rules/ResellerRatings.xml index 4a28940752e3..f7b132c80765 100644 --- a/src/chrome/content/rules/ResellerRatings.xml +++ b/src/chrome/content/rules/ResellerRatings.xml @@ -48,6 +48,6 @@ Fetch error: http://resellerratings.com/ => https://resellerratings.com/: (60, ' to="https://d3cb52u6zfmv02.cloudfront.net/" /> + to="https://images.resellerratings.com/" /> diff --git a/src/chrome/content/rules/Reservation-Desk.com.xml b/src/chrome/content/rules/Reservation-Desk.com.xml deleted file mode 100644 index 8ea4f2fafb6f..000000000000 --- a/src/chrome/content/rules/Reservation-Desk.com.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/ResidueTheorem.com.xml b/src/chrome/content/rules/ResidueTheorem.com.xml new file mode 100644 index 000000000000..31b8d6e3ec5b --- /dev/null +++ b/src/chrome/content/rules/ResidueTheorem.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Resinfo.org.xml b/src/chrome/content/rules/Resinfo.org.xml index f648b3097bce..5ac266667cdd 100644 --- a/src/chrome/content/rules/Resinfo.org.xml +++ b/src/chrome/content/rules/Resinfo.org.xml @@ -9,7 +9,7 @@ * Secured by us --> - + diff --git a/src/chrome/content/rules/Resist_Surveillance.org.xml b/src/chrome/content/rules/Resist_Surveillance.org.xml index ebe20bfc1af8..1fd5934c5bde 100644 --- a/src/chrome/content/rules/Resist_Surveillance.org.xml +++ b/src/chrome/content/rules/Resist_Surveillance.org.xml @@ -5,7 +5,7 @@ Fetch error: http://resistsurveillance.org/ => https://resistsurveillance.org/: Fetch error: http://www.resistsurveillance.org/ => https://www.resistsurveillance.org/: (7, 'Failed to connect to www.resistsurveillance.org port 443: Connection refused') --> - + diff --git a/src/chrome/content/rules/Resonant.org.xml b/src/chrome/content/rules/Resonant.org.xml deleted file mode 100644 index c52bbd549320..000000000000 --- a/src/chrome/content/rules/Resonant.org.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Respect_Network.com.xml b/src/chrome/content/rules/Respect_Network.com.xml deleted file mode 100644 index ae50def57349..000000000000 --- a/src/chrome/content/rules/Respect_Network.com.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Respect_our_privacy.com.xml b/src/chrome/content/rules/Respect_our_privacy.com.xml index 8e6df414833d..6ffe1c4132d4 100644 --- a/src/chrome/content/rules/Respect_our_privacy.com.xml +++ b/src/chrome/content/rules/Respect_our_privacy.com.xml @@ -10,7 +10,7 @@ Fetch error: http://www.respectourprivacy.com/ => https://www.respectourprivacy. - www.respectourprivacy.com --> - + diff --git a/src/chrome/content/rules/Responsys.com.xml b/src/chrome/content/rules/Responsys.com.xml index 47e9dc2d3e63..00094e16b1d9 100644 --- a/src/chrome/content/rules/Responsys.com.xml +++ b/src/chrome/content/rules/Responsys.com.xml @@ -12,7 +12,7 @@ Fetch error: http://www.responsys.com/ => https://www.oracle.com/marketingcloud/ www.responsys.com: Redirects to http --> - + diff --git a/src/chrome/content/rules/Restcountries.eu.xml b/src/chrome/content/rules/Restcountries.eu.xml new file mode 100644 index 000000000000..a9e240a6c3a9 --- /dev/null +++ b/src/chrome/content/rules/Restcountries.eu.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/src/chrome/content/rules/Restore_the_Fourth.xml b/src/chrome/content/rules/Restore_the_Fourth.xml index 6b00aa134fef..3a96bb23f58c 100644 --- a/src/chrome/content/rules/Restore_the_Fourth.xml +++ b/src/chrome/content/rules/Restore_the_Fourth.xml @@ -11,7 +11,7 @@ Fetch error: http://restorethefourth.net/ => https://restorethefourth.net/: (51, - restorethefourth.s3.amazonaws.com --> - + @@ -22,4 +22,4 @@ Fetch error: http://restorethefourth.net/ => https://restorethefourth.net/: (51, - \ No newline at end of file + diff --git a/src/chrome/content/rules/Retail-Link.gr.xml b/src/chrome/content/rules/Retail-Link.gr.xml index b01fc62cdd89..a45116386467 100644 --- a/src/chrome/content/rules/Retail-Link.gr.xml +++ b/src/chrome/content/rules/Retail-Link.gr.xml @@ -11,13 +11,13 @@ - + + - + diff --git a/src/chrome/content/rules/Retail_Sails.xml b/src/chrome/content/rules/Retail_Sails.xml index 07f5910afa57..9b7e0b8c6b23 100644 --- a/src/chrome/content/rules/Retail_Sails.xml +++ b/src/chrome/content/rules/Retail_Sails.xml @@ -8,7 +8,7 @@ Fetch error: http://www.retailsails.com/ => https://retailsails.com/: (7, 'Faile - www.retailsails.com - blog.retailsails.com --> - + diff --git a/src/chrome/content/rules/RetractionWatch.com.xml b/src/chrome/content/rules/RetractionWatch.com.xml new file mode 100644 index 000000000000..aa927890b933 --- /dev/null +++ b/src/chrome/content/rules/RetractionWatch.com.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Retravision.com.au.xml b/src/chrome/content/rules/Retravision.com.au.xml new file mode 100644 index 000000000000..0335c1421ebd --- /dev/null +++ b/src/chrome/content/rules/Retravision.com.au.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/RetroFestive.ca.xml b/src/chrome/content/rules/RetroFestive.ca.xml index ddbb7b3246a4..aae042f85b2e 100644 --- a/src/chrome/content/rules/RetroFestive.ca.xml +++ b/src/chrome/content/rules/RetroFestive.ca.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Retronaut.com.xml b/src/chrome/content/rules/Retronaut.com.xml index bf1cb5ff3ed2..b00c3b1cd90f 100644 --- a/src/chrome/content/rules/Retronaut.com.xml +++ b/src/chrome/content/rules/Retronaut.com.xml @@ -8,7 +8,7 @@ - + https://www.rettighedsalliancen.dk/: (60, 'SSL certificate problem: self signed certificate') -Fetch error: http://www.rettighedsalliancen.dk/ => https://www.rettighedsalliancen.dk/: (60, 'SSL certificate problem: self signed certificate') - - Some style sheet and script references are - hard coded to be fetched over http, which - causes design breaking in mixed content - blocking browsers. ---> - + - + diff --git a/src/chrome/content/rules/Return-to-the-Roots.xml b/src/chrome/content/rules/Return-to-the-Roots.xml index 930fd5993460..f77e82a5a9ce 100644 --- a/src/chrome/content/rules/Return-to-the-Roots.xml +++ b/src/chrome/content/rules/Return-to-the-Roots.xml @@ -21,7 +21,7 @@ Fetch error: http://packages.siedler25.org/ => https://packages.siedler25.org/: ˢ Secured by us --> - + @@ -36,7 +36,7 @@ Fetch error: http://packages.siedler25.org/ => https://packages.siedler25.org/: --> - + - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Return_Path.net.xml b/src/chrome/content/rules/Return_Path.net.xml index 689d8705cb9e..6d5410859a08 100644 --- a/src/chrome/content/rules/Return_Path.net.xml +++ b/src/chrome/content/rules/Return_Path.net.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.returnpath.net/ => https://www.returnpath.net/: (51, "SSL: no alternative certificate subject name matches target host name 'www.returnpath.net'") Fetch error: http://returnpath.net/ => https://www.returnpath.net/: (51, "SSL: no alternative certificate subject name matches target host name 'www.returnpath.net'") - For other Return Path coverage, see Return_Path.com.xml. + For other Return Path coverage, see SenderScore.org.xml ^returnpath.net: Mismatched @@ -17,7 +17,7 @@ Fetch error: http://returnpath.net/ => https://www.returnpath.net/: (51, "SSL: n - monitor2.returnpath.net --> - + diff --git a/src/chrome/content/rules/Reussissonsensemble.fr.xml b/src/chrome/content/rules/Reussissonsensemble.fr.xml deleted file mode 100644 index 4cd9ffe85fe5..000000000000 --- a/src/chrome/content/rules/Reussissonsensemble.fr.xml +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Rev2pub.com.xml b/src/chrome/content/rules/Rev2pub.com.xml deleted file mode 100644 index ced3e543734a..000000000000 --- a/src/chrome/content/rules/Rev2pub.com.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/RevResponse.com.xml b/src/chrome/content/rules/RevResponse.com.xml index 0c04a57bfd93..dae5a2d54737 100644 --- a/src/chrome/content/rules/RevResponse.com.xml +++ b/src/chrome/content/rules/RevResponse.com.xml @@ -7,7 +7,7 @@ Cert only matches *.revresponse.com - img ² - ² Mismatched, CN: *.tradepub.com + ² Mismatched, CN: *.tradepub.com diff --git a/src/chrome/content/rules/RevSci.net.xml b/src/chrome/content/rules/RevSci.net.xml deleted file mode 100644 index 174ad8fb2d54..000000000000 --- a/src/chrome/content/rules/RevSci.net.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/RevenuQuebec.ca.xml b/src/chrome/content/rules/RevenuQuebec.ca.xml new file mode 100644 index 000000000000..09f759fb0a4e --- /dev/null +++ b/src/chrome/content/rules/RevenuQuebec.ca.xml @@ -0,0 +1,15 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Reviewing_Comics.xml b/src/chrome/content/rules/Reviewing_Comics.xml index eb8f8f357c0a..894ad1c4ecbd 100644 --- a/src/chrome/content/rules/Reviewing_Comics.xml +++ b/src/chrome/content/rules/Reviewing_Comics.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Revision3.xml b/src/chrome/content/rules/Revision3.xml deleted file mode 100644 index b7a03f1bd011..000000000000 --- a/src/chrome/content/rules/Revision3.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Revolet.xml b/src/chrome/content/rules/Revolet.xml index 9d5d16a9b2cf..cbe3a196e1ad 100644 --- a/src/chrome/content/rules/Revolet.xml +++ b/src/chrome/content/rules/Revolet.xml @@ -6,7 +6,7 @@ - + https://www.revoltgames.com/: Too many r - ^ (shows blank page) --> - + - + @@ -31,4 +31,4 @@ Fetch error: http://revoltgames.com/ => https://www.revoltgames.com/: Too many r - \ No newline at end of file + diff --git a/src/chrome/content/rules/RevolutionPermanente.fr.xml b/src/chrome/content/rules/RevolutionPermanente.fr.xml new file mode 100644 index 000000000000..c86cf87c1c7e --- /dev/null +++ b/src/chrome/content/rules/RevolutionPermanente.fr.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Revolutionwifi.net.xml b/src/chrome/content/rules/Revolutionwifi.net.xml new file mode 100644 index 000000000000..60491aa95871 --- /dev/null +++ b/src/chrome/content/rules/Revolutionwifi.net.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Revosec.ch.xml b/src/chrome/content/rules/Revosec.ch.xml deleted file mode 100644 index 2d791a917844..000000000000 --- a/src/chrome/content/rules/Revosec.ch.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/RezTrip.xml b/src/chrome/content/rules/RezTrip.xml index 8667b38a21ec..de9e22daa744 100644 --- a/src/chrome/content/rules/RezTrip.xml +++ b/src/chrome/content/rules/RezTrip.xml @@ -4,7 +4,7 @@ - + diff --git a/src/chrome/content/rules/Rfihub.com.xml b/src/chrome/content/rules/Rfihub.com.xml index 63f2ac9748df..04b1b28388e1 100644 --- a/src/chrome/content/rules/Rfihub.com.xml +++ b/src/chrome/content/rules/Rfihub.com.xml @@ -21,7 +21,7 @@ --> - + https://apps.rhb.ch/: (60, 'SSL certificate problem: unable to get local issuer certificate') -Fetch error: http://beta.rhb.ch/ => https://beta.rhb.ch/: Too many redirects while fetching 'https://beta.rhb.ch/' -Fetch error: http://contura.rhb.ch/ => https://contura.rhb.ch/: (60, 'SSL certificate problem: unable to get local issuer certificate') -Fetch error: http://erben.rhb.ch/ => https://erben.rhb.ch/: (60, 'SSL certificate problem: unable to get local issuer certificate') + Redirect issues: + - beta.rhb.ch Refused: - - s + - apps.rhb.ch + - erben.rhb.ch + + Invalid or untrusted cert: + - albulatunnel.rhb.ch + - contura.rhb.ch + - lernexpress.rhb.ch + - www.lernexpress.rhb.ch + - promo.rhb.ch --> - + - - - - - - + + diff --git a/src/chrome/content/rules/Rhapsody.xml b/src/chrome/content/rules/Rhapsody.xml index 10e462554ac8..28457bf26a3a 100644 --- a/src/chrome/content/rules/Rhapsody.xml +++ b/src/chrome/content/rules/Rhapsody.xml @@ -17,7 +17,7 @@ - + diff --git a/src/chrome/content/rules/Rheinland-Reporter.xml b/src/chrome/content/rules/Rheinland-Reporter.xml deleted file mode 100644 index 61e15d5a2b20..000000000000 --- a/src/chrome/content/rules/Rheinland-Reporter.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Rheinpfalz.de.xml b/src/chrome/content/rules/Rheinpfalz.de.xml new file mode 100644 index 000000000000..3d80582509ac --- /dev/null +++ b/src/chrome/content/rules/Rheinpfalz.de.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Rhino-Software.xml b/src/chrome/content/rules/Rhino-Software.xml index 3314ce6c236c..1a1adfa7bedc 100644 --- a/src/chrome/content/rules/Rhino-Software.xml +++ b/src/chrome/content/rules/Rhino-Software.xml @@ -9,12 +9,12 @@ Fetch error: http://www.rhinosoft.com/ => https://www.rhinosoft.com/: (60, 'SSL - (www.)ftpvoyager.com (cert: rhinosoft.com; shows that domain's data) - (www.)serv-u.com (ditto) --> - + - + diff --git a/src/chrome/content/rules/Rhino_Support.com.xml b/src/chrome/content/rules/Rhino_Support.com.xml index c7442c48723d..911b45bed4b0 100644 --- a/src/chrome/content/rules/Rhino_Support.com.xml +++ b/src/chrome/content/rules/Rhino_Support.com.xml @@ -34,7 +34,7 @@ --> - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Ribble_Valley.gov.uk.xml b/src/chrome/content/rules/Ribble_Valley.gov.uk.xml index 82c15168337c..d7e3ce5a6fd6 100644 --- a/src/chrome/content/rules/Ribble_Valley.gov.uk.xml +++ b/src/chrome/content/rules/Ribble_Valley.gov.uk.xml @@ -24,7 +24,7 @@ --> - + https://fr.ricardo.ch/: (51, "SSL: no alte - www.schnellverkaufen.ricardo.ch --> - + @@ -39,7 +39,7 @@ Fetch error: http://fr.ricardo.ch/ => https://fr.ricardo.ch/: (51, "SSL: no alte - + https://ricardoshops.ch/: (51, "SSL: no For other ricardo coverage, see Ricardo.ch.xml. --> - + @@ -14,7 +14,7 @@ Fetch error: http://ricardoshops.ch/ => https://ricardoshops.ch/: (51, "SSL: no - + - + diff --git a/src/chrome/content/rules/Rice-University.xml b/src/chrome/content/rules/Rice-University.xml index b176c57658ce..d27c3d443077 100644 --- a/src/chrome/content/rules/Rice-University.xml +++ b/src/chrome/content/rules/Rice-University.xml @@ -21,10 +21,9 @@ - + - + diff --git a/src/chrome/content/rules/RichRelevance.xml b/src/chrome/content/rules/RichRelevance.xml index 857e6ac6763b..7a975a04a5cf 100644 --- a/src/chrome/content/rules/RichRelevance.xml +++ b/src/chrome/content/rules/RichRelevance.xml @@ -39,7 +39,7 @@ Non-2xx HTTP code: http://rm.recs.richrelevance.com/rrmail/rmclick?a=8791bbd7654 ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -91,7 +91,7 @@ Non-2xx HTTP code: http://rm.recs.richrelevance.com/rrmail/rmclick?a=8791bbd7654 - + - + + + @@ -12,10 +14,9 @@ - + diff --git a/src/chrome/content/rules/Richard_and_Judy_Book_Club.xml b/src/chrome/content/rules/Richard_and_Judy_Book_Club.xml index aa60a1b2a8c2..ca8b1cb725f0 100644 --- a/src/chrome/content/rules/Richard_and_Judy_Book_Club.xml +++ b/src/chrome/content/rules/Richard_and_Judy_Book_Club.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Richmond_Tea_Party.xml b/src/chrome/content/rules/Richmond_Tea_Party.xml index fe41545d3fae..22e2c4cd5ba5 100644 --- a/src/chrome/content/rules/Richmond_Tea_Party.xml +++ b/src/chrome/content/rules/Richmond_Tea_Party.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Richmondshire.gov.uk.xml b/src/chrome/content/rules/Richmondshire.gov.uk.xml index 06f3ff70a26e..5308a4f3b2b0 100644 --- a/src/chrome/content/rules/Richmondshire.gov.uk.xml +++ b/src/chrome/content/rules/Richmondshire.gov.uk.xml @@ -31,7 +31,7 @@ --> - + + + + + + + + diff --git a/src/chrome/content/rules/Ricoh.xml b/src/chrome/content/rules/Ricoh.xml index 50ee06c426c0..e0ab3e5b4e0c 100644 --- a/src/chrome/content/rules/Ricoh.xml +++ b/src/chrome/content/rules/Ricoh.xml @@ -1,41 +1,32 @@ - - + + + - - - - - - - - + + + + - + - + - + - + - + + diff --git a/src/chrome/content/rules/Riga.xml b/src/chrome/content/rules/Riga.xml index 08af11be5b10..88da94ef5128 100644 --- a/src/chrome/content/rules/Riga.xml +++ b/src/chrome/content/rules/Riga.xml @@ -6,7 +6,7 @@ Non-2xx HTTP code: http://eriga.lv/ (200) => https://eriga.lv/ (404) Disabled by https-everywhere-checker because: Non-2xx HTTP code: http://eriga.lv/ (200) => https://eriga.lv/ (404) --> - + diff --git a/src/chrome/content/rules/Right-Media.xml b/src/chrome/content/rules/Right-Media.xml index f92c9b0b599b..7133ee8a98b5 100644 --- a/src/chrome/content/rules/Right-Media.xml +++ b/src/chrome/content/rules/Right-Media.xml @@ -48,7 +48,7 @@ Fetch error: http://my.yieldmanager.com/ => https://my.yieldmanager.com/: (7, 'F * Secured by us --> - + @@ -84,7 +84,7 @@ Fetch error: http://my.yieldmanager.com/ => https://my.yieldmanager.com/: (7, 'F - + - - - - - - - - - - - - diff --git a/src/chrome/content/rules/RightNow.xml b/src/chrome/content/rules/RightNow.xml index 7b5c1a2b90d3..2d295e4aa8ef 100644 --- a/src/chrome/content/rules/RightNow.xml +++ b/src/chrome/content/rules/RightNow.xml @@ -1,21 +1,37 @@ - - + - - - - + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/RightScale.com.xml b/src/chrome/content/rules/RightScale.com.xml index 0767e6e9e10b..89c07f96703b 100644 --- a/src/chrome/content/rules/RightScale.com.xml +++ b/src/chrome/content/rules/RightScale.com.xml @@ -5,6 +5,11 @@ - assets + Non-functional hosts: + Self-signed certificate: + - forums.rightscale.com + - www.forums.rightscale.com + Fully covered subdomains: @@ -31,18 +36,18 @@ --> + - + + + + - - - + diff --git a/src/chrome/content/rules/Righthaven.xml b/src/chrome/content/rules/Righthaven.xml index 3b2414d720ef..36895ff09ae8 100644 --- a/src/chrome/content/rules/Righthaven.xml +++ b/src/chrome/content/rules/Righthaven.xml @@ -6,7 +6,7 @@ Fetch error: http://righthaven.com/ => https://righthaven.com/: (7, 'Failed to c Disabled by https-everywhere-checker because: Fetch error: http://righthaven.com/ => https://righthaven.com/: (28, 'Connection timed out after 10001 milliseconds') --> - + @@ -14,7 +14,7 @@ Fetch error: http://righthaven.com/ => https://righthaven.com/: (28, 'Connection - + - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Riksgalden.se.xml b/src/chrome/content/rules/Riksgalden.se.xml index 26121972f206..3c2884e420c9 100644 --- a/src/chrome/content/rules/Riksgalden.se.xml +++ b/src/chrome/content/rules/Riksgalden.se.xml @@ -1,8 +1,26 @@ - + - - - + + + + + + + + + + + diff --git a/src/chrome/content/rules/Ringinout.com.xml b/src/chrome/content/rules/Ringinout.com.xml deleted file mode 100644 index 3c776326a6f7..000000000000 --- a/src/chrome/content/rules/Ringinout.com.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/RingtoneMatcher.com.xml b/src/chrome/content/rules/RingtoneMatcher.com.xml index 8aadfeb9b8c8..82658845c002 100644 --- a/src/chrome/content/rules/RingtoneMatcher.com.xml +++ b/src/chrome/content/rules/RingtoneMatcher.com.xml @@ -9,7 +9,6 @@ - + diff --git a/src/chrome/content/rules/Ripe.net.xml b/src/chrome/content/rules/Ripe.net.xml index 3c4bee8337e6..f745bb56f1c2 100644 --- a/src/chrome/content/rules/Ripe.net.xml +++ b/src/chrome/content/rules/Ripe.net.xml @@ -26,7 +26,7 @@ - + https://www.ripoffreport.com/: Too many !www: mismatched --> - + - + + - - + diff --git a/src/chrome/content/rules/Risala.org.xml b/src/chrome/content/rules/Risala.org.xml new file mode 100644 index 000000000000..6e5b4884dc81 --- /dev/null +++ b/src/chrome/content/rules/Risala.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Risc_OS_Open.xml b/src/chrome/content/rules/Risc_OS_Open.xml index bb283efcd8e6..2be6bd54b299 100644 --- a/src/chrome/content/rules/Risc_OS_Open.xml +++ b/src/chrome/content/rules/Risc_OS_Open.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/RiskIQ.com.xml b/src/chrome/content/rules/RiskIQ.com.xml index 97ee51d9822f..2be98686e5ac 100644 --- a/src/chrome/content/rules/RiskIQ.com.xml +++ b/src/chrome/content/rules/RiskIQ.com.xml @@ -5,7 +5,7 @@ - + - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Ritter.vg.xml b/src/chrome/content/rules/Ritter.vg.xml index cad69844caff..cd42c84d93a9 100644 --- a/src/chrome/content/rules/Ritter.vg.xml +++ b/src/chrome/content/rules/Ritter.vg.xml @@ -1,12 +1,30 @@ - + - - + Timeout: + - cloud1 + - cloud2 + + Refused: + - cloud9 + Mismatched: + - www (fixed by this ruleset) + - ec2 + - ipv4 + - ipv6 + - mail + - vconf - + Self-signed: + - cloud8 +--> + + + + + + + diff --git a/src/chrome/content/rules/Rivalseek.com.xml b/src/chrome/content/rules/Rivalseek.com.xml index 18ddaa6a87ab..0e80a78510d6 100644 --- a/src/chrome/content/rules/Rivalseek.com.xml +++ b/src/chrome/content/rules/Rivalseek.com.xml @@ -12,7 +12,7 @@ Fetch error: http://www.rivalseek.com/ => https://www.rivalseek.com/: (28, 'Conn - www.rivalseek.com --> - + diff --git a/src/chrome/content/rules/River_Island.xml b/src/chrome/content/rules/River_Island.xml index bb3d51b5f34c..e1170100f43b 100644 --- a/src/chrome/content/rules/River_Island.xml +++ b/src/chrome/content/rules/River_Island.xml @@ -39,14 +39,22 @@ - + + + + + + + + - + + - + - + diff --git a/src/chrome/content/rules/Riyadonline.com.xml b/src/chrome/content/rules/Riyadonline.com.xml index 74662b515788..04f79491a13a 100644 --- a/src/chrome/content/rules/Riyadonline.com.xml +++ b/src/chrome/content/rules/Riyadonline.com.xml @@ -8,7 +8,7 @@ Fetch error: http://corp.riyadonline.com/ => https://corp.riyadonline.com/: Cycl Riyad Bank --> - + @@ -16,7 +16,6 @@ Fetch error: http://corp.riyadonline.com/ => https://corp.riyadonline.com/: Cycl - + diff --git a/src/chrome/content/rules/Rjz.ch.xml b/src/chrome/content/rules/Rjz.ch.xml new file mode 100644 index 000000000000..f183d050395f --- /dev/null +++ b/src/chrome/content/rules/Rjz.ch.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Rkn.gov.ru.xml b/src/chrome/content/rules/Rkn.gov.ru.xml index 0d792ed665a6..f79df3503edf 100644 --- a/src/chrome/content/rules/Rkn.gov.ru.xml +++ b/src/chrome/content/rules/Rkn.gov.ru.xml @@ -23,7 +23,7 @@ test.rkn.gov.ru different content ¹ mismatch ³ timed out --> - + diff --git a/src/chrome/content/rules/Rl0.ru.xml b/src/chrome/content/rules/Rl0.ru.xml index 7699bcdcfea5..6fd87bc3e73b 100644 --- a/src/chrome/content/rules/Rl0.ru.xml +++ b/src/chrome/content/rules/Rl0.ru.xml @@ -30,7 +30,7 @@ Fetch error: http://rimg09.rl0.ru/ => https://rimg09.rl0.ru/: (51, "SSL: no alte ² 504 --> - + diff --git a/src/chrome/content/rules/RoadRunner.xml b/src/chrome/content/rules/RoadRunner.xml deleted file mode 100644 index babf099fb162..000000000000 --- a/src/chrome/content/rules/RoadRunner.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Roadtrippers.xml b/src/chrome/content/rules/Roadtrippers.xml index dff8bf7f35ea..f62b879a3c24 100644 --- a/src/chrome/content/rules/Roadtrippers.xml +++ b/src/chrome/content/rules/Roadtrippers.xml @@ -36,7 +36,7 @@ --> - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Rob.lgbt.xml b/src/chrome/content/rules/Rob.lgbt.xml new file mode 100644 index 000000000000..e7f9eaf4ce1b --- /dev/null +++ b/src/chrome/content/rules/Rob.lgbt.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Robert.ca.xml b/src/chrome/content/rules/Robert.ca.xml new file mode 100644 index 000000000000..ab1287b28477 --- /dev/null +++ b/src/chrome/content/rules/Robert.ca.xml @@ -0,0 +1,68 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/RobertJPrince.net.xml b/src/chrome/content/rules/RobertJPrince.net.xml new file mode 100644 index 000000000000..73fbe2eb9a4d --- /dev/null +++ b/src/chrome/content/rules/RobertJPrince.net.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Roberts_Space_Industries.com.xml b/src/chrome/content/rules/Roberts_Space_Industries.com.xml index 8617a1a94e28..088d1d401f03 100644 --- a/src/chrome/content/rules/Roberts_Space_Industries.com.xml +++ b/src/chrome/content/rules/Roberts_Space_Industries.com.xml @@ -8,7 +8,7 @@ Non-2xx HTTP code: http://forums.robertsspaceindustries.com/ (200) => https://fo - .robertsspaceindustries.com --> - + @@ -19,7 +19,7 @@ Non-2xx HTTP code: http://forums.robertsspaceindustries.com/ (200) => https://fo --> - + http://robinbarnard.com/: (6, 'Could not resolve host: robinbarnard.com') -Fetch error: http://www.robinbarnard.com/ => http://www.robinbarnard.com/: (6, 'Could not resolve host: www.robinbarnard.com') - - CN: *.justhost.com - ---> - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Roblox.xml b/src/chrome/content/rules/Roblox.xml index f15d2a9b3afc..7df5e501e939 100644 --- a/src/chrome/content/rules/Roblox.xml +++ b/src/chrome/content/rules/Roblox.xml @@ -1,85 +1,106 @@ - - - +--> + + + - + + + + + - - + + + + + - - + - + + + - - - - - @@ -100,7 +121,6 @@ - diff --git a/src/chrome/content/rules/RobotShop.xml b/src/chrome/content/rules/RobotShop.xml index 9c5b5dc9ffbf..e0e0a6815542 100644 --- a/src/chrome/content/rules/RobotShop.xml +++ b/src/chrome/content/rules/RobotShop.xml @@ -5,7 +5,7 @@ - + https://www.roccat.org/: Redirect for 'ht mixedcontent due to css on www from www. --> - + diff --git a/src/chrome/content/rules/Rochford.gov.uk.xml b/src/chrome/content/rules/Rochford.gov.uk.xml index 14973c10e76d..7177fcd8719e 100644 --- a/src/chrome/content/rules/Rochford.gov.uk.xml +++ b/src/chrome/content/rules/Rochford.gov.uk.xml @@ -44,7 +44,7 @@ - www from $self ᵐ - Images, on: - + - www from fs-drupal-rochford.s3.amazonaws.com - www from $self ᵐ @@ -65,7 +65,7 @@ --> - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Rock_Paper_Photo.com.xml b/src/chrome/content/rules/Rock_Paper_Photo.com.xml index 5cbb20634041..bd1cdcca33a6 100644 --- a/src/chrome/content/rules/Rock_Paper_Photo.com.xml +++ b/src/chrome/content/rules/Rock_Paper_Photo.com.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://rockpaperphoto.com/ => https://rockpaperphoto.com/: (7, 'Failed to connect to rockpaperphoto.com port 443: Connection refused') --> - + diff --git a/src/chrome/content/rules/Rock_Paper_Shotgun.com.xml b/src/chrome/content/rules/Rock_Paper_Shotgun.com.xml index a23068216a3d..84be15266f49 100644 --- a/src/chrome/content/rules/Rock_Paper_Shotgun.com.xml +++ b/src/chrome/content/rules/Rock_Paper_Shotgun.com.xml @@ -27,7 +27,7 @@ - + diff --git a/src/chrome/content/rules/RockefellerFoundation.org.xml b/src/chrome/content/rules/RockefellerFoundation.org.xml new file mode 100644 index 000000000000..af6feb1fdb6a --- /dev/null +++ b/src/chrome/content/rules/RockefellerFoundation.org.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Rocket.Chat.xml b/src/chrome/content/rules/Rocket.Chat.xml index 6c99e7fec589..6e1873699f31 100644 --- a/src/chrome/content/rules/Rocket.Chat.xml +++ b/src/chrome/content/rules/Rocket.Chat.xml @@ -7,7 +7,7 @@ - + + + + + + diff --git a/src/chrome/content/rules/Roddis.xml b/src/chrome/content/rules/Roddis.xml deleted file mode 100644 index f59f0a9f8576..000000000000 --- a/src/chrome/content/rules/Roddis.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - diff --git a/src/chrome/content/rules/Roe.ch.xml b/src/chrome/content/rules/Roe.ch.xml index e0408df51a19..fda977c515ea 100644 --- a/src/chrome/content/rules/Roe.ch.xml +++ b/src/chrome/content/rules/Roe.ch.xml @@ -1,7 +1,9 @@ - + + + - + diff --git a/src/chrome/content/rules/Rogers-Bank.xml b/src/chrome/content/rules/Rogers-Bank.xml new file mode 100644 index 000000000000..75d2f1a9b918 --- /dev/null +++ b/src/chrome/content/rules/Rogers-Bank.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Roia.biz.xml b/src/chrome/content/rules/Roia.biz.xml index 610a78471dba..b52082fb7273 100644 --- a/src/chrome/content/rules/Roia.biz.xml +++ b/src/chrome/content/rules/Roia.biz.xml @@ -27,7 +27,7 @@ --> - + https://track.roiservice.com/: (6, Disabled by https-everywhere-checker because: Fetch error: http://track.roiservice.com/ => https://track.roiservice.com/: (6, 'Could not resolve host: track.roiservice.com') --> - + - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Roku.com.xml b/src/chrome/content/rules/Roku.com.xml index 2875baa506c4..bcd34eab2dc5 100644 --- a/src/chrome/content/rules/Roku.com.xml +++ b/src/chrome/content/rules/Roku.com.xml @@ -11,7 +11,10 @@ - + + + + https://www.roleplaychat.org/: (7, * Secured by us --> - + diff --git a/src/chrome/content/rules/Rolex.com.xml b/src/chrome/content/rules/Rolex.com.xml index 8f6afad1cfb4..d9f1049d24d0 100644 --- a/src/chrome/content/rules/Rolex.com.xml +++ b/src/chrome/content/rules/Rolex.com.xml @@ -28,7 +28,7 @@ - + https://secure.rollcall.com/: (6, 'Could no platform should be removed with Ffx 24. --> - + - + + + @@ -60,4 +62,4 @@ Fetch error: http://rollcall.com/ => https://secure.rollcall.com/: (6, 'Could no - \ No newline at end of file + diff --git a/src/chrome/content/rules/Rollbar.xml b/src/chrome/content/rules/Rollbar.xml index f81248002b62..516a70a38af2 100644 --- a/src/chrome/content/rules/Rollbar.xml +++ b/src/chrome/content/rules/Rollbar.xml @@ -16,4 +16,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Rolling_Stone.com.xml b/src/chrome/content/rules/Rolling_Stone.com.xml index ec61296d1322..5040c9fc8d20 100644 --- a/src/chrome/content/rules/Rolling_Stone.com.xml +++ b/src/chrome/content/rules/Rolling_Stone.com.xml @@ -55,7 +55,10 @@ Fetch error: http://rollingstone.com/ => https://rollingstone.com/: (7, 'Failed - + + + + @@ -76,7 +79,6 @@ Fetch error: http://rollingstone.com/ => https://rollingstone.com/: (7, 'Failed - + diff --git a/src/chrome/content/rules/Rolling_Stone_Subscriptions.com.xml b/src/chrome/content/rules/Rolling_Stone_Subscriptions.com.xml index f3c778dbe3eb..d2710c78f145 100644 --- a/src/chrome/content/rules/Rolling_Stone_Subscriptions.com.xml +++ b/src/chrome/content/rules/Rolling_Stone_Subscriptions.com.xml @@ -10,7 +10,7 @@ - + @@ -19,4 +19,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Roloil.xml b/src/chrome/content/rules/Roloil.xml index e06fbec590cf..da81f24f84a1 100644 --- a/src/chrome/content/rules/Roloil.xml +++ b/src/chrome/content/rules/Roloil.xml @@ -4,13 +4,10 @@ --> - + - + - - - \ No newline at end of file + diff --git a/src/chrome/content/rules/RomStation.fr.xml b/src/chrome/content/rules/RomStation.fr.xml new file mode 100644 index 000000000000..444901aeedd7 --- /dev/null +++ b/src/chrome/content/rules/RomStation.fr.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Romab.se.xml b/src/chrome/content/rules/Romab.se.xml index d79f73677921..95a7a6eedc42 100644 --- a/src/chrome/content/rules/Romab.se.xml +++ b/src/chrome/content/rules/Romab.se.xml @@ -1,7 +1,7 @@ diff --git a/src/chrome/content/rules/Romhacking.net.xml b/src/chrome/content/rules/Romhacking.net.xml new file mode 100644 index 000000000000..1ceba9fc892d --- /dev/null +++ b/src/chrome/content/rules/Romhacking.net.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/RoosterTeeth.com.xml b/src/chrome/content/rules/RoosterTeeth.com.xml new file mode 100644 index 000000000000..4159b657ca81 --- /dev/null +++ b/src/chrome/content/rules/RoosterTeeth.com.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/Root.cz.xml b/src/chrome/content/rules/Root.cz.xml deleted file mode 100644 index 9cc907eee19e..000000000000 --- a/src/chrome/content/rules/Root.cz.xml +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/RootBSD.net.xml b/src/chrome/content/rules/RootBSD.net.xml index 865e238e29c2..b5287654fc5b 100644 --- a/src/chrome/content/rules/RootBSD.net.xml +++ b/src/chrome/content/rules/RootBSD.net.xml @@ -1,13 +1,14 @@ - + + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/RoseHosting.com.xml b/src/chrome/content/rules/RoseHosting.com.xml index d4d988b2dce4..4318f23b3f1a 100644 --- a/src/chrome/content/rules/RoseHosting.com.xml +++ b/src/chrome/content/rules/RoseHosting.com.xml @@ -1,15 +1,10 @@ - + diff --git a/src/chrome/content/rules/Roskilde_University.xml b/src/chrome/content/rules/Roskilde_University.xml index 26e688766366..c4a937fb1402 100644 --- a/src/chrome/content/rules/Roskilde_University.xml +++ b/src/chrome/content/rules/Roskilde_University.xml @@ -9,7 +9,7 @@ Fetch error: http://www.ruc.dk/ => https://www.ruc.dk/: (60, 'SSL certificate pr - ^ (404, valid cert) --> - + @@ -21,4 +21,4 @@ Fetch error: http://www.ruc.dk/ => https://www.ruc.dk/: (60, 'SSL certificate pr - \ No newline at end of file + diff --git a/src/chrome/content/rules/Ross_Ulbricht.org.xml b/src/chrome/content/rules/Ross_Ulbricht.org.xml index e4275ec19484..9c32856ef0a2 100644 --- a/src/chrome/content/rules/Ross_Ulbricht.org.xml +++ b/src/chrome/content/rules/Ross_Ulbricht.org.xml @@ -1,4 +1,4 @@ - + diff --git a/src/chrome/content/rules/Rossendale.gov.uk.xml b/src/chrome/content/rules/Rossendale.gov.uk.xml index 0c9b97f0149b..853ecb83ed7c 100644 --- a/src/chrome/content/rules/Rossendale.gov.uk.xml +++ b/src/chrome/content/rules/Rossendale.gov.uk.xml @@ -32,7 +32,7 @@ - + + + + + + + diff --git a/src/chrome/content/rules/Roster-Teeth.xml b/src/chrome/content/rules/Roster-Teeth.xml deleted file mode 100644 index 6575dd8b74ed..000000000000 --- a/src/chrome/content/rules/Roster-Teeth.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/RotaryView.com.xml b/src/chrome/content/rules/RotaryView.com.xml index 7aa6ba39e022..a1fa011a8dfe 100644 --- a/src/chrome/content/rules/RotaryView.com.xml +++ b/src/chrome/content/rules/RotaryView.com.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Rother.gov.uk-falsemixed.xml b/src/chrome/content/rules/Rother.gov.uk-falsemixed.xml deleted file mode 100644 index 81e9aec9250b..000000000000 --- a/src/chrome/content/rules/Rother.gov.uk-falsemixed.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Rother.gov.uk.xml b/src/chrome/content/rules/Rother.gov.uk.xml index 0fed3a52f037..47ab9d12754b 100644 --- a/src/chrome/content/rules/Rother.gov.uk.xml +++ b/src/chrome/content/rules/Rother.gov.uk.xml @@ -100,7 +100,7 @@ - + https://myaccount.rotherham.g ˢ Secured by us --> - + @@ -62,7 +62,7 @@ Fetch error: http://myaccount.rotherham.gov.uk/ => https://myaccount.rotherham.g - + - - - - - - - - - - - diff --git a/src/chrome/content/rules/RottenTomatoes.com.xml b/src/chrome/content/rules/RottenTomatoes.com.xml index 2828634845bc..8de8c3389618 100644 --- a/src/chrome/content/rules/RottenTomatoes.com.xml +++ b/src/chrome/content/rules/RottenTomatoes.com.xml @@ -29,7 +29,7 @@ --> - + diff --git a/src/chrome/content/rules/Rottenecards.xml b/src/chrome/content/rules/Rottenecards.xml index 06571c4fbcd8..5ffbf12b62e7 100644 --- a/src/chrome/content/rules/Rottenecards.xml +++ b/src/chrome/content/rules/Rottenecards.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://rottenecards.com/ => https://rottenecards.com/: (60, 'SSL certificate problem: unable to get local issuer certificate') Fetch error: http://www.rottenecards.com/ => https://www.rottenecards.com/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + @@ -19,4 +19,4 @@ Fetch error: http://www.rottenecards.com/ => https://www.rottenecards.com/: (60, - \ No newline at end of file + diff --git a/src/chrome/content/rules/Rough_Trade_Gear.xml b/src/chrome/content/rules/Rough_Trade_Gear.xml index 922ef41480a6..49d2727e6074 100644 --- a/src/chrome/content/rules/Rough_Trade_Gear.xml +++ b/src/chrome/content/rules/Rough_Trade_Gear.xml @@ -12,7 +12,7 @@ - + diff --git a/src/chrome/content/rules/Roundhouse.org.uk.xml b/src/chrome/content/rules/Roundhouse.org.uk.xml new file mode 100644 index 000000000000..73538a27981d --- /dev/null +++ b/src/chrome/content/rules/Roundhouse.org.uk.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Roundhouse.xml b/src/chrome/content/rules/Roundhouse.xml deleted file mode 100644 index 1510fa85bca8..000000000000 --- a/src/chrome/content/rules/Roundhouse.xml +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Rovi.xml b/src/chrome/content/rules/Rovi.xml index 72d977b19d4c..00dc4bc949c0 100644 --- a/src/chrome/content/rules/Rovi.xml +++ b/src/chrome/content/rules/Rovi.xml @@ -1,9 +1,4 @@ + + + + + + diff --git a/src/chrome/content/rules/Rows.io.xml b/src/chrome/content/rules/Rows.io.xml deleted file mode 100644 index 05c52ac1eb79..000000000000 --- a/src/chrome/content/rules/Rows.io.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Royal-Academy-of-Engineering.xml b/src/chrome/content/rules/Royal-Academy-of-Engineering.xml index fc4c2c521a0e..b4dca747688d 100644 --- a/src/chrome/content/rules/Royal-Academy-of-Engineering.xml +++ b/src/chrome/content/rules/Royal-Academy-of-Engineering.xml @@ -6,13 +6,14 @@ Fetch error: http://raeng.org.uk/ => https://www.raeng.org.uk/: Too many redirec Disabled by https-everywhere-checker because: Fetch error: http://raeng.org.uk/ => https://www.raeng.org.uk/: Cycle detected - URL already encountered: https://www.raeng.org.uk/ --> - + - + + - + - + - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Royal-Society-of-Chemistry-mismatches.xml b/src/chrome/content/rules/Royal-Society-of-Chemistry-mismatches.xml deleted file mode 100644 index e9d6f8a130ad..000000000000 --- a/src/chrome/content/rules/Royal-Society-of-Chemistry-mismatches.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Royal-Society-of-Chemistry.xml b/src/chrome/content/rules/Royal-Society-of-Chemistry.xml index f94bf3b81812..b58ac81978e7 100644 --- a/src/chrome/content/rules/Royal-Society-of-Chemistry.xml +++ b/src/chrome/content/rules/Royal-Society-of-Chemistry.xml @@ -1,31 +1,33 @@ - - - - - - - - - - - - - - - - - + + + + diff --git a/src/chrome/content/rules/Royal.uk.xml b/src/chrome/content/rules/Royal.uk.xml new file mode 100644 index 000000000000..cbd3ca491132 --- /dev/null +++ b/src/chrome/content/rules/Royal.uk.xml @@ -0,0 +1,10 @@ + + + + + + + diff --git a/src/chrome/content/rules/RoyalAustralianNavy.xml b/src/chrome/content/rules/RoyalAustralianNavy.xml index de2b907228a9..03d082a6f635 100644 --- a/src/chrome/content/rules/RoyalAustralianNavy.xml +++ b/src/chrome/content/rules/RoyalAustralianNavy.xml @@ -6,10 +6,10 @@ Fetch error: http://navy.gov.au/ => https://www.navy.gov.au/: (7, 'Failed to con Disabled by https-everywhere-checker because: Fetch error: http://navy.gov.au/ => https://www.navy.gov.au/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/RoyalGovUK.xml b/src/chrome/content/rules/RoyalGovUK.xml index b3fe227ea1af..c16dce724a8c 100644 --- a/src/chrome/content/rules/RoyalGovUK.xml +++ b/src/chrome/content/rules/RoyalGovUK.xml @@ -5,11 +5,11 @@ Fetch error: http://royal.gov.uk/ => https://www.royal.gov.uk/: (60, 'SSL certif Fetch error: http://www.royal.gov.uk/ => https://www.royal.gov.uk/: (60, 'SSL certificate problem: certificate has expired') --> - + - + diff --git a/src/chrome/content/rules/RoyalLib.com.xml b/src/chrome/content/rules/RoyalLib.com.xml new file mode 100644 index 000000000000..b9684ebb9614 --- /dev/null +++ b/src/chrome/content/rules/RoyalLib.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/RoyalNavy.mod.uk.xml b/src/chrome/content/rules/RoyalNavy.mod.uk.xml new file mode 100644 index 000000000000..cc355ade27d0 --- /dev/null +++ b/src/chrome/content/rules/RoyalNavy.mod.uk.xml @@ -0,0 +1,17 @@ + + + + + + + + diff --git a/src/chrome/content/rules/RoyalSociety.org.xml b/src/chrome/content/rules/RoyalSociety.org.xml new file mode 100644 index 000000000000..096392118b26 --- /dev/null +++ b/src/chrome/content/rules/RoyalSociety.org.xml @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Royal_Mail.xml b/src/chrome/content/rules/Royal_Mail.xml index be94ae949be9..14cbed1c085f 100644 --- a/src/chrome/content/rules/Royal_Mail.xml +++ b/src/chrome/content/rules/Royal_Mail.xml @@ -9,8 +9,9 @@ - - + + + diff --git a/src/chrome/content/rules/Royal_Mail_Group.xml b/src/chrome/content/rules/Royal_Mail_Group.xml deleted file mode 100644 index ecd96b4431e0..000000000000 --- a/src/chrome/content/rules/Royal_Mail_Group.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Royal_Society.org.xml b/src/chrome/content/rules/Royal_Society.org.xml deleted file mode 100644 index 4e1457a7fd70..000000000000 --- a/src/chrome/content/rules/Royal_Society.org.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Rpgmakerweb.com.xml b/src/chrome/content/rules/Rpgmakerweb.com.xml index 272e3297b521..d59d7836661b 100644 --- a/src/chrome/content/rules/Rpgmakerweb.com.xml +++ b/src/chrome/content/rules/Rpgmakerweb.com.xml @@ -22,7 +22,7 @@ - + - + https://rpw.sh/: (60, 'SSL certificate problem: c Fetch error: http://www.rpw.sh/ => https://www.rpw.sh/: (60, 'SSL certificate problem: certificate has expired') --> - + - + + + + + + + + + diff --git a/src/chrome/content/rules/Rtbf.be.xml b/src/chrome/content/rules/Rtbf.be.xml index 4291f8751310..e64b7a2b8cc6 100644 --- a/src/chrome/content/rules/Rtbf.be.xml +++ b/src/chrome/content/rules/Rtbf.be.xml @@ -22,7 +22,7 @@ Fetch error: http://www.static.rtbf.be/ => https://ssl-www.static.rtbf.be/: (51, - www.rtbf.be --> - + @@ -56,7 +56,7 @@ Fetch error: http://www.static.rtbf.be/ => https://ssl-www.static.rtbf.be/: (51, - + + + + + + + + diff --git a/src/chrome/content/rules/Ru4.com.xml b/src/chrome/content/rules/Ru4.com.xml deleted file mode 100644 index 369fe42e7f1a..000000000000 --- a/src/chrome/content/rules/Ru4.com.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Rubenerd.com.xml b/src/chrome/content/rules/Rubenerd.com.xml index 0577d0b9eedd..8524ce16d377 100644 --- a/src/chrome/content/rules/Rubenerd.com.xml +++ b/src/chrome/content/rules/Rubenerd.com.xml @@ -6,7 +6,7 @@ - + - - + + + + - + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + - + + + + + + + - - - - - - - - - - - - - - + diff --git a/src/chrome/content/rules/Rublacklist.net.xml b/src/chrome/content/rules/Rublacklist.net.xml deleted file mode 100644 index aa5975979b5c..000000000000 --- a/src/chrome/content/rules/Rublacklist.net.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Ruby-China.org.xml b/src/chrome/content/rules/Ruby-China.org.xml index f1396f44ab12..4c5de44a95a6 100644 --- a/src/chrome/content/rules/Ruby-China.org.xml +++ b/src/chrome/content/rules/Ruby-China.org.xml @@ -1,19 +1,13 @@ - - - - - - + - + diff --git a/src/chrome/content/rules/RubyGems.org-problematic.xml b/src/chrome/content/rules/RubyGems.org-problematic.xml index 74ac9304e2dd..26645d823cfe 100644 --- a/src/chrome/content/rules/RubyGems.org-problematic.xml +++ b/src/chrome/content/rules/RubyGems.org-problematic.xml @@ -6,17 +6,9 @@ - - - + - - - - + diff --git a/src/chrome/content/rules/RubyGems.xml b/src/chrome/content/rules/RubyGems.xml index cb2a88d886b3..304a09d4095f 100644 --- a/src/chrome/content/rules/RubyGems.xml +++ b/src/chrome/content/rules/RubyGems.xml @@ -1,89 +1,34 @@ - - - - - - - - - - - - + + + + + + - + - + diff --git a/src/chrome/content/rules/Rudix.org.xml b/src/chrome/content/rules/Rudix.org.xml new file mode 100644 index 000000000000..9bcd75d74d16 --- /dev/null +++ b/src/chrome/content/rules/Rudix.org.xml @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Rudloff.pro.xml b/src/chrome/content/rules/Rudloff.pro.xml deleted file mode 100644 index c1cb927fc0e7..000000000000 --- a/src/chrome/content/rules/Rudloff.pro.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/Rue_La_La.com.xml b/src/chrome/content/rules/Rue_La_La.com.xml index 2be81ff47b87..697102018c08 100644 --- a/src/chrome/content/rules/Rue_La_La.com.xml +++ b/src/chrome/content/rules/Rue_La_La.com.xml @@ -16,4 +16,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Rufus.xml b/src/chrome/content/rules/Rufus.xml index 9731043ee504..69fa7a71a6a7 100644 --- a/src/chrome/content/rules/Rufus.xml +++ b/src/chrome/content/rules/Rufus.xml @@ -1,7 +1,7 @@ - + diff --git a/src/chrome/content/rules/RugStudio.xml b/src/chrome/content/rules/RugStudio.xml index 6df923ef3d2b..652e29886848 100644 --- a/src/chrome/content/rules/RugStudio.xml +++ b/src/chrome/content/rules/RugStudio.xml @@ -11,7 +11,8 @@ - + + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Rugby.gov.uk.xml b/src/chrome/content/rules/Rugby.gov.uk.xml index 537c82c0009e..a29acc5c0799 100644 --- a/src/chrome/content/rules/Rugby.gov.uk.xml +++ b/src/chrome/content/rules/Rugby.gov.uk.xml @@ -53,7 +53,7 @@ - + https://www.rz.ruhr-uni-bochum.de/: (60, 'SSL certificate problem: unable to get local issuer certificate') - Ruhr-Universitaet Bochum For rules causing false/broken MCB, see Ruhr-Uni-Bochum.de-falsemixed.xml. @@ -19,9 +15,11 @@ Fetch error: http://www.rz.ruhr-uni-bochum.de/ => https://www.rz.ruhr-uni-bochum - aktuell.ruhr-uni-bochum.de ¹ - ruhr-uni-bochum.de ² + - www.rz.ruhr-uni-bochum.de ³ ¹ Mismatched, CN: www5.rz.ruhr-uni-bochum.de ² Mismatched + ³ Incomplete certificate chain, fails fetch test Partially covered subdomains: @@ -41,7 +39,6 @@ Fetch error: http://www.rz.ruhr-uni-bochum.de/ => https://www.rz.ruhr-uni-bochum - Images, on: - www.cits, www.lps from www.rz ¹ - - www.rz from aktuell.rub.de - www5.rz from www.rz ¹ - www5.rz from www ¹ - www from aktuell.rub.de ² @@ -51,7 +48,7 @@ Fetch error: http://www.rz.ruhr-uni-bochum.de/ => https://www.rz.ruhr-uni-bochum ² Not secured by us <= mismatched --> - + @@ -62,7 +59,6 @@ Fetch error: http://www.rz.ruhr-uni-bochum.de/ => https://www.rz.ruhr-uni-bochum - diff --git a/src/chrome/content/rules/RukometniTrener.com.xml b/src/chrome/content/rules/RukometniTrener.com.xml new file mode 100644 index 000000000000..f40e31f2581f --- /dev/null +++ b/src/chrome/content/rules/RukometniTrener.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Ruliweb.com.xml b/src/chrome/content/rules/Ruliweb.com.xml new file mode 100644 index 000000000000..b2ddf9655b9a --- /dev/null +++ b/src/chrome/content/rules/Ruliweb.com.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Rumors_City.com.xml b/src/chrome/content/rules/Rumors_City.com.xml index 96b6afa8d5e1..d81f9c8a3e39 100644 --- a/src/chrome/content/rules/Rumors_City.com.xml +++ b/src/chrome/content/rules/Rumors_City.com.xml @@ -31,7 +31,7 @@ --> - + - + https://status.runabove.com/: (6, 'C For other OVH Group coverage, see Ovh.xml. --> - + diff --git a/src/chrome/content/rules/RunRepeat.com.xml b/src/chrome/content/rules/RunRepeat.com.xml new file mode 100644 index 000000000000..8787fb1c1294 --- /dev/null +++ b/src/chrome/content/rules/RunRepeat.com.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/RunSafe.xml b/src/chrome/content/rules/RunSafe.xml index b57bdb9ac482..bfcfd0e4f36c 100644 --- a/src/chrome/content/rules/RunSafe.xml +++ b/src/chrome/content/rules/RunSafe.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Runbook.io.xml b/src/chrome/content/rules/Runbook.io.xml index 313673b47f27..d12632e5a98c 100644 --- a/src/chrome/content/rules/Runbook.io.xml +++ b/src/chrome/content/rules/Runbook.io.xml @@ -6,7 +6,7 @@ Fetch error: http://dash.runbook.io/ => https://dash.runbook.io/: (6, 'Could not For other Assembly coverage, see Assembly.com.xml. --> - + diff --git a/src/chrome/content/rules/Ruptly.tv.xml b/src/chrome/content/rules/Ruptly.tv.xml index 260717dfa394..0b7c803e27e8 100644 --- a/src/chrome/content/rules/Ruptly.tv.xml +++ b/src/chrome/content/rules/Ruptly.tv.xml @@ -17,7 +17,7 @@ --> - + + + + + + + + + + diff --git a/src/chrome/content/rules/RushMyPassport.com.xml b/src/chrome/content/rules/RushMyPassport.com.xml index f0a63a02039d..36e393b72ec6 100644 --- a/src/chrome/content/rules/RushMyPassport.com.xml +++ b/src/chrome/content/rules/RushMyPassport.com.xml @@ -14,4 +14,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Russell_Group.ac.uk.xml b/src/chrome/content/rules/Russell_Group.ac.uk.xml index 2130282a0e8d..8586ea4fafc1 100644 --- a/src/chrome/content/rules/Russell_Group.ac.uk.xml +++ b/src/chrome/content/rules/Russell_Group.ac.uk.xml @@ -13,7 +13,7 @@ - + - + - - - - - - - - - - - diff --git a/src/chrome/content/rules/Russian_American_Company.xml b/src/chrome/content/rules/Russian_American_Company.xml index 02d05703a3c7..397737343ff2 100644 --- a/src/chrome/content/rules/Russian_American_Company.xml +++ b/src/chrome/content/rules/Russian_American_Company.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Rust-Lang.org.xml b/src/chrome/content/rules/Rust-Lang.org.xml index b53adb2f6f79..aad60653dffb 100644 --- a/src/chrome/content/rules/Rust-Lang.org.xml +++ b/src/chrome/content/rules/Rust-Lang.org.xml @@ -1,27 +1,17 @@ - - + + + + + + + - - + diff --git a/src/chrome/content/rules/RustFest.eu.xml b/src/chrome/content/rules/RustFest.eu.xml new file mode 100644 index 000000000000..0d14eb45a508 --- /dev/null +++ b/src/chrome/content/rules/RustFest.eu.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Rutgers_University.xml b/src/chrome/content/rules/Rutgers_University.xml index fc402c1ffe93..2b6ca2e24e0b 100644 --- a/src/chrome/content/rules/Rutgers_University.xml +++ b/src/chrome/content/rules/Rutgers_University.xml @@ -472,7 +472,7 @@ - + https://ruxconbreakpoint.com/: (60, Fetch error: http://www.ruxconbreakpoint.com/ => https://www.ruxconbreakpoint.com/: (60, 'SSL certificate problem: certificate has expired') --> - + @@ -13,4 +13,4 @@ Fetch error: http://www.ruxconbreakpoint.com/ => https://www.ruxconbreakpoint.co - \ No newline at end of file + diff --git a/src/chrome/content/rules/Rvb.ru.xml b/src/chrome/content/rules/Rvb.ru.xml new file mode 100644 index 000000000000..376563a3e11a --- /dev/null +++ b/src/chrome/content/rules/Rvb.ru.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Rxpharmacyusa.com.xml b/src/chrome/content/rules/Rxpharmacyusa.com.xml index fcc4c45252df..a27667704d9f 100644 --- a/src/chrome/content/rules/Rxpharmacyusa.com.xml +++ b/src/chrome/content/rules/Rxpharmacyusa.com.xml @@ -5,7 +5,7 @@ Fetch error: http://rxpharmacyusa.com/ => https://rxpharmacyusa.com/: (28, 'Conn Fetch error: http://www.rxpharmacyusa.com/ => https://www.rxpharmacyusa.com/: (28, 'Connection timed out after 20000 milliseconds') --> - + @@ -16,4 +16,4 @@ Fetch error: http://www.rxpharmacyusa.com/ => https://www.rxpharmacyusa.com/: (2 - \ No newline at end of file + diff --git a/src/chrome/content/rules/Rxportalexpress.com.xml b/src/chrome/content/rules/Rxportalexpress.com.xml index 219b7db98052..58a5f2973764 100644 --- a/src/chrome/content/rules/Rxportalexpress.com.xml +++ b/src/chrome/content/rules/Rxportalexpress.com.xml @@ -25,7 +25,7 @@ --> - + - + @@ -11,7 +11,7 @@ - + diff --git a/src/chrome/content/rules/Ryedale.gov.uk.xml b/src/chrome/content/rules/Ryedale.gov.uk.xml index 4763a8190392..e08342d40b40 100644 --- a/src/chrome/content/rules/Ryedale.gov.uk.xml +++ b/src/chrome/content/rules/Ryedale.gov.uk.xml @@ -20,7 +20,7 @@ - + https://s-3.com/: (60, 'SSL certificate problem: Fetch error: http://www.s-3.com/ => https://www.s-3.com/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + diff --git a/src/chrome/content/rules/S-Msft.com.xml b/src/chrome/content/rules/S-Msft.com.xml index 383a30055d73..a2f0dfbf3f30 100644 --- a/src/chrome/content/rules/S-Msft.com.xml +++ b/src/chrome/content/rules/S-Msft.com.xml @@ -96,7 +96,7 @@ --> - + + + + + + + + diff --git a/src/chrome/content/rules/S-msn.com.xml b/src/chrome/content/rules/S-msn.com.xml index 74f23a1a2800..dd2b0944b9fc 100644 --- a/src/chrome/content/rules/S-msn.com.xml +++ b/src/chrome/content/rules/S-msn.com.xml @@ -106,7 +106,7 @@ Fetch error: http://wst.s-msn.com/ => https://wst.s-msn.com/: (28, 'Operation ti ** CN: *.sharepointonline.com; works --> - + diff --git a/src/chrome/content/rules/S.to.xml b/src/chrome/content/rules/S.to.xml new file mode 100644 index 000000000000..8d21909f7a3a --- /dev/null +++ b/src/chrome/content/rules/S.to.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/S2-Games-mismatches.xml b/src/chrome/content/rules/S2-Games-mismatches.xml index 03cf80021f6b..1e5b16f78477 100644 --- a/src/chrome/content/rules/S2-Games-mismatches.xml +++ b/src/chrome/content/rules/S2-Games-mismatches.xml @@ -4,7 +4,6 @@ - + diff --git a/src/chrome/content/rules/S2-Games.xml b/src/chrome/content/rules/S2-Games.xml index 379d8cfddf5d..d51493adf3d3 100644 --- a/src/chrome/content/rules/S2-Games.xml +++ b/src/chrome/content/rules/S2-Games.xml @@ -8,15 +8,15 @@ Disabled by https-everywhere-checker because: Fetch error: http://savage2.com/ => https://savage2.com/: Redirect for 'http://savage2.com/en/' missing Location Fetch error: http://www.savage2.com/ => https://savage2.com/: Redirect for 'http://www.savage2.com/en/' missing Location --> - + - - + + diff --git a/src/chrome/content/rules/S2Media.xml b/src/chrome/content/rules/S2Media.xml index 89e86641812b..aabe8a5041a3 100644 --- a/src/chrome/content/rules/S2Media.xml +++ b/src/chrome/content/rules/S2Media.xml @@ -1,16 +1,12 @@ - + - - - - - + diff --git a/src/chrome/content/rules/S2Member.com-falsemixed.xml b/src/chrome/content/rules/S2Member.com-falsemixed.xml deleted file mode 100644 index bbb94d87fcbb..000000000000 --- a/src/chrome/content/rules/S2Member.com-falsemixed.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/S2Member.com.xml b/src/chrome/content/rules/S2Member.com.xml deleted file mode 100644 index b5565c55d199..000000000000 --- a/src/chrome/content/rules/S2Member.com.xml +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/SACNAS.xml b/src/chrome/content/rules/SACNAS.xml index adb67b030139..526ec2beb0e2 100644 --- a/src/chrome/content/rules/SACNAS.xml +++ b/src/chrome/content/rules/SACNAS.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://sacnas.org/ => https://sacnas.org/: Too many redirects while fetching 'https://sacnas.org/' --> - + diff --git a/src/chrome/content/rules/SAKURA_Internet.xml b/src/chrome/content/rules/SAKURA_Internet.xml index 034cd8f97a78..83f5a072394e 100644 --- a/src/chrome/content/rules/SAKURA_Internet.xml +++ b/src/chrome/content/rules/SAKURA_Internet.xml @@ -64,8 +64,8 @@ - - + + https://www.samba.com/: (35, 'Unknown SSL prot --> - + + + + - + diff --git a/src/chrome/content/rules/SANS.edu.xml b/src/chrome/content/rules/SANS.edu.xml index 0e536a300f56..1317fa379bb8 100644 --- a/src/chrome/content/rules/SANS.edu.xml +++ b/src/chrome/content/rules/SANS.edu.xml @@ -13,7 +13,7 @@ - + https://spam.sans.org/: (7, 'Failed to con Other SANS Institute rulesets: - - DShield.org.xml - - GIAC.org.xml - SANS.edu.xml - Securing_the_Human.org.xml @@ -22,7 +20,7 @@ Fetch error: http://spam.sans.org/ => https://spam.sans.org/: (7, 'Failed to con * Secured by us --> - + @@ -33,7 +31,7 @@ Fetch error: http://spam.sans.org/ => https://spam.sans.org/: (7, 'Failed to con - + diff --git a/src/chrome/content/rules/SAP.xml b/src/chrome/content/rules/SAP.xml index 3f003c3f63e5..1166c63a64b3 100644 --- a/src/chrome/content/rules/SAP.xml +++ b/src/chrome/content/rules/SAP.xml @@ -63,7 +63,7 @@ DNS Name: autodiscovery.sap.com --> - + @@ -89,4 +89,4 @@ DNS Name: autodiscovery.sap.com - \ No newline at end of file + diff --git a/src/chrome/content/rules/SAS_Institute.xml b/src/chrome/content/rules/SAS_Institute.xml index 0b88ee85cb34..5df0f2fbcf39 100644 --- a/src/chrome/content/rules/SAS_Institute.xml +++ b/src/chrome/content/rules/SAS_Institute.xml @@ -45,7 +45,7 @@ - . - login --> - + https://www.sata-io.org/: (60, 'SSL certific Fetch error: http://www.sata-io.org/ => https://www.sata-io.org/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + diff --git a/src/chrome/content/rules/SAT_symposium.org.xml b/src/chrome/content/rules/SAT_symposium.org.xml index f1c4537eb6dd..da97b4fbc286 100644 --- a/src/chrome/content/rules/SAT_symposium.org.xml +++ b/src/chrome/content/rules/SAT_symposium.org.xml @@ -5,7 +5,7 @@ Fetch error: http://satsymposium.org/ => https://satsymposium.org/: (60, 'SSL ce Fetch error: http://www.satsymposium.org/ => https://www.satsymposium.org/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/SAnet.cd.xml b/src/chrome/content/rules/SAnet.cd.xml new file mode 100644 index 000000000000..338ba409bd3f --- /dev/null +++ b/src/chrome/content/rules/SAnet.cd.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/SAnet.me.xml b/src/chrome/content/rules/SAnet.me.xml deleted file mode 100644 index b0ba6a3f3036..000000000000 --- a/src/chrome/content/rules/SAnet.me.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/SB-Innovation.de.xml b/src/chrome/content/rules/SB-Innovation.de.xml index f5053cf85cca..a007555f5c01 100644 --- a/src/chrome/content/rules/SB-Innovation.de.xml +++ b/src/chrome/content/rules/SB-Innovation.de.xml @@ -4,7 +4,7 @@ - + - + - - - + diff --git a/src/chrome/content/rules/SBI.xml b/src/chrome/content/rules/SBI.xml index 360ea68b6f9c..bb462be14608 100644 --- a/src/chrome/content/rules/SBI.xml +++ b/src/chrome/content/rules/SBI.xml @@ -29,7 +29,7 @@ Fetch error: http://sbiforsme.sbi.co.in/ => https://sbiforsme.sbi.co.in/: (60, ' - vijaypath --> - + @@ -48,7 +48,7 @@ Fetch error: http://sbiforsme.sbi.co.in/ => https://sbiforsme.sbi.co.in/: (60, ' --> - + diff --git a/src/chrome/content/rules/SBNdev.net.xml b/src/chrome/content/rules/SBNdev.net.xml deleted file mode 100644 index ed21a7027659..000000000000 --- a/src/chrome/content/rules/SBNdev.net.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/SBV_Improver.com.xml b/src/chrome/content/rules/SBV_Improver.com.xml index 2b9de715f9ee..895154180058 100644 --- a/src/chrome/content/rules/SBV_Improver.com.xml +++ b/src/chrome/content/rules/SBV_Improver.com.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://sbvimprover.com/ => https://sbvimprover.com/: (7, 'Failed to connect to sbvimprover.com port 443: Connection timed out') --> - + diff --git a/src/chrome/content/rules/SC.edu.xml b/src/chrome/content/rules/SC.edu.xml index 31bd6c7486ba..1690024ce526 100644 --- a/src/chrome/content/rules/SC.edu.xml +++ b/src/chrome/content/rules/SC.edu.xml @@ -21,11 +21,12 @@ - + + + - + diff --git a/src/chrome/content/rules/SCAP_Sync.com.xml b/src/chrome/content/rules/SCAP_Sync.com.xml index 305f49fadf45..c542195aac49 100644 --- a/src/chrome/content/rules/SCAP_Sync.com.xml +++ b/src/chrome/content/rules/SCAP_Sync.com.xml @@ -7,7 +7,7 @@ Fetch error: http://www.scapsync.com/ => https://www.scapsync.com/: (28, 'Connec For other Lunarline coverage, see Lunarline.com.xml. --> - + diff --git a/src/chrome/content/rules/SCDN.co.xml b/src/chrome/content/rules/SCDN.co.xml index 77bcb3e8b05e..a17c8d81cbd3 100644 --- a/src/chrome/content/rules/SCDN.co.xml +++ b/src/chrome/content/rules/SCDN.co.xml @@ -27,7 +27,7 @@ - + - + - + - + + + + + + + + + + diff --git a/src/chrome/content/rules/SELinux_Project.org.xml b/src/chrome/content/rules/SELinux_Project.org.xml index a577ce96246a..6be30de6f8a6 100644 --- a/src/chrome/content/rules/SELinux_Project.org.xml +++ b/src/chrome/content/rules/SELinux_Project.org.xml @@ -28,7 +28,7 @@ --> - + https://semabuzz.com/: (28, 'Operation timed out after 0 milliseconds with 0 out of 0 bytes received') Fetch error: http://www.semabuzz.com/ => https://www.semabuzz.com/: (28, 'Operation timed out after 0 milliseconds with 0 out of 0 bytes received') --> - + diff --git a/src/chrome/content/rules/SEO_Training_Toronto.xml b/src/chrome/content/rules/SEO_Training_Toronto.xml index 12b35086382b..59aa1b712af5 100644 --- a/src/chrome/content/rules/SEO_Training_Toronto.xml +++ b/src/chrome/content/rules/SEO_Training_Toronto.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/SEScoops.xml b/src/chrome/content/rules/SEScoops.xml index 046623a5715b..ae0815d7e8b3 100644 --- a/src/chrome/content/rules/SEScoops.xml +++ b/src/chrome/content/rules/SEScoops.xml @@ -24,4 +24,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/SEstatic.fi.xml b/src/chrome/content/rules/SEstatic.fi.xml deleted file mode 100644 index 3666c09c9eea..000000000000 --- a/src/chrome/content/rules/SEstatic.fi.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/SF-Mail.de.xml b/src/chrome/content/rules/SF-Mail.de.xml index 0094e52f32ba..36db14ff1f72 100644 --- a/src/chrome/content/rules/SF-Mail.de.xml +++ b/src/chrome/content/rules/SF-Mail.de.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://webmail.sf-mail.de/ => https://webmail.sf-mail.de/: (60, 'SSL certificate problem: self signed certificate in certificate chain') --> - + diff --git a/src/chrome/content/rules/SF.net.xml b/src/chrome/content/rules/SF.net.xml index 47015e7ca819..0ef3c740834d 100644 --- a/src/chrome/content/rules/SF.net.xml +++ b/src/chrome/content/rules/SF.net.xml @@ -1,4 +1,10 @@ + - - + + - + + + + + + + diff --git a/src/chrome/content/rules/SFGate.com.xml b/src/chrome/content/rules/SFGate.com.xml new file mode 100644 index 000000000000..01e7d27fdab8 --- /dev/null +++ b/src/chrome/content/rules/SFGate.com.xml @@ -0,0 +1,118 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/SFM-Group.xml b/src/chrome/content/rules/SFM-Group.xml index a1ef21cce058..07d10c726c67 100644 --- a/src/chrome/content/rules/SFM-Group.xml +++ b/src/chrome/content/rules/SFM-Group.xml @@ -5,7 +5,11 @@ Fetch error: http://sfm-offshore.com/ => https://www.sfm-offshore.com/: (60, 'SS - + + + + + diff --git a/src/chrome/content/rules/SGI.com.xml b/src/chrome/content/rules/SGI.com.xml index 589c7a828817..96f46a8cef23 100644 --- a/src/chrome/content/rules/SGI.com.xml +++ b/src/chrome/content/rules/SGI.com.xml @@ -12,4 +12,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/SH.se.xml b/src/chrome/content/rules/SH.se.xml index b237cd386a08..e324ee5607a6 100644 --- a/src/chrome/content/rules/SH.se.xml +++ b/src/chrome/content/rules/SH.se.xml @@ -1,7 +1,6 @@ - - + diff --git a/src/chrome/content/rules/SHAttered.io.xml b/src/chrome/content/rules/SHAttered.io.xml new file mode 100644 index 000000000000..ba6d6b1e3156 --- /dev/null +++ b/src/chrome/content/rules/SHAttered.io.xml @@ -0,0 +1,10 @@ + + + + + + diff --git a/src/chrome/content/rules/SHKSPR.mobi.xml b/src/chrome/content/rules/SHKSPR.mobi.xml index 82164383b893..35b66d1585b1 100644 --- a/src/chrome/content/rules/SHKSPR.mobi.xml +++ b/src/chrome/content/rules/SHKSPR.mobi.xml @@ -14,7 +14,7 @@ --> - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/SIFF.xml b/src/chrome/content/rules/SIFF.xml index 3fc02b3624d7..665dfc24afd0 100644 --- a/src/chrome/content/rules/SIFF.xml +++ b/src/chrome/content/rules/SIFF.xml @@ -6,7 +6,7 @@ - + - + diff --git a/src/chrome/content/rules/SIL-International.xml b/src/chrome/content/rules/SIL-International.xml index 3fb7948f8f61..86a3f3ee8da6 100644 --- a/src/chrome/content/rules/SIL-International.xml +++ b/src/chrome/content/rules/SIL-International.xml @@ -27,7 +27,6 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/SIL_International-problematic.xml b/src/chrome/content/rules/SIL_International-problematic.xml index f89f9a92d2ae..5000d691a20e 100644 --- a/src/chrome/content/rules/SIL_International-problematic.xml +++ b/src/chrome/content/rules/SIL_International-problematic.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/SIMILE-Widgets.org.xml b/src/chrome/content/rules/SIMILE-Widgets.org.xml new file mode 100644 index 000000000000..6037a13221b2 --- /dev/null +++ b/src/chrome/content/rules/SIMILE-Widgets.org.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/SIRCorp.com.xml b/src/chrome/content/rules/SIRCorp.com.xml new file mode 100644 index 000000000000..8907f5d06596 --- /dev/null +++ b/src/chrome/content/rules/SIRCorp.com.xml @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/src/chrome/content/rules/SJ.se.xml b/src/chrome/content/rules/SJ.se.xml index 0a14340ddd56..80f2e45d0639 100644 --- a/src/chrome/content/rules/SJ.se.xml +++ b/src/chrome/content/rules/SJ.se.xml @@ -1,21 +1,18 @@ - - - - + - - - - - - - + - diff --git a/src/chrome/content/rules/SKNVibes.xml b/src/chrome/content/rules/SKNVibes.xml deleted file mode 100644 index a4a9de3286de..000000000000 --- a/src/chrome/content/rules/SKNVibes.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/SK_hynix.com.xml b/src/chrome/content/rules/SK_hynix.com.xml index e9e0b60c1c2d..3bca17f52206 100644 --- a/src/chrome/content/rules/SK_hynix.com.xml +++ b/src/chrome/content/rules/SK_hynix.com.xml @@ -18,7 +18,7 @@ Fetch error: http://skhynix.com/ => https://skhynix.com/: (35, 'error:140773E8:S - www.skhynix.com --> - + diff --git a/src/chrome/content/rules/SKortekaas.nl.xml b/src/chrome/content/rules/SKortekaas.nl.xml index 0b62ee5032e6..a8e154324131 100644 --- a/src/chrome/content/rules/SKortekaas.nl.xml +++ b/src/chrome/content/rules/SKortekaas.nl.xml @@ -4,4 +4,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/SLOOH.xml b/src/chrome/content/rules/SLOOH.xml deleted file mode 100644 index 93f849b9348b..000000000000 --- a/src/chrome/content/rules/SLOOH.xml +++ /dev/null @@ -1,72 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/SME.sk.xml b/src/chrome/content/rules/SME.sk.xml index 0828b2e047f0..fef8a3a6fb4c 100644 --- a/src/chrome/content/rules/SME.sk.xml +++ b/src/chrome/content/rules/SME.sk.xml @@ -1,4 +1,21 @@ + - + - + - + - + - + @@ -72,7 +89,7 @@ - + @@ -108,8 +125,5 @@ - - diff --git a/src/chrome/content/rules/SMFTA.com.xml b/src/chrome/content/rules/SMFTA.com.xml index 553afa01bcbc..c7d504ecfbca 100644 --- a/src/chrome/content/rules/SMFTA.com.xml +++ b/src/chrome/content/rules/SMFTA.com.xml @@ -15,7 +15,7 @@ Fetch error: http://www.smfta.com/ => https://www.smfta.com/: (7, 'Failed to con - beta (works; mismatched, CN: *.securesites.net) --> - + @@ -24,4 +24,4 @@ Fetch error: http://www.smfta.com/ => https://www.smfta.com/: (7, 'Failed to con - \ No newline at end of file + diff --git a/src/chrome/content/rules/SMF_for_Free.xml b/src/chrome/content/rules/SMF_for_Free.xml index 4ba7178ee9c1..f01e3cbbf9da 100644 --- a/src/chrome/content/rules/SMF_for_Free.xml +++ b/src/chrome/content/rules/SMF_for_Free.xml @@ -16,13 +16,8 @@ --> - + + - - - - - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/SMSSecure.org.xml b/src/chrome/content/rules/SMSSecure.org.xml index 6746a4f5a385..67e72a806214 100644 --- a/src/chrome/content/rules/SMSSecure.org.xml +++ b/src/chrome/content/rules/SMSSecure.org.xml @@ -5,7 +5,7 @@ Fetch error: http://smssecure.org/ => https://smssecure.org/: (60, 'SSL certific Fetch error: http://www.smssecure.org/ => https://www.smssecure.org/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/SMWCentral.net.xml b/src/chrome/content/rules/SMWCentral.net.xml new file mode 100644 index 000000000000..16b93b0e83e1 --- /dev/null +++ b/src/chrome/content/rules/SMWCentral.net.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/SMWCentral.xml b/src/chrome/content/rules/SMWCentral.xml deleted file mode 100644 index e3eefdc8b503..000000000000 --- a/src/chrome/content/rules/SMWCentral.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/SNCB.xml b/src/chrome/content/rules/SNCB.xml index cc7d5933b04e..45899247ce59 100644 --- a/src/chrome/content/rules/SNCB.xml +++ b/src/chrome/content/rules/SNCB.xml @@ -2,7 +2,7 @@ - + diff --git a/src/chrome/content/rules/SNL.com.xml b/src/chrome/content/rules/SNL.com.xml index a687bff20d53..3f465c4d798c 100644 --- a/src/chrome/content/rules/SNL.com.xml +++ b/src/chrome/content/rules/SNL.com.xml @@ -19,4 +19,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/SNstatic.fi.xml b/src/chrome/content/rules/SNstatic.fi.xml index fcae4152d962..6b1e6c891450 100644 --- a/src/chrome/content/rules/SNstatic.fi.xml +++ b/src/chrome/content/rules/SNstatic.fi.xml @@ -15,7 +15,7 @@ Fetch error: http://hs11.snstatic.fi/webkuva/oletus/60/1305620265306 => https:// - hs1[0-3] (redirects to http; mismatched, CN: *.hs.fi) --> - + diff --git a/src/chrome/content/rules/SNtech.xml b/src/chrome/content/rules/SNtech.xml index b0cceb63a0f8..738af7c83c53 100644 --- a/src/chrome/content/rules/SNtech.xml +++ b/src/chrome/content/rules/SNtech.xml @@ -13,12 +13,11 @@ Fetch error: http://ssl.sntech.de/ => https://ssl.sntech.de/: (60, 'SSL certific * Shows ssl; mismatched, CN: ssl.sntech.de --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/SOA.org.xml b/src/chrome/content/rules/SOA.org.xml index 9af27de0525e..8548f5287da0 100644 --- a/src/chrome/content/rules/SOA.org.xml +++ b/src/chrome/content/rules/SOA.org.xml @@ -12,7 +12,7 @@ - + diff --git a/src/chrome/content/rules/SOHH.com.xml b/src/chrome/content/rules/SOHH.com.xml index 767b107ef989..0e14581dd18a 100644 --- a/src/chrome/content/rules/SOHH.com.xml +++ b/src/chrome/content/rules/SOHH.com.xml @@ -42,7 +42,7 @@ - + + + + + + + + + + + diff --git a/src/chrome/content/rules/SOS.wa.gov.xml b/src/chrome/content/rules/SOS.wa.gov.xml index cdffaf2f4c28..2eff06226f73 100644 --- a/src/chrome/content/rules/SOS.wa.gov.xml +++ b/src/chrome/content/rules/SOS.wa.gov.xml @@ -1,7 +1,17 @@ + - - - - - - - + + + + - - + - + diff --git a/src/chrome/content/rules/SPBAS.com.xml b/src/chrome/content/rules/SPBAS.com.xml index ca003b49598f..406b5d5456d7 100644 --- a/src/chrome/content/rules/SPBAS.com.xml +++ b/src/chrome/content/rules/SPBAS.com.xml @@ -12,7 +12,7 @@ Fetch error: http://www.spbas.com/ => https://www.spbas.com/: (60, 'SSL certific - blog --> - + diff --git a/src/chrome/content/rules/SPCA.org.hk.xml b/src/chrome/content/rules/SPCA.org.hk.xml new file mode 100644 index 000000000000..ea4fd2aef649 --- /dev/null +++ b/src/chrome/content/rules/SPCA.org.hk.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/SPDNS.de.xml b/src/chrome/content/rules/SPDNS.de.xml index 4dfcd4f404fc..90f744891297 100644 --- a/src/chrome/content/rules/SPDNS.de.xml +++ b/src/chrome/content/rules/SPDNS.de.xml @@ -20,7 +20,7 @@ --> - + - + - + - + Mismatch: + - selma.splcenter.org - +--> + + + - - - - + - + - diff --git a/src/chrome/content/rules/SPU.ac.th.xml b/src/chrome/content/rules/SPU.ac.th.xml index 730ee9cc3007..bed0d639abda 100644 --- a/src/chrome/content/rules/SPU.ac.th.xml +++ b/src/chrome/content/rules/SPU.ac.th.xml @@ -118,6 +118,6 @@ - diff --git a/src/chrome/content/rules/SP_Times.com.xml b/src/chrome/content/rules/SP_Times.com.xml deleted file mode 100644 index 05bc8030c597..000000000000 --- a/src/chrome/content/rules/SP_Times.com.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/SPajIT.xml b/src/chrome/content/rules/SPajIT.xml deleted file mode 100644 index 2e3913bf0739..000000000000 --- a/src/chrome/content/rules/SPajIT.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/SQL_Converter.xml b/src/chrome/content/rules/SQL_Converter.xml index b71617ff5fb8..672c5ad2ff82 100644 --- a/src/chrome/content/rules/SQL_Converter.xml +++ b/src/chrome/content/rules/SQL_Converter.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/SQLite.xml b/src/chrome/content/rules/SQLite.xml index 1bd5ffd7b7cd..a325900ab5df 100644 --- a/src/chrome/content/rules/SQLite.xml +++ b/src/chrome/content/rules/SQLite.xml @@ -1,20 +1,27 @@ + - + + + - + - - - - + diff --git a/src/chrome/content/rules/SQLiteBrowser.org.xml b/src/chrome/content/rules/SQLiteBrowser.org.xml new file mode 100644 index 000000000000..b9979d9ecad6 --- /dev/null +++ b/src/chrome/content/rules/SQLiteBrowser.org.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/SRA_OSS.xml b/src/chrome/content/rules/SRA_OSS.xml index 7b9779a51dab..d6043f364022 100644 --- a/src/chrome/content/rules/SRA_OSS.xml +++ b/src/chrome/content/rules/SRA_OSS.xml @@ -1,16 +1,7 @@ - - + + - - - \ No newline at end of file + diff --git a/src/chrome/content/rules/SRB2.org.xml b/src/chrome/content/rules/SRB2.org.xml index 7b86223be901..58778494f8f4 100644 --- a/src/chrome/content/rules/SRB2.org.xml +++ b/src/chrome/content/rules/SRB2.org.xml @@ -31,7 +31,7 @@ - + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/SRF.ch.xml b/src/chrome/content/rules/SRF.ch.xml new file mode 100644 index 000000000000..aa7c347d5279 --- /dev/null +++ b/src/chrome/content/rules/SRF.ch.xml @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/SRGSSR.ch-problematic.xml b/src/chrome/content/rules/SRGSSR.ch-problematic.xml new file mode 100644 index 000000000000..5eaf20b06ba5 --- /dev/null +++ b/src/chrome/content/rules/SRGSSR.ch-problematic.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/SRGSSR.ch.xml b/src/chrome/content/rules/SRGSSR.ch.xml new file mode 100644 index 000000000000..ddc17d95f962 --- /dev/null +++ b/src/chrome/content/rules/SRGSSR.ch.xml @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/SRI_Hash.org.xml b/src/chrome/content/rules/SRI_Hash.org.xml deleted file mode 100644 index d71b0cdfac4e..000000000000 --- a/src/chrome/content/rules/SRI_Hash.org.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/SRM.de.xml b/src/chrome/content/rules/SRM.de.xml index 75bb3b5c517b..e561bfcbf055 100644 --- a/src/chrome/content/rules/SRM.de.xml +++ b/src/chrome/content/rules/SRM.de.xml @@ -20,7 +20,7 @@ Fetch error: http://www.srm.de/ => https://www.srm.de/: Cycle detected - URL alr platform should be removed with Ffx 24. --> - + diff --git a/src/chrome/content/rules/SRSPlus.com.xml b/src/chrome/content/rules/SRSPlus.com.xml index b2825bf11d33..07040859f648 100644 --- a/src/chrome/content/rules/SRSPlus.com.xml +++ b/src/chrome/content/rules/SRSPlus.com.xml @@ -29,7 +29,7 @@ - + - + - + diff --git a/src/chrome/content/rules/SSBWiki.com.xml b/src/chrome/content/rules/SSBWiki.com.xml new file mode 100644 index 000000000000..815bc4eca517 --- /dev/null +++ b/src/chrome/content/rules/SSBWiki.com.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/SSDeV.org.xml b/src/chrome/content/rules/SSDeV.org.xml new file mode 100644 index 000000000000..c4ffdca864f1 --- /dev/null +++ b/src/chrome/content/rules/SSDeV.org.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/SSL-Cert-Shop.com.xml b/src/chrome/content/rules/SSL-Cert-Shop.com.xml deleted file mode 100644 index de57ee1a4a25..000000000000 --- a/src/chrome/content/rules/SSL-Cert-Shop.com.xml +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/SSL-Images-Amazon.com.xml b/src/chrome/content/rules/SSL-Images-Amazon.com.xml new file mode 100644 index 000000000000..f65483cde500 --- /dev/null +++ b/src/chrome/content/rules/SSL-Images-Amazon.com.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/SSL-Trust.com.xml b/src/chrome/content/rules/SSL-Trust.com.xml index fd8494307e1c..e8818fb3d8b2 100644 --- a/src/chrome/content/rules/SSL-Trust.com.xml +++ b/src/chrome/content/rules/SSL-Trust.com.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.ssl-trust.com/ => https://www.ssl-trust.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.ssl-trust.com'") --> - + diff --git a/src/chrome/content/rules/SSLEnforcer.com.xml b/src/chrome/content/rules/SSLEnforcer.com.xml new file mode 100644 index 000000000000..77aa7f2e133f --- /dev/null +++ b/src/chrome/content/rules/SSLEnforcer.com.xml @@ -0,0 +1,10 @@ + + + + + + + diff --git a/src/chrome/content/rules/SSL_Labs.xml b/src/chrome/content/rules/SSL_Labs.xml new file mode 100644 index 000000000000..c0025aa18990 --- /dev/null +++ b/src/chrome/content/rules/SSL_Labs.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/SSLlabs.xml b/src/chrome/content/rules/SSLlabs.xml deleted file mode 100644 index ea967522b5eb..000000000000 --- a/src/chrome/content/rules/SSLlabs.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/SSLshopper.xml b/src/chrome/content/rules/SSLshopper.xml index 960a6b890e95..f2869c942a44 100644 --- a/src/chrome/content/rules/SSLshopper.xml +++ b/src/chrome/content/rules/SSLshopper.xml @@ -4,7 +4,7 @@ - + - - - + + + + + + @@ -70,13 +73,5 @@ --> - - - - - - + diff --git a/src/chrome/content/rules/ST.org.xml b/src/chrome/content/rules/ST.org.xml index ace1024ea017..99c92ad291a5 100644 --- a/src/chrome/content/rules/ST.org.xml +++ b/src/chrome/content/rules/ST.org.xml @@ -1,8 +1,17 @@ - + + - - + + + + diff --git a/src/chrome/content/rules/STA-Travel.at.xml b/src/chrome/content/rules/STA-Travel.at.xml new file mode 100644 index 000000000000..81e55ed017ac --- /dev/null +++ b/src/chrome/content/rules/STA-Travel.at.xml @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/STA-Travel.ch.xml b/src/chrome/content/rules/STA-Travel.ch.xml new file mode 100644 index 000000000000..fc8611babd21 --- /dev/null +++ b/src/chrome/content/rules/STA-Travel.ch.xml @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/STA-Travel.co.jp.xml b/src/chrome/content/rules/STA-Travel.co.jp.xml new file mode 100644 index 000000000000..2b46bd642bad --- /dev/null +++ b/src/chrome/content/rules/STA-Travel.co.jp.xml @@ -0,0 +1,26 @@ + + + + + + + + diff --git a/src/chrome/content/rules/STA-Travel.co.nz.xml b/src/chrome/content/rules/STA-Travel.co.nz.xml new file mode 100644 index 000000000000..83ead9f632cb --- /dev/null +++ b/src/chrome/content/rules/STA-Travel.co.nz.xml @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/STA-Travel.co.th.xml b/src/chrome/content/rules/STA-Travel.co.th.xml new file mode 100644 index 000000000000..9094db564b32 --- /dev/null +++ b/src/chrome/content/rules/STA-Travel.co.th.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/STA-Travel.co.za.xml b/src/chrome/content/rules/STA-Travel.co.za.xml new file mode 100644 index 000000000000..fc63a93e6cf2 --- /dev/null +++ b/src/chrome/content/rules/STA-Travel.co.za.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/STA-Travel.com.au.xml b/src/chrome/content/rules/STA-Travel.com.au.xml new file mode 100644 index 000000000000..0b0a3803c626 --- /dev/null +++ b/src/chrome/content/rules/STA-Travel.com.au.xml @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/STA-Travel.com.sg.xml b/src/chrome/content/rules/STA-Travel.com.sg.xml new file mode 100644 index 000000000000..9fdc7d485666 --- /dev/null +++ b/src/chrome/content/rules/STA-Travel.com.sg.xml @@ -0,0 +1,25 @@ + + + + + + + + diff --git a/src/chrome/content/rules/STA-Travel.com.xml b/src/chrome/content/rules/STA-Travel.com.xml new file mode 100644 index 000000000000..fcd0243cc351 --- /dev/null +++ b/src/chrome/content/rules/STA-Travel.com.xml @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/STA-Travel.de.xml b/src/chrome/content/rules/STA-Travel.de.xml new file mode 100644 index 000000000000..0756444bf02c --- /dev/null +++ b/src/chrome/content/rules/STA-Travel.de.xml @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/STARTTLS.info.xml b/src/chrome/content/rules/STARTTLS.info.xml index 10cce5a46347..b6d8acbd319b 100644 --- a/src/chrome/content/rules/STARTTLS.info.xml +++ b/src/chrome/content/rules/STARTTLS.info.xml @@ -5,7 +5,7 @@ Fetch error: http://starttls.info/ => https://starttls.info/: (51, "SSL: no alte Fetch error: http://www.starttls.info/ => https://www.starttls.info/: (51, "SSL: no alternative certificate subject name matches target host name 'www.starttls.info'") --> - + diff --git a/src/chrome/content/rules/STELLAService.xml b/src/chrome/content/rules/STELLAService.xml index f868299c1ab6..43d25e88ea19 100644 --- a/src/chrome/content/rules/STELLAService.xml +++ b/src/chrome/content/rules/STELLAService.xml @@ -47,7 +47,7 @@ - + - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/STM-assoc.org.xml b/src/chrome/content/rules/STM-assoc.org.xml new file mode 100644 index 000000000000..8f553390f810 --- /dev/null +++ b/src/chrome/content/rules/STM-assoc.org.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/STRATO_MailCenter.xml b/src/chrome/content/rules/STRATO_MailCenter.xml index 28ebc2ae639a..4ff0ae05a608 100644 --- a/src/chrome/content/rules/STRATO_MailCenter.xml +++ b/src/chrome/content/rules/STRATO_MailCenter.xml @@ -10,7 +10,7 @@ Fetch error: http://www.strato-mailcenter.com/ => https://www.strato-mailcenter. Cert only matches www. --> - + diff --git a/src/chrome/content/rules/STRATO_Pro.xml b/src/chrome/content/rules/STRATO_Pro.xml index bea7edb6de99..9ceb7e865483 100644 --- a/src/chrome/content/rules/STRATO_Pro.xml +++ b/src/chrome/content/rules/STRATO_Pro.xml @@ -13,7 +13,7 @@ Fetch error: http://www.strato-pro.com/ => https://www.strato-pro.com/: (60, 'SS Cert only matches www. --> - + diff --git a/src/chrome/content/rules/STSDB.com.xml b/src/chrome/content/rules/STSDB.com.xml deleted file mode 100644 index ba1dc6d21037..000000000000 --- a/src/chrome/content/rules/STSDB.com.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/STUBA.sk.xml b/src/chrome/content/rules/STUBA.sk.xml new file mode 100644 index 000000000000..7917df9eedb5 --- /dev/null +++ b/src/chrome/content/rules/STUBA.sk.xml @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/SUEDKURIER.de.xml b/src/chrome/content/rules/SUEDKURIER.de.xml new file mode 100644 index 000000000000..3cd0511b42f9 --- /dev/null +++ b/src/chrome/content/rules/SUEDKURIER.de.xml @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/SUPERVALU.xml b/src/chrome/content/rules/SUPERVALU.xml index 28fb204fbbee..7f95b821fb00 100644 --- a/src/chrome/content/rules/SUPERVALU.xml +++ b/src/chrome/content/rules/SUPERVALU.xml @@ -10,7 +10,7 @@ Fetch error: http://www.supervalu.com/ => https://www.supervalu.com/: (28, 'Conn Cert only matches www. --> - + @@ -22,4 +22,4 @@ Fetch error: http://www.supervalu.com/ => https://www.supervalu.com/: (28, 'Conn - \ No newline at end of file + diff --git a/src/chrome/content/rules/SURFconext.nl.xml b/src/chrome/content/rules/SURFconext.nl.xml index 2b1aab409b08..70535ab5ad18 100644 --- a/src/chrome/content/rules/SURFconext.nl.xml +++ b/src/chrome/content/rules/SURFconext.nl.xml @@ -28,7 +28,7 @@ - + - + - + https://www.svgopen.org/: (51, "SSL: no alternative certificate subject name matches target host name 'www.svgopen.org'") Fetch error: http://www.svgopen.org/ => https://www.svgopen.org/: (51, "SSL: no alternative certificate subject name matches target host name 'www.svgopen.org'") --> - + diff --git a/src/chrome/content/rules/SVN-Lab.xml b/src/chrome/content/rules/SVN-Lab.xml deleted file mode 100644 index a6e5e41ea5b9..000000000000 --- a/src/chrome/content/rules/SVN-Lab.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/SVT.se.xml b/src/chrome/content/rules/SVT.se.xml index d93555d93b1b..4182ad71078f 100644 --- a/src/chrome/content/rules/SVT.se.xml +++ b/src/chrome/content/rules/SVT.se.xml @@ -1,27 +1,19 @@ - - - + + + + - + + + - - diff --git a/src/chrome/content/rules/SWISS-Virtual.com.xml b/src/chrome/content/rules/SWISS-Virtual.com.xml new file mode 100644 index 000000000000..259ee94a4ccd --- /dev/null +++ b/src/chrome/content/rules/SWISS-Virtual.com.xml @@ -0,0 +1,14 @@ + + + + + + + diff --git a/src/chrome/content/rules/SWISSCEX.com.xml b/src/chrome/content/rules/SWISSCEX.com.xml deleted file mode 100644 index c18a199da4f7..000000000000 --- a/src/chrome/content/rules/SWISSCEX.com.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/SWM.de.xml b/src/chrome/content/rules/SWM.de.xml index 9f5047da978e..54a2cadfc59c 100644 --- a/src/chrome/content/rules/SWM.de.xml +++ b/src/chrome/content/rules/SWM.de.xml @@ -18,4 +18,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/SWR.de.xml b/src/chrome/content/rules/SWR.de.xml new file mode 100644 index 000000000000..e1bf5c0f1225 --- /dev/null +++ b/src/chrome/content/rules/SWR.de.xml @@ -0,0 +1,115 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/SWT.com.xml b/src/chrome/content/rules/SWT.com.xml index a5e25bc02814..0b9ad8098f11 100644 --- a/src/chrome/content/rules/SWT.com.xml +++ b/src/chrome/content/rules/SWT.com.xml @@ -5,7 +5,7 @@ - + - - + - + + diff --git a/src/chrome/content/rules/Sabq.org.xml b/src/chrome/content/rules/Sabq.org.xml new file mode 100644 index 000000000000..b286059676ec --- /dev/null +++ b/src/chrome/content/rules/Sabq.org.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Sabre_Hospitality_Solutions.xml b/src/chrome/content/rules/Sabre_Hospitality_Solutions.xml index 0d46761e427e..9701451842f1 100644 --- a/src/chrome/content/rules/Sabre_Hospitality_Solutions.xml +++ b/src/chrome/content/rules/Sabre_Hospitality_Solutions.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Sachsen.de.xml b/src/chrome/content/rules/Sachsen.de.xml index 8804aa91ef01..930b17762443 100644 --- a/src/chrome/content/rules/Sachsen.de.xml +++ b/src/chrome/content/rules/Sachsen.de.xml @@ -98,7 +98,7 @@ - + diff --git a/src/chrome/content/rules/Sacramento-Bee.xml b/src/chrome/content/rules/Sacramento-Bee.xml new file mode 100644 index 000000000000..3c05b1cf6477 --- /dev/null +++ b/src/chrome/content/rules/Sacramento-Bee.xml @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Sacramento_Bee.xml b/src/chrome/content/rules/Sacramento_Bee.xml deleted file mode 100644 index 1522ad136b6d..000000000000 --- a/src/chrome/content/rules/Sacramento_Bee.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/SadeceHosting.com.xml b/src/chrome/content/rules/SadeceHosting.com.xml deleted file mode 100644 index c5dece473792..000000000000 --- a/src/chrome/content/rules/SadeceHosting.com.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Safari_Flow.com.xml b/src/chrome/content/rules/Safari_Flow.com.xml index 0bed6fd4ce1f..5a6b1c831ec6 100644 --- a/src/chrome/content/rules/Safari_Flow.com.xml +++ b/src/chrome/content/rules/Safari_Flow.com.xml @@ -18,7 +18,7 @@ * Unsecurable <= http reply --> - + diff --git a/src/chrome/content/rules/Safe-mail.net.xml b/src/chrome/content/rules/Safe-mail.net.xml index 8dba2fe1c39a..1a01a1619411 100644 --- a/src/chrome/content/rules/Safe-mail.net.xml +++ b/src/chrome/content/rules/Safe-mail.net.xml @@ -1,19 +1,16 @@ - - - + - - - - - + + + + + + + + + - + diff --git a/src/chrome/content/rules/SafeAssign.xml b/src/chrome/content/rules/SafeAssign.xml deleted file mode 100644 index 0e3079b6a8bc..000000000000 --- a/src/chrome/content/rules/SafeAssign.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/SafeHouse.com.xml b/src/chrome/content/rules/SafeHouse.com.xml new file mode 100644 index 000000000000..67b0da614f79 --- /dev/null +++ b/src/chrome/content/rules/SafeHouse.com.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/SafeNet.xml b/src/chrome/content/rules/SafeNet.xml index 7a794ee1f4b8..f8e60b3e5a6a 100644 --- a/src/chrome/content/rules/SafeNet.xml +++ b/src/chrome/content/rules/SafeNet.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://sentineldiscussion.safenet-inc.com/ => https://sentineldiscussion.safenet-inc.com/: (51, "SSL: no alternative certificate subject name matches target host name 'sentineldiscussion.gemalto.com'") --> - + @@ -35,7 +35,7 @@ Fetch error: http://sentineldiscussion.safenet-inc.com/ => https://sentineldiscu - + + + + + + + + diff --git a/src/chrome/content/rules/SafeSource.org.nz.xml b/src/chrome/content/rules/SafeSource.org.nz.xml deleted file mode 100644 index e2d79ef1211b..000000000000 --- a/src/chrome/content/rules/SafeSource.org.nz.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Safe_Hub_Collective.org.xml b/src/chrome/content/rules/Safe_Hub_Collective.org.xml deleted file mode 100644 index 0bc5ef03d082..000000000000 --- a/src/chrome/content/rules/Safe_Hub_Collective.org.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Safebilling.com.xml b/src/chrome/content/rules/Safebilling.com.xml deleted file mode 100644 index 385947ddbcaa..000000000000 --- a/src/chrome/content/rules/Safebilling.com.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Safecast.org.xml b/src/chrome/content/rules/Safecast.org.xml new file mode 100644 index 000000000000..3dca4f5b8a8e --- /dev/null +++ b/src/chrome/content/rules/Safecast.org.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Safeena.org.xml b/src/chrome/content/rules/Safeena.org.xml new file mode 100644 index 000000000000..e26fa6a9d005 --- /dev/null +++ b/src/chrome/content/rules/Safeena.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Safello.com.xml b/src/chrome/content/rules/Safello.com.xml index da392c8cf710..f5006dd0b93f 100644 --- a/src/chrome/content/rules/Safello.com.xml +++ b/src/chrome/content/rules/Safello.com.xml @@ -11,7 +11,7 @@ --> - + - - - - - - - - - - - diff --git a/src/chrome/content/rules/Safeshepherd.xml b/src/chrome/content/rules/Safeshepherd.xml index cc58f49d4489..24e7fcb712f5 100644 --- a/src/chrome/content/rules/Safeshepherd.xml +++ b/src/chrome/content/rules/Safeshepherd.xml @@ -18,7 +18,7 @@ - + + + + + + + + diff --git a/src/chrome/content/rules/Saga-Group.xml b/src/chrome/content/rules/Saga-Group.xml index 429d663a1c90..280c0920e9cd 100644 --- a/src/chrome/content/rules/Saga-Group.xml +++ b/src/chrome/content/rules/Saga-Group.xml @@ -1,10 +1,11 @@ - + + - + - + + + + + - + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Sagemath.org.xml b/src/chrome/content/rules/Sagemath.org.xml deleted file mode 100644 index 616083c7ef62..000000000000 --- a/src/chrome/content/rules/Sagemath.org.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/src/chrome/content/rules/Sahih-Bukhari.com.xml b/src/chrome/content/rules/Sahih-Bukhari.com.xml new file mode 100644 index 000000000000..d1266e2f205a --- /dev/null +++ b/src/chrome/content/rules/Sahih-Bukhari.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/SailfishOS.org.xml b/src/chrome/content/rules/SailfishOS.org.xml index 4de22f100efc..6d4ebe3ca682 100644 --- a/src/chrome/content/rules/SailfishOS.org.xml +++ b/src/chrome/content/rules/SailfishOS.org.xml @@ -21,7 +21,8 @@ - + + - + + + - + diff --git a/src/chrome/content/rules/Sailthru.xml b/src/chrome/content/rules/Sailthru.xml index a6b481dc06e7..25fc62281e8d 100644 --- a/src/chrome/content/rules/Sailthru.xml +++ b/src/chrome/content/rules/Sailthru.xml @@ -57,7 +57,7 @@ Fetch error: http://me.sailthru.com/ => https://www.sailthru.com/: Too many redi * Secured by us --> - + @@ -94,7 +94,7 @@ Fetch error: http://me.sailthru.com/ => https://www.sailthru.com/: Too many redi - + https://www.sailthru.com/: Too many redi - - diff --git a/src/chrome/content/rules/Saintaardvarkthecarpeted.com.xml b/src/chrome/content/rules/Saintaardvarkthecarpeted.com.xml deleted file mode 100644 index 03953b113b6e..000000000000 --- a/src/chrome/content/rules/Saintaardvarkthecarpeted.com.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Sakura.ne.jp.xml b/src/chrome/content/rules/Sakura.ne.jp.xml index 98738e0e0094..1fadabc5db44 100644 --- a/src/chrome/content/rules/Sakura.ne.jp.xml +++ b/src/chrome/content/rules/Sakura.ne.jp.xml @@ -44,7 +44,7 @@ - + + + + + + + + + + + diff --git a/src/chrome/content/rules/SaleCycle.xml b/src/chrome/content/rules/SaleCycle.xml index ce67cec1f976..670c9835a9e6 100644 --- a/src/chrome/content/rules/SaleCycle.xml +++ b/src/chrome/content/rules/SaleCycle.xml @@ -16,13 +16,16 @@ --> - + + + + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Salenames.ru.xml b/src/chrome/content/rules/Salenames.ru.xml index d76ac91eb076..2e394905a330 100644 --- a/src/chrome/content/rules/Salenames.ru.xml +++ b/src/chrome/content/rules/Salenames.ru.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://partner.salenames.ru/ => https://partner.salenames.ru/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + diff --git a/src/chrome/content/rules/Salk_Institute.xml b/src/chrome/content/rules/Salk_Institute.xml index 6813e804d250..ccbbb986c062 100644 --- a/src/chrome/content/rules/Salk_Institute.xml +++ b/src/chrome/content/rules/Salk_Institute.xml @@ -6,4 +6,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Salla.sa.xml b/src/chrome/content/rules/Salla.sa.xml new file mode 100644 index 000000000000..581c6818f9e4 --- /dev/null +++ b/src/chrome/content/rules/Salla.sa.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Salon.xml b/src/chrome/content/rules/Salon.xml index e3bcdb33ab2b..d5af9bd5b64a 100644 --- a/src/chrome/content/rules/Salon.xml +++ b/src/chrome/content/rules/Salon.xml @@ -37,7 +37,7 @@ Fetch error: http://salon.com/ => https://www.salon.com/: Too many redirects whi * Secured by us --> - + diff --git a/src/chrome/content/rules/Salsa-Labs.xml b/src/chrome/content/rules/Salsa-Labs.xml index 7a644a7473b2..1e52c119767c 100644 --- a/src/chrome/content/rules/Salsa-Labs.xml +++ b/src/chrome/content/rules/Salsa-Labs.xml @@ -61,8 +61,7 @@ - + - + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Sam_Gentle.com.xml b/src/chrome/content/rules/Sam_Gentle.com.xml index 3218756861ea..c28967c161ac 100644 --- a/src/chrome/content/rules/Sam_Gentle.com.xml +++ b/src/chrome/content/rules/Sam_Gentle.com.xml @@ -16,7 +16,7 @@ --> - + https://samwhited.com/: (52, 'Empty reply - + + + + + + + + + diff --git a/src/chrome/content/rules/Sams_Software_and_Consulting.xml b/src/chrome/content/rules/Sams_Software_and_Consulting.xml index 63f1589b69b4..9fa8d6801af0 100644 --- a/src/chrome/content/rules/Sams_Software_and_Consulting.xml +++ b/src/chrome/content/rules/Sams_Software_and_Consulting.xml @@ -6,7 +6,7 @@ Fetch error: http://cdn.samssoftware.com.au/ => https://cdn.samssoftware.com.au/ Some pages redirect to http. --> - + @@ -16,4 +16,4 @@ Fetch error: http://cdn.samssoftware.com.au/ => https://cdn.samssoftware.com.au/ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Samsclass.info.xml b/src/chrome/content/rules/Samsclass.info.xml index ce2e6f9b7075..780886ffe869 100644 --- a/src/chrome/content/rules/Samsclass.info.xml +++ b/src/chrome/content/rules/Samsclass.info.xml @@ -38,7 +38,7 @@ --> - + - + diff --git a/src/chrome/content/rules/Samsung.xml b/src/chrome/content/rules/Samsung.xml index b3a100c8a298..34332a78366d 100644 --- a/src/chrome/content/rules/Samsung.xml +++ b/src/chrome/content/rules/Samsung.xml @@ -1,24 +1,21 @@ - + + + @@ -100,36 +87,19 @@ Non-2xx HTTP code: http://shop.us.samsung.com/ (200) => https://shop.us.samsung. - - - - - + - - - - - - - - + + - - - - - @@ -138,7 +108,7 @@ Non-2xx HTTP code: http://shop.us.samsung.com/ (200) => https://shop.us.samsung. - + @@ -158,24 +128,12 @@ Non-2xx HTTP code: http://shop.us.samsung.com/ (200) => https://shop.us.samsung. + - + - - - - - - - - - - - - - - - + diff --git a/src/chrome/content/rules/SamsungPortal.com.xml b/src/chrome/content/rules/SamsungPortal.com.xml new file mode 100644 index 000000000000..c28c4ff268c4 --- /dev/null +++ b/src/chrome/content/rules/SamsungPortal.com.xml @@ -0,0 +1,19 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Samsung_Apps.xml b/src/chrome/content/rules/Samsung_Apps.xml index e529abc80949..1a403f503abf 100644 --- a/src/chrome/content/rules/Samsung_Apps.xml +++ b/src/chrome/content/rules/Samsung_Apps.xml @@ -1,6 +1,6 @@ diff --git a/src/chrome/content/rules/Samsung_Indiaestore.xml b/src/chrome/content/rules/Samsung_Indiaestore.xml index 29b80426cc98..86747ef380f7 100644 --- a/src/chrome/content/rules/Samsung_Indiaestore.xml +++ b/src/chrome/content/rules/Samsung_Indiaestore.xml @@ -7,11 +7,11 @@ Fetch error: http://www.samsungindiaestore.com/ => https://www.samsungindiaestor For other Samsung coverage, see Samsung.com.xml. --> - + - + - + diff --git a/src/chrome/content/rules/Samsung_Sem.xml b/src/chrome/content/rules/Samsung_Sem.xml deleted file mode 100644 index 1130c47dff25..000000000000 --- a/src/chrome/content/rules/Samsung_Sem.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Samsung_Techwin.xml b/src/chrome/content/rules/Samsung_Techwin.xml index af2cf7e92061..80457cfd79f9 100644 --- a/src/chrome/content/rules/Samsung_Techwin.xml +++ b/src/chrome/content/rules/Samsung_Techwin.xml @@ -1,6 +1,6 @@ - + diff --git a/src/chrome/content/rules/Samsung_mySingle.xml b/src/chrome/content/rules/Samsung_mySingle.xml index d0b83b98b6a8..38f00fb8b579 100644 --- a/src/chrome/content/rules/Samsung_mySingle.xml +++ b/src/chrome/content/rules/Samsung_mySingle.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://light.samsung.net/ => https://light.samsung.net/: (28, 'Connection timed out after 20001 milliseconds') For other Samsung coverage, see Samsung.com.xml. - + Mismatch: test.cyber.* drm.* @@ -26,7 +26,7 @@ Fetch error: http://light.samsung.net/ => https://light.samsung.net/: (28, 'Conn --> - + @@ -34,7 +34,7 @@ Fetch error: http://light.samsung.net/ => https://light.samsung.net/: (28, 'Conn - + diff --git a/src/chrome/content/rules/San-Diego-Reader.xml b/src/chrome/content/rules/San-Diego-Reader.xml index 6d1caebb7a5a..0d62266f24d9 100644 --- a/src/chrome/content/rules/San-Diego-Reader.xml +++ b/src/chrome/content/rules/San-Diego-Reader.xml @@ -10,13 +10,12 @@ Fetch error: http://hummingbird.sandiegoreader.com/ => https://hummingbird.sandi - media.sdreader.com --> - + - + diff --git a/src/chrome/content/rules/San_Francisco_Marathon.xml b/src/chrome/content/rules/San_Francisco_Marathon.xml index a3bcc3a8f060..073d4ae0041f 100644 --- a/src/chrome/content/rules/San_Francisco_Marathon.xml +++ b/src/chrome/content/rules/San_Francisco_Marathon.xml @@ -6,13 +6,13 @@ --> - + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Sanalika.xml b/src/chrome/content/rules/Sanalika.xml index 5d0f09555cd9..0eb8b3c3cd86 100644 --- a/src/chrome/content/rules/Sanalika.xml +++ b/src/chrome/content/rules/Sanalika.xml @@ -6,13 +6,14 @@ --> - + + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Sanalmarket.xml b/src/chrome/content/rules/Sanalmarket.xml index b6e44d77a40d..a266db509670 100644 --- a/src/chrome/content/rules/Sanalmarket.xml +++ b/src/chrome/content/rules/Sanalmarket.xml @@ -5,7 +5,7 @@ - + diff --git a/src/chrome/content/rules/Sandeen.net.xml b/src/chrome/content/rules/Sandeen.net.xml index 92c71cb4b2b4..8584f3caf70a 100644 --- a/src/chrome/content/rules/Sandeen.net.xml +++ b/src/chrome/content/rules/Sandeen.net.xml @@ -12,13 +12,15 @@ Fetch error: http://sandeen.net/ => https://sandeen.net/: (60, 'SSL certificate * Unsecurable --> - + - + + + + - + diff --git a/src/chrome/content/rules/Sandia-National-Laboratories.xml b/src/chrome/content/rules/Sandia-National-Laboratories.xml index 46f6dd2d3f98..6a6e08e48fb5 100644 --- a/src/chrome/content/rules/Sandia-National-Laboratories.xml +++ b/src/chrome/content/rules/Sandia-National-Laboratories.xml @@ -20,7 +20,7 @@ - + - + - + https://sanitarium.se/: (60, 'SSL certificate problem: certificate has expired') Fetch error: http://www.sanitarium.se/ => https://sanitarium.se/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/Sankaty_Advisors.xml b/src/chrome/content/rules/Sankaty_Advisors.xml index 7e1a0d78e1d6..729492c0b07b 100644 --- a/src/chrome/content/rules/Sankaty_Advisors.xml +++ b/src/chrome/content/rules/Sankaty_Advisors.xml @@ -1,7 +1,7 @@ - + @@ -9,8 +9,6 @@ - - + - + @@ -85,4 +84,4 @@ Fetch error: http://santander.co.uk/ => https://www.santander.co.uk/: Cycle dete - + diff --git a/src/chrome/content/rules/Santander_BillPayment.co.uk.xml b/src/chrome/content/rules/Santander_BillPayment.co.uk.xml deleted file mode 100644 index 73997e78024e..000000000000 --- a/src/chrome/content/rules/Santander_BillPayment.co.uk.xml +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Santoku-Linux.com.xml b/src/chrome/content/rules/Santoku-Linux.com.xml index 75cfe6f2bc92..e6c9cc196e48 100644 --- a/src/chrome/content/rules/Santoku-Linux.com.xml +++ b/src/chrome/content/rules/Santoku-Linux.com.xml @@ -6,7 +6,7 @@ - + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Sapphire_Forum.com.xml b/src/chrome/content/rules/Sapphire_Forum.com.xml index 72d0cff61cb7..75c97346d0bc 100644 --- a/src/chrome/content/rules/Sapphire_Forum.com.xml +++ b/src/chrome/content/rules/Sapphire_Forum.com.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://sapphireforum.com/ => https://sapphireforum.com/: (28, 'Connection timed out after 20001 milliseconds') --> - + diff --git a/src/chrome/content/rules/Sarava.org.xml b/src/chrome/content/rules/Sarava.org.xml index 6c96f808e9cc..7891dbc69cf5 100644 --- a/src/chrome/content/rules/Sarava.org.xml +++ b/src/chrome/content/rules/Sarava.org.xml @@ -43,10 +43,31 @@ Fetch error: http://sarava.org/ => https://sarava.org/: (28, 'Connection timed o - anotador --> - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Sauce_Labs.xml b/src/chrome/content/rules/Sauce_Labs.xml deleted file mode 100644 index 5cf03911b623..000000000000 --- a/src/chrome/content/rules/Sauce_Labs.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Saucony.com.au.xml b/src/chrome/content/rules/Saucony.com.au.xml new file mode 100644 index 000000000000..d5b4de6d22a5 --- /dev/null +++ b/src/chrome/content/rules/Saucony.com.au.xml @@ -0,0 +1,12 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/SaucyTime.com.xml b/src/chrome/content/rules/SaucyTime.com.xml index 7580bd27201d..9b5fc81a0f01 100644 --- a/src/chrome/content/rules/SaucyTime.com.xml +++ b/src/chrome/content/rules/SaucyTime.com.xml @@ -17,7 +17,7 @@ Fetch error: http://saucytime.com/ => https://www.saucytime.com/: (60, 'SSL cert - www.saucytime.com --> - + diff --git a/src/chrome/content/rules/SaudiAirlines.xml b/src/chrome/content/rules/SaudiAirlines.xml index ed4eaf5b434a..42c08e186cf1 100644 --- a/src/chrome/content/rules/SaudiAirlines.xml +++ b/src/chrome/content/rules/SaudiAirlines.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://bookonline.saudiairlines.com/ => https://bookonline.saudiairlines.com/: (6, 'Could not resolve host: bookonline.saudiairlines.com') --> - + https://www.pv.gov.sa/: (28, 'Connection t Fetch error: http://mol.gov.sa/ => https://mol.gov.sa/: (28, 'Operation timed out after 0 milliseconds with 0 out of 0 bytes received') Fetch error: http://www.mol.gov.sa/ => https://mol.gov.sa/: (28, 'Operation timed out after 0 milliseconds with 0 out of 0 bytes received') --> - + diff --git a/src/chrome/content/rules/Saurik.xml b/src/chrome/content/rules/Saurik.xml index b5945baf0fe7..4284a2a82c99 100644 --- a/src/chrome/content/rules/Saurik.xml +++ b/src/chrome/content/rules/Saurik.xml @@ -11,10 +11,10 @@ --> - + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Savannah-Fund.xml b/src/chrome/content/rules/Savannah-Fund.xml index 4bb991ada59f..5645f8c1bab6 100644 --- a/src/chrome/content/rules/Savannah-Fund.xml +++ b/src/chrome/content/rules/Savannah-Fund.xml @@ -5,7 +5,7 @@ - + diff --git a/src/chrome/content/rules/SaveCrypto.org.xml b/src/chrome/content/rules/SaveCrypto.org.xml deleted file mode 100644 index 7b1707cf8718..000000000000 --- a/src/chrome/content/rules/SaveCrypto.org.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/SaveDeo.com.xml b/src/chrome/content/rules/SaveDeo.com.xml index 7cb6764c5b2c..3e248e1a7439 100644 --- a/src/chrome/content/rules/SaveDeo.com.xml +++ b/src/chrome/content/rules/SaveDeo.com.xml @@ -15,7 +15,7 @@ Fetch error: http://www.savedeo.com/ => https://www.savedeo.com/: (51, "SSL: no - www.savedeo.com --> - + diff --git a/src/chrome/content/rules/SaveTheChildren.org.uk.xml b/src/chrome/content/rules/SaveTheChildren.org.uk.xml new file mode 100644 index 000000000000..2f5dad15c842 --- /dev/null +++ b/src/chrome/content/rules/SaveTheChildren.org.uk.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Save_the_Children.org.uk-falsemixed.xml b/src/chrome/content/rules/Save_the_Children.org.uk-falsemixed.xml deleted file mode 100644 index 6125e951d495..000000000000 --- a/src/chrome/content/rules/Save_the_Children.org.uk-falsemixed.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Save_the_Children.org.uk.xml b/src/chrome/content/rules/Save_the_Children.org.uk.xml deleted file mode 100644 index 8defada0add6..000000000000 --- a/src/chrome/content/rules/Save_the_Children.org.uk.xml +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Saveyourinternet.eu.xml b/src/chrome/content/rules/Saveyourinternet.eu.xml new file mode 100644 index 000000000000..0fc6ac574b8f --- /dev/null +++ b/src/chrome/content/rules/Saveyourinternet.eu.xml @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/SavvyHawk.com.xml b/src/chrome/content/rules/SavvyHawk.com.xml index 5b8f45625b16..b7502063db5d 100644 --- a/src/chrome/content/rules/SavvyHawk.com.xml +++ b/src/chrome/content/rules/SavvyHawk.com.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://savvyhawk.com/ => https://savvyhawk.com/: (51, "SSL: no alternative certificate subject name matches target host name 'savvyhawk.com'") Fetch error: http://www.savvyhawk.com/ => https://www.savvyhawk.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.savvyhawk.com'") --> - + diff --git a/src/chrome/content/rules/SavvySME.xml b/src/chrome/content/rules/SavvySME.xml index 2f3767fa9f25..30f0c08ef78d 100644 --- a/src/chrome/content/rules/SavvySME.xml +++ b/src/chrome/content/rules/SavvySME.xml @@ -4,4 +4,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Sberbank_of_Russia.xml b/src/chrome/content/rules/Sberbank_of_Russia.xml deleted file mode 100644 index e0f44a880d99..000000000000 --- a/src/chrome/content/rules/Sberbank_of_Russia.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/ScMagazineUS.com.xml b/src/chrome/content/rules/ScMagazineUS.com.xml index 080802a7e097..679c954053b6 100644 --- a/src/chrome/content/rules/ScMagazineUS.com.xml +++ b/src/chrome/content/rules/ScMagazineUS.com.xml @@ -23,7 +23,7 @@ Fetch error: http://www.scmagazineus.com/ => https://www.scmagazineus.com/: (28, * CN: *.hs.llnwd.net, 400. --> - + @@ -31,4 +31,4 @@ Fetch error: http://www.scmagazineus.com/ => https://www.scmagazineus.com/: (28, - \ No newline at end of file + diff --git a/src/chrome/content/rules/Scala-lang.org.xml b/src/chrome/content/rules/Scala-lang.org.xml new file mode 100644 index 000000000000..84a8142cc304 --- /dev/null +++ b/src/chrome/content/rules/Scala-lang.org.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Scalability.org.xml b/src/chrome/content/rules/Scalability.org.xml index 45eaa35133bc..afc513234583 100644 --- a/src/chrome/content/rules/Scalability.org.xml +++ b/src/chrome/content/rules/Scalability.org.xml @@ -1,26 +1,11 @@ - - - - - - - - + - diff --git a/src/chrome/content/rules/Scale-Engine.xml b/src/chrome/content/rules/Scale-Engine.xml index 0c2d4a41bc10..af579a811c6f 100644 --- a/src/chrome/content/rules/Scale-Engine.xml +++ b/src/chrome/content/rules/Scale-Engine.xml @@ -12,13 +12,13 @@ Fetch error: http://scaleengine.com/ => https://scaleengine.com/: (60, 'SSL cert - \w+.cdn.scaleengine.net (CDN; redirects to www.scaleengine.com, depth mismatched) --> - + - + diff --git a/src/chrome/content/rules/Scaling_Bitcoin.org.xml b/src/chrome/content/rules/Scaling_Bitcoin.org.xml index 30bb09dd4cec..a6c4249664cb 100644 --- a/src/chrome/content/rules/Scaling_Bitcoin.org.xml +++ b/src/chrome/content/rules/Scaling_Bitcoin.org.xml @@ -9,7 +9,7 @@ Non-2xx HTTP code: http://www.scalingbitcoin.org/ (200) => https://www.scalingbi - www.scalingbitcoin.org --> - + diff --git a/src/chrome/content/rules/ScanMyServer.com.xml b/src/chrome/content/rules/ScanMyServer.com.xml index 90afca9abe95..0cb3d21e5e30 100644 --- a/src/chrome/content/rules/ScanMyServer.com.xml +++ b/src/chrome/content/rules/ScanMyServer.com.xml @@ -1,29 +1,13 @@ - + - - - - - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Scania.xml b/src/chrome/content/rules/Scania.xml index 8426be2add5a..9e3a79e099ab 100644 --- a/src/chrome/content/rules/Scania.xml +++ b/src/chrome/content/rules/Scania.xml @@ -14,10 +14,10 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Scanmarker.xml b/src/chrome/content/rules/Scanmarker.xml index 82c5802e9040..ba79715343b6 100644 --- a/src/chrome/content/rules/Scanmarker.xml +++ b/src/chrome/content/rules/Scanmarker.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Scanning_Pens.co.uk.xml b/src/chrome/content/rules/Scanning_Pens.co.uk.xml index 89051b0ff76c..05e57e4de9df 100644 --- a/src/chrome/content/rules/Scanning_Pens.co.uk.xml +++ b/src/chrome/content/rules/Scanning_Pens.co.uk.xml @@ -7,7 +7,7 @@ Fetch error: http://www.scanningpens.co.uk/ => https://www.scanningpens.co.uk/: Disabled by https-everywhere-checker because: Fetch error: http://scanningpens.co.uk/ => https://scanningpens.co.uk/: (51, "SSL: no alternative certificate subject name matches target host name 'scanningpens.co.uk'") --> - + diff --git a/src/chrome/content/rules/Scanscout.com.xml b/src/chrome/content/rules/Scanscout.com.xml index 0954af18b8f5..22c72dd977bc 100644 --- a/src/chrome/content/rules/Scanscout.com.xml +++ b/src/chrome/content/rules/Scanscout.com.xml @@ -39,7 +39,7 @@ Fetch error: http://dt.scanscout.com/ => https://dt.scanscout.com/: (60, 'SSL ce dt serves web bugs. --> - + diff --git a/src/chrome/content/rules/Sccassessor.org.xml b/src/chrome/content/rules/Sccassessor.org.xml index 5dd03cb4203a..e185197093bd 100644 --- a/src/chrome/content/rules/Sccassessor.org.xml +++ b/src/chrome/content/rules/Sccassessor.org.xml @@ -16,8 +16,7 @@ - + @@ -25,4 +24,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Sccgov.org.xml b/src/chrome/content/rules/Sccgov.org.xml index 02e31dae073e..0731af27bc59 100644 --- a/src/chrome/content/rules/Sccgov.org.xml +++ b/src/chrome/content/rules/Sccgov.org.xml @@ -43,8 +43,7 @@ - + @@ -67,4 +66,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Scene7.xml b/src/chrome/content/rules/Scene7.xml index c8f787c64242..eb5199b2f965 100644 --- a/src/chrome/content/rules/Scene7.xml +++ b/src/chrome/content/rules/Scene7.xml @@ -1,48 +1,659 @@ - - - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - + + + diff --git a/src/chrome/content/rules/SceneMusic.net.xml b/src/chrome/content/rules/SceneMusic.net.xml deleted file mode 100644 index 10135885b703..000000000000 --- a/src/chrome/content/rules/SceneMusic.net.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/SceneTap.xml b/src/chrome/content/rules/SceneTap.xml index eb4e60d5a93c..36724b7e8cd3 100644 --- a/src/chrome/content/rules/SceneTap.xml +++ b/src/chrome/content/rules/SceneTap.xml @@ -6,7 +6,7 @@ - + https://scepsis.ru/: (60, 'SSL certificate problem: certificate has expired') Fetch error: http://scepsis.ru/ => https://scepsis.ru/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/Sched.org.xml b/src/chrome/content/rules/Sched.org.xml index cf47069a4275..221df2b27672 100644 --- a/src/chrome/content/rules/Sched.org.xml +++ b/src/chrome/content/rules/Sched.org.xml @@ -17,10 +17,13 @@ - + + - + + + - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Schibsted-IT.xml b/src/chrome/content/rules/Schibsted-IT.xml new file mode 100644 index 000000000000..77fd00e66c77 --- /dev/null +++ b/src/chrome/content/rules/Schibsted-IT.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Schibsted.io.xml b/src/chrome/content/rules/Schibsted.io.xml new file mode 100644 index 000000000000..a828e411aae5 --- /dev/null +++ b/src/chrome/content/rules/Schibsted.io.xml @@ -0,0 +1,233 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Schibsted.xml b/src/chrome/content/rules/Schibsted.xml deleted file mode 100644 index 44797000687c..000000000000 --- a/src/chrome/content/rules/Schibsted.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Schlossberg_Store.xml b/src/chrome/content/rules/Schlossberg_Store.xml deleted file mode 100644 index 532226baec98..000000000000 --- a/src/chrome/content/rules/Schlossberg_Store.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Schlumberger.xml b/src/chrome/content/rules/Schlumberger.xml index 0e4e9af40fda..db8ba782948c 100644 --- a/src/chrome/content/rules/Schlumberger.xml +++ b/src/chrome/content/rules/Schlumberger.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://slb.com/ => https://slb.com/: Cycle detected - URL already encountered: https://slb.com/ Fetch error: http://www.slb.com/ => https://www.slb.com/: Cycle detected - URL already encountered: https://www.slb.com/ --> - + @@ -19,4 +19,4 @@ Fetch error: http://www.slb.com/ => https://www.slb.com/: Cycle detected - URL a - \ No newline at end of file + diff --git a/src/chrome/content/rules/Schneider-Electric.com.xml b/src/chrome/content/rules/Schneider-Electric.com.xml index 7a48540a970c..1b7a329bbf5f 100644 --- a/src/chrome/content/rules/Schneider-Electric.com.xml +++ b/src/chrome/content/rules/Schneider-Electric.com.xml @@ -9,59 +9,12 @@ - schneiderele.taleo.net - - Nonfunctional subdomains: - - - www2 (503, akamai) - - - Problematic subdomains: - - - ^ (works, cert only matches www) - - - Partially covered subdomains: - - - (www.) - - - Some pages redirect to http - - - These paths 503: - - - css/ - - documents/flash/en/shared/ - - gc_1_0/ (xiti web bugs) - - images/ - - js/ - - sites/corporate/en/customers/satisfy-our-customers/electric-utilities.page - - templatedata/Configuration/Xiti/ - - - These don't 503: - - - download/resource/scripts/ - - navigation/images/ - - navigation/scripts/ - - products$ - - resource/scripts/ - - site/home/images/custom/ - - site/home/images/structure/ - - site/home/js/ - - site/marketing_center/images/ - - site/marketing_center/js/ - - site/tasks/sites/marketing_center/assets/Image/Corporate/Teasers/ - - stat/xtcore.js - - solutions$ - - solutions/resource/css/ - - solutions/resource/images/ - - solutions/resource/js/ - - solutions/ww/en/rme/\d+/image/ - --> - - + + - + - + - + diff --git a/src/chrome/content/rules/SchoolForge.xml b/src/chrome/content/rules/SchoolForge.xml index 5e6714cc5a34..1810427205ed 100644 --- a/src/chrome/content/rules/SchoolForge.xml +++ b/src/chrome/content/rules/SchoolForge.xml @@ -2,11 +2,10 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/SchoolLoop.xml b/src/chrome/content/rules/SchoolLoop.xml index 32292b870c83..f82de10c5cd6 100644 --- a/src/chrome/content/rules/SchoolLoop.xml +++ b/src/chrome/content/rules/SchoolLoop.xml @@ -1,9 +1,12 @@ - + + + + + + - + diff --git a/src/chrome/content/rules/Schottenland.xml b/src/chrome/content/rules/Schottenland.xml deleted file mode 100644 index e42335f479a6..000000000000 --- a/src/chrome/content/rules/Schottenland.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/SchuelerVZ.xml b/src/chrome/content/rules/SchuelerVZ.xml index 7d9a874b91d7..41d31dddf6fb 100644 --- a/src/chrome/content/rules/SchuelerVZ.xml +++ b/src/chrome/content/rules/SchuelerVZ.xml @@ -1,7 +1,13 @@ - - - + + + + + diff --git a/src/chrome/content/rules/Schuilenburg.org.xml b/src/chrome/content/rules/Schuilenburg.org.xml index eca929d6e39d..e7317c3f9d14 100644 --- a/src/chrome/content/rules/Schuilenburg.org.xml +++ b/src/chrome/content/rules/Schuilenburg.org.xml @@ -12,7 +12,7 @@ Fetch error: http://www.schuilenburg.org/ => https://www.schuilenburg.org/: (60, - gallery (shows www.ecoscentric.com) --> - + diff --git a/src/chrome/content/rules/Schulte.org.xml b/src/chrome/content/rules/Schulte.org.xml index 40cfdc8ddb34..8e5bcebe4297 100644 --- a/src/chrome/content/rules/Schulte.org.xml +++ b/src/chrome/content/rules/Schulte.org.xml @@ -1,10 +1,14 @@ - + + + + + + - + diff --git a/src/chrome/content/rules/Schwab.com.xml b/src/chrome/content/rules/Schwab.com.xml index f86511aa5e58..57be6f9611c0 100644 --- a/src/chrome/content/rules/Schwab.com.xml +++ b/src/chrome/content/rules/Schwab.com.xml @@ -31,10 +31,13 @@ Fetch error: http://schwab.com/ => https://schwab.com/: (60, 'SSL certificate pr * Secured by us --> - + - + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Sci-Hub.love.xml b/src/chrome/content/rules/Sci-Hub.love.xml new file mode 100644 index 000000000000..801498e94c94 --- /dev/null +++ b/src/chrome/content/rules/Sci-Hub.love.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Sci-Hub.xml b/src/chrome/content/rules/Sci-Hub.xml new file mode 100644 index 000000000000..3b759ed97099 --- /dev/null +++ b/src/chrome/content/rules/Sci-Hub.xml @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Sci-hub.xml b/src/chrome/content/rules/Sci-hub.xml deleted file mode 100644 index ee463ecb24c5..000000000000 --- a/src/chrome/content/rules/Sci-hub.xml +++ /dev/null @@ -1,72 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/SciPy.org.xml b/src/chrome/content/rules/SciPy.org.xml index 713d4c06be4b..a917c90aa184 100644 --- a/src/chrome/content/rules/SciPy.org.xml +++ b/src/chrome/content/rules/SciPy.org.xml @@ -1,32 +1,56 @@ - - + - - + + + + + + + + diff --git a/src/chrome/content/rules/Science-Alliance.de.xml b/src/chrome/content/rules/Science-Alliance.de.xml index 2d6ac77c3aaa..d857688a9253 100644 --- a/src/chrome/content/rules/Science-Alliance.de.xml +++ b/src/chrome/content/rules/Science-Alliance.de.xml @@ -18,7 +18,7 @@ - + - + + + + + + + + + diff --git a/src/chrome/content/rules/Science_Careers.org.xml b/src/chrome/content/rules/Science_Careers.org.xml index f26de0fc575b..7a65f732a773 100644 --- a/src/chrome/content/rules/Science_Careers.org.xml +++ b/src/chrome/content/rules/Science_Careers.org.xml @@ -31,7 +31,7 @@ --> - + - + - + diff --git a/src/chrome/content/rules/Scieneo.de.xml b/src/chrome/content/rules/Scieneo.de.xml index 94458e62aa79..9e34923a9d1e 100644 --- a/src/chrome/content/rules/Scieneo.de.xml +++ b/src/chrome/content/rules/Scieneo.de.xml @@ -11,7 +11,7 @@ Fetch error: http://www.scieneo.de/ => https://www.scieneo.de/: (51, "SSL: no al - Dynatech.de - Dynavision.de --> - + diff --git a/src/chrome/content/rules/Scientific-American.xml b/src/chrome/content/rules/Scientific-American.xml index 894514f41944..670cb6750b6f 100644 --- a/src/chrome/content/rules/Scientific-American.xml +++ b/src/chrome/content/rules/Scientific-American.xml @@ -36,7 +36,7 @@ Fetch error: http://www.subscribe.scientificamerican.com/ => https://www.subscri ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -75,7 +75,7 @@ Fetch error: http://www.subscribe.scientificamerican.com/ => https://www.subscri - + - + - - - - - - - + diff --git a/src/chrome/content/rules/Scintilla.utwente.xml b/src/chrome/content/rules/Scintilla.utwente.xml deleted file mode 100644 index 33b66f13c826..000000000000 --- a/src/chrome/content/rules/Scintilla.utwente.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Scoop.co.nz.xml b/src/chrome/content/rules/Scoop.co.nz.xml deleted file mode 100644 index 10ebcf17a2ef..000000000000 --- a/src/chrome/content/rules/Scoop.co.nz.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Scoop.it.xml b/src/chrome/content/rules/Scoop.it.xml index 42519c6a0c2c..565b4511ec43 100644 --- a/src/chrome/content/rules/Scoop.it.xml +++ b/src/chrome/content/rules/Scoop.it.xml @@ -19,7 +19,8 @@ - + + @@ -30,6 +31,6 @@ to="https://www.scoop.it/$1" /> + to="https://img.scoop.it/" /> - \ No newline at end of file + diff --git a/src/chrome/content/rules/Scooter-Attack.xml b/src/chrome/content/rules/Scooter-Attack.xml index fd0f54a9f250..ed531bb85c47 100644 --- a/src/chrome/content/rules/Scooter-Attack.xml +++ b/src/chrome/content/rules/Scooter-Attack.xml @@ -29,7 +29,7 @@ Fetch error: http://stats.scooter-attack.com/ => https://stats.scooter-attack.co * Secured by us --> - + @@ -50,7 +50,7 @@ Fetch error: http://stats.scooter-attack.com/ => https://stats.scooter-attack.co - + + + + + + + + diff --git a/src/chrome/content/rules/Scopus.xml b/src/chrome/content/rules/Scopus.xml index def536f11012..8d53890c6918 100644 --- a/src/chrome/content/rules/Scopus.xml +++ b/src/chrome/content/rules/Scopus.xml @@ -1,21 +1,44 @@ - + Login required: + admintool.scopus.com - - + Refused: + cert-*.scopus.com + help.scopus.com + info.scopus.com + www.info.scopus.com + searchapidocs.scopus.com + No working URL known: + develop-www.scopus.com + searchapi.scopus.com - + Invalid certificate: + metrics.scopus.com + Connection reset: + admin.step.scopus.com + suggestor.step.scopus.com - +--> + - - + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ScorecardResearch.com.xml b/src/chrome/content/rules/ScorecardResearch.com.xml index d6a1dccee861..ea7e096249b3 100644 --- a/src/chrome/content/rules/ScorecardResearch.com.xml +++ b/src/chrome/content/rules/ScorecardResearch.com.xml @@ -1,35 +1,75 @@ - + + + + + + + + + + + + @@ -39,7 +79,7 @@ --> - + https://www.scotborders.gov.uk/: ˢ Secured by us --> - + @@ -46,8 +46,8 @@ Fetch error: http://www.scotborders.gov.uk/ => https://www.scotborders.gov.uk/: - - + + + + + + + + + + + diff --git a/src/chrome/content/rules/Scott-Hanselman.xml b/src/chrome/content/rules/Scott-Hanselman.xml index daf7875e9336..7584296ac7d7 100644 --- a/src/chrome/content/rules/Scott-Hanselman.xml +++ b/src/chrome/content/rules/Scott-Hanselman.xml @@ -1,15 +1,18 @@ - + + - + + + - - + diff --git a/src/chrome/content/rules/Scottbrand.com.xml b/src/chrome/content/rules/Scottbrand.com.xml index 1ad48e349015..d2ba111e65b5 100644 --- a/src/chrome/content/rules/Scottbrand.com.xml +++ b/src/chrome/content/rules/Scottbrand.com.xml @@ -9,7 +9,7 @@ Fetch error: http://scottbrand.com/ => https://scottbrand.com/: (51, "SSL: no al - www.scottbrand.com --> - + diff --git a/src/chrome/content/rules/Scottevest.xml b/src/chrome/content/rules/Scottevest.xml index 724d6e94be3e..a9eec98b1ed1 100644 --- a/src/chrome/content/rules/Scottevest.xml +++ b/src/chrome/content/rules/Scottevest.xml @@ -2,8 +2,7 @@ - + - - + diff --git a/src/chrome/content/rules/Scottish-Country-Cottages.co.uk.xml b/src/chrome/content/rules/Scottish-Country-Cottages.co.uk.xml new file mode 100644 index 000000000000..92c2f51f9b2e --- /dev/null +++ b/src/chrome/content/rules/Scottish-Country-Cottages.co.uk.xml @@ -0,0 +1,20 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Scottish_Power.xml b/src/chrome/content/rules/Scottish_Power.xml index 8226d27e2f97..27cddc985bb7 100644 --- a/src/chrome/content/rules/Scottish_Power.xml +++ b/src/chrome/content/rules/Scottish_Power.xml @@ -29,4 +29,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Scottish_Power_Pipe_Band.xml b/src/chrome/content/rules/Scottish_Power_Pipe_Band.xml index c7e2c597bde0..3d17cfeea46c 100644 --- a/src/chrome/content/rules/Scottish_Power_Pipe_Band.xml +++ b/src/chrome/content/rules/Scottish_Power_Pipe_Band.xml @@ -18,4 +18,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Scrambl.is.xml b/src/chrome/content/rules/Scrambl.is.xml deleted file mode 100644 index 997d16367062..000000000000 --- a/src/chrome/content/rules/Scrambl.is.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Scrambl3.com.xml b/src/chrome/content/rules/Scrambl3.com.xml index a76f732703c0..42ab37dfe284 100644 --- a/src/chrome/content/rules/Scrambl3.com.xml +++ b/src/chrome/content/rules/Scrambl3.com.xml @@ -6,7 +6,7 @@ - + https://scraporchard.com/: (60, 'SSL ce Fetch error: http://www.scraporchard.com/ => https://www.scraporchard.com/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + @@ -16,4 +16,4 @@ Fetch error: http://www.scraporchard.com/ => https://www.scraporchard.com/: (60, - \ No newline at end of file + diff --git a/src/chrome/content/rules/Scrapy.org.xml b/src/chrome/content/rules/Scrapy.org.xml new file mode 100644 index 000000000000..aedf5c18402f --- /dev/null +++ b/src/chrome/content/rules/Scrapy.org.xml @@ -0,0 +1,16 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/ScreenCraft.org.xml b/src/chrome/content/rules/ScreenCraft.org.xml index 101332b4b0dd..84a46031a528 100644 --- a/src/chrome/content/rules/ScreenCraft.org.xml +++ b/src/chrome/content/rules/ScreenCraft.org.xml @@ -13,7 +13,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Screenshot_machine.xml b/src/chrome/content/rules/Screenshot_machine.xml index 093fc05725fb..17dc76efa95b 100644 --- a/src/chrome/content/rules/Screenshot_machine.xml +++ b/src/chrome/content/rules/Screenshot_machine.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/ScribbleLive.com-falsemixed.xml b/src/chrome/content/rules/ScribbleLive.com-falsemixed.xml index 38cb13ffd418..b9694bb8c307 100644 --- a/src/chrome/content/rules/ScribbleLive.com-falsemixed.xml +++ b/src/chrome/content/rules/ScribbleLive.com-falsemixed.xml @@ -8,7 +8,7 @@ Fetch error: http://www2.scribblelive.com/ => https://www.scribblelive.com/: (51 For rules not causing false/broken MCB, see ScribbleLive.com.xml. --> - + @@ -30,7 +30,7 @@ Fetch error: http://www2.scribblelive.com/ => https://www.scribblelive.com/: (51 - + - + @@ -74,7 +74,7 @@ Fetch error: http://scribblelive.com/ => https://scribblelive.com/: (51, "SSL: n - + - - - - - - + + + + + + + - - - - - - - - - - - - - - - - - + diff --git a/src/chrome/content/rules/Scribol.xml b/src/chrome/content/rules/Scribol.xml deleted file mode 100644 index 87aad745d305..000000000000 --- a/src/chrome/content/rules/Scribol.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Scribus.net.xml b/src/chrome/content/rules/Scribus.net.xml index 54ac4bf0c4d9..17996ddc5ae5 100644 --- a/src/chrome/content/rules/Scribus.net.xml +++ b/src/chrome/content/rules/Scribus.net.xml @@ -26,7 +26,7 @@ - + diff --git a/src/chrome/content/rules/Scripps_Research_Institute.xml b/src/chrome/content/rules/Scripps_Research_Institute.xml index e3e5b3e1bc59..7fc971b84976 100644 --- a/src/chrome/content/rules/Scripps_Research_Institute.xml +++ b/src/chrome/content/rules/Scripps_Research_Institute.xml @@ -1,10 +1,39 @@ + + + + + + + + + + - - - \ No newline at end of file + diff --git a/src/chrome/content/rules/ScriptSource.xml b/src/chrome/content/rules/ScriptSource.xml index 4a9459d67b6d..bf18d2e4d22d 100644 --- a/src/chrome/content/rules/ScriptSource.xml +++ b/src/chrome/content/rules/ScriptSource.xml @@ -13,4 +13,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Scriptfodder.com.xml b/src/chrome/content/rules/Scriptfodder.com.xml index 50ad62f7a6c4..23710f7e831a 100644 --- a/src/chrome/content/rules/Scriptfodder.com.xml +++ b/src/chrome/content/rules/Scriptfodder.com.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://media.scriptfodder.com/ => https://media.scriptfodder.com/: (6, 'Could not resolve host: media.scriptfodder.com') --> - + diff --git a/src/chrome/content/rules/Scripting-News.xml b/src/chrome/content/rules/Scripting-News.xml deleted file mode 100644 index b52d44fc215d..000000000000 --- a/src/chrome/content/rules/Scripting-News.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Scriptmp3.com.xml b/src/chrome/content/rules/Scriptmp3.com.xml deleted file mode 100644 index 2203dde761b8..000000000000 --- a/src/chrome/content/rules/Scriptmp3.com.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Scruss.com.xml b/src/chrome/content/rules/Scruss.com.xml new file mode 100644 index 000000000000..04731078a623 --- /dev/null +++ b/src/chrome/content/rules/Scruss.com.xml @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Scrypt.CC.xml b/src/chrome/content/rules/Scrypt.CC.xml deleted file mode 100644 index bb2da29d58b5..000000000000 --- a/src/chrome/content/rules/Scrypt.CC.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Scsstatic.ch.xml b/src/chrome/content/rules/Scsstatic.ch.xml deleted file mode 100644 index 2940f7a73e41..000000000000 --- a/src/chrome/content/rules/Scsstatic.ch.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Scubbly.xml b/src/chrome/content/rules/Scubbly.xml index e646ebfe373b..3a9b2b396325 100644 --- a/src/chrome/content/rules/Scubbly.xml +++ b/src/chrome/content/rules/Scubbly.xml @@ -16,4 +16,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Sculpteo.com.xml b/src/chrome/content/rules/Sculpteo.com.xml index 891114dacf52..520bd3dd3eae 100644 --- a/src/chrome/content/rules/Sculpteo.com.xml +++ b/src/chrome/content/rules/Sculpteo.com.xml @@ -16,7 +16,9 @@ - + + + @@ -26,7 +28,6 @@ - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Scuttlebot.io.xml b/src/chrome/content/rules/Scuttlebot.io.xml new file mode 100644 index 000000000000..9ca0c8c44805 --- /dev/null +++ b/src/chrome/content/rules/Scuttlebot.io.xml @@ -0,0 +1,17 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Sdlcdn.com.xml b/src/chrome/content/rules/Sdlcdn.com.xml index 52c179537714..9935abbf0f42 100644 --- a/src/chrome/content/rules/Sdlcdn.com.xml +++ b/src/chrome/content/rules/Sdlcdn.com.xml @@ -4,10 +4,12 @@ --> - + + + + - + diff --git a/src/chrome/content/rules/Seacloud.xml b/src/chrome/content/rules/Seacloud.xml deleted file mode 100644 index 2e187b81cac7..000000000000 --- a/src/chrome/content/rules/Seacloud.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Seafile-Server.de.xml b/src/chrome/content/rules/Seafile-Server.de.xml index 31f02f9c37b7..ca42d899759e 100644 --- a/src/chrome/content/rules/Seafile-Server.de.xml +++ b/src/chrome/content/rules/Seafile-Server.de.xml @@ -25,12 +25,15 @@ Fetch error: http://www.seafileserver.de/ => https://www.seafileserver.de/: (51, - wiki.seafile-server.de --> - + - + + + + @@ -42,10 +45,6 @@ Fetch error: http://www.seafileserver.de/ => https://www.seafileserver.de/: (51, - - - + diff --git a/src/chrome/content/rules/Seafile.xml b/src/chrome/content/rules/Seafile.xml index 99273039501a..27e1972e1960 100644 --- a/src/chrome/content/rules/Seafile.xml +++ b/src/chrome/content/rules/Seafile.xml @@ -13,7 +13,7 @@ Fetch error: http://cloud.seafile.com/ => https://cloud.seafile.com/: (51, "SSL: - (www.) (shows seacloud.cc; mismatched, CN: cloud.seafile.com) --> - + @@ -21,7 +21,6 @@ Fetch error: http://cloud.seafile.com/ => https://cloud.seafile.com/: (51, "SSL: - + diff --git a/src/chrome/content/rules/Seagate.com.xml b/src/chrome/content/rules/Seagate.com.xml index e2070066871a..4b304d7d4cdd 100644 --- a/src/chrome/content/rules/Seagate.com.xml +++ b/src/chrome/content/rules/Seagate.com.xml @@ -63,7 +63,7 @@ Fetch error: http://wwwlacie.seagate.com/ => https://wwwlacie.seagate.com/: (6, - wwwlacie.seagate.com --> - + diff --git a/src/chrome/content/rules/Sealed_Abstract.com.xml b/src/chrome/content/rules/Sealed_Abstract.com.xml index dccd2d7917df..4249a3510acb 100644 --- a/src/chrome/content/rules/Sealed_Abstract.com.xml +++ b/src/chrome/content/rules/Sealed_Abstract.com.xml @@ -10,4 +10,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Seamonkey-project.org.xml b/src/chrome/content/rules/Seamonkey-project.org.xml new file mode 100644 index 000000000000..8410566912e6 --- /dev/null +++ b/src/chrome/content/rules/Seamonkey-project.org.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Seanmckaybeck.com.xml b/src/chrome/content/rules/Seanmckaybeck.com.xml index c84a0cde9e3f..e7037a6997a5 100644 --- a/src/chrome/content/rules/Seanmckaybeck.com.xml +++ b/src/chrome/content/rules/Seanmckaybeck.com.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://seanmckaybeck.com/ => https://seanmckaybeck.com/: (7, 'Failed to connect to seanmckaybeck.com port 443: Connection refused') --> - + diff --git a/src/chrome/content/rules/Search.ch.xml b/src/chrome/content/rules/Search.ch.xml index b6d903ddc203..ce5ffd4d89cc 100644 --- a/src/chrome/content/rules/Search.ch.xml +++ b/src/chrome/content/rules/Search.ch.xml @@ -1,14 +1,13 @@ - - + @@ -36,7 +35,6 @@ Fetch error: http://werbung.search.ch/ => https://werbung.search.ch/: (60, 'SSL - diff --git a/src/chrome/content/rules/Search_Commander.xml b/src/chrome/content/rules/Search_Commander.xml index e4e71029dc45..ca7d8d9f8737 100644 --- a/src/chrome/content/rules/Search_Commander.xml +++ b/src/chrome/content/rules/Search_Commander.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Searchmarketing.com.xml b/src/chrome/content/rules/Searchmarketing.com.xml deleted file mode 100644 index 70e174a37ed9..000000000000 --- a/src/chrome/content/rules/Searchmarketing.com.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Sears.com.xml b/src/chrome/content/rules/Sears.com.xml index 3950caacf9cb..ab46c9424edc 100644 --- a/src/chrome/content/rules/Sears.com.xml +++ b/src/chrome/content/rules/Sears.com.xml @@ -1,35 +1,29 @@ - + diff --git a/src/chrome/content/rules/Sears_Labs.com.xml b/src/chrome/content/rules/Sears_Labs.com.xml index 985384c78d29..f0f051099e19 100644 --- a/src/chrome/content/rules/Sears_Labs.com.xml +++ b/src/chrome/content/rules/Sears_Labs.com.xml @@ -1,18 +1,13 @@ - + - + diff --git a/src/chrome/content/rules/Searx.me.xml b/src/chrome/content/rules/Searx.me.xml deleted file mode 100644 index 242d8b55dce7..000000000000 --- a/src/chrome/content/rules/Searx.me.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Seasonal.ly.xml b/src/chrome/content/rules/Seasonal.ly.xml index dd8a787a4992..6aafd5e5d53a 100644 --- a/src/chrome/content/rules/Seasonal.ly.xml +++ b/src/chrome/content/rules/Seasonal.ly.xml @@ -10,4 +10,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/SeattleAquarium.org.xml b/src/chrome/content/rules/SeattleAquarium.org.xml index 206755a1bf51..a31ba8e2a3ba 100644 --- a/src/chrome/content/rules/SeattleAquarium.org.xml +++ b/src/chrome/content/rules/SeattleAquarium.org.xml @@ -1,16 +1,21 @@ + + + diff --git a/src/chrome/content/rules/SeattleIX.net.xml b/src/chrome/content/rules/SeattleIX.net.xml index 9be005b0d708..8931c922089d 100644 --- a/src/chrome/content/rules/SeattleIX.net.xml +++ b/src/chrome/content/rules/SeattleIX.net.xml @@ -17,4 +17,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Seattle_Privacy.org.xml b/src/chrome/content/rules/Seattle_Privacy.org.xml deleted file mode 100644 index 65d995d4d5d2..000000000000 --- a/src/chrome/content/rules/Seattle_Privacy.org.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Sebastian_Wick.net.xml b/src/chrome/content/rules/Sebastian_Wick.net.xml index ef257d56533c..4987972deea3 100644 --- a/src/chrome/content/rules/Sebastian_Wick.net.xml +++ b/src/chrome/content/rules/Sebastian_Wick.net.xml @@ -19,6 +19,6 @@ - diff --git a/src/chrome/content/rules/SecDev.ca.xml b/src/chrome/content/rules/SecDev.ca.xml index f23dc09c4e07..7a27c21eb9c2 100644 --- a/src/chrome/content/rules/SecDev.ca.xml +++ b/src/chrome/content/rules/SecDev.ca.xml @@ -9,7 +9,7 @@ * Server sends no certificate chain, see https://whatsmychaincert.com --> - + diff --git a/src/chrome/content/rules/SecDev.com.xml b/src/chrome/content/rules/SecDev.com.xml index f24f61a5a6fd..9423d82048a6 100644 --- a/src/chrome/content/rules/SecDev.com.xml +++ b/src/chrome/content/rules/SecDev.com.xml @@ -1,32 +1,19 @@ - + - - diff --git a/src/chrome/content/rules/SecondMarket.com.xml b/src/chrome/content/rules/SecondMarket.com.xml index 8591b3f59bfb..915244da49a4 100644 --- a/src/chrome/content/rules/SecondMarket.com.xml +++ b/src/chrome/content/rules/SecondMarket.com.xml @@ -14,7 +14,7 @@ Fetch error: http://www.secondmarket.com/ => https://www.secondmarket.com/: (28, - ^ (cert only matches www) --> - + diff --git a/src/chrome/content/rules/Second_Life.com.xml b/src/chrome/content/rules/Second_Life.com.xml index 023f9734c027..1b3456c6d95b 100644 --- a/src/chrome/content/rules/Second_Life.com.xml +++ b/src/chrome/content/rules/Second_Life.com.xml @@ -69,7 +69,7 @@ Fetch error: http://lists.secondlife.com/ => https://lists.secondlife.com/: (60, * Secured by us --> - + diff --git a/src/chrome/content/rules/Second_Look_Forensics.com.xml b/src/chrome/content/rules/Second_Look_Forensics.com.xml index 1d9b9397372c..ec298e1dfa1e 100644 --- a/src/chrome/content/rules/Second_Look_Forensics.com.xml +++ b/src/chrome/content/rules/Second_Look_Forensics.com.xml @@ -5,7 +5,7 @@ Fetch error: http://secondlookforensics.com/ => https://secondlookforensics.com/ Fetch error: http://www.secondlookforensics.com/ => https://www.secondlookforensics.com/: (28, 'Connection timed out after 20001 milliseconds') --> - + diff --git a/src/chrome/content/rules/SecretCon.com.xml b/src/chrome/content/rules/SecretCon.com.xml deleted file mode 100644 index af669a29b053..000000000000 --- a/src/chrome/content/rules/SecretCon.com.xml +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Section9.co.uk.xml b/src/chrome/content/rules/Section9.co.uk.xml deleted file mode 100644 index f8efdea71536..000000000000 --- a/src/chrome/content/rules/Section9.co.uk.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Secular-Student-Alliance.xml b/src/chrome/content/rules/Secular-Student-Alliance.xml index 1ede43c68b55..44cc0e7368cf 100644 --- a/src/chrome/content/rules/Secular-Student-Alliance.xml +++ b/src/chrome/content/rules/Secular-Student-Alliance.xml @@ -8,7 +8,7 @@ - + - + - + - + - + diff --git a/src/chrome/content/rules/Secur1ty.com.xml b/src/chrome/content/rules/Secur1ty.com.xml deleted file mode 100644 index 2369cd3286e1..000000000000 --- a/src/chrome/content/rules/Secur1ty.com.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/SecuraBit.com.xml b/src/chrome/content/rules/SecuraBit.com.xml index 104a660e4fc3..9a0427702013 100644 --- a/src/chrome/content/rules/SecuraBit.com.xml +++ b/src/chrome/content/rules/SecuraBit.com.xml @@ -16,7 +16,7 @@ --> - + https://secure-endpoint - www.h5l.org --> - + diff --git a/src/chrome/content/rules/Secure-OS.org.xml b/src/chrome/content/rules/Secure-OS.org.xml deleted file mode 100644 index 4c06ec5c6ad0..000000000000 --- a/src/chrome/content/rules/Secure-OS.org.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Secure-donor.com.xml b/src/chrome/content/rules/Secure-donor.com.xml index c12fe866dc26..4b5fddc4befd 100644 --- a/src/chrome/content/rules/Secure-donor.com.xml +++ b/src/chrome/content/rules/Secure-donor.com.xml @@ -10,7 +10,7 @@ --> - + https://secure-resumption.com/: (6 Fetch error: http://www.secure-resumption.com/ => https://www.secure-resumption.com/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/Secure-secure.co.uk.xml b/src/chrome/content/rules/Secure-secure.co.uk.xml index 458e21653e97..8268a68bf215 100644 --- a/src/chrome/content/rules/Secure-secure.co.uk.xml +++ b/src/chrome/content/rules/Secure-secure.co.uk.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Secure-u.de.xml b/src/chrome/content/rules/Secure-u.de.xml deleted file mode 100644 index 39f5de3e062a..000000000000 --- a/src/chrome/content/rules/Secure-u.de.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Secure-zone.net.xml b/src/chrome/content/rules/Secure-zone.net.xml index 897011645b5b..dfe4fd47d48b 100644 --- a/src/chrome/content/rules/Secure-zone.net.xml +++ b/src/chrome/content/rules/Secure-zone.net.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Secure.me.xml b/src/chrome/content/rules/Secure.me.xml index c0054349901c..e5be782272c1 100644 --- a/src/chrome/content/rules/Secure.me.xml +++ b/src/chrome/content/rules/Secure.me.xml @@ -7,7 +7,7 @@ Fetch error: http://wp.secure.me/ => https://wp.secure.me/: (51, "SSL: no altern Fetch error: http://www.secure.me/ => https://www.secure.me/: (51, "SSL: no alternative certificate subject name matches target host name 'www.secure.me'") --> - + diff --git a/src/chrome/content/rules/Secure.metoffice.gov.uk.xml b/src/chrome/content/rules/Secure.metoffice.gov.uk.xml deleted file mode 100644 index 00c20beefbc3..000000000000 --- a/src/chrome/content/rules/Secure.metoffice.gov.uk.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - diff --git a/src/chrome/content/rules/SecureConnect.com.xml b/src/chrome/content/rules/SecureConnect.com.xml deleted file mode 100644 index 0d907d971ed9..000000000000 --- a/src/chrome/content/rules/SecureConnect.com.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/SecureList.xml b/src/chrome/content/rules/SecureList.xml index f1bc96dad375..32bf317d25c1 100644 --- a/src/chrome/content/rules/SecureList.xml +++ b/src/chrome/content/rules/SecureList.xml @@ -19,7 +19,7 @@ --> - + https://www.securenet.com/: (60, 'SSL cert * Secured by us --> - + diff --git a/src/chrome/content/rules/SecurePro_Software.xml b/src/chrome/content/rules/SecurePro_Software.xml index eef53662e1aa..67b5ad5c1904 100644 --- a/src/chrome/content/rules/SecurePro_Software.xml +++ b/src/chrome/content/rules/SecurePro_Software.xml @@ -14,7 +14,7 @@ Non-2xx HTTP code: http://www.secureprosoftware.com/ (200) => https://securepros www: mismatched, CN: *.websitewelcome.com --> - + diff --git a/src/chrome/content/rules/SecureProxySite.com.xml b/src/chrome/content/rules/SecureProxySite.com.xml new file mode 100644 index 000000000000..fbe8574d621c --- /dev/null +++ b/src/chrome/content/rules/SecureProxySite.com.xml @@ -0,0 +1,12 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Secure_Upload.eu.xml b/src/chrome/content/rules/Secure_Upload.eu.xml index 0e0b1cd829f2..f33df7148e0f 100644 --- a/src/chrome/content/rules/Secure_Upload.eu.xml +++ b/src/chrome/content/rules/Secure_Upload.eu.xml @@ -5,7 +5,7 @@ Fetch error: http://secureupload.eu/ => https://secureupload.eu/: (60, 'SSL cert Fetch error: http://www.secureupload.eu/ => https://www.secureupload.eu/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/Securejoinsite.com.xml b/src/chrome/content/rules/Securejoinsite.com.xml index a90ecd8e4ad7..52588b1f26ea 100644 --- a/src/chrome/content/rules/Securejoinsite.com.xml +++ b/src/chrome/content/rules/Securejoinsite.com.xml @@ -18,7 +18,7 @@ - + - + - - - - + + @@ -53,37 +24,7 @@ Fetch error: http://securepaynet.net/ => https://www.securepaynet.net/: (60, 'SS - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + diff --git a/src/chrome/content/rules/Securepicssl.com.xml b/src/chrome/content/rules/Securepicssl.com.xml index ad62d1fde611..f54a687d65ec 100644 --- a/src/chrome/content/rules/Securepicssl.com.xml +++ b/src/chrome/content/rules/Securepicssl.com.xml @@ -8,10 +8,10 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Securepoint.de.xml b/src/chrome/content/rules/Securepoint.de.xml index 0137ca5ed084..98fb6645553b 100644 --- a/src/chrome/content/rules/Securepoint.de.xml +++ b/src/chrome/content/rules/Securepoint.de.xml @@ -38,7 +38,7 @@ --> - + https://securepurchaseserv Cert doesn't match www. --> - + diff --git a/src/chrome/content/rules/Securetrust.com.xml b/src/chrome/content/rules/Securetrust.com.xml index e12a776915b4..82c6e8178f34 100644 --- a/src/chrome/content/rules/Securetrust.com.xml +++ b/src/chrome/content/rules/Securetrust.com.xml @@ -10,7 +10,7 @@ Fetch error: http://securetrust.com/ => https://www.securetrust.com/: (60, 'SSL ^securetrust.com: Cert only matches www.securetrust.com --> - + diff --git a/src/chrome/content/rules/Secureuk.net.xml b/src/chrome/content/rules/Secureuk.net.xml deleted file mode 100644 index eb9b4c4d9da3..000000000000 --- a/src/chrome/content/rules/Secureuk.net.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Securing_the_Human.org.xml b/src/chrome/content/rules/Securing_the_Human.org.xml index f115b395dd6b..79af1dfc1227 100644 --- a/src/chrome/content/rules/Securing_the_Human.org.xml +++ b/src/chrome/content/rules/Securing_the_Human.org.xml @@ -6,7 +6,7 @@ Fetch error: http://help.securingthehuman.org/ => https://help.securingthehuman. For other SANS Institute coverage, see SANS.org.xml. --> - + diff --git a/src/chrome/content/rules/Security-Database.com.xml b/src/chrome/content/rules/Security-Database.com.xml index 165bb533dbc7..07bbcda44458 100644 --- a/src/chrome/content/rules/Security-Database.com.xml +++ b/src/chrome/content/rules/Security-Database.com.xml @@ -1,17 +1,25 @@ + + + + - - - - + + diff --git a/src/chrome/content/rules/Security-Research-Labs.xml b/src/chrome/content/rules/Security-Research-Labs.xml index bd2e978b6aab..364287107209 100644 --- a/src/chrome/content/rules/Security-Research-Labs.xml +++ b/src/chrome/content/rules/Security-Research-Labs.xml @@ -25,7 +25,7 @@ - + + + + + + + + diff --git a/src/chrome/content/rules/SecurityMetrics.xml b/src/chrome/content/rules/SecurityMetrics.xml index 1cdeb574713a..0affd1a96e4f 100644 --- a/src/chrome/content/rules/SecurityMetrics.xml +++ b/src/chrome/content/rules/SecurityMetrics.xml @@ -6,7 +6,7 @@ Fetch error: http://web2.securitymetrics.com/ => https://web2.securitymetrics.co Refused: - blog --> - + diff --git a/src/chrome/content/rules/SecurityWeek.com.xml b/src/chrome/content/rules/SecurityWeek.com.xml index a8aebc99ade7..02478af12396 100644 --- a/src/chrome/content/rules/SecurityWeek.com.xml +++ b/src/chrome/content/rules/SecurityWeek.com.xml @@ -1,57 +1,18 @@ - + - - - - + - - - - + diff --git a/src/chrome/content/rules/Security_Conference.de.xml b/src/chrome/content/rules/Security_Conference.de.xml index 083d6fc956cd..dd5782317f03 100644 --- a/src/chrome/content/rules/Security_Conference.de.xml +++ b/src/chrome/content/rules/Security_Conference.de.xml @@ -8,7 +8,7 @@ - + https://www.securityexperten.com/: For rules not causing false/broken MCB, see Security_Experten.com.xml. --> - + diff --git a/src/chrome/content/rules/Security_Experten.com.xml b/src/chrome/content/rules/Security_Experten.com.xml index 6994b383b992..a06db1046187 100644 --- a/src/chrome/content/rules/Security_Experten.com.xml +++ b/src/chrome/content/rules/Security_Experten.com.xml @@ -11,7 +11,7 @@ Fetch error: http://www.securityexperten.com/ => http://www.securityexperten.com ^: mismatched --> - + diff --git a/src/chrome/content/rules/Security_in_a_Box.org.xml b/src/chrome/content/rules/Security_in_a_Box.org.xml index cb4548a54765..2efa718ed7dc 100644 --- a/src/chrome/content/rules/Security_in_a_Box.org.xml +++ b/src/chrome/content/rules/Security_in_a_Box.org.xml @@ -20,7 +20,7 @@ --> - + - + https://sc.sedo.com/: (60, 'SSL certificate For problematic rules, see Sedo-problematic.xml. - Other Sedo rulesets: + Other Sedo rulesets: - Affili.net.xml - - Reussissonsensemble.fr.xml - - Sedo_Holding.com.xml Problematic hosts in *sedo.com: @@ -25,7 +23,7 @@ Fetch error: http://sc.sedo.com/ => https://sc.sedo.com/: (60, 'SSL certificate - .sedo.com --> - + diff --git a/src/chrome/content/rules/Sedo.de.xml b/src/chrome/content/rules/Sedo.de.xml index 752992814dad..c7e85f5f4033 100644 --- a/src/chrome/content/rules/Sedo.de.xml +++ b/src/chrome/content/rules/Sedo.de.xml @@ -25,7 +25,7 @@ Fetch error: http://backoffice.sedo.de/ => https://backoffice.sedo.de/: (6, 'Cou - .sedo.de --> - + diff --git a/src/chrome/content/rules/Sedo_Holding.com.xml b/src/chrome/content/rules/Sedo_Holding.com.xml deleted file mode 100644 index 77c6ff1ea960..000000000000 --- a/src/chrome/content/rules/Sedo_Holding.com.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/See-Group.xml b/src/chrome/content/rules/See-Group.xml index 5e125954a189..bf90a2288fa7 100644 --- a/src/chrome/content/rules/See-Group.xml +++ b/src/chrome/content/rules/See-Group.xml @@ -10,7 +10,7 @@ Fetch error: http://s.ststat.com/ => https://static.seetickets.com/: (6, 'Could - + https://seecrypt.com/: (60, 'SSL certificat * Unsecurable <= dropped --> - + @@ -25,7 +25,7 @@ Fetch error: http://seecrypt.com/ => https://seecrypt.com/: (60, 'SSL certificat - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Seedr.xml b/src/chrome/content/rules/Seedr.xml index 7009490c9515..229deec41e8b 100644 --- a/src/chrome/content/rules/Seedr.xml +++ b/src/chrome/content/rules/Seedr.xml @@ -8,7 +8,7 @@ Fetch error: http://nl8.seedr.cc/ => https://nl8.seedr.cc/: (60, 'SSL certificat - nl[3-12] - www --> - + diff --git a/src/chrome/content/rules/Seedrs.xml b/src/chrome/content/rules/Seedrs.xml index 81c60a7b44be..246159f83540 100644 --- a/src/chrome/content/rules/Seedrs.xml +++ b/src/chrome/content/rules/Seedrs.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://learn.seedrs.com/ => https://learn.seedrs.com/: (6, 'Could not resolve host: learn.seedrs.com') --> - + @@ -12,6 +12,6 @@ Fetch error: http://learn.seedrs.com/ => https://learn.seedrs.com/: (6, 'Could n - diff --git a/src/chrome/content/rules/Seeed_Studio.com.xml b/src/chrome/content/rules/Seeed_Studio.com.xml index 77cda3f3177b..480d0c65b992 100644 --- a/src/chrome/content/rules/Seeed_Studio.com.xml +++ b/src/chrome/content/rules/Seeed_Studio.com.xml @@ -36,7 +36,7 @@ --> - + - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Segger.com.xml b/src/chrome/content/rules/Segger.com.xml index 4ca011eaf412..ff0e773dc00c 100644 --- a/src/chrome/content/rules/Segger.com.xml +++ b/src/chrome/content/rules/Segger.com.xml @@ -10,7 +10,7 @@ Fetch error: http://segger.com/ => https://segger.com/: (60, 'SSL certificate pr * Secured by us --> - + diff --git a/src/chrome/content/rules/Segment.xml b/src/chrome/content/rules/Segment.xml index 197c33454703..5a841d4b666b 100644 --- a/src/chrome/content/rules/Segment.xml +++ b/src/chrome/content/rules/Segment.xml @@ -3,12 +3,12 @@ - + - + @@ -16,7 +16,7 @@ - + diff --git a/src/chrome/content/rules/Seguros_Universales.xml b/src/chrome/content/rules/Seguros_Universales.xml index e6f229e84e70..571690701e4c 100644 --- a/src/chrome/content/rules/Seguros_Universales.xml +++ b/src/chrome/content/rules/Seguros_Universales.xml @@ -19,4 +19,4 @@ Fetch error: http://segurosuniversales.net/ => https://www.segurosuniversales.ne - \ No newline at end of file + diff --git a/src/chrome/content/rules/Sehirfirsati.xml b/src/chrome/content/rules/Sehirfirsati.xml index 593c6372d987..3e67427e1d15 100644 --- a/src/chrome/content/rules/Sehirfirsati.xml +++ b/src/chrome/content/rules/Sehirfirsati.xml @@ -6,13 +6,13 @@ Fetch error: http://sehirfirsati.com/ => https://www.sehirfirsati.com/: (51, "SS Fetch error: http://static.sehirfirsati.com/ => https://static.sehirfirsati.com/: (51, "SSL: no alternative certificate subject name matches target host name 'static.sehirfirsati.com'") --> - + - + diff --git a/src/chrome/content/rules/Sekindo.com.xml b/src/chrome/content/rules/Sekindo.com.xml new file mode 100644 index 000000000000..48201d1e97d3 --- /dev/null +++ b/src/chrome/content/rules/Sekindo.com.xml @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Selangorku.xml b/src/chrome/content/rules/Selangorku.xml index 67ee34eae4b8..28f3cde40da5 100644 --- a/src/chrome/content/rules/Selangorku.xml +++ b/src/chrome/content/rules/Selangorku.xml @@ -11,15 +11,15 @@ Disabled by https-everywhere-checker because: Fetch error: http://selangorku.com/ => https://selangorku.com/: (60, 'SSL certificate problem: self signed certificate') --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/SelfAuthoring.com.xml b/src/chrome/content/rules/SelfAuthoring.com.xml new file mode 100644 index 000000000000..f631a5d692ca --- /dev/null +++ b/src/chrome/content/rules/SelfAuthoring.com.xml @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Selfhost.de.xml b/src/chrome/content/rules/Selfhost.de.xml deleted file mode 100644 index c36370734a53..000000000000 --- a/src/chrome/content/rules/Selfhost.de.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Selfridges.com.xml b/src/chrome/content/rules/Selfridges.com.xml index 82a0c7ca2dad..8a6189a7b859 100644 --- a/src/chrome/content/rules/Selfridges.com.xml +++ b/src/chrome/content/rules/Selfridges.com.xml @@ -23,4 +23,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Sellaband.com.xml b/src/chrome/content/rules/Sellaband.com.xml index 3d6dd95e532d..dfcf91db1f7e 100644 --- a/src/chrome/content/rules/Sellaband.com.xml +++ b/src/chrome/content/rules/Sellaband.com.xml @@ -4,12 +4,20 @@ Disabled by https-everywhere-checker because: Fetch error: http://sellaband.com/ => https://sellaband.com/: (28, 'Connection timed out after 20001 milliseconds') --> - + - - - + + + + + + + + + + + diff --git a/src/chrome/content/rules/SemanticScholar.org.xml b/src/chrome/content/rules/SemanticScholar.org.xml new file mode 100644 index 000000000000..4b5a635dbdbe --- /dev/null +++ b/src/chrome/content/rules/SemanticScholar.org.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Semasio.net.xml b/src/chrome/content/rules/Semasio.net.xml new file mode 100644 index 000000000000..27c32ba2c9ae --- /dev/null +++ b/src/chrome/content/rules/Semasio.net.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/SemiAccurate.com.xml b/src/chrome/content/rules/SemiAccurate.com.xml new file mode 100644 index 000000000000..9ce07512aca2 --- /dev/null +++ b/src/chrome/content/rules/SemiAccurate.com.xml @@ -0,0 +1,9 @@ + + + + + + + diff --git a/src/chrome/content/rules/SemiAccurate.xml b/src/chrome/content/rules/SemiAccurate.xml deleted file mode 100644 index dc990ca3cde3..000000000000 --- a/src/chrome/content/rules/SemiAccurate.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/SemperVideo.xml b/src/chrome/content/rules/SemperVideo.xml deleted file mode 100644 index 4c2980d90817..000000000000 --- a/src/chrome/content/rules/SemperVideo.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - diff --git a/src/chrome/content/rules/Sencha.xml b/src/chrome/content/rules/Sencha.xml index 6d3f7cff87f8..23bbddbcfac2 100644 --- a/src/chrome/content/rules/Sencha.xml +++ b/src/chrome/content/rules/Sencha.xml @@ -32,7 +32,7 @@ Non-2xx HTTP code: http://cdn.sencha.io/ (200) => https://extjs.cachefly.net/ (4 - .manage.sencha.com --> - + diff --git a/src/chrome/content/rules/SendGrid.com.xml b/src/chrome/content/rules/SendGrid.com.xml index b8402bd56b6d..a5f5beac81ec 100644 --- a/src/chrome/content/rules/SendGrid.com.xml +++ b/src/chrome/content/rules/SendGrid.com.xml @@ -21,7 +21,7 @@ Fetch error: http://community.sendgrid.com/ => https://community.sendgrid.com/: - .sendgrid.com --> - + @@ -39,7 +39,7 @@ Fetch error: http://community.sendgrid.com/ => https://community.sendgrid.com/: --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/SendYourFiles.com.xml b/src/chrome/content/rules/SendYourFiles.com.xml deleted file mode 100644 index e5661672521d..000000000000 --- a/src/chrome/content/rules/SendYourFiles.com.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Sendmoments.com.xml b/src/chrome/content/rules/Sendmoments.com.xml index c98b20173cf6..822d2109f907 100644 --- a/src/chrome/content/rules/Sendmoments.com.xml +++ b/src/chrome/content/rules/Sendmoments.com.xml @@ -6,12 +6,11 @@ Fetch error: http://ck.sendmoments.com/ => https://ck.sendmoments.com/: Too many Disabled by https-everywhere-checker because: Fetch error: http://ck.sendmoments.com/ => https://ck.sendmoments.com/: Cycle detected - URL already encountered: http://ck.sendmoments.com --> - + - + diff --git a/src/chrome/content/rules/Sensiolabs.com.xml b/src/chrome/content/rules/Sensiolabs.com.xml index 103e289b775f..670a3a5d82df 100644 --- a/src/chrome/content/rules/Sensiolabs.com.xml +++ b/src/chrome/content/rules/Sensiolabs.com.xml @@ -10,9 +10,8 @@ Fetch error: http://www.connect.sensiolabs.com/ => https://www.connect.sensiolab More SensioLabs rulesets: - Symfony.com.xml - - Blackfire.io.xml --> - + diff --git a/src/chrome/content/rules/SentinelOne.com.xml b/src/chrome/content/rules/SentinelOne.com.xml index 31ff88f7ccda..9c951c76768b 100644 --- a/src/chrome/content/rules/SentinelOne.com.xml +++ b/src/chrome/content/rules/SentinelOne.com.xml @@ -25,7 +25,7 @@ - + - + - - - - - - - - - - diff --git a/src/chrome/content/rules/Sequanux.org-falsemixed.xml b/src/chrome/content/rules/Sequanux.org-falsemixed.xml index 481ab7d03723..a87463fdc987 100644 --- a/src/chrome/content/rules/Sequanux.org-falsemixed.xml +++ b/src/chrome/content/rules/Sequanux.org-falsemixed.xml @@ -8,7 +8,7 @@ Fetch error: http://wiki.sequanux.org/ => https://wiki.sequanux.org/: (60, 'SSL For rules that are on by default, see Sequanux.org.xml. --> - + diff --git a/src/chrome/content/rules/Sequanux.org.xml b/src/chrome/content/rules/Sequanux.org.xml index d9a614cea115..b7574e848a17 100644 --- a/src/chrome/content/rules/Sequanux.org.xml +++ b/src/chrome/content/rules/Sequanux.org.xml @@ -17,7 +17,8 @@ - + + - + + + + + - + diff --git a/src/chrome/content/rules/Serialist.xml b/src/chrome/content/rules/Serialist.xml deleted file mode 100644 index dfce3f814685..000000000000 --- a/src/chrome/content/rules/Serialist.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Serienjunkies.de.xml b/src/chrome/content/rules/Serienjunkies.de.xml index cdf9ec93acd6..06b3ee47dbb2 100644 --- a/src/chrome/content/rules/Serienjunkies.de.xml +++ b/src/chrome/content/rules/Serienjunkies.de.xml @@ -1,44 +1,30 @@ - - - - - - - + + + + + + + + + + + + + + + - - - - - - - + - + diff --git a/src/chrome/content/rules/Seriouseats.com.xml b/src/chrome/content/rules/Seriouseats.com.xml new file mode 100644 index 000000000000..156d6243ff72 --- /dev/null +++ b/src/chrome/content/rules/Seriouseats.com.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Sertifikatai.lt.xml b/src/chrome/content/rules/Sertifikatai.lt.xml index 0f22cd3db356..541b0a00e461 100644 --- a/src/chrome/content/rules/Sertifikatai.lt.xml +++ b/src/chrome/content/rules/Sertifikatai.lt.xml @@ -12,4 +12,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Servage.net.xml b/src/chrome/content/rules/Servage.net.xml index 881d384941cc..5899a35f3f57 100644 --- a/src/chrome/content/rules/Servage.net.xml +++ b/src/chrome/content/rules/Servage.net.xml @@ -1,50 +1,40 @@ - + - - - - + + + + + + + + + + - + - - - - - - \ No newline at end of file + + + diff --git a/src/chrome/content/rules/ServeNets.com.xml b/src/chrome/content/rules/ServeNets.com.xml index 9fb402dd0f72..0615dd475092 100644 --- a/src/chrome/content/rules/ServeNets.com.xml +++ b/src/chrome/content/rules/ServeNets.com.xml @@ -36,7 +36,6 @@ - + diff --git a/src/chrome/content/rules/Server314.com.xml b/src/chrome/content/rules/Server314.com.xml index 39e67a402a26..0f46d8402a95 100644 --- a/src/chrome/content/rules/Server314.com.xml +++ b/src/chrome/content/rules/Server314.com.xml @@ -10,4 +10,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/ServerCentral.xml b/src/chrome/content/rules/ServerCentral.xml index e481b069e03c..2c97c6fb99b4 100644 --- a/src/chrome/content/rules/ServerCentral.xml +++ b/src/chrome/content/rules/ServerCentral.xml @@ -14,7 +14,7 @@ Fetch error: http://portal.servercentral.net/ => https://portal.servercentral.ne Redirects to http://www.servercentral.com/$, expired 2012-12-02, CN: *.nlayer.net --> - + @@ -22,7 +22,6 @@ Fetch error: http://portal.servercentral.net/ => https://portal.servercentral.ne - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/ServerCrate.com.xml b/src/chrome/content/rules/ServerCrate.com.xml deleted file mode 100644 index 8594e12ea510..000000000000 --- a/src/chrome/content/rules/ServerCrate.com.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/ServerExpress.co.il.xml b/src/chrome/content/rules/ServerExpress.co.il.xml deleted file mode 100644 index e87cd346f28c..000000000000 --- a/src/chrome/content/rules/ServerExpress.co.il.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Server_Express.xml b/src/chrome/content/rules/Server_Express.xml deleted file mode 100644 index 7d91e4ed83e4..000000000000 --- a/src/chrome/content/rules/Server_Express.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Servera.ovh.xml b/src/chrome/content/rules/Servera.ovh.xml new file mode 100644 index 000000000000..e57b53ab91a6 --- /dev/null +++ b/src/chrome/content/rules/Servera.ovh.xml @@ -0,0 +1,16 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Servercow.de.xml b/src/chrome/content/rules/Servercow.de.xml index cab8ebd598cb..511215914f9b 100644 --- a/src/chrome/content/rules/Servercow.de.xml +++ b/src/chrome/content/rules/Servercow.de.xml @@ -7,7 +7,7 @@ - + https://client.serverfruit.com/: * Secured by us --> - + diff --git a/src/chrome/content/rules/Serveriai.lt.xml b/src/chrome/content/rules/Serveriai.lt.xml index 5b70dd224f65..5849e7c9ef36 100644 --- a/src/chrome/content/rules/Serveriai.lt.xml +++ b/src/chrome/content/rules/Serveriai.lt.xml @@ -13,7 +13,7 @@ - + diff --git a/src/chrome/content/rules/Serverloft.com.xml b/src/chrome/content/rules/Serverloft.com.xml new file mode 100644 index 000000000000..abb9d22d5c61 --- /dev/null +++ b/src/chrome/content/rules/Serverloft.com.xml @@ -0,0 +1,14 @@ + + + + + + diff --git a/src/chrome/content/rules/Serverloft.xml b/src/chrome/content/rules/Serverloft.xml deleted file mode 100644 index 42cc9768b3c3..000000000000 --- a/src/chrome/content/rules/Serverloft.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Servers_for_Hackers.com.xml b/src/chrome/content/rules/Servers_for_Hackers.com.xml index 599ebededf25..2d3bbeefa4dc 100644 --- a/src/chrome/content/rules/Servers_for_Hackers.com.xml +++ b/src/chrome/content/rules/Servers_for_Hackers.com.xml @@ -10,7 +10,7 @@ Fetch error: http://forums.serversforhackers.com/ => https://forums.serversforha - www.serversforhackers.com --> - + diff --git a/src/chrome/content/rules/Serversaurus.com.au.xml b/src/chrome/content/rules/Serversaurus.com.au.xml index b1c77f565550..27f310d15576 100644 --- a/src/chrome/content/rules/Serversaurus.com.au.xml +++ b/src/chrome/content/rules/Serversaurus.com.au.xml @@ -15,7 +15,7 @@ Fetch error: http://tasha.serversaurus.com.au/ => https://tasha.serversaurus.com - www.tasha.serversaurus.com.au --> - + diff --git a/src/chrome/content/rules/Service-now.com.xml b/src/chrome/content/rules/Service-now.com.xml index f0d2c7c4680d..4938cb3fe65e 100644 --- a/src/chrome/content/rules/Service-now.com.xml +++ b/src/chrome/content/rules/Service-now.com.xml @@ -23,7 +23,7 @@ --> - + - + + @@ -31,7 +32,6 @@ - + diff --git a/src/chrome/content/rules/Service_by_Air.xml b/src/chrome/content/rules/Service_by_Air.xml index e608069d5822..97b5f325867a 100644 --- a/src/chrome/content/rules/Service_by_Air.xml +++ b/src/chrome/content/rules/Service_by_Air.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://community.sbaglobal.com/ => https://community.sbaglobal.com/: (51, "SSL: no alternative certificate subject name matches target host name 'community.sbaglobal.com'") --> - + @@ -16,4 +16,4 @@ Fetch error: http://community.sbaglobal.com/ => https://community.sbaglobal.com/ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Serving-sys.com.xml b/src/chrome/content/rules/Serving-sys.com.xml index a77c73db8d06..30c00ac4bd5f 100644 --- a/src/chrome/content/rules/Serving-sys.com.xml +++ b/src/chrome/content/rules/Serving-sys.com.xml @@ -1,66 +1,105 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - + diff --git a/src/chrome/content/rules/Sesamstrasse.de.xml b/src/chrome/content/rules/Sesamstrasse.de.xml index c1d2f90a6203..224b0f4b8e72 100644 --- a/src/chrome/content/rules/Sesamstrasse.de.xml +++ b/src/chrome/content/rules/Sesamstrasse.de.xml @@ -1,9 +1,8 @@ - - + + - + - + diff --git a/src/chrome/content/rules/SesliSozluk.net.xml b/src/chrome/content/rules/SesliSozluk.net.xml new file mode 100644 index 000000000000..76a85011cd85 --- /dev/null +++ b/src/chrome/content/rules/SesliSozluk.net.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Seth_Vargo.com.xml b/src/chrome/content/rules/Seth_Vargo.com.xml deleted file mode 100644 index f94e80fc8a19..000000000000 --- a/src/chrome/content/rules/Seth_Vargo.com.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Sevenoaks.gov.uk.xml b/src/chrome/content/rules/Sevenoaks.gov.uk.xml index c06fa0d51031..ff4a53f1a6d1 100644 --- a/src/chrome/content/rules/Sevenoaks.gov.uk.xml +++ b/src/chrome/content/rules/Sevenoaks.gov.uk.xml @@ -35,7 +35,7 @@ Mixed content: - Images on www from $self ˢ - + ˢ Secured by us --> @@ -83,7 +83,7 @@ - + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/SexNarod.xml b/src/chrome/content/rules/SexNarod.xml index 16a48e64cb60..20e1c3724688 100644 --- a/src/chrome/content/rules/SexNarod.xml +++ b/src/chrome/content/rules/SexNarod.xml @@ -3,22 +3,20 @@ - - + + - - + + + - - - - + + + diff --git a/src/chrome/content/rules/SexSlurp.xml b/src/chrome/content/rules/SexSlurp.xml deleted file mode 100644 index e8e34cd67a1f..000000000000 --- a/src/chrome/content/rules/SexSlurp.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Sexad.net.xml b/src/chrome/content/rules/Sexad.net.xml deleted file mode 100644 index 8ef292a59edd..000000000000 --- a/src/chrome/content/rules/Sexad.net.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Sexkompas.net.xml b/src/chrome/content/rules/Sexkompas.net.xml index 57cd44ea25a7..a7d376a62007 100644 --- a/src/chrome/content/rules/Sexkompas.net.xml +++ b/src/chrome/content/rules/Sexkompas.net.xml @@ -9,7 +9,7 @@ Fetch error: http://www.sexkompas.net/ => https://www.sexkompas.net/: (60, 'SSL - www.sexkompas.net --> - + diff --git a/src/chrome/content/rules/Sexstories.com.xml b/src/chrome/content/rules/Sexstories.com.xml new file mode 100644 index 000000000000..624fdc104a36 --- /dev/null +++ b/src/chrome/content/rules/Sexstories.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Sextoy_fun.com.xml b/src/chrome/content/rules/Sextoy_fun.com.xml index ee96290b95cf..a3aa23c9e342 100644 --- a/src/chrome/content/rules/Sextoy_fun.com.xml +++ b/src/chrome/content/rules/Sextoy_fun.com.xml @@ -18,7 +18,7 @@ --> - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Sferra.xml b/src/chrome/content/rules/Sferra.xml index 644c021da90c..ac71bc954e7d 100644 --- a/src/chrome/content/rules/Sferra.xml +++ b/src/chrome/content/rules/Sferra.xml @@ -12,4 +12,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Sfu.ca.xml b/src/chrome/content/rules/Sfu.ca.xml index 337324e6f6f4..0d1270ef4b81 100644 --- a/src/chrome/content/rules/Sfu.ca.xml +++ b/src/chrome/content/rules/Sfu.ca.xml @@ -77,7 +77,7 @@ Fetch error: http://itunes.sfu.ca/ => https://itunes.sfu.ca/: (6, 'Could not res * www.vancouver.sfu.ca * xpressconnect.its.sfu.ca --> - + diff --git a/src/chrome/content/rules/Sgtools.info.xml b/src/chrome/content/rules/Sgtools.info.xml new file mode 100644 index 000000000000..dbbde702b066 --- /dev/null +++ b/src/chrome/content/rules/Sgtools.info.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Shacknews.com.xml b/src/chrome/content/rules/Shacknews.com.xml new file mode 100644 index 000000000000..517065734b83 --- /dev/null +++ b/src/chrome/content/rules/Shacknews.com.xml @@ -0,0 +1,14 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Shacknews.xml b/src/chrome/content/rules/Shacknews.xml deleted file mode 100644 index 03cb0a1d701c..000000000000 --- a/src/chrome/content/rules/Shacknews.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Shadow_of_Mordor.com.xml b/src/chrome/content/rules/Shadow_of_Mordor.com.xml index 7a35be087ec3..32f4dbb8435e 100644 --- a/src/chrome/content/rules/Shadow_of_Mordor.com.xml +++ b/src/chrome/content/rules/Shadow_of_Mordor.com.xml @@ -20,7 +20,7 @@ Fetch error: http://shadowofmordor.com/ => https://www.shadowofmordor.com/: (28, * Secured by us --> - + diff --git a/src/chrome/content/rules/Shadowfacts.net.xml b/src/chrome/content/rules/Shadowfacts.net.xml new file mode 100644 index 000000000000..dc6e6365dd20 --- /dev/null +++ b/src/chrome/content/rules/Shadowfacts.net.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Shadowproof.com.xml b/src/chrome/content/rules/Shadowproof.com.xml index f6bb5e5bda85..0f5418331ba8 100644 --- a/src/chrome/content/rules/Shadowproof.com.xml +++ b/src/chrome/content/rules/Shadowproof.com.xml @@ -23,7 +23,7 @@ --> - + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Shamans_Garden.xml b/src/chrome/content/rules/Shamans_Garden.xml index 25f10b200bd4..daa6a3fd2b2a 100644 --- a/src/chrome/content/rules/Shamans_Garden.xml +++ b/src/chrome/content/rules/Shamans_Garden.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Shambhala-Mountain-Center.xml b/src/chrome/content/rules/Shambhala-Mountain-Center.xml index 5473637a7d90..5bcf50539e02 100644 --- a/src/chrome/content/rules/Shambhala-Mountain-Center.xml +++ b/src/chrome/content/rules/Shambhala-Mountain-Center.xml @@ -4,7 +4,7 @@ - + diff --git a/src/chrome/content/rules/Shamela.ws.xml b/src/chrome/content/rules/Shamela.ws.xml new file mode 100644 index 000000000000..00a44f029023 --- /dev/null +++ b/src/chrome/content/rules/Shamela.ws.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/ShanghaiCommercialBank.xml b/src/chrome/content/rules/ShanghaiCommercialBank.xml index f544891b1dbf..432f53bc0c2b 100644 --- a/src/chrome/content/rules/ShanghaiCommercialBank.xml +++ b/src/chrome/content/rules/ShanghaiCommercialBank.xml @@ -4,9 +4,9 @@ - + - + diff --git a/src/chrome/content/rules/Shannon-Health.xml b/src/chrome/content/rules/Shannon-Health.xml index e28f9ec7577c..5cf42226243a 100644 --- a/src/chrome/content/rules/Shannon-Health.xml +++ b/src/chrome/content/rules/Shannon-Health.xml @@ -4,16 +4,14 @@ Disabled by https-everywhere-checker because: Fetch error: http://myshannonconnection.org/ => https://www.myshannonconnection.org/: (28, 'Connection timed out after 20001 milliseconds') --> - + - + - + - - - + - + - + - - - + diff --git a/src/chrome/content/rules/ShareConnect.com.xml b/src/chrome/content/rules/ShareConnect.com.xml index d8cf006b934e..b4274f8aa8ff 100644 --- a/src/chrome/content/rules/ShareConnect.com.xml +++ b/src/chrome/content/rules/ShareConnect.com.xml @@ -20,7 +20,7 @@ --> - + - + - + diff --git a/src/chrome/content/rules/ShareIslam.com.xml b/src/chrome/content/rules/ShareIslam.com.xml index a7521b1a52fc..4f8e8e9e8c5c 100644 --- a/src/chrome/content/rules/ShareIslam.com.xml +++ b/src/chrome/content/rules/ShareIslam.com.xml @@ -1,12 +1,10 @@ - - + @@ -15,5 +13,7 @@ Fetch error: http://order.shareislam.com/ => https://order.shareislam.com/: (60, + + diff --git a/src/chrome/content/rules/ShareThis.xml b/src/chrome/content/rules/ShareThis.xml index 1d552436f299..2af4869de38f 100644 --- a/src/chrome/content/rules/ShareThis.xml +++ b/src/chrome/content/rules/ShareThis.xml @@ -74,7 +74,7 @@ - + https://secure.shareit.com/: (7, 'Fai * Secured by us --> - + @@ -46,7 +46,7 @@ Fetch error: http://secure.shareit.com/ => https://secure.shareit.com/: (7, 'Fai --> - + - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Shared.sx.xml b/src/chrome/content/rules/Shared.sx.xml deleted file mode 100644 index 00fc4c3c284b..000000000000 --- a/src/chrome/content/rules/Shared.sx.xml +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/SharedCount.com.xml b/src/chrome/content/rules/SharedCount.com.xml new file mode 100644 index 000000000000..7a020e3ab512 --- /dev/null +++ b/src/chrome/content/rules/SharedCount.com.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Sharedcount.com-API.xml b/src/chrome/content/rules/Sharedcount.com-API.xml deleted file mode 100644 index 2c2c6e045e11..000000000000 --- a/src/chrome/content/rules/Sharedcount.com-API.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Sharefest.me.xml b/src/chrome/content/rules/Sharefest.me.xml index 8dacf6ddece2..0606f4c08918 100644 --- a/src/chrome/content/rules/Sharefest.me.xml +++ b/src/chrome/content/rules/Sharefest.me.xml @@ -16,7 +16,7 @@ --> - + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Sharethrough.com.xml b/src/chrome/content/rules/Sharethrough.com.xml new file mode 100644 index 000000000000..6e3c0de9174a --- /dev/null +++ b/src/chrome/content/rules/Sharethrough.com.xml @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Sharethrough.xml b/src/chrome/content/rules/Sharethrough.xml deleted file mode 100644 index 27df67030736..000000000000 --- a/src/chrome/content/rules/Sharethrough.xml +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/SharpSpring.xml b/src/chrome/content/rules/SharpSpring.xml index 7ddcd0c2d987..0edc05a042ba 100644 --- a/src/chrome/content/rules/SharpSpring.xml +++ b/src/chrome/content/rules/SharpSpring.xml @@ -10,9 +10,9 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Sharpmen.xml b/src/chrome/content/rules/Sharpmen.xml index 07bf17f2bc5d..ee19d8dbd05b 100644 --- a/src/chrome/content/rules/Sharpmen.xml +++ b/src/chrome/content/rules/Sharpmen.xml @@ -5,7 +5,7 @@ Fetch error: http://sharpmen.com/ => https://sharpmen.com/: (35, 'error:14077438 Fetch error: http://www.sharpmen.com/ => https://www.sharpmen.com/: (35, 'error:14077438:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert internal error') --> - + @@ -16,4 +16,4 @@ Fetch error: http://www.sharpmen.com/ => https://www.sharpmen.com/: (35, 'error: - \ No newline at end of file + diff --git a/src/chrome/content/rules/Shashkovs.ru.xml b/src/chrome/content/rules/Shashkovs.ru.xml new file mode 100644 index 000000000000..bb1541235de0 --- /dev/null +++ b/src/chrome/content/rules/Shashkovs.ru.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Shatiby.edu.sa.xml b/src/chrome/content/rules/Shatiby.edu.sa.xml new file mode 100644 index 000000000000..8c4ad0319b29 --- /dev/null +++ b/src/chrome/content/rules/Shatiby.edu.sa.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Shaun_Lorrain.com.au.xml b/src/chrome/content/rules/Shaun_Lorrain.com.au.xml index 305973c6309c..60cb6bc5b5ee 100644 --- a/src/chrome/content/rules/Shaun_Lorrain.com.au.xml +++ b/src/chrome/content/rules/Shaun_Lorrain.com.au.xml @@ -14,7 +14,7 @@ Fetch error: http://www.shaunlorrain.com.au/ => https://www.shaunlorrain.com.au/ * Secured by us --> - + diff --git a/src/chrome/content/rules/Shazam.xml b/src/chrome/content/rules/Shazam.xml index 4b832eb2e769..a502d459f59a 100644 --- a/src/chrome/content/rules/Shazam.xml +++ b/src/chrome/content/rules/Shazam.xml @@ -4,7 +4,6 @@ Other Shazam rulesets: - My_Shazam.com.xml - - ShazamID.com.xml CDN buckets: diff --git a/src/chrome/content/rules/ShazamID.com.xml b/src/chrome/content/rules/ShazamID.com.xml deleted file mode 100644 index 8baf9b5556ee..000000000000 --- a/src/chrome/content/rules/ShazamID.com.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Sheet-Music-Plus.xml b/src/chrome/content/rules/Sheet-Music-Plus.xml index 0351f04a1274..404672b6801d 100644 --- a/src/chrome/content/rules/Sheet-Music-Plus.xml +++ b/src/chrome/content/rules/Sheet-Music-Plus.xml @@ -3,8 +3,9 @@ - - + + + @@ -12,7 +13,7 @@ - diff --git a/src/chrome/content/rules/Sheffield.gov.uk.xml b/src/chrome/content/rules/Sheffield.gov.uk.xml index 883da607451d..8a054e08e78a 100644 --- a/src/chrome/content/rules/Sheffield.gov.uk.xml +++ b/src/chrome/content/rules/Sheffield.gov.uk.xml @@ -30,7 +30,7 @@ Fetch error: http://taxbenefits.sheffield.gov.uk/ => https://taxbenefits.sheffie - signpostsheffield.sheffield.gov.uk --> - + @@ -61,7 +61,7 @@ Fetch error: http://taxbenefits.sheffield.gov.uk/ => https://taxbenefits.sheffie - + + + + + + + + + diff --git a/src/chrome/content/rules/SheldrickWildlifeTrust.org.xml b/src/chrome/content/rules/SheldrickWildlifeTrust.org.xml new file mode 100644 index 000000000000..e3a08e76e124 --- /dev/null +++ b/src/chrome/content/rules/SheldrickWildlifeTrust.org.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Shellfish.io.xml b/src/chrome/content/rules/Shellfish.io.xml deleted file mode 100644 index 6c73450bae12..000000000000 --- a/src/chrome/content/rules/Shellfish.io.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Shellspace.net.xml b/src/chrome/content/rules/Shellspace.net.xml deleted file mode 100644 index 888f8110a103..000000000000 --- a/src/chrome/content/rules/Shellspace.net.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Shenandoah_University.xml b/src/chrome/content/rules/Shenandoah_University.xml deleted file mode 100644 index 014122029017..000000000000 --- a/src/chrome/content/rules/Shenandoah_University.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Sheperds_Friendly_Society.xml b/src/chrome/content/rules/Sheperds_Friendly_Society.xml deleted file mode 100644 index 93ef4413f346..000000000000 --- a/src/chrome/content/rules/Sheperds_Friendly_Society.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Shift_Payments.com.xml b/src/chrome/content/rules/Shift_Payments.com.xml deleted file mode 100644 index fc6382d8aaf0..000000000000 --- a/src/chrome/content/rules/Shift_Payments.com.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Shinobi.jp.xml b/src/chrome/content/rules/Shinobi.jp.xml new file mode 100644 index 000000000000..1346adbc6ef1 --- /dev/null +++ b/src/chrome/content/rules/Shinobi.jp.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Shipment.xml b/src/chrome/content/rules/Shipment.xml index b4a95b9bd541..5e56a09fdf05 100644 --- a/src/chrome/content/rules/Shipment.xml +++ b/src/chrome/content/rules/Shipment.xml @@ -5,7 +5,7 @@ Fetch error: http://ship-ment.com/ => https://ship-ment.com/: (60, 'SSL certific Fetch error: http://www.ship-ment.com/ => https://www.ship-ment.com/: (60, 'SSL certificate problem: certificate has expired') --> - + @@ -16,4 +16,4 @@ Fetch error: http://www.ship-ment.com/ => https://www.ship-ment.com/: (60, 'SSL - \ No newline at end of file + diff --git a/src/chrome/content/rules/ShippingWatch.xml b/src/chrome/content/rules/ShippingWatch.xml index 71834c8b3410..a453e10e8ab8 100644 --- a/src/chrome/content/rules/ShippingWatch.xml +++ b/src/chrome/content/rules/ShippingWatch.xml @@ -7,7 +7,7 @@ Fetch error: http://www.shippingwatch.dk/ => https://www.shippingwatch.dk/: (51, http://shippingwatch.dk/template/swVer1-0/css/main.css?rev=35794 is essential for the layout but is served through http. --> - + diff --git a/src/chrome/content/rules/Shipto.com.xml b/src/chrome/content/rules/Shipto.com.xml index d21c775a6d66..e1e8aae5b448 100644 --- a/src/chrome/content/rules/Shipto.com.xml +++ b/src/chrome/content/rules/Shipto.com.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Shmoop.com.xml b/src/chrome/content/rules/Shmoop.com.xml index db934ea84b91..3ae5b8191df9 100644 --- a/src/chrome/content/rules/Shmoop.com.xml +++ b/src/chrome/content/rules/Shmoop.com.xml @@ -12,7 +12,8 @@ - + + @@ -23,6 +24,6 @@ to="https://www.shmoop.com/" /> + to="https://media1.shmoop.com/" /> diff --git a/src/chrome/content/rules/Shock_Media.nl.xml b/src/chrome/content/rules/Shock_Media.nl.xml index 45050670be6b..d897f52e8aa9 100644 --- a/src/chrome/content/rules/Shock_Media.nl.xml +++ b/src/chrome/content/rules/Shock_Media.nl.xml @@ -16,7 +16,9 @@ Fetch error: http://shockmedia.nl/ => https://www.shockmedia.nl/: (28, 'Connecti - + + + @@ -25,7 +27,6 @@ Fetch error: http://shockmedia.nl/ => https://www.shockmedia.nl/: (28, 'Connecti - + diff --git a/src/chrome/content/rules/ShoeShow.xml b/src/chrome/content/rules/ShoeShow.xml index 0ef38f2ccd86..e7d5be99ea49 100644 --- a/src/chrome/content/rules/ShoeShow.xml +++ b/src/chrome/content/rules/ShoeShow.xml @@ -4,4 +4,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Shoebuy.com.xml b/src/chrome/content/rules/Shoebuy.com.xml index e06b3cd6e3f0..dffbf9aaf3c0 100644 --- a/src/chrome/content/rules/Shoebuy.com.xml +++ b/src/chrome/content/rules/Shoebuy.com.xml @@ -31,7 +31,7 @@ Fetch error: http://att-i.shoebuy.com/ => https://att-i.shoebuy.com/: (51, "SSL: - i (→ akamai) --> - + diff --git a/src/chrome/content/rules/Shoofle.tv.xml b/src/chrome/content/rules/Shoofle.tv.xml new file mode 100644 index 000000000000..5d3b2de4ce16 --- /dev/null +++ b/src/chrome/content/rules/Shoofle.tv.xml @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ShopCo.com.xml b/src/chrome/content/rules/ShopCo.com.xml index e0b3baf3b90e..303b356b0c17 100644 --- a/src/chrome/content/rules/ShopCo.com.xml +++ b/src/chrome/content/rules/ShopCo.com.xml @@ -9,10 +9,10 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/ShopLocal.xml b/src/chrome/content/rules/ShopLocal.xml index 69f66a433ebf..3b93d4076167 100644 --- a/src/chrome/content/rules/ShopLocal.xml +++ b/src/chrome/content/rules/ShopLocal.xml @@ -34,9 +34,14 @@ Fetch error: http://shoplocal.com/ => https://shoplocal.com/: (60, 'SSL certific --> - + + - + + + + + @@ -45,7 +50,6 @@ Fetch error: http://shoplocal.com/ => https://shoplocal.com/: (60, 'SSL certific - + diff --git a/src/chrome/content/rules/ShopPBS.org.xml b/src/chrome/content/rules/ShopPBS.org.xml new file mode 100644 index 000000000000..163adbe11791 --- /dev/null +++ b/src/chrome/content/rules/ShopPBS.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/ShopSite.xml b/src/chrome/content/rules/ShopSite.xml index 17a68f7b81df..1dd31ba4a972 100644 --- a/src/chrome/content/rules/ShopSite.xml +++ b/src/chrome/content/rules/ShopSite.xml @@ -34,7 +34,7 @@ --> - + - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/ShopStyle.xml b/src/chrome/content/rules/ShopStyle.xml index eab534eb786d..b37926ecb6f1 100644 --- a/src/chrome/content/rules/ShopStyle.xml +++ b/src/chrome/content/rules/ShopStyle.xml @@ -1,71 +1,45 @@ - - - - - - - - - + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ShopToIt.ca.xml b/src/chrome/content/rules/ShopToIt.ca.xml new file mode 100644 index 000000000000..e738405f469f --- /dev/null +++ b/src/chrome/content/rules/ShopToIt.ca.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ShopWiki.com.xml b/src/chrome/content/rules/ShopWiki.com.xml new file mode 100644 index 000000000000..7d8305a89eb3 --- /dev/null +++ b/src/chrome/content/rules/ShopWiki.com.xml @@ -0,0 +1,14 @@ + + + + + + + + diff --git a/src/chrome/content/rules/ShopWiki.xml b/src/chrome/content/rules/ShopWiki.xml deleted file mode 100644 index a5c6546fc2bf..000000000000 --- a/src/chrome/content/rules/ShopWiki.xml +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Shopatron.xml b/src/chrome/content/rules/Shopatron.xml index 19d44b5797b0..4f77e5b4d8fc 100644 --- a/src/chrome/content/rules/Shopatron.xml +++ b/src/chrome/content/rules/Shopatron.xml @@ -30,12 +30,15 @@ Fetch error: http://shopatron.com/ => https://shopatron.com/: (7, 'Failed to con - cdn.shptrn.com --> - + - + + + + @@ -45,13 +48,10 @@ Fetch error: http://shopatron.com/ => https://shopatron.com/: (7, 'Failed to con - - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Shopee.com.my.xml b/src/chrome/content/rules/Shopee.com.my.xml new file mode 100644 index 000000000000..737b4526320d --- /dev/null +++ b/src/chrome/content/rules/Shopee.com.my.xml @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Shopfiller.com.xml b/src/chrome/content/rules/Shopfiller.com.xml new file mode 100644 index 000000000000..1c0b56a8a9c0 --- /dev/null +++ b/src/chrome/content/rules/Shopfiller.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Shopify.xml b/src/chrome/content/rules/Shopify.xml index 1fe0d69420b9..7f1707c2ed86 100644 --- a/src/chrome/content/rules/Shopify.xml +++ b/src/chrome/content/rules/Shopify.xml @@ -1,62 +1,63 @@ - + + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - + diff --git a/src/chrome/content/rules/Shopper_Approved.com.xml b/src/chrome/content/rules/Shopper_Approved.com.xml index eca9a4e68c3f..b2f8d8a67a89 100644 --- a/src/chrome/content/rules/Shopper_Approved.com.xml +++ b/src/chrome/content/rules/Shopper_Approved.com.xml @@ -31,7 +31,7 @@ - + - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Shopping_Cart_Elite.xml b/src/chrome/content/rules/Shopping_Cart_Elite.xml index 57746bccd5c3..2010e0ce4519 100644 --- a/src/chrome/content/rules/Shopping_Cart_Elite.xml +++ b/src/chrome/content/rules/Shopping_Cart_Elite.xml @@ -10,9 +10,9 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Shoppingshadow.com.xml b/src/chrome/content/rules/Shoppingshadow.com.xml deleted file mode 100644 index 32f36c581cbd..000000000000 --- a/src/chrome/content/rules/Shoppingshadow.com.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Shoptiques.com.xml b/src/chrome/content/rules/Shoptiques.com.xml index cf0fd1ae88e7..559fa62d7304 100644 --- a/src/chrome/content/rules/Shoptiques.com.xml +++ b/src/chrome/content/rules/Shoptiques.com.xml @@ -14,7 +14,8 @@ - + + @@ -27,4 +28,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Shopware.de.xml b/src/chrome/content/rules/Shopware.de.xml deleted file mode 100644 index 4b6c403f7f0c..000000000000 --- a/src/chrome/content/rules/Shopware.de.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Shopzilla.xml b/src/chrome/content/rules/Shopzilla.xml index 9845e403d958..52397e8666f0 100644 --- a/src/chrome/content/rules/Shopzilla.xml +++ b/src/chrome/content/rules/Shopzilla.xml @@ -10,20 +10,20 @@ Fetch error: http://shopzilla.com/ => https://www.shopzilla.com/: (35, 'Unknown - Bizrate.com.xml --> - + - + + - + - + diff --git a/src/chrome/content/rules/ShortList.xml b/src/chrome/content/rules/ShortList.xml index 3b96ee41a513..4558a118e2cf 100644 --- a/src/chrome/content/rules/ShortList.xml +++ b/src/chrome/content/rules/ShortList.xml @@ -45,7 +45,7 @@ Fetch error: http://shortlist.com/ => https://www.shortlist.com/: Too many redir ˢ Secured by us --> - + @@ -69,7 +69,7 @@ Fetch error: http://shortlist.com/ => https://www.shortlist.com/: Too many redir --> - + - + - + + - + - + diff --git a/src/chrome/content/rules/Shotgun_Club.xml b/src/chrome/content/rules/Shotgun_Club.xml deleted file mode 100644 index c6963bc242a2..000000000000 --- a/src/chrome/content/rules/Shotgun_Club.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/ShouldIAnswer.xml b/src/chrome/content/rules/ShouldIAnswer.xml new file mode 100644 index 000000000000..672d47bff54c --- /dev/null +++ b/src/chrome/content/rules/ShouldIAnswer.xml @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ShoutOutRadio.lgbt.xml b/src/chrome/content/rules/ShoutOutRadio.lgbt.xml new file mode 100644 index 000000000000..bf4899744e92 --- /dev/null +++ b/src/chrome/content/rules/ShoutOutRadio.lgbt.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/ShoutWiki.com.xml b/src/chrome/content/rules/ShoutWiki.com.xml new file mode 100644 index 000000000000..68b1685dfcec --- /dev/null +++ b/src/chrome/content/rules/ShoutWiki.com.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ShowMeCon.com.xml b/src/chrome/content/rules/ShowMeCon.com.xml index 4b39e23c276a..cba97961db86 100644 --- a/src/chrome/content/rules/ShowMeCon.com.xml +++ b/src/chrome/content/rules/ShowMeCon.com.xml @@ -8,7 +8,7 @@ - + diff --git a/src/chrome/content/rules/Showcase-TV.xml b/src/chrome/content/rules/Showcase-TV.xml index 3d7db46cfc0a..0237431a2f3c 100644 --- a/src/chrome/content/rules/Showcase-TV.xml +++ b/src/chrome/content/rules/Showcase-TV.xml @@ -1,48 +1,11 @@ - - - - - + + - - + - - - - - - - - - - - - - + diff --git a/src/chrome/content/rules/Showcase.ca-problematic.xml b/src/chrome/content/rules/Showcase.ca-problematic.xml deleted file mode 100644 index 4d5990b74d9a..000000000000 --- a/src/chrome/content/rules/Showcase.ca-problematic.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Showcase.ca.xml b/src/chrome/content/rules/Showcase.ca.xml index de456e96c907..4ce298541b15 100644 --- a/src/chrome/content/rules/Showcase.ca.xml +++ b/src/chrome/content/rules/Showcase.ca.xml @@ -1,66 +1,11 @@ - - + + + - - - - - - - - - + diff --git a/src/chrome/content/rules/Showing_Cloud.com.xml b/src/chrome/content/rules/Showing_Cloud.com.xml index 86e1425490a9..07541df3eb0c 100644 --- a/src/chrome/content/rules/Showing_Cloud.com.xml +++ b/src/chrome/content/rules/Showing_Cloud.com.xml @@ -1,7 +1,9 @@ - + + + - + - + diff --git a/src/chrome/content/rules/Shubh.am.xml b/src/chrome/content/rules/Shubh.am.xml index 9f947d2b3243..d28d2770fdb8 100644 --- a/src/chrome/content/rules/Shubh.am.xml +++ b/src/chrome/content/rules/Shubh.am.xml @@ -8,7 +8,7 @@ Fetch error: http://www.shubh.am/ => https://www.shubh.am/: (6, 'Could not resol - .shubh.am --> - + @@ -20,7 +20,7 @@ Fetch error: http://www.shubh.am/ => https://www.shubh.am/: (6, 'Could not resol --> - + https://shuddle.us/: (28, 'Connection timed o www: refused --> - + - + + + + https://shutterfly.com/: (7, 'Failed to c - + + + + + + + diff --git a/src/chrome/content/rules/SideReel.com.xml b/src/chrome/content/rules/SideReel.com.xml new file mode 100644 index 000000000000..1b966c8207d2 --- /dev/null +++ b/src/chrome/content/rules/SideReel.com.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/SideReel.xml b/src/chrome/content/rules/SideReel.xml deleted file mode 100644 index d77763bb4255..000000000000 --- a/src/chrome/content/rules/SideReel.xml +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Sidearm_Sports-problematic.xml b/src/chrome/content/rules/Sidearm_Sports-problematic.xml deleted file mode 100644 index 2e8903394b15..000000000000 --- a/src/chrome/content/rules/Sidearm_Sports-problematic.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Sidearm_Sports.xml b/src/chrome/content/rules/Sidearm_Sports.xml index 3ce058b24ad9..1874e979f999 100644 --- a/src/chrome/content/rules/Sidearm_Sports.xml +++ b/src/chrome/content/rules/Sidearm_Sports.xml @@ -1,21 +1,12 @@ + + + - - - - - + diff --git a/src/chrome/content/rules/Sidibouras.xml b/src/chrome/content/rules/Sidibouras.xml deleted file mode 100644 index 98ed48c200b2..000000000000 --- a/src/chrome/content/rules/Sidibouras.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Sidux-ev.org.xml b/src/chrome/content/rules/Sidux-ev.org.xml deleted file mode 100644 index 36c8231bdd10..000000000000 --- a/src/chrome/content/rules/Sidux-ev.org.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Siemens.xml b/src/chrome/content/rules/Siemens.xml index 15ae4bfcf2ca..1ed21b45c95c 100644 --- a/src/chrome/content/rules/Siemens.xml +++ b/src/chrome/content/rules/Siemens.xml @@ -1,5 +1,5 @@ - + @@ -22,4 +22,4 @@ Fetch error: http://sierraclubgreenhome.com/ => https://sierraclubgreenhome.com/ - \ No newline at end of file + diff --git a/src/chrome/content/rules/SigFig.xml b/src/chrome/content/rules/SigFig.xml index 1ccede5c352b..2a189c774886 100644 --- a/src/chrome/content/rules/SigFig.xml +++ b/src/chrome/content/rules/SigFig.xml @@ -49,7 +49,11 @@ - + + + + + @@ -59,7 +63,6 @@ - + diff --git a/src/chrome/content/rules/Sigdet.nu.xml b/src/chrome/content/rules/Sigdet.nu.xml index ce17ab9e499b..867ac33b1efe 100644 --- a/src/chrome/content/rules/Sigdet.nu.xml +++ b/src/chrome/content/rules/Sigdet.nu.xml @@ -5,7 +5,7 @@ Fetch error: http://sigdet.nu/ => https://sigdet.nu/: (35, 'Unknown SSL protocol Fetch error: http://www.sigdet.nu/ => https://www.sigdet.nu/: (35, 'Unknown SSL protocol error in connection to www.sigdet.nu:443 ') --> - + diff --git a/src/chrome/content/rules/Siggraph.org.xml b/src/chrome/content/rules/Siggraph.org.xml index b0942335d409..b8fd5bc7de01 100644 --- a/src/chrome/content/rules/Siggraph.org.xml +++ b/src/chrome/content/rules/Siggraph.org.xml @@ -1,6 +1,6 @@ - - - + + + - + diff --git a/src/chrome/content/rules/SigmaAldrich.com.xml b/src/chrome/content/rules/SigmaAldrich.com.xml index 38f82ee80417..a00e6a2f1afd 100644 --- a/src/chrome/content/rules/SigmaAldrich.com.xml +++ b/src/chrome/content/rules/SigmaAldrich.com.xml @@ -1,4 +1,11 @@ + - - + + - - diff --git a/src/chrome/content/rules/SigmaBeauty.xml b/src/chrome/content/rules/SigmaBeauty.xml index 1c292001672d..51e82b88b8fd 100644 --- a/src/chrome/content/rules/SigmaBeauty.xml +++ b/src/chrome/content/rules/SigmaBeauty.xml @@ -7,10 +7,10 @@ enews. mismatch - + - + + + + + + + + + diff --git a/src/chrome/content/rules/Signal_Spam.xml b/src/chrome/content/rules/Signal_Spam.xml deleted file mode 100644 index 6c937a476967..000000000000 --- a/src/chrome/content/rules/Signal_Spam.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - diff --git a/src/chrome/content/rules/Signals.xml b/src/chrome/content/rules/Signals.xml index 71d20eabb694..eb050a8ebc4f 100644 --- a/src/chrome/content/rules/Signals.xml +++ b/src/chrome/content/rules/Signals.xml @@ -7,7 +7,10 @@ - + + + + @@ -16,7 +19,6 @@ - + diff --git a/src/chrome/content/rules/Sigterm.no.xml b/src/chrome/content/rules/Sigterm.no.xml index de0486add850..a87190568a2b 100644 --- a/src/chrome/content/rules/Sigterm.no.xml +++ b/src/chrome/content/rules/Sigterm.no.xml @@ -14,7 +14,7 @@ Fetch error: http://clients.sigterm.no/ => https://clients.sigterm.no/: (6, 'Cou ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -41,7 +41,7 @@ Fetch error: http://clients.sigterm.no/ => https://clients.sigterm.no/: (6, 'Cou --> - + - - - - - - - - - + + - + - - + - + + diff --git a/src/chrome/content/rules/Silent_Circle.xml b/src/chrome/content/rules/Silent_Circle.xml index dec4b14f348b..d0d061ff968d 100644 --- a/src/chrome/content/rules/Silent_Circle.xml +++ b/src/chrome/content/rules/Silent_Circle.xml @@ -6,7 +6,6 @@ Fetch error: http://mail.silentcircle.com/ => https://mail.silentcircle.com/: (6 Other Silent Circle rulesets: - - Black_Phone.ch.xml - Secure_in_the_Circle.xml. @@ -30,7 +29,7 @@ Fetch error: http://mail.silentcircle.com/ => https://mail.silentcircle.com/: (6 No respone: - (www.)silentcircle.org --> - + diff --git a/src/chrome/content/rules/Silicon-Labs.xml b/src/chrome/content/rules/Silicon-Labs.xml index 10c47473595d..0e26d6b2c736 100644 --- a/src/chrome/content/rules/Silicon-Labs.xml +++ b/src/chrome/content/rules/Silicon-Labs.xml @@ -4,7 +4,7 @@ - + - + diff --git a/src/chrome/content/rules/Siliconera.com.xml b/src/chrome/content/rules/Siliconera.com.xml index 038c6c83a2c8..fc7b7da7e07f 100644 --- a/src/chrome/content/rules/Siliconera.com.xml +++ b/src/chrome/content/rules/Siliconera.com.xml @@ -6,7 +6,7 @@ - + diff --git a/src/chrome/content/rules/SilkRoad.xml b/src/chrome/content/rules/SilkRoad.xml index afd1df8f827a..fe45530e76a4 100644 --- a/src/chrome/content/rules/SilkRoad.xml +++ b/src/chrome/content/rules/SilkRoad.xml @@ -32,7 +32,7 @@ Fetch error: http://dandbcareers.silkroad.com/ => https://dandbcareers.silkroad. ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -79,7 +79,7 @@ Fetch error: http://dandbcareers.silkroad.com/ => https://dandbcareers.silkroad. - + - + - + + @@ -43,7 +44,6 @@ Fetch error: http://www.buyfacefx.com/ => https://www.buyfacefx.com/: (6, 'Could - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Silkroad_WS.xml b/src/chrome/content/rules/Silkroad_WS.xml deleted file mode 100644 index 9a0714855bd0..000000000000 --- a/src/chrome/content/rules/Silkroad_WS.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Silkspan.com.xml b/src/chrome/content/rules/Silkspan.com.xml index 89f4b3072579..c9d42eacba13 100644 --- a/src/chrome/content/rules/Silkspan.com.xml +++ b/src/chrome/content/rules/Silkspan.com.xml @@ -5,7 +5,7 @@ Fetch error: http://silkspan.com/ => https://www.silkspan.com/: (60, 'SSL certif Fetch error: http://www.silkspan.com/ => https://www.silkspan.com/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + diff --git a/src/chrome/content/rules/Silktide.xml b/src/chrome/content/rules/Silktide.xml index 020350b68067..7974a373e3d9 100644 --- a/src/chrome/content/rules/Silktide.xml +++ b/src/chrome/content/rules/Silktide.xml @@ -27,7 +27,7 @@ Fetch error: http://status.silktide.com/ => https://status.silktide.com/: (35, ' ᵂ WP Engine/redirects to http --> - + diff --git a/src/chrome/content/rules/Silobreaker.xml b/src/chrome/content/rules/Silobreaker.xml index eb232ec6b6d9..0e3f7ead558e 100644 --- a/src/chrome/content/rules/Silobreaker.xml +++ b/src/chrome/content/rules/Silobreaker.xml @@ -20,16 +20,18 @@ - + + + + - + diff --git a/src/chrome/content/rules/Silva_Wood_Flooring.xml b/src/chrome/content/rules/Silva_Wood_Flooring.xml index 8e5e587ca52a..0d7d263941f5 100644 --- a/src/chrome/content/rules/Silva_Wood_Flooring.xml +++ b/src/chrome/content/rules/Silva_Wood_Flooring.xml @@ -5,7 +5,7 @@ Fetch error: http://silvawoodflooring.co.uk/ => https://silvawoodflooring.co.uk/ Fetch error: http://www.silvawoodflooring.co.uk/ => https://www.silvawoodflooring.co.uk/: (28, 'Operation timed out after 30001 milliseconds with 0 bytes received') --> - + @@ -16,4 +16,4 @@ Fetch error: http://www.silvawoodflooring.co.uk/ => https://www.silvawoodfloorin - \ No newline at end of file + diff --git a/src/chrome/content/rules/Silver-Oven.xml b/src/chrome/content/rules/Silver-Oven.xml index 359aecbf74a5..9999f5ebe044 100644 --- a/src/chrome/content/rules/Silver-Oven.xml +++ b/src/chrome/content/rules/Silver-Oven.xml @@ -3,7 +3,7 @@ - + diff --git a/src/chrome/content/rules/SilverRush_Style.xml b/src/chrome/content/rules/SilverRush_Style.xml index 566393f497ac..faeb986e492a 100644 --- a/src/chrome/content/rules/SilverRush_Style.xml +++ b/src/chrome/content/rules/SilverRush_Style.xml @@ -16,7 +16,7 @@ - .silverrushstyle.com --> - + diff --git a/src/chrome/content/rules/Silverflint.xml b/src/chrome/content/rules/Silverflint.xml index 36e238ca3d47..16e6495e7eef 100644 --- a/src/chrome/content/rules/Silverflint.xml +++ b/src/chrome/content/rules/Silverflint.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Silverpop.xml b/src/chrome/content/rules/Silverpop.xml index b74e72043c06..4328c21de420 100644 --- a/src/chrome/content/rules/Silverpop.xml +++ b/src/chrome/content/rules/Silverpop.xml @@ -10,7 +10,6 @@ Fetch error: http://www1.vtrenz.net/ => https://www1.vtrenz.net/: (6, 'Could not Other Silverpop rulesets: - - CoreMotives.com.xml - mkt51.net.xml - Pages05.net.xml @@ -78,7 +77,7 @@ Fetch error: http://www1.vtrenz.net/ => https://www1.vtrenz.net/: (6, 'Could not * Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -115,7 +114,7 @@ Fetch error: http://www1.vtrenz.net/ => https://www1.vtrenz.net/: (6, 'Could not - + https://silvertunnel.org/: (35, 'Un www.silvertunnel.org: Refused --> - + diff --git a/src/chrome/content/rules/Sim-technik.de.xml b/src/chrome/content/rules/Sim-technik.de.xml index 1d7bba09bb85..ab769dc24dd7 100644 --- a/src/chrome/content/rules/Sim-technik.de.xml +++ b/src/chrome/content/rules/Sim-technik.de.xml @@ -3,7 +3,6 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/SimFlight-mismatches.xml b/src/chrome/content/rules/SimFlight-mismatches.xml deleted file mode 100644 index 908aed769c1f..000000000000 --- a/src/chrome/content/rules/SimFlight-mismatches.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/SimFlight-problematic.xml b/src/chrome/content/rules/SimFlight-problematic.xml new file mode 100644 index 000000000000..09e5edd556d4 --- /dev/null +++ b/src/chrome/content/rules/SimFlight-problematic.xml @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/SimFlight.xml b/src/chrome/content/rules/SimFlight.xml index f10ea368a236..c9a372ed08dc 100644 --- a/src/chrome/content/rules/SimFlight.xml +++ b/src/chrome/content/rules/SimFlight.xml @@ -1,9 +1,10 @@ - + + - + diff --git a/src/chrome/content/rules/Simblee.com.xml b/src/chrome/content/rules/Simblee.com.xml deleted file mode 100644 index 8012765cfb82..000000000000 --- a/src/chrome/content/rules/Simblee.com.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Simg.jp.xml b/src/chrome/content/rules/Simg.jp.xml deleted file mode 100644 index 3dd8f2a26f12..000000000000 --- a/src/chrome/content/rules/Simg.jp.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/SimilarGroup.com.xml b/src/chrome/content/rules/SimilarGroup.com.xml index dfad0ff9eade..606744272218 100644 --- a/src/chrome/content/rules/SimilarGroup.com.xml +++ b/src/chrome/content/rules/SimilarGroup.com.xml @@ -9,7 +9,7 @@ * Server sends no certificate chain, see https://whatsmychaincert.com --> - + diff --git a/src/chrome/content/rules/Simlar.org.xml b/src/chrome/content/rules/Simlar.org.xml index ce4616c75553..2e5976a82808 100644 --- a/src/chrome/content/rules/Simlar.org.xml +++ b/src/chrome/content/rules/Simlar.org.xml @@ -11,7 +11,7 @@ Fetch error: http://simlar.org/ => https://simlar.org/: (51, "SSL: no alternativ ² Self-signed --> - + @@ -19,7 +19,7 @@ Fetch error: http://simlar.org/ => https://simlar.org/: (51, "SSL: no alternativ - + - + + + diff --git a/src/chrome/content/rules/Simple-Talk.xml b/src/chrome/content/rules/Simple-Talk.xml index 0ee61ab75b59..1f3926dcfcc6 100644 --- a/src/chrome/content/rules/Simple-Talk.xml +++ b/src/chrome/content/rules/Simple-Talk.xml @@ -14,7 +14,7 @@ --> - + - + - + + @@ -21,7 +22,6 @@ - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Simple_Pickup.xml b/src/chrome/content/rules/Simple_Pickup.xml index 4115c815bb6d..6decbba483d6 100644 --- a/src/chrome/content/rules/Simple_Pickup.xml +++ b/src/chrome/content/rules/Simple_Pickup.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Simplebooklet.com.xml b/src/chrome/content/rules/Simplebooklet.com.xml index 52785ff2979e..d117a93c4d32 100644 --- a/src/chrome/content/rules/Simplebooklet.com.xml +++ b/src/chrome/content/rules/Simplebooklet.com.xml @@ -22,4 +22,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Simplednscrypt.org.xml b/src/chrome/content/rules/Simplednscrypt.org.xml deleted file mode 100644 index 0d03a80062b3..000000000000 --- a/src/chrome/content/rules/Simplednscrypt.org.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Simpli.fi.xml b/src/chrome/content/rules/Simpli.fi.xml index b45b19c0b9e8..6777efcfdcfc 100644 --- a/src/chrome/content/rules/Simpli.fi.xml +++ b/src/chrome/content/rules/Simpli.fi.xml @@ -1,20 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - + diff --git a/src/chrome/content/rules/Simply-Hired-clients.xml b/src/chrome/content/rules/Simply-Hired-clients.xml index 4671e3035c8d..a340daf6c39d 100644 --- a/src/chrome/content/rules/Simply-Hired-clients.xml +++ b/src/chrome/content/rules/Simply-Hired-clients.xml @@ -8,7 +8,7 @@ - + diff --git a/src/chrome/content/rules/Simply-Hired.xml b/src/chrome/content/rules/Simply-Hired.xml index 57ec6a5a1f4a..d6c2962b84ff 100644 --- a/src/chrome/content/rules/Simply-Hired.xml +++ b/src/chrome/content/rules/Simply-Hired.xml @@ -69,7 +69,7 @@ Fetch error: http://blog.simplyhired.com/ => https://www.simplyhired.com/blog: ( * Secured by us --> - + diff --git a/src/chrome/content/rules/Simply-Partner.com.xml b/src/chrome/content/rules/Simply-Partner.com.xml index 652a658cab66..f22462c5e09b 100644 --- a/src/chrome/content/rules/Simply-Partner.com.xml +++ b/src/chrome/content/rules/Simply-Partner.com.xml @@ -12,7 +12,7 @@ Fetch error: http://www.simply-partner.com/ => https://www.simply-partner.com/: - simply-partner.com --> - + diff --git a/src/chrome/content/rules/SimplyIslam.com.xml b/src/chrome/content/rules/SimplyIslam.com.xml new file mode 100644 index 000000000000..526ee2550617 --- /dev/null +++ b/src/chrome/content/rules/SimplyIslam.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Simply_Business.xml b/src/chrome/content/rules/Simply_Business.xml index 717e5451f412..ea7fd1fc5a3b 100644 --- a/src/chrome/content/rules/Simply_Business.xml +++ b/src/chrome/content/rules/Simply_Business.xml @@ -13,4 +13,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Simply_Technology.net.xml b/src/chrome/content/rules/Simply_Technology.net.xml deleted file mode 100644 index 40c69f5735c9..000000000000 --- a/src/chrome/content/rules/Simply_Technology.net.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Simson.net.xml b/src/chrome/content/rules/Simson.net.xml new file mode 100644 index 000000000000..7a1cf46bed39 --- /dev/null +++ b/src/chrome/content/rules/Simson.net.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Simyo.xml b/src/chrome/content/rules/Simyo.xml index a796eb5cce8b..f334adb676f9 100644 --- a/src/chrome/content/rules/Simyo.xml +++ b/src/chrome/content/rules/Simyo.xml @@ -28,7 +28,13 @@ - + + + + + + + @@ -40,7 +46,6 @@ - + diff --git a/src/chrome/content/rules/Sina.cn-mixedcontent.xml b/src/chrome/content/rules/Sina.cn-mixedcontent.xml index e5bacfb458a0..a5765f65e434 100644 --- a/src/chrome/content/rules/Sina.cn-mixedcontent.xml +++ b/src/chrome/content/rules/Sina.cn-mixedcontent.xml @@ -1,16 +1,10 @@ - - - - + - - - - + diff --git a/src/chrome/content/rules/Sina.cn.xml b/src/chrome/content/rules/Sina.cn.xml index 7985ae31117d..5e7b068e0ab3 100644 --- a/src/chrome/content/rules/Sina.cn.xml +++ b/src/chrome/content/rules/Sina.cn.xml @@ -1,60 +1,61 @@ - + + + + + + + + + + + + + + + + + + + + + + + - - + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Sina.com.cn-mixedcontent.xml b/src/chrome/content/rules/Sina.com.cn-mixedcontent.xml new file mode 100644 index 000000000000..2ec9824b708d --- /dev/null +++ b/src/chrome/content/rules/Sina.com.cn-mixedcontent.xml @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Sina.com.cn.xml b/src/chrome/content/rules/Sina.com.cn.xml index 0f56bbee41d6..92181efeb9aa 100644 --- a/src/chrome/content/rules/Sina.com.cn.xml +++ b/src/chrome/content/rules/Sina.com.cn.xml @@ -1,9 +1,8 @@ - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + @@ -162,171 +161,29 @@ + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - + diff --git a/src/chrome/content/rules/Sina.com.xml b/src/chrome/content/rules/Sina.com.xml deleted file mode 100644 index 3303cbb5a416..000000000000 --- a/src/chrome/content/rules/Sina.com.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/SinaApp.com.xml b/src/chrome/content/rules/SinaApp.com.xml index d85388e5c74b..2a61169820ca 100644 --- a/src/chrome/content/rules/SinaApp.com.xml +++ b/src/chrome/content/rules/SinaApp.com.xml @@ -9,7 +9,7 @@ greengrass.sinaapp.com hiwgy.sinaapp.com weihr.sinaapp.com - + Invalid certificate: greengrass-wordpress.stor.sinaapp.com qdomain-saenew.stor.sinaapp.com @@ -30,7 +30,7 @@ - + diff --git a/src/chrome/content/rules/SinaCloud.com.xml b/src/chrome/content/rules/SinaCloud.com.xml index b1e1dd284baa..294d459a6be8 100644 --- a/src/chrome/content/rules/SinaCloud.com.xml +++ b/src/chrome/content/rules/SinaCloud.com.xml @@ -13,7 +13,7 @@ Fetch error: http://gongkaike.sinacloud.com/ => https://gongkaike.sinacloud.com/ pma.tools.sinacloud.com https://pma.tools.sinacloud.com/print.css --> - + @@ -23,6 +23,6 @@ Fetch error: http://gongkaike.sinacloud.com/ => https://gongkaike.sinacloud.com/ - + diff --git a/src/chrome/content/rules/SinaJS.cn.xml b/src/chrome/content/rules/SinaJS.cn.xml index 3074ae194157..f77d31c6e7c4 100644 --- a/src/chrome/content/rules/SinaJS.cn.xml +++ b/src/chrome/content/rules/SinaJS.cn.xml @@ -1,49 +1,34 @@ + + + + + + + + + - + - - - - - - - - - - - + diff --git a/src/chrome/content/rules/Sinaimg.cn.xml b/src/chrome/content/rules/Sinaimg.cn.xml index 51b2bda672f9..693852a12b86 100644 --- a/src/chrome/content/rules/Sinaimg.cn.xml +++ b/src/chrome/content/rules/Sinaimg.cn.xml @@ -1,20 +1,26 @@ - + + + + + + + + + + @@ -25,16 +31,14 @@ + - - - - + @@ -57,22 +61,22 @@ - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + @@ -85,22 +89,13 @@ - - - - - - - - - @@ -112,6 +107,16 @@ + + + + + + + + + + @@ -119,54 +124,49 @@ - - + - - - - - - - + - + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + diff --git a/src/chrome/content/rules/Sinefa.com.xml b/src/chrome/content/rules/Sinefa.com.xml index b8f20f33eeb9..026e5d1eb3df 100644 --- a/src/chrome/content/rules/Sinefa.com.xml +++ b/src/chrome/content/rules/Sinefa.com.xml @@ -15,7 +15,8 @@ --> - + + - + diff --git a/src/chrome/content/rules/Singularity_Hub.xml b/src/chrome/content/rules/Singularity_Hub.xml index 5d51ce66bcf5..9519632d2af1 100644 --- a/src/chrome/content/rules/Singularity_Hub.xml +++ b/src/chrome/content/rules/Singularity_Hub.xml @@ -24,7 +24,7 @@ - + diff --git a/src/chrome/content/rules/Sinica.edu.tw.xml b/src/chrome/content/rules/Sinica.edu.tw.xml index 11d46a19080f..2a2501e3af55 100644 --- a/src/chrome/content/rules/Sinica.edu.tw.xml +++ b/src/chrome/content/rules/Sinica.edu.tw.xml @@ -1,75 +1,53 @@ - - - - - - - - - - - - + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Sinoptik.ua.xml b/src/chrome/content/rules/Sinoptik.ua.xml index 7773f5d8b8c5..6bdda76fb408 100644 --- a/src/chrome/content/rules/Sinoptik.ua.xml +++ b/src/chrome/content/rules/Sinoptik.ua.xml @@ -16,10 +16,6 @@ - - - + diff --git a/src/chrome/content/rules/Sins_of_a_Solar_Empire.com.xml b/src/chrome/content/rules/Sins_of_a_Solar_Empire.com.xml index 5e13b0a22915..12e7ccad1b3a 100644 --- a/src/chrome/content/rules/Sins_of_a_Solar_Empire.com.xml +++ b/src/chrome/content/rules/Sins_of_a_Solar_Empire.com.xml @@ -14,7 +14,7 @@ Fetch error: http://sinsofasolarempire.com/ => https://sinsofasolarempire.com/: Mixed images from draginol.stardock.net --> - + @@ -25,4 +25,4 @@ Fetch error: http://sinsofasolarempire.com/ => https://sinsofasolarempire.com/: - \ No newline at end of file + diff --git a/src/chrome/content/rules/Sipgate.co.uk.xml b/src/chrome/content/rules/Sipgate.co.uk.xml index 8f2366461f37..afb630161798 100644 --- a/src/chrome/content/rules/Sipgate.co.uk.xml +++ b/src/chrome/content/rules/Sipgate.co.uk.xml @@ -34,7 +34,7 @@ Fetch error: http://www.sipgate.co.uk/ => https://www.sipgate.co.uk/: Too many r - www.sipgate.co.uk --> - + diff --git a/src/chrome/content/rules/Siraj.Institute.xml b/src/chrome/content/rules/Siraj.Institute.xml new file mode 100644 index 000000000000..add2473b3491 --- /dev/null +++ b/src/chrome/content/rules/Siraj.Institute.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Sirportly.xml b/src/chrome/content/rules/Sirportly.xml index 94fbfe5da24f..412ca7beb839 100644 --- a/src/chrome/content/rules/Sirportly.xml +++ b/src/chrome/content/rules/Sirportly.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Sirrix.xml b/src/chrome/content/rules/Sirrix.xml index d61abd3c1237..e1741418feaa 100644 --- a/src/chrome/content/rules/Sirrix.xml +++ b/src/chrome/content/rules/Sirrix.xml @@ -21,7 +21,7 @@ - + - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/SiteCompass.com.xml b/src/chrome/content/rules/SiteCompass.com.xml index fe12edb1796f..ce8ce9ad1675 100644 --- a/src/chrome/content/rules/SiteCompass.com.xml +++ b/src/chrome/content/rules/SiteCompass.com.xml @@ -11,12 +11,11 @@ Fetch error: http://mm.sitecompass.com/ => https://mm.sitecompass.com/: (28, 'Co * Dropped --> - + - + diff --git a/src/chrome/content/rules/SiteGround.xml b/src/chrome/content/rules/SiteGround.xml index ff2877d37d03..ac06a45278cf 100644 --- a/src/chrome/content/rules/SiteGround.xml +++ b/src/chrome/content/rules/SiteGround.xml @@ -24,7 +24,7 @@ Fetch error: http://forum.siteground.com/ => https://forum.siteground.com/: (60, - .siteground.com --> - + @@ -40,7 +40,7 @@ Fetch error: http://forum.siteground.com/ => https://forum.siteground.com/: (60, --> - + - + + + - + - @@ -47,7 +45,7 @@ Fetch error: http://sitescout.com/ => https://sitescout.com/: (51, "SSL: no alte - + - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/SiteTrust-Network.xml b/src/chrome/content/rules/SiteTrust-Network.xml deleted file mode 100644 index 99f53185f22f..000000000000 --- a/src/chrome/content/rules/SiteTrust-Network.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Site_Blindado.xml b/src/chrome/content/rules/Site_Blindado.xml index 1dd85cbb3dec..7f5c1186aa7e 100644 --- a/src/chrome/content/rules/Site_Blindado.xml +++ b/src/chrome/content/rules/Site_Blindado.xml @@ -36,24 +36,26 @@ Fetch error: http://siteblindado.com/ => https://siteblindado.com/: (60, 'SSL ce - - + + + + + + + - - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Siteimprove.xml b/src/chrome/content/rules/Siteimprove.xml index 725e48b88f0d..d185a79e2e8f 100644 --- a/src/chrome/content/rules/Siteimprove.xml +++ b/src/chrome/content/rules/Siteimprove.xml @@ -11,7 +11,7 @@ - + - + + - + + + diff --git a/src/chrome/content/rules/Sitestat.xml b/src/chrome/content/rules/Sitestat.xml index ff86ff91d0c3..ffc0b555e527 100644 --- a/src/chrome/content/rules/Sitestat.xml +++ b/src/chrome/content/rules/Sitestat.xml @@ -28,7 +28,7 @@ --> - + - - - - - - - - - diff --git a/src/chrome/content/rules/Sitola.xml b/src/chrome/content/rules/Sitola.xml index 533f1a6bcf88..81c4e720c216 100644 --- a/src/chrome/content/rules/Sitola.xml +++ b/src/chrome/content/rules/Sitola.xml @@ -6,7 +6,7 @@ Fetch error: http://www.sitola.cz/ => https://www.sitola.cz/: (60, 'SSL certific Fetch error: http://sitola.fi.muni.cz/ => https://sitola.fi.muni.cz/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + diff --git a/src/chrome/content/rules/Sivers.xml b/src/chrome/content/rules/Sivers.xml index c77827a3eb34..0e20071c1245 100644 --- a/src/chrome/content/rules/Sivers.xml +++ b/src/chrome/content/rules/Sivers.xml @@ -3,7 +3,7 @@ - + diff --git a/src/chrome/content/rules/SixApart.xml b/src/chrome/content/rules/SixApart.xml index b1e512f9e35e..eb7b4cfd74b6 100644 --- a/src/chrome/content/rules/SixApart.xml +++ b/src/chrome/content/rules/SixApart.xml @@ -6,7 +6,6 @@ Fetch error: http://blog.sixapart.jp/ => https://blog.sixapart.jp/: (60, 'SSL ce Other Six Apart rulesets: - Movable_Type.com.xml - - movabletype.net.xml - sixapart.com.xml @@ -47,7 +46,7 @@ Fetch error: http://blog.sixapart.jp/ => https://blog.sixapart.jp/: (60, 'SSL ce Note that ^ redirects to https, so.... --> - + @@ -76,7 +75,7 @@ Fetch error: http://blog.sixapart.jp/ => https://blog.sixapart.jp/: (60, 'SSL ce - + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Sizzle-Sites.xml b/src/chrome/content/rules/Sizzle-Sites.xml index 081e377b3e66..aa476d9286ca 100644 --- a/src/chrome/content/rules/Sizzle-Sites.xml +++ b/src/chrome/content/rules/Sizzle-Sites.xml @@ -7,12 +7,12 @@ Fetch error: http://www.sizzlesitesinc.com/ => https://www.sizzlesitesinc.com/: Disabled by https-everywhere-checker because: Fetch error: http://sizzlesitesinc.com/ => https://sizzlesitesinc.com/: (35, 'Unknown SSL protocol error in connection to sizzlesitesinc.com:443 ') --> - + - + diff --git a/src/chrome/content/rules/SizzleJS.com.xml b/src/chrome/content/rules/SizzleJS.com.xml index 4601f931dd46..a69c3af1831c 100644 --- a/src/chrome/content/rules/SizzleJS.com.xml +++ b/src/chrome/content/rules/SizzleJS.com.xml @@ -9,7 +9,7 @@ - + https://www.skanetrafiken.se/: (60, 'SS Fetch error: http://www.skanetrafiken.se/ => https://www.skanetrafiken.se/: (60, 'SSL certificate problem: unable to get local issuer certificate') Fetch error: http://shop.skanetrafiken.se/ => https://www.shop.skanetrafiken.se/: (6, 'Could not resolve host: shop.skanetrafiken.se') Unsupported domains: - + www.reseplaneraren.skanetrafiken.se (cannot establish connection) --> - + - - - + + + diff --git a/src/chrome/content/rules/Skat.dk.xml b/src/chrome/content/rules/Skat.dk.xml index b0a353156d8d..9e2b3dd415eb 100644 --- a/src/chrome/content/rules/Skat.dk.xml +++ b/src/chrome/content/rules/Skat.dk.xml @@ -3,7 +3,7 @@ Problematic subdomains: - extranet.demo ⁴ - - lagerhotel ¹ + - lagerhotel ¹ - www.lagerhotel ¹ - tarif ² - www.tarif ² diff --git a/src/chrome/content/rules/SkateMall.xml b/src/chrome/content/rules/SkateMall.xml index bf42c00f74de..19448ad37dcc 100644 --- a/src/chrome/content/rules/SkateMall.xml +++ b/src/chrome/content/rules/SkateMall.xml @@ -1,14 +1,9 @@ - - + + - - - \ No newline at end of file + diff --git a/src/chrome/content/rules/Skch.me.xml b/src/chrome/content/rules/Skch.me.xml index 90bf349fe5f0..68e7a781fe39 100644 --- a/src/chrome/content/rules/Skch.me.xml +++ b/src/chrome/content/rules/Skch.me.xml @@ -5,7 +5,8 @@ - + + diff --git a/src/chrome/content/rules/SkepticsAnnotatedBible.com.xml b/src/chrome/content/rules/SkepticsAnnotatedBible.com.xml new file mode 100644 index 000000000000..760cba38966f --- /dev/null +++ b/src/chrome/content/rules/SkepticsAnnotatedBible.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Sketch.systems.xml b/src/chrome/content/rules/Sketch.systems.xml new file mode 100644 index 000000000000..2b46e38b9422 --- /dev/null +++ b/src/chrome/content/rules/Sketch.systems.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/SketchThemes.com.xml b/src/chrome/content/rules/SketchThemes.com.xml index c33f76eb783b..867b330f8332 100644 --- a/src/chrome/content/rules/SketchThemes.com.xml +++ b/src/chrome/content/rules/SketchThemes.com.xml @@ -31,7 +31,7 @@ --> - + - + diff --git a/src/chrome/content/rules/Skimresources.com.xml b/src/chrome/content/rules/Skimresources.com.xml index 7b28967c7700..132216b76bb4 100644 --- a/src/chrome/content/rules/Skimresources.com.xml +++ b/src/chrome/content/rules/Skimresources.com.xml @@ -21,7 +21,7 @@ --> - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Skins.cash.xml b/src/chrome/content/rules/Skins.cash.xml new file mode 100644 index 000000000000..5a71aea0bc01 --- /dev/null +++ b/src/chrome/content/rules/Skins.cash.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Skitch.xml b/src/chrome/content/rules/Skitch.xml index b102c9f33d78..97bc21d0a711 100644 --- a/src/chrome/content/rules/Skitch.xml +++ b/src/chrome/content/rules/Skitch.xml @@ -6,12 +6,12 @@ --> - + + - + - + diff --git a/src/chrome/content/rules/Skm.io.xml b/src/chrome/content/rules/Skm.io.xml deleted file mode 100644 index e438583c2c51..000000000000 --- a/src/chrome/content/rules/Skm.io.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Skoop.xml b/src/chrome/content/rules/Skoop.xml deleted file mode 100644 index a1a916743e40..000000000000 --- a/src/chrome/content/rules/Skoop.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Skrill.com.xml b/src/chrome/content/rules/Skrill.com.xml index c9b6817f8a7f..fdb4608a0036 100644 --- a/src/chrome/content/rules/Skrill.com.xml +++ b/src/chrome/content/rules/Skrill.com.xml @@ -23,21 +23,19 @@ Fetch error: http://sso.skrill.com/ => https://sso.skrill.com/: (7, 'Failed to c - help --> - + + - - - + diff --git a/src/chrome/content/rules/Skroutz.gr.xml b/src/chrome/content/rules/Skroutz.gr.xml deleted file mode 100644 index c760743dc875..000000000000 --- a/src/chrome/content/rules/Skroutz.gr.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Sky-ip.org.xml b/src/chrome/content/rules/Sky-ip.org.xml index 7b096ccccfc6..87b916654ff3 100644 --- a/src/chrome/content/rules/Sky-ip.org.xml +++ b/src/chrome/content/rules/Sky-ip.org.xml @@ -7,7 +7,7 @@ Fetch error: http://www.sky-ip.org/ => https://www.sky-ip.org/: (7, 'Failed to c ^: Cert only matches www --> - + diff --git a/src/chrome/content/rules/Sky.com.xml b/src/chrome/content/rules/Sky.com.xml index da85a2274fff..2fe9764a2cde 100644 --- a/src/chrome/content/rules/Sky.com.xml +++ b/src/chrome/content/rules/Sky.com.xml @@ -1,14 +1,19 @@ - + @@ -93,37 +103,33 @@ Fetch error: http://interest.sky.com/ => https://interest.sky.com/: (51, "SSL: n - - + - - - + - - + - + - + @@ -134,7 +140,7 @@ Fetch error: http://interest.sky.com/ => https://interest.sky.com/: (51, "SSL: n - + @@ -193,7 +199,7 @@ Fetch error: http://interest.sky.com/ => https://interest.sky.com/: (51, "SSL: n - + https://interest.sky.com/: (51, "SSL: n - - diff --git a/src/chrome/content/rules/Sky.de.xml b/src/chrome/content/rules/Sky.de.xml index c6dbb03d5739..dd20392f59c7 100644 --- a/src/chrome/content/rules/Sky.de.xml +++ b/src/chrome/content/rules/Sky.de.xml @@ -52,7 +52,7 @@ Fetch error: http://uk-www.sky.de/ => https://uk-www.sky.de/: (6, 'Could not res - www.skyticket.sky.de - www.spieldeslebens.sky.de --> - + diff --git a/src/chrome/content/rules/SkySQL.com.xml b/src/chrome/content/rules/SkySQL.com.xml index 8e52c1725fdd..1bdf11479797 100644 --- a/src/chrome/content/rules/SkySQL.com.xml +++ b/src/chrome/content/rules/SkySQL.com.xml @@ -8,7 +8,7 @@ Fetch error: http://www.skysql.com/ => https://www.skysql.com/: (51, "SSL: no al For other MariaDB Corporation coverage, see MariaDB.com.xml. --> - + diff --git a/src/chrome/content/rules/SkyViewingHelp.com.xml b/src/chrome/content/rules/SkyViewingHelp.com.xml index 53bc23b1d804..bf2fb253a6cd 100644 --- a/src/chrome/content/rules/SkyViewingHelp.com.xml +++ b/src/chrome/content/rules/SkyViewingHelp.com.xml @@ -15,7 +15,7 @@ Fetch error: http://www.skyviewinghelp.com/ => https://www.skyviewinghelp.com/: - ^ (expired, mismatched, CN: secure.sky.com) --> - + diff --git a/src/chrome/content/rules/Sky_Academy.com.xml b/src/chrome/content/rules/Sky_Academy.com.xml index 530beed5cdd2..8f2294ba7eb9 100644 --- a/src/chrome/content/rules/Sky_Academy.com.xml +++ b/src/chrome/content/rules/Sky_Academy.com.xml @@ -6,13 +6,13 @@ Fetch error: http://skyacademy.com/ => https://skyacademy.com/: (35, 'Unknown SS For other Sky coverage see Sky.com.xml. --> - + - + - + diff --git a/src/chrome/content/rules/Sky_Programme_Information.co.uk.xml b/src/chrome/content/rules/Sky_Programme_Information.co.uk.xml deleted file mode 100644 index b24c3aae416e..000000000000 --- a/src/chrome/content/rules/Sky_Programme_Information.co.uk.xml +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Sky_Sports.com.xml b/src/chrome/content/rules/Sky_Sports.com.xml deleted file mode 100644 index b34ddd292c5b..000000000000 --- a/src/chrome/content/rules/Sky_Sports.com.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Sky_and_Telescope-problematic.xml b/src/chrome/content/rules/Sky_and_Telescope-problematic.xml index 9d253aec9180..65534d7f77de 100644 --- a/src/chrome/content/rules/Sky_and_Telescope-problematic.xml +++ b/src/chrome/content/rules/Sky_and_Telescope-problematic.xml @@ -7,7 +7,6 @@ - + diff --git a/src/chrome/content/rules/Sky_and_Telescope.xml b/src/chrome/content/rules/Sky_and_Telescope.xml index 52425a299b6b..4713280f1b2a 100644 --- a/src/chrome/content/rules/Sky_and_Telescope.xml +++ b/src/chrome/content/rules/Sky_and_Telescope.xml @@ -14,12 +14,11 @@ Fetch error: http://link.eml.skyandtelescope.com/ => https://link.eml.skyandtele - media (Refused) --> - + - + diff --git a/src/chrome/content/rules/Skye.lgbt.xml b/src/chrome/content/rules/Skye.lgbt.xml new file mode 100644 index 000000000000..4bf6284e28da --- /dev/null +++ b/src/chrome/content/rules/Skye.lgbt.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Skylark_cloud.com.xml b/src/chrome/content/rules/Skylark_cloud.com.xml index be759148b760..bcab5d75286f 100644 --- a/src/chrome/content/rules/Skylark_cloud.com.xml +++ b/src/chrome/content/rules/Skylark_cloud.com.xml @@ -10,7 +10,7 @@ Fetch error: http://www.skylarkcloud.com/ => https://www.skylarkcloud.com/: (28, - www.skylarkcloud.com --> - + diff --git a/src/chrome/content/rules/Skyline_Registrations.co.uk.xml b/src/chrome/content/rules/Skyline_Registrations.co.uk.xml index 54e1d719a793..eddca92126a3 100644 --- a/src/chrome/content/rules/Skyline_Registrations.co.uk.xml +++ b/src/chrome/content/rules/Skyline_Registrations.co.uk.xml @@ -14,7 +14,7 @@ Fetch error: http://skylineregistrations.co.uk/ => https://www.skylineregistrati - Ads from www.googleadservices.com --> - + diff --git a/src/chrome/content/rules/Skype.xml b/src/chrome/content/rules/Skype.xml deleted file mode 100644 index 731d75460ee1..000000000000 --- a/src/chrome/content/rules/Skype.xml +++ /dev/null @@ -1,95 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Skype_assets.com.xml b/src/chrome/content/rules/Skype_assets.com.xml index 11f8dfda9ae9..ad13df0d0af1 100644 --- a/src/chrome/content/rules/Skype_assets.com.xml +++ b/src/chrome/content/rules/Skype_assets.com.xml @@ -1,38 +1,30 @@ - - + - - + - - + + + + + - + diff --git a/src/chrome/content/rules/Skyrider_GraalOnline.xml b/src/chrome/content/rules/Skyrider_GraalOnline.xml index 7c9948babbdc..e4bc2917efc5 100644 --- a/src/chrome/content/rules/Skyrider_GraalOnline.xml +++ b/src/chrome/content/rules/Skyrider_GraalOnline.xml @@ -11,7 +11,7 @@ Disabled by https-everywhere-checker because: Non-2xx HTTP code: http://skyriderplay.com/ (200) => https://skyriderplay.com/ (521) --> - + @@ -22,4 +22,4 @@ Non-2xx HTTP code: http://skyriderplay.com/ (200) => https://skyriderplay.com/ ( - \ No newline at end of file + diff --git a/src/chrome/content/rules/Skyscanner.xml b/src/chrome/content/rules/Skyscanner.xml index 73bd37478bda..ae6db4a6f6d3 100644 --- a/src/chrome/content/rules/Skyscanner.xml +++ b/src/chrome/content/rules/Skyscanner.xml @@ -1,50 +1,17 @@ - - + @@ -114,7 +65,6 @@ Fetch error: http://facescanner.skyscanner.net/ => https://facescanner.skyscanne - @@ -124,53 +74,11 @@ Fetch error: http://facescanner.skyscanner.net/ => https://facescanner.skyscanne - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/SkyscraperPage.com.xml b/src/chrome/content/rules/SkyscraperPage.com.xml new file mode 100644 index 000000000000..3b609b0cbc15 --- /dev/null +++ b/src/chrome/content/rules/SkyscraperPage.com.xml @@ -0,0 +1,15 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Slader.com.xml b/src/chrome/content/rules/Slader.com.xml new file mode 100644 index 000000000000..2ef25f846484 --- /dev/null +++ b/src/chrome/content/rules/Slader.com.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/SlashCDN.com.xml b/src/chrome/content/rules/SlashCDN.com.xml deleted file mode 100644 index 23b52c6fe9f1..000000000000 --- a/src/chrome/content/rules/SlashCDN.com.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/SlashFilm.com.xml b/src/chrome/content/rules/SlashFilm.com.xml new file mode 100644 index 000000000000..2f3d39130f34 --- /dev/null +++ b/src/chrome/content/rules/SlashFilm.com.xml @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Slashbits.com.xml b/src/chrome/content/rules/Slashbits.com.xml index fa80e8338a27..1799da8a955e 100644 --- a/src/chrome/content/rules/Slashbits.com.xml +++ b/src/chrome/content/rules/Slashbits.com.xml @@ -7,7 +7,7 @@ Fetch error: http://www.slashbits.com/ => https://www.slashbits.com/: (51, "SSL: Disabled by https-everywhere-checker because: Fetch error: http://slashbits.com/ => https://slashbits.com/: (51, "SSL: no alternative certificate subject name matches target host name 'slashbits.com'") --> - + diff --git a/src/chrome/content/rules/Slashdot.xml b/src/chrome/content/rules/Slashdot.xml index 43682477c2a1..db7e92e249e6 100644 --- a/src/chrome/content/rules/Slashdot.xml +++ b/src/chrome/content/rules/Slashdot.xml @@ -1,38 +1,16 @@ - - - + @@ -47,8 +25,7 @@ Fetch error: http://y.slashdot.org/ => https://y.slashdot.org/: (51, "SSL: no al - - + @@ -58,15 +35,10 @@ Fetch error: http://y.slashdot.org/ => https://y.slashdot.org/: (51, "SSL: no al - - - - - - + + diff --git a/src/chrome/content/rules/Slashdot_Media.xml b/src/chrome/content/rules/Slashdot_Media.xml index 0f2511dc7e28..ccd3167178bf 100644 --- a/src/chrome/content/rules/Slashdot_Media.xml +++ b/src/chrome/content/rules/Slashdot_Media.xml @@ -1,7 +1,4 @@ - - - + + - + - + + diff --git a/src/chrome/content/rules/Slax_Linux.xml b/src/chrome/content/rules/Slax_Linux.xml index 4db9eede29ef..45fff63faecc 100644 --- a/src/chrome/content/rules/Slax_Linux.xml +++ b/src/chrome/content/rules/Slax_Linux.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Slender_Kitchen.xml b/src/chrome/content/rules/Slender_Kitchen.xml index 24c1ad5a052b..d146d37471ce 100644 --- a/src/chrome/content/rules/Slender_Kitchen.xml +++ b/src/chrome/content/rules/Slender_Kitchen.xml @@ -5,7 +5,7 @@ Fetch error: http://slenderkitchen.com/ => https://slenderkitchen.com/: Too many Fetch error: http://www.slenderkitchen.com/ => https://www.slenderkitchen.com/: Too many redirects while fetching 'https://www.slenderkitchen.com/' --> - + @@ -16,4 +16,4 @@ Fetch error: http://www.slenderkitchen.com/ => https://www.slenderkitchen.com/: - \ No newline at end of file + diff --git a/src/chrome/content/rules/Sleviste.cz.xml b/src/chrome/content/rules/Sleviste.cz.xml index a7c899b83af6..5aa8a91c608b 100644 --- a/src/chrome/content/rules/Sleviste.cz.xml +++ b/src/chrome/content/rules/Sleviste.cz.xml @@ -14,7 +14,6 @@ - + diff --git a/src/chrome/content/rules/SliTaz.org.xml b/src/chrome/content/rules/SliTaz.org.xml index 5eca813d7fad..f74325fa687b 100644 --- a/src/chrome/content/rules/SliTaz.org.xml +++ b/src/chrome/content/rules/SliTaz.org.xml @@ -13,18 +13,20 @@ - + + + + - + diff --git a/src/chrome/content/rules/SlickEdit.com.xml b/src/chrome/content/rules/SlickEdit.com.xml index 2ea9ac9cce82..396ded8c837e 100644 --- a/src/chrome/content/rules/SlickEdit.com.xml +++ b/src/chrome/content/rules/SlickEdit.com.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://slickedit.com/ => https://slickedit.com/: (51, "SSL: no alternative certificate subject name matches target host name 'slickedit.com'") --> - + diff --git a/src/chrome/content/rules/Slick_Products.xml b/src/chrome/content/rules/Slick_Products.xml index bf0d4275582b..7e55024c05e9 100644 --- a/src/chrome/content/rules/Slick_Products.xml +++ b/src/chrome/content/rules/Slick_Products.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Slickdeals.xml b/src/chrome/content/rules/Slickdeals.xml index eec83dc00cd6..1710095c79a8 100644 --- a/src/chrome/content/rules/Slickdeals.xml +++ b/src/chrome/content/rules/Slickdeals.xml @@ -31,7 +31,13 @@ - + + + + + + + @@ -49,10 +55,9 @@ - + diff --git a/src/chrome/content/rules/SlideDeck.xml b/src/chrome/content/rules/SlideDeck.xml index ec247254b452..fbff90b4dfe1 100644 --- a/src/chrome/content/rules/SlideDeck.xml +++ b/src/chrome/content/rules/SlideDeck.xml @@ -16,13 +16,12 @@ - exclusive (works; mismatched, CN: *.unbounce.com) --> - + - diff --git a/src/chrome/content/rules/SlideMyPics.xml b/src/chrome/content/rules/SlideMyPics.xml deleted file mode 100644 index 9f055d787b0d..000000000000 --- a/src/chrome/content/rules/SlideMyPics.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/SlidePlayer.fr.xml b/src/chrome/content/rules/SlidePlayer.fr.xml new file mode 100644 index 000000000000..aa2ad9b6f3c2 --- /dev/null +++ b/src/chrome/content/rules/SlidePlayer.fr.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/SlimerJS.org.xml b/src/chrome/content/rules/SlimerJS.org.xml new file mode 100644 index 000000000000..68c4656179bb --- /dev/null +++ b/src/chrome/content/rules/SlimerJS.org.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Slippedisc.com.xml b/src/chrome/content/rules/Slippedisc.com.xml new file mode 100644 index 000000000000..4a408a30d155 --- /dev/null +++ b/src/chrome/content/rules/Slippedisc.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Sloan-Digital-Sky-Survey.xml b/src/chrome/content/rules/Sloan-Digital-Sky-Survey.xml index 6cf59423c3a3..683fa8993028 100644 --- a/src/chrome/content/rules/Sloan-Digital-Sky-Survey.xml +++ b/src/chrome/content/rules/Sloan-Digital-Sky-Survey.xml @@ -4,13 +4,13 @@ Disabled by https-everywhere-checker because: Fetch error: http://sdss3.org/ => https://sdss3.org/: (51, "SSL: no alternative certificate subject name matches target host name 'sdss3.org'") --> - + - + diff --git a/src/chrome/content/rules/Slon.ru.xml b/src/chrome/content/rules/Slon.ru.xml index 28aa1fe0601b..a8764aca4e4f 100644 --- a/src/chrome/content/rules/Slon.ru.xml +++ b/src/chrome/content/rules/Slon.ru.xml @@ -29,7 +29,7 @@ --> - + - + https://www.mosr.sk/: (28, 'Connection timed out after 20001 milliseconds') -Fetch error: http://www.mosr.sk/ => https://www.mosr.sk/: (28, 'Connection timed out after 20001 milliseconds') -Fetch error: http://justice.gov.sk/ => https://www.justice.gov.sk/: (60, 'SSL certificate problem: unable to get local issuer certificate') -Fetch error: http://www.justice.gov.sk/ => https://www.justice.gov.sk/: (60, 'SSL certificate problem: unable to get local issuer certificate') -Fetch error: http://justice.sk/ => https://www.justice.gov.sk/: (60, 'SSL certificate problem: unable to get local issuer certificate') -Fetch error: http://www.justice.sk/ => https://www.justice.gov.sk/: (60, 'SSL certificate problem: unable to get local issuer certificate') - ---> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/SlovakGovernment.xml b/src/chrome/content/rules/SlovakGovernment.xml new file mode 100644 index 000000000000..0ebfb024811f --- /dev/null +++ b/src/chrome/content/rules/SlovakGovernment.xml @@ -0,0 +1,146 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Slovensko.digital.xml b/src/chrome/content/rules/Slovensko.digital.xml new file mode 100644 index 000000000000..aa3ebacfa947 --- /dev/null +++ b/src/chrome/content/rules/Slovensko.digital.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Slovensko.sk.xml b/src/chrome/content/rules/Slovensko.sk.xml new file mode 100644 index 000000000000..fbb2b9c77369 --- /dev/null +++ b/src/chrome/content/rules/Slovensko.sk.xml @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/SlySoft.xml b/src/chrome/content/rules/SlySoft.xml deleted file mode 100644 index 6f6646c8ed47..000000000000 --- a/src/chrome/content/rules/SlySoft.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Slyar.com.xml b/src/chrome/content/rules/Slyar.com.xml index 76904fcf31f5..fd2183cb97e1 100644 --- a/src/chrome/content/rules/Slyar.com.xml +++ b/src/chrome/content/rules/Slyar.com.xml @@ -5,14 +5,14 @@ Fetch error: http://slyar.com/ => https://slyar.com/: Too many redirects while f Fetch error: http://www.slyar.com/ => https://www.slyar.com/: Too many redirects while fetching 'https://www.slyar.com/' --> - + - + - + - + diff --git a/src/chrome/content/rules/Smackcoders.com.xml b/src/chrome/content/rules/Smackcoders.com.xml index e7ed49408119..d3aa2cc92772 100644 --- a/src/chrome/content/rules/Smackcoders.com.xml +++ b/src/chrome/content/rules/Smackcoders.com.xml @@ -13,7 +13,7 @@ - + + + + + + diff --git a/src/chrome/content/rules/SmallCultFollowing.com.xml b/src/chrome/content/rules/SmallCultFollowing.com.xml new file mode 100644 index 000000000000..1c8aa5d5dd5d --- /dev/null +++ b/src/chrome/content/rules/SmallCultFollowing.com.xml @@ -0,0 +1,12 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Smallbits.com.xml b/src/chrome/content/rules/Smallbits.com.xml index 266cd453a35e..7573295566a8 100644 --- a/src/chrome/content/rules/Smallbits.com.xml +++ b/src/chrome/content/rules/Smallbits.com.xml @@ -8,12 +8,11 @@ Fetch error: http://secure.smallbits.com/ => https://secure.smallbits.com/: (60, - (www.) (shows secure; mismatched, CN: secure.smallbits.com) --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Smallpdf.com.xml b/src/chrome/content/rules/Smallpdf.com.xml new file mode 100644 index 000000000000..5e29d515ea76 --- /dev/null +++ b/src/chrome/content/rules/Smallpdf.com.xml @@ -0,0 +1,10 @@ + + + + + + + diff --git a/src/chrome/content/rules/Smart-AdServer.xml b/src/chrome/content/rules/Smart-AdServer.xml index 8087835e617a..969e435cf9a2 100644 --- a/src/chrome/content/rules/Smart-AdServer.xml +++ b/src/chrome/content/rules/Smart-AdServer.xml @@ -1,11 +1,6 @@ - - + @@ -133,7 +137,7 @@ Fetch error: http://www84.smartadserver.com/ => https://www84.smartadserver.com/ - + @@ -157,7 +161,6 @@ Fetch error: http://www84.smartadserver.com/ => https://www84.smartadserver.com/ - @@ -169,7 +172,7 @@ Fetch error: http://www84.smartadserver.com/ => https://www84.smartadserver.com/ - + @@ -258,26 +261,10 @@ Fetch error: http://www84.smartadserver.com/ => https://www84.smartadserver.com/ - - - - - - - - - - - - - - - + + diff --git a/src/chrome/content/rules/SmartBrief.xml b/src/chrome/content/rules/SmartBrief.xml index 3b26f28852c6..52b6c6263085 100644 --- a/src/chrome/content/rules/SmartBrief.xml +++ b/src/chrome/content/rules/SmartBrief.xml @@ -5,7 +5,7 @@ Non-2xx HTTP code: http://smartbrief.com/ (200) => https://smartbrief.com/ (404) Non-2xx HTTP code: http://www.smartbrief.com/ (200) => https://www.smartbrief.com/ (404) --> - + @@ -18,7 +18,7 @@ Non-2xx HTTP code: http://www.smartbrief.com/ (200) => https://www.smartbrief.co - jobs - www --> - + diff --git a/src/chrome/content/rules/SmartHide.xml b/src/chrome/content/rules/SmartHide.xml index a377a0ca96c3..d1328205f866 100644 --- a/src/chrome/content/rules/SmartHide.xml +++ b/src/chrome/content/rules/SmartHide.xml @@ -5,26 +5,13 @@ ᵃ Shows ^smarthide.com - - www.smarthide.com: Mismatched - --> - + - - - - - - - - + diff --git a/src/chrome/content/rules/SmartOS.org.xml b/src/chrome/content/rules/SmartOS.org.xml index 38c945c4f69e..295290623c8f 100644 --- a/src/chrome/content/rules/SmartOS.org.xml +++ b/src/chrome/content/rules/SmartOS.org.xml @@ -20,7 +20,7 @@ --> - + https://allerderm.com/: (51, "SSL: no * Handshake fails --> - + diff --git a/src/chrome/content/rules/SmartSource.xml b/src/chrome/content/rules/SmartSource.xml new file mode 100644 index 000000000000..6bbe90eaf128 --- /dev/null +++ b/src/chrome/content/rules/SmartSource.xml @@ -0,0 +1,16 @@ + + + + + + + + diff --git a/src/chrome/content/rules/SmartURL.it.xml b/src/chrome/content/rules/SmartURL.it.xml new file mode 100644 index 000000000000..72429ec56e31 --- /dev/null +++ b/src/chrome/content/rules/SmartURL.it.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/Smartclip.net.xml b/src/chrome/content/rules/Smartclip.net.xml new file mode 100644 index 000000000000..800c6b7321d1 --- /dev/null +++ b/src/chrome/content/rules/Smartclip.net.xml @@ -0,0 +1,133 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/SmarterTools.xml b/src/chrome/content/rules/SmarterTools.xml index ce812e4303f8..11790b4572ac 100644 --- a/src/chrome/content/rules/SmarterTools.xml +++ b/src/chrome/content/rules/SmarterTools.xml @@ -44,7 +44,7 @@ - + - + + + + + @@ -39,4 +43,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Smartmix.io.xml b/src/chrome/content/rules/Smartmix.io.xml new file mode 100644 index 000000000000..f41ad8e7d610 --- /dev/null +++ b/src/chrome/content/rules/Smartmix.io.xml @@ -0,0 +1,16 @@ + + + + + + + diff --git a/src/chrome/content/rules/Smartmixer.io.xml b/src/chrome/content/rules/Smartmixer.io.xml new file mode 100644 index 000000000000..7c1e1aca3d80 --- /dev/null +++ b/src/chrome/content/rules/Smartmixer.io.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Smartphone_Experts.xml b/src/chrome/content/rules/Smartphone_Experts.xml deleted file mode 100644 index 5cbbf980a9fb..000000000000 --- a/src/chrome/content/rules/Smartphone_Experts.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Smartstream.tv.xml b/src/chrome/content/rules/Smartstream.tv.xml index 04530e4ca2c8..e578a3113926 100644 --- a/src/chrome/content/rules/Smartstream.tv.xml +++ b/src/chrome/content/rules/Smartstream.tv.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://dashboard.smartstream.tv/ => https://dashboard.smartstream.tv/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + @@ -26,7 +26,7 @@ Fetch error: http://dashboard.smartstream.tv/ => https://dashboard.smartstream.t diff --git a/src/chrome/content/rules/SmashFly.com.xml b/src/chrome/content/rules/SmashFly.com.xml index e20d3135e9ca..f324d732a4df 100644 --- a/src/chrome/content/rules/SmashFly.com.xml +++ b/src/chrome/content/rules/SmashFly.com.xml @@ -53,7 +53,7 @@ Non-2xx HTTP code: http://go.smashfly.com/ (200) => https://smashfly.com/ (502) ⁴ Refused --> - + diff --git a/src/chrome/content/rules/Smdg.ca.xml b/src/chrome/content/rules/Smdg.ca.xml index 99b3b72c910f..c2ba73160ffa 100644 --- a/src/chrome/content/rules/Smdg.ca.xml +++ b/src/chrome/content/rules/Smdg.ca.xml @@ -14,7 +14,6 @@ - + diff --git a/src/chrome/content/rules/Smi2.net.xml b/src/chrome/content/rules/Smi2.net.xml index c9c640348702..4171ba887d51 100644 --- a/src/chrome/content/rules/Smi2.net.xml +++ b/src/chrome/content/rules/Smi2.net.xml @@ -8,7 +8,7 @@ Fetch error: http://www.smi2.net/ => https://www.smi2.net/: (6, 'Could not resol - smi2.net --> - + @@ -25,7 +25,7 @@ Fetch error: http://www.smi2.net/ => https://www.smi2.net/: (6, 'Could not resol --> - + - + - - - - - - - - - - - - - - - - + + + + + + - + + - + diff --git a/src/chrome/content/rules/Smjg.xml b/src/chrome/content/rules/Smjg.xml index 237dbac2a561..97a566d6f6ca 100644 --- a/src/chrome/content/rules/Smjg.xml +++ b/src/chrome/content/rules/Smjg.xml @@ -1,10 +1,10 @@ - + + - + diff --git a/src/chrome/content/rules/SmoothieBlend.com.xml b/src/chrome/content/rules/SmoothieBlend.com.xml deleted file mode 100644 index 5b3ef27ca6f6..000000000000 --- a/src/chrome/content/rules/SmoothieBlend.com.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Smowtion.xml b/src/chrome/content/rules/Smowtion.xml deleted file mode 100644 index 880143acc607..000000000000 --- a/src/chrome/content/rules/Smowtion.xml +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Smutty.com.xml b/src/chrome/content/rules/Smutty.com.xml new file mode 100644 index 000000000000..29f58b006ef4 --- /dev/null +++ b/src/chrome/content/rules/Smutty.com.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Smutty.xml b/src/chrome/content/rules/Smutty.xml deleted file mode 100644 index 0f07382760dd..000000000000 --- a/src/chrome/content/rules/Smutty.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/chrome/content/rules/Smuxi.im.xml b/src/chrome/content/rules/Smuxi.im.xml index 04ed01550cdd..3e6605a0855a 100644 --- a/src/chrome/content/rules/Smuxi.im.xml +++ b/src/chrome/content/rules/Smuxi.im.xml @@ -8,7 +8,7 @@ Fetch error: http://smuxi.net/ => https://smuxi.net/: (51, "SSL: no alternative Fetch error: http://www.smuxi.net/ => https://www.smuxi.net/: (51, "SSL: no alternative certificate subject name matches target host name 'www.smuxi.net'") --> - + diff --git a/src/chrome/content/rules/Smzdm.com.xml b/src/chrome/content/rules/Smzdm.com.xml index ce6b0670908a..b19a58f7a047 100644 --- a/src/chrome/content/rules/Smzdm.com.xml +++ b/src/chrome/content/rules/Smzdm.com.xml @@ -12,13 +12,13 @@ quan test wiki - + 404: avatarimg - + 502: 2 - + Mismatch: *.zdmimg.com @@ -27,21 +27,21 @@ --> - + - + - + - + diff --git a/src/chrome/content/rules/Snabb.co.xml b/src/chrome/content/rules/Snabb.co.xml index 2bd650e04909..72c643f34fc8 100644 --- a/src/chrome/content/rules/Snabb.co.xml +++ b/src/chrome/content/rules/Snabb.co.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://snabb.co/ => https://snabb.co/: (60, 'SSL certificate problem: unable to get local issuer certificate') Fetch error: http://www.snabb.co/ => https://www.snabb.co/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + diff --git a/src/chrome/content/rules/SnackTools.com-problematic.xml b/src/chrome/content/rules/SnackTools.com-problematic.xml index 3d248283f17b..e7e6dbad4e9c 100644 --- a/src/chrome/content/rules/SnackTools.com-problematic.xml +++ b/src/chrome/content/rules/SnackTools.com-problematic.xml @@ -10,7 +10,6 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/SnackTools.com.xml b/src/chrome/content/rules/SnackTools.com.xml index 5c9ffa53a1da..7967966594a5 100644 --- a/src/chrome/content/rules/SnackTools.com.xml +++ b/src/chrome/content/rules/SnackTools.com.xml @@ -5,8 +5,6 @@ Other SnackTools rulesets: - BannerSnack.com.xml - - Quizsnack.com.xml - - SnackTools.net.xml Problematic subdomains: diff --git a/src/chrome/content/rules/SnackTools.net.xml b/src/chrome/content/rules/SnackTools.net.xml deleted file mode 100644 index e3f43bfa6486..000000000000 --- a/src/chrome/content/rules/SnackTools.net.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Snacktv.de.xml b/src/chrome/content/rules/Snacktv.de.xml deleted file mode 100644 index 20b894b684bf..000000000000 --- a/src/chrome/content/rules/Snacktv.de.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Snafu.xml b/src/chrome/content/rules/Snafu.xml index 1efc52e5988a..fb154414ff32 100644 --- a/src/chrome/content/rules/Snafu.xml +++ b/src/chrome/content/rules/Snafu.xml @@ -9,15 +9,14 @@ Fetch error: http://service.snafu.de/ => https://service.snafu.de/: (7, 'Failed - www (cert: ; redirects there) --> - + - + - + diff --git a/src/chrome/content/rules/Snagajob.xml b/src/chrome/content/rules/Snagajob.xml index 4de9753613e0..8e9f9f582ba9 100644 --- a/src/chrome/content/rules/Snagajob.xml +++ b/src/chrome/content/rules/Snagajob.xml @@ -1,15 +1,15 @@ - - + + - + - + diff --git a/src/chrome/content/rules/SnapEngage.com-falsemixed.xml b/src/chrome/content/rules/SnapEngage.com-falsemixed.xml deleted file mode 100644 index 343baf4ef359..000000000000 --- a/src/chrome/content/rules/SnapEngage.com-falsemixed.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/SnapEngage.xml b/src/chrome/content/rules/SnapEngage.xml index be91c1b6984a..867fe6fea035 100644 --- a/src/chrome/content/rules/SnapEngage.xml +++ b/src/chrome/content/rules/SnapEngage.xml @@ -1,82 +1,5 @@ - - - - - - - - - - - + No working URL known: + code.snapengage.com + Invalid certificate: + info.snapengage.com - - - - - - +--> + - + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/SnapWidget.com.xml b/src/chrome/content/rules/SnapWidget.com.xml index de9b203dac97..d494a7a70e3e 100644 --- a/src/chrome/content/rules/SnapWidget.com.xml +++ b/src/chrome/content/rules/SnapWidget.com.xml @@ -21,7 +21,7 @@ --> - + - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/SndCDN.com.xml b/src/chrome/content/rules/SndCDN.com.xml index 11bfacd87a67..3b419fdb35df 100644 --- a/src/chrome/content/rules/SndCDN.com.xml +++ b/src/chrome/content/rules/SndCDN.com.xml @@ -15,7 +15,7 @@ Fetch error: http://api.sndcdn.com/ => https://api.sndcdn.com/: (6, 'Could not r - i1.sndcdn.com - w1.sndcdn.com - - m-a.sndcdn.com.edgesuite.net + - m-a.sndcdn.com.edgesuite.net Problematic hosts in *sndcdn.com: @@ -25,7 +25,7 @@ Fetch error: http://api.sndcdn.com/ => https://api.sndcdn.com/: (6, 'Could not r * Akamai --> - + diff --git a/src/chrome/content/rules/Snel-Internet-Services.xml b/src/chrome/content/rules/Snel-Internet-Services.xml index 521285acc78e..813ab352fb8b 100644 --- a/src/chrome/content/rules/Snel-Internet-Services.xml +++ b/src/chrome/content/rules/Snel-Internet-Services.xml @@ -21,7 +21,7 @@ Fetch error: http://snelserver.com/ => https://snelserver.com/: (51, "SSL: no al but these don't appear to exist(?) --> - + @@ -36,7 +36,7 @@ Fetch error: http://snelserver.com/ => https://snelserver.com/: (51, "SSL: no al - + https://control.snel.com/ ( * Secured by us --> - + diff --git a/src/chrome/content/rules/Snip.ly.xml b/src/chrome/content/rules/Snip.ly.xml new file mode 100644 index 000000000000..4e82a3bd8136 --- /dev/null +++ b/src/chrome/content/rules/Snip.ly.xml @@ -0,0 +1,24 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Snip2Code.com.xml b/src/chrome/content/rules/Snip2Code.com.xml index 682d07b9da41..64a60aa3d175 100644 --- a/src/chrome/content/rules/Snip2Code.com.xml +++ b/src/chrome/content/rules/Snip2Code.com.xml @@ -8,7 +8,7 @@ Fetch error: http://dev.snip2code.com/ => https://dev.snip2code.com/: (28, 'Conn ^snip2code.com: Handshake fails --> - + @@ -22,7 +22,7 @@ Fetch error: http://dev.snip2code.com/ => https://dev.snip2code.com/: (28, 'Conn - + https://blog.snipt.net/: (6, 'Could not r - .snipt.net --> - + @@ -19,7 +19,7 @@ Fetch error: http://blog.snipt.net/ => https://blog.snipt.net/: (6, 'Could not r --> - + + + + + + diff --git a/src/chrome/content/rules/Snoobi.xml b/src/chrome/content/rules/Snoobi.xml index 143d13c85590..c1623ff32b10 100644 --- a/src/chrome/content/rules/Snoobi.xml +++ b/src/chrome/content/rules/Snoobi.xml @@ -11,7 +11,7 @@ - + + + + + + + + diff --git a/src/chrome/content/rules/Snort.xml b/src/chrome/content/rules/Snort.xml index 84bc903a0135..daa10ecd918e 100644 --- a/src/chrome/content/rules/Snort.xml +++ b/src/chrome/content/rules/Snort.xml @@ -11,7 +11,7 @@ Fetch error: http://store.snort.org/ => https://store.snort.org/: (6, 'Could not * Blogger --> - + @@ -20,7 +20,7 @@ Fetch error: http://store.snort.org/ => https://store.snort.org/: (6, 'Could not - + https://regencesecure.snowfly. (www.)?snowfly.com: 403 --> - + @@ -15,5 +15,5 @@ Fetch error: http://regencesecure.snowfly.com/ => https://regencesecure.snowfly. - + diff --git a/src/chrome/content/rules/So-Raise-Your-Glasses.xml b/src/chrome/content/rules/So-Raise-Your-Glasses.xml index 5f4b61bf75e6..e1261304a209 100644 --- a/src/chrome/content/rules/So-Raise-Your-Glasses.xml +++ b/src/chrome/content/rules/So-Raise-Your-Glasses.xml @@ -8,13 +8,13 @@ Disabled by https-everywhere-checker because: Fetch error: http://soraiseyourglasses.com/ => https://soraiseyourglasses.com/: (51, "SSL: no alternative certificate subject name matches target host name 'soraiseyourglasses.com'") Fetch error: http://www.soraiseyourglasses.com/ => https://www.soraiseyourglasses.com/: Cycle detected - URL already encountered: https://www.soraiseyourglasses.com/ --> - + - + diff --git a/src/chrome/content/rules/So.cl.xml b/src/chrome/content/rules/So.cl.xml index 4780d15b045f..e07371cef9b1 100644 --- a/src/chrome/content/rules/So.cl.xml +++ b/src/chrome/content/rules/So.cl.xml @@ -15,7 +15,7 @@ Fetch error: http://www.so.cl/ => https://www.so.cl/: Cycle detected - URL alrea - (www.)? --> - + diff --git a/src/chrome/content/rules/So.com.xml b/src/chrome/content/rules/So.com.xml new file mode 100644 index 000000000000..3651686805a7 --- /dev/null +++ b/src/chrome/content/rules/So.com.xml @@ -0,0 +1,146 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/SoCal_Linux_Expo.org.xml b/src/chrome/content/rules/SoCal_Linux_Expo.org.xml index f77d5056e501..a94816968360 100644 --- a/src/chrome/content/rules/SoCal_Linux_Expo.org.xml +++ b/src/chrome/content/rules/SoCal_Linux_Expo.org.xml @@ -10,7 +10,8 @@ - + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/SoFurry.xml b/src/chrome/content/rules/SoFurry.xml index 624f15b3214c..7bf14b59131b 100644 --- a/src/chrome/content/rules/SoFurry.xml +++ b/src/chrome/content/rules/SoFurry.xml @@ -1,6 +1,7 @@ + diff --git a/src/chrome/content/rules/Soap.com.xml b/src/chrome/content/rules/Soap.com.xml index 67db41c53c7e..d7899e9a5c58 100644 --- a/src/chrome/content/rules/Soap.com.xml +++ b/src/chrome/content/rules/Soap.com.xml @@ -34,9 +34,9 @@ - + - + https://soapboxcms.com/: (6, 'Could not r Fetch error: http://www.soapboxcms.com/ => https://www.soapboxcms.com/: (6, 'Could not resolve host: www.soapboxcms.com') --> - + - + diff --git a/src/chrome/content/rules/Sobollubov.ru.xml b/src/chrome/content/rules/Sobollubov.ru.xml index fa885c27d5c1..69e05a45da46 100644 --- a/src/chrome/content/rules/Sobollubov.ru.xml +++ b/src/chrome/content/rules/Sobollubov.ru.xml @@ -5,7 +5,7 @@ Fetch error: http://sobollubov.ru/ => https://sobollubov.ru/: (28, 'Operation ti Fetch error: http://www.sobollubov.ru/ => https://www.sobollubov.ru/: (28, 'Operation timed out after 30001 milliseconds with 0 bytes received') --> - + diff --git a/src/chrome/content/rules/SocialRank.com.xml b/src/chrome/content/rules/SocialRank.com.xml index 22d2493b9cfa..3d6d6beff87f 100644 --- a/src/chrome/content/rules/SocialRank.com.xml +++ b/src/chrome/content/rules/SocialRank.com.xml @@ -19,7 +19,7 @@ Fetch error: http://www.socialrank.co/ => https://www.socialrank.co/: Too many r (www.)?....co is a simple redirect to .com --> - + diff --git a/src/chrome/content/rules/SocialSecurity.xml b/src/chrome/content/rules/SocialSecurity.xml index d8f4af44ec9a..f0f1903387ed 100644 --- a/src/chrome/content/rules/SocialSecurity.xml +++ b/src/chrome/content/rules/SocialSecurity.xml @@ -20,7 +20,7 @@ - + https://socialshows.net/: (6, 'Could not * No https --> - + - + @@ -27,4 +27,4 @@ Fetch error: http://socialshows.net/ => https://socialshows.net/: (6, 'Could not - \ No newline at end of file + diff --git a/src/chrome/content/rules/SocialTwist.xml b/src/chrome/content/rules/SocialTwist.xml index d37f0d959987..b21ee16e33d7 100644 --- a/src/chrome/content/rules/SocialTwist.xml +++ b/src/chrome/content/rules/SocialTwist.xml @@ -6,7 +6,7 @@ Fetch error: http://socialtwist.com/ => https://socialtwist.com/: (51, "SSL: no cdn.socialtwist.com is hosted at s3.amazonaws.com/cdn.socialtwist.com/, but has a valid cert. --> - + diff --git a/src/chrome/content/rules/Social_Code_dev.com.xml b/src/chrome/content/rules/Social_Code_dev.com.xml index def7b583781a..23499795d87c 100644 --- a/src/chrome/content/rules/Social_Code_dev.com.xml +++ b/src/chrome/content/rules/Social_Code_dev.com.xml @@ -7,7 +7,7 @@ Fetch error: http://www.socialcodedev.com/ => https://www.socialcodedev.com/: (6 Web bugs. --> - + diff --git a/src/chrome/content/rules/Social_Fixer.com.xml b/src/chrome/content/rules/Social_Fixer.com.xml index 3f0b335cfe06..57afd0d86a9d 100644 --- a/src/chrome/content/rules/Social_Fixer.com.xml +++ b/src/chrome/content/rules/Social_Fixer.com.xml @@ -1,22 +1,9 @@ - - + - - + diff --git a/src/chrome/content/rules/Social_Reader.com.xml b/src/chrome/content/rules/Social_Reader.com.xml deleted file mode 100644 index bf5e31a4c1b7..000000000000 --- a/src/chrome/content/rules/Social_Reader.com.xml +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Social_Screamer.xml b/src/chrome/content/rules/Social_Screamer.xml index cf2a9f48c033..c164ff92d6e0 100644 --- a/src/chrome/content/rules/Social_Screamer.xml +++ b/src/chrome/content/rules/Social_Screamer.xml @@ -5,7 +5,7 @@ Fetch error: http://socialscreamer.com/ => https://socialscreamer.com/: (28, 'Co Fetch error: http://www.socialscreamer.com/ => https://www.socialscreamer.com/: (28, 'Connection timed out after 20011 milliseconds') --> - + @@ -16,4 +16,4 @@ Fetch error: http://www.socialscreamer.com/ => https://www.socialscreamer.com/: - \ No newline at end of file + diff --git a/src/chrome/content/rules/Social_Theater.xml b/src/chrome/content/rules/Social_Theater.xml index fd5ac334b45f..cd9415102eb5 100644 --- a/src/chrome/content/rules/Social_Theater.xml +++ b/src/chrome/content/rules/Social_Theater.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Socialbakers.xml b/src/chrome/content/rules/Socialbakers.xml index 50f1f944c0ef..58a7281ef9e0 100644 --- a/src/chrome/content/rules/Socialbakers.xml +++ b/src/chrome/content/rules/Socialbakers.xml @@ -7,7 +7,7 @@ Fetch error: http://socialbakers.com/ => https://socialbakers.com/: (52, 'Empty - + - + diff --git a/src/chrome/content/rules/SocialistWorker.org.xml b/src/chrome/content/rules/SocialistWorker.org.xml new file mode 100644 index 000000000000..72ed9ad1f5cb --- /dev/null +++ b/src/chrome/content/rules/SocialistWorker.org.xml @@ -0,0 +1,12 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Socializer.cc.xml b/src/chrome/content/rules/Socializer.cc.xml deleted file mode 100644 index 74483adfe120..000000000000 --- a/src/chrome/content/rules/Socializer.cc.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Socialtyzetracking.com.xml b/src/chrome/content/rules/Socialtyzetracking.com.xml index c3214144c03e..19800d19d78e 100644 --- a/src/chrome/content/rules/Socialtyzetracking.com.xml +++ b/src/chrome/content/rules/Socialtyzetracking.com.xml @@ -10,7 +10,7 @@ Fetch error: http://socialtyzetracking.com/ => https://www.socialtyzetracking.co ^socialtyzetracking.com: Mismatched --> - + diff --git a/src/chrome/content/rules/Society-for-Technical-Communication.xml b/src/chrome/content/rules/Society-for-Technical-Communication.xml index af1765d4416d..ed404f104e9c 100644 --- a/src/chrome/content/rules/Society-for-Technical-Communication.xml +++ b/src/chrome/content/rules/Society-for-Technical-Communication.xml @@ -1,10 +1,12 @@ - + + + - + - + @@ -18,7 +18,7 @@ Fetch error: http://societyforscience.org/ => https://societyforscience.org/: (2 - + https://static1.sockshare.com/: (6 ² Works; mismatched, CN: *.firedrive.com --> - + diff --git a/src/chrome/content/rules/Socrata.com.xml b/src/chrome/content/rules/Socrata.com.xml index d00c67b9c6fe..7b06e3170947 100644 --- a/src/chrome/content/rules/Socrata.com.xml +++ b/src/chrome/content/rules/Socrata.com.xml @@ -8,7 +8,7 @@ Fetch error: http://finance.socrata.com/ => https://finance.socrata.com/: (7, 'F - 1j3rac4ejwve1p3y0x1gprgk-wpengine.netdna-ssl.com --> - + @@ -18,7 +18,7 @@ Fetch error: http://finance.socrata.com/ => https://finance.socrata.com/: (7, 'F - + https://sodahead.com/: (51, "SSL: no altern * cloudfront.net --> - + - + + + + + + + + - - @@ -40,4 +43,5 @@ Fetch error: http://sodahead.com/ => https://sodahead.com/: (51, "SSL: no altern + diff --git a/src/chrome/content/rules/SoftCom.xml b/src/chrome/content/rules/SoftCom.xml index 64ccd63bc4f8..126456fc4182 100644 --- a/src/chrome/content/rules/SoftCom.xml +++ b/src/chrome/content/rules/SoftCom.xml @@ -7,7 +7,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://slhost.com/ => https://slhost.com/: (28, 'Resolving timed out after 10518 milliseconds') !functional: - softcom.com (timeout) --> - + @@ -19,7 +19,7 @@ Fetch error: http://slhost.com/ => https://slhost.com/: (28, 'Resolving timed ou - + diff --git a/src/chrome/content/rules/SoftCreatR.de.xml b/src/chrome/content/rules/SoftCreatR.de.xml deleted file mode 100644 index 109dc7abc22f..000000000000 --- a/src/chrome/content/rules/SoftCreatR.de.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/SoftEther_VPN.xml b/src/chrome/content/rules/SoftEther_VPN.xml index 1bdd6ec2f9f8..daaac629a606 100644 --- a/src/chrome/content/rules/SoftEther_VPN.xml +++ b/src/chrome/content/rules/SoftEther_VPN.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://softether.org/ => https://softether.org/: (51, "SSL: no alternative certificate subject name matches target host name 'softether.org'") --> - + @@ -15,4 +15,4 @@ Fetch error: http://softether.org/ => https://softether.org/: (51, "SSL: no alte - \ No newline at end of file + diff --git a/src/chrome/content/rules/SoftLayer-mismatches.xml b/src/chrome/content/rules/SoftLayer-mismatches.xml index e5bfa3f3295d..8802998e52d2 100644 --- a/src/chrome/content/rules/SoftLayer-mismatches.xml +++ b/src/chrome/content/rules/SoftLayer-mismatches.xml @@ -7,7 +7,6 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/SoftLayer.xml b/src/chrome/content/rules/SoftLayer.xml index c0ab611b62f8..7158ac58a8bc 100644 --- a/src/chrome/content/rules/SoftLayer.xml +++ b/src/chrome/content/rules/SoftLayer.xml @@ -33,7 +33,7 @@ Fetch error: http://softlayer.com/ => https://softlayer.com/: Too many redirects - www --> - + diff --git a/src/chrome/content/rules/Software-in-the-Public-Interest.xml b/src/chrome/content/rules/Software-in-the-Public-Interest.xml deleted file mode 100644 index 2f27adced171..000000000000 --- a/src/chrome/content/rules/Software-in-the-Public-Interest.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Software_Freedom_Conservancy.xml b/src/chrome/content/rules/Software_Freedom_Conservancy.xml index bee945ec8862..3e508b55d81f 100644 --- a/src/chrome/content/rules/Software_Freedom_Conservancy.xml +++ b/src/chrome/content/rules/Software_Freedom_Conservancy.xml @@ -1,34 +1,25 @@ - - - - + - - - - - + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Software_Heritage.org.xml b/src/chrome/content/rules/Software_Heritage.org.xml new file mode 100644 index 000000000000..75df1d2e2b05 --- /dev/null +++ b/src/chrome/content/rules/Software_Heritage.org.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Sogeti.com.xml b/src/chrome/content/rules/Sogeti.com.xml index 702ae6aea3d7..3c1b5c118c80 100644 --- a/src/chrome/content/rules/Sogeti.com.xml +++ b/src/chrome/content/rules/Sogeti.com.xml @@ -33,7 +33,7 @@ - + - + diff --git a/src/chrome/content/rules/Sogou_CDN.com.xml b/src/chrome/content/rules/Sogou_CDN.com.xml index 325f1ed5eddb..159ae616dc95 100644 --- a/src/chrome/content/rules/Sogou_CDN.com.xml +++ b/src/chrome/content/rules/Sogou_CDN.com.xml @@ -27,7 +27,7 @@ - + diff --git a/src/chrome/content/rules/Sohu.com-mixedcontent.xml b/src/chrome/content/rules/Sohu.com-mixedcontent.xml new file mode 100644 index 000000000000..d46cd4760f77 --- /dev/null +++ b/src/chrome/content/rules/Sohu.com-mixedcontent.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Sohu.com.xml b/src/chrome/content/rules/Sohu.com.xml index e699416c462d..a20409b71f84 100644 --- a/src/chrome/content/rules/Sohu.com.xml +++ b/src/chrome/content/rules/Sohu.com.xml @@ -1,12 +1,17 @@ + - - - + + @@ -87,7 +86,9 @@ - + + + @@ -99,90 +100,27 @@ - - + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + diff --git a/src/chrome/content/rules/Sohu.net.xml b/src/chrome/content/rules/Sohu.net.xml deleted file mode 100644 index e9315cc18ef4..000000000000 --- a/src/chrome/content/rules/Sohu.net.xml +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/SohuSCE.com.xml b/src/chrome/content/rules/SohuSCE.com.xml deleted file mode 100644 index 1f41d38705da..000000000000 --- a/src/chrome/content/rules/SohuSCE.com.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Solar-Energy-Installers.xml b/src/chrome/content/rules/Solar-Energy-Installers.xml index ccc53eef563a..e2fe69f4c8ce 100644 --- a/src/chrome/content/rules/Solar-Energy-Installers.xml +++ b/src/chrome/content/rules/Solar-Energy-Installers.xml @@ -5,7 +5,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/SolarCity.xml b/src/chrome/content/rules/SolarCity.xml index 4bcefedeb72c..fead9dba490e 100644 --- a/src/chrome/content/rules/SolarCity.xml +++ b/src/chrome/content/rules/SolarCity.xml @@ -7,7 +7,8 @@ Fetch error: http://solarcity.com/ => https://www.solarcity.com/: (60, 'SSL cert - + + @@ -18,7 +19,6 @@ Fetch error: http://solarcity.com/ => https://www.solarcity.com/: (60, 'SSL cert - + diff --git a/src/chrome/content/rules/SolarList.com.xml b/src/chrome/content/rules/SolarList.com.xml deleted file mode 100644 index d372f84c4f53..000000000000 --- a/src/chrome/content/rules/SolarList.com.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/SolarMovie.xml b/src/chrome/content/rules/SolarMovie.xml deleted file mode 100644 index ff4503f8b9ec..000000000000 --- a/src/chrome/content/rules/SolarMovie.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Solarbotics.com.xml b/src/chrome/content/rules/Solarbotics.com.xml index b3627d4120ec..353a17e8fd94 100644 --- a/src/chrome/content/rules/Solarbotics.com.xml +++ b/src/chrome/content/rules/Solarbotics.com.xml @@ -1,30 +1,17 @@ - - - - - - - - + + + + + + + + + + + diff --git a/src/chrome/content/rules/Solarflare.com.xml b/src/chrome/content/rules/Solarflare.com.xml index 8a8e42409fe1..20f1e746ee77 100644 --- a/src/chrome/content/rules/Solarflare.com.xml +++ b/src/chrome/content/rules/Solarflare.com.xml @@ -10,7 +10,7 @@ - + diff --git a/src/chrome/content/rules/Sole.dk.xml b/src/chrome/content/rules/Sole.dk.xml index 398afa60ad96..b6064e4b1ddb 100644 --- a/src/chrome/content/rules/Sole.dk.xml +++ b/src/chrome/content/rules/Sole.dk.xml @@ -31,7 +31,7 @@ --> - + https://www.solidalert.com/: (7, 'Fai For other Rose Web Services coverage, see RoseHosting.com.xml. --> - + diff --git a/src/chrome/content/rules/Solid_Cactus.xml b/src/chrome/content/rules/Solid_Cactus.xml index 8d2322f8e30c..d3ef7c6b7ad2 100644 --- a/src/chrome/content/rules/Solid_Cactus.xml +++ b/src/chrome/content/rules/Solid_Cactus.xml @@ -27,4 +27,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Solid_Logic_Technology.xml b/src/chrome/content/rules/Solid_Logic_Technology.xml index 28fc3d8f7251..f913087e3670 100644 --- a/src/chrome/content/rules/Solid_Logic_Technology.xml +++ b/src/chrome/content/rules/Solid_Logic_Technology.xml @@ -9,7 +9,7 @@ Fetch error: http://www.solidlogic.com/ => https://www.solidlogic.com/: (7, 'Fai - dvharv77wz0dp.cloudfront.net --> - + @@ -20,4 +20,4 @@ Fetch error: http://www.solidlogic.com/ => https://www.solidlogic.com/: (7, 'Fai - \ No newline at end of file + diff --git a/src/chrome/content/rules/Solihull.gov.uk.xml b/src/chrome/content/rules/Solihull.gov.uk.xml index 69560a2d0e37..0a803097381b 100644 --- a/src/chrome/content/rules/Solihull.gov.uk.xml +++ b/src/chrome/content/rules/Solihull.gov.uk.xml @@ -56,7 +56,7 @@ - + - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Solus-Project.com.xml b/src/chrome/content/rules/Solus-Project.com.xml deleted file mode 100644 index 6e1d9face924..000000000000 --- a/src/chrome/content/rules/Solus-Project.com.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Solutions_Healthcare_Management.xml b/src/chrome/content/rules/Solutions_Healthcare_Management.xml index b74ec1403e3e..9f096bba50c0 100644 --- a/src/chrome/content/rules/Solutions_Healthcare_Management.xml +++ b/src/chrome/content/rules/Solutions_Healthcare_Management.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.solutionshealthcare.com/ => https://www.solutionshealthcare.com/: (28, 'Connection timed out after 20001 milliseconds') --> - + @@ -15,4 +15,4 @@ Fetch error: http://www.solutionshealthcare.com/ => https://www.solutionshealthc - \ No newline at end of file + diff --git a/src/chrome/content/rules/Solvemedia.com.xml b/src/chrome/content/rules/Solvemedia.com.xml index 7fbcca80dd7e..82b25cb2b82b 100644 --- a/src/chrome/content/rules/Solvemedia.com.xml +++ b/src/chrome/content/rules/Solvemedia.com.xml @@ -24,7 +24,7 @@ Fetch error: http://data-secure.solvemedia.com/ => https://data-secure.solvemedi ᶜ See https://owasp.org/index.php/SecureFlag --> - + diff --git a/src/chrome/content/rules/Somerset.gov.uk.xml b/src/chrome/content/rules/Somerset.gov.uk.xml index 4790d2325af1..cd7442734d42 100644 --- a/src/chrome/content/rules/Somerset.gov.uk.xml +++ b/src/chrome/content/rules/Somerset.gov.uk.xml @@ -44,7 +44,7 @@ Fetch error: http://secure.somerset.gov.uk/ => https://secure.somerset.gov.uk/: - secure.somerset.gov.uk --> - + @@ -88,7 +88,7 @@ Fetch error: http://secure.somerset.gov.uk/ => https://secure.somerset.gov.uk/: - + - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Someserver.xml b/src/chrome/content/rules/Someserver.xml index 092adc3bb648..dae14db53e5c 100644 --- a/src/chrome/content/rules/Someserver.xml +++ b/src/chrome/content/rules/Someserver.xml @@ -11,7 +11,7 @@ Fetch error: http://www.someserver.de/ => https://www.someserver.de/: (60, 'SSL - CHDK.xml --> - + diff --git a/src/chrome/content/rules/Somevid.com.xml b/src/chrome/content/rules/Somevid.com.xml index fc853dd5f9b3..75bd4013552c 100644 --- a/src/chrome/content/rules/Somevid.com.xml +++ b/src/chrome/content/rules/Somevid.com.xml @@ -10,7 +10,7 @@ Fetch error: http://www.somevid.com/ => https://www.somevid.com/: (28, 'Connecti - www.somevid.com --> - + diff --git a/src/chrome/content/rules/SonarCloud.io.xml b/src/chrome/content/rules/SonarCloud.io.xml new file mode 100644 index 000000000000..116470aa6aee --- /dev/null +++ b/src/chrome/content/rules/SonarCloud.io.xml @@ -0,0 +1,12 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/SonarLint.org.xml b/src/chrome/content/rules/SonarLint.org.xml new file mode 100644 index 000000000000..811b8769ac74 --- /dev/null +++ b/src/chrome/content/rules/SonarLint.org.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/SonarQube.org.xml b/src/chrome/content/rules/SonarQube.org.xml new file mode 100644 index 000000000000..00a318654cdf --- /dev/null +++ b/src/chrome/content/rules/SonarQube.org.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/SonarSource.com.xml b/src/chrome/content/rules/SonarSource.com.xml new file mode 100644 index 000000000000..6e70e2c8691a --- /dev/null +++ b/src/chrome/content/rules/SonarSource.com.xml @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/SongColeta.com.xml b/src/chrome/content/rules/SongColeta.com.xml index 9ec8bf4757b6..1bf152628be7 100644 --- a/src/chrome/content/rules/SongColeta.com.xml +++ b/src/chrome/content/rules/SongColeta.com.xml @@ -19,4 +19,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Songsterr.com.xml b/src/chrome/content/rules/Songsterr.com.xml deleted file mode 100644 index ea5426002eb6..000000000000 --- a/src/chrome/content/rules/Songsterr.com.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Sonic.net.xml b/src/chrome/content/rules/Sonic.net.xml index 05973bc49479..271ffc1eb1e7 100644 --- a/src/chrome/content/rules/Sonic.net.xml +++ b/src/chrome/content/rules/Sonic.net.xml @@ -37,7 +37,13 @@ --> - + + + + + + + - - - - - - - - diff --git a/src/chrome/content/rules/Sonobi.com.xml b/src/chrome/content/rules/Sonobi.com.xml index 0049afa24ab7..fa0ec8262a12 100644 --- a/src/chrome/content/rules/Sonobi.com.xml +++ b/src/chrome/content/rules/Sonobi.com.xml @@ -1,30 +1,80 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - + diff --git a/src/chrome/content/rules/Sony-europe.com.xml b/src/chrome/content/rules/Sony-europe.com.xml index 16cbd68bcfc8..b6da6095d96e 100644 --- a/src/chrome/content/rules/Sony-europe.com.xml +++ b/src/chrome/content/rules/Sony-europe.com.xml @@ -10,7 +10,7 @@ - + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Sony.com.hk.xml b/src/chrome/content/rules/Sony.com.hk.xml index a1ce6449222b..23ea43206a98 100644 --- a/src/chrome/content/rules/Sony.com.hk.xml +++ b/src/chrome/content/rules/Sony.com.hk.xml @@ -67,6 +67,6 @@ - diff --git a/src/chrome/content/rules/Sony.com.mx.xml b/src/chrome/content/rules/Sony.com.mx.xml index b3efe27d1edf..c656ddfe6ba0 100644 --- a/src/chrome/content/rules/Sony.com.mx.xml +++ b/src/chrome/content/rules/Sony.com.mx.xml @@ -46,6 +46,6 @@ - diff --git a/src/chrome/content/rules/Sony.se.xml b/src/chrome/content/rules/Sony.se.xml index 9abd6934bae2..2b84199e359d 100644 --- a/src/chrome/content/rules/Sony.se.xml +++ b/src/chrome/content/rules/Sony.se.xml @@ -32,6 +32,6 @@ - diff --git a/src/chrome/content/rules/Sony.xml b/src/chrome/content/rules/Sony.xml index 643ff6f15555..56c33cff05c3 100644 --- a/src/chrome/content/rules/Sony.xml +++ b/src/chrome/content/rules/Sony.xml @@ -2,12 +2,12 @@ Other Sony rulesets: - lbp.me.xml - - Naughty_Dog.xml - PlayStation.xml - PlayStation.net.xml - PlayStation_Network.com.xml - SCEA.com.xml - Sony.co.uk.xml + - Sony.com.au.xml - Sony.com.hk.xml - Sony.com.mx.xml - Sony.eu.xml diff --git a/src/chrome/content/rules/SonyMobile.xml b/src/chrome/content/rules/SonyMobile.xml index ab67b2bea007..73fb1ab7ad75 100644 --- a/src/chrome/content/rules/SonyMobile.xml +++ b/src/chrome/content/rules/SonyMobile.xml @@ -34,12 +34,12 @@ - + - diff --git a/src/chrome/content/rules/Sony_Computer_Science_Laboratories.xml b/src/chrome/content/rules/Sony_Computer_Science_Laboratories.xml index bb692a184c17..5f16e4c3b44c 100644 --- a/src/chrome/content/rules/Sony_Computer_Science_Laboratories.xml +++ b/src/chrome/content/rules/Sony_Computer_Science_Laboratories.xml @@ -10,4 +10,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Sony_Pictures_UK.xml b/src/chrome/content/rules/Sony_Pictures_UK.xml index fdd39726f52c..0928059eec80 100644 --- a/src/chrome/content/rules/Sony_Pictures_UK.xml +++ b/src/chrome/content/rules/Sony_Pictures_UK.xml @@ -13,7 +13,7 @@ Fetch error: http://www.sonypictures.co.uk/ => https://www.sonypictures.co.uk/: Cert only matches www. --> - + diff --git a/src/chrome/content/rules/Sonyalpha.blog.xml b/src/chrome/content/rules/Sonyalpha.blog.xml new file mode 100644 index 000000000000..c5b4b916c168 --- /dev/null +++ b/src/chrome/content/rules/Sonyalpha.blog.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Sonyalpharumors.com.xml b/src/chrome/content/rules/Sonyalpharumors.com.xml new file mode 100644 index 000000000000..f66a328453ed --- /dev/null +++ b/src/chrome/content/rules/Sonyalpharumors.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/SooBEST.com.xml b/src/chrome/content/rules/SooBEST.com.xml deleted file mode 100644 index b93fcc59e8e7..000000000000 --- a/src/chrome/content/rules/SooBEST.com.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Sophie_VIP_Escort.xml b/src/chrome/content/rules/Sophie_VIP_Escort.xml deleted file mode 100644 index a2ee25248c98..000000000000 --- a/src/chrome/content/rules/Sophie_VIP_Escort.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Sophos.xml b/src/chrome/content/rules/Sophos.xml index 08a087bf0421..3b9b1bc7a0fc 100644 --- a/src/chrome/content/rules/Sophos.xml +++ b/src/chrome/content/rules/Sophos.xml @@ -41,7 +41,7 @@ - + + + + + + + + diff --git a/src/chrome/content/rules/SoundKit.io.xml b/src/chrome/content/rules/SoundKit.io.xml deleted file mode 100644 index 8bd0db7467ff..000000000000 --- a/src/chrome/content/rules/SoundKit.io.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Sound_On_Sound.com.xml b/src/chrome/content/rules/Sound_On_Sound.com.xml deleted file mode 100644 index 4cedd28cda18..000000000000 --- a/src/chrome/content/rules/Sound_On_Sound.com.xml +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Soundcloud.xml b/src/chrome/content/rules/Soundcloud.xml index 2ec3b410a766..b62356be2d05 100644 --- a/src/chrome/content/rules/Soundcloud.xml +++ b/src/chrome/content/rules/Soundcloud.xml @@ -44,7 +44,6 @@ - @@ -52,8 +51,6 @@ - - diff --git a/src/chrome/content/rules/Soundowl.net.xml b/src/chrome/content/rules/Soundowl.net.xml deleted file mode 100644 index 0ea5434cde99..000000000000 --- a/src/chrome/content/rules/Soundowl.net.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Sounds-True.xml b/src/chrome/content/rules/Sounds-True.xml index 4ab22469a995..aca7da50fce4 100644 --- a/src/chrome/content/rules/Sounds-True.xml +++ b/src/chrome/content/rules/Sounds-True.xml @@ -12,7 +12,9 @@ - + + + https://www.soup.io/favicon.ico: (60, 'SSL certificate problem: unable to get local issuer certificate') -Fetch error: http://www.soup.io/images/soup_small.png => https://www.soup.io/images/soup_small.png: (60, 'SSL certificate problem: unable to get local issuer certificate') -Fetch error: http://www.soup.io/login => https://www.soup.io/login: (60, 'SSL certificate problem: unable to get local issuer certificate') -Fetch error: http://static.soup.io/images/bar/drop.gif => https://static.soup.io/images/bar/drop.gif: (60, 'SSL certificate problem: unable to get local issuer certificate') -Fetch error: http://0.asset.soup.io/asset/1539/2240_65c6_500.jpeg => https://asset-0.soup.io/asset/1539/2240_65c6_500.jpeg: (60, 'SSL certificate problem: certificate has expired') -Fetch error: http://1.asset.soup.io/asset/4345/4529_01da_390.jpeg => https://asset-1.soup.io/asset/4345/4529_01da_390.jpeg: (60, 'SSL certificate problem: certificate has expired') -Fetch error: http://2.asset.soup.io/asset/3784/8642_df7d.jpeg => https://asset-2.soup.io/asset/3784/8642_df7d.jpeg: (60, 'SSL certificate problem: certificate has expired') -Fetch error: http://3.asset.soup.io/asset/3810/3683_f2a3_390.jpeg => https://asset-3.soup.io/asset/3810/3683_f2a3_390.jpeg: (60, 'SSL certificate problem: certificate has expired') -Fetch error: http://4.asset.soup.io/asset/3061/5988_4d48.png => https://asset-4.soup.io/asset/3061/5988_4d48.png: (60, 'SSL certificate problem: certificate has expired') -Fetch error: http://5.asset.soup.io/asset/0932/6117_09a9.jpeg => https://asset-5.soup.io/asset/0932/6117_09a9.jpeg: (60, 'SSL certificate problem: certificate has expired') -Fetch error: http://6.asset.soup.io/asset/0661/6294_aaef.jpeg => https://asset-6.soup.io/asset/0661/6294_aaef.jpeg: (60, 'SSL certificate problem: certificate has expired') -Fetch error: http://7.asset.soup.io/asset/2587/3719_3b0d_960.jpeg => https://asset-7.soup.io/asset/2587/3719_3b0d_960.jpeg: (60, 'SSL certificate problem: certificate has expired') -Fetch error: http://8.asset.soup.io/asset/3170/9080_6033_480.jpeg => https://asset-8.soup.io/asset/3170/9080_6033_480.jpeg: (60, 'SSL certificate problem: certificate has expired') -Fetch error: http://9.asset.soup.io/asset/2204/2617_36e0.jpeg => https://asset-9.soup.io/asset/2204/2617_36e0.jpeg: (60, 'SSL certificate problem: certificate has expired') -Fetch error: http://a.asset.soup.io/asset/3290/9786_0213_960.jpeg => https://asset-a.soup.io/asset/3290/9786_0213_960.jpeg: (60, 'SSL certificate problem: certificate has expired') -Fetch error: http://b.asset.soup.io/asset/3743/9787_4343_390.jpeg => https://asset-b.soup.io/asset/3743/9787_4343_390.jpeg: (60, 'SSL certificate problem: certificate has expired') -Fetch error: http://c.asset.soup.io/asset/4582/2300_3c64.jpeg => https://asset-c.soup.io/asset/4582/2300_3c64.jpeg: (60, 'SSL certificate problem: certificate has expired') -Fetch error: http://d.asset.soup.io/asset/3879/6365_97be.jpeg => https://asset-d.soup.io/asset/3879/6365_97be.jpeg: (60, 'SSL certificate problem: certificate has expired') -Fetch error: http://e.asset.soup.io/asset/3708/2638_b88c.jpeg => https://asset-e.soup.io/asset/3708/2638_b88c.jpeg: (60, 'SSL certificate problem: certificate has expired') -Fetch error: http://f.asset.soup.io/asset/2516/9167_0f28.jpeg => https://asset-f.soup.io/asset/2516/9167_0f28.jpeg: (60, 'SSL certificate problem: certificate has expired') -Fetch error: http://soup.io/ => https://soup.io/: (60, 'SSL certificate problem: unable to get local issuer certificate') -Fetch error: http://asset-0.soup.io/ => https://asset-0.soup.io/: (60, 'SSL certificate problem: certificate has expired') -Fetch error: http://asset-1.soup.io/ => https://asset-1.soup.io/: (60, 'SSL certificate problem: certificate has expired') -Fetch error: http://asset-2.soup.io/ => https://asset-2.soup.io/: (60, 'SSL certificate problem: certificate has expired') -Fetch error: http://asset-3.soup.io/ => https://asset-3.soup.io/: (60, 'SSL certificate problem: certificate has expired') -Fetch error: http://asset-4.soup.io/ => https://asset-4.soup.io/: (60, 'SSL certificate problem: certificate has expired') -Fetch error: http://asset-5.soup.io/ => https://asset-5.soup.io/: (60, 'SSL certificate problem: certificate has expired') -Fetch error: http://asset-6.soup.io/ => https://asset-6.soup.io/: (60, 'SSL certificate problem: certificate has expired') -Fetch error: http://asset-7.soup.io/ => https://asset-7.soup.io/: (60, 'SSL certificate problem: certificate has expired') -Fetch error: http://asset-8.soup.io/ => https://asset-8.soup.io/: (60, 'SSL certificate problem: certificate has expired') -Fetch error: http://asset-9.soup.io/ => https://asset-9.soup.io/: (60, 'SSL certificate problem: certificate has expired') -Fetch error: http://asset-a.soup.io/ => https://asset-a.soup.io/: (60, 'SSL certificate problem: certificate has expired') -Fetch error: http://asset-b.soup.io/ => https://asset-b.soup.io/: (60, 'SSL certificate problem: certificate has expired') -Fetch error: http://asset-c.soup.io/ => https://asset-c.soup.io/: (60, 'SSL certificate problem: certificate has expired') -Fetch error: http://asset-d.soup.io/ => https://asset-d.soup.io/: (60, 'SSL certificate problem: certificate has expired') -Fetch error: http://asset-e.soup.io/ => https://asset-e.soup.io/: (60, 'SSL certificate problem: certificate has expired') -Fetch error: http://asset-f.soup.io/ => https://asset-f.soup.io/: (60, 'SSL certificate problem: certificate has expired') -Fetch error: http://static.soup.io/ => https://static.soup.io/: (60, 'SSL certificate problem: unable to get local issuer certificate') -Fetch error: http://0.asset.soup.io/ => https://asset-0.soup.io/: (60, 'SSL certificate problem: certificate has expired') -Fetch error: http://1.asset.soup.io/ => https://asset-1.soup.io/: (60, 'SSL certificate problem: certificate has expired') -Fetch error: http://2.asset.soup.io/ => https://asset-2.soup.io/: (60, 'SSL certificate problem: certificate has expired') -Fetch error: http://3.asset.soup.io/ => https://asset-3.soup.io/: (60, 'SSL certificate problem: certificate has expired') -Fetch error: http://4.asset.soup.io/ => https://asset-4.soup.io/: (60, 'SSL certificate problem: certificate has expired') -Fetch error: http://5.asset.soup.io/ => https://asset-5.soup.io/: (60, 'SSL certificate problem: certificate has expired') -Fetch error: http://6.asset.soup.io/ => https://asset-6.soup.io/: (60, 'SSL certificate problem: certificate has expired') -Fetch error: http://7.asset.soup.io/ => https://asset-7.soup.io/: (60, 'SSL certificate problem: certificate has expired') -Fetch error: http://8.asset.soup.io/ => https://asset-8.soup.io/: (60, 'SSL certificate problem: certificate has expired') -Fetch error: http://9.asset.soup.io/ => https://asset-9.soup.io/: (60, 'SSL certificate problem: certificate has expired') -Fetch error: http://a.asset.soup.io/ => https://asset-a.soup.io/: (60, 'SSL certificate problem: certificate has expired') -Fetch error: http://b.asset.soup.io/ => https://asset-b.soup.io/: (60, 'SSL certificate problem: certificate has expired') -Fetch error: http://c.asset.soup.io/ => https://asset-c.soup.io/: (60, 'SSL certificate problem: certificate has expired') -Fetch error: http://d.asset.soup.io/ => https://asset-d.soup.io/: (60, 'SSL certificate problem: certificate has expired') -Fetch error: http://e.asset.soup.io/ => https://asset-e.soup.io/: (60, 'SSL certificate problem: certificate has expired') -Fetch error: http://f.asset.soup.io/ => https://asset-f.soup.io/: (60, 'SSL certificate problem: certificate has expired') - Other Soup rulesets: - - Soup_CDN.com.xml + - SoupCDN.com.xml Problematic hosts in *soup.io: @@ -83,9 +26,9 @@ Fetch error: http://f.asset.soup.io/ => https://asset-f.soup.io/: (60, 'SSL cert - Bug on www from pixel.quantserve.com ˢ ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ - --> - + + @@ -185,7 +128,5 @@ Fetch error: http://f.asset.soup.io/ => https://asset-f.soup.io/: (60, 'SSL cert - - + diff --git a/src/chrome/content/rules/SoupCDN.com.xml b/src/chrome/content/rules/SoupCDN.com.xml new file mode 100644 index 000000000000..556b849d31d0 --- /dev/null +++ b/src/chrome/content/rules/SoupCDN.com.xml @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Soup_CDN.com.xml b/src/chrome/content/rules/Soup_CDN.com.xml deleted file mode 100644 index 6966806b10f8..000000000000 --- a/src/chrome/content/rules/Soup_CDN.com.xml +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/SourceCoast.xml b/src/chrome/content/rules/SourceCoast.xml index 7d1bb275595e..84d579729c0a 100644 --- a/src/chrome/content/rules/SourceCoast.xml +++ b/src/chrome/content/rules/SourceCoast.xml @@ -17,4 +17,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/SourceMaking.xml b/src/chrome/content/rules/SourceMaking.xml index be0ef413631d..b31c70866b5e 100644 --- a/src/chrome/content/rules/SourceMaking.xml +++ b/src/chrome/content/rules/SourceMaking.xml @@ -1,17 +1,13 @@ - - + - + - + diff --git a/src/chrome/content/rules/SourcePoint.xml b/src/chrome/content/rules/SourcePoint.xml new file mode 100644 index 000000000000..5720ff80dbee --- /dev/null +++ b/src/chrome/content/rules/SourcePoint.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/SourceRuns.org.xml b/src/chrome/content/rules/SourceRuns.org.xml new file mode 100644 index 000000000000..9a88304e1a1a --- /dev/null +++ b/src/chrome/content/rules/SourceRuns.org.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Source_Conference.com.xml b/src/chrome/content/rules/Source_Conference.com.xml index 4edd9bf621b9..54696e48df9e 100644 --- a/src/chrome/content/rules/Source_Conference.com.xml +++ b/src/chrome/content/rules/Source_Conference.com.xml @@ -1,10 +1,10 @@ - + - + - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Sourcefabric.org.xml b/src/chrome/content/rules/Sourcefabric.org.xml index 78bbfc165c54..1e081bf1e0e6 100644 --- a/src/chrome/content/rules/Sourcefabric.org.xml +++ b/src/chrome/content/rules/Sourcefabric.org.xml @@ -4,7 +4,6 @@ - Airtime.pro.xml - Booktype.pro.xml - Sourcefabric.com.xml - - Superdesk.org.xml - Superdesk.pro.xml diff --git a/src/chrome/content/rules/Sourcefire.com.xml b/src/chrome/content/rules/Sourcefire.com.xml index a282dbd4c693..dbd2613360a2 100644 --- a/src/chrome/content/rules/Sourcefire.com.xml +++ b/src/chrome/content/rules/Sourcefire.com.xml @@ -29,7 +29,7 @@ --> - + - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Sous-Surveillance.fr.xml b/src/chrome/content/rules/Sous-Surveillance.fr.xml deleted file mode 100644 index b5d7c1dc6e57..000000000000 --- a/src/chrome/content/rules/Sous-Surveillance.fr.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/South-by-Southwest.xml b/src/chrome/content/rules/South-by-Southwest.xml index 1cead2338395..eaa6cbeed980 100644 --- a/src/chrome/content/rules/South-by-Southwest.xml +++ b/src/chrome/content/rules/South-by-Southwest.xml @@ -9,7 +9,7 @@ - + diff --git a/src/chrome/content/rules/South_Devon.ac.uk.xml b/src/chrome/content/rules/South_Devon.ac.uk.xml index 103214da6eed..7e3591ae47c6 100644 --- a/src/chrome/content/rules/South_Devon.ac.uk.xml +++ b/src/chrome/content/rules/South_Devon.ac.uk.xml @@ -17,11 +17,11 @@ Fetch error: http://mobile.southdevon.ac.uk/ => https://mobile.southdevon.ac.uk/ Problematic hosts in *southdevon.ac.uk: - staff * - + * Expired --> - + @@ -30,7 +30,7 @@ Fetch error: http://mobile.southdevon.ac.uk/ => https://mobile.southdevon.ac.uk/ - + https://www.southglos.gov.uk/: Too - .www.southglos.gov.uk --> - + @@ -89,7 +89,7 @@ Fetch error: http://www.southglos.gov.uk/ => https://www.southglos.gov.uk/: Too - + - + https://secure.southampton.gov - www.southampton.gov.uk --> - + @@ -54,7 +54,7 @@ Fetch error: http://secure.southampton.gov.uk/ => https://secure.southampton.gov - + https://shopcms.southbankc * Secured by us --> - + diff --git a/src/chrome/content/rules/Southend.gov.uk.xml b/src/chrome/content/rules/Southend.gov.uk.xml index 0033fd426d01..4ee676bf8fb6 100644 --- a/src/chrome/content/rules/Southend.gov.uk.xml +++ b/src/chrome/content/rules/Southend.gov.uk.xml @@ -1,60 +1,30 @@ - - - + + + - - - - - - - - - - - + + diff --git a/src/chrome/content/rules/Southpark.de.xml b/src/chrome/content/rules/Southpark.de.xml new file mode 100644 index 000000000000..397a3901a188 --- /dev/null +++ b/src/chrome/content/rules/Southpark.de.xml @@ -0,0 +1,20 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Southwark.gov.uk.xml b/src/chrome/content/rules/Southwark.gov.uk.xml index a418a9bd7708..6c164116a270 100644 --- a/src/chrome/content/rules/Southwark.gov.uk.xml +++ b/src/chrome/content/rules/Southwark.gov.uk.xml @@ -40,7 +40,7 @@ Fetch error: http://www.southwark.gov.uk/ => https://www.southwark.gov.uk/: (60, - www.southwark.gov.uk --> - + @@ -65,7 +65,7 @@ Fetch error: http://www.southwark.gov.uk/ => https://www.southwark.gov.uk/: (60, - + https://skipscreen.com/: (60, 'SSL certificate problem: certificate has expired') Fetch error: http://www.skipscreen.com/ => https://skipscreen.com/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/Space.com.xml b/src/chrome/content/rules/Space.com.xml index 2b178f1445b6..e0429aa57bff 100644 --- a/src/chrome/content/rules/Space.com.xml +++ b/src/chrome/content/rules/Space.com.xml @@ -17,12 +17,12 @@ Fetch error: http://store.space.com/ => https://store.space.com/: (51, "SSL: no * Secured by us --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/SpaceBattles.com.xml b/src/chrome/content/rules/SpaceBattles.com.xml new file mode 100644 index 000000000000..e3a5e0c41ea9 --- /dev/null +++ b/src/chrome/content/rules/SpaceBattles.com.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/SpaceLab.ie.xml b/src/chrome/content/rules/SpaceLab.ie.xml new file mode 100644 index 000000000000..3efbb5a46dcf --- /dev/null +++ b/src/chrome/content/rules/SpaceLab.ie.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/SpacePolicyOnline.com.xml b/src/chrome/content/rules/SpacePolicyOnline.com.xml index 4d794bc6b346..dde5474d5314 100644 --- a/src/chrome/content/rules/SpacePolicyOnline.com.xml +++ b/src/chrome/content/rules/SpacePolicyOnline.com.xml @@ -6,7 +6,7 @@ - + diff --git a/src/chrome/content/rules/SpaceWeb.xml b/src/chrome/content/rules/SpaceWeb.xml index 6e53bdbb4604..dc1a72ed0777 100644 --- a/src/chrome/content/rules/SpaceWeb.xml +++ b/src/chrome/content/rules/SpaceWeb.xml @@ -22,7 +22,7 @@ - + diff --git a/src/chrome/content/rules/SpaceX.xml b/src/chrome/content/rules/SpaceX.xml index 13da69e24c8e..69aa86e4c619 100644 --- a/src/chrome/content/rules/SpaceX.xml +++ b/src/chrome/content/rules/SpaceX.xml @@ -8,7 +8,7 @@ Automatically by https-everywhere-checker because: Fetch error: http://spacex.com/ => https://spacex.com/: Cycle detected - URL already encountered: https://spacex.com/ Fetch error: http://www.spacex.com/ => https://spacex.com/: Cycle detected - URL already encountered: https://spacex.com/ --> - + diff --git a/src/chrome/content/rules/Space_Industry_News.xml b/src/chrome/content/rules/Space_Industry_News.xml index c372ebb30f77..244ef5f5f645 100644 --- a/src/chrome/content/rules/Space_Industry_News.xml +++ b/src/chrome/content/rules/Space_Industry_News.xml @@ -5,7 +5,7 @@ Fetch error: http://spaceindustrynews.com/ => https://spaceindnews.wpengine.com/ Fetch error: http://www.spaceindustrynews.com/ => https://spaceindnews.wpengine.com/: (7, 'Failed to connect to spaceindnews.wpengine.com port 443: Connection refused') --> - + diff --git a/src/chrome/content/rules/Space_Telescope_Science_Institute.xml b/src/chrome/content/rules/Space_Telescope_Science_Institute.xml index 36839e408bf3..31e673e35c15 100644 --- a/src/chrome/content/rules/Space_Telescope_Science_Institute.xml +++ b/src/chrome/content/rules/Space_Telescope_Science_Institute.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Spaceweather-PHONE.xml b/src/chrome/content/rules/Spaceweather-PHONE.xml index a2c542bc8c85..13e71dcaf462 100644 --- a/src/chrome/content/rules/Spaceweather-PHONE.xml +++ b/src/chrome/content/rules/Spaceweather-PHONE.xml @@ -4,7 +4,7 @@ - + - - - - - - - diff --git a/src/chrome/content/rules/Spankwire.xml b/src/chrome/content/rules/Spankwire.xml index 3306bf8109fd..91efbef4d31a 100644 --- a/src/chrome/content/rules/Spankwire.xml +++ b/src/chrome/content/rules/Spankwire.xml @@ -1,11 +1,11 @@ - + - - + + - + - + diff --git a/src/chrome/content/rules/Spark-Summit.org.xml b/src/chrome/content/rules/Spark-Summit.org.xml index 1bf672414646..c8adde1e6d32 100644 --- a/src/chrome/content/rules/Spark-Summit.org.xml +++ b/src/chrome/content/rules/Spark-Summit.org.xml @@ -12,7 +12,7 @@ - + - + - - - - diff --git a/src/chrome/content/rules/Sparkfun.xml b/src/chrome/content/rules/Sparkfun.xml index bafd7dd78dcc..769db804e69f 100644 --- a/src/chrome/content/rules/Sparkfun.xml +++ b/src/chrome/content/rules/Sparkfun.xml @@ -14,7 +14,7 @@ Fetch error: http://analytics.sparkfun.com/ => https://analytics.sparkfun.com/: - static --> - + diff --git a/src/chrome/content/rules/Sparklit.xml b/src/chrome/content/rules/Sparklit.xml index f1a49f02f409..51b43d2aeb95 100644 --- a/src/chrome/content/rules/Sparklit.xml +++ b/src/chrome/content/rules/Sparklit.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Sparkstudios.com.xml b/src/chrome/content/rules/Sparkstudios.com.xml index ccfa03c2cc12..77fe3d6b0738 100644 --- a/src/chrome/content/rules/Sparkstudios.com.xml +++ b/src/chrome/content/rules/Sparkstudios.com.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.sparkstudios.com/ => https://www.sparkstudios.com/: (60, 'SSL certificate problem: certificate has expired') Fetch error: http://sparkstudios.com/ => https://www.sparkstudios.com/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/Spartafx.com.xml b/src/chrome/content/rules/Spartafx.com.xml index 9a788c1e6bc4..49bd0ec0ff89 100644 --- a/src/chrome/content/rules/Spartafx.com.xml +++ b/src/chrome/content/rules/Spartafx.com.xml @@ -7,7 +7,7 @@ Fetch error: http://www.spartafx.com/ => https://www.spartafx.com/: (51, "SSL: n Disabled by https-everywhere-checker because: Fetch error: http://spartafx.com/ => https://spartafx.com/: (6, 'Could not resolve host: spartafx.com') --> - + @@ -18,4 +18,4 @@ Fetch error: http://spartafx.com/ => https://spartafx.com/: (6, 'Could not resol - \ No newline at end of file + diff --git a/src/chrome/content/rules/Spartan_Institute.xml b/src/chrome/content/rules/Spartan_Institute.xml index 03c8fcd0842a..e9bc8bc4b1ac 100644 --- a/src/chrome/content/rules/Spartan_Institute.xml +++ b/src/chrome/content/rules/Spartan_Institute.xml @@ -11,7 +11,7 @@ Fetch error: http://thespartaninstitute.com/ => https://thespartaninstitute.com/ - portal (http reply) --> - + @@ -22,4 +22,4 @@ Fetch error: http://thespartaninstitute.com/ => https://thespartaninstitute.com/ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Sparx.org.nz.xml b/src/chrome/content/rules/Sparx.org.nz.xml index d886e702b0cd..2949a07d2ad0 100644 --- a/src/chrome/content/rules/Sparx.org.nz.xml +++ b/src/chrome/content/rules/Sparx.org.nz.xml @@ -8,7 +8,7 @@ Fetch error: http://research.sparx.org.nz/ => https://research.sparx.org.nz/: (2 - www.research.sparx.org.nz --> - + diff --git a/src/chrome/content/rules/Sparx_Trading.com-falsemixed.xml b/src/chrome/content/rules/Sparx_Trading.com-falsemixed.xml index c4512bb7e9d3..ea3609fd57d8 100644 --- a/src/chrome/content/rules/Sparx_Trading.com-falsemixed.xml +++ b/src/chrome/content/rules/Sparx_Trading.com-falsemixed.xml @@ -5,7 +5,7 @@ - + diff --git a/src/chrome/content/rules/SpatialBuzz.com-problematic.xml b/src/chrome/content/rules/SpatialBuzz.com-problematic.xml index 3275a045e251..b11087ca7798 100644 --- a/src/chrome/content/rules/SpatialBuzz.com-problematic.xml +++ b/src/chrome/content/rules/SpatialBuzz.com-problematic.xml @@ -15,7 +15,6 @@ - + diff --git a/src/chrome/content/rules/SpatialBuzz.com.xml b/src/chrome/content/rules/SpatialBuzz.com.xml index 3f4590b6fea8..9d19971464e2 100644 --- a/src/chrome/content/rules/SpatialBuzz.com.xml +++ b/src/chrome/content/rules/SpatialBuzz.com.xml @@ -37,7 +37,15 @@ - + + + + + + + + + - + + https://smp.specificmedia.net/: (6 Other Specific Media rulesets: - - Adviva.net.xml - Specificclick.xml @@ -21,16 +20,13 @@ Fetch error: http://smp.specificmedia.net/ => https://smp.specificmedia.net/: (6 - (www.)specificmedia.net (cert: mail.localsvcs.com; shows IIS7 default page) --> - + - + + - - - + diff --git a/src/chrome/content/rules/Specificclick.xml b/src/chrome/content/rules/Specificclick.xml index c637855d37fd..432288019922 100644 --- a/src/chrome/content/rules/Specificclick.xml +++ b/src/chrome/content/rules/Specificclick.xml @@ -40,7 +40,7 @@ - + - + - + - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Specto.io.xml b/src/chrome/content/rules/Specto.io.xml index 1b8668e92678..b453edeb7bb1 100644 --- a/src/chrome/content/rules/Specto.io.xml +++ b/src/chrome/content/rules/Specto.io.xml @@ -14,7 +14,7 @@ - + https://www.spectraflow.com/: (28, ' Disabled by https-everywhere-checker because: Fetch error: http://spectraflow.com/ => https://spectraflow.com/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + @@ -18,4 +18,4 @@ Fetch error: http://spectraflow.com/ => https://spectraflow.com/: (60, 'SSL cert - \ No newline at end of file + diff --git a/src/chrome/content/rules/Spectrum.com.xml b/src/chrome/content/rules/Spectrum.com.xml deleted file mode 100644 index 493a83503e52..000000000000 --- a/src/chrome/content/rules/Spectrum.com.xml +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Speed-Dreams.xml b/src/chrome/content/rules/Speed-Dreams.xml index 392ca6993947..ab0356f06bba 100644 --- a/src/chrome/content/rules/Speed-Dreams.xml +++ b/src/chrome/content/rules/Speed-Dreams.xml @@ -4,7 +4,7 @@ - + diff --git a/src/chrome/content/rules/SpeedBurger.xml b/src/chrome/content/rules/SpeedBurger.xml index 804e03e6b8af..3a4cd0f775e8 100644 --- a/src/chrome/content/rules/SpeedBurger.xml +++ b/src/chrome/content/rules/SpeedBurger.xml @@ -3,11 +3,10 @@ - - \ No newline at end of file + diff --git a/src/chrome/content/rules/SpeedTree.com.xml b/src/chrome/content/rules/SpeedTree.com.xml index cebab1b985da..d5b459950702 100644 --- a/src/chrome/content/rules/SpeedTree.com.xml +++ b/src/chrome/content/rules/SpeedTree.com.xml @@ -32,4 +32,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Speed_World_Grafix.com.xml b/src/chrome/content/rules/Speed_World_Grafix.com.xml index d553133f3a82..e7f884c04f12 100644 --- a/src/chrome/content/rules/Speed_World_Grafix.com.xml +++ b/src/chrome/content/rules/Speed_World_Grafix.com.xml @@ -5,7 +5,7 @@ Fetch error: http://speedworldgrafix.com/ => https://speedworldgrafix.com/: (60, Fetch error: http://www.speedworldgrafix.com/ => https://www.speedworldgrafix.com/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/Speedcoin.org.xml b/src/chrome/content/rules/Speedcoin.org.xml index b22bcd875b46..c52653a6c3c0 100644 --- a/src/chrome/content/rules/Speedcoin.org.xml +++ b/src/chrome/content/rules/Speedcoin.org.xml @@ -9,7 +9,7 @@ - + + + + + + + + + + diff --git a/src/chrome/content/rules/Speedof.me.xml b/src/chrome/content/rules/Speedof.me.xml deleted file mode 100644 index 71a1c7958871..000000000000 --- a/src/chrome/content/rules/Speedof.me.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/src/chrome/content/rules/Speedtest.net.xml b/src/chrome/content/rules/Speedtest.net.xml index ee7f0508d66f..4f15664e2029 100644 --- a/src/chrome/content/rules/Speedtest.net.xml +++ b/src/chrome/content/rules/Speedtest.net.xml @@ -1,67 +1,13 @@ - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - + diff --git a/src/chrome/content/rules/Speedyshare.com.xml b/src/chrome/content/rules/Speedyshare.com.xml index 3cd464d3d342..5c5b0799002a 100644 --- a/src/chrome/content/rules/Speedyshare.com.xml +++ b/src/chrome/content/rules/Speedyshare.com.xml @@ -5,10 +5,10 @@ Fetch error: http://www.speedyshare.com/ => https://www.speedyshare.com/: (28, ' Fetch error: http://speedyshare.com/ => https://speedyshare.com/: (28, 'Connection timed out after 20000 milliseconds') --> - + - + diff --git a/src/chrome/content/rules/Spektrum.de.xml b/src/chrome/content/rules/Spektrum.de.xml new file mode 100644 index 000000000000..164ff68272a3 --- /dev/null +++ b/src/chrome/content/rules/Spektrum.de.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Spench.net.xml b/src/chrome/content/rules/Spench.net.xml index 7034fe67c55e..f6f4944986c9 100644 --- a/src/chrome/content/rules/Spench.net.xml +++ b/src/chrome/content/rules/Spench.net.xml @@ -17,7 +17,8 @@ - + + - + diff --git a/src/chrome/content/rules/SphereUp.xml b/src/chrome/content/rules/SphereUp.xml new file mode 100644 index 000000000000..9f56b61eb21b --- /dev/null +++ b/src/chrome/content/rules/SphereUp.xml @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Sphinx-doc.org.xml b/src/chrome/content/rules/Sphinx-doc.org.xml new file mode 100644 index 000000000000..156b61a60185 --- /dev/null +++ b/src/chrome/content/rules/Sphinx-doc.org.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Spice-space.org.xml b/src/chrome/content/rules/Spice-space.org.xml index f394a7134d28..74615a202112 100644 --- a/src/chrome/content/rules/Spice-space.org.xml +++ b/src/chrome/content/rules/Spice-space.org.xml @@ -1,18 +1,15 @@ - + - - diff --git a/src/chrome/content/rules/Spicebox.xml b/src/chrome/content/rules/Spicebox.xml index de0f33b572f1..63878021b303 100644 --- a/src/chrome/content/rules/Spicebox.xml +++ b/src/chrome/content/rules/Spicebox.xml @@ -6,4 +6,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Spiceworks.xml b/src/chrome/content/rules/Spiceworks.xml index 531444e0a815..63f2c3c58bc3 100644 --- a/src/chrome/content/rules/Spiceworks.xml +++ b/src/chrome/content/rules/Spiceworks.xml @@ -40,7 +40,7 @@ Fetch error: http://wwwstatic.spiceworks.com/ => https://wwwstatic.spiceworks.co * Secured by us --> - + @@ -94,7 +94,7 @@ Fetch error: http://wwwstatic.spiceworks.com/ => https://wwwstatic.spiceworks.co - + - + - + - - - diff --git a/src/chrome/content/rules/Spiegel-QC.xml b/src/chrome/content/rules/Spiegel-QC.xml index 3509b22c0a6c..5632757bbf7d 100644 --- a/src/chrome/content/rules/Spiegel-QC.xml +++ b/src/chrome/content/rules/Spiegel-QC.xml @@ -12,7 +12,7 @@ Fetch error: http://adserv.quality-channel.de/ => https://adserv.quality-channel - (www.)spiegel-qc.de --> - + diff --git a/src/chrome/content/rules/Spiegel.xml b/src/chrome/content/rules/Spiegel.xml index 79887a0852cb..773861284563 100644 --- a/src/chrome/content/rules/Spiegel.xml +++ b/src/chrome/content/rules/Spiegel.xml @@ -1,136 +1,35 @@ - - + + + + + + + + + - + - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -139,8 +38,8 @@ Fetch error: http://ophirum.spiegel.de/ => https://ophirum.spiegel.de/: (51, "SS - + + @@ -149,8 +48,6 @@ Fetch error: http://ophirum.spiegel.de/ => https://ophirum.spiegel.de/: (51, "SS - - + diff --git a/src/chrome/content/rules/Spielfuerdeinland.de.xml b/src/chrome/content/rules/Spielfuerdeinland.de.xml index 8d547713eb0e..600d22318f7c 100644 --- a/src/chrome/content/rules/Spielfuerdeinland.de.xml +++ b/src/chrome/content/rules/Spielfuerdeinland.de.xml @@ -1,22 +1,17 @@ - - - - - - - - - - + + + - + diff --git a/src/chrome/content/rules/Spilnu.dk.xml b/src/chrome/content/rules/Spilnu.dk.xml deleted file mode 100644 index b6489d7f0952..000000000000 --- a/src/chrome/content/rules/Spilnu.dk.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Spinroot.com.xml b/src/chrome/content/rules/Spinroot.com.xml new file mode 100644 index 000000000000..d88b6ee54a17 --- /dev/null +++ b/src/chrome/content/rules/Spinroot.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Spirit-animals.com.xml b/src/chrome/content/rules/Spirit-animals.com.xml new file mode 100644 index 000000000000..ac7646ee6a1c --- /dev/null +++ b/src/chrome/content/rules/Spirit-animals.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/SpiritAirlines.xml b/src/chrome/content/rules/SpiritAirlines.xml index b5de00d6e8cc..80677cba8d34 100644 --- a/src/chrome/content/rules/SpiritAirlines.xml +++ b/src/chrome/content/rules/SpiritAirlines.xml @@ -2,8 +2,5 @@ - - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Splash_Data.com.xml b/src/chrome/content/rules/Splash_Data.com.xml index cd9932046b94..cf6d890dea72 100644 --- a/src/chrome/content/rules/Splash_Data.com.xml +++ b/src/chrome/content/rules/Splash_Data.com.xml @@ -21,7 +21,7 @@ Fetch error: http://www.splashdata.com/ => https://www.splashdata.com/: (35, 'Un * Secured by us --> - + diff --git a/src/chrome/content/rules/Splash_that.com.xml b/src/chrome/content/rules/Splash_that.com.xml index b14f0e958978..e93b89195ba8 100644 --- a/src/chrome/content/rules/Splash_that.com.xml +++ b/src/chrome/content/rules/Splash_that.com.xml @@ -27,7 +27,7 @@ --> - + + + + + + + + + diff --git a/src/chrome/content/rules/Split_Reason_Clothing.xml b/src/chrome/content/rules/Split_Reason_Clothing.xml index 5558746405c7..e32ad6c6767a 100644 --- a/src/chrome/content/rules/Split_Reason_Clothing.xml +++ b/src/chrome/content/rules/Split_Reason_Clothing.xml @@ -5,7 +5,7 @@ Fetch error: http://splitreason.com/ => https://splitreason.com/: (28, 'Connecti Fetch error: http://www.splitreason.com/ => https://www.splitreason.com/: (28, 'Connection timed out after 20001 milliseconds') --> - + @@ -16,4 +16,4 @@ Fetch error: http://www.splitreason.com/ => https://www.splitreason.com/: (28, ' - \ No newline at end of file + diff --git a/src/chrome/content/rules/Spogo.co.uk.xml b/src/chrome/content/rules/Spogo.co.uk.xml index ec03e85aaec1..fc3ce4e3ebdf 100644 --- a/src/chrome/content/rules/Spogo.co.uk.xml +++ b/src/chrome/content/rules/Spogo.co.uk.xml @@ -5,7 +5,7 @@ Fetch error: http://spogo.co.uk/ => https://spogo.co.uk/: (7, 'Failed to connect Fetch error: http://www.spogo.co.uk/ => https://www.spogo.co.uk/: (7, 'Failed to connect to www.spogo.co.uk port 443: Connection refused') --> - + diff --git a/src/chrome/content/rules/Spoki.xml b/src/chrome/content/rules/Spoki.xml index e65d7d8ca03b..bd9635b60824 100644 --- a/src/chrome/content/rules/Spoki.xml +++ b/src/chrome/content/rules/Spoki.xml @@ -3,9 +3,8 @@ - - + diff --git a/src/chrome/content/rules/Spontex.org.xml b/src/chrome/content/rules/Spontex.org.xml deleted file mode 100644 index cef11778e578..000000000000 --- a/src/chrome/content/rules/Spontex.org.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Spoonful.com.xml b/src/chrome/content/rules/Spoonful.com.xml index 35a7eea012c9..b3cdb8f2c085 100644 --- a/src/chrome/content/rules/Spoonful.com.xml +++ b/src/chrome/content/rules/Spoonful.com.xml @@ -27,10 +27,11 @@ Fetch error: http://spoonful.com/ => https://spoonful.com/: (51, "SSL: no altern * Secured by us --> - + - + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Sport1.de.xml b/src/chrome/content/rules/Sport1.de.xml index 71b3bc52524e..42fea585d655 100644 --- a/src/chrome/content/rules/Sport1.de.xml +++ b/src/chrome/content/rules/Sport1.de.xml @@ -1,5 +1,99 @@ + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Sports_Authority.xml b/src/chrome/content/rules/Sports_Authority.xml index 9fcf24515bc6..4805f5439102 100644 --- a/src/chrome/content/rules/Sports_Authority.xml +++ b/src/chrome/content/rules/Sports_Authority.xml @@ -12,7 +12,7 @@ Fetch error: http://www.sportsauthority.com/ => https://www.sportsauthority.com/ - stores.sportsauthority.com --> - + diff --git a/src/chrome/content/rules/Sportys.xml b/src/chrome/content/rules/Sportys.xml index 7dc35488f0e5..6600e40b323b 100644 --- a/src/chrome/content/rules/Sportys.xml +++ b/src/chrome/content/rules/Sportys.xml @@ -1,8 +1,8 @@ - - + + diff --git a/src/chrome/content/rules/SpotXchange.com.xml b/src/chrome/content/rules/SpotXchange.com.xml index 9067e3cc23ec..a61fd7a70807 100644 --- a/src/chrome/content/rules/SpotXchange.com.xml +++ b/src/chrome/content/rules/SpotXchange.com.xml @@ -14,10 +14,11 @@ - + + + - + diff --git a/src/chrome/content/rules/Spotify.xml b/src/chrome/content/rules/Spotify.xml index 7872d95db7f6..3629b2b64f5e 100644 --- a/src/chrome/content/rules/Spotify.xml +++ b/src/chrome/content/rules/Spotify.xml @@ -23,14 +23,6 @@ - dlfl22czvqywx.cloudfront.net - spotify.i.lithium.com - - Nonfunctional hosts in *spotify.com: - - - charts * - - * Sshows developer.spotify.com - - Mixed content: - Images, on community from: @@ -47,13 +39,15 @@ ** Unsecurable --> - + - + + + + @@ -61,18 +55,8 @@ - - - - - - - - - + diff --git a/src/chrome/content/rules/Spotplanet.xml b/src/chrome/content/rules/Spotplanet.xml index 833e508f6d61..05a4b7166259 100644 --- a/src/chrome/content/rules/Spotplanet.xml +++ b/src/chrome/content/rules/Spotplanet.xml @@ -7,7 +7,7 @@ Fetch error: http://www.spotplanet.org/ => https://www.spotplanet.org/: (60, 'SS Disabled by https-everywhere-checker because: Fetch error: http://spotplanet.org/ => https://spotplanet.org/: (60, 'SSL certificate problem: self signed certificate') --> - + @@ -18,4 +18,4 @@ Fetch error: http://spotplanet.org/ => https://spotplanet.org/: (60, 'SSL certif - \ No newline at end of file + diff --git a/src/chrome/content/rules/SpreadPrivacy.com.xml b/src/chrome/content/rules/SpreadPrivacy.com.xml new file mode 100644 index 000000000000..86db6c6f7f2d --- /dev/null +++ b/src/chrome/content/rules/SpreadPrivacy.com.xml @@ -0,0 +1,15 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Spreadshirt.xml b/src/chrome/content/rules/Spreadshirt.xml deleted file mode 100644 index 1c490e382f4d..000000000000 --- a/src/chrome/content/rules/Spreadshirt.xml +++ /dev/null @@ -1,169 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Sprig-of-Thyme.com.xml b/src/chrome/content/rules/Sprig-of-Thyme.com.xml new file mode 100644 index 000000000000..1f8c282b40bd --- /dev/null +++ b/src/chrome/content/rules/Sprig-of-Thyme.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Spring-TNS.net.xml b/src/chrome/content/rules/Spring-TNS.net.xml index 3c35a2b21144..f7f01b5c205f 100644 --- a/src/chrome/content/rules/Spring-TNS.net.xml +++ b/src/chrome/content/rules/Spring-TNS.net.xml @@ -14,7 +14,7 @@ Fetch error: http://foreca.spring-tns.net/blank.gif => https://ssl-foreca.spring - nelonen (refused) --> - + @@ -28,7 +28,7 @@ Fetch error: http://foreca.spring-tns.net/blank.gif => https://ssl-foreca.spring - + - + https://registrierung. - registrierung.springer-medizin.de --> - + diff --git a/src/chrome/content/rules/Springer.xml b/src/chrome/content/rules/Springer.xml index 5bb9b6d839d9..ccf9b786ba1a 100644 --- a/src/chrome/content/rules/Springer.xml +++ b/src/chrome/content/rules/Springer.xml @@ -3,7 +3,6 @@ Other Springer rulesets: - - Biomed-Central.xml - Springer-Gabler.de.xml - Springer_Zahnmedizin.de.xml @@ -100,7 +99,7 @@ - + diff --git a/src/chrome/content/rules/SpringerNature.com.xml b/src/chrome/content/rules/SpringerNature.com.xml new file mode 100644 index 000000000000..f2c7956a43b7 --- /dev/null +++ b/src/chrome/content/rules/SpringerNature.com.xml @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Springer_Zahnmedizin.de.xml b/src/chrome/content/rules/Springer_Zahnmedizin.de.xml index c2637de35021..f072b8fc2ae4 100644 --- a/src/chrome/content/rules/Springer_Zahnmedizin.de.xml +++ b/src/chrome/content/rules/Springer_Zahnmedizin.de.xml @@ -21,7 +21,7 @@ Fetch error: http://www.springerzahnmedizin.de/ => https://www.springerzahnmediz - www.springerzahnmedizin.de --> - + diff --git a/src/chrome/content/rules/Springserve.com.xml b/src/chrome/content/rules/Springserve.com.xml index 0171f016e427..d333ff65e474 100644 --- a/src/chrome/content/rules/Springserve.com.xml +++ b/src/chrome/content/rules/Springserve.com.xml @@ -1,6 +1,33 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Springshare.xml b/src/chrome/content/rules/Springshare.xml index 96ba50e9889b..61fcd8fb88fb 100644 --- a/src/chrome/content/rules/Springshare.xml +++ b/src/chrome/content/rules/Springshare.xml @@ -53,7 +53,7 @@ - + https://ria.sprint.com/: (7, 'Failed to connect to ria.sprint.com port 443: Connection refused') + +--> + + + + + + + + + + - + - - - - - - - + diff --git a/src/chrome/content/rules/Sprint_Rebates.com.xml b/src/chrome/content/rules/Sprint_Rebates.com.xml deleted file mode 100644 index 6c7601e8f73d..000000000000 --- a/src/chrome/content/rules/Sprint_Rebates.com.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/SpritesMods.com.xml b/src/chrome/content/rules/SpritesMods.com.xml index 7ab959924ef1..0923c5099202 100644 --- a/src/chrome/content/rules/SpritesMods.com.xml +++ b/src/chrome/content/rules/SpritesMods.com.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.spritesmods.com/ => https://www.spritesmods.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.spritesmods.com'") --> - + diff --git a/src/chrome/content/rules/Spriza.com.xml b/src/chrome/content/rules/Spriza.com.xml deleted file mode 100644 index 8c8176c2518d..000000000000 --- a/src/chrome/content/rules/Spriza.com.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Sprout.xml b/src/chrome/content/rules/Sprout.xml index 9d0d0dcb0197..4fa1600d8c6c 100644 --- a/src/chrome/content/rules/Sprout.xml +++ b/src/chrome/content/rules/Sprout.xml @@ -12,7 +12,7 @@ Fetch error: http://www.sproutinc.com/ => https://sproutinc.com/: (28, 'Connecti - (www.)sproutbuilder.com --> - + diff --git a/src/chrome/content/rules/Spylog.com.xml b/src/chrome/content/rules/Spylog.com.xml index 3a7be0d2538e..12f02661f7b9 100644 --- a/src/chrome/content/rules/Spylog.com.xml +++ b/src/chrome/content/rules/Spylog.com.xml @@ -20,4 +20,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Square.xml b/src/chrome/content/rules/Square.xml deleted file mode 100644 index 37e3f1128e28..000000000000 --- a/src/chrome/content/rules/Square.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Square_Penguin.xml b/src/chrome/content/rules/Square_Penguin.xml index 284c9694c333..df59cd3d57eb 100644 --- a/src/chrome/content/rules/Square_Penguin.xml +++ b/src/chrome/content/rules/Square_Penguin.xml @@ -4,7 +4,7 @@ - + + + diff --git a/src/chrome/content/rules/Squarespace-clients.xml b/src/chrome/content/rules/Squarespace-clients.xml deleted file mode 100644 index f1723cb7cc68..000000000000 --- a/src/chrome/content/rules/Squarespace-clients.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Squarespace.xml b/src/chrome/content/rules/Squarespace.xml index d08f5e680ba3..b442b47d7c0a 100644 --- a/src/chrome/content/rules/Squarespace.xml +++ b/src/chrome/content/rules/Squarespace.xml @@ -4,15 +4,6 @@ - Sqsp.com.xml - CDN buckets: - - - s3.amazonaws.com/s3.media.squarespace.com/ - - s3.media.squarespace.com - - - squarespace.cachefly.net - - squarespace.cachefly.net - - Mixed content: - Images on (client_subdomain).squarespace.com from $self * @@ -36,13 +27,12 @@ - - - - - - + + + + @@ -53,20 +43,8 @@ - - - - - - - - - + - + diff --git a/src/chrome/content/rules/Squid_Solutions.xml b/src/chrome/content/rules/Squid_Solutions.xml deleted file mode 100644 index 97a62bc5bf44..000000000000 --- a/src/chrome/content/rules/Squid_Solutions.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Squirrel-webmail.surftown.com.xml b/src/chrome/content/rules/Squirrel-webmail.surftown.com.xml index 8c5717e4a4a2..3a611b7db383 100644 --- a/src/chrome/content/rules/Squirrel-webmail.surftown.com.xml +++ b/src/chrome/content/rules/Squirrel-webmail.surftown.com.xml @@ -10,8 +10,8 @@ Disabled by https-everywhere-checker because: Fetch error: http://squirrel-webmail.surftown.com/ => https://squirrel-webmail.surftown.com/: (7, 'Failed to connect to squirrel-webmail.surftown.com port 443: Connection refused') --> - + - + diff --git a/src/chrome/content/rules/Srcclr.com.xml b/src/chrome/content/rules/Srcclr.com.xml index 2b7c8ae42589..064f567c8fa3 100644 --- a/src/chrome/content/rules/Srcclr.com.xml +++ b/src/chrome/content/rules/Srcclr.com.xml @@ -6,10 +6,9 @@ Fetch error: http://app.srcclr.com/ => https://app.srcclr.com/: (60, 'SSL certif Other SourceClear rulesets: - - Srcclr.help.xml --> - + diff --git a/src/chrome/content/rules/Srcclr.help.xml b/src/chrome/content/rules/Srcclr.help.xml deleted file mode 100644 index 023d4de14fd2..000000000000 --- a/src/chrome/content/rules/Srcclr.help.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Srcf.net.xml b/src/chrome/content/rules/Srcf.net.xml index a11540d10594..c50be1db5b92 100644 --- a/src/chrome/content/rules/Srcf.net.xml +++ b/src/chrome/content/rules/Srcf.net.xml @@ -51,7 +51,7 @@ wiki.srcf.net (Known to exist, but not yet tested for HTTPS support.) --> - + @@ -59,5 +59,5 @@ - + diff --git a/src/chrome/content/rules/Srclib.org.xml b/src/chrome/content/rules/Srclib.org.xml index ef81e5b7d700..81f4e885787f 100644 --- a/src/chrome/content/rules/Srclib.org.xml +++ b/src/chrome/content/rules/Srclib.org.xml @@ -14,7 +14,7 @@ --> - + ---> - - - diff --git a/src/chrome/content/rules/Srware.xml b/src/chrome/content/rules/Srware.xml index 3c1e4de20f32..c27f333a5be1 100644 --- a/src/chrome/content/rules/Srware.xml +++ b/src/chrome/content/rules/Srware.xml @@ -11,7 +11,7 @@ - + diff --git a/src/chrome/content/rules/SsbKyh.com.xml b/src/chrome/content/rules/SsbKyh.com.xml index 06e3280fbf14..28b6b7735892 100644 --- a/src/chrome/content/rules/SsbKyh.com.xml +++ b/src/chrome/content/rules/SsbKyh.com.xml @@ -19,4 +19,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Sslcert35.com.xml b/src/chrome/content/rules/Sslcert35.com.xml index e25c9ccb40f8..199156f95563 100644 --- a/src/chrome/content/rules/Sslcert35.com.xml +++ b/src/chrome/content/rules/Sslcert35.com.xml @@ -19,4 +19,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Ssldomain.com.xml b/src/chrome/content/rules/Ssldomain.com.xml index a7296633b1b2..18549cfcd16b 100644 --- a/src/chrome/content/rules/Ssldomain.com.xml +++ b/src/chrome/content/rules/Ssldomain.com.xml @@ -10,10 +10,10 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Ssltrust.us.xml b/src/chrome/content/rules/Ssltrust.us.xml index fa5079b8d389..ba2c6e426dd3 100644 --- a/src/chrome/content/rules/Ssltrust.us.xml +++ b/src/chrome/content/rules/Ssltrust.us.xml @@ -4,12 +4,11 @@ Disabled by https-everywhere-checker because: Fetch error: http://test.ssltrust.us/ => https://test.ssltrust.us/: (6, 'Could not resolve host: test.ssltrust.us') --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Sstest.jp.xml b/src/chrome/content/rules/Sstest.jp.xml deleted file mode 100644 index 1e9275d1db89..000000000000 --- a/src/chrome/content/rules/Sstest.jp.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/St-Andrews.ac.uk.xml b/src/chrome/content/rules/St-Andrews.ac.uk.xml index 103e9bad5ef6..5fad8b8bbc79 100644 --- a/src/chrome/content/rules/St-Andrews.ac.uk.xml +++ b/src/chrome/content/rules/St-Andrews.ac.uk.xml @@ -41,7 +41,10 @@ - + + + + @@ -52,7 +55,6 @@ - + diff --git a/src/chrome/content/rules/StShrt.com.xml b/src/chrome/content/rules/StShrt.com.xml index 741f8311a641..388151875813 100644 --- a/src/chrome/content/rules/StShrt.com.xml +++ b/src/chrome/content/rules/StShrt.com.xml @@ -17,7 +17,7 @@ Fetch error: http://www.stshrt.com/ => https://www.stshrt.com/: (51, "SSL: no al - .stshrt.com --> - + diff --git a/src/chrome/content/rules/St_Kitts_Zipline.xml b/src/chrome/content/rules/St_Kitts_Zipline.xml index acbef8199b51..75a5e65c65a3 100644 --- a/src/chrome/content/rules/St_Kitts_Zipline.xml +++ b/src/chrome/content/rules/St_Kitts_Zipline.xml @@ -11,10 +11,11 @@ Fetch error: http://stkittszipline.com/ => http://stkittszipline.com/: (28, 'Res - www (redirects to secure, valid cert) --> - + - + + @@ -26,4 +27,4 @@ Fetch error: http://stkittszipline.com/ => http://stkittszipline.com/: (28, 'Res - \ No newline at end of file + diff --git a/src/chrome/content/rules/St_L_Beacon.org.xml b/src/chrome/content/rules/St_L_Beacon.org.xml index 604f561f1152..bfd3b65e04bd 100644 --- a/src/chrome/content/rules/St_L_Beacon.org.xml +++ b/src/chrome/content/rules/St_L_Beacon.org.xml @@ -6,7 +6,7 @@ Fetch error: http://www.stlbeacon.org/ => https://www.stlbeacon.org/: (28, 'Conn ^: shows another domain --> - + diff --git a/src/chrome/content/rules/Sta.sh.xml b/src/chrome/content/rules/Sta.sh.xml index 8cfb927110b3..072736b78757 100644 --- a/src/chrome/content/rules/Sta.sh.xml +++ b/src/chrome/content/rules/Sta.sh.xml @@ -1,23 +1,12 @@ - - + + - - - - - - - - + diff --git a/src/chrome/content/rules/Stable-Host.xml b/src/chrome/content/rules/Stable-Host.xml index b742f864ef57..9adcb01541d6 100644 --- a/src/chrome/content/rules/Stable-Host.xml +++ b/src/chrome/content/rules/Stable-Host.xml @@ -46,7 +46,7 @@ - + - + - + - + @@ -48,6 +48,15 @@ + + + + + @@ -62,12 +71,13 @@ + - + @@ -88,20 +98,20 @@ - + - + - + - + @@ -113,8 +123,8 @@ - - + + diff --git a/src/chrome/content/rules/Stack.nl.xml b/src/chrome/content/rules/Stack.nl.xml index b868ae4b5b72..1fd4903f0cdd 100644 --- a/src/chrome/content/rules/Stack.nl.xml +++ b/src/chrome/content/rules/Stack.nl.xml @@ -1,17 +1,22 @@ + + - diff --git a/src/chrome/content/rules/StackEdit.io.xml b/src/chrome/content/rules/StackEdit.io.xml new file mode 100644 index 000000000000..09b2c096176f --- /dev/null +++ b/src/chrome/content/rules/StackEdit.io.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/StackMonkey.com.xml b/src/chrome/content/rules/StackMonkey.com.xml deleted file mode 100644 index e0c1e8286b57..000000000000 --- a/src/chrome/content/rules/StackMonkey.com.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/StackSocial.xml b/src/chrome/content/rules/StackSocial.xml index 887b11698f8c..d2e2af45e119 100644 --- a/src/chrome/content/rules/StackSocial.xml +++ b/src/chrome/content/rules/StackSocial.xml @@ -23,7 +23,7 @@ Fetch error: http://jobs.stacksocial.com/ => https://jobs.stacksocial.com/: (6, - jobs --> - + diff --git a/src/chrome/content/rules/Stacklet.com.xml b/src/chrome/content/rules/Stacklet.com.xml index 730ae1c162ad..0d1eb727a2d8 100644 --- a/src/chrome/content/rules/Stacklet.com.xml +++ b/src/chrome/content/rules/Stacklet.com.xml @@ -14,7 +14,7 @@ * Server sends no certificate chain, see https://whatsmychaincert.com --> - + diff --git a/src/chrome/content/rules/Stacksity.com.xml b/src/chrome/content/rules/Stacksity.com.xml index 4dfa2e771c0d..a97e7856d559 100644 --- a/src/chrome/content/rules/Stacksity.com.xml +++ b/src/chrome/content/rules/Stacksity.com.xml @@ -24,7 +24,7 @@ Fetch error: http://www.stacksity.com/ => https://www.stacksity.com/: (6, 'Could - .stacksity.com --> - + diff --git a/src/chrome/content/rules/Stadt-bremerhaven.de.xml b/src/chrome/content/rules/Stadt-bremerhaven.de.xml index ade726a63980..1523f67cec80 100644 --- a/src/chrome/content/rules/Stadt-bremerhaven.de.xml +++ b/src/chrome/content/rules/Stadt-bremerhaven.de.xml @@ -1,19 +1,7 @@ - - - - + - + - - + diff --git a/src/chrome/content/rules/Stadtwerke-Ingolstadt.xml b/src/chrome/content/rules/Stadtwerke-Ingolstadt.xml index 43bde376800b..277cb4d7fdc6 100644 --- a/src/chrome/content/rules/Stadtwerke-Ingolstadt.xml +++ b/src/chrome/content/rules/Stadtwerke-Ingolstadt.xml @@ -4,13 +4,12 @@ Disabled by https-everywhere-checker because: Fetch error: http://portal.sw-in.de/ => https://portal.sw-in.de/: (6, 'Could not resolve host: portal.sw-in.de') --> - - - + + + - - + diff --git a/src/chrome/content/rules/Staffordshire.gov.uk.xml b/src/chrome/content/rules/Staffordshire.gov.uk.xml index 33ee06d40da0..545ee0b402e2 100644 --- a/src/chrome/content/rules/Staffordshire.gov.uk.xml +++ b/src/chrome/content/rules/Staffordshire.gov.uk.xml @@ -52,7 +52,7 @@ Fetch error: http://pcbooking.staffordshire.gov.uk/ => https://pcbooking.staffor ˢ Secured by us --> - + @@ -78,7 +78,7 @@ Fetch error: http://pcbooking.staffordshire.gov.uk/ => https://pcbooking.staffor - + - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Stallman.org.xml b/src/chrome/content/rules/Stallman.org.xml index ce60e997d8fc..42357ecc2bb6 100644 --- a/src/chrome/content/rules/Stallman.org.xml +++ b/src/chrome/content/rules/Stallman.org.xml @@ -8,6 +8,8 @@ + + diff --git a/src/chrome/content/rules/Stand-for-Children.xml b/src/chrome/content/rules/Stand-for-Children.xml index 4e8f2001fd71..43564c3a4beb 100644 --- a/src/chrome/content/rules/Stand-for-Children.xml +++ b/src/chrome/content/rules/Stand-for-Children.xml @@ -6,16 +6,16 @@ Fetch error: http://greatteachersgreatschools.org/ => https://www.greatteachersg Disabled by https-everywhere-checker because: Fetch error: http://greatteachersgreatschools.org/ => https://www.greatteachersgreatschools.org/: (6, 'Could not resolve host: greatteachersgreatschools.org') --> - + - + - + diff --git a/src/chrome/content/rules/Stand_Against_Spying.org.xml b/src/chrome/content/rules/Stand_Against_Spying.org.xml deleted file mode 100644 index 2c87e9f3d884..000000000000 --- a/src/chrome/content/rules/Stand_Against_Spying.org.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Stand_Up_to_Cancer.xml b/src/chrome/content/rules/Stand_Up_to_Cancer.xml index 03e97fe43c90..ec46bbbdbf20 100644 --- a/src/chrome/content/rules/Stand_Up_to_Cancer.xml +++ b/src/chrome/content/rules/Stand_Up_to_Cancer.xml @@ -45,12 +45,16 @@ Fetch error: http://standup2cancer.ca/ => https://www.standup2cancer.ca/: (51, " * Secured by us --> - + - + - + + + + + diff --git a/src/chrome/content/rules/Stand_with_Reality.org.xml b/src/chrome/content/rules/Stand_with_Reality.org.xml new file mode 100644 index 000000000000..6a05a0d82478 --- /dev/null +++ b/src/chrome/content/rules/Stand_with_Reality.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Standaard.be-mixed.xml b/src/chrome/content/rules/Standaard.be-mixed.xml index fafc735922d2..6025e222a2f9 100644 --- a/src/chrome/content/rules/Standaard.be-mixed.xml +++ b/src/chrome/content/rules/Standaard.be-mixed.xml @@ -8,12 +8,11 @@ Fetch error: http://www.standaard.be/ => https://www.standaard.be/: Cycle detect For rules not causing neither false/broken nor valid MCB, see Standaard.be.xml. --> - + - + diff --git a/src/chrome/content/rules/Standaard.be.xml b/src/chrome/content/rules/Standaard.be.xml index b63162092424..3830ca707d64 100644 --- a/src/chrome/content/rules/Standaard.be.xml +++ b/src/chrome/content/rules/Standaard.be.xml @@ -85,7 +85,7 @@ Fetch error: http://2.standaardcdn.be/ => https://www.standaard.be/: Cycle detec ² Secured by us --> - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Stanford-University.xml b/src/chrome/content/rules/Stanford-University.xml deleted file mode 100644 index c510f0fc9506..000000000000 --- a/src/chrome/content/rules/Stanford-University.xml +++ /dev/null @@ -1,1565 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Stanford.edu-falsemixed.xml b/src/chrome/content/rules/Stanford.edu-falsemixed.xml deleted file mode 100644 index 3a32cc18230e..000000000000 --- a/src/chrome/content/rules/Stanford.edu-falsemixed.xml +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Stanford.edu.xml b/src/chrome/content/rules/Stanford.edu.xml new file mode 100644 index 000000000000..9f2e748eb7d4 --- /dev/null +++ b/src/chrome/content/rules/Stanford.edu.xml @@ -0,0 +1,201 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Stanford_Med.org.xml b/src/chrome/content/rules/Stanford_Med.org.xml index db4b63257df4..135a166f78e8 100644 --- a/src/chrome/content/rules/Stanford_Med.org.xml +++ b/src/chrome/content/rules/Stanford_Med.org.xml @@ -10,7 +10,7 @@ Fetch error: http://econnect.stanfordmed.org/ => https://econnect.stanfordmed.or www.stanfordmed.org: Refused --> - + diff --git a/src/chrome/content/rules/Stanographer.com.xml b/src/chrome/content/rules/Stanographer.com.xml new file mode 100644 index 000000000000..504813cb01b2 --- /dev/null +++ b/src/chrome/content/rules/Stanographer.com.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Staples.com.xml b/src/chrome/content/rules/Staples.com.xml deleted file mode 100644 index d3a55a449dda..000000000000 --- a/src/chrome/content/rules/Staples.com.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Star-Motorcycles.xml b/src/chrome/content/rules/Star-Motorcycles.xml index e050e76508c2..b085f70c716c 100644 --- a/src/chrome/content/rules/Star-Motorcycles.xml +++ b/src/chrome/content/rules/Star-Motorcycles.xml @@ -4,7 +4,7 @@ - + diff --git a/src/chrome/content/rules/StarFoxWiki.info.xml b/src/chrome/content/rules/StarFoxWiki.info.xml new file mode 100644 index 000000000000..bc2d66a69b38 --- /dev/null +++ b/src/chrome/content/rules/StarFoxWiki.info.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/StarMoney.de.xml b/src/chrome/content/rules/StarMoney.de.xml index 78a515f00ab5..9b82bd3d2ade 100644 --- a/src/chrome/content/rules/StarMoney.de.xml +++ b/src/chrome/content/rules/StarMoney.de.xml @@ -12,7 +12,8 @@ - + + - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/StarRez.xml b/src/chrome/content/rules/StarRez.xml index 5cd294aad3b4..20fddcfbcfe8 100644 --- a/src/chrome/content/rules/StarRez.xml +++ b/src/chrome/content/rules/StarRez.xml @@ -7,4 +7,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/StarTrack.com.au.xml b/src/chrome/content/rules/StarTrack.com.au.xml new file mode 100644 index 000000000000..2ebd45c400df --- /dev/null +++ b/src/chrome/content/rules/StarTrack.com.au.xml @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Star_Product_Reviews.xml b/src/chrome/content/rules/Star_Product_Reviews.xml deleted file mode 100644 index 881d94f1989f..000000000000 --- a/src/chrome/content/rules/Star_Product_Reviews.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Star_Search_Casting.com.xml b/src/chrome/content/rules/Star_Search_Casting.com.xml deleted file mode 100644 index 7156639005e1..000000000000 --- a/src/chrome/content/rules/Star_Search_Casting.com.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Star_Trek.xml b/src/chrome/content/rules/Star_Trek.xml index b6b666a83952..3ce5446ca97e 100644 --- a/src/chrome/content/rules/Star_Trek.xml +++ b/src/chrome/content/rules/Star_Trek.xml @@ -11,7 +11,7 @@ Fetch error: http://store.startrek.com/ => https://store.startrek.com/: (60, 'SS - www (akamai; 503) --> - + @@ -19,7 +19,6 @@ Fetch error: http://store.startrek.com/ => https://store.startrek.com/: (60, 'SS - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Starbucks.com.xml b/src/chrome/content/rules/Starbucks.com.xml index 449b114839dd..1a4131242fb6 100644 --- a/src/chrome/content/rules/Starbucks.com.xml +++ b/src/chrome/content/rules/Starbucks.com.xml @@ -43,7 +43,9 @@ - + + + diff --git a/src/chrome/content/rules/Stardock.xml b/src/chrome/content/rules/Stardock.xml index bd8afa05278b..c4feed03929a 100644 --- a/src/chrome/content/rules/Stardock.xml +++ b/src/chrome/content/rules/Stardock.xml @@ -34,7 +34,7 @@ Fetch error: http://stardock.com/ => https://stardock.com/: (35, 'Unknown SSL pr - services.stardock.net --> - + @@ -57,4 +57,4 @@ Fetch error: http://stardock.com/ => https://stardock.com/: (35, 'Unknown SSL pr - \ No newline at end of file + diff --git a/src/chrome/content/rules/Starfield.xml b/src/chrome/content/rules/Starfield.xml index 9e18df4f61c0..6d9564bc83b0 100644 --- a/src/chrome/content/rules/Starfield.xml +++ b/src/chrome/content/rules/Starfield.xml @@ -18,16 +18,19 @@ Fetch error: http://starfieldtech.com/ => https://starfieldtech.com/: (51, "SSL: - seal --> - + - + + + + + - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/StarfyWiki.org.xml b/src/chrome/content/rules/StarfyWiki.org.xml new file mode 100644 index 000000000000..594981080dcf --- /dev/null +++ b/src/chrome/content/rules/StarfyWiki.org.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Starminder.xyz.xml b/src/chrome/content/rules/Starminder.xyz.xml new file mode 100644 index 000000000000..4c44e6581587 --- /dev/null +++ b/src/chrome/content/rules/Starminder.xyz.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Starship.rs.xml b/src/chrome/content/rules/Starship.rs.xml new file mode 100644 index 000000000000..33aa27cb4d2a --- /dev/null +++ b/src/chrome/content/rules/Starship.rs.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/Start.me-problematic.xml b/src/chrome/content/rules/Start.me-problematic.xml deleted file mode 100644 index 815f88a3bc24..000000000000 --- a/src/chrome/content/rules/Start.me-problematic.xml +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Start.me.xml b/src/chrome/content/rules/Start.me.xml index b73ef97fc8c6..e0f8253def55 100644 --- a/src/chrome/content/rules/Start.me.xml +++ b/src/chrome/content/rules/Start.me.xml @@ -1,5 +1,5 @@ - + @@ -50,17 +50,17 @@ Fetch error: http://startssl.us/ => https://startssl.us/: (6, 'Could not resolve - - + + - + - + - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/StartingPage.com.xml b/src/chrome/content/rules/StartingPage.com.xml index 326bf4925c8f..aa8018ac3533 100644 --- a/src/chrome/content/rules/StartingPage.com.xml +++ b/src/chrome/content/rules/StartingPage.com.xml @@ -1,5 +1,5 @@ - diff --git a/src/chrome/content/rules/Startlab.sk.xml b/src/chrome/content/rules/Startlab.sk.xml deleted file mode 100644 index faa08d4feb8c..000000000000 --- a/src/chrome/content/rules/Startlab.sk.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/Starwood-Hotels-and-Resorts.xml b/src/chrome/content/rules/Starwood-Hotels-and-Resorts.xml deleted file mode 100644 index ad03b85d39e8..000000000000 --- a/src/chrome/content/rules/Starwood-Hotels-and-Resorts.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/StarwoodHotels.com.xml b/src/chrome/content/rules/StarwoodHotels.com.xml new file mode 100644 index 000000000000..cfa27a7c5fa1 --- /dev/null +++ b/src/chrome/content/rules/StarwoodHotels.com.xml @@ -0,0 +1,14 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/StatOwl.com.xml b/src/chrome/content/rules/StatOwl.com.xml index cd940e2c8937..0ddc35dacfd7 100644 --- a/src/chrome/content/rules/StatOwl.com.xml +++ b/src/chrome/content/rules/StatOwl.com.xml @@ -8,12 +8,11 @@ Fetch error: http://collector.statowl.com/ => https://collector.statowl.com/: (6 - (www.) (404; mismatched, CN: homer.terabytemedia.com) --> - + - + diff --git a/src/chrome/content/rules/Statcounter.xml b/src/chrome/content/rules/Statcounter.xml index c7eea5216013..4f37de12f108 100644 --- a/src/chrome/content/rules/Statcounter.xml +++ b/src/chrome/content/rules/Statcounter.xml @@ -46,7 +46,7 @@ --> - + https://sfsecuremail.statefar Disabled by https-everywhere-checker because: Fetch error: http://sfsecuremail.statefarm.com/ => https://sfsecuremail.statefarm.com/: (28, 'Connection timed out after 10001 milliseconds') --> - + - + diff --git a/src/chrome/content/rules/State_of_Delaware.xml b/src/chrome/content/rules/State_of_Delaware.xml index 4de6a6c7c727..2e6f52c38283 100644 --- a/src/chrome/content/rules/State_of_Delaware.xml +++ b/src/chrome/content/rules/State_of_Delaware.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://delecorp.delaware.gov/ => https://delecorp.delaware.gov/: (7, 'Failed to connect to delecorp.delaware.gov port 443: Connection refused') --> - + diff --git a/src/chrome/content/rules/State_of_Oregon.xml b/src/chrome/content/rules/State_of_Oregon.xml index aee05c745fa2..b0357e8e4e99 100644 --- a/src/chrome/content/rules/State_of_Oregon.xml +++ b/src/chrome/content/rules/State_of_Oregon.xml @@ -23,4 +23,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Static-Cisco.com.xml b/src/chrome/content/rules/Static-Cisco.com.xml index 4817f7888721..fad21e5f2f94 100644 --- a/src/chrome/content/rules/Static-Cisco.com.xml +++ b/src/chrome/content/rules/Static-Cisco.com.xml @@ -10,7 +10,7 @@ - + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Static_Site_Generators.net.xml b/src/chrome/content/rules/Static_Site_Generators.net.xml index c18fdbaf8dbd..cb98d53d7621 100644 --- a/src/chrome/content/rules/Static_Site_Generators.net.xml +++ b/src/chrome/content/rules/Static_Site_Generators.net.xml @@ -5,7 +5,7 @@ - + diff --git a/src/chrome/content/rules/Staticskynet.be.xml b/src/chrome/content/rules/Staticskynet.be.xml index e19f5d4015d0..82df5a82c484 100644 --- a/src/chrome/content/rules/Staticskynet.be.xml +++ b/src/chrome/content/rules/Staticskynet.be.xml @@ -4,12 +4,11 @@ Disabled by https-everywhere-checker because: Fetch error: http://common.staticskynet.be/ => https://common.staticskynet.be/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + - + diff --git a/src/chrome/content/rules/StationColdBrew.com.xml b/src/chrome/content/rules/StationColdBrew.com.xml new file mode 100644 index 000000000000..0feb48954b48 --- /dev/null +++ b/src/chrome/content/rules/StationColdBrew.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Station_L_Rowing_Club.xml b/src/chrome/content/rules/Station_L_Rowing_Club.xml index d08b97cfff03..1bca9ff97f34 100644 --- a/src/chrome/content/rules/Station_L_Rowing_Club.xml +++ b/src/chrome/content/rules/Station_L_Rowing_Club.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Statistics.gov.uk.xml b/src/chrome/content/rules/Statistics.gov.uk.xml new file mode 100644 index 000000000000..b1afa453a32f --- /dev/null +++ b/src/chrome/content/rules/Statistics.gov.uk.xml @@ -0,0 +1,41 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/StatisticsDoneWrong.com.xml b/src/chrome/content/rules/StatisticsDoneWrong.com.xml new file mode 100644 index 000000000000..5ac91f93b7b8 --- /dev/null +++ b/src/chrome/content/rules/StatisticsDoneWrong.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/StatusPage.io.xml b/src/chrome/content/rules/StatusPage.io.xml index 375423509f9c..8c242d62b837 100644 --- a/src/chrome/content/rules/StatusPage.io.xml +++ b/src/chrome/content/rules/StatusPage.io.xml @@ -11,13 +11,12 @@ - + - diff --git a/src/chrome/content/rules/Statushub.io.xml b/src/chrome/content/rules/Statushub.io.xml index 553f55b3d796..2e63ffc0c339 100644 --- a/src/chrome/content/rules/Statushub.io.xml +++ b/src/chrome/content/rules/Statushub.io.xml @@ -5,7 +5,7 @@ Fetch error: http://workspaces.statushub.io/ => https://workspaces.statushub.io/ blog. protocol error mozillastatus. mismatch msuservicestatus. mismatch--> - + @@ -21,10 +21,10 @@ msuservicestatus. mismatch--> - + - + - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/StaySmartOnline.xml b/src/chrome/content/rules/StaySmartOnline.xml index c855b3425263..4eb4e31bc955 100644 --- a/src/chrome/content/rules/StaySmartOnline.xml +++ b/src/chrome/content/rules/StaySmartOnline.xml @@ -1,10 +1,12 @@ - + + + - \ No newline at end of file + diff --git a/src/chrome/content/rules/StayToday.com.xml b/src/chrome/content/rules/StayToday.com.xml index 1bf691284d7f..3e7a361cf107 100644 --- a/src/chrome/content/rules/StayToday.com.xml +++ b/src/chrome/content/rules/StayToday.com.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://staytoday.com/ => https://staytoday.com/: (60, 'SSL certificate problem: certificate has expired') Fetch error: http://www.staytoday.com/ => https://www.staytoday.com/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/Stayfriends.xml b/src/chrome/content/rules/Stayfriends.xml index 0ffa77cdc60b..c4608147665f 100644 --- a/src/chrome/content/rules/Stayfriends.xml +++ b/src/chrome/content/rules/Stayfriends.xml @@ -1,17 +1,19 @@ - - - - + + + + + + + - + diff --git a/src/chrome/content/rules/Std3.ru.xml b/src/chrome/content/rules/Std3.ru.xml deleted file mode 100644 index 023f23eb7271..000000000000 --- a/src/chrome/content/rules/Std3.ru.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Steam.xml b/src/chrome/content/rules/Steam.xml index f4b30357f641..7bac4b2f6e0a 100644 --- a/src/chrome/content/rules/Steam.xml +++ b/src/chrome/content/rules/Steam.xml @@ -1,149 +1,59 @@ - - - - + + - + + + - - + + - - - - - + + + + + + - - - - - - - - - + - - - - - - - - - - - + - - - - + + + - - + - + + - - - - + - + to="https:" /> diff --git a/src/chrome/content/rules/Steam_Community.com.xml b/src/chrome/content/rules/Steam_Community.com.xml deleted file mode 100644 index f7cfd929c8fe..000000000000 --- a/src/chrome/content/rules/Steam_Community.com.xml +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Steam_static.com.xml b/src/chrome/content/rules/Steam_static.com.xml deleted file mode 100644 index 175119c19d1b..000000000000 --- a/src/chrome/content/rules/Steam_static.com.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Steamgames.com.xml b/src/chrome/content/rules/Steamgames.com.xml deleted file mode 100644 index caa224027d29..000000000000 --- a/src/chrome/content/rules/Steamgames.com.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Steaw.xml b/src/chrome/content/rules/Steaw.xml index a1a76b743086..a79b2518c182 100644 --- a/src/chrome/content/rules/Steaw.xml +++ b/src/chrome/content/rules/Steaw.xml @@ -7,7 +7,7 @@ Fetch error: http://steaw.com/ => https://www.steaw.com/: (28, 'Connection timed ^steaw.com: Shows another domain --> - + diff --git a/src/chrome/content/rules/Steeleye.com.xml b/src/chrome/content/rules/Steeleye.com.xml index f1b7487baf13..9d57d3655f4e 100644 --- a/src/chrome/content/rules/Steeleye.com.xml +++ b/src/chrome/content/rules/Steeleye.com.xml @@ -14,4 +14,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Steemh.org.xml b/src/chrome/content/rules/Steemh.org.xml new file mode 100644 index 000000000000..34033b15e5f5 --- /dev/null +++ b/src/chrome/content/rules/Steemh.org.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Steganos.com.xml b/src/chrome/content/rules/Steganos.com.xml index cac1a7332910..ecd83987be0b 100644 --- a/src/chrome/content/rules/Steganos.com.xml +++ b/src/chrome/content/rules/Steganos.com.xml @@ -25,13 +25,14 @@ - + + + - + diff --git a/src/chrome/content/rules/Stella_and_Dot.xml b/src/chrome/content/rules/Stella_and_Dot.xml index cc34bea58ab1..80689fdcd3a8 100644 --- a/src/chrome/content/rules/Stella_and_Dot.xml +++ b/src/chrome/content/rules/Stella_and_Dot.xml @@ -5,7 +5,6 @@ Fetch error: http://stylewatch.stelladot.com/ => https://stylewatch.stelladot.co Other Stella & Dot rulesets: - - stelladotcdn.com.xml CDN buckets: @@ -43,7 +42,7 @@ Fetch error: http://stylewatch.stelladot.com/ => https://stylewatch.stelladot.co ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -102,8 +101,8 @@ Fetch error: http://stylewatch.stelladot.com/ => https://stylewatch.stelladot.co - - + + + + + + + + + + + diff --git a/src/chrome/content/rules/Stelter.xml b/src/chrome/content/rules/Stelter.xml index 2be975b4a8ee..b9fa88a95381 100644 --- a/src/chrome/content/rules/Stelter.xml +++ b/src/chrome/content/rules/Stelter.xml @@ -12,7 +12,7 @@ Fetch error: http://www.gftplns.org/ => https://www.gftplns.org/: (60, 'SSL cert Fetch error: http://www.plan.gs/ => https://www.gftplns.org/: (60, 'SSL certificate problem: unable to get local issuer certificate') Fetch error: http://dashboard.stelter.com/ => https://dashboard.stelter.com/: (28, 'Connection timed out after 10000 milliseconds') --> - + @@ -20,7 +20,7 @@ Fetch error: http://dashboard.stelter.com/ => https://dashboard.stelter.com/: (2 - + diff --git a/src/chrome/content/rules/Stemulite_Fitness_Formula.xml b/src/chrome/content/rules/Stemulite_Fitness_Formula.xml index 8335eb085490..f31382a255ed 100644 --- a/src/chrome/content/rules/Stemulite_Fitness_Formula.xml +++ b/src/chrome/content/rules/Stemulite_Fitness_Formula.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/StephenHicks.org.xml b/src/chrome/content/rules/StephenHicks.org.xml new file mode 100644 index 000000000000..9ea52731c076 --- /dev/null +++ b/src/chrome/content/rules/StephenHicks.org.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/StephenHolyday.ca.xml b/src/chrome/content/rules/StephenHolyday.ca.xml new file mode 100644 index 000000000000..e701286ce47e --- /dev/null +++ b/src/chrome/content/rules/StephenHolyday.ca.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Stephenpi.com.xml b/src/chrome/content/rules/Stephenpi.com.xml new file mode 100644 index 000000000000..eedc4d06e229 --- /dev/null +++ b/src/chrome/content/rules/Stephenpi.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Stepmaniax.com.xml b/src/chrome/content/rules/Stepmaniax.com.xml new file mode 100644 index 000000000000..1bc6267bbcd2 --- /dev/null +++ b/src/chrome/content/rules/Stepmaniax.com.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Stern.de.xml b/src/chrome/content/rules/Stern.de.xml new file mode 100644 index 000000000000..f801c1f2e9f5 --- /dev/null +++ b/src/chrome/content/rules/Stern.de.xml @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Sternkom.xml b/src/chrome/content/rules/Sternkom.xml index d89f5e5b3189..7d48bf8acb52 100644 --- a/src/chrome/content/rules/Sternkom.xml +++ b/src/chrome/content/rules/Sternkom.xml @@ -1,8 +1,7 @@ - + - + - diff --git a/src/chrome/content/rules/StevenRoddis.xml b/src/chrome/content/rules/StevenRoddis.xml deleted file mode 100644 index 8a96bafa5202..000000000000 --- a/src/chrome/content/rules/StevenRoddis.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - diff --git a/src/chrome/content/rules/Stevesie.xml b/src/chrome/content/rules/Stevesie.xml index e4e194e28262..fffc091bc1b5 100644 --- a/src/chrome/content/rules/Stevesie.xml +++ b/src/chrome/content/rules/Stevesie.xml @@ -6,7 +6,7 @@ Fetch error: http://api.stevesie.com/ => https://api.stevesie.com/: (6, 'Could n Disabled by https-everywhere-checker because: Fetch error: http://stevesie.com/ => https://stevesie.com/: (35, 'error:140770FC:SSL routines:SSL23_GET_SERVER_HELLO:unknown protocol') --> - + @@ -15,4 +15,4 @@ Fetch error: http://stevesie.com/ => https://stevesie.com/: (35, 'error:140770FC - \ No newline at end of file + diff --git a/src/chrome/content/rules/StewartCalculus.com.xml b/src/chrome/content/rules/StewartCalculus.com.xml new file mode 100644 index 000000000000..3adaf9b78cb4 --- /dev/null +++ b/src/chrome/content/rules/StewartCalculus.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Stgbssint.com.xml b/src/chrome/content/rules/Stgbssint.com.xml deleted file mode 100644 index 8b59416fcab2..000000000000 --- a/src/chrome/content/rules/Stgbssint.com.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Stickhet.xml b/src/chrome/content/rules/Stickhet.xml index 4a01e933e547..a0bcfb6155fb 100644 --- a/src/chrome/content/rules/Stickhet.xml +++ b/src/chrome/content/rules/Stickhet.xml @@ -5,7 +5,7 @@ Fetch error: http://stickhet.com/ => https://stickhet.com/: (51, "SSL: no altern Fetch error: http://www.stickhet.com/ => https://www.stickhet.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.stickhet.com'") --> - + @@ -16,4 +16,4 @@ Fetch error: http://www.stickhet.com/ => https://www.stickhet.com/: (51, "SSL: n - \ No newline at end of file + diff --git a/src/chrome/content/rules/Stickyadstv.com.xml b/src/chrome/content/rules/Stickyadstv.com.xml index 59d554ffa0c6..e6f241212857 100644 --- a/src/chrome/content/rules/Stickyadstv.com.xml +++ b/src/chrome/content/rules/Stickyadstv.com.xml @@ -5,7 +5,7 @@ - + - + - + diff --git a/src/chrome/content/rules/StockReportsPlus.com.xml b/src/chrome/content/rules/StockReportsPlus.com.xml new file mode 100644 index 000000000000..a3a1ac5c231c --- /dev/null +++ b/src/chrome/content/rules/StockReportsPlus.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/StockTwits.com.xml b/src/chrome/content/rules/StockTwits.com.xml new file mode 100644 index 000000000000..d96222c7b9bd --- /dev/null +++ b/src/chrome/content/rules/StockTwits.com.xml @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/StockTwits.xml b/src/chrome/content/rules/StockTwits.xml deleted file mode 100644 index a8dffeaf0e37..000000000000 --- a/src/chrome/content/rules/StockTwits.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Stockton_College.xml b/src/chrome/content/rules/Stockton_College.xml index 7b651dd99b10..ff2d67e4b107 100644 --- a/src/chrome/content/rules/Stockton_College.xml +++ b/src/chrome/content/rules/Stockton_College.xml @@ -75,4 +75,4 @@ www.lynda.com.ezproxy.stockton.edu - \ No newline at end of file + diff --git a/src/chrome/content/rules/StoneArch.net.xml b/src/chrome/content/rules/StoneArch.net.xml new file mode 100644 index 000000000000..cdfb186364fe --- /dev/null +++ b/src/chrome/content/rules/StoneArch.net.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Stoneandstone.org.xml b/src/chrome/content/rules/Stoneandstone.org.xml new file mode 100644 index 000000000000..5f394c2d4056 --- /dev/null +++ b/src/chrome/content/rules/Stoneandstone.org.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Stony_Brook_University.xml b/src/chrome/content/rules/Stony_Brook_University.xml index b8f9ce256180..f45150ea98f6 100644 --- a/src/chrome/content/rules/Stony_Brook_University.xml +++ b/src/chrome/content/rules/Stony_Brook_University.xml @@ -62,7 +62,7 @@ Fetch error: http://www.cs.sunysb.edu/ => https://www.cs.sunysb.edu/: (51, "SSL: - Bug on (www.)?studentaffairs from snapwidget.com --> - + @@ -104,7 +104,7 @@ Fetch error: http://www.cs.sunysb.edu/ => https://www.cs.sunysb.edu/: (51, "SSL: - + https://www.stop-snoring - old (works, CN: Parallels Panel) --> - + diff --git a/src/chrome/content/rules/Stop-TTIP.org.xml b/src/chrome/content/rules/Stop-TTIP.org.xml deleted file mode 100644 index ca9828c26776..000000000000 --- a/src/chrome/content/rules/Stop-TTIP.org.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/StopFundingHate.org.uk.xml b/src/chrome/content/rules/StopFundingHate.org.uk.xml new file mode 100644 index 000000000000..856ddcea0f8f --- /dev/null +++ b/src/chrome/content/rules/StopFundingHate.org.uk.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Stop_Cyber_Spying.com.xml b/src/chrome/content/rules/Stop_Cyber_Spying.com.xml index 293f9ea2d167..788b2e6d4937 100644 --- a/src/chrome/content/rules/Stop_Cyber_Spying.com.xml +++ b/src/chrome/content/rules/Stop_Cyber_Spying.com.xml @@ -13,7 +13,7 @@ Fetch error: http://www.stopcyberspying.com/ => https://www.stopcyberspying.com/ - www.stopcyberspying.com --> - + diff --git a/src/chrome/content/rules/Stop_Software_Patents.xml b/src/chrome/content/rules/Stop_Software_Patents.xml deleted file mode 100644 index 3747f54c0d4b..000000000000 --- a/src/chrome/content/rules/Stop_Software_Patents.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Storage-Bin.com.xml b/src/chrome/content/rules/Storage-Bin.com.xml index 1e09b2a34bb9..bf2a8d394aa9 100644 --- a/src/chrome/content/rules/Storage-Bin.com.xml +++ b/src/chrome/content/rules/Storage-Bin.com.xml @@ -1,13 +1,13 @@ - + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Storebot.me.xml b/src/chrome/content/rules/Storebot.me.xml deleted file mode 100644 index ed93401375cf..000000000000 --- a/src/chrome/content/rules/Storebot.me.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Storenvy.xml b/src/chrome/content/rules/Storenvy.xml index 6da1fb0c6d6e..a7457c228c07 100644 --- a/src/chrome/content/rules/Storenvy.xml +++ b/src/chrome/content/rules/Storenvy.xml @@ -19,4 +19,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Storify.xml b/src/chrome/content/rules/Storify.xml index 7945aad350c4..e32f7e0de6be 100644 --- a/src/chrome/content/rules/Storify.xml +++ b/src/chrome/content/rules/Storify.xml @@ -6,7 +6,7 @@ Fetch error: http://manage.storify.com/ => https://manage.storify.com/: (6, 'Cou Fetch error: http://proxy.storify.com/ => https://proxy.storify.com/: (6, 'Could not resolve host: proxy.storify.com') --> - + @@ -16,7 +16,7 @@ Fetch error: http://proxy.storify.com/ => https://proxy.storify.com/: (6, 'Could - + https://classic.storminterne - Linux_control_panel.co.uk.xml --> - + @@ -17,7 +17,7 @@ Fetch error: http://classic.storminternet.co.uk/ => https://classic.storminterne - + - - - - - - - - - diff --git a/src/chrome/content/rules/Stormpath.com.xml b/src/chrome/content/rules/Stormpath.com.xml index 81d2aa65ec6c..418590cfa12b 100644 --- a/src/chrome/content/rules/Stormpath.com.xml +++ b/src/chrome/content/rules/Stormpath.com.xml @@ -19,7 +19,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Stovetop.com.au.xml b/src/chrome/content/rules/Stovetop.com.au.xml new file mode 100644 index 000000000000..949d86e28c07 --- /dev/null +++ b/src/chrome/content/rules/Stovetop.com.au.xml @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Stpeter.im.xml b/src/chrome/content/rules/Stpeter.im.xml index 6acd61db97d8..4455aa8ad495 100644 --- a/src/chrome/content/rules/Stpeter.im.xml +++ b/src/chrome/content/rules/Stpeter.im.xml @@ -19,7 +19,7 @@ Fetch error: http://www.stpeter.im/ => https://stpeter.im/: (51, "SSL: no altern - mailhost --> - + diff --git a/src/chrome/content/rules/StrangeWorlds.xml b/src/chrome/content/rules/StrangeWorlds.xml index 623d0f1c1264..35b1b15b851c 100644 --- a/src/chrome/content/rules/StrangeWorlds.xml +++ b/src/chrome/content/rules/StrangeWorlds.xml @@ -4,12 +4,11 @@ Disabled by https-everywhere-checker because: Fetch error: http://strangeworlds.co.uk/ => https://strangeworlds.co.uk/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Straply.xml b/src/chrome/content/rules/Straply.xml deleted file mode 100644 index c2906c9c4d15..000000000000 --- a/src/chrome/content/rules/Straply.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Strategic_Management_Society.xml b/src/chrome/content/rules/Strategic_Management_Society.xml index ab2672a3e3b0..00135ea001f8 100644 --- a/src/chrome/content/rules/Strategic_Management_Society.xml +++ b/src/chrome/content/rules/Strategic_Management_Society.xml @@ -6,10 +6,10 @@ Fetch error: http://strategicmanagement.net/ => https://strategicmanagement.net/ www redirects to http before redirecting to !www. --> - + - + @@ -18,4 +18,4 @@ Fetch error: http://strategicmanagement.net/ => https://strategicmanagement.net/ - \ No newline at end of file + diff --git a/src/chrome/content/rules/StrategyWiki.org.xml b/src/chrome/content/rules/StrategyWiki.org.xml new file mode 100644 index 000000000000..193bc7ad386b --- /dev/null +++ b/src/chrome/content/rules/StrategyWiki.org.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Strategy_Analytics.xml b/src/chrome/content/rules/Strategy_Analytics.xml index 6d8ba6ed4831..36e62a3ec72f 100644 --- a/src/chrome/content/rules/Strategy_Analytics.xml +++ b/src/chrome/content/rules/Strategy_Analytics.xml @@ -17,7 +17,7 @@ --> - + - + + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Strawpoll.me.xml b/src/chrome/content/rules/Strawpoll.me.xml index bd9411c92f4c..982bdf4305a4 100644 --- a/src/chrome/content/rules/Strawpoll.me.xml +++ b/src/chrome/content/rules/Strawpoll.me.xml @@ -1,16 +1,35 @@ - - + + + + + + + - + + + + + + + + + + + + + + - diff --git a/src/chrome/content/rules/StreamGoals.com.xml b/src/chrome/content/rules/StreamGoals.com.xml new file mode 100644 index 000000000000..812c39d5b8fb --- /dev/null +++ b/src/chrome/content/rules/StreamGoals.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/StreamMyGame.xml b/src/chrome/content/rules/StreamMyGame.xml deleted file mode 100644 index d82cf7b86222..000000000000 --- a/src/chrome/content/rules/StreamMyGame.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/StreamVI.com.xml b/src/chrome/content/rules/StreamVI.com.xml new file mode 100644 index 000000000000..42da3f80c0c4 --- /dev/null +++ b/src/chrome/content/rules/StreamVI.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Streamable.com.xml b/src/chrome/content/rules/Streamable.com.xml new file mode 100644 index 000000000000..77e5eb1a6476 --- /dev/null +++ b/src/chrome/content/rules/Streamable.com.xml @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Streamfarm.net.xml b/src/chrome/content/rules/Streamfarm.net.xml index 3bda22846e5f..dbf9060f2e8e 100644 --- a/src/chrome/content/rules/Streamfarm.net.xml +++ b/src/chrome/content/rules/Streamfarm.net.xml @@ -4,15 +4,15 @@ Disabled by https-everywhere-checker because: Fetch error: http://c17001-o.l.core.cdn.streamfarm.net/ => https://c17001-o.l.core.cdn.streamfarm.net/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + - - + diff --git a/src/chrome/content/rules/Streamja.com.xml b/src/chrome/content/rules/Streamja.com.xml new file mode 100644 index 000000000000..513f77d474cc --- /dev/null +++ b/src/chrome/content/rules/Streamja.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Streamtip.com.xml b/src/chrome/content/rules/Streamtip.com.xml deleted file mode 100644 index cd292ea32942..000000000000 --- a/src/chrome/content/rules/Streamtip.com.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Street_Art_Utopia.xml b/src/chrome/content/rules/Street_Art_Utopia.xml index 92350d66f9d3..609eab9ebebf 100644 --- a/src/chrome/content/rules/Street_Art_Utopia.xml +++ b/src/chrome/content/rules/Street_Art_Utopia.xml @@ -4,7 +4,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Strelkacard.ru.xml b/src/chrome/content/rules/Strelkacard.ru.xml index 2eb2e5f93b7a..1c60ac116dc0 100644 --- a/src/chrome/content/rules/Strelkacard.ru.xml +++ b/src/chrome/content/rules/Strelkacard.ru.xml @@ -3,7 +3,7 @@ - + diff --git a/src/chrome/content/rules/Stripe.com.xml b/src/chrome/content/rules/Stripe.com.xml index 3023bb9ac370..e3f71dd89171 100644 --- a/src/chrome/content/rules/Stripe.com.xml +++ b/src/chrome/content/rules/Stripe.com.xml @@ -1,8 +1,4 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/StripeFees.com.xml b/src/chrome/content/rules/StripeFees.com.xml deleted file mode 100644 index 33281c04dad1..000000000000 --- a/src/chrome/content/rules/StripeFees.com.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Strode-College.ac.uk.xml b/src/chrome/content/rules/Strode-College.ac.uk.xml index 13a0af5e8eca..6a6c59f943ba 100644 --- a/src/chrome/content/rules/Strode-College.ac.uk.xml +++ b/src/chrome/content/rules/Strode-College.ac.uk.xml @@ -23,7 +23,7 @@ --> - + - + - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/StrongVPN.xml b/src/chrome/content/rules/StrongVPN.xml index dcf9a67f96ab..530efbcfe0b0 100644 --- a/src/chrome/content/rules/StrongVPN.xml +++ b/src/chrome/content/rules/StrongVPN.xml @@ -2,8 +2,5 @@ - - + diff --git a/src/chrome/content/rules/Stuart-Robbins.xml b/src/chrome/content/rules/Stuart-Robbins.xml deleted file mode 100644 index 2bf6af7b4713..000000000000 --- a/src/chrome/content/rules/Stuart-Robbins.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Stubhub.ca.xml b/src/chrome/content/rules/Stubhub.ca.xml new file mode 100644 index 000000000000..73e82ccfb435 --- /dev/null +++ b/src/chrome/content/rules/Stubhub.ca.xml @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Stubhub.co.uk.xml b/src/chrome/content/rules/Stubhub.co.uk.xml new file mode 100644 index 000000000000..708ffc9bb3b2 --- /dev/null +++ b/src/chrome/content/rules/Stubhub.co.uk.xml @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Stubhub.com.xml b/src/chrome/content/rules/Stubhub.com.xml new file mode 100644 index 000000000000..4c46b0d4f6b3 --- /dev/null +++ b/src/chrome/content/rules/Stubhub.com.xml @@ -0,0 +1,127 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Stubhub.de.xml b/src/chrome/content/rules/Stubhub.de.xml new file mode 100644 index 000000000000..385bd400b94a --- /dev/null +++ b/src/chrome/content/rules/Stubhub.de.xml @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Stubhub.fr.xml b/src/chrome/content/rules/Stubhub.fr.xml new file mode 100644 index 000000000000..2754e2a8b933 --- /dev/null +++ b/src/chrome/content/rules/Stubhub.fr.xml @@ -0,0 +1,29 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Stubhub.xml b/src/chrome/content/rules/Stubhub.xml deleted file mode 100644 index 0892cfe29f09..000000000000 --- a/src/chrome/content/rules/Stubhub.xml +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/StudentDoctor.net.xml b/src/chrome/content/rules/StudentDoctor.net.xml index 1f94096f6806..5f04a50ee688 100644 --- a/src/chrome/content/rules/StudentDoctor.net.xml +++ b/src/chrome/content/rules/StudentDoctor.net.xml @@ -1,10 +1,11 @@ - + - - + + + diff --git a/src/chrome/content/rules/Student_Aid_Calculator.com.xml b/src/chrome/content/rules/Student_Aid_Calculator.com.xml deleted file mode 100644 index 2cf85c77b050..000000000000 --- a/src/chrome/content/rules/Student_Aid_Calculator.com.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Students_for_Sensible_Drug_Policy.xml b/src/chrome/content/rules/Students_for_Sensible_Drug_Policy.xml index 852a901b4ddf..188188cf13c6 100644 --- a/src/chrome/content/rules/Students_for_Sensible_Drug_Policy.xml +++ b/src/chrome/content/rules/Students_for_Sensible_Drug_Policy.xml @@ -6,4 +6,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/StudiVZ.xml b/src/chrome/content/rules/StudiVZ.xml index c70d2ecab3c3..3cca7fda53ac 100644 --- a/src/chrome/content/rules/StudiVZ.xml +++ b/src/chrome/content/rules/StudiVZ.xml @@ -1,5 +1,5 @@ - + diff --git a/src/chrome/content/rules/StudiesAbroad.com.xml b/src/chrome/content/rules/StudiesAbroad.com.xml index 826b3d08e6f6..fe9ae45daa95 100644 --- a/src/chrome/content/rules/StudiesAbroad.com.xml +++ b/src/chrome/content/rules/StudiesAbroad.com.xml @@ -5,4 +5,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/StudioPress.com.xml b/src/chrome/content/rules/StudioPress.com.xml index e492676cd18c..e3b66897913a 100644 --- a/src/chrome/content/rules/StudioPress.com.xml +++ b/src/chrome/content/rules/StudioPress.com.xml @@ -6,7 +6,7 @@ - + diff --git a/src/chrome/content/rules/StudyinAustralia.xml b/src/chrome/content/rules/StudyinAustralia.xml index b6b198685b9b..628c945488de 100644 --- a/src/chrome/content/rules/StudyinAustralia.xml +++ b/src/chrome/content/rules/StudyinAustralia.xml @@ -1,7 +1,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/StumbleUpon.xml b/src/chrome/content/rules/StumbleUpon.xml index 72c2dad5b5eb..e87f4899bacf 100644 --- a/src/chrome/content/rules/StumbleUpon.xml +++ b/src/chrome/content/rules/StumbleUpon.xml @@ -26,10 +26,9 @@ - - + + + + + + diff --git a/src/chrome/content/rules/Stunnel.org.xml b/src/chrome/content/rules/Stunnel.org.xml index 12522ee744bc..cecccb442dd7 100644 --- a/src/chrome/content/rules/Stunnel.org.xml +++ b/src/chrome/content/rules/Stunnel.org.xml @@ -4,7 +4,7 @@ - + https://stupid.com/: Too many redirects while Fetch error: http://www.stupid.com/ => https://www.stupid.com/: Too many redirects while fetching 'https://www.stupid.com/' --> - + diff --git a/src/chrome/content/rules/Style.com.xml b/src/chrome/content/rules/Style.com.xml index 1285453a4675..c09f6bd69591 100644 --- a/src/chrome/content/rules/Style.com.xml +++ b/src/chrome/content/rules/Style.com.xml @@ -8,14 +8,14 @@ Fetch error: http://www.style.com/ => https://www.style.com/: (60, 'SSL certific For other Condé Nast coverage, see Conde-Nast.xml. --> - + - + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/SubDownloader.net.xml b/src/chrome/content/rules/SubDownloader.net.xml index 8bf387b44189..adfe34a8d3f7 100644 --- a/src/chrome/content/rules/SubDownloader.net.xml +++ b/src/chrome/content/rules/SubDownloader.net.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Subeta.xml b/src/chrome/content/rules/Subeta.xml index 667d3251c28c..5a1534fd2bd3 100644 --- a/src/chrome/content/rules/Subeta.xml +++ b/src/chrome/content/rules/Subeta.xml @@ -1,13 +1,24 @@ + + + + + + + - - - - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Subimage.xml b/src/chrome/content/rules/Subimage.xml index ab4fe8353494..4ca93ac26168 100644 --- a/src/chrome/content/rules/Subimage.xml +++ b/src/chrome/content/rules/Subimage.xml @@ -12,7 +12,7 @@ - + - + - + + + - + diff --git a/src/chrome/content/rules/Sublime_Text.com.xml b/src/chrome/content/rules/Sublime_Text.com.xml index ff5653307df8..7448e0170351 100644 --- a/src/chrome/content/rules/Sublime_Text.com.xml +++ b/src/chrome/content/rules/Sublime_Text.com.xml @@ -17,7 +17,7 @@ --> - + https://ssl.submissiontec Fetch error: http://www.submissiontechnology.co.uk/ => https://www.submissiontechnology.co.uk/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + - + diff --git a/src/chrome/content/rules/Subrosa.io.xml b/src/chrome/content/rules/Subrosa.io.xml index ae471be34477..c3c7c14e0c44 100644 --- a/src/chrome/content/rules/Subrosa.io.xml +++ b/src/chrome/content/rules/Subrosa.io.xml @@ -6,7 +6,7 @@ Fetch error: http://subrosa.io/ => https://subrosa.io/: (28, 'Connection timed o www.subrosa.io doesn't exist. --> - + diff --git a/src/chrome/content/rules/SubscriptionGenius.com.xml b/src/chrome/content/rules/SubscriptionGenius.com.xml index 13ae3fb2df55..11a5403ae0b2 100644 --- a/src/chrome/content/rules/SubscriptionGenius.com.xml +++ b/src/chrome/content/rules/SubscriptionGenius.com.xml @@ -13,7 +13,7 @@ Fetch error: http://support.subscriptiongenius.com/ => https://support.subscript ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -29,7 +29,7 @@ Fetch error: http://support.subscriptiongenius.com/ => https://support.subscript - + + - - - + + - + - + diff --git a/src/chrome/content/rules/Subway.com.xml b/src/chrome/content/rules/Subway.com.xml index 1a6ff290803f..66471e0bf1ec 100644 --- a/src/chrome/content/rules/Subway.com.xml +++ b/src/chrome/content/rules/Subway.com.xml @@ -15,7 +15,7 @@ Fetch error: http://subway.com/ => https://subway.com/: (51, "SSL: no alternativ * Secured by us --> - + diff --git a/src/chrome/content/rules/SuccessFactors.xml b/src/chrome/content/rules/SuccessFactors.xml index afae2735590f..309b19124cba 100644 --- a/src/chrome/content/rules/SuccessFactors.xml +++ b/src/chrome/content/rules/SuccessFactors.xml @@ -44,4 +44,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Success_Chef.xml b/src/chrome/content/rules/Success_Chef.xml deleted file mode 100644 index 7f54ae2db581..000000000000 --- a/src/chrome/content/rules/Success_Chef.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Suckless.xml b/src/chrome/content/rules/Suckless.xml new file mode 100644 index 000000000000..f2659dbee23a --- /dev/null +++ b/src/chrome/content/rules/Suckless.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Suckup.de.xml b/src/chrome/content/rules/Suckup.de.xml index ab4b83124f11..c4aeb25be3b7 100644 --- a/src/chrome/content/rules/Suckup.de.xml +++ b/src/chrome/content/rules/Suckup.de.xml @@ -6,7 +6,7 @@ - + https://cloudproxy.suc - .sucuri.net --> - + @@ -32,7 +32,7 @@ Non-2xx HTTP code: http://cloudproxy.sucuri.net/ (200) => https://cloudproxy.suc --> - + - + - + - - - \ No newline at end of file + diff --git a/src/chrome/content/rules/Suddeutsche_Zeitung-problematic.xml b/src/chrome/content/rules/Suddeutsche_Zeitung-problematic.xml deleted file mode 100644 index 3e164cccef29..000000000000 --- a/src/chrome/content/rules/Suddeutsche_Zeitung-problematic.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Suddeutsche_Zeitung.xml b/src/chrome/content/rules/Suddeutsche_Zeitung.xml index a9e710a9e416..b23a1b8ab21d 100644 --- a/src/chrome/content/rules/Suddeutsche_Zeitung.xml +++ b/src/chrome/content/rules/Suddeutsche_Zeitung.xml @@ -1,177 +1,61 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - diff --git a/src/chrome/content/rules/Sudo_Room.xml b/src/chrome/content/rules/Sudo_Room.xml index 41109d33ea5c..7d588f9d9cd8 100644 --- a/src/chrome/content/rules/Sudo_Room.xml +++ b/src/chrome/content/rules/Sudo_Room.xml @@ -20,7 +20,7 @@ - + - + diff --git a/src/chrome/content/rules/SuicideGirls.xml b/src/chrome/content/rules/SuicideGirls.xml index acee6b0a9a14..e3e185cffbcf 100644 --- a/src/chrome/content/rules/SuicideGirls.xml +++ b/src/chrome/content/rules/SuicideGirls.xml @@ -4,4 +4,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Suitecrm.com.xml b/src/chrome/content/rules/Suitecrm.com.xml new file mode 100644 index 000000000000..44fda4e0aae3 --- /dev/null +++ b/src/chrome/content/rules/Suitecrm.com.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Suitey.com.xml b/src/chrome/content/rules/Suitey.com.xml index c4aa1cc2ca91..b283888775a9 100644 --- a/src/chrome/content/rules/Suitey.com.xml +++ b/src/chrome/content/rules/Suitey.com.xml @@ -9,7 +9,7 @@ Fetch error: http://www.suitey.com/ => https://www.suitey.com/: (51, "SSL: no al - d1i0b14063qyxc.cloudfront.net --> - + diff --git a/src/chrome/content/rules/Sukimashita.xml b/src/chrome/content/rules/Sukimashita.xml index ef6b9686d6e1..85e433d168d8 100644 --- a/src/chrome/content/rules/Sukimashita.xml +++ b/src/chrome/content/rules/Sukimashita.xml @@ -9,7 +9,6 @@ - + diff --git a/src/chrome/content/rules/SummitPost.xml b/src/chrome/content/rules/SummitPost.xml deleted file mode 100644 index f391dd594bb3..000000000000 --- a/src/chrome/content/rules/SummitPost.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Sumo_Logic.com.xml b/src/chrome/content/rules/Sumo_Logic.com.xml index e8da7c90188f..4f589df87ac3 100644 --- a/src/chrome/content/rules/Sumo_Logic.com.xml +++ b/src/chrome/content/rules/Sumo_Logic.com.xml @@ -1,120 +1,19 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/SunGuard-Higher-Education.xml b/src/chrome/content/rules/SunGuard-Higher-Education.xml index f5c66b59c406..70367b45415b 100644 --- a/src/chrome/content/rules/SunGuard-Higher-Education.xml +++ b/src/chrome/content/rules/SunGuard-Higher-Education.xml @@ -10,7 +10,7 @@ - + https://www.suntimes.com/: (51, "SSL: no al * Secured by us --> - + - + + - + diff --git a/src/chrome/content/rules/SunTrust.xml b/src/chrome/content/rules/SunTrust.xml index 2b3ecc6402e9..bec2d4d0b694 100644 --- a/src/chrome/content/rules/SunTrust.xml +++ b/src/chrome/content/rules/SunTrust.xml @@ -1,9 +1,16 @@ - + + + + + + + + + - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Sunbeltsoftware.com.xml b/src/chrome/content/rules/Sunbeltsoftware.com.xml index ceaad7ecc505..62e0c37f2b19 100644 --- a/src/chrome/content/rules/Sunbeltsoftware.com.xml +++ b/src/chrome/content/rules/Sunbeltsoftware.com.xml @@ -12,7 +12,7 @@ Fetch error: http://sunbeltsoftware.com/ => https://sunbeltsoftware.com/: (60, ' Fetch error: http://www.sunbeltsoftware.com/ => https://www.sunbeltsoftware.com/: (60, 'SSL certificate problem: certificate has expired') --> - + @@ -20,4 +20,4 @@ Fetch error: http://www.sunbeltsoftware.com/ => https://www.sunbeltsoftware.com/ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Sundance_Channel.xml b/src/chrome/content/rules/Sundance_Channel.xml index 98194604f756..c17b9cf6fac6 100644 --- a/src/chrome/content/rules/Sundance_Channel.xml +++ b/src/chrome/content/rules/Sundance_Channel.xml @@ -6,16 +6,16 @@ Fetch error: http://sundancechannel.com/ => https://www.sundancechannel.com/: (7 Disabled by https-everywhere-checker because: Fetch error: http://sundancechannel.com/ => https://www.sundancechannel.com/: (7, 'Failed to connect to www.sundancechannel.com port 443: Connection timed out') --> - + - + + - + diff --git a/src/chrome/content/rules/Sundtek.com.xml b/src/chrome/content/rules/Sundtek.com.xml index 473195c68a56..10601979e39e 100644 --- a/src/chrome/content/rules/Sundtek.com.xml +++ b/src/chrome/content/rules/Sundtek.com.xml @@ -32,7 +32,6 @@ - + diff --git a/src/chrome/content/rules/Sunglass_Warehouse.xml b/src/chrome/content/rules/Sunglass_Warehouse.xml index 0e434156ae47..a316431a283b 100644 --- a/src/chrome/content/rules/Sunglass_Warehouse.xml +++ b/src/chrome/content/rules/Sunglass_Warehouse.xml @@ -10,4 +10,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Sunlight-Foundation.xml b/src/chrome/content/rules/Sunlight-Foundation.xml deleted file mode 100644 index a3119f501640..000000000000 --- a/src/chrome/content/rules/Sunlight-Foundation.xml +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/SunlightFoundation.com.xml b/src/chrome/content/rules/SunlightFoundation.com.xml new file mode 100644 index 000000000000..3d64e4f6dbd6 --- /dev/null +++ b/src/chrome/content/rules/SunlightFoundation.com.xml @@ -0,0 +1,22 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Sunnah.one.xml b/src/chrome/content/rules/Sunnah.one.xml new file mode 100644 index 000000000000..40d750fb915d --- /dev/null +++ b/src/chrome/content/rules/Sunnah.one.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/SunniOnline.us.xml b/src/chrome/content/rules/SunniOnline.us.xml new file mode 100644 index 000000000000..5e42830fe4a4 --- /dev/null +++ b/src/chrome/content/rules/SunniOnline.us.xml @@ -0,0 +1,12 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/SunoSanuo.com.xml b/src/chrome/content/rules/SunoSanuo.com.xml index effe0e963b69..d7e45105f73e 100644 --- a/src/chrome/content/rules/SunoSanuo.com.xml +++ b/src/chrome/content/rules/SunoSanuo.com.xml @@ -18,7 +18,7 @@ Fetch error: http://app.sunosunao.com/ => https://app.sunosunao.com/: (51, "SSL: - www (shows app; mismatched, CN: app.sunosunao.com) --> - + @@ -26,7 +26,6 @@ Fetch error: http://app.sunosunao.com/ => https://app.sunosunao.com/: (51, "SSL: - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Sunrise.xml b/src/chrome/content/rules/Sunrise.xml index 66eebea0070e..34284de59d95 100644 --- a/src/chrome/content/rules/Sunrise.xml +++ b/src/chrome/content/rules/Sunrise.xml @@ -1,14 +1,67 @@ - - - + - + h: http redirect + i: incomplete cert chain + m: certificate mismatch + r: connection refused + s: self-signed certificate + t: timeout on https +--> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + diff --git a/src/chrome/content/rules/Sunrise_Print_Online.xml b/src/chrome/content/rules/Sunrise_Print_Online.xml index 6a55c40c8384..5fa4bf29ef7a 100644 --- a/src/chrome/content/rules/Sunrise_Print_Online.xml +++ b/src/chrome/content/rules/Sunrise_Print_Online.xml @@ -5,7 +5,7 @@ Fetch error: http://sunriseprintonline.com/ => https://sunriseprintonline.com/: Fetch error: http://www.sunriseprintonline.com/ => https://www.sunriseprintonline.com/: (60, 'SSL certificate problem: certificate has expired') --> - + @@ -16,4 +16,4 @@ Fetch error: http://www.sunriseprintonline.com/ => https://www.sunriseprintonlin - \ No newline at end of file + diff --git a/src/chrome/content/rules/Suntec.net.xml b/src/chrome/content/rules/Suntec.net.xml index b6e3ecb62868..f6aa2778942c 100644 --- a/src/chrome/content/rules/Suntec.net.xml +++ b/src/chrome/content/rules/Suntec.net.xml @@ -13,4 +13,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/SupaDupa.xml b/src/chrome/content/rules/SupaDupa.xml index cef004f5249e..b05c16521b3c 100644 --- a/src/chrome/content/rules/SupaDupa.xml +++ b/src/chrome/content/rules/SupaDupa.xml @@ -15,16 +15,17 @@ - + + + - + diff --git a/src/chrome/content/rules/SuperAntiSpyware.xml b/src/chrome/content/rules/SuperAntiSpyware.xml index 725e4701c0b7..4784aec48d0a 100644 --- a/src/chrome/content/rules/SuperAntiSpyware.xml +++ b/src/chrome/content/rules/SuperAntiSpyware.xml @@ -1,12 +1,6 @@ - - - - - - + diff --git a/src/chrome/content/rules/SuperGuarantee.com.xml b/src/chrome/content/rules/SuperGuarantee.com.xml index 86229d5140f4..7fd3f5ad8684 100644 --- a/src/chrome/content/rules/SuperGuarantee.com.xml +++ b/src/chrome/content/rules/SuperGuarantee.com.xml @@ -17,7 +17,7 @@ Fetch error: http://www.superguarantee.com/ => https://www.superguarantee.com/: - Bug from fls.doubleclick.net --> - + @@ -27,7 +27,7 @@ Fetch error: http://www.superguarantee.com/ => https://www.superguarantee.com/: --> - + - + diff --git a/src/chrome/content/rules/SuperMedia.xml b/src/chrome/content/rules/SuperMedia.xml index fc8dbe99c0b1..9b5d6c175ad8 100644 --- a/src/chrome/content/rules/SuperMedia.xml +++ b/src/chrome/content/rules/SuperMedia.xml @@ -8,7 +8,7 @@ - jobs ² ¹ Redirects to http before dexmedia.com - ² Connection refused at redirect destination + ² Connection refused at redirect destination --> diff --git a/src/chrome/content/rules/SuperRepo.org.xml b/src/chrome/content/rules/SuperRepo.org.xml index e89c9012b3a8..ed0946ca4851 100644 --- a/src/chrome/content/rules/SuperRepo.org.xml +++ b/src/chrome/content/rules/SuperRepo.org.xml @@ -4,7 +4,7 @@ - + diff --git a/src/chrome/content/rules/SuperStats.com.xml b/src/chrome/content/rules/SuperStats.com.xml index a1495e4f17b4..715f44b096cc 100644 --- a/src/chrome/content/rules/SuperStats.com.xml +++ b/src/chrome/content/rules/SuperStats.com.xml @@ -23,7 +23,13 @@ - + + + + + + + @@ -32,7 +38,6 @@ - + diff --git a/src/chrome/content/rules/SuperStrands.xml b/src/chrome/content/rules/SuperStrands.xml index edb2a056739d..73cefb1279d8 100644 --- a/src/chrome/content/rules/SuperStrands.xml +++ b/src/chrome/content/rules/SuperStrands.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Super_Pet_USA.com.xml b/src/chrome/content/rules/Super_Pet_USA.com.xml index e2fd99676fab..77822169c05d 100644 --- a/src/chrome/content/rules/Super_Pet_USA.com.xml +++ b/src/chrome/content/rules/Super_Pet_USA.com.xml @@ -13,7 +13,7 @@ - + diff --git a/src/chrome/content/rules/SuperannuationComplaintsTribunal.xml b/src/chrome/content/rules/SuperannuationComplaintsTribunal.xml index 2efb25cab0e3..cb0362a53ed2 100644 --- a/src/chrome/content/rules/SuperannuationComplaintsTribunal.xml +++ b/src/chrome/content/rules/SuperannuationComplaintsTribunal.xml @@ -1,7 +1,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Superblock.net.xml b/src/chrome/content/rules/Superblock.net.xml deleted file mode 100644 index 35d32d2d3714..000000000000 --- a/src/chrome/content/rules/Superblock.net.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Superdrug.xml b/src/chrome/content/rules/Superdrug.xml index 53c7654a4dcc..4bb5dfc1b0d2 100644 --- a/src/chrome/content/rules/Superdrug.xml +++ b/src/chrome/content/rules/Superdrug.xml @@ -26,7 +26,7 @@ Fetch error: http://www.superdrug.com/combined.css => https://www.superdrug.com/ - onlinedoctor.superdrug.com --> - + @@ -69,7 +69,7 @@ Fetch error: http://www.superdrug.com/combined.css => https://www.superdrug.com/ - + - + - + - + diff --git a/src/chrome/content/rules/Superpages.com.xml b/src/chrome/content/rules/Superpages.com.xml index 6c6f8ee0dec8..dcbdfdb2bdb9 100644 --- a/src/chrome/content/rules/Superpages.com.xml +++ b/src/chrome/content/rules/Superpages.com.xml @@ -90,7 +90,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Supplies_for_Dreams.org-falsemixed.xml b/src/chrome/content/rules/Supplies_for_Dreams.org-falsemixed.xml index af6e575300a9..80e1aa907a0c 100644 --- a/src/chrome/content/rules/Supplies_for_Dreams.org-falsemixed.xml +++ b/src/chrome/content/rules/Supplies_for_Dreams.org-falsemixed.xml @@ -5,7 +5,7 @@ - + diff --git a/src/chrome/content/rules/Supplies_for_Dreams.org.xml b/src/chrome/content/rules/Supplies_for_Dreams.org.xml index 32ad7690bf2e..a409840a70b6 100644 --- a/src/chrome/content/rules/Supplies_for_Dreams.org.xml +++ b/src/chrome/content/rules/Supplies_for_Dreams.org.xml @@ -1,4 +1,9 @@ + - + - - + diff --git a/src/chrome/content/rules/Supply_Frame.com.xml b/src/chrome/content/rules/Supply_Frame.com.xml index 7807c1fba304..0e18e7398f81 100644 --- a/src/chrome/content/rules/Supply_Frame.com.xml +++ b/src/chrome/content/rules/Supply_Frame.com.xml @@ -1,6 +1,6 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Sur-ecoute.org.xml b/src/chrome/content/rules/Sur-ecoute.org.xml new file mode 100644 index 000000000000..52ab97043ab6 --- /dev/null +++ b/src/chrome/content/rules/Sur-ecoute.org.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/SureSupport.xml b/src/chrome/content/rules/SureSupport.xml index c1e12d4c7af6..62f1bee5bd35 100644 --- a/src/chrome/content/rules/SureSupport.xml +++ b/src/chrome/content/rules/SureSupport.xml @@ -1,13 +1,13 @@ - + + - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Surfcanyon.com.xml b/src/chrome/content/rules/Surfcanyon.com.xml index a8587a731ff4..9094624503ab 100644 --- a/src/chrome/content/rules/Surfcanyon.com.xml +++ b/src/chrome/content/rules/Surfcanyon.com.xml @@ -1,4 +1,4 @@ - + diff --git a/src/chrome/content/rules/Surfeasy.com.xml b/src/chrome/content/rules/Surfeasy.com.xml index 4b3d7eb7694e..e77b2078a88f 100644 --- a/src/chrome/content/rules/Surfeasy.com.xml +++ b/src/chrome/content/rules/Surfeasy.com.xml @@ -4,7 +4,7 @@ - + diff --git a/src/chrome/content/rules/Surfline.xml b/src/chrome/content/rules/Surfline.xml index b2da66a48022..12702d681513 100644 --- a/src/chrome/content/rules/Surfline.xml +++ b/src/chrome/content/rules/Surfline.xml @@ -51,7 +51,7 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Surge.sh.xml b/src/chrome/content/rules/Surge.sh.xml index ef572b2f1c70..3812ff1f416a 100644 --- a/src/chrome/content/rules/Surge.sh.xml +++ b/src/chrome/content/rules/Surge.sh.xml @@ -1,8 +1,12 @@ - - + + + + + + https://surveillancelaw.org/: (7, 'F Fetch error: http://www.surveillancelaw.org/ => https://www.surveillancelaw.org/: (7, 'Failed to connect to www.surveillancelaw.org port 443: Connection refused') --> - + diff --git a/src/chrome/content/rules/SurveyGizmo.com.xml b/src/chrome/content/rules/SurveyGizmo.com.xml index 478f0ceccc35..1f0ddc0e4242 100644 --- a/src/chrome/content/rules/SurveyGizmo.com.xml +++ b/src/chrome/content/rules/SurveyGizmo.com.xml @@ -1,9 +1,29 @@ - + + + + + + + + + + + + + + + + + + + + + - + diff --git a/src/chrome/content/rules/Surveydaddy.xml b/src/chrome/content/rules/Surveydaddy.xml index 3de50d5d9d89..bb9799e95edd 100644 --- a/src/chrome/content/rules/Surveydaddy.xml +++ b/src/chrome/content/rules/Surveydaddy.xml @@ -6,7 +6,7 @@ Fetch error: http://surveydaddy.com/ => https://surveydaddy.com/: (51, "SSL: no Disabled by https-everywhere-checker because: Fetch error: http://surveydaddy.com/ => https://surveydaddy.com/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/Survive_The_Claire_Perry_Inter.net.xml b/src/chrome/content/rules/Survive_The_Claire_Perry_Inter.net.xml deleted file mode 100644 index 3a004ed53cd3..000000000000 --- a/src/chrome/content/rules/Survive_The_Claire_Perry_Inter.net.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Susliving.xml b/src/chrome/content/rules/Susliving.xml index 8e2c2b18a01b..4d6d232939f0 100644 --- a/src/chrome/content/rules/Susliving.xml +++ b/src/chrome/content/rules/Susliving.xml @@ -11,7 +11,7 @@ Fetch error: http://forum.susliving.org/ => https://forum.susliving.org/: (51, " * Redirects to http; expired 2013-01-27, mismatched, CN: forum.susliving.org --> - + @@ -19,7 +19,6 @@ Fetch error: http://forum.susliving.org/ => https://forum.susliving.org/: (51, " - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Sussan.com.au.xml b/src/chrome/content/rules/Sussan.com.au.xml index 8089535bf57c..abc9726228ac 100644 --- a/src/chrome/content/rules/Sussan.com.au.xml +++ b/src/chrome/content/rules/Sussan.com.au.xml @@ -35,15 +35,13 @@ - + - + - + diff --git a/src/chrome/content/rules/Sustainable-Cleaning.com.xml b/src/chrome/content/rules/Sustainable-Cleaning.com.xml new file mode 100644 index 000000000000..6356b129d85e --- /dev/null +++ b/src/chrome/content/rules/Sustainable-Cleaning.com.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/Svbtle.com.xml b/src/chrome/content/rules/Svbtle.com.xml index 464a23d80067..ef9994ec6d37 100644 --- a/src/chrome/content/rules/Svbtle.com.xml +++ b/src/chrome/content/rules/Svbtle.com.xml @@ -1,16 +1,7 @@ @@ -18,14 +9,17 @@ + + + - - + + + - + - + diff --git a/src/chrome/content/rules/Svenskakyrkan.se.xml b/src/chrome/content/rules/Svenskakyrkan.se.xml index 76f178af36ee..ff9c7f15b8c2 100644 --- a/src/chrome/content/rules/Svenskakyrkan.se.xml +++ b/src/chrome/content/rules/Svenskakyrkan.se.xml @@ -1,7 +1,6 @@ - + - - - + + diff --git a/src/chrome/content/rules/Svenskaspel.se.xml b/src/chrome/content/rules/Svenskaspel.se.xml index 2ecf5253c1ea..665df8e35c87 100644 --- a/src/chrome/content/rules/Svenskaspel.se.xml +++ b/src/chrome/content/rules/Svenskaspel.se.xml @@ -1,5 +1,6 @@ + diff --git a/src/chrome/content/rules/Svtrd.com.xml b/src/chrome/content/rules/Svtrd.com.xml index e68f82031373..d5f03df16572 100644 --- a/src/chrome/content/rules/Svtrd.com.xml +++ b/src/chrome/content/rules/Svtrd.com.xml @@ -4,12 +4,11 @@ Disabled by https-everywhere-checker because: Fetch error: http://s.svtrd.com/ => https://s.svtrd.com/: (6, 'Could not resolve host: s.svtrd.com') --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Sw-KA.de.xml b/src/chrome/content/rules/Sw-KA.de.xml new file mode 100644 index 000000000000..d1a22f7424e1 --- /dev/null +++ b/src/chrome/content/rules/Sw-KA.de.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Swan.sk.xml b/src/chrome/content/rules/Swan.sk.xml index 4d771ffe3d10..962ecb595ae0 100644 --- a/src/chrome/content/rules/Swan.sk.xml +++ b/src/chrome/content/rules/Swan.sk.xml @@ -1,19 +1,23 @@ - - + - - - - + + - - - + diff --git a/src/chrome/content/rules/Swapspace.net.xml b/src/chrome/content/rules/Swapspace.net.xml index f197073e30e1..2de6d3eb497a 100644 --- a/src/chrome/content/rules/Swapspace.net.xml +++ b/src/chrome/content/rules/Swapspace.net.xml @@ -5,7 +5,7 @@ - + - + @@ -22,7 +22,7 @@ Fetch error: http://www.swedbank.nl/ => https://www.swedbank.nl/: (7, 'Failed to - + https://work.sweden.se/ (403) - www.imagebank (self signed) --> - + diff --git a/src/chrome/content/rules/SweetDreamsMiniDonuts.com.xml b/src/chrome/content/rules/SweetDreamsMiniDonuts.com.xml new file mode 100644 index 000000000000..72382da27757 --- /dev/null +++ b/src/chrome/content/rules/SweetDreamsMiniDonuts.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/SweetPepper.org.xml b/src/chrome/content/rules/SweetPepper.org.xml new file mode 100644 index 000000000000..18b8f21249b3 --- /dev/null +++ b/src/chrome/content/rules/SweetPepper.org.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Sweet_and_Sour.xml b/src/chrome/content/rules/Sweet_and_Sour.xml index fd365e804363..dfe3cebc3ee3 100644 --- a/src/chrome/content/rules/Sweet_and_Sour.xml +++ b/src/chrome/content/rules/Sweet_and_Sour.xml @@ -12,7 +12,7 @@ Fetch error: http://sweetandsourstudio.com/ => https://sweetandsourstudio.com/: Fetch error: http://www.sweetandsourstudio.com/ => https://www.sweetandsourstudio.com/: (60, 'SSL certificate problem: certificate has expired') --> - + @@ -20,4 +20,4 @@ Fetch error: http://www.sweetandsourstudio.com/ => https://www.sweetandsourstudi - \ No newline at end of file + diff --git a/src/chrome/content/rules/Sweflix.xml b/src/chrome/content/rules/Sweflix.xml deleted file mode 100644 index ab227fb81f53..000000000000 --- a/src/chrome/content/rules/Sweflix.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/SwetsWise.xml b/src/chrome/content/rules/SwetsWise.xml deleted file mode 100644 index 58682b59db20..000000000000 --- a/src/chrome/content/rules/SwetsWise.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Swift.org.xml b/src/chrome/content/rules/Swift.org.xml index a2de580d997e..2ea44ee5884b 100644 --- a/src/chrome/content/rules/Swift.org.xml +++ b/src/chrome/content/rules/Swift.org.xml @@ -11,7 +11,7 @@ - + - + - + + + + @@ -31,7 +34,6 @@ - + diff --git a/src/chrome/content/rules/Swiss-Federal-Railways.xml b/src/chrome/content/rules/Swiss-Federal-Railways.xml index 2593acf9c891..d4237dd96eae 100644 --- a/src/chrome/content/rules/Swiss-Federal-Railways.xml +++ b/src/chrome/content/rules/Swiss-Federal-Railways.xml @@ -4,13 +4,13 @@ Mismatch: -blog -geschaeftsbericht -unterwegs - + cff.ch -blog -enroute -int-www -rapport-de-gestion - + ffs.ch -blog -inviaggio @@ -19,10 +19,10 @@ Mismatch: Redirect: sbb.ch -fahrplan - + cff.ch -horaire - + ffs.ch -orario --> @@ -41,6 +41,12 @@ Redirect: + + + + + + @@ -60,9 +66,11 @@ Redirect: + + diff --git a/src/chrome/content/rules/Swiss-VA.com.xml b/src/chrome/content/rules/Swiss-VA.com.xml deleted file mode 100644 index 1137d225471b..000000000000 --- a/src/chrome/content/rules/Swiss-VA.com.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Swiss.xml b/src/chrome/content/rules/Swiss.xml index cae677d9f2ce..113c06a65616 100644 --- a/src/chrome/content/rules/Swiss.xml +++ b/src/chrome/content/rules/Swiss.xml @@ -6,17 +6,15 @@ Fetch error: http://booking.swiss.com/ => https://booking.swiss.com/: (51, "SSL: Fetch error: http://mobile.swiss.com/ => https://mobile.swiss.com/: (51, "SSL: no alternative certificate subject name matches target host name 'mobile.swiss.com'") --> - + - - - + diff --git a/src/chrome/content/rules/Swisscom.ch.xml b/src/chrome/content/rules/Swisscom.ch.xml index 49ba7dfc7d2d..a0eb9b08cf59 100644 --- a/src/chrome/content/rules/Swisscom.ch.xml +++ b/src/chrome/content/rules/Swisscom.ch.xml @@ -19,7 +19,6 @@ Fetch error: http://services.snoopy.swisscom.com/ => https://services.snoopy.swi - Bluewin.ch.xml - Bluewin-HostCenter.xml - - Scssstatic.ch.xml Problematic subdomains: swisscom.ch: @@ -40,7 +39,7 @@ Fetch error: http://services.snoopy.swisscom.com/ => https://services.snoopy.swi - web.tvair - tvonline - web.tvonline - + Unknown issuer: - expats @@ -54,14 +53,14 @@ Fetch error: http://services.snoopy.swisscom.com/ => https://services.snoopy.swi - mobileemail - www.mobileemail - www.mafo - + Refused: - brandcenter - documents - ictquiz - quiz365d --> - + @@ -80,7 +79,7 @@ Fetch error: http://services.snoopy.swisscom.com/ => https://services.snoopy.swi - + @@ -97,7 +96,7 @@ Fetch error: http://services.snoopy.swisscom.com/ => https://services.snoopy.swi - + @@ -107,7 +106,7 @@ Fetch error: http://services.snoopy.swisscom.com/ => https://services.snoopy.swi - + @@ -132,7 +131,7 @@ Fetch error: http://services.snoopy.swisscom.com/ => https://services.snoopy.swi - + diff --git a/src/chrome/content/rules/Swissinfo.ch.xml b/src/chrome/content/rules/Swissinfo.ch.xml new file mode 100644 index 000000000000..60205a66518b --- /dev/null +++ b/src/chrome/content/rules/Swissinfo.ch.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Swisstph.ch.xml b/src/chrome/content/rules/Swisstph.ch.xml new file mode 100644 index 000000000000..c50c04b962d5 --- /dev/null +++ b/src/chrome/content/rules/Swisstph.ch.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Switch.ch.xml b/src/chrome/content/rules/Switch.ch.xml index bab3b9d25b92..743b87bbddb2 100644 --- a/src/chrome/content/rules/Switch.ch.xml +++ b/src/chrome/content/rules/Switch.ch.xml @@ -3,30 +3,237 @@ - Switchie.ch.xml - Switchplus.ch.xml + - EduId.ch.xml + Refused: + - cam.switch.ch + - ndt.switch.ch + - cavari.switch.ch + - cavari-test.switch.ch + - landingpage.cert.switch.ch + - spludes.cert.switch.ch + - spluli.cert.switch.ch + - spluma.cert.switch.ch + - splunk.cert.switch.ch + - splunk-test.cert.switch.ch + - spindex1.zh.cert.switch.ch + - splufex.zh.cert.switch.ch + - splufo1.zh.cert.switch.ch + - certsplunk.switch.ch + - chapel.switch.ch + - fl-0-10.unil.cloud.switch.ch + - cvs.switch.ch - Nonfunctional subdomains: + Time out: + - frisal.switch.ch + - mirror.switch.ch + - gitlab.cloud.switch.ch + - cr.gitlab.cloud.switch.ch + - pages.gitlab.cloud.switch.ch + - prometheus.gitlab.cloud.switch.ch + - node.prometheus.gitlab.cloud.switch.ch + - mattermost.cloud.switch.ch + - fl-0-42.unil.cloud.switch.ch + - fl-0-44.unil.cloud.switch.ch + - fl-2-13.unil.cloud.switch.ch + - fl-2-14.unil.cloud.switch.ch + - docker.drive.switch.ch - - mirror (dropped) + Invalid certificate: + - kb.pert.switch.ch + - aai.switch.ch + - metadata.aai.switch.ch + - drive-backup.switch.ch (expired) + - [a01-a20].drive-backup.switch.ch (expired) + - ca.aai.switch.ch + - crl.aai.switch.ch + - webdav-demo.aai.switch.ch + - bresaola.switch.ch + - annotations.cast.switch.ch + - cast-staging.switch.ch + - annotations.cast-test.switch.ch + - api.cast-test.switch.ch + - keystone.cloud.switch.ch + - dashboard.unil.cloud.switch.ch + - fl-0-11.unil.cloud.switch.ch + - os-0.unil.cloud.switch.ch + - comal.switch.ch + - tandikat.switch.ch + - teramac.switch.ch + - teruel.switch.ch + Too many redirects: + - presentation.cast-test.switch.ch --> - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + - - + + - diff --git a/src/chrome/content/rules/Switch.co.xml b/src/chrome/content/rules/Switch.co.xml index 02c1d2cdba0e..58749880ec58 100644 --- a/src/chrome/content/rules/Switch.co.xml +++ b/src/chrome/content/rules/Switch.co.xml @@ -4,13 +4,13 @@ Disabled by https-everywhere-checker because: Fetch error: http://switch.co/ => https://www.switch.co/: (51, "SSL: no alternative certificate subject name matches target host name 'www.switch.co'") --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/SwitchConcepts.xml b/src/chrome/content/rules/SwitchConcepts.xml index fdbf2af59a4c..2d94e517b81b 100644 --- a/src/chrome/content/rules/SwitchConcepts.xml +++ b/src/chrome/content/rules/SwitchConcepts.xml @@ -13,7 +13,7 @@ Fetch error: http://support.switchconcepts.com/ => https://support.switchconcept --> - + - + - + + @@ -27,13 +28,10 @@ Fetch error: http://switchnetworks.com.au/ => https://www.switchnetworks.com.au/ - - + diff --git a/src/chrome/content/rules/Switchboard.lgbt.xml b/src/chrome/content/rules/Switchboard.lgbt.xml new file mode 100644 index 000000000000..e8d1b9de6000 --- /dev/null +++ b/src/chrome/content/rules/Switchboard.lgbt.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Switchplus.ch.xml b/src/chrome/content/rules/Switchplus.ch.xml index 3ee0b9941a5d..cedd5f22bda6 100644 --- a/src/chrome/content/rules/Switchplus.ch.xml +++ b/src/chrome/content/rules/Switchplus.ch.xml @@ -8,7 +8,8 @@ - + + - + - + - + diff --git a/src/chrome/content/rules/Sydney-Tower-Eye.xml b/src/chrome/content/rules/Sydney-Tower-Eye.xml index 0188de06d922..6a5689338f4a 100644 --- a/src/chrome/content/rules/Sydney-Tower-Eye.xml +++ b/src/chrome/content/rules/Sydney-Tower-Eye.xml @@ -7,7 +7,7 @@ Fetch error: http://secure.sydneytowereye.com.au/ => https://secure.sydneytowere For other Merlin Entertainments coverage, see Merlin-Entertainments.xml. --> - + diff --git a/src/chrome/content/rules/SydneysHardRockStory.com.xml b/src/chrome/content/rules/SydneysHardRockStory.com.xml new file mode 100644 index 000000000000..0dda0df99df3 --- /dev/null +++ b/src/chrome/content/rules/SydneysHardRockStory.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Sydostran.se.xml b/src/chrome/content/rules/Sydostran.se.xml index d02ebf58f3ad..c29bfe3387a1 100644 --- a/src/chrome/content/rules/Sydostran.se.xml +++ b/src/chrome/content/rules/Sydostran.se.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://sydostran.se/ => https://www.sydostran.se/: (28, 'Connection timed out after 10001 milliseconds') Fetch error: http://www.sydostran.se/ => https://www.sydostran.se/: (28, 'Connection timed out after 10000 milliseconds') --> - + diff --git a/src/chrome/content/rules/Sydsvenskan.se.xml b/src/chrome/content/rules/Sydsvenskan.se.xml index 8f4276b588ae..e9d97c78ffd6 100644 --- a/src/chrome/content/rules/Sydsvenskan.se.xml +++ b/src/chrome/content/rules/Sydsvenskan.se.xml @@ -25,7 +25,7 @@ - + diff --git a/src/chrome/content/rules/Syllabusshare-mismatches.xml b/src/chrome/content/rules/Syllabusshare-mismatches.xml index 784ffa386142..6c8681c42b6b 100644 --- a/src/chrome/content/rules/Syllabusshare-mismatches.xml +++ b/src/chrome/content/rules/Syllabusshare-mismatches.xml @@ -3,7 +3,7 @@ - + diff --git a/src/chrome/content/rules/Syllabusshare.xml b/src/chrome/content/rules/Syllabusshare.xml index 5dfb8c57ad9c..ef69d9c699ce 100644 --- a/src/chrome/content/rules/Syllabusshare.xml +++ b/src/chrome/content/rules/Syllabusshare.xml @@ -6,11 +6,10 @@ Fetch error: http://secure.syllabushare.com/ => https://secure.syllabushare.com/ Disabled by https-everywhere-checker because: Fetch error: http://secure.syllabushare.com/ => https://secure.syllabushare.com/: (60, 'SSL certificate problem: certificate has expired') --> - + - + diff --git a/src/chrome/content/rules/Sylvan_Company.com.xml b/src/chrome/content/rules/Sylvan_Company.com.xml index d4d7be02850a..b3b21f4a345f 100644 --- a/src/chrome/content/rules/Sylvan_Company.com.xml +++ b/src/chrome/content/rules/Sylvan_Company.com.xml @@ -1,9 +1,3 @@ - diff --git a/src/chrome/content/rules/Symantec.xml b/src/chrome/content/rules/Symantec.xml index 7975c9b7518e..49479219383d 100644 --- a/src/chrome/content/rules/Symantec.xml +++ b/src/chrome/content/rules/Symantec.xml @@ -1,207 +1,165 @@ - - + + + - - - - - - + + + + + + + + + + - - + + + + + + + - + + + - - - - - - - - + + + - - - - - - + - - + + + + + + + - + + + - - - - - + + + - + - - - + + + + - - - - + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + diff --git a/src/chrome/content/rules/Symbolab.com.xml b/src/chrome/content/rules/Symbolab.com.xml index 32ff07ff87ff..16354f1d6e67 100644 --- a/src/chrome/content/rules/Symbolab.com.xml +++ b/src/chrome/content/rules/Symbolab.com.xml @@ -2,9 +2,9 @@ Mixed content: - blog - some images loaded from blogspot.com * - + * secured by us - + Notes: - blog - Cloudflare SSL diff --git a/src/chrome/content/rules/Symfony.com.xml b/src/chrome/content/rules/Symfony.com.xml index 206483ab3c4e..621106457155 100644 --- a/src/chrome/content/rules/Symfony.com.xml +++ b/src/chrome/content/rules/Symfony.com.xml @@ -1,7 +1,6 @@ diff --git a/src/chrome/content/rules/SymlynX.xml b/src/chrome/content/rules/SymlynX.xml index 43e580accbbb..2e38ab20421e 100644 --- a/src/chrome/content/rules/SymlynX.xml +++ b/src/chrome/content/rules/SymlynX.xml @@ -6,15 +6,15 @@ Fetch error: http://symlynx.com/ => https://symlynx.com/: (60, 'SSL certificate Disabled by https-everywhere-checker because: Fetch error: http://symlynx.com/ => https://symlynx.com/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + - - + + + - + diff --git a/src/chrome/content/rules/SymmetricStrength.com.xml b/src/chrome/content/rules/SymmetricStrength.com.xml new file mode 100644 index 000000000000..97719083cf22 --- /dev/null +++ b/src/chrome/content/rules/SymmetricStrength.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Sympa.xml b/src/chrome/content/rules/Sympa.xml index 63d21ee3eec6..135c2db1a9a5 100644 --- a/src/chrome/content/rules/Sympa.xml +++ b/src/chrome/content/rules/Sympa.xml @@ -22,7 +22,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Synacor.xml b/src/chrome/content/rules/Synacor.xml index d66f793face1..f2990bb3a3d2 100644 --- a/src/chrome/content/rules/Synacor.xml +++ b/src/chrome/content/rules/Synacor.xml @@ -17,10 +17,11 @@ --> - + + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Synaptop.com.xml b/src/chrome/content/rules/Synaptop.com.xml deleted file mode 100644 index b3c711f846dd..000000000000 --- a/src/chrome/content/rules/Synaptop.com.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/SyncBoss.xml b/src/chrome/content/rules/SyncBoss.xml deleted file mode 100644 index 4009f7f733cf..000000000000 --- a/src/chrome/content/rules/SyncBoss.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Synch.hu.xml b/src/chrome/content/rules/Synch.hu.xml deleted file mode 100644 index 033c421577cf..000000000000 --- a/src/chrome/content/rules/Synch.hu.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Synchronicer.dk.xml b/src/chrome/content/rules/Synchronicer.dk.xml index cec3bbccccca..9da044c9fe31 100644 --- a/src/chrome/content/rules/Synchronicer.dk.xml +++ b/src/chrome/content/rules/Synchronicer.dk.xml @@ -1,12 +1,9 @@ - - + + - + diff --git a/src/chrome/content/rules/Syncplicity.xml b/src/chrome/content/rules/Syncplicity.xml index 925c889c9e94..c9b21f2d9c87 100644 --- a/src/chrome/content/rules/Syncplicity.xml +++ b/src/chrome/content/rules/Syncplicity.xml @@ -13,6 +13,6 @@ - diff --git a/src/chrome/content/rules/Syncsearch.jp.xml b/src/chrome/content/rules/Syncsearch.jp.xml index 92ecbef211eb..5330ee375178 100644 --- a/src/chrome/content/rules/Syncsearch.jp.xml +++ b/src/chrome/content/rules/Syncsearch.jp.xml @@ -17,7 +17,7 @@ - + https://secure.syndetics.com/: (56, 'S www.syndetics.com: Mismatched --> - + @@ -35,8 +35,7 @@ Fetch error: http://www.syndetics.com/ => https://secure.syndetics.com/: (56, 'S - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Synergist_SCADA.xml b/src/chrome/content/rules/Synergist_SCADA.xml index 966fe7f27e99..379522485ead 100644 --- a/src/chrome/content/rules/Synergist_SCADA.xml +++ b/src/chrome/content/rules/Synergist_SCADA.xml @@ -11,7 +11,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://synergistscada.com/ => https://synergistscada.com/: Too many redirects while fetching 'https://synergistscada.com/' --> - + @@ -22,4 +22,4 @@ Fetch error: http://synergistscada.com/ => https://synergistscada.com/: Too many - \ No newline at end of file + diff --git a/src/chrome/content/rules/Synology.com.tw.xml b/src/chrome/content/rules/Synology.com.tw.xml index 47260bd7c826..b60be5965721 100644 --- a/src/chrome/content/rules/Synology.com.tw.xml +++ b/src/chrome/content/rules/Synology.com.tw.xml @@ -1,5 +1,5 @@ - + diff --git a/src/chrome/content/rules/Synopsys.xml b/src/chrome/content/rules/Synopsys.xml index cb457cee31e3..f93de60474a6 100644 --- a/src/chrome/content/rules/Synopsys.xml +++ b/src/chrome/content/rules/Synopsys.xml @@ -9,11 +9,14 @@ - + + + + - + - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Synthfont.com.xml b/src/chrome/content/rules/Synthfont.com.xml new file mode 100644 index 000000000000..58f4d2d16443 --- /dev/null +++ b/src/chrome/content/rules/Synthfont.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Syracuse_University.xml b/src/chrome/content/rules/Syracuse_University.xml index c50b2d2b00d5..c1a441d5d0ec 100644 --- a/src/chrome/content/rules/Syracuse_University.xml +++ b/src/chrome/content/rules/Syracuse_University.xml @@ -5,4 +5,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Sys4.de.xml b/src/chrome/content/rules/Sys4.de.xml index e1390c9a31ad..fc799bd1f95d 100644 --- a/src/chrome/content/rules/Sys4.de.xml +++ b/src/chrome/content/rules/Sys4.de.xml @@ -3,28 +3,46 @@ - Automx.org.xml - - Problematic hosts in *sys4.de: - - - blog * - - * Mismatched + Cert expired: + - bravo.sys4.de + - mon.sys4.de + - secmail.sys4.de + + Cert mismatch: + - golf.sys4.de + - mike.sys4.de + - romeo.sys4.de + - stats.sys4.de + + Chain issues: + - download.sys4.de + - files.sys4.de + - foxtrot.sys4.de + - ml.oss.sys4.de + - ml.srv.sys4.de + - ns-v.sys4.de --> + - - - - - - + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/SysAid.com.xml b/src/chrome/content/rules/SysAid.com.xml index 121bc50c21e8..7ab9de1deae8 100644 --- a/src/chrome/content/rules/SysAid.com.xml +++ b/src/chrome/content/rules/SysAid.com.xml @@ -16,7 +16,7 @@ --> - + - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/SysWard.com.xml b/src/chrome/content/rules/SysWard.com.xml index 8d211edb1cd2..68b322d06f59 100644 --- a/src/chrome/content/rules/SysWard.com.xml +++ b/src/chrome/content/rules/SysWard.com.xml @@ -9,7 +9,7 @@ - + - - - - - - - diff --git a/src/chrome/content/rules/Sysmex.com.xml b/src/chrome/content/rules/Sysmex.com.xml index e80e60b2059a..78a69bb97cbe 100644 --- a/src/chrome/content/rules/Sysmex.com.xml +++ b/src/chrome/content/rules/Sysmex.com.xml @@ -10,7 +10,7 @@ Fetch error: http://www.sysmex.com/ => https://www.sysmex.com/: (60, 'SSL certif - www.sysmex.com --> - + diff --git a/src/chrome/content/rules/Sysprofile.de.xml b/src/chrome/content/rules/Sysprofile.de.xml new file mode 100644 index 000000000000..189517e156de --- /dev/null +++ b/src/chrome/content/rules/Sysprofile.de.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/SystemIntegra.ru.xml b/src/chrome/content/rules/SystemIntegra.ru.xml index d4d6b1c32bca..ccad3aca7a73 100644 --- a/src/chrome/content/rules/SystemIntegra.ru.xml +++ b/src/chrome/content/rules/SystemIntegra.ru.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/SystemSensor.ca.xml b/src/chrome/content/rules/SystemSensor.ca.xml new file mode 100644 index 000000000000..9926bebb9fbb --- /dev/null +++ b/src/chrome/content/rules/SystemSensor.ca.xml @@ -0,0 +1,16 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/System_Center_Advisor.com.xml b/src/chrome/content/rules/System_Center_Advisor.com.xml index c6cdc81bf3ee..669c0021c7ea 100644 --- a/src/chrome/content/rules/System_Center_Advisor.com.xml +++ b/src/chrome/content/rules/System_Center_Advisor.com.xml @@ -18,25 +18,22 @@ Fetch error: http://systemcenteradvisor.net/ => https://systemcenteradvisor.net/ - (www.)systemcenteradvisor.net --> - + - - - - + + + + + - + - - - \ No newline at end of file + diff --git a/src/chrome/content/rules/Systemausfall.org.xml b/src/chrome/content/rules/Systemausfall.org.xml deleted file mode 100644 index 46d71c43adf7..000000000000 --- a/src/chrome/content/rules/Systemausfall.org.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Systemli.org.xml b/src/chrome/content/rules/Systemli.org.xml deleted file mode 100644 index 50d453f5f543..000000000000 --- a/src/chrome/content/rules/Systemli.org.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Systemspace.network.xml b/src/chrome/content/rules/Systemspace.network.xml new file mode 100644 index 000000000000..12e90cc1921b --- /dev/null +++ b/src/chrome/content/rules/Systemspace.network.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Szm.com.xml b/src/chrome/content/rules/Szm.com.xml deleted file mode 100644 index 62fc8d326d8b..000000000000 --- a/src/chrome/content/rules/Szm.com.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/T-Engine.org.xml b/src/chrome/content/rules/T-Engine.org.xml index 99ae1f3abd99..6d226de52324 100644 --- a/src/chrome/content/rules/T-Engine.org.xml +++ b/src/chrome/content/rules/T-Engine.org.xml @@ -19,7 +19,7 @@ Fetch error: http://www.t-engine.org/ => https://www.t-engine.org/: (60, 'SSL ce ** Secured by us --> - + diff --git a/src/chrome/content/rules/T-Mobile.co.uk.xml b/src/chrome/content/rules/T-Mobile.co.uk.xml deleted file mode 100644 index f806bd9af3f7..000000000000 --- a/src/chrome/content/rules/T-Mobile.co.uk.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/T-Mobile.com-falsemixed.xml b/src/chrome/content/rules/T-Mobile.com-falsemixed.xml index 929dd34743fb..860a7d6973ba 100644 --- a/src/chrome/content/rules/T-Mobile.com-falsemixed.xml +++ b/src/chrome/content/rules/T-Mobile.com-falsemixed.xml @@ -10,7 +10,7 @@ - + - - + + https://tnation.t-nation.com/: (51, * Secured by us --> - + @@ -41,7 +41,7 @@ Fetch error: http://tnation.t-nation.com/ => https://tnation.t-nation.com/: (51, - + https://ln1-g003.intellitxt.com/: (6, 'Could not resolve host: ln1-g003.intellitxt.com') -Fetch error: http://toi.ivwbox.de/ => https://toi-ssl.ivwbox.de/: (6, 'Could not resolve host: toi-ssl.ivwbox.de') - For other Deutsche Telekom coverage, see Deutsche_Telekom.xml. - - CDN buckets: - - - toi.ivwbox.de - - toi-ssl.ivwbox.de - - - telekom.tipico.com - - - sportwetten - - Nonfunctional domains: - - img.toi.de * - - - t-online.de subdomains: - - - (www.) * - - augenblicke * - - bilder * - - downloads * - - dsl-und-dienste * - - einkaufswelt * - - eltern * - - erotik * - - gewinnspiele * - - handy1 * - - hilfe * - - hilfe-und-service * - - horoskop (prints "it works!"; mismatched, CN: www.viversum.de) - - kids * - - lifestyle * - - nachrichten * - - iss * - - partnerfragmente2010 * - - routenplaner ** - - service * - - sportwetten (redirects to http; mismatched, CN: *.tipico.com) - - stats * - - themen ** - - top-themen * - - unterhaltung * + - augenblicke * + - downloads * + - dsl-und-dienste * + - einkaufswelt * + - eltern * + - handy1 * + - hilfe-und-service * + - horoskop *** + - kids * + - lifestyle * + - mediencenter ** + - nachrichten * + - partnerfragmente2010 * + - service * + - sportwetten * + - top-themen * + - unterhaltung * + - wiga **** * Refused - ** Shows suche; mismatched, CN: suche.t-online.de - - - Problematic subdomains: - - - freemail * - - sportdaten * - - * Works; mismatched, CN: webservice.fussball.de - - - Partially covered subdomains: - - - rezepte ($ redirects to http) - - - Fully covered subdomains: - - - im.banner - - header.cdb - - email - - fssecure - - mediencenter - - stayfriends - - suche - - tbx - - wiga - - - Mixed web bug on suche from stats - - Mixed images on suche from bilder - + ** Timeout + *** Unable to get local issuer certificate + **** Non-2xx HTTP code --> - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/T-Shirt_Mojo.xml b/src/chrome/content/rules/T-Shirt_Mojo.xml deleted file mode 100644 index 2c4a40ae7984..000000000000 --- a/src/chrome/content/rules/T-Shirt_Mojo.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/T3.io.xml b/src/chrome/content/rules/T3.io.xml index 17bf69c1905b..e232492b4712 100644 --- a/src/chrome/content/rules/T3.io.xml +++ b/src/chrome/content/rules/T3.io.xml @@ -10,7 +10,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://t3.io/ => https://t3.io/: (60, 'SSL certificate problem: self signed certificate') --> - + @@ -21,4 +21,4 @@ Fetch error: http://t3.io/ => https://t3.io/: (60, 'SSL certificate problem: sel - \ No newline at end of file + diff --git a/src/chrome/content/rules/T3Blog.com.xml b/src/chrome/content/rules/T3Blog.com.xml deleted file mode 100644 index 69f1f948df0f..000000000000 --- a/src/chrome/content/rules/T3Blog.com.xml +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/T411.xml b/src/chrome/content/rules/T411.xml deleted file mode 100644 index 1382b7d41a75..000000000000 --- a/src/chrome/content/rules/T411.xml +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/TACAR.org.xml b/src/chrome/content/rules/TACAR.org.xml index f94d5fc670b2..3dfe444fdc83 100644 --- a/src/chrome/content/rules/TACAR.org.xml +++ b/src/chrome/content/rules/TACAR.org.xml @@ -6,7 +6,7 @@ - tacar.org - www.tacar.org - + --> diff --git a/src/chrome/content/rules/TAG24.de.xml b/src/chrome/content/rules/TAG24.de.xml new file mode 100644 index 000000000000..4858da2bcebc --- /dev/null +++ b/src/chrome/content/rules/TAG24.de.xml @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/TAU.ac.il.xml b/src/chrome/content/rules/TAU.ac.il.xml index 516e9be7cd95..1add39342d50 100644 --- a/src/chrome/content/rules/TAU.ac.il.xml +++ b/src/chrome/content/rules/TAU.ac.il.xml @@ -29,13 +29,16 @@ --> - + + + + + - + diff --git a/src/chrome/content/rules/TCCA.info.xml b/src/chrome/content/rules/TCCA.info.xml new file mode 100644 index 000000000000..b63d83999555 --- /dev/null +++ b/src/chrome/content/rules/TCCA.info.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/TCD.ie-problematic.xml b/src/chrome/content/rules/TCD.ie-problematic.xml index 40917815a125..33a0dfae933e 100644 --- a/src/chrome/content/rules/TCD.ie-problematic.xml +++ b/src/chrome/content/rules/TCD.ie-problematic.xml @@ -10,7 +10,6 @@ - + diff --git a/src/chrome/content/rules/TCF.org.xml b/src/chrome/content/rules/TCF.org.xml deleted file mode 100644 index 4fad72b42293..000000000000 --- a/src/chrome/content/rules/TCF.org.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/TCF_MailVault.info.xml b/src/chrome/content/rules/TCF_MailVault.info.xml index 4433ef34e6bf..76dcce63ef17 100644 --- a/src/chrome/content/rules/TCF_MailVault.info.xml +++ b/src/chrome/content/rules/TCF_MailVault.info.xml @@ -1,7 +1,3 @@ - diff --git a/src/chrome/content/rules/TCPA_Compliance.us.xml b/src/chrome/content/rules/TCPA_Compliance.us.xml deleted file mode 100644 index ea52f2d75771..000000000000 --- a/src/chrome/content/rules/TCPA_Compliance.us.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/TCPalm.com.xml b/src/chrome/content/rules/TCPalm.com.xml index 6bc94e4d4447..104554ee28c3 100644 --- a/src/chrome/content/rules/TCPalm.com.xml +++ b/src/chrome/content/rules/TCPalm.com.xml @@ -49,10 +49,11 @@ Fetch error: http://tcpalm.com/ => https://www.tcpalm.com/: (51, "SSL: no altern * → akamai --> - + - + + @@ -68,7 +69,6 @@ Fetch error: http://tcpalm.com/ => https://www.tcpalm.com/: (51, "SSL: no altern - + diff --git a/src/chrome/content/rules/TC_img.net.xml b/src/chrome/content/rules/TC_img.net.xml deleted file mode 100644 index 8ac450e4103a..000000000000 --- a/src/chrome/content/rules/TC_img.net.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/TDBank.xml b/src/chrome/content/rules/TDBank.xml index d67ca95f600a..b6493bcaeeaf 100644 --- a/src/chrome/content/rules/TDBank.xml +++ b/src/chrome/content/rules/TDBank.xml @@ -2,4 +2,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/TDC.dk.xml b/src/chrome/content/rules/TDC.dk.xml index 65c684ffeed7..45585d8606cc 100644 --- a/src/chrome/content/rules/TDC.dk.xml +++ b/src/chrome/content/rules/TDC.dk.xml @@ -15,7 +15,6 @@ Fetch error: http://www.tdc-wholesale.com/ => https://wholesale.tdc.dk/nordic/: - C.dk.xml - TDC.no.xml - - TDC_online.se.xml - TDC_Service_Online.com.xml @@ -49,7 +48,7 @@ Fetch error: http://www.tdc-wholesale.com/ => https://wholesale.tdc.dk/nordic/: ² Secured by us <= complete coverage --> - + diff --git a/src/chrome/content/rules/TDC.no.xml b/src/chrome/content/rules/TDC.no.xml index c9c02beaf582..c20ba2aef60e 100644 --- a/src/chrome/content/rules/TDC.no.xml +++ b/src/chrome/content/rules/TDC.no.xml @@ -19,7 +19,7 @@ Fetch error: http://henvis.tdc.no/ => https://henvis.tdc.no/: (28, 'Connection t * Dropped --> - + diff --git a/src/chrome/content/rules/TDC_online.se.xml b/src/chrome/content/rules/TDC_online.se.xml deleted file mode 100644 index 8e7e7974d4f7..000000000000 --- a/src/chrome/content/rules/TDC_online.se.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/TDF-Telekom.fr.xml b/src/chrome/content/rules/TDF-Telekom.fr.xml index 566f8a6d9f24..6420c7f7100f 100644 --- a/src/chrome/content/rules/TDF-Telekom.fr.xml +++ b/src/chrome/content/rules/TDF-Telekom.fr.xml @@ -6,7 +6,7 @@ - + - + diff --git a/src/chrome/content/rules/TDS.net.xml b/src/chrome/content/rules/TDS.net.xml index c9ffd7f084cd..637bd10307f2 100644 --- a/src/chrome/content/rules/TDS.net.xml +++ b/src/chrome/content/rules/TDS.net.xml @@ -27,4 +27,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/TEAC.xml b/src/chrome/content/rules/TEAC.xml index 858954c55784..7747484a7d4b 100644 --- a/src/chrome/content/rules/TEAC.xml +++ b/src/chrome/content/rules/TEAC.xml @@ -10,7 +10,7 @@ Fetch error: http://teac.co.jp/ => https://teac.co.jp/: (60, 'SSL certificate pr Fetch error: http://www.teac.co.jp/ => https://teac.co.jp/: (60, 'SSL certificate problem: unable to get local issuer certificate') Fetch error: http://shop.teac.com/ => https://shop.teac.com/: (28, 'Connection timed out after 10000 milliseconds') --> - + @@ -20,6 +20,6 @@ Fetch error: http://shop.teac.com/ => https://shop.teac.com/: (28, 'Connection t - + diff --git a/src/chrome/content/rules/TEHTRI-Security.com.xml b/src/chrome/content/rules/TEHTRI-Security.com.xml index 4ff24b4aff62..46d07a547a1f 100644 --- a/src/chrome/content/rules/TEHTRI-Security.com.xml +++ b/src/chrome/content/rules/TEHTRI-Security.com.xml @@ -18,7 +18,7 @@ Fetch error: http://tehtri-security.com/ => https://tehtri-security.com/: (6, 'C platform should be removed with Ffx 24. --> - + @@ -26,4 +26,4 @@ Fetch error: http://tehtri-security.com/ => https://tehtri-security.com/: (6, 'C - \ No newline at end of file + diff --git a/src/chrome/content/rules/TFAW.com.xml b/src/chrome/content/rules/TFAW.com.xml new file mode 100644 index 000000000000..e3a1dab4600a --- /dev/null +++ b/src/chrome/content/rules/TFAW.com.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/TH-Mittelhessen.de.xml b/src/chrome/content/rules/TH-Mittelhessen.de.xml index fd02398678f6..68f38d7fb04f 100644 --- a/src/chrome/content/rules/TH-Mittelhessen.de.xml +++ b/src/chrome/content/rules/TH-Mittelhessen.de.xml @@ -21,7 +21,7 @@ Fetch error: http://alumni.th-mittelhessen.de/ => https://alumni.th-mittelhessen * Secured by us --> - + diff --git a/src/chrome/content/rules/THC.xml b/src/chrome/content/rules/THC.xml deleted file mode 100644 index 11701e4b6b18..000000000000 --- a/src/chrome/content/rules/THC.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/THM.de.xml b/src/chrome/content/rules/THM.de.xml index d31dca3787ed..d869ffe22c02 100644 --- a/src/chrome/content/rules/THM.de.xml +++ b/src/chrome/content/rules/THM.de.xml @@ -68,7 +68,7 @@ Fetch error: http://pharus.thm.de/ => https://pharus.thm.de/: (6, 'Could not res ² Unsecurable <= refused --> - + diff --git a/src/chrome/content/rules/THR.com.xml b/src/chrome/content/rules/THR.com.xml index 8d87ba8227e8..a1f80a8ca659 100644 --- a/src/chrome/content/rules/THR.com.xml +++ b/src/chrome/content/rules/THR.com.xml @@ -21,7 +21,7 @@ Fetch error: http://www.thr.com/ => https://www.hollywoodreporter.com/: Too many ² Secured by us --> - + @@ -30,7 +30,7 @@ Fetch error: http://www.thr.com/ => https://www.hollywoodreporter.com/: Too many - + diff --git a/src/chrome/content/rules/THW.de.xml b/src/chrome/content/rules/THW.de.xml new file mode 100644 index 000000000000..9916aa042344 --- /dev/null +++ b/src/chrome/content/rules/THW.de.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/TI.com-falsemixed.xml b/src/chrome/content/rules/TI.com-falsemixed.xml deleted file mode 100644 index bb81d11e8cf5..000000000000 --- a/src/chrome/content/rules/TI.com-falsemixed.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/TIBCO.com.xml b/src/chrome/content/rules/TIBCO.com.xml index 09b4c1a444f7..5d1eabad7d68 100644 --- a/src/chrome/content/rules/TIBCO.com.xml +++ b/src/chrome/content/rules/TIBCO.com.xml @@ -19,7 +19,10 @@ --> - + + + + - + @@ -15,4 +15,4 @@ Fetch error: http://www.ticketsage.com/ => https://www.ticketsage.com/: (60, 'SS - \ No newline at end of file + diff --git a/src/chrome/content/rules/TIME.com.xml b/src/chrome/content/rules/TIME.com.xml index 79dc58bce235..f316a87e7134 100644 --- a/src/chrome/content/rules/TIME.com.xml +++ b/src/chrome/content/rules/TIME.com.xml @@ -6,13 +6,11 @@ - 100photos.time.com SSL peer certificate was not OK: - - www.time.com - 10questions.time.com - motto.time.com - thepage.time.com Secure connection redirects to plaintext: - - time.com - business.time.com - entertainment.time.com - healthland.time.com @@ -33,14 +31,20 @@ - life.time.com - lightbox.time.com + Active mixed content: + - content.time.com + + + --> + + - diff --git a/src/chrome/content/rules/TIP.net.au.xml b/src/chrome/content/rules/TIP.net.au.xml index 69b898f79c76..e3654cdbd1b7 100644 --- a/src/chrome/content/rules/TIP.net.au.xml +++ b/src/chrome/content/rules/TIP.net.au.xml @@ -34,7 +34,7 @@ - pide.tip.net.au - webmail.tip.net.au --> - + diff --git a/src/chrome/content/rules/TKK.fi.xml b/src/chrome/content/rules/TKK.fi.xml index e6294f127dd3..5e2499164644 100644 --- a/src/chrome/content/rules/TKK.fi.xml +++ b/src/chrome/content/rules/TKK.fi.xml @@ -6,7 +6,7 @@ * Server sends no certificate chain, see https://whatsmychaincert.com --> - + diff --git a/src/chrome/content/rules/TLHP.cf.xml b/src/chrome/content/rules/TLHP.cf.xml deleted file mode 100644 index 3b21e36a95c8..000000000000 --- a/src/chrome/content/rules/TLHP.cf.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/TLS.so.xml b/src/chrome/content/rules/TLS.so.xml deleted file mode 100644 index 08e6f621ac91..000000000000 --- a/src/chrome/content/rules/TLS.so.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/TMBC.gov.uk.xml b/src/chrome/content/rules/TMBC.gov.uk.xml index 08d29af3668f..faac61e3fa92 100644 --- a/src/chrome/content/rules/TMBC.gov.uk.xml +++ b/src/chrome/content/rules/TMBC.gov.uk.xml @@ -22,7 +22,7 @@ Fetch error: http://publicaccess2.tmbc.gov.uk/ => https://publicaccess2.tmbc.gov - tmbc.gov.uk --> - + @@ -38,7 +38,7 @@ Fetch error: http://publicaccess2.tmbc.gov.uk/ => https://publicaccess2.tmbc.gov - + - + - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/TMP.xml b/src/chrome/content/rules/TMP.xml index 1a1b5a035b45..5b245395d05e 100644 --- a/src/chrome/content/rules/TMP.xml +++ b/src/chrome/content/rules/TMP.xml @@ -23,13 +23,13 @@ --> - + + - + diff --git a/src/chrome/content/rules/TMPwebeng.com.xml b/src/chrome/content/rules/TMPwebeng.com.xml index ff1d13c55a51..afc48bae2f64 100644 --- a/src/chrome/content/rules/TMPwebeng.com.xml +++ b/src/chrome/content/rules/TMPwebeng.com.xml @@ -18,10 +18,12 @@ Fetch error: http://tmpwebeng.com/ => https://secure.tmpwebeng.com/: (7, 'Failed - services --> - + - + + + @@ -30,7 +32,6 @@ Fetch error: http://tmpwebeng.com/ => https://secure.tmpwebeng.com/: (7, 'Failed - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/TMT.org.xml b/src/chrome/content/rules/TMT.org.xml new file mode 100644 index 000000000000..572ac8cab356 --- /dev/null +++ b/src/chrome/content/rules/TMT.org.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/TMZ.com.xml b/src/chrome/content/rules/TMZ.com.xml index e3c150a7f5a6..0f30a9b4ee4f 100644 --- a/src/chrome/content/rules/TMZ.com.xml +++ b/src/chrome/content/rules/TMZ.com.xml @@ -1,70 +1,26 @@ - - - - - - - + - + + @@ -72,13 +28,6 @@ - - - - - diff --git a/src/chrome/content/rules/TMtm.ru.xml b/src/chrome/content/rules/TMtm.ru.xml index d2f8872f07df..16677f03f3ad 100644 --- a/src/chrome/content/rules/TMtm.ru.xml +++ b/src/chrome/content/rules/TMtm.ru.xml @@ -5,7 +5,6 @@ - Freelansim.ru.xml - HabraCDN.net.xml - Habrahabr.ru.xml - - Habrastorage.org.xml - Hsto.org.xml - Hstor.org.xml - megamozg.ru.xml diff --git a/src/chrome/content/rules/TNNet.xml b/src/chrome/content/rules/TNNet.xml index d2bfd607975e..8008a16ae58e 100644 --- a/src/chrome/content/rules/TNNet.xml +++ b/src/chrome/content/rules/TNNet.xml @@ -4,15 +4,18 @@ --> - + + + + + - + - + diff --git a/src/chrome/content/rules/TNS-Gallup.xml b/src/chrome/content/rules/TNS-Gallup.xml index 46bb63ea4f55..a3cbf7fd4673 100644 --- a/src/chrome/content/rules/TNS-Gallup.xml +++ b/src/chrome/content/rules/TNS-Gallup.xml @@ -15,12 +15,12 @@ Fetch error: http://statistik-gallup.net/ => https://statistik-gallup.net/: (7, * Refused --> - + - + diff --git a/src/chrome/content/rules/TNS-Global.xml b/src/chrome/content/rules/TNS-Global.xml index 311de7927412..ecb8b50b1b93 100644 --- a/src/chrome/content/rules/TNS-Global.xml +++ b/src/chrome/content/rules/TNS-Global.xml @@ -1,53 +1,71 @@ - + + - - - - + + - - - - - - - + + + + + + - + - - - - + + + diff --git a/src/chrome/content/rules/TNS-Info.xml b/src/chrome/content/rules/TNS-Info.xml index cd77611a55ba..d67a518979b1 100644 --- a/src/chrome/content/rules/TNS-Info.xml +++ b/src/chrome/content/rules/TNS-Info.xml @@ -1,17 +1,24 @@ + - - - - + + - - - - + diff --git a/src/chrome/content/rules/TNS-Sifo.xml b/src/chrome/content/rules/TNS-Sifo.xml deleted file mode 100644 index bc0f42951fd7..000000000000 --- a/src/chrome/content/rules/TNS-Sifo.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/TOG.ie.xml b/src/chrome/content/rules/TOG.ie.xml index 454ee45164d4..0b1bc3a4f512 100644 --- a/src/chrome/content/rules/TOG.ie.xml +++ b/src/chrome/content/rules/TOG.ie.xml @@ -14,7 +14,7 @@ - + diff --git a/src/chrome/content/rules/TOPlist.cz-falsemixed.xml b/src/chrome/content/rules/TOPlist.cz-falsemixed.xml deleted file mode 100644 index 1f49587f9881..000000000000 --- a/src/chrome/content/rules/TOPlist.cz-falsemixed.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/TOPlist.cz.xml b/src/chrome/content/rules/TOPlist.cz.xml deleted file mode 100644 index 587d0a44f8f6..000000000000 --- a/src/chrome/content/rules/TOPlist.cz.xml +++ /dev/null @@ -1,70 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/TPC.com.xml b/src/chrome/content/rules/TPC.com.xml index 9197086c08ba..45347b58a4b1 100644 --- a/src/chrome/content/rules/TPC.com.xml +++ b/src/chrome/content/rules/TPC.com.xml @@ -4,7 +4,7 @@ - + - - - - - - - diff --git a/src/chrome/content/rules/TPG-Capital.xml b/src/chrome/content/rules/TPG-Capital.xml index dc4970baf67e..f0b60d0f98a4 100644 --- a/src/chrome/content/rules/TPG-Capital.xml +++ b/src/chrome/content/rules/TPG-Capital.xml @@ -24,7 +24,8 @@ Fetch error: http://neimanmarcus.com/ => https://www.neimanmarcus.com/: None - + + diff --git a/src/chrome/content/rules/TPG.com.xml b/src/chrome/content/rules/TPG.com.xml new file mode 100644 index 000000000000..6f737acbacda --- /dev/null +++ b/src/chrome/content/rules/TPG.com.xml @@ -0,0 +1,14 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/TPTQ-Arabic.com.xml b/src/chrome/content/rules/TPTQ-Arabic.com.xml index 359416f92d7e..9921c5892656 100644 --- a/src/chrome/content/rules/TPTQ-Arabic.com.xml +++ b/src/chrome/content/rules/TPTQ-Arabic.com.xml @@ -8,7 +8,7 @@ - + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/TRUSTe.com.xml b/src/chrome/content/rules/TRUSTe.com.xml index de3ad57f76d6..accf47f693fe 100644 --- a/src/chrome/content/rules/TRUSTe.com.xml +++ b/src/chrome/content/rules/TRUSTe.com.xml @@ -1,72 +1,29 @@ - - - - + - - - - - - - - - - - - - - - - - - - - - + diff --git a/src/chrome/content/rules/TRiBot.org.xml b/src/chrome/content/rules/TRiBot.org.xml index f8014202a549..833ece434812 100644 --- a/src/chrome/content/rules/TRiBot.org.xml +++ b/src/chrome/content/rules/TRiBot.org.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/TSDD.org.xml b/src/chrome/content/rules/TSDD.org.xml deleted file mode 100644 index ab848cc2633c..000000000000 --- a/src/chrome/content/rules/TSDD.org.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/TSHA_online.org.xml b/src/chrome/content/rules/TSHA_online.org.xml index 649fee76675f..d6ac73450dfd 100644 --- a/src/chrome/content/rules/TSHA_online.org.xml +++ b/src/chrome/content/rules/TSHA_online.org.xml @@ -13,4 +13,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/TSMC.com.xml b/src/chrome/content/rules/TSMC.com.xml index 625ac1c1ccfa..45c00b63b418 100644 --- a/src/chrome/content/rules/TSMC.com.xml +++ b/src/chrome/content/rules/TSMC.com.xml @@ -8,10 +8,11 @@ --> - + + + - + diff --git a/src/chrome/content/rules/TSO.co.uk.xml b/src/chrome/content/rules/TSO.co.uk.xml index 9db3323d0305..8fcd851116de 100644 --- a/src/chrome/content/rules/TSO.co.uk.xml +++ b/src/chrome/content/rules/TSO.co.uk.xml @@ -3,20 +3,16 @@ Disabled by https-everywhere-checker because: Non-2xx HTTP code: http://tso.co.uk/ (200) => https://www.tso.co.uk/ (503) - Other TSO rulesets: - - - TSO_Shop.xml - - Problematic subdomains: - ^ (cert only matches www) --> - + - + + @@ -25,7 +21,6 @@ Non-2xx HTTP code: http://tso.co.uk/ (200) => https://www.tso.co.uk/ (503) - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/TSOshop.co.uk.xml b/src/chrome/content/rules/TSOshop.co.uk.xml index 05a202b6be9b..c39c6c2801e4 100644 --- a/src/chrome/content/rules/TSOshop.co.uk.xml +++ b/src/chrome/content/rules/TSOshop.co.uk.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/TSUTAYA.co.jp.xml b/src/chrome/content/rules/TSUTAYA.co.jp.xml new file mode 100644 index 000000000000..5fb454e51506 --- /dev/null +++ b/src/chrome/content/rules/TSUTAYA.co.jp.xml @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/TShare.to.xml b/src/chrome/content/rules/TShare.to.xml deleted file mode 100644 index bb7570dee30b..000000000000 --- a/src/chrome/content/rules/TShare.to.xml +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/TT.se.xml b/src/chrome/content/rules/TT.se.xml index a0b56b1d7b63..271ce4133b44 100644 --- a/src/chrome/content/rules/TT.se.xml +++ b/src/chrome/content/rules/TT.se.xml @@ -1,7 +1,20 @@ + + - - - - - + + + + + + + + + + + diff --git a/src/chrome/content/rules/TU-Chemnitz.de.xml b/src/chrome/content/rules/TU-Chemnitz.de.xml index a19c73c747bf..507a69a3c7d7 100644 --- a/src/chrome/content/rules/TU-Chemnitz.de.xml +++ b/src/chrome/content/rules/TU-Chemnitz.de.xml @@ -22,13 +22,14 @@ - + + + - + diff --git a/src/chrome/content/rules/TU-Darmstadt.de.xml b/src/chrome/content/rules/TU-Darmstadt.de.xml index b1ac6c7d59a5..62b1b9a20906 100644 --- a/src/chrome/content/rules/TU-Darmstadt.de.xml +++ b/src/chrome/content/rules/TU-Darmstadt.de.xml @@ -1,46 +1,285 @@ - - - - - - - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + diff --git a/src/chrome/content/rules/TU-I-TAM.xml b/src/chrome/content/rules/TU-I-TAM.xml index b5fc934aaeb2..e3a9a1f2f956 100644 --- a/src/chrome/content/rules/TU-I-TAM.xml +++ b/src/chrome/content/rules/TU-I-TAM.xml @@ -5,12 +5,12 @@ Fetch error: http://tuitam.pl/ => https://tuitam.pl/: (60, 'SSL certificate prob Fetch error: http://www.tuitam.pl/ => https://www.tuitam.pl/: (60, 'SSL certificate problem: certificate has expired') --> - + - + diff --git a/src/chrome/content/rules/TU-Ilmenau.de.xml b/src/chrome/content/rules/TU-Ilmenau.de.xml index 26edb00c889d..a5568d363f58 100644 --- a/src/chrome/content/rules/TU-Ilmenau.de.xml +++ b/src/chrome/content/rules/TU-Ilmenau.de.xml @@ -13,7 +13,8 @@ - + + - + @@ -47,7 +47,7 @@ Fetch error: http://m.ond.tue.nl/ => https://m.ond.tue.nl/: (51, "SSL: no altern - + diff --git a/src/chrome/content/rules/TUGraz.at.xml b/src/chrome/content/rules/TUGraz.at.xml index 9e333c247150..6b7df774977e 100644 --- a/src/chrome/content/rules/TUGraz.at.xml +++ b/src/chrome/content/rules/TUGraz.at.xml @@ -69,16 +69,24 @@ Fetch error: http://online.tu-graz.ac.at/ => https://online.tu-graz.ac.at/: (51, * Unsecurable <= 404 --> - - - + + + + + + + + + + + + + - @@ -86,7 +94,6 @@ Fetch error: http://online.tu-graz.ac.at/ => https://online.tu-graz.ac.at/: (51, - + diff --git a/src/chrome/content/rules/TUHH.de.xml b/src/chrome/content/rules/TUHH.de.xml index 2b9163354582..f147ea42b13a 100644 --- a/src/chrome/content/rules/TUHH.de.xml +++ b/src/chrome/content/rules/TUHH.de.xml @@ -33,19 +33,17 @@ - + + + + + + - - - - + - - + diff --git a/src/chrome/content/rules/TUKE.sk.xml b/src/chrome/content/rules/TUKE.sk.xml new file mode 100644 index 000000000000..d7c793ae45de --- /dev/null +++ b/src/chrome/content/rules/TUKE.sk.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/TUT.fi.xml b/src/chrome/content/rules/TUT.fi.xml index 4fb0f8568eb0..3d5be1a5a214 100644 --- a/src/chrome/content/rules/TUT.fi.xml +++ b/src/chrome/content/rules/TUT.fi.xml @@ -13,7 +13,8 @@ --> - + + - + - + diff --git a/src/chrome/content/rules/TV4Play.se.xml b/src/chrome/content/rules/TV4Play.se.xml index 9174b91ca794..74f6c33b9829 100644 --- a/src/chrome/content/rules/TV4Play.se.xml +++ b/src/chrome/content/rules/TV4Play.se.xml @@ -27,7 +27,7 @@ Connection refused: - ^ - api.tv4play.se --> - + diff --git a/src/chrome/content/rules/TVBrowser.org.xml b/src/chrome/content/rules/TVBrowser.org.xml index b30da1665647..abbac6d1d099 100644 --- a/src/chrome/content/rules/TVBrowser.org.xml +++ b/src/chrome/content/rules/TVBrowser.org.xml @@ -36,7 +36,8 @@ - + + @@ -45,4 +46,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/TVLinks.xml b/src/chrome/content/rules/TVLinks.xml deleted file mode 100644 index 83f5c40e5a67..000000000000 --- a/src/chrome/content/rules/TVLinks.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/TVMaze.com.xml b/src/chrome/content/rules/TVMaze.com.xml new file mode 100644 index 000000000000..1405cc43fe76 --- /dev/null +++ b/src/chrome/content/rules/TVMaze.com.xml @@ -0,0 +1,10 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/TVNZ.xml b/src/chrome/content/rules/TVNZ.xml index 1907be3489ad..abc5542e319f 100644 --- a/src/chrome/content/rules/TVNZ.xml +++ b/src/chrome/content/rules/TVNZ.xml @@ -44,7 +44,7 @@ - + diff --git a/src/chrome/content/rules/TVNewsCheck.com.xml b/src/chrome/content/rules/TVNewsCheck.com.xml index 646364441346..d46e16e83f48 100644 --- a/src/chrome/content/rules/TVNewsCheck.com.xml +++ b/src/chrome/content/rules/TVNewsCheck.com.xml @@ -11,11 +11,12 @@ - + + - \ No newline at end of file + diff --git a/src/chrome/content/rules/TVTropes.org.xml b/src/chrome/content/rules/TVTropes.org.xml new file mode 100644 index 000000000000..c26877945bee --- /dev/null +++ b/src/chrome/content/rules/TVTropes.org.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/TV_Nutt.com.xml b/src/chrome/content/rules/TV_Nutt.com.xml deleted file mode 100644 index 37de00bf5b92..000000000000 --- a/src/chrome/content/rules/TV_Nutt.com.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/TV_Tropes.xml b/src/chrome/content/rules/TV_Tropes.xml deleted file mode 100644 index 40a79aded7aa..000000000000 --- a/src/chrome/content/rules/TV_Tropes.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/TWDown.net.xml b/src/chrome/content/rules/TWDown.net.xml new file mode 100644 index 000000000000..7c4c1b907bd9 --- /dev/null +++ b/src/chrome/content/rules/TWDown.net.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/TWRP.xml b/src/chrome/content/rules/TWRP.xml index 0dd2eb38a7b6..a106ac0a4ee0 100644 --- a/src/chrome/content/rules/TWRP.xml +++ b/src/chrome/content/rules/TWRP.xml @@ -14,6 +14,6 @@ - diff --git a/src/chrome/content/rules/TXT.ca.xml b/src/chrome/content/rules/TXT.ca.xml new file mode 100644 index 000000000000..89db350b6f5d --- /dev/null +++ b/src/chrome/content/rules/TXT.ca.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/TYPO3.org-falsemixed.xml b/src/chrome/content/rules/TYPO3.org-falsemixed.xml index e4a891b17b61..b441b954a5b4 100644 --- a/src/chrome/content/rules/TYPO3.org-falsemixed.xml +++ b/src/chrome/content/rules/TYPO3.org-falsemixed.xml @@ -6,7 +6,7 @@ Fetch error: http://flow.typo3.org/ => https://flow.typo3.org/: (51, "SSL: no al For rules not causing false/broken MCB, see TYPO3.xml. --> - + diff --git a/src/chrome/content/rules/TYPO3.xml b/src/chrome/content/rules/TYPO3.xml index 656513211664..5345a26447ad 100644 --- a/src/chrome/content/rules/TYPO3.xml +++ b/src/chrome/content/rules/TYPO3.xml @@ -5,11 +5,6 @@ Fetch error: http://flow.typo3.org/_Resources/Static/Packages/TYPO3.FlowTypo3Org For rules causing false/broken MCB, see TYPO3.org-falsemixed.xml. - Other TYPO3 rulesets: - - - T3Blog.com.xml - - Nonfunctional hosts in *typo3.org: - demo ¹ @@ -46,7 +41,7 @@ Fetch error: http://flow.typo3.org/_Resources/Static/Packages/TYPO3.FlowTypo3Org ⁴ Secured by us --> - + @@ -102,7 +97,7 @@ Fetch error: http://flow.typo3.org/_Resources/Static/Packages/TYPO3.FlowTypo3Org - + - - - + + + + + + + + + + + - + diff --git a/src/chrome/content/rules/TaDst.com.xml b/src/chrome/content/rules/TaDst.com.xml index 6c5e60fa7cc2..507f5d574034 100644 --- a/src/chrome/content/rules/TaDst.com.xml +++ b/src/chrome/content/rules/TaDst.com.xml @@ -15,7 +15,8 @@ --> - + + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - + + diff --git a/src/chrome/content/rules/Tactical_Tech.org.xml b/src/chrome/content/rules/Tactical_Tech.org.xml index 6d90950092d8..5a719cef843f 100644 --- a/src/chrome/content/rules/Tactical_Tech.org.xml +++ b/src/chrome/content/rules/Tactical_Tech.org.xml @@ -5,7 +5,6 @@ Fetch error: http://protect.tacticaltech.org/ => https://protect.tacticaltech.or Other Tactical Technology rulesets: - - Drawing_by_Numbers.org.xml - Exposing_the_Invisible.org.xml - Informationactivism.org.xml - My_Shadow.com.xml @@ -35,7 +34,7 @@ Fetch error: http://protect.tacticaltech.org/ => https://protect.tacticaltech.or * Secured by us --> - + @@ -46,7 +45,7 @@ Fetch error: http://protect.tacticaltech.org/ => https://protect.tacticaltech.or - + - + + + + + + + + diff --git a/src/chrome/content/rules/Tafsir.net.xml b/src/chrome/content/rules/Tafsir.net.xml new file mode 100644 index 000000000000..8c186fea3c80 --- /dev/null +++ b/src/chrome/content/rules/Tafsir.net.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Tafsir.one.xml b/src/chrome/content/rules/Tafsir.one.xml new file mode 100644 index 000000000000..b7aef7dcb4d7 --- /dev/null +++ b/src/chrome/content/rules/Tafsir.one.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/TafsirStore.com.xml b/src/chrome/content/rules/TafsirStore.com.xml new file mode 100644 index 000000000000..380059c2c796 --- /dev/null +++ b/src/chrome/content/rules/TafsirStore.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/TagCommander.com.xml b/src/chrome/content/rules/TagCommander.com.xml index 26a3e35f2ea4..cd49c1215d38 100644 --- a/src/chrome/content/rules/TagCommander.com.xml +++ b/src/chrome/content/rules/TagCommander.com.xml @@ -1,27 +1,64 @@ - + + + + - + + + + + + + + + + - + + + + diff --git a/src/chrome/content/rules/TagMan.xml b/src/chrome/content/rules/TagMan.xml index aeea3b043ede..89f1dfd87564 100644 --- a/src/chrome/content/rules/TagMan.xml +++ b/src/chrome/content/rules/TagMan.xml @@ -16,7 +16,7 @@ Fetch error: http://admin.tagman.com/ => https://admin.tagman.com/: (60, 'SSL ce * Refused --> - + @@ -24,7 +24,6 @@ Fetch error: http://admin.tagman.com/ => https://admin.tagman.com/: (60, 'SSL ce - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Tagasauris.com.xml b/src/chrome/content/rules/Tagasauris.com.xml index 746b2a541b06..ace413bc7c0a 100644 --- a/src/chrome/content/rules/Tagasauris.com.xml +++ b/src/chrome/content/rules/Tagasauris.com.xml @@ -10,7 +10,7 @@ Fetch error: http://photo.tagasauris.com/ => https://photo.tagasauris.com/: Too * Secured by us --> - + diff --git a/src/chrome/content/rules/Tagesanzeiger.ch.xml b/src/chrome/content/rules/Tagesanzeiger.ch.xml index 4482c2c9f705..80cfe58210ec 100644 --- a/src/chrome/content/rules/Tagesanzeiger.ch.xml +++ b/src/chrome/content/rules/Tagesanzeiger.ch.xml @@ -3,7 +3,7 @@ Cert expired: - staging.mobile.tagesanzeiger.ch - + Cert mismatch: - www.1zu12.tagesanzeiger.ch - www.abo.tagesanzeiger.ch diff --git a/src/chrome/content/rules/Tagesspiegel.de.xml b/src/chrome/content/rules/Tagesspiegel.de.xml new file mode 100644 index 000000000000..cc37ad658d78 --- /dev/null +++ b/src/chrome/content/rules/Tagesspiegel.de.xml @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Tahoe-LAFS.xml b/src/chrome/content/rules/Tahoe-LAFS.xml index ba5e34b47e96..6b8279f2400c 100644 --- a/src/chrome/content/rules/Tahoe-LAFS.xml +++ b/src/chrome/content/rules/Tahoe-LAFS.xml @@ -17,7 +17,7 @@ --> - + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Take_Control_Ebooks.xml b/src/chrome/content/rules/Take_Control_Ebooks.xml index 270b09792a0f..106b3610e93a 100644 --- a/src/chrome/content/rules/Take_Control_Ebooks.xml +++ b/src/chrome/content/rules/Take_Control_Ebooks.xml @@ -4,9 +4,9 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Takw.in.xml b/src/chrome/content/rules/Takw.in.xml new file mode 100644 index 000000000000..e121fdd237b8 --- /dev/null +++ b/src/chrome/content/rules/Takw.in.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Talaqqi.org.xml b/src/chrome/content/rules/Talaqqi.org.xml new file mode 100644 index 000000000000..a40e324f4aec --- /dev/null +++ b/src/chrome/content/rules/Talaqqi.org.xml @@ -0,0 +1,10 @@ + + + + + + + diff --git a/src/chrome/content/rules/Talemetry.com-problematic.xml b/src/chrome/content/rules/Talemetry.com-problematic.xml deleted file mode 100644 index 485ed79a8457..000000000000 --- a/src/chrome/content/rules/Talemetry.com-problematic.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Talemetry.com.xml b/src/chrome/content/rules/Talemetry.com.xml index 9cee399a17c9..c17ccd04de35 100644 --- a/src/chrome/content/rules/Talemetry.com.xml +++ b/src/chrome/content/rules/Talemetry.com.xml @@ -46,7 +46,7 @@ --> - + https://www.oracle.com/us/products/applica (www.)?taleo.com: Redirects to http --> - + diff --git a/src/chrome/content/rules/Talk-Active-mismatches.xml b/src/chrome/content/rules/Talk-Active-mismatches.xml index a1a3732094fc..b77925b0d422 100644 --- a/src/chrome/content/rules/Talk-Active-mismatches.xml +++ b/src/chrome/content/rules/Talk-Active-mismatches.xml @@ -11,7 +11,7 @@ - + - - - - - - - - - - - diff --git a/src/chrome/content/rules/TalkTalk-mismatches.xml b/src/chrome/content/rules/TalkTalk-mismatches.xml index c5b798d45ef5..f6fe0287b531 100644 --- a/src/chrome/content/rules/TalkTalk-mismatches.xml +++ b/src/chrome/content/rules/TalkTalk-mismatches.xml @@ -3,7 +3,7 @@ - + diff --git a/src/chrome/content/rules/TalkTalk.xml b/src/chrome/content/rules/TalkTalk.xml index 1a08b990a84e..b8d3e3069f63 100644 --- a/src/chrome/content/rules/TalkTalk.xml +++ b/src/chrome/content/rules/TalkTalk.xml @@ -56,7 +56,7 @@ Fetch error: http://my.talktalk.co.uk/ => https://my.talktalk.co.uk/: (7, 'Faile * Secured by us --> - + @@ -79,7 +79,7 @@ Fetch error: http://my.talktalk.co.uk/ => https://my.talktalk.co.uk/: (7, 'Faile - + https://www.talktalkbusiness. - www.talktalkbusiness.co.uk --> - + @@ -31,7 +31,7 @@ Fetch error: http://www.talktalkbusiness.co.uk/ => https://www.talktalkbusiness. - + https://www.talkhealthpart - www.talkhealthpartnership.com --> - + @@ -19,7 +19,7 @@ Fetch error: http://www.talkhealthpartnership.com/ => https://www.talkhealthpart --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Talky.io.xml b/src/chrome/content/rules/Talky.io.xml index d361acedea30..d8534101e0c8 100644 --- a/src/chrome/content/rules/Talky.io.xml +++ b/src/chrome/content/rules/Talky.io.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://beta.talky.io/ => https://beta.talky.io/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/Tallinn-University-of-Technology.xml b/src/chrome/content/rules/Tallinn-University-of-Technology.xml index 6f323e10153e..1041b67b1189 100644 --- a/src/chrome/content/rules/Tallinn-University-of-Technology.xml +++ b/src/chrome/content/rules/Tallinn-University-of-Technology.xml @@ -6,8 +6,8 @@ - - + + diff --git a/src/chrome/content/rules/Tampermonkey.xml b/src/chrome/content/rules/Tampermonkey.xml index 7e635122386b..d6e6b5d1aef2 100644 --- a/src/chrome/content/rules/Tampermonkey.xml +++ b/src/chrome/content/rules/Tampermonkey.xml @@ -16,9 +16,9 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/TanCity.de.xml b/src/chrome/content/rules/TanCity.de.xml deleted file mode 100644 index 6dd3e6d2d3ad..000000000000 --- a/src/chrome/content/rules/TanCity.de.xml +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Tandem_Calendar.xml b/src/chrome/content/rules/Tandem_Calendar.xml index 897861cb8451..daec148bc4cd 100644 --- a/src/chrome/content/rules/Tandem_Calendar.xml +++ b/src/chrome/content/rules/Tandem_Calendar.xml @@ -18,4 +18,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Tandridge.gov.uk-mixedcontent.xml b/src/chrome/content/rules/Tandridge.gov.uk-mixedcontent.xml index 1619520ea9a9..2b23a422276b 100644 --- a/src/chrome/content/rules/Tandridge.gov.uk-mixedcontent.xml +++ b/src/chrome/content/rules/Tandridge.gov.uk-mixedcontent.xml @@ -11,7 +11,7 @@ - + - + + + + + + + + + + + diff --git a/src/chrome/content/rules/Tangerine-Bank.xml b/src/chrome/content/rules/Tangerine-Bank.xml index 7c751aa2a31d..861fdbc2092d 100644 --- a/src/chrome/content/rules/Tangerine-Bank.xml +++ b/src/chrome/content/rules/Tangerine-Bank.xml @@ -24,7 +24,6 @@ - diff --git a/src/chrome/content/rules/Tango.me.xml b/src/chrome/content/rules/Tango.me.xml index 40e565d07bbd..09b8c8171bea 100644 --- a/src/chrome/content/rules/Tango.me.xml +++ b/src/chrome/content/rules/Tango.me.xml @@ -24,7 +24,7 @@ Fetch error: http://media.tango.me/ => https://media.tango.me/: (28, 'Operation * Secured by us --> - + diff --git a/src/chrome/content/rules/TankaFetast.com.xml b/src/chrome/content/rules/TankaFetast.com.xml index 1a57e7c19feb..e284af3e887c 100644 --- a/src/chrome/content/rules/TankaFetast.com.xml +++ b/src/chrome/content/rules/TankaFetast.com.xml @@ -9,7 +9,7 @@ Fetch error: http://www.tankafetast.com/ => https://www.tankafetast.com/: (35, ' - .tankafetast.com --> - + diff --git a/src/chrome/content/rules/Tanzschule-wernecke.de.xml b/src/chrome/content/rules/Tanzschule-wernecke.de.xml new file mode 100644 index 000000000000..207a76f07b04 --- /dev/null +++ b/src/chrome/content/rules/Tanzschule-wernecke.de.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Tapad.xml b/src/chrome/content/rules/Tapad.xml index ed052b118453..4ce067b2b1da 100644 --- a/src/chrome/content/rules/Tapad.xml +++ b/src/chrome/content/rules/Tapad.xml @@ -1,47 +1,27 @@ - - - - - + + + + + + + + + + + + + - - - - - - - + + diff --git a/src/chrome/content/rules/Tapatalk.com.xml b/src/chrome/content/rules/Tapatalk.com.xml new file mode 100644 index 000000000000..b4360d3fc0cc --- /dev/null +++ b/src/chrome/content/rules/Tapatalk.com.xml @@ -0,0 +1,106 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Tapatalk.xml b/src/chrome/content/rules/Tapatalk.xml deleted file mode 100644 index 2218637745f7..000000000000 --- a/src/chrome/content/rules/Tapatalk.xml +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Tape.tv.xml b/src/chrome/content/rules/Tape.tv.xml index 5303c32adc4f..637a50a3255d 100644 --- a/src/chrome/content/rules/Tape.tv.xml +++ b/src/chrome/content/rules/Tape.tv.xml @@ -9,7 +9,7 @@ Fetch error: http://web202.tape.tv/ => https://web202.tape.tv/: (6, 'Could not r Fetch error: http://tapetv-slowjam.de/ => https://tapetv-slowjam.de/: (6, 'Could not resolve host: tapetv-slowjam.de') --> - + @@ -19,7 +19,7 @@ Fetch error: http://tapetv-slowjam.de/ => https://tapetv-slowjam.de/: (6, 'Could - + diff --git a/src/chrome/content/rules/Tapgage.xml b/src/chrome/content/rules/Tapgage.xml index 3c3ff2dead3a..a16812f02e71 100644 --- a/src/chrome/content/rules/Tapgage.xml +++ b/src/chrome/content/rules/Tapgage.xml @@ -10,7 +10,7 @@ Fetch error: http://www.tapgage.net/ => https://www.tapgage.net/: (60, 'SSL cert !www: self-signed --> - + @@ -21,4 +21,4 @@ Fetch error: http://www.tapgage.net/ => https://www.tapgage.net/: (60, 'SSL cert - \ No newline at end of file + diff --git a/src/chrome/content/rules/Tapiture.com.xml b/src/chrome/content/rules/Tapiture.com.xml index 5cf0501480b4..7b4608501d48 100644 --- a/src/chrome/content/rules/Tapiture.com.xml +++ b/src/chrome/content/rules/Tapiture.com.xml @@ -36,7 +36,7 @@ Fetch error: http://www.tapiture.com/ => https://www.tapiture.com/: (28, 'Connec - Image from s3-live.tapcdn.com --> - + diff --git a/src/chrome/content/rules/Taranis.news.xml b/src/chrome/content/rules/Taranis.news.xml new file mode 100644 index 000000000000..60c8d5b85f17 --- /dev/null +++ b/src/chrome/content/rules/Taranis.news.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Tarasic.com.tw.xml b/src/chrome/content/rules/Tarasic.com.tw.xml index 548f2b8cfd9c..029e5a3f3bb9 100644 --- a/src/chrome/content/rules/Tarasic.com.tw.xml +++ b/src/chrome/content/rules/Tarasic.com.tw.xml @@ -30,4 +30,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Target.com.au.xml b/src/chrome/content/rules/Target.com.au.xml new file mode 100644 index 000000000000..014283e18c50 --- /dev/null +++ b/src/chrome/content/rules/Target.com.au.xml @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Target_Performance.xml b/src/chrome/content/rules/Target_Performance.xml index 58a5066a797c..4b1ff59712b0 100644 --- a/src/chrome/content/rules/Target_Performance.xml +++ b/src/chrome/content/rules/Target_Performance.xml @@ -1,7 +1,15 @@ + + - - + + + - - + diff --git a/src/chrome/content/rules/Targeted_Threats.net.xml b/src/chrome/content/rules/Targeted_Threats.net.xml index 20abca67f7bc..4c740baa00fa 100644 --- a/src/chrome/content/rules/Targeted_Threats.net.xml +++ b/src/chrome/content/rules/Targeted_Threats.net.xml @@ -5,7 +5,7 @@ Fetch error: http://targetedthreats.net/ => https://targetedthreats.net/: (28, ' Fetch error: http://www.targetedthreats.net/ => https://www.targetedthreats.net/: (28, 'Connection timed out after 20000 milliseconds') --> - + diff --git a/src/chrome/content/rules/Tariq_Ramadan.com.xml b/src/chrome/content/rules/Tariq_Ramadan.com.xml new file mode 100644 index 000000000000..70ca5543f031 --- /dev/null +++ b/src/chrome/content/rules/Tariq_Ramadan.com.xml @@ -0,0 +1,12 @@ + + + + + + + diff --git a/src/chrome/content/rules/Tarlogic.com.xml b/src/chrome/content/rules/Tarlogic.com.xml index 04b0818488b6..9d8f4fbe0914 100644 --- a/src/chrome/content/rules/Tarlogic.com.xml +++ b/src/chrome/content/rules/Tarlogic.com.xml @@ -3,10 +3,6 @@ Disabled by https-everywhere-checker because: Fetch error: http://tarlogic.com/ => https://tarlogic.com/: (51, "SSL: no alternative certificate subject name matches target host name 'tarlogic.com'") - Other Tarlogic Security rulesets: - - - Acrylic_Wifi.com.xml - Mixed content: @@ -15,7 +11,7 @@ Fetch error: http://tarlogic.com/ => https://tarlogic.com/: (51, "SSL: no altern * Secured by us --> - + diff --git a/src/chrome/content/rules/TaskRabbit.com.xml b/src/chrome/content/rules/TaskRabbit.com.xml new file mode 100644 index 000000000000..427a680472d5 --- /dev/null +++ b/src/chrome/content/rules/TaskRabbit.com.xml @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Task_Force_on_Shale_Gas.uk.xml b/src/chrome/content/rules/Task_Force_on_Shale_Gas.uk.xml deleted file mode 100644 index aad0faf2430b..000000000000 --- a/src/chrome/content/rules/Task_Force_on_Shale_Gas.uk.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Taste-of-the-North-End.xml b/src/chrome/content/rules/Taste-of-the-North-End.xml deleted file mode 100644 index 16a7d3cb7b33..000000000000 --- a/src/chrome/content/rules/Taste-of-the-North-End.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Tate_Publishing.com.xml b/src/chrome/content/rules/Tate_Publishing.com.xml deleted file mode 100644 index 7d869d033cc0..000000000000 --- a/src/chrome/content/rules/Tate_Publishing.com.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Tatrabanka.sk.xml b/src/chrome/content/rules/Tatrabanka.sk.xml new file mode 100644 index 000000000000..825a14e82d24 --- /dev/null +++ b/src/chrome/content/rules/Tatrabanka.sk.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/TauCeti.org.au.xml b/src/chrome/content/rules/TauCeti.org.au.xml index bf19feba4f7b..3987d0e82390 100644 --- a/src/chrome/content/rules/TauCeti.org.au.xml +++ b/src/chrome/content/rules/TauCeti.org.au.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Taunton_Deane.gov.uk.xml b/src/chrome/content/rules/Taunton_Deane.gov.uk.xml index 5c5f87e8d906..6b5c97bc4cbb 100644 --- a/src/chrome/content/rules/Taunton_Deane.gov.uk.xml +++ b/src/chrome/content/rules/Taunton_Deane.gov.uk.xml @@ -1,65 +1,26 @@ - - - - - + + + + + - - - - - - - - - - - - - - - - - - - - + diff --git a/src/chrome/content/rules/TawkTo.xml b/src/chrome/content/rules/TawkTo.xml index cc002a3b7eef..1b2e8b8d9253 100644 --- a/src/chrome/content/rules/TawkTo.xml +++ b/src/chrome/content/rules/TawkTo.xml @@ -3,9 +3,9 @@ - + - + diff --git a/src/chrome/content/rules/TaxAct.xml b/src/chrome/content/rules/TaxAct.xml index b070dd5c3b61..13323a76adaa 100644 --- a/src/chrome/content/rules/TaxAct.xml +++ b/src/chrome/content/rules/TaxAct.xml @@ -17,7 +17,7 @@ Fetch error: http://www2.taxactonline.com/ => https://www2.taxactonline.com/: (6 ¹ hostname mismatch --> - + diff --git a/src/chrome/content/rules/TaxChopper.ca.xml b/src/chrome/content/rules/TaxChopper.ca.xml new file mode 100644 index 000000000000..180ac4d4d66b --- /dev/null +++ b/src/chrome/content/rules/TaxChopper.ca.xml @@ -0,0 +1,12 @@ + + + + + + + diff --git a/src/chrome/content/rules/TaxPayers_Alliance.xml b/src/chrome/content/rules/TaxPayers_Alliance.xml index 5dc9bea0fd16..0745ca0bebd0 100644 --- a/src/chrome/content/rules/TaxPayers_Alliance.xml +++ b/src/chrome/content/rules/TaxPayers_Alliance.xml @@ -8,10 +8,10 @@ Non-2xx HTTP code: http://taxpayersalliance.com/ (200) => https://www.taxpayersa ^: Expired 2013-05-13 --> - + - + diff --git a/src/chrome/content/rules/Taxify.eu.xml b/src/chrome/content/rules/Taxify.eu.xml new file mode 100644 index 000000000000..eb562a8bed75 --- /dev/null +++ b/src/chrome/content/rules/Taxify.eu.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Tb.cn.xml b/src/chrome/content/rules/Tb.cn.xml index 168f4d3f4bb8..9ecf66b81bf1 100644 --- a/src/chrome/content/rules/Tb.cn.xml +++ b/src/chrome/content/rules/Tb.cn.xml @@ -1,16 +1,8 @@ - + - diff --git a/src/chrome/content/rules/Tchibo.xml b/src/chrome/content/rules/Tchibo.xml index 3e4eaac365e5..92288bed6d3a 100644 --- a/src/chrome/content/rules/Tchibo.xml +++ b/src/chrome/content/rules/Tchibo.xml @@ -14,7 +14,7 @@ Problematic domains: - radoscodkrywania.tchibo.pl - *tchibo.com --> - + diff --git a/src/chrome/content/rules/Tcl.tk.xml b/src/chrome/content/rules/Tcl.tk.xml index 8f5c9bf65f5a..6ad264772b01 100644 --- a/src/chrome/content/rules/Tcl.tk.xml +++ b/src/chrome/content/rules/Tcl.tk.xml @@ -1,35 +1,29 @@ + + - - - - - diff --git a/src/chrome/content/rules/Tcpdump.org.xml b/src/chrome/content/rules/Tcpdump.org.xml new file mode 100644 index 000000000000..1488137fdb38 --- /dev/null +++ b/src/chrome/content/rules/Tcpdump.org.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Tdesktop.com.xml b/src/chrome/content/rules/Tdesktop.com.xml index 0e8dfe3c887b..25b10c59108c 100644 --- a/src/chrome/content/rules/Tdesktop.com.xml +++ b/src/chrome/content/rules/Tdesktop.com.xml @@ -3,7 +3,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://update.tdesktop.com/ => https://update.tdesktop.com/: (51, "SSL: no alternative certificate subject name matches target host name 'update.tdesktop.com'") - For other Telegram coverage, see Telegram.org.xml. + For other Telegram coverage, see Telegram.me.xml. These altnames don't exist: @@ -11,7 +11,7 @@ Fetch error: http://update.tdesktop.com/ => https://update.tdesktop.com/: (51, " - www.updates.tdesktop.com --> - + diff --git a/src/chrome/content/rules/Tdnam.com.xml b/src/chrome/content/rules/Tdnam.com.xml deleted file mode 100644 index e4ca7fbfbac5..000000000000 --- a/src/chrome/content/rules/Tdnam.com.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Tea-Party-Patriots.xml b/src/chrome/content/rules/Tea-Party-Patriots.xml index 3d1e8d1600c8..ccf7edf4bf07 100644 --- a/src/chrome/content/rules/Tea-Party-Patriots.xml +++ b/src/chrome/content/rules/Tea-Party-Patriots.xml @@ -10,7 +10,7 @@ - + diff --git a/src/chrome/content/rules/TeacherCast.net.xml b/src/chrome/content/rules/TeacherCast.net.xml new file mode 100644 index 000000000000..f7a37a2b89df --- /dev/null +++ b/src/chrome/content/rules/TeacherCast.net.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Teachers_Assurance.xml b/src/chrome/content/rules/Teachers_Assurance.xml index 6f26a9e6dba2..9715caf00a3e 100644 --- a/src/chrome/content/rules/Teachers_Assurance.xml +++ b/src/chrome/content/rules/Teachers_Assurance.xml @@ -33,4 +33,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Teacups_and_Trinkets.co.uk.xml b/src/chrome/content/rules/Teacups_and_Trinkets.co.uk.xml deleted file mode 100644 index 6a7b6a78bc44..000000000000 --- a/src/chrome/content/rules/Teacups_and_Trinkets.co.uk.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Tealium.com.xml b/src/chrome/content/rules/Tealium.com.xml new file mode 100644 index 000000000000..4659293279d9 --- /dev/null +++ b/src/chrome/content/rules/Tealium.com.xml @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Tealium.xml b/src/chrome/content/rules/Tealium.xml deleted file mode 100644 index a65992a5c5d3..000000000000 --- a/src/chrome/content/rules/Tealium.xml +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Team-share.net.xml b/src/chrome/content/rules/Team-share.net.xml deleted file mode 100644 index b7504357357e..000000000000 --- a/src/chrome/content/rules/Team-share.net.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/TeamLiquid.net.xml b/src/chrome/content/rules/TeamLiquid.net.xml new file mode 100644 index 000000000000..1f8e699ddd57 --- /dev/null +++ b/src/chrome/content/rules/TeamLiquid.net.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Team_Cymru.xml b/src/chrome/content/rules/Team_Cymru.xml index ba27eeea3cc5..6996b3310ddd 100644 --- a/src/chrome/content/rules/Team_Cymru.xml +++ b/src/chrome/content/rules/Team_Cymru.xml @@ -6,4 +6,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Team_UNICEF.org.xml b/src/chrome/content/rules/Team_UNICEF.org.xml deleted file mode 100644 index 9f3d59c804c4..000000000000 --- a/src/chrome/content/rules/Team_UNICEF.org.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Team_in_Training.org.xml b/src/chrome/content/rules/Team_in_Training.org.xml index b3f71968e454..91587e7c6ccd 100644 --- a/src/chrome/content/rules/Team_in_Training.org.xml +++ b/src/chrome/content/rules/Team_in_Training.org.xml @@ -14,7 +14,7 @@ Fetch error: http://www.teamintraining.org/ => https://www.teamintraining.org/: - ^ (works; mismatched, CN: *.lls.org) --> - + @@ -26,4 +26,4 @@ Fetch error: http://www.teamintraining.org/ => https://www.teamintraining.org/: - \ No newline at end of file + diff --git a/src/chrome/content/rules/Teamtailor.com.xml b/src/chrome/content/rules/Teamtailor.com.xml index c80df4b6aad8..56a3578bdcf6 100644 --- a/src/chrome/content/rules/Teamtailor.com.xml +++ b/src/chrome/content/rules/Teamtailor.com.xml @@ -54,7 +54,7 @@ - + diff --git a/src/chrome/content/rules/Teamxlink.xml b/src/chrome/content/rules/Teamxlink.xml index 940e77968419..411e752400c3 100644 --- a/src/chrome/content/rules/Teamxlink.xml +++ b/src/chrome/content/rules/Teamxlink.xml @@ -1,6 +1,10 @@ - - - + + + + + + + - + diff --git a/src/chrome/content/rules/Teanglann.ie.xml b/src/chrome/content/rules/Teanglann.ie.xml new file mode 100644 index 000000000000..5531450060c7 --- /dev/null +++ b/src/chrome/content/rules/Teanglann.ie.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/TeardownIQ.com.xml b/src/chrome/content/rules/TeardownIQ.com.xml deleted file mode 100644 index 4fcd58e6e401..000000000000 --- a/src/chrome/content/rules/TeardownIQ.com.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Tech-Recipes.xml b/src/chrome/content/rules/Tech-Recipes.xml index a2635901f2aa..1f242b25d47e 100644 --- a/src/chrome/content/rules/Tech-Recipes.xml +++ b/src/chrome/content/rules/Tech-Recipes.xml @@ -5,7 +5,7 @@ - + - + - - + diff --git a/src/chrome/content/rules/TechRepublic.com-problematic.xml b/src/chrome/content/rules/TechRepublic.com-problematic.xml deleted file mode 100644 index cbf7e3c8d918..000000000000 --- a/src/chrome/content/rules/TechRepublic.com-problematic.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/TechRepublic.com.xml b/src/chrome/content/rules/TechRepublic.com.xml new file mode 100644 index 000000000000..186a269b37cc --- /dev/null +++ b/src/chrome/content/rules/TechRepublic.com.xml @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/TechRepublic.xml b/src/chrome/content/rules/TechRepublic.xml deleted file mode 100644 index 248b1def8de0..000000000000 --- a/src/chrome/content/rules/TechRepublic.xml +++ /dev/null @@ -1,98 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/TechSay.com.xml b/src/chrome/content/rules/TechSay.com.xml index ddd156856e39..e33ec8fc4d5d 100644 --- a/src/chrome/content/rules/TechSay.com.xml +++ b/src/chrome/content/rules/TechSay.com.xml @@ -9,7 +9,7 @@ Fetch error: http://techsay.com/ => https://techsay.com/: (51, "SSL: no alternat - www.techsay.com --> - + @@ -20,7 +20,7 @@ Fetch error: http://techsay.com/ => https://techsay.com/: (51, "SSL: no alternat - + + + + + + + + + + + + diff --git a/src/chrome/content/rules/TechSupportAlert.com.xml b/src/chrome/content/rules/TechSupportAlert.com.xml new file mode 100644 index 000000000000..90895e64ffe4 --- /dev/null +++ b/src/chrome/content/rules/TechSupportAlert.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/TechTarget-mismatches.xml b/src/chrome/content/rules/TechTarget-mismatches.xml index 9350f72c3925..f109bc69483b 100644 --- a/src/chrome/content/rules/TechTarget-mismatches.xml +++ b/src/chrome/content/rules/TechTarget-mismatches.xml @@ -15,6 +15,6 @@ - + diff --git a/src/chrome/content/rules/TechTarget.xml b/src/chrome/content/rules/TechTarget.xml index e176d8ac6b3c..e1ee84db9d10 100644 --- a/src/chrome/content/rules/TechTarget.xml +++ b/src/chrome/content/rules/TechTarget.xml @@ -41,7 +41,7 @@ --> - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/TechWeb.xml b/src/chrome/content/rules/TechWeb.xml index 0a59e3ab1aeb..d1794776d7a7 100644 --- a/src/chrome/content/rules/TechWeb.xml +++ b/src/chrome/content/rules/TechWeb.xml @@ -36,7 +36,7 @@ Fetch error: http://techwebonlineevents.com/ => https://www.techwebonlineevents. - ng --> - + @@ -50,7 +50,7 @@ Fetch error: http://techwebonlineevents.com/ => https://www.techwebonlineevents. - + https://www.techwebonlineevents. + to="https://img.lightreading.com/" /> diff --git a/src/chrome/content/rules/Tech_Journey.net.xml b/src/chrome/content/rules/Tech_Journey.net.xml index 3977b67decdd..401ba7b69062 100644 --- a/src/chrome/content/rules/Tech_Journey.net.xml +++ b/src/chrome/content/rules/Tech_Journey.net.xml @@ -22,7 +22,7 @@ --> - + https://techtoolsforactivism.or Fetch error: http://www.techtoolsforactivism.org/ => https://www.techtoolsforactivism.org/: (51, "SSL: no alternative certificate subject name matches target host name 'www.techtoolsforactivism.org'") --> - + diff --git a/src/chrome/content/rules/Techdirt.xml b/src/chrome/content/rules/Techdirt.xml deleted file mode 100644 index be0794e61ead..000000000000 --- a/src/chrome/content/rules/Techdirt.xml +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Techendo.com.xml b/src/chrome/content/rules/Techendo.com.xml index 98bedb9eff00..979c2c4f6f99 100644 --- a/src/chrome/content/rules/Techendo.com.xml +++ b/src/chrome/content/rules/Techendo.com.xml @@ -5,7 +5,9 @@ - + + + - + - diff --git a/src/chrome/content/rules/Technet.com.xml b/src/chrome/content/rules/Technet.com.xml index ce651c89d9d9..228017fefada 100644 --- a/src/chrome/content/rules/Technet.com.xml +++ b/src/chrome/content/rules/Technet.com.xml @@ -13,7 +13,7 @@ - + - + diff --git a/src/chrome/content/rules/Technical-University-of-Lisbon-Darkstar.xml b/src/chrome/content/rules/Technical-University-of-Lisbon-Darkstar.xml index f89d87a45ee5..7d0fd9a35f9b 100644 --- a/src/chrome/content/rules/Technical-University-of-Lisbon-Darkstar.xml +++ b/src/chrome/content/rules/Technical-University-of-Lisbon-Darkstar.xml @@ -3,7 +3,6 @@ - + diff --git a/src/chrome/content/rules/Technical-University-of-Lisbon.xml b/src/chrome/content/rules/Technical-University-of-Lisbon.xml index 9b7d0b3d9783..a6bf979ebe3d 100644 --- a/src/chrome/content/rules/Technical-University-of-Lisbon.xml +++ b/src/chrome/content/rules/Technical-University-of-Lisbon.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://utl.pt/ => https://www.utl.pt/: (6, 'Could not resolve host: utl.pt') Non-2xx HTTP code: http://www.utl.pt/ (200) => https://www.utl.pt/ (401) --> - + diff --git a/src/chrome/content/rules/Technical.ly.xml b/src/chrome/content/rules/Technical.ly.xml index a95a9907b587..49bd09c47cfc 100644 --- a/src/chrome/content/rules/Technical.ly.xml +++ b/src/chrome/content/rules/Technical.ly.xml @@ -7,12 +7,12 @@ Fetch error: http://www.technical.ly/organization/accessmd-com/ => https://www.t Fetch error: http://www.technical.ly/philly/2016/03/11/federal-open-source-policy-philadelphia/ => https://www.technical.ly/philly/2016/03/11/federal-open-source-policy-philadelphia/: Too many redirects while fetching 'https://www.technical.ly/philly/2016/03/11/federal-open-source-policy-philadelphia/' --> - + - - + diff --git a/src/chrome/content/rules/Technical_Community.com.xml b/src/chrome/content/rules/Technical_Community.com.xml deleted file mode 100644 index ebdd3baa255a..000000000000 --- a/src/chrome/content/rules/Technical_Community.com.xml +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Technical_University_Munich.xml b/src/chrome/content/rules/Technical_University_Munich.xml index 7c16b97c8be1..d24b125ba067 100644 --- a/src/chrome/content/rules/Technical_University_Munich.xml +++ b/src/chrome/content/rules/Technical_University_Munich.xml @@ -50,11 +50,23 @@ Fetch error: http://ias.cs.tum.edu/ => https://ias.cs.tum.edu/: (60, 'SSL certif * Secured by us --> - - - + + + + + + + + + + + + - + + + + - + + + + + + + + + diff --git a/src/chrome/content/rules/Techreport.com.xml b/src/chrome/content/rules/Techreport.com.xml index 2344e27ba42d..26a8f609423a 100644 --- a/src/chrome/content/rules/Techreport.com.xml +++ b/src/chrome/content/rules/Techreport.com.xml @@ -36,5 +36,5 @@ - + diff --git a/src/chrome/content/rules/Techslinger.com.xml b/src/chrome/content/rules/Techslinger.com.xml deleted file mode 100644 index d908ab93ccbd..000000000000 --- a/src/chrome/content/rules/Techslinger.com.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Techstats.net.xml b/src/chrome/content/rules/Techstats.net.xml deleted file mode 100644 index accf637b0003..000000000000 --- a/src/chrome/content/rules/Techstats.net.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Techsupportalert.xml b/src/chrome/content/rules/Techsupportalert.xml deleted file mode 100644 index c7062b5ae8bb..000000000000 --- a/src/chrome/content/rules/Techsupportalert.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Tectonic.com.xml b/src/chrome/content/rules/Tectonic.com.xml index 18fa502af03c..d7085d597da5 100644 --- a/src/chrome/content/rules/Tectonic.com.xml +++ b/src/chrome/content/rules/Tectonic.com.xml @@ -8,7 +8,7 @@ - + - + diff --git a/src/chrome/content/rules/TeenDriverSource.org.xml b/src/chrome/content/rules/TeenDriverSource.org.xml index f3a4b27b7d97..0ed09385492e 100644 --- a/src/chrome/content/rules/TeenDriverSource.org.xml +++ b/src/chrome/content/rules/TeenDriverSource.org.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://teendriversource.org/ => https://teendriversource.org/: Cycle detected - URL already encountered: https://www.teendriversource.org/ Fetch error: http://www.teendriversource.org/ => https://www.teendriversource.org/: Cycle detected - URL already encountered: https://www.teendriversource.org/ --> - + @@ -19,4 +19,4 @@ Fetch error: http://www.teendriversource.org/ => https://www.teendriversource.or - \ No newline at end of file + diff --git a/src/chrome/content/rules/Teen_Revenue.com.xml b/src/chrome/content/rules/Teen_Revenue.com.xml index 09e7936a3470..7545f2f274d0 100644 --- a/src/chrome/content/rules/Teen_Revenue.com.xml +++ b/src/chrome/content/rules/Teen_Revenue.com.xml @@ -8,7 +8,8 @@ - + + @@ -17,4 +18,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Teespring.com.xml b/src/chrome/content/rules/Teespring.com.xml index 657a2a951280..90e450f92a62 100644 --- a/src/chrome/content/rules/Teespring.com.xml +++ b/src/chrome/content/rules/Teespring.com.xml @@ -49,7 +49,7 @@ - + https://www.teevox.com/: (51, "SSL: no al ˢ Secured by us --> - + - + - - - - - - - - - - diff --git a/src/chrome/content/rules/Tek.no.xml b/src/chrome/content/rules/Tek.no.xml index 0b6eeed78fbf..d16e732a86ab 100644 --- a/src/chrome/content/rules/Tek.no.xml +++ b/src/chrome/content/rules/Tek.no.xml @@ -47,7 +47,7 @@ - + https://newton.teksyndicate.com/ ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -26,7 +26,7 @@ Fetch error: http://newton.teksyndicate.com/ => https://newton.teksyndicate.com/ - + https://telmasters.com/: (51, "SSL: no alternative certificate subject name matches target host name 'telmasters.com'") --> - + - + diff --git a/src/chrome/content/rules/Tele-TASK.xml b/src/chrome/content/rules/Tele-TASK.xml index b340c561f5de..5ec0ca597194 100644 --- a/src/chrome/content/rules/Tele-TASK.xml +++ b/src/chrome/content/rules/Tele-TASK.xml @@ -18,4 +18,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Tele2.lt.xml b/src/chrome/content/rules/Tele2.lt.xml index 8c05eee2b38b..95101f5b1cd8 100644 --- a/src/chrome/content/rules/Tele2.lt.xml +++ b/src/chrome/content/rules/Tele2.lt.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://loyaloop.tele2.lt/ => https://loyaloop.tele2.lt/: (7, 'Failed to connect to loyaloop.tele2.lt port 443: No route to host') Unsupported subdomains: - + - pagalba.tele2.lt * - narsyk.tele2.lt * - pyptonas.tele2.lt ** @@ -16,19 +16,19 @@ Fetch error: http://loyaloop.tele2.lt/ => https://loyaloop.tele2.lt/: (7, 'Faile - parkuok.tele2.lt *** - internetas.tele2.lt *** - editorial.tele2.lt *** - + * 404s on HTTPS ** Connection fails, times out, or is refused on HTTPS *** Invalid certificate --> - + - - + + diff --git a/src/chrome/content/rules/Telebrands.xml b/src/chrome/content/rules/Telebrands.xml index c1502417d416..8af43a4164d0 100644 --- a/src/chrome/content/rules/Telebrands.xml +++ b/src/chrome/content/rules/Telebrands.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Telecolumbus.com.xml b/src/chrome/content/rules/Telecolumbus.com.xml index a460e3cbba56..d143b8634f92 100644 --- a/src/chrome/content/rules/Telecolumbus.com.xml +++ b/src/chrome/content/rules/Telecolumbus.com.xml @@ -2,11 +2,11 @@ - + - + diff --git a/src/chrome/content/rules/Telecommunications-Industry-Ombudsman.xml b/src/chrome/content/rules/Telecommunications-Industry-Ombudsman.xml new file mode 100644 index 000000000000..f6fc35670ae6 --- /dev/null +++ b/src/chrome/content/rules/Telecommunications-Industry-Ombudsman.xml @@ -0,0 +1,24 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Telefonica-mismatches.xml b/src/chrome/content/rules/Telefonica-mismatches.xml index b9bffa0501fe..ab66c8b83a50 100644 --- a/src/chrome/content/rules/Telefonica-mismatches.xml +++ b/src/chrome/content/rules/Telefonica-mismatches.xml @@ -11,8 +11,8 @@ - - + + diff --git a/src/chrome/content/rules/Telefonica.xml b/src/chrome/content/rules/Telefonica.xml index ec37264a1d4e..170a2633e0a5 100644 --- a/src/chrome/content/rules/Telefonica.xml +++ b/src/chrome/content/rules/Telefonica.xml @@ -1,36 +1,5 @@ - + - - + - - - - - - - - - + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + - + diff --git a/src/chrome/content/rules/Telegr.am.xml b/src/chrome/content/rules/Telegr.am.xml index 5bb90927a31b..1c3c337bcd54 100644 --- a/src/chrome/content/rules/Telegr.am.xml +++ b/src/chrome/content/rules/Telegr.am.xml @@ -1,7 +1,9 @@ - + + + diff --git a/src/chrome/content/rules/Telegram.org.xml b/src/chrome/content/rules/Telegram.org.xml deleted file mode 100644 index 432c6023d761..000000000000 --- a/src/chrome/content/rules/Telegram.org.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Telegram.wiki.xml b/src/chrome/content/rules/Telegram.wiki.xml index 1a9d65d0b1f5..f81e4c1a29ca 100644 --- a/src/chrome/content/rules/Telegram.wiki.xml +++ b/src/chrome/content/rules/Telegram.wiki.xml @@ -1,17 +1,17 @@ - - - - - - - - + + + + + + + + diff --git a/src/chrome/content/rules/Telegraph-Media-Group.xml b/src/chrome/content/rules/Telegraph-Media-Group.xml index b124440e2053..e2b455747305 100644 --- a/src/chrome/content/rules/Telegraph-Media-Group.xml +++ b/src/chrome/content/rules/Telegraph-Media-Group.xml @@ -1,8 +1,4 @@ - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -161,7 +117,7 @@ Fetch error: http://webtrends.telegraph.co.uk/ => https://webtrends.telegraph.co - + diff --git a/src/chrome/content/rules/Telekom-Malaysia.xml b/src/chrome/content/rules/Telekom-Malaysia.xml index 336b8aaab898..fa15e32c5545 100644 --- a/src/chrome/content/rules/Telekom-Malaysia.xml +++ b/src/chrome/content/rules/Telekom-Malaysia.xml @@ -11,7 +11,7 @@ Fetch error: http://tmshop.tm.com.my/ => https://tmshop.tm.com.my/: Too many red - securevpn (self-signed) --> - + diff --git a/src/chrome/content/rules/Telekom-Partnerwelt.de.xml b/src/chrome/content/rules/Telekom-Partnerwelt.de.xml index 43fe06e7dec3..e0eb8df945f7 100644 --- a/src/chrome/content/rules/Telekom-Partnerwelt.de.xml +++ b/src/chrome/content/rules/Telekom-Partnerwelt.de.xml @@ -27,7 +27,7 @@ Fetch error: http://telekom-partnerwelt.de/ => https://www.telekom-partnerwelt.d * Secured by us --> - + diff --git a/src/chrome/content/rules/Telekom.sk.xml b/src/chrome/content/rules/Telekom.sk.xml index 180728a3f5f6..02817bd7b96a 100644 --- a/src/chrome/content/rules/Telekom.sk.xml +++ b/src/chrome/content/rules/Telekom.sk.xml @@ -13,6 +13,7 @@ + - - - - - - - - - - - diff --git a/src/chrome/content/rules/Telemetry.xml b/src/chrome/content/rules/Telemetry.xml deleted file mode 100644 index 0b3698392e0b..000000000000 --- a/src/chrome/content/rules/Telemetry.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Telenor-banka.xml b/src/chrome/content/rules/Telenor-banka.xml new file mode 100644 index 000000000000..da8706bfb33f --- /dev/null +++ b/src/chrome/content/rules/Telenor-banka.xml @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Telenor.se.xml b/src/chrome/content/rules/Telenor.se.xml index 798e11511394..b772a23f3941 100644 --- a/src/chrome/content/rules/Telenor.se.xml +++ b/src/chrome/content/rules/Telenor.se.xml @@ -21,7 +21,7 @@ Fetch error: http://www.euromail.se/ => https://www.euromail.se/: (28, 'Connecti - minasidor.telenor.se --> - + @@ -39,4 +39,4 @@ Fetch error: http://www.euromail.se/ => https://www.euromail.se/: (28, 'Connecti - \ No newline at end of file + diff --git a/src/chrome/content/rules/Telepigeon.com.xml b/src/chrome/content/rules/Telepigeon.com.xml index f9109ca92c37..9895ba603903 100644 --- a/src/chrome/content/rules/Telepigeon.com.xml +++ b/src/chrome/content/rules/Telepigeon.com.xml @@ -15,7 +15,7 @@ Fetch error: http://www.telepigeon.com/ => https://www.telepigeon.com/: (28, 'Co - www.telepigeon.com --> - + diff --git a/src/chrome/content/rules/Telerik.com.xml b/src/chrome/content/rules/Telerik.com.xml index 63cc671f4e64..e31ed461afd3 100644 --- a/src/chrome/content/rules/Telerik.com.xml +++ b/src/chrome/content/rules/Telerik.com.xml @@ -32,7 +32,11 @@ - + + + + + @@ -52,7 +56,6 @@ - + diff --git a/src/chrome/content/rules/TeleworkGovAu.xml b/src/chrome/content/rules/TeleworkGovAu.xml deleted file mode 100644 index 84663fcf06c5..000000000000 --- a/src/chrome/content/rules/TeleworkGovAu.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Telex.xml b/src/chrome/content/rules/Telex.xml index fe042bb82f45..7e852dd221d2 100644 --- a/src/chrome/content/rules/Telex.xml +++ b/src/chrome/content/rules/Telex.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://notblocked.telex.cc/ => https://notblocked.telex.cc/: (6, 'Could not resolve host: notblocked.telex.cc') --> - + @@ -13,4 +13,4 @@ Fetch error: http://notblocked.telex.cc/ => https://notblocked.telex.cc/: (6, 'C - \ No newline at end of file + diff --git a/src/chrome/content/rules/Telfort.nl.xml b/src/chrome/content/rules/Telfort.nl.xml index 09b109034287..1325b852c587 100644 --- a/src/chrome/content/rules/Telfort.nl.xml +++ b/src/chrome/content/rules/Telfort.nl.xml @@ -16,7 +16,12 @@ - + + + + + + @@ -28,10 +33,9 @@ - + diff --git a/src/chrome/content/rules/Telia.se.xml b/src/chrome/content/rules/Telia.se.xml index f9189624ce8d..adc7fe9d5ccf 100644 --- a/src/chrome/content/rules/Telia.se.xml +++ b/src/chrome/content/rules/Telia.se.xml @@ -1,7 +1,7 @@ - + - + diff --git a/src/chrome/content/rules/Tello.xml b/src/chrome/content/rules/Tello.xml index 663023d4cdc8..5496455a5b09 100644 --- a/src/chrome/content/rules/Tello.xml +++ b/src/chrome/content/rules/Tello.xml @@ -1,16 +1,11 @@ + - - - - - - - diff --git a/src/chrome/content/rules/Telnic.xml b/src/chrome/content/rules/Telnic.xml index db421cbe8b0d..3777aeeb56b8 100644 --- a/src/chrome/content/rules/Telnic.xml +++ b/src/chrome/content/rules/Telnic.xml @@ -14,7 +14,7 @@ Fetch error: http://nic.tel/ => https://www.telnic.org/: (6, 'Could not resolve - dev.telnic.org (ssl_error_rx_record_too_long) --> - + diff --git a/src/chrome/content/rules/Telphin.ru.xml b/src/chrome/content/rules/Telphin.ru.xml index abd15c6e4c98..a556c5721dad 100644 --- a/src/chrome/content/rules/Telphin.ru.xml +++ b/src/chrome/content/rules/Telphin.ru.xml @@ -12,7 +12,7 @@ test-pbx.telphin.ru ³ ² refused ³ timed out --> - + diff --git a/src/chrome/content/rules/Telstra-Corporation-mismatches.xml b/src/chrome/content/rules/Telstra-Corporation-mismatches.xml index 28f658548381..6ab1c9144fcf 100644 --- a/src/chrome/content/rules/Telstra-Corporation-mismatches.xml +++ b/src/chrome/content/rules/Telstra-Corporation-mismatches.xml @@ -3,7 +3,6 @@ - + diff --git a/src/chrome/content/rules/Telstra-Corporation.xml b/src/chrome/content/rules/Telstra-Corporation.xml index 049418382efc..b157e8c9f61e 100644 --- a/src/chrome/content/rules/Telstra-Corporation.xml +++ b/src/chrome/content/rules/Telstra-Corporation.xml @@ -13,15 +13,11 @@ Fetch error: http://sockassist.com.au/ => https://sockassist.com.au/: (60, 'SSL See Telstra-Corporation-mismatches.xml for problematic rules. --> - + - - - + diff --git a/src/chrome/content/rules/Telstra.com.au.xml b/src/chrome/content/rules/Telstra.com.au.xml new file mode 100644 index 000000000000..52dbc48b22c2 --- /dev/null +++ b/src/chrome/content/rules/Telstra.com.au.xml @@ -0,0 +1,320 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Telstra.com.xml b/src/chrome/content/rules/Telstra.com.xml new file mode 100644 index 000000000000..1ecb951a5aa4 --- /dev/null +++ b/src/chrome/content/rules/Telstra.com.xml @@ -0,0 +1,674 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Teltarif.xml b/src/chrome/content/rules/Teltarif.xml index 2208f93c1853..11bf0c526471 100644 --- a/src/chrome/content/rules/Teltarif.xml +++ b/src/chrome/content/rules/Teltarif.xml @@ -1,15 +1,15 @@ - + - + - + https://msg.telus.com/: (7, 'Failed to connect to msg.telus.com port 443: Connection refused') -Fetch error: http://telushealth.com/ => https://telushealth.com/: (51, "SSL: no alternative certificate subject name matches target host name 'telushealth.com'") -Fetch error: http://telusmobility.com/ => https://telusmobility.com/: (51, "SSL: no alternative certificate subject name matches target host name 'telusmobility.com'") + Non-functional hosts + Couldn't connect to server: + - msg.telus.com + + SSL peer certificate was not OK: + - telushealth.com + - telusmobility.com + Incomplete certificate chain error: + - mobileidentity.telus.com --> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Temando.com.xml b/src/chrome/content/rules/Temando.com.xml deleted file mode 100644 index 652bf84e33a7..000000000000 --- a/src/chrome/content/rules/Temando.com.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Temp-Mail.xml b/src/chrome/content/rules/Temp-Mail.xml index bcea5b0a3515..6602282e3035 100644 --- a/src/chrome/content/rules/Temp-Mail.xml +++ b/src/chrome/content/rules/Temp-Mail.xml @@ -10,7 +10,7 @@ Fetch error: http://www.temp-mail.ru/ => https://www.temp-mail.ru/: (6, 'Could n ¹: Timeout --> - + diff --git a/src/chrome/content/rules/Template_Monster.com.xml b/src/chrome/content/rules/Template_Monster.com.xml index e8396bd46c1d..8fbc2f317946 100644 --- a/src/chrome/content/rules/Template_Monster.com.xml +++ b/src/chrome/content/rules/Template_Monster.com.xml @@ -58,10 +58,15 @@ - + + + + - + + + - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Tendatta.com.xml b/src/chrome/content/rules/Tendatta.com.xml deleted file mode 100644 index 26a40c9161c3..000000000000 --- a/src/chrome/content/rules/Tendatta.com.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Tenhou.net.xml b/src/chrome/content/rules/Tenhou.net.xml new file mode 100644 index 000000000000..56bdafe13a32 --- /dev/null +++ b/src/chrome/content/rules/Tenhou.net.xml @@ -0,0 +1,12 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Tenon.com.xml b/src/chrome/content/rules/Tenon.com.xml index 766667304f85..d93ee27f7088 100644 --- a/src/chrome/content/rules/Tenon.com.xml +++ b/src/chrome/content/rules/Tenon.com.xml @@ -7,7 +7,7 @@ Fetch error: http://www.tenon.com/ => https://www.tenon.com/: (28, 'Connection t ^: cert only matches www --> - + diff --git a/src/chrome/content/rules/Tenpay.com-falsemixed.xml b/src/chrome/content/rules/Tenpay.com-falsemixed.xml deleted file mode 100644 index e30b3f880e82..000000000000 --- a/src/chrome/content/rules/Tenpay.com-falsemixed.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Tenpay.com.xml b/src/chrome/content/rules/Tenpay.com.xml index 08672108b7f3..307de0be02ad 100644 --- a/src/chrome/content/rules/Tenpay.com.xml +++ b/src/chrome/content/rules/Tenpay.com.xml @@ -12,7 +12,7 @@ - open 200 redirects to error.shtml - sdc Blank page - union Dropped - + Problematic hosts in *tenpay.com: @@ -41,7 +41,7 @@ - + https://tent.is/: (6, 'Could not resolve host: t - * (user subdomains) --> - + @@ -27,4 +27,4 @@ Fetch error: http://tent.is/ => https://tent.is/: (6, 'Could not resolve host: t - \ No newline at end of file + diff --git a/src/chrome/content/rules/Teo.xml b/src/chrome/content/rules/Teo.xml index 40bfeabac93f..2ae5878d23f6 100644 --- a/src/chrome/content/rules/Teo.xml +++ b/src/chrome/content/rules/Teo.xml @@ -1,7 +1,7 @@ - + diff --git a/src/chrome/content/rules/Tequipment.NET.xml b/src/chrome/content/rules/Tequipment.NET.xml index 74c7ab0ae3fe..372c3d399f43 100644 --- a/src/chrome/content/rules/Tequipment.NET.xml +++ b/src/chrome/content/rules/Tequipment.NET.xml @@ -14,4 +14,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Terena.org.xml b/src/chrome/content/rules/Terena.org.xml index 0458294d40e5..320fab5bc1ab 100644 --- a/src/chrome/content/rules/Terena.org.xml +++ b/src/chrome/content/rules/Terena.org.xml @@ -86,7 +86,7 @@ Non-2xx HTTP code: http://tnc2006.terena.org/ (200) => https://www.terena.org/ev - www.terena.org --> - + diff --git a/src/chrome/content/rules/Terminal.com.xml b/src/chrome/content/rules/Terminal.com.xml index 66ebe81ff1c8..b4824fa0994f 100644 --- a/src/chrome/content/rules/Terminal.com.xml +++ b/src/chrome/content/rules/Terminal.com.xml @@ -16,7 +16,7 @@ Fetch error: http://www.terminal.com/ => https://www.terminal.com/: (7, 'Failed - www.terminal.com --> - + diff --git a/src/chrome/content/rules/Terminatio.org.xml b/src/chrome/content/rules/Terminatio.org.xml deleted file mode 100644 index e0ad4a8440de..000000000000 --- a/src/chrome/content/rules/Terminatio.org.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/TerraMailMX.xml b/src/chrome/content/rules/TerraMailMX.xml deleted file mode 100644 index ce0657115525..000000000000 --- a/src/chrome/content/rules/TerraMailMX.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/TerraUserCentralMX.xml b/src/chrome/content/rules/TerraUserCentralMX.xml index 0ba79ae32404..ce380eaec0dd 100644 --- a/src/chrome/content/rules/TerraUserCentralMX.xml +++ b/src/chrome/content/rules/TerraUserCentralMX.xml @@ -1,4 +1,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Terra_Bank.ru.xml b/src/chrome/content/rules/Terra_Bank.ru.xml deleted file mode 100644 index b80f2754448b..000000000000 --- a/src/chrome/content/rules/Terra_Bank.ru.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Terres_Oubliees.com.xml b/src/chrome/content/rules/Terres_Oubliees.com.xml index 9a1c08f6d3ea..4741abc25e2b 100644 --- a/src/chrome/content/rules/Terres_Oubliees.com.xml +++ b/src/chrome/content/rules/Terres_Oubliees.com.xml @@ -1,7 +1,8 @@ - + + @@ -13,7 +14,6 @@ - + diff --git a/src/chrome/content/rules/Terse_Systems.com.xml b/src/chrome/content/rules/Terse_Systems.com.xml index a7ec7836ef4a..47b270ca1776 100644 --- a/src/chrome/content/rules/Terse_Systems.com.xml +++ b/src/chrome/content/rules/Terse_Systems.com.xml @@ -31,7 +31,7 @@ --> - + - + diff --git a/src/chrome/content/rules/Tesco_Compare.com.xml b/src/chrome/content/rules/Tesco_Compare.com.xml index 3cc5bee914b0..81d6b6976dca 100644 --- a/src/chrome/content/rules/Tesco_Compare.com.xml +++ b/src/chrome/content/rules/Tesco_Compare.com.xml @@ -13,7 +13,7 @@ Fetch error: http://www.tescocompare.com/ => https://www.tescocompare.com/: (7, Cert only matches www. --> - + diff --git a/src/chrome/content/rules/Tesco_Diets.com.xml b/src/chrome/content/rules/Tesco_Diets.com.xml index b4a4eac6f54b..924e46b4a113 100644 --- a/src/chrome/content/rules/Tesco_Diets.com.xml +++ b/src/chrome/content/rules/Tesco_Diets.com.xml @@ -24,7 +24,7 @@ Fetch error: http://www.tescodiets.com/ => https://www.tescodiets.com/: (51, "SS * Secured by us --> - + diff --git a/src/chrome/content/rules/Tesco_Help.com.xml b/src/chrome/content/rules/Tesco_Help.com.xml index 592a9834c342..d8863e5bfad9 100644 --- a/src/chrome/content/rules/Tesco_Help.com.xml +++ b/src/chrome/content/rules/Tesco_Help.com.xml @@ -12,7 +12,7 @@ - + https://tescoshareandearn.com/: (6, 'Could not resolve host: tescoshareandearn.com') -Fetch error: http://www.tescoshareandearn.com/ => https://www.tescoshareandearn.com/: (6, 'Could not resolve host: www.tescoshareandearn.com') - ---> - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Tesla_Motors.xml b/src/chrome/content/rules/Tesla_Motors.xml index 8aedb6bf170a..39baf068e19a 100644 --- a/src/chrome/content/rules/Tesla_Motors.xml +++ b/src/chrome/content/rules/Tesla_Motors.xml @@ -27,7 +27,7 @@ --> - + - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Test-IPv6.cz.xml b/src/chrome/content/rules/Test-IPv6.cz.xml deleted file mode 100644 index aacb1037062d..000000000000 --- a/src/chrome/content/rules/Test-IPv6.cz.xml +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Test-IPv6.xml b/src/chrome/content/rules/Test-IPv6.xml new file mode 100644 index 000000000000..abdd2f73626c --- /dev/null +++ b/src/chrome/content/rules/Test-IPv6.xml @@ -0,0 +1,457 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/TestCloud.io.xml b/src/chrome/content/rules/TestCloud.io.xml index d7f9811ffe36..6d2f9d7e0f35 100644 --- a/src/chrome/content/rules/TestCloud.io.xml +++ b/src/chrome/content/rules/TestCloud.io.xml @@ -28,7 +28,7 @@ Fetch error: http://testcloud.io/ => https://testcloud.io/: (7, 'Failed to conne - app.thetestcloud.com --> - + diff --git a/src/chrome/content/rules/TestPolitique.fr.xml b/src/chrome/content/rules/TestPolitique.fr.xml index 3f648c87f7a5..88f36788e88d 100644 --- a/src/chrome/content/rules/TestPolitique.fr.xml +++ b/src/chrome/content/rules/TestPolitique.fr.xml @@ -11,7 +11,7 @@ - diff --git a/src/chrome/content/rules/Test_Equipment_Depot.xml b/src/chrome/content/rules/Test_Equipment_Depot.xml index 77c1e1c4dd7e..e876027c7d2a 100644 --- a/src/chrome/content/rules/Test_Equipment_Depot.xml +++ b/src/chrome/content/rules/Test_Equipment_Depot.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Testssl.sh.xml b/src/chrome/content/rules/Testssl.sh.xml index d95377dc4331..90736f2faa08 100644 --- a/src/chrome/content/rules/Testssl.sh.xml +++ b/src/chrome/content/rules/Testssl.sh.xml @@ -1,14 +1,18 @@ - - + + - + diff --git a/src/chrome/content/rules/TetherReport.com.xml b/src/chrome/content/rules/TetherReport.com.xml new file mode 100644 index 000000000000..87afb7239c75 --- /dev/null +++ b/src/chrome/content/rules/TetherReport.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Tetu.com.xml b/src/chrome/content/rules/Tetu.com.xml index 3bb25866f28b..1f15bc728104 100644 --- a/src/chrome/content/rules/Tetu.com.xml +++ b/src/chrome/content/rules/Tetu.com.xml @@ -19,7 +19,7 @@ - + diff --git a/src/chrome/content/rules/Texas-Association-of-School-Boards.xml b/src/chrome/content/rules/Texas-Association-of-School-Boards.xml index a5a4ea9d2c70..baf7575a3579 100644 --- a/src/chrome/content/rules/Texas-Association-of-School-Boards.xml +++ b/src/chrome/content/rules/Texas-Association-of-School-Boards.xml @@ -1,9 +1,10 @@ - + + - + diff --git a/src/chrome/content/rules/Texas-Department-of-State-Health-Services.xml b/src/chrome/content/rules/Texas-Department-of-State-Health-Services.xml deleted file mode 100644 index 804a0897a519..000000000000 --- a/src/chrome/content/rules/Texas-Department-of-State-Health-Services.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Texas-Instruments.xml b/src/chrome/content/rules/Texas-Instruments.xml index 56a6bc9bda50..69853f08f389 100644 --- a/src/chrome/content/rules/Texas-Instruments.xml +++ b/src/chrome/content/rules/Texas-Instruments.xml @@ -1,241 +1,59 @@ - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + - - + - + - + + + - - + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Texas-State-Library-and-Archives-Commission.xml b/src/chrome/content/rules/Texas-State-Library-and-Archives-Commission.xml index e8e0dbb900b2..f9e68f0bcae7 100644 --- a/src/chrome/content/rules/Texas-State-Library-and-Archives-Commission.xml +++ b/src/chrome/content/rules/Texas-State-Library-and-Archives-Commission.xml @@ -1,13 +1,13 @@ - + - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Texas_Tribune.org.xml b/src/chrome/content/rules/Texas_Tribune.org.xml index 39180ce14969..dd29b0028a7d 100644 --- a/src/chrome/content/rules/Texas_Tribune.org.xml +++ b/src/chrome/content/rules/Texas_Tribune.org.xml @@ -19,7 +19,8 @@ - + + @@ -28,7 +29,6 @@ - + diff --git a/src/chrome/content/rules/Texblog.org.xml b/src/chrome/content/rules/Texblog.org.xml new file mode 100644 index 000000000000..1dc7330148ea --- /dev/null +++ b/src/chrome/content/rules/Texblog.org.xml @@ -0,0 +1,13 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/TextFixer.com.xml b/src/chrome/content/rules/TextFixer.com.xml new file mode 100644 index 000000000000..daafe150e634 --- /dev/null +++ b/src/chrome/content/rules/TextFixer.com.xml @@ -0,0 +1,10 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/TextMagic.com.xml b/src/chrome/content/rules/TextMagic.com.xml index 77cdcbdca818..d3c1c9b19e4c 100644 --- a/src/chrome/content/rules/TextMagic.com.xml +++ b/src/chrome/content/rules/TextMagic.com.xml @@ -34,7 +34,7 @@ - + - + + - - + - + diff --git a/src/chrome/content/rules/Texthelp.com.xml b/src/chrome/content/rules/Texthelp.com.xml index b88dff0fe044..e73cb02e0d0c 100644 --- a/src/chrome/content/rules/Texthelp.com.xml +++ b/src/chrome/content/rules/Texthelp.com.xml @@ -22,7 +22,7 @@ --> - + https://textracer.dk/: (7, 'Failed to conne Fetch error: http://www.textracer.dk/ => https://www.textracer.dk/: (7, 'Failed to connect to www.textracer.dk port 443: Connection refused') --> - + diff --git a/src/chrome/content/rules/Tfb.ru.xml b/src/chrome/content/rules/Tfb.ru.xml index 17d5ee30aba4..3c458d12d7ea 100644 --- a/src/chrome/content/rules/Tfb.ru.xml +++ b/src/chrome/content/rules/Tfb.ru.xml @@ -24,7 +24,7 @@ voip-e.tfb.ru ³ ² refused ³ timed out --> - + diff --git a/src/chrome/content/rules/Th-nuernberg.de.xml b/src/chrome/content/rules/Th-nuernberg.de.xml deleted file mode 100644 index b34f50a1d4c9..000000000000 --- a/src/chrome/content/rules/Th-nuernberg.de.xml +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Thalasseo.com.xml b/src/chrome/content/rules/Thalasseo.com.xml index bf050824f200..eccc6d025386 100644 --- a/src/chrome/content/rules/Thalasseo.com.xml +++ b/src/chrome/content/rules/Thalasseo.com.xml @@ -40,7 +40,7 @@ --> - + https://www.thalescomminc.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.thalescomminc.com'") Fetch error: http://www.thalescomminc.com/ => https://www.thalescomminc.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.thalescomminc.com'") --> - + - + - + @@ -21,7 +21,7 @@ Fetch error: http://portal.thalysnet.com/ => https://portal.thalysnet.com/: (6, --> - + diff --git a/src/chrome/content/rules/Thankyou4caring.org.xml b/src/chrome/content/rules/Thankyou4caring.org.xml index 50160e5f783a..22c2eea69e7c 100644 --- a/src/chrome/content/rules/Thankyou4caring.org.xml +++ b/src/chrome/content/rules/Thankyou4caring.org.xml @@ -15,7 +15,7 @@ --> - + + + + + + + + diff --git a/src/chrome/content/rules/Thawte.xml b/src/chrome/content/rules/Thawte.xml index 65cbf7c5402f..daeb1cdaa4d9 100644 --- a/src/chrome/content/rules/Thawte.xml +++ b/src/chrome/content/rules/Thawte.xml @@ -2,7 +2,7 @@ - ocsp.thawte.com --> - + diff --git a/src/chrome/content/rules/The-ACLU-of-Idaho.xml b/src/chrome/content/rules/The-ACLU-of-Idaho.xml index 0c6d005aeed1..6933b0259ae0 100644 --- a/src/chrome/content/rules/The-ACLU-of-Idaho.xml +++ b/src/chrome/content/rules/The-ACLU-of-Idaho.xml @@ -2,11 +2,10 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/The-Art-Institutes.xml b/src/chrome/content/rules/The-Art-Institutes.xml index 0b07507b2e64..4992ccd31d69 100644 --- a/src/chrome/content/rules/The-Art-Institutes.xml +++ b/src/chrome/content/rules/The-Art-Institutes.xml @@ -14,7 +14,8 @@ - + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/The-Cutest-Site-on-the-Block.xml b/src/chrome/content/rules/The-Cutest-Site-on-the-Block.xml index f0f63577c286..5a435345c1c7 100644 --- a/src/chrome/content/rules/The-Cutest-Site-on-the-Block.xml +++ b/src/chrome/content/rules/The-Cutest-Site-on-the-Block.xml @@ -6,13 +6,13 @@ Fetch error: http://thecutestsiteontheblock.com/ => https://www.thecutestsiteont Disabled by https-everywhere-checker because: Fetch error: http://thecutestsiteontheblock.com/ => https://www.thecutestsiteontheblock.com/: (7, 'Failed to connect to www.thecutestsiteontheblock.com port 443: Connection refused') --> - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/The-Escapist-Expo.xml b/src/chrome/content/rules/The-Escapist-Expo.xml deleted file mode 100644 index 90327fdc442b..000000000000 --- a/src/chrome/content/rules/The-Escapist-Expo.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/The-Event-Diva.xml b/src/chrome/content/rules/The-Event-Diva.xml index 62251f4a42b4..59e902e854e0 100644 --- a/src/chrome/content/rules/The-Event-Diva.xml +++ b/src/chrome/content/rules/The-Event-Diva.xml @@ -4,7 +4,7 @@ - + - - - - - - - - - - - - diff --git a/src/chrome/content/rules/The-Flirble-Organisation.xml b/src/chrome/content/rules/The-Flirble-Organisation.xml index e1c2eb5e9790..0fbb9687cd63 100644 --- a/src/chrome/content/rules/The-Flirble-Organisation.xml +++ b/src/chrome/content/rules/The-Flirble-Organisation.xml @@ -19,7 +19,7 @@ Fetch error: http://wiki.flirble.org/ => https://wiki.flirble.org/: (6, 'Could n - www.flirble.org --> - + @@ -39,7 +39,7 @@ Fetch error: http://wiki.flirble.org/ => https://wiki.flirble.org/: (6, 'Could n - + - + diff --git a/src/chrome/content/rules/The-Iconic.com.au.xml b/src/chrome/content/rules/The-Iconic.com.au.xml new file mode 100644 index 000000000000..86fee073ed29 --- /dev/null +++ b/src/chrome/content/rules/The-Iconic.com.au.xml @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/The-Inspiration-Room.xml b/src/chrome/content/rules/The-Inspiration-Room.xml index 843b35f5ec8a..088d789d2978 100644 --- a/src/chrome/content/rules/The-Inspiration-Room.xml +++ b/src/chrome/content/rules/The-Inspiration-Room.xml @@ -3,7 +3,7 @@ - + diff --git a/src/chrome/content/rules/The-List.xml b/src/chrome/content/rules/The-List.xml index 0d927365c0e4..70a169b32bca 100644 --- a/src/chrome/content/rules/The-List.xml +++ b/src/chrome/content/rules/The-List.xml @@ -27,7 +27,7 @@ - + https://donate.thenation.co * Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -65,7 +65,7 @@ Fetch error: http://nationbuilders.thenation.com/ => https://donate.thenation.co - + - + + + + + @@ -33,7 +37,6 @@ - + diff --git a/src/chrome/content/rules/The-Next-Web.xml b/src/chrome/content/rules/The-Next-Web.xml index 96929871a38d..07d1e29f7bbb 100644 --- a/src/chrome/content/rules/The-Next-Web.xml +++ b/src/chrome/content/rules/The-Next-Web.xml @@ -30,7 +30,15 @@ - + + + + + + + + + - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/The-Public-Index.xml b/src/chrome/content/rules/The-Public-Index.xml index 2326ca7333db..410880e7f917 100644 --- a/src/chrome/content/rules/The-Public-Index.xml +++ b/src/chrome/content/rules/The-Public-Index.xml @@ -2,7 +2,8 @@ - + + diff --git a/src/chrome/content/rules/The-Republic.xml b/src/chrome/content/rules/The-Republic.xml index a6c3810bd3d3..d299424f04bd 100644 --- a/src/chrome/content/rules/The-Republic.xml +++ b/src/chrome/content/rules/The-Republic.xml @@ -14,7 +14,7 @@ - diff --git a/src/chrome/content/rules/The-Skynet-Project.xml b/src/chrome/content/rules/The-Skynet-Project.xml index 01ecddb327f5..48d4bb770ff4 100644 --- a/src/chrome/content/rules/The-Skynet-Project.xml +++ b/src/chrome/content/rules/The-Skynet-Project.xml @@ -30,7 +30,7 @@ Fetch error: http://www.skynet.ie/ => https://www.skynet.ie/: (60, 'SSL certific - wiki --> - + diff --git a/src/chrome/content/rules/The-Vault-Bar.xml b/src/chrome/content/rules/The-Vault-Bar.xml index c24c0d814d39..47eb79bcfe25 100644 --- a/src/chrome/content/rules/The-Vault-Bar.xml +++ b/src/chrome/content/rules/The-Vault-Bar.xml @@ -5,7 +5,7 @@ - + - - - - - - - - diff --git a/src/chrome/content/rules/The-Wrap.xml b/src/chrome/content/rules/The-Wrap.xml index a1cccc6717df..bc258593288e 100644 --- a/src/chrome/content/rules/The-Wrap.xml +++ b/src/chrome/content/rules/The-Wrap.xml @@ -28,7 +28,8 @@ Fetch error: http://thewrap.com/ => https://www.thewrap.com/: (51, "SSL: no alte - + + + + + + + diff --git a/src/chrome/content/rules/TheAnarchistLibrary.org.xml b/src/chrome/content/rules/TheAnarchistLibrary.org.xml index c2c84f9ae67e..0590d807499e 100644 --- a/src/chrome/content/rules/TheAnarchistLibrary.org.xml +++ b/src/chrome/content/rules/TheAnarchistLibrary.org.xml @@ -1,9 +1,9 @@ @@ -13,7 +13,15 @@ + + + + + + + + diff --git a/src/chrome/content/rules/TheArchive.me.xml b/src/chrome/content/rules/TheArchive.me.xml index 01fb8a431f79..5b3d61d7cb04 100644 --- a/src/chrome/content/rules/TheArchive.me.xml +++ b/src/chrome/content/rules/TheArchive.me.xml @@ -3,6 +3,6 @@ - + diff --git a/src/chrome/content/rules/TheBabushkasOfChernobyl.com.xml b/src/chrome/content/rules/TheBabushkasOfChernobyl.com.xml new file mode 100644 index 000000000000..ec5b775242a6 --- /dev/null +++ b/src/chrome/content/rules/TheBabushkasOfChernobyl.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/TheBanners.uk.xml b/src/chrome/content/rules/TheBanners.uk.xml new file mode 100644 index 000000000000..71af903075fb --- /dev/null +++ b/src/chrome/content/rules/TheBanners.uk.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/TheBookPeople.xml b/src/chrome/content/rules/TheBookPeople.xml index 377d0a9e94b8..e218421b2ced 100644 --- a/src/chrome/content/rules/TheBookPeople.xml +++ b/src/chrome/content/rules/TheBookPeople.xml @@ -5,4 +5,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/TheChronicleHerald.ca.xml b/src/chrome/content/rules/TheChronicleHerald.ca.xml new file mode 100644 index 000000000000..1fcd1c2afd20 --- /dev/null +++ b/src/chrome/content/rules/TheChronicleHerald.ca.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/TheChurchofJesusChristofLatterdaySaints.xml b/src/chrome/content/rules/TheChurchofJesusChristofLatterdaySaints.xml deleted file mode 100644 index 7065fae8e8d9..000000000000 --- a/src/chrome/content/rules/TheChurchofJesusChristofLatterdaySaints.xml +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/TheCityUK.xml b/src/chrome/content/rules/TheCityUK.xml index 72b9c397947b..021558ee7dc7 100644 --- a/src/chrome/content/rules/TheCityUK.xml +++ b/src/chrome/content/rules/TheCityUK.xml @@ -13,4 +13,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/TheClaroGroup.com.xml b/src/chrome/content/rules/TheClaroGroup.com.xml new file mode 100644 index 000000000000..5df0e50519d5 --- /dev/null +++ b/src/chrome/content/rules/TheClaroGroup.com.xml @@ -0,0 +1,27 @@ + + + + + + + diff --git a/src/chrome/content/rules/TheDailyWTF.com.xml b/src/chrome/content/rules/TheDailyWTF.com.xml new file mode 100644 index 000000000000..df6df8a023fb --- /dev/null +++ b/src/chrome/content/rules/TheDailyWTF.com.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/TheDiplomat.com.xml b/src/chrome/content/rules/TheDiplomat.com.xml new file mode 100644 index 000000000000..32b85a72c6a8 --- /dev/null +++ b/src/chrome/content/rules/TheDiplomat.com.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/TheDocumentFoundation.xml b/src/chrome/content/rules/TheDocumentFoundation.xml deleted file mode 100644 index 7f56fab401cd..000000000000 --- a/src/chrome/content/rules/TheDocumentFoundation.xml +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/TheDogBowl.ca.xml b/src/chrome/content/rules/TheDogBowl.ca.xml new file mode 100644 index 000000000000..597526754863 --- /dev/null +++ b/src/chrome/content/rules/TheDogBowl.ca.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/TheEpochTimes.com.xml b/src/chrome/content/rules/TheEpochTimes.com.xml new file mode 100644 index 000000000000..9fbb88843f92 --- /dev/null +++ b/src/chrome/content/rules/TheEpochTimes.com.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/TheEroticReview.xml b/src/chrome/content/rules/TheEroticReview.xml index c5260540cc73..4e1bf53762c8 100644 --- a/src/chrome/content/rules/TheEroticReview.xml +++ b/src/chrome/content/rules/TheEroticReview.xml @@ -4,6 +4,6 @@ - - + + diff --git a/src/chrome/content/rules/TheFader.com.xml b/src/chrome/content/rules/TheFader.com.xml new file mode 100644 index 000000000000..2dfa08a2a677 --- /dev/null +++ b/src/chrome/content/rules/TheFader.com.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/TheFappening2015.com.xml b/src/chrome/content/rules/TheFappening2015.com.xml new file mode 100644 index 000000000000..5ded32bf4cac --- /dev/null +++ b/src/chrome/content/rules/TheFappening2015.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/TheFappeningBlog.com.xml b/src/chrome/content/rules/TheFappeningBlog.com.xml new file mode 100644 index 000000000000..171cce8f2343 --- /dev/null +++ b/src/chrome/content/rules/TheFappeningBlog.com.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/TheFashionLaw.com.xml b/src/chrome/content/rules/TheFashionLaw.com.xml new file mode 100644 index 000000000000..0c7b0a547878 --- /dev/null +++ b/src/chrome/content/rules/TheFashionLaw.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/TheFederalistPapers.org.xml b/src/chrome/content/rules/TheFederalistPapers.org.xml new file mode 100644 index 000000000000..e78f75909370 --- /dev/null +++ b/src/chrome/content/rules/TheFederalistPapers.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/TheFreeDictionary.com.xml b/src/chrome/content/rules/TheFreeDictionary.com.xml new file mode 100644 index 000000000000..cb70c668f7cb --- /dev/null +++ b/src/chrome/content/rules/TheFreeDictionary.com.xml @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/TheGrandTheatre.com.xml b/src/chrome/content/rules/TheGrandTheatre.com.xml new file mode 100644 index 000000000000..2cc3fc31d2a4 --- /dev/null +++ b/src/chrome/content/rules/TheGrandTheatre.com.xml @@ -0,0 +1,16 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/TheGroceryOutlet.ca.xml b/src/chrome/content/rules/TheGroceryOutlet.ca.xml new file mode 100644 index 000000000000..3f318be7358a --- /dev/null +++ b/src/chrome/content/rules/TheGroceryOutlet.ca.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/TheGuardian.pe.ca.xml b/src/chrome/content/rules/TheGuardian.pe.ca.xml new file mode 100644 index 000000000000..37d6e74aafc9 --- /dev/null +++ b/src/chrome/content/rules/TheGuardian.pe.ca.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/TheHiring.co.xml b/src/chrome/content/rules/TheHiring.co.xml new file mode 100644 index 000000000000..25e838806276 --- /dev/null +++ b/src/chrome/content/rules/TheHiring.co.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/TheHouseOrgan.xyz.xml b/src/chrome/content/rules/TheHouseOrgan.xyz.xml new file mode 100644 index 000000000000..6755eba75fbc --- /dev/null +++ b/src/chrome/content/rules/TheHouseOrgan.xyz.xml @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/src/chrome/content/rules/TheHubPeople.com.xml b/src/chrome/content/rules/TheHubPeople.com.xml new file mode 100644 index 000000000000..6eee9ffaa7f8 --- /dev/null +++ b/src/chrome/content/rules/TheHubPeople.com.xml @@ -0,0 +1,30 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/TheHumbleI.com.xml b/src/chrome/content/rules/TheHumbleI.com.xml index e278b80dbc83..5758abd98d8f 100644 --- a/src/chrome/content/rules/TheHumbleI.com.xml +++ b/src/chrome/content/rules/TheHumbleI.com.xml @@ -2,5 +2,7 @@ + + diff --git a/src/chrome/content/rules/TheJournal.ie.xml b/src/chrome/content/rules/TheJournal.ie.xml index 504aa6b09557..ec5557c40d89 100644 --- a/src/chrome/content/rules/TheJournal.ie.xml +++ b/src/chrome/content/rules/TheJournal.ie.xml @@ -95,7 +95,7 @@ --> - + - + diff --git a/src/chrome/content/rules/TheOJ.org.xml b/src/chrome/content/rules/TheOJ.org.xml new file mode 100644 index 000000000000..5764889c1b98 --- /dev/null +++ b/src/chrome/content/rules/TheOJ.org.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/TheOldReader.xml b/src/chrome/content/rules/TheOldReader.xml index 24f96e330221..fafcfee04e6c 100644 --- a/src/chrome/content/rules/TheOldReader.xml +++ b/src/chrome/content/rules/TheOldReader.xml @@ -7,7 +7,7 @@ Fetch error: http://s.yeoldreader.com/ => https://theoldreader.com/: (6, 'Could - + diff --git a/src/chrome/content/rules/ThePermitStore.com.xml b/src/chrome/content/rules/ThePermitStore.com.xml index b14503a84bc7..912f3de2ff1f 100644 --- a/src/chrome/content/rules/ThePermitStore.com.xml +++ b/src/chrome/content/rules/ThePermitStore.com.xml @@ -5,7 +5,7 @@ Fetch error: http://www.thepermitstore.com/ => https://www.thepermitstore.com/: Fetch error: http://thepermitstore.com/ => https://thepermitstore.com/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + diff --git a/src/chrome/content/rules/ThePirateBay.xml b/src/chrome/content/rules/ThePirateBay.xml index 6e6d1ed5bfb5..14b947b4c800 100644 --- a/src/chrome/content/rules/ThePirateBay.xml +++ b/src/chrome/content/rules/ThePirateBay.xml @@ -1,34 +1,38 @@ - - + + - - - - + + + diff --git a/src/chrome/content/rules/ThePlatform.xml b/src/chrome/content/rules/ThePlatform.xml index a8b32dc73481..1623982c4e33 100644 --- a/src/chrome/content/rules/ThePlatform.xml +++ b/src/chrome/content/rules/ThePlatform.xml @@ -39,7 +39,7 @@ Fetch error: http://uploads.www.theplatform.com/ => https://uploads.www.theplatf - mps.theplatform.com --> - + @@ -55,7 +55,7 @@ Fetch error: http://uploads.www.theplatform.com/ => https://uploads.www.theplatf - + diff --git a/src/chrome/content/rules/TheRealTalk.org.xml b/src/chrome/content/rules/TheRealTalk.org.xml index 10176a365f57..a6068f9a2a72 100644 --- a/src/chrome/content/rules/TheRealTalk.org.xml +++ b/src/chrome/content/rules/TheRealTalk.org.xml @@ -12,7 +12,7 @@ Fetch error: http://www.therealtalk.org/ => https://www.therealtalk.org/: (28, ' * Secured by us --> - + diff --git a/src/chrome/content/rules/TheResumator.com.xml b/src/chrome/content/rules/TheResumator.com.xml index ea21c400f0ae..ee7a38ee52ea 100644 --- a/src/chrome/content/rules/TheResumator.com.xml +++ b/src/chrome/content/rules/TheResumator.com.xml @@ -14,14 +14,14 @@ - + + to="https://assets.theresumator.com/" /> diff --git a/src/chrome/content/rules/TheRoot.com.xml b/src/chrome/content/rules/TheRoot.com.xml new file mode 100644 index 000000000000..71a2d8785ed8 --- /dev/null +++ b/src/chrome/content/rules/TheRoot.com.xml @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/TheSafety.US.xml b/src/chrome/content/rules/TheSafety.US.xml index cab6e3b4e9c4..78204a7a708f 100644 --- a/src/chrome/content/rules/TheSafety.US.xml +++ b/src/chrome/content/rules/TheSafety.US.xml @@ -13,4 +13,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/TheSaveMovement.org.xml b/src/chrome/content/rules/TheSaveMovement.org.xml new file mode 100644 index 000000000000..cff6a33c3ad2 --- /dev/null +++ b/src/chrome/content/rules/TheSaveMovement.org.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/TheSims3.com.xml b/src/chrome/content/rules/TheSims3.com.xml new file mode 100644 index 000000000000..372d81162fcc --- /dev/null +++ b/src/chrome/content/rules/TheSims3.com.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/TheSixthAxis.com.xml b/src/chrome/content/rules/TheSixthAxis.com.xml index 4cdd74655885..e9fdb8c9c455 100644 --- a/src/chrome/content/rules/TheSixthAxis.com.xml +++ b/src/chrome/content/rules/TheSixthAxis.com.xml @@ -6,4 +6,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/TheStandNews.com.xml b/src/chrome/content/rules/TheStandNews.com.xml index 492138211a95..f74faae46440 100644 --- a/src/chrome/content/rules/TheStandNews.com.xml +++ b/src/chrome/content/rules/TheStandNews.com.xml @@ -2,12 +2,20 @@ + + + + + + + + diff --git a/src/chrome/content/rules/TheStar.com.my.xml b/src/chrome/content/rules/TheStar.com.my.xml new file mode 100644 index 000000000000..81bf48e7bd60 --- /dev/null +++ b/src/chrome/content/rules/TheStar.com.my.xml @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/TheSwanSanctuary.org.uk.xml b/src/chrome/content/rules/TheSwanSanctuary.org.uk.xml new file mode 100644 index 000000000000..63bb91bc01ba --- /dev/null +++ b/src/chrome/content/rules/TheSwanSanctuary.org.uk.xml @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/src/chrome/content/rules/TheThinkingVegan.com.xml b/src/chrome/content/rules/TheThinkingVegan.com.xml deleted file mode 100644 index ca033729f820..000000000000 --- a/src/chrome/content/rules/TheThinkingVegan.com.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/TheTrainLine.xml b/src/chrome/content/rules/TheTrainLine.xml index c5b25b55c11e..3c7480b87148 100644 --- a/src/chrome/content/rules/TheTrainLine.xml +++ b/src/chrome/content/rules/TheTrainLine.xml @@ -5,8 +5,8 @@ - - + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/TheVideo.me.xml b/src/chrome/content/rules/TheVideo.me.xml index 8c5d18decb51..0a649a57fbac 100644 --- a/src/chrome/content/rules/TheVideo.me.xml +++ b/src/chrome/content/rules/TheVideo.me.xml @@ -18,7 +18,7 @@ --> - + https://the109.org/: (7, 'Failed to connect to the109.org port 443: Connection refused') --> - + @@ -22,4 +22,4 @@ Fetch error: http://the109.org/ => https://the109.org/: (7, 'Failed to connect t - \ No newline at end of file + diff --git a/src/chrome/content/rules/The_American_Prospect.xml b/src/chrome/content/rules/The_American_Prospect.xml index fb82f0ef682f..ae5b29556945 100644 --- a/src/chrome/content/rules/The_American_Prospect.xml +++ b/src/chrome/content/rules/The_American_Prospect.xml @@ -12,7 +12,7 @@ Fetch error: http://www.prospect.org/ => https://prospect.org/: (60, 'SSL certif - www (cert only matches ^prospect.org) --> - + diff --git a/src/chrome/content/rules/The_Appendix.net.xml b/src/chrome/content/rules/The_Appendix.net.xml index fca0defba99d..b8f6694b4303 100644 --- a/src/chrome/content/rules/The_Appendix.net.xml +++ b/src/chrome/content/rules/The_Appendix.net.xml @@ -33,7 +33,7 @@ Fetch error: http://www.theappendix.net/ => https://theappendix.net/: (51, "SSL: * Secured by us --> - + diff --git a/src/chrome/content/rules/The_ArtStack.com.xml b/src/chrome/content/rules/The_ArtStack.com.xml deleted file mode 100644 index 5547cbece3f1..000000000000 --- a/src/chrome/content/rules/The_ArtStack.com.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/The_Baffler.xml b/src/chrome/content/rules/The_Baffler.xml index 4e0050dc3098..55e3a98186c8 100644 --- a/src/chrome/content/rules/The_Baffler.xml +++ b/src/chrome/content/rules/The_Baffler.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/The_Blue_Sky_Life.com.xml b/src/chrome/content/rules/The_Blue_Sky_Life.com.xml index 86326fd162e6..20f0d2a79a13 100644 --- a/src/chrome/content/rules/The_Blue_Sky_Life.com.xml +++ b/src/chrome/content/rules/The_Blue_Sky_Life.com.xml @@ -1,4 +1,4 @@ - + diff --git a/src/chrome/content/rules/The_Body_Shop.co.uk.xml b/src/chrome/content/rules/The_Body_Shop.co.uk.xml index 9b47e1496184..38ff663a75da 100644 --- a/src/chrome/content/rules/The_Body_Shop.co.uk.xml +++ b/src/chrome/content/rules/The_Body_Shop.co.uk.xml @@ -55,7 +55,7 @@ Fetch error: http://secure.thebodyshop.co.uk/ => https://secure.thebodyshop.co.u * Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -137,7 +137,7 @@ Fetch error: http://secure.thebodyshop.co.uk/ => https://secure.thebodyshop.co.u - + - + - + diff --git a/src/chrome/content/rules/The_Changelog.com.xml b/src/chrome/content/rules/The_Changelog.com.xml index d79d19a43d99..d6ae807874d4 100644 --- a/src/chrome/content/rules/The_Changelog.com.xml +++ b/src/chrome/content/rules/The_Changelog.com.xml @@ -5,7 +5,7 @@ Fetch error: http://thechangelog.com/ => https://thechangelog.com/: (60, 'SSL ce Fetch error: http://www.thechangelog.com/ => https://www.thechangelog.com/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/The_Chronicles_of_George.xml b/src/chrome/content/rules/The_Chronicles_of_George.xml deleted file mode 100644 index 4281162b3137..000000000000 --- a/src/chrome/content/rules/The_Chronicles_of_George.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/The_Conversation.xml b/src/chrome/content/rules/The_Conversation.xml deleted file mode 100644 index 587d8d6369a2..000000000000 --- a/src/chrome/content/rules/The_Conversation.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/The_DMA.org.xml b/src/chrome/content/rules/The_DMA.org.xml index 07f916b51946..0692584d44f0 100644 --- a/src/chrome/content/rules/The_DMA.org.xml +++ b/src/chrome/content/rules/The_DMA.org.xml @@ -33,7 +33,7 @@ Fetch error: http://www.thedma.org/ => https://www.thedma.org/: (60, 'SSL certif ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -45,7 +45,7 @@ Fetch error: http://www.thedma.org/ => https://www.thedma.org/: (60, 'SSL certif - + - - - - - - - - - diff --git a/src/chrome/content/rules/The_Edge_Climbing.com.xml b/src/chrome/content/rules/The_Edge_Climbing.com.xml deleted file mode 100644 index 7f282595ae52..000000000000 --- a/src/chrome/content/rules/The_Edge_Climbing.com.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/The_Explorer_Card.com.xml b/src/chrome/content/rules/The_Explorer_Card.com.xml deleted file mode 100644 index afe23c2e9043..000000000000 --- a/src/chrome/content/rules/The_Explorer_Card.com.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/The_Federalist_Papers.org-falsemixed.xml b/src/chrome/content/rules/The_Federalist_Papers.org-falsemixed.xml deleted file mode 100644 index 6bbab52dec73..000000000000 --- a/src/chrome/content/rules/The_Federalist_Papers.org-falsemixed.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/The_Federalist_Papers.org.xml b/src/chrome/content/rules/The_Federalist_Papers.org.xml deleted file mode 100644 index 22f9197b4057..000000000000 --- a/src/chrome/content/rules/The_Federalist_Papers.org.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/The_Fire.org.xml b/src/chrome/content/rules/The_Fire.org.xml index 6bcfc7582f65..ef3385c89eda 100644 --- a/src/chrome/content/rules/The_Fire.org.xml +++ b/src/chrome/content/rules/The_Fire.org.xml @@ -16,7 +16,7 @@ --> - + https://thegcloud.com/: (60, 'SSL certific www: expired 2008-12-05, self-signed, CN: mainsites.gigenet.com --> - + diff --git a/src/chrome/content/rules/The_Gazette.xml b/src/chrome/content/rules/The_Gazette.xml index 0c6e0bfdb250..5b3a1e24a40f 100644 --- a/src/chrome/content/rules/The_Gazette.xml +++ b/src/chrome/content/rules/The_Gazette.xml @@ -22,7 +22,7 @@ --> - + https://thegoodfight.fm/: (60, 'SSL certificate problem: certificate has expired') -Fetch error: http://www.thegoodfight.fm/ => https://www.thegoodfight.fm/: (60, 'SSL certificate problem: certificate has expired') - -Disabled by https-everywhere-checker because: -Fetch error: http://thegoodfight.fm/ => https://thegoodfight.fm/: (60, 'SSL certificate problem: certificate has expired') -Fetch error: http://www.thegoodfight.fm/ => https://www.thegoodfight.fm/: (60, 'SSL certificate problem: certificate has expired') - CDN buckets: - - - thegoodfight.s3.amazonaws.com - ---> - - - - - - - - - diff --git a/src/chrome/content/rules/The_Grand.xml b/src/chrome/content/rules/The_Grand.xml deleted file mode 100644 index 021de6459aa1..000000000000 --- a/src/chrome/content/rules/The_Grand.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/The_Great_Courses_Plus.com.xml b/src/chrome/content/rules/The_Great_Courses_Plus.com.xml index 07eb156bf4f1..dc20c0100350 100644 --- a/src/chrome/content/rules/The_Great_Courses_Plus.com.xml +++ b/src/chrome/content/rules/The_Great_Courses_Plus.com.xml @@ -10,7 +10,7 @@ Fetch error: http://release.thegreatcoursesplus.com/ => https://release.thegreat - Image on dev from cdn.snagfilms.com --> - + @@ -19,7 +19,7 @@ Fetch error: http://release.thegreatcoursesplus.com/ => https://release.thegreat - + - + + diff --git a/src/chrome/content/rules/The_Guardian.com.xml b/src/chrome/content/rules/The_Guardian.com.xml index ebb0cf28d84d..3e653c89ac71 100644 --- a/src/chrome/content/rules/The_Guardian.com.xml +++ b/src/chrome/content/rules/The_Guardian.com.xml @@ -6,8 +6,6 @@ - guardianapps.co.uk.xml - Guardian_Escapes.com.xml - Guardian_Offers.co.uk.xml - - Guardian_Subscriptions.co.uk.xml - - Guim.co.uk.xml CDN buckets: @@ -51,6 +49,7 @@ - next ¹ - m.jobs ¹ - oas ¹ + - register ¹ ¹ Mismatched @@ -92,9 +91,6 @@ - - - @@ -103,12 +99,11 @@ - - + diff --git a/src/chrome/content/rules/The_Hill.com.xml b/src/chrome/content/rules/The_Hill.com.xml index 3c9d8c758b00..525ec8c0b952 100644 --- a/src/chrome/content/rules/The_Hill.com.xml +++ b/src/chrome/content/rules/The_Hill.com.xml @@ -30,7 +30,7 @@ Fetch error: http://thehill.com/ => https://thehill.com/: (60, 'SSL certificate ³ Unsecurable <= refused --> - + diff --git a/src/chrome/content/rules/The_Hoxton.com.xml b/src/chrome/content/rules/The_Hoxton.com.xml index fd6059c66dd2..bec4bc0ecf14 100644 --- a/src/chrome/content/rules/The_Hoxton.com.xml +++ b/src/chrome/content/rules/The_Hoxton.com.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.thehoxton.com/ => https://www.thehoxton.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.thehoxton.com'") --> - + diff --git a/src/chrome/content/rules/The_Iconic.com.au.xml b/src/chrome/content/rules/The_Iconic.com.au.xml deleted file mode 100644 index 590508b90596..000000000000 --- a/src/chrome/content/rules/The_Iconic.com.au.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/The_Internet_Co.net.xml b/src/chrome/content/rules/The_Internet_Co.net.xml index 6fb35fefa9d2..e1310621468f 100644 --- a/src/chrome/content/rules/The_Internet_Co.net.xml +++ b/src/chrome/content/rules/The_Internet_Co.net.xml @@ -1,17 +1,8 @@ - - + - - - + diff --git a/src/chrome/content/rules/The_Johns_Hopkins_University.xml b/src/chrome/content/rules/The_Johns_Hopkins_University.xml index 9639f4024cee..2bf5d5307985 100644 --- a/src/chrome/content/rules/The_Johns_Hopkins_University.xml +++ b/src/chrome/content/rules/The_Johns_Hopkins_University.xml @@ -181,7 +181,7 @@ Fetch error: http://wiki.pha.jhu.edu/ => https://wiki.pha.jhu.edu/: (60, 'SSL ce ˢ Secured by us --> - + @@ -267,7 +267,7 @@ Fetch error: http://wiki.pha.jhu.edu/ => https://wiki.pha.jhu.edu/: (60, 'SSL ce - + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/The_Movie_Db.org.xml b/src/chrome/content/rules/The_Movie_Db.org.xml deleted file mode 100644 index 65bb4cf1a7ff..000000000000 --- a/src/chrome/content/rules/The_Movie_Db.org.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/The_Newsmarket.xml b/src/chrome/content/rules/The_Newsmarket.xml index 4a3a1389e2ce..0347072bc706 100644 --- a/src/chrome/content/rules/The_Newsmarket.xml +++ b/src/chrome/content/rules/The_Newsmarket.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/The_Next_Web-problematic.xml b/src/chrome/content/rules/The_Next_Web-problematic.xml index f462b0ad6297..7a973ff284d5 100644 --- a/src/chrome/content/rules/The_Next_Web-problematic.xml +++ b/src/chrome/content/rules/The_Next_Web-problematic.xml @@ -11,7 +11,6 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/The_Outnet.xml b/src/chrome/content/rules/The_Outnet.xml index a962621b71c8..f991c527bd56 100644 --- a/src/chrome/content/rules/The_Outnet.xml +++ b/src/chrome/content/rules/The_Outnet.xml @@ -13,10 +13,12 @@ Non-2xx HTTP code: http://theoutnet.com/ (200) => https://www.theoutnet.com/ (40 - cache --> - + - + + + @@ -25,7 +27,6 @@ Non-2xx HTTP code: http://theoutnet.com/ (200) => https://www.theoutnet.com/ (40 - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/The_Parliament_Magazine.eu.xml b/src/chrome/content/rules/The_Parliament_Magazine.eu.xml index a0569037fdc2..330203a30bc6 100644 --- a/src/chrome/content/rules/The_Parliament_Magazine.eu.xml +++ b/src/chrome/content/rules/The_Parliament_Magazine.eu.xml @@ -5,7 +5,7 @@ - + - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/The_Satanic_Temple.com.xml b/src/chrome/content/rules/The_Satanic_Temple.com.xml index 1e12835637eb..a414f5cec72b 100644 --- a/src/chrome/content/rules/The_Satanic_Temple.com.xml +++ b/src/chrome/content/rules/The_Satanic_Temple.com.xml @@ -12,7 +12,7 @@ - + diff --git a/src/chrome/content/rules/The_Security_Practice.com.xml b/src/chrome/content/rules/The_Security_Practice.com.xml index edb0a22c19c6..595576166c1f 100644 --- a/src/chrome/content/rules/The_Security_Practice.com.xml +++ b/src/chrome/content/rules/The_Security_Practice.com.xml @@ -14,13 +14,10 @@ --> - + - - - + diff --git a/src/chrome/content/rules/The_Star_Advisers.com.xml b/src/chrome/content/rules/The_Star_Advisers.com.xml index df238cb49262..bd045f8e8311 100644 --- a/src/chrome/content/rules/The_Star_Advisers.com.xml +++ b/src/chrome/content/rules/The_Star_Advisers.com.xml @@ -14,7 +14,7 @@ --> - + - + + + @@ -26,7 +28,6 @@ - + diff --git a/src/chrome/content/rules/The_Student_Room.co.uk.xml b/src/chrome/content/rules/The_Student_Room.co.uk.xml new file mode 100644 index 000000000000..3dd7e56414a8 --- /dev/null +++ b/src/chrome/content/rules/The_Student_Room.co.uk.xml @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/The_TFP.xml b/src/chrome/content/rules/The_TFP.xml index 552ff3922c51..1d7abbd94a34 100644 --- a/src/chrome/content/rules/The_TFP.xml +++ b/src/chrome/content/rules/The_TFP.xml @@ -6,4 +6,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/The_Technoskeptic.com.xml b/src/chrome/content/rules/The_Technoskeptic.com.xml index 4b3a799aa390..600ff838c862 100644 --- a/src/chrome/content/rules/The_Technoskeptic.com.xml +++ b/src/chrome/content/rules/The_Technoskeptic.com.xml @@ -15,7 +15,7 @@ --> - + - + + + + - + diff --git a/src/chrome/content/rules/The_Tin_Hat.com.xml b/src/chrome/content/rules/The_Tin_Hat.com.xml index e6807254907b..3d135567260d 100644 --- a/src/chrome/content/rules/The_Tin_Hat.com.xml +++ b/src/chrome/content/rules/The_Tin_Hat.com.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.thetinhat.com/ => https://www.thetinhat.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.thetinhat.com'") --> - + diff --git a/src/chrome/content/rules/The_Watershed.xml b/src/chrome/content/rules/The_Watershed.xml deleted file mode 100644 index 6026e423e722..000000000000 --- a/src/chrome/content/rules/The_Watershed.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/The_Watershed_Residence.xml b/src/chrome/content/rules/The_Watershed_Residence.xml index ae39e3894b56..e6cd17cb7339 100644 --- a/src/chrome/content/rules/The_Watershed_Residence.xml +++ b/src/chrome/content/rules/The_Watershed_Residence.xml @@ -10,7 +10,7 @@ Fetch error: http://www.thewatershedresidence.com/ => https://thewatershedreside www: mismatched --> - + diff --git a/src/chrome/content/rules/The_Web_Index.org.xml b/src/chrome/content/rules/The_Web_Index.org.xml index 98d70c575a0a..b600ac9a7b0c 100644 --- a/src/chrome/content/rules/The_Web_Index.org.xml +++ b/src/chrome/content/rules/The_Web_Index.org.xml @@ -11,7 +11,7 @@ Fetch error: http://www.thewebindex.org/ => https://www.thewebindex.org/: (51, " - beta (mismatched, CN: thewebindex.org) --> - + diff --git a/src/chrome/content/rules/The_Western_World.xml b/src/chrome/content/rules/The_Western_World.xml index dab396690a8d..7f89f142c51a 100644 --- a/src/chrome/content/rules/The_Western_World.xml +++ b/src/chrome/content/rules/The_Western_World.xml @@ -19,7 +19,7 @@ Fetch error: http://www.thewesternworld.com/ => https://www.thewesternworld.com/ The above three appear to serve images only. --> - + @@ -30,4 +30,4 @@ Fetch error: http://www.thewesternworld.com/ => https://www.thewesternworld.com/ - \ No newline at end of file + diff --git a/src/chrome/content/rules/The_World_According_to_Nouns.xml b/src/chrome/content/rules/The_World_According_to_Nouns.xml index 774b1ded6df9..9dc26e0e677a 100644 --- a/src/chrome/content/rules/The_World_According_to_Nouns.xml +++ b/src/chrome/content/rules/The_World_According_to_Nouns.xml @@ -1,7 +1,7 @@ - + diff --git a/src/chrome/content/rules/Theadex.xml b/src/chrome/content/rules/Theadex.xml index 4bf073a1edcd..219935b66e6c 100644 --- a/src/chrome/content/rules/Theadex.xml +++ b/src/chrome/content/rules/Theadex.xml @@ -5,4 +5,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Theads.me.xml b/src/chrome/content/rules/Theads.me.xml index 1ddd6dc6a7dd..222af250f7fa 100644 --- a/src/chrome/content/rules/Theads.me.xml +++ b/src/chrome/content/rules/Theads.me.xml @@ -10,7 +10,7 @@ Fetch error: http://www.theads.me/ => https://www.theads.me/: (28, 'Operation ti - code.theads.me --> - + diff --git a/src/chrome/content/rules/Thecanadaline.com.xml b/src/chrome/content/rules/Thecanadaline.com.xml new file mode 100644 index 000000000000..982d34230a24 --- /dev/null +++ b/src/chrome/content/rules/Thecanadaline.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Thecthulhu.com.xml b/src/chrome/content/rules/Thecthulhu.com.xml index 2a526d6c5d22..d8fbe76b9def 100644 --- a/src/chrome/content/rules/Thecthulhu.com.xml +++ b/src/chrome/content/rules/Thecthulhu.com.xml @@ -37,7 +37,7 @@ Fetch error: http://www.thecthulhu.com/ => https://www.thecthulhu.com/: (6, 'Cou * Temporarily down --> - + diff --git a/src/chrome/content/rules/Thefind.xml b/src/chrome/content/rules/Thefind.xml index 8064b4b4ad14..31316004dafb 100644 --- a/src/chrome/content/rules/Thefind.xml +++ b/src/chrome/content/rules/Thefind.xml @@ -12,14 +12,18 @@ Fetch error: http://s.tfcdn.com/ => https://www.thefind.com/: (60, 'SSL certific Fetch error: http://thefind.com/ => https://thefind.com/: (60, 'SSL certificate problem: certificate has expired') --> - + - + + + + + - + diff --git a/src/chrome/content/rules/Thehabbos.org.xml b/src/chrome/content/rules/Thehabbos.org.xml index 85f82524763e..c01fd07cc878 100644 --- a/src/chrome/content/rules/Thehabbos.org.xml +++ b/src/chrome/content/rules/Thehabbos.org.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Thehackernews.com.xml b/src/chrome/content/rules/Thehackernews.com.xml index 238a5dfc24b5..a04bd2a38de9 100644 --- a/src/chrome/content/rules/Thehackernews.com.xml +++ b/src/chrome/content/rules/Thehackernews.com.xml @@ -17,5 +17,5 @@ - + diff --git a/src/chrome/content/rules/Thejakartapost.com.xml b/src/chrome/content/rules/Thejakartapost.com.xml new file mode 100644 index 000000000000..2a674b48b3e7 --- /dev/null +++ b/src/chrome/content/rules/Thejakartapost.com.xml @@ -0,0 +1,22 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Themacro.com.xml b/src/chrome/content/rules/Themacro.com.xml deleted file mode 100644 index 17b380315f9a..000000000000 --- a/src/chrome/content/rules/Themacro.com.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/ThemeParkReview.com.xml b/src/chrome/content/rules/ThemeParkReview.com.xml new file mode 100644 index 000000000000..50c879b4dda6 --- /dev/null +++ b/src/chrome/content/rules/ThemeParkReview.com.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Themertailor.com.xml b/src/chrome/content/rules/Themertailor.com.xml new file mode 100644 index 000000000000..b0ff7cabd01e --- /dev/null +++ b/src/chrome/content/rules/Themertailor.com.xml @@ -0,0 +1,11 @@ + + + + + + + diff --git a/src/chrome/content/rules/Themes_and_Co.com.xml b/src/chrome/content/rules/Themes_and_Co.com.xml deleted file mode 100644 index 905adbe2cf9a..000000000000 --- a/src/chrome/content/rules/Themes_and_Co.com.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Themis-Group.xml b/src/chrome/content/rules/Themis-Group.xml index 15c5e12d37b4..e071bac3f3aa 100644 --- a/src/chrome/content/rules/Themis-Group.xml +++ b/src/chrome/content/rules/Themis-Group.xml @@ -19,7 +19,6 @@ - + diff --git a/src/chrome/content/rules/Theory.org.xml b/src/chrome/content/rules/Theory.org.xml deleted file mode 100644 index 367e5766c2e4..000000000000 --- a/src/chrome/content/rules/Theory.org.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Thephone.coop.xml b/src/chrome/content/rules/Thephone.coop.xml index 097838441747..9fa697682ea3 100644 --- a/src/chrome/content/rules/Thephone.coop.xml +++ b/src/chrome/content/rules/Thephone.coop.xml @@ -12,7 +12,7 @@ Fetch error: http://plesk2.thephone.coop/ => https://plesk2.thephone.coop/: (60, - Phone.coop.xml --> - + diff --git a/src/chrome/content/rules/Thermitic.net.xml b/src/chrome/content/rules/Thermitic.net.xml index 1afb00b8fea6..b4ba9aef9833 100644 --- a/src/chrome/content/rules/Thermitic.net.xml +++ b/src/chrome/content/rules/Thermitic.net.xml @@ -6,7 +6,7 @@ Fetch error: http://stats.thermitic.net/ => https://stats.thermitic.net/: (60, ' ^: shows stats, valid cert --> - + @@ -16,7 +16,6 @@ Fetch error: http://stats.thermitic.net/ => https://stats.thermitic.net/: (60, ' - + diff --git a/src/chrome/content/rules/Thermo_Scientific.com.xml b/src/chrome/content/rules/Thermo_Scientific.com.xml index 7765daeab952..9e418b3110bf 100644 --- a/src/chrome/content/rules/Thermo_Scientific.com.xml +++ b/src/chrome/content/rules/Thermo_Scientific.com.xml @@ -31,7 +31,7 @@ Non-2xx HTTP code: http://thermoscientific.com/ (200) => https://www.thermoscien * Secured by us --> - + diff --git a/src/chrome/content/rules/Theses.cz.xml b/src/chrome/content/rules/Theses.cz.xml index 4cccc51c5619..0a25486d050b 100644 --- a/src/chrome/content/rules/Theses.cz.xml +++ b/src/chrome/content/rules/Theses.cz.xml @@ -1,7 +1,6 @@ @@ -10,15 +9,9 @@ - - - - - - diff --git a/src/chrome/content/rules/Thesn.net.xml b/src/chrome/content/rules/Thesn.net.xml index 75396253ffde..142f81e96558 100644 --- a/src/chrome/content/rules/Thesn.net.xml +++ b/src/chrome/content/rules/Thesn.net.xml @@ -14,7 +14,6 @@ - + diff --git a/src/chrome/content/rules/Thing.net-falsemixed.xml b/src/chrome/content/rules/Thing.net-falsemixed.xml deleted file mode 100644 index 6ffba70831b8..000000000000 --- a/src/chrome/content/rules/Thing.net-falsemixed.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Thing.net.xml b/src/chrome/content/rules/Thing.net.xml index f5a21d8871ba..f09a3906cffc 100644 --- a/src/chrome/content/rules/Thing.net.xml +++ b/src/chrome/content/rules/Thing.net.xml @@ -1,50 +1,24 @@ - - - - - - + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ThingLink.xml b/src/chrome/content/rules/ThingLink.xml index a118cf16b752..6f9a7033474c 100644 --- a/src/chrome/content/rules/ThingLink.xml +++ b/src/chrome/content/rules/ThingLink.xml @@ -28,7 +28,7 @@ - + - + https://www.thinkfaster.co/: (6, 'Could not resolve host: www.thinkfaster.co') --> - + - + - - - - - - diff --git a/src/chrome/content/rules/ThinkingDiver.com.xml b/src/chrome/content/rules/ThinkingDiver.com.xml new file mode 100644 index 000000000000..fe94ca7c9819 --- /dev/null +++ b/src/chrome/content/rules/ThinkingDiver.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Thinking_Christian.xml b/src/chrome/content/rules/Thinking_Christian.xml index ba1c2b55d027..67c6bcfc48cc 100644 --- a/src/chrome/content/rules/Thinking_Christian.xml +++ b/src/chrome/content/rules/Thinking_Christian.xml @@ -5,7 +5,7 @@ - + diff --git a/src/chrome/content/rules/Thinkwiki.org.xml b/src/chrome/content/rules/Thinkwiki.org.xml new file mode 100644 index 000000000000..a9dc1658529a --- /dev/null +++ b/src/chrome/content/rules/Thinkwiki.org.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Third-Door-Media.xml b/src/chrome/content/rules/Third-Door-Media.xml index 2f78fad17f50..ce7ee111e5db 100644 --- a/src/chrome/content/rules/Third-Door-Media.xml +++ b/src/chrome/content/rules/Third-Door-Media.xml @@ -1,33 +1,24 @@ - - + - - - - - - - + diff --git a/src/chrome/content/rules/ThirdAge.xml b/src/chrome/content/rules/ThirdAge.xml index 5bfd918832ef..b2e55021fba5 100644 --- a/src/chrome/content/rules/ThirdAge.xml +++ b/src/chrome/content/rules/ThirdAge.xml @@ -24,16 +24,17 @@ Fetch error: http://thirdage.com/ => https://thirdage.com/: (7, 'Failed to conne - videos (cert: *.onescreen.net; 403) --> - + - + + + - + diff --git a/src/chrome/content/rules/ThirdPresence.com.xml b/src/chrome/content/rules/ThirdPresence.com.xml index 80df03e7610f..e0f7ef044dc5 100644 --- a/src/chrome/content/rules/ThirdPresence.com.xml +++ b/src/chrome/content/rules/ThirdPresence.com.xml @@ -20,4 +20,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Thirty_Meter_Telescope.xml b/src/chrome/content/rules/Thirty_Meter_Telescope.xml deleted file mode 100644 index d2a5e3495d8a..000000000000 --- a/src/chrome/content/rules/Thirty_Meter_Telescope.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/ThisCatDoesNotExist.com.xml b/src/chrome/content/rules/ThisCatDoesNotExist.com.xml new file mode 100644 index 000000000000..3f5aec9dd963 --- /dev/null +++ b/src/chrome/content/rules/ThisCatDoesNotExist.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/ThisCrazyTrain.com.xml b/src/chrome/content/rules/ThisCrazyTrain.com.xml new file mode 100644 index 000000000000..d5ee85668542 --- /dev/null +++ b/src/chrome/content/rules/ThisCrazyTrain.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/ThisPersonDoesNotExist.com.xml b/src/chrome/content/rules/ThisPersonDoesNotExist.com.xml new file mode 100644 index 000000000000..f15ba00e0355 --- /dev/null +++ b/src/chrome/content/rules/ThisPersonDoesNotExist.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/ThisWebHost.xml b/src/chrome/content/rules/ThisWebHost.xml index 9a5a975ce17e..7c155b05d45f 100644 --- a/src/chrome/content/rules/ThisWebHost.xml +++ b/src/chrome/content/rules/ThisWebHost.xml @@ -2,7 +2,7 @@ - + diff --git a/src/chrome/content/rules/ThisisColossal.com.xml b/src/chrome/content/rules/ThisisColossal.com.xml index bae0b2212ad7..51b2c1fd32cd 100644 --- a/src/chrome/content/rules/ThisisColossal.com.xml +++ b/src/chrome/content/rules/ThisisColossal.com.xml @@ -9,7 +9,7 @@ - + diff --git a/src/chrome/content/rules/Thomas-Krenn.com.xml b/src/chrome/content/rules/Thomas-Krenn.com.xml index 575bf6baea98..4dd234ccf4b8 100644 --- a/src/chrome/content/rules/Thomas-Krenn.com.xml +++ b/src/chrome/content/rules/Thomas-Krenn.com.xml @@ -11,7 +11,7 @@ - + - + - + - + diff --git a/src/chrome/content/rules/Thomson-Reuters-mismatches.xml b/src/chrome/content/rules/Thomson-Reuters-mismatches.xml index 447ed7369c1e..04a24f36ff26 100644 --- a/src/chrome/content/rules/Thomson-Reuters-mismatches.xml +++ b/src/chrome/content/rules/Thomson-Reuters-mismatches.xml @@ -14,7 +14,6 @@ - + diff --git a/src/chrome/content/rules/Thomson-Reuters.xml b/src/chrome/content/rules/Thomson-Reuters.xml index f757881a763d..6fdd5dd0e24f 100644 --- a/src/chrome/content/rules/Thomson-Reuters.xml +++ b/src/chrome/content/rules/Thomson-Reuters.xml @@ -21,9 +21,7 @@ Fetch error: http://admin.checkpoint.thomsonreuters.com/ => https://admin.checkp - ScholarOne.xml - Thomson.com.xml - thomsoninnovation.com.xml - - Thomson_Reuters.biz.xml - thomsonreuters.com.ar.xml - - Thomson_Reuters_Life_Sciences.com.xml - Web_of_Knowledge.xml - Westlaw.com.xml @@ -151,7 +149,7 @@ Fetch error: http://admin.checkpoint.thomsonreuters.com/ => https://admin.checkp ³ Unsecurable <= refused --> - + @@ -308,7 +306,7 @@ Fetch error: http://admin.checkpoint.thomsonreuters.com/ => https://admin.checkp - + - + - - - - - - - - diff --git a/src/chrome/content/rules/ThoughtWorks.com.xml b/src/chrome/content/rules/ThoughtWorks.com.xml index 5eb09e58457e..1fb09fbe92be 100644 --- a/src/chrome/content/rules/ThoughtWorks.com.xml +++ b/src/chrome/content/rules/ThoughtWorks.com.xml @@ -17,7 +17,7 @@ - + diff --git a/src/chrome/content/rules/Thp.io.xml b/src/chrome/content/rules/Thp.io.xml index f5cbac3cd0a3..701077e24c52 100644 --- a/src/chrome/content/rules/Thp.io.xml +++ b/src/chrome/content/rules/Thp.io.xml @@ -1,16 +1,20 @@ + - - + + diff --git a/src/chrome/content/rules/ThreadReaderApp.com.xml b/src/chrome/content/rules/ThreadReaderApp.com.xml new file mode 100644 index 000000000000..0e3a1fd7ae2f --- /dev/null +++ b/src/chrome/content/rules/ThreadReaderApp.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Threading-Building-Blocks.xml b/src/chrome/content/rules/Threading-Building-Blocks.xml index 327e04453c26..8a3292203668 100644 --- a/src/chrome/content/rules/Threading-Building-Blocks.xml +++ b/src/chrome/content/rules/Threading-Building-Blocks.xml @@ -6,7 +6,7 @@ Fetch error: http://threadingbuildingblocks.org/ => https://threadingbuildingblo For other Intel coverage, see Intel.xml. --> - + @@ -14,7 +14,7 @@ Fetch error: http://threadingbuildingblocks.org/ => https://threadingbuildingblo - + https://threat2alert.com/: (6, 'Could n - www.threat2alert.com --> - + diff --git a/src/chrome/content/rules/ThreatTrack_Security.com.xml b/src/chrome/content/rules/ThreatTrack_Security.com.xml index b089a22f6457..491e2b68e44c 100644 --- a/src/chrome/content/rules/ThreatTrack_Security.com.xml +++ b/src/chrome/content/rules/ThreatTrack_Security.com.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://threattracksecurity.com/ => https://threattracksecurity.com/: Cycle detected - URL already encountered: https://www.threattracksecurity.com/ Fetch error: http://www.threattracksecurity.com/ => https://www.threattracksecurity.com/: Cycle detected - URL already encountered: https://www.threattracksecurity.com/ --> - + diff --git a/src/chrome/content/rules/Three.xml b/src/chrome/content/rules/Three.xml index 42f43acea689..b8e0b25c6006 100644 --- a/src/chrome/content/rules/Three.xml +++ b/src/chrome/content/rules/Three.xml @@ -8,7 +8,7 @@ Fetch error: http://threestore.three.co.uk/ => https://threestore.three.co.uk/: Disabled by https-everywhere-checker because: Fetch error: http://threestore.three.co.uk/ => https://threestore.three.co.uk/: (51, "SSL: no alternative certificate subject name matches target host name 'threestore.three.co.uk'") --> - + diff --git a/src/chrome/content/rules/Threema.xml b/src/chrome/content/rules/Threema.xml index 4e7f27cf8c1b..0383e34014a4 100644 --- a/src/chrome/content/rules/Threema.xml +++ b/src/chrome/content/rules/Threema.xml @@ -1,31 +1,11 @@ - - - - - - - - - - + + - - - - - - - - - - - - - + + - + - + diff --git a/src/chrome/content/rules/Thrifty.be.xml b/src/chrome/content/rules/Thrifty.be.xml new file mode 100644 index 000000000000..dd0fc32966ae --- /dev/null +++ b/src/chrome/content/rules/Thrifty.be.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Thrifty.ch.xml b/src/chrome/content/rules/Thrifty.ch.xml new file mode 100644 index 000000000000..1795fad219c7 --- /dev/null +++ b/src/chrome/content/rules/Thrifty.ch.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Thrifty.co.kr.xml b/src/chrome/content/rules/Thrifty.co.kr.xml new file mode 100644 index 000000000000..58ff0f3f399e --- /dev/null +++ b/src/chrome/content/rules/Thrifty.co.kr.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Thrifty.co.nz.xml b/src/chrome/content/rules/Thrifty.co.nz.xml new file mode 100644 index 000000000000..12a83d4a3cff --- /dev/null +++ b/src/chrome/content/rules/Thrifty.co.nz.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Thrifty.co.uk.xml b/src/chrome/content/rules/Thrifty.co.uk.xml new file mode 100644 index 000000000000..2ff1bba30b67 --- /dev/null +++ b/src/chrome/content/rules/Thrifty.co.uk.xml @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Thrifty.co.za.xml b/src/chrome/content/rules/Thrifty.co.za.xml new file mode 100644 index 000000000000..b294c6e9c536 --- /dev/null +++ b/src/chrome/content/rules/Thrifty.co.za.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Thrifty.com.au.xml b/src/chrome/content/rules/Thrifty.com.au.xml new file mode 100644 index 000000000000..8347a9089dbe --- /dev/null +++ b/src/chrome/content/rules/Thrifty.com.au.xml @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Thrifty.com.br.xml b/src/chrome/content/rules/Thrifty.com.br.xml new file mode 100644 index 000000000000..295725cf4311 --- /dev/null +++ b/src/chrome/content/rules/Thrifty.com.br.xml @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Thrifty.com.ph.xml b/src/chrome/content/rules/Thrifty.com.ph.xml new file mode 100644 index 000000000000..356a03cb0617 --- /dev/null +++ b/src/chrome/content/rules/Thrifty.com.ph.xml @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Thrifty.com.xml b/src/chrome/content/rules/Thrifty.com.xml new file mode 100644 index 000000000000..ac8640a0bdfe --- /dev/null +++ b/src/chrome/content/rules/Thrifty.com.xml @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Thrifty.de.xml b/src/chrome/content/rules/Thrifty.de.xml new file mode 100644 index 000000000000..795e9f32cfa5 --- /dev/null +++ b/src/chrome/content/rules/Thrifty.de.xml @@ -0,0 +1,29 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Thrifty.ie.xml b/src/chrome/content/rules/Thrifty.ie.xml new file mode 100644 index 000000000000..4d961b011baf --- /dev/null +++ b/src/chrome/content/rules/Thrifty.ie.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Thrifty.ma.xml b/src/chrome/content/rules/Thrifty.ma.xml new file mode 100644 index 000000000000..5311d1e26d41 --- /dev/null +++ b/src/chrome/content/rules/Thrifty.ma.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Thrifty.nl.xml b/src/chrome/content/rules/Thrifty.nl.xml new file mode 100644 index 000000000000..4cf5e08f4b61 --- /dev/null +++ b/src/chrome/content/rules/Thrifty.nl.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Thrifty.no.xml b/src/chrome/content/rules/Thrifty.no.xml new file mode 100644 index 000000000000..28026ade2f8c --- /dev/null +++ b/src/chrome/content/rules/Thrifty.no.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ThriftyCanada.ca.xml b/src/chrome/content/rules/ThriftyCanada.ca.xml new file mode 100644 index 000000000000..19ec335f3fed --- /dev/null +++ b/src/chrome/content/rules/ThriftyCanada.ca.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ThriftySingapore.com.xml b/src/chrome/content/rules/ThriftySingapore.com.xml new file mode 100644 index 000000000000..4dc86f49a7cd --- /dev/null +++ b/src/chrome/content/rules/ThriftySingapore.com.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Thumbshots.xml b/src/chrome/content/rules/Thumbshots.xml index b33a41879e07..83fa73b2a1c7 100644 --- a/src/chrome/content/rules/Thumbshots.xml +++ b/src/chrome/content/rules/Thumbshots.xml @@ -1,20 +1,43 @@ + - - - - + + + + + + + + + + + - + + + + - + - + + + + - + diff --git a/src/chrome/content/rules/Thumbtack.com.xml b/src/chrome/content/rules/Thumbtack.com.xml new file mode 100644 index 000000000000..3e162a5c6b13 --- /dev/null +++ b/src/chrome/content/rules/Thumbtack.com.xml @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Thunderbird.net.xml b/src/chrome/content/rules/Thunderbird.net.xml new file mode 100644 index 000000000000..558516910d85 --- /dev/null +++ b/src/chrome/content/rules/Thunderbird.net.xml @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Thunderclap.it.xml b/src/chrome/content/rules/Thunderclap.it.xml deleted file mode 100644 index f207670be278..000000000000 --- a/src/chrome/content/rules/Thunderclap.it.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Thunderkick.xml b/src/chrome/content/rules/Thunderkick.xml index 2c6c61d5ac48..581d0d2da23a 100644 --- a/src/chrome/content/rules/Thunderkick.xml +++ b/src/chrome/content/rules/Thunderkick.xml @@ -6,7 +6,7 @@ Fetch error: http://thunderkick.com/ => https://thunderkick.com/: (60, 'SSL cert Disabled by https-everywhere-checker because: Fetch error: http://thunderkick.com/ => https://thunderkick.com/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + @@ -15,4 +15,4 @@ Fetch error: http://thunderkick.com/ => https://thunderkick.com/: (60, 'SSL cert - \ No newline at end of file + diff --git a/src/chrome/content/rules/Thuvien.lgbt.xml b/src/chrome/content/rules/Thuvien.lgbt.xml new file mode 100644 index 000000000000..badac978a37a --- /dev/null +++ b/src/chrome/content/rules/Thuvien.lgbt.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/TiMos.me.xml b/src/chrome/content/rules/TiMos.me.xml index bb9ed90ef0e0..bde694e91053 100644 --- a/src/chrome/content/rules/TiMos.me.xml +++ b/src/chrome/content/rules/TiMos.me.xml @@ -6,7 +6,7 @@ Fetch error: http://timos.me/ => https://timos.me/: (28, 'Connection timed out a www.timos.me doesn't exist. --> - + diff --git a/src/chrome/content/rules/Ticaretsicil.gov.tr.xml b/src/chrome/content/rules/Ticaretsicil.gov.tr.xml new file mode 100644 index 000000000000..26e5f0f76b6f --- /dev/null +++ b/src/chrome/content/rules/Ticaretsicil.gov.tr.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/TickerTech.com.xml b/src/chrome/content/rules/TickerTech.com.xml index 587009b6b298..54009d92b129 100644 --- a/src/chrome/content/rules/TickerTech.com.xml +++ b/src/chrome/content/rules/TickerTech.com.xml @@ -7,10 +7,11 @@ - + + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Ticker_Madness.com.xml b/src/chrome/content/rules/Ticker_Madness.com.xml deleted file mode 100644 index 30875bf8978c..000000000000 --- a/src/chrome/content/rules/Ticker_Madness.com.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/TicketOne.xml b/src/chrome/content/rules/TicketOne.xml index 1512656b3763..fba7d174cf83 100644 --- a/src/chrome/content/rules/TicketOne.xml +++ b/src/chrome/content/rules/TicketOne.xml @@ -6,10 +6,11 @@ Non-2xx HTTP code: http://ticketone.it/ (200) => https://www.ticketone.it/ (403) ^ticketone.it doesn't work. --> - + - + + @@ -18,7 +19,6 @@ Non-2xx HTTP code: http://ticketone.it/ (200) => https://www.ticketone.it/ (403) - + diff --git a/src/chrome/content/rules/Ticket_Driver.xml b/src/chrome/content/rules/Ticket_Driver.xml deleted file mode 100644 index 86f7c541a495..000000000000 --- a/src/chrome/content/rules/Ticket_Driver.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Ticket_Online.xml b/src/chrome/content/rules/Ticket_Online.xml index dba8513fad85..7dd583f248ee 100644 --- a/src/chrome/content/rules/Ticket_Online.xml +++ b/src/chrome/content/rules/Ticket_Online.xml @@ -8,10 +8,11 @@ Non-2xx HTTP code: http://ticketonline.de/ (200) => https://www.ticketonline.de/ - ticketonline.de (times out) --> - + - + + @@ -20,7 +21,6 @@ Non-2xx HTTP code: http://ticketonline.de/ (200) => https://www.ticketonline.de/ - + diff --git a/src/chrome/content/rules/Ticketcorner.ch.xml b/src/chrome/content/rules/Ticketcorner.ch.xml new file mode 100644 index 000000000000..ce1d5487258c --- /dev/null +++ b/src/chrome/content/rules/Ticketcorner.ch.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Ticketcorner.xml b/src/chrome/content/rules/Ticketcorner.xml deleted file mode 100644 index cf62d6a121ba..000000000000 --- a/src/chrome/content/rules/Ticketcorner.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/TicketingNetworkEastMidlands.xml b/src/chrome/content/rules/TicketingNetworkEastMidlands.xml index 8eac999458e3..31f32c69c88f 100644 --- a/src/chrome/content/rules/TicketingNetworkEastMidlands.xml +++ b/src/chrome/content/rules/TicketingNetworkEastMidlands.xml @@ -9,14 +9,12 @@ Disabled by https-everywhere-checker because: Fetch error: http://ticketingnetworkeastmidlands.co.uk/ => https://ticketingnetworkeastmidlands.co.uk/: (28, 'Connection timed out after 10001 milliseconds') Fetch error: http://www.ticketingnetworkeastmidlands.co.uk/ => https://www.ticketingnetworkeastmidlands.co.uk/: (28, 'Connection timed out after 10001 milliseconds') --> - + - + - - - + diff --git a/src/chrome/content/rules/Ticketmaster.ae.xml b/src/chrome/content/rules/Ticketmaster.ae.xml new file mode 100644 index 000000000000..93c2a3f38dda --- /dev/null +++ b/src/chrome/content/rules/Ticketmaster.ae.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Ticketmaster.at.xml b/src/chrome/content/rules/Ticketmaster.at.xml new file mode 100644 index 000000000000..506ced89e6e1 --- /dev/null +++ b/src/chrome/content/rules/Ticketmaster.at.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Ticketmaster.be.xml b/src/chrome/content/rules/Ticketmaster.be.xml new file mode 100644 index 000000000000..37be670df049 --- /dev/null +++ b/src/chrome/content/rules/Ticketmaster.be.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Ticketmaster.ch.xml b/src/chrome/content/rules/Ticketmaster.ch.xml new file mode 100644 index 000000000000..c48059653738 --- /dev/null +++ b/src/chrome/content/rules/Ticketmaster.ch.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Ticketmaster.co.nz.xml b/src/chrome/content/rules/Ticketmaster.co.nz.xml new file mode 100644 index 000000000000..769f3f110a60 --- /dev/null +++ b/src/chrome/content/rules/Ticketmaster.co.nz.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Ticketmaster.co.uk.xml b/src/chrome/content/rules/Ticketmaster.co.uk.xml new file mode 100644 index 000000000000..11897fb2cb07 --- /dev/null +++ b/src/chrome/content/rules/Ticketmaster.co.uk.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/Ticketmaster.com.au.xml b/src/chrome/content/rules/Ticketmaster.com.au.xml new file mode 100644 index 000000000000..4785441336c5 --- /dev/null +++ b/src/chrome/content/rules/Ticketmaster.com.au.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Ticketmaster.com.mx.xml b/src/chrome/content/rules/Ticketmaster.com.mx.xml new file mode 100644 index 000000000000..b661094f6f14 --- /dev/null +++ b/src/chrome/content/rules/Ticketmaster.com.mx.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Ticketmaster.cz.xml b/src/chrome/content/rules/Ticketmaster.cz.xml new file mode 100644 index 000000000000..08cc23f9f393 --- /dev/null +++ b/src/chrome/content/rules/Ticketmaster.cz.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Ticketmaster.de.xml b/src/chrome/content/rules/Ticketmaster.de.xml new file mode 100644 index 000000000000..8c81674a7b84 --- /dev/null +++ b/src/chrome/content/rules/Ticketmaster.de.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Ticketmaster.dk.xml b/src/chrome/content/rules/Ticketmaster.dk.xml new file mode 100644 index 000000000000..583e67f45d7e --- /dev/null +++ b/src/chrome/content/rules/Ticketmaster.dk.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Ticketmaster.es.xml b/src/chrome/content/rules/Ticketmaster.es.xml new file mode 100644 index 000000000000..e5a79d639ecd --- /dev/null +++ b/src/chrome/content/rules/Ticketmaster.es.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Ticketmaster.eu.xml b/src/chrome/content/rules/Ticketmaster.eu.xml new file mode 100644 index 000000000000..99fadcc72eac --- /dev/null +++ b/src/chrome/content/rules/Ticketmaster.eu.xml @@ -0,0 +1,11 @@ + + + + + + + diff --git a/src/chrome/content/rules/Ticketmaster.fi.xml b/src/chrome/content/rules/Ticketmaster.fi.xml new file mode 100644 index 000000000000..1121e05773d5 --- /dev/null +++ b/src/chrome/content/rules/Ticketmaster.fi.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Ticketmaster.fr.xml b/src/chrome/content/rules/Ticketmaster.fr.xml new file mode 100644 index 000000000000..cc0ded4254d9 --- /dev/null +++ b/src/chrome/content/rules/Ticketmaster.fr.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Ticketmaster.gr.xml b/src/chrome/content/rules/Ticketmaster.gr.xml new file mode 100644 index 000000000000..a0a0d30c1ded --- /dev/null +++ b/src/chrome/content/rules/Ticketmaster.gr.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Ticketmaster.ie.xml b/src/chrome/content/rules/Ticketmaster.ie.xml new file mode 100644 index 000000000000..c9cbcd41422f --- /dev/null +++ b/src/chrome/content/rules/Ticketmaster.ie.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Ticketmaster.it.xml b/src/chrome/content/rules/Ticketmaster.it.xml new file mode 100644 index 000000000000..94815a2b327f --- /dev/null +++ b/src/chrome/content/rules/Ticketmaster.it.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Ticketmaster.nl.xml b/src/chrome/content/rules/Ticketmaster.nl.xml new file mode 100644 index 000000000000..4c4d9bdde637 --- /dev/null +++ b/src/chrome/content/rules/Ticketmaster.nl.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Ticketmaster.no.xml b/src/chrome/content/rules/Ticketmaster.no.xml new file mode 100644 index 000000000000..02b692ce57bb --- /dev/null +++ b/src/chrome/content/rules/Ticketmaster.no.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Ticketmaster.pl.xml b/src/chrome/content/rules/Ticketmaster.pl.xml new file mode 100644 index 000000000000..1b1dc3f7eb78 --- /dev/null +++ b/src/chrome/content/rules/Ticketmaster.pl.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Ticketmaster.se.xml b/src/chrome/content/rules/Ticketmaster.se.xml new file mode 100644 index 000000000000..1e17b5975a7c --- /dev/null +++ b/src/chrome/content/rules/Ticketmaster.se.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Ticketmaster.xml b/src/chrome/content/rules/Ticketmaster.xml index edbad66a422d..137ce45d44ab 100644 --- a/src/chrome/content/rules/Ticketmaster.xml +++ b/src/chrome/content/rules/Ticketmaster.xml @@ -1,175 +1,43 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Ticketpro.xml b/src/chrome/content/rules/Ticketpro.xml deleted file mode 100644 index f25374701dd4..000000000000 --- a/src/chrome/content/rules/Ticketpro.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Tickets.com.xml b/src/chrome/content/rules/Tickets.com.xml index 1be7758d87d5..53b574acf471 100644 --- a/src/chrome/content/rules/Tickets.com.xml +++ b/src/chrome/content/rules/Tickets.com.xml @@ -1,9 +1,14 @@ + - + - + + + - - - - - - - - - - - + --> + + diff --git a/src/chrome/content/rules/Tickets.gwr.com.xml b/src/chrome/content/rules/Tickets.gwr.com.xml index 8b84b60330b3..48913593a91f 100644 --- a/src/chrome/content/rules/Tickets.gwr.com.xml +++ b/src/chrome/content/rules/Tickets.gwr.com.xml @@ -1,7 +1,6 @@ - diff --git a/src/chrome/content/rules/TicketsNow.xml b/src/chrome/content/rules/TicketsNow.xml index eff5444f218d..411354d7f758 100644 --- a/src/chrome/content/rules/TicketsNow.xml +++ b/src/chrome/content/rules/TicketsNow.xml @@ -1,43 +1,51 @@ - - - - - - - - - - - - + + + + + + + + + + diff --git a/src/chrome/content/rules/Ticketweb.co.uk.xml b/src/chrome/content/rules/Ticketweb.co.uk.xml new file mode 100644 index 000000000000..1f7456f99aaa --- /dev/null +++ b/src/chrome/content/rules/Ticketweb.co.uk.xml @@ -0,0 +1,10 @@ + + + + + + + diff --git a/src/chrome/content/rules/Ticketweb.com.xml b/src/chrome/content/rules/Ticketweb.com.xml new file mode 100644 index 000000000000..668ab22b8b37 --- /dev/null +++ b/src/chrome/content/rules/Ticketweb.com.xml @@ -0,0 +1,12 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Tictail.com.xml b/src/chrome/content/rules/Tictail.com.xml index 30e80a767dd1..76ad370aa337 100644 --- a/src/chrome/content/rules/Tictail.com.xml +++ b/src/chrome/content/rules/Tictail.com.xml @@ -49,7 +49,11 @@ - + + + + + diff --git a/src/chrome/content/rules/Tid.al-problematic.xml b/src/chrome/content/rules/Tid.al-problematic.xml index f6d737282700..632dff4f48f0 100644 --- a/src/chrome/content/rules/Tid.al-problematic.xml +++ b/src/chrome/content/rules/Tid.al-problematic.xml @@ -10,7 +10,6 @@ - + diff --git a/src/chrome/content/rules/TidBITS.xml b/src/chrome/content/rules/TidBITS.xml index 05c61553ee48..6716ab03ea3b 100644 --- a/src/chrome/content/rules/TidBITS.xml +++ b/src/chrome/content/rules/TidBITS.xml @@ -12,4 +12,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Tidal_HiFi.com.xml b/src/chrome/content/rules/Tidal_HiFi.com.xml index 17cc1dcefa00..cc46e57aaab7 100644 --- a/src/chrome/content/rules/Tidal_HiFi.com.xml +++ b/src/chrome/content/rules/Tidal_HiFi.com.xml @@ -16,7 +16,9 @@ - + + + - + - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/TieTuKu.xml b/src/chrome/content/rules/TieTuKu.xml index aca41267ed5b..04393440a400 100644 --- a/src/chrome/content/rules/TieTuKu.xml +++ b/src/chrome/content/rules/TieTuKu.xml @@ -30,7 +30,7 @@ Fetch error: http://i2.piimg.com/ => https://i2.piimg.com/: (28, 'Connection tim i7.buimg.com i7.piimg.com --> - + diff --git a/src/chrome/content/rules/TierraNet.xml b/src/chrome/content/rules/TierraNet.xml index 2926d108498c..34fea00394e6 100644 --- a/src/chrome/content/rules/TierraNet.xml +++ b/src/chrome/content/rules/TierraNet.xml @@ -27,7 +27,7 @@ - + - - - - - - + - - \ No newline at end of file + diff --git a/src/chrome/content/rules/Tietoenator.com.xml b/src/chrome/content/rules/Tietoenator.com.xml deleted file mode 100644 index 25485b6c118b..000000000000 --- a/src/chrome/content/rules/Tietoenator.com.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Tiger-Airways.xml b/src/chrome/content/rules/Tiger-Airways.xml index 6dce0a6c2b1a..6b5dc5c5e740 100644 --- a/src/chrome/content/rules/Tiger-Airways.xml +++ b/src/chrome/content/rules/Tiger-Airways.xml @@ -25,7 +25,7 @@ Fetch error: http://groups.tigerair.com/ => https://groups.tigerair.com/: (51, " ¹ timeout ² cert mismatch --> - + @@ -39,4 +39,4 @@ Fetch error: http://groups.tigerair.com/ => https://groups.tigerair.com/: (51, " - \ No newline at end of file + diff --git a/src/chrome/content/rules/TigerDirect.xml b/src/chrome/content/rules/TigerDirect.xml index f8033bda973f..0126088acaa4 100644 --- a/src/chrome/content/rules/TigerDirect.xml +++ b/src/chrome/content/rules/TigerDirect.xml @@ -18,7 +18,7 @@ Fetch error: http://biz.tigerdirect.com/ => https://biz.tigerdirect.com/: (60, ' - Image on biz from i\d+.geccdn.net --> - + diff --git a/src/chrome/content/rules/Tigertronics.com.xml b/src/chrome/content/rules/Tigertronics.com.xml new file mode 100644 index 000000000000..56fa29031f46 --- /dev/null +++ b/src/chrome/content/rules/Tigertronics.com.xml @@ -0,0 +1,20 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/TiggersWelt.net.xml b/src/chrome/content/rules/TiggersWelt.net.xml index 5c0ffb0d609d..d63e0de39273 100644 --- a/src/chrome/content/rules/TiggersWelt.net.xml +++ b/src/chrome/content/rules/TiggersWelt.net.xml @@ -17,12 +17,12 @@ Non-2xx HTTP code: http://ssl.tiggerswelt.net/ (200) => https://ssl.tiggerswelt. - webmail (→ ssl) - Insecure cookies are set for these + Insecure cookies are set for these - ssl --> - + diff --git a/src/chrome/content/rules/TikTok.xml b/src/chrome/content/rules/TikTok.xml new file mode 100644 index 000000000000..72a95709636a --- /dev/null +++ b/src/chrome/content/rules/TikTok.xml @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Tiki-Toki.com.xml b/src/chrome/content/rules/Tiki-Toki.com.xml index 80888c1a3c2e..ff1ad9f13c4e 100644 --- a/src/chrome/content/rules/Tiki-Toki.com.xml +++ b/src/chrome/content/rules/Tiki-Toki.com.xml @@ -4,7 +4,7 @@ - + - + + + + + + + + diff --git a/src/chrome/content/rules/Tilburg_University.xml b/src/chrome/content/rules/Tilburg_University.xml index 31523a56e476..50a7d51e4b87 100644 --- a/src/chrome/content/rules/Tilburg_University.xml +++ b/src/chrome/content/rules/Tilburg_University.xml @@ -9,7 +9,7 @@ Fetch error: http://stuwww.uvt.nl/ => https://stuwww.uvt.nl/: (28, 'Connection t - www.tilburguniversity.edu --> - + @@ -44,7 +44,7 @@ Fetch error: http://stuwww.uvt.nl/ => https://stuwww.uvt.nl/: (28, 'Connection t --> - + - + diff --git a/src/chrome/content/rules/Tilt.com.xml b/src/chrome/content/rules/Tilt.com.xml deleted file mode 100644 index 4d290c2ee087..000000000000 --- a/src/chrome/content/rules/Tilt.com.xml +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Tilted_Windmill_Press.com.xml b/src/chrome/content/rules/Tilted_Windmill_Press.com.xml index 611be46a6392..cfff2a53e852 100644 --- a/src/chrome/content/rules/Tilted_Windmill_Press.com.xml +++ b/src/chrome/content/rules/Tilted_Windmill_Press.com.xml @@ -4,7 +4,7 @@ - + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/TimHortons.com.xml b/src/chrome/content/rules/TimHortons.com.xml new file mode 100644 index 000000000000..989087dfd56c --- /dev/null +++ b/src/chrome/content/rules/TimHortons.com.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Tim_Minchin.com.xml b/src/chrome/content/rules/Tim_Minchin.com.xml index 0a1a1e20225c..bc0b06308c88 100644 --- a/src/chrome/content/rules/Tim_Minchin.com.xml +++ b/src/chrome/content/rules/Tim_Minchin.com.xml @@ -1,23 +1,10 @@ - + + - + diff --git a/src/chrome/content/rules/Timbro.se.xml b/src/chrome/content/rules/Timbro.se.xml index a13aa8ed74c8..c38f38dc0308 100644 --- a/src/chrome/content/rules/Timbro.se.xml +++ b/src/chrome/content/rules/Timbro.se.xml @@ -1,7 +1,6 @@ - - + diff --git a/src/chrome/content/rules/TimeTrade.xml b/src/chrome/content/rules/TimeTrade.xml deleted file mode 100644 index 25ff538bfc56..000000000000 --- a/src/chrome/content/rules/TimeTrade.xml +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/TimeWeb.xml b/src/chrome/content/rules/TimeWeb.xml index 1e1cb8622beb..a56979a8e437 100644 --- a/src/chrome/content/rules/TimeWeb.xml +++ b/src/chrome/content/rules/TimeWeb.xml @@ -12,7 +12,7 @@ - + https://amp.timeinc.net/time/4753419/time-100-gala-biggest-moments/?source=dam: (6, 'Could not resolve host: amp.timeinc.net') +Fetch error: http://amp.timeinc.net/ => https://amp.timeinc.net/: (6, 'Could not resolve host: amp.timeinc.net') + +--> + - - - + @@ -48,11 +59,11 @@ - + - + diff --git a/src/chrome/content/rules/Times.xml b/src/chrome/content/rules/Times.xml index 1ffde7bb350d..efade848fc63 100644 --- a/src/chrome/content/rules/Times.xml +++ b/src/chrome/content/rules/Times.xml @@ -66,7 +66,7 @@ - + - + https://www.timesrecordnews.com/: (5 - + + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Timex.xml b/src/chrome/content/rules/Timex.xml index c1db26e01cd1..47160102f312 100644 --- a/src/chrome/content/rules/Timex.xml +++ b/src/chrome/content/rules/Timex.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://timex.com/ => https://timex.com/: (51, "SSL: no alternative certificate subject name matches target host name 'timex.com'") --> - + @@ -15,4 +15,4 @@ Fetch error: http://timex.com/ => https://timex.com/: (51, "SSL: no alternative - \ No newline at end of file + diff --git a/src/chrome/content/rules/TinEye.xml b/src/chrome/content/rules/TinEye.xml index 2666530b5f48..8d2ab9854992 100644 --- a/src/chrome/content/rules/TinEye.xml +++ b/src/chrome/content/rules/TinEye.xml @@ -24,7 +24,7 @@ - + + + + + + + + + diff --git a/src/chrome/content/rules/Tinder.xml b/src/chrome/content/rules/Tinder.xml index 05a0b38a6852..b2f68db7fed6 100644 --- a/src/chrome/content/rules/Tinder.xml +++ b/src/chrome/content/rules/Tinder.xml @@ -16,7 +16,7 @@ - + - + + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/TinkerSoup.de.xml b/src/chrome/content/rules/TinkerSoup.de.xml index f51dcfb2d4ac..47d5c8484343 100644 --- a/src/chrome/content/rules/TinkerSoup.de.xml +++ b/src/chrome/content/rules/TinkerSoup.de.xml @@ -18,7 +18,7 @@ Fetch error: http://www.tinkersoup.de/ => https://www.tinkersoup.de/: (60, 'SSL * Secured by us --> - + diff --git a/src/chrome/content/rules/Tinkerforge.com.xml b/src/chrome/content/rules/Tinkerforge.com.xml index 18cfce69a0b9..ab42090aae37 100644 --- a/src/chrome/content/rules/Tinkerforge.com.xml +++ b/src/chrome/content/rules/Tinkerforge.com.xml @@ -23,4 +23,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/TinyBites.xml b/src/chrome/content/rules/TinyBites.xml deleted file mode 100644 index 626ef1787baa..000000000000 --- a/src/chrome/content/rules/TinyBites.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/TinyChat.xml b/src/chrome/content/rules/TinyChat.xml index 4cfc0cf7af2a..63aa9f52571d 100644 --- a/src/chrome/content/rules/TinyChat.xml +++ b/src/chrome/content/rules/TinyChat.xml @@ -7,9 +7,9 @@ Fetch error: http://www.tinychat.com/ => https://tinychat.com/: (60, 'SSL certif - diff --git a/src/chrome/content/rules/TinyDL.com.xml b/src/chrome/content/rules/TinyDL.com.xml deleted file mode 100644 index f79f9286b141..000000000000 --- a/src/chrome/content/rules/TinyDL.com.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/TinyPNG.xml b/src/chrome/content/rules/TinyPNG.xml index 4413a080e7d7..08f13af1f001 100644 --- a/src/chrome/content/rules/TinyPNG.xml +++ b/src/chrome/content/rules/TinyPNG.xml @@ -1,7 +1,21 @@ + + - + + + + + - + + + diff --git a/src/chrome/content/rules/TinyURL.xml b/src/chrome/content/rules/TinyURL.xml deleted file mode 100644 index c422ea1c0b9f..000000000000 --- a/src/chrome/content/rules/TinyURL.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Tinypass.com-falsemixed.xml b/src/chrome/content/rules/Tinypass.com-falsemixed.xml deleted file mode 100644 index 5e7925ae565c..000000000000 --- a/src/chrome/content/rules/Tinypass.com-falsemixed.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Tinypass.com.xml b/src/chrome/content/rules/Tinypass.com.xml index b11b7733208f..48b54db922ed 100644 --- a/src/chrome/content/rules/Tinypass.com.xml +++ b/src/chrome/content/rules/Tinypass.com.xml @@ -1,56 +1,41 @@ - + + + + + + + + + + + + + + + - - - - - - + - + diff --git a/src/chrome/content/rules/Tinyteenpass.com.xml b/src/chrome/content/rules/Tinyteenpass.com.xml index 1ae6df7409a4..23e1c52ff061 100644 --- a/src/chrome/content/rules/Tinyteenpass.com.xml +++ b/src/chrome/content/rules/Tinyteenpass.com.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://tinyteenpass.com/ => https://tinyteenpass.com/: (7, 'Failed to connect to tinyteenpass.com port 443: No route to host') Fetch error: http://www.tinyteenpass.com/ => https://www.tinyteenpass.com/: (7, 'Failed to connect to www.tinyteenpass.com port 443: No route to host') --> - + @@ -16,4 +16,4 @@ Fetch error: http://www.tinyteenpass.com/ => https://www.tinyteenpass.com/: (7, - \ No newline at end of file + diff --git a/src/chrome/content/rules/Tipico.de.xml b/src/chrome/content/rules/Tipico.de.xml index ef4572ae922d..83a08957f8de 100644 --- a/src/chrome/content/rules/Tipico.de.xml +++ b/src/chrome/content/rules/Tipico.de.xml @@ -10,4 +10,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Tirerack.com.xml b/src/chrome/content/rules/Tirerack.com.xml deleted file mode 100644 index 3acb50702749..000000000000 --- a/src/chrome/content/rules/Tirerack.com.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/src/chrome/content/rules/Tiscali.it.xml b/src/chrome/content/rules/Tiscali.it.xml index e56f0b8b7be5..1a35e366b048 100644 --- a/src/chrome/content/rules/Tiscali.it.xml +++ b/src/chrome/content/rules/Tiscali.it.xml @@ -93,7 +93,7 @@ - + + + + + + + + + + diff --git a/src/chrome/content/rules/TitanPad.com.xml b/src/chrome/content/rules/TitanPad.com.xml deleted file mode 100644 index 02c54f32ce65..000000000000 --- a/src/chrome/content/rules/TitanPad.com.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Titanshare.to.xml b/src/chrome/content/rules/Titanshare.to.xml deleted file mode 100644 index e6a813e57953..000000000000 --- a/src/chrome/content/rules/Titanshare.to.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Tizen.org.xml b/src/chrome/content/rules/Tizen.org.xml index 658867eb8d05..209740f2f421 100644 --- a/src/chrome/content/rules/Tizen.org.xml +++ b/src/chrome/content/rules/Tizen.org.xml @@ -16,7 +16,7 @@ Fetch error: http://tizen.org/ => https://tizen.org/: (51, "SSL: no alternative - wiki --> - + diff --git a/src/chrome/content/rules/Tjoos.xml b/src/chrome/content/rules/Tjoos.xml index b909fa2f5e51..96b47e45936f 100644 --- a/src/chrome/content/rules/Tjoos.xml +++ b/src/chrome/content/rules/Tjoos.xml @@ -5,7 +5,11 @@ - + + + + + https://www.tjournal.ru/: (51, "SSL: no alternative certificate subject name matches target host name 'www.tjournal.ru'") --> - + diff --git a/src/chrome/content/rules/Tkbbank.ru.xml b/src/chrome/content/rules/Tkbbank.ru.xml index e4610627355f..de13ebf5b426 100644 --- a/src/chrome/content/rules/Tkbbank.ru.xml +++ b/src/chrome/content/rules/Tkbbank.ru.xml @@ -10,7 +10,7 @@ sfera.tkbbank.ru ³ ¹ mismatch ³ timed out --> - + diff --git a/src/chrome/content/rules/Tl63.co.uk.xml b/src/chrome/content/rules/Tl63.co.uk.xml deleted file mode 100644 index a1931fb20c5f..000000000000 --- a/src/chrome/content/rules/Tl63.co.uk.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Tls.li.xml b/src/chrome/content/rules/Tls.li.xml index fe3323337241..58fe6324dc37 100644 --- a/src/chrome/content/rules/Tls.li.xml +++ b/src/chrome/content/rules/Tls.li.xml @@ -8,7 +8,7 @@ Fetch error: http://tls.li/ => https://tls.li/: (28, 'Connection timed out after - www.tls.li --> - + diff --git a/src/chrome/content/rules/Tmblr.co.xml b/src/chrome/content/rules/Tmblr.co.xml index 550195eed6c1..04a62534ae7a 100644 --- a/src/chrome/content/rules/Tmblr.co.xml +++ b/src/chrome/content/rules/Tmblr.co.xml @@ -1,8 +1,6 @@ @@ -12,9 +10,7 @@ - - + diff --git a/src/chrome/content/rules/Tmcnet.com.xml b/src/chrome/content/rules/Tmcnet.com.xml index 53aa8e267089..f90a14f5bd98 100644 --- a/src/chrome/content/rules/Tmcnet.com.xml +++ b/src/chrome/content/rules/Tmcnet.com.xml @@ -20,7 +20,7 @@ Fetch error: http://www.tmcnet.com/ => https://www.tmcnet.com/: Cycle detected - ** 404, CN: www.tmcnet.com --> - + @@ -28,4 +28,4 @@ Fetch error: http://www.tmcnet.com/ => https://www.tmcnet.com/: Cycle detected - - \ No newline at end of file + diff --git a/src/chrome/content/rules/Tmsz.com.xml b/src/chrome/content/rules/Tmsz.com.xml index b7960b28de79..59d217eeba12 100644 --- a/src/chrome/content/rules/Tmsz.com.xml +++ b/src/chrome/content/rules/Tmsz.com.xml @@ -10,7 +10,7 @@ Fetch error: http://www.tmsz.com/ => https://www.tmsz.com/: (7, 'Failed to conne Mixed images from various domains --> - + diff --git a/src/chrome/content/rules/Tnaflix.xml b/src/chrome/content/rules/Tnaflix.xml index bb52c5ddc7b0..148f7159229c 100644 --- a/src/chrome/content/rules/Tnaflix.xml +++ b/src/chrome/content/rules/Tnaflix.xml @@ -26,7 +26,7 @@ - + - + https://cdn.tofour.net/: (6, 'Could not resolve host: cdn.tofour.net') + Other toFOUR rulesets: - - Picload.org.xml --> - + - + + + + + + + + + diff --git a/src/chrome/content/rules/Toad_Fly.xml b/src/chrome/content/rules/Toad_Fly.xml index bce3b4d33730..1a2ec78f491c 100644 --- a/src/chrome/content/rules/Toad_Fly.xml +++ b/src/chrome/content/rules/Toad_Fly.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Toastmasters.org.xml b/src/chrome/content/rules/Toastmasters.org.xml new file mode 100644 index 000000000000..6b75d412a405 --- /dev/null +++ b/src/chrome/content/rules/Toastmasters.org.xml @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Todo_en_Tinta.xml b/src/chrome/content/rules/Todo_en_Tinta.xml index ee664e867dc5..6fd44f8e2239 100644 --- a/src/chrome/content/rules/Todo_en_Tinta.xml +++ b/src/chrome/content/rules/Todo_en_Tinta.xml @@ -7,7 +7,7 @@ Fetch error: http://www.ahorroentinta.com/ => https://www.ahorroentinta.com/: (6 Disabled by https-everywhere-checker because: Fetch error: http://ahorroentinta.com/ => https://ahorroentinta.com/: Redirect for 'http://peplogar.com/' missing Location --> - + @@ -18,4 +18,4 @@ Fetch error: http://ahorroentinta.com/ => https://ahorroentinta.com/: Redirect f - \ No newline at end of file + diff --git a/src/chrome/content/rules/Todoly.xml b/src/chrome/content/rules/Todoly.xml index d3110e856b45..f34dc53a3247 100644 --- a/src/chrome/content/rules/Todoly.xml +++ b/src/chrome/content/rules/Todoly.xml @@ -2,7 +2,7 @@ - + diff --git a/src/chrome/content/rules/Toga_Hotels.xml b/src/chrome/content/rules/Toga_Hotels.xml index 722bf8248206..2826b4e3139f 100644 --- a/src/chrome/content/rules/Toga_Hotels.xml +++ b/src/chrome/content/rules/Toga_Hotels.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Toko_Bitcoin.com.xml b/src/chrome/content/rules/Toko_Bitcoin.com.xml deleted file mode 100644 index 40fbdf30bc03..000000000000 --- a/src/chrome/content/rules/Toko_Bitcoin.com.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Tokopedia.com.xml b/src/chrome/content/rules/Tokopedia.com.xml new file mode 100644 index 000000000000..b233b8c0a1b3 --- /dev/null +++ b/src/chrome/content/rules/Tokopedia.com.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Tokyo-Broadcasting-System-Television.xml b/src/chrome/content/rules/Tokyo-Broadcasting-System-Television.xml new file mode 100644 index 000000000000..05965a9c87e5 --- /dev/null +++ b/src/chrome/content/rules/Tokyo-Broadcasting-System-Television.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/src/chrome/content/rules/Tokyo-Linux-Users-Group.xml b/src/chrome/content/rules/Tokyo-Linux-Users-Group.xml index 414912d8e275..8524aefb4779 100644 --- a/src/chrome/content/rules/Tokyo-Linux-Users-Group.xml +++ b/src/chrome/content/rules/Tokyo-Linux-Users-Group.xml @@ -7,12 +7,12 @@ - + + - + diff --git a/src/chrome/content/rules/Tokyo_University_of_Science.xml b/src/chrome/content/rules/Tokyo_University_of_Science.xml index bf2d5db6f740..45de56d6744d 100644 --- a/src/chrome/content/rules/Tokyo_University_of_Science.xml +++ b/src/chrome/content/rules/Tokyo_University_of_Science.xml @@ -7,4 +7,4 @@ --> - \ No newline at end of file + diff --git a/src/chrome/content/rules/TomPawlak.org.xml b/src/chrome/content/rules/TomPawlak.org.xml deleted file mode 100644 index ae7f943f95ae..000000000000 --- a/src/chrome/content/rules/TomPawlak.org.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/TomTom-International.xml b/src/chrome/content/rules/TomTom-International.xml index 5e37257b5478..4f914fbaa428 100644 --- a/src/chrome/content/rules/TomTom-International.xml +++ b/src/chrome/content/rules/TomTom-International.xml @@ -14,10 +14,10 @@ Fetch error: http://www.tomtomrunningrace.com/ => https://www.tomtomrunningrace. - lbs - livetraffic - download * - + * bad cert domain --> - + @@ -25,7 +25,7 @@ Fetch error: http://www.tomtomrunningrace.com/ => https://www.tomtomrunningrace. - + @@ -47,20 +47,20 @@ Fetch error: http://www.tomtomrunningrace.com/ => https://www.tomtomrunningrace. - + - + - - + + - - + + - + diff --git a/src/chrome/content/rules/Toms-of-Maine.xml b/src/chrome/content/rules/Toms-of-Maine.xml index ecd6d0e59fd6..4f5d151ad1c7 100644 --- a/src/chrome/content/rules/Toms-of-Maine.xml +++ b/src/chrome/content/rules/Toms-of-Maine.xml @@ -6,7 +6,7 @@ Fetch error: http://images.tomsofmainestore.com/ => https://images.tomsofmainest Disabled by https-everywhere-checker because: Fetch error: http://images.tomsofmainestore.com/ => https://images.tomsofmainestore.com/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + diff --git a/src/chrome/content/rules/TomsHardware.com.xml b/src/chrome/content/rules/TomsHardware.com.xml new file mode 100644 index 000000000000..77297018663d --- /dev/null +++ b/src/chrome/content/rules/TomsHardware.com.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/TonerGiant.xml b/src/chrome/content/rules/TonerGiant.xml index 194a90702c01..0d16bb210095 100644 --- a/src/chrome/content/rules/TonerGiant.xml +++ b/src/chrome/content/rules/TonerGiant.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/TonyBianco.xml b/src/chrome/content/rules/TonyBianco.xml index a6e362f5676f..f7d8626c7fd3 100644 --- a/src/chrome/content/rules/TonyBianco.xml +++ b/src/chrome/content/rules/TonyBianco.xml @@ -5,4 +5,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/TonyZTan.xml b/src/chrome/content/rules/TonyZTan.xml index d98dabe71128..12b15f5b4c3c 100644 --- a/src/chrome/content/rules/TonyZTan.xml +++ b/src/chrome/content/rules/TonyZTan.xml @@ -4,11 +4,11 @@ Disabled by https-everywhere-checker because: Fetch error: http://ztan.tk/ => https://ztan.tk/: (28, 'Connection timed out after 20001 milliseconds') --> - + - + - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Toogl.com.xml b/src/chrome/content/rules/Toogl.com.xml index 72682471fb78..60eb8db82707 100644 --- a/src/chrome/content/rules/Toogl.com.xml +++ b/src/chrome/content/rules/Toogl.com.xml @@ -23,7 +23,7 @@ Fetch error: http://toogl.com/ => https://toogl.com/: (35, 'Unknown SSL protocol - quiz --> - + diff --git a/src/chrome/content/rules/ToolbarBrowser.xml b/src/chrome/content/rules/ToolbarBrowser.xml index 0bcdbd372cc9..da921732f067 100644 --- a/src/chrome/content/rules/ToolbarBrowser.xml +++ b/src/chrome/content/rules/ToolbarBrowser.xml @@ -1,17 +1,12 @@ - + + - - - \ No newline at end of file + diff --git a/src/chrome/content/rules/Toolbox.com.xml b/src/chrome/content/rules/Toolbox.com.xml new file mode 100644 index 000000000000..a8c88393bc1e --- /dev/null +++ b/src/chrome/content/rules/Toolbox.com.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ToontownRewritten.xml b/src/chrome/content/rules/ToontownRewritten.xml deleted file mode 100644 index 1202ec297138..000000000000 --- a/src/chrome/content/rules/ToontownRewritten.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Top.de.xml b/src/chrome/content/rules/Top.de.xml index f97d2e97b662..d06aedede095 100644 --- a/src/chrome/content/rules/Top.de.xml +++ b/src/chrome/content/rules/Top.de.xml @@ -40,7 +40,7 @@ Fetch error: http://sec-i.top.de/ => https://sec-i.top.de/: (6, 'Could not resol * Secured by us --> - + diff --git a/src/chrome/content/rules/Top500.org.xml b/src/chrome/content/rules/Top500.org.xml new file mode 100644 index 000000000000..f7649e562c09 --- /dev/null +++ b/src/chrome/content/rules/Top500.org.xml @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/TopBuy.com.au.xml b/src/chrome/content/rules/TopBuy.com.au.xml index c90b82d21a4b..871664292422 100644 --- a/src/chrome/content/rules/TopBuy.com.au.xml +++ b/src/chrome/content/rules/TopBuy.com.au.xml @@ -4,16 +4,16 @@ Disabled by https-everywhere-checker because: Fetch error: http://groupbuy.topbuy.com.au/ => https://groupbuy.topbuy.com.au/: (28, 'Connection timed out after 20006 milliseconds') --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/TopCoder.xml b/src/chrome/content/rules/TopCoder.xml index b18965363970..663d3d5c5ab7 100644 --- a/src/chrome/content/rules/TopCoder.xml +++ b/src/chrome/content/rules/TopCoder.xml @@ -36,7 +36,7 @@ - + diff --git a/src/chrome/content/rules/TopOption.com.xml b/src/chrome/content/rules/TopOption.com.xml index a38baadcc093..98556091834f 100644 --- a/src/chrome/content/rules/TopOption.com.xml +++ b/src/chrome/content/rules/TopOption.com.xml @@ -36,7 +36,9 @@ - + + + - + diff --git a/src/chrome/content/rules/TopatoCo.xml b/src/chrome/content/rules/TopatoCo.xml index ea5db714bc3b..66a78d71f7b7 100644 --- a/src/chrome/content/rules/TopatoCo.xml +++ b/src/chrome/content/rules/TopatoCo.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Topky.sk.xml b/src/chrome/content/rules/Topky.sk.xml new file mode 100644 index 000000000000..c30e61be463a --- /dev/null +++ b/src/chrome/content/rules/Topky.sk.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Toppers.jp.xml b/src/chrome/content/rules/Toppers.jp.xml new file mode 100644 index 000000000000..d486b15bb889 --- /dev/null +++ b/src/chrome/content/rules/Toppers.jp.xml @@ -0,0 +1,13 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Tor-Relay.co.xml b/src/chrome/content/rules/Tor-Relay.co.xml new file mode 100644 index 000000000000..eae09246b450 --- /dev/null +++ b/src/chrome/content/rules/Tor-Relay.co.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Tor.com.xml b/src/chrome/content/rules/Tor.com.xml new file mode 100644 index 000000000000..6f2477600a12 --- /dev/null +++ b/src/chrome/content/rules/Tor.com.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Tor2Web.xml b/src/chrome/content/rules/Tor2Web.xml index 90f4b14cd11d..5196d85957a7 100644 --- a/src/chrome/content/rules/Tor2Web.xml +++ b/src/chrome/content/rules/Tor2Web.xml @@ -11,7 +11,7 @@ Fetch error: http://torlink.co/ => https://torlink.co/: (6, 'Could not resolve h Fetch error: http://onion.ink/ => https://onion.ink/: (6, 'Could not resolve host: onion.ink') --> - + diff --git a/src/chrome/content/rules/TorLock.com.xml b/src/chrome/content/rules/TorLock.com.xml deleted file mode 100644 index 1ce291c82f11..000000000000 --- a/src/chrome/content/rules/TorLock.com.xml +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Torbay.gov.uk.xml b/src/chrome/content/rules/Torbay.gov.uk.xml index 37778c37b6a1..24b16d582764 100644 --- a/src/chrome/content/rules/Torbay.gov.uk.xml +++ b/src/chrome/content/rules/Torbay.gov.uk.xml @@ -34,7 +34,7 @@ - + https://torcache.net/: (28, 'Connection tim Fetch error: http://www.torcache.net/ => https://www.torcache.net/: (28, 'Connection timed out after 20001 milliseconds') --> - + diff --git a/src/chrome/content/rules/TornadoWeb.org.xml b/src/chrome/content/rules/TornadoWeb.org.xml new file mode 100644 index 000000000000..8b46c644adf4 --- /dev/null +++ b/src/chrome/content/rules/TornadoWeb.org.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Tornado_Web.org.xml b/src/chrome/content/rules/Tornado_Web.org.xml deleted file mode 100644 index aefb641f909b..000000000000 --- a/src/chrome/content/rules/Tornado_Web.org.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Toronto-Star.xml b/src/chrome/content/rules/Toronto-Star.xml index 15f3c1a5a811..cc446d316c9b 100644 --- a/src/chrome/content/rules/Toronto-Star.xml +++ b/src/chrome/content/rules/Toronto-Star.xml @@ -37,7 +37,7 @@ Fetch error: http://emarketing.thestar.com/ => https://emarketing.thestar.com/: ˢ Secured by us --> - + diff --git a/src/chrome/content/rules/TorontoHydro.com.xml b/src/chrome/content/rules/TorontoHydro.com.xml new file mode 100644 index 000000000000..a70e9eb022ba --- /dev/null +++ b/src/chrome/content/rules/TorontoHydro.com.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/TorontoPolice.on.ca.xml b/src/chrome/content/rules/TorontoPolice.on.ca.xml new file mode 100644 index 000000000000..2d9f7739eb66 --- /dev/null +++ b/src/chrome/content/rules/TorontoPolice.on.ca.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Torrent.tm.xml b/src/chrome/content/rules/Torrent.tm.xml deleted file mode 100644 index 181591b3dfbd..000000000000 --- a/src/chrome/content/rules/Torrent.tm.xml +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/TorrentButler.xml b/src/chrome/content/rules/TorrentButler.xml index 8c9658e8d740..f9ba7e93a180 100644 --- a/src/chrome/content/rules/TorrentButler.xml +++ b/src/chrome/content/rules/TorrentButler.xml @@ -1,7 +1,7 @@ - + diff --git a/src/chrome/content/rules/TorrentDay.com.xml b/src/chrome/content/rules/TorrentDay.com.xml index ac97b4067074..24d42d398639 100644 --- a/src/chrome/content/rules/TorrentDay.com.xml +++ b/src/chrome/content/rules/TorrentDay.com.xml @@ -7,7 +7,7 @@ Fetch error: http://editor.torrentday.com/ => https://editor.torrentday.com/: (6 announce.torrentday.com irc.torrentday.com --> - + diff --git a/src/chrome/content/rules/TorrentFunk.com.xml b/src/chrome/content/rules/TorrentFunk.com.xml deleted file mode 100644 index 74bdb07aacfd..000000000000 --- a/src/chrome/content/rules/TorrentFunk.com.xml +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/TorrentR.eu.xml b/src/chrome/content/rules/TorrentR.eu.xml deleted file mode 100644 index 36261e889450..000000000000 --- a/src/chrome/content/rules/TorrentR.eu.xml +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/TorrentShack.xml b/src/chrome/content/rules/TorrentShack.xml deleted file mode 100644 index 958850b1a8d9..000000000000 --- a/src/chrome/content/rules/TorrentShack.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Torrentleech.org.xml b/src/chrome/content/rules/Torrentleech.org.xml index 36cc896313c0..0d6a2ffbc626 100644 --- a/src/chrome/content/rules/Torrentleech.org.xml +++ b/src/chrome/content/rules/Torrentleech.org.xml @@ -1,28 +1,19 @@ - - - - + - - - - - - - - - - - + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Torrentproject.com.xml b/src/chrome/content/rules/Torrentproject.com.xml deleted file mode 100644 index 496636181de0..000000000000 --- a/src/chrome/content/rules/Torrentproject.com.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Torrentsmirror.xml b/src/chrome/content/rules/Torrentsmirror.xml deleted file mode 100644 index d647211f894a..000000000000 --- a/src/chrome/content/rules/Torrentsmirror.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Torrentz-Proxy.xml b/src/chrome/content/rules/Torrentz-Proxy.xml deleted file mode 100644 index 836f8a5480c3..000000000000 --- a/src/chrome/content/rules/Torrentz-Proxy.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Torrentz.xml b/src/chrome/content/rules/Torrentz.xml deleted file mode 100644 index 59292ef8baae..000000000000 --- a/src/chrome/content/rules/Torrentz.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/TorreyCommerce.net.xml b/src/chrome/content/rules/TorreyCommerce.net.xml index 5da7937cd8c1..eaa6513c03b3 100644 --- a/src/chrome/content/rules/TorreyCommerce.net.xml +++ b/src/chrome/content/rules/TorreyCommerce.net.xml @@ -9,7 +9,7 @@ Fetch error: http://torreycommerce.net/ => https://torreycommerce.net/: Redirect For other TorreyCommerce coverage, see TorreyCommerce.xml. --> - + diff --git a/src/chrome/content/rules/Torus_Knot.com.xml b/src/chrome/content/rules/Torus_Knot.com.xml index 8d707839a344..4b9e18753c51 100644 --- a/src/chrome/content/rules/Torus_Knot.com.xml +++ b/src/chrome/content/rules/Torus_Knot.com.xml @@ -14,4 +14,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Toshiba.co.jp.xml b/src/chrome/content/rules/Toshiba.co.jp.xml index c0179dd2e0c2..15686e336886 100644 --- a/src/chrome/content/rules/Toshiba.co.jp.xml +++ b/src/chrome/content/rules/Toshiba.co.jp.xml @@ -11,7 +11,6 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/TotalBarcode.com.xml b/src/chrome/content/rules/TotalBarcode.com.xml index 463117742c45..8acc39cfe2c2 100644 --- a/src/chrome/content/rules/TotalBarcode.com.xml +++ b/src/chrome/content/rules/TotalBarcode.com.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/TotalProSports.com.xml b/src/chrome/content/rules/TotalProSports.com.xml new file mode 100644 index 000000000000..920dfa63d051 --- /dev/null +++ b/src/chrome/content/rules/TotalProSports.com.xml @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Total_Boox.xml b/src/chrome/content/rules/Total_Boox.xml index f3e3093bfb2e..f97b0d36f276 100644 --- a/src/chrome/content/rules/Total_Boox.xml +++ b/src/chrome/content/rules/Total_Boox.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://totalboox.com/ => https://totalboox.com/: (6, 'Could not resolve host: totalboox.com') --> - + @@ -15,4 +15,4 @@ Fetch error: http://totalboox.com/ => https://totalboox.com/: (6, 'Could not res - \ No newline at end of file + diff --git a/src/chrome/content/rules/Total_Eyecare.xml b/src/chrome/content/rules/Total_Eyecare.xml index c56b8bfd2bef..11634f20244a 100644 --- a/src/chrome/content/rules/Total_Eyecare.xml +++ b/src/chrome/content/rules/Total_Eyecare.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Total_Fan_Shop.net.xml b/src/chrome/content/rules/Total_Fan_Shop.net.xml index e69cb34996fe..ad5c2550e0fc 100644 --- a/src/chrome/content/rules/Total_Fan_Shop.net.xml +++ b/src/chrome/content/rules/Total_Fan_Shop.net.xml @@ -7,7 +7,7 @@ Fetch error: http://www.totalfanshop.net/ => https://www.totalfanshop.net/: (28, Disabled by https-everywhere-checker because: Fetch error: http://totalfanshop.net/ => https://totalfanshop.net/: (35, 'error:14094410:SSL routines:SSL3_READ_BYTES:sslv3 alert handshake failure') --> - + @@ -18,4 +18,4 @@ Fetch error: http://totalfanshop.net/ => https://totalfanshop.net/: (35, 'error: - \ No newline at end of file + diff --git a/src/chrome/content/rules/Total_Investor.xml b/src/chrome/content/rules/Total_Investor.xml index c8688996cc89..e4f6f51203d5 100644 --- a/src/chrome/content/rules/Total_Investor.xml +++ b/src/chrome/content/rules/Total_Investor.xml @@ -24,7 +24,10 @@ Fetch error: http://totalinvestor.co.uk/ => https://www.totalinvestor.co.uk/: (7 - + + + + diff --git a/src/chrome/content/rules/Total_Web_Solutions.xml b/src/chrome/content/rules/Total_Web_Solutions.xml index f0a537fb5385..a1326e5702d7 100644 --- a/src/chrome/content/rules/Total_Web_Solutions.xml +++ b/src/chrome/content/rules/Total_Web_Solutions.xml @@ -16,10 +16,16 @@ Fetch error: http://store.totalwebsolutions.com/ => https://store.totalwebsoluti * Shows order.totalwebsecure.com; mismatched, CN: *.totalwebsecure.com --> - - - - + + + + + + + + + + @@ -27,13 +33,8 @@ Fetch error: http://store.totalwebsolutions.com/ => https://store.totalwebsoluti - - - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Totem.xml b/src/chrome/content/rules/Totem.xml index c31a39f630b3..1b287aca2a7f 100644 --- a/src/chrome/content/rules/Totem.xml +++ b/src/chrome/content/rules/Totem.xml @@ -9,15 +9,25 @@ + - + + - + + + + + + diff --git a/src/chrome/content/rules/Totse2.xml b/src/chrome/content/rules/Totse2.xml index d2c7a6b117a4..797d2e047fce 100644 --- a/src/chrome/content/rules/Totse2.xml +++ b/src/chrome/content/rules/Totse2.xml @@ -5,7 +5,7 @@ - + https://admin.touclick.com/: (35, 'error:14082174:SSL routines:ssl3_check_cert_and_algorithm:dh key too small') - + Redirect to http: - ecs.touclick.com - request.touclick.com - test.touclick.com - wt.touclick.com - - www.touclick.com + - www.touclick.com - xiaowangzi.touclick.com - + Broken: - adc.touclick.com --> - + @@ -23,5 +23,5 @@ Fetch error: http://admin.touclick.com/ => https://admin.touclick.com/: (35, 'er - + diff --git a/src/chrome/content/rules/TouTiao.xml b/src/chrome/content/rules/TouTiao.xml index 4b0bee57cf79..987cc913d0ed 100644 --- a/src/chrome/content/rules/TouTiao.xml +++ b/src/chrome/content/rules/TouTiao.xml @@ -1,40 +1,34 @@ - - - - - + - - - + + + + + + + + + + @@ -55,6 +49,7 @@ + diff --git a/src/chrome/content/rules/TouchCommerce.xml b/src/chrome/content/rules/TouchCommerce.xml deleted file mode 100644 index bbf861bda0c4..000000000000 --- a/src/chrome/content/rules/TouchCommerce.xml +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/TouchNet_Information_Systems.xml b/src/chrome/content/rules/TouchNet_Information_Systems.xml index a8f05e2d7654..7674cf07937e 100644 --- a/src/chrome/content/rules/TouchNet_Information_Systems.xml +++ b/src/chrome/content/rules/TouchNet_Information_Systems.xml @@ -8,4 +8,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Touchandtravel.de.xml b/src/chrome/content/rules/Touchandtravel.de.xml index b5b3cda3b6fb..89b203fa7dcb 100644 --- a/src/chrome/content/rules/Touchandtravel.de.xml +++ b/src/chrome/content/rules/Touchandtravel.de.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.touchandtravel.de/ => https://www.touchandtravel.de/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + diff --git a/src/chrome/content/rules/Tourism_and_Events_Queensland.xml b/src/chrome/content/rules/Tourism_and_Events_Queensland.xml index 8b1cac3904ba..b16c0a79abda 100644 --- a/src/chrome/content/rules/Tourism_and_Events_Queensland.xml +++ b/src/chrome/content/rules/Tourism_and_Events_Queensland.xml @@ -11,7 +11,7 @@ Fetch error: http://atdw.tq.com.au/ => https://atdw.tq.com.au/: (51, "SSL: no al - paypoint (expired 2012-04-22) --> - + @@ -19,7 +19,6 @@ Fetch error: http://atdw.tq.com.au/ => https://atdw.tq.com.au/: (51, "SSL: no al - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/TousLesCours.com.xml b/src/chrome/content/rules/TousLesCours.com.xml new file mode 100644 index 000000000000..b979e819452a --- /dev/null +++ b/src/chrome/content/rules/TousLesCours.com.xml @@ -0,0 +1,11 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/TowersTimes.co.uk.xml b/src/chrome/content/rules/TowersTimes.co.uk.xml new file mode 100644 index 000000000000..2019280fff3e --- /dev/null +++ b/src/chrome/content/rules/TowersTimes.co.uk.xml @@ -0,0 +1,15 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/ToyFoundry.xml b/src/chrome/content/rules/ToyFoundry.xml deleted file mode 100644 index ed402fc4659b..000000000000 --- a/src/chrome/content/rules/ToyFoundry.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Toyota.es.xml b/src/chrome/content/rules/Toyota.es.xml index 51d8d63a35ff..1ce4a2b43c9c 100644 --- a/src/chrome/content/rules/Toyota.es.xml +++ b/src/chrome/content/rules/Toyota.es.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Toys_R_Us.com.xml b/src/chrome/content/rules/Toys_R_Us.com.xml deleted file mode 100644 index af1a91465148..000000000000 --- a/src/chrome/content/rules/Toys_R_Us.com.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Tpaste.us.xml b/src/chrome/content/rules/Tpaste.us.xml new file mode 100644 index 000000000000..44ddeb9da095 --- /dev/null +++ b/src/chrome/content/rules/Tpaste.us.xml @@ -0,0 +1,9 @@ + + + + + + diff --git a/src/chrome/content/rules/Tpsmedia.ca.xml b/src/chrome/content/rules/Tpsmedia.ca.xml new file mode 100644 index 000000000000..e7e2a602dcb6 --- /dev/null +++ b/src/chrome/content/rules/Tpsmedia.ca.xml @@ -0,0 +1,11 @@ + + + + + + + diff --git a/src/chrome/content/rules/Tpsnet.ca.xml b/src/chrome/content/rules/Tpsnet.ca.xml new file mode 100644 index 000000000000..e5d060c59dda --- /dev/null +++ b/src/chrome/content/rules/Tpsnet.ca.xml @@ -0,0 +1,11 @@ + + + + + + + diff --git a/src/chrome/content/rules/Tpsnews.ca-mixedcontent.xml b/src/chrome/content/rules/Tpsnews.ca-mixedcontent.xml new file mode 100644 index 000000000000..548a78f7782e --- /dev/null +++ b/src/chrome/content/rules/Tpsnews.ca-mixedcontent.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Tpsnews.ca.xml b/src/chrome/content/rules/Tpsnews.ca.xml new file mode 100644 index 000000000000..5044cef81a60 --- /dev/null +++ b/src/chrome/content/rules/Tpsnews.ca.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Tr0n.net.xml b/src/chrome/content/rules/Tr0n.net.xml deleted file mode 100644 index 56fe4e762f90..000000000000 --- a/src/chrome/content/rules/Tr0n.net.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/TracFone_Wireless.com.xml b/src/chrome/content/rules/TracFone_Wireless.com.xml deleted file mode 100644 index bbc88263cf36..000000000000 --- a/src/chrome/content/rules/TracFone_Wireless.com.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Trace_Register.xml b/src/chrome/content/rules/Trace_Register.xml index dda75eaadced..50cfa904dcb4 100644 --- a/src/chrome/content/rules/Trace_Register.xml +++ b/src/chrome/content/rules/Trace_Register.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Trachtenshop24.de.xml b/src/chrome/content/rules/Trachtenshop24.de.xml deleted file mode 100644 index d09e26ef7743..000000000000 --- a/src/chrome/content/rules/Trachtenshop24.de.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/chrome/content/rules/Trackalyzer.xml b/src/chrome/content/rules/Trackalyzer.xml index 9e85f7bcd439..a5751a669cdd 100644 --- a/src/chrome/content/rules/Trackalyzer.xml +++ b/src/chrome/content/rules/Trackalyzer.xml @@ -14,7 +14,7 @@ - + - + - - - - - - - + + + + - + diff --git a/src/chrome/content/rules/Trade.tf.xml b/src/chrome/content/rules/Trade.tf.xml new file mode 100644 index 000000000000..41d846a4a43e --- /dev/null +++ b/src/chrome/content/rules/Trade.tf.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/TradeKing.com.xml b/src/chrome/content/rules/TradeKing.com.xml index e57adb579ca9..3ea51afa9bee 100644 --- a/src/chrome/content/rules/TradeKing.com.xml +++ b/src/chrome/content/rules/TradeKing.com.xml @@ -9,11 +9,13 @@ - + + + + - + diff --git a/src/chrome/content/rules/TradeLeaks.com.xml b/src/chrome/content/rules/TradeLeaks.com.xml index 05c3b0e2fff5..9c2005d5384e 100644 --- a/src/chrome/content/rules/TradeLeaks.com.xml +++ b/src/chrome/content/rules/TradeLeaks.com.xml @@ -17,7 +17,7 @@ Fetch error: http://www.tradeleaks.com/ => https://www.tradeleaks.com/: (60, 'SS * Secured by us --> - + diff --git a/src/chrome/content/rules/TradeMore_Margin.com.xml b/src/chrome/content/rules/TradeMore_Margin.com.xml deleted file mode 100644 index a03696e76727..000000000000 --- a/src/chrome/content/rules/TradeMore_Margin.com.xml +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/TradeNetworks.xml b/src/chrome/content/rules/TradeNetworks.xml index 905fc94ae04a..91ba92586429 100644 --- a/src/chrome/content/rules/TradeNetworks.xml +++ b/src/chrome/content/rules/TradeNetworks.xml @@ -20,4 +20,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Tradedoubler.xml b/src/chrome/content/rules/Tradedoubler.xml index ea163643f68c..230ebe9334d6 100644 --- a/src/chrome/content/rules/Tradedoubler.xml +++ b/src/chrome/content/rules/Tradedoubler.xml @@ -81,7 +81,7 @@ --> - + - - - - - - - - - - - diff --git a/src/chrome/content/rules/Tradelab.xml b/src/chrome/content/rules/Tradelab.xml index ef61d84765cd..687f73712aea 100644 --- a/src/chrome/content/rules/Tradelab.xml +++ b/src/chrome/content/rules/Tradelab.xml @@ -19,4 +19,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Traffic-Shop.xml b/src/chrome/content/rules/Traffic-Shop.xml index 0109a2779af3..f1f63222571a 100644 --- a/src/chrome/content/rules/Traffic-Shop.xml +++ b/src/chrome/content/rules/Traffic-Shop.xml @@ -4,7 +4,7 @@ - + diff --git a/src/chrome/content/rules/TrafficHolder.com.xml b/src/chrome/content/rules/TrafficHolder.com.xml deleted file mode 100644 index a45dc7ddc9d6..000000000000 --- a/src/chrome/content/rules/TrafficHolder.com.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/TrafficJunky.xml b/src/chrome/content/rules/TrafficJunky.xml index 3164a655284f..238810fdbec5 100644 --- a/src/chrome/content/rules/TrafficJunky.xml +++ b/src/chrome/content/rules/TrafficJunky.xml @@ -35,7 +35,7 @@ --> - + https://trafficprivacy.com/: (60, - trafficprivacy.com --> - + diff --git a/src/chrome/content/rules/Traffic_Factory.biz.xml b/src/chrome/content/rules/Traffic_Factory.biz.xml index b45ce8465e88..b240f69a2f96 100644 --- a/src/chrome/content/rules/Traffic_Factory.biz.xml +++ b/src/chrome/content/rules/Traffic_Factory.biz.xml @@ -18,7 +18,7 @@ --> - + - + - + - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Trafficfacts.com.xml b/src/chrome/content/rules/Trafficfacts.com.xml index 746f10f8e0f7..50e3fd20a5eb 100644 --- a/src/chrome/content/rules/Trafficfacts.com.xml +++ b/src/chrome/content/rules/Trafficfacts.com.xml @@ -6,8 +6,8 @@ Fetch error: http://rt.trafficfacts.com/ => https://rt.trafficfacts.com/: (6, 'C Disabled by https-everywhere-checker because: Fetch error: http://rt.trafficfacts.com/ => https://rt.trafficfacts.com/: (6, 'Could not resolve host: rt.trafficfacts.com') --> - + - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Trafficmaxx.xml b/src/chrome/content/rules/Trafficmaxx.xml index aaaff085bf7b..1fed66484962 100644 --- a/src/chrome/content/rules/Trafficmaxx.xml +++ b/src/chrome/content/rules/Trafficmaxx.xml @@ -8,14 +8,14 @@ Fetch error: http://s3.trafficmaxx.de/ => https://s3.trafficmaxx.de/: (28, 'Conn - (www.)trafficmaxx.com (cert: *.trafficmaxx.de; redirects there) --> - + - + diff --git a/src/chrome/content/rules/Trails.com.xml b/src/chrome/content/rules/Trails.com.xml new file mode 100644 index 000000000000..4107a429a2e9 --- /dev/null +++ b/src/chrome/content/rules/Trails.com.xml @@ -0,0 +1,11 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Trakehner-nord-west.de.xml b/src/chrome/content/rules/Trakehner-nord-west.de.xml deleted file mode 100644 index af9a02a4b9dc..000000000000 --- a/src/chrome/content/rules/Trakehner-nord-west.de.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/TransLink.ca.xml b/src/chrome/content/rules/TransLink.ca.xml new file mode 100644 index 000000000000..6ca2c820a856 --- /dev/null +++ b/src/chrome/content/rules/TransLink.ca.xml @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Trans_Marine.xml b/src/chrome/content/rules/Trans_Marine.xml index bb426055cf6b..8f67595961f7 100644 --- a/src/chrome/content/rules/Trans_Marine.xml +++ b/src/chrome/content/rules/Trans_Marine.xml @@ -5,7 +5,7 @@ Fetch error: http://transmarine.org/ => https://transmarine.org/: (60, 'SSL cert Fetch error: http://www.transmarine.org/ => https://www.transmarine.org/: (60, 'SSL certificate problem: certificate has expired') --> - + @@ -16,4 +16,4 @@ Fetch error: http://www.transmarine.org/ => https://www.transmarine.org/: (60, ' - \ No newline at end of file + diff --git a/src/chrome/content/rules/Transcend.org.xml b/src/chrome/content/rules/Transcend.org.xml deleted file mode 100644 index 2adaf4c6cfb8..000000000000 --- a/src/chrome/content/rules/Transcend.org.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/TransferWise.com.xml b/src/chrome/content/rules/TransferWise.com.xml index 0248017e57cf..8f0e3304aa63 100644 --- a/src/chrome/content/rules/TransferWise.com.xml +++ b/src/chrome/content/rules/TransferWise.com.xml @@ -1,32 +1,32 @@ - + - - - - - - - - + + + + + + + + + + + - diff --git a/src/chrome/content/rules/Transformationmadeeasy.com.xml b/src/chrome/content/rules/Transformationmadeeasy.com.xml index 38532c51c7b0..8f63d5775112 100644 --- a/src/chrome/content/rules/Transformationmadeeasy.com.xml +++ b/src/chrome/content/rules/Transformationmadeeasy.com.xml @@ -29,4 +29,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Transformative_Works.org-problematic.xml b/src/chrome/content/rules/Transformative_Works.org-problematic.xml index 8b92dd65f283..40c3daabb72c 100644 --- a/src/chrome/content/rules/Transformative_Works.org-problematic.xml +++ b/src/chrome/content/rules/Transformative_Works.org-problematic.xml @@ -7,7 +7,6 @@ - + diff --git a/src/chrome/content/rules/Transformative_Works.org.xml b/src/chrome/content/rules/Transformative_Works.org.xml index 58b4a4e33b5e..a323e2d23f0b 100644 --- a/src/chrome/content/rules/Transformative_Works.org.xml +++ b/src/chrome/content/rules/Transformative_Works.org.xml @@ -31,7 +31,7 @@ Fetch error: http://www.transformativeworks.org/ => https://transformativeworks. ² Secured in -problematic --> - + diff --git a/src/chrome/content/rules/Transifex.com.xml b/src/chrome/content/rules/Transifex.com.xml new file mode 100644 index 000000000000..4677fc04afc9 --- /dev/null +++ b/src/chrome/content/rules/Transifex.com.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Transifex.xml b/src/chrome/content/rules/Transifex.xml deleted file mode 100644 index 7b87825c213a..000000000000 --- a/src/chrome/content/rules/Transifex.xml +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/TranslateHouse.org.xml b/src/chrome/content/rules/TranslateHouse.org.xml new file mode 100644 index 000000000000..f9f5348fb274 --- /dev/null +++ b/src/chrome/content/rules/TranslateHouse.org.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/TranslateThi.is.xml b/src/chrome/content/rules/TranslateThi.is.xml index 02fcafcbf510..f5ffc76f4481 100644 --- a/src/chrome/content/rules/TranslateThi.is.xml +++ b/src/chrome/content/rules/TranslateThi.is.xml @@ -13,12 +13,11 @@ Non-2xx HTTP code: http://x.translateth.is/ (200) => https://s3.amazonaws.com/x. - (www.) (prints "dashd", invalid cert) --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Translatewiki.net.xml b/src/chrome/content/rules/Translatewiki.net.xml index e543ad0f4f93..f5a607b27686 100644 --- a/src/chrome/content/rules/Translatewiki.net.xml +++ b/src/chrome/content/rules/Translatewiki.net.xml @@ -3,4 +3,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Translink.xml b/src/chrome/content/rules/Translink.xml index b121eafd6500..52877bed8196 100644 --- a/src/chrome/content/rules/Translink.xml +++ b/src/chrome/content/rules/Translink.xml @@ -6,7 +6,7 @@ - + diff --git a/src/chrome/content/rules/Transmission.xml b/src/chrome/content/rules/Transmission.xml index b24d93ad8875..ac5e696a621b 100644 --- a/src/chrome/content/rules/Transmission.xml +++ b/src/chrome/content/rules/Transmission.xml @@ -18,7 +18,7 @@ --> - + + + + + + + + + + + diff --git a/src/chrome/content/rules/Transmode.se.xml b/src/chrome/content/rules/Transmode.se.xml index 2f8f8e5517c7..9d4ffda77505 100644 --- a/src/chrome/content/rules/Transmode.se.xml +++ b/src/chrome/content/rules/Transmode.se.xml @@ -9,7 +9,7 @@ Fetch error: http://transmode.se/ => https://www.transmode.com/: (7, 'Failed to (www.): mismatched --> - + diff --git a/src/chrome/content/rules/Transmode.xml b/src/chrome/content/rules/Transmode.xml index 4eb0264159df..5683d4e8db83 100644 --- a/src/chrome/content/rules/Transmode.xml +++ b/src/chrome/content/rules/Transmode.xml @@ -16,12 +16,12 @@ Fetch error: http://www.transmode.com/ => https://www.transmode.com/: (7, 'Faile * Secured by us --> - + - + diff --git a/src/chrome/content/rules/Transparency_Toolkit.org.xml b/src/chrome/content/rules/Transparency_Toolkit.org.xml index fafd5ac0481d..c1b1ddbd77ae 100644 --- a/src/chrome/content/rules/Transparency_Toolkit.org.xml +++ b/src/chrome/content/rules/Transparency_Toolkit.org.xml @@ -8,7 +8,7 @@ Fetch error: http://htwiki.transparencytoolkit.org/ => https://htwiki.transparen - .transparencytoolkit.org --> - + diff --git a/src/chrome/content/rules/Transportation.gov.xml b/src/chrome/content/rules/Transportation.gov.xml index 90c67a0a0659..b3ce618889b7 100644 --- a/src/chrome/content/rules/Transportation.gov.xml +++ b/src/chrome/content/rules/Transportation.gov.xml @@ -9,7 +9,7 @@ - + - - + diff --git a/src/chrome/content/rules/Trapologyboston.com.xml b/src/chrome/content/rules/Trapologyboston.com.xml new file mode 100644 index 000000000000..93b7cef3362e --- /dev/null +++ b/src/chrome/content/rules/Trapologyboston.com.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/src/chrome/content/rules/Trash-Mail.com.xml b/src/chrome/content/rules/Trash-Mail.com.xml deleted file mode 100644 index caa25aa88d4c..000000000000 --- a/src/chrome/content/rules/Trash-Mail.com.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Trash.net.xml b/src/chrome/content/rules/Trash.net.xml index 5a1ce4992bde..13cdb93f897e 100644 --- a/src/chrome/content/rules/Trash.net.xml +++ b/src/chrome/content/rules/Trash.net.xml @@ -31,7 +31,7 @@ - + - + + - + diff --git a/src/chrome/content/rules/TravelBlog.xml b/src/chrome/content/rules/TravelBlog.xml index 8a7f6b3fed2f..835e2edb6898 100644 --- a/src/chrome/content/rules/TravelBlog.xml +++ b/src/chrome/content/rules/TravelBlog.xml @@ -3,7 +3,7 @@ - + diff --git a/src/chrome/content/rules/TravelDoctor.xml b/src/chrome/content/rules/TravelDoctor.xml index 71fad445718d..5045bf52c2ac 100644 --- a/src/chrome/content/rules/TravelDoctor.xml +++ b/src/chrome/content/rules/TravelDoctor.xml @@ -1,7 +1,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/TravelNow.xml b/src/chrome/content/rules/TravelNow.xml index 35f8fdea7c29..513ac4da2ae2 100644 --- a/src/chrome/content/rules/TravelNow.xml +++ b/src/chrome/content/rules/TravelNow.xml @@ -16,7 +16,7 @@ Fetch error: http://dg.travelnow.com/ => https://dg.travelnow.com/: (6, 'Could n - .www.travelnow.com --> - + diff --git a/src/chrome/content/rules/TravelPod.xml b/src/chrome/content/rules/TravelPod.xml deleted file mode 100644 index d0735459b0a7..000000000000 --- a/src/chrome/content/rules/TravelPod.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Travel_Plan.xml b/src/chrome/content/rules/Travel_Plan.xml index 827b00269503..e5fd9a0a5b73 100644 --- a/src/chrome/content/rules/Travel_Plan.xml +++ b/src/chrome/content/rules/Travel_Plan.xml @@ -8,7 +8,7 @@ Automatically by https-everywhere-checker because: Fetch error: http://travelplan.gr/ => https://travelplan.gr/: Cycle detected - URL already encountered: https://travelplan.gr/ Fetch error: http://www.travelplan.gr/ => https://www.travelplan.gr/: Cycle detected - URL already encountered: https://www.travelplan.gr/ --> - + @@ -19,4 +19,4 @@ Fetch error: http://www.travelplan.gr/ => https://www.travelplan.gr/: Cycle dete - \ No newline at end of file + diff --git a/src/chrome/content/rules/Travelingnuker.com.xml b/src/chrome/content/rules/Travelingnuker.com.xml index 4e5f230956d6..36e14d307180 100644 --- a/src/chrome/content/rules/Travelingnuker.com.xml +++ b/src/chrome/content/rules/Travelingnuker.com.xml @@ -22,7 +22,7 @@ - + diff --git a/src/chrome/content/rules/Travelmarket.com.xml b/src/chrome/content/rules/Travelmarket.com.xml index f91e88b02485..53b6e82fc704 100644 --- a/src/chrome/content/rules/Travelmarket.com.xml +++ b/src/chrome/content/rules/Travelmarket.com.xml @@ -11,7 +11,7 @@ Fetch error: http://tmcomponents.travelmarket.com/ => https://tmcomponents.trave * Refused --> - + @@ -19,7 +19,6 @@ Fetch error: http://tmcomponents.travelmarket.com/ => https://tmcomponents.trave - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Travelocity.xml b/src/chrome/content/rules/Travelocity.xml index 8a38e96fa94a..bad884ee8c31 100644 --- a/src/chrome/content/rules/Travelocity.xml +++ b/src/chrome/content/rules/Travelocity.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Non-2xx HTTP code: http://travelocity.com/ (200) => https://www.travelocity.com/ (403) --> - + diff --git a/src/chrome/content/rules/Travelspecialistsite.com.xml b/src/chrome/content/rules/Travelspecialistsite.com.xml index 71379139b405..f63c24a2ca8f 100644 --- a/src/chrome/content/rules/Travelspecialistsite.com.xml +++ b/src/chrome/content/rules/Travelspecialistsite.com.xml @@ -16,7 +16,7 @@ - www.manager.travelspecialistsite.com --> - + diff --git a/src/chrome/content/rules/Travelzoo.com.xml b/src/chrome/content/rules/Travelzoo.com.xml index 8aecbc5fe0c3..290ce2e978c5 100644 --- a/src/chrome/content/rules/Travelzoo.com.xml +++ b/src/chrome/content/rules/Travelzoo.com.xml @@ -44,9 +44,13 @@ --> - + + - + + + + @@ -61,4 +65,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Travis-CI.org.xml b/src/chrome/content/rules/Travis-CI.org.xml new file mode 100644 index 000000000000..37a6e1410450 --- /dev/null +++ b/src/chrome/content/rules/Travis-CI.org.xml @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Travis_CI.xml b/src/chrome/content/rules/Travis_CI.xml deleted file mode 100644 index 83909c2524e3..000000000000 --- a/src/chrome/content/rules/Travis_CI.xml +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Traxarmstrong.com.xml b/src/chrome/content/rules/Traxarmstrong.com.xml deleted file mode 100644 index fdad6bbaec05..000000000000 --- a/src/chrome/content/rules/Traxarmstrong.com.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Treasury.gov.xml b/src/chrome/content/rules/Treasury.gov.xml index 05986030ed29..2ec2bf2392f5 100644 --- a/src/chrome/content/rules/Treasury.gov.xml +++ b/src/chrome/content/rules/Treasury.gov.xml @@ -39,7 +39,7 @@ Fetch error: http://m.treasury.gov/ => https://m.treasury.gov/: (51, "SSL: no al * Secured by us --> - + @@ -62,7 +62,7 @@ Fetch error: http://m.treasury.gov/ => https://m.treasury.gov/: (51, "SSL: no al - + https://www.trefis.com/: Cycle detected - URL - + + @@ -23,7 +24,6 @@ Fetch error: http://trefis.com/ => https://www.trefis.com/: Cycle detected - URL - + diff --git a/src/chrome/content/rules/Trekaroo.xml b/src/chrome/content/rules/Trekaroo.xml deleted file mode 100644 index 3204a9229749..000000000000 --- a/src/chrome/content/rules/Trekaroo.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Trellian.xml b/src/chrome/content/rules/Trellian.xml index eb5910334188..b0348f91a02c 100644 --- a/src/chrome/content/rules/Trellian.xml +++ b/src/chrome/content/rules/Trellian.xml @@ -3,10 +3,9 @@ - Above.com.xml - Global_Promote.xml - - Keyword_Discovery.xml + - KeywordDiscovery.com.xml - NeedMoreHits.com.xml - PrioritySubmit.com.xml - - ToolbarBrowser.com.xml Problematic subdomains: @@ -30,7 +29,4 @@ - - - \ No newline at end of file + diff --git a/src/chrome/content/rules/Tremor_Video.com.xml b/src/chrome/content/rules/Tremor_Video.com.xml index ea78b0e9882e..e24d6bf44451 100644 --- a/src/chrome/content/rules/Tremor_Video.com.xml +++ b/src/chrome/content/rules/Tremor_Video.com.xml @@ -2,7 +2,6 @@ Other Tremor Video rulesets: - Scanscout.com.xml - - Tremor-Media.xml - VideoHub.tv.xml @@ -37,4 +36,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Tremorhub.com.xml b/src/chrome/content/rules/Tremorhub.com.xml new file mode 100644 index 000000000000..6071c7fec87c --- /dev/null +++ b/src/chrome/content/rules/Tremorhub.com.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/TrendWeight.xml b/src/chrome/content/rules/TrendWeight.xml index d6a887e4871e..c11669d47f14 100644 --- a/src/chrome/content/rules/TrendWeight.xml +++ b/src/chrome/content/rules/TrendWeight.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Trend_Micro.eu.xml b/src/chrome/content/rules/Trend_Micro.eu.xml index 13c4d09916dd..75788e4c0517 100644 --- a/src/chrome/content/rules/Trend_Micro.eu.xml +++ b/src/chrome/content/rules/Trend_Micro.eu.xml @@ -15,7 +15,7 @@ - countermeasures ¹ - eeur ² - + ¹ Mixed css ² Akamai @@ -64,7 +64,7 @@ --> - + - + https://cdn.trgt.eu/: (6, 'Could not resolve host: cdn.trgt.eu') --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Tri-CUE.xml b/src/chrome/content/rules/Tri-CUE.xml index 6c5debe64974..2154776d2b7c 100644 --- a/src/chrome/content/rules/Tri-CUE.xml +++ b/src/chrome/content/rules/Tri-CUE.xml @@ -8,10 +8,9 @@ - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/TriDeci.xml b/src/chrome/content/rules/TriDeci.xml deleted file mode 100644 index 51ebf22e3472..000000000000 --- a/src/chrome/content/rules/TriDeci.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/TrialFunder.com.xml b/src/chrome/content/rules/TrialFunder.com.xml deleted file mode 100644 index 8fa89b61d7cf..000000000000 --- a/src/chrome/content/rules/TrialFunder.com.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/TrialPay.xml b/src/chrome/content/rules/TrialPay.xml index b920d4ab0ec6..541ec3f2ba90 100644 --- a/src/chrome/content/rules/TrialPay.xml +++ b/src/chrome/content/rules/TrialPay.xml @@ -9,7 +9,8 @@ - + + @@ -22,7 +23,6 @@ - + diff --git a/src/chrome/content/rules/Tribal_Fusion.com.xml b/src/chrome/content/rules/Tribal_Fusion.com.xml index c27cff7a2761..21cec66eae4f 100644 --- a/src/chrome/content/rules/Tribal_Fusion.com.xml +++ b/src/chrome/content/rules/Tribal_Fusion.com.xml @@ -35,7 +35,7 @@ --> - + - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Tribune.xml b/src/chrome/content/rules/Tribune.xml index 14887fb571dd..ba3c621ff9cd 100644 --- a/src/chrome/content/rules/Tribune.xml +++ b/src/chrome/content/rules/Tribune.xml @@ -13,7 +13,7 @@ - s3.amazonaws.com/MG2_Tribune/ - - trb.edgesuite.net + - trb.edgesuite.net - www.trbimg.com diff --git a/src/chrome/content/rules/Tricolumbia.org.xml b/src/chrome/content/rules/Tricolumbia.org.xml index b301916cf507..00bb1399e238 100644 --- a/src/chrome/content/rules/Tricolumbia.org.xml +++ b/src/chrome/content/rules/Tricolumbia.org.xml @@ -6,10 +6,10 @@ Fetch error: http://tricolumbia.org/ => https://www.tricolumbia.org/: (28, 'Conn Disabled by https-everywhere-checker because: Fetch error: http://tricolumbia.org/ => https://www.tricolumbia.org/: (60, 'SSL certificate problem: certificate has expired') --> - + - + diff --git a/src/chrome/content/rules/Triggit.com.xml b/src/chrome/content/rules/Triggit.com.xml index ee7917df928f..50a16a9f3364 100644 --- a/src/chrome/content/rules/Triggit.com.xml +++ b/src/chrome/content/rules/Triggit.com.xml @@ -20,7 +20,7 @@ Fetch error: http://portal.triggit.com/ => https://portal.triggit.com/: (28, 'Co - Images on ^ from i.imgur.com --> - + diff --git a/src/chrome/content/rules/Trillian.im.xml b/src/chrome/content/rules/Trillian.im.xml deleted file mode 100644 index be06fdef1833..000000000000 --- a/src/chrome/content/rules/Trillian.im.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/TripAdvisor.xml b/src/chrome/content/rules/TripAdvisor.xml index 59177e46a5ad..b08d846a4d0a 100644 --- a/src/chrome/content/rules/TripAdvisor.xml +++ b/src/chrome/content/rules/TripAdvisor.xml @@ -116,7 +116,7 @@ - + https://triphip.com/: (28, 'Connection timed Fetch error: http://www.triphip.com/ => https://www.triphip.com/: (28, 'Connection timed out after 20001 milliseconds') --> - + @@ -16,4 +16,4 @@ Fetch error: http://www.triphip.com/ => https://www.triphip.com/: (28, 'Connecti - \ No newline at end of file + diff --git a/src/chrome/content/rules/TripIt.com.xml b/src/chrome/content/rules/TripIt.com.xml index b65782cafe61..edb433205640 100644 --- a/src/chrome/content/rules/TripIt.com.xml +++ b/src/chrome/content/rules/TripIt.com.xml @@ -9,7 +9,9 @@ - + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Tripodo.de.xml b/src/chrome/content/rules/Tripodo.de.xml index dcc286c06247..4d1c4906e170 100644 --- a/src/chrome/content/rules/Tripodo.de.xml +++ b/src/chrome/content/rules/Tripodo.de.xml @@ -16,7 +16,9 @@ - + + + diff --git a/src/chrome/content/rules/Tripwell.com.xml b/src/chrome/content/rules/Tripwell.com.xml deleted file mode 100644 index 31c53e1cf7e2..000000000000 --- a/src/chrome/content/rules/Tripwell.com.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Tripwire.com-falsemixed.xml b/src/chrome/content/rules/Tripwire.com-falsemixed.xml deleted file mode 100644 index 508d57dcd0b4..000000000000 --- a/src/chrome/content/rules/Tripwire.com-falsemixed.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Tripwire.com.xml b/src/chrome/content/rules/Tripwire.com.xml index 1306fdf8a06d..abb1c734d44c 100644 --- a/src/chrome/content/rules/Tripwire.com.xml +++ b/src/chrome/content/rules/Tripwire.com.xml @@ -1,52 +1,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - + diff --git a/src/chrome/content/rules/Triumph-Adler.de.xml b/src/chrome/content/rules/Triumph-Adler.de.xml index c818a6bece81..a8b168b5a48b 100644 --- a/src/chrome/content/rules/Triumph-Adler.de.xml +++ b/src/chrome/content/rules/Triumph-Adler.de.xml @@ -9,4 +9,4 @@ --> - \ No newline at end of file + diff --git a/src/chrome/content/rules/Trkclk.net.xml b/src/chrome/content/rules/Trkclk.net.xml deleted file mode 100644 index 974ab9a51607..000000000000 --- a/src/chrome/content/rules/Trkclk.net.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Trklnks.com.xml b/src/chrome/content/rules/Trklnks.com.xml index f4a38987d794..d27e9ff10778 100644 --- a/src/chrome/content/rules/Trklnks.com.xml +++ b/src/chrome/content/rules/Trklnks.com.xml @@ -13,7 +13,7 @@ - + - - - - - - - - - - diff --git a/src/chrome/content/rules/Tros.nl.xml b/src/chrome/content/rules/Tros.nl.xml index 9db99cd3f384..8eabd59237df 100644 --- a/src/chrome/content/rules/Tros.nl.xml +++ b/src/chrome/content/rules/Tros.nl.xml @@ -5,7 +5,7 @@ Fetch error: http://tros.nl/ => https://tros.nl/: (60, 'SSL certificate problem: Fetch error: http://www.tros.nl/ => https://www.tros.nl/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + diff --git a/src/chrome/content/rules/Trove.com.xml b/src/chrome/content/rules/Trove.com.xml index 1d89bb6e8a99..719a7f067d87 100644 --- a/src/chrome/content/rules/Trove.com.xml +++ b/src/chrome/content/rules/Trove.com.xml @@ -1,48 +1,12 @@ - - - - - + - - - - - - - - - - - + + + + + - + to="https:" /> diff --git a/src/chrome/content/rules/Troy_Hunt.xml b/src/chrome/content/rules/Troy_Hunt.xml deleted file mode 100644 index 91c5e5ad4d6e..000000000000 --- a/src/chrome/content/rules/Troy_Hunt.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/TruckingUnlimited.com.xml b/src/chrome/content/rules/TruckingUnlimited.com.xml index 5ef4dca0f0b4..f3592f9d98e3 100644 --- a/src/chrome/content/rules/TruckingUnlimited.com.xml +++ b/src/chrome/content/rules/TruckingUnlimited.com.xml @@ -10,7 +10,7 @@ Fetch error: http://static.truckingunlimited.com/ => https://www.truckingunlimit - static (akamai) --> - + diff --git a/src/chrome/content/rules/TrueCrypt.ch.xml b/src/chrome/content/rules/TrueCrypt.ch.xml index 66af4ab6f334..22f554b1df16 100644 --- a/src/chrome/content/rules/TrueCrypt.ch.xml +++ b/src/chrome/content/rules/TrueCrypt.ch.xml @@ -1,21 +1,12 @@ - - - - - - - - + + + + - + diff --git a/src/chrome/content/rules/TrueLife.com-problematic.xml b/src/chrome/content/rules/TrueLife.com-problematic.xml index 1a55618eef39..1d86d02ed06d 100644 --- a/src/chrome/content/rules/TrueLife.com-problematic.xml +++ b/src/chrome/content/rules/TrueLife.com-problematic.xml @@ -2,7 +2,7 @@ For rules that are on by default, see TrueLife.com.xml. --> - + diff --git a/src/chrome/content/rules/TrueVault.com.xml b/src/chrome/content/rules/TrueVault.com.xml index 7047bce05e0f..9238787d7b38 100644 --- a/src/chrome/content/rules/TrueVault.com.xml +++ b/src/chrome/content/rules/TrueVault.com.xml @@ -1,10 +1,11 @@ - + + + - + diff --git a/src/chrome/content/rules/Trueachievements.com.xml b/src/chrome/content/rules/Trueachievements.com.xml deleted file mode 100644 index a2ed2e993f2b..000000000000 --- a/src/chrome/content/rules/Trueachievements.com.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/Truefactor.io.xml b/src/chrome/content/rules/Truefactor.io.xml deleted file mode 100644 index 60e48416630a..000000000000 --- a/src/chrome/content/rules/Truefactor.io.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Truenudists.com.xml b/src/chrome/content/rules/Truenudists.com.xml index 3a20521e5cda..46898aeaabfd 100644 --- a/src/chrome/content/rules/Truenudists.com.xml +++ b/src/chrome/content/rules/Truenudists.com.xml @@ -1,45 +1,23 @@ - - + - - - + + + + - - - - - - - + - + diff --git a/src/chrome/content/rules/Trump.com.xml b/src/chrome/content/rules/Trump.com.xml new file mode 100644 index 000000000000..e14ddc248bdf --- /dev/null +++ b/src/chrome/content/rules/Trump.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/TrumpGolf.com.xml b/src/chrome/content/rules/TrumpGolf.com.xml new file mode 100644 index 000000000000..cea8689da98d --- /dev/null +++ b/src/chrome/content/rules/TrumpGolf.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/TrumpGolfCount.com.xml b/src/chrome/content/rules/TrumpGolfCount.com.xml new file mode 100644 index 000000000000..a2f6b76f8f65 --- /dev/null +++ b/src/chrome/content/rules/TrumpGolfCount.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/TrumpHotels.com.xml b/src/chrome/content/rules/TrumpHotels.com.xml new file mode 100644 index 000000000000..0cf83e66926b --- /dev/null +++ b/src/chrome/content/rules/TrumpHotels.com.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/TrumpInternationalRealty.com.xml b/src/chrome/content/rules/TrumpInternationalRealty.com.xml new file mode 100644 index 000000000000..9422e4b73ffd --- /dev/null +++ b/src/chrome/content/rules/TrumpInternationalRealty.com.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/TrumpStore.com.xml b/src/chrome/content/rules/TrumpStore.com.xml new file mode 100644 index 000000000000..aa5fb1e5f271 --- /dev/null +++ b/src/chrome/content/rules/TrumpStore.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/TrumpWinery.com.xml b/src/chrome/content/rules/TrumpWinery.com.xml new file mode 100644 index 000000000000..260299be624b --- /dev/null +++ b/src/chrome/content/rules/TrumpWinery.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Trumpia.com.xml b/src/chrome/content/rules/Trumpia.com.xml deleted file mode 100644 index 70cde47c86cc..000000000000 --- a/src/chrome/content/rules/Trumpia.com.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Trust-Guard.com.xml b/src/chrome/content/rules/Trust-Guard.com.xml index 95c5d415cba3..71d10ac21b00 100644 --- a/src/chrome/content/rules/Trust-Guard.com.xml +++ b/src/chrome/content/rules/Trust-Guard.com.xml @@ -68,7 +68,7 @@ - + + + + + + + + + diff --git a/src/chrome/content/rules/TrustKeeper.xml b/src/chrome/content/rules/TrustKeeper.xml index 938318f47d01..8a7afad774c4 100644 --- a/src/chrome/content/rules/TrustKeeper.xml +++ b/src/chrome/content/rules/TrustKeeper.xml @@ -13,7 +13,7 @@ Fetch error: http://www.trustkeeper.net/ => https://www.trustkeeper.net/: (28, ' - www.trustkeeper.net --> - + @@ -26,7 +26,7 @@ Fetch error: http://www.trustkeeper.net/ => https://www.trustkeeper.net/: (28, ' --> - + https://security.trustsign.com - www.trustsign.com.br --> - + @@ -27,7 +27,7 @@ Fetch error: http://security.trustsign.com.br/ => https://security.trustsign.com - + - + - - - - - - - - diff --git a/src/chrome/content/rules/Trusted-Shops.xml b/src/chrome/content/rules/Trusted-Shops.xml deleted file mode 100644 index c5f79df863b3..000000000000 --- a/src/chrome/content/rules/Trusted-Shops.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Trusted_CS.com.xml b/src/chrome/content/rules/Trusted_CS.com.xml index 735a5f53e114..d8dbb6a4f3e1 100644 --- a/src/chrome/content/rules/Trusted_CS.com.xml +++ b/src/chrome/content/rules/Trusted_CS.com.xml @@ -10,7 +10,7 @@ Fetch error: http://www.trustedcs.com/ => https://www.trustedcs.com/: (28, 'Conn ^: cert only matches www --> - + diff --git a/src/chrome/content/rules/Trusted_Shops.xml b/src/chrome/content/rules/Trusted_Shops.xml new file mode 100644 index 000000000000..4a266c7700ad --- /dev/null +++ b/src/chrome/content/rules/Trusted_Shops.xml @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Trustifier.com.xml b/src/chrome/content/rules/Trustifier.com.xml index 7dcc0115fd33..36c43b82af1e 100644 --- a/src/chrome/content/rules/Trustifier.com.xml +++ b/src/chrome/content/rules/Trustifier.com.xml @@ -4,7 +4,7 @@ - + https://mailmax.trustwave.com/: (35, 'error:14171102:SSL routines:tls_process_server_hello:unsupported protocol') + Other Trustwave rulesets: - - MySecureConnect.com.xml - - SecureConnect.com.xml - Securetrust.com.xml - TrustKeeper.xml - Xramp.com.xml @@ -18,7 +21,7 @@ --> - + @@ -26,7 +29,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Truthdig.xml b/src/chrome/content/rules/Truthdig.xml index 70109761e6a4..37a81b853019 100644 --- a/src/chrome/content/rules/Truthdig.xml +++ b/src/chrome/content/rules/Truthdig.xml @@ -3,7 +3,7 @@ - + diff --git a/src/chrome/content/rules/TryMagPop.ca.xml b/src/chrome/content/rules/TryMagPop.ca.xml new file mode 100644 index 000000000000..6d60f3292845 --- /dev/null +++ b/src/chrome/content/rules/TryMagPop.ca.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Try_Superb_Green_Coffee.com.xml b/src/chrome/content/rules/Try_Superb_Green_Coffee.com.xml deleted file mode 100644 index 222cdd077161..000000000000 --- a/src/chrome/content/rules/Try_Superb_Green_Coffee.com.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Try_Zen99.com.xml b/src/chrome/content/rules/Try_Zen99.com.xml index 2c13bc9b48f3..918901f47d58 100644 --- a/src/chrome/content/rules/Try_Zen99.com.xml +++ b/src/chrome/content/rules/Try_Zen99.com.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://tryzen99.com/ => https://tryzen99.com/: (51, "SSL: no alternative certificate subject name matches target host name 'tryzen99.com'") --> - + diff --git a/src/chrome/content/rules/Tryton.org.xml b/src/chrome/content/rules/Tryton.org.xml new file mode 100644 index 000000000000..6e2631e0eb14 --- /dev/null +++ b/src/chrome/content/rules/Tryton.org.xml @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Tsgstatic.com.xml b/src/chrome/content/rules/Tsgstatic.com.xml index 8be1421230fc..dbf42bc2b4bd 100644 --- a/src/chrome/content/rules/Tsgstatic.com.xml +++ b/src/chrome/content/rules/Tsgstatic.com.xml @@ -22,7 +22,9 @@ --> - + + + - + + + + + + + + + diff --git a/src/chrome/content/rules/TuXingSun.net.xml b/src/chrome/content/rules/TuXingSun.net.xml index ef430192ecad..e635c328b270 100644 --- a/src/chrome/content/rules/TuXingSun.net.xml +++ b/src/chrome/content/rules/TuXingSun.net.xml @@ -10,7 +10,7 @@ Fetch error: http://www.tuxingsun.net/ => https://www.tuxingsun.net/: (6, 'Could - www.tuxingsun.net --> - + diff --git a/src/chrome/content/rules/Tub.ee.xml b/src/chrome/content/rules/Tub.ee.xml new file mode 100644 index 000000000000..ee0e3c2a52c8 --- /dev/null +++ b/src/chrome/content/rules/Tub.ee.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Tube4.me.xml b/src/chrome/content/rules/Tube4.me.xml index 19b7dce64085..482b527d9717 100644 --- a/src/chrome/content/rules/Tube4.me.xml +++ b/src/chrome/content/rules/Tube4.me.xml @@ -17,7 +17,7 @@ Fetch error: http://tube4.me/ => https://tube4.me/: (60, 'SSL certificate proble * Secured by us --> - + diff --git a/src/chrome/content/rules/TubeMogul.com.xml b/src/chrome/content/rules/TubeMogul.com.xml index 2d049ee56547..ec7c0e112801 100644 --- a/src/chrome/content/rules/TubeMogul.com.xml +++ b/src/chrome/content/rules/TubeMogul.com.xml @@ -5,37 +5,165 @@ - cdn - - Problematic subdomains: - - - cdn (works; mismatched, CN: edgecastcdn.net) - - landing (works; mismatched, CN: *.unbounce.com) - - - Fully covered subdomains: - - - (www.) - - cdn (→ edgecast) - - rtb - - Insecure cookies are set for these domains: - .tubemogul.com + Cert mismatch: + - content.tubemogul.com + - as.geodns.tubemogul.com + - cdn.geodns.tubemogul.com + - pub.geodns.tubemogul.com + - rtb.geodns.tubemogul.com + - rtb-liverail.geodns.tubemogul.com + - static.inplay.tubemogul.com + - mgmt01.linode.tubemogul.com + - mgmt01.lqweb.tubemogul.com + - mldb03.tubemogul.com + - oltp02.tubemogul.com + - playtime-videos.tubemogul.com + - mgmt01.rtb.tm-iad-1a.tubemogul.com + - tmvpn02.tubemogul.com + - rtb-lb.us-east.tubemogul.com + - mgmt01.rtb2.us-east-1a.tubemogul.com + - mgmt01.rts.us-east-1a.tubemogul.com + - dev-mgmt01.us-east-1b.tubemogul.com + - monitor01.us-east-1b.tubemogul.com + - users.us-east-1b.tubemogul.com + - mgmt01.dbp.us-east-1d.tubemogul.com + - rtb-lb.us-west.tubemogul.com + + Connection refused: + - app06.tubemogul.com + - mgmt01.rtb.eu-west-1a.tubemogul.com + - ln03.tubemogul.com + - asbr01a.tm-ams-1a.tubemogul.com + - asbr01b.tm-ams-1a.tubemogul.com + - asbr01a.tm-hkg-1a.tubemogul.com + - asbr01b.tm-hkg-1a.tubemogul.com + - asbr01a.tm-sjc-1a.tubemogul.com + - asbr01b.tm-sjc-1a.tubemogul.com + - mgmt01.rtb.us-east-1a.tubemogul.com + + Self-signed cert: + - app07.tubemogul.com + - post.update.tubemogul.com + - s.update.tubemogul.com + + Timeout: + - mgmt01.ap-southeast-1a.tubemogul.com + - mgmt01.rtb.ap-southeast-1a.tubemogul.com + - mgmt01.rtb2.ap-southeast-1a.tubemogul.com + - mgmt01.udb.ap-southeast-1a.tubemogul.com + - bck01.tubemogul.com + - storezone01.corp.tubemogul.com + - mgmt01.eu-west-1a.tubemogul.com + - gallery.tubemogul.com + - innertube.tubemogul.com + - investor.tubemogul.com + - jp.tubemogul.com + - oltp01.tubemogul.com + - promo.tubemogul.com + - facebook.promo.tubemogul.com + - rtb-lb-event-us-west.tubemogul.com + - fw01a.tm-hkg-1a.tubemogul.com + - tm01.tubemogul.com + - trac.tubemogul.com + - mgmt01.us-east-1a.tubemogul.com + - mgmt02.us-east-1a.tubemogul.com + - mgmt01.us-east-1b.tubemogul.com + - mgmt02.us-east-1b.tubemogul.com + - mgmt01.us-east-1d.tubemogul.com + - mgmt01.us-west-1a.tubemogul.com + - mgmt01.rtb.us-west-1a.tubemogul.com + + TLS error: + - oltp10.tubemogul.com + - mgmt01.rtb.tm-sjc-1a.tubemogul.com + --> - - - + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -43,10 +171,6 @@ - - - diff --git a/src/chrome/content/rules/Tucows.xml b/src/chrome/content/rules/Tucows.xml index 23ae0204bcbe..7ad9853bec9a 100644 --- a/src/chrome/content/rules/Tucows.xml +++ b/src/chrome/content/rules/Tucows.xml @@ -28,7 +28,7 @@ Fetch error: http://contact-privacy.com/ => http://contact-privacy.com/: (28, 'R ² Refused --> - + diff --git a/src/chrome/content/rules/Tufts.edu.xml b/src/chrome/content/rules/Tufts.edu.xml index e80835adfca7..c7c0292b6164 100644 --- a/src/chrome/content/rules/Tufts.edu.xml +++ b/src/chrome/content/rules/Tufts.edu.xml @@ -129,7 +129,7 @@ Avoid false/broken MCB: --> - + @@ -20,4 +20,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Tulemar.xml b/src/chrome/content/rules/Tulemar.xml new file mode 100644 index 000000000000..def1c8927ac4 --- /dev/null +++ b/src/chrome/content/rules/Tulemar.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Tum.de.xml b/src/chrome/content/rules/Tum.de.xml index ccd46d331f93..3ccaff21e24f 100644 --- a/src/chrome/content/rules/Tum.de.xml +++ b/src/chrome/content/rules/Tum.de.xml @@ -1,6 +1,14 @@ + - - + + + + + + + diff --git a/src/chrome/content/rules/Tumblr.com_blogs.xml b/src/chrome/content/rules/Tumblr.com_blogs.xml deleted file mode 100644 index 10dad29a8265..000000000000 --- a/src/chrome/content/rules/Tumblr.com_blogs.xml +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Tumblr.xml b/src/chrome/content/rules/Tumblr.xml deleted file mode 100644 index df937aad2c58..000000000000 --- a/src/chrome/content/rules/Tumblr.xml +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Tumri.net.xml b/src/chrome/content/rules/Tumri.net.xml deleted file mode 100644 index b6eef1ad1554..000000000000 --- a/src/chrome/content/rules/Tumri.net.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Tunespeak.com.xml b/src/chrome/content/rules/Tunespeak.com.xml index 19db8a9d65ca..0696dbe49f07 100644 --- a/src/chrome/content/rules/Tunespeak.com.xml +++ b/src/chrome/content/rules/Tunespeak.com.xml @@ -1,15 +1,14 @@ - - + + - + diff --git a/src/chrome/content/rules/Tuning_World.xml b/src/chrome/content/rules/Tuning_World.xml deleted file mode 100644 index 65b64b4e598b..000000000000 --- a/src/chrome/content/rules/Tuning_World.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/TunnelBear.xml b/src/chrome/content/rules/TunnelBear.xml deleted file mode 100644 index 9515dafe3f90..000000000000 --- a/src/chrome/content/rules/TunnelBear.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/TunnelBroker.xml b/src/chrome/content/rules/TunnelBroker.xml index 1daadfd7b853..615f4b82e31a 100644 --- a/src/chrome/content/rules/TunnelBroker.xml +++ b/src/chrome/content/rules/TunnelBroker.xml @@ -8,7 +8,7 @@ Fetch error: http://ipv6.tunnelbroker.net/ => https://ipv6.tunnelbroker.net/: (7 For other Hurricane Electric coverage, see HurricaneElectric.xml. --> - + diff --git a/src/chrome/content/rules/Turath.co.uk.xml b/src/chrome/content/rules/Turath.co.uk.xml new file mode 100644 index 000000000000..6aa6e44b9bbf --- /dev/null +++ b/src/chrome/content/rules/Turath.co.uk.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Turbine.com.xml b/src/chrome/content/rules/Turbine.com.xml deleted file mode 100644 index 0eb93ce2c907..000000000000 --- a/src/chrome/content/rules/Turbine.com.xml +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/TurboSquid.xml b/src/chrome/content/rules/TurboSquid.xml index 489e8972c607..2c6333ed02a8 100644 --- a/src/chrome/content/rules/TurboSquid.xml +++ b/src/chrome/content/rules/TurboSquid.xml @@ -9,17 +9,15 @@ Fetch error: http://turbosquid.com/ => https://turbosquid.com/: Cycle detected - - + + + - - - + diff --git a/src/chrome/content/rules/TurboTax.com.xml b/src/chrome/content/rules/TurboTax.com.xml new file mode 100644 index 000000000000..a66009b734f5 --- /dev/null +++ b/src/chrome/content/rules/TurboTax.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Turbobytes.com.xml b/src/chrome/content/rules/Turbobytes.com.xml index ae9ca104b018..a51e63c0be3a 100644 --- a/src/chrome/content/rules/Turbobytes.com.xml +++ b/src/chrome/content/rules/Turbobytes.com.xml @@ -19,4 +19,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Turbobytes.net.xml b/src/chrome/content/rules/Turbobytes.net.xml index f199f6df7ad1..57e663b2eb90 100644 --- a/src/chrome/content/rules/Turbobytes.net.xml +++ b/src/chrome/content/rules/Turbobytes.net.xml @@ -11,12 +11,11 @@ Fetch error: http://az.turbobytes.net/ => https://az.turbobytes.net/: (6, 'Could az serves ads. --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/TurkTK.com.xml b/src/chrome/content/rules/TurkTK.com.xml deleted file mode 100644 index 4b45eb92f919..000000000000 --- a/src/chrome/content/rules/TurkTK.com.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Turkiye.gov.tr.xml b/src/chrome/content/rules/Turkiye.gov.tr.xml new file mode 100644 index 000000000000..4fc6c557a8b7 --- /dev/null +++ b/src/chrome/content/rules/Turkiye.gov.tr.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Turn.com.xml b/src/chrome/content/rules/Turn.com.xml index bf6ca801bf17..11196149e984 100644 --- a/src/chrome/content/rules/Turn.com.xml +++ b/src/chrome/content/rules/Turn.com.xml @@ -1,97 +1,73 @@ - - + - - - + + + + + + + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + diff --git a/src/chrome/content/rules/TurnKey_Linux.org.xml b/src/chrome/content/rules/TurnKey_Linux.org.xml index c15dddcb7b14..ff6850ec3280 100644 --- a/src/chrome/content/rules/TurnKey_Linux.org.xml +++ b/src/chrome/content/rules/TurnKey_Linux.org.xml @@ -31,7 +31,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Turn_On_Social.xml b/src/chrome/content/rules/Turn_On_Social.xml deleted file mode 100644 index 2923c920b97d..000000000000 --- a/src/chrome/content/rules/Turn_On_Social.xml +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Turner.com.xml b/src/chrome/content/rules/Turner.com.xml index 0811ccd57a21..9e8b61c7582a 100644 --- a/src/chrome/content/rules/Turner.com.xml +++ b/src/chrome/content/rules/Turner.com.xml @@ -1,7 +1,7 @@ - + https://support.tusfiles.net/: (6, ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -41,7 +41,7 @@ Fetch error: http://support.tusfiles.net/ => https://support.tusfiles.net/: (6, --> - + - - - - - - - - - - - diff --git a/src/chrome/content/rules/Tutanota.de.xml b/src/chrome/content/rules/Tutanota.de.xml deleted file mode 100644 index b550bd68024f..000000000000 --- a/src/chrome/content/rules/Tutanota.de.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Tutor.com.xml b/src/chrome/content/rules/Tutor.com.xml index 5b405c62ade8..25a059076be9 100644 --- a/src/chrome/content/rules/Tutor.com.xml +++ b/src/chrome/content/rules/Tutor.com.xml @@ -11,10 +11,11 @@ Fetch error: http://tutor.com/ => http://tutor.com/: (60, 'SSL certificate probl Some pages redirect to http. --> - + - + + http://tutor.com/: (60, 'SSL certificate probl - \ No newline at end of file + diff --git a/src/chrome/content/rules/Tutorialspoint.xml b/src/chrome/content/rules/Tutorialspoint.xml index 8dc82e58ca4b..24e47a23f60d 100644 --- a/src/chrome/content/rules/Tutorialspoint.xml +++ b/src/chrome/content/rules/Tutorialspoint.xml @@ -1,15 +1,12 @@ - - + + - + diff --git a/src/chrome/content/rules/TutsPlus.com.xml b/src/chrome/content/rules/TutsPlus.com.xml index 919390d8f5b1..d5f175f850b5 100644 --- a/src/chrome/content/rules/TutsPlus.com.xml +++ b/src/chrome/content/rules/TutsPlus.com.xml @@ -23,7 +23,14 @@ - + + + + + + + + @@ -44,7 +51,6 @@ - + diff --git a/src/chrome/content/rules/Tuts_4_You.com.xml b/src/chrome/content/rules/Tuts_4_You.com.xml deleted file mode 100644 index a5aee63a59ff..000000000000 --- a/src/chrome/content/rules/Tuts_4_You.com.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Tux.Org.xml b/src/chrome/content/rules/Tux.Org.xml index 3609be1eedeb..14af635b7b67 100644 --- a/src/chrome/content/rules/Tux.Org.xml +++ b/src/chrome/content/rules/Tux.Org.xml @@ -12,7 +12,7 @@ - + diff --git a/src/chrome/content/rules/TuxFamily.org.xml b/src/chrome/content/rules/TuxFamily.org.xml index e6bb541edd22..49c1b551fe24 100644 --- a/src/chrome/content/rules/TuxFamily.org.xml +++ b/src/chrome/content/rules/TuxFamily.org.xml @@ -175,7 +175,7 @@ pics.glx-dock.org ³ ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -402,7 +402,7 @@ pics.glx-dock.org ³ - + http://tvtorrents.com/: (7, 'Failed to connect to tvtorrents.com port 80: Connection refused') - ---> - - - - - - - - - diff --git a/src/chrome/content/rules/Tvheadend.org.xml b/src/chrome/content/rules/Tvheadend.org.xml index 1539eee952be..48b2563885e6 100644 --- a/src/chrome/content/rules/Tvheadend.org.xml +++ b/src/chrome/content/rules/Tvheadend.org.xml @@ -9,7 +9,7 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Twattle.net.xml b/src/chrome/content/rules/Twattle.net.xml index 2920f0585b93..3a707c57d88f 100644 --- a/src/chrome/content/rules/Twattle.net.xml +++ b/src/chrome/content/rules/Twattle.net.xml @@ -11,7 +11,7 @@ - (www.)? (www → ^) - Insecure cookies are set for these + Insecure cookies are set for these - twattle.net diff --git a/src/chrome/content/rules/TweakHound.com.xml b/src/chrome/content/rules/TweakHound.com.xml index 189dd4102777..854f241fd553 100644 --- a/src/chrome/content/rules/TweakHound.com.xml +++ b/src/chrome/content/rules/TweakHound.com.xml @@ -6,7 +6,7 @@ - + - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Tweakers.net.xml b/src/chrome/content/rules/Tweakers.net.xml index b80eb422437f..f89ddad1f7cc 100644 --- a/src/chrome/content/rules/Tweakers.net.xml +++ b/src/chrome/content/rules/Tweakers.net.xml @@ -20,7 +20,9 @@ - + + + diff --git a/src/chrome/content/rules/Tweegy.nl.xml b/src/chrome/content/rules/Tweegy.nl.xml index 97b66781173d..2f5bc2ad84bb 100644 --- a/src/chrome/content/rules/Tweegy.nl.xml +++ b/src/chrome/content/rules/Tweegy.nl.xml @@ -1,11 +1,11 @@ - + - - + + - + - + diff --git a/src/chrome/content/rules/TweetAdder.com.xml b/src/chrome/content/rules/TweetAdder.com.xml index 98d94c476de2..ec689f8717c2 100644 --- a/src/chrome/content/rules/TweetAdder.com.xml +++ b/src/chrome/content/rules/TweetAdder.com.xml @@ -16,7 +16,7 @@ Fetch error: http://www.tweetadder.com/ => https://www.tweetadder.com/: (51, "SS - www.tweetadder.com --> - + diff --git a/src/chrome/content/rules/Twenga-Solutions.com.xml b/src/chrome/content/rules/Twenga-Solutions.com.xml index 4b51aa159ce2..c2d92a96883a 100644 --- a/src/chrome/content/rules/Twenga-Solutions.com.xml +++ b/src/chrome/content/rules/Twenga-Solutions.com.xml @@ -45,7 +45,7 @@ - + https://blog.twenga.com/: (28, 'Connecti For rules not causing false/broken MCB, see Twenga.com.xml. --> - + diff --git a/src/chrome/content/rules/Twenga.com.xml b/src/chrome/content/rules/Twenga.com.xml index b628c2b74448..728ae35834a1 100644 --- a/src/chrome/content/rules/Twenga.com.xml +++ b/src/chrome/content/rules/Twenga.com.xml @@ -49,10 +49,10 @@ --> - + - + diff --git a/src/chrome/content/rules/Twiago.com.xml b/src/chrome/content/rules/Twiago.com.xml new file mode 100644 index 000000000000..6e08a6139ed3 --- /dev/null +++ b/src/chrome/content/rules/Twiago.com.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Twingly.xml b/src/chrome/content/rules/Twingly.xml index 67bcdcd548b4..dfe78c9aec07 100644 --- a/src/chrome/content/rules/Twingly.xml +++ b/src/chrome/content/rules/Twingly.xml @@ -14,4 +14,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Twinings.xml b/src/chrome/content/rules/Twinings.xml index f3497f6256f6..f19843ae3872 100644 --- a/src/chrome/content/rules/Twinings.xml +++ b/src/chrome/content/rules/Twinings.xml @@ -1,23 +1,13 @@ - - + - - - - + + + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Twinprime.com.xml b/src/chrome/content/rules/Twinprime.com.xml index 59b4d0de1ccd..0f498dfba573 100644 --- a/src/chrome/content/rules/Twinprime.com.xml +++ b/src/chrome/content/rules/Twinprime.com.xml @@ -13,7 +13,7 @@ Fetch error: http://support.twinprime.com/ => https://support.twinprime.com/: (2 - go.twinprime.com (certificate mismatch) --> - + diff --git a/src/chrome/content/rules/TwinsOrNot.Net.xml b/src/chrome/content/rules/TwinsOrNot.Net.xml index c48c7dd3d658..72357511b5b3 100644 --- a/src/chrome/content/rules/TwinsOrNot.Net.xml +++ b/src/chrome/content/rules/TwinsOrNot.Net.xml @@ -6,7 +6,7 @@ Fetch error: http://twinsornot.net/ => https://twinsornot.net/: (7, 'Failed to c For other Microsoft coverage, see Microsoft.xml. --> - + diff --git a/src/chrome/content/rules/Twisp.xml b/src/chrome/content/rules/Twisp.xml deleted file mode 100644 index 23238d7da382..000000000000 --- a/src/chrome/content/rules/Twisp.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Twistage.xml b/src/chrome/content/rules/Twistage.xml index 36e8ea879fa6..d8ad3995befd 100644 --- a/src/chrome/content/rules/Twistage.xml +++ b/src/chrome/content/rules/Twistage.xml @@ -26,4 +26,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Twisted4Life.xml b/src/chrome/content/rules/Twisted4Life.xml index f164d132c00c..67df068aacb1 100644 --- a/src/chrome/content/rules/Twisted4Life.xml +++ b/src/chrome/content/rules/Twisted4Life.xml @@ -5,11 +5,11 @@ Fetch error: http://twisted4life.com/ => https://twisted4life.com/: (60, 'SSL ce Fetch error: http://www.twisted4life.com/ => https://www.twisted4life.com/: (60, 'SSL certificate problem: certificate has expired') --> - + - + - + diff --git a/src/chrome/content/rules/TwistedMatrix.xml b/src/chrome/content/rules/TwistedMatrix.xml index 79e3389753f6..1f2070188392 100644 --- a/src/chrome/content/rules/TwistedMatrix.xml +++ b/src/chrome/content/rules/TwistedMatrix.xml @@ -41,7 +41,7 @@ Fetch error: http://speed.twistedmatrix.com/ => https://speed.twistedmatrix.com/ * Mismatched, CN: www.twistedmatrix.com --> - + @@ -55,7 +55,7 @@ Fetch error: http://speed.twistedmatrix.com/ => https://speed.twistedmatrix.com/ --> - + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/TwitCasting.xml b/src/chrome/content/rules/TwitCasting.xml deleted file mode 100644 index 690d5bb876b3..000000000000 --- a/src/chrome/content/rules/TwitCasting.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Twitch.tv.xml b/src/chrome/content/rules/Twitch.tv.xml index f429b40a3865..9f95382f71f9 100644 --- a/src/chrome/content/rules/Twitch.tv.xml +++ b/src/chrome/content/rules/Twitch.tv.xml @@ -1,18 +1,17 @@ + @@ -23,10 +22,10 @@ - + - + @@ -34,6 +33,7 @@ + @@ -45,6 +45,6 @@ - + diff --git a/src/chrome/content/rules/Twitch_Installs.com.xml b/src/chrome/content/rules/Twitch_Installs.com.xml index bb3e83dcbcb1..db91d71f00a1 100644 --- a/src/chrome/content/rules/Twitch_Installs.com.xml +++ b/src/chrome/content/rules/Twitch_Installs.com.xml @@ -16,7 +16,7 @@ --> - + - + - + + + + + + + - - - + diff --git a/src/chrome/content/rules/Twitter.xml b/src/chrome/content/rules/Twitter.xml index 46254d234b68..fee03382ff9b 100644 --- a/src/chrome/content/rules/Twitter.xml +++ b/src/chrome/content/rules/Twitter.xml @@ -32,6 +32,7 @@ Problematic hosts in *twitter.com: - app.tweet * + - widgets.platform * * Mismatched @@ -122,12 +123,10 @@ - - @@ -137,8 +136,9 @@ - + + @@ -151,7 +151,7 @@ - + - + diff --git a/src/chrome/content/rules/Two_Roads.xml b/src/chrome/content/rules/Two_Roads.xml index 306beff1b05d..9f2eaf4f4e90 100644 --- a/src/chrome/content/rules/Two_Roads.xml +++ b/src/chrome/content/rules/Two_Roads.xml @@ -1,13 +1,14 @@ - + + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Two_Sigma.com.xml b/src/chrome/content/rules/Two_Sigma.com.xml index deea716107f0..2549baba0637 100644 --- a/src/chrome/content/rules/Two_Sigma.com.xml +++ b/src/chrome/content/rules/Two_Sigma.com.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://twosigma.com/ => https://twosigma.com/: (6, 'Could not resolve host: twosigma.com') --> - + diff --git a/src/chrome/content/rules/Twoseventy.net.xml b/src/chrome/content/rules/Twoseventy.net.xml deleted file mode 100644 index 1d49c615f280..000000000000 --- a/src/chrome/content/rules/Twoseventy.net.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Twtpoll.com.xml b/src/chrome/content/rules/Twtpoll.com.xml index 93db581a7f52..99ee76f7dd5c 100644 --- a/src/chrome/content/rules/Twtpoll.com.xml +++ b/src/chrome/content/rules/Twtpoll.com.xml @@ -10,7 +10,7 @@ Fetch error: http://twtpoll.com/ => https://twtpoll.com/: (51, "SSL: no alternat * Secured by us --> - + diff --git a/src/chrome/content/rules/Twylah.com.xml b/src/chrome/content/rules/Twylah.com.xml index b609ddd04306..24e334676f7c 100644 --- a/src/chrome/content/rules/Twylah.com.xml +++ b/src/chrome/content/rules/Twylah.com.xml @@ -21,7 +21,7 @@ Fetch error: http://www.twylah.com/ => https://www.twylah.com/: (60, 'SSL certif * Secured by us --> - + diff --git a/src/chrome/content/rules/Tyndall.ie.xml b/src/chrome/content/rules/Tyndall.ie.xml index 5ffbd24eb844..a46ea5282ee0 100644 --- a/src/chrome/content/rules/Tyndall.ie.xml +++ b/src/chrome/content/rules/Tyndall.ie.xml @@ -4,13 +4,10 @@ --> - + - - - + diff --git a/src/chrome/content/rules/Tynt.xml b/src/chrome/content/rules/Tynt.xml index 67a3818f6ed6..74ffc3adeefe 100644 --- a/src/chrome/content/rules/Tynt.xml +++ b/src/chrome/content/rules/Tynt.xml @@ -44,7 +44,7 @@ s_\w{2,3}: Tracking cookies: --> - + https://www.tem.fi/ (404) Non-2xx HTTP code: http://www.tem.fi/ (200) => https://www.tem.fi/ (404) --> - + diff --git a/src/chrome/content/rules/Typ.io.xml b/src/chrome/content/rules/Typ.io.xml new file mode 100644 index 000000000000..fd866d9263e9 --- /dev/null +++ b/src/chrome/content/rules/Typ.io.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/TypeRacer.com.xml b/src/chrome/content/rules/TypeRacer.com.xml new file mode 100644 index 000000000000..4941614280cc --- /dev/null +++ b/src/chrome/content/rules/TypeRacer.com.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Typesafe.com.xml b/src/chrome/content/rules/Typesafe.com.xml index 2f3be50ccff5..3d569da70c23 100644 --- a/src/chrome/content/rules/Typesafe.com.xml +++ b/src/chrome/content/rules/Typesafe.com.xml @@ -16,10 +16,11 @@ - + + + - + diff --git a/src/chrome/content/rules/Typography.com.xml b/src/chrome/content/rules/Typography.com.xml index 1dd04039ccea..09945070a1e6 100644 --- a/src/chrome/content/rules/Typography.com.xml +++ b/src/chrome/content/rules/Typography.com.xml @@ -15,7 +15,10 @@ - + + + + diff --git a/src/chrome/content/rules/Typora.io.xml b/src/chrome/content/rules/Typora.io.xml new file mode 100644 index 000000000000..092b47aea5cb --- /dev/null +++ b/src/chrome/content/rules/Typora.io.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Typora.xml b/src/chrome/content/rules/Typora.xml deleted file mode 100644 index 1f2fdbfd2f6a..000000000000 --- a/src/chrome/content/rules/Typora.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Typotheque.xml b/src/chrome/content/rules/Typotheque.xml index 46380e025f5f..eebffc174b9f 100644 --- a/src/chrome/content/rules/Typotheque.xml +++ b/src/chrome/content/rules/Typotheque.xml @@ -1,45 +1,16 @@ - - + - - - - - - - - - - - - - - + + diff --git a/src/chrome/content/rules/U-Tokyo.ac.jp-problematic.xml b/src/chrome/content/rules/U-Tokyo.ac.jp-problematic.xml index 544872e1ec74..123f57ea8388 100644 --- a/src/chrome/content/rules/U-Tokyo.ac.jp-problematic.xml +++ b/src/chrome/content/rules/U-Tokyo.ac.jp-problematic.xml @@ -8,7 +8,6 @@ - + diff --git a/src/chrome/content/rules/U-Tokyo.ac.jp.xml b/src/chrome/content/rules/U-Tokyo.ac.jp.xml index 659371ace188..11b623b2e56a 100644 --- a/src/chrome/content/rules/U-Tokyo.ac.jp.xml +++ b/src/chrome/content/rules/U-Tokyo.ac.jp.xml @@ -70,7 +70,20 @@ --> - + + + + + + + + + + + + + + - + diff --git a/src/chrome/content/rules/UA.edu-problematic.xml b/src/chrome/content/rules/UA.edu-problematic.xml index a07e56114ff5..96fdd42da991 100644 --- a/src/chrome/content/rules/UA.edu-problematic.xml +++ b/src/chrome/content/rules/UA.edu-problematic.xml @@ -8,7 +8,6 @@ - + diff --git a/src/chrome/content/rules/UA.edu.xml b/src/chrome/content/rules/UA.edu.xml index fa4df7abb506..82338d4d6c84 100644 --- a/src/chrome/content/rules/UA.edu.xml +++ b/src/chrome/content/rules/UA.edu.xml @@ -87,7 +87,18 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/UBM-mismatches.xml b/src/chrome/content/rules/UBM-mismatches.xml index c70db8139fc8..29254fb8a827 100644 --- a/src/chrome/content/rules/UBM-mismatches.xml +++ b/src/chrome/content/rules/UBM-mismatches.xml @@ -60,13 +60,13 @@ - + - - - + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - + diff --git a/src/chrome/content/rules/UC.xml b/src/chrome/content/rules/UC.xml index 0df2efb5f214..9b3ae8297ad4 100644 --- a/src/chrome/content/rules/UC.xml +++ b/src/chrome/content/rules/UC.xml @@ -20,7 +20,7 @@ m.down2.uc.cn ibooks.uc.cn school.uc.cn - union.uc.cn + union.uc.cn --> diff --git a/src/chrome/content/rules/UCAR.edu.xml b/src/chrome/content/rules/UCAR.edu.xml index e5fdff713e6d..44526f22334d 100644 --- a/src/chrome/content/rules/UCAR.edu.xml +++ b/src/chrome/content/rules/UCAR.edu.xml @@ -31,13 +31,18 @@ --> - + + + + + + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/UCC.ie.xml b/src/chrome/content/rules/UCC.ie.xml index 682b49f74358..9178c1039899 100644 --- a/src/chrome/content/rules/UCC.ie.xml +++ b/src/chrome/content/rules/UCC.ie.xml @@ -23,7 +23,7 @@ Fetch error: http://yosemite.ucc.ie/ => https://yosemite.ucc.ie/: (28, 'Connecti * Secured by us --> - + diff --git a/src/chrome/content/rules/UCLA_Health.xml b/src/chrome/content/rules/UCLA_Health.xml index a77a32811d25..6c754e44af91 100644 --- a/src/chrome/content/rules/UCLA_Health.xml +++ b/src/chrome/content/rules/UCLA_Health.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/UCM.es.xml b/src/chrome/content/rules/UCM.es.xml index 4f193e6c6204..f6de4465ef48 100644 --- a/src/chrome/content/rules/UCM.es.xml +++ b/src/chrome/content/rules/UCM.es.xml @@ -54,7 +54,10 @@ --> - + + + + - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/UCSD.edu.xml b/src/chrome/content/rules/UCSD.edu.xml deleted file mode 100644 index 310c269d67b4..000000000000 --- a/src/chrome/content/rules/UCSD.edu.xml +++ /dev/null @@ -1,646 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/UC_Hastings.edu-falsemixed.xml b/src/chrome/content/rules/UC_Hastings.edu-falsemixed.xml deleted file mode 100644 index 5a52f8fabc36..000000000000 --- a/src/chrome/content/rules/UC_Hastings.edu-falsemixed.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/UC_Hastings.edu-problematic.xml b/src/chrome/content/rules/UC_Hastings.edu-problematic.xml index d5d825d4eee8..a5032d150891 100644 --- a/src/chrome/content/rules/UC_Hastings.edu-problematic.xml +++ b/src/chrome/content/rules/UC_Hastings.edu-problematic.xml @@ -2,7 +2,7 @@ For rules that are on by default, see UC_Hastings.edu.xml. --> - + diff --git a/src/chrome/content/rules/UC_Hastings.edu.xml b/src/chrome/content/rules/UC_Hastings.edu.xml index dd9ed75a6df8..b46845238005 100644 --- a/src/chrome/content/rules/UC_Hastings.edu.xml +++ b/src/chrome/content/rules/UC_Hastings.edu.xml @@ -43,7 +43,7 @@ Fetch error: http://webadvisor.uchastings.edu/ => https://webadvisor.uchastings. ² Rule disabled by default <= missing certificate chain --> - + diff --git a/src/chrome/content/rules/UCalgary_Mag.ca.xml b/src/chrome/content/rules/UCalgary_Mag.ca.xml index f1d34844fb53..d3e47762d54a 100644 --- a/src/chrome/content/rules/UCalgary_Mag.ca.xml +++ b/src/chrome/content/rules/UCalgary_Mag.ca.xml @@ -19,7 +19,7 @@ Fetch error: http://www.ucalgarymag.ca/ => https://www.ucalgarymag.ca/: (60, 'SS * Secured by us --> - + diff --git a/src/chrome/content/rules/UClinics.xml b/src/chrome/content/rules/UClinics.xml deleted file mode 100644 index 12f3e4bc867f..000000000000 --- a/src/chrome/content/rules/UClinics.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/UDK.com.xml b/src/chrome/content/rules/UDK.com.xml index 60acdc8db377..06b2ee4a1564 100644 --- a/src/chrome/content/rules/UDK.com.xml +++ b/src/chrome/content/rules/UDK.com.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://udk.com/ => https://udk.com/: (60, 'SSL certificate problem: certificate has expired') Fetch error: http://www.udk.com/ => https://udk.com/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/UDN.xml b/src/chrome/content/rules/UDN.xml index cdc9d5dffad6..27a0ac556906 100644 --- a/src/chrome/content/rules/UDN.xml +++ b/src/chrome/content/rules/UDN.xml @@ -1,22 +1,8 @@ - - - + + + + + + @@ -61,8 +51,13 @@ Fetch error: http://paper.udn.com/ => https://paper.udn.com/: (28, 'Operation ti + + + + + @@ -74,6 +69,7 @@ Fetch error: http://paper.udn.com/ => https://paper.udn.com/: (28, 'Operation ti + @@ -90,11 +86,14 @@ Fetch error: http://paper.udn.com/ => https://paper.udn.com/: (28, 'Operation ti + + + @@ -110,7 +109,6 @@ Fetch error: http://paper.udn.com/ => https://paper.udn.com/: (28, 'Operation ti - diff --git a/src/chrome/content/rules/UESP.net.xml b/src/chrome/content/rules/UESP.net.xml new file mode 100644 index 000000000000..42b820e873e4 --- /dev/null +++ b/src/chrome/content/rules/UESP.net.xml @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/UFC_Fit.xml b/src/chrome/content/rules/UFC_Fit.xml index 8015e778005a..ae3cefa08701 100644 --- a/src/chrome/content/rules/UFC_Fit.xml +++ b/src/chrome/content/rules/UFC_Fit.xml @@ -8,7 +8,7 @@ Fetch error: http://www.ufcfit.com/ => https://www.ufcfit.com/: (28, 'Operation Disabled by https-everywhere-checker because: Fetch error: http://ufcfit.com/ => https://ufcfit.com/: (7, 'Failed to connect to ufcfit.com port 443: Connection refused') --> - + @@ -20,4 +20,4 @@ Fetch error: http://ufcfit.com/ => https://ufcfit.com/: (7, 'Failed to connect t - \ No newline at end of file + diff --git a/src/chrome/content/rules/UFies.org.xml b/src/chrome/content/rules/UFies.org.xml index 5d00034c5265..ca49dd81eb1f 100644 --- a/src/chrome/content/rules/UFies.org.xml +++ b/src/chrome/content/rules/UFies.org.xml @@ -30,4 +30,4 @@ Fetch error: http://ufies.org/ => https://ufies.org/: (60, 'SSL certificate prob - \ No newline at end of file + diff --git a/src/chrome/content/rules/UHH-Informatik.xml b/src/chrome/content/rules/UHH-Informatik.xml index f41df9cf142d..c5939458b8bc 100644 --- a/src/chrome/content/rules/UHH-Informatik.xml +++ b/src/chrome/content/rules/UHH-Informatik.xml @@ -27,7 +27,7 @@ Fetch error: http://surfmail.rrz.uni-hamburg.de/ => https://surfmail.rrz.uni-ham * Secured by us --> - + @@ -60,7 +60,7 @@ Fetch error: http://surfmail.rrz.uni-hamburg.de/ => https://surfmail.rrz.uni-ham - + https://us.wa.ui-portal.de/: (6, 'Could not resolve host: us.wa.ui-portal.de') - For other United Internet coverage, see United-Internet.xml. + Invalid certificate: + ui-portal.de + www.ui-portal.de - Nonfunctional subdomains: - - - (www.) - + Timeout: + contract.ui-portal.de + video[1-5].ui-portal.de + wa-qa.ui-portal.de --> - + - + + + + + + + + + + - - + + - + diff --git a/src/chrome/content/rules/UIC.edu-falsemixed.xml b/src/chrome/content/rules/UIC.edu-falsemixed.xml index 0eb409514b11..ae6374ba2edf 100644 --- a/src/chrome/content/rules/UIC.edu-falsemixed.xml +++ b/src/chrome/content/rules/UIC.edu-falsemixed.xml @@ -9,7 +9,7 @@ - + - + diff --git a/src/chrome/content/rules/UIUC.edu.xml b/src/chrome/content/rules/UIUC.edu.xml index edf3d7338386..b10eaca823e3 100644 --- a/src/chrome/content/rules/UIUC.edu.xml +++ b/src/chrome/content/rules/UIUC.edu.xml @@ -46,7 +46,7 @@ Fetch error: http://www.uiuc.edu/ => https://illinois.edu/: Too many redirects w * Secured by us --> - + @@ -74,7 +74,7 @@ Fetch error: http://www.uiuc.edu/ => https://illinois.edu/: Too many redirects w --> - + - - - - - - - - - - - diff --git a/src/chrome/content/rules/UIllinois.edu.xml b/src/chrome/content/rules/UIllinois.edu.xml index c52a1bd5a317..8f5cd188f58a 100644 --- a/src/chrome/content/rules/UIllinois.edu.xml +++ b/src/chrome/content/rules/UIllinois.edu.xml @@ -77,7 +77,7 @@ Non-2xx HTTP code: http://uofi.uillinois.edu/ (200) => https://uofi.uillinois.ed * Secured by us --> - + @@ -159,7 +159,7 @@ Non-2xx HTTP code: http://uofi.uillinois.edu/ (200) => https://uofi.uillinois.ed - + - + + + + + + + - - - + diff --git a/src/chrome/content/rules/UJF-Grenoble.fr.xml b/src/chrome/content/rules/UJF-Grenoble.fr.xml deleted file mode 100644 index d4fe91e908de..000000000000 --- a/src/chrome/content/rules/UJF-Grenoble.fr.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/UK-2.xml b/src/chrome/content/rules/UK-2.xml index 8b61f1906126..6047347646f3 100644 --- a/src/chrome/content/rules/UK-2.xml +++ b/src/chrome/content/rules/UK-2.xml @@ -35,10 +35,17 @@ Fetch error: http://www.uk2img.net/ => https://www.uk2img.net/: (60, 'SSL certif - (www.)uk2img.net --> - + - + + + + + + + + @@ -47,8 +54,6 @@ Fetch error: http://www.uk2img.net/ => https://www.uk2img.net/: (60, 'SSL certif - @@ -56,7 +61,6 @@ Fetch error: http://www.uk2img.net/ => https://www.uk2img.net/: (60, 'SSL certif - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/UK-Access-Management-Federation.xml b/src/chrome/content/rules/UK-Access-Management-Federation.xml index dd2fcf369698..e3b698ace287 100644 --- a/src/chrome/content/rules/UK-Access-Management-Federation.xml +++ b/src/chrome/content/rules/UK-Access-Management-Federation.xml @@ -3,7 +3,7 @@ - + diff --git a/src/chrome/content/rules/UK-Department-for-Business-Innovation-and-Skills.xml b/src/chrome/content/rules/UK-Department-for-Business-Innovation-and-Skills.xml index 6537bd790a17..0c911daae9c3 100644 --- a/src/chrome/content/rules/UK-Department-for-Business-Innovation-and-Skills.xml +++ b/src/chrome/content/rules/UK-Department-for-Business-Innovation-and-Skills.xml @@ -50,7 +50,7 @@ Fetch error: http://www.edrs.sfa.bis.gov.uk/ => https://edrs.sfa.bis.gov.uk/: (6 ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -87,7 +87,7 @@ Fetch error: http://www.edrs.sfa.bis.gov.uk/ => https://edrs.sfa.bis.gov.uk/: (6 - + - + - + diff --git a/src/chrome/content/rules/UK-Information-Commissioners-Office.xml b/src/chrome/content/rules/UK-Information-Commissioners-Office.xml deleted file mode 100644 index 11fb63a980c3..000000000000 --- a/src/chrome/content/rules/UK-Information-Commissioners-Office.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/UKFast.co.uk.xml b/src/chrome/content/rules/UKFast.co.uk.xml index 0896868f2097..240add616e67 100644 --- a/src/chrome/content/rules/UKFast.co.uk.xml +++ b/src/chrome/content/rules/UKFast.co.uk.xml @@ -76,7 +76,7 @@ - + - - + + - - + diff --git a/src/chrome/content/rules/UL.ie-falsemixed.xml b/src/chrome/content/rules/UL.ie-falsemixed.xml index 2fa27a4cce0b..d06c6ac4a4eb 100644 --- a/src/chrome/content/rules/UL.ie-falsemixed.xml +++ b/src/chrome/content/rules/UL.ie-falsemixed.xml @@ -7,7 +7,7 @@ Fetch error: http://www.ul.ie/ => https://www.ul.ie/: (60, 'SSL certificate prob For rules not causing false/broken MCB, see UL.ie.xml. --> - + diff --git a/src/chrome/content/rules/UL.ie.xml b/src/chrome/content/rules/UL.ie.xml index 14ec107c4c35..c3182f76a6b1 100644 --- a/src/chrome/content/rules/UL.ie.xml +++ b/src/chrome/content/rules/UL.ie.xml @@ -27,10 +27,10 @@ Fetch error: http://ul.ie/ => http://ul.ie/: (60, 'SSL certificate problem: unab * Secured by us --> - + - + diff --git a/src/chrome/content/rules/ULAKBIM.gov.tr.xml b/src/chrome/content/rules/ULAKBIM.gov.tr.xml index 315e8b498274..1ba784137b85 100644 --- a/src/chrome/content/rules/ULAKBIM.gov.tr.xml +++ b/src/chrome/content/rules/ULAKBIM.gov.tr.xml @@ -22,7 +22,10 @@ - + + + + @@ -31,7 +34,6 @@ - + diff --git a/src/chrome/content/rules/UMBC.edu.xml b/src/chrome/content/rules/UMBC.edu.xml index 2fb3459bfa36..334b7f99364c 100644 --- a/src/chrome/content/rules/UMBC.edu.xml +++ b/src/chrome/content/rules/UMBC.edu.xml @@ -18,7 +18,13 @@ --> - + + + + + + + @@ -16,7 +17,6 @@ Fetch error: http://umonitor.com/ => https://www.umonitor.com/: (28, 'Connection to="https://www.umonitor.com/" /> - + diff --git a/src/chrome/content/rules/UN.org.xml b/src/chrome/content/rules/UN.org.xml index 992dbca10763..a02501f1bcc6 100644 --- a/src/chrome/content/rules/UN.org.xml +++ b/src/chrome/content/rules/UN.org.xml @@ -109,7 +109,7 @@ Timeout: peacemaker.un.org repository.un.org --> - + diff --git a/src/chrome/content/rules/UNC.edu-mixedcontent.xml b/src/chrome/content/rules/UNC.edu-mixedcontent.xml deleted file mode 100644 index 7588ff6bc3b6..000000000000 --- a/src/chrome/content/rules/UNC.edu-mixedcontent.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/UNC.edu.xml b/src/chrome/content/rules/UNC.edu.xml index 08da460c54c8..45bc3004012f 100644 --- a/src/chrome/content/rules/UNC.edu.xml +++ b/src/chrome/content/rules/UNC.edu.xml @@ -1,148 +1,63 @@ + + + - - library from $self ² - - library from autosuggest.trln.org ³ + + + + - - Images, on: + + + + + + - - library from $self ² - - library from blogs.lib ² + - ¹ Unsecurable <= redirects back from unc.libcal.com - ² Secured by us - ³ Unsecurable <= redirects to another domain + ---> - + + + - - - - - - - - + + + + + - - - - - - - - - - - - + + - + + - + + + - + + + + + diff --git a/src/chrome/content/rules/UNC_Lineberger.org.xml b/src/chrome/content/rules/UNC_Lineberger.org.xml index 5e5df4585c56..8528a396c048 100644 --- a/src/chrome/content/rules/UNC_Lineberger.org.xml +++ b/src/chrome/content/rules/UNC_Lineberger.org.xml @@ -11,7 +11,7 @@ Fetch error: http://www.unclineberger.org/ => https://www.unclineberger.org/: (6 For other University of North Carolina at Chapel Hill coverage, see UNC.edu.xml. --> - + diff --git a/src/chrome/content/rules/UNDP.org.xml b/src/chrome/content/rules/UNDP.org.xml index fa221cee026c..6fbd7b9c3690 100644 --- a/src/chrome/content/rules/UNDP.org.xml +++ b/src/chrome/content/rules/UNDP.org.xml @@ -30,7 +30,7 @@ --> - + - diff --git a/src/chrome/content/rules/UNHCR.org.xml b/src/chrome/content/rules/UNHCR.org.xml index d7101b12f45b..2b457cea573e 100644 --- a/src/chrome/content/rules/UNHCR.org.xml +++ b/src/chrome/content/rules/UNHCR.org.xml @@ -1,42 +1,31 @@ - - + - - - - - - - - - - + + + + + diff --git a/src/chrome/content/rules/UNIBA.sk.xml b/src/chrome/content/rules/UNIBA.sk.xml new file mode 100644 index 000000000000..7597189abc95 --- /dev/null +++ b/src/chrome/content/rules/UNIBA.sk.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/UNICEF-IRC.org.xml b/src/chrome/content/rules/UNICEF-IRC.org.xml index c9e721622585..c032e0b377b7 100644 --- a/src/chrome/content/rules/UNICEF-IRC.org.xml +++ b/src/chrome/content/rules/UNICEF-IRC.org.xml @@ -22,6 +22,6 @@ - diff --git a/src/chrome/content/rules/UNICEF.fi.xml b/src/chrome/content/rules/UNICEF.fi.xml index d08555fb807a..f7882a84f42a 100644 --- a/src/chrome/content/rules/UNICEF.fi.xml +++ b/src/chrome/content/rules/UNICEF.fi.xml @@ -1,30 +1,15 @@ - - + - + + - + diff --git a/src/chrome/content/rules/UNICEF.or.jp.xml b/src/chrome/content/rules/UNICEF.or.jp.xml index 9da4a1dda932..420484867878 100644 --- a/src/chrome/content/rules/UNICEF.or.jp.xml +++ b/src/chrome/content/rules/UNICEF.or.jp.xml @@ -19,7 +19,7 @@ Fetch error: http://appdev.unicef.or.jp/ => https://appdev.unicef.or.jp/: (60, ' - google.com on https://www.unicef.or.jp/ - mixi.jp on https://www.unicef.or.jp/news/2017/0075.html --> - + @@ -31,6 +31,6 @@ Fetch error: http://appdev.unicef.or.jp/ => https://appdev.unicef.or.jp/: (60, ' - diff --git a/src/chrome/content/rules/UNICEF.org.uk.xml b/src/chrome/content/rules/UNICEF.org.uk.xml index 08b5d3a60648..093a4526981d 100644 --- a/src/chrome/content/rules/UNICEF.org.uk.xml +++ b/src/chrome/content/rules/UNICEF.org.uk.xml @@ -86,6 +86,6 @@ - diff --git a/src/chrome/content/rules/UNICEF.org.xml b/src/chrome/content/rules/UNICEF.org.xml index 637ee0bbd7db..cf424184a22b 100644 --- a/src/chrome/content/rules/UNICEF.org.xml +++ b/src/chrome/content/rules/UNICEF.org.xml @@ -1,6 +1,28 @@ + + - - - + + + - + - - - + + + - + - + - - - + + + - + - + - - - + + + - - + + - diff --git a/src/chrome/content/rules/UNICEF_USA.org.xml b/src/chrome/content/rules/UNICEF_USA.org.xml index a789c7c37a03..1c59d2bab02d 100644 --- a/src/chrome/content/rules/UNICEF_USA.org.xml +++ b/src/chrome/content/rules/UNICEF_USA.org.xml @@ -59,7 +59,7 @@ Fetch error: http://globalaction.unicefusa.org/ => https://globalaction.unicefus - tapproject.unicefusa.org - vem.unicefusa.org --> - + @@ -94,6 +94,6 @@ Fetch error: http://globalaction.unicefusa.org/ => https://globalaction.unicefus - diff --git a/src/chrome/content/rules/UNIPO.sk.xml b/src/chrome/content/rules/UNIPO.sk.xml new file mode 100644 index 000000000000..3a3f71e3a5bf --- /dev/null +++ b/src/chrome/content/rules/UNIPO.sk.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/UNIZA.sk.xml b/src/chrome/content/rules/UNIZA.sk.xml new file mode 100644 index 000000000000..e8c131e97b3c --- /dev/null +++ b/src/chrome/content/rules/UNIZA.sk.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/UNM.edu-falsemixed.xml b/src/chrome/content/rules/UNM.edu-falsemixed.xml deleted file mode 100644 index 6dd0751c9e72..000000000000 --- a/src/chrome/content/rules/UNM.edu-falsemixed.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/UNM.edu-problematic.xml b/src/chrome/content/rules/UNM.edu-problematic.xml deleted file mode 100644 index 59502f8f4351..000000000000 --- a/src/chrome/content/rules/UNM.edu-problematic.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/UNM.edu.xml b/src/chrome/content/rules/UNM.edu.xml new file mode 100644 index 000000000000..190e48f168a3 --- /dev/null +++ b/src/chrome/content/rules/UNM.edu.xml @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/UNM.xml b/src/chrome/content/rules/UNM.xml deleted file mode 100644 index 76d270773f15..000000000000 --- a/src/chrome/content/rules/UNM.xml +++ /dev/null @@ -1,161 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/UNODC.org.xml b/src/chrome/content/rules/UNODC.org.xml index 1b36479cb5d9..642c3a6dbb8e 100644 --- a/src/chrome/content/rules/UNODC.org.xml +++ b/src/chrome/content/rules/UNODC.org.xml @@ -16,16 +16,16 @@ profi.unodc.org staffingtable.unodc.org wiki.unodc.org - + No working URL known: cns.unodc.org services2.unodc.org static.unodc.org trackservices.unodc.org - + Invalid certificate: www.track.unodc.org - + --> diff --git a/src/chrome/content/rules/UN_Multimedia.org.xml b/src/chrome/content/rules/UN_Multimedia.org.xml index a73ff8aa4ad1..8fd8ccff5178 100644 --- a/src/chrome/content/rules/UN_Multimedia.org.xml +++ b/src/chrome/content/rules/UN_Multimedia.org.xml @@ -1,34 +1,16 @@ - - - - - - - + + diff --git a/src/chrome/content/rules/UOL.com.br-falsemixed.xml b/src/chrome/content/rules/UOL.com.br-falsemixed.xml deleted file mode 100644 index a86c5270b5bc..000000000000 --- a/src/chrome/content/rules/UOL.com.br-falsemixed.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/UOL.xml b/src/chrome/content/rules/UOL.xml index 0b0ad6f1e1fd..1dce059af37f 100644 --- a/src/chrome/content/rules/UOL.xml +++ b/src/chrome/content/rules/UOL.xml @@ -1,12 +1,4 @@ - - + - + - @@ -164,13 +150,6 @@ Non-2xx HTTP code: http://tts.uol.com.br/ (200) => https://tts.uol.com.br/ (500) - - - - - - @@ -187,23 +166,10 @@ Non-2xx HTTP code: http://tts.uol.com.br/ (200) => https://tts.uol.com.br/ (500) - - - - - - - - - + - - - diff --git a/src/chrome/content/rules/UOregon.xml b/src/chrome/content/rules/UOregon.xml index 6ae8e0ff7dcf..b6fccec36ecb 100644 --- a/src/chrome/content/rules/UOregon.xml +++ b/src/chrome/content/rules/UOregon.xml @@ -341,6 +341,6 @@ --> - + diff --git a/src/chrome/content/rules/UPC.cz.xml b/src/chrome/content/rules/UPC.cz.xml index 1c7d0aafdbb4..7be2334d0de6 100644 --- a/src/chrome/content/rules/UPC.cz.xml +++ b/src/chrome/content/rules/UPC.cz.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://tvprogram.upc.cz/ => https://tvprogram.upc.cz/: (28, 'Connection timed out after 20004 milliseconds') --> - + diff --git a/src/chrome/content/rules/UPC.edu.xml b/src/chrome/content/rules/UPC.edu.xml new file mode 100644 index 000000000000..2abcf04e6812 --- /dev/null +++ b/src/chrome/content/rules/UPC.edu.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/UPC.es.xml b/src/chrome/content/rules/UPC.es.xml new file mode 100644 index 000000000000..26916597433c --- /dev/null +++ b/src/chrome/content/rules/UPC.es.xml @@ -0,0 +1,106 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/UPC.ie.xml b/src/chrome/content/rules/UPC.ie.xml index b029859d9d77..63ec435259c3 100644 --- a/src/chrome/content/rules/UPC.ie.xml +++ b/src/chrome/content/rules/UPC.ie.xml @@ -27,7 +27,7 @@ Fetch error: http://as.upc.ie/ => https://as.upc.ie/: (60, 'SSL certificate prob - mail.upc.ie --> - + @@ -52,7 +52,7 @@ Fetch error: http://as.upc.ie/ => https://as.upc.ie/: (60, 'SSL certificate prob --> - + https://service.upc.nl/: (60, 'SSL certif ᵐ Mismatched --> - + @@ -40,7 +40,7 @@ Fetch error: http://service.upc.nl/ => https://service.upc.nl/: (60, 'SSL certif - + - + - + https://upv.cz/: (60, 'SSL certificate problem: u Fetch error: http://www.upv.cz/ => https://www.upv.cz/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + diff --git a/src/chrome/content/rules/UPatient.xml b/src/chrome/content/rules/UPatient.xml deleted file mode 100644 index 81a87589bde7..000000000000 --- a/src/chrome/content/rules/UPatient.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/UProd.biz.xml b/src/chrome/content/rules/UProd.biz.xml index b89dce1f54fe..91e68289e336 100644 --- a/src/chrome/content/rules/UProd.biz.xml +++ b/src/chrome/content/rules/UProd.biz.xml @@ -4,7 +4,7 @@ * See https://whatsmychaincert.com --> - + diff --git a/src/chrome/content/rules/UProxy.org.xml b/src/chrome/content/rules/UProxy.org.xml index b14c0a8a109d..a9b0e366b828 100644 --- a/src/chrome/content/rules/UProxy.org.xml +++ b/src/chrome/content/rules/UProxy.org.xml @@ -1,17 +1,13 @@ - - - - - + + + + - + diff --git a/src/chrome/content/rules/UQWiMAX.xml b/src/chrome/content/rules/UQWiMAX.xml index 2f03e4ce2c61..1a8dce7ed1c6 100644 --- a/src/chrome/content/rules/UQWiMAX.xml +++ b/src/chrome/content/rules/UQWiMAX.xml @@ -7,7 +7,7 @@ Fetch error: http://www.uqwimax.jp/ => https://www.uqwimax.jp/: Too many redirec Disabled by https-everywhere-checker because: Fetch error: http://uqwimax.jp/ => https://www.uqwimax.jp/: (28, 'Connection timed out after 10001 milliseconds') --> - + diff --git a/src/chrome/content/rules/URX.com.xml b/src/chrome/content/rules/URX.com.xml index 077c224a4d4d..c58f72f87230 100644 --- a/src/chrome/content/rules/URX.com.xml +++ b/src/chrome/content/rules/URX.com.xml @@ -12,7 +12,7 @@ Fetch error: http://www.urx.com/ => https://www.urx.com/: (6, 'Could not resolve * Squarespace --> - + diff --git a/src/chrome/content/rules/US-Department-of-Housing-and-Urban-Development.xml b/src/chrome/content/rules/US-Department-of-Housing-and-Urban-Development.xml index 99ec1a32f9b7..bea55110a0d6 100644 --- a/src/chrome/content/rules/US-Department-of-Housing-and-Urban-Development.xml +++ b/src/chrome/content/rules/US-Department-of-Housing-and-Urban-Development.xml @@ -58,7 +58,7 @@ - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/US-Ignite.org.xml b/src/chrome/content/rules/US-Ignite.org.xml index 23e6242b32dc..88e7a58f0613 100644 --- a/src/chrome/content/rules/US-Ignite.org.xml +++ b/src/chrome/content/rules/US-Ignite.org.xml @@ -16,7 +16,7 @@ --> - + - + diff --git a/src/chrome/content/rules/US-Internet-Crime-Complaint-Ctr.xml b/src/chrome/content/rules/US-Internet-Crime-Complaint-Ctr.xml deleted file mode 100644 index 98cf1b67a9db..000000000000 --- a/src/chrome/content/rules/US-Internet-Crime-Complaint-Ctr.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/US-News.com.xml b/src/chrome/content/rules/US-News.com.xml new file mode 100644 index 000000000000..ee4c303aa6db --- /dev/null +++ b/src/chrome/content/rules/US-News.com.xml @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/US-Securities-and-Exchange-Commission.xml b/src/chrome/content/rules/US-Securities-and-Exchange-Commission.xml deleted file mode 100644 index 435179e27a46..000000000000 --- a/src/chrome/content/rules/US-Securities-and-Exchange-Commission.xml +++ /dev/null @@ -1,62 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/US-Selective-Service-System.xml b/src/chrome/content/rules/US-Selective-Service-System.xml index f52d1df35ac9..6d50f37d9a21 100644 --- a/src/chrome/content/rules/US-Selective-Service-System.xml +++ b/src/chrome/content/rules/US-Selective-Service-System.xml @@ -2,8 +2,7 @@ - + diff --git a/src/chrome/content/rules/US-Social-Forum.xml b/src/chrome/content/rules/US-Social-Forum.xml index 403bbe2ffb77..43858684c7e0 100644 --- a/src/chrome/content/rules/US-Social-Forum.xml +++ b/src/chrome/content/rules/US-Social-Forum.xml @@ -8,11 +8,10 @@ Fetch error: http://community.ussf2010.org/ => https://community.ussf2010.org/: - (www.) (cert: community.ussf2010.org; 404) - ict (cert: june.mayfirst.org) --> - + - + diff --git a/src/chrome/content/rules/US-military.xml b/src/chrome/content/rules/US-military.xml index 0b33d2992127..f21caf86cd1f 100644 --- a/src/chrome/content/rules/US-military.xml +++ b/src/chrome/content/rules/US-military.xml @@ -22,13 +22,12 @@ - - - - - + + + + @@ -51,11 +50,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/USA_Today.com-problematic.xml b/src/chrome/content/rules/USA_Today.com-problematic.xml deleted file mode 100644 index 8a147b16def9..000000000000 --- a/src/chrome/content/rules/USA_Today.com-problematic.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/USA_Today.xml b/src/chrome/content/rules/USA_Today.xml index fc1e8cb978af..464341595ca7 100644 --- a/src/chrome/content/rules/USA_Today.xml +++ b/src/chrome/content/rules/USA_Today.xml @@ -1,114 +1,38 @@ - - - + + + + + + + + - - - - - + + + diff --git a/src/chrome/content/rules/USAlliance.xml b/src/chrome/content/rules/USAlliance.xml index 1e6199c25215..7e465d7fccc2 100644 --- a/src/chrome/content/rules/USAlliance.xml +++ b/src/chrome/content/rules/USAlliance.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/USAspending.gov.xml b/src/chrome/content/rules/USAspending.gov.xml index e36ebe2b94f0..e2f3438cbffa 100644 --- a/src/chrome/content/rules/USAspending.gov.xml +++ b/src/chrome/content/rules/USAspending.gov.xml @@ -18,7 +18,7 @@ Fetch error: http://openbeta-comm.usaspending.gov/ => https://openbeta-comm.usas - openbeta-comm.usaspending.gov --> - + @@ -33,7 +33,7 @@ Fetch error: http://openbeta-comm.usaspending.gov/ => https://openbeta-comm.usas --> - + - + + + + + + + + + - + + - + - + + + + + + + + + diff --git a/src/chrome/content/rules/USF_CA.edu.xml b/src/chrome/content/rules/USF_CA.edu.xml index 379d0f5217ea..42b4adfb92d6 100644 --- a/src/chrome/content/rules/USF_CA.edu.xml +++ b/src/chrome/content/rules/USF_CA.edu.xml @@ -31,7 +31,9 @@ Fetch error: http://usfca.edu/ => https://usfca.edu/: (28, 'Connection timed out - + + + diff --git a/src/chrome/content/rules/USFreeads.xml b/src/chrome/content/rules/USFreeads.xml index a89ea3ffc565..f6beacdd1549 100644 --- a/src/chrome/content/rules/USFreeads.xml +++ b/src/chrome/content/rules/USFreeads.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/USNI.org-problematic.xml b/src/chrome/content/rules/USNI.org-problematic.xml index 539ab3adee31..88c355c7c552 100644 --- a/src/chrome/content/rules/USNI.org-problematic.xml +++ b/src/chrome/content/rules/USNI.org-problematic.xml @@ -8,7 +8,6 @@ - + diff --git a/src/chrome/content/rules/USNWC.edu.xml b/src/chrome/content/rules/USNWC.edu.xml index 67fc19c95764..6f22522d6229 100644 --- a/src/chrome/content/rules/USNWC.edu.xml +++ b/src/chrome/content/rules/USNWC.edu.xml @@ -23,7 +23,7 @@ - + https://www.usps.com/: Cycle detected - URL alr - + + + + + + + + + + + + + - + - + diff --git a/src/chrome/content/rules/USRowing.xml b/src/chrome/content/rules/USRowing.xml index b14ea8e4e90f..751a8979de0a 100644 --- a/src/chrome/content/rules/USRowing.xml +++ b/src/chrome/content/rules/USRowing.xml @@ -3,7 +3,7 @@ - Some pages redirect to http --> - + @@ -12,4 +12,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/UST.hk.xml b/src/chrome/content/rules/UST.hk.xml new file mode 100644 index 000000000000..b8d4e2b8d827 --- /dev/null +++ b/src/chrome/content/rules/UST.hk.xml @@ -0,0 +1,194 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/USTC.edu.cn.xml b/src/chrome/content/rules/USTC.edu.cn.xml index a52dc3ac7a12..ea4cc4e6e3f6 100644 --- a/src/chrome/content/rules/USTC.edu.cn.xml +++ b/src/chrome/content/rules/USTC.edu.cn.xml @@ -1,32 +1,115 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - + diff --git a/src/chrome/content/rules/USUHS.edu.xml b/src/chrome/content/rules/USUHS.edu.xml index 5b9fe35bb461..2e8ee8899007 100644 --- a/src/chrome/content/rules/USUHS.edu.xml +++ b/src/chrome/content/rules/USUHS.edu.xml @@ -41,8 +41,8 @@ --> - - + + diff --git a/src/chrome/content/rules/US_Citizenship_and_Immigration_Services.xml b/src/chrome/content/rules/US_Citizenship_and_Immigration_Services.xml deleted file mode 100644 index 8b3a9bd2b69a..000000000000 --- a/src/chrome/content/rules/US_Citizenship_and_Immigration_Services.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/US_Currency.gov.xml b/src/chrome/content/rules/US_Currency.gov.xml deleted file mode 100644 index 0a218c24a467..000000000000 --- a/src/chrome/content/rules/US_Currency.gov.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/US_Cyber_Challenge.org.xml b/src/chrome/content/rules/US_Cyber_Challenge.org.xml index 3a36c608efab..65fbfdaa0cc1 100644 --- a/src/chrome/content/rules/US_Cyber_Challenge.org.xml +++ b/src/chrome/content/rules/US_Cyber_Challenge.org.xml @@ -7,9 +7,9 @@ - - diff --git a/src/chrome/content/rules/US_Fish_and_Wildlife_Service.xml b/src/chrome/content/rules/US_Fish_and_Wildlife_Service.xml deleted file mode 100644 index 03d97bb43e1a..000000000000 --- a/src/chrome/content/rules/US_Fish_and_Wildlife_Service.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/US_Geological_Survey.xml b/src/chrome/content/rules/US_Geological_Survey.xml index dc8da00e9527..faebe01fbf8a 100644 --- a/src/chrome/content/rules/US_Geological_Survey.xml +++ b/src/chrome/content/rules/US_Geological_Survey.xml @@ -35,4 +35,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/US_Mission.gov.xml b/src/chrome/content/rules/US_Mission.gov.xml index dba56ac31d8b..05b0f8cc52ec 100644 --- a/src/chrome/content/rules/US_Mission.gov.xml +++ b/src/chrome/content/rules/US_Mission.gov.xml @@ -34,7 +34,7 @@ - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/US_Patent_and_Trademark_Office.xml b/src/chrome/content/rules/US_Patent_and_Trademark_Office.xml index a5fbdd0c5d0e..0e2665474fde 100644 --- a/src/chrome/content/rules/US_Patent_and_Trademark_Office.xml +++ b/src/chrome/content/rules/US_Patent_and_Trademark_Office.xml @@ -44,7 +44,7 @@ - + - + - + https://uk.state.gov/: (35, 'Unknown SSL pr ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -316,7 +316,6 @@ Fetch error: http://uk.state.gov/ => https://uk.state.gov/: (35, 'Unknown SSL pr - @@ -345,7 +344,7 @@ Fetch error: http://uk.state.gov/ => https://uk.state.gov/: (35, 'Unknown SSL pr - + - - - - - - - - diff --git a/src/chrome/content/rules/UT.ee.xml b/src/chrome/content/rules/UT.ee.xml index 7edb400b24ca..ca1753c60182 100644 --- a/src/chrome/content/rules/UT.ee.xml +++ b/src/chrome/content/rules/UT.ee.xml @@ -96,7 +96,7 @@ Fetch error: http://cs.ut.ee/ => https://cs.ut.ee/: (51, "SSL: no alternative ce * Secured by us --> - + diff --git a/src/chrome/content/rules/UTSanDiego.com.xml b/src/chrome/content/rules/UTSanDiego.com.xml index 5ed073332952..622790060a3f 100644 --- a/src/chrome/content/rules/UTSanDiego.com.xml +++ b/src/chrome/content/rules/UTSanDiego.com.xml @@ -13,7 +13,9 @@ Fetch error: http://iservice.uniontrib.com/ => https://iservice.uniontrib.com/: - + + + diff --git a/src/chrome/content/rules/UT_Dallas.edu-problematic.xml b/src/chrome/content/rules/UT_Dallas.edu-problematic.xml index 71e0193ac23b..a345c14d21b8 100644 --- a/src/chrome/content/rules/UT_Dallas.edu-problematic.xml +++ b/src/chrome/content/rules/UT_Dallas.edu-problematic.xml @@ -14,7 +14,6 @@ - + diff --git a/src/chrome/content/rules/UU.nl.xml b/src/chrome/content/rules/UU.nl.xml index f4152c25ebbd..1600193db87c 100644 --- a/src/chrome/content/rules/UU.nl.xml +++ b/src/chrome/content/rules/UU.nl.xml @@ -94,16 +94,32 @@ --> - + + + + + + + + + + + + + + + + + + - + diff --git a/src/chrome/content/rules/UU.se.xml b/src/chrome/content/rules/UU.se.xml index 494a187e51ef..d8c1b3ccaa74 100644 --- a/src/chrome/content/rules/UU.se.xml +++ b/src/chrome/content/rules/UU.se.xml @@ -65,7 +65,7 @@ Fetch error: http://www-hotel.uu.se/ => https://www-hotel.uu.se/: (6, 'Could not - www.it --> - + diff --git a/src/chrome/content/rules/UVM.edu.xml b/src/chrome/content/rules/UVM.edu.xml index c3e59570bdaa..bac8f6e23eb9 100644 --- a/src/chrome/content/rules/UVM.edu.xml +++ b/src/chrome/content/rules/UVM.edu.xml @@ -29,7 +29,7 @@ Fetch error: http://login.ezproxy.uvm.edu/ => https://login.ezproxy.uvm.edu/: (6 - Images on library, scholarworks from $self --> - + @@ -51,7 +51,7 @@ Fetch error: http://login.ezproxy.uvm.edu/ => https://login.ezproxy.uvm.edu/: (6 - + - + + + diff --git a/src/chrome/content/rules/UW.edu.xml b/src/chrome/content/rules/UW.edu.xml index 1f61fb498ce7..fddfebee557d 100644 --- a/src/chrome/content/rules/UW.edu.xml +++ b/src/chrome/content/rules/UW.edu.xml @@ -24,10 +24,11 @@ - expd ᵐ - www.healthinformationmanagement ᵐ - honors ᵖ + - www.ischool ᵐ - guides.lib ᵐ - www.pce ᵐ - tacoma ᵐ - + ᵐ Mismatched ᵖ Shows default page @@ -35,7 +36,7 @@ Mixed content: - Images, on: - + - (www.)?grad from depts.washington.edu * - www.pce from www.washington.edu * @@ -61,6 +62,8 @@ + + @@ -80,8 +83,8 @@ - - + + - + @@ -47,7 +47,7 @@ Fetch error: http://library.uwb.edu/ => https://library.uwb.edu/: (51, "SSL: no - + + + + + + + diff --git a/src/chrome/content/rules/U_Mag.ca.xml b/src/chrome/content/rules/U_Mag.ca.xml index c663985cad2b..fe01b18b7b95 100644 --- a/src/chrome/content/rules/U_Mag.ca.xml +++ b/src/chrome/content/rules/U_Mag.ca.xml @@ -12,7 +12,7 @@ Fetch error: http://www.umag.ca/ => https://www.ucalgarymag.ca/: (60, 'SSL certi (www.)?umag.ca: 404 --> - + diff --git a/src/chrome/content/rules/Ua-hosting.com.ua.xml b/src/chrome/content/rules/Ua-hosting.com.ua.xml index 87ea73038b32..f9dc540d1587 100644 --- a/src/chrome/content/rules/Ua-hosting.com.ua.xml +++ b/src/chrome/content/rules/Ua-hosting.com.ua.xml @@ -10,7 +10,7 @@ Fetch error: http://www.ua-hosting.com.ua/ => https://ua-hosting.com.ua/: (60, ' www: cert only matches ^ua-hosting.com.ua --> - + diff --git a/src/chrome/content/rules/Ual.es.xml b/src/chrome/content/rules/Ual.es.xml index 4b4702a531a5..1cc6d1908afe 100644 --- a/src/chrome/content/rules/Ual.es.xml +++ b/src/chrome/content/rules/Ual.es.xml @@ -81,7 +81,7 @@ Fetch error: http://www2.ual.es/ => https://www2.ual.es/: (60, 'SSL certificate * www.ieei.ual.es * www.indirural.ual.es --> - + diff --git a/src/chrome/content/rules/UbCDN.co.xml b/src/chrome/content/rules/UbCDN.co.xml deleted file mode 100644 index 815f6f7a6321..000000000000 --- a/src/chrome/content/rules/UbCDN.co.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/UbNt.com.xml b/src/chrome/content/rules/UbNt.com.xml index a62496ffbeaa..200cf88775b0 100644 --- a/src/chrome/content/rules/UbNt.com.xml +++ b/src/chrome/content/rules/UbNt.com.xml @@ -2,7 +2,6 @@ Other Ubiquiti Networks rulesets: - Go_Ubiquiti.com.xml - - UbCDN.co.xml Nonfunctional hosts in *ubnt.com: diff --git a/src/chrome/content/rules/UberMedia.com.xml b/src/chrome/content/rules/UberMedia.com.xml index 734540c853bf..db1657c4e8d7 100644 --- a/src/chrome/content/rules/UberMedia.com.xml +++ b/src/chrome/content/rules/UberMedia.com.xml @@ -5,7 +5,7 @@ Fetch error: http://ubermedia.com/ => https://ubermedia.com/: (7, 'Failed to con Fetch error: http://www.ubermedia.com/ => https://www.ubermedia.com/: (7, 'Failed to connect to www.ubermedia.com port 443: Connection refused') --> - + diff --git a/src/chrome/content/rules/UberTags-mismatches.xml b/src/chrome/content/rules/UberTags-mismatches.xml deleted file mode 100644 index c5719a7ac3d0..000000000000 --- a/src/chrome/content/rules/UberTags-mismatches.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/UberTags.xml b/src/chrome/content/rules/UberTags.xml deleted file mode 100644 index 24858174672f..000000000000 --- a/src/chrome/content/rules/UberTags.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Uber_Technologies.xml b/src/chrome/content/rules/Uber_Technologies.xml index 5d52392f4ba2..2b5e5c6640e5 100644 --- a/src/chrome/content/rules/Uber_Technologies.xml +++ b/src/chrome/content/rules/Uber_Technologies.xml @@ -1,5 +1,5 @@ - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Ubisoft_Group.com.xml b/src/chrome/content/rules/Ubisoft_Group.com.xml deleted file mode 100644 index c0df0aa450e7..000000000000 --- a/src/chrome/content/rules/Ubisoft_Group.com.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Ubrr.ru.xml b/src/chrome/content/rules/Ubrr.ru.xml index 15f30bbe32a2..93e5c4609363 100644 --- a/src/chrome/content/rules/Ubrr.ru.xml +++ b/src/chrome/content/rules/Ubrr.ru.xml @@ -62,7 +62,7 @@ tbinfo.ubrr.ru different content ³ timed out ⁶ redirect --> - + diff --git a/src/chrome/content/rules/Ubuntu-CN.xml b/src/chrome/content/rules/Ubuntu-CN.xml deleted file mode 100644 index 5e6111c349f7..000000000000 --- a/src/chrome/content/rules/Ubuntu-CN.xml +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Ubuntu-FR.org-falsemixed.xml b/src/chrome/content/rules/Ubuntu-FR.org-falsemixed.xml deleted file mode 100644 index e92172bbd272..000000000000 --- a/src/chrome/content/rules/Ubuntu-FR.org-falsemixed.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Ubuntu-FR.org.xml b/src/chrome/content/rules/Ubuntu-FR.org.xml index c3a19e28bc49..353b3f1e1417 100644 --- a/src/chrome/content/rules/Ubuntu-FR.org.xml +++ b/src/chrome/content/rules/Ubuntu-FR.org.xml @@ -1,44 +1,13 @@ - - - + - - + + - - + diff --git a/src/chrome/content/rules/Ubuntu.com.cn.xml b/src/chrome/content/rules/Ubuntu.com.cn.xml new file mode 100644 index 000000000000..43dc6c22cdf2 --- /dev/null +++ b/src/chrome/content/rules/Ubuntu.com.cn.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Ubuntu.org.cn.xml b/src/chrome/content/rules/Ubuntu.org.cn.xml new file mode 100644 index 000000000000..b60528f4f7b6 --- /dev/null +++ b/src/chrome/content/rules/Ubuntu.org.cn.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Ubuntu.xml b/src/chrome/content/rules/Ubuntu.xml index 2d151e8bc727..5d914972270a 100644 --- a/src/chrome/content/rules/Ubuntu.xml +++ b/src/chrome/content/rules/Ubuntu.xml @@ -1,56 +1,37 @@ @@ -60,6 +41,8 @@ + + @@ -67,23 +50,37 @@ + + + + + + + + + + + - - + + + + + + - diff --git a/src/chrome/content/rules/UbuntuUsers.de.xml b/src/chrome/content/rules/UbuntuUsers.de.xml index d6f0fd6c8995..f7fd3f26718c 100644 --- a/src/chrome/content/rules/UbuntuUsers.de.xml +++ b/src/chrome/content/rules/UbuntuUsers.de.xml @@ -1,7 +1,4 @@ - - + @@ -45,7 +42,6 @@ Fetch error: http://trac.ubuntuusers.de/ => https://trac.ubuntuusers.de/: (35, ' - @@ -55,7 +51,7 @@ Fetch error: http://trac.ubuntuusers.de/ => https://trac.ubuntuusers.de/: (35, ' - + - diff --git a/src/chrome/content/rules/Ubuntu_Linux.jp.xml b/src/chrome/content/rules/Ubuntu_Linux.jp.xml index 668b3ac65cc5..bb2c41e8f2ed 100644 --- a/src/chrome/content/rules/Ubuntu_Linux.jp.xml +++ b/src/chrome/content/rules/Ubuntu_Linux.jp.xml @@ -1,18 +1,12 @@ - - - - + + - + - + + diff --git a/src/chrome/content/rules/Uclibc-ng.org.xml b/src/chrome/content/rules/Uclibc-ng.org.xml new file mode 100644 index 000000000000..c9d794fbb514 --- /dev/null +++ b/src/chrome/content/rules/Uclibc-ng.org.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Uclibc.org.xml b/src/chrome/content/rules/Uclibc.org.xml new file mode 100644 index 000000000000..ac6814569609 --- /dev/null +++ b/src/chrome/content/rules/Uclibc.org.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Udacity.com.xml b/src/chrome/content/rules/Udacity.com.xml index 3cfe2967d99a..4efb0c5515fe 100644 --- a/src/chrome/content/rules/Udacity.com.xml +++ b/src/chrome/content/rules/Udacity.com.xml @@ -10,7 +10,7 @@ Fetch error: http://email.udacity.com/ => https://email.udacity.com/: (6, 'Could - labs (refused) --> - + diff --git a/src/chrome/content/rules/Udistrital.xml b/src/chrome/content/rules/Udistrital.xml index a9ce4fbb22b2..04cbf6100275 100644 --- a/src/chrome/content/rules/Udistrital.xml +++ b/src/chrome/content/rules/Udistrital.xml @@ -44,7 +44,7 @@ Fetch error: http://oas.udistrital.edu.co/ => https://oas.udistrital.edu.co/: (2 - herbario.udistrital.edu.co - idexud.udistrital.edu.co --> - + diff --git a/src/chrome/content/rules/Uefidk.com.xml b/src/chrome/content/rules/Uefidk.com.xml deleted file mode 100644 index 9fc0e0d48d3b..000000000000 --- a/src/chrome/content/rules/Uefidk.com.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Ugandan-government.xml b/src/chrome/content/rules/Ugandan-government.xml index 358c98600804..a42ae69e99b3 100644 --- a/src/chrome/content/rules/Ugandan-government.xml +++ b/src/chrome/content/rules/Ugandan-government.xml @@ -3,7 +3,7 @@ - + diff --git a/src/chrome/content/rules/Uhhospitals.org.xml b/src/chrome/content/rules/Uhhospitals.org.xml index 246bcda5e8a4..95d537d3c0bc 100644 --- a/src/chrome/content/rules/Uhhospitals.org.xml +++ b/src/chrome/content/rules/Uhhospitals.org.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Uhrzeit.org.xml b/src/chrome/content/rules/Uhrzeit.org.xml index 818c238a1f61..39342c1bc5ab 100644 --- a/src/chrome/content/rules/Uhrzeit.org.xml +++ b/src/chrome/content/rules/Uhrzeit.org.xml @@ -8,16 +8,17 @@ Disabled by https-everywhere-checker because: Fetch error: http://atomic-clock.org.uk/ => https://www.atomic-clock.org.uk/: (60, 'SSL certificate problem: certificate has expired') Fetch error: http://la-hora.org/ => https://www.la-hora.org/: (60, 'SSL certificate problem: certificate has expired') --> - + - + - + - + + @@ -27,7 +28,7 @@ Fetch error: http://la-hora.org/ => https://www.la-hora.org/: (60, 'SSL certific --> - + diff --git a/src/chrome/content/rules/Ukash.com.xml b/src/chrome/content/rules/Ukash.com.xml index 230295a66840..e0c045cf9104 100644 --- a/src/chrome/content/rules/Ukash.com.xml +++ b/src/chrome/content/rules/Ukash.com.xml @@ -24,7 +24,7 @@ Fetch error: http://www.ukash.com/ => https://www.ukash.com/: (7, 'Failed to con - www.ukash.com --> - + diff --git a/src/chrome/content/rules/UkashCardSATIS.xml b/src/chrome/content/rules/UkashCardSATIS.xml deleted file mode 100644 index ce3899b479a2..000000000000 --- a/src/chrome/content/rules/UkashCardSATIS.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/UkiahDailyJournal.com.xml b/src/chrome/content/rules/UkiahDailyJournal.com.xml new file mode 100644 index 000000000000..d6ed122fcef9 --- /dev/null +++ b/src/chrome/content/rules/UkiahDailyJournal.com.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Ukr.net.xml b/src/chrome/content/rules/Ukr.net.xml index a2ddf6c7d7be..0a108c00e420 100644 --- a/src/chrome/content/rules/Ukr.net.xml +++ b/src/chrome/content/rules/Ukr.net.xml @@ -5,10 +5,11 @@ Fetch error: http://ukr.net/ => https://ukr.net/: Cycle detected - URL already e - + + + - + diff --git a/src/chrome/content/rules/Ukrnames.com.xml b/src/chrome/content/rules/Ukrnames.com.xml index 630f0e685e31..68e51e74a153 100644 --- a/src/chrome/content/rules/Ukrnames.com.xml +++ b/src/chrome/content/rules/Ukrnames.com.xml @@ -8,7 +8,7 @@ Fetch error: http://s.ukrnames.com/ => https://s.ukrnames.com/: (28, 'Connection - support.ukrnames.com --> - + diff --git a/src/chrome/content/rules/Uksrv.co.uk.xml b/src/chrome/content/rules/Uksrv.co.uk.xml index 22d0610c9fea..7f8b3394f493 100644 --- a/src/chrome/content/rules/Uksrv.co.uk.xml +++ b/src/chrome/content/rules/Uksrv.co.uk.xml @@ -1,18 +1,15 @@ - + + + - + - - - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Ulpgc.es.xml b/src/chrome/content/rules/Ulpgc.es.xml index b7142f78f52b..0259058140cc 100644 --- a/src/chrome/content/rules/Ulpgc.es.xml +++ b/src/chrome/content/rules/Ulpgc.es.xml @@ -417,7 +417,7 @@ Fetch error: http://www4.ulpgc.es/ => https://www4.ulpgc.es/: (6, 'Could not res * www.www.ccbb.ulpgc.es * www.www.dim.ulpgc.es --> - + diff --git a/src/chrome/content/rules/Ulteo.com.xml b/src/chrome/content/rules/Ulteo.com.xml index bdc1aa9735be..a7f13c2ff6de 100644 --- a/src/chrome/content/rules/Ulteo.com.xml +++ b/src/chrome/content/rules/Ulteo.com.xml @@ -15,7 +15,7 @@ Fetch error: http://www.ulteo.com/ => https://www.ulteo.com/: (51, "SSL: no alte spoon.ulteo.com --> - + diff --git a/src/chrome/content/rules/Ultimate_Boot_CD.com.xml b/src/chrome/content/rules/Ultimate_Boot_CD.com.xml index f538577efd2a..418e926292fb 100644 --- a/src/chrome/content/rules/Ultimate_Boot_CD.com.xml +++ b/src/chrome/content/rules/Ultimate_Boot_CD.com.xml @@ -11,7 +11,7 @@ Fetch error: http://www.ultimatebootcd.com/ => https://www.ultimatebootcd.com/: * Shows www --> - + diff --git a/src/chrome/content/rules/Ultimate_Poker.xml b/src/chrome/content/rules/Ultimate_Poker.xml deleted file mode 100644 index 29728bab9aa4..000000000000 --- a/src/chrome/content/rules/Ultimate_Poker.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/UltraTools.com.xml b/src/chrome/content/rules/UltraTools.com.xml index da199102d31e..2c1e373a7f5f 100644 --- a/src/chrome/content/rules/UltraTools.com.xml +++ b/src/chrome/content/rules/UltraTools.com.xml @@ -11,7 +11,7 @@ Fetch error: http://ultratools.com/ => https://ultratools.com/: (51, "SSL: no al - www.ultratools.com --> - + diff --git a/src/chrome/content/rules/Ultrabug.fr.xml b/src/chrome/content/rules/Ultrabug.fr.xml new file mode 100644 index 000000000000..923be7121b23 --- /dev/null +++ b/src/chrome/content/rules/Ultrabug.fr.xml @@ -0,0 +1,11 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Ultrabug.xml b/src/chrome/content/rules/Ultrabug.xml deleted file mode 100644 index 488baa3a8026..000000000000 --- a/src/chrome/content/rules/Ultrabug.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Ultrasawt.com.xml b/src/chrome/content/rules/Ultrasawt.com.xml new file mode 100644 index 000000000000..2f3861be103a --- /dev/null +++ b/src/chrome/content/rules/Ultrasawt.com.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Ultrasurf.us.xml b/src/chrome/content/rules/Ultrasurf.us.xml index e772e61239d0..303854eeeefc 100644 --- a/src/chrome/content/rules/Ultrasurf.us.xml +++ b/src/chrome/content/rules/Ultrasurf.us.xml @@ -6,4 +6,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Ulyces.co.xml b/src/chrome/content/rules/Ulyces.co.xml new file mode 100644 index 000000000000..9e938b1c325f --- /dev/null +++ b/src/chrome/content/rules/Ulyces.co.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Uma.es.xml b/src/chrome/content/rules/Uma.es.xml deleted file mode 100644 index ea83153afb5c..000000000000 --- a/src/chrome/content/rules/Uma.es.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Umano.me.xml b/src/chrome/content/rules/Umano.me.xml index dd3f6020157f..7232173e01ee 100644 --- a/src/chrome/content/rules/Umano.me.xml +++ b/src/chrome/content/rules/Umano.me.xml @@ -10,7 +10,7 @@ Fetch error: http://www.umano.me/ => https://www.umano.me/: (28, 'Connection tim - www.umano.me --> - + diff --git a/src/chrome/content/rules/Umea_University.xml b/src/chrome/content/rules/Umea_University.xml index 553118f2c75a..2e4d98cde996 100644 --- a/src/chrome/content/rules/Umea_University.xml +++ b/src/chrome/content/rules/Umea_University.xml @@ -1,51 +1,47 @@ - - - - - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Umsmash.com.xml b/src/chrome/content/rules/Umsmash.com.xml new file mode 100644 index 000000000000..a0b63dce0336 --- /dev/null +++ b/src/chrome/content/rules/Umsmash.com.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/src/chrome/content/rules/Un4seen.com.xml b/src/chrome/content/rules/Un4seen.com.xml new file mode 100644 index 000000000000..2829169edb8f --- /dev/null +++ b/src/chrome/content/rules/Un4seen.com.xml @@ -0,0 +1,18 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/UnRealWorld.fi.xml b/src/chrome/content/rules/UnRealWorld.fi.xml new file mode 100644 index 000000000000..67f1a8357f69 --- /dev/null +++ b/src/chrome/content/rules/UnRealWorld.fi.xml @@ -0,0 +1,20 @@ + + + + + + + diff --git a/src/chrome/content/rules/Unanimis-problematic.xml b/src/chrome/content/rules/Unanimis-problematic.xml deleted file mode 100644 index 00950a1c4ff8..000000000000 --- a/src/chrome/content/rules/Unanimis-problematic.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Unanimis.xml b/src/chrome/content/rules/Unanimis.xml deleted file mode 100644 index 743e029f1fe2..000000000000 --- a/src/chrome/content/rules/Unanimis.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Unbit.it.xml b/src/chrome/content/rules/Unbit.it.xml index ecffe56e34d4..bfe3efca8763 100644 --- a/src/chrome/content/rules/Unbit.it.xml +++ b/src/chrome/content/rules/Unbit.it.xml @@ -5,7 +5,7 @@ Fetch error: http://wiki.unbit.it/ => https://wiki.unbit.it/: (60, 'SSL certific Fetch error: http://www.wiki.unbit.it/ => https://wiki.unbit.it/: (60, 'SSL certificate problem: certificate has expired') --> - + @@ -31,7 +31,7 @@ Fetch error: http://www.wiki.unbit.it/ => https://wiki.unbit.it/: (60, 'SSL cert - + diff --git a/src/chrome/content/rules/Unblocked.xml b/src/chrome/content/rules/Unblocked.xml index 48c702674dc6..a1334e686ee9 100644 --- a/src/chrome/content/rules/Unblocked.xml +++ b/src/chrome/content/rules/Unblocked.xml @@ -2,7 +2,7 @@ Other domains: unblocked.pub unblckd.biz - + --> @@ -16,7 +16,6 @@ - @@ -34,11 +33,8 @@ - - - @@ -48,35 +44,10 @@ - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Unblu.com.xml b/src/chrome/content/rules/Unblu.com.xml index 176ec3e01d6b..d0bd3d8cd077 100644 --- a/src/chrome/content/rules/Unblu.com.xml +++ b/src/chrome/content/rules/Unblu.com.xml @@ -16,4 +16,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Unbounce.xml b/src/chrome/content/rules/Unbounce.xml index 1d11ef7165a5..005576e563eb 100644 --- a/src/chrome/content/rules/Unbounce.xml +++ b/src/chrome/content/rules/Unbounce.xml @@ -58,7 +58,7 @@ Fetch error: http://ubounce.wpengine.netdna-cdn.com/ => https://ubounce.wpengine ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -101,7 +101,7 @@ Fetch error: http://ubounce.wpengine.netdna-cdn.com/ => https://ubounce.wpengine - + - + + + + + + + + + diff --git a/src/chrome/content/rules/Uned.es.xml b/src/chrome/content/rules/Uned.es.xml index 3595fce3f3d5..843aba3c043a 100644 --- a/src/chrome/content/rules/Uned.es.xml +++ b/src/chrome/content/rules/Uned.es.xml @@ -3,9 +3,9 @@ See . Not supporting HTTPS or using an invalid certificate: - + * uned.es - + * 2013.cursosvirtuales.uned.es * acacia.intecca.uned.es * adenu.ia.uned.es diff --git a/src/chrome/content/rules/Uneddit.xml b/src/chrome/content/rules/Uneddit.xml index 955af0d38763..f72a77fd9b53 100644 --- a/src/chrome/content/rules/Uneddit.xml +++ b/src/chrome/content/rules/Uneddit.xml @@ -4,10 +4,10 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.uneddit.com/ => https://www.uneddit.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.uneddit.com'") --> - + - + diff --git a/src/chrome/content/rules/Ungleich.ch.xml b/src/chrome/content/rules/Ungleich.ch.xml new file mode 100644 index 000000000000..a684a740f319 --- /dev/null +++ b/src/chrome/content/rules/Ungleich.ch.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Unhosted.xml b/src/chrome/content/rules/Unhosted.xml index c49d4982bd66..c0fd0e222399 100644 --- a/src/chrome/content/rules/Unhosted.xml +++ b/src/chrome/content/rules/Unhosted.xml @@ -8,7 +8,7 @@ Fetch error: http://apps.unhosted.org/ => https://apps.unhosted.org/: (6, 'Could - www (self-signed) --> - + @@ -19,7 +19,7 @@ Fetch error: http://apps.unhosted.org/ => https://apps.unhosted.org/: (6, 'Could - diff --git a/src/chrome/content/rules/Uni-Hamburg.de-falsemixed.xml b/src/chrome/content/rules/Uni-Hamburg.de-falsemixed.xml index 9539d4662b1c..edb2c511c73d 100644 --- a/src/chrome/content/rules/Uni-Hamburg.de-falsemixed.xml +++ b/src/chrome/content/rules/Uni-Hamburg.de-falsemixed.xml @@ -9,7 +9,7 @@ - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -83,14 +110,11 @@ - - + diff --git a/src/chrome/content/rules/Uni-Stuttgart.de.xml b/src/chrome/content/rules/Uni-Stuttgart.de.xml index bcd8d02f92d5..9a322c0d4678 100644 --- a/src/chrome/content/rules/Uni-Stuttgart.de.xml +++ b/src/chrome/content/rules/Uni-Stuttgart.de.xml @@ -19,6 +19,17 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Uni-Wuerzburg.de.xml b/src/chrome/content/rules/Uni-Wuerzburg.de.xml index 4285b5ce938b..66bbf9d1114f 100644 --- a/src/chrome/content/rules/Uni-Wuerzburg.de.xml +++ b/src/chrome/content/rules/Uni-Wuerzburg.de.xml @@ -23,7 +23,8 @@ --> - + + diff --git a/src/chrome/content/rules/Uni.Lu.xml b/src/chrome/content/rules/Uni.Lu.xml index 96c1d4a17743..d007595be4d2 100644 --- a/src/chrome/content/rules/Uni.Lu.xml +++ b/src/chrome/content/rules/Uni.Lu.xml @@ -1,46 +1,17 @@ - - - - - - + + + + + + + + + + diff --git a/src/chrome/content/rules/UniStra.fr-falsemixed.xml b/src/chrome/content/rules/UniStra.fr-falsemixed.xml index 2118ded957da..1136b2ce734b 100644 --- a/src/chrome/content/rules/UniStra.fr-falsemixed.xml +++ b/src/chrome/content/rules/UniStra.fr-falsemixed.xml @@ -12,7 +12,6 @@ - + diff --git a/src/chrome/content/rules/UniTech.net.xml b/src/chrome/content/rules/UniTech.net.xml deleted file mode 100644 index 043386930c69..000000000000 --- a/src/chrome/content/rules/UniTech.net.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Uni_Leoben.ac.at.xml b/src/chrome/content/rules/Uni_Leoben.ac.at.xml index b80e18e0a54f..e8dda76b3926 100644 --- a/src/chrome/content/rules/Uni_Leoben.ac.at.xml +++ b/src/chrome/content/rules/Uni_Leoben.ac.at.xml @@ -60,7 +60,7 @@ --> - + - + diff --git a/src/chrome/content/rules/Uniblue.xml b/src/chrome/content/rules/Uniblue.xml deleted file mode 100644 index b9d0bcfd8bba..000000000000 --- a/src/chrome/content/rules/Uniblue.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Unicorn-engine.org.xml b/src/chrome/content/rules/Unicorn-engine.org.xml new file mode 100644 index 000000000000..add3abf7ee0e --- /dev/null +++ b/src/chrome/content/rules/Unicorn-engine.org.xml @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Unified_Social.com.xml b/src/chrome/content/rules/Unified_Social.com.xml index 9edecf3bc862..f1049edde523 100644 --- a/src/chrome/content/rules/Unified_Social.com.xml +++ b/src/chrome/content/rules/Unified_Social.com.xml @@ -26,7 +26,7 @@ Fetch error: http://login.unifiedsocial.com/ => https://login.unifiedsocial.com/ - login.unifiedsocial.com --> - + diff --git a/src/chrome/content/rules/Unifiedtracking.com.xml b/src/chrome/content/rules/Unifiedtracking.com.xml index 75d5fe731cc6..f318a3f81a33 100644 --- a/src/chrome/content/rules/Unifiedtracking.com.xml +++ b/src/chrome/content/rules/Unifiedtracking.com.xml @@ -10,7 +10,7 @@ Fetch error: http://unifiedtracking.com/ => https://www.unifiedtracking.com/: (2 ^unifiedtracking.com: Mismatched --> - + diff --git a/src/chrome/content/rules/Unigine.xml b/src/chrome/content/rules/Unigine.xml index 7fdaadf4833c..270d38f2310b 100644 --- a/src/chrome/content/rules/Unigine.xml +++ b/src/chrome/content/rules/Unigine.xml @@ -1,13 +1,14 @@ - + + + - + - + diff --git a/src/chrome/content/rules/Unikernel.org.xml b/src/chrome/content/rules/Unikernel.org.xml deleted file mode 100644 index 1fc6e03f48b9..000000000000 --- a/src/chrome/content/rules/Unikernel.org.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Unilever.xml b/src/chrome/content/rules/Unilever.xml index cd24213f097c..fb483eb275e4 100644 --- a/src/chrome/content/rules/Unilever.xml +++ b/src/chrome/content/rules/Unilever.xml @@ -2,14 +2,14 @@ - + + - + diff --git a/src/chrome/content/rules/Uninett.xml b/src/chrome/content/rules/Uninett.xml index b9feb6de7528..85f94ca54f21 100644 --- a/src/chrome/content/rules/Uninett.xml +++ b/src/chrome/content/rules/Uninett.xml @@ -9,7 +9,6 @@ Fetch error: http://www.gn3campus.uninett.no/ => https://ow.feide.no/geantcampus - Discojuice.org.xml - ECampus.no.xml - - Eduroam.no.xml - Feide.xml - Foodl.org.xml @@ -54,7 +53,7 @@ Fetch error: http://www.gn3campus.uninett.no/ => https://ow.feide.no/geantcampus ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -94,7 +93,7 @@ Fetch error: http://www.gn3campus.uninett.no/ => https://ow.feide.no/geantcampus - + - + diff --git a/src/chrome/content/rules/Unique_Vintage.xml b/src/chrome/content/rules/Unique_Vintage.xml index 3aeeed8318b1..934afd92aa32 100644 --- a/src/chrome/content/rules/Unique_Vintage.xml +++ b/src/chrome/content/rules/Unique_Vintage.xml @@ -1,7 +1,7 @@ - + diff --git a/src/chrome/content/rules/Uniregistry.com.xml b/src/chrome/content/rules/Uniregistry.com.xml index caf50734f4f8..a8fbcbc778fa 100644 --- a/src/chrome/content/rules/Uniregistry.com.xml +++ b/src/chrome/content/rules/Uniregistry.com.xml @@ -27,7 +27,7 @@ --> - + - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Unisg.ch.xml b/src/chrome/content/rules/Unisg.ch.xml index 4dbdcfa461df..f6bb2273cebb 100644 --- a/src/chrome/content/rules/Unisg.ch.xml +++ b/src/chrome/content/rules/Unisg.ch.xml @@ -1,6 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + diff --git a/src/chrome/content/rules/Unister.xml b/src/chrome/content/rules/Unister.xml deleted file mode 100644 index 06e66d7069e4..000000000000 --- a/src/chrome/content/rules/Unister.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/Unisys.co.jp.xml b/src/chrome/content/rules/Unisys.co.jp.xml index 9c969d6afb7b..62c1067b59c5 100644 --- a/src/chrome/content/rules/Unisys.co.jp.xml +++ b/src/chrome/content/rules/Unisys.co.jp.xml @@ -30,7 +30,7 @@ - + - + + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/United-Internet.xml b/src/chrome/content/rules/United-Internet.xml index f8be85b4700d..604f3deb75aa 100644 --- a/src/chrome/content/rules/United-Internet.xml +++ b/src/chrome/content/rules/United-Internet.xml @@ -10,7 +10,7 @@ - Corpimages.de.xml - GMX.xml - initial-website.com.xml - - Mail.com.xml + - oneandone.net.xml - perfora.net - tifbs.net.xml - Top.de.xml @@ -18,7 +18,6 @@ - UI_CDN.net.xml - UImserv.net.xml - UI-Portal.xml - - Web.de.xml - Website-start.de.xml --> @@ -28,7 +27,7 @@ - + diff --git a/src/chrome/content/rules/United-Nations-mismatches.xml b/src/chrome/content/rules/United-Nations-mismatches.xml index 1537821c21ed..46a9d17c35a8 100644 --- a/src/chrome/content/rules/United-Nations-mismatches.xml +++ b/src/chrome/content/rules/United-Nations-mismatches.xml @@ -8,7 +8,7 @@ - + - - + + diff --git a/src/chrome/content/rules/United-San-Antonio-Fed-Credit-Union.xml b/src/chrome/content/rules/United-San-Antonio-Fed-Credit-Union.xml deleted file mode 100644 index 31ee060d8bed..000000000000 --- a/src/chrome/content/rules/United-San-Antonio-Fed-Credit-Union.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/United-States-Department-of-Agriculture.xml b/src/chrome/content/rules/United-States-Department-of-Agriculture.xml index 3b39a2e8ed84..4ec6ac7eb5cb 100644 --- a/src/chrome/content/rules/United-States-Department-of-Agriculture.xml +++ b/src/chrome/content/rules/United-States-Department-of-Agriculture.xml @@ -99,7 +99,7 @@ Fetch error: http://my.usda.gov/ => https://my.usda.gov/: (35, 'Unknown SSL prot * Secured by us --> - + @@ -161,7 +161,7 @@ Fetch error: http://my.usda.gov/ => https://my.usda.gov/: (35, 'Unknown SSL prot - + - - + + + + - + - + diff --git a/src/chrome/content/rules/United_Acquisition_Services.xml b/src/chrome/content/rules/United_Acquisition_Services.xml index ff60e61eb192..3e7616748c88 100644 --- a/src/chrome/content/rules/United_Acquisition_Services.xml +++ b/src/chrome/content/rules/United_Acquisition_Services.xml @@ -10,12 +10,11 @@ Fetch error: http://mail.uas.biz/ => https://mail.uas.biz/: (28, 'Connection tim - (www.) (shows mail; mismatched, CN: mail.uas.biz) --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/United_Computer_Wizards.xml b/src/chrome/content/rules/United_Computer_Wizards.xml index 7281857f8156..007387532cf8 100644 --- a/src/chrome/content/rules/United_Computer_Wizards.xml +++ b/src/chrome/content/rules/United_Computer_Wizards.xml @@ -1,17 +1,10 @@ - - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/United_Nations_Office_at_Vienna.xml b/src/chrome/content/rules/United_Nations_Office_at_Vienna.xml index 07cd5a63ca52..ceee64676c22 100644 --- a/src/chrome/content/rules/United_Nations_Office_at_Vienna.xml +++ b/src/chrome/content/rules/United_Nations_Office_at_Vienna.xml @@ -22,4 +22,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/United_Republic.xml b/src/chrome/content/rules/United_Republic.xml index 3392d1cb0755..bd6f862f2116 100644 --- a/src/chrome/content/rules/United_Republic.xml +++ b/src/chrome/content/rules/United_Republic.xml @@ -22,4 +22,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/United_Stationers.xml b/src/chrome/content/rules/United_Stationers.xml index 8d8a075a272e..38bdfc99fdc8 100644 --- a/src/chrome/content/rules/United_Stationers.xml +++ b/src/chrome/content/rules/United_Stationers.xml @@ -1,23 +1,24 @@ - + + + - + + + - - + diff --git a/src/chrome/content/rules/Unitn.it.xml b/src/chrome/content/rules/Unitn.it.xml new file mode 100644 index 000000000000..754116f5713b --- /dev/null +++ b/src/chrome/content/rules/Unitn.it.xml @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Univ-Montp3.fr.xml b/src/chrome/content/rules/Univ-Montp3.fr.xml index 08fe2d8b7f04..6e0359a451c2 100644 --- a/src/chrome/content/rules/Univ-Montp3.fr.xml +++ b/src/chrome/content/rules/Univ-Montp3.fr.xml @@ -19,9 +19,9 @@ Fetch error: http://gt5-jres2015.univ-montp3.fr/ => https://gt5-jres2015.univ-mo - css on gt5-jres2015 from fonts.googleapis.com * * Secured by us - + --> - + diff --git a/src/chrome/content/rules/Univention.de.xml b/src/chrome/content/rules/Univention.de.xml index 817d33ad94e6..8965b60f8e30 100644 --- a/src/chrome/content/rules/Univention.de.xml +++ b/src/chrome/content/rules/Univention.de.xml @@ -45,13 +45,13 @@ - + - + - + diff --git a/src/chrome/content/rules/UniversalSubtitles.xml b/src/chrome/content/rules/UniversalSubtitles.xml deleted file mode 100644 index 9daf5326a555..000000000000 --- a/src/chrome/content/rules/UniversalSubtitles.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Universe_2.us.xml b/src/chrome/content/rules/Universe_2.us.xml index 38aed5fff52c..297955b33fd8 100644 --- a/src/chrome/content/rules/Universe_2.us.xml +++ b/src/chrome/content/rules/Universe_2.us.xml @@ -1,8 +1,4 @@ - - + @@ -11,7 +7,7 @@ - + diff --git a/src/chrome/content/rules/Universite_Laval.xml b/src/chrome/content/rules/Universite_Laval.xml index acabc74eb57c..aa75feddd6c1 100644 --- a/src/chrome/content/rules/Universite_Laval.xml +++ b/src/chrome/content/rules/Universite_Laval.xml @@ -69,18 +69,18 @@ Fetch error: http://www.viraj.ulaval.ca/ => https://www.viraj.ulaval.ca/: (60, ' ² Expired --> - + - + - + - + - + @@ -106,29 +106,29 @@ Fetch error: http://www.viraj.ulaval.ca/ => https://www.viraj.ulaval.ca/: (60, ' - + - + - + - + - - + + - - + + - + @@ -136,23 +136,23 @@ Fetch error: http://www.viraj.ulaval.ca/ => https://www.viraj.ulaval.ca/: (60, ' - + - + - + - + - + @@ -176,25 +176,25 @@ Fetch error: http://www.viraj.ulaval.ca/ => https://www.viraj.ulaval.ca/: (60, ' - + - + - + - + - + @@ -222,15 +222,15 @@ Fetch error: http://www.viraj.ulaval.ca/ => https://www.viraj.ulaval.ca/: (60, ' - + - - - - diff --git a/src/chrome/content/rules/Universite_catholique_de_Louvain.xml b/src/chrome/content/rules/Universite_catholique_de_Louvain.xml index a9e42136f068..d0793c60d746 100644 --- a/src/chrome/content/rules/Universite_catholique_de_Louvain.xml +++ b/src/chrome/content/rules/Universite_catholique_de_Louvain.xml @@ -36,24 +36,28 @@ --> - + + + - + + + + + + - - + diff --git a/src/chrome/content/rules/University-Illinois-at-Chicago.xml b/src/chrome/content/rules/University-Illinois-at-Chicago.xml index 569dad45f96c..2af7f5f03cd1 100644 --- a/src/chrome/content/rules/University-Illinois-at-Chicago.xml +++ b/src/chrome/content/rules/University-Illinois-at-Chicago.xml @@ -68,7 +68,7 @@ Fetch error: http://www2.uic.edu/ => https://www2.uic.edu/: (60, 'SSL certificat * Secured by us --> - + @@ -165,7 +165,7 @@ Fetch error: http://www2.uic.edu/ => https://www2.uic.edu/: (60, 'SSL certificat - + - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/University-of-Alaska.xml b/src/chrome/content/rules/University-of-Alaska.xml deleted file mode 100644 index 2a882b962b62..000000000000 --- a/src/chrome/content/rules/University-of-Alaska.xml +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/University-of-Applied-Sciences-Rapperswil-mismatches.xml b/src/chrome/content/rules/University-of-Applied-Sciences-Rapperswil-mismatches.xml index c8f25a9f5eef..fb750ec6a81a 100644 --- a/src/chrome/content/rules/University-of-Applied-Sciences-Rapperswil-mismatches.xml +++ b/src/chrome/content/rules/University-of-Applied-Sciences-Rapperswil-mismatches.xml @@ -9,7 +9,7 @@ - + - + + - + - + diff --git a/src/chrome/content/rules/University-of-Bern-expired.xml b/src/chrome/content/rules/University-of-Bern-expired.xml index bad87adc2ba8..6bd7fee9518b 100644 --- a/src/chrome/content/rules/University-of-Bern-expired.xml +++ b/src/chrome/content/rules/University-of-Bern-expired.xml @@ -8,7 +8,6 @@ - + diff --git a/src/chrome/content/rules/University-of-Bern.xml b/src/chrome/content/rules/University-of-Bern.xml index 71e66611ecc1..4414caee5460 100644 --- a/src/chrome/content/rules/University-of-Bern.xml +++ b/src/chrome/content/rules/University-of-Bern.xml @@ -12,17 +12,34 @@ --> - - - - - + + + + + + + + + + + + + + + + + + + + + + + + - + - + + + + - - - - - - + + + - + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + + + + + - - + - + + + - + - + + + + + + + + + - - - - - - - - + + + @@ -149,74 +178,23 @@ + + - + + + - - - - + - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - diff --git a/src/chrome/content/rules/University-of-California-San-Diego.xml b/src/chrome/content/rules/University-of-California-San-Diego.xml new file mode 100644 index 000000000000..67f2b1f4c1d6 --- /dev/null +++ b/src/chrome/content/rules/University-of-California-San-Diego.xml @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/University-of-Cambridge.xml b/src/chrome/content/rules/University-of-Cambridge.xml index 8dbd6b6a1143..89fa52d56576 100644 --- a/src/chrome/content/rules/University-of-Cambridge.xml +++ b/src/chrome/content/rules/University-of-Cambridge.xml @@ -1,333 +1,426 @@ - - + + + - - + + + + + + + - - - + + + + + + + + + - - + + - + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + - - + + + + + + + - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + + + + - - - - - - - - + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + diff --git a/src/chrome/content/rules/University-of-Central-Florida.xml b/src/chrome/content/rules/University-of-Central-Florida.xml index 7c2b0e3b86e2..301b4696f740 100644 --- a/src/chrome/content/rules/University-of-Central-Florida.xml +++ b/src/chrome/content/rules/University-of-Central-Florida.xml @@ -15,16 +15,26 @@ Fetch error: http://ucf.edu/ => https://ucf.edu/: (7, 'Failed to connect to ucf. - portal-help (times out) --> - + - + + + + + + + + + + + + - + - + diff --git a/src/chrome/content/rules/University-of-Chicago.xml b/src/chrome/content/rules/University-of-Chicago.xml index 6940c351105b..d57aff861bb5 100644 --- a/src/chrome/content/rules/University-of-Chicago.xml +++ b/src/chrome/content/rules/University-of-Chicago.xml @@ -41,6 +41,6 @@ - diff --git a/src/chrome/content/rules/University-of-Colorado-at-Boulder.xml b/src/chrome/content/rules/University-of-Colorado-at-Boulder.xml index 4d5a9db884b6..95396da59157 100644 --- a/src/chrome/content/rules/University-of-Colorado-at-Boulder.xml +++ b/src/chrome/content/rules/University-of-Colorado-at-Boulder.xml @@ -52,7 +52,11 @@ Fetch error: http://colorado.edu/ => http://colorado.edu/: Redirect for 'http:// - + + + + + diff --git a/src/chrome/content/rules/University-of-Copenhagen.xml b/src/chrome/content/rules/University-of-Copenhagen.xml index 1cf1463faa9f..3411e5f78d63 100644 --- a/src/chrome/content/rules/University-of-Copenhagen.xml +++ b/src/chrome/content/rules/University-of-Copenhagen.xml @@ -39,10 +39,9 @@ - + - + diff --git a/src/chrome/content/rules/University-of-Delaware.xml b/src/chrome/content/rules/University-of-Delaware.xml index 5bd9d8a52335..b403b33ba2cd 100644 --- a/src/chrome/content/rules/University-of-Delaware.xml +++ b/src/chrome/content/rules/University-of-Delaware.xml @@ -2,8 +2,6 @@ - - @@ -24,4 +22,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/University-of-Eastern-Finland.xml b/src/chrome/content/rules/University-of-Eastern-Finland.xml index b0f0de20afa8..081e69718db4 100644 --- a/src/chrome/content/rules/University-of-Eastern-Finland.xml +++ b/src/chrome/content/rules/University-of-Eastern-Finland.xml @@ -5,13 +5,13 @@ Fetch error: http://cs.joensuu.fi/ => https://cs.joensuu.fi/: (60, 'SSL certific !functional: - aducate.uef.fi (valid cert, shows RHEL test page) --> - + - + diff --git a/src/chrome/content/rules/University-of-Exeter.xml b/src/chrome/content/rules/University-of-Exeter.xml index abe8ca63e48d..6a6299b82931 100644 --- a/src/chrome/content/rules/University-of-Exeter.xml +++ b/src/chrome/content/rules/University-of-Exeter.xml @@ -1,74 +1,48 @@ - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/University-of-Florida.xml b/src/chrome/content/rules/University-of-Florida.xml index 2044262ef619..aa20fa166606 100644 --- a/src/chrome/content/rules/University-of-Florida.xml +++ b/src/chrome/content/rules/University-of-Florida.xml @@ -49,13 +49,13 @@ Fetch error: http://www.shands.org/ => https://www.shands.org/: (51, "SSL: no al - www (refused) --> - + - + diff --git a/src/chrome/content/rules/University-of-Idaho.xml b/src/chrome/content/rules/University-of-Idaho.xml index 1436578892e2..8e859fe046b1 100644 --- a/src/chrome/content/rules/University-of-Idaho.xml +++ b/src/chrome/content/rules/University-of-Idaho.xml @@ -22,15 +22,22 @@ Fetch error: http://www2.sites.uidaho.edu/ => https://www2.sites.uidaho.edu/: (6 - www.webs (cert: www.sci.uidaho.edu; 302s to www.webpages) --> - + - + + + + + + + + + + - - diff --git a/src/chrome/content/rules/University-of-Illinois-at-Urbana-Champaign.xml b/src/chrome/content/rules/University-of-Illinois-at-Urbana-Champaign.xml index cc6a4ee055d8..4717d8870206 100644 --- a/src/chrome/content/rules/University-of-Illinois-at-Urbana-Champaign.xml +++ b/src/chrome/content/rules/University-of-Illinois-at-Urbana-Champaign.xml @@ -159,7 +159,7 @@ Fetch error: http://police.illinois.edu/ => https://dps.illinois.edu/: (51, "SSL * Secured by us --> - + @@ -453,7 +453,7 @@ Fetch error: http://police.illinois.edu/ => https://dps.illinois.edu/: (51, "SSL - + - + + - + diff --git a/src/chrome/content/rules/University-of-Manitoba.xml b/src/chrome/content/rules/University-of-Manitoba.xml index b2932be69adb..ab1e9c2cbffe 100644 --- a/src/chrome/content/rules/University-of-Manitoba.xml +++ b/src/chrome/content/rules/University-of-Manitoba.xml @@ -2,7 +2,7 @@ Nonfunctional domains: - - umanitoba.ca subdomains: + - umanitoba.ca subdomains: - crscalprod1.cc - fasprod.cc (interrupted) @@ -13,11 +13,19 @@ - - - - - + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/University-of-Mary-Washington-blogs.xml b/src/chrome/content/rules/University-of-Mary-Washington-blogs.xml index 395ebeb6bbdb..90ae590e274c 100644 --- a/src/chrome/content/rules/University-of-Mary-Washington-blogs.xml +++ b/src/chrome/content/rules/University-of-Mary-Washington-blogs.xml @@ -7,21 +7,15 @@ - - + - - - + - - diff --git a/src/chrome/content/rules/University-of-Mary-Washington.xml b/src/chrome/content/rules/University-of-Mary-Washington.xml index b4d3682292e5..d1b0bfa7078b 100644 --- a/src/chrome/content/rules/University-of-Mary-Washington.xml +++ b/src/chrome/content/rules/University-of-Mary-Washington.xml @@ -4,25 +4,46 @@ - University-of-Mary-Washington-blogs.xml - eagleeye.umw.edu & jamesfarmer.umw.edu are handled in University-of-Mary-Washington-blogs.xml. - - Nonfunctional domains: - www.library.umw.edu - (www.)umweagles.com + Mixed content: + eagleeye.umw.edu + --> - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/University-of-Maryland.xml b/src/chrome/content/rules/University-of-Maryland.xml index a0882c0f5acb..deacfe7cc02c 100644 --- a/src/chrome/content/rules/University-of-Maryland.xml +++ b/src/chrome/content/rules/University-of-Maryland.xml @@ -135,7 +135,7 @@ Fetch error: http://www.urhome.umd.edu/ => https://www.urhome.umd.edu/: (51, "SS * Secured by us --> - + @@ -345,7 +345,7 @@ Fetch error: http://www.urhome.umd.edu/ => https://www.urhome.umd.edu/: (51, "SS - + - - - + + + + + + + + + + + + + + - - - + + - - - + diff --git a/src/chrome/content/rules/University-of-Minho-mismatches.xml b/src/chrome/content/rules/University-of-Minho-mismatches.xml index c2c7efe65cbc..39cd2d760a18 100644 --- a/src/chrome/content/rules/University-of-Minho-mismatches.xml +++ b/src/chrome/content/rules/University-of-Minho-mismatches.xml @@ -2,6 +2,6 @@ - + diff --git a/src/chrome/content/rules/University-of-Minnesota.xml b/src/chrome/content/rules/University-of-Minnesota.xml index 549459b1c6f6..d51cba3733fc 100644 --- a/src/chrome/content/rules/University-of-Minnesota.xml +++ b/src/chrome/content/rules/University-of-Minnesota.xml @@ -44,7 +44,7 @@ Non-2xx HTTP code: http://www1.umn.edu/ (200) => https://www1.umn.edu/ (404) * Secured by us --> - + diff --git a/src/chrome/content/rules/University-of-Ottawa.xml b/src/chrome/content/rules/University-of-Ottawa.xml index 19d4948acb7b..5abb5362fb1d 100644 --- a/src/chrome/content/rules/University-of-Ottawa.xml +++ b/src/chrome/content/rules/University-of-Ottawa.xml @@ -4,12 +4,11 @@ Disabled by https-everywhere-checker because: Fetch error: http://web5.uottawa.ca/ => https://web5.uottawa.ca/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + - + diff --git a/src/chrome/content/rules/University-of-Oxford.xml b/src/chrome/content/rules/University-of-Oxford.xml index a2eed9e68639..74c3da840575 100644 --- a/src/chrome/content/rules/University-of-Oxford.xml +++ b/src/chrome/content/rules/University-of-Oxford.xml @@ -106,7 +106,6 @@ Fetch error: http://mail.bfriars.ox.ac.uk/ => https://www.bfriars.ox.ac.uk/horde - medieval.history ("Site Maintenance") - www.history Mixed css - www.issf ᵃ - - www2.maths ³ - tools.ndm ³ - nqit Mismatched - www.torch Mismatched @@ -191,7 +190,7 @@ Fetch error: http://mail.bfriars.ox.ac.uk/ => https://www.bfriars.ox.ac.uk/horde * Secured by us --> - + @@ -251,7 +250,11 @@ Fetch error: http://mail.bfriars.ox.ac.uk/ => https://www.bfriars.ox.ac.uk/horde - + + + + + @@ -411,7 +414,7 @@ Fetch error: http://mail.bfriars.ox.ac.uk/ => https://www.bfriars.ox.ac.uk/horde - + - + diff --git a/src/chrome/content/rules/University-of-Pennsylvania.xml b/src/chrome/content/rules/University-of-Pennsylvania.xml index f5fba50f3517..5412fcdc0754 100644 --- a/src/chrome/content/rules/University-of-Pennsylvania.xml +++ b/src/chrome/content/rules/University-of-Pennsylvania.xml @@ -29,7 +29,16 @@ --> - + + + + + + + + + + @@ -37,7 +46,6 @@ - + diff --git a/src/chrome/content/rules/University-of-South-Florida-mismatches.xml b/src/chrome/content/rules/University-of-South-Florida-mismatches.xml deleted file mode 100644 index 98b7cc71466a..000000000000 --- a/src/chrome/content/rules/University-of-South-Florida-mismatches.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/University-of-South-Florida.xml b/src/chrome/content/rules/University-of-South-Florida.xml index ff833fa85564..1e10d021c95e 100644 --- a/src/chrome/content/rules/University-of-South-Florida.xml +++ b/src/chrome/content/rules/University-of-South-Florida.xml @@ -1,59 +1,46 @@ - - - - - - - + Refused: + - news - - - - - - - - - - - - - + Timeout: + - tap - - + Incomplete certificate chain: + - lib + SSL configuration error: + - usfweb2 (see https://www.ssllabs.com/ssltest/analyze.html?d=usfweb2.usf.edu) +--> + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/University-of-Southampton.xml b/src/chrome/content/rules/University-of-Southampton.xml index 8592ef62d09b..ce42ea5e427b 100644 --- a/src/chrome/content/rules/University-of-Southampton.xml +++ b/src/chrome/content/rules/University-of-Southampton.xml @@ -10,10 +10,16 @@ - + - - + + + + + + + + @@ -29,15 +35,10 @@ - - - @@ -56,4 +57,5 @@ + diff --git a/src/chrome/content/rules/University-of-Southern-California.xml b/src/chrome/content/rules/University-of-Southern-California.xml index 4db95a8a64e7..a764dd09e9dc 100644 --- a/src/chrome/content/rules/University-of-Southern-California.xml +++ b/src/chrome/content/rules/University-of-Southern-California.xml @@ -171,7 +171,7 @@ Fetch error: http://policies.usc.edu/ => https://policy.usc.edu/: (28, 'Connecti * Secured by us --> - + @@ -297,7 +297,7 @@ Fetch error: http://policies.usc.edu/ => https://policy.usc.edu/: (28, 'Connecti - + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/University-of-Texas-System.xml b/src/chrome/content/rules/University-of-Texas-System.xml index 2a4258bf5f26..b584db987694 100644 --- a/src/chrome/content/rules/University-of-Texas-System.xml +++ b/src/chrome/content/rules/University-of-Texas-System.xml @@ -6,7 +6,7 @@ Fetch error: http://data.utsystem.edu/ => https://data.utsystem.edu/: (7, 'Faile Disabled by https-everywhere-checker because: Fetch error: http://utsystem.edu/ => https://utsystem.edu/: (51, "SSL: no alternative certificate subject name matches target host name 'utsystem.edu'") --> - + @@ -14,7 +14,7 @@ Fetch error: http://utsystem.edu/ => https://utsystem.edu/: (51, "SSL: no altern - + diff --git a/src/chrome/content/rules/University-of-Texas-at-Austin-mismatches.xml b/src/chrome/content/rules/University-of-Texas-at-Austin-mismatches.xml index 936931c2598e..ae36ef6084c1 100644 --- a/src/chrome/content/rules/University-of-Texas-at-Austin-mismatches.xml +++ b/src/chrome/content/rules/University-of-Texas-at-Austin-mismatches.xml @@ -4,14 +4,14 @@ --> - + + - + diff --git a/src/chrome/content/rules/University-of-Texas-at-Austin.xml b/src/chrome/content/rules/University-of-Texas-at-Austin.xml index 5d983536b571..71650182d6a5 100644 --- a/src/chrome/content/rules/University-of-Texas-at-Austin.xml +++ b/src/chrome/content/rules/University-of-Texas-at-Austin.xml @@ -179,7 +179,7 @@ - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + - + diff --git a/src/chrome/content/rules/University-of-Utah.xml b/src/chrome/content/rules/University-of-Utah.xml index 05230ef2020b..f6e3e08968fc 100644 --- a/src/chrome/content/rules/University-of-Utah.xml +++ b/src/chrome/content/rules/University-of-Utah.xml @@ -51,7 +51,7 @@ Fetch error: http://www.gradschool.utah.edu/ => https://www.gradschool.utah.edu/ ² Expired --> - + @@ -79,7 +79,7 @@ Fetch error: http://www.gradschool.utah.edu/ => https://www.gradschool.utah.edu/ - + - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/University-of-Western-Australia.xml b/src/chrome/content/rules/University-of-Western-Australia.xml index 6b3b3d657527..1ad390903f39 100644 --- a/src/chrome/content/rules/University-of-Western-Australia.xml +++ b/src/chrome/content/rules/University-of-Western-Australia.xml @@ -2,7 +2,7 @@ Nonfunctional subdomains: - (www.) - - websites.psychology (times out) + - websites.psychology (times out) - www.news (rx_record_too_long) @@ -12,7 +12,7 @@ - + diff --git a/src/chrome/content/rules/University-of-Wisconsin-Milwaukee.xml b/src/chrome/content/rules/University-of-Wisconsin-Milwaukee.xml index 38891af1c4c5..6d1e8b9d19d9 100644 --- a/src/chrome/content/rules/University-of-Wisconsin-Milwaukee.xml +++ b/src/chrome/content/rules/University-of-Wisconsin-Milwaukee.xml @@ -38,7 +38,7 @@ Fetch error: http://roomscheduling.uwm.edu/ => https://roomscheduling.uwm.edu/: apps.uwm.edu techmallshop.uwm.edu --> - + diff --git a/src/chrome/content/rules/University_Computer_Club.xml b/src/chrome/content/rules/University_Computer_Club.xml index b8f55eef8765..5b7f425452f1 100644 --- a/src/chrome/content/rules/University_Computer_Club.xml +++ b/src/chrome/content/rules/University_Computer_Club.xml @@ -14,4 +14,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/University_at_Buffalo.xml b/src/chrome/content/rules/University_at_Buffalo.xml index b9309accd8b4..284536762aad 100644 --- a/src/chrome/content/rules/University_at_Buffalo.xml +++ b/src/chrome/content/rules/University_at_Buffalo.xml @@ -16,7 +16,6 @@ Non-2xx HTTP code: http://www.ubfoundation.buffalo.edu/ (200) => https://ubfound Other University at Buffalo rulesets: - - BioXFEL.org.xml Nonfunctional hosts in *buffalo.edu: @@ -113,7 +112,7 @@ Non-2xx HTTP code: http://www.ubfoundation.buffalo.edu/ (200) => https://ubfound * Secured by us --> - + @@ -122,7 +121,9 @@ Non-2xx HTTP code: http://www.ubfoundation.buffalo.edu/ (200) => https://ubfound - + + + @@ -187,7 +188,7 @@ Non-2xx HTTP code: http://www.ubfoundation.buffalo.edu/ (200) => https://ubfound - + diff --git a/src/chrome/content/rules/University_of_Applied_Sciences_Kiel.xml b/src/chrome/content/rules/University_of_Applied_Sciences_Kiel.xml index 2dc30c9ee3ce..b0c44410556a 100644 --- a/src/chrome/content/rules/University_of_Applied_Sciences_Kiel.xml +++ b/src/chrome/content/rules/University_of_Applied_Sciences_Kiel.xml @@ -1,19 +1,30 @@ + - - - + + + + + + - + - - - - - + - \ No newline at end of file + + diff --git a/src/chrome/content/rules/University_of_Bath.xml b/src/chrome/content/rules/University_of_Bath.xml index 1e1079d99d40..278fe7f466ca 100644 --- a/src/chrome/content/rules/University_of_Bath.xml +++ b/src/chrome/content/rules/University_of_Bath.xml @@ -18,4 +18,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/University_of_Bristol.xml b/src/chrome/content/rules/University_of_Bristol.xml index d18f389942d8..77570f9c0ed5 100644 --- a/src/chrome/content/rules/University_of_Bristol.xml +++ b/src/chrome/content/rules/University_of_Bristol.xml @@ -26,7 +26,10 @@ --> - + + + + @@ -50,7 +53,6 @@ - + diff --git a/src/chrome/content/rules/University_of_California_San_Francisco-problematic.xml b/src/chrome/content/rules/University_of_California_San_Francisco-problematic.xml index aaceedb28d10..d0af4422f83e 100644 --- a/src/chrome/content/rules/University_of_California_San_Francisco-problematic.xml +++ b/src/chrome/content/rules/University_of_California_San_Francisco-problematic.xml @@ -5,14 +5,12 @@ - - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/University_of_California_San_Francisco.xml b/src/chrome/content/rules/University_of_California_San_Francisco.xml index 9af10e193b98..667423220696 100644 --- a/src/chrome/content/rules/University_of_California_San_Francisco.xml +++ b/src/chrome/content/rules/University_of_California_San_Francisco.xml @@ -18,6 +18,8 @@ vx28.ucsf.edu - brightideas (redirects to http; mismatched, CN: slotmatching14.salesforce.com) - calendar * - directory * + - elsamadlab (no https) + - floorlab (no https) - osl (shows campuslifeservices) - synapse (no https) @@ -62,31 +64,88 @@ vx28.ucsf.edu - (www.)warnme (www → ^) --> + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/University_of_California_Santa_Cruz-problematic.xml b/src/chrome/content/rules/University_of_California_Santa_Cruz-problematic.xml index 965e241f09cf..38248a1b2ede 100644 --- a/src/chrome/content/rules/University_of_California_Santa_Cruz-problematic.xml +++ b/src/chrome/content/rules/University_of_California_Santa_Cruz-problematic.xml @@ -1,5 +1,5 @@ @@ -7,13 +7,11 @@ - - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/University_of_California_Santa_Cruz.xml b/src/chrome/content/rules/University_of_California_Santa_Cruz.xml index 9ec2e2032cd5..b2e015b049e1 100644 --- a/src/chrome/content/rules/University_of_California_Santa_Cruz.xml +++ b/src/chrome/content/rules/University_of_California_Santa_Cruz.xml @@ -102,7 +102,7 @@ Fetch error: http://its-proposals-dev.ucsc.edu/ => https://its-proposals-dev.ucs ˢ Secured by us --> - + @@ -166,7 +166,7 @@ Fetch error: http://its-proposals-dev.ucsc.edu/ => https://its-proposals-dev.ucs - + - + @@ -83,4 +83,4 @@ Fetch error: http://uct.ac.za/ => https://www.uct.ac.za/: (60, 'SSL certificate - \ No newline at end of file + diff --git a/src/chrome/content/rules/University_of_Central_Lancashire.xml b/src/chrome/content/rules/University_of_Central_Lancashire.xml index 3b7c56a49366..8e75c4ba5c97 100644 --- a/src/chrome/content/rules/University_of_Central_Lancashire.xml +++ b/src/chrome/content/rules/University_of_Central_Lancashire.xml @@ -6,7 +6,7 @@ Fetch error: http://staff.uclan.ac.uk/ => https://staff.uclan.ac.uk/: (28, 'Conn Disabled by https-everywhere-checker because: Fetch error: http://uclan.ac.uk/ => https://uclan.ac.uk/: (51, "SSL: no alternative certificate subject name matches target host name 'uclan.ac.uk'") --> - + @@ -15,4 +15,4 @@ Fetch error: http://uclan.ac.uk/ => https://uclan.ac.uk/: (51, "SSL: no alternat - \ No newline at end of file + diff --git a/src/chrome/content/rules/University_of_Cincinatti.xml b/src/chrome/content/rules/University_of_Cincinatti.xml index 041104354698..3a5907ca8a40 100644 --- a/src/chrome/content/rules/University_of_Cincinatti.xml +++ b/src/chrome/content/rules/University_of_Cincinatti.xml @@ -26,7 +26,20 @@ - + + + + + + + + + + + + + + @@ -36,7 +49,6 @@ - + diff --git a/src/chrome/content/rules/University_of_Derby-problematic.xml b/src/chrome/content/rules/University_of_Derby-problematic.xml index 9412a1d908ad..d99c0fb3cca9 100644 --- a/src/chrome/content/rules/University_of_Derby-problematic.xml +++ b/src/chrome/content/rules/University_of_Derby-problematic.xml @@ -12,7 +12,6 @@ - + diff --git a/src/chrome/content/rules/University_of_Derby.xml b/src/chrome/content/rules/University_of_Derby.xml index 1d7538a0915b..57ceb6c5dca2 100644 --- a/src/chrome/content/rules/University_of_Derby.xml +++ b/src/chrome/content/rules/University_of_Derby.xml @@ -9,16 +9,19 @@ --> - + + + + + - + - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/University_of_Erlangen-Nuremberg.xml b/src/chrome/content/rules/University_of_Erlangen-Nuremberg.xml index 28b1f41e6a2a..9f548307339c 100644 --- a/src/chrome/content/rules/University_of_Erlangen-Nuremberg.xml +++ b/src/chrome/content/rules/University_of_Erlangen-Nuremberg.xml @@ -88,7 +88,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/University_of_Greifswald.xml b/src/chrome/content/rules/University_of_Greifswald.xml deleted file mode 100644 index 408381977c4d..000000000000 --- a/src/chrome/content/rules/University_of_Greifswald.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/University_of_Grenada.xml b/src/chrome/content/rules/University_of_Grenada.xml index f7966673c6cd..ef2e0b96d3b7 100644 --- a/src/chrome/content/rules/University_of_Grenada.xml +++ b/src/chrome/content/rules/University_of_Grenada.xml @@ -10,13 +10,12 @@ --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/University_of_Houston.xml b/src/chrome/content/rules/University_of_Houston.xml index 29e8fe0b465f..752c8c695d69 100644 --- a/src/chrome/content/rules/University_of_Houston.xml +++ b/src/chrome/content/rules/University_of_Houston.xml @@ -1,72 +1,53 @@ - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + diff --git a/src/chrome/content/rules/University_of_Iowa.xml b/src/chrome/content/rules/University_of_Iowa.xml index 97c15623d620..1c601503a69a 100644 --- a/src/chrome/content/rules/University_of_Iowa.xml +++ b/src/chrome/content/rules/University_of_Iowa.xml @@ -37,14 +37,17 @@ --> - + + + + + - + diff --git a/src/chrome/content/rules/University_of_Kent.xml b/src/chrome/content/rules/University_of_Kent.xml index 0de091e1e8ea..d8df7f5fc471 100644 --- a/src/chrome/content/rules/University_of_Kent.xml +++ b/src/chrome/content/rules/University_of_Kent.xml @@ -18,7 +18,7 @@ Fetch error: http://sds-staff.kent.ac.uk/ => https://sds-staff.kent.ac.uk/: (28, - .kent.ac.uk --> - + @@ -53,7 +53,7 @@ Fetch error: http://sds-staff.kent.ac.uk/ => https://sds-staff.kent.ac.uk/: (28, - + https://www.pvac.leeds.ac.uk/: (51, "SS * Secured by us --> - + @@ -385,7 +385,7 @@ Fetch error: http://pvac.leeds.ac.uk/ => https://www.pvac.leeds.ac.uk/: (51, "SS - + - + + + + + + + @@ -32,10 +38,9 @@ - + diff --git a/src/chrome/content/rules/University_of_Maine.xml b/src/chrome/content/rules/University_of_Maine.xml index 4b26f86db37f..eb8c7b9e907c 100644 --- a/src/chrome/content/rules/University_of_Maine.xml +++ b/src/chrome/content/rules/University_of_Maine.xml @@ -26,7 +26,6 @@ - diff --git a/src/chrome/content/rules/University_of_Maine_System-problematic.xml b/src/chrome/content/rules/University_of_Maine_System-problematic.xml index 7145d3f58b62..724db493e729 100644 --- a/src/chrome/content/rules/University_of_Maine_System-problematic.xml +++ b/src/chrome/content/rules/University_of_Maine_System-problematic.xml @@ -8,7 +8,6 @@ - + diff --git a/src/chrome/content/rules/University_of_Mainz-falsemixed.xml b/src/chrome/content/rules/University_of_Mainz-falsemixed.xml index 226013dd8b05..51b6f5daf470 100644 --- a/src/chrome/content/rules/University_of_Mainz-falsemixed.xml +++ b/src/chrome/content/rules/University_of_Mainz-falsemixed.xml @@ -6,7 +6,7 @@ Fetch error: http://www.zdv.uni-mainz.de/ => https://www.zdv.uni-mainz.de/: (60, For rules not causing false/broken MCB, see University_of_Mainz.xml. --> - + diff --git a/src/chrome/content/rules/University_of_Mainz.xml b/src/chrome/content/rules/University_of_Mainz.xml index 2e1c0a3c57cb..bcef5f2261aa 100644 --- a/src/chrome/content/rules/University_of_Mainz.xml +++ b/src/chrome/content/rules/University_of_Mainz.xml @@ -110,32 +110,32 @@ Fetch error: http://zdv.uni-mainz.de/ => https://www.$uni-mainz.de/: (6, 'Could ᵘ Unsecurable, doesn't trip MCB --> - + - + - - - - - + + + + + - - - + + + - + - + @@ -144,9 +144,9 @@ Fetch error: http://zdv.uni-mainz.de/ => https://www.$uni-mainz.de/: (6, 'Could - + - + @@ -201,7 +201,7 @@ Fetch error: http://zdv.uni-mainz.de/ => https://www.$uni-mainz.de/: (6, 'Could - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/University_of_Notre_Dame.xml b/src/chrome/content/rules/University_of_Notre_Dame.xml index b18d1724e6c7..ca980f2d6d06 100644 --- a/src/chrome/content/rules/University_of_Notre_Dame.xml +++ b/src/chrome/content/rules/University_of_Notre_Dame.xml @@ -380,7 +380,7 @@ Fetch error: http://nd.edu/ => https://nd.edu/: (60, 'SSL certificate problem: u ³ Unsecurable --> - + diff --git a/src/chrome/content/rules/University_of_Oslo.xml b/src/chrome/content/rules/University_of_Oslo.xml index b9b9d1098ea5..f2dbadb31280 100644 --- a/src/chrome/content/rules/University_of_Oslo.xml +++ b/src/chrome/content/rules/University_of_Oslo.xml @@ -32,7 +32,7 @@ Fetch error: http://www.diskusjonsforum.uio.no/ => https://www.diskusjonsforum.u - (www.)ub --> - + diff --git a/src/chrome/content/rules/University_of_Passau.xml b/src/chrome/content/rules/University_of_Passau.xml index 02be9e787bc9..bd8ebddd5f60 100644 --- a/src/chrome/content/rules/University_of_Passau.xml +++ b/src/chrome/content/rules/University_of_Passau.xml @@ -55,4 +55,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/University_of_Pittsburgh.xml b/src/chrome/content/rules/University_of_Pittsburgh.xml index a04d69259c89..e35e6bd020c0 100644 --- a/src/chrome/content/rules/University_of_Pittsburgh.xml +++ b/src/chrome/content/rules/University_of_Pittsburgh.xml @@ -27,17 +27,25 @@ - + + + + + + + + + + - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/University_of_Reading.xml b/src/chrome/content/rules/University_of_Reading.xml deleted file mode 100644 index aae636d400c8..000000000000 --- a/src/chrome/content/rules/University_of_Reading.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/University_of_Rostock.xml b/src/chrome/content/rules/University_of_Rostock.xml index 41172178d6e5..f929c5f82110 100644 --- a/src/chrome/content/rules/University_of_Rostock.xml +++ b/src/chrome/content/rules/University_of_Rostock.xml @@ -33,14 +33,19 @@ --> - + + + + + + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/University_of_Salford.xml b/src/chrome/content/rules/University_of_Salford.xml index 9f8882f34ad1..f4e5c78f46e0 100644 --- a/src/chrome/content/rules/University_of_Salford.xml +++ b/src/chrome/content/rules/University_of_Salford.xml @@ -12,14 +12,14 @@ --> - - + + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/University_of_Saskatchewan.xml b/src/chrome/content/rules/University_of_Saskatchewan.xml index c3d99770d1ca..23bd019e07e0 100644 --- a/src/chrome/content/rules/University_of_Saskatchewan.xml +++ b/src/chrome/content/rules/University_of_Saskatchewan.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/University_of_Sheffield.xml b/src/chrome/content/rules/University_of_Sheffield.xml index 8f25adc44cb2..746fed45eea2 100644 --- a/src/chrome/content/rules/University_of_Sheffield.xml +++ b/src/chrome/content/rules/University_of_Sheffield.xml @@ -27,22 +27,23 @@ - + + + + - + + - - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/University_of_Tampa.xml b/src/chrome/content/rules/University_of_Tampa.xml index e82c4f0aa748..4b0fc84bde2c 100644 --- a/src/chrome/content/rules/University_of_Tampa.xml +++ b/src/chrome/content/rules/University_of_Tampa.xml @@ -7,7 +7,10 @@ - + + + + @@ -16,7 +19,6 @@ - + diff --git a/src/chrome/content/rules/University_of_Tennessee_Knoxville.xml b/src/chrome/content/rules/University_of_Tennessee_Knoxville.xml index acf26cc28bdf..c45275ae2ea0 100644 --- a/src/chrome/content/rules/University_of_Tennessee_Knoxville.xml +++ b/src/chrome/content/rules/University_of_Tennessee_Knoxville.xml @@ -1,53 +1,41 @@ - - - - - - - - - - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/University_of_Tennessee_System.xml b/src/chrome/content/rules/University_of_Tennessee_System.xml index 96667c90602b..ba59f1d00274 100644 --- a/src/chrome/content/rules/University_of_Tennessee_System.xml +++ b/src/chrome/content/rules/University_of_Tennessee_System.xml @@ -26,16 +26,20 @@ - security - utap1 ---> +--> - + + + + + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/University_of_Tennessee_at_Martin.xml b/src/chrome/content/rules/University_of_Tennessee_at_Martin.xml index e9891f819f5e..0f680f0791ce 100644 --- a/src/chrome/content/rules/University_of_Tennessee_at_Martin.xml +++ b/src/chrome/content/rules/University_of_Tennessee_at_Martin.xml @@ -5,28 +5,28 @@ Fetch error: http://legacy.utm.edu/ => https://legacy.utm.edu/: (51, "SSL: no al Fetch error: http://primes.utm.edu/ => https://primes.utm.edu/: (60, 'SSL certificate problem: unable to get local issuer certificate') See . - + HTTP only: eviprod.utm.edu - + Refused: twister.utm.edu - + Mismatch: www.iep.utm.edu www.philfilms.utm.edu - + Expired: stem.utm.edu - + Self-signed: catalog.utm.edu ns9200.utm.edu - + Mixed content: utmgive.wpengine.com ---> +--> diff --git a/src/chrome/content/rules/University_of_Tuebingen-problematic.xml b/src/chrome/content/rules/University_of_Tuebingen-problematic.xml index 4880e9e0c530..c2bf9d58bc15 100644 --- a/src/chrome/content/rules/University_of_Tuebingen-problematic.xml +++ b/src/chrome/content/rules/University_of_Tuebingen-problematic.xml @@ -7,7 +7,6 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/University_of_Tuebingen.xml b/src/chrome/content/rules/University_of_Tuebingen.xml index a3056867b5fc..23992aa40d6b 100644 --- a/src/chrome/content/rules/University_of_Tuebingen.xml +++ b/src/chrome/content/rules/University_of_Tuebingen.xml @@ -30,7 +30,10 @@ - + + + + @@ -41,7 +44,6 @@ - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/University_of_Waikato.xml b/src/chrome/content/rules/University_of_Waikato.xml index 225e828e3134..f52f12c89074 100644 --- a/src/chrome/content/rules/University_of_Waikato.xml +++ b/src/chrome/content/rules/University_of_Waikato.xml @@ -31,9 +31,12 @@ - + + + + diff --git a/src/chrome/content/rules/University_of_Warwick.xml b/src/chrome/content/rules/University_of_Warwick.xml index 3feae7ba1ab3..54c0f072da7a 100644 --- a/src/chrome/content/rules/University_of_Warwick.xml +++ b/src/chrome/content/rules/University_of_Warwick.xml @@ -18,14 +18,18 @@ - + + + + + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/University_of_Wisconsin-Madison.xml b/src/chrome/content/rules/University_of_Wisconsin-Madison.xml index b8cc033d7109..4b5646b2d289 100644 --- a/src/chrome/content/rules/University_of_Wisconsin-Madison.xml +++ b/src/chrome/content/rules/University_of_Wisconsin-Madison.xml @@ -75,17 +75,38 @@ Fetch error: http://wayf.wisc.edu/ => https://wayf.wisc.edu/: (6, 'Could not res * Secured by us --> - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + - @@ -114,4 +135,5 @@ Fetch error: http://wayf.wisc.edu/ => https://wayf.wisc.edu/: (6, 'Could not res + diff --git a/src/chrome/content/rules/Universityadmissions.se.xml b/src/chrome/content/rules/Universityadmissions.se.xml index 0957f19d4324..eeb6fd9f867d 100644 --- a/src/chrome/content/rules/Universityadmissions.se.xml +++ b/src/chrome/content/rules/Universityadmissions.se.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Univie.ac.at.xml b/src/chrome/content/rules/Univie.ac.at.xml index 1419232cb2ac..17c38ad63654 100644 --- a/src/chrome/content/rules/Univie.ac.at.xml +++ b/src/chrome/content/rules/Univie.ac.at.xml @@ -70,7 +70,31 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Unizar.es.xml b/src/chrome/content/rules/Unizar.es.xml index 5378bbf4f006..82c9ba80a8a9 100644 --- a/src/chrome/content/rules/Unizar.es.xml +++ b/src/chrome/content/rules/Unizar.es.xml @@ -9,90 +9,245 @@ Fetch error: http://mularroya10.cps.unizar.es/ => https://mularroya10.cps.unizar Ruleset for unizar.es, the University of Zaragoza website. See . - + Known issues: * mixed content issues on: - cursosextraordinarios.unizar.es - ocw.unizar.es * incomplete certificate chain on sede.unizar.es. - + Known subdomains that does not support HTTPS or have a wrongly configured certificate (incomplete list): - * alkaid.cps.unizar.es + * aize.unizar.es + * alano.unizar.es + * albarracin.unizar.es + * alfresco.i3a.unizar.es + * alfresco.unizar.es + * alfrescopro.unizar.es + * almenara.unizar.es * amb.unizar.es * anais.unizar.es + * aneto.unizar.es * apl-sigeuz.unizar.es * aralar.unizar.es + * arba.unizar.es + * arriel.unizar.es * asimov.unizar.es + * asin.unizar.es + * aulavet04.unizar.es + * aulavet11.unizar.es * babel.unizar.es * bash.unizar.es + + * bifi.unizar.es + * 3gbifi.bifi.unizar.es + * analyzer1.bifi.unizar.es + * analyzer2.bifi.unizar.es + * biblioteca.bifi.unizar.es + * fotocopiadora.bifi.unizar.es + * lxbifi11.bifi.unizar.es + * lxbifi21.bifi.unizar.es + * lxbifi24.bifi.unizar.es + * lxbifi37.bifi.unizar.es + * lxbifi44.bifi.unizar.es + * lxbifi49.bifi.unizar.es + * lxbifi72.bifi.unizar.es + * proxy-ara.bifi.unizar.es + * secretaria.bifi.unizar.es + * server2-ciencias.bifi.unizar.es + * server4-prg.bifi.unizar.es + * srv-17.bifi.unizar.es + * srv-18.bifi.unizar.es + * wbifi07.bifi.unizar.es + * bilbo.unizar.es + * bioflora.unizar.es + * bioq2.unizar.es + * bioservidor.unizar.es + * brasa.unizar.es + * buesa.unizar.es * buz.unizar.es * cae.unizar.es * catedramln.unizar.es * cave.unizar.es * cea.unizar.es * cederul.unizar.es + * celadas.unizar.es + * celestino.unizar.es * cesar.unizar.es + * chato.unizar.es * ciberconta.unizar.es * cicic.unizar.es * cierzo.unizar.es + * circelabs.unizar.es * cirugiaveterinaria.unizar.es * clink.unizar.es * complex.unizar.es + * contsem.unizar.es * cpanel.unizar.es + + * abelardina.cps.unizar.es + * abril.cps.unizar.es + * agosto.cps.unizar.es + * alkaid.cps.unizar.es + * armandina.cps.unizar.es + * asic4.cps.unizar.es + * azucar.cps.unizar.es + * boadicea.cps.unizar.es + * cafe.cps.unizar.es + * cenarbe.cps.unizar.es + * ct.cps.unizar.es + * danae-http.cps.unizar.es + * diec.cps.unizar.es + * diecfw.cps.unizar.es + * dihana.cps.unizar.es + * duero.cps.unizar.es + * egraf9000.cps.unizar.es + * eolo.cps.unizar.es + * euler.cps.unizar.es + * fiona.cps.unizar.es + * gallego.cps.unizar.es + * giga.cps.unizar.es + * gsv02.cps.unizar.es + * gtchf4.cps.unizar.es + * hendrix-http.cps.unizar.es + * iaaaserver.cps.unizar.es + * isc.cps.unizar.es + * jaca.cps.unizar.es + * jnimp.cps.unizar.es + * kvm01.cps.unizar.es + * kvm02.cps.unizar.es + * laloteta.cps.unizar.es + * laloteta06.cps.unizar.es + * laloteta11.cps.unizar.es + * laloteta12.cps.unizar.es + * luna2.cps.unizar.es + * m28-030.cps.unizar.es + * mafalda.cps.unizar.es + * monet.cps.unizar.es + * mularroya01.cps.unizar.es + * mularroya03.cps.unizar.es + * mularroya04.cps.unizar.es + * mularroya05.cps.unizar.es + * mularroya08.cps.unizar.es + * mularroya09.cps.unizar.es + * mularroya10.cps.unizar.es + * mularroya14.cps.unizar.es + * mularroya15.cps.unizar.es + * nada.cps.unizar.es + * odyssea.cps.unizar.es + * optica11.cps.unizar.es + * osiris.cps.unizar.es + * pandora.cps.unizar.es + * pantuflo.cps.unizar.es + * physionet.cps.unizar.es + * produccion.cps.unizar.es + * ra-amon.cps.unizar.es + * robot26.cps.unizar.es + * sol1.cps.unizar.es + * viernes.cps.unizar.es + * xterm1.cps.unizar.es + * cta.unizar.es * cuadrodemando.unizar.es + * cuarzo.unizar.es * cud.unizar.es * dade.unizar.es - * danae-http.cps.unizar.es + * data.i3a.unizar.es * db.unizar.es + * dd1-vmarin.unizar.es + * dd2-vmarin.unizar.es + * desinvenio.unizar.es * dftuz.unizar.es * didac.unizar.es - * dihana.cps.unizar.es + * diploma-ecografia.unizar.es * doe.unizar.es * dominio.unizar.es * eas.unizar.es * eci.unizar.es * empresa.unizar.es * epsh.unizar.es + * escarra.unizar.es * estructuraehistoria.unizar.es * eues.unizar.es + * evaluacion.unizar.es + * ezfac.unizar.es * ezpc05.unizar.es + * ezpc10.unizar.es * fa.unizar.es - * fiona.cps.unizar.es * fiona.unizar.es + * firmas.unizar.es * fis.unizar.es + * fismat.unizar.es + * flexvdi1.unizar.es + * flexvdi2.unizar.es + * fotoaragon.unizar.es + * franky.unizar.es + * gallego.unizar.es * gaz.unizar.es * gee.unizar.es * genmico.unizar.es - * giga.cps.unizar.es + * gestionaformacion.unizar.es + * gestionax.unizar.es + * gestux.unizar.es + * gifna.unizar.es * gios.unizar.es * gitel.unizar.es * gmail.unizar.es + * gme.unizar.es + * gmg.unizar.es * golem.unizar.es * goya.unizar.es + * granjalibre.unizar.es * gte.unizar.es * gtf.unizar.es * hermes.unizar.es * hi.unizar.es * hmc.unizar.es * hospedajeweb.unizar.es + * host5.zcam.unizar.es * how.unizar.es + * howlabdemo.unizar.es + * huecha.unizar.es * huesca.unizar.es + * ibon.unizar.es + * identidad2.unizar.es * ie.unizar.es * intercambio.unizar.es - * isc.cps.unizar.es + * ipcam-epsh.unizar.es + * ipcam-eupt.unizar.es * isc.unizar.es + * isuela.unizar.es * iuca.unizar.es + * iumawork.unizar.es * jabber.unizar.es + * janovasx.unizar.es * java.unizar.es * kasper.unizar.es + * labje.unizar.es * laimuz.unizar.es * lam.unizar.es * laurel.unizar.es + * ldap.i3a.unizar.es + * lfna.unizar.es + * lrf4.unizar.es + * lrfp.unizar.es + * m013-234.unizar.es + * m135-10.unizar.es + * m135-11.unizar.es + * m135-12.unizar.es + * m135-13.unizar.es + * m135-77.unizar.es + * m135-8.unizar.es + * m135-82.unizar.es + * m135-83.unizar.es + * m135-84.unizar.es + * m135-86.unizar.es + * m48-061.unizar.es * mae.unizar.es * mantenimiento.unizar.es + * marbore.unizar.es + * marino.unizar.es * marketing.unizar.es * martin.unizar.es * meba.unizar.es @@ -102,61 +257,123 @@ Fetch error: http://mularroya10.cps.unizar.es/ => https://mularroya10.cps.unizar * milksci.unizar.es * mistral.unizar.es * moncayo.unizar.es - * monet.cps.unizar.es + * moodle2ld1.unizar.es + * moodle2ld2.unizar.es + * moodle2web1.unizar.es + * moodle2web2.unizar.es + * moodle2web3.unizar.es + * moodle2web4.unizar.es + * moodle2web5.unizar.es + * mysqlweb.unizar.es + * noema2bis.unizar.es * ns.unizar.es * ntp.unizar.es * ntp1.unizar.es + * nuez.unizar.es * ocs.unizar.es * ode.unizar.es - * odyssea.cps.unizar.es + * om4moodle.unizar.es + * openmeetings.unizar.es * osluz.unizar.es + * osm.unizar.es + * otriserv.unizar.es * pandora.unizar.es + * pcmap.unizar.es + * piedra.unizar.es + * plyca3.unizar.es + * plyca4.unizar.es + * pmoncayo.unizar.es * posta.unizar.es * prensa.unizar.es + * proyectista-piping.unizar.es * proyectosocial.unizar.es * psfunizar7.unizar.es + * psfunizar9.unizar.es * pulsar.unizar.es + * pulsarsrv.unizar.es * puz.unizar.es * qi.unizar.es * radio.unizar.es + * relayvirtual1.unizar.es * renaissance.unizar.es + * riemann.unizar.es + * roble.unizar.es + * roble1.unizar.es + * roble2.unizar.es * robotics.unizar.es * robots.unizar.es + * rrhhexp.unizar.es * s.unizar.es + * sage-opt.unizar.es * sai.unizar.es * saturno.unizar.es * score.unizar.es + * sede.unizar.es * seim.unizar.es + * server2-epsh.unizar.es + * server2-eupt.unizar.es + * server3-eupt.unizar.es + * server4-epsh.unizar.es + * server4-eupt.unizar.es + * servet.unizar.es + * sid01.unizar.es + * sipui.unizar.es * smc.unizar.es * softlibre.unizar.es + * sorollaformacion.unizar.es + * sorollaformacionsso.unizar.es + * sorores.unizar.es * sso.unizar.es * stc.unizar.es + * subordan.unizar.es * sultan.unizar.es + * supercoco.unizar.es + * superjuan.unizar.es + * tablon.unizar.es * tama.unizar.es * tejo.unizar.es * termograf.unizar.es + * tic.unizar.es + * tiermas.unizar.es + * tiip.eina.unizar.es * titan.unizar.es * titulaciones.unizar.es + * torla.unizar.es + * tramita.unizar.es * tv.unizar.es * umi.unizar.es * uprl.unizar.es + * urraca.unizar.es * ursus.unizar.es * utc.unizar.es * uvt.unizar.es + * uxxits1.unizar.es * veterinaria.unizar.es + * vibida.unizar.es + * vitalinux.unizar.es + * vitaweb.unizar.es * vpn1.unizar.es * vpn2.unizar.es + * web-ter.unizar.es * webaccess.unizar.es * webadmin.unizar.es * webdev.unizar.es + * webeld1.unizar.es + * webeld2.unizar.es + * webesolr1.unizar.es + * webesolr2.unizar.es + * webeweb3.unizar.es + * webmail.unizar.es (unknown issuer) * webserver.unizar.es * websurveys.unizar.es * wwwad.unizar.es * wzar.unizar.es * xxx.unizar.es + * zaramit.unizar.es * zenon.unizar.es + * zuriza.unizar.es --> - + @@ -166,24 +383,25 @@ Fetch error: http://mularroya10.cps.unizar.es/ => https://mularroya10.cps.unizar + - - + + - + @@ -198,9 +416,13 @@ Fetch error: http://mularroya10.cps.unizar.es/ => https://mularroya10.cps.unizar + + + + @@ -218,10 +440,12 @@ Fetch error: http://mularroya10.cps.unizar.es/ => https://mularroya10.cps.unizar + + @@ -232,6 +456,8 @@ Fetch error: http://mularroya10.cps.unizar.es/ => https://mularroya10.cps.unizar + + @@ -248,7 +474,7 @@ Fetch error: http://mularroya10.cps.unizar.es/ => https://mularroya10.cps.unizar - + @@ -262,12 +488,15 @@ Fetch error: http://mularroya10.cps.unizar.es/ => https://mularroya10.cps.unizar + + + @@ -278,6 +507,8 @@ Fetch error: http://mularroya10.cps.unizar.es/ => https://mularroya10.cps.unizar + + @@ -287,9 +518,11 @@ Fetch error: http://mularroya10.cps.unizar.es/ => https://mularroya10.cps.unizar + - + + diff --git a/src/chrome/content/rules/Unizg.hr.xml b/src/chrome/content/rules/Unizg.hr.xml new file mode 100644 index 000000000000..14b43fbd0d5c --- /dev/null +++ b/src/chrome/content/rules/Unizg.hr.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/UnlimitedHost.xml b/src/chrome/content/rules/UnlimitedHost.xml deleted file mode 100644 index 4c4fa094a594..000000000000 --- a/src/chrome/content/rules/UnlimitedHost.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Unmitigated_Risk.com.xml b/src/chrome/content/rules/Unmitigated_Risk.com.xml index 727e350fad8c..d9e416f3f9d0 100644 --- a/src/chrome/content/rules/Unmitigated_Risk.com.xml +++ b/src/chrome/content/rules/Unmitigated_Risk.com.xml @@ -32,7 +32,7 @@ - + https://www.uno.im/: (6, 'Could not resolve h - .www.uno.im --> - + diff --git a/src/chrome/content/rules/UnoEuro.com.xml b/src/chrome/content/rules/UnoEuro.com.xml index 5b9a746db3bc..11af8ccbb8f9 100644 --- a/src/chrome/content/rules/UnoEuro.com.xml +++ b/src/chrome/content/rules/UnoEuro.com.xml @@ -18,13 +18,18 @@ - + + + + + + + - + diff --git a/src/chrome/content/rules/Unop.uk.xml b/src/chrome/content/rules/Unop.uk.xml index d6172ca83dc5..3d84c73a586c 100644 --- a/src/chrome/content/rules/Unop.uk.xml +++ b/src/chrome/content/rules/Unop.uk.xml @@ -16,7 +16,7 @@ --> - + + + + + + + + + + diff --git a/src/chrome/content/rules/Unrealty.net.xml b/src/chrome/content/rules/Unrealty.net.xml new file mode 100644 index 000000000000..a27eb6fa593f --- /dev/null +++ b/src/chrome/content/rules/Unrealty.net.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Unrestrict.li.xml b/src/chrome/content/rules/Unrestrict.li.xml deleted file mode 100644 index 9b8ed82d2469..000000000000 --- a/src/chrome/content/rules/Unrestrict.li.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Unsplash.com.xml b/src/chrome/content/rules/Unsplash.com.xml new file mode 100644 index 000000000000..044651a931fb --- /dev/null +++ b/src/chrome/content/rules/Unsplash.com.xml @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Untangle.com.xml b/src/chrome/content/rules/Untangle.com.xml index 5443308e08da..3e229b26362e 100644 --- a/src/chrome/content/rules/Untangle.com.xml +++ b/src/chrome/content/rules/Untangle.com.xml @@ -31,7 +31,7 @@ Fetch error: http://promo.untangle.com/ => https://promo.untangle.com/: (51, "SS ˢ Secured by us --> - + @@ -48,7 +48,7 @@ Fetch error: http://promo.untangle.com/ => https://promo.untangle.com/: (51, "SS - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Unvanquished.net.xml b/src/chrome/content/rules/Unvanquished.net.xml index e1d340b3a0ea..9486ed075020 100644 --- a/src/chrome/content/rules/Unvanquished.net.xml +++ b/src/chrome/content/rules/Unvanquished.net.xml @@ -7,7 +7,8 @@ - + + diff --git a/src/chrome/content/rules/Unwire.hk.xml b/src/chrome/content/rules/Unwire.hk.xml index c3f1b5715bb5..2a5780c96ba5 100644 --- a/src/chrome/content/rules/Unwire.hk.xml +++ b/src/chrome/content/rules/Unwire.hk.xml @@ -1,33 +1,32 @@ - - - - - + + + - + + + diff --git a/src/chrome/content/rules/Unwire.xml b/src/chrome/content/rules/Unwire.xml deleted file mode 100644 index 68712b1878de..000000000000 --- a/src/chrome/content/rules/Unwire.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/UnwiredLtd.com.xml b/src/chrome/content/rules/UnwiredLtd.com.xml new file mode 100644 index 000000000000..562f42df321d --- /dev/null +++ b/src/chrome/content/rules/UnwiredLtd.com.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/UofMHealth.org.xml b/src/chrome/content/rules/UofMHealth.org.xml index f9d8c7c5db7b..02460aada8f6 100644 --- a/src/chrome/content/rules/UofMHealth.org.xml +++ b/src/chrome/content/rules/UofMHealth.org.xml @@ -4,7 +4,7 @@ - + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Upaiyun.com.xml b/src/chrome/content/rules/Upaiyun.com.xml index 160abd5728e4..ec65cb6f7022 100644 --- a/src/chrome/content/rules/Upaiyun.com.xml +++ b/src/chrome/content/rules/Upaiyun.com.xml @@ -4,23 +4,22 @@ Invalid certificate: - upaiyun.com - www.upaiyun.com - --> + + + + + - - - - - + - diff --git a/src/chrome/content/rules/Upay.co.uk.xml b/src/chrome/content/rules/Upay.co.uk.xml index cc78368e1665..9ed4278ca6a1 100644 --- a/src/chrome/content/rules/Upay.co.uk.xml +++ b/src/chrome/content/rules/Upay.co.uk.xml @@ -7,7 +7,7 @@ Fetch error: http://www.upaymobile.co.uk/ => https://www.upaymobile.co.uk/: (51, Disabled by https-everywhere-checker because: Fetch error: http://upay.co.uk/ => https://www.upay.co.uk/: (6, 'Could not resolve host: upay.co.uk') --> - + diff --git a/src/chrome/content/rules/Update_Framework.com.xml b/src/chrome/content/rules/Update_Framework.com.xml deleted file mode 100644 index e6054547b5d6..000000000000 --- a/src/chrome/content/rules/Update_Framework.com.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Upf.edu.xml b/src/chrome/content/rules/Upf.edu.xml index ffbf5420e281..ca014861b81a 100644 --- a/src/chrome/content/rules/Upf.edu.xml +++ b/src/chrome/content/rules/Upf.edu.xml @@ -12,7 +12,7 @@ Fetch error: http://www.iula.upf.edu/ => https://www.iula.upf.edu/: (28, 'Connec Ruleset for upf.edu, the Pompeu Fabra University website. See . - + Not supporting HTTPS or using an invalid certificate: * aaa.idec.upf.edu * abacdiscoverer.upf.edu @@ -92,7 +92,7 @@ Fetch error: http://www.iula.upf.edu/ => https://www.iula.upf.edu/: (28, 'Connec * videowork-linux-2.gti.upf.edu * vinson2.upf.edu --> - + diff --git a/src/chrome/content/rules/Upic.me.xml b/src/chrome/content/rules/Upic.me.xml deleted file mode 100644 index d33767f1a05b..000000000000 --- a/src/chrome/content/rules/Upic.me.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Upickem.net.xml b/src/chrome/content/rules/Upickem.net.xml index 4058b3c003e7..7fda3b7efa7c 100644 --- a/src/chrome/content/rules/Upickem.net.xml +++ b/src/chrome/content/rules/Upickem.net.xml @@ -48,7 +48,7 @@ * Secured by us --> - + @@ -66,7 +66,7 @@ - + https://www.uplay.ubi.com/: (35, 'error:14077458:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 unrecognized name') -Fetch error: http://www.uplay.ubi.com/ => https://www.uplay.ubi.com/: (35, 'error:14077458:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 unrecognized name') - -Disabled by https-everywhere-checker because: -Fetch error: http://uplay.ubi.com/ => https://www.uplay.ubi.com/: (35, 'error:14077458:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 unrecognized name') -Fetch error: http://www.uplay.ubi.com/ => https://www.uplay.ubi.com/: (35, 'error:14077458:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 unrecognized name') ---> - - - - - - diff --git a/src/chrome/content/rules/UploadHero.co.xml b/src/chrome/content/rules/UploadHero.co.xml deleted file mode 100644 index 6f7cc031d6e6..000000000000 --- a/src/chrome/content/rules/UploadHero.co.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Uploaded.net.xml b/src/chrome/content/rules/Uploaded.net.xml index dc839fbec3cc..e3e7136708ab 100644 --- a/src/chrome/content/rules/Uploaded.net.xml +++ b/src/chrome/content/rules/Uploaded.net.xml @@ -24,7 +24,7 @@ --> - + https://uploading.com/: (60, 'SSL certific Cert doesn't match www. --> - + - + + diff --git a/src/chrome/content/rules/Upo.es.xml b/src/chrome/content/rules/Upo.es.xml index 20123e61301f..a6fb99f5fbbf 100644 --- a/src/chrome/content/rules/Upo.es.xml +++ b/src/chrome/content/rules/Upo.es.xml @@ -32,7 +32,7 @@ Fetch error: http://riemann.upo.es/ => https://riemann.upo.es/: (51, "SSL: no al * www1.upo.es * www.bioinfocabd.upo.es --> - + diff --git a/src/chrome/content/rules/UppSite.xml b/src/chrome/content/rules/UppSite.xml index 2ad4ce8d46a5..cb53197e4336 100644 --- a/src/chrome/content/rules/UppSite.xml +++ b/src/chrome/content/rules/UppSite.xml @@ -4,7 +4,7 @@ - + - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Upstart.xml b/src/chrome/content/rules/Upstart.xml deleted file mode 100644 index 505626e01bb3..000000000000 --- a/src/chrome/content/rules/Upstart.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Uptilo.xml b/src/chrome/content/rules/Uptilo.xml index 7dc74715c1a4..7a15785293eb 100644 --- a/src/chrome/content/rules/Uptilo.xml +++ b/src/chrome/content/rules/Uptilo.xml @@ -9,16 +9,17 @@ - + + + - + - + diff --git a/src/chrome/content/rules/UptimeRobot.com.xml b/src/chrome/content/rules/UptimeRobot.com.xml new file mode 100644 index 000000000000..d55001bb8808 --- /dev/null +++ b/src/chrome/content/rules/UptimeRobot.com.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Upton-Home-Hardware.xml b/src/chrome/content/rules/Upton-Home-Hardware.xml deleted file mode 100644 index 9965d5475f1b..000000000000 --- a/src/chrome/content/rules/Upton-Home-Hardware.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Upvoted.com.xml b/src/chrome/content/rules/Upvoted.com.xml index 56417abf7690..27e52254d0eb 100644 --- a/src/chrome/content/rules/Upvoted.com.xml +++ b/src/chrome/content/rules/Upvoted.com.xml @@ -12,7 +12,7 @@ - + - + diff --git a/src/chrome/content/rules/Ur.se.xml b/src/chrome/content/rules/Ur.se.xml new file mode 100644 index 000000000000..0c19ef52445c --- /dev/null +++ b/src/chrome/content/rules/Ur.se.xml @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Uralfd.ru.xml b/src/chrome/content/rules/Uralfd.ru.xml deleted file mode 100644 index 6d5a0e4ab9bb..000000000000 --- a/src/chrome/content/rules/Uralfd.ru.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - diff --git a/src/chrome/content/rules/Urban-Media.xml b/src/chrome/content/rules/Urban-Media.xml new file mode 100644 index 000000000000..1ddc3c0acd89 --- /dev/null +++ b/src/chrome/content/rules/Urban-Media.xml @@ -0,0 +1,45 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Urban_Villa.nl.xml b/src/chrome/content/rules/Urban_Villa.nl.xml index 9156aab88a1c..2f67cba75e05 100644 --- a/src/chrome/content/rules/Urban_Villa.nl.xml +++ b/src/chrome/content/rules/Urban_Villa.nl.xml @@ -5,7 +5,7 @@ Fetch error: http://urbanvilla.nl/ => https://urbanvilla.nl/: (60, 'SSL certific Fetch error: http://www.urbanvilla.nl/ => https://www.urbanvilla.nl/: (60, 'SSL certificate problem: self signed certificate') --> - + diff --git a/src/chrome/content/rules/Urbanartcloud.com.xml b/src/chrome/content/rules/Urbanartcloud.com.xml deleted file mode 100644 index 01d28c175485..000000000000 --- a/src/chrome/content/rules/Urbanartcloud.com.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/UrlTrends.xml b/src/chrome/content/rules/UrlTrends.xml index 2a1b19abebf3..82adfcffb673 100644 --- a/src/chrome/content/rules/UrlTrends.xml +++ b/src/chrome/content/rules/UrlTrends.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Urospace.xml b/src/chrome/content/rules/Urospace.xml index 86d1117a6dbb..bf6b62729e9b 100644 --- a/src/chrome/content/rules/Urospace.xml +++ b/src/chrome/content/rules/Urospace.xml @@ -17,7 +17,7 @@ Fetch error: http://www.urospace.de/ => https://urospace.de/: (60, 'SSL certific - www.urospace.de (cert only matches ^urospace.de) --> - + @@ -33,4 +33,4 @@ Fetch error: http://www.urospace.de/ => https://urospace.de/: (60, 'SSL certific - \ No newline at end of file + diff --git a/src/chrome/content/rules/Us-cert.gov.xml b/src/chrome/content/rules/Us-cert.gov.xml index 9b4b9696f818..93915c736fa0 100644 --- a/src/chrome/content/rules/Us-cert.gov.xml +++ b/src/chrome/content/rules/Us-cert.gov.xml @@ -5,7 +5,7 @@ Fetch error: http://preview.buildsecurityin.us-cert.gov/ => https://preview.buil --> - + diff --git a/src/chrome/content/rules/Us.es.xml b/src/chrome/content/rules/Us.es.xml index 622df9487eca..bfa4a290fd49 100644 --- a/src/chrome/content/rules/Us.es.xml +++ b/src/chrome/content/rules/Us.es.xml @@ -95,7 +95,7 @@ Fetch error: http://www.lsi.us.es/ => https://www.lsi.us.es/: (60, 'SSL certific * www.sav.us.es * www.us.es --> - + diff --git a/src/chrome/content/rules/Us_Magazine.com.xml b/src/chrome/content/rules/Us_Magazine.com.xml index c0ae6198c539..40f55d8ee1df 100644 --- a/src/chrome/content/rules/Us_Magazine.com.xml +++ b/src/chrome/content/rules/Us_Magazine.com.xml @@ -1,9 +1,4 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Usablenet.com.xml b/src/chrome/content/rules/Usablenet.com.xml index 64fe45a5126a..b81e12fdc532 100644 --- a/src/chrome/content/rules/Usablenet.com.xml +++ b/src/chrome/content/rules/Usablenet.com.xml @@ -16,7 +16,7 @@ --> - + + + + + + + + diff --git a/src/chrome/content/rules/Use-Enco.com.xml b/src/chrome/content/rules/Use-Enco.com.xml index d90fa52fa8dd..c4385021501c 100644 --- a/src/chrome/content/rules/Use-Enco.com.xml +++ b/src/chrome/content/rules/Use-Enco.com.xml @@ -8,10 +8,10 @@ Fetch error: http://use-enco.com/ => https://www.use-enco.com/: (28, 'Connection Cert only matches www. --> - + - + diff --git a/src/chrome/content/rules/UseRemarkable.com.xml b/src/chrome/content/rules/UseRemarkable.com.xml new file mode 100644 index 000000000000..16b06fd48902 --- /dev/null +++ b/src/chrome/content/rules/UseRemarkable.com.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Use_SSH_001.com.xml b/src/chrome/content/rules/Use_SSH_001.com.xml deleted file mode 100644 index 8c62b76569a7..000000000000 --- a/src/chrome/content/rules/Use_SSH_001.com.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Usenet-Junction.xml b/src/chrome/content/rules/Usenet-Junction.xml index e1fd2fbcf576..e61a251ae3ac 100644 --- a/src/chrome/content/rules/Usenet-Junction.xml +++ b/src/chrome/content/rules/Usenet-Junction.xml @@ -4,7 +4,7 @@ - + diff --git a/src/chrome/content/rules/UsenetServer.xml b/src/chrome/content/rules/UsenetServer.xml index 41816d8479a5..295e957d92fa 100644 --- a/src/chrome/content/rules/UsenetServer.xml +++ b/src/chrome/content/rules/UsenetServer.xml @@ -1,13 +1,14 @@ - + + + - + - + diff --git a/src/chrome/content/rules/UserEcho.com.xml b/src/chrome/content/rules/UserEcho.com.xml index 8067f8df2dea..1c62cc4bf276 100644 --- a/src/chrome/content/rules/UserEcho.com.xml +++ b/src/chrome/content/rules/UserEcho.com.xml @@ -9,9 +9,6 @@ - - - @@ -31,7 +28,7 @@ - + diff --git a/src/chrome/content/rules/UserScape.xml b/src/chrome/content/rules/UserScape.xml index a317c7acf99a..4b7773b99866 100644 --- a/src/chrome/content/rules/UserScape.xml +++ b/src/chrome/content/rules/UserScape.xml @@ -14,7 +14,7 @@ Fetch error: http://drop.userscape.com/ => https://www.userscape.com/: Too many ¹: Serves 404s on all requests ²: Mismatch --> - + diff --git a/src/chrome/content/rules/Userfox.xml b/src/chrome/content/rules/Userfox.xml index 54124229cd5b..ac799a210a66 100644 --- a/src/chrome/content/rules/Userfox.xml +++ b/src/chrome/content/rules/Userfox.xml @@ -34,10 +34,13 @@ Fetch error: http://userfox.com/ => https://www.userfox.com/: (6, 'Could not res - static (→ d2y71mjhnajxcg.cloudfront.net) --> - + - + + + + - + diff --git a/src/chrome/content/rules/Userscontent.net.xml b/src/chrome/content/rules/Userscontent.net.xml index 031c8beb014c..037d2cd0609f 100644 --- a/src/chrome/content/rules/Userscontent.net.xml +++ b/src/chrome/content/rules/Userscontent.net.xml @@ -5,7 +5,7 @@ Fetch error: http://cdn-eu-i1.userscontent.net/thumbs/662/662020/153_m.jpg => ht Fetch error: http://cdn-eu-i1.userscontent.net/ => https://cdn-eu-i1.userscontent.net/: (60, 'SSL certificate problem: self signed certificate') --> - + diff --git a/src/chrome/content/rules/Uservoice-clients.xml b/src/chrome/content/rules/Uservoice-clients.xml index 64d94f368fbf..5f96748a3b59 100644 --- a/src/chrome/content/rules/Uservoice-clients.xml +++ b/src/chrome/content/rules/Uservoice-clients.xml @@ -4,7 +4,6 @@ --> - @@ -17,7 +16,7 @@ - + - diff --git a/src/chrome/content/rules/Usesthis.com.xml b/src/chrome/content/rules/Usesthis.com.xml index 28045454c8ad..41e618d21c88 100644 --- a/src/chrome/content/rules/Usesthis.com.xml +++ b/src/chrome/content/rules/Usesthis.com.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.usesthis.com/ => https://www.usesthis.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.usesthis.com'") --> - + diff --git a/src/chrome/content/rules/Ushahidi.com.xml b/src/chrome/content/rules/Ushahidi.com.xml deleted file mode 100644 index 7a74281975dc..000000000000 --- a/src/chrome/content/rules/Ushahidi.com.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/UsrJoy.xml b/src/chrome/content/rules/UsrJoy.xml deleted file mode 100644 index 82d3d4762a8f..000000000000 --- a/src/chrome/content/rules/UsrJoy.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Utah-Education-Network.xml b/src/chrome/content/rules/Utah-Education-Network.xml index 802bdbe89642..122da7f6ea16 100644 --- a/src/chrome/content/rules/Utah-Education-Network.xml +++ b/src/chrome/content/rules/Utah-Education-Network.xml @@ -12,7 +12,7 @@ Fetch error: http://uen.org/ => https://www.eun.org/: (28, 'Connection timed out - uen.org/^(css|images)+/.+ - pioneer.uen.org --> - + @@ -20,7 +20,7 @@ Fetch error: http://uen.org/ => https://www.eun.org/: (28, 'Connection timed out - + https://secure.utopia-web.com/: (6, 'Could not resolve host: secure.utopia-web.com') - -Disabled by https-everywhere-checker because: -Fetch error: http://secure.utopia-web.com/ => https://secure.utopia-web.com/: (6, 'Could not resolve host: secure.utopia-web.com') ---> - - - - - - - - - diff --git a/src/chrome/content/rules/Utopia.xml b/src/chrome/content/rules/Utopia.xml index 692e5b87e7cc..8faf2dc6274a 100644 --- a/src/chrome/content/rules/Utopia.xml +++ b/src/chrome/content/rules/Utopia.xml @@ -1,8 +1,11 @@ - + @@ -11,6 +14,9 @@ + + diff --git a/src/chrome/content/rules/Utopia_net.org.xml b/src/chrome/content/rules/Utopia_net.org.xml index 5895ee7c7c56..5aea8c4c2a34 100644 --- a/src/chrome/content/rules/Utopia_net.org.xml +++ b/src/chrome/content/rules/Utopia_net.org.xml @@ -28,7 +28,7 @@ --> - + https://tresor.uv.es/: (6, 'Could not resol See . Not supporting HTTPS or using an invalid certificate: - + * acceso.uv.es * anglogermanica.uv.es * aposta.uv.es @@ -73,7 +73,7 @@ Fetch error: http://tresor.uv.es/ => https://tresor.uv.es/: (6, 'Could not resol * uvx.uv.es * webific.ific.uv.es --> - + diff --git a/src/chrome/content/rules/Uvnc.com.xml b/src/chrome/content/rules/Uvnc.com.xml new file mode 100644 index 000000000000..030d63cd4fa8 --- /dev/null +++ b/src/chrome/content/rules/Uvnc.com.xml @@ -0,0 +1,18 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/V-identity.com.xml b/src/chrome/content/rules/V-identity.com.xml index d56af7bc5d52..7bc4db531052 100644 --- a/src/chrome/content/rules/V-identity.com.xml +++ b/src/chrome/content/rules/V-identity.com.xml @@ -8,16 +8,16 @@ Fetch error: http://v-identity.com/ => https://www.v-identity.com/: (6, 'Could n - ^ (404) --> - + - + + - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/V2-Cigs.xml b/src/chrome/content/rules/V2-Cigs.xml deleted file mode 100644 index 4d251202839e..000000000000 --- a/src/chrome/content/rules/V2-Cigs.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/V3.co.uk.xml b/src/chrome/content/rules/V3.co.uk.xml index 2c80d2f32d59..a7d9c2633fa1 100644 --- a/src/chrome/content/rules/V3.co.uk.xml +++ b/src/chrome/content/rules/V3.co.uk.xml @@ -18,4 +18,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/V6ak.com.xml b/src/chrome/content/rules/V6ak.com.xml index 7c1780f0c6bf..f6686b8f867b 100644 --- a/src/chrome/content/rules/V6ak.com.xml +++ b/src/chrome/content/rules/V6ak.com.xml @@ -16,7 +16,7 @@ --> - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/VBG.de.xml b/src/chrome/content/rules/VBG.de.xml index 05750f3dfab6..f1adb048890c 100644 --- a/src/chrome/content/rules/VBG.de.xml +++ b/src/chrome/content/rules/VBG.de.xml @@ -2,7 +2,7 @@ - + diff --git a/src/chrome/content/rules/VBSEO.xml b/src/chrome/content/rules/VBSEO.xml index fd7ae3353d15..13fff2e23368 100644 --- a/src/chrome/content/rules/VBSEO.xml +++ b/src/chrome/content/rules/VBSEO.xml @@ -20,4 +20,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/VB_static.co.xml b/src/chrome/content/rules/VB_static.co.xml index afa38346cc64..9b8eeaed6f8e 100644 --- a/src/chrome/content/rules/VB_static.co.xml +++ b/src/chrome/content/rules/VB_static.co.xml @@ -9,7 +9,7 @@ Fetch error: http://curate.vbstatic.co/ => https://curate.vbstatic.co/: (60, 'SS www.vbstatic.co doesn't exist. --> - + diff --git a/src/chrome/content/rules/VBulletin.xml b/src/chrome/content/rules/VBulletin.xml index b8f1ae37677a..1ed56cd29287 100644 --- a/src/chrome/content/rules/VBulletin.xml +++ b/src/chrome/content/rules/VBulletin.xml @@ -6,7 +6,7 @@ - + diff --git a/src/chrome/content/rules/VC-Server.xml b/src/chrome/content/rules/VC-Server.xml index 7fef0231fe4e..d821d4058ca8 100644 --- a/src/chrome/content/rules/VC-Server.xml +++ b/src/chrome/content/rules/VC-Server.xml @@ -1,24 +1,21 @@ - - + + - + - - - - - \ No newline at end of file + diff --git a/src/chrome/content/rules/VCAB.com.xml b/src/chrome/content/rules/VCAB.com.xml index 3ae73fb5fc4d..9dadf63f34fb 100644 --- a/src/chrome/content/rules/VCAB.com.xml +++ b/src/chrome/content/rules/VCAB.com.xml @@ -11,12 +11,11 @@ Fetch error: http://secure.vcab.com/ => https://secure.vcab.com/: (60, 'SSL cert * Works; mismatched, CN: secure.vcab.com --> - + - + diff --git a/src/chrome/content/rules/VCD.org.xml b/src/chrome/content/rules/VCD.org.xml index bd7c4a5aa17d..29676b5d52f0 100644 --- a/src/chrome/content/rules/VCD.org.xml +++ b/src/chrome/content/rules/VCD.org.xml @@ -14,10 +14,10 @@ Fetch error: http://bildungsservice.vcd.org/ => https://bildungsservice.vcd.org/ ¹: Redirects to www.vcd.org ²: Mismatch --> - + - + diff --git a/src/chrome/content/rules/VCE.com.xml b/src/chrome/content/rules/VCE.com.xml index 5ac16de6badb..7b65aa0ee2be 100644 --- a/src/chrome/content/rules/VCE.com.xml +++ b/src/chrome/content/rules/VCE.com.xml @@ -24,4 +24,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/VClock.com.xml b/src/chrome/content/rules/VClock.com.xml new file mode 100644 index 000000000000..e822547af189 --- /dev/null +++ b/src/chrome/content/rules/VClock.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/VDI-Wissensforum.de.xml b/src/chrome/content/rules/VDI-Wissensforum.de.xml index e4022a9faef8..ce6cf8991b52 100644 --- a/src/chrome/content/rules/VDI-Wissensforum.de.xml +++ b/src/chrome/content/rules/VDI-Wissensforum.de.xml @@ -14,7 +14,7 @@ --> - + - + + + + + + + diff --git a/src/chrome/content/rules/VEVO.xml b/src/chrome/content/rules/VEVO.xml index bbe1df6a6954..195b255a901d 100644 --- a/src/chrome/content/rules/VEVO.xml +++ b/src/chrome/content/rules/VEVO.xml @@ -34,27 +34,11 @@ - + - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/VG-WORT.xml b/src/chrome/content/rules/VG-WORT.xml index 94ef57389a5b..0c20afc0c6cb 100644 --- a/src/chrome/content/rules/VG-WORT.xml +++ b/src/chrome/content/rules/VG-WORT.xml @@ -11,7 +11,7 @@ - + - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/VIM-Adventures.com.xml b/src/chrome/content/rules/VIM-Adventures.com.xml new file mode 100644 index 000000000000..407aa6ded6bf --- /dev/null +++ b/src/chrome/content/rules/VIM-Adventures.com.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/VIOFO.com.xml b/src/chrome/content/rules/VIOFO.com.xml new file mode 100644 index 000000000000..76f55bcfa07a --- /dev/null +++ b/src/chrome/content/rules/VIOFO.com.xml @@ -0,0 +1,11 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/VIP.de.xml b/src/chrome/content/rules/VIP.de.xml deleted file mode 100644 index f26a60a6e637..000000000000 --- a/src/chrome/content/rules/VIP.de.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/VIPLeague.cc.xml b/src/chrome/content/rules/VIPLeague.cc.xml new file mode 100644 index 000000000000..3b6c6a402bfc --- /dev/null +++ b/src/chrome/content/rules/VIPLeague.cc.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/VIRURL.xml b/src/chrome/content/rules/VIRURL.xml index 9d5c4d917c53..62b91909c0b0 100644 --- a/src/chrome/content/rules/VIRURL.xml +++ b/src/chrome/content/rules/VIRURL.xml @@ -8,7 +8,7 @@ Fetch error: http://www.virurl.com/ => https://www.virurl.com/: (6, 'Could not r Automatically by https-everywhere-checker because: Fetch error: http://spn.sr/ => https://spn.sr/: (6, 'Could not resolve host: revv.nu') --> - + @@ -19,10 +19,6 @@ Fetch error: http://spn.sr/ => https://spn.sr/: (6, 'Could not resolve host: rev - + - - - \ No newline at end of file + diff --git a/src/chrome/content/rules/VIVE.com.xml b/src/chrome/content/rules/VIVE.com.xml new file mode 100644 index 000000000000..621cd4c84796 --- /dev/null +++ b/src/chrome/content/rules/VIVE.com.xml @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/VK.se.xml b/src/chrome/content/rules/VK.se.xml index b77bd740b434..bee3ab532a6c 100644 --- a/src/chrome/content/rules/VK.se.xml +++ b/src/chrome/content/rules/VK.se.xml @@ -27,16 +27,16 @@ --> - + + - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/VMware.xml b/src/chrome/content/rules/VMware.xml index a4418934642a..b75777aa0538 100644 --- a/src/chrome/content/rules/VMware.xml +++ b/src/chrome/content/rules/VMware.xml @@ -1,9 +1,6 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/VOA_Chinese.com.xml b/src/chrome/content/rules/VOA_Chinese.com.xml index cfaacdfeab22..d1d663521f84 100644 --- a/src/chrome/content/rules/VOA_Chinese.com.xml +++ b/src/chrome/content/rules/VOA_Chinese.com.xml @@ -1,12 +1,7 @@ - - + diff --git a/src/chrome/content/rules/VOICE-Daily-Deals.xml b/src/chrome/content/rules/VOICE-Daily-Deals.xml index 23df35276788..81060ccfe76d 100644 --- a/src/chrome/content/rules/VOICE-Daily-Deals.xml +++ b/src/chrome/content/rules/VOICE-Daily-Deals.xml @@ -6,7 +6,7 @@ - + https://vpac.org/: (28, 'Connection timed out a Fetch error: http://www.vpac.org/ => https://www.vpac.org/: (7, 'Failed to connect to www.vpac.org port 443: Connection refused') --> - + diff --git a/src/chrome/content/rules/VPL.ca.xml b/src/chrome/content/rules/VPL.ca.xml new file mode 100644 index 000000000000..c305b5bbebc6 --- /dev/null +++ b/src/chrome/content/rules/VPL.ca.xml @@ -0,0 +1,27 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/VPN-Service.us.xml b/src/chrome/content/rules/VPN-Service.us.xml index 38388665ffcc..9a37877e01e6 100644 --- a/src/chrome/content/rules/VPN-Service.us.xml +++ b/src/chrome/content/rules/VPN-Service.us.xml @@ -1,25 +1,13 @@ - - + + - - - - - - - - + diff --git a/src/chrome/content/rules/VPN4ALL.xml b/src/chrome/content/rules/VPN4ALL.xml index e6ee760edb0f..2c528f414310 100644 --- a/src/chrome/content/rules/VPN4ALL.xml +++ b/src/chrome/content/rules/VPN4ALL.xml @@ -5,7 +5,7 @@ Fetch error: http://vpn4all.com/ => https://vpn4all.com/: (60, 'SSL certificate Fetch error: http://www.vpn4all.com/ => https://www.vpn4all.com/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + diff --git a/src/chrome/content/rules/VPNGate.net.xml b/src/chrome/content/rules/VPNGate.net.xml new file mode 100644 index 000000000000..92286065cac8 --- /dev/null +++ b/src/chrome/content/rules/VPNGate.net.xml @@ -0,0 +1,39 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/VPNGlobe.com.xml b/src/chrome/content/rules/VPNGlobe.com.xml index 010590111bc6..9bfc7f312bd0 100644 --- a/src/chrome/content/rules/VPNGlobe.com.xml +++ b/src/chrome/content/rules/VPNGlobe.com.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://my.vpnglobe.com/ => https://my.vpnglobe.com/: Too many redirects while fetching 'https://my.vpnglobe.com/' --> - + diff --git a/src/chrome/content/rules/VPNOverDNS.com.xml b/src/chrome/content/rules/VPNOverDNS.com.xml new file mode 100644 index 000000000000..3109fac5ba0a --- /dev/null +++ b/src/chrome/content/rules/VPNOverDNS.com.xml @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/src/chrome/content/rules/VPNReactor.xml b/src/chrome/content/rules/VPNReactor.xml index a7e3d20c6822..7e25bdb557e6 100644 --- a/src/chrome/content/rules/VPNReactor.xml +++ b/src/chrome/content/rules/VPNReactor.xml @@ -4,7 +4,7 @@ - + diff --git a/src/chrome/content/rules/VPN_Reviewer.com.xml b/src/chrome/content/rules/VPN_Reviewer.com.xml index 3af606984a14..c5ce580d89cb 100644 --- a/src/chrome/content/rules/VPN_Reviewer.com.xml +++ b/src/chrome/content/rules/VPN_Reviewer.com.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.vpnreviewer.com/ => https://www.vpnreviewer.com/: (52, 'Empty reply from server') --> - + diff --git a/src/chrome/content/rules/VPS.net-problematic.xml b/src/chrome/content/rules/VPS.net-problematic.xml index 82b31992359d..531ea96c573e 100644 --- a/src/chrome/content/rules/VPS.net-problematic.xml +++ b/src/chrome/content/rules/VPS.net-problematic.xml @@ -2,7 +2,7 @@ For rules that are on by default, see VPS.net.xml. --> - + diff --git a/src/chrome/content/rules/VSCo.co.xml b/src/chrome/content/rules/VSCo.co.xml index 094a5ee6df26..b0a66884cead 100644 --- a/src/chrome/content/rules/VSCo.co.xml +++ b/src/chrome/content/rules/VSCo.co.xml @@ -47,4 +47,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/VSHosting.xml b/src/chrome/content/rules/VSHosting.xml index a6ef8360b229..709112fa919f 100644 --- a/src/chrome/content/rules/VSHosting.xml +++ b/src/chrome/content/rules/VSHosting.xml @@ -9,6 +9,6 @@ - + diff --git a/src/chrome/content/rules/VSIP_Program.com.xml b/src/chrome/content/rules/VSIP_Program.com.xml deleted file mode 100644 index 61a0256b26cf..000000000000 --- a/src/chrome/content/rules/VSIP_Program.com.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/VSIXGallery.com.xml b/src/chrome/content/rules/VSIXGallery.com.xml new file mode 100644 index 000000000000..24a47c9da1e7 --- /dev/null +++ b/src/chrome/content/rules/VSIXGallery.com.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/VTAC.edu.au.xml b/src/chrome/content/rules/VTAC.edu.au.xml new file mode 100644 index 000000000000..7c8d28961a1e --- /dev/null +++ b/src/chrome/content/rules/VTAC.edu.au.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/VTB.com.xml b/src/chrome/content/rules/VTB.com.xml index c9ba2bd03df8..aaf0155bcd5d 100644 --- a/src/chrome/content/rules/VTB.com.xml +++ b/src/chrome/content/rules/VTB.com.xml @@ -34,7 +34,7 @@ - + https://vtcsec.ru/: (6, 'Could not resolve hos www: mismatched, CN: wargame.vtcsec.ru --> - + - + - + - + + - + https://www.vtunnel.com/: (7, 'Failed to * Secured by us --> - + - + diff --git a/src/chrome/content/rules/VU.nl.xml b/src/chrome/content/rules/VU.nl.xml index be49d22b2d27..62519c658c74 100644 --- a/src/chrome/content/rules/VU.nl.xml +++ b/src/chrome/content/rules/VU.nl.xml @@ -37,7 +37,7 @@ Fetch error: http://fbw.vu.nl/ => https://www.fbw.vu.nl/: (51, "SSL: no alternat ᵐ Mismatched --> - + @@ -73,7 +73,7 @@ Fetch error: http://fbw.vu.nl/ => https://www.fbw.vu.nl/: (51, "SSL: no alternat - + https://wiki.ro.vutbr.cz/: (60, 'SSL ce - knihovna.fme Untrusted root - www.tst.fme Untrusted root - - best.kn Expired, mixed css, mismatched, self-signed + - best.kn Expired, mixed css, mismatched, self-signed - aleph.lib Mixed css - lists Mismatched, untrusted root - www.lli Expired @@ -150,7 +150,7 @@ Fetch error: http://wiki.ro.vutbr.cz/ => https://wiki.ro.vutbr.cz/: (60, 'SSL ce - Bug on www.feec from c1.navrcholu.cz Unsecurable <= refused --> - + diff --git a/src/chrome/content/rules/VVCap.xml b/src/chrome/content/rules/VVCap.xml index 829fd838aa9c..3ba66076ea35 100644 --- a/src/chrome/content/rules/VVCap.xml +++ b/src/chrome/content/rules/VVCap.xml @@ -1,14 +1,11 @@ - - - - + + - + diff --git a/src/chrome/content/rules/VacationRoost.xml b/src/chrome/content/rules/VacationRoost.xml index a19065c20fe5..4a382e498598 100644 --- a/src/chrome/content/rules/VacationRoost.xml +++ b/src/chrome/content/rules/VacationRoost.xml @@ -4,12 +4,11 @@ Disabled by https-everywhere-checker because: Fetch error: http://ajax.vacationroost.com/ => https://ajax.vacationroost.com/: (6, 'Could not resolve host: ajax.vacationroost.com') --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Vacenza.com.xml b/src/chrome/content/rules/Vacenza.com.xml deleted file mode 100644 index 116bb82b1214..000000000000 --- a/src/chrome/content/rules/Vacenza.com.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Vagrant_Cloud.com.xml b/src/chrome/content/rules/Vagrant_Cloud.com.xml deleted file mode 100644 index 8a83c2f180ba..000000000000 --- a/src/chrome/content/rules/Vagrant_Cloud.com.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Vajehyab.com.xml b/src/chrome/content/rules/Vajehyab.com.xml new file mode 100644 index 000000000000..4863d14d4773 --- /dev/null +++ b/src/chrome/content/rules/Vajehyab.com.xml @@ -0,0 +1,9 @@ + + + + + + + diff --git a/src/chrome/content/rules/Vale_of_Glamorgan.gov.uk.xml b/src/chrome/content/rules/Vale_of_Glamorgan.gov.uk.xml index de7ddebb0b52..ffdcf638db92 100644 --- a/src/chrome/content/rules/Vale_of_Glamorgan.gov.uk.xml +++ b/src/chrome/content/rules/Vale_of_Glamorgan.gov.uk.xml @@ -71,7 +71,7 @@ - + + + + + + + diff --git a/src/chrome/content/rules/ValerieTarico.com.xml b/src/chrome/content/rules/ValerieTarico.com.xml new file mode 100644 index 000000000000..412eed73b4dd --- /dev/null +++ b/src/chrome/content/rules/ValerieTarico.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/ValidCreditCardNumber.com.xml b/src/chrome/content/rules/ValidCreditCardNumber.com.xml new file mode 100644 index 000000000000..6f0642a41d2a --- /dev/null +++ b/src/chrome/content/rules/ValidCreditCardNumber.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Valley-First-Credit-Union.xml b/src/chrome/content/rules/Valley-First-Credit-Union.xml index 124c069ecb21..f0954d4c7373 100644 --- a/src/chrome/content/rules/Valley-First-Credit-Union.xml +++ b/src/chrome/content/rules/Valley-First-Credit-Union.xml @@ -7,7 +7,7 @@ Fetch error: http://insurance.valleyfirst.com/ => https://insurance.valleyfirst. - dashband.valleyfirst.com --> - + diff --git a/src/chrome/content/rules/Valley_First_CU.org.xml b/src/chrome/content/rules/Valley_First_CU.org.xml index 77d29759616f..a8eea0b0827a 100644 --- a/src/chrome/content/rules/Valley_First_CU.org.xml +++ b/src/chrome/content/rules/Valley_First_CU.org.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://hb.valleyfirstcu.org/ => https://hb.valleyfirstcu.org/: (28, 'Connection timed out after 20004 milliseconds') --> - + diff --git a/src/chrome/content/rules/Valtiolle.fi-problematic.xml b/src/chrome/content/rules/Valtiolle.fi-problematic.xml index 84d2c4a9e4c2..08e75f928535 100644 --- a/src/chrome/content/rules/Valtiolle.fi-problematic.xml +++ b/src/chrome/content/rules/Valtiolle.fi-problematic.xml @@ -1,8 +1,8 @@ - + diff --git a/src/chrome/content/rules/Valtiolle.fi.xml b/src/chrome/content/rules/Valtiolle.fi.xml index 558ff59ac66a..d1276fa5c02b 100644 --- a/src/chrome/content/rules/Valtiolle.fi.xml +++ b/src/chrome/content/rules/Valtiolle.fi.xml @@ -15,7 +15,7 @@ - valtiolle.fi - www.valtiolle.fi - + --> diff --git a/src/chrome/content/rules/Valtion-taloudellinen-tutkimuskeskus.xml b/src/chrome/content/rules/Valtion-taloudellinen-tutkimuskeskus.xml index 14ed6c4bbb8a..92bdaadb9499 100644 --- a/src/chrome/content/rules/Valtion-taloudellinen-tutkimuskeskus.xml +++ b/src/chrome/content/rules/Valtion-taloudellinen-tutkimuskeskus.xml @@ -5,7 +5,7 @@ Fetch error: http://vatt.fi/ => https://vatt.fi/: (28, 'Connection timed out aft Fetch error: http://www.vatt.fi/ => https://www.vatt.fi/: (28, 'Connection timed out after 20000 milliseconds') --> - + diff --git a/src/chrome/content/rules/Value-Applications.xml b/src/chrome/content/rules/Value-Applications.xml index 5a5d1df34ad6..b67f93216e93 100644 --- a/src/chrome/content/rules/Value-Applications.xml +++ b/src/chrome/content/rules/Value-Applications.xml @@ -5,13 +5,13 @@ Fetch error: http://valueapplications.com/ => https://www.valueapplications.com/ Fetch error: http://www.valueapplications.com/ => https://www.valueapplications.com/: (28, 'Connection timed out after 20000 milliseconds') --> - + - + - + - + - + @@ -24,10 +24,7 @@ - - + diff --git a/src/chrome/content/rules/ValueClick.xml b/src/chrome/content/rules/ValueClick.xml index d757844f70d6..a949ab649289 100644 --- a/src/chrome/content/rules/ValueClick.xml +++ b/src/chrome/content/rules/ValueClick.xml @@ -52,7 +52,7 @@ Non-2xx HTTP code: http://valueclickmedia.com/ (200) => https://www.valueclickme ** Akamai --> - + diff --git a/src/chrome/content/rules/Valued_Opinions.xml b/src/chrome/content/rules/Valued_Opinions.xml deleted file mode 100644 index 1e3904260068..000000000000 --- a/src/chrome/content/rules/Valued_Opinions.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Valve-mismatches.xml b/src/chrome/content/rules/Valve-mismatches.xml deleted file mode 100644 index 24e035ac3123..000000000000 --- a/src/chrome/content/rules/Valve-mismatches.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Valve.xml b/src/chrome/content/rules/Valve.xml deleted file mode 100644 index 7785fac26e66..000000000000 --- a/src/chrome/content/rules/Valve.xml +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/ValveSoftware.com.xml b/src/chrome/content/rules/ValveSoftware.com.xml new file mode 100644 index 000000000000..bf65fee57cba --- /dev/null +++ b/src/chrome/content/rules/ValveSoftware.com.xml @@ -0,0 +1,24 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Vanco-Asiapac.com.xml b/src/chrome/content/rules/Vanco-Asiapac.com.xml index b89eecdd727b..adaef4d43223 100644 --- a/src/chrome/content/rules/Vanco-Asiapac.com.xml +++ b/src/chrome/content/rules/Vanco-Asiapac.com.xml @@ -8,12 +8,11 @@ Fetch error: http://o-zone.vanco-asiapac.com/ => https://o-zone.vanco-asiapac.co (www.): broken redirect --> - + - + diff --git a/src/chrome/content/rules/Vanco.co.uk.xml b/src/chrome/content/rules/Vanco.co.uk.xml deleted file mode 100644 index cfcc02f7eb42..000000000000 --- a/src/chrome/content/rules/Vanco.co.uk.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/VancouverInternationalAutoShow.com.xml b/src/chrome/content/rules/VancouverInternationalAutoShow.com.xml new file mode 100644 index 000000000000..6adfa36c787d --- /dev/null +++ b/src/chrome/content/rules/VancouverInternationalAutoShow.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Vanderbilt.org.xml b/src/chrome/content/rules/Vanderbilt.org.xml index 4b0fd527514d..3c7ddd079f96 100644 --- a/src/chrome/content/rules/Vanderbilt.org.xml +++ b/src/chrome/content/rules/Vanderbilt.org.xml @@ -3,18 +3,18 @@ Disabled by https-everywhere-checker because: Fetch error: http://sitemason.vanderbilt.edu/ => https://sitemason.vanderbilt.edu/: (7, 'Failed to connect to sitemason.vanderbilt.edu port 443: No route to host') see Vanderbilt.org-falsemixed.xml for other rules --> - + - - - - - + + + + + diff --git a/src/chrome/content/rules/Vanilla-Forums.xml b/src/chrome/content/rules/Vanilla-Forums.xml deleted file mode 100644 index 523f2b783a16..000000000000 --- a/src/chrome/content/rules/Vanilla-Forums.xml +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/VanillaMastercard.com.xml b/src/chrome/content/rules/VanillaMastercard.com.xml deleted file mode 100644 index ad82187a6069..000000000000 --- a/src/chrome/content/rules/VanillaMastercard.com.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/Vanity-Fair.xml b/src/chrome/content/rules/Vanity-Fair.xml index 35c12fee5f23..b321755475f7 100644 --- a/src/chrome/content/rules/Vanity-Fair.xml +++ b/src/chrome/content/rules/Vanity-Fair.xml @@ -1,30 +1,20 @@ - - - - - - - + + + - + + diff --git a/src/chrome/content/rules/Vantiv.com.xml b/src/chrome/content/rules/Vantiv.com.xml index c613ac335bb5..28293faa930e 100644 --- a/src/chrome/content/rules/Vantiv.com.xml +++ b/src/chrome/content/rules/Vantiv.com.xml @@ -16,10 +16,12 @@ - + + + + - + diff --git a/src/chrome/content/rules/Vara.nl.xml b/src/chrome/content/rules/Vara.nl.xml index d73bd042b588..f56b3c7a8096 100644 --- a/src/chrome/content/rules/Vara.nl.xml +++ b/src/chrome/content/rules/Vara.nl.xml @@ -47,7 +47,13 @@ --> - + + + + + + + @@ -70,7 +76,6 @@ - + diff --git a/src/chrome/content/rules/Variety.xml b/src/chrome/content/rules/Variety.xml index 7ab9964a44a3..aff3f4f8d03a 100644 --- a/src/chrome/content/rules/Variety.xml +++ b/src/chrome/content/rules/Variety.xml @@ -27,7 +27,7 @@ Fetch error: http://haas.variety.com/ => https://haas.reedbusiness.nl/: (28, 'Co ² Expired --> - + @@ -45,7 +45,7 @@ Fetch error: http://haas.variety.com/ => https://haas.reedbusiness.nl/: (28, 'Co - + - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Variomedia.de.xml b/src/chrome/content/rules/Variomedia.de.xml deleted file mode 100644 index 84edaa35c60e..000000000000 --- a/src/chrome/content/rules/Variomedia.de.xml +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Vast.xml b/src/chrome/content/rules/Vast.xml index edcf0ab910a5..d20ecb8a9d42 100644 --- a/src/chrome/content/rules/Vast.xml +++ b/src/chrome/content/rules/Vast.xml @@ -6,20 +6,20 @@ Fetch error: http://www.staticv.net/ => https://www.vast.com/: (51, "SSL: no alt Fetch error: http://vast.com/ => https://www.vast.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.vast.com'") --> - + - + + - + - + diff --git a/src/chrome/content/rules/Vast_Interactive.xml b/src/chrome/content/rules/Vast_Interactive.xml index c6bf2b9e3f4c..841272d433e0 100644 --- a/src/chrome/content/rules/Vast_Interactive.xml +++ b/src/chrome/content/rules/Vast_Interactive.xml @@ -13,7 +13,7 @@ Fetch error: http://dsply.com/ => https://dsply.com/: (51, "SSL: no alternative - www.dsply.com --> - + @@ -24,7 +24,7 @@ Fetch error: http://dsply.com/ => https://dsply.com/: (51, "SSL: no alternative - + https://vates.fr/: (60, 'SSL certificate problem: unable to get local issuer certificate') -Fetch error: http://piwik.vates.fr/ => https://piwik.vates.fr/: (60, 'SSL certificate problem: unable to get local issuer certificate') -Fetch error: http://www.vates.fr/ => https://www.vates.fr/: (60, 'SSL certificate problem: unable to get local issuer certificate') - - Fully covered hosts in *vates.fr: - - - (www.)? - - piwik - - - Insecure cookies are set for these hosts: - - - piwik.vates.fr - - - Mixed content: - - - Bug from piwik.vates.fr * - - * Secured by us + Invalid certificate: + andromeda.vates.fr + www.business.vates.fr + centaurus.vates.fr + orion.vates.fr + pegasus.vates.fr + xoa.vates.fr + + No working URL known: + business.vates.fr + shelter.vates.fr + web.vates.fr + web1.vates.fr --> - + - - + - - - - - - + diff --git a/src/chrome/content/rules/Vaultize.com.xml b/src/chrome/content/rules/Vaultize.com.xml new file mode 100644 index 000000000000..d1a364196daa --- /dev/null +++ b/src/chrome/content/rules/Vaultize.com.xml @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Vayabe.com.xml b/src/chrome/content/rules/Vayabe.com.xml index 567592f26853..e670d362b362 100644 --- a/src/chrome/content/rules/Vayabe.com.xml +++ b/src/chrome/content/rules/Vayabe.com.xml @@ -21,4 +21,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Vc.ru.xml b/src/chrome/content/rules/Vc.ru.xml index 8b1d867a7867..b4a39c638970 100644 --- a/src/chrome/content/rules/Vc.ru.xml +++ b/src/chrome/content/rules/Vc.ru.xml @@ -4,13 +4,13 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.vc.ru/ => https://www.vc.ru/: (51, "SSL: no alternative certificate subject name matches target host name 'www.vc.ru'") --> - + - + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Vcommerce.xml b/src/chrome/content/rules/Vcommerce.xml deleted file mode 100644 index bd788a0c7e35..000000000000 --- a/src/chrome/content/rules/Vcommerce.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Vdio.xml b/src/chrome/content/rules/Vdio.xml index 1fe5a0c1bb5a..e42840275e0c 100644 --- a/src/chrome/content/rules/Vdio.xml +++ b/src/chrome/content/rules/Vdio.xml @@ -16,7 +16,7 @@ Fetch error: http://www.vdio.com/ => https://www.rdio.com/: (7, 'Failed to conne (www.)?vdio.com: Refused --> - + diff --git a/src/chrome/content/rules/Vdopia.xml b/src/chrome/content/rules/Vdopia.xml index 1e53a0220bc0..ce9f9187c800 100644 --- a/src/chrome/content/rules/Vdopia.xml +++ b/src/chrome/content/rules/Vdopia.xml @@ -43,14 +43,20 @@ Fetch error: http://mobile.sb.vdopia.com/ => https://mobile.sb.vdopia.com/: (28, * Seems identical to www --> - + - - + + + + + + + + diff --git a/src/chrome/content/rules/Vdoth.com.xml b/src/chrome/content/rules/Vdoth.com.xml index 63b4194f029e..ff60fa1646fa 100644 --- a/src/chrome/content/rules/Vdoth.com.xml +++ b/src/chrome/content/rules/Vdoth.com.xml @@ -25,7 +25,7 @@ Fetch error: http://www.clipth.net/ => https://www.vdoth.com/: (28, 'Connection ** Unsecurable --> - + diff --git a/src/chrome/content/rules/Ve_Interactive.xml b/src/chrome/content/rules/Ve_Interactive.xml index 747189bca8e4..39f5065b646e 100644 --- a/src/chrome/content/rules/Ve_Interactive.xml +++ b/src/chrome/content/rules/Ve_Interactive.xml @@ -21,13 +21,19 @@ --> - + + + + + + + + - + diff --git a/src/chrome/content/rules/Veber.co.uk.xml b/src/chrome/content/rules/Veber.co.uk.xml index 590076973edf..dec7e52bd472 100644 --- a/src/chrome/content/rules/Veber.co.uk.xml +++ b/src/chrome/content/rules/Veber.co.uk.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://blog.veber.co.uk/ => https://blog.veber.co.uk/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/VectorMagic.com.xml b/src/chrome/content/rules/VectorMagic.com.xml new file mode 100644 index 000000000000..67a8368f643b --- /dev/null +++ b/src/chrome/content/rules/VectorMagic.com.xml @@ -0,0 +1,12 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Veeseo.xml b/src/chrome/content/rules/Veeseo.xml deleted file mode 100644 index 8006ba7d4108..000000000000 --- a/src/chrome/content/rules/Veeseo.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/VegFund.org.xml b/src/chrome/content/rules/VegFund.org.xml new file mode 100644 index 000000000000..268c0bf5ef9f --- /dev/null +++ b/src/chrome/content/rules/VegFund.org.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/VegasInc.com.xml b/src/chrome/content/rules/VegasInc.com.xml index 8e39ea4d7a3f..6aea0e0e5057 100644 --- a/src/chrome/content/rules/VegasInc.com.xml +++ b/src/chrome/content/rules/VegasInc.com.xml @@ -10,7 +10,7 @@ Non-2xx HTTP code: http://www.vegasinc.com/ (200) => https://www.vegasinc.com/ ( Mixed content blocking (MCB) tiggered: - m.vegasinc.com --> - + diff --git a/src/chrome/content/rules/Vegas_Partner_Lounge.xml b/src/chrome/content/rules/Vegas_Partner_Lounge.xml index 1ec47fb2c8c5..e1422d5f3268 100644 --- a/src/chrome/content/rules/Vegas_Partner_Lounge.xml +++ b/src/chrome/content/rules/Vegas_Partner_Lounge.xml @@ -10,16 +10,17 @@ Non-2xx HTTP code: http://vegaspartnerlounge.com/ (200) => https://vegaspartnerl - starpartner --> - + - + + + - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Vehicle_Visuals.com.xml b/src/chrome/content/rules/Vehicle_Visuals.com.xml index b25f18195fe1..d35ff4525ea9 100644 --- a/src/chrome/content/rules/Vehicle_Visuals.com.xml +++ b/src/chrome/content/rules/Vehicle_Visuals.com.xml @@ -1,14 +1,10 @@ - - + - + diff --git a/src/chrome/content/rules/Velaro.xml b/src/chrome/content/rules/Velaro.xml index 2e85ec6979f4..dd9090bf4b12 100644 --- a/src/chrome/content/rules/Velaro.xml +++ b/src/chrome/content/rules/Velaro.xml @@ -11,7 +11,7 @@ - + diff --git a/src/chrome/content/rules/Velleman-Group.xml b/src/chrome/content/rules/Velleman-Group.xml index 924a368e1a02..c6df45b51b85 100644 --- a/src/chrome/content/rules/Velleman-Group.xml +++ b/src/chrome/content/rules/Velleman-Group.xml @@ -1,4 +1,14 @@ + - - + - - - - + - - - - - - - + --> - + @@ -75,18 +68,16 @@ Fetch error: http://perel.eu/ => https://www.perel.eu/: (6, 'Could not resolve h gives an error about the SSL certificate only being valid for the portal.velleman.eu domain. As such, this ruleset redirects such requests to the https://portal.velleman.eu/ServicePortal/ URL (August 30, 2013.) - --> + --> - - - + + - + + diff --git a/src/chrome/content/rules/Velmedia.net.xml b/src/chrome/content/rules/Velmedia.net.xml index 60bc519c6621..a54716bf052e 100644 --- a/src/chrome/content/rules/Velmedia.net.xml +++ b/src/chrome/content/rules/Velmedia.net.xml @@ -10,7 +10,8 @@ - + + @@ -19,4 +20,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/VelocityFrequentFlyer.com.xml b/src/chrome/content/rules/VelocityFrequentFlyer.com.xml new file mode 100644 index 000000000000..2c590cb26459 --- /dev/null +++ b/src/chrome/content/rules/VelocityFrequentFlyer.com.xml @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Velox-Project.eu.xml b/src/chrome/content/rules/Velox-Project.eu.xml deleted file mode 100644 index 577fac51ed3b..000000000000 --- a/src/chrome/content/rules/Velox-Project.eu.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Velum-Media.xml b/src/chrome/content/rules/Velum-Media.xml index d4582349d241..fa9f9ae517ca 100644 --- a/src/chrome/content/rules/Velum-Media.xml +++ b/src/chrome/content/rules/Velum-Media.xml @@ -34,7 +34,7 @@ - + - + diff --git a/src/chrome/content/rules/Vendercom.xml b/src/chrome/content/rules/Vendercom.xml index 54fb138b150c..d1c36a9f0317 100644 --- a/src/chrome/content/rules/Vendercom.xml +++ b/src/chrome/content/rules/Vendercom.xml @@ -13,4 +13,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Vendetta-Online.xml b/src/chrome/content/rules/Vendetta-Online.xml index 518cd16aec3f..06db29e0655d 100644 --- a/src/chrome/content/rules/Vendetta-Online.xml +++ b/src/chrome/content/rules/Vendetta-Online.xml @@ -16,14 +16,14 @@ - + + - + - + diff --git a/src/chrome/content/rules/Vendo-Services.xml b/src/chrome/content/rules/Vendo-Services.xml index e932f075f96a..1bc82307c487 100644 --- a/src/chrome/content/rules/Vendo-Services.xml +++ b/src/chrome/content/rules/Vendo-Services.xml @@ -12,7 +12,7 @@ Fetch error: http://cdn1.vendocdn.com/ => https://cdn1.vendocdn.com/: (51, "SSL: - start.vendoservices.com --> - + diff --git a/src/chrome/content/rules/Ventivmedia.com.xml b/src/chrome/content/rules/Ventivmedia.com.xml index 2dedb28692c9..711ee4e28e58 100644 --- a/src/chrome/content/rules/Ventivmedia.com.xml +++ b/src/chrome/content/rules/Ventivmedia.com.xml @@ -6,7 +6,7 @@ Fetch error: http://ads.ventivmedia.com/www/delivery/lg.php?bannerid=&campaignid Fetch error: http://ads.ventivmedia.com/ => https://ads.ventivmedia.com/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + @@ -14,7 +14,7 @@ Fetch error: http://ads.ventivmedia.com/ => https://ads.ventivmedia.com/: (60, ' - + - + - + - + https://pt.verbling.com/: (6, 'Could not - .www.verbling.com --> - + diff --git a/src/chrome/content/rules/Verbraucher-Sicher-Online.xml b/src/chrome/content/rules/Verbraucher-Sicher-Online.xml deleted file mode 100644 index 5d44b359664b..000000000000 --- a/src/chrome/content/rules/Verbraucher-Sicher-Online.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/Verbraucherzentrale_Nordrhein-Westfalen.xml b/src/chrome/content/rules/Verbraucherzentrale_Nordrhein-Westfalen.xml index ab175a9a1903..89701fac0906 100644 --- a/src/chrome/content/rules/Verbraucherzentrale_Nordrhein-Westfalen.xml +++ b/src/chrome/content/rules/Verbraucherzentrale_Nordrhein-Westfalen.xml @@ -7,7 +7,7 @@ Fetch error: http://www.vz-nrw.de/ => https://www.vz-nrw.de/: (60, 'SSL certific ^meine-verbraucherzentrale.de doesn't exist. --> - + @@ -22,4 +22,4 @@ Fetch error: http://www.vz-nrw.de/ => https://www.vz-nrw.de/: (60, 'SSL certific - \ No newline at end of file + diff --git a/src/chrome/content/rules/Verdad_Media.xml b/src/chrome/content/rules/Verdad_Media.xml deleted file mode 100644 index b8aeab04b1ea..000000000000 --- a/src/chrome/content/rules/Verdad_Media.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Vereinigte-IKK.xml b/src/chrome/content/rules/Vereinigte-IKK.xml index f1dfe890dcf8..5cf1259ccc15 100644 --- a/src/chrome/content/rules/Vereinigte-IKK.xml +++ b/src/chrome/content/rules/Vereinigte-IKK.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.vereinigte-ikk.de/ => https://www.vereinigte-ikk.de/: (51, "SSL: no alternative certificate subject name matches target host name 'www.vereinigte-ikk.de'") Fetch error: http://vereinigte-ikk.de/ => https://www.vereinigte-ikk.de/: (51, "SSL: no alternative certificate subject name matches target host name 'www.vereinigte-ikk.de'") --> - + diff --git a/src/chrome/content/rules/Verified-Voting.xml b/src/chrome/content/rules/Verified-Voting.xml index 178cde398cd7..32478fef63ea 100644 --- a/src/chrome/content/rules/Verified-Voting.xml +++ b/src/chrome/content/rules/Verified-Voting.xml @@ -1,14 +1,6 @@ @@ -18,11 +10,9 @@ + - - - - + diff --git a/src/chrome/content/rules/Verigames.com.xml b/src/chrome/content/rules/Verigames.com.xml index 33a79441b336..5b40b5360f8b 100644 --- a/src/chrome/content/rules/Verigames.com.xml +++ b/src/chrome/content/rules/Verigames.com.xml @@ -13,7 +13,7 @@ Fetch error: http://www.verigames.com/ => https://www.verigames.com/: (7, 'Faile * Unsecurable --> - + diff --git a/src/chrome/content/rules/Verio.xml b/src/chrome/content/rules/Verio.xml index 218876653248..1a6c8dcd343a 100644 --- a/src/chrome/content/rules/Verio.xml +++ b/src/chrome/content/rules/Verio.xml @@ -1,9 +1,4 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Verisign-Labs.com.xml b/src/chrome/content/rules/Verisign-Labs.com.xml new file mode 100644 index 000000000000..b90038939207 --- /dev/null +++ b/src/chrome/content/rules/Verisign-Labs.com.xml @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Verisign-grs.com.xml b/src/chrome/content/rules/Verisign-grs.com.xml new file mode 100644 index 000000000000..c610d2d53065 --- /dev/null +++ b/src/chrome/content/rules/Verisign-grs.com.xml @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Verisign.com.au.xml b/src/chrome/content/rules/Verisign.com.au.xml new file mode 100644 index 000000000000..e67807eece1f --- /dev/null +++ b/src/chrome/content/rules/Verisign.com.au.xml @@ -0,0 +1,49 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Verisign.com.br.xml b/src/chrome/content/rules/Verisign.com.br.xml new file mode 100644 index 000000000000..c17422983e26 --- /dev/null +++ b/src/chrome/content/rules/Verisign.com.br.xml @@ -0,0 +1,28 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Verisign.com.hk.xml b/src/chrome/content/rules/Verisign.com.hk.xml new file mode 100644 index 000000000000..e2d8f52be001 --- /dev/null +++ b/src/chrome/content/rules/Verisign.com.hk.xml @@ -0,0 +1,37 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Verisign.com.sg.xml b/src/chrome/content/rules/Verisign.com.sg.xml new file mode 100644 index 000000000000..b8ea68c4ad7f --- /dev/null +++ b/src/chrome/content/rules/Verisign.com.sg.xml @@ -0,0 +1,37 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Verisign.com.tw.xml b/src/chrome/content/rules/Verisign.com.tw.xml new file mode 100644 index 000000000000..68d773dbdeef --- /dev/null +++ b/src/chrome/content/rules/Verisign.com.tw.xml @@ -0,0 +1,35 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Verisign.dk.xml b/src/chrome/content/rules/Verisign.dk.xml new file mode 100644 index 000000000000..5ae3681d1a1c --- /dev/null +++ b/src/chrome/content/rules/Verisign.dk.xml @@ -0,0 +1,36 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Verisign.fr.xml b/src/chrome/content/rules/Verisign.fr.xml new file mode 100644 index 000000000000..6efac6f441c9 --- /dev/null +++ b/src/chrome/content/rules/Verisign.fr.xml @@ -0,0 +1,37 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Verisign.se.xml b/src/chrome/content/rules/Verisign.se.xml new file mode 100644 index 000000000000..b32a04213009 --- /dev/null +++ b/src/chrome/content/rules/Verisign.se.xml @@ -0,0 +1,37 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Verisign.xml b/src/chrome/content/rules/Verisign.xml index c39a8336b772..b2294fd96eb3 100644 --- a/src/chrome/content/rules/Verisign.xml +++ b/src/chrome/content/rules/Verisign.xml @@ -1,137 +1,253 @@ - - - - + - + - + + + + + + + + + + + + + + + + + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Verisign_Labs.com.xml b/src/chrome/content/rules/Verisign_Labs.com.xml deleted file mode 100644 index 7ced974d69cb..000000000000 --- a/src/chrome/content/rules/Verisign_Labs.com.xml +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Verivox.xml b/src/chrome/content/rules/Verivox.xml index a43f4fed039b..51786cc7a2f6 100644 --- a/src/chrome/content/rules/Verivox.xml +++ b/src/chrome/content/rules/Verivox.xml @@ -13,7 +13,8 @@ - + + diff --git a/src/chrome/content/rules/Verizon-Enterprise.xml b/src/chrome/content/rules/Verizon-Enterprise.xml new file mode 100644 index 000000000000..7e0ad0befc92 --- /dev/null +++ b/src/chrome/content/rules/Verizon-Enterprise.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Verizon-Wireless.xml b/src/chrome/content/rules/Verizon-Wireless.xml new file mode 100644 index 000000000000..a29ace856828 --- /dev/null +++ b/src/chrome/content/rules/Verizon-Wireless.xml @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Verizon.xml b/src/chrome/content/rules/Verizon.xml index 630e01caf526..773409eaa2a4 100644 --- a/src/chrome/content/rules/Verizon.xml +++ b/src/chrome/content/rules/Verizon.xml @@ -1,15 +1,11 @@ - @@ -168,11 +161,6 @@ - - - - diff --git a/src/chrome/content/rules/Verizon_Enterprise.xml b/src/chrome/content/rules/Verizon_Enterprise.xml deleted file mode 100644 index c06803512404..000000000000 --- a/src/chrome/content/rules/Verizon_Enterprise.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Verizon_Wireless.xml b/src/chrome/content/rules/Verizon_Wireless.xml deleted file mode 100644 index 377714c9eeb6..000000000000 --- a/src/chrome/content/rules/Verizon_Wireless.xml +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Verkkomaksut.fi.xml b/src/chrome/content/rules/Verkkomaksut.fi.xml index f7b968aab11c..d68c2e481440 100644 --- a/src/chrome/content/rules/Verkkomaksut.fi.xml +++ b/src/chrome/content/rules/Verkkomaksut.fi.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/VeronikaMaine.xml b/src/chrome/content/rules/VeronikaMaine.xml index c4ebef6d39ca..3bb7c9fe5e60 100644 --- a/src/chrome/content/rules/VeronikaMaine.xml +++ b/src/chrome/content/rules/VeronikaMaine.xml @@ -4,4 +4,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/VersaCart_Systems.xml b/src/chrome/content/rules/VersaCart_Systems.xml index 94d9e5501c6b..6053894f1dc9 100644 --- a/src/chrome/content/rules/VersaCart_Systems.xml +++ b/src/chrome/content/rules/VersaCart_Systems.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Verslu.is.xml b/src/chrome/content/rules/Verslu.is.xml index f7ad32bcd855..a238ff5fd83d 100644 --- a/src/chrome/content/rules/Verslu.is.xml +++ b/src/chrome/content/rules/Verslu.is.xml @@ -3,7 +3,7 @@ - + https://vstech.net/: Cycle detected - URL alr - + diff --git a/src/chrome/content/rules/Vertical-Media.xml b/src/chrome/content/rules/Vertical-Media.xml index d9427a573066..453c32e5474a 100644 --- a/src/chrome/content/rules/Vertical-Media.xml +++ b/src/chrome/content/rules/Vertical-Media.xml @@ -9,11 +9,10 @@ Fetch error: http://mail.verticalmedia.com/ => https://mail.verticalmedia.com/: - (www.)verticalmedia.com (cert: *.securesites.net; redirects to www.alltrips.com over http, shows Vertical Media logo and "vmcorp1.serverpros.com" over https) --> - + - + diff --git a/src/chrome/content/rules/Vertical-Web-Media.xml b/src/chrome/content/rules/Vertical-Web-Media.xml index b052177d307e..52beacfa05b1 100644 --- a/src/chrome/content/rules/Vertical-Web-Media.xml +++ b/src/chrome/content/rules/Vertical-Web-Media.xml @@ -2,9 +2,9 @@ - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Vertx.com.xml b/src/chrome/content/rules/Vertx.com.xml new file mode 100644 index 000000000000..dd32c649dc40 --- /dev/null +++ b/src/chrome/content/rules/Vertx.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Veruta.com.xml b/src/chrome/content/rules/Veruta.com.xml deleted file mode 100644 index e0e8e840011c..000000000000 --- a/src/chrome/content/rules/Veruta.com.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Verwaltung_Online.xml b/src/chrome/content/rules/Verwaltung_Online.xml index 9d74b13ac0fe..4c7ce8aecaac 100644 --- a/src/chrome/content/rules/Verwaltung_Online.xml +++ b/src/chrome/content/rules/Verwaltung_Online.xml @@ -1,21 +1,44 @@ + + - - - + diff --git a/src/chrome/content/rules/Verzekeringssite.nl.xml b/src/chrome/content/rules/Verzekeringssite.nl.xml index e3b7cef22461..80af66ce5555 100644 --- a/src/chrome/content/rules/Verzekeringssite.nl.xml +++ b/src/chrome/content/rules/Verzekeringssite.nl.xml @@ -9,7 +9,7 @@ Fetch error: http://verzekeringssite.nl/ => https://www.verzekeringssite.nl/: (5 - blog 404s --> - + diff --git a/src/chrome/content/rules/Vesess.xml b/src/chrome/content/rules/Vesess.xml index a407b294f593..560458b12aa7 100644 --- a/src/chrome/content/rules/Vesess.xml +++ b/src/chrome/content/rules/Vesess.xml @@ -14,14 +14,14 @@ * Shows default page --> - + - + - + diff --git a/src/chrome/content/rules/Vessel.xml b/src/chrome/content/rules/Vessel.xml index 0c692d9ec397..9ffa8b55e51b 100644 --- a/src/chrome/content/rules/Vessel.xml +++ b/src/chrome/content/rules/Vessel.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Veterans-Aid.net.xml b/src/chrome/content/rules/Veterans-Aid.net.xml index cf7b51beb6f6..bdf31cd5f9f0 100644 --- a/src/chrome/content/rules/Veterans-Aid.net.xml +++ b/src/chrome/content/rules/Veterans-Aid.net.xml @@ -12,7 +12,7 @@ - + https://veuwer.com/: (7, 'Failed to connect t Fetch error: http://www.veuwer.com/ => https://veuwer.com/: (28, 'Connection timed out after 20001 milliseconds') --> - + - + + + + + + diff --git a/src/chrome/content/rules/ViaVerio.com.xml b/src/chrome/content/rules/ViaVerio.com.xml deleted file mode 100644 index ce78b02970a8..000000000000 --- a/src/chrome/content/rules/ViaVerio.com.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Viacom.xml b/src/chrome/content/rules/Viacom.xml index 1d5b5c225fbc..0fb14c8a5cb7 100644 --- a/src/chrome/content/rules/Viacom.xml +++ b/src/chrome/content/rules/Viacom.xml @@ -21,7 +21,7 @@ Fetch error: http://specials.mtvnn.com/ => https://specials.mtvnn.com/: (60, 'SS - mtvplay.tv - www.mtvplay.tv --> - + diff --git a/src/chrome/content/rules/Viaduct.io.xml b/src/chrome/content/rules/Viaduct.io.xml index 1f3c73f3934f..7172ac9ff817 100644 --- a/src/chrome/content/rules/Viaduct.io.xml +++ b/src/chrome/content/rules/Viaduct.io.xml @@ -10,7 +10,7 @@ Fetch error: http://www.viaduct.io/ => https://www.viaduct.io/: (51, "SSL: no al - status.viaduct.io --> - + @@ -30,7 +30,7 @@ Fetch error: http://www.viaduct.io/ => https://www.viaduct.io/: (51, "SSL: no al - + + + + + + + diff --git a/src/chrome/content/rules/Viber.xml b/src/chrome/content/rules/Viber.xml index 6076917ef17d..348508d20086 100644 --- a/src/chrome/content/rules/Viber.xml +++ b/src/chrome/content/rules/Viber.xml @@ -40,7 +40,7 @@ Non-2xx HTTP code: http://helpme.viber.com/ (200) => https://viber.kayako.com/ ( ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -70,7 +70,7 @@ Non-2xx HTTP code: http://helpme.viber.com/ (200) => https://viber.kayako.com/ ( - + https://vibrantmedia.com/: (60, 'SSL ce - *.us.intellitxt.com (times out; where * is a unique subdomain for each client) --> - + - + diff --git a/src/chrome/content/rules/Vice-problematic.xml b/src/chrome/content/rules/Vice-problematic.xml deleted file mode 100644 index f62bdf0dde83..000000000000 --- a/src/chrome/content/rules/Vice-problematic.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Vice.xml b/src/chrome/content/rules/Vice.xml index 6861d7a955a2..3b5f662ff7fc 100644 --- a/src/chrome/content/rules/Vice.xml +++ b/src/chrome/content/rules/Vice.xml @@ -1,7 +1,4 @@ - + + + @@ -94,58 +57,22 @@ + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + diff --git a/src/chrome/content/rules/VicinityRewards.ca.xml b/src/chrome/content/rules/VicinityRewards.ca.xml new file mode 100644 index 000000000000..8dbb090a3868 --- /dev/null +++ b/src/chrome/content/rules/VicinityRewards.ca.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Victi.ms.xml b/src/chrome/content/rules/Victi.ms.xml index b9728cf36b60..8f9aef9324ec 100644 --- a/src/chrome/content/rules/Victi.ms.xml +++ b/src/chrome/content/rules/Victi.ms.xml @@ -14,7 +14,7 @@ Fetch error: http://www.victi.ms/ => https://www.victi.ms/: (60, 'SSL certificat * Mismatched, CN: *.rhcloud.com --> - + diff --git a/src/chrome/content/rules/Victor-Chandler.xml b/src/chrome/content/rules/Victor-Chandler.xml index 766e74f6bd05..94a4121fa3fd 100644 --- a/src/chrome/content/rules/Victor-Chandler.xml +++ b/src/chrome/content/rules/Victor-Chandler.xml @@ -6,7 +6,7 @@ Fetch error: http://vcint.com/ => https://vcint.com/: (28, 'Connection timed out Disabled by https-everywhere-checker because: Fetch error: http://vcint.com/ => https://vcint.com/: (28, 'Connection timed out after 10000 milliseconds') --> - + @@ -17,8 +17,8 @@ Fetch error: http://vcint.com/ => https://vcint.com/: (28, 'Connection timed out - - + + diff --git a/src/chrome/content/rules/VictorOps.com.xml b/src/chrome/content/rules/VictorOps.com.xml index 43f15a17a06f..6a553635bd96 100644 --- a/src/chrome/content/rules/VictorOps.com.xml +++ b/src/chrome/content/rules/VictorOps.com.xml @@ -13,7 +13,7 @@ - + diff --git a/src/chrome/content/rules/Victorias_Secret.xml b/src/chrome/content/rules/Victorias_Secret.xml index 09d0b636584a..ec8883cc5837 100644 --- a/src/chrome/content/rules/Victorias_Secret.xml +++ b/src/chrome/content/rules/Victorias_Secret.xml @@ -1,9 +1,20 @@ + - - - + + + - + - - - - - - - + diff --git a/src/chrome/content/rules/Victorias_Secret_Canada.ca.xml b/src/chrome/content/rules/Victorias_Secret_Canada.ca.xml deleted file mode 100644 index f197b50b45f8..000000000000 --- a/src/chrome/content/rules/Victorias_Secret_Canada.ca.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Victorinox.xml b/src/chrome/content/rules/Victorinox.xml index 4e22de57472b..c01869d26594 100644 --- a/src/chrome/content/rules/Victorinox.xml +++ b/src/chrome/content/rules/Victorinox.xml @@ -18,7 +18,7 @@ Fetch error: http://static.victorinox.com/ => https://static.victorinox.com/: (6 ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -64,7 +64,7 @@ Fetch error: http://static.victorinox.com/ => https://static.victorinox.com/: (6 - + - + + + + - + diff --git a/src/chrome/content/rules/VideoBloom.com.xml b/src/chrome/content/rules/VideoBloom.com.xml deleted file mode 100644 index b6770ee63f34..000000000000 --- a/src/chrome/content/rules/VideoBloom.com.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/VideoHub.tv.xml b/src/chrome/content/rules/VideoHub.tv.xml index 104a494a9761..c670066722b4 100644 --- a/src/chrome/content/rules/VideoHub.tv.xml +++ b/src/chrome/content/rules/VideoHub.tv.xml @@ -9,23 +9,63 @@ * Refused + Cert mismatch: - Fully covered subdomains: + - tags.videohub.tv + - ads.videohub.tv + - dt.videohub.tv + - l0.videohub.tv + - ads.sc.videohub.tv - - data - - portal + Chain issues: + - ads.videohub.tv + - app.videohub.tv + - dsp.videohub.tv + - dsp.iad1.videohub.tv + - pixel.videohub.tv + - l0-secure.videohub.tv + - app.stag.videohub.tv + - dsp.stag.videohub.tv + + Timeout: + - autodiscover.videohub.tv + - dsp3.videohub.tv + - data.stag.videohub.tv + - dare.videohub.tv + - portal.dev.videohub.tv + - docs.videohub.tv + - portal.stag.videohub.tv + - preview.videohub.tv + - ads.test.videohub.tv + - app.test.videohub.tv + - data.test.videohub.tv + - dsp.test.videohub.tv + - tagvalidator.videohub.tv + - portal.test.videohub.tv + + Broken content received: + - data.videohub.tv --> - + + + + + + - + + + + + diff --git a/src/chrome/content/rules/VideoLAN.org.xml b/src/chrome/content/rules/VideoLAN.org.xml index ab0cf6c9a20f..46ddde5d8b1a 100644 --- a/src/chrome/content/rules/VideoLAN.org.xml +++ b/src/chrome/content/rules/VideoLAN.org.xml @@ -1,70 +1,79 @@ - - + + + + + + + + + - + + + - - + + + + + + - + diff --git a/src/chrome/content/rules/Video_Aided_Instruction.xml b/src/chrome/content/rules/Video_Aided_Instruction.xml index fe02398f4827..3dc4490bda10 100644 --- a/src/chrome/content/rules/Video_Aided_Instruction.xml +++ b/src/chrome/content/rules/Video_Aided_Instruction.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Video_Dean.xml b/src/chrome/content/rules/Video_Dean.xml index 2acbb2aebe78..1ed20e7f66b4 100644 --- a/src/chrome/content/rules/Video_Dean.xml +++ b/src/chrome/content/rules/Video_Dean.xml @@ -7,7 +7,7 @@ Fetch error: http://www.video-dean.com/ => https://www.video-dean.com/: (28, 'Co Disabled by https-everywhere-checker because: Fetch error: http://video-dean.com/ => https://video-dean.com/: (51, "SSL: no alternative certificate subject name matches target host name 'video-dean.com'") --> - + @@ -18,4 +18,4 @@ Fetch error: http://video-dean.com/ => https://video-dean.com/: (51, "SSL: no al - \ No newline at end of file + diff --git a/src/chrome/content/rules/Video_Interchange.xml b/src/chrome/content/rules/Video_Interchange.xml index ad4973005178..88c25ea9f688 100644 --- a/src/chrome/content/rules/Video_Interchange.xml +++ b/src/chrome/content/rules/Video_Interchange.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Videoemail.com.xml b/src/chrome/content/rules/Videoemail.com.xml index 0c3dceb22728..1a1409002d49 100644 --- a/src/chrome/content/rules/Videoemail.com.xml +++ b/src/chrome/content/rules/Videoemail.com.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://sc.videoemail.com/ => https://sc.videoemail.com/: (60, 'SSL certificate problem: certificate has expired') --> - + @@ -14,7 +14,6 @@ Fetch error: http://sc.videoemail.com/ => https://sc.videoemail.com/: (60, 'SSL - + diff --git a/src/chrome/content/rules/Videogamer.com.xml b/src/chrome/content/rules/Videogamer.com.xml deleted file mode 100644 index 9c644a265568..000000000000 --- a/src/chrome/content/rules/Videogamer.com.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Videojs.com.xml b/src/chrome/content/rules/Videojs.com.xml new file mode 100644 index 000000000000..692699d448aa --- /dev/null +++ b/src/chrome/content/rules/Videojs.com.xml @@ -0,0 +1,15 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Videoly.co.xml b/src/chrome/content/rules/Videoly.co.xml index 9721994c3c0a..63aaae959613 100644 --- a/src/chrome/content/rules/Videoly.co.xml +++ b/src/chrome/content/rules/Videoly.co.xml @@ -6,7 +6,7 @@ - + - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Vidplay.net.xml b/src/chrome/content/rules/Vidplay.net.xml index f966007b92bd..1cc551e48864 100644 --- a/src/chrome/content/rules/Vidplay.net.xml +++ b/src/chrome/content/rules/Vidplay.net.xml @@ -20,7 +20,6 @@ - - + diff --git a/src/chrome/content/rules/Vidup.me.xml b/src/chrome/content/rules/Vidup.me.xml index aef19dfec92e..b17eece3dd0f 100644 --- a/src/chrome/content/rules/Vidup.me.xml +++ b/src/chrome/content/rules/Vidup.me.xml @@ -48,7 +48,7 @@ Fetch error: http://vidup.me/ => https://www.vidup.me/: Too many redirects while * Secured by us --> - + diff --git a/src/chrome/content/rules/Vidyard.xml b/src/chrome/content/rules/Vidyard.xml index c2c268832765..9efbe4ee3cfc 100644 --- a/src/chrome/content/rules/Vidyard.xml +++ b/src/chrome/content/rules/Vidyard.xml @@ -22,7 +22,7 @@ - + https://www.viepratique.fr/ ( * Secured by us --> - + diff --git a/src/chrome/content/rules/Vienna_University_of_Technology.xml b/src/chrome/content/rules/Vienna_University_of_Technology.xml index 9ce9789c5587..e031500461b6 100644 --- a/src/chrome/content/rules/Vienna_University_of_Technology.xml +++ b/src/chrome/content/rules/Vienna_University_of_Technology.xml @@ -32,7 +32,15 @@ - + + + + + + + + + @@ -44,7 +52,6 @@ - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/ViewSourceConf.org.xml b/src/chrome/content/rules/ViewSourceConf.org.xml new file mode 100644 index 000000000000..1f9e6a5db7f5 --- /dev/null +++ b/src/chrome/content/rules/ViewSourceConf.org.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/View_Central.com.xml b/src/chrome/content/rules/View_Central.com.xml index 519c54d4436f..4c523d5aa03d 100644 --- a/src/chrome/content/rules/View_Central.com.xml +++ b/src/chrome/content/rules/View_Central.com.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/VikingVPN.com.xml b/src/chrome/content/rules/VikingVPN.com.xml index 39c251e3fbab..2011808cdb68 100644 --- a/src/chrome/content/rules/VikingVPN.com.xml +++ b/src/chrome/content/rules/VikingVPN.com.xml @@ -1,36 +1,14 @@ - + + - - - - - - - - - - - + + diff --git a/src/chrome/content/rules/Vildling.xml b/src/chrome/content/rules/Vildling.xml index e93bedb3cc71..2d13f71752eb 100644 --- a/src/chrome/content/rules/Vildling.xml +++ b/src/chrome/content/rules/Vildling.xml @@ -5,7 +5,7 @@ - + diff --git a/src/chrome/content/rules/Villas.com.xml b/src/chrome/content/rules/Villas.com.xml index 2eb52845f42a..7e12cdba6a55 100644 --- a/src/chrome/content/rules/Villas.com.xml +++ b/src/chrome/content/rules/Villas.com.xml @@ -13,7 +13,7 @@ Fetch error: http://r-ec.vcomstatic.com/ => https://r-ec.vcomstatic.com/: (6, 'C ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -33,7 +33,7 @@ Fetch error: http://r-ec.vcomstatic.com/ => https://r-ec.vcomstatic.com/: (6, 'C --> - + + + + + + + diff --git a/src/chrome/content/rules/Vin-DiCarlo.xml b/src/chrome/content/rules/Vin-DiCarlo.xml index 6323ab2700de..4ec3ec8943b7 100644 --- a/src/chrome/content/rules/Vin-DiCarlo.xml +++ b/src/chrome/content/rules/Vin-DiCarlo.xml @@ -3,7 +3,7 @@ - + diff --git a/src/chrome/content/rules/Vindico_suite.com.xml b/src/chrome/content/rules/Vindico_suite.com.xml index 797dfcd8c780..8d9b94408bbe 100644 --- a/src/chrome/content/rules/Vindico_suite.com.xml +++ b/src/chrome/content/rules/Vindico_suite.com.xml @@ -14,7 +14,7 @@ Fetch error: http://www.vindicosuite.com/ => https://www.vindicosuite.com/: (28, - .vindicosuite.com --> - + diff --git a/src/chrome/content/rules/Vineyard_Vines.com.xml b/src/chrome/content/rules/Vineyard_Vines.com.xml index 1239a5280df4..e8fff37bf6ff 100644 --- a/src/chrome/content/rules/Vineyard_Vines.com.xml +++ b/src/chrome/content/rules/Vineyard_Vines.com.xml @@ -29,7 +29,7 @@ Fetch error: http://m.vineyardvines.com/ => https://m.vineyardvines.com/: (51, " * Secured by us --> - + diff --git a/src/chrome/content/rules/Vinilox.eu.xml b/src/chrome/content/rules/Vinilox.eu.xml index 315aa99a9c4e..ab84994ccd69 100644 --- a/src/chrome/content/rules/Vinilox.eu.xml +++ b/src/chrome/content/rules/Vinilox.eu.xml @@ -31,7 +31,7 @@ Fetch error: http://wiki.vinilox.eu/ => https://wiki.vinilox.eu/: (51, "SSL: no 4xx client error: - mail.vinilox.eu --> - + diff --git a/src/chrome/content/rules/VintageCellars.com.au.xml b/src/chrome/content/rules/VintageCellars.com.au.xml new file mode 100644 index 000000000000..8b8df60c56d0 --- /dev/null +++ b/src/chrome/content/rules/VintageCellars.com.au.xml @@ -0,0 +1,23 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Vinumeris.com.xml b/src/chrome/content/rules/Vinumeris.com.xml index b374b4cf5b5e..df7c2b5af6fa 100644 --- a/src/chrome/content/rules/Vinumeris.com.xml +++ b/src/chrome/content/rules/Vinumeris.com.xml @@ -10,7 +10,7 @@ Fetch error: http://www.vinumeris.com/ => https://www.vinumeris.com/: (7, 'Faile - www.vinumeris.com --> - + diff --git a/src/chrome/content/rules/Vinuthomas.com.xml b/src/chrome/content/rules/Vinuthomas.com.xml index a6cda083b699..68238c81ab64 100644 --- a/src/chrome/content/rules/Vinuthomas.com.xml +++ b/src/chrome/content/rules/Vinuthomas.com.xml @@ -4,7 +4,6 @@ - + diff --git a/src/chrome/content/rules/Violet_Darkling.com.xml b/src/chrome/content/rules/Violet_Darkling.com.xml index d437c0a5ff24..b8dee00ef730 100644 --- a/src/chrome/content/rules/Violet_Darkling.com.xml +++ b/src/chrome/content/rules/Violet_Darkling.com.xml @@ -5,7 +5,7 @@ Fetch error: http://violetdarkling.com/ => https://violetdarkling.com/: (7, 'Fai Fetch error: http://www.violetdarkling.com/ => https://www.violetdarkling.com/: (7, 'Failed to connect to www.violetdarkling.com port 443: Connection refused') --> - + diff --git a/src/chrome/content/rules/Violet_Indigo.xml b/src/chrome/content/rules/Violet_Indigo.xml index ed2bf9244617..0978c53e849b 100644 --- a/src/chrome/content/rules/Violet_Indigo.xml +++ b/src/chrome/content/rules/Violet_Indigo.xml @@ -7,7 +7,9 @@ - + + + diff --git a/src/chrome/content/rules/VipMobile.rs.xml b/src/chrome/content/rules/VipMobile.rs.xml new file mode 100644 index 000000000000..dcc598a97aa2 --- /dev/null +++ b/src/chrome/content/rules/VipMobile.rs.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Vippy.co.xml b/src/chrome/content/rules/Vippy.co.xml index 7ebcb951ee56..8d2fcb296f88 100644 --- a/src/chrome/content/rules/Vippy.co.xml +++ b/src/chrome/content/rules/Vippy.co.xml @@ -27,7 +27,11 @@ - + + + + + @@ -48,4 +52,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Virag.si.xml b/src/chrome/content/rules/Virag.si.xml index cb25173cd69f..422d421c3a40 100644 --- a/src/chrome/content/rules/Virag.si.xml +++ b/src/chrome/content/rules/Virag.si.xml @@ -6,7 +6,7 @@ - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/VirginAustralia.xml b/src/chrome/content/rules/VirginAustralia.xml index c782f534175f..f2fa04cd6c20 100644 --- a/src/chrome/content/rules/VirginAustralia.xml +++ b/src/chrome/content/rules/VirginAustralia.xml @@ -1,9 +1,135 @@ + - - - - - - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/VirginMobile.xml b/src/chrome/content/rules/VirginMobile.xml index 338a27feaa60..fbed419a08ec 100644 --- a/src/chrome/content/rules/VirginMobile.xml +++ b/src/chrome/content/rules/VirginMobile.xml @@ -13,11 +13,16 @@ - + + + + + + - + - + diff --git a/src/chrome/content/rules/Virgin_Media.ie.xml b/src/chrome/content/rules/Virgin_Media.ie.xml index 4b1347acecf9..ca68945fa690 100644 --- a/src/chrome/content/rules/Virgin_Media.ie.xml +++ b/src/chrome/content/rules/Virgin_Media.ie.xml @@ -16,7 +16,7 @@ --> - + - + diff --git a/src/chrome/content/rules/Virginia-Polytechnic-Institute-and-State-University.xml b/src/chrome/content/rules/Virginia-Polytechnic-Institute-and-State-University.xml index 6e2600da0968..47a13daf3940 100644 --- a/src/chrome/content/rules/Virginia-Polytechnic-Institute-and-State-University.xml +++ b/src/chrome/content/rules/Virginia-Polytechnic-Institute-and-State-University.xml @@ -97,7 +97,7 @@ Fetch error: http://www.unirel.vt.edu/ => https://www.unirel.vt.edu/: (51, "SSL: - (www.)vtnews --> - + diff --git a/src/chrome/content/rules/Virool.com.xml b/src/chrome/content/rules/Virool.com.xml index 82e7198cd5f6..523287b7176f 100644 --- a/src/chrome/content/rules/Virool.com.xml +++ b/src/chrome/content/rules/Virool.com.xml @@ -16,7 +16,7 @@ - + - + diff --git a/src/chrome/content/rules/Virtual-Server.org.xml b/src/chrome/content/rules/Virtual-Server.org.xml deleted file mode 100644 index 9e8b6ecc382f..000000000000 --- a/src/chrome/content/rules/Virtual-Server.org.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/VirtualBox.org.xml b/src/chrome/content/rules/VirtualBox.org.xml new file mode 100644 index 000000000000..27b15fe1f56d --- /dev/null +++ b/src/chrome/content/rules/VirtualBox.org.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/VirtualBox.xml b/src/chrome/content/rules/VirtualBox.xml deleted file mode 100644 index bbd904f5e09e..000000000000 --- a/src/chrome/content/rules/VirtualBox.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/VirtualQube.com.xml b/src/chrome/content/rules/VirtualQube.com.xml index 07a016b69721..bd2ed39aafe9 100644 --- a/src/chrome/content/rules/VirtualQube.com.xml +++ b/src/chrome/content/rules/VirtualQube.com.xml @@ -10,7 +10,7 @@ Fetch error: http://www.virtualqube.com/ => https://www.virtualqube.com/: (28, ' - www.virtualqube.com --> - + diff --git a/src/chrome/content/rules/Virtual_Spirits.xml b/src/chrome/content/rules/Virtual_Spirits.xml index bfbfc91dc9bd..4c26bf6a70b1 100644 --- a/src/chrome/content/rules/Virtual_Spirits.xml +++ b/src/chrome/content/rules/Virtual_Spirits.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://virtualspirits.com/ => https://virtualspirits.com/: Cycle detected - URL already encountered: https://virtualspirits.com/Default.aspx Fetch error: http://www.virtualspirits.com/ => https://www.virtualspirits.com/: Cycle detected - URL already encountered: https://www.virtualspirits.com/Default.aspx --> - + @@ -19,4 +19,4 @@ Fetch error: http://www.virtualspirits.com/ => https://www.virtualspirits.com/: - \ No newline at end of file + diff --git a/src/chrome/content/rules/Virtualearth.net.xml b/src/chrome/content/rules/Virtualearth.net.xml index ff112a3bdf2b..4d9294bd999f 100644 --- a/src/chrome/content/rules/Virtualearth.net.xml +++ b/src/chrome/content/rules/Virtualearth.net.xml @@ -6,7 +6,7 @@ - (www.)? * - fb.ecn.api.tiles * - + * Mismatched --> @@ -36,7 +36,7 @@ - + - + diff --git a/src/chrome/content/rules/Virusec.com.xml b/src/chrome/content/rules/Virusec.com.xml index 8f90b7e0d40b..44f06662fc00 100644 --- a/src/chrome/content/rules/Virusec.com.xml +++ b/src/chrome/content/rules/Virusec.com.xml @@ -11,7 +11,7 @@ Fetch error: http://www.escan.com/ => https://www.virusec.com/: (60, 'SSL certif Fetch error: http://escan.com/ => https://www.virusec.com/: (60, 'SSL certificate problem: self signed certificate') Fetch error: http://www.virusec.com/ => https://www.virusec.com/: (60, 'SSL certificate problem: self signed certificate') Fetch error: http://virusec.com/ => https://www.virusec.com/: (60, 'SSL certificate problem: self signed certificate') Av vendor. --> - + diff --git a/src/chrome/content/rules/Visa.com.xml b/src/chrome/content/rules/Visa.com.xml index 0bceeba718d0..bdfed44db04c 100644 --- a/src/chrome/content/rules/Visa.com.xml +++ b/src/chrome/content/rules/Visa.com.xml @@ -33,7 +33,7 @@ Non-2xx HTTP code: http://developer.visa.com/ (200) => https://developer.visa.co jobs.visa.com --> - + diff --git a/src/chrome/content/rules/VisaForChina.org.xml b/src/chrome/content/rules/VisaForChina.org.xml index b0049d006273..6e89e9e1e378 100644 --- a/src/chrome/content/rules/VisaForChina.org.xml +++ b/src/chrome/content/rules/VisaForChina.org.xml @@ -1,6 +1,21 @@ - + + + + + + - diff --git a/src/chrome/content/rules/Visa_Buxx.com.xml b/src/chrome/content/rules/Visa_Buxx.com.xml index acdfb642e314..59d74a44b064 100644 --- a/src/chrome/content/rules/Visa_Buxx.com.xml +++ b/src/chrome/content/rules/Visa_Buxx.com.xml @@ -1,25 +1,28 @@ + - + - - + + + + - - - - - + diff --git a/src/chrome/content/rules/Visa_to_Vietnam.xml b/src/chrome/content/rules/Visa_to_Vietnam.xml index 2723a5b30adb..2f1668dde35f 100644 --- a/src/chrome/content/rules/Visa_to_Vietnam.xml +++ b/src/chrome/content/rules/Visa_to_Vietnam.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Visalia_Times-Delta.xml b/src/chrome/content/rules/Visalia_Times-Delta.xml index 6ea737b6ddbe..717d975f2661 100644 --- a/src/chrome/content/rules/Visalia_Times-Delta.xml +++ b/src/chrome/content/rules/Visalia_Times-Delta.xml @@ -1,7 +1,7 @@ - + - - - - - - - - - - - diff --git a/src/chrome/content/rules/Visible_Technologies.xml b/src/chrome/content/rules/Visible_Technologies.xml index 4df9a08f81a0..48a0477b365f 100644 --- a/src/chrome/content/rules/Visible_Technologies.xml +++ b/src/chrome/content/rules/Visible_Technologies.xml @@ -5,7 +5,7 @@ Fetch error: http://visibletechnologies.com/ => https://visibletechnologies.com/ Fetch error: http://www.visibletechnologies.com/ => https://www.visibletechnologies.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.visibletechnologies.com'") --> - + @@ -16,4 +16,4 @@ Fetch error: http://www.visibletechnologies.com/ => https://www.visibletechnolog - \ No newline at end of file + diff --git a/src/chrome/content/rules/Visiblebody.com.xml b/src/chrome/content/rules/Visiblebody.com.xml index 789283c67ca5..0a2b13378173 100644 --- a/src/chrome/content/rules/Visiblebody.com.xml +++ b/src/chrome/content/rules/Visiblebody.com.xml @@ -22,6 +22,6 @@ - + diff --git a/src/chrome/content/rules/VisionAirlines.xml b/src/chrome/content/rules/VisionAirlines.xml index 0c73cdf47ddd..66588c669dda 100644 --- a/src/chrome/content/rules/VisionAirlines.xml +++ b/src/chrome/content/rules/VisionAirlines.xml @@ -8,10 +8,10 @@ Disabled by https-everywhere-checker because: Fetch error: http://visionairlines.com/ => https://www.visionairlines.com/: (60, 'SSL certificate problem: unable to get local issuer certificate') Fetch error: http://www.visionairlines.com/ => https://www.visionairlines.com/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Vision_Art_Forum.com.xml b/src/chrome/content/rules/Vision_Art_Forum.com.xml index 08d5c7e5bb89..8a3a2da975ac 100644 --- a/src/chrome/content/rules/Vision_Art_Forum.com.xml +++ b/src/chrome/content/rules/Vision_Art_Forum.com.xml @@ -12,4 +12,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Vision_Critical.com.xml b/src/chrome/content/rules/Vision_Critical.com.xml index 46e6ca21c7b9..e2884558880f 100644 --- a/src/chrome/content/rules/Vision_Critical.com.xml +++ b/src/chrome/content/rules/Vision_Critical.com.xml @@ -28,7 +28,7 @@ Fetch error: http://fr.visioncritical.com/ => https://fr.visioncritical.com/: (5 ᵐ Mismatched --> - + @@ -56,7 +56,7 @@ Fetch error: http://fr.visioncritical.com/ => https://fr.visioncritical.com/: (5 - + - + - + - + - + + + + + - - @@ -56,4 +56,5 @@ + diff --git a/src/chrome/content/rules/Vispa.net.uk.xml b/src/chrome/content/rules/Vispa.net.uk.xml new file mode 100644 index 000000000000..2abe125ef233 --- /dev/null +++ b/src/chrome/content/rules/Vispa.net.uk.xml @@ -0,0 +1,17 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Vispa.xml b/src/chrome/content/rules/Vispa.xml deleted file mode 100644 index e0d1841d3a51..000000000000 --- a/src/chrome/content/rules/Vispa.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Vistech-Communications.xml b/src/chrome/content/rules/Vistech-Communications.xml index e74c5b5e73ac..45c17f660d3f 100644 --- a/src/chrome/content/rules/Vistech-Communications.xml +++ b/src/chrome/content/rules/Vistech-Communications.xml @@ -1,9 +1,10 @@ - + + - + diff --git a/src/chrome/content/rules/Visual-Paradigm.xml b/src/chrome/content/rules/Visual-Paradigm.xml index 5f77348411b7..8ee96ff5c2bb 100644 --- a/src/chrome/content/rules/Visual-Paradigm.xml +++ b/src/chrome/content/rules/Visual-Paradigm.xml @@ -11,7 +11,7 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/VisualWebsiteOptimizer.xml b/src/chrome/content/rules/VisualWebsiteOptimizer.xml index 5ab202d19fde..285b07851023 100644 --- a/src/chrome/content/rules/VisualWebsiteOptimizer.xml +++ b/src/chrome/content/rules/VisualWebsiteOptimizer.xml @@ -1,7 +1,9 @@ - + + + - + - + diff --git a/src/chrome/content/rules/Visualcapitalist.xml b/src/chrome/content/rules/Visualcapitalist.xml new file mode 100644 index 000000000000..0c76c36fa370 --- /dev/null +++ b/src/chrome/content/rules/Visualcapitalist.xml @@ -0,0 +1,11 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/VisualizingPalestine.org.xml b/src/chrome/content/rules/VisualizingPalestine.org.xml new file mode 100644 index 000000000000..1410dc50789a --- /dev/null +++ b/src/chrome/content/rules/VisualizingPalestine.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/VitalAds.xml b/src/chrome/content/rules/VitalAds.xml index d59d2f541a50..e2252a816c33 100644 --- a/src/chrome/content/rules/VitalAds.xml +++ b/src/chrome/content/rules/VitalAds.xml @@ -8,12 +8,12 @@ Disabled by https-everywhere-checker because: Fetch error: http://vitalads.com/ => https://vitalads.com/: (60, 'SSL certificate problem: certificate has expired') Fetch error: http://www.vitalads.com/ => https://www.vitalads.com/: (60, 'SSL certificate problem: certificate has expired') --> - + - + diff --git a/src/chrome/content/rules/Vitalwerks.xml b/src/chrome/content/rules/Vitalwerks.xml index c0b86b92bdf6..4350308ca187 100644 --- a/src/chrome/content/rules/Vitalwerks.xml +++ b/src/chrome/content/rules/Vitalwerks.xml @@ -5,10 +5,11 @@ - + + + - + diff --git a/src/chrome/content/rules/Vitamin-T.xml b/src/chrome/content/rules/Vitamin-T.xml index d9a6a534e1a3..4587387aca7b 100644 --- a/src/chrome/content/rules/Vitamin-T.xml +++ b/src/chrome/content/rules/Vitamin-T.xml @@ -4,7 +4,7 @@ - + diff --git a/src/chrome/content/rules/Vitamin_D_Council.xml b/src/chrome/content/rules/Vitamin_D_Council.xml index 63c8785f0fd4..2ba6ad62eff9 100644 --- a/src/chrome/content/rules/Vitamin_D_Council.xml +++ b/src/chrome/content/rules/Vitamin_D_Council.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Vitamin_Shoppe.xml b/src/chrome/content/rules/Vitamin_Shoppe.xml index e39b9e284dc3..8c22e23e3be7 100644 --- a/src/chrome/content/rules/Vitamin_Shoppe.xml +++ b/src/chrome/content/rules/Vitamin_Shoppe.xml @@ -33,7 +33,8 @@ Fetch error: http://vitaminshoppe.com/ => https://www.vitaminshoppe.com/: Too ma - + + - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Vivanuncios.com.mx.xml b/src/chrome/content/rules/Vivanuncios.com.mx.xml new file mode 100644 index 000000000000..c1823f395b34 --- /dev/null +++ b/src/chrome/content/rules/Vivanuncios.com.mx.xml @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Viviscal.xml b/src/chrome/content/rules/Viviscal.xml index 75527773de8f..dec4b8a89f1c 100644 --- a/src/chrome/content/rules/Viviscal.xml +++ b/src/chrome/content/rules/Viviscal.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://viviscal.co.uk/ => https://viviscal.co.uk/: Cycle detected - URL already encountered: https://viviscal.co.uk/ Fetch error: http://www.viviscal.co.uk/ => https://www.viviscal.co.uk/: Cycle detected - URL already encountered: https://www.viviscal.co.uk/ --> - + diff --git a/src/chrome/content/rules/Vm.ag.xml b/src/chrome/content/rules/Vm.ag.xml index a1fbd54a8f95..ecf5a4240b1d 100644 --- a/src/chrome/content/rules/Vm.ag.xml +++ b/src/chrome/content/rules/Vm.ag.xml @@ -1,15 +1,10 @@ - - + - - + - - - - - diff --git a/src/chrome/content/rules/Vmmpxl.com.xml b/src/chrome/content/rules/Vmmpxl.com.xml deleted file mode 100644 index 4e9bf5b620b7..000000000000 --- a/src/chrome/content/rules/Vmmpxl.com.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/VoDLocker.to.xml b/src/chrome/content/rules/VoDLocker.to.xml new file mode 100644 index 000000000000..7377d66d41a4 --- /dev/null +++ b/src/chrome/content/rules/VoDLocker.to.xml @@ -0,0 +1,12 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/VoIPDistributor.net.xml b/src/chrome/content/rules/VoIPDistributor.net.xml deleted file mode 100644 index e995f8b30d15..000000000000 --- a/src/chrome/content/rules/VoIPDistributor.net.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Vocaroo.com.xml b/src/chrome/content/rules/Vocaroo.com.xml index 7e8315a3be07..32c519e8b2de 100644 --- a/src/chrome/content/rules/Vocaroo.com.xml +++ b/src/chrome/content/rules/Vocaroo.com.xml @@ -1,9 +1,19 @@ - + + + - + diff --git a/src/chrome/content/rules/Vocativ.com.xml b/src/chrome/content/rules/Vocativ.com.xml index 7c22b16aedf5..5cd79630a43d 100644 --- a/src/chrome/content/rules/Vocativ.com.xml +++ b/src/chrome/content/rules/Vocativ.com.xml @@ -11,7 +11,7 @@ Fetch error: http://www.vocativ.com/content/themes/vocativ/images/vocativ-logo-2 * Secured by us --> - + diff --git a/src/chrome/content/rules/Vodafone.co.nz.xml b/src/chrome/content/rules/Vodafone.co.nz.xml index 312f9fb9a2af..eed058777288 100644 --- a/src/chrome/content/rules/Vodafone.co.nz.xml +++ b/src/chrome/content/rules/Vodafone.co.nz.xml @@ -57,7 +57,7 @@ Fetch error: http://wholesale.vodafone.co.nz/ => https://wholesale.vodafone.co.n * Secured by us --> - + @@ -100,7 +100,7 @@ Fetch error: http://wholesale.vodafone.co.nz/ => https://wholesale.vodafone.co.n - + - + diff --git a/src/chrome/content/rules/Vodafone.ie.xml b/src/chrome/content/rules/Vodafone.ie.xml index 7b96752db4d9..0ba85778e69f 100644 --- a/src/chrome/content/rules/Vodafone.ie.xml +++ b/src/chrome/content/rules/Vodafone.ie.xml @@ -10,9 +10,6 @@ * Handshake fails - ^vodafone.ie: Mismatched - - Insecure cookies are set for these hosts: - community.vodafone.ie @@ -28,41 +25,30 @@ * Secured by us + Some pages redirect to HTTP: + shop.vodafone.ie + + Keeping partial coverage causes CORS issues + + Mixed content: + community.vodafone.ie + --> - - + + - - - - - - - - - - - - - - - - - + diff --git a/src/chrome/content/rules/Vodafone.pt.xml b/src/chrome/content/rules/Vodafone.pt.xml index e6d4f500d4b5..7c305348a2e7 100644 --- a/src/chrome/content/rules/Vodafone.pt.xml +++ b/src/chrome/content/rules/Vodafone.pt.xml @@ -1,17 +1,8 @@ - - - - + + + - @@ -22,13 +13,12 @@ Fetch error: http://webvodafonemail.vodafone.pt/ => https://webvodafonemail.voda - - + diff --git a/src/chrome/content/rules/Vodafone.xml b/src/chrome/content/rules/Vodafone.xml index 9ccb80912c35..0623ce5e9a08 100644 --- a/src/chrome/content/rules/Vodafone.xml +++ b/src/chrome/content/rules/Vodafone.xml @@ -1,8 +1,4 @@ - - - - - + - - - - - - - - - - - - - - - - - + diff --git a/src/chrome/content/rules/Voffka.xml b/src/chrome/content/rules/Voffka.xml index 08914b60dddb..3777ac1fbf2e 100644 --- a/src/chrome/content/rules/Voffka.xml +++ b/src/chrome/content/rules/Voffka.xml @@ -1,38 +1,67 @@ - - - - + - - - - + + + + + + + + + diff --git a/src/chrome/content/rules/Vogel.de.xml b/src/chrome/content/rules/Vogel.de.xml index e96cd462984b..dc108df1dfe9 100644 --- a/src/chrome/content/rules/Vogel.de.xml +++ b/src/chrome/content/rules/Vogel.de.xml @@ -9,7 +9,9 @@ - + + + + diff --git a/src/chrome/content/rules/VoidLinux.org.xml b/src/chrome/content/rules/VoidLinux.org.xml new file mode 100644 index 000000000000..64a3b8cb9e06 --- /dev/null +++ b/src/chrome/content/rules/VoidLinux.org.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Volatile_Systems.com-problematic.xml b/src/chrome/content/rules/Volatile_Systems.com-problematic.xml index f962c5c270a0..88ffbf203c4b 100644 --- a/src/chrome/content/rules/Volatile_Systems.com-problematic.xml +++ b/src/chrome/content/rules/Volatile_Systems.com-problematic.xml @@ -7,7 +7,6 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Volatile_Systems.com.xml b/src/chrome/content/rules/Volatile_Systems.com.xml index 3ff48bce27a0..bec9cef9c502 100644 --- a/src/chrome/content/rules/Volatile_Systems.com.xml +++ b/src/chrome/content/rules/Volatile_Systems.com.xml @@ -15,7 +15,7 @@ Fetch error: http://www.volatilesystems.com/ => https://www.volatilesystems.com/ - lists (works; expired 2008-12-15, mismatched, CN: www.volatilesystems.com) --> - + @@ -30,4 +30,4 @@ Fetch error: http://www.volatilesystems.com/ => https://www.volatilesystems.com/ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Volexity.com.xml b/src/chrome/content/rules/Volexity.com.xml index f5b7b28a3dd3..4acd7698a8ca 100644 --- a/src/chrome/content/rules/Volexity.com.xml +++ b/src/chrome/content/rules/Volexity.com.xml @@ -27,7 +27,7 @@ --> - + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Volgistics.xml b/src/chrome/content/rules/Volgistics.xml deleted file mode 100644 index 0ea5d320edcb..000000000000 --- a/src/chrome/content/rules/Volgistics.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/VolkswagenBank.xml b/src/chrome/content/rules/VolkswagenBank.xml index 404053727a38..43f269aa55c2 100644 --- a/src/chrome/content/rules/VolkswagenBank.xml +++ b/src/chrome/content/rules/VolkswagenBank.xml @@ -1,7 +1,8 @@ - + + - + diff --git a/src/chrome/content/rules/Volotea.com.xml b/src/chrome/content/rules/Volotea.com.xml index 0710a0489e76..3eb045d44658 100644 --- a/src/chrome/content/rules/Volotea.com.xml +++ b/src/chrome/content/rules/Volotea.com.xml @@ -13,13 +13,18 @@ - + + + + + + + - + diff --git a/src/chrome/content/rules/Voltage.com.xml b/src/chrome/content/rules/Voltage.com.xml deleted file mode 100644 index 7f1cb730f2c3..000000000000 --- a/src/chrome/content/rules/Voltage.com.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Voltaic_Systems.com.xml b/src/chrome/content/rules/Voltaic_Systems.com.xml index 7b6f069dba45..4d9f23a326b3 100644 --- a/src/chrome/content/rules/Voltaic_Systems.com.xml +++ b/src/chrome/content/rules/Voltaic_Systems.com.xml @@ -12,7 +12,7 @@ - + - + + - + diff --git a/src/chrome/content/rules/Volunteer_Centers_of_Michigan.xml b/src/chrome/content/rules/Volunteer_Centers_of_Michigan.xml index e2a39c3e64d7..713c5e690fc8 100644 --- a/src/chrome/content/rules/Volunteer_Centers_of_Michigan.xml +++ b/src/chrome/content/rules/Volunteer_Centers_of_Michigan.xml @@ -14,4 +14,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Volusion.xml b/src/chrome/content/rules/Volusion.xml index 51436d760e74..2476b2ca6c12 100644 --- a/src/chrome/content/rules/Volusion.xml +++ b/src/chrome/content/rules/Volusion.xml @@ -43,21 +43,24 @@ - + + - + + + + + + - + - - + diff --git a/src/chrome/content/rules/Voodoo.com.xml b/src/chrome/content/rules/Voodoo.com.xml index ffdc5b010a21..a6ce3f415847 100644 --- a/src/chrome/content/rules/Voodoo.com.xml +++ b/src/chrome/content/rules/Voodoo.com.xml @@ -12,7 +12,8 @@ - + + @@ -21,4 +22,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Vook.com.xml b/src/chrome/content/rules/Vook.com.xml deleted file mode 100644 index 2b4780758057..000000000000 --- a/src/chrome/content/rules/Vook.com.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Voost.xml b/src/chrome/content/rules/Voost.xml index 7f33f088a8ac..d0755f564a54 100644 --- a/src/chrome/content/rules/Voost.xml +++ b/src/chrome/content/rules/Voost.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Vooxe.com.xml b/src/chrome/content/rules/Vooxe.com.xml new file mode 100644 index 000000000000..62723b65240a --- /dev/null +++ b/src/chrome/content/rules/Vooxe.com.xml @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Vorpal.io.xml b/src/chrome/content/rules/Vorpal.io.xml index 710be0ed8d30..5647108a93e4 100644 --- a/src/chrome/content/rules/Vorpal.io.xml +++ b/src/chrome/content/rules/Vorpal.io.xml @@ -14,13 +14,13 @@ Fetch error: http://www.vorpal.io/ => https://www.vorpal.io/: (60, 'SSL certific - c929457.ssl.cf2.rackcdn.com --> - + - + https://www.votewatch.eu/: (60, 'SSL certificate problem: certificate has expired') Fetch error: http://www.votewatch.eu/ => https://www.votewatch.eu/: (60, 'SSL certificate problem: certificate has expired') --> - + - + - + diff --git a/src/chrome/content/rules/Vovici.com.xml b/src/chrome/content/rules/Vovici.com.xml index e40ee203e6fd..3d77ad8a1acc 100644 --- a/src/chrome/content/rules/Vovici.com.xml +++ b/src/chrome/content/rules/Vovici.com.xml @@ -9,7 +9,7 @@ Fetch error: http://desktop.vovici.com/ => https://desktop.vovici.com/: (28, 'Op Fetch error: http://system.vovici.com/ => https://system.vovici.com/: (28, 'Operation timed out after 0 milliseconds with 0 out of 0 bytes received') Fetch error: http://www.vovici.com/ => https://vovici.com/: (28, 'Operation timed out after 0 milliseconds with 0 out of 0 bytes received') --> - + diff --git a/src/chrome/content/rules/Vox.com.xml b/src/chrome/content/rules/Vox.com.xml index 5a4179c8501a..e636dfa5b91f 100644 --- a/src/chrome/content/rules/Vox.com.xml +++ b/src/chrome/content/rules/Vox.com.xml @@ -5,7 +5,6 @@ - Curbed.cc.xml - Curbed.com.xml - Eater.xml - - Polygon.xml - Racked.com.xml - Recode.net.xml - The-Verge.xml @@ -19,38 +18,14 @@ ʳ Refused - - ^vox.com: Refused - --> - + - - - - + - - - - - - - - - - - - + - + diff --git a/src/chrome/content/rules/Voxel.xml b/src/chrome/content/rules/Voxel.xml index e63863bdefc4..f2aa6e268377 100644 --- a/src/chrome/content/rules/Voxel.xml +++ b/src/chrome/content/rules/Voxel.xml @@ -5,7 +5,7 @@ - + - + + + + + + diff --git a/src/chrome/content/rules/Voyage-Prive.co.uk.xml b/src/chrome/content/rules/Voyage-Prive.co.uk.xml index be6a52dadab4..73bb9840469a 100644 --- a/src/chrome/content/rules/Voyage-Prive.co.uk.xml +++ b/src/chrome/content/rules/Voyage-Prive.co.uk.xml @@ -31,7 +31,7 @@ - + - + - + https://boat.voyagegroup.com/: (28, www.voyagegroup.com: Mismatched --> - + diff --git a/src/chrome/content/rules/Vozpopuli.com.xml b/src/chrome/content/rules/Vozpopuli.com.xml index 03b256006c58..313cddec6e17 100644 --- a/src/chrome/content/rules/Vozpopuli.com.xml +++ b/src/chrome/content/rules/Vozpopuli.com.xml @@ -10,7 +10,7 @@ Fetch error: http://tendencias.vozpopuli.com/ => https://tendencias.vozpopuli.co * gestion.vozpopuli.com * bolsa.vozpopuli.com --> - + diff --git a/src/chrome/content/rules/Vpnbook.com.xml b/src/chrome/content/rules/Vpnbook.com.xml index 3d7549ac6675..65b13721403e 100644 --- a/src/chrome/content/rules/Vpnbook.com.xml +++ b/src/chrome/content/rules/Vpnbook.com.xml @@ -1,7 +1,8 @@ - + + @@ -13,7 +14,6 @@ - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/VpsBoard.com.xml b/src/chrome/content/rules/VpsBoard.com.xml deleted file mode 100644 index ec2f5e315e92..000000000000 --- a/src/chrome/content/rules/VpsBoard.com.xml +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Vr-mfr.de.xml b/src/chrome/content/rules/Vr-mfr.de.xml new file mode 100644 index 000000000000..60bd4b529bc6 --- /dev/null +++ b/src/chrome/content/rules/Vr-mfr.de.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/Vrt.be.xml b/src/chrome/content/rules/Vrt.be.xml index ab8337b3498d..fb05eeade4f7 100644 --- a/src/chrome/content/rules/Vrt.be.xml +++ b/src/chrome/content/rules/Vrt.be.xml @@ -13,6 +13,8 @@ pers.vrt.be Mixed Content: radiospotcel.vrt.be (Missing CSS) + Timeout + css.vrt.be --> @@ -21,8 +23,7 @@ - - + diff --git a/src/chrome/content/rules/Vsexshop.ru.xml b/src/chrome/content/rules/Vsexshop.ru.xml index 5eab7c8bea91..5971aab5c0d8 100644 --- a/src/chrome/content/rules/Vsexshop.ru.xml +++ b/src/chrome/content/rules/Vsexshop.ru.xml @@ -4,11 +4,12 @@ --> - + + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Vtiger.com.xml b/src/chrome/content/rules/Vtiger.com.xml index e053ec59794f..84c883992906 100644 --- a/src/chrome/content/rules/Vtiger.com.xml +++ b/src/chrome/content/rules/Vtiger.com.xml @@ -10,7 +10,7 @@ Fetch error: http://blogs.vtiger.com/ => https://blogs.vtiger.com/: (7, 'Failed ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -25,7 +25,7 @@ Fetch error: http://blogs.vtiger.com/ => https://blogs.vtiger.com/: (7, 'Failed --> - + - diff --git a/src/chrome/content/rules/Vueling.xml b/src/chrome/content/rules/Vueling.xml index 1203b3ac14f1..3d301a00cbd1 100644 --- a/src/chrome/content/rules/Vueling.xml +++ b/src/chrome/content/rules/Vueling.xml @@ -1,7 +1,7 @@ - + diff --git a/src/chrome/content/rules/Vultr.com.xml b/src/chrome/content/rules/Vultr.com.xml index bcb8e768de1f..d2f257e9590a 100644 --- a/src/chrome/content/rules/Vultr.com.xml +++ b/src/chrome/content/rules/Vultr.com.xml @@ -8,7 +8,7 @@ - + - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Vumanity.net.xml b/src/chrome/content/rules/Vumanity.net.xml index e0b460bf5352..7e87c6e8b6a3 100644 --- a/src/chrome/content/rules/Vumanity.net.xml +++ b/src/chrome/content/rules/Vumanity.net.xml @@ -9,7 +9,7 @@ Fetch error: http://www.vumanity.net/ => https://www.vumanity.net/: (28, 'Connec - help (dropped) --> - + diff --git a/src/chrome/content/rules/Vungle.com-falsemixed.xml b/src/chrome/content/rules/Vungle.com-falsemixed.xml index b080dba44b04..368af0cc1ba2 100644 --- a/src/chrome/content/rules/Vungle.com-falsemixed.xml +++ b/src/chrome/content/rules/Vungle.com-falsemixed.xml @@ -4,13 +4,11 @@ --> - + + - - - + diff --git a/src/chrome/content/rules/Vuze.com-falsemixed.xml b/src/chrome/content/rules/Vuze.com-falsemixed.xml index 9bc67c28838c..9d545f9692b2 100644 --- a/src/chrome/content/rules/Vuze.com-falsemixed.xml +++ b/src/chrome/content/rules/Vuze.com-falsemixed.xml @@ -8,7 +8,7 @@ - + - + - + + + + + + diff --git a/src/chrome/content/rules/Vzaar.xml b/src/chrome/content/rules/Vzaar.xml index 62b91103a830..2677035c1884 100644 --- a/src/chrome/content/rules/Vzaar.xml +++ b/src/chrome/content/rules/Vzaar.xml @@ -1,47 +1,18 @@ - - - - - + + - + - - - - - - - - - - - - - + - + diff --git a/src/chrome/content/rules/W00tads.com.xml b/src/chrome/content/rules/W00tads.com.xml index 71ea196eb847..87e0c2415232 100644 --- a/src/chrome/content/rules/W00tads.com.xml +++ b/src/chrome/content/rules/W00tads.com.xml @@ -6,7 +6,7 @@ Fetch error: http://delivery.w00tads.com/ => https://delivery.w00tads.com/: (28, Fetch error: http://www.w00tads.com/ => https://www.w00tads.com/: (28, 'Connection timed out after 20001 milliseconds') --> - + diff --git a/src/chrome/content/rules/W3C-Test.org.xml b/src/chrome/content/rules/W3C-Test.org.xml new file mode 100644 index 000000000000..6ae6a5285743 --- /dev/null +++ b/src/chrome/content/rules/W3C-Test.org.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/W3C.xml b/src/chrome/content/rules/W3C.xml index b07eb63ab093..6e612d5fa1ff 100644 --- a/src/chrome/content/rules/W3C.xml +++ b/src/chrome/content/rules/W3C.xml @@ -6,9 +6,12 @@ - flanders (mismatch) - herman (timeout) - irc (401) - - people (mismatch) + - people (mixed content) - services (mixed content) - test (no longer exists on server) + + Related: + W3C-Test.org.xml --> diff --git a/src/chrome/content/rules/W3Counter.com.xml b/src/chrome/content/rules/W3Counter.com.xml index d8e1e2e33d44..1f28d370c5c1 100644 --- a/src/chrome/content/rules/W3Counter.com.xml +++ b/src/chrome/content/rules/W3Counter.com.xml @@ -1,41 +1,9 @@ - - - - + - - - - - - - - - - - - - - + + diff --git a/src/chrome/content/rules/W4a.fr.xml b/src/chrome/content/rules/W4a.fr.xml deleted file mode 100644 index 8cf5886ca007..000000000000 --- a/src/chrome/content/rules/W4a.fr.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/W55c.net.xml b/src/chrome/content/rules/W55c.net.xml index 41c622654cdc..8a8448bc7dc1 100644 --- a/src/chrome/content/rules/W55c.net.xml +++ b/src/chrome/content/rules/W55c.net.xml @@ -25,7 +25,7 @@ --> - + - - - - - - - - - - - diff --git a/src/chrome/content/rules/WAPY.xml b/src/chrome/content/rules/WAPY.xml index 6d436e427005..e82dafdffeaa 100644 --- a/src/chrome/content/rules/WAPY.xml +++ b/src/chrome/content/rules/WAPY.xml @@ -2,7 +2,8 @@ - + + - + diff --git a/src/chrome/content/rules/WD2go.com.xml b/src/chrome/content/rules/WD2go.com.xml index 16e6dcc10d5e..02b1dbc9fd31 100644 --- a/src/chrome/content/rules/WD2go.com.xml +++ b/src/chrome/content/rules/WD2go.com.xml @@ -4,7 +4,7 @@ - + diff --git a/src/chrome/content/rules/WDWS.xml b/src/chrome/content/rules/WDWS.xml index 3f42aea9d8af..dd01bf0b3e52 100644 --- a/src/chrome/content/rules/WDWS.xml +++ b/src/chrome/content/rules/WDWS.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/WEBxMedia.xml b/src/chrome/content/rules/WEBxMedia.xml index 5db1edb8e22a..d8b3fa62d8f1 100644 --- a/src/chrome/content/rules/WEBxMedia.xml +++ b/src/chrome/content/rules/WEBxMedia.xml @@ -5,7 +5,7 @@ Fetch error: http://webxmedia.co.uk/ => https://webxmedia.co.uk/: (51, "SSL: no Fetch error: http://www.webxmedia.co.uk/ => https://www.webxmedia.co.uk/: (51, "SSL: no alternative certificate subject name matches target host name 'www.webxmedia.co.uk'") --> - + @@ -16,4 +16,4 @@ Fetch error: http://www.webxmedia.co.uk/ => https://www.webxmedia.co.uk/: (51, " - \ No newline at end of file + diff --git a/src/chrome/content/rules/WEDOS.xml b/src/chrome/content/rules/WEDOS.xml index 7dcf6e59c712..96a0c2beffc7 100644 --- a/src/chrome/content/rules/WEDOS.xml +++ b/src/chrome/content/rules/WEDOS.xml @@ -8,17 +8,11 @@ - dod.wedos.com - webpagetest.wedos.com - *.wedos.ws - + Redirect loop: - www.wedos.com --> - - - - - - diff --git a/src/chrome/content/rules/WEForum.org.xml b/src/chrome/content/rules/WEForum.org.xml new file mode 100644 index 000000000000..438a0ba188a2 --- /dev/null +++ b/src/chrome/content/rules/WEForum.org.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/WE_Forum.org.xml b/src/chrome/content/rules/WE_Forum.org.xml deleted file mode 100644 index 15ba0db8b696..000000000000 --- a/src/chrome/content/rules/WE_Forum.org.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/WHI_CDN.com.xml b/src/chrome/content/rules/WHI_CDN.com.xml deleted file mode 100644 index 7c994c5a8bb2..000000000000 --- a/src/chrome/content/rules/WHI_CDN.com.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/WHIcdn.com.xml b/src/chrome/content/rules/WHIcdn.com.xml new file mode 100644 index 000000000000..232b39782dbe --- /dev/null +++ b/src/chrome/content/rules/WHIcdn.com.xml @@ -0,0 +1,15 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/WHMCS.xml b/src/chrome/content/rules/WHMCS.xml index 459cd85a3b6c..2b4208d4d2d0 100644 --- a/src/chrome/content/rules/WHMCS.xml +++ b/src/chrome/content/rules/WHMCS.xml @@ -52,7 +52,7 @@ --> - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/WHSmith.xml b/src/chrome/content/rules/WHSmith.xml index d5520929b95a..5b7c0be553d3 100644 --- a/src/chrome/content/rules/WHSmith.xml +++ b/src/chrome/content/rules/WHSmith.xml @@ -27,7 +27,7 @@ - + - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/WIPO.int.xml b/src/chrome/content/rules/WIPO.int.xml new file mode 100644 index 000000000000..9b6f17ec1502 --- /dev/null +++ b/src/chrome/content/rules/WIPO.int.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/WLxrs.com.xml b/src/chrome/content/rules/WLxrs.com.xml index c6ca7f59675f..a9b10b3c42a6 100644 --- a/src/chrome/content/rules/WLxrs.com.xml +++ b/src/chrome/content/rules/WLxrs.com.xml @@ -15,7 +15,7 @@ Fetch error: http://secure.wlxrs.com/ => https://secure.wlxrs.com/: (51, "SSL: n - secure --> - + diff --git a/src/chrome/content/rules/WM_Jobs.co.uk.xml b/src/chrome/content/rules/WM_Jobs.co.uk.xml index b430f8797d90..133753f73f25 100644 --- a/src/chrome/content/rules/WM_Jobs.co.uk.xml +++ b/src/chrome/content/rules/WM_Jobs.co.uk.xml @@ -10,13 +10,13 @@ Fetch error: http://wmjobs.co.uk/ => https://wmjobs.co.uk/: (60, 'SSL certificat ˢ Secured by us --> - + - + - + - + + + - + diff --git a/src/chrome/content/rules/WP-Engine.xml b/src/chrome/content/rules/WP-Engine.xml index ea0739a52696..f7630719288f 100644 --- a/src/chrome/content/rules/WP-Engine.xml +++ b/src/chrome/content/rules/WP-Engine.xml @@ -15,7 +15,6 @@ Problematic subdomains: - cdn (404; mismatched, CN: *.netdna-ssl.com) - - press (mismatched, CN: *.heroku.com) - *.*.wpengine.com (mismatched, CN: *.wpengine.com) @@ -25,7 +24,7 @@ - cdn (→ ^) - devbox - my - - press (→ wpengine.totemapp.com) + - press - signup - support - \w+ * @@ -60,7 +59,6 @@ - @@ -83,15 +81,12 @@ - + - - diff --git a/src/chrome/content/rules/WP.pl-problematic.xml b/src/chrome/content/rules/WP.pl-problematic.xml deleted file mode 100644 index 8e55e58c6695..000000000000 --- a/src/chrome/content/rules/WP.pl-problematic.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/WP.pl.xml b/src/chrome/content/rules/WP.pl.xml index 0c3ba2f0d59d..3262b3b08093 100644 --- a/src/chrome/content/rules/WP.pl.xml +++ b/src/chrome/content/rules/WP.pl.xml @@ -1,153 +1,87 @@ - - + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -191,8 +125,8 @@ Fetch error: http://banki.wp.pl/ => https://banki.wp.pl/: (7, 'Failed to connect - - + + - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/WP_Software.net.xml b/src/chrome/content/rules/WP_Software.net.xml deleted file mode 100644 index 173d16f44ec2..000000000000 --- a/src/chrome/content/rules/WP_Software.net.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/WP_VulnDB.com.xml b/src/chrome/content/rules/WP_VulnDB.com.xml deleted file mode 100644 index 2f50a39033e2..000000000000 --- a/src/chrome/content/rules/WP_VulnDB.com.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/WP_digital.net.xml b/src/chrome/content/rules/WP_digital.net.xml index 773330e7d31b..2dcae0256bd9 100644 --- a/src/chrome/content/rules/WP_digital.net.xml +++ b/src/chrome/content/rules/WP_digital.net.xml @@ -39,7 +39,8 @@ --> - + + - - - - - - - - - - diff --git a/src/chrome/content/rules/WRAL.com.xml b/src/chrome/content/rules/WRAL.com.xml index 93bc1e75ece7..bdaa473b58df 100644 --- a/src/chrome/content/rules/WRAL.com.xml +++ b/src/chrome/content/rules/WRAL.com.xml @@ -10,19 +10,19 @@ Fetch error: http://wral.com/ => https://wral.com/: Cycle detected - URL already - wwwcache (akamai) --> - + - + + - + diff --git a/src/chrome/content/rules/WSJ.net.xml b/src/chrome/content/rules/WSJ.net.xml index b33e0baf1c06..3d777d77c323 100644 --- a/src/chrome/content/rules/WSJ.net.xml +++ b/src/chrome/content/rules/WSJ.net.xml @@ -8,71 +8,61 @@ - sc.wsj.net.edgesuite.net 403: - stvquotes.wsj.net - - Different http/https content: - s.wsj.net/video/ http://s.wsj.net/video/public/videocenter.min-a269c50b.css + - stvquotes.wsj.net Mismatched: - ^wsj.net - www.wsj.net - images.conferences.wsj.net + - wsj.net + - www.wsj.net + - barrons.wsj.net + - ereader.wsj.net + - images.conferences.wsj.net --> - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - + diff --git a/src/chrome/content/rules/WSO2.com.xml b/src/chrome/content/rules/WSO2.com.xml index d52ee30f0eb3..4036cc877d49 100644 --- a/src/chrome/content/rules/WSO2.com.xml +++ b/src/chrome/content/rules/WSO2.com.xml @@ -11,7 +11,7 @@ - Images, on: - - ^ from connect * + - ^ from connect * - ^ from \d.content * * Secured by us diff --git a/src/chrome/content/rules/WSPRnet.org.xml b/src/chrome/content/rules/WSPRnet.org.xml new file mode 100644 index 000000000000..02bc23509a74 --- /dev/null +++ b/src/chrome/content/rules/WSPRnet.org.xml @@ -0,0 +1,13 @@ + + + + + + + + diff --git a/src/chrome/content/rules/WURFUL.xml b/src/chrome/content/rules/WURFUL.xml new file mode 100644 index 000000000000..95ac55a67cc1 --- /dev/null +++ b/src/chrome/content/rules/WURFUL.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/WU_Payment_Solutions.com.xml b/src/chrome/content/rules/WU_Payment_Solutions.com.xml deleted file mode 100644 index c3cd06cadacb..000000000000 --- a/src/chrome/content/rules/WU_Payment_Solutions.com.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/WVU.edu.xml b/src/chrome/content/rules/WVU.edu.xml new file mode 100644 index 000000000000..17cdcd3be922 --- /dev/null +++ b/src/chrome/content/rules/WVU.edu.xml @@ -0,0 +1,96 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/WWTE.xml b/src/chrome/content/rules/WWTE.xml index 07b8ab002958..646e775312fc 100644 --- a/src/chrome/content/rules/WWTE.xml +++ b/src/chrome/content/rules/WWTE.xml @@ -48,7 +48,7 @@ Fetch error: http://www.wwte14.com/ => https://travel.wwte1.com/pubspec/scripts/ * Mismatched, CN: *.wwte1.com --> - + diff --git a/src/chrome/content/rules/WaBi.com.xml b/src/chrome/content/rules/WaBi.com.xml deleted file mode 100644 index 92a07cbafd22..000000000000 --- a/src/chrome/content/rules/WaBi.com.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/WaPo_Labs.com.xml b/src/chrome/content/rules/WaPo_Labs.com.xml deleted file mode 100644 index 36af32ba7823..000000000000 --- a/src/chrome/content/rules/WaPo_Labs.com.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Waag.org.xml b/src/chrome/content/rules/Waag.org.xml index 020aa6eb7031..bdc26616c54d 100644 --- a/src/chrome/content/rules/Waag.org.xml +++ b/src/chrome/content/rules/Waag.org.xml @@ -1,18 +1,5 @@ - - - - diff --git a/src/chrome/content/rules/Wachovia.xml b/src/chrome/content/rules/Wachovia.xml index 0eb66a3050e7..3590f9ff3f00 100644 --- a/src/chrome/content/rules/Wachovia.xml +++ b/src/chrome/content/rules/Wachovia.xml @@ -10,7 +10,7 @@ - myed.wachovia.com --> - + @@ -23,7 +23,7 @@ --> - + - + + - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Waffles.fm.xml b/src/chrome/content/rules/Waffles.fm.xml index c8a5f59059a6..97aa8b3023de 100644 --- a/src/chrome/content/rules/Waffles.fm.xml +++ b/src/chrome/content/rules/Waffles.fm.xml @@ -11,7 +11,7 @@ Fetch error: http://www.waffles.fm/ => https://www.waffles.fm/: (28, 'Connection * Secured by us, site redirects to https without us --> - + diff --git a/src/chrome/content/rules/Waitrose_Direct.com.xml b/src/chrome/content/rules/Waitrose_Direct.com.xml index 21159ddedc25..3540085c2818 100644 --- a/src/chrome/content/rules/Waitrose_Direct.com.xml +++ b/src/chrome/content/rules/Waitrose_Direct.com.xml @@ -21,7 +21,8 @@ - + + diff --git a/src/chrome/content/rules/Wakelet.com.xml b/src/chrome/content/rules/Wakelet.com.xml index b0ff2ca9f1c2..d23e0b25b686 100644 --- a/src/chrome/content/rules/Wakelet.com.xml +++ b/src/chrome/content/rules/Wakelet.com.xml @@ -13,7 +13,7 @@ Fetch error: http://img3.wakelet.com/ => https://img3.wakelet.com/: (6, 'Could n - wakelet.com --> - + @@ -28,7 +28,7 @@ Fetch error: http://img3.wakelet.com/ => https://img3.wakelet.com/: (6, 'Could n --> - + - + https://cssiw.wales.gov.uk/: (51, "SS - statswales.wales.gov.uk --> - + @@ -51,7 +51,7 @@ Fetch error: http://cssiw.wales.gov.uk/ => https://cssiw.wales.gov.uk/: (51, "SS - + - + + + @@ -22,7 +24,6 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Walking_Men.xml b/src/chrome/content/rules/Walking_Men.xml index 3991ae5bc442..d2fd059ac497 100644 --- a/src/chrome/content/rules/Walking_Men.xml +++ b/src/chrome/content/rules/Walking_Men.xml @@ -14,7 +14,7 @@ - + diff --git a/src/chrome/content/rules/Wall-Street-Journal.xml b/src/chrome/content/rules/Wall-Street-Journal.xml new file mode 100644 index 000000000000..9c9f4e2da194 --- /dev/null +++ b/src/chrome/content/rules/Wall-Street-Journal.xml @@ -0,0 +1,125 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Wallabag.org.xml b/src/chrome/content/rules/Wallabag.org.xml deleted file mode 100644 index 16a611b6f52f..000000000000 --- a/src/chrome/content/rules/Wallabag.org.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Wallet.La.xml b/src/chrome/content/rules/Wallet.La.xml index 7c828fd738fe..6a17b7ebaf14 100644 --- a/src/chrome/content/rules/Wallet.La.xml +++ b/src/chrome/content/rules/Wallet.La.xml @@ -5,7 +5,7 @@ Fetch error: http://wallet.la/ => https://wallet.la/: (28, 'Connection timed out Fetch error: http://www.wallet.la/ => https://www.wallet.la/: (7, '') --> - + @@ -13,7 +13,7 @@ Fetch error: http://www.wallet.la/ => https://www.wallet.la/: (7, '') - + - + diff --git a/src/chrome/content/rules/Walmart.com-falsemixed.xml b/src/chrome/content/rules/Walmart.com-falsemixed.xml deleted file mode 100644 index 341e9d03ff6e..000000000000 --- a/src/chrome/content/rules/Walmart.com-falsemixed.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Walmart.com.xml b/src/chrome/content/rules/Walmart.com.xml index 2fb7b625eaec..1e006740a7ef 100644 --- a/src/chrome/content/rules/Walmart.com.xml +++ b/src/chrome/content/rules/Walmart.com.xml @@ -1,21 +1,5 @@ - - + + + - - - + + + + + + - - + - + + + + + + - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - + - diff --git a/src/chrome/content/rules/Walmart_images.com.xml b/src/chrome/content/rules/Walmart_images.com.xml index 175adc27da87..677dc63f3bdf 100644 --- a/src/chrome/content/rules/Walmart_images.com.xml +++ b/src/chrome/content/rules/Walmart_images.com.xml @@ -1,4 +1,13 @@ + - + - + - - - + + @@ -34,10 +42,6 @@ - - - diff --git a/src/chrome/content/rules/Waltham_Forest.gov.uk.xml b/src/chrome/content/rules/Waltham_Forest.gov.uk.xml index 8c2c30f1088d..559328325be4 100644 --- a/src/chrome/content/rules/Waltham_Forest.gov.uk.xml +++ b/src/chrome/content/rules/Waltham_Forest.gov.uk.xml @@ -64,7 +64,7 @@ - + - - - + + + + + + - + + + + + + + + diff --git a/src/chrome/content/rules/Wand.com.xml b/src/chrome/content/rules/Wand.com.xml index e2fea1fe8c91..ae3b1ab4507d 100644 --- a/src/chrome/content/rules/Wand.com.xml +++ b/src/chrome/content/rules/Wand.com.xml @@ -10,7 +10,7 @@ Fetch error: http://www.wand.com/ => https://www.wand.com/: (28, 'Connection tim - www.wand.com --> - + diff --git a/src/chrome/content/rules/Wandoujia.xml b/src/chrome/content/rules/Wandoujia.xml index f1538d5a6db2..47b18eb1802d 100644 --- a/src/chrome/content/rules/Wandoujia.xml +++ b/src/chrome/content/rules/Wandoujia.xml @@ -36,7 +36,6 @@ - diff --git a/src/chrome/content/rules/Wanglibao.com.xml b/src/chrome/content/rules/Wanglibao.com.xml deleted file mode 100644 index e1d8ece3da7b..000000000000 --- a/src/chrome/content/rules/Wanglibao.com.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Wangyin.com.xml b/src/chrome/content/rules/Wangyin.com.xml index e22283f59ee1..34b46a46ef39 100644 --- a/src/chrome/content/rules/Wangyin.com.xml +++ b/src/chrome/content/rules/Wangyin.com.xml @@ -30,7 +30,7 @@ - + - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Waqf.info.xml b/src/chrome/content/rules/Waqf.info.xml new file mode 100644 index 000000000000..b1edd87947e0 --- /dev/null +++ b/src/chrome/content/rules/Waqf.info.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Waqi.info.xml b/src/chrome/content/rules/Waqi.info.xml new file mode 100644 index 000000000000..7eaf24d3358e --- /dev/null +++ b/src/chrome/content/rules/Waqi.info.xml @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/War_Z.xml b/src/chrome/content/rules/War_Z.xml deleted file mode 100644 index 0185fb7f59a6..000000000000 --- a/src/chrome/content/rules/War_Z.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/WardahBooks.com.xml b/src/chrome/content/rules/WardahBooks.com.xml new file mode 100644 index 000000000000..b7318cf74945 --- /dev/null +++ b/src/chrome/content/rules/WardahBooks.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Wargaming.net.xml b/src/chrome/content/rules/Wargaming.net.xml deleted file mode 100644 index 8aba83ca9584..000000000000 --- a/src/chrome/content/rules/Wargaming.net.xml +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Wargaming.xml b/src/chrome/content/rules/Wargaming.xml new file mode 100644 index 000000000000..5b3e16bd3267 --- /dev/null +++ b/src/chrome/content/rules/Wargaming.xml @@ -0,0 +1,93 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Warner_Bros.com.xml b/src/chrome/content/rules/Warner_Bros.com.xml index 3839c41c39c8..0d0eb70b23cf 100644 --- a/src/chrome/content/rules/Warner_Bros.com.xml +++ b/src/chrome/content/rules/Warner_Bros.com.xml @@ -5,7 +5,6 @@ Fetch error: http://registration.warnerbros.com/ => https://registration.warnerb Other Warner Bros rulesets: - - Batman_Arkham_Knight.com.xml - Community.wbgames.com.xml - Shadow_of_Mordor.com.xml - WB_Play.com.xml @@ -21,7 +20,7 @@ Fetch error: http://registration.warnerbros.com/ => https://registration.warnerb ² Redirects to http --> - + diff --git a/src/chrome/content/rules/Warosu.org.xml b/src/chrome/content/rules/Warosu.org.xml index 6902f5078ed3..e7429216a358 100644 --- a/src/chrome/content/rules/Warosu.org.xml +++ b/src/chrome/content/rules/Warosu.org.xml @@ -17,7 +17,7 @@ --> - + - + https://warwick-castle.com/: (28, 'Co For other Merlin Entertainments coverage, see Merlin-Entertainments.xml. --> - + diff --git a/src/chrome/content/rules/Warzone2100.xml b/src/chrome/content/rules/Warzone2100.xml deleted file mode 100644 index c4e0bdeee904..000000000000 --- a/src/chrome/content/rules/Warzone2100.xml +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Wash_Post.com.xml b/src/chrome/content/rules/Wash_Post.com.xml index ba736da22e03..3f77835bbefe 100644 --- a/src/chrome/content/rules/Wash_Post.com.xml +++ b/src/chrome/content/rules/Wash_Post.com.xml @@ -15,7 +15,7 @@ Fetch error: http://media.washpost.com/ => https://media.washpost.com/: (28, 'Co ^washpost.com doesn't exist --> - + diff --git a/src/chrome/content/rules/Washington-Post-Company.xml b/src/chrome/content/rules/Washington-Post-Company.xml index a82ee9f85465..1cf8d14bafa0 100644 --- a/src/chrome/content/rules/Washington-Post-Company.xml +++ b/src/chrome/content/rules/Washington-Post-Company.xml @@ -1,4 +1,9 @@ + @@ -159,13 +160,13 @@ --> + - @@ -184,15 +185,15 @@ - + - - + + - - - + SSL peer certificate was not OK: + - iservicestest.washingtontimes.com + - stat.washingtontimes.com + - video.washingtontimes.com + - weekly-ads.washingtontimes.com + Peer certificate cannot be authenticated with given CA certificates: + - affinity.washingtontimes.com + - payment.affinity.washingtontimes.com + - constitution.washingtontimes.com + - payway.washingtontimes.com + - subscription.washingtontimes.com - - - - + Self-signed certificate chain error: + - paywaytest.washingtontimes.com +--> + + + + + + + + + + + + + + + + + + + - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Washington_University_in_St_Louis.xml b/src/chrome/content/rules/Washington_University_in_St_Louis.xml index c6c8dcc677e5..f4ca98576f96 100644 --- a/src/chrome/content/rules/Washington_University_in_St_Louis.xml +++ b/src/chrome/content/rules/Washington_University_in_St_Louis.xml @@ -320,7 +320,7 @@ Fetch error: http://www.insurance.wustl.edu/ => https://www.insurance.wustl.edu/ * Secured by us --> - + @@ -743,9 +743,9 @@ Fetch error: http://www.insurance.wustl.edu/ => https://www.insurance.wustl.edu/ - + - + + + + + + + + + + + diff --git a/src/chrome/content/rules/Water-Challenge.com.xml b/src/chrome/content/rules/Water-Challenge.com.xml index 0a55bc180a33..e0c28329a096 100644 --- a/src/chrome/content/rules/Water-Challenge.com.xml +++ b/src/chrome/content/rules/Water-Challenge.com.xml @@ -14,4 +14,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Water.org.xml b/src/chrome/content/rules/Water.org.xml index ea6562f1046a..4d39542f071b 100644 --- a/src/chrome/content/rules/Water.org.xml +++ b/src/chrome/content/rules/Water.org.xml @@ -10,7 +10,9 @@ - + + + @@ -20,7 +22,6 @@ - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Water_Marquee.xml b/src/chrome/content/rules/Water_Marquee.xml index b7158463740c..dda9df8bb8cb 100644 --- a/src/chrome/content/rules/Water_Marquee.xml +++ b/src/chrome/content/rules/Water_Marquee.xml @@ -4,9 +4,9 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Watershed.xml b/src/chrome/content/rules/Watershed.xml index c3a55782f13a..0e3401ac47b5 100644 --- a/src/chrome/content/rules/Watershed.xml +++ b/src/chrome/content/rules/Watershed.xml @@ -10,16 +10,16 @@ Fetch error: http://watershed.co.uk/ => https://www.watershed.co.uk/: Cycle dete - ^ (redirects to http) --> - + - + + - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Watkins.edu.xml b/src/chrome/content/rules/Watkins.edu.xml index c436fca3a98b..3189e8b527c4 100644 --- a/src/chrome/content/rules/Watkins.edu.xml +++ b/src/chrome/content/rules/Watkins.edu.xml @@ -19,7 +19,7 @@ Fetch error: http://www.watkins.edu/ => https://www.watkins.edu/: (51, "SSL: no * Secured by us --> - + diff --git a/src/chrome/content/rules/Watson_Institute.org.xml b/src/chrome/content/rules/Watson_Institute.org.xml index fc55e63493c6..c708c6e6636b 100644 --- a/src/chrome/content/rules/Watson_Institute.org.xml +++ b/src/chrome/content/rules/Watson_Institute.org.xml @@ -25,4 +25,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Watsons.com.hk.xml b/src/chrome/content/rules/Watsons.com.hk.xml new file mode 100644 index 000000000000..7ea68c527c34 --- /dev/null +++ b/src/chrome/content/rules/Watsons.com.hk.xml @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Wauland.de.xml b/src/chrome/content/rules/Wauland.de.xml deleted file mode 100644 index 468d136ceddb..000000000000 --- a/src/chrome/content/rules/Wauland.de.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/Wavpin.xml b/src/chrome/content/rules/Wavpin.xml index 4f765200425d..dfdea6c2d7f9 100644 --- a/src/chrome/content/rules/Wavpin.xml +++ b/src/chrome/content/rules/Wavpin.xml @@ -7,7 +7,7 @@ Fetch error: http://www.wavpin.com/ => https://www.wavpin.com/: (7, 'Failed to c Mixed images from 3rd-party news websites. --> - + @@ -18,4 +18,4 @@ Fetch error: http://www.wavpin.com/ => https://www.wavpin.com/: (7, 'Failed to c - \ No newline at end of file + diff --git a/src/chrome/content/rules/Way2Allah.com.xml b/src/chrome/content/rules/Way2Allah.com.xml new file mode 100644 index 000000000000..6ac18d139c5f --- /dev/null +++ b/src/chrome/content/rules/Way2Allah.com.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/WayOut.lgbt.xml b/src/chrome/content/rules/WayOut.lgbt.xml new file mode 100644 index 000000000000..666ef69d4931 --- /dev/null +++ b/src/chrome/content/rules/WayOut.lgbt.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Waymoot.org.xml b/src/chrome/content/rules/Waymoot.org.xml index 3116514ecec6..4f82a9db7607 100644 --- a/src/chrome/content/rules/Waymoot.org.xml +++ b/src/chrome/content/rules/Waymoot.org.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.waymoot.org/ => https://www.waymoot.org/: (51, "SSL: no alternative certificate subject name matches target host name 'www.waymoot.org'") --> - + diff --git a/src/chrome/content/rules/Wayneashworthart.com.xml b/src/chrome/content/rules/Wayneashworthart.com.xml new file mode 100644 index 000000000000..1c45cdbd2567 --- /dev/null +++ b/src/chrome/content/rules/Wayneashworthart.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Wayskinny.com.xml b/src/chrome/content/rules/Wayskinny.com.xml deleted file mode 100644 index 12e35f385a41..000000000000 --- a/src/chrome/content/rules/Wayskinny.com.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Wccftech.com.xml b/src/chrome/content/rules/Wccftech.com.xml new file mode 100644 index 000000000000..424a7caaec0f --- /dev/null +++ b/src/chrome/content/rules/Wccftech.com.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Wdr.de.xml b/src/chrome/content/rules/Wdr.de.xml index 992e571e9d5c..4f281c719889 100644 --- a/src/chrome/content/rules/Wdr.de.xml +++ b/src/chrome/content/rules/Wdr.de.xml @@ -1,37 +1,56 @@ - + + + + @@ -39,6 +58,7 @@ + @@ -59,24 +79,48 @@ + + + + - + + + + + + + + - + + + + + + + + + + + + + + + + - - - - + + + diff --git a/src/chrome/content/rules/We-Heart-It.xml b/src/chrome/content/rules/We-Heart-It.xml deleted file mode 100644 index cf474d01abc9..000000000000 --- a/src/chrome/content/rules/We-Heart-It.xml +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/WeChat.xml b/src/chrome/content/rules/WeChat.xml index 2d7cc5d84ab9..897e462feb8f 100644 --- a/src/chrome/content/rules/WeChat.xml +++ b/src/chrome/content/rules/WeChat.xml @@ -7,7 +7,7 @@ - file2.wechat.com Secure connection redirects to plaintext: - - + - --> @@ -27,6 +27,6 @@ - + diff --git a/src/chrome/content/rules/WeExist.lgbt.xml b/src/chrome/content/rules/WeExist.lgbt.xml new file mode 100644 index 000000000000..9015228d2c3c --- /dev/null +++ b/src/chrome/content/rules/WeExist.lgbt.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/WeHeartIt.com.xml b/src/chrome/content/rules/WeHeartIt.com.xml new file mode 100644 index 000000000000..6320356b7ea5 --- /dev/null +++ b/src/chrome/content/rules/WeHeartIt.com.xml @@ -0,0 +1,15 @@ + + + + + + + + diff --git a/src/chrome/content/rules/WeMonIt.de.xml b/src/chrome/content/rules/WeMonIt.de.xml deleted file mode 100644 index b3898fcb1bb2..000000000000 --- a/src/chrome/content/rules/WeMonIt.de.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/WePay.xml b/src/chrome/content/rules/WePay.xml index af821ec6704c..9aaaff46ee3c 100644 --- a/src/chrome/content/rules/WePay.xml +++ b/src/chrome/content/rules/WePay.xml @@ -12,13 +12,16 @@ - + + + + + - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/WeRoSys.de.xml b/src/chrome/content/rules/WeRoSys.de.xml deleted file mode 100644 index 49f9bd2743be..000000000000 --- a/src/chrome/content/rules/WeRoSys.de.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/WeSwap.com.xml b/src/chrome/content/rules/WeSwap.com.xml index 162145033ed3..0cea631804d2 100644 --- a/src/chrome/content/rules/WeSwap.com.xml +++ b/src/chrome/content/rules/WeSwap.com.xml @@ -17,7 +17,7 @@ - + diff --git a/src/chrome/content/rules/WeTransfer.xml b/src/chrome/content/rules/WeTransfer.xml index 1c5acfd9c1c3..74cb04d2d12f 100644 --- a/src/chrome/content/rules/WeTransfer.xml +++ b/src/chrome/content/rules/WeTransfer.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/WeUseCoins.xml b/src/chrome/content/rules/WeUseCoins.xml index 2b0ffe1b07e1..d4c75b944017 100644 --- a/src/chrome/content/rules/WeUseCoins.xml +++ b/src/chrome/content/rules/WeUseCoins.xml @@ -12,9 +12,9 @@ - + - + https://www.wearewizards.io/: (51, " - www.blog.wearewizards.io --> - + diff --git a/src/chrome/content/rules/Weather-Underground.xml b/src/chrome/content/rules/Weather-Underground.xml deleted file mode 100644 index 706b8be509b3..000000000000 --- a/src/chrome/content/rules/Weather-Underground.xml +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Weather.com.xml b/src/chrome/content/rules/Weather.com.xml index c7b44e06982b..6ddbd32fc696 100644 --- a/src/chrome/content/rules/Weather.com.xml +++ b/src/chrome/content/rules/Weather.com.xml @@ -1,39 +1,17 @@ - - + + - + + + + + + + + + + diff --git a/src/chrome/content/rules/Weather.gov.xml b/src/chrome/content/rules/Weather.gov.xml index b41934863461..89755d323380 100644 --- a/src/chrome/content/rules/Weather.gov.xml +++ b/src/chrome/content/rules/Weather.gov.xml @@ -61,7 +61,7 @@ Non-2xx HTTP code: http://nws.weather.gov/nthmp/ (200) => https://nws.weather.go - ocwws.weather.gov --> - + @@ -77,7 +77,7 @@ Non-2xx HTTP code: http://nws.weather.gov/nthmp/ (200) => https://nws.weather.go --> - + - + + diff --git a/src/chrome/content/rules/Web-Hosting-Talk.xml b/src/chrome/content/rules/Web-Hosting-Talk.xml index 346a5e34f6b1..7a1c769541c1 100644 --- a/src/chrome/content/rules/Web-Hosting-Talk.xml +++ b/src/chrome/content/rules/Web-Hosting-Talk.xml @@ -19,11 +19,11 @@ - + - + diff --git a/src/chrome/content/rules/Web-Power.xml b/src/chrome/content/rules/Web-Power.xml index 34c7e4e77ca7..2324fdb20bd0 100644 --- a/src/chrome/content/rules/Web-Power.xml +++ b/src/chrome/content/rules/Web-Power.xml @@ -3,7 +3,7 @@ - + diff --git a/src/chrome/content/rules/Web-Reservations-International.xml b/src/chrome/content/rules/Web-Reservations-International.xml index 2f0c03d6a7e5..c98d0e9749d6 100644 --- a/src/chrome/content/rules/Web-Reservations-International.xml +++ b/src/chrome/content/rules/Web-Reservations-International.xml @@ -21,18 +21,25 @@ - - - + + + + + + + + + + + + - - - + + + - - + diff --git a/src/chrome/content/rules/Web-registry.com.xml b/src/chrome/content/rules/Web-registry.com.xml index 8f81ddbcd0bd..211fb93bb33f 100644 --- a/src/chrome/content/rules/Web-registry.com.xml +++ b/src/chrome/content/rules/Web-registry.com.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://web-registry.com/ => https://web-registry.com/: (60, 'SSL certificate problem: unable to get local issuer certificate') Fetch error: http://www.web-registry.com/ => https://web-registry.com/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + diff --git a/src/chrome/content/rules/Web-servers.com.au.xml b/src/chrome/content/rules/Web-servers.com.au.xml index 37de292aa9a2..de27800e006d 100644 --- a/src/chrome/content/rules/Web-servers.com.au.xml +++ b/src/chrome/content/rules/Web-servers.com.au.xml @@ -3,10 +3,10 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Web.com-expired.xml b/src/chrome/content/rules/Web.com-expired.xml index 85e2e4af2180..8bfacff9f37b 100644 --- a/src/chrome/content/rules/Web.com-expired.xml +++ b/src/chrome/content/rules/Web.com-expired.xml @@ -7,7 +7,6 @@ - + diff --git a/src/chrome/content/rules/Web.com.xml b/src/chrome/content/rules/Web.com.xml index 00a72c720353..810e039136e4 100644 --- a/src/chrome/content/rules/Web.com.xml +++ b/src/chrome/content/rules/Web.com.xml @@ -10,13 +10,10 @@ Other Web.com rulesets: - Cactus_Complete_Commerce.xml - - LogoYes.xml - Mcssl.com.xml - Myregisteredsite.com.xml - - Renovation_Experts.xml - Securepurchaseserver.com.xml - Solid_Cactus.xml - - Star_Product_Reviews.xml ne.edgecastcdn.net/00016B/ @@ -26,6 +23,7 @@ Nonfunctional subdomains: - ir (times out) + - wpc.016b.edgecastcdn.net ^: cert only matches www @@ -47,10 +45,11 @@ --> - + - - + + + @@ -61,17 +60,12 @@ - - + - - - + diff --git a/src/chrome/content/rules/Web.de.xml b/src/chrome/content/rules/Web.de.xml deleted file mode 100644 index f6e4db410145..000000000000 --- a/src/chrome/content/rules/Web.de.xml +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Web4U.xml b/src/chrome/content/rules/Web4U.xml index 6124e7b8def8..c3275fe38fae 100644 --- a/src/chrome/content/rules/Web4U.xml +++ b/src/chrome/content/rules/Web4U.xml @@ -9,6 +9,6 @@ - + diff --git a/src/chrome/content/rules/Web4all.fr.xml b/src/chrome/content/rules/Web4all.fr.xml index 33af3243cbd5..0de484ac3e48 100644 --- a/src/chrome/content/rules/Web4all.fr.xml +++ b/src/chrome/content/rules/Web4all.fr.xml @@ -1,7 +1,19 @@ + - - - - - - - - - + + + + + + + + + diff --git a/src/chrome/content/rules/WebAlert.jp.xml b/src/chrome/content/rules/WebAlert.jp.xml deleted file mode 100644 index 0a8f3b71465d..000000000000 --- a/src/chrome/content/rules/WebAlert.jp.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/WebAssembly.studio.xml b/src/chrome/content/rules/WebAssembly.studio.xml new file mode 100644 index 000000000000..047b05b85995 --- /dev/null +++ b/src/chrome/content/rules/WebAssembly.studio.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/WebAssign.xml b/src/chrome/content/rules/WebAssign.xml index 550d7d9cd4a2..1709a6432200 100644 --- a/src/chrome/content/rules/WebAssign.xml +++ b/src/chrome/content/rules/WebAssign.xml @@ -1,9 +1,23 @@ + + - - - - + + + + + + + + + + + - - + diff --git a/src/chrome/content/rules/WebChuck_hosting.com.xml b/src/chrome/content/rules/WebChuck_hosting.com.xml index b0717263a577..6778e0c5b81a 100644 --- a/src/chrome/content/rules/WebChuck_hosting.com.xml +++ b/src/chrome/content/rules/WebChuck_hosting.com.xml @@ -9,13 +9,12 @@ --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/WebCitz.xml b/src/chrome/content/rules/WebCitz.xml index 338ee34b7d3a..e8f32e557ce4 100644 --- a/src/chrome/content/rules/WebCitz.xml +++ b/src/chrome/content/rules/WebCitz.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/WebD.AM.xml b/src/chrome/content/rules/WebD.AM.xml deleted file mode 100644 index 9240d93a4277..000000000000 --- a/src/chrome/content/rules/WebD.AM.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/WebDAM_DB.com.xml b/src/chrome/content/rules/WebDAM_DB.com.xml index 1dc70b513ff8..33aac92f54fb 100644 --- a/src/chrome/content/rules/WebDAM_DB.com.xml +++ b/src/chrome/content/rules/WebDAM_DB.com.xml @@ -10,7 +10,7 @@ Fetch error: http://webdam.com/ => https://webdam.com/: (35, 'error:140770FC:SSL - secure --> - + diff --git a/src/chrome/content/rules/WebDevStudios.xml b/src/chrome/content/rules/WebDevStudios.xml index c81b17849a52..b60c79c02611 100644 --- a/src/chrome/content/rules/WebDevStudios.xml +++ b/src/chrome/content/rules/WebDevStudios.xml @@ -15,7 +15,7 @@ Fetch error: http://www.webdevstudios.com/ => https://www.webdevstudios.com/: To - www.webdevstudios.com --> - + diff --git a/src/chrome/content/rules/WebDiplomacy.net.xml b/src/chrome/content/rules/WebDiplomacy.net.xml new file mode 100644 index 000000000000..d7f43017923c --- /dev/null +++ b/src/chrome/content/rules/WebDiplomacy.net.xml @@ -0,0 +1,14 @@ + + + + + + + + diff --git a/src/chrome/content/rules/WebEx-Communications.xml b/src/chrome/content/rules/WebEx-Communications.xml deleted file mode 100644 index 86f4c74ca542..000000000000 --- a/src/chrome/content/rules/WebEx-Communications.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/WebFaction.xml b/src/chrome/content/rules/WebFaction.xml index 6ea20e0b9b14..1c0a9b17c1e3 100644 --- a/src/chrome/content/rules/WebFaction.xml +++ b/src/chrome/content/rules/WebFaction.xml @@ -1,10 +1,13 @@ - + + + + + - + diff --git a/src/chrome/content/rules/WebGo.xml b/src/chrome/content/rules/WebGo.xml index bd7ee3e6a709..2c2cdbd18691 100644 --- a/src/chrome/content/rules/WebGo.xml +++ b/src/chrome/content/rules/WebGo.xml @@ -19,14 +19,14 @@ Fetch error: http://www.website.webgo.de/ => https://www.website.webgo.de/: (6, - support --> - + - + - + https://login.webgo24.de/: (51, "SSL: n ² Unsecurable --> - + @@ -36,7 +36,7 @@ Fetch error: http://login.webgo24.de/ => https://login.webgo24.de/: (51, "SSL: n Server sets Secure for: --> - + diff --git a/src/chrome/content/rules/WebINK.com.xml b/src/chrome/content/rules/WebINK.com.xml index 6efe24a1285a..d9ceed94c9ca 100644 --- a/src/chrome/content/rules/WebINK.com.xml +++ b/src/chrome/content/rules/WebINK.com.xml @@ -41,7 +41,7 @@ Fetch error: http://www.webink.com/ => https://www.webink.com/: (51, "SSL: no al * Secured by us --> - + diff --git a/src/chrome/content/rules/WebIslam.com.xml b/src/chrome/content/rules/WebIslam.com.xml new file mode 100644 index 000000000000..b831ace1a51d --- /dev/null +++ b/src/chrome/content/rules/WebIslam.com.xml @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/WebKite.com.xml b/src/chrome/content/rules/WebKite.com.xml index c4ea23709ea5..74e47b6e1135 100644 --- a/src/chrome/content/rules/WebKite.com.xml +++ b/src/chrome/content/rules/WebKite.com.xml @@ -15,13 +15,18 @@ - + + + + + + + - + diff --git a/src/chrome/content/rules/WebMD.xml b/src/chrome/content/rules/WebMD.xml index be10b1039703..d63b40c87d1d 100644 --- a/src/chrome/content/rules/WebMD.xml +++ b/src/chrome/content/rules/WebMD.xml @@ -1,58 +1,65 @@ - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/WebMD_Health.xml b/src/chrome/content/rules/WebMD_Health.xml index 30d37ff4107f..75af262c8213 100644 --- a/src/chrome/content/rules/WebMD_Health.xml +++ b/src/chrome/content/rules/WebMD_Health.xml @@ -10,7 +10,7 @@ - + @@ -19,4 +19,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/WebMD_Health_Services.xml b/src/chrome/content/rules/WebMD_Health_Services.xml index 6c3247e3720e..f9f1ff410f16 100644 --- a/src/chrome/content/rules/WebMD_Health_Services.xml +++ b/src/chrome/content/rules/WebMD_Health_Services.xml @@ -10,7 +10,8 @@ - + + @@ -19,7 +20,6 @@ - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/WebMediaBrands.xml b/src/chrome/content/rules/WebMediaBrands.xml index 0e9fb81f486a..5e41a0ed815b 100644 --- a/src/chrome/content/rules/WebMediaBrands.xml +++ b/src/chrome/content/rules/WebMediaBrands.xml @@ -9,7 +9,8 @@ - + + diff --git a/src/chrome/content/rules/WebNMS.com.xml b/src/chrome/content/rules/WebNMS.com.xml index 7727da07eb4e..410899d5e2ee 100644 --- a/src/chrome/content/rules/WebNMS.com.xml +++ b/src/chrome/content/rules/WebNMS.com.xml @@ -26,7 +26,7 @@ --> - + + + + + + diff --git a/src/chrome/content/rules/WebProspector.xml b/src/chrome/content/rules/WebProspector.xml index ac0c39d10af8..e03f3fabe4c7 100644 --- a/src/chrome/content/rules/WebProspector.xml +++ b/src/chrome/content/rules/WebProspector.xml @@ -16,4 +16,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/WebRTC-Experiment.com.xml b/src/chrome/content/rules/WebRTC-Experiment.com.xml index f37b968b6e3e..a4cd87746496 100644 --- a/src/chrome/content/rules/WebRTC-Experiment.com.xml +++ b/src/chrome/content/rules/WebRTC-Experiment.com.xml @@ -9,7 +9,7 @@ Fetch error: http://www.cdn.webrtc-experiment.com/ => https://www.cdn.webrtc-exp - (www.)?cdn --> - + diff --git a/src/chrome/content/rules/WebSense.xml b/src/chrome/content/rules/WebSense.xml index 555203f5b6c1..bcbe91172e90 100644 --- a/src/chrome/content/rules/WebSense.xml +++ b/src/chrome/content/rules/WebSense.xml @@ -16,7 +16,7 @@ - + diff --git a/src/chrome/content/rules/WebSharks-Inc.com.xml b/src/chrome/content/rules/WebSharks-Inc.com.xml deleted file mode 100644 index 4377298ef2da..000000000000 --- a/src/chrome/content/rules/WebSharks-Inc.com.xml +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/WebShopRevolution.com.xml b/src/chrome/content/rules/WebShopRevolution.com.xml index ced300aa09ee..a1d442f6f573 100644 --- a/src/chrome/content/rules/WebShopRevolution.com.xml +++ b/src/chrome/content/rules/WebShopRevolution.com.xml @@ -5,14 +5,14 @@ Fetch error: http://webshoprevolution.com/ => https://webshoprevolution.com/: (6 --> - + - + diff --git a/src/chrome/content/rules/WebSite.ws.xml b/src/chrome/content/rules/WebSite.ws.xml index 908ceb4fcea7..5a7888438bd0 100644 --- a/src/chrome/content/rules/WebSite.ws.xml +++ b/src/chrome/content/rules/WebSite.ws.xml @@ -26,7 +26,7 @@ --> - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/WebSpectator.com.xml b/src/chrome/content/rules/WebSpectator.com.xml index 45de132a2004..9fdcf45b8d22 100644 --- a/src/chrome/content/rules/WebSpectator.com.xml +++ b/src/chrome/content/rules/WebSpectator.com.xml @@ -25,13 +25,14 @@ - + + + - + diff --git a/src/chrome/content/rules/WebStarts.xml b/src/chrome/content/rules/WebStarts.xml index 5200226953d6..00b21cd282a3 100644 --- a/src/chrome/content/rules/WebStarts.xml +++ b/src/chrome/content/rules/WebStarts.xml @@ -7,7 +7,8 @@ - + + diff --git a/src/chrome/content/rules/WebTrust.xml b/src/chrome/content/rules/WebTrust.xml index b99ef6690190..15d4f33b31e9 100644 --- a/src/chrome/content/rules/WebTrust.xml +++ b/src/chrome/content/rules/WebTrust.xml @@ -1,36 +1,22 @@ + - + - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/WebUrbanist.com.xml b/src/chrome/content/rules/WebUrbanist.com.xml index c62255740098..c2469d07fe5d 100644 --- a/src/chrome/content/rules/WebUrbanist.com.xml +++ b/src/chrome/content/rules/WebUrbanist.com.xml @@ -19,11 +19,12 @@ - + + - \ No newline at end of file + diff --git a/src/chrome/content/rules/WebXakep.Net.xml b/src/chrome/content/rules/WebXakep.Net.xml index 9e9e98a4f00b..d91772e0f526 100644 --- a/src/chrome/content/rules/WebXakep.Net.xml +++ b/src/chrome/content/rules/WebXakep.Net.xml @@ -11,18 +11,17 @@ Fetch error: http://infotech-team.com/ => https://infotech-team.com/: (6, 'Could - Web bug from hit\d+.hotlog.ru --> - + - - + + - + diff --git a/src/chrome/content/rules/Web_Design_Marketing.xml b/src/chrome/content/rules/Web_Design_Marketing.xml index 49b627d42551..61826abfc426 100644 --- a/src/chrome/content/rules/Web_Design_Marketing.xml +++ b/src/chrome/content/rules/Web_Design_Marketing.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Web_Forest.eu.xml b/src/chrome/content/rules/Web_Forest.eu.xml index 1259fb63b956..01aaa79e980b 100644 --- a/src/chrome/content/rules/Web_Forest.eu.xml +++ b/src/chrome/content/rules/Web_Forest.eu.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Web_Foundation.org.xml b/src/chrome/content/rules/Web_Foundation.org.xml index 2e3e5de60e30..8af16631e41e 100644 --- a/src/chrome/content/rules/Web_Foundation.org.xml +++ b/src/chrome/content/rules/Web_Foundation.org.xml @@ -15,7 +15,7 @@ Fetch error: http://labs.webfoundation.org/ => https://labs.webfoundation.org/: - data - mlabs --> - + diff --git a/src/chrome/content/rules/Web_Hosting_Geeks.com.xml b/src/chrome/content/rules/Web_Hosting_Geeks.com.xml index cfff669fe63f..7e55396579d7 100644 --- a/src/chrome/content/rules/Web_Hosting_Geeks.com.xml +++ b/src/chrome/content/rules/Web_Hosting_Geeks.com.xml @@ -23,7 +23,8 @@ - + + @@ -35,4 +36,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Web_Hosting_Pad.xml b/src/chrome/content/rules/Web_Hosting_Pad.xml index 80752f15dc9e..ff4b94e05df8 100644 --- a/src/chrome/content/rules/Web_Hosting_Pad.xml +++ b/src/chrome/content/rules/Web_Hosting_Pad.xml @@ -5,14 +5,16 @@ - + + + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Web_Service_Award.xml b/src/chrome/content/rules/Web_Service_Award.xml index f505842a786c..24daabe01d2e 100644 --- a/src/chrome/content/rules/Web_Service_Award.xml +++ b/src/chrome/content/rules/Web_Service_Award.xml @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Web_Tune_Factory.xml b/src/chrome/content/rules/Web_Tune_Factory.xml index c793c50d170d..47676533bccb 100644 --- a/src/chrome/content/rules/Web_Tune_Factory.xml +++ b/src/chrome/content/rules/Web_Tune_Factory.xml @@ -7,7 +7,7 @@ Fetch error: http://www.w-tune.com/ => https://www.w-tune.com/: (6, 'Could not r !www: cert only matches www --> - + diff --git a/src/chrome/content/rules/Web_of_Knowledge.xml b/src/chrome/content/rules/Web_of_Knowledge.xml index 1c96c43a0d90..e7b580faff35 100644 --- a/src/chrome/content/rules/Web_of_Knowledge.xml +++ b/src/chrome/content/rules/Web_of_Knowledge.xml @@ -14,16 +14,19 @@ Fetch error: http://www.isiknowledge.com/ => https://www.isiknowledge.com/: (51, - + + + + + + + - - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Webby-Awards.xml b/src/chrome/content/rules/Webby-Awards.xml index 814673ef3b12..0cd66f6cc485 100644 --- a/src/chrome/content/rules/Webby-Awards.xml +++ b/src/chrome/content/rules/Webby-Awards.xml @@ -10,12 +10,12 @@ Fetch error: http://www.webbyawards.com/ => https://www.webbyawards.com/: (7, 'F - (www.)netted.net - pv.webbyawards.com (timeout) --> - + - + - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Webcruiter.xml b/src/chrome/content/rules/Webcruiter.xml index 4d16cc203c83..27a2d40848a1 100644 --- a/src/chrome/content/rules/Webcruiter.xml +++ b/src/chrome/content/rules/Webcruiter.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Webento.xml b/src/chrome/content/rules/Webento.xml index cef31038fd28..a5a7e5137a6d 100644 --- a/src/chrome/content/rules/Webento.xml +++ b/src/chrome/content/rules/Webento.xml @@ -11,15 +11,15 @@ Disabled by https-everywhere-checker because: Fetch error: http://webento.com/ => https://webento.com/: (35, 'error:14077438:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert internal error') --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Webex.com.xml b/src/chrome/content/rules/Webex.com.xml new file mode 100644 index 000000000000..d32b107b390d --- /dev/null +++ b/src/chrome/content/rules/Webex.com.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Webfusion.xml b/src/chrome/content/rules/Webfusion.xml deleted file mode 100644 index 4ad267fdc611..000000000000 --- a/src/chrome/content/rules/Webfusion.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Webgility.xml b/src/chrome/content/rules/Webgility.xml index 62a0a610f815..72784a4b4fc8 100644 --- a/src/chrome/content/rules/Webgility.xml +++ b/src/chrome/content/rules/Webgility.xml @@ -9,7 +9,7 @@ Fetch error: http://webgility.com/ => https://webgility.com/: Cycle detected - U Fetch error: http://portal.webgility.com/ => https://portal.webgility.com/: Redirect for 'http://portal.webgility.com/' missing Location Fetch error: http://www.webgility.com/ => https://webgility.com/: Cycle detected - URL already encountered: https://webgility.com/ --> - + @@ -18,6 +18,6 @@ Fetch error: http://www.webgility.com/ => https://webgility.com/: Cycle detected - + diff --git a/src/chrome/content/rules/Webhost.biz.xml b/src/chrome/content/rules/Webhost.biz.xml index a4ea2d37d55c..e4b22f2a2ae2 100644 --- a/src/chrome/content/rules/Webhost.biz.xml +++ b/src/chrome/content/rules/Webhost.biz.xml @@ -29,7 +29,7 @@ --> - + - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Webhungary.hu.xml b/src/chrome/content/rules/Webhungary.hu.xml deleted file mode 100644 index 5930c3078ec4..000000000000 --- a/src/chrome/content/rules/Webhungary.hu.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Webjet.xml b/src/chrome/content/rules/Webjet.xml index 74b0bbbb4719..22f718b2d453 100644 --- a/src/chrome/content/rules/Webjet.xml +++ b/src/chrome/content/rules/Webjet.xml @@ -33,6 +33,6 @@ - diff --git a/src/chrome/content/rules/Webkitgtk.org.xml b/src/chrome/content/rules/Webkitgtk.org.xml new file mode 100644 index 000000000000..6d351a7586fb --- /dev/null +++ b/src/chrome/content/rules/Webkitgtk.org.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Weblog_Awards.xml b/src/chrome/content/rules/Weblog_Awards.xml index aa4a77db9cb8..b8ab859c599c 100644 --- a/src/chrome/content/rules/Weblog_Awards.xml +++ b/src/chrome/content/rules/Weblog_Awards.xml @@ -10,4 +10,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Webmail-Loxinfo.xml b/src/chrome/content/rules/Webmail-Loxinfo.xml deleted file mode 100644 index f685a0edc095..000000000000 --- a/src/chrome/content/rules/Webmail-Loxinfo.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/chrome/content/rules/Webmasterplan.com.xml b/src/chrome/content/rules/Webmasterplan.com.xml deleted file mode 100644 index bf0a27af91f9..000000000000 --- a/src/chrome/content/rules/Webmasterplan.com.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Webmon.com.xml b/src/chrome/content/rules/Webmon.com.xml deleted file mode 100644 index 7969da915bf4..000000000000 --- a/src/chrome/content/rules/Webmon.com.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Webonic.hu.xml b/src/chrome/content/rules/Webonic.hu.xml index 474da9069e46..05c934d9d897 100644 --- a/src/chrome/content/rules/Webonic.hu.xml +++ b/src/chrome/content/rules/Webonic.hu.xml @@ -39,7 +39,7 @@ - + https://weboolu.com/: (7, 'Failed to connect - developer.weboolu.com --> - + @@ -32,4 +32,4 @@ Fetch error: http://weboolu.com/ => https://weboolu.com/: (7, 'Failed to connect - \ No newline at end of file + diff --git a/src/chrome/content/rules/Weborama.xml b/src/chrome/content/rules/Weborama.xml index daa974778f60..0968f85877d8 100644 --- a/src/chrome/content/rules/Weborama.xml +++ b/src/chrome/content/rules/Weborama.xml @@ -9,7 +9,7 @@ Fetch error: http://static.weborama.fr/ => https://ssl.weborama.fr/: (7, 'Failed (www.)weborama.fr doesn't work --> - + @@ -28,7 +28,7 @@ Fetch error: http://static.weborama.fr/ => https://ssl.weborama.fr/: (7, 'Failed - + diff --git a/src/chrome/content/rules/Webpay.cl.xml b/src/chrome/content/rules/Webpay.cl.xml index ed0cafadbea0..fbc44ca30240 100644 --- a/src/chrome/content/rules/Webpay.cl.xml +++ b/src/chrome/content/rules/Webpay.cl.xml @@ -34,7 +34,7 @@ --> - + https://webroot.com/: (28, 'Resolving timed - + + + @@ -27,7 +29,6 @@ Fetch error: http://webroot.com/ => https://webroot.com/: (28, 'Resolving timed - + diff --git a/src/chrome/content/rules/WebrtcHacks.com.xml b/src/chrome/content/rules/WebrtcHacks.com.xml index 710d2d89b78c..209a6f753d50 100644 --- a/src/chrome/content/rules/WebrtcHacks.com.xml +++ b/src/chrome/content/rules/WebrtcHacks.com.xml @@ -8,7 +8,7 @@ Fetch error: http://www.webrtchacks.com/ => https://www.webrtchacks.com/: Too ma - .webrtchacks.com --> - + diff --git a/src/chrome/content/rules/Webs-MixedContent.xml b/src/chrome/content/rules/Webs-MixedContent.xml deleted file mode 100644 index 9514e20b41ed..000000000000 --- a/src/chrome/content/rules/Webs-MixedContent.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Webs.com.xml b/src/chrome/content/rules/Webs.com.xml new file mode 100644 index 000000000000..60109d963180 --- /dev/null +++ b/src/chrome/content/rules/Webs.com.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Webs.xml b/src/chrome/content/rules/Webs.xml deleted file mode 100644 index 7e6f529ac2c6..000000000000 --- a/src/chrome/content/rules/Webs.xml +++ /dev/null @@ -1,74 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Websec_Weekly.org.xml b/src/chrome/content/rules/Websec_Weekly.org.xml index 854baca36d09..6afa256a62ad 100644 --- a/src/chrome/content/rules/Websec_Weekly.org.xml +++ b/src/chrome/content/rules/Websec_Weekly.org.xml @@ -24,7 +24,7 @@ Fetch error: http://www.websecweekly.org/ => https://www.websecweekly.org/: (28, - .websecweekly.org --> - + diff --git a/src/chrome/content/rules/Websecurify.com.xml b/src/chrome/content/rules/Websecurify.com.xml index 0a7478245c98..1c6d55215c94 100644 --- a/src/chrome/content/rules/Websecurify.com.xml +++ b/src/chrome/content/rules/Websecurify.com.xml @@ -5,7 +5,7 @@ Fetch error: http://learn.websecurify.com/ => https://learn.websecurify.com/: (6 Fetch error: http://suite.websecurify.com/ => https://suite.websecurify.com/: (6, 'Could not resolve host: suite.websecurify.com') --> - + diff --git a/src/chrome/content/rules/Websimages.com.xml b/src/chrome/content/rules/Websimages.com.xml new file mode 100644 index 000000000000..2d2fb4105299 --- /dev/null +++ b/src/chrome/content/rules/Websimages.com.xml @@ -0,0 +1,10 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Website-start.de.xml b/src/chrome/content/rules/Website-start.de.xml index e5960c8d8b36..a8e281ac92ce 100644 --- a/src/chrome/content/rules/Website-start.de.xml +++ b/src/chrome/content/rules/Website-start.de.xml @@ -12,7 +12,8 @@ --> - + + - + @@ -80,7 +80,7 @@ Fetch error: http://team.websitealive.com/ => https://team.websitealive.com/: (2 - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/WebsiteSEOChecker.com.xml b/src/chrome/content/rules/WebsiteSEOChecker.com.xml new file mode 100644 index 000000000000..5febe0fdf78a --- /dev/null +++ b/src/chrome/content/rules/WebsiteSEOChecker.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Website_Pipeline.xml b/src/chrome/content/rules/Website_Pipeline.xml index 6259635aabd3..c2ccdc086971 100644 --- a/src/chrome/content/rules/Website_Pipeline.xml +++ b/src/chrome/content/rules/Website_Pipeline.xml @@ -9,7 +9,7 @@ Fetch error: http://gweb03.webstorepackage.com/ => https://gweb03.webstorepackag - (www.)webstorepackage.com (redirects to www.websitepipeline.com; expired 2013-03-09, mismatched, CN: www.ebiz4idiots.com) --> - + @@ -19,10 +19,6 @@ Fetch error: http://gweb03.webstorepackage.com/ => https://gweb03.webstorepackag - + - - - \ No newline at end of file + diff --git a/src/chrome/content/rules/Websitesettings.com.xml b/src/chrome/content/rules/Websitesettings.com.xml index e9c76ba643f4..b8ae910b1657 100644 --- a/src/chrome/content/rules/Websitesettings.com.xml +++ b/src/chrome/content/rules/Websitesettings.com.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Webspace4All.xml b/src/chrome/content/rules/Webspace4All.xml index 00504244ee73..5e48619913a8 100644 --- a/src/chrome/content/rules/Webspace4All.xml +++ b/src/chrome/content/rules/Webspace4All.xml @@ -16,4 +16,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Webspace4Clans.de.xml b/src/chrome/content/rules/Webspace4Clans.de.xml index bef5ac21fcaf..06bfd915c7c9 100644 --- a/src/chrome/content/rules/Webspace4Clans.de.xml +++ b/src/chrome/content/rules/Webspace4Clans.de.xml @@ -24,4 +24,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Webstat.com.xml b/src/chrome/content/rules/Webstat.com.xml index fcc48a256cbd..9cfced6ae104 100644 --- a/src/chrome/content/rules/Webstat.com.xml +++ b/src/chrome/content/rules/Webstat.com.xml @@ -12,7 +12,8 @@ --> - + + https://webstaurantstore.com/: Cycle detected - URL already encountered: https://www.webstaurantstore.com/ -Fetch error: http://www.webstaurantstore.com/ => https://www.webstaurantstore.com/: Cycle detected - URL already encountered: https://www.webstaurantstore.com/ - Some pages redirect to http. - ---> - + Nonfunctional CDN references: + 403 + - cdnimg[1-3].webstaurantstore.com + --> + - - + + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Webstyle.ch.xml b/src/chrome/content/rules/Webstyle.ch.xml index 1ad7db32678f..7f281bca24ac 100644 --- a/src/chrome/content/rules/Webstyle.ch.xml +++ b/src/chrome/content/rules/Webstyle.ch.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://zimbra.webstyle.ch/ => https://zimbra.webstyle.ch/: (6, 'Could not resolve host: zimbra.webstyle.ch') --> - + diff --git a/src/chrome/content/rules/Websupport_sk_cz_at_hu.xml b/src/chrome/content/rules/Websupport_sk_cz_at_hu.xml index a6e1477f78ff..e14dbf4aa9a6 100644 --- a/src/chrome/content/rules/Websupport_sk_cz_at_hu.xml +++ b/src/chrome/content/rules/Websupport_sk_cz_at_hu.xml @@ -51,7 +51,7 @@ - + - + - - - - - - - - - - diff --git a/src/chrome/content/rules/Webtracker.jp.xml b/src/chrome/content/rules/Webtracker.jp.xml index 172fe5687d42..249c9c35a0d4 100644 --- a/src/chrome/content/rules/Webtracker.jp.xml +++ b/src/chrome/content/rules/Webtracker.jp.xml @@ -26,7 +26,7 @@ Fetch error: http://t.webtracker.jp/ => https://t.webtracker.jp/: (7, 'Failed to (www.)?: Dropped over http & https --> - + diff --git a/src/chrome/content/rules/WebtraffIQ.com.xml b/src/chrome/content/rules/WebtraffIQ.com.xml index 41df0a7f6980..0a9083661aec 100644 --- a/src/chrome/content/rules/WebtraffIQ.com.xml +++ b/src/chrome/content/rules/WebtraffIQ.com.xml @@ -21,7 +21,9 @@ - + + + diff --git a/src/chrome/content/rules/Webtraffic.se.xml b/src/chrome/content/rules/Webtraffic.se.xml index c93abbfe75ad..cdd4d7816ddc 100644 --- a/src/chrome/content/rules/Webtraffic.se.xml +++ b/src/chrome/content/rules/Webtraffic.se.xml @@ -8,7 +8,7 @@ Fetch error: http://dyn.webtraffic.se/ => https://dyn.webtraffic.se/: (60, 'SSL - (www.) (403; mismatched, CN; dyn.webtraffic.se) --> - + diff --git a/src/chrome/content/rules/Webtrekk.net.xml b/src/chrome/content/rules/Webtrekk.net.xml index 8dc44eeb3018..383a504b84cb 100644 --- a/src/chrome/content/rules/Webtrekk.net.xml +++ b/src/chrome/content/rules/Webtrekk.net.xml @@ -8,12 +8,25 @@ * Clients have unique subdomains, which serve web bugs. + Cert expired: + - rtx.wbtrk.net + --> + + + + + + + + + + @@ -21,7 +34,9 @@ - + + + @@ -32,7 +47,7 @@ - + https://m.webtrends.com/: (6, 'Could not - .www.webtrends.com --> - + @@ -119,6 +119,7 @@ Fetch error: http://m.webtrends.com/ => https://m.webtrends.com/: (6, 'Could not + diff --git a/src/chrome/content/rules/Webtrendslive.com.xml b/src/chrome/content/rules/Webtrendslive.com.xml index 6fad76745405..ac5912f61888 100644 --- a/src/chrome/content/rules/Webtrendslive.com.xml +++ b/src/chrome/content/rules/Webtrendslive.com.xml @@ -20,7 +20,7 @@ --> - + - diff --git a/src/chrome/content/rules/Wed.is.xml b/src/chrome/content/rules/Wed.is.xml deleted file mode 100644 index 68b385881199..000000000000 --- a/src/chrome/content/rules/Wed.is.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Weebly-mixed.xml b/src/chrome/content/rules/Weebly-mixed.xml deleted file mode 100644 index 87d342bf27cf..000000000000 --- a/src/chrome/content/rules/Weebly-mixed.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Weebly.xml b/src/chrome/content/rules/Weebly.xml index 564646334bbb..61517964c406 100644 --- a/src/chrome/content/rules/Weebly.xml +++ b/src/chrome/content/rules/Weebly.xml @@ -1,7 +1,4 @@ - - - - - + + + + + + + + + + @@ -63,8 +51,7 @@ --> - - + diff --git a/src/chrome/content/rules/Week_Plan.xml b/src/chrome/content/rules/Week_Plan.xml index 7570bc00352b..29378c5dedee 100644 --- a/src/chrome/content/rules/Week_Plan.xml +++ b/src/chrome/content/rules/Week_Plan.xml @@ -5,7 +5,7 @@ Fetch error: http://weekplan.net/ => https://weekplan.net/: Too many redirects w Fetch error: http://www.weekplan.net/ => https://www.weekplan.net/: Too many redirects while fetching 'https://www.weekplan.net/' --> - + @@ -17,4 +17,4 @@ Fetch error: http://www.weekplan.net/ => https://www.weekplan.net/: Too many red - \ No newline at end of file + diff --git a/src/chrome/content/rules/Weeklyosm.eu.xml b/src/chrome/content/rules/Weeklyosm.eu.xml new file mode 100644 index 000000000000..2bf93500df07 --- /dev/null +++ b/src/chrome/content/rules/Weeklyosm.eu.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/Wegenwiki.nl.xml b/src/chrome/content/rules/Wegenwiki.nl.xml new file mode 100644 index 000000000000..3b75a333a3ca --- /dev/null +++ b/src/chrome/content/rules/Wegenwiki.nl.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Wego_Health.com-problematic.xml b/src/chrome/content/rules/Wego_Health.com-problematic.xml index cf1b8bb7f030..9c039fd86d8a 100644 --- a/src/chrome/content/rules/Wego_Health.com-problematic.xml +++ b/src/chrome/content/rules/Wego_Health.com-problematic.xml @@ -7,7 +7,6 @@ - + diff --git a/src/chrome/content/rules/Wego_Health.com.xml b/src/chrome/content/rules/Wego_Health.com.xml index d283f5709341..b3450803e4b4 100644 --- a/src/chrome/content/rules/Wego_Health.com.xml +++ b/src/chrome/content/rules/Wego_Health.com.xml @@ -62,10 +62,12 @@ Fetch error: http://wegohealth.com/ => https://wegohealth.com/: (60, 'SSL certif * Secured by us --> - + - + + + @@ -85,7 +87,6 @@ Fetch error: http://wegohealth.com/ => https://wegohealth.com/: (60, 'SSL certif - + diff --git a/src/chrome/content/rules/Weho.st.xml b/src/chrome/content/rules/Weho.st.xml new file mode 100644 index 000000000000..39afcda9d21c --- /dev/null +++ b/src/chrome/content/rules/Weho.st.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Weibo.cn.xml b/src/chrome/content/rules/Weibo.cn.xml index b3086b87979a..61a07a8e6dc7 100644 --- a/src/chrome/content/rules/Weibo.cn.xml +++ b/src/chrome/content/rules/Weibo.cn.xml @@ -1,34 +1,27 @@ - + + - + + - - - diff --git a/src/chrome/content/rules/Weibo.com-mixedcontent.xml b/src/chrome/content/rules/Weibo.com-mixedcontent.xml deleted file mode 100644 index 3fea4fb7f963..000000000000 --- a/src/chrome/content/rules/Weibo.com-mixedcontent.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Weibo.com.xml b/src/chrome/content/rules/Weibo.com.xml index 3fb2c3f1d0c4..6b852d6a0bdd 100644 --- a/src/chrome/content/rules/Weibo.com.xml +++ b/src/chrome/content/rules/Weibo.com.xml @@ -1,80 +1,45 @@ + + - - + - + - - + + + + + - - - - - - - - - - - - - - - - - - - - - - + + + + - + diff --git a/src/chrome/content/rules/WeiboPay.com.xml b/src/chrome/content/rules/WeiboPay.com.xml index b4d3ab968d08..4255383b63f3 100644 --- a/src/chrome/content/rules/WeiboPay.com.xml +++ b/src/chrome/content/rules/WeiboPay.com.xml @@ -18,7 +18,7 @@ - + diff --git a/src/chrome/content/rules/Weiss-Research.xml b/src/chrome/content/rules/Weiss-Research.xml index 3490f72378f0..dd6da9a8e367 100644 --- a/src/chrome/content/rules/Weiss-Research.xml +++ b/src/chrome/content/rules/Weiss-Research.xml @@ -9,18 +9,17 @@ Fetch error: http://moneyandmarkets.com/ => https://moneyandmarkets.com/: (60, ' - + - + + + - + - - + diff --git a/src/chrome/content/rules/Welcome.lgbt.xml b/src/chrome/content/rules/Welcome.lgbt.xml new file mode 100644 index 000000000000..59f93e554702 --- /dev/null +++ b/src/chrome/content/rules/Welcome.lgbt.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/WelcomeCottages.com.xml b/src/chrome/content/rules/WelcomeCottages.com.xml new file mode 100644 index 000000000000..e01bd9750078 --- /dev/null +++ b/src/chrome/content/rules/WelcomeCottages.com.xml @@ -0,0 +1,18 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Welcome_to_MetLife.com.xml b/src/chrome/content/rules/Welcome_to_MetLife.com.xml deleted file mode 100644 index ef9a7017609e..000000000000 --- a/src/chrome/content/rules/Welcome_to_MetLife.com.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Welect.de.xml b/src/chrome/content/rules/Welect.de.xml new file mode 100644 index 000000000000..a69f26f77b25 --- /dev/null +++ b/src/chrome/content/rules/Welect.de.xml @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Welk.sc.xml b/src/chrome/content/rules/Welk.sc.xml index b1683dbc2d4f..757455854977 100644 --- a/src/chrome/content/rules/Welk.sc.xml +++ b/src/chrome/content/rules/Welk.sc.xml @@ -4,10 +4,11 @@ --> - + + + - + diff --git a/src/chrome/content/rules/Wellbid.com.xml b/src/chrome/content/rules/Wellbid.com.xml index e066495b9529..67577524c7ef 100644 --- a/src/chrome/content/rules/Wellbid.com.xml +++ b/src/chrome/content/rules/Wellbid.com.xml @@ -10,4 +10,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Wellcome-HK-Lucky-Draws.xml b/src/chrome/content/rules/Wellcome-HK-Lucky-Draws.xml new file mode 100644 index 000000000000..47988e1dbff6 --- /dev/null +++ b/src/chrome/content/rules/Wellcome-HK-Lucky-Draws.xml @@ -0,0 +1,16 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Wellcome-Trust-Sanger-Institute.xml b/src/chrome/content/rules/Wellcome-Trust-Sanger-Institute.xml index b5314a60c945..c43b7f721d3b 100644 --- a/src/chrome/content/rules/Wellcome-Trust-Sanger-Institute.xml +++ b/src/chrome/content/rules/Wellcome-Trust-Sanger-Institute.xml @@ -3,7 +3,7 @@ - + diff --git a/src/chrome/content/rules/Wello.com.xml b/src/chrome/content/rules/Wello.com.xml index c5a3e1ef734b..b3ed09f6ec4f 100644 --- a/src/chrome/content/rules/Wello.com.xml +++ b/src/chrome/content/rules/Wello.com.xml @@ -5,7 +5,7 @@ Fetch error: http://wello.com/ => https://wello.com/: (7, 'Failed to connect to Fetch error: http://www.wello.com/ => https://www.wello.com/: (7, 'Failed to connect to www.wello.com port 443: Connection refused') --> - + diff --git a/src/chrome/content/rules/Welsh-Country-Cottages.co.uk.xml b/src/chrome/content/rules/Welsh-Country-Cottages.co.uk.xml new file mode 100644 index 000000000000..c07457f0f3d5 --- /dev/null +++ b/src/chrome/content/rules/Welsh-Country-Cottages.co.uk.xml @@ -0,0 +1,20 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Welt.de.xml b/src/chrome/content/rules/Welt.de.xml index b3937e67256f..7dbd0fae49e2 100644 --- a/src/chrome/content/rules/Welt.de.xml +++ b/src/chrome/content/rules/Welt.de.xml @@ -1,46 +1,35 @@ - - - + @@ -50,19 +39,24 @@ Fetch error: http://mobiepaper.apps.welt.de/ => https://mobiepaper.apps.welt.de/ - + + + - - - + + + + + + + - - + @@ -80,4 +74,5 @@ Fetch error: http://mobiepaper.apps.welt.de/ => https://mobiepaper.apps.welt.de/ + diff --git a/src/chrome/content/rules/Weltbild.ch.xml b/src/chrome/content/rules/Weltbild.ch.xml index efc3e568774c..9b022b1b3357 100644 --- a/src/chrome/content/rules/Weltbild.ch.xml +++ b/src/chrome/content/rules/Weltbild.ch.xml @@ -2,7 +2,7 @@ - + diff --git a/src/chrome/content/rules/Wemadethis.co.uk.xml b/src/chrome/content/rules/Wemadethis.co.uk.xml new file mode 100644 index 000000000000..e0c87d5f956e --- /dev/null +++ b/src/chrome/content/rules/Wemadethis.co.uk.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Wemfbox.ch.xml b/src/chrome/content/rules/Wemfbox.ch.xml index 483a1278a846..6db5a9763fa5 100644 --- a/src/chrome/content/rules/Wemfbox.ch.xml +++ b/src/chrome/content/rules/Wemfbox.ch.xml @@ -1,4 +1,11 @@ - +--> + + + + + - + + + + + + + - + + + + + + + + + + + + + + + @@ -179,6 +210,9 @@ + + + @@ -186,10 +220,12 @@ + + + - @@ -199,12 +235,19 @@ + + + + + + + @@ -218,7 +261,8 @@ - + + @@ -228,20 +272,28 @@ + + + + + + + - + + @@ -253,6 +305,9 @@ + + + @@ -265,136 +320,136 @@ - + + + + + + + + + + - + + + + + + + - + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + to="https://anib-ssl.wemfbox.ch/" /> + to="https://arci-ssl.wemfbox.ch/" /> + to="https://asct-ssl.wemfbox.ch/" /> + + + to="https://chba-ssl.wemfbox.ch/" /> + to="https://engy-ssl.wemfbox.ch/" /> + to="https://finan-ssl.wemfbox.ch/" /> + to="https://gmx-ssl.wemfbox.ch/" /> + to="https://golf-ssl.wemfbox.ch/" /> + to="https://hebd-ssl.wemfbox.ch/" /> + + + to="https://mima-ssl.wemfbox.ch/" /> + to="https://monh-ssl.wemfbox.ch/" /> + to="https://nhom-ssl.wemfbox.ch/" /> + to="https://netmetrix-ssl.wemfbox.ch/" /> + + + + + + + + to="https://temp-ssl.wemfbox.ch/" /> + + - + - + + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Wennect.info.xml b/src/chrome/content/rules/Wennect.info.xml index 5adee4b1d7af..cbe620325a6e 100644 --- a/src/chrome/content/rules/Wennect.info.xml +++ b/src/chrome/content/rules/Wennect.info.xml @@ -5,7 +5,8 @@ - + + - + - + + - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/West_Devon.gov.uk.xml b/src/chrome/content/rules/West_Devon.gov.uk.xml index cee9a7d94edd..cbdb7fe4f27e 100644 --- a/src/chrome/content/rules/West_Devon.gov.uk.xml +++ b/src/chrome/content/rules/West_Devon.gov.uk.xml @@ -14,7 +14,7 @@ NB: Server sends no certificate chain, see https://whatsmychaincert.com --> - + diff --git a/src/chrome/content/rules/West_Orange_History.xml b/src/chrome/content/rules/West_Orange_History.xml index 45d39c04b2fd..0429d895d2df 100644 --- a/src/chrome/content/rules/West_Orange_History.xml +++ b/src/chrome/content/rules/West_Orange_History.xml @@ -17,4 +17,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/West_Sussex.gov.uk.xml b/src/chrome/content/rules/West_Sussex.gov.uk.xml index 3aab8238ca3c..34f63765f45c 100644 --- a/src/chrome/content/rules/West_Sussex.gov.uk.xml +++ b/src/chrome/content/rules/West_Sussex.gov.uk.xml @@ -1,8 +1,4 @@ - - + @@ -60,7 +56,6 @@ Fetch error: http://wsgfl.westsussex.gov.uk/ => https://wsgfl.westsussex.gov.uk/ - @@ -70,7 +65,7 @@ Fetch error: http://wsgfl.westsussex.gov.uk/ => https://wsgfl.westsussex.gov.uk/ - + - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/West_Virginia_University.xml b/src/chrome/content/rules/West_Virginia_University.xml deleted file mode 100644 index f34c58b49689..000000000000 --- a/src/chrome/content/rules/West_Virginia_University.xml +++ /dev/null @@ -1,205 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/West_Yorkshire_Observatory.org.xml b/src/chrome/content/rules/West_Yorkshire_Observatory.org.xml index abfcee3fcc6c..357ca5d1c50b 100644 --- a/src/chrome/content/rules/West_Yorkshire_Observatory.org.xml +++ b/src/chrome/content/rules/West_Yorkshire_Observatory.org.xml @@ -28,7 +28,7 @@ Fetch error: http://www.westyorkshireobservatory.org/ => https://westyorkshireob ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -43,7 +43,7 @@ Fetch error: http://www.westyorkshireobservatory.org/ => https://westyorkshireob --> - + - + @@ -16,10 +16,9 @@ - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Western_Union.xml b/src/chrome/content/rules/Western_Union.xml index 91331e5ac597..0018789531cc 100644 --- a/src/chrome/content/rules/Western_Union.xml +++ b/src/chrome/content/rules/Western_Union.xml @@ -5,9 +5,6 @@ Non-2xx HTTP code: http://westernunion.com/ (200) => https://westernunion.com/ ( Other Western Union rulesets: - - WU_Payment_Solutions.com.xml - - - westernunion.com.d1.sc.omtrdc.net - metrics @@ -54,7 +51,7 @@ Non-2xx HTTP code: http://westernunion.com/ (200) => https://westernunion.com/ ( - agentportal.westernunion.com --> - + diff --git a/src/chrome/content/rules/WestlandUtrecht.xml b/src/chrome/content/rules/WestlandUtrecht.xml index ce8efa190b2f..6cf2588156fd 100644 --- a/src/chrome/content/rules/WestlandUtrecht.xml +++ b/src/chrome/content/rules/WestlandUtrecht.xml @@ -5,7 +5,7 @@ Fetch error: http://www.mijnwestlandutrecht.nl/ => https://mijnwestlandutrecht.n Fetch error: http://mijnwestlandutrecht.nl/ => https://mijnwestlandutrecht.nl/: (7, 'Failed to connect to mijnwestlandutrecht.nl port 443: Connection refused') --> - + diff --git a/src/chrome/content/rules/Westlaw.com.xml b/src/chrome/content/rules/Westlaw.com.xml index 213815bfc987..692d141e01df 100644 --- a/src/chrome/content/rules/Westlaw.com.xml +++ b/src/chrome/content/rules/Westlaw.com.xml @@ -3,7 +3,7 @@ Problematic hosts in *westlaw.com: - + - ^ * - store * @@ -62,7 +62,7 @@ - + - - + + diff --git a/src/chrome/content/rules/Westminster.gov.uk.xml b/src/chrome/content/rules/Westminster.gov.uk.xml index 29e96097eca2..80e8a97fef85 100644 --- a/src/chrome/content/rules/Westminster.gov.uk.xml +++ b/src/chrome/content/rules/Westminster.gov.uk.xml @@ -57,14 +57,14 @@ Fetch error: http://partnerweb.westminster.gov.uk/ => https://partnerweb.westmin - css on openforum from fonts.googleapis.com ˢ - Images, on: - + - cleanstreets from $self - elibrary from trib.ent.sirsidynix.net.uk ˢ ˢ Secured by us --> - + @@ -96,7 +96,7 @@ Fetch error: http://partnerweb.westminster.gov.uk/ => https://partnerweb.westmin - + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Westpac.xml b/src/chrome/content/rules/Westpac.xml deleted file mode 100644 index 2410a6a95cd1..000000000000 --- a/src/chrome/content/rules/Westpac.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Wetter.de.xml b/src/chrome/content/rules/Wetter.de.xml deleted file mode 100644 index 61a9d3a17ae8..000000000000 --- a/src/chrome/content/rules/Wetter.de.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Wettergefahren.de.xml b/src/chrome/content/rules/Wettergefahren.de.xml new file mode 100644 index 000000000000..3dd3ab94e6ba --- /dev/null +++ b/src/chrome/content/rules/Wettergefahren.de.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Wg_cdn.net.xml b/src/chrome/content/rules/Wg_cdn.net.xml deleted file mode 100644 index a78af6db847a..000000000000 --- a/src/chrome/content/rules/Wg_cdn.net.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/WhatCanIDoForMozilla.org.xml b/src/chrome/content/rules/WhatCanIDoForMozilla.org.xml new file mode 100644 index 000000000000..355d396e1b15 --- /dev/null +++ b/src/chrome/content/rules/WhatCanIDoForMozilla.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/WhatIsMyIP.com.xml b/src/chrome/content/rules/WhatIsMyIP.com.xml new file mode 100644 index 000000000000..8e240f1ee5d7 --- /dev/null +++ b/src/chrome/content/rules/WhatIsMyIP.com.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/WhatIsMyIP.xml b/src/chrome/content/rules/WhatIsMyIP.xml deleted file mode 100644 index 84472f8d0204..000000000000 --- a/src/chrome/content/rules/WhatIsMyIP.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/WhatIsMyIPAddress.com.xml b/src/chrome/content/rules/WhatIsMyIPAddress.com.xml new file mode 100644 index 000000000000..137d4d527214 --- /dev/null +++ b/src/chrome/content/rules/WhatIsMyIPAddress.com.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/WhatPulse.org.xml b/src/chrome/content/rules/WhatPulse.org.xml index d2e9ada4f874..2d81c5514a1a 100644 --- a/src/chrome/content/rules/WhatPulse.org.xml +++ b/src/chrome/content/rules/WhatPulse.org.xml @@ -13,7 +13,7 @@ Fetch error: http://api.whatpulse.org/ => https://api.whatpulse.org/: (60, 'SSL - developer.whatpulse.org (https://github.com/EFForg/https-everywhere/pull/4882) --> - + diff --git a/src/chrome/content/rules/WhatReallyHappened.com.xml b/src/chrome/content/rules/WhatReallyHappened.com.xml new file mode 100644 index 000000000000..fba7a6159ba9 --- /dev/null +++ b/src/chrome/content/rules/WhatReallyHappened.com.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/What_Is_My_Spirit_Animal.com.xml b/src/chrome/content/rules/What_Is_My_Spirit_Animal.com.xml new file mode 100644 index 000000000000..67c91b2c30f9 --- /dev/null +++ b/src/chrome/content/rules/What_Is_My_Spirit_Animal.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Whatbox.ca.xml b/src/chrome/content/rules/Whatbox.ca.xml index 2322034b18cd..b607cc56a5c2 100644 --- a/src/chrome/content/rules/Whatbox.ca.xml +++ b/src/chrome/content/rules/Whatbox.ca.xml @@ -1,10 +1,11 @@ - + + + - + diff --git a/src/chrome/content/rules/WhatsApp.com.xml b/src/chrome/content/rules/WhatsApp.com.xml deleted file mode 100644 index 9a18376a792f..000000000000 --- a/src/chrome/content/rules/WhatsApp.com.xml +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Whats_My_Chain_Cert.com.xml b/src/chrome/content/rules/Whats_My_Chain_Cert.com.xml deleted file mode 100644 index cf98246fd3e2..000000000000 --- a/src/chrome/content/rules/Whats_My_Chain_Cert.com.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Whatsbroadcast.com.xml b/src/chrome/content/rules/Whatsbroadcast.com.xml index c2c3093715e4..a5019bd05996 100644 --- a/src/chrome/content/rules/Whatsbroadcast.com.xml +++ b/src/chrome/content/rules/Whatsbroadcast.com.xml @@ -5,7 +5,7 @@ Fetch error: http://www.widget.whatsbroadcast.com/ => https://www.widget.whatsbr Fetch error: http://www2.whatsbroadcast.com/ => https://www2.whatsbroadcast.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www2.whatsbroadcast.com'") --> - + diff --git a/src/chrome/content/rules/Where.com.xml b/src/chrome/content/rules/Where.com.xml index 563a8bc6bd4a..f31afa724e67 100644 --- a/src/chrome/content/rules/Where.com.xml +++ b/src/chrome/content/rules/Where.com.xml @@ -18,7 +18,7 @@ Fetch error: http://upstream.where.com/ => https://upstream.where.com/: (7, 'Fai - .where.com --> - + diff --git a/src/chrome/content/rules/Where2GetIt.com.xml b/src/chrome/content/rules/Where2GetIt.com.xml new file mode 100644 index 000000000000..23a9925f8bd3 --- /dev/null +++ b/src/chrome/content/rules/Where2GetIt.com.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Where_2_Get_It.xml b/src/chrome/content/rules/Where_2_Get_It.xml deleted file mode 100644 index 6b635a92ea47..000000000000 --- a/src/chrome/content/rules/Where_2_Get_It.xml +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/WhippleHill.com.xml b/src/chrome/content/rules/WhippleHill.com.xml new file mode 100644 index 000000000000..1855bf92a110 --- /dev/null +++ b/src/chrome/content/rules/WhippleHill.com.xml @@ -0,0 +1,16 @@ + + + + + + diff --git a/src/chrome/content/rules/WhippleHill.xml b/src/chrome/content/rules/WhippleHill.xml deleted file mode 100644 index adf0e23ad97c..000000000000 --- a/src/chrome/content/rules/WhippleHill.xml +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Whirlpool.xml b/src/chrome/content/rules/Whirlpool.xml deleted file mode 100644 index d3ac2f6be151..000000000000 --- a/src/chrome/content/rules/Whirlpool.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Whiskey-Media.xml b/src/chrome/content/rules/Whiskey-Media.xml deleted file mode 100644 index f69887479bdc..000000000000 --- a/src/chrome/content/rules/Whiskey-Media.xml +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Whisky.de.xml b/src/chrome/content/rules/Whisky.de.xml new file mode 100644 index 000000000000..3af4e16e7f80 --- /dev/null +++ b/src/chrome/content/rules/Whisky.de.xml @@ -0,0 +1,29 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Whisper-Gifts.xml b/src/chrome/content/rules/Whisper-Gifts.xml index a10eeb944f1d..f53c911e6a9d 100644 --- a/src/chrome/content/rules/Whisper-Gifts.xml +++ b/src/chrome/content/rules/Whisper-Gifts.xml @@ -1,16 +1,17 @@ + - + to="https://www.whispergifts.com/" /> - - + diff --git a/src/chrome/content/rules/Whisper.sh.xml b/src/chrome/content/rules/Whisper.sh.xml index bd832aa266ee..7ab5d0d9862f 100644 --- a/src/chrome/content/rules/Whisper.sh.xml +++ b/src/chrome/content/rules/Whisper.sh.xml @@ -14,7 +14,7 @@ Fetch error: http://www.whisper.sh/ => https://www.whisper.sh/: Too many redirec - support (hostname mismatch, CN: *.desk.com, desk.com) - your-voice.org (connection refused) --> - + diff --git a/src/chrome/content/rules/WhiteFence.com.xml b/src/chrome/content/rules/WhiteFence.com.xml deleted file mode 100644 index 2c4fb9e2a8a5..000000000000 --- a/src/chrome/content/rules/WhiteFence.com.xml +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/WhiteThreadInstitute.org.xml b/src/chrome/content/rules/WhiteThreadInstitute.org.xml new file mode 100644 index 000000000000..74d9ef2bde38 --- /dev/null +++ b/src/chrome/content/rules/WhiteThreadInstitute.org.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/WhiteThreadPress.com.xml b/src/chrome/content/rules/WhiteThreadPress.com.xml new file mode 100644 index 000000000000..b485ceec7338 --- /dev/null +++ b/src/chrome/content/rules/WhiteThreadPress.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/White_Lisbon.com.xml b/src/chrome/content/rules/White_Lisbon.com.xml index c3017ad62631..34c907b22f7a 100644 --- a/src/chrome/content/rules/White_Lisbon.com.xml +++ b/src/chrome/content/rules/White_Lisbon.com.xml @@ -4,14 +4,14 @@ Disabled by https-everywhere-checker because: Fetch error: http://mail.whitelisbon.com/ => https://mail.whitelisbon.com/: (28, 'Connection timed out after 20001 milliseconds') --> - + - + - - - - - - - - - diff --git a/src/chrome/content/rules/Whitepages.com.xml b/src/chrome/content/rules/Whitepages.com.xml index e04389883436..03a48f5fd626 100644 --- a/src/chrome/content/rules/Whitepages.com.xml +++ b/src/chrome/content/rules/Whitepages.com.xml @@ -1,9 +1,4 @@ - - - - @@ -66,6 +58,7 @@ + - - + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/WhitneyWisconsinFans.com.xml b/src/chrome/content/rules/WhitneyWisconsinFans.com.xml new file mode 100644 index 000000000000..082a47ea9c17 --- /dev/null +++ b/src/chrome/content/rules/WhitneyWisconsinFans.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Who.is.xml b/src/chrome/content/rules/Who.is.xml index cd7c29f28636..c5dac804a631 100644 --- a/src/chrome/content/rules/Who.is.xml +++ b/src/chrome/content/rules/Who.is.xml @@ -4,4 +4,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/WhoIsJuan.me.xml b/src/chrome/content/rules/WhoIsJuan.me.xml new file mode 100644 index 000000000000..8e9814f7f2a8 --- /dev/null +++ b/src/chrome/content/rules/WhoIsJuan.me.xml @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/WhoSampled.com.xml b/src/chrome/content/rules/WhoSampled.com.xml index 8bddda069df5..4bca801186a9 100644 --- a/src/chrome/content/rules/WhoSampled.com.xml +++ b/src/chrome/content/rules/WhoSampled.com.xml @@ -11,7 +11,7 @@ Fetch error: http://www.whosampled.com/ => http://www.whosampled.com/: (7, 'Fail * Secured by us --> - + diff --git a/src/chrome/content/rules/WhoSpendsMoney.com.xml b/src/chrome/content/rules/WhoSpendsMoney.com.xml new file mode 100644 index 000000000000..39a4d01d1077 --- /dev/null +++ b/src/chrome/content/rules/WhoSpendsMoney.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Whoer.net.xml b/src/chrome/content/rules/Whoer.net.xml new file mode 100644 index 000000000000..5debae8b0753 --- /dev/null +++ b/src/chrome/content/rules/Whoer.net.xml @@ -0,0 +1,72 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/WhoisIp.ovh.xml b/src/chrome/content/rules/WhoisIp.ovh.xml new file mode 100644 index 000000000000..9118f320c7a7 --- /dev/null +++ b/src/chrome/content/rules/WhoisIp.ovh.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Whole-Earth-Catalog.xml b/src/chrome/content/rules/Whole-Earth-Catalog.xml index 0476e2af5d4b..1cb8e512053e 100644 --- a/src/chrome/content/rules/Whole-Earth-Catalog.xml +++ b/src/chrome/content/rules/Whole-Earth-Catalog.xml @@ -5,7 +5,7 @@ - + - + + + diff --git a/src/chrome/content/rules/WhosOn.com.xml b/src/chrome/content/rules/WhosOn.com.xml index b02c79b0a042..732d5c25ea44 100644 --- a/src/chrome/content/rules/WhosOn.com.xml +++ b/src/chrome/content/rules/WhosOn.com.xml @@ -21,10 +21,19 @@ --> - - - - + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/WiKirby.com.xml b/src/chrome/content/rules/WiKirby.com.xml new file mode 100644 index 000000000000..9860bf14e2a0 --- /dev/null +++ b/src/chrome/content/rules/WiKirby.com.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/WiMP_Music.com.xml b/src/chrome/content/rules/WiMP_Music.com.xml index 1eb07ce15763..2465a3982c24 100644 --- a/src/chrome/content/rules/WiMP_Music.com.xml +++ b/src/chrome/content/rules/WiMP_Music.com.xml @@ -37,7 +37,9 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Wicked-Lasers.xml b/src/chrome/content/rules/Wicked-Lasers.xml index 739b9d5ae002..241a3ae4d34e 100644 --- a/src/chrome/content/rules/Wicked-Lasers.xml +++ b/src/chrome/content/rules/Wicked-Lasers.xml @@ -8,15 +8,15 @@ Disabled by https-everywhere-checker because: Fetch error: http://wickedlasers.com/ => https://wickedlasers.com/: (7, 'Failed to connect to wickedlasers.com port 443: Connection refused') Fetch error: http://www.wickedlasers.com/ => https://www.wickedlasers.com/: (7, 'Failed to connect to www.wickedlasers.com port 443: Connection refused') --> - + - - + + diff --git a/src/chrome/content/rules/Wicked_Fiber.xml b/src/chrome/content/rules/Wicked_Fiber.xml index 7699f2e7e64a..d8d74051f80a 100644 --- a/src/chrome/content/rules/Wicked_Fiber.xml +++ b/src/chrome/content/rules/Wicked_Fiber.xml @@ -8,7 +8,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://wickedfiber.com/ => https://wickedfiber.com/: (60, 'SSL certificate problem: unable to get local issuer certificate') Fetch error: http://www.wickedfiber.com/ => https://www.wickedfiber.com/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + @@ -19,4 +19,4 @@ Fetch error: http://www.wickedfiber.com/ => https://www.wickedfiber.com/: (60, ' - \ No newline at end of file + diff --git a/src/chrome/content/rules/WiebeTech.com.xml b/src/chrome/content/rules/WiebeTech.com.xml index 5520bea76f1e..6c2734c827be 100644 --- a/src/chrome/content/rules/WiebeTech.com.xml +++ b/src/chrome/content/rules/WiebeTech.com.xml @@ -9,7 +9,7 @@ Non-2xx HTTP code: http://www.wiebetech.com/default.aspx (200) => https://www.cr (www.)?wiebetech.com: Mismatched --> - + diff --git a/src/chrome/content/rules/Wien-IT.xml b/src/chrome/content/rules/Wien-IT.xml index 0a7ad899f694..6059207bb251 100644 --- a/src/chrome/content/rules/Wien-IT.xml +++ b/src/chrome/content/rules/Wien-IT.xml @@ -7,7 +7,7 @@ Fetch error: http://extranet.fernwaermewien.at/ => https://extranet.fernwaermewi Fetch error: http://www.fernwaerme-partner.at/ => https://www.fernwaerme-partner.at/: (51, "SSL: no alternative certificate subject name matches target host name 'www.fernwaerme-partner.at'") --> - + diff --git a/src/chrome/content/rules/WifiLib.xml b/src/chrome/content/rules/WifiLib.xml deleted file mode 100644 index d79ff5902563..000000000000 --- a/src/chrome/content/rules/WifiLib.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/WifiWX.com.xml b/src/chrome/content/rules/WifiWX.com.xml index 450ea0313d58..f35bf2a8e69c 100644 --- a/src/chrome/content/rules/WifiWX.com.xml +++ b/src/chrome/content/rules/WifiWX.com.xml @@ -1,13 +1,13 @@ - + - + diff --git a/src/chrome/content/rules/Wigan.gov.uk.xml b/src/chrome/content/rules/Wigan.gov.uk.xml index fb4ebaf93e3e..546c584b5866 100644 --- a/src/chrome/content/rules/Wigan.gov.uk.xml +++ b/src/chrome/content/rules/Wigan.gov.uk.xml @@ -40,7 +40,7 @@ Fetch error: http://rylands.wigan.gov.uk/ => https://rylands.wigan.gov.uk/: (7, - www.wigan.gov.uk --> - + @@ -61,7 +61,7 @@ Fetch error: http://rylands.wigan.gov.uk/ => https://rylands.wigan.gov.uk/: (7, - + - + + + + diff --git a/src/chrome/content/rules/Wiiings.com.xml b/src/chrome/content/rules/Wiiings.com.xml index a383aa1cdc98..335ea068270d 100644 --- a/src/chrome/content/rules/Wiiings.com.xml +++ b/src/chrome/content/rules/Wiiings.com.xml @@ -26,7 +26,7 @@ Fetch error: http://wiiings.com/ => https://www.wiiings.com/: invalid group refe - stage-mas --> - + diff --git a/src/chrome/content/rules/WikiBound.info.xml b/src/chrome/content/rules/WikiBound.info.xml new file mode 100644 index 000000000000..aeb03d8d6dec --- /dev/null +++ b/src/chrome/content/rules/WikiBound.info.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/WikiFur.xml b/src/chrome/content/rules/WikiFur.xml index 46b8d43ccd63..7f9d45e8fb9d 100644 --- a/src/chrome/content/rules/WikiFur.xml +++ b/src/chrome/content/rules/WikiFur.xml @@ -1,8 +1,38 @@ - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/WikiHow.com.xml b/src/chrome/content/rules/WikiHow.com.xml deleted file mode 100644 index 52be6d26dfc4..000000000000 --- a/src/chrome/content/rules/WikiHow.com.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Wikidot.xml b/src/chrome/content/rules/Wikidot.xml deleted file mode 100644 index a51ddb74f333..000000000000 --- a/src/chrome/content/rules/Wikidot.xml +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Wikimedia.xml b/src/chrome/content/rules/Wikimedia.xml index cf2c00e7f645..ffe6947c6540 100644 --- a/src/chrome/content/rules/Wikimedia.xml +++ b/src/chrome/content/rules/Wikimedia.xml @@ -1,10 +1,5 @@ - + - - - - - + + + + + + + + @@ -66,20 +64,20 @@ Fetch error: http://www.wikimedia.org.uk/ => https://www.wikimedia.org.uk/: (56, - - - + + + - + @@ -90,7 +88,7 @@ Fetch error: http://www.wikimedia.org.uk/ => https://www.wikimedia.org.uk/: (56, - @@ -139,6 +137,9 @@ Fetch error: http://www.wikimedia.org.uk/ => https://www.wikimedia.org.uk/: (56, + + diff --git a/src/chrome/content/rules/Wikimonde.com.xml b/src/chrome/content/rules/Wikimonde.com.xml new file mode 100644 index 000000000000..8e7a4e038190 --- /dev/null +++ b/src/chrome/content/rules/Wikimonde.com.xml @@ -0,0 +1,16 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Wikinvest.xml b/src/chrome/content/rules/Wikinvest.xml index 54550620c62c..b11b20f1d0cd 100644 --- a/src/chrome/content/rules/Wikinvest.xml +++ b/src/chrome/content/rules/Wikinvest.xml @@ -1,8 +1,9 @@ - - + + + diff --git a/src/chrome/content/rules/Wikiscan.xml b/src/chrome/content/rules/Wikiscan.xml new file mode 100644 index 000000000000..b94fd1f6545f --- /dev/null +++ b/src/chrome/content/rules/Wikiscan.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Wikisimpsons.xml b/src/chrome/content/rules/Wikisimpsons.xml new file mode 100644 index 000000000000..45d0e6b85e24 --- /dev/null +++ b/src/chrome/content/rules/Wikisimpsons.xml @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Wikispooks.xml b/src/chrome/content/rules/Wikispooks.xml index f1dc4c39333a..27a6ebc98cd8 100644 --- a/src/chrome/content/rules/Wikispooks.xml +++ b/src/chrome/content/rules/Wikispooks.xml @@ -4,7 +4,7 @@ - + https://cart.wildwestdomains.com/: (6, 'Could not resolve host: cart.wildwestdomains.com') -Fetch error: http://img.wildwestdomains.com/ => https://img.wildwestdomains.com/: (28, 'Connection timed out after 20000 milliseconds') -Fetch error: http://who.wildwestdomains.com/ => https://who.wildwestdomains.com/: (60, 'SSL certificate problem: unable to get local issuer certificate') - - Insecure cookies are set for these domains and hosts: - - - .wildwestdomains.com - - www.wildwestdomains.com - ---> - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/WildArchives.com.xml b/src/chrome/content/rules/WildArchives.com.xml deleted file mode 100644 index edf5c2e5008c..000000000000 --- a/src/chrome/content/rules/WildArchives.com.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/WildLeaks.org.xml b/src/chrome/content/rules/WildLeaks.org.xml new file mode 100644 index 000000000000..6289ea37725c --- /dev/null +++ b/src/chrome/content/rules/WildLeaks.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Wild_Apricot.org.xml b/src/chrome/content/rules/Wild_Apricot.org.xml index 03b90b23df90..42820ae3dcb6 100644 --- a/src/chrome/content/rules/Wild_Apricot.org.xml +++ b/src/chrome/content/rules/Wild_Apricot.org.xml @@ -7,7 +7,8 @@ - + + @@ -17,4 +18,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Wildcard_Corp.com.xml b/src/chrome/content/rules/Wildcard_Corp.com.xml deleted file mode 100644 index 54cea5051e7e..000000000000 --- a/src/chrome/content/rules/Wildcard_Corp.com.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Wilde_Beuger_Solmecke.xml b/src/chrome/content/rules/Wilde_Beuger_Solmecke.xml index f3e7ff2bda94..8f692bd19876 100644 --- a/src/chrome/content/rules/Wilde_Beuger_Solmecke.xml +++ b/src/chrome/content/rules/Wilde_Beuger_Solmecke.xml @@ -4,7 +4,7 @@ Problematic subdomains: - - ^ (self-signed, mismatched; CN: 17833.whserv.de) + - ^ (self-signed, mismatched; CN: 17833.whserv.de) --> diff --git a/src/chrome/content/rules/Wildfiregames.com.xml b/src/chrome/content/rules/Wildfiregames.com.xml index 6829f87d398e..f4fd98c1d6e6 100644 --- a/src/chrome/content/rules/Wildfiregames.com.xml +++ b/src/chrome/content/rules/Wildfiregames.com.xml @@ -12,7 +12,7 @@ Fetch error: http://releases.wildfiregames.com/ => https://releases.wildfiregame Other rulesets for related sites: - Play0ad.com.xml --> - + diff --git a/src/chrome/content/rules/Wildlifesydney.com.au.xml b/src/chrome/content/rules/Wildlifesydney.com.au.xml index 8e8e0b9add9c..dac8fd9a5866 100644 --- a/src/chrome/content/rules/Wildlifesydney.com.au.xml +++ b/src/chrome/content/rules/Wildlifesydney.com.au.xml @@ -8,7 +8,7 @@ Fetch error: http://secure.wildlifesydney.com.au/ => https://secure.wildlifesydn Nonfunctional subdomains: - calendar (cert mismatch) --> - + diff --git a/src/chrome/content/rules/Wildwestdomains.com.xml b/src/chrome/content/rules/Wildwestdomains.com.xml new file mode 100644 index 000000000000..06663eef6616 --- /dev/null +++ b/src/chrome/content/rules/Wildwestdomains.com.xml @@ -0,0 +1,16 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Wiley.xml b/src/chrome/content/rules/Wiley.xml index 7e3b2b80a8b7..3a2d93c6374c 100644 --- a/src/chrome/content/rules/Wiley.xml +++ b/src/chrome/content/rules/Wiley.xml @@ -24,11 +24,9 @@ Non-2xx HTTP code: http://sp.onlinelibrary.wiley.com/ (200) => https://sp.online - - - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Will_Leather_Goods.xml b/src/chrome/content/rules/Will_Leather_Goods.xml index c4a6f424a2d9..5c21ee606432 100644 --- a/src/chrome/content/rules/Will_Leather_Goods.xml +++ b/src/chrome/content/rules/Will_Leather_Goods.xml @@ -4,9 +4,9 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Willamette_Week.xml b/src/chrome/content/rules/Willamette_Week.xml index 1925abf5cb2d..a28b5ff48257 100644 --- a/src/chrome/content/rules/Willamette_Week.xml +++ b/src/chrome/content/rules/Willamette_Week.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/William-Hill.xml b/src/chrome/content/rules/William-Hill.xml index 9910ac1b8c7b..8629a3aecc7a 100644 --- a/src/chrome/content/rules/William-Hill.xml +++ b/src/chrome/content/rules/William-Hill.xml @@ -56,7 +56,7 @@ Fetch error: http://cacheserve.williamhill.com/ => https://serve.williamhill.com * Secured by us --> - + @@ -104,7 +104,7 @@ Fetch error: http://cacheserve.williamhill.com/ => https://serve.williamhill.com --> - + diff --git a/src/chrome/content/rules/Williams-College.xml b/src/chrome/content/rules/Williams-College.xml index 66e28383df2c..7001fda7a265 100644 --- a/src/chrome/content/rules/Williams-College.xml +++ b/src/chrome/content/rules/Williams-College.xml @@ -49,10 +49,10 @@ - + - diff --git a/src/chrome/content/rules/Willow-Garage.xml b/src/chrome/content/rules/Willow-Garage.xml index 46d7f6551e17..f4256f04878f 100644 --- a/src/chrome/content/rules/Willow-Garage.xml +++ b/src/chrome/content/rules/Willow-Garage.xml @@ -16,10 +16,10 @@ Fetch error: http://willowgarage.com/ => https://www.willowgarage.com/: (28, 'Co - ^ (cert only matches www) --> - + - + diff --git a/src/chrome/content/rules/Willy-Brandt.de.xml b/src/chrome/content/rules/Willy-Brandt.de.xml new file mode 100644 index 000000000000..51585a8a9ae3 --- /dev/null +++ b/src/chrome/content/rules/Willy-Brandt.de.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Wilsch.lgbt.xml b/src/chrome/content/rules/Wilsch.lgbt.xml new file mode 100644 index 000000000000..09d7419f2c23 --- /dev/null +++ b/src/chrome/content/rules/Wilsch.lgbt.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/WilsonTimes.com.xml b/src/chrome/content/rules/WilsonTimes.com.xml new file mode 100644 index 000000000000..1783c91631dc --- /dev/null +++ b/src/chrome/content/rules/WilsonTimes.com.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/Win-is.com.xml b/src/chrome/content/rules/Win-is.com.xml deleted file mode 100644 index 737606c8328f..000000000000 --- a/src/chrome/content/rules/Win-is.com.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Win-sv.jp.xml b/src/chrome/content/rules/Win-sv.jp.xml deleted file mode 100644 index cbc95ce6d221..000000000000 --- a/src/chrome/content/rules/Win-sv.jp.xml +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/WinRAR.xml b/src/chrome/content/rules/WinRAR.xml index db5c865bf2da..05e2eaeda7bd 100644 --- a/src/chrome/content/rules/WinRAR.xml +++ b/src/chrome/content/rules/WinRAR.xml @@ -1,16 +1,30 @@ - + 4xx client error: + - piwik.win-rar.com +--> + + + + + + + + - - - + diff --git a/src/chrome/content/rules/WinSCP.xml b/src/chrome/content/rules/WinSCP.xml index 3bf81cde92d7..bf67e2dcb0d8 100644 --- a/src/chrome/content/rules/WinSCP.xml +++ b/src/chrome/content/rules/WinSCP.xml @@ -2,11 +2,10 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/WinSuperSite.com.xml b/src/chrome/content/rules/WinSuperSite.com.xml deleted file mode 100644 index ca19f804a9c5..000000000000 --- a/src/chrome/content/rules/WinSuperSite.com.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/WinTieWin.xml b/src/chrome/content/rules/WinTieWin.xml deleted file mode 100644 index 311834b9ee4c..000000000000 --- a/src/chrome/content/rules/WinTieWin.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/WinZip.com.xml b/src/chrome/content/rules/WinZip.com.xml index 4aee1928d632..18735152c0c7 100644 --- a/src/chrome/content/rules/WinZip.com.xml +++ b/src/chrome/content/rules/WinZip.com.xml @@ -1,5 +1,5 @@ - + - + - + diff --git a/src/chrome/content/rules/Wind.it.xml b/src/chrome/content/rules/Wind.it.xml new file mode 100644 index 000000000000..8d5d7e66109c --- /dev/null +++ b/src/chrome/content/rules/Wind.it.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Wind_River.com-problematic.xml b/src/chrome/content/rules/Wind_River.com-problematic.xml index ca5b714da952..a0239d23e517 100644 --- a/src/chrome/content/rules/Wind_River.com-problematic.xml +++ b/src/chrome/content/rules/Wind_River.com-problematic.xml @@ -5,7 +5,8 @@ - + + diff --git a/src/chrome/content/rules/Wind_River.com.xml b/src/chrome/content/rules/Wind_River.com.xml index edff5a44a29d..7445e0f60daf 100644 --- a/src/chrome/content/rules/Wind_River.com.xml +++ b/src/chrome/content/rules/Wind_River.com.xml @@ -18,7 +18,7 @@ Fetch error: http://developer.windriver.com/ => https://developer.windriver.com/ - developer.windriver.com --> - + diff --git a/src/chrome/content/rules/Window_Switch.xml b/src/chrome/content/rules/Window_Switch.xml index 6da207a1cb8d..fc5e0afd40b6 100644 --- a/src/chrome/content/rules/Window_Switch.xml +++ b/src/chrome/content/rules/Window_Switch.xml @@ -21,7 +21,7 @@ --> - + + + @@ -32,10 +31,9 @@ --> - + - + diff --git a/src/chrome/content/rules/Windows.net.xml b/src/chrome/content/rules/Windows.net.xml index 402c12f7a175..c97410f3b438 100644 --- a/src/chrome/content/rules/Windows.net.xml +++ b/src/chrome/content/rules/Windows.net.xml @@ -1,8 +1,5 @@ - + @@ -29,7 +26,6 @@ Fetch error: http://xclimages.blob.core.windows.net/images/FeedbackHeader => htt - - - - - - - - - - diff --git a/src/chrome/content/rules/Windstream_Communications.xml b/src/chrome/content/rules/Windstream_Communications.xml index c9085d6e6ea3..31ef1e686460 100644 --- a/src/chrome/content/rules/Windstream_Communications.xml +++ b/src/chrome/content/rules/Windstream_Communications.xml @@ -32,4 +32,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/WineAustraliaCorporation.xml b/src/chrome/content/rules/WineAustraliaCorporation.xml index 0a24898e0c44..7cfd3e1b13b8 100644 --- a/src/chrome/content/rules/WineAustraliaCorporation.xml +++ b/src/chrome/content/rules/WineAustraliaCorporation.xml @@ -1,7 +1,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Wingware.com.xml b/src/chrome/content/rules/Wingware.com.xml index 9cc72aa2f0c3..1475d1d052c3 100644 --- a/src/chrome/content/rules/Wingware.com.xml +++ b/src/chrome/content/rules/Wingware.com.xml @@ -20,7 +20,7 @@ - + + + + + + + + + + diff --git a/src/chrome/content/rules/Winhawille.edu.hel.fi.xml b/src/chrome/content/rules/Winhawille.edu.hel.fi.xml deleted file mode 100644 index 6963d7d67e6e..000000000000 --- a/src/chrome/content/rules/Winhawille.edu.hel.fi.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/chrome/content/rules/Winner.com.xml b/src/chrome/content/rules/Winner.com.xml index d2164e21f92a..0c9c091c5ed5 100644 --- a/src/chrome/content/rules/Winner.com.xml +++ b/src/chrome/content/rules/Winner.com.xml @@ -55,12 +55,33 @@ - securelivecasino - securemobile - service - - wap + - wap --> - + + + + + + + + + + + + + + + + + + + + + + @@ -70,8 +91,6 @@ - @@ -79,4 +98,5 @@ + diff --git a/src/chrome/content/rules/Winoptions.com.xml b/src/chrome/content/rules/Winoptions.com.xml deleted file mode 100644 index d57f7fbdcf16..000000000000 --- a/src/chrome/content/rules/Winoptions.com.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Wintotal.de.xml b/src/chrome/content/rules/Wintotal.de.xml index 02c31e3f6f48..f0f2f31a6c46 100644 --- a/src/chrome/content/rules/Wintotal.de.xml +++ b/src/chrome/content/rules/Wintotal.de.xml @@ -1,6 +1,6 @@ diff --git a/src/chrome/content/rules/Wire.com.xml b/src/chrome/content/rules/Wire.com.xml deleted file mode 100644 index 66e836c9b2be..000000000000 --- a/src/chrome/content/rules/Wire.com.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Wire.innocraft.cloud.xml b/src/chrome/content/rules/Wire.innocraft.cloud.xml new file mode 100644 index 000000000000..e3a3ca8c2485 --- /dev/null +++ b/src/chrome/content/rules/Wire.innocraft.cloud.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/WireEdit.com.xml b/src/chrome/content/rules/WireEdit.com.xml index c75d1d1523e9..9e69fe0a264c 100644 --- a/src/chrome/content/rules/WireEdit.com.xml +++ b/src/chrome/content/rules/WireEdit.com.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.wireedit.com/ => https://www.wireedit.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.wireedit.com'") --> - + diff --git a/src/chrome/content/rules/WireTarget.com.xml b/src/chrome/content/rules/WireTarget.com.xml new file mode 100644 index 000000000000..30ad5c3d5091 --- /dev/null +++ b/src/chrome/content/rules/WireTarget.com.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Wired.com.xml b/src/chrome/content/rules/Wired.com.xml index e8393c45c9b0..1746f106f363 100644 --- a/src/chrome/content/rules/Wired.com.xml +++ b/src/chrome/content/rules/Wired.com.xml @@ -5,7 +5,7 @@ - insights.wired.com - www.insights.wired.com - stats.wired.com - + Refused: - feeds.wired.com - howto.wired.com @@ -20,12 +20,12 @@ - + - + diff --git a/src/chrome/content/rules/WiredMinds.xml b/src/chrome/content/rules/WiredMinds.xml index 8e77fba1bc77..c40787ab2337 100644 --- a/src/chrome/content/rules/WiredMinds.xml +++ b/src/chrome/content/rules/WiredMinds.xml @@ -1,4 +1,9 @@ + + + + - - - - \ No newline at end of file + + diff --git a/src/chrome/content/rules/WiredSafety.org.xml b/src/chrome/content/rules/WiredSafety.org.xml index 26173470cb2d..19a8f1cb6eb0 100644 --- a/src/chrome/content/rules/WiredSafety.org.xml +++ b/src/chrome/content/rules/WiredSafety.org.xml @@ -10,7 +10,7 @@ Fetch error: http://www.wiredsafety.org/ => https://www.wiredsafety.org/: Too ma - www.wiredsafety.org --> - + diff --git a/src/chrome/content/rules/Wiredjs.com.xml b/src/chrome/content/rules/Wiredjs.com.xml new file mode 100644 index 000000000000..628887ece194 --- /dev/null +++ b/src/chrome/content/rules/Wiredjs.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/WirelessLeiden.nl.xml b/src/chrome/content/rules/WirelessLeiden.nl.xml new file mode 100644 index 000000000000..76ff9336049f --- /dev/null +++ b/src/chrome/content/rules/WirelessLeiden.nl.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Wireless_Leiden.nl-cacert.xml b/src/chrome/content/rules/Wireless_Leiden.nl-cacert.xml deleted file mode 100644 index 363c339f0c22..000000000000 --- a/src/chrome/content/rules/Wireless_Leiden.nl-cacert.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Wireless_Leiden.nl.xml b/src/chrome/content/rules/Wireless_Leiden.nl.xml deleted file mode 100644 index 72651140d416..000000000000 --- a/src/chrome/content/rules/Wireless_Leiden.nl.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Wirral.gov.uk-falsemixed.xml b/src/chrome/content/rules/Wirral.gov.uk-falsemixed.xml index 458a5c7c7ba4..eae3cd90d304 100644 --- a/src/chrome/content/rules/Wirral.gov.uk-falsemixed.xml +++ b/src/chrome/content/rules/Wirral.gov.uk-falsemixed.xml @@ -7,14 +7,14 @@ Fetch error: http://democracy.wirral.gov.uk/ => https://democracy.wirral.gov.uk/ For rules not causing false/broken MCB, see Wirral.gov.uk.xml. --> - + - + - + - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Wishlist_Granted.com.xml b/src/chrome/content/rules/Wishlist_Granted.com.xml index 332ab71452a8..5c06e1861591 100644 --- a/src/chrome/content/rules/Wishlist_Granted.com.xml +++ b/src/chrome/content/rules/Wishlist_Granted.com.xml @@ -10,7 +10,7 @@ Fetch error: http://www.wishlistgranted.com/ => https://wishlistgranted.com/: (6 www: cert only matches ^wishlistgranted.com --> - + diff --git a/src/chrome/content/rules/Wishpot.com.xml b/src/chrome/content/rules/Wishpot.com.xml index cd16575ac40a..75b0ce87803f 100644 --- a/src/chrome/content/rules/Wishpot.com.xml +++ b/src/chrome/content/rules/Wishpot.com.xml @@ -11,10 +11,12 @@ Fetch error: http://wishpot.com/ => https://www.wishpot.com/: (28, 'Operation ti ^: 404 --> - + - + + + - + diff --git a/src/chrome/content/rules/Wit.ai.xml b/src/chrome/content/rules/Wit.ai.xml deleted file mode 100644 index 9fe44853bff9..000000000000 --- a/src/chrome/content/rules/Wit.ai.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/WithSIX.xml b/src/chrome/content/rules/WithSIX.xml deleted file mode 100644 index 870fd7bf2f9f..000000000000 --- a/src/chrome/content/rules/WithSIX.xml +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/With_Google.com.xml b/src/chrome/content/rules/With_Google.com.xml index a53c9e3d5552..1694418723bd 100644 --- a/src/chrome/content/rules/With_Google.com.xml +++ b/src/chrome/content/rules/With_Google.com.xml @@ -1,22 +1,22 @@ + - - - - + + - diff --git a/src/chrome/content/rules/Witness.org.xml b/src/chrome/content/rules/Witness.org.xml index 1224f9dbb834..2517b6edc415 100644 --- a/src/chrome/content/rules/Witness.org.xml +++ b/src/chrome/content/rules/Witness.org.xml @@ -19,7 +19,7 @@ - + + - + + diff --git a/src/chrome/content/rules/Wiz.cn.xml b/src/chrome/content/rules/Wiz.cn.xml index f14f38f62720..981569b041c1 100644 --- a/src/chrome/content/rules/Wiz.cn.xml +++ b/src/chrome/content/rules/Wiz.cn.xml @@ -1,28 +1,22 @@ - + + + @@ -30,9 +24,15 @@ + + + + + + diff --git a/src/chrome/content/rules/Wizard-Internet-Services.xml b/src/chrome/content/rules/Wizard-Internet-Services.xml index bbe7d5961e3f..ee229eb963b3 100644 --- a/src/chrome/content/rules/Wizard-Internet-Services.xml +++ b/src/chrome/content/rules/Wizard-Internet-Services.xml @@ -1,26 +1,20 @@ - - - - - - - + + + diff --git a/src/chrome/content/rules/Wizards.com-problematic.xml b/src/chrome/content/rules/Wizards.com-problematic.xml new file mode 100644 index 000000000000..7cb38da2fa7d --- /dev/null +++ b/src/chrome/content/rules/Wizards.com-problematic.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Wizards.com.xml b/src/chrome/content/rules/Wizards.com.xml index ae2bcadfd8e8..29733628825f 100644 --- a/src/chrome/content/rules/Wizards.com.xml +++ b/src/chrome/content/rules/Wizards.com.xml @@ -1,4 +1,6 @@ - - - - + @@ -32,9 +32,9 @@ - + diff --git a/src/chrome/content/rules/Wizbang.xml b/src/chrome/content/rules/Wizbang.xml index 6cc3477c82ec..f5c9eeea5aee 100644 --- a/src/chrome/content/rules/Wizbang.xml +++ b/src/chrome/content/rules/Wizbang.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Wizbang_Pop.xml b/src/chrome/content/rules/Wizbang_Pop.xml deleted file mode 100644 index 0a7d595cba89..000000000000 --- a/src/chrome/content/rules/Wizbang_Pop.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Wizchan.org.xml b/src/chrome/content/rules/Wizchan.org.xml new file mode 100644 index 000000000000..831451848dd7 --- /dev/null +++ b/src/chrome/content/rules/Wizchan.org.xml @@ -0,0 +1,9 @@ + + + + + + + + diff --git a/src/chrome/content/rules/WoSign.cn.xml b/src/chrome/content/rules/WoSign.cn.xml index d186db166cef..fa10cc4ae1af 100644 --- a/src/chrome/content/rules/WoSign.cn.xml +++ b/src/chrome/content/rules/WoSign.cn.xml @@ -7,7 +7,7 @@ Fetch error: http://www.wosign.cn/ => https://www.wosign.cn/: (51, "SSL: no alte For other WoSign coverage, see WoSign.com.xml. --> - + diff --git a/src/chrome/content/rules/WoSign.com.xml b/src/chrome/content/rules/WoSign.com.xml index cb8265b3b465..d743b488279f 100644 --- a/src/chrome/content/rules/WoSign.com.xml +++ b/src/chrome/content/rules/WoSign.com.xml @@ -19,7 +19,7 @@ Fetch error: http://support.wosign.com/ => https://support.wosign.com/: (6, 'Cou ² Invalid certificate ⁴ 404 --> - + diff --git a/src/chrome/content/rules/WoWInterface.xml b/src/chrome/content/rules/WoWInterface.xml index e7b6dfd0eb4c..7cb212e68d81 100644 --- a/src/chrome/content/rules/WoWInterface.xml +++ b/src/chrome/content/rules/WoWInterface.xml @@ -4,7 +4,7 @@ - + diff --git a/src/chrome/content/rules/WolfeBransonZipline.com.xml b/src/chrome/content/rules/WolfeBransonZipline.com.xml new file mode 100644 index 000000000000..36cf83c5eefd --- /dev/null +++ b/src/chrome/content/rules/WolfeBransonZipline.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Wolfire-Games.xml b/src/chrome/content/rules/Wolfire-Games.xml index 8e0c333b35b7..4b59670a2485 100644 --- a/src/chrome/content/rules/Wolfire-Games.xml +++ b/src/chrome/content/rules/Wolfire-Games.xml @@ -15,7 +15,7 @@ Fetch error: http://discourse.wolfire.com/ => https://discourse.wolfire.com/: (7 - legacy.wolfire.com (self-signed) - wiki.wolfire.com (self-signed) --> - + diff --git a/src/chrome/content/rules/Wolfram.com.xml b/src/chrome/content/rules/Wolfram.com.xml index 87a0c214ba8e..a58cf764f810 100644 --- a/src/chrome/content/rules/Wolfram.com.xml +++ b/src/chrome/content/rules/Wolfram.com.xml @@ -1,32 +1,42 @@ - + - - + + + + + + + + + - - - - - - - + diff --git a/src/chrome/content/rules/WolframAlpha.com.xml b/src/chrome/content/rules/WolframAlpha.com.xml new file mode 100644 index 000000000000..811835fab63f --- /dev/null +++ b/src/chrome/content/rules/WolframAlpha.com.xml @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Wolfram_Alpha.xml b/src/chrome/content/rules/Wolfram_Alpha.xml deleted file mode 100644 index 8ad162f43917..000000000000 --- a/src/chrome/content/rules/Wolfram_Alpha.xml +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Wolfram_CDN.com.xml b/src/chrome/content/rules/Wolfram_CDN.com.xml index c4958241ba14..5267c0720bd9 100644 --- a/src/chrome/content/rules/Wolfram_CDN.com.xml +++ b/src/chrome/content/rules/Wolfram_CDN.com.xml @@ -1,12 +1,19 @@ + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Wolframcloud.com.xml b/src/chrome/content/rules/Wolframcloud.com.xml index 44b307cce4ca..8c7dbba49567 100644 --- a/src/chrome/content/rules/Wolframcloud.com.xml +++ b/src/chrome/content/rules/Wolframcloud.com.xml @@ -1,8 +1,32 @@ + - - - - - + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Wolframscience.com.xml b/src/chrome/content/rules/Wolframscience.com.xml index 5f8423ae49ff..3d42c07070cc 100644 --- a/src/chrome/content/rules/Wolframscience.com.xml +++ b/src/chrome/content/rules/Wolframscience.com.xml @@ -1,3 +1,7 @@ + diff --git a/src/chrome/content/rules/Wolfson-Microelectronics.xml b/src/chrome/content/rules/Wolfson-Microelectronics.xml index 32c1986971ae..debce826f0e7 100644 --- a/src/chrome/content/rules/Wolfson-Microelectronics.xml +++ b/src/chrome/content/rules/Wolfson-Microelectronics.xml @@ -13,7 +13,7 @@ - + diff --git a/src/chrome/content/rules/Wolrdssl.net.xml b/src/chrome/content/rules/Wolrdssl.net.xml index 4216075deccc..13417e674cb6 100644 --- a/src/chrome/content/rules/Wolrdssl.net.xml +++ b/src/chrome/content/rules/Wolrdssl.net.xml @@ -22,7 +22,7 @@ --> - + - @@ -126,7 +125,7 @@ - + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Women_on_Web.xml b/src/chrome/content/rules/Women_on_Web.xml index 4dd6770532c7..2f346ea5a225 100644 --- a/src/chrome/content/rules/Women_on_Web.xml +++ b/src/chrome/content/rules/Women_on_Web.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://womenonweb.org/ => https://womenonweb.org/: (51, "SSL: no alternative certificate subject name matches target host name 'womenonweb.org'") --> - + @@ -15,4 +15,4 @@ Fetch error: http://womenonweb.org/ => https://womenonweb.org/: (51, "SSL: no al - \ No newline at end of file + diff --git a/src/chrome/content/rules/Womens-Aid.xml b/src/chrome/content/rules/Womens-Aid.xml index eba63ae6a6c7..fb68654142b3 100644 --- a/src/chrome/content/rules/Womens-Aid.xml +++ b/src/chrome/content/rules/Womens-Aid.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://womensaid.ie/ => https://womensaid.ie/: (51, "SSL: no alternative certificate subject name matches target host name 'womensaid.ie'") --> - + diff --git a/src/chrome/content/rules/Womens_Health_Specialists.xml b/src/chrome/content/rules/Womens_Health_Specialists.xml index c70d57092b43..7d44a6de043a 100644 --- a/src/chrome/content/rules/Womens_Health_Specialists.xml +++ b/src/chrome/content/rules/Womens_Health_Specialists.xml @@ -16,4 +16,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Womenshealth.de.xml b/src/chrome/content/rules/Womenshealth.de.xml index 63e85ebe10f4..5a457b7d803d 100644 --- a/src/chrome/content/rules/Womenshealth.de.xml +++ b/src/chrome/content/rules/Womenshealth.de.xml @@ -4,9 +4,8 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.womenshealth.de/ => https://www.womenshealth.de/: (51, "SSL: no alternative certificate subject name matches target host name 'www.womenshealth.de'") --> - + - - + diff --git a/src/chrome/content/rules/Wonderlandmovies.xml b/src/chrome/content/rules/Wonderlandmovies.xml index 6017033c3c09..bf168c1b9c2c 100644 --- a/src/chrome/content/rules/Wonderlandmovies.xml +++ b/src/chrome/content/rules/Wonderlandmovies.xml @@ -5,7 +5,7 @@ - + diff --git a/src/chrome/content/rules/Wonga.com.xml b/src/chrome/content/rules/Wonga.com.xml index 5293e6741889..77a2e1779bd1 100644 --- a/src/chrome/content/rules/Wonga.com.xml +++ b/src/chrome/content/rules/Wonga.com.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/WooThemes.xml b/src/chrome/content/rules/WooThemes.xml index b6735d58440c..17b4063a3008 100644 --- a/src/chrome/content/rules/WooThemes.xml +++ b/src/chrome/content/rules/WooThemes.xml @@ -22,7 +22,7 @@ - + - - + diff --git a/src/chrome/content/rules/Wood_Green_Shop.org.uk.xml b/src/chrome/content/rules/Wood_Green_Shop.org.uk.xml deleted file mode 100644 index d2f37ee2ad2e..000000000000 --- a/src/chrome/content/rules/Wood_Green_Shop.org.uk.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Wood_Tree_Swings.xml b/src/chrome/content/rules/Wood_Tree_Swings.xml index 54720e81b02a..1fe752462343 100644 --- a/src/chrome/content/rules/Wood_Tree_Swings.xml +++ b/src/chrome/content/rules/Wood_Tree_Swings.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Wooga.xml b/src/chrome/content/rules/Wooga.xml index 1fc90ecd9ff0..af8d78e7c812 100644 --- a/src/chrome/content/rules/Wooga.xml +++ b/src/chrome/content/rules/Wooga.xml @@ -8,7 +8,8 @@ --> - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Woolworths.com.au.xml b/src/chrome/content/rules/Woolworths.com.au.xml new file mode 100644 index 000000000000..58f12ed6b67f --- /dev/null +++ b/src/chrome/content/rules/Woolworths.com.au.xml @@ -0,0 +1,207 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/WoolworthsMobile.com.au.xml b/src/chrome/content/rules/WoolworthsMobile.com.au.xml new file mode 100644 index 000000000000..14dae60497ee --- /dev/null +++ b/src/chrome/content/rules/WoolworthsMobile.com.au.xml @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/WoolworthsPay.com.au.xml b/src/chrome/content/rules/WoolworthsPay.com.au.xml new file mode 100644 index 000000000000..b78661ad7394 --- /dev/null +++ b/src/chrome/content/rules/WoolworthsPay.com.au.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/WoolworthsPetrol.com.au.xml b/src/chrome/content/rules/WoolworthsPetrol.com.au.xml new file mode 100644 index 000000000000..5ac9ca8ac67b --- /dev/null +++ b/src/chrome/content/rules/WoolworthsPetrol.com.au.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/WoolworthsRewards.com.au.xml b/src/chrome/content/rules/WoolworthsRewards.com.au.xml new file mode 100644 index 000000000000..41ee08a583c1 --- /dev/null +++ b/src/chrome/content/rules/WoolworthsRewards.com.au.xml @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Woot.com.xml b/src/chrome/content/rules/Woot.com.xml new file mode 100644 index 000000000000..12bafacfedd7 --- /dev/null +++ b/src/chrome/content/rules/Woot.com.xml @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Woot.xml b/src/chrome/content/rules/Woot.xml deleted file mode 100644 index d4cb43210fd7..000000000000 --- a/src/chrome/content/rules/Woot.xml +++ /dev/null @@ -1,70 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Wooting.nl.xml b/src/chrome/content/rules/Wooting.nl.xml new file mode 100644 index 000000000000..868353fbe018 --- /dev/null +++ b/src/chrome/content/rules/Wooting.nl.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Worcester-Polytechnic-Institute.xml b/src/chrome/content/rules/Worcester-Polytechnic-Institute.xml index 7415ce97271e..ecfb3d94c8d2 100644 --- a/src/chrome/content/rules/Worcester-Polytechnic-Institute.xml +++ b/src/chrome/content/rules/Worcester-Polytechnic-Institute.xml @@ -12,7 +12,7 @@ - + diff --git a/src/chrome/content/rules/WordPress-blogs.xml b/src/chrome/content/rules/WordPress-blogs.xml index 661afb6abd84..2d6529b342cd 100644 --- a/src/chrome/content/rules/WordPress-blogs.xml +++ b/src/chrome/content/rules/WordPress-blogs.xml @@ -3,10 +3,8 @@ --> - - diff --git a/src/chrome/content/rules/WordPress.tv.xml b/src/chrome/content/rules/WordPress.tv.xml index 06305b1c4b3c..7af416568d07 100644 --- a/src/chrome/content/rules/WordPress.tv.xml +++ b/src/chrome/content/rules/WordPress.tv.xml @@ -1,6 +1,6 @@ diff --git a/src/chrome/content/rules/WordPress.xml b/src/chrome/content/rules/WordPress.xml index a253d795a154..137f3c553130 100644 --- a/src/chrome/content/rules/WordPress.xml +++ b/src/chrome/content/rules/WordPress.xml @@ -28,7 +28,7 @@ - + diff --git a/src/chrome/content/rules/WordRider.net.xml b/src/chrome/content/rules/WordRider.net.xml new file mode 100644 index 000000000000..9823fefc8a3c --- /dev/null +++ b/src/chrome/content/rules/WordRider.net.xml @@ -0,0 +1,13 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Word_Pro.xml b/src/chrome/content/rules/Word_Pro.xml index f52c9533da63..8da88e2ff618 100644 --- a/src/chrome/content/rules/Word_Pro.xml +++ b/src/chrome/content/rules/Word_Pro.xml @@ -13,7 +13,7 @@ - + @@ -22,4 +22,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Wordentropy.org.xml b/src/chrome/content/rules/Wordentropy.org.xml index e45c50a15801..66eeb95ab6c1 100644 --- a/src/chrome/content/rules/Wordentropy.org.xml +++ b/src/chrome/content/rules/Wordentropy.org.xml @@ -5,10 +5,10 @@ Fetch error: http://wordentropy.org/ => https://wordentropy.org/: (28, 'Operatio Fetch error: http://www.wordentropy.org/ => https://www.wordentropy.org/: (28, 'Operation timed out after 30001 milliseconds with 0 bytes received') --> - + - + diff --git a/src/chrome/content/rules/Wordfence.com.xml b/src/chrome/content/rules/Wordfence.com.xml index 0a6cb5402c9a..e139d877b24f 100644 --- a/src/chrome/content/rules/Wordfence.com.xml +++ b/src/chrome/content/rules/Wordfence.com.xml @@ -17,7 +17,7 @@ --> - + - - + + diff --git a/src/chrome/content/rules/Work4_Labs.xml b/src/chrome/content/rules/Work4_Labs.xml index 50cfedc275a6..10ae25d96826 100644 --- a/src/chrome/content/rules/Work4_Labs.xml +++ b/src/chrome/content/rules/Work4_Labs.xml @@ -10,4 +10,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Workaround.org.xml b/src/chrome/content/rules/Workaround.org.xml index 6f17f4c7e53e..76bac1759d70 100644 --- a/src/chrome/content/rules/Workaround.org.xml +++ b/src/chrome/content/rules/Workaround.org.xml @@ -5,7 +5,7 @@ Fetch error: http://fry.workaround.org/ => https://fry.workaround.org/: (51, "SS Fetch error: http://www.workaround.org/ => https://www.workaround.org/: (51, "SSL: no alternative certificate subject name matches target host name 'www.workaround.org'") --> - + diff --git a/src/chrome/content/rules/Workplace-Giving.xml b/src/chrome/content/rules/Workplace-Giving.xml deleted file mode 100644 index 132ec222e249..000000000000 --- a/src/chrome/content/rules/Workplace-Giving.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/WorkplaceGenderEqualityAgency.xml b/src/chrome/content/rules/WorkplaceGenderEqualityAgency.xml index a2cf27f5f833..9eb0cf95b438 100644 --- a/src/chrome/content/rules/WorkplaceGenderEqualityAgency.xml +++ b/src/chrome/content/rules/WorkplaceGenderEqualityAgency.xml @@ -1,7 +1,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Works_That_Work.com.xml b/src/chrome/content/rules/Works_That_Work.com.xml index e2d73103a3c7..fec7e38bb0bd 100644 --- a/src/chrome/content/rules/Works_That_Work.com.xml +++ b/src/chrome/content/rules/Works_That_Work.com.xml @@ -21,7 +21,7 @@ --> - + + + + + + diff --git a/src/chrome/content/rules/World-Nuclear-News.org.xml b/src/chrome/content/rules/World-Nuclear-News.org.xml new file mode 100644 index 000000000000..263a0a96b959 --- /dev/null +++ b/src/chrome/content/rules/World-Nuclear-News.org.xml @@ -0,0 +1,13 @@ + + + + + + + diff --git a/src/chrome/content/rules/World-of-Warships.xml b/src/chrome/content/rules/World-of-Warships.xml new file mode 100644 index 000000000000..f0601fbcefac --- /dev/null +++ b/src/chrome/content/rules/World-of-Warships.xml @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/WorldCat.xml b/src/chrome/content/rules/WorldCat.xml index 818f94a2764c..93aec856babb 100644 --- a/src/chrome/content/rules/WorldCat.xml +++ b/src/chrome/content/rules/WorldCat.xml @@ -203,7 +203,7 @@ - + diff --git a/src/chrome/content/rules/WorldMarkByWyndham.com.xml b/src/chrome/content/rules/WorldMarkByWyndham.com.xml new file mode 100644 index 000000000000..806456f090f3 --- /dev/null +++ b/src/chrome/content/rules/WorldMarkByWyndham.com.xml @@ -0,0 +1,17 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/WorldMate.com.xml b/src/chrome/content/rules/WorldMate.com.xml index b9b498e6ef18..56e4347174e2 100644 --- a/src/chrome/content/rules/WorldMate.com.xml +++ b/src/chrome/content/rules/WorldMate.com.xml @@ -5,7 +5,8 @@ - + + + + + + + + diff --git a/src/chrome/content/rules/WorldOfPlayers.ru.xml b/src/chrome/content/rules/WorldOfPlayers.ru.xml new file mode 100644 index 000000000000..61877374142a --- /dev/null +++ b/src/chrome/content/rules/WorldOfPlayers.ru.xml @@ -0,0 +1,23 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/WorldRemit.com.xml b/src/chrome/content/rules/WorldRemit.com.xml index 908fd3db38ee..648b0d82ef6c 100644 --- a/src/chrome/content/rules/WorldRemit.com.xml +++ b/src/chrome/content/rules/WorldRemit.com.xml @@ -5,7 +5,8 @@ - + + - + @@ -15,4 +15,4 @@ Fetch error: http://worldfoodprize.org/ => https://worldfoodprize.org/: (51, "SS - \ No newline at end of file + diff --git a/src/chrome/content/rules/World_Landscape_Architecture.xml b/src/chrome/content/rules/World_Landscape_Architecture.xml index 2cc08e0991c1..8fdcf91679d4 100644 --- a/src/chrome/content/rules/World_Landscape_Architecture.xml +++ b/src/chrome/content/rules/World_Landscape_Architecture.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/World_Precision_Instruments.xml b/src/chrome/content/rules/World_Precision_Instruments.xml index 70ea0f62bf24..35b37ed707df 100644 --- a/src/chrome/content/rules/World_Precision_Instruments.xml +++ b/src/chrome/content/rules/World_Precision_Instruments.xml @@ -15,7 +15,6 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/World_Television.xml b/src/chrome/content/rules/World_Television.xml index 7c959967b052..b8af9e5787fb 100644 --- a/src/chrome/content/rules/World_Television.xml +++ b/src/chrome/content/rules/World_Television.xml @@ -14,13 +14,13 @@ --> - + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/World_e-ID_Congress.xml b/src/chrome/content/rules/World_e-ID_Congress.xml index 0fb53fefc971..80bbd4c09d76 100644 --- a/src/chrome/content/rules/World_e-ID_Congress.xml +++ b/src/chrome/content/rules/World_e-ID_Congress.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/World_of_Warships.xml b/src/chrome/content/rules/World_of_Warships.xml deleted file mode 100644 index b5f8807c8811..000000000000 --- a/src/chrome/content/rules/World_of_Warships.xml +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Worldhealth.net.xml b/src/chrome/content/rules/Worldhealth.net.xml index f2540df06170..95271eb92d43 100644 --- a/src/chrome/content/rules/Worldhealth.net.xml +++ b/src/chrome/content/rules/Worldhealth.net.xml @@ -12,7 +12,7 @@ - + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Worldtimebuddy.com.xml b/src/chrome/content/rules/Worldtimebuddy.com.xml new file mode 100644 index 000000000000..98ef8951f272 --- /dev/null +++ b/src/chrome/content/rules/Worldtimebuddy.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/WorstPills.org.xml b/src/chrome/content/rules/WorstPills.org.xml index e74c7ec9e2c1..6850e13f1d54 100644 --- a/src/chrome/content/rules/WorstPills.org.xml +++ b/src/chrome/content/rules/WorstPills.org.xml @@ -3,4 +3,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/WpX.ne.jp.xml b/src/chrome/content/rules/WpX.ne.jp.xml index 9547dd20d914..a3ede6aa3004 100644 --- a/src/chrome/content/rules/WpX.ne.jp.xml +++ b/src/chrome/content/rules/WpX.ne.jp.xml @@ -8,7 +8,7 @@ - + - + + + + - - - - - - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Wpveda.com.xml b/src/chrome/content/rules/Wpveda.com.xml index 215d6231e432..bd176cd4d733 100644 --- a/src/chrome/content/rules/Wpveda.com.xml +++ b/src/chrome/content/rules/Wpveda.com.xml @@ -8,7 +8,7 @@ Fetch error: http://www.wpveda.com/ => https://www.wpveda.com/: (6, 'Could not r - .wpveda.com --> - + diff --git a/src/chrome/content/rules/Wrapadviser.co.uk.xml b/src/chrome/content/rules/Wrapadviser.co.uk.xml index cfdadebebcd8..fc56eab730e0 100644 --- a/src/chrome/content/rules/Wrapadviser.co.uk.xml +++ b/src/chrome/content/rules/Wrapadviser.co.uk.xml @@ -3,10 +3,10 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Wrating.com.xml b/src/chrome/content/rules/Wrating.com.xml index 7fa92fbc1ce4..0365c2fdf96e 100644 --- a/src/chrome/content/rules/Wrating.com.xml +++ b/src/chrome/content/rules/Wrating.com.xml @@ -18,7 +18,7 @@ Fetch error: http://sohu.wrating.com/ => https://dsl.wrating.com/: (60, 'SSL cer - .wrating.com --> - + diff --git a/src/chrome/content/rules/WriteTheDocs.org.xml b/src/chrome/content/rules/WriteTheDocs.org.xml new file mode 100644 index 000000000000..aeed976fcde8 --- /dev/null +++ b/src/chrome/content/rules/WriteTheDocs.org.xml @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/WritingStreak.io.xml b/src/chrome/content/rules/WritingStreak.io.xml new file mode 100644 index 000000000000..8e173e6a5d0f --- /dev/null +++ b/src/chrome/content/rules/WritingStreak.io.xml @@ -0,0 +1,10 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Wrzuta.pl.xml b/src/chrome/content/rules/Wrzuta.pl.xml index 277b38b08e5f..96ac7035f979 100644 --- a/src/chrome/content/rules/Wrzuta.pl.xml +++ b/src/chrome/content/rules/Wrzuta.pl.xml @@ -15,10 +15,11 @@ Fetch error: http://ssl.wrzuta.pl/static/opensearch/search.xml => https://ssl.wr - (www.) (mismatched, CN: ssl.wrzuta.pl) --> - + - + + diff --git a/src/chrome/content/rules/Wservices.ch.xml b/src/chrome/content/rules/Wservices.ch.xml index 4f6f0dfa1787..7fb60462a3a0 100644 --- a/src/chrome/content/rules/Wservices.ch.xml +++ b/src/chrome/content/rules/Wservices.ch.xml @@ -18,4 +18,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Wtpx-Telekom.com.xml b/src/chrome/content/rules/Wtpx-Telekom.com.xml deleted file mode 100644 index 9aa17bc9d0b5..000000000000 --- a/src/chrome/content/rules/Wtpx-Telekom.com.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Wuala.xml b/src/chrome/content/rules/Wuala.xml index cdbdac5c021e..949927ce36e9 100644 --- a/src/chrome/content/rules/Wuala.xml +++ b/src/chrome/content/rules/Wuala.xml @@ -1,14 +1,6 @@ - - - + + + - - - - - - - - + diff --git a/src/chrome/content/rules/Wufoo.xml b/src/chrome/content/rules/Wufoo.xml index 93943c17a66d..16f6d08d2239 100644 --- a/src/chrome/content/rules/Wufoo.xml +++ b/src/chrome/content/rules/Wufoo.xml @@ -38,7 +38,7 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Wurfljs.com.xml b/src/chrome/content/rules/Wurfljs.com.xml deleted file mode 100644 index 0e95a322e83f..000000000000 --- a/src/chrome/content/rules/Wurfljs.com.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Wxug.com.xml b/src/chrome/content/rules/Wxug.com.xml new file mode 100644 index 000000000000..2ac3ec5c179f --- /dev/null +++ b/src/chrome/content/rules/Wxug.com.xml @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Wykop.pl.xml b/src/chrome/content/rules/Wykop.pl.xml index 90cfd38200ef..5c498f422567 100644 --- a/src/chrome/content/rules/Wykop.pl.xml +++ b/src/chrome/content/rules/Wykop.pl.xml @@ -21,4 +21,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Wyndham-mismatches.xml b/src/chrome/content/rules/Wyndham-mismatches.xml deleted file mode 100644 index 33146cd4f04e..000000000000 --- a/src/chrome/content/rules/Wyndham-mismatches.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Wyndham.xml b/src/chrome/content/rules/Wyndham.xml deleted file mode 100644 index 9a6850a2e973..000000000000 --- a/src/chrome/content/rules/Wyndham.xml +++ /dev/null @@ -1,220 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/WyndhamHotels.com.xml b/src/chrome/content/rules/WyndhamHotels.com.xml new file mode 100644 index 000000000000..581ae3a540de --- /dev/null +++ b/src/chrome/content/rules/WyndhamHotels.com.xml @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/WyndhamJobs.com.xml b/src/chrome/content/rules/WyndhamJobs.com.xml new file mode 100644 index 000000000000..f0b40a980284 --- /dev/null +++ b/src/chrome/content/rules/WyndhamJobs.com.xml @@ -0,0 +1,16 @@ + + + + + + + + diff --git a/src/chrome/content/rules/WyndhamVacationRentals.com.xml b/src/chrome/content/rules/WyndhamVacationRentals.com.xml new file mode 100644 index 000000000000..dc868dc3ccba --- /dev/null +++ b/src/chrome/content/rules/WyndhamVacationRentals.com.xml @@ -0,0 +1,29 @@ + + + + + + + diff --git a/src/chrome/content/rules/Wyndhamvrap.com.xml b/src/chrome/content/rules/Wyndhamvrap.com.xml new file mode 100644 index 000000000000..08e00fb05ba1 --- /dev/null +++ b/src/chrome/content/rules/Wyndhamvrap.com.xml @@ -0,0 +1,42 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/WyzerMe.xml b/src/chrome/content/rules/WyzerMe.xml index ccb81ad2e532..47cb0cebb889 100644 --- a/src/chrome/content/rules/WyzerMe.xml +++ b/src/chrome/content/rules/WyzerMe.xml @@ -5,7 +5,7 @@ Fetch error: http://wyzerme.com/ => https://wyzerme.com/: (51, "SSL: no alternat Fetch error: http://www.wyzerme.com/ => https://www.wyzerme.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.wyzerme.com'") --> - + diff --git a/src/chrome/content/rules/X-Cart.com.xml b/src/chrome/content/rules/X-Cart.com.xml index 07bc1d97a93a..d19732b610ab 100644 --- a/src/chrome/content/rules/X-Cart.com.xml +++ b/src/chrome/content/rules/X-Cart.com.xml @@ -58,8 +58,8 @@ - - + + - + https://x-info.org/: (28, 'Connection timed out after 20001 milliseconds') -Fetch error: http://www.x-info.org/ => https://www.x-info.org/: (28, 'Connection timed out after 20001 milliseconds') - - Mixed content: - - - Web bugs, from: - - - www.cy-pr.com * - - i.h-t.co * - - * Unsecurable - ---> - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/X-lift.jp.xml b/src/chrome/content/rules/X-lift.jp.xml deleted file mode 100644 index 332fe947a1be..000000000000 --- a/src/chrome/content/rules/X-lift.jp.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/X.Org.xml b/src/chrome/content/rules/X.Org.xml new file mode 100644 index 000000000000..b3991fcb64c3 --- /dev/null +++ b/src/chrome/content/rules/X.Org.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/X10Hosting.xml b/src/chrome/content/rules/X10Hosting.xml index f714db8c2b5b..62d0a9df8022 100644 --- a/src/chrome/content/rules/X10Hosting.xml +++ b/src/chrome/content/rules/X10Hosting.xml @@ -14,7 +14,7 @@ - + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/X2Go.org.xml b/src/chrome/content/rules/X2Go.org.xml index 9b35febd1edc..caa3ea4bf289 100644 --- a/src/chrome/content/rules/X2Go.org.xml +++ b/src/chrome/content/rules/X2Go.org.xml @@ -15,7 +15,7 @@ ² Mismatched --> - + @@ -36,7 +36,7 @@ - + + + + + + + diff --git a/src/chrome/content/rules/XAGYL.us.xml b/src/chrome/content/rules/XAGYL.us.xml index 6c299236fb93..898d938b835b 100644 --- a/src/chrome/content/rules/XAGYL.us.xml +++ b/src/chrome/content/rules/XAGYL.us.xml @@ -7,7 +7,7 @@ Fetch error: http://www.xagyl.us/ => https://www.xagyl.us/: (60, 'SSL certificat For other XAGYL Communications coverage, see XAGYL.com.xml. --> - + diff --git a/src/chrome/content/rules/XBRL.org.xml b/src/chrome/content/rules/XBRL.org.xml new file mode 100644 index 000000000000..758b17bf4a18 --- /dev/null +++ b/src/chrome/content/rules/XBRL.org.xml @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/XCAT.nl.xml b/src/chrome/content/rules/XCAT.nl.xml index aea2f2da414e..d9a7eca7e422 100644 --- a/src/chrome/content/rules/XCAT.nl.xml +++ b/src/chrome/content/rules/XCAT.nl.xml @@ -1,7 +1,6 @@ - + https://xchatdata.net/: (51, "SSL: no alte Fetch error: http://www.xchatdata.net/ => https://www.xchatdata.net/: (51, "SSL: no alternative certificate subject name matches target host name 'www.xchatdata.net'") --> - + diff --git a/src/chrome/content/rules/XDA-Developers.com.xml b/src/chrome/content/rules/XDA-Developers.com.xml index 6b9025b8f96f..ec1b7659bc19 100644 --- a/src/chrome/content/rules/XDA-Developers.com.xml +++ b/src/chrome/content/rules/XDA-Developers.com.xml @@ -9,6 +9,7 @@ Invalid certificate: ns2.xda-developers.com sites.xda-developers.com + media.xda-developers.com Non-2xx HTTP code: http://api.xda-developers.com/ (200) => https://api.xda-developers.com/ (404) @@ -42,8 +43,6 @@ - - diff --git a/src/chrome/content/rules/XEU.com.xml b/src/chrome/content/rules/XEU.com.xml index 9d8e9c7b98d6..24f244e62b1a 100644 --- a/src/chrome/content/rules/XEU.com.xml +++ b/src/chrome/content/rules/XEU.com.xml @@ -8,7 +8,7 @@ Fetch error: http://shop.xeu.com/ => https://shop.xeu.com/: (51, "SSL: no altern - www.shop.xeu.com --> - + diff --git a/src/chrome/content/rules/XFCE.org.xml b/src/chrome/content/rules/XFCE.org.xml index c4c5d00fc6c1..f1796233799c 100644 --- a/src/chrome/content/rules/XFCE.org.xml +++ b/src/chrome/content/rules/XFCE.org.xml @@ -1,54 +1,55 @@ - + + + + + + + + + + + diff --git a/src/chrome/content/rules/XHamster.com.xml b/src/chrome/content/rules/XHamster.com.xml index af2d100b3e5d..a2c5f91a7464 100644 --- a/src/chrome/content/rules/XHamster.com.xml +++ b/src/chrome/content/rules/XHamster.com.xml @@ -141,7 +141,7 @@ - + - + @@ -65,7 +65,7 @@ Fetch error: http://e19.xhamsterpremiumpass.com/ => https://e19.xhamsterpremiump - + https://discuss.xilo.net/: (51, "SSL: no alternative certificate subject name matches target host name 'discuss.xilo.net'") - ---> - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/XM-CDN.com.xml b/src/chrome/content/rules/XM-CDN.com.xml index 9a12a00194e2..e4756fde72d1 100644 --- a/src/chrome/content/rules/XM-CDN.com.xml +++ b/src/chrome/content/rules/XM-CDN.com.xml @@ -7,7 +7,7 @@ Fetch error: http://static.xm-cdn.com/ => https://static.xm-cdn.com/: (6, 'Could For other XEMarkets coverage, see XM.com.xml. --> - + diff --git a/src/chrome/content/rules/XM.com.xml b/src/chrome/content/rules/XM.com.xml index 159a927470c6..e76ea8b3b297 100644 --- a/src/chrome/content/rules/XM.com.xml +++ b/src/chrome/content/rules/XM.com.xml @@ -23,7 +23,7 @@ Fetch error: http://bo.xm.com/ => https://bo.xm.com/: (28, 'Connection timed out - .xm.com --> - + @@ -40,7 +40,7 @@ Fetch error: http://bo.xm.com/ => https://bo.xm.com/: (28, 'Connection timed out --> - + + + + + + + + diff --git a/src/chrome/content/rules/XML.com.xml b/src/chrome/content/rules/XML.com.xml new file mode 100644 index 000000000000..e49a11969dae --- /dev/null +++ b/src/chrome/content/rules/XML.com.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/XMLGold.eu.xml b/src/chrome/content/rules/XMLGold.eu.xml deleted file mode 100644 index 35d777604982..000000000000 --- a/src/chrome/content/rules/XMLGold.eu.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/XMLSiteMapGenerator.org.xml b/src/chrome/content/rules/XMLSiteMapGenerator.org.xml new file mode 100644 index 000000000000..4962dc61f11a --- /dev/null +++ b/src/chrome/content/rules/XMLSiteMapGenerator.org.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/XMPP.net.xml b/src/chrome/content/rules/XMPP.net.xml deleted file mode 100644 index 9c1b27881bb0..000000000000 --- a/src/chrome/content/rules/XMPP.net.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/XMission.com-problematic.xml b/src/chrome/content/rules/XMission.com-problematic.xml index 55f9cca7cf97..b57e6617430f 100644 --- a/src/chrome/content/rules/XMission.com-problematic.xml +++ b/src/chrome/content/rules/XMission.com-problematic.xml @@ -7,7 +7,7 @@ * see https://whatsmychaincert.com --> - + diff --git a/src/chrome/content/rules/XMission.xml b/src/chrome/content/rules/XMission.xml index 176a57e30284..e64056b8bfce 100644 --- a/src/chrome/content/rules/XMission.xml +++ b/src/chrome/content/rules/XMission.xml @@ -70,7 +70,7 @@ - + https://xpiconly.com/: (28, 'Operation time Fetch error: http://www.xpiconly.com/ => https://www.xpiconly.com/: (28, 'Operation timed out after 30002 milliseconds with 0 bytes received') --> - + @@ -13,7 +13,7 @@ Fetch error: http://www.xpiconly.com/ => https://www.xpiconly.com/: (28, 'Operat - + + @@ -20,7 +21,7 @@ - + https://xssposed.org/: (60, 'SSL certificat Fetch error: http://www.xssposed.org/ => https://www.xssposed.org/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/XVideos-cdn.com.xml b/src/chrome/content/rules/XVideos-cdn.com.xml new file mode 100644 index 000000000000..7d097f7ec662 --- /dev/null +++ b/src/chrome/content/rules/XVideos-cdn.com.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/XVideos.com.xml b/src/chrome/content/rules/XVideos.com.xml new file mode 100644 index 000000000000..c017cd01e472 --- /dev/null +++ b/src/chrome/content/rules/XVideos.com.xml @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/XVideosx.tv.xml b/src/chrome/content/rules/XVideosx.tv.xml deleted file mode 100644 index 80126c64f64f..000000000000 --- a/src/chrome/content/rules/XVideosx.tv.xml +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Xakep.ru.xml b/src/chrome/content/rules/Xakep.ru.xml index 0cf6e8009cbf..3fe3a8b24db7 100644 --- a/src/chrome/content/rules/Xakep.ru.xml +++ b/src/chrome/content/rules/Xakep.ru.xml @@ -6,7 +6,7 @@ Fetch error: http://forum.xakep.ru/ => https://forum.xakep.ru/: (60, 'SSL certif Fetch error: http://group.xakep.ru/ => https://group.xakep.ru/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/Xamarin.com.xml b/src/chrome/content/rules/Xamarin.com.xml index c04c47d648bf..0a18f4c02d53 100644 --- a/src/chrome/content/rules/Xamarin.com.xml +++ b/src/chrome/content/rules/Xamarin.com.xml @@ -32,7 +32,7 @@ Mixed content: - iframes, on: - + - planet from app.stitcher.com - planet from www.youtube.com ¹ @@ -119,7 +119,7 @@ - + diff --git a/src/chrome/content/rules/Xato.net.xml b/src/chrome/content/rules/Xato.net.xml index 22467da0d997..6894086d2673 100644 --- a/src/chrome/content/rules/Xato.net.xml +++ b/src/chrome/content/rules/Xato.net.xml @@ -19,7 +19,7 @@ - + https://xavisys.com/: (60, 'SSL certificate - xavisys.com --> - + @@ -27,7 +27,7 @@ Fetch error: http://xavisys.com/ => https://xavisys.com/: (60, 'SSL certificate --> - + - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Xbox.xml b/src/chrome/content/rules/Xbox.xml index 23edba8cbf28..a737015635bc 100644 --- a/src/chrome/content/rules/Xbox.xml +++ b/src/chrome/content/rules/Xbox.xml @@ -1,10 +1,4 @@ - - + - - - - - - - - - - - - - - - + @@ -145,16 +123,12 @@ Fetch error: http://service.xbox.com/ => https://service.xbox.com/: (28, 'Connec - - - - @@ -162,9 +136,6 @@ Fetch error: http://service.xbox.com/ => https://service.xbox.com/: (28, 'Connec - - diff --git a/src/chrome/content/rules/Xbox_Live.com.xml b/src/chrome/content/rules/Xbox_Live.com.xml index 3aaf0ca7da9f..1cf1ea9198b2 100644 --- a/src/chrome/content/rules/Xbox_Live.com.xml +++ b/src/chrome/content/rules/Xbox_Live.com.xml @@ -16,7 +16,7 @@ - avatar (→ avatar-ssl.xboxlive.com) - avatar-ssl - compass (→ compass-ssl.xboxlive.com) - - compass-ssl + - compass-ssl - piflc --> diff --git a/src/chrome/content/rules/Xchan.xml b/src/chrome/content/rules/Xchan.xml index 337f6004f679..ea2c4f92ae6f 100644 --- a/src/chrome/content/rules/Xchan.xml +++ b/src/chrome/content/rules/Xchan.xml @@ -4,11 +4,11 @@ Disabled by https-everywhere-checker because: Fetch error: http://old.xchan.pw/ => https://old.xchan.pw/: (6, 'Could not resolve host: old.xchan.pw') --> - - - - - - - + + + + + + + diff --git a/src/chrome/content/rules/Xdebug.org.xml b/src/chrome/content/rules/Xdebug.org.xml index 6fb502ace231..57f3903707a2 100644 --- a/src/chrome/content/rules/Xdebug.org.xml +++ b/src/chrome/content/rules/Xdebug.org.xml @@ -11,7 +11,7 @@ - + diff --git a/src/chrome/content/rules/Xdomain.ne.jp.xml b/src/chrome/content/rules/Xdomain.ne.jp.xml index 89c082f318e8..f97b792bb590 100644 --- a/src/chrome/content/rules/Xdomain.ne.jp.xml +++ b/src/chrome/content/rules/Xdomain.ne.jp.xml @@ -9,7 +9,7 @@ - + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Xen-Orchestra.com.xml b/src/chrome/content/rules/Xen-Orchestra.com.xml index 68548851a275..302e0af4acd5 100644 --- a/src/chrome/content/rules/Xen-Orchestra.com.xml +++ b/src/chrome/content/rules/Xen-Orchestra.com.xml @@ -6,7 +6,7 @@ - + https://lists.xenserver.org/: (60, 'SSL certificate problem: certificate has expired') For other Citrix coverage, see Citrix. @@ -9,6 +6,7 @@ Fetch error: http://lists.xenserver.org/ => https://lists.xenserver.org/: (60, ' Nonfunctional subdomains: - (www.)? ¹ + - wiki (mismatch) - hcl ² ¹ Plaintext reply @@ -20,7 +18,6 @@ Fetch error: http://lists.xenserver.org/ => https://lists.xenserver.org/: (60, ' - bugs - crowd - lists - - wiki Insecure cookies are set for these hosts: @@ -35,12 +32,11 @@ Fetch error: http://lists.xenserver.org/ => https://lists.xenserver.org/: (60, ' * Unsecurable <= plaintext reply --> - + - - - - - - - - - - - diff --git a/src/chrome/content/rules/Xeneris.net.xml b/src/chrome/content/rules/Xeneris.net.xml index 1f6588a16051..8970069131b2 100644 --- a/src/chrome/content/rules/Xeneris.net.xml +++ b/src/chrome/content/rules/Xeneris.net.xml @@ -26,7 +26,7 @@ Fetch error: http://mail.xeneris.net/ => https://mail.xeneris.net/: (60, 'SSL ce - kronix.xeneris.net:8443 --> - + diff --git a/src/chrome/content/rules/XenoNode.com.xml b/src/chrome/content/rules/XenoNode.com.xml new file mode 100644 index 000000000000..6a9801bc78ab --- /dev/null +++ b/src/chrome/content/rules/XenoNode.com.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Xeno_Gamers.org.xml b/src/chrome/content/rules/Xeno_Gamers.org.xml deleted file mode 100644 index 4de189ea936f..000000000000 --- a/src/chrome/content/rules/Xeno_Gamers.org.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Xenobite.eu.xml b/src/chrome/content/rules/Xenobite.eu.xml index cd1f9a6e08bf..2452c46bb4f0 100644 --- a/src/chrome/content/rules/Xenobite.eu.xml +++ b/src/chrome/content/rules/Xenobite.eu.xml @@ -6,7 +6,7 @@ Fetch error: http://xenobite.eu/ => https://xenobite.eu/: (51, "SSL: no alternat www doesn't exist. --> - + diff --git a/src/chrome/content/rules/Xfire.xml b/src/chrome/content/rules/Xfire.xml index bf9979e55c75..b97f3f5a1c3e 100644 --- a/src/chrome/content/rules/Xfire.xml +++ b/src/chrome/content/rules/Xfire.xml @@ -30,7 +30,7 @@ * Secured by us --> - + diff --git a/src/chrome/content/rules/Xg4ken.com.xml b/src/chrome/content/rules/Xg4ken.com.xml index ca9ddf9db864..7b3eccf4b429 100644 --- a/src/chrome/content/rules/Xg4ken.com.xml +++ b/src/chrome/content/rules/Xg4ken.com.xml @@ -19,4 +19,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/XiTi.com.xml b/src/chrome/content/rules/XiTi.com.xml index 3728d3596524..c7197ff87daf 100644 --- a/src/chrome/content/rules/XiTi.com.xml +++ b/src/chrome/content/rules/XiTi.com.xml @@ -51,7 +51,7 @@ Fetch error: http://logs142.xiti.com/hit.xiti?s= => https://logs142.xiti.com/hit ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -61,7 +61,7 @@ Fetch error: http://logs142.xiti.com/hit.xiti?s= => https://logs142.xiti.com/hit - + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Xiaomi.cn.xml b/src/chrome/content/rules/Xiaomi.cn.xml index 40dc9acf5b2a..8fde3cfa66f3 100644 --- a/src/chrome/content/rules/Xiaomi.cn.xml +++ b/src/chrome/content/rules/Xiaomi.cn.xml @@ -1,8 +1,5 @@ - - + - - - - - - - - @@ -48,5 +35,13 @@ Fetch error: http://m.xiaomi.cn/ => https://m.xiaomi.cn/: (6, 'Could not resolve + + + + + + + + diff --git a/src/chrome/content/rules/Xignite.xml b/src/chrome/content/rules/Xignite.xml index 69eaff27283b..810fc91d20cd 100644 --- a/src/chrome/content/rules/Xignite.xml +++ b/src/chrome/content/rules/Xignite.xml @@ -64,10 +64,6 @@ - - - + diff --git a/src/chrome/content/rules/Xiph.org.xml b/src/chrome/content/rules/Xiph.org.xml index 68bcf2976245..89ce7d8ecf1b 100644 --- a/src/chrome/content/rules/Xiph.org.xml +++ b/src/chrome/content/rules/Xiph.org.xml @@ -1,7 +1,7 @@ - + diff --git a/src/chrome/content/rules/Xively.com.xml b/src/chrome/content/rules/Xively.com.xml deleted file mode 100644 index 4cad63521c4e..000000000000 --- a/src/chrome/content/rules/Xively.com.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Xmarks.xml b/src/chrome/content/rules/Xmarks.xml deleted file mode 100644 index b98726c57563..000000000000 --- a/src/chrome/content/rules/Xmarks.xml +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Xnet-x.net.xml b/src/chrome/content/rules/Xnet-x.net.xml deleted file mode 100644 index 8fc18c9b53b2..000000000000 --- a/src/chrome/content/rules/Xnet-x.net.xml +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Xnimg.cn.xml b/src/chrome/content/rules/Xnimg.cn.xml index c1d590e9fc12..a8e5e3b1f220 100644 --- a/src/chrome/content/rules/Xnimg.cn.xml +++ b/src/chrome/content/rules/Xnimg.cn.xml @@ -20,7 +20,7 @@ - + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Xnxx.com.xml b/src/chrome/content/rules/Xnxx.com.xml new file mode 100644 index 000000000000..d811e5fe75c4 --- /dev/null +++ b/src/chrome/content/rules/Xnxx.com.xml @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Xonotic.org.xml b/src/chrome/content/rules/Xonotic.org.xml new file mode 100644 index 000000000000..567f29d97f9b --- /dev/null +++ b/src/chrome/content/rules/Xonotic.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Xparkmedia.com.xml b/src/chrome/content/rules/Xparkmedia.com.xml index 4eea07eeeeb8..c059bc28292c 100644 --- a/src/chrome/content/rules/Xparkmedia.com.xml +++ b/src/chrome/content/rules/Xparkmedia.com.xml @@ -6,7 +6,7 @@ - + + + + + + + + + diff --git a/src/chrome/content/rules/Xplosion_interactive.xml b/src/chrome/content/rules/Xplosion_interactive.xml index 449751e25367..c452543b7d00 100644 --- a/src/chrome/content/rules/Xplosion_interactive.xml +++ b/src/chrome/content/rules/Xplosion_interactive.xml @@ -16,7 +16,7 @@ - + diff --git a/src/chrome/content/rules/Xplr.xml b/src/chrome/content/rules/Xplr.xml index abcb02d7c9cd..c68b3c3b2a76 100644 --- a/src/chrome/content/rules/Xplr.xml +++ b/src/chrome/content/rules/Xplr.xml @@ -5,7 +5,7 @@ - + - + https://www.xroxy.com/: (60, 'SSL certific ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -25,7 +25,7 @@ Fetch error: http://www.xroxy.com/ => https://www.xroxy.com/: (60, 'SSL certific --> - + - - + + + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Xsolla.xml b/src/chrome/content/rules/Xsolla.xml index 10b14d7580fb..e084705469db 100644 --- a/src/chrome/content/rules/Xsolla.xml +++ b/src/chrome/content/rules/Xsolla.xml @@ -1,92 +1,42 @@ - - - + + - - + + + + + - - - - - + + + + - - - - - - - - - - - - + - + + diff --git a/src/chrome/content/rules/Xt-Commerce-mismatches.xml b/src/chrome/content/rules/Xt-Commerce-mismatches.xml index 4e0dd407a044..d2b0c2f50e9e 100644 --- a/src/chrome/content/rules/Xt-Commerce-mismatches.xml +++ b/src/chrome/content/rules/Xt-Commerce-mismatches.xml @@ -8,7 +8,7 @@ - + - + - + - + - - - - - - - - - diff --git a/src/chrome/content/rules/Xtenit.xml b/src/chrome/content/rules/Xtenit.xml index 5718d4834ae5..e0b166cab53d 100644 --- a/src/chrome/content/rules/Xtenit.xml +++ b/src/chrome/content/rules/Xtenit.xml @@ -21,4 +21,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Xtnetwork.fr.xml b/src/chrome/content/rules/Xtnetwork.fr.xml index f0c028ea0509..de4a452a6b7c 100644 --- a/src/chrome/content/rules/Xtnetwork.fr.xml +++ b/src/chrome/content/rules/Xtnetwork.fr.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://cdn.realdebrid.xtnetwork.fr/ => https://cdn.realdebrid.xtnetwork.fr/: (35, 'error:14077438:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert internal error') --> - + diff --git a/src/chrome/content/rules/Xtube.com.xml b/src/chrome/content/rules/Xtube.com.xml index 0176caa344a7..55a2bc260bce 100644 --- a/src/chrome/content/rules/Xtube.com.xml +++ b/src/chrome/content/rules/Xtube.com.xml @@ -88,7 +88,7 @@ - + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Xww.ro.xml b/src/chrome/content/rules/Xww.ro.xml index c1904cce3dfb..ea537f3e0958 100644 --- a/src/chrome/content/rules/Xww.ro.xml +++ b/src/chrome/content/rules/Xww.ro.xml @@ -23,7 +23,7 @@ --> - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Xyratex.com.xml b/src/chrome/content/rules/Xyratex.com.xml index f3ae0a5ebe0e..2302a24c4d1a 100644 --- a/src/chrome/content/rules/Xyratex.com.xml +++ b/src/chrome/content/rules/Xyratex.com.xml @@ -8,7 +8,7 @@ Fetch error: http://www.xyratex.com/ => https://www.xyratex.com/: (51, "SSL: no For other Seagate coverage, see Seagate.com.xml. --> - + @@ -18,7 +18,7 @@ Fetch error: http://www.xyratex.com/ => https://www.xyratex.com/: (51, "SSL: no - + - - - - - - - - - diff --git a/src/chrome/content/rules/YBitcoin.com.xml b/src/chrome/content/rules/YBitcoin.com.xml deleted file mode 100644 index 4680eb046816..000000000000 --- a/src/chrome/content/rules/YBitcoin.com.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/YEAH.xml b/src/chrome/content/rules/YEAH.xml index 97fd9bfb5ddb..5e0aa949ca6d 100644 --- a/src/chrome/content/rules/YEAH.xml +++ b/src/chrome/content/rules/YEAH.xml @@ -7,7 +7,7 @@ Fetch error: http://www.yeahtv.com/ => https://www.yeahtv.com/: (28, 'Connection !www times out. --> - + @@ -16,4 +16,4 @@ Fetch error: http://www.yeahtv.com/ => https://www.yeahtv.com/: (28, 'Connection - \ No newline at end of file + diff --git a/src/chrome/content/rules/YFS.ca.xml b/src/chrome/content/rules/YFS.ca.xml new file mode 100644 index 000000000000..a9fc890f2798 --- /dev/null +++ b/src/chrome/content/rules/YFS.ca.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/YGTech.Tools.xml b/src/chrome/content/rules/YGTech.Tools.xml index 28d5ec114884..9130385325f7 100644 --- a/src/chrome/content/rules/YGTech.Tools.xml +++ b/src/chrome/content/rules/YGTech.Tools.xml @@ -9,7 +9,7 @@ Fetch error: http://www.ygtech.tools/ => https://www.ygtech.tools/: (28, 'Connec - (www.)? --> - + diff --git a/src/chrome/content/rules/YMCA_of_Greater_St_Louis.xml b/src/chrome/content/rules/YMCA_of_Greater_St_Louis.xml index fe7bc995a3ab..61d539257189 100644 --- a/src/chrome/content/rules/YMCA_of_Greater_St_Louis.xml +++ b/src/chrome/content/rules/YMCA_of_Greater_St_Louis.xml @@ -5,7 +5,7 @@ ^ymcastlouis.org: Cert only matches www.ymcastlouis.org --> - + @@ -18,7 +18,7 @@ - + - - - - - - - - diff --git a/src/chrome/content/rules/YP_bot.net.xml b/src/chrome/content/rules/YP_bot.net.xml index 9afbb9f71136..4680cdb2b567 100644 --- a/src/chrome/content/rules/YP_bot.net.xml +++ b/src/chrome/content/rules/YP_bot.net.xml @@ -24,7 +24,9 @@ - + + + diff --git a/src/chrome/content/rules/YT_Channel_Embed.com.xml b/src/chrome/content/rules/YT_Channel_Embed.com.xml deleted file mode 100644 index cbc4f63faa8d..000000000000 --- a/src/chrome/content/rules/YT_Channel_Embed.com.xml +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/YUI_Library.xml b/src/chrome/content/rules/YUI_Library.xml index 1c219194b1dd..598b0b4bb30e 100644 --- a/src/chrome/content/rules/YUI_Library.xml +++ b/src/chrome/content/rules/YUI_Library.xml @@ -1,16 +1,12 @@ - + - - - diff --git a/src/chrome/content/rules/Ya.ru.xml b/src/chrome/content/rules/Ya.ru.xml index 267691c88391..263f5e31da66 100644 --- a/src/chrome/content/rules/Ya.ru.xml +++ b/src/chrome/content/rules/Ya.ru.xml @@ -97,7 +97,7 @@ Fetch error: http://realty.ya.ru/ => https://realty.ya.ru/: (51, "SSL: no altern * Secured by us --> - + diff --git a/src/chrome/content/rules/Yabause.org.xml b/src/chrome/content/rules/Yabause.org.xml deleted file mode 100644 index 015c2b0d923a..000000000000 --- a/src/chrome/content/rules/Yabause.org.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Yacuna.com.xml b/src/chrome/content/rules/Yacuna.com.xml index f5844c0a88c5..30311a2cbdf1 100644 --- a/src/chrome/content/rules/Yacuna.com.xml +++ b/src/chrome/content/rules/Yacuna.com.xml @@ -12,7 +12,7 @@ Fetch error: http://www.yacuna.com/ => https://www.yacuna.com/: (6, 'Could not r * Secured by us --> - + diff --git a/src/chrome/content/rules/Yadro.ru.xml b/src/chrome/content/rules/Yadro.ru.xml index 11506980c9e5..20ee84a10020 100644 --- a/src/chrome/content/rules/Yadro.ru.xml +++ b/src/chrome/content/rules/Yadro.ru.xml @@ -1,37 +1,15 @@ - - - - + - - - + - - - - - - + diff --git a/src/chrome/content/rules/Yagg.com.xml b/src/chrome/content/rules/Yagg.com.xml new file mode 100644 index 000000000000..e5f32bcbaa71 --- /dev/null +++ b/src/chrome/content/rules/Yagg.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Yahoo.xml b/src/chrome/content/rules/Yahoo.xml index f1850f088eed..e9b72850c23d 100644 --- a/src/chrome/content/rules/Yahoo.xml +++ b/src/chrome/content/rules/Yahoo.xml @@ -2448,7 +2448,7 @@ - - + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Yale_University.xml b/src/chrome/content/rules/Yale_University.xml deleted file mode 100644 index 62b23aa66d8a..000000000000 --- a/src/chrome/content/rules/Yale_University.xml +++ /dev/null @@ -1,53 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Yam.xml b/src/chrome/content/rules/Yam.xml index a1f1f6f683b0..2a5b1d2a5403 100644 --- a/src/chrome/content/rules/Yam.xml +++ b/src/chrome/content/rules/Yam.xml @@ -8,7 +8,7 @@ Fetch error: http://s1-world.yamedia.tw/ => https://s1-world.yamedia.tw/: (35, ' Invalid certificate: love.yam.com member.yam.com - + p1-josho.yamedia.tw p1-kids.yamedia.tw p1-money.yamedia.tw @@ -37,7 +37,7 @@ Fetch error: http://s1-world.yamedia.tw/ => https://s1-world.yamedia.tw/: (35, ' profile.yamedia.tw (http://profile.yamedia.tw/n/i/nigili5/sindex.jpg) --> - + @@ -50,13 +50,13 @@ Fetch error: http://s1-world.yamedia.tw/ => https://s1-world.yamedia.tw/: (35, ' - + - + - + diff --git a/src/chrome/content/rules/Yamgo.com.xml b/src/chrome/content/rules/Yamgo.com.xml deleted file mode 100644 index 72909c21b2fa..000000000000 --- a/src/chrome/content/rules/Yamgo.com.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Yamli.com.xml b/src/chrome/content/rules/Yamli.com.xml new file mode 100644 index 000000000000..aea3928a691e --- /dev/null +++ b/src/chrome/content/rules/Yamli.com.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/YamliAPI.xml b/src/chrome/content/rules/YamliAPI.xml deleted file mode 100644 index 39a78ac34d6f..000000000000 --- a/src/chrome/content/rules/YamliAPI.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - diff --git a/src/chrome/content/rules/Yammer.xml b/src/chrome/content/rules/Yammer.xml index 0fb440a6021a..e99976b91a49 100644 --- a/src/chrome/content/rules/Yammer.xml +++ b/src/chrome/content/rules/Yammer.xml @@ -45,7 +45,7 @@ Fetch error: http://eng.staging.yammer.com/ => https://eng.staging.yammer.com/: - devices.yammer.com --> - + @@ -73,7 +73,7 @@ Fetch error: http://eng.staging.yammer.com/ => https://eng.staging.yammer.com/: --> - + - + diff --git a/src/chrome/content/rules/Yandex.com.tr.xml b/src/chrome/content/rules/Yandex.com.tr.xml index aa193816c0e0..c3b40b6e7ecd 100644 --- a/src/chrome/content/rules/Yandex.com.tr.xml +++ b/src/chrome/content/rules/Yandex.com.tr.xml @@ -273,9 +273,9 @@ Fetch error: http://gazeta.yandex.com.tr/ => https://haber.yandex.com.tr/mynews: - pda.haber from www.tns-counter.ru * * Secured by us - + --> - + diff --git a/src/chrome/content/rules/Yandex.com.ua.xml b/src/chrome/content/rules/Yandex.com.ua.xml index 068727e70622..019784508277 100644 --- a/src/chrome/content/rules/Yandex.com.ua.xml +++ b/src/chrome/content/rules/Yandex.com.ua.xml @@ -57,7 +57,7 @@ Fetch error: http://www.taras.yandex.com.ua/ => https://taras.yandex.com.ua/: (5 - mail.yandex.com.ua --> - + diff --git a/src/chrome/content/rules/Yandex.kz.xml b/src/chrome/content/rules/Yandex.kz.xml index dc001a19d565..5a2433a44e1a 100644 --- a/src/chrome/content/rules/Yandex.kz.xml +++ b/src/chrome/content/rules/Yandex.kz.xml @@ -198,7 +198,7 @@ Fetch error: http://suggests.rasp.yandex.kz/ => https://suggests.rasp.yandex.kz/ ² Unsecurable <= dropped --> - + diff --git a/src/chrome/content/rules/Yandex.mobi.xml b/src/chrome/content/rules/Yandex.mobi.xml deleted file mode 100644 index f8843ce0f18c..000000000000 --- a/src/chrome/content/rules/Yandex.mobi.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Yandex.net.xml b/src/chrome/content/rules/Yandex.net.xml index 9008eee5b2b3..c1a5cadb467d 100644 --- a/src/chrome/content/rules/Yandex.net.xml +++ b/src/chrome/content/rules/Yandex.net.xml @@ -1,18 +1,3 @@ - - - - + @@ -204,56 +177,39 @@ Fetch error: http://xss.yandex.net/ => https://xss.yandex.net/: (7, 'Failed to c - + + - - - - - - - - - - + - - - - - - - - - @@ -273,23 +229,11 @@ Fetch error: http://xss.yandex.net/ => https://xss.yandex.net/: (7, 'Failed to c - - - - - - - - - - @@ -304,4 +248,7 @@ Fetch error: http://xss.yandex.net/ => https://xss.yandex.net/: (7, 'Failed to c --> + + diff --git a/src/chrome/content/rules/Yandex.xml b/src/chrome/content/rules/Yandex.xml index 874a3cb079eb..ac75c7cc143d 100644 --- a/src/chrome/content/rules/Yandex.xml +++ b/src/chrome/content/rules/Yandex.xml @@ -1,4 +1,9 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + - - + diff --git a/src/chrome/content/rules/YaqeenInstitute.org.xml b/src/chrome/content/rules/YaqeenInstitute.org.xml index bf51533b3a85..f53f3d962a16 100644 --- a/src/chrome/content/rules/YaqeenInstitute.org.xml +++ b/src/chrome/content/rules/YaqeenInstitute.org.xml @@ -2,5 +2,7 @@ + + diff --git a/src/chrome/content/rules/Yard_Digital.com.xml b/src/chrome/content/rules/Yard_Digital.com.xml index 7f4e91f75976..3dff4e69a5b3 100644 --- a/src/chrome/content/rules/Yard_Digital.com.xml +++ b/src/chrome/content/rules/Yard_Digital.com.xml @@ -15,4 +15,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Yassine.net.xml b/src/chrome/content/rules/Yassine.net.xml new file mode 100644 index 000000000000..01b98e6952ec --- /dev/null +++ b/src/chrome/content/rules/Yassine.net.xml @@ -0,0 +1,14 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Ybin.me.xml b/src/chrome/content/rules/Ybin.me.xml deleted file mode 100644 index 346c598b545b..000000000000 --- a/src/chrome/content/rules/Ybin.me.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Yeah.net.xml b/src/chrome/content/rules/Yeah.net.xml index 2347e271cbf0..9b90d8f46b00 100644 --- a/src/chrome/content/rules/Yeah.net.xml +++ b/src/chrome/content/rules/Yeah.net.xml @@ -1,31 +1,14 @@ - - - - + - - - + diff --git a/src/chrome/content/rules/Yedxxx24hr.com.xml b/src/chrome/content/rules/Yedxxx24hr.com.xml index 5fc6a5ff9175..8d67ccdafa2e 100644 --- a/src/chrome/content/rules/Yedxxx24hr.com.xml +++ b/src/chrome/content/rules/Yedxxx24hr.com.xml @@ -23,7 +23,7 @@ - + https://localsearchassociation.org - Yellow_Pages_Opt_Out.com.xml --> - + diff --git a/src/chrome/content/rules/Yellow_Pages_Opt_Out.com.xml b/src/chrome/content/rules/Yellow_Pages_Opt_Out.com.xml index fdb5a15958d5..5313da688293 100644 --- a/src/chrome/content/rules/Yellow_Pages_Opt_Out.com.xml +++ b/src/chrome/content/rules/Yellow_Pages_Opt_Out.com.xml @@ -25,7 +25,7 @@ --> - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -236,15 +30,7 @@ - - - - - - - - + diff --git a/src/chrome/content/rules/Yemeksepeti.xml b/src/chrome/content/rules/Yemeksepeti.xml index edb48b889545..41d9cc8829b0 100644 --- a/src/chrome/content/rules/Yemeksepeti.xml +++ b/src/chrome/content/rules/Yemeksepeti.xml @@ -6,7 +6,7 @@ - + diff --git a/src/chrome/content/rules/YeniAkit.com.tr.xml b/src/chrome/content/rules/YeniAkit.com.tr.xml new file mode 100644 index 000000000000..e77e797b7a44 --- /dev/null +++ b/src/chrome/content/rules/YeniAkit.com.tr.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/Yeshiva.xml b/src/chrome/content/rules/Yeshiva.xml index 952f35998a68..ad10abc01f36 100644 --- a/src/chrome/content/rules/Yeshiva.xml +++ b/src/chrome/content/rules/Yeshiva.xml @@ -5,7 +5,7 @@ Fetch error: http://www.yu.edu/ => https://yu.edu/: Too many redirects while fet Fetch error: http://yu.edu/ => https://yu.edu/: Too many redirects while fetching 'https://yu.edu/' --> - + diff --git a/src/chrome/content/rules/Yesss.at.xml b/src/chrome/content/rules/Yesss.at.xml index c777546cbec8..4ce702cb3885 100644 --- a/src/chrome/content/rules/Yesss.at.xml +++ b/src/chrome/content/rules/Yesss.at.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://nulleuro.yesss.at/ => https://nulleuro.yesss.at/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/Ygnition.xml b/src/chrome/content/rules/Ygnition.xml index 337c33293161..bffca910dba5 100644 --- a/src/chrome/content/rules/Ygnition.xml +++ b/src/chrome/content/rules/Ygnition.xml @@ -11,14 +11,14 @@ Fetch error: http://yoda.ygnition.com/ => https://yoda.ygnition.com/: (28, 'Conn - yoda02 (refused) --> - + - + https://www.yieldselect.com/: (60, ' ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -24,7 +24,7 @@ Fetch error: http://www.yieldselect.com/ => https://www.yieldselect.com/: (60, ' --> - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Yieldlab.de.xml b/src/chrome/content/rules/Yieldlab.de.xml index 4bde011eed23..6c84807fead5 100644 --- a/src/chrome/content/rules/Yieldlab.de.xml +++ b/src/chrome/content/rules/Yieldlab.de.xml @@ -11,7 +11,7 @@ Mixed content: - Images from $self - - Bug from www.facebook.com + - Bug from www.facebook.com --> diff --git a/src/chrome/content/rules/Yieldlove.com.xml b/src/chrome/content/rules/Yieldlove.com.xml new file mode 100644 index 000000000000..ca5e84352d61 --- /dev/null +++ b/src/chrome/content/rules/Yieldlove.com.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Yimg.com.xml b/src/chrome/content/rules/Yimg.com.xml index cc8045de2e46..1121df877aa4 100644 --- a/src/chrome/content/rules/Yimg.com.xml +++ b/src/chrome/content/rules/Yimg.com.xml @@ -1,112 +1,39 @@ - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Ynet.io.xml b/src/chrome/content/rules/Ynet.io.xml index 53166caab96d..909e9b65d8f6 100644 --- a/src/chrome/content/rules/Ynet.io.xml +++ b/src/chrome/content/rules/Ynet.io.xml @@ -16,7 +16,7 @@ Fetch error: http://s.ynet.io/ => https://s.ynet.io/: (28, 'Connection timed out - .ynet.io --> - + diff --git a/src/chrome/content/rules/Yocto_Project.org.xml b/src/chrome/content/rules/Yocto_Project.org.xml index d9e608cf67bc..f30d1ab3b761 100644 --- a/src/chrome/content/rules/Yocto_Project.org.xml +++ b/src/chrome/content/rules/Yocto_Project.org.xml @@ -31,7 +31,12 @@ - + + + + + + - + - + diff --git a/src/chrome/content/rules/YogaDNS.com.xml b/src/chrome/content/rules/YogaDNS.com.xml new file mode 100644 index 000000000000..69ec2c6f7f08 --- /dev/null +++ b/src/chrome/content/rules/YogaDNS.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Yokl.com.xml b/src/chrome/content/rules/Yokl.com.xml index 697c24bc656d..b8727b46745f 100644 --- a/src/chrome/content/rules/Yokl.com.xml +++ b/src/chrome/content/rules/Yokl.com.xml @@ -13,7 +13,7 @@ Fetch error: http://www.yokl.com/ => https://yokl.com/: (60, 'SSL certificate pr - yokl.com --> - + diff --git a/src/chrome/content/rules/YoklAPI.com.xml b/src/chrome/content/rules/YoklAPI.com.xml index c43201ef5d38..e634f46e7f23 100644 --- a/src/chrome/content/rules/YoklAPI.com.xml +++ b/src/chrome/content/rules/YoklAPI.com.xml @@ -16,7 +16,7 @@ Fetch error: http://yoklapi.com/ => https://api.yokl.com/: (60, 'SSL certificate * Not secured by us <= mismatched --> - + diff --git a/src/chrome/content/rules/York.edu.xml b/src/chrome/content/rules/York.edu.xml index 6686c40b0827..d82d52a1e760 100644 --- a/src/chrome/content/rules/York.edu.xml +++ b/src/chrome/content/rules/York.edu.xml @@ -25,7 +25,7 @@ - + + - (www.)?: Server sends no certificate chain * + - * See https://whatsmychaincert.com - ---> - - - - - - diff --git a/src/chrome/content/rules/York_Fitness.xml b/src/chrome/content/rules/York_Fitness.xml index bcad83d7c10a..6963b1bc48b0 100644 --- a/src/chrome/content/rules/York_Fitness.xml +++ b/src/chrome/content/rules/York_Fitness.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Yosemite_News.info.xml b/src/chrome/content/rules/Yosemite_News.info.xml index 0bd99fefb3d5..43ea8169e6b8 100644 --- a/src/chrome/content/rules/Yosemite_News.info.xml +++ b/src/chrome/content/rules/Yosemite_News.info.xml @@ -10,7 +10,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/Yottaa.xml b/src/chrome/content/rules/Yottaa.xml index 9fae84174bb7..3e9bedf7c0d9 100644 --- a/src/chrome/content/rules/Yottaa.xml +++ b/src/chrome/content/rules/Yottaa.xml @@ -28,13 +28,17 @@ --> - + + + + + + - + diff --git a/src/chrome/content/rules/YouCanBook.Me.xml b/src/chrome/content/rules/YouCanBook.Me.xml index 7cd12ca5a338..923801724e67 100644 --- a/src/chrome/content/rules/YouCanBook.Me.xml +++ b/src/chrome/content/rules/YouCanBook.Me.xml @@ -10,7 +10,7 @@ Fetch error: http://fwd.youcanbook.me/ => https://fwd.youcanbook.me/: (60, 'SSL - upload.youcanbook.me --> - + diff --git a/src/chrome/content/rules/YouSendIt.xml b/src/chrome/content/rules/YouSendIt.xml index 52bac8a71211..8ccc39cc769d 100644 --- a/src/chrome/content/rules/YouSendIt.xml +++ b/src/chrome/content/rules/YouSendIt.xml @@ -8,7 +8,7 @@ Fetch error: http://a15.ysicdo002.com/ => https://a15.ysicdo002.com/: (51, "SSL: Cert only matches *.yousendit.com --> - + diff --git a/src/chrome/content/rules/YouTube.xml b/src/chrome/content/rules/YouTube.xml index c9fb185217e8..120d79ff0000 100644 --- a/src/chrome/content/rules/YouTube.xml +++ b/src/chrome/content/rules/YouTube.xml @@ -1,22 +1,20 @@ - - - - - - - - @@ -28,8 +26,7 @@ - - + @@ -214,8 +211,8 @@ - - + + @@ -238,22 +235,6 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/YouVersion.com.xml b/src/chrome/content/rules/YouVersion.com.xml new file mode 100644 index 000000000000..8ef0fbe12f54 --- /dev/null +++ b/src/chrome/content/rules/YouVersion.com.xml @@ -0,0 +1,29 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/YouVersion.xml b/src/chrome/content/rules/YouVersion.xml deleted file mode 100644 index 3b0d4ce834cc..000000000000 --- a/src/chrome/content/rules/YouVersion.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/YouVisit.com.xml b/src/chrome/content/rules/YouVisit.com.xml index f507f7190337..747f72ed1464 100644 --- a/src/chrome/content/rules/YouVisit.com.xml +++ b/src/chrome/content/rules/YouVisit.com.xml @@ -9,4 +9,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Youku.com.xml b/src/chrome/content/rules/Youku.com.xml index cab22473a429..7ab6e1d6136d 100644 --- a/src/chrome/content/rules/Youku.com.xml +++ b/src/chrome/content/rules/Youku.com.xml @@ -88,7 +88,6 @@ - @@ -123,11 +122,9 @@ - - diff --git a/src/chrome/content/rules/Youm7.com.xml b/src/chrome/content/rules/Youm7.com.xml index d212f835a61f..f19070a6643d 100644 --- a/src/chrome/content/rules/Youm7.com.xml +++ b/src/chrome/content/rules/Youm7.com.xml @@ -1,7 +1,5 @@ - + - diff --git a/src/chrome/content/rules/Youmix.xml b/src/chrome/content/rules/Youmix.xml deleted file mode 100644 index 781438455981..000000000000 --- a/src/chrome/content/rules/Youmix.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Young-Pirates.Eu.xml b/src/chrome/content/rules/Young-Pirates.Eu.xml index 212359ca690b..05ec6522c103 100644 --- a/src/chrome/content/rules/Young-Pirates.Eu.xml +++ b/src/chrome/content/rules/Young-Pirates.Eu.xml @@ -18,7 +18,7 @@ Fetch error: http://wiki.young-pirates.eu/ => https://wiki.young-pirates.eu/: (6 ˢ Secured by us --> - + @@ -26,7 +26,7 @@ Fetch error: http://wiki.young-pirates.eu/ => https://wiki.young-pirates.eu/: (6 - + https://youngrewiredstate.org/ - .youngrewiredstate.org --> - + diff --git a/src/chrome/content/rules/Younited.com.xml b/src/chrome/content/rules/Younited.com.xml deleted file mode 100644 index 0d238191a641..000000000000 --- a/src/chrome/content/rules/Younited.com.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Your-File-System.com.xml b/src/chrome/content/rules/Your-File-System.com.xml index a082d5e51e59..7d1ecba8bf17 100644 --- a/src/chrome/content/rules/Your-File-System.com.xml +++ b/src/chrome/content/rules/Your-File-System.com.xml @@ -5,7 +5,7 @@ Fetch error: http://your-file-system.com/ => https://your-file-system.com/: (7, Fetch error: http://www.your-file-system.com/ => https://www.your-file-system.com/: (7, 'Failed to connect to www.your-file-system.com port 443: Connection refused') --> - + diff --git a/src/chrome/content/rules/Your-Mailing-List-Provider.xml b/src/chrome/content/rules/Your-Mailing-List-Provider.xml index 013e6f380138..ec339dfe77b9 100644 --- a/src/chrome/content/rules/Your-Mailing-List-Provider.xml +++ b/src/chrome/content/rules/Your-Mailing-List-Provider.xml @@ -1,25 +1,11 @@ - - + + + - - - - - + diff --git a/src/chrome/content/rules/YourBittorrent.xml b/src/chrome/content/rules/YourBittorrent.xml deleted file mode 100644 index 0d55ada3392e..000000000000 --- a/src/chrome/content/rules/YourBittorrent.xml +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/YourBrainOnPorn.com.xml b/src/chrome/content/rules/YourBrainOnPorn.com.xml new file mode 100644 index 000000000000..34c690d6d2ff --- /dev/null +++ b/src/chrome/content/rules/YourBrainOnPorn.com.xml @@ -0,0 +1,10 @@ + + + + + + + diff --git a/src/chrome/content/rules/YourMechanic.com.xml b/src/chrome/content/rules/YourMechanic.com.xml index 8a959cf51615..826519681623 100644 --- a/src/chrome/content/rules/YourMechanic.com.xml +++ b/src/chrome/content/rules/YourMechanic.com.xml @@ -14,7 +14,7 @@ --> - + - + diff --git a/src/chrome/content/rules/YourPSHome.net.xml b/src/chrome/content/rules/YourPSHome.net.xml index 5eebfaec6372..69aafdb4cdf2 100644 --- a/src/chrome/content/rules/YourPSHome.net.xml +++ b/src/chrome/content/rules/YourPSHome.net.xml @@ -4,14 +4,14 @@ Disabled by https-everywhere-checker because: Fetch error: http://cdn.yourpshome.net/ => https://cdn.yourpshome.net/: (6, 'Could not resolve host: cdn.yourpshome.net') --> - + - + + + + + + diff --git a/src/chrome/content/rules/YourYU.ca.xml b/src/chrome/content/rules/YourYU.ca.xml new file mode 100644 index 000000000000..fe6c227e0399 --- /dev/null +++ b/src/chrome/content/rules/YourYU.ca.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Your_Date_Link.xml b/src/chrome/content/rules/Your_Date_Link.xml index 4bc490dbdffd..4e27526ae715 100644 --- a/src/chrome/content/rules/Your_Date_Link.xml +++ b/src/chrome/content/rules/Your_Date_Link.xml @@ -7,7 +7,7 @@ Fetch error: http://www.yourdatelink.com/ => https://www.yourdatelink.com/: (51, Disabled by https-everywhere-checker because: Fetch error: http://yourdatelink.com/ => https://yourdatelink.com/: (51, "SSL: no alternative certificate subject name matches target host name 'yourdatelink.com'") --> - + @@ -18,4 +18,4 @@ Fetch error: http://yourdatelink.com/ => https://yourdatelink.com/: (51, "SSL: n - \ No newline at end of file + diff --git a/src/chrome/content/rules/Your_Local_Edge.com.xml b/src/chrome/content/rules/Your_Local_Edge.com.xml index 7b8aeed2fed1..0ef7842abb46 100644 --- a/src/chrome/content/rules/Your_Local_Edge.com.xml +++ b/src/chrome/content/rules/Your_Local_Edge.com.xml @@ -17,10 +17,10 @@ Fetch error: http://yourlocaledge.com/ => https://yourlocaledge.com/: (28, 'Conn * Secured by us --> - + - + @@ -29,4 +29,4 @@ Fetch error: http://yourlocaledge.com/ => https://yourlocaledge.com/: (28, 'Conn - \ No newline at end of file + diff --git a/src/chrome/content/rules/Your_Video_Host.com.xml b/src/chrome/content/rules/Your_Video_Host.com.xml index 68d9125e161b..fa4903df03cc 100644 --- a/src/chrome/content/rules/Your_Video_Host.com.xml +++ b/src/chrome/content/rules/Your_Video_Host.com.xml @@ -23,7 +23,7 @@ Fetch error: http://www.yourvideohost.com/ => https://www.yourvideohost.com/: (2 ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -33,7 +33,7 @@ Fetch error: http://www.yourvideohost.com/ => https://www.yourvideohost.com/: (2 --> - + https://www.yourcounciljobs.co - www.yourcounciljobs.co.uk --> - + @@ -20,7 +20,7 @@ Fetch error: http://www.yourcounciljobs.co.uk/ => https://www.yourcounciljobs.co --> - + - + + + + + + + diff --git a/src/chrome/content/rules/Yourhosting.xml b/src/chrome/content/rules/Yourhosting.xml index 707e816e5004..b5378db8feee 100644 --- a/src/chrome/content/rules/Yourhosting.xml +++ b/src/chrome/content/rules/Yourhosting.xml @@ -5,7 +5,7 @@ - + - + diff --git a/src/chrome/content/rules/YoursAV.me.xml b/src/chrome/content/rules/YoursAV.me.xml deleted file mode 100644 index 26f0fb070064..000000000000 --- a/src/chrome/content/rules/YoursAV.me.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Yt-dl.org.xml b/src/chrome/content/rules/Yt-dl.org.xml index 6cc05430fd97..bcc468f9f59a 100644 --- a/src/chrome/content/rules/Yt-dl.org.xml +++ b/src/chrome/content/rules/Yt-dl.org.xml @@ -6,4 +6,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Yubico.xml b/src/chrome/content/rules/Yubico.xml deleted file mode 100644 index fa3a917ef00e..000000000000 --- a/src/chrome/content/rules/Yubico.xml +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Yuku.xml b/src/chrome/content/rules/Yuku.xml deleted file mode 100644 index 78182757bedf..000000000000 --- a/src/chrome/content/rules/Yuku.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/YunoHost.org.xml b/src/chrome/content/rules/YunoHost.org.xml index 93d63af22e9a..b1e4b1cab0e0 100644 --- a/src/chrome/content/rules/YunoHost.org.xml +++ b/src/chrome/content/rules/YunoHost.org.xml @@ -8,7 +8,7 @@ Fetch error: http://doc.yunohost.org/ => https://doc.yunohost.org/: (51, "SSL: n - forum.yunohost.org --> - + @@ -21,7 +21,7 @@ Fetch error: http://doc.yunohost.org/ => https://doc.yunohost.org/: (51, "SSL: n --> - + - + - + - - - + diff --git a/src/chrome/content/rules/ZDmcirc.com.xml b/src/chrome/content/rules/ZDmcirc.com.xml index cbd141ed60b1..ec40a2a33dad 100644 --- a/src/chrome/content/rules/ZDmcirc.com.xml +++ b/src/chrome/content/rules/ZDmcirc.com.xml @@ -12,7 +12,7 @@ * Secured by us --> - + diff --git a/src/chrome/content/rules/ZERODIUM.xml b/src/chrome/content/rules/ZERODIUM.xml index 5bead2ced355..ac4572e29cc9 100644 --- a/src/chrome/content/rules/ZERODIUM.xml +++ b/src/chrome/content/rules/ZERODIUM.xml @@ -4,7 +4,7 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ZNC.in.xml b/src/chrome/content/rules/ZNC.in.xml new file mode 100644 index 000000000000..330fe519be5d --- /dev/null +++ b/src/chrome/content/rules/ZNC.in.xml @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/ZONZA.tv.xml b/src/chrome/content/rules/ZONZA.tv.xml deleted file mode 100644 index 612ac0c4add7..000000000000 --- a/src/chrome/content/rules/ZONZA.tv.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/ZOUM.xml b/src/chrome/content/rules/ZOUM.xml index dc3d67494e44..53e5a11b1a24 100644 --- a/src/chrome/content/rules/ZOUM.xml +++ b/src/chrome/content/rules/ZOUM.xml @@ -5,7 +5,7 @@ Fetch error: http://zoum.ca/ => https://zoum.ca/: (60, 'SSL certificate problem: Fetch error: http://www.zoum.ca/ => https://www.zoum.ca/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/ZSR.sk.xml b/src/chrome/content/rules/ZSR.sk.xml new file mode 100644 index 000000000000..cb30d94bee4b --- /dev/null +++ b/src/chrome/content/rules/ZSR.sk.xml @@ -0,0 +1,16 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/ZTunnel.xml b/src/chrome/content/rules/ZTunnel.xml deleted file mode 100644 index 22909bf3158a..000000000000 --- a/src/chrome/content/rules/ZTunnel.xml +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/ZUNO.cz.xml b/src/chrome/content/rules/ZUNO.cz.xml deleted file mode 100644 index f9562fd3d32b..000000000000 --- a/src/chrome/content/rules/ZUNO.cz.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/ZUNO.eu.xml b/src/chrome/content/rules/ZUNO.eu.xml deleted file mode 100644 index 661389a23049..000000000000 --- a/src/chrome/content/rules/ZUNO.eu.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/ZUNO.sk.xml b/src/chrome/content/rules/ZUNO.sk.xml index c0b3ec69ba66..eae82281a292 100644 --- a/src/chrome/content/rules/ZUNO.sk.xml +++ b/src/chrome/content/rules/ZUNO.sk.xml @@ -9,7 +9,7 @@ Fetch error: http://m.zuno.sk/ => https://m.zuno.sk/: (6, 'Could not resolve hos - moje.zuno.sk - www.zuno.sk --> - + diff --git a/src/chrome/content/rules/ZUS.pl.xml b/src/chrome/content/rules/ZUS.pl.xml index 8d34530907a3..f0c06d8eda54 100644 --- a/src/chrome/content/rules/ZUS.pl.xml +++ b/src/chrome/content/rules/ZUS.pl.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://ssl.zus.pl/ => https://ssl.zus.pl/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + diff --git a/src/chrome/content/rules/ZX2C4.com.xml b/src/chrome/content/rules/ZX2C4.com.xml new file mode 100644 index 000000000000..9e9caf2c29ac --- /dev/null +++ b/src/chrome/content/rules/ZX2C4.com.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ZXIDP.org.xml b/src/chrome/content/rules/ZXIDP.org.xml index 93cd721faf38..071a6c82f89c 100644 --- a/src/chrome/content/rules/ZXIDP.org.xml +++ b/src/chrome/content/rules/ZXIDP.org.xml @@ -4,7 +4,7 @@ www.zxidp.org: cert only matches ^zxidp.org --> - + diff --git a/src/chrome/content/rules/ZYVOXassist.com.xml b/src/chrome/content/rules/ZYVOXassist.com.xml deleted file mode 100644 index 38ac4e710006..000000000000 --- a/src/chrome/content/rules/ZYVOXassist.com.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/ZZounds.com.xml b/src/chrome/content/rules/ZZounds.com.xml index 175befec7731..5339a86bbbbd 100644 --- a/src/chrome/content/rules/ZZounds.com.xml +++ b/src/chrome/content/rules/ZZounds.com.xml @@ -40,7 +40,7 @@ Fetch error: http://c0.zzounds.com/ => https://c0.zzounds.com/: (60, 'SSL certif - delivery --> - + diff --git a/src/chrome/content/rules/Zabbix.com.xml b/src/chrome/content/rules/Zabbix.com.xml new file mode 100644 index 000000000000..e1268127d447 --- /dev/null +++ b/src/chrome/content/rules/Zabbix.com.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Zabbix.xml b/src/chrome/content/rules/Zabbix.xml deleted file mode 100644 index e26e1ee8e135..000000000000 --- a/src/chrome/content/rules/Zabbix.xml +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Zabihah.com.xml b/src/chrome/content/rules/Zabihah.com.xml new file mode 100644 index 000000000000..43c2ead24697 --- /dev/null +++ b/src/chrome/content/rules/Zabihah.com.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Zacks_Investment_Research.xml b/src/chrome/content/rules/Zacks_Investment_Research.xml index f7218842a9cf..3bec4ad3f5b3 100644 --- a/src/chrome/content/rules/Zacks_Investment_Research.xml +++ b/src/chrome/content/rules/Zacks_Investment_Research.xml @@ -44,4 +44,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/Zadara_Storage.com-falsemixed.xml b/src/chrome/content/rules/Zadara_Storage.com-falsemixed.xml index d8ff629c9bbb..347efd3edcd6 100644 --- a/src/chrome/content/rules/Zadara_Storage.com-falsemixed.xml +++ b/src/chrome/content/rules/Zadara_Storage.com-falsemixed.xml @@ -8,7 +8,7 @@ - + - + + + + + + + + + diff --git a/src/chrome/content/rules/Zaehlwerk.net.xml b/src/chrome/content/rules/Zaehlwerk.net.xml index fcec73ba403f..f55073f37ac2 100644 --- a/src/chrome/content/rules/Zaehlwerk.net.xml +++ b/src/chrome/content/rules/Zaehlwerk.net.xml @@ -8,7 +8,7 @@ Fetch error: http://mail.zaehlwerk.net/ => https://mail.zaehlwerk.net/: (51, "SS - Zwmail.de.xml --> - + @@ -20,7 +20,7 @@ Fetch error: http://mail.zaehlwerk.net/ => https://mail.zaehlwerk.net/: (51, "SS - + - + diff --git a/src/chrome/content/rules/Zahnarzt-herrieden.de.xml b/src/chrome/content/rules/Zahnarzt-herrieden.de.xml new file mode 100644 index 000000000000..eb7d8b7b41ee --- /dev/null +++ b/src/chrome/content/rules/Zahnarzt-herrieden.de.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/Zakonypreludi.sk.xml b/src/chrome/content/rules/Zakonypreludi.sk.xml new file mode 100644 index 000000000000..cf4454dafbc3 --- /dev/null +++ b/src/chrome/content/rules/Zakonypreludi.sk.xml @@ -0,0 +1,24 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/Zakonyprolidi.cz.xml b/src/chrome/content/rules/Zakonyprolidi.cz.xml index 447907a07fda..55b7b10bcd0b 100644 --- a/src/chrome/content/rules/Zakonyprolidi.cz.xml +++ b/src/chrome/content/rules/Zakonyprolidi.cz.xml @@ -1,23 +1,27 @@ - - + atom.zakonyprolidi.cz +https://zakonyprolidi.cz has certificate mismatch, but +http://zakonyprolidi.cz redirects to http://zakonyprolidi.cz +https://zakonyprolidi.cz has correct certificate +--> + + + + diff --git a/src/chrome/content/rules/Zam.xml b/src/chrome/content/rules/Zam.xml index 944a5ed7b9b7..307a2224a569 100644 --- a/src/chrome/content/rules/Zam.xml +++ b/src/chrome/content/rules/Zam.xml @@ -1,30 +1,87 @@ - - + + + + + + + + + + + + + + - + - - - + + + + + + + + diff --git a/src/chrome/content/rules/Zanbase.com.xml b/src/chrome/content/rules/Zanbase.com.xml new file mode 100644 index 000000000000..233f85512ec8 --- /dev/null +++ b/src/chrome/content/rules/Zanbase.com.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Zanesville_Times_Recorder.xml b/src/chrome/content/rules/Zanesville_Times_Recorder.xml index 57dfc957717b..c9d4af5cb9bd 100644 --- a/src/chrome/content/rules/Zanesville_Times_Recorder.xml +++ b/src/chrome/content/rules/Zanesville_Times_Recorder.xml @@ -34,7 +34,7 @@ - + - + https://ad.zanox.com/: (60, 'SSL certificat * Secured by us --> - + @@ -43,7 +43,7 @@ Fetch error: http://ad.zanox.com/ => https://ad.zanox.com/: (60, 'SSL certificat - + https://www.zapchain.com/: (6, 'Could not r * Not secured by us <= mismatched --> - + diff --git a/src/chrome/content/rules/Zap_Lab.xml b/src/chrome/content/rules/Zap_Lab.xml index fe107c978a81..c529109b22b1 100644 --- a/src/chrome/content/rules/Zap_Lab.xml +++ b/src/chrome/content/rules/Zap_Lab.xml @@ -24,7 +24,7 @@ Fetch error: http://www.thezaplab.com/ => https://www.thezaplab.com/: (28, 'Conn - .thezaplab.com --> - + @@ -34,7 +34,7 @@ Fetch error: http://www.thezaplab.com/ => https://www.thezaplab.com/: (28, 'Conn --> - + https://zaption.com/: (51, "SSL: no alternat Fetch error: http://www.zaption.com/ => https://www.zaption.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.zaption.com'") --> - + @@ -16,4 +16,4 @@ Fetch error: http://www.zaption.com/ => https://www.zaption.com/: (51, "SSL: no - \ No newline at end of file + diff --git a/src/chrome/content/rules/Zapunited.xml b/src/chrome/content/rules/Zapunited.xml deleted file mode 100644 index 8bd0a8422c7f..000000000000 --- a/src/chrome/content/rules/Zapunited.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Zataz.com-falsemixed.xml b/src/chrome/content/rules/Zataz.com-falsemixed.xml deleted file mode 100644 index 89b645c3a654..000000000000 --- a/src/chrome/content/rules/Zataz.com-falsemixed.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Zataz.com.xml b/src/chrome/content/rules/Zataz.com.xml new file mode 100644 index 000000000000..12834e245beb --- /dev/null +++ b/src/chrome/content/rules/Zataz.com.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Zataz.xml b/src/chrome/content/rules/Zataz.xml deleted file mode 100644 index 986de4b8b5f5..000000000000 --- a/src/chrome/content/rules/Zataz.xml +++ /dev/null @@ -1,80 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Zattoo.com.xml b/src/chrome/content/rules/Zattoo.com.xml index b25bc491b546..ecf30df11489 100644 --- a/src/chrome/content/rules/Zattoo.com.xml +++ b/src/chrome/content/rules/Zattoo.com.xml @@ -10,11 +10,21 @@ - partner.zattoo.com --> + + + + + + + + + + diff --git a/src/chrome/content/rules/Zayo.com.xml b/src/chrome/content/rules/Zayo.com.xml index 6d1c0c77ef2d..dca2784c0082 100644 --- a/src/chrome/content/rules/Zayo.com.xml +++ b/src/chrome/content/rules/Zayo.com.xml @@ -28,7 +28,7 @@ Fetch error: http://www.zayo.com/ => https://www.zayo.com/: Too many redirects w * Secured by us --> - + diff --git a/src/chrome/content/rules/Zaytuna.edu.xml b/src/chrome/content/rules/Zaytuna.edu.xml new file mode 100644 index 000000000000..9455991bb0b4 --- /dev/null +++ b/src/chrome/content/rules/Zaytuna.edu.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Zazzle-mismatches.xml b/src/chrome/content/rules/Zazzle-mismatches.xml index 8a834d0e1bbf..ebb5ac41e544 100644 --- a/src/chrome/content/rules/Zazzle-mismatches.xml +++ b/src/chrome/content/rules/Zazzle-mismatches.xml @@ -2,9 +2,9 @@ - + - + diff --git a/src/chrome/content/rules/Zdassets.com.xml b/src/chrome/content/rules/Zdassets.com.xml index 3c10dc8a463e..230d27b8dd27 100644 --- a/src/chrome/content/rules/Zdassets.com.xml +++ b/src/chrome/content/rules/Zdassets.com.xml @@ -30,7 +30,7 @@ --> - + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Zefflin.com.xml b/src/chrome/content/rules/Zefflin.com.xml index 37d9eb6c4aae..f32cef302f07 100644 --- a/src/chrome/content/rules/Zefflin.com.xml +++ b/src/chrome/content/rules/Zefflin.com.xml @@ -25,8 +25,8 @@ - - + + ssl) - - inserieren - - premium - - shop - - ssl - - - Mixed content: - - - css on jobs from css ¹ - - - Images on jobs from images ² - - Images on shop from $self ² - - ¹ Unsecurable <= dropped - ² Secured by us - + Connection refused: + - a2.zeit.de + - alumni.zeit.de + - api.zeit.de + - apollo.zeit.de + - archiv.zeit.de + - www.archiv.zeit.de + - arztsuche.zeit.de + - audio.zeit.de + - buch.zeit.de + - cc01.zeit.de + - ccreport.zeit.de + - cmsdev.zeit.de + - community01.zeit.de + - counter.zeit.de + - www.debatte.zeit.de + - developer.zeit.de + - fb.zeit.de + - freepda.zeit.de + - frenzy.zeit.de + - hermes.zeit.de + - horchen.zeit.de + - ipadbe-stage.zeit.de + - hangman.k8s.zeit.de + - images.k8s.zeit.de + - master.k8s.zeit.de + - nixnginx.k8s.zeit.de + - prometheus.k8s.zeit.de + - prometheus-alerts.k8s.zeit.de + - prometheus-pushgw.k8s.zeit.de + - puzzle.k8s.zeit.de + - puzzle-staging.k8s.zeit.de + - rancher.k8s.zeit.de + - registry.k8s.zeit.de + - zeus.k8s.zeit.de + - leto.zeit.de + - leto2.zeit.de + - m.zeit.de + - ma.zeit.de + - mail-gw.zeit.de + - mailing.zeit.de + - media.zeit.de + - medien.zeit.de + - meinestartseite.zeit.de + - member.zeit.de + - minos.zeit.de + - mobil.zeit.de + - mobile.zeit.de + - news.zeit.de + - www.news.zeit.de + - newsletter.zeit.de + - onlineftp.zeit.de + - ns3.zeit.de + - partnersuche.zeit.de + - payment.zeit.de + - pdf.zeit.de + - pdfarchiv.zeit.de + - phpscripts.zeit.de + - presse.zeit.de + - service.zeit.de + - reach.zeit.de + - redirects.zeit.de + - rezensionen.zeit.de + - www.rezensionen.zeit.de + - schach-alt.zeit.de + - schule.zeit.de + - shoptest.zeit.de + - spiele.zeit.de + - tc-angebote.zeit.de + - studium.zeit.de + - veranstaltungen.zeit.de + - vertigo.zeit.de + - videoxfer.zeit.de + - xml.zeit.de + - zeitverlag.zeit.de + + Self-signed cert: + - a4-ilo.zeit.de + - cds.zeit.de + - cds2.zeit.de + - e1.zeit.de + - ftp.zeit.de + - id.zeit.de + - mail01.zeit.de + - www.mut-zur-nachhaltigkeit.zeit.de + - openvpn.zeit.de + - remotezv.zeit.de + - senioren.zeit.de + + Cert mismatch: + - altesblog.zeit.de + - angebote.zeit.de + - automarkt.zeit.de + - hire.boa.zeit.de + - cuk.zeit.de + - filemaker12.zeit.de + - ipadbe2.zeit.de + - kunst.zeit.de + - mdm.zeit.de + - rawrengage.zeit.de + - www.premium.zeit.de + - premium01.zeit.de + - www.ranking.zeit.de + - ranking2.zeit.de + - studenten.zeit.de + - studiengaenge2.zeit.de + - uni.zeit.de + - veranstaltung.zeit.de + - video.zeit.de + - www.zeitreisen.zeit.de + + Cert expired: + - newblog.zeit.de + - schach-test.zeit.de + - talk.zeit.de + - webapp.zeit.de + + Timeout: + - anzeigen.zeit.de + - cs-prod.zeit.de + - cs-prod-test.zeit.de + - immobilien.zeit.de + - logging.zeit.de + - mantis.zeit.de + - services.zeit.de + - vivi.zeit.de + - web1.zeit.de + - webmail3.zeit.de + - zip6.zeit.de + + Chain issues: + - editor.zeit.de + - editor-2.zeit.de + + TLS error: + - c4.zeit.de + - ferienwohnungen.zeit.de + - immowelt.zeit.de --> - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ZeldaWiki.org.xml b/src/chrome/content/rules/ZeldaWiki.org.xml new file mode 100644 index 000000000000..4539ccc64c89 --- /dev/null +++ b/src/chrome/content/rules/ZeldaWiki.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Zello.com.xml b/src/chrome/content/rules/Zello.com.xml new file mode 100644 index 000000000000..1cb8f071c424 --- /dev/null +++ b/src/chrome/content/rules/Zello.com.xml @@ -0,0 +1,29 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Zemanta.xml b/src/chrome/content/rules/Zemanta.xml index 98724d09e31c..bc6cb8706f2e 100644 --- a/src/chrome/content/rules/Zemanta.xml +++ b/src/chrome/content/rules/Zemanta.xml @@ -1,89 +1,51 @@ - - - - - + + + + + + + + + + + + + + + - + + - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + diff --git a/src/chrome/content/rules/Zen-Internet.xml b/src/chrome/content/rules/Zen-Internet.xml index 9cbbbbfeaa26..4a65d5b8d16b 100644 --- a/src/chrome/content/rules/Zen-Internet.xml +++ b/src/chrome/content/rules/Zen-Internet.xml @@ -35,7 +35,7 @@ - + - + + + + + + + + + + diff --git a/src/chrome/content/rules/ZenMate.com.xml b/src/chrome/content/rules/ZenMate.com.xml index 683e29698f37..9ea522325d3a 100644 --- a/src/chrome/content/rules/ZenMate.com.xml +++ b/src/chrome/content/rules/ZenMate.com.xml @@ -146,7 +146,7 @@ www.zenmate.cl ¹ --> - + diff --git a/src/chrome/content/rules/Zen_Cart.xml b/src/chrome/content/rules/Zen_Cart.xml index 446af2eec223..bb6048949079 100644 --- a/src/chrome/content/rules/Zen_Cart.xml +++ b/src/chrome/content/rules/Zen_Cart.xml @@ -12,7 +12,7 @@ - + https://blog.zencoder.com/: (60, 'SSL * Secured by us --> - + @@ -36,7 +36,7 @@ Fetch error: http://blog.zencoder.com/ => https://blog.zencoder.com/: (60, 'SSL - + - + @@ -72,8 +72,8 @@ Fetch error: http://support.zend.com/ => https://support.zend.com/: (60, 'SSL ce - - + + https://zendition.net/: (6, 'Could not resolve host: zendition.net') -Fetch error: http://www.zendition.net/ => https://www.zendition.net/: (6, 'Could not resolve host: www.zendition.net') - - For other Portner Press coverage, see Zendition.net.xml. - - - Mixed content: - - - css from fonts.googleapis.com * - - * Secured by us - ---> - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Zendy_Labs.xml b/src/chrome/content/rules/Zendy_Labs.xml deleted file mode 100644 index 9a820a50467a..000000000000 --- a/src/chrome/content/rules/Zendy_Labs.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Zenfolio.xml b/src/chrome/content/rules/Zenfolio.xml index 4a7e2ddb1bf3..213bc332b659 100644 --- a/src/chrome/content/rules/Zenfolio.xml +++ b/src/chrome/content/rules/Zenfolio.xml @@ -16,7 +16,7 @@ - + diff --git a/src/chrome/content/rules/ZeniMax.com.xml b/src/chrome/content/rules/ZeniMax.com.xml index b817caf02be6..14408de6f152 100644 --- a/src/chrome/content/rules/ZeniMax.com.xml +++ b/src/chrome/content/rules/ZeniMax.com.xml @@ -6,16 +6,16 @@ - ElderScrolls.com.xml - Elder_Scrolls_Online.com.xml - Dishonored.com.xml - - Id-Software.com.xml - ZeniMaxOnline.com.xml + Timeout: + dialin.zenimax.com Login required: ausvpn.zenimax.com Invalid certificate: cdn.zenimax.com - static.zenimax.com No working URL known: lyncwebext.zenimax.com @@ -26,7 +26,6 @@ - @@ -34,9 +33,6 @@ - - diff --git a/src/chrome/content/rules/ZenithMedia.net.xml b/src/chrome/content/rules/ZenithMedia.net.xml new file mode 100644 index 000000000000..fe4929c73ff6 --- /dev/null +++ b/src/chrome/content/rules/ZenithMedia.net.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/Zenodo.org.xml b/src/chrome/content/rules/Zenodo.org.xml new file mode 100644 index 000000000000..a524d7f1456f --- /dev/null +++ b/src/chrome/content/rules/Zenodo.org.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Zenos_Forensic_Site.xml b/src/chrome/content/rules/Zenos_Forensic_Site.xml index f8cfe3e7acd9..90f47d3ed2aa 100644 --- a/src/chrome/content/rules/Zenos_Forensic_Site.xml +++ b/src/chrome/content/rules/Zenos_Forensic_Site.xml @@ -8,7 +8,7 @@ - + https://store.zentyal.com/: (60, 'SSL This ruleset is otherwise entirely and woefully incomplete. --> - + diff --git a/src/chrome/content/rules/Zentyal.org.xml b/src/chrome/content/rules/Zentyal.org.xml index d46818534b29..195e64a9bc15 100644 --- a/src/chrome/content/rules/Zentyal.org.xml +++ b/src/chrome/content/rules/Zentyal.org.xml @@ -27,7 +27,7 @@ Fetch error: http://wiki.zentyal.org/ => https://wiki.zentyal.org/: (60, 'SSL ce - wiki.zentyal.org --> - + diff --git a/src/chrome/content/rules/Zerigo.com.xml b/src/chrome/content/rules/Zerigo.com.xml index a396c56da015..270c33636ee3 100644 --- a/src/chrome/content/rules/Zerigo.com.xml +++ b/src/chrome/content/rules/Zerigo.com.xml @@ -11,7 +11,7 @@ Fetch error: http://www.zerigo.com/ => https://www.zerigo.com/: (6, 'Could not r - manage --> - + diff --git a/src/chrome/content/rules/Zeringo.xml b/src/chrome/content/rules/Zeringo.xml deleted file mode 100644 index 74322286941b..000000000000 --- a/src/chrome/content/rules/Zeringo.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Zero-Robotics.xml b/src/chrome/content/rules/Zero-Robotics.xml index a37f812a1bf1..7c3b3e1c2b7c 100644 --- a/src/chrome/content/rules/Zero-Robotics.xml +++ b/src/chrome/content/rules/Zero-Robotics.xml @@ -7,12 +7,12 @@ Fetch error: http://www.zerorobotics.org/ => https://www.zerorobotics.org/: (28, Disabled by https-everywhere-checker because: Fetch error: http://zerorobotics.org/ => https://zerorobotics.org/: (28, 'Connection timed out after 10001 milliseconds') --> - + - + diff --git a/src/chrome/content/rules/ZeroBin.net.xml b/src/chrome/content/rules/ZeroBin.net.xml index aa217501fa4e..2ed93c804848 100644 --- a/src/chrome/content/rules/ZeroBin.net.xml +++ b/src/chrome/content/rules/ZeroBin.net.xml @@ -6,4 +6,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/ZeroBlock.com.xml b/src/chrome/content/rules/ZeroBlock.com.xml deleted file mode 100644 index 8e23ebec4a83..000000000000 --- a/src/chrome/content/rules/ZeroBlock.com.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/ZeroC.com.xml b/src/chrome/content/rules/ZeroC.com.xml index c212e5913730..958d572f19b2 100644 --- a/src/chrome/content/rules/ZeroC.com.xml +++ b/src/chrome/content/rules/ZeroC.com.xml @@ -1,9 +1,8 @@ - + - + diff --git a/src/chrome/content/rules/Zero_Day_Initiative.com.xml b/src/chrome/content/rules/Zero_Day_Initiative.com.xml index 366df993c7ad..61c089ba808d 100644 --- a/src/chrome/content/rules/Zero_Day_Initiative.com.xml +++ b/src/chrome/content/rules/Zero_Day_Initiative.com.xml @@ -1,25 +1,12 @@ - + + - - - - - - + diff --git a/src/chrome/content/rules/Zerowater.com.xml b/src/chrome/content/rules/Zerowater.com.xml index 11cbd28b1976..494fa1ed3ddd 100644 --- a/src/chrome/content/rules/Zerowater.com.xml +++ b/src/chrome/content/rules/Zerowater.com.xml @@ -11,7 +11,7 @@ Fetch error: http://help-flint-mi.zerowater.com/ => https://help-flint-mi.zerowa - consumerinfo (issue with cert chain) --> - + diff --git a/src/chrome/content/rules/Zerve.xml b/src/chrome/content/rules/Zerve.xml deleted file mode 100644 index 7a7678646d70..000000000000 --- a/src/chrome/content/rules/Zerve.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Zeta.Systems.xml b/src/chrome/content/rules/Zeta.Systems.xml deleted file mode 100644 index ce78b217a83b..000000000000 --- a/src/chrome/content/rules/Zeta.Systems.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Zetel.de.xml b/src/chrome/content/rules/Zetel.de.xml index 009a3286a360..bf120732b3f8 100644 --- a/src/chrome/content/rules/Zetel.de.xml +++ b/src/chrome/content/rules/Zetel.de.xml @@ -11,7 +11,7 @@ Fetch error: http://intranet.zetel.de/ => https://intranet.zetel.de/: (51, "SSL: --> - + diff --git a/src/chrome/content/rules/ZeusHash.com.xml b/src/chrome/content/rules/ZeusHash.com.xml deleted file mode 100644 index 6a5f960ebc62..000000000000 --- a/src/chrome/content/rules/ZeusHash.com.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Zeusclicks.com.xml b/src/chrome/content/rules/Zeusclicks.com.xml index 3ed9f7e7f149..1fea83690c14 100644 --- a/src/chrome/content/rules/Zeusclicks.com.xml +++ b/src/chrome/content/rules/Zeusclicks.com.xml @@ -32,7 +32,7 @@ - Images on (www.)? from ^zeusclicks.com --> - + diff --git a/src/chrome/content/rules/ZgnCDN.com.xml b/src/chrome/content/rules/ZgnCDN.com.xml deleted file mode 100644 index 7ca7f71710b2..000000000000 --- a/src/chrome/content/rules/ZgnCDN.com.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/Zhaw.ch.xml b/src/chrome/content/rules/Zhaw.ch.xml new file mode 100644 index 000000000000..14ee4c254b10 --- /dev/null +++ b/src/chrome/content/rules/Zhaw.ch.xml @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Zhihu.xml b/src/chrome/content/rules/Zhihu.xml index cb46d57a6c44..3e26724c64ed 100644 --- a/src/chrome/content/rules/Zhihu.xml +++ b/src/chrome/content/rules/Zhihu.xml @@ -11,8 +11,6 @@ Mixcontent but no function issue: daily.zhihu.com news-at.zhihu.com - - Redirect to http: worldcup2014.zhihu.com --> @@ -32,17 +30,15 @@ + - - - diff --git a/src/chrome/content/rules/Ziedot.lv.xml b/src/chrome/content/rules/Ziedot.lv.xml index 33fafbdd945f..c2e7c3407b03 100644 --- a/src/chrome/content/rules/Ziedot.lv.xml +++ b/src/chrome/content/rules/Ziedot.lv.xml @@ -4,7 +4,7 @@ - + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Ziff-Davis-mismatches.xml b/src/chrome/content/rules/Ziff-Davis-mismatches.xml deleted file mode 100644 index 6aaa82d2d2f3..000000000000 --- a/src/chrome/content/rules/Ziff-Davis-mismatches.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Ziff-Davis.xml b/src/chrome/content/rules/Ziff-Davis.xml index 87b42d8f3f4c..d2fc5aa6b7d0 100644 --- a/src/chrome/content/rules/Ziff-Davis.xml +++ b/src/chrome/content/rules/Ziff-Davis.xml @@ -1,13 +1,9 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Ziggo.xml b/src/chrome/content/rules/Ziggo.xml index 9ae6eec60faa..a1f8cbd77263 100644 --- a/src/chrome/content/rules/Ziggo.xml +++ b/src/chrome/content/rules/Ziggo.xml @@ -1,7 +1,6 @@ - + - + - - - - - - - - diff --git a/src/chrome/content/rules/Zillow.com.xml b/src/chrome/content/rules/Zillow.com.xml new file mode 100644 index 000000000000..bd3d7c25d8a4 --- /dev/null +++ b/src/chrome/content/rules/Zillow.com.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Zillow.xml b/src/chrome/content/rules/Zillow.xml deleted file mode 100644 index 5ac83f231eef..000000000000 --- a/src/chrome/content/rules/Zillow.xml +++ /dev/null @@ -1,105 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Zillowstatic.com.xml b/src/chrome/content/rules/Zillowstatic.com.xml new file mode 100644 index 000000000000..e3a8212df0f6 --- /dev/null +++ b/src/chrome/content/rules/Zillowstatic.com.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Zilog.com.xml b/src/chrome/content/rules/Zilog.com.xml deleted file mode 100644 index 426cab3d2ea3..000000000000 --- a/src/chrome/content/rules/Zilog.com.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Zimbatm.com.xml b/src/chrome/content/rules/Zimbatm.com.xml index 87e8a2a3d063..f5ea3716346b 100644 --- a/src/chrome/content/rules/Zimbatm.com.xml +++ b/src/chrome/content/rules/Zimbatm.com.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.zimbatm.com/ => https://www.zimbatm.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.zimbatm.com'") --> - + diff --git a/src/chrome/content/rules/Zimbra.com.xml b/src/chrome/content/rules/Zimbra.com.xml new file mode 100644 index 000000000000..7301987b4899 --- /dev/null +++ b/src/chrome/content/rules/Zimbra.com.xml @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Zimbra.xml b/src/chrome/content/rules/Zimbra.xml deleted file mode 100644 index ac65b6b5acde..000000000000 --- a/src/chrome/content/rules/Zimbra.xml +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Zimperium.xml b/src/chrome/content/rules/Zimperium.xml index b574ec788c90..2193dc37f794 100644 --- a/src/chrome/content/rules/Zimperium.xml +++ b/src/chrome/content/rules/Zimperium.xml @@ -2,7 +2,7 @@ - + diff --git a/src/chrome/content/rules/Zing_Checkout.com-problematic.xml b/src/chrome/content/rules/Zing_Checkout.com-problematic.xml index f93f0cc9d986..d87bdfd014d1 100644 --- a/src/chrome/content/rules/Zing_Checkout.com-problematic.xml +++ b/src/chrome/content/rules/Zing_Checkout.com-problematic.xml @@ -5,7 +5,7 @@ - + diff --git a/src/chrome/content/rules/Zing_Checkout.com.xml b/src/chrome/content/rules/Zing_Checkout.com.xml index 290877d24a1e..2c0bf747b355 100644 --- a/src/chrome/content/rules/Zing_Checkout.com.xml +++ b/src/chrome/content/rules/Zing_Checkout.com.xml @@ -21,12 +21,11 @@ Fetch error: http://app.zingcheckout.com/ => https://app.zingcheckout.com/: (28, * Secured by us --> - + - + diff --git a/src/chrome/content/rules/Zip.ch.xml b/src/chrome/content/rules/Zip.ch.xml deleted file mode 100644 index 1d3bf745b90a..000000000000 --- a/src/chrome/content/rules/Zip.ch.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/Zipcar.xml b/src/chrome/content/rules/Zipcar.xml index 5e53e33638b4..81f3aa8e9025 100644 --- a/src/chrome/content/rules/Zipcar.xml +++ b/src/chrome/content/rules/Zipcar.xml @@ -1,9 +1,8 @@ - + @@ -28,7 +27,10 @@ Fetch error: http://drive.zipcar.com/ => https://drive.zipcar.com/: (6, 'Could n + + + @@ -62,7 +64,7 @@ Fetch error: http://drive.zipcar.com/ => https://drive.zipcar.com/: (6, 'Could n - + https://m.zipy.co.il/: (51, "SSL: no altern ˢ Secured by us --> - + diff --git a/src/chrome/content/rules/Zissousecure.com.xml b/src/chrome/content/rules/Zissousecure.com.xml index 36d4cd717d37..03d0b9e7c7b0 100644 --- a/src/chrome/content/rules/Zissousecure.com.xml +++ b/src/chrome/content/rules/Zissousecure.com.xml @@ -10,7 +10,7 @@ - + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Zoho-mismatches.xml b/src/chrome/content/rules/Zoho-mismatches.xml index 042c544de784..7c8c7315ee7e 100644 --- a/src/chrome/content/rules/Zoho-mismatches.xml +++ b/src/chrome/content/rules/Zoho-mismatches.xml @@ -7,7 +7,7 @@ - + https://www.zoho.co.jp/: (51, "SSL: no al * Secured by us --> - + diff --git a/src/chrome/content/rules/Zoho.xml b/src/chrome/content/rules/Zoho.xml index 4934056f00fb..d398b39b6af7 100644 --- a/src/chrome/content/rules/Zoho.xml +++ b/src/chrome/content/rules/Zoho.xml @@ -133,7 +133,7 @@ - + - + - + diff --git a/src/chrome/content/rules/Zom.im.xml b/src/chrome/content/rules/Zom.im.xml index f629e8a77a32..8dae3b5d7dbf 100644 --- a/src/chrome/content/rules/Zom.im.xml +++ b/src/chrome/content/rules/Zom.im.xml @@ -29,7 +29,7 @@ --> - + diff --git a/src/chrome/content/rules/Zomato.com.xml b/src/chrome/content/rules/Zomato.com.xml index dee789ca681c..6fedf98441a2 100644 --- a/src/chrome/content/rules/Zomato.com.xml +++ b/src/chrome/content/rules/Zomato.com.xml @@ -29,7 +29,7 @@ --> - + - + + + + + + + + + + + diff --git a/src/chrome/content/rules/Zong.xml b/src/chrome/content/rules/Zong.xml deleted file mode 100644 index 784a8c4f24f1..000000000000 --- a/src/chrome/content/rules/Zong.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/Zoo.org.xml b/src/chrome/content/rules/Zoo.org.xml new file mode 100644 index 000000000000..c54939739388 --- /dev/null +++ b/src/chrome/content/rules/Zoo.org.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/Zooku.xml b/src/chrome/content/rules/Zooku.xml index b0becfd73629..6b9ffdad0131 100644 --- a/src/chrome/content/rules/Zooku.xml +++ b/src/chrome/content/rules/Zooku.xml @@ -5,7 +5,7 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ZoomEye.org.xml b/src/chrome/content/rules/ZoomEye.org.xml index 37fdb12e89c5..b932125426f4 100644 --- a/src/chrome/content/rules/ZoomEye.org.xml +++ b/src/chrome/content/rules/ZoomEye.org.xml @@ -12,7 +12,7 @@ - + https://www.zoomerang.com/: (60, 'SSL mark this ruleset as mixedcontent. --> - + @@ -29,7 +29,7 @@ Fetch error: http://www.zoomerang.com/ => https://www.zoomerang.com/: (60, 'SSL - + - + diff --git a/src/chrome/content/rules/Zoosk.com.xml b/src/chrome/content/rules/Zoosk.com.xml index 10f390fe8393..113957ea7bac 100644 --- a/src/chrome/content/rules/Zoosk.com.xml +++ b/src/chrome/content/rules/Zoosk.com.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Non-2xx HTTP code: http://zoosk.com/ (200) => https://zoosk.com/ (403) --> - + diff --git a/src/chrome/content/rules/Zopa.xml b/src/chrome/content/rules/Zopa.xml deleted file mode 100644 index d4333d48421a..000000000000 --- a/src/chrome/content/rules/Zopa.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Zopim.com.xml b/src/chrome/content/rules/Zopim.com.xml new file mode 100644 index 000000000000..859a080bdfc5 --- /dev/null +++ b/src/chrome/content/rules/Zopim.com.xml @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Zopim.xml b/src/chrome/content/rules/Zopim.xml deleted file mode 100644 index 3d01e223c279..000000000000 --- a/src/chrome/content/rules/Zopim.xml +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/Zorpia.xml b/src/chrome/content/rules/Zorpia.xml index d5936e1f7381..66d8ba0d1a6f 100644 --- a/src/chrome/content/rules/Zorpia.xml +++ b/src/chrome/content/rules/Zorpia.xml @@ -120,16 +120,31 @@ - - + + + + + + + + + + + + + + + + + + + - @@ -140,4 +155,5 @@ - \ No newline at end of file + + diff --git a/src/chrome/content/rules/Zoznam.sk.xml b/src/chrome/content/rules/Zoznam.sk.xml new file mode 100644 index 000000000000..7f06af353017 --- /dev/null +++ b/src/chrome/content/rules/Zoznam.sk.xml @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/Zscaler.xml b/src/chrome/content/rules/Zscaler.xml index 8fcabeb65579..c73f9f4985bc 100644 --- a/src/chrome/content/rules/Zscaler.xml +++ b/src/chrome/content/rules/Zscaler.xml @@ -42,7 +42,7 @@ Non-2xx HTTP code: http://info.zscaler.com/images/forms/backRequiredGray.gif (20 ᵐ Not secured by us <= mismatched --> - + @@ -62,7 +62,7 @@ Non-2xx HTTP code: http://info.zscaler.com/images/forms/backRequiredGray.gif (20 - + + + + + + + + + + + diff --git a/src/chrome/content/rules/Zt03.net.xml b/src/chrome/content/rules/Zt03.net.xml index 842178c242b8..f6f58ee5137b 100644 --- a/src/chrome/content/rules/Zt03.net.xml +++ b/src/chrome/content/rules/Zt03.net.xml @@ -11,7 +11,7 @@ Fetch error: http://secure.zt03.net/ => https://secure.zt03.net/: (60, 'SSL cert - www.secure.zt03.net --> - + diff --git a/src/chrome/content/rules/Zugaina-mismatches.xml b/src/chrome/content/rules/Zugaina-mismatches.xml index bbe5999b2ac2..d5dedc5c6269 100644 --- a/src/chrome/content/rules/Zugaina-mismatches.xml +++ b/src/chrome/content/rules/Zugaina-mismatches.xml @@ -2,7 +2,7 @@ For other Zugaina coverage, see Zugaina.xml. --> - + diff --git a/src/chrome/content/rules/Zuhah.com.xml b/src/chrome/content/rules/Zuhah.com.xml index 0e772a12e0fa..8f920d11c80a 100644 --- a/src/chrome/content/rules/Zuhah.com.xml +++ b/src/chrome/content/rules/Zuhah.com.xml @@ -6,14 +6,14 @@ Fetch error: http://cdn.zuhah.com/ => https://cdn.zuhah.com/: (60, 'SSL certific Fetch error: http://www.zuhah.com/ => https://www.zuhah.com/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Zumzi.xml b/src/chrome/content/rules/Zumzi.xml deleted file mode 100644 index 0f14784291d2..000000000000 --- a/src/chrome/content/rules/Zumzi.xml +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/Zuse-Crew.de.xml b/src/chrome/content/rules/Zuse-Crew.de.xml index 109849db7acd..4053b6433bed 100644 --- a/src/chrome/content/rules/Zuse-Crew.de.xml +++ b/src/chrome/content/rules/Zuse-Crew.de.xml @@ -14,7 +14,7 @@ - + - - - - + + + + + - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - + diff --git a/src/chrome/content/rules/Zwiebelfreunde.de.xml b/src/chrome/content/rules/Zwiebelfreunde.de.xml index 571b3aa72b05..7fee6dd92d0d 100644 --- a/src/chrome/content/rules/Zwiebelfreunde.de.xml +++ b/src/chrome/content/rules/Zwiebelfreunde.de.xml @@ -1,10 +1,6 @@ - - - - + diff --git a/src/chrome/content/rules/Zwmail.de.xml b/src/chrome/content/rules/Zwmail.de.xml index 0756ccd8e00c..dbd697a6b6a1 100644 --- a/src/chrome/content/rules/Zwmail.de.xml +++ b/src/chrome/content/rules/Zwmail.de.xml @@ -16,7 +16,7 @@ - + - + diff --git a/src/chrome/content/rules/Zylon.net-falsemixed.xml b/src/chrome/content/rules/Zylon.net-falsemixed.xml deleted file mode 100644 index c5cf5741c99e..000000000000 --- a/src/chrome/content/rules/Zylon.net-falsemixed.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/Zylon.net.xml b/src/chrome/content/rules/Zylon.net.xml index 9de0ad78862e..21001c0a8d4d 100644 --- a/src/chrome/content/rules/Zylon.net.xml +++ b/src/chrome/content/rules/Zylon.net.xml @@ -1,48 +1,6 @@ - - - - + - - - - - - - - - - - - - - - - + diff --git a/src/chrome/content/rules/Zynga.tm.xml b/src/chrome/content/rules/Zynga.tm.xml index b3dc79894f04..ddac84d71bf5 100644 --- a/src/chrome/content/rules/Zynga.tm.xml +++ b/src/chrome/content/rules/Zynga.tm.xml @@ -16,7 +16,7 @@ --> - + - + - + + + + + + + + diff --git a/src/chrome/content/rules/aastocks.com.xml b/src/chrome/content/rules/aastocks.com.xml deleted file mode 100644 index 1817837a7748..000000000000 --- a/src/chrome/content/rules/aastocks.com.xml +++ /dev/null @@ -1,147 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/ab4all.com.xml b/src/chrome/content/rules/ab4all.com.xml index a33230fe8af6..e6aa5d2a2f19 100644 --- a/src/chrome/content/rules/ab4all.com.xml +++ b/src/chrome/content/rules/ab4all.com.xml @@ -20,7 +20,7 @@ - + + + + + + + + diff --git a/src/chrome/content/rules/aberystwythartscentre.co.uk.xml b/src/chrome/content/rules/aberystwythartscentre.co.uk.xml index 4026d7cd3ea5..ee63769c3014 100644 --- a/src/chrome/content/rules/aberystwythartscentre.co.uk.xml +++ b/src/chrome/content/rules/aberystwythartscentre.co.uk.xml @@ -1,22 +1,8 @@ - - - + + - - - - - + diff --git a/src/chrome/content/rules/abestpremium.com.xml b/src/chrome/content/rules/abestpremium.com.xml index f72d1760961b..06d6ee81abd6 100644 --- a/src/chrome/content/rules/abestpremium.com.xml +++ b/src/chrome/content/rules/abestpremium.com.xml @@ -19,7 +19,7 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/abma.de.xml b/src/chrome/content/rules/abma.de.xml index 8dd94632bc27..2099e621b990 100644 --- a/src/chrome/content/rules/abma.de.xml +++ b/src/chrome/content/rules/abma.de.xml @@ -19,6 +19,6 @@ - diff --git a/src/chrome/content/rules/abookapart.com.xml b/src/chrome/content/rules/abookapart.com.xml index d8ced9e971e9..23375d80e131 100644 --- a/src/chrome/content/rules/abookapart.com.xml +++ b/src/chrome/content/rules/abookapart.com.xml @@ -16,7 +16,7 @@ --> - + - + + + + + + + + + + + + diff --git a/src/chrome/content/rules/abuse.net.xml b/src/chrome/content/rules/abuse.net.xml new file mode 100644 index 000000000000..6cf6a3f1c865 --- /dev/null +++ b/src/chrome/content/rules/abuse.net.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/abw.blue.xml b/src/chrome/content/rules/abw.blue.xml new file mode 100644 index 000000000000..b0d2ef9a955f --- /dev/null +++ b/src/chrome/content/rules/abw.blue.xml @@ -0,0 +1,17 @@ + + + + + + + diff --git a/src/chrome/content/rules/academ.info.xml b/src/chrome/content/rules/academ.info.xml new file mode 100644 index 000000000000..4b744e886d2a --- /dev/null +++ b/src/chrome/content/rules/academ.info.xml @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/acast.com.xml b/src/chrome/content/rules/acast.com.xml index a20e08fd014c..d3a8950da1ae 100644 --- a/src/chrome/content/rules/acast.com.xml +++ b/src/chrome/content/rules/acast.com.xml @@ -1,64 +1,24 @@ - - + + + - - - - - - - - - - - - - - - - - - - - - - - + + + diff --git a/src/chrome/content/rules/accel-ppp.org.xml b/src/chrome/content/rules/accel-ppp.org.xml index cc851ffecaf3..0414ee8e753e 100644 --- a/src/chrome/content/rules/accel-ppp.org.xml +++ b/src/chrome/content/rules/accel-ppp.org.xml @@ -4,7 +4,7 @@ - + - + - + @@ -31,7 +31,7 @@ --> - + - - - + + - + - + diff --git a/src/chrome/content/rules/achieveservice.com.xml b/src/chrome/content/rules/achieveservice.com.xml index 514908b5bf5f..2031444a231a 100644 --- a/src/chrome/content/rules/achieveservice.com.xml +++ b/src/chrome/content/rules/achieveservice.com.xml @@ -26,7 +26,7 @@ --> - + https://rr.acme.com/: (6, 'Could not resolve host: rr.acme.com') + Fetch error: http://mail.rr.acme.com/ => https://mail.rr.acme.com/: (60, 'SSL certificate problem: unable to get local issuer certificate') + Fetch error: http://www.rr.acme.com/ => https://www.rr.acme.com/: (60, 'SSL certificate problem: unable to get local issuer certificate') + + Invalid certificate: + burner.acme.com + patton.acme.com + ftp.patton.acme.com + mail.patton.acme.com + www.patton.acme.com + + Refused: + beepbeep.acme.com + broadcast.acme.com + music.acme.com + www.music.acme.com + + Time out: + dns1-charta.acme.com + watches.acme.com + + Unreachable: + gate6.acme.com +--> + + + + + + + diff --git a/src/chrome/content/rules/acmp.ru.xml b/src/chrome/content/rules/acmp.ru.xml new file mode 100644 index 000000000000..f824f1ac2b1a --- /dev/null +++ b/src/chrome/content/rules/acmp.ru.xml @@ -0,0 +1,21 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/act-on.co.uk.xml b/src/chrome/content/rules/act-on.co.uk.xml index a96aefa86afd..11ecc9ef160f 100644 --- a/src/chrome/content/rules/act-on.co.uk.xml +++ b/src/chrome/content/rules/act-on.co.uk.xml @@ -6,14 +6,14 @@ Fetch error: http://act-on.co.uk/ => https://act-on.co.uk/: (28, 'Connection tim For other Act-On Software coverage, see act-on.com.xml. --> - + - + - - - - - - - - - - - - diff --git a/src/chrome/content/rules/act-on.com.xml b/src/chrome/content/rules/act-on.com.xml deleted file mode 100644 index c58508b64678..000000000000 --- a/src/chrome/content/rules/act-on.com.xml +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/act.org.xml b/src/chrome/content/rules/act.org.xml new file mode 100644 index 000000000000..3c49bddadef2 --- /dev/null +++ b/src/chrome/content/rules/act.org.xml @@ -0,0 +1,205 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/actiac.org.xml b/src/chrome/content/rules/actiac.org.xml index 33e9604f01e5..a92c7a2dbeac 100644 --- a/src/chrome/content/rules/actiac.org.xml +++ b/src/chrome/content/rules/actiac.org.xml @@ -55,7 +55,7 @@ - + - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/actionnetwork.org.xml b/src/chrome/content/rules/actionnetwork.org.xml index 78ea443aefec..e53da93bf1e3 100644 --- a/src/chrome/content/rules/actionnetwork.org.xml +++ b/src/chrome/content/rules/actionnetwork.org.xml @@ -22,7 +22,7 @@ - + + + + + + + diff --git a/src/chrome/content/rules/active24.co.uk.xml b/src/chrome/content/rules/active24.co.uk.xml index d64641bb8a5d..7e871196bcfc 100644 --- a/src/chrome/content/rules/active24.co.uk.xml +++ b/src/chrome/content/rules/active24.co.uk.xml @@ -1,14 +1,9 @@ - - + - diff --git a/src/chrome/content/rules/active24.com.xml b/src/chrome/content/rules/active24.com.xml index a67c506316ba..15deb5944a64 100644 --- a/src/chrome/content/rules/active24.com.xml +++ b/src/chrome/content/rules/active24.com.xml @@ -19,7 +19,7 @@ Fetch error: http://my.active24.com/ => https://my.active24.com/: (6, 'Could not Self signed: - exchange.active24.com --> - + diff --git a/src/chrome/content/rules/active24.cz.xml b/src/chrome/content/rules/active24.cz.xml index f35da7adb842..e3dadbdf2fdb 100644 --- a/src/chrome/content/rules/active24.cz.xml +++ b/src/chrome/content/rules/active24.cz.xml @@ -1,7 +1,4 @@ - - + @@ -42,11 +39,11 @@ Fetch error: http://rt.active24.cz/ => https://rt.active24.cz/: (28, 'Connection - + diff --git a/src/chrome/content/rules/active24.de.xml b/src/chrome/content/rules/active24.de.xml index 90b25ac940be..7f57c751286b 100644 --- a/src/chrome/content/rules/active24.de.xml +++ b/src/chrome/content/rules/active24.de.xml @@ -1,14 +1,9 @@ - - + - diff --git a/src/chrome/content/rules/active24.es.xml b/src/chrome/content/rules/active24.es.xml index 3b28f6ccc5cc..3d621f1305fc 100644 --- a/src/chrome/content/rules/active24.es.xml +++ b/src/chrome/content/rules/active24.es.xml @@ -1,14 +1,9 @@ - - + - diff --git a/src/chrome/content/rules/active24.nl.xml b/src/chrome/content/rules/active24.nl.xml index 1850b7b30ab0..632e78bba376 100644 --- a/src/chrome/content/rules/active24.nl.xml +++ b/src/chrome/content/rules/active24.nl.xml @@ -1,17 +1,13 @@ - - + - diff --git a/src/chrome/content/rules/actor.im.xml b/src/chrome/content/rules/actor.im.xml index 9baebb69647c..83dcec70e47b 100644 --- a/src/chrome/content/rules/actor.im.xml +++ b/src/chrome/content/rules/actor.im.xml @@ -13,7 +13,7 @@ Fetch error: http://www.actor.im/ => https://www.actor.im/: (28, 'Operation time ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -25,8 +25,8 @@ Fetch error: http://www.actor.im/ => https://www.actor.im/: (28, 'Operation time --> - - + + https://acxsc.acxiom.com/: (51, "SSL: no alternative certificate subject name matches target host name 'acxsc.acxiom.com'") +Fetch error: http://aeopdevvip.acxiom.com/ => https://aeopdevvip.acxiom.com/: (35, 'OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to aeopdevvip.acxiom.com:443 ') +Fetch error: http://aeopprodvip.acxiom.com/ => https://aeopprodvip.acxiom.com/: (35, 'OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to aeopprodvip.acxiom.com:443 ') +Fetch error: http://aeraisedevvip.acxiom.com/ => https://aeraisedevvip.acxiom.com/: (35, 'OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to aeraisedevvip.acxiom.com:443 ') +Fetch error: http://aeraiseprodvip.acxiom.com/ => https://aeraiseprodvip.acxiom.com/: (35, 'OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to aeraiseprodvip.acxiom.com:443 ') +Fetch error: http://catcher.acxiom.com/ => https://catcher.acxiom.com/: (28, 'Connection timed out after 20000 milliseconds') +Fetch error: http://cert-services.acxiom.com/ => https://cert-services.acxiom.com/: (6, 'Could not resolve host: cert-services.acxiom.com') +Fetch error: http://cipix.acxiom.com/ => https://cipix.acxiom.com/: (51, "SSL: no alternative certificate subject name matches target host name 'cipix.acxiom.com'") +Fetch error: http://fts2sfg.acxiom.com/ => https://fts2sfg.acxiom.com/: (28, 'Connection timed out after 20000 milliseconds') +Fetch error: http://investors.acxiom.com/ => https://investors.acxiom.com/: (6, 'Could not resolve host: investors.acxiom.com') +Fetch error: http://owa.acxiom.com/ => https://owa.acxiom.com/: (6, 'Could not resolve host: owa.acxiom.com') +Fetch error: http://services.acxiom.com/ => https://services.acxiom.com/: (6, 'Could not resolve host: services.acxiom.com') +Fetch error: http://sspwreset.acxiom.com/ => https://sspwreset.acxiom.com/: (28, 'Connection timed out after 20000 milliseconds') +Fetch error: http://thrivent.acxiom.com/ => https://thrivent.acxiom.com/: (28, 'Connection timed out after 20000 milliseconds') +Fetch error: http://vmb1.eu.acxiom.com/ => https://vmb1.eu.acxiom.com/: (28, 'Connection timed out after 20000 milliseconds') + + Other Acxiom coverage: + + - About_the_Data.com.xml Problematic hosts in *acxiom.com: - - isapps ᶜ - - jobs ᵐ - - ᶜ Server sends no certificate chain, see https://whatsmychaincert.com - ᵐ Mismatched - - - Insecure cookies are set for these hosts: ᶜ - - - isapps.acxiom.com - - ᶜ See https://owasp.org/index.php/SecureFlag + - ^ (timeout over https) + - aos (mismatched) + - axposqa (TLS error) + - axposprod (TLS error) + - amexapi (TLS error) + - cagent (expired) + - esmdmpoc1 (self signed) + - demo (TLS error) + - fpc (mismatched) + - metlife.delivery (certificate chain) + - icsdirect (mismatched) + - isapps (403 over https) + - listtracker (mismatched) + - jobs (mismatched) + - offers (mismatched) + - panopticxcustomertest (expired) + - panopticxiwscustomertest (TLS error) + - rts (certificate chain) + - sfgexttst (TLS error) + - sipexternal (mismatched) + - sip (mismatched) + - webconser1 (self signed) + - webconser2 (self signed) --> - + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ad-m.asia.xml b/src/chrome/content/rules/ad-m.asia.xml index 3596084738d9..f39e1b2db5f5 100644 --- a/src/chrome/content/rules/ad-m.asia.xml +++ b/src/chrome/content/rules/ad-m.asia.xml @@ -5,4 +5,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/adamcod.es.xml b/src/chrome/content/rules/adamcod.es.xml deleted file mode 100644 index 109310f1530e..000000000000 --- a/src/chrome/content/rules/adamcod.es.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/adblockbrowser.org.xml b/src/chrome/content/rules/adblockbrowser.org.xml index 21268a9cb957..a2d3a81b37fe 100644 --- a/src/chrome/content/rules/adblockbrowser.org.xml +++ b/src/chrome/content/rules/adblockbrowser.org.xml @@ -4,7 +4,7 @@ - + https://www.adc-srv.net/: (51, "SSL: no ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -28,7 +28,7 @@ Fetch error: http://www.adc-srv.net/ => https://www.adc-srv.net/: (51, "SSL: no - + - + + + + + + + + diff --git a/src/chrome/content/rules/addthiscdn.com.xml b/src/chrome/content/rules/addthiscdn.com.xml index 47e6a55ec546..67a16c9c2081 100644 --- a/src/chrome/content/rules/addthiscdn.com.xml +++ b/src/chrome/content/rules/addthiscdn.com.xml @@ -16,7 +16,7 @@ - + + + + + + + + + + diff --git a/src/chrome/content/rules/adguard.com.xml b/src/chrome/content/rules/adguard.com.xml index 174f9591ca40..880fca10ce06 100644 --- a/src/chrome/content/rules/adguard.com.xml +++ b/src/chrome/content/rules/adguard.com.xml @@ -20,7 +20,7 @@ - + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/adlantis.jp.xml b/src/chrome/content/rules/adlantis.jp.xml deleted file mode 100644 index 0a4257b838ae..000000000000 --- a/src/chrome/content/rules/adlantis.jp.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/admincontrol.com.xml b/src/chrome/content/rules/admincontrol.com.xml index da4bcdec73c5..903c6a8a584c 100644 --- a/src/chrome/content/rules/admincontrol.com.xml +++ b/src/chrome/content/rules/admincontrol.com.xml @@ -25,7 +25,7 @@ - + - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/adnet.pro.xml b/src/chrome/content/rules/adnet.pro.xml index 6a8355c33f34..ffdb43dac379 100644 --- a/src/chrome/content/rules/adnet.pro.xml +++ b/src/chrome/content/rules/adnet.pro.xml @@ -10,7 +10,7 @@ - + @@ -20,7 +20,7 @@ --> - + https://adnetexpress.net/: (28, 'Operat Fetch error: http://www.adnetexpress.net/ => https://www.adnetexpress.net/: (28, 'Operation timed out after 30001 milliseconds with 0 bytes received') --> - + - + - + https://services.adr.org/: (28, 'Connec - www.adr.org --> - + @@ -58,7 +58,7 @@ Fetch error: http://services.adr.org/ => https://services.adr.org/: (28, 'Connec - + https://adreclaim.com/: (51, "SSL: no alternative certificate subject name matches target host name 'adreclaim.com'") --> - + @@ -13,7 +13,7 @@ Fetch error: http://adreclaim.com/ => https://adreclaim.com/: (51, "SSL: no alte - + - + - + - - - - - - - - - - diff --git a/src/chrome/content/rules/adsnative.com.xml b/src/chrome/content/rules/adsnative.com.xml index 2a941b598c3b..6a7714faf659 100644 --- a/src/chrome/content/rules/adsnative.com.xml +++ b/src/chrome/content/rules/adsnative.com.xml @@ -24,7 +24,7 @@ Fetch error: http://adsnative.com/ => https://www.adsnative.com/: (28, 'Connecti ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -50,7 +50,7 @@ Fetch error: http://adsnative.com/ => https://www.adsnative.com/: (28, 'Connecti - + - + - + - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/adur-worthing.gov.uk.xml b/src/chrome/content/rules/adur-worthing.gov.uk.xml index 79f0db7afd00..292cb3ad962f 100644 --- a/src/chrome/content/rules/adur-worthing.gov.uk.xml +++ b/src/chrome/content/rules/adur-worthing.gov.uk.xml @@ -20,7 +20,7 @@ - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/aeasolutions.co.uk.xml b/src/chrome/content/rules/aeasolutions.co.uk.xml index a37f35c2369a..213db0cd23a7 100644 --- a/src/chrome/content/rules/aeasolutions.co.uk.xml +++ b/src/chrome/content/rules/aeasolutions.co.uk.xml @@ -17,7 +17,7 @@ - + - - + + - + - + - + - + diff --git a/src/chrome/content/rules/ag.ch.xml b/src/chrome/content/rules/ag.ch.xml new file mode 100644 index 000000000000..51b04f429745 --- /dev/null +++ b/src/chrome/content/rules/ag.ch.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/agdd.de.xml b/src/chrome/content/rules/agdd.de.xml new file mode 100644 index 000000000000..563a1e942b08 --- /dev/null +++ b/src/chrome/content/rules/agdd.de.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/agenpremium.com.xml b/src/chrome/content/rules/agenpremium.com.xml index b71c0cba95d9..5462290f90a8 100644 --- a/src/chrome/content/rules/agenpremium.com.xml +++ b/src/chrome/content/rules/agenpremium.com.xml @@ -16,7 +16,7 @@ --> - + - + - + - + + + + + + + + + + + + diff --git a/src/chrome/content/rules/agoradesk.com.xml b/src/chrome/content/rules/agoradesk.com.xml new file mode 100644 index 000000000000..4f1616b1c0cf --- /dev/null +++ b/src/chrome/content/rules/agoradesk.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/ahcdn.com-falsemixed.xml b/src/chrome/content/rules/ahcdn.com-falsemixed.xml deleted file mode 100644 index e8d3b8245cc2..000000000000 --- a/src/chrome/content/rules/ahcdn.com-falsemixed.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/ahcdn.com.xml b/src/chrome/content/rules/ahcdn.com.xml index 4631810408af..9045b2687fc0 100644 --- a/src/chrome/content/rules/ahcdn.com.xml +++ b/src/chrome/content/rules/ahcdn.com.xml @@ -1,55 +1,21 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ahead.org.xml b/src/chrome/content/rules/ahead.org.xml index c9516aad2db3..a79e4736665b 100644 --- a/src/chrome/content/rules/ahead.org.xml +++ b/src/chrome/content/rules/ahead.org.xml @@ -2,7 +2,7 @@ Mixed content: - Image on www from $self ˢ - + ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> @@ -12,7 +12,7 @@ - + - + + + + + + + + + + + + diff --git a/src/chrome/content/rules/aiha.org.xml b/src/chrome/content/rules/aiha.org.xml index 93ea063225f0..ccbf03bf963c 100644 --- a/src/chrome/content/rules/aiha.org.xml +++ b/src/chrome/content/rules/aiha.org.xml @@ -30,7 +30,7 @@ --> - + - + + + + + + + + + diff --git a/src/chrome/content/rules/airbites.net.ua.xml b/src/chrome/content/rules/airbites.net.ua.xml index 9a0d7277fc73..6d53aeefb03a 100644 --- a/src/chrome/content/rules/airbites.net.ua.xml +++ b/src/chrome/content/rules/airbites.net.ua.xml @@ -47,7 +47,7 @@ speedtest-lv.airbites.net.ua different content ³ timed out ⁵ expired --> - + diff --git a/src/chrome/content/rules/aircrack-ng.org.xml b/src/chrome/content/rules/aircrack-ng.org.xml index 9f43758deef1..95549bbe1cf5 100644 --- a/src/chrome/content/rules/aircrack-ng.org.xml +++ b/src/chrome/content/rules/aircrack-ng.org.xml @@ -1,72 +1,33 @@ - - - - + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/airelf.com.tw.xml b/src/chrome/content/rules/airelf.com.tw.xml deleted file mode 100644 index f9fa495f2556..000000000000 --- a/src/chrome/content/rules/airelf.com.tw.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/airesume.com.xml b/src/chrome/content/rules/airesume.com.xml deleted file mode 100644 index 8e74094204b0..000000000000 --- a/src/chrome/content/rules/airesume.com.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/aironetsp.ru.xml b/src/chrome/content/rules/aironetsp.ru.xml deleted file mode 100644 index 994b5f7421ee..000000000000 --- a/src/chrome/content/rules/aironetsp.ru.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/airsoftclubnederland.nl.xml b/src/chrome/content/rules/airsoftclubnederland.nl.xml new file mode 100644 index 000000000000..43cc26a21468 --- /dev/null +++ b/src/chrome/content/rules/airsoftclubnederland.nl.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/airwarriors.com.xml b/src/chrome/content/rules/airwarriors.com.xml index 9a3dd19f6d92..c04553ceb916 100644 --- a/src/chrome/content/rules/airwarriors.com.xml +++ b/src/chrome/content/rules/airwarriors.com.xml @@ -4,7 +4,7 @@ - + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ajnasz.hu.xml b/src/chrome/content/rules/ajnasz.hu.xml deleted file mode 100644 index d6f032a1b531..000000000000 --- a/src/chrome/content/rules/ajnasz.hu.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/akbars.ru.xml b/src/chrome/content/rules/akbars.ru.xml index 5c65d222ab56..f62a5cb62eb8 100644 --- a/src/chrome/content/rules/akbars.ru.xml +++ b/src/chrome/content/rules/akbars.ru.xml @@ -8,7 +8,7 @@ quickweb.akbars.ru ³ ³ timed out --> - + diff --git a/src/chrome/content/rules/akixi.com.xml b/src/chrome/content/rules/akixi.com.xml index 9150c82885e4..e53a2ab1e2a9 100644 --- a/src/chrome/content/rules/akixi.com.xml +++ b/src/chrome/content/rules/akixi.com.xml @@ -16,7 +16,7 @@ Fetch error: http://alto.akixi.com/ => https://alto.akixi.com/: (28, 'Connection - stratus.akixi.com - svn.akixi.com --> - + diff --git a/src/chrome/content/rules/al-sunan.net.xml b/src/chrome/content/rules/al-sunan.net.xml new file mode 100644 index 000000000000..e43beaef7a8f --- /dev/null +++ b/src/chrome/content/rules/al-sunan.net.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/alArabiya.net.xml b/src/chrome/content/rules/alArabiya.net.xml new file mode 100644 index 000000000000..3e5817f50f9b --- /dev/null +++ b/src/chrome/content/rules/alArabiya.net.xml @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/alaMaula.com.xml b/src/chrome/content/rules/alaMaula.com.xml new file mode 100644 index 000000000000..a8ad0339e7f1 --- /dev/null +++ b/src/chrome/content/rules/alaMaula.com.xml @@ -0,0 +1,124 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/alarabiya.net.xml b/src/chrome/content/rules/alarabiya.net.xml deleted file mode 100644 index 2298d194becf..000000000000 --- a/src/chrome/content/rules/alarabiya.net.xml +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/alaraby.co.uk.xml b/src/chrome/content/rules/alaraby.co.uk.xml index 4b954375af49..5fe61321ab98 100644 --- a/src/chrome/content/rules/alaraby.co.uk.xml +++ b/src/chrome/content/rules/alaraby.co.uk.xml @@ -4,7 +4,7 @@ - + https://alau.kz/: (7, 'Failed to connect to alau Fetch error: http://www.alau.kz/ => https://www.alau.kz/: (7, 'Failed to connect to www.alau.kz port 443: Connection refused') --> - + diff --git a/src/chrome/content/rules/alayam24.com.xml b/src/chrome/content/rules/alayam24.com.xml new file mode 100644 index 000000000000..9615a1d939cc --- /dev/null +++ b/src/chrome/content/rules/alayam24.com.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/alcohol-soft.com.xml b/src/chrome/content/rules/alcohol-soft.com.xml new file mode 100644 index 000000000000..48b928f384e8 --- /dev/null +++ b/src/chrome/content/rules/alcohol-soft.com.xml @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/aldeparty.eu.xml b/src/chrome/content/rules/aldeparty.eu.xml index 65a73b2768d1..98a4eef85a2e 100644 --- a/src/chrome/content/rules/aldeparty.eu.xml +++ b/src/chrome/content/rules/aldeparty.eu.xml @@ -1,12 +1,8 @@ - - + + + diff --git a/src/chrome/content/rules/alf.nu.xml b/src/chrome/content/rules/alf.nu.xml new file mode 100644 index 000000000000..d5abbc23127a --- /dev/null +++ b/src/chrome/content/rules/alf.nu.xml @@ -0,0 +1,436 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/alfredxing.com.xml b/src/chrome/content/rules/alfredxing.com.xml index f7653d4d09c8..6d76131bceb4 100644 --- a/src/chrome/content/rules/alfredxing.com.xml +++ b/src/chrome/content/rules/alfredxing.com.xml @@ -7,7 +7,7 @@ - + - - - - - - - - - - diff --git a/src/chrome/content/rules/alibaba-inc.com.xml b/src/chrome/content/rules/alibaba-inc.com.xml index fe1703126a2e..a807630c7afd 100644 --- a/src/chrome/content/rules/alibaba-inc.com.xml +++ b/src/chrome/content/rules/alibaba-inc.com.xml @@ -1,71 +1,27 @@ - - + - - - - - - - - - - - - - - - - - + + diff --git a/src/chrome/content/rules/aliexpress.com-mixedcontent.xml b/src/chrome/content/rules/aliexpress.com-mixedcontent.xml index da0f4a6490bb..9f0a57295989 100644 --- a/src/chrome/content/rules/aliexpress.com-mixedcontent.xml +++ b/src/chrome/content/rules/aliexpress.com-mixedcontent.xml @@ -2,18 +2,13 @@ For rules not causing MCB, see AliExpress.com.xml. --> + + - - - - - - - diff --git a/src/chrome/content/rules/aliftaa.jo.xml b/src/chrome/content/rules/aliftaa.jo.xml new file mode 100644 index 000000000000..858130b9b97a --- /dev/null +++ b/src/chrome/content/rules/aliftaa.jo.xml @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/aliloan.com.xml b/src/chrome/content/rules/aliloan.com.xml index 7a258486ade9..0440eef1d105 100644 --- a/src/chrome/content/rules/aliloan.com.xml +++ b/src/chrome/content/rules/aliloan.com.xml @@ -39,7 +39,7 @@ - + + + + + + + diff --git a/src/chrome/content/rules/allerdale.gov.uk.xml b/src/chrome/content/rules/allerdale.gov.uk.xml index b7ee09d9350a..f9afe50fd63b 100644 --- a/src/chrome/content/rules/allerdale.gov.uk.xml +++ b/src/chrome/content/rules/allerdale.gov.uk.xml @@ -45,7 +45,7 @@ - + - + - + - + https://azt.allianz.com/: (6, 'Could ˢ Secured by us --> - + @@ -131,7 +131,7 @@ Fetch error: http://www.azt.allianz.com/ => https://azt.allianz.com/: (6, 'Could - + https://www.allinvestments.ru/: (51, "SSL: no alternative certificate subject name matches target host name 'www.allinvestments.ru'") --> - + diff --git a/src/chrome/content/rules/allpayments.net.xml b/src/chrome/content/rules/allpayments.net.xml index e41441b0e796..f0a29ad0a884 100644 --- a/src/chrome/content/rules/allpayments.net.xml +++ b/src/chrome/content/rules/allpayments.net.xml @@ -15,7 +15,7 @@ --> - + - + + + diff --git a/src/chrome/content/rules/almayadeen.net.xml b/src/chrome/content/rules/almayadeen.net.xml index 9b8062b90db9..5d937858d094 100644 --- a/src/chrome/content/rules/almayadeen.net.xml +++ b/src/chrome/content/rules/almayadeen.net.xml @@ -7,14 +7,14 @@ Invalid certificate: hubs-es.almayadeen.net upload.almayadeen.net -Timeout: +Timeout: careers.almayadeen.net media-g.almayadeen.net --> - + - - + + diff --git a/src/chrome/content/rules/almeshkat.net.xml b/src/chrome/content/rules/almeshkat.net.xml index ef936283420b..bc1655a1063c 100644 --- a/src/chrome/content/rules/almeshkat.net.xml +++ b/src/chrome/content/rules/almeshkat.net.xml @@ -2,6 +2,6 @@ - + diff --git a/src/chrome/content/rules/alpharatio.cc.xml b/src/chrome/content/rules/alpharatio.cc.xml index 60614f826f12..993fcd558bff 100644 --- a/src/chrome/content/rules/alpharatio.cc.xml +++ b/src/chrome/content/rules/alpharatio.cc.xml @@ -1,6 +1,6 @@ - + diff --git a/src/chrome/content/rules/alsace-lait.com.xml b/src/chrome/content/rules/alsace-lait.com.xml new file mode 100644 index 000000000000..b25b019d7cad --- /dev/null +++ b/src/chrome/content/rules/alsace-lait.com.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/alsop-n.uk.xml b/src/chrome/content/rules/alsop-n.uk.xml index 08c22607c08e..1043eef47cf7 100644 --- a/src/chrome/content/rules/alsop-n.uk.xml +++ b/src/chrome/content/rules/alsop-n.uk.xml @@ -10,7 +10,7 @@ - + + + + + + + diff --git a/src/chrome/content/rules/alternacare.ca.xml b/src/chrome/content/rules/alternacare.ca.xml new file mode 100644 index 000000000000..f2f005a60bd3 --- /dev/null +++ b/src/chrome/content/rules/alternacare.ca.xml @@ -0,0 +1,13 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/alternativemeats.co.uk.xml b/src/chrome/content/rules/alternativemeats.co.uk.xml index 721440ba0090..6f5887475a7f 100644 --- a/src/chrome/content/rules/alternativemeats.co.uk.xml +++ b/src/chrome/content/rules/alternativemeats.co.uk.xml @@ -15,7 +15,7 @@ - + - - - - - - - - diff --git a/src/chrome/content/rules/amadump.com.xml b/src/chrome/content/rules/amadump.com.xml index e19f70e3b98c..5bb24ebb9d9d 100644 --- a/src/chrome/content/rules/amadump.com.xml +++ b/src/chrome/content/rules/amadump.com.xml @@ -9,7 +9,7 @@ - + - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/amap.com.xml b/src/chrome/content/rules/amap.com.xml new file mode 100644 index 000000000000..1eba40ad2025 --- /dev/null +++ b/src/chrome/content/rules/amap.com.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/amap.xml b/src/chrome/content/rules/amap.xml deleted file mode 100644 index f5fdd83afb87..000000000000 --- a/src/chrome/content/rules/amap.xml +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/amazon.ca.xml b/src/chrome/content/rules/amazon.ca.xml index ab00d8f1380b..0ef3e80e99b2 100644 --- a/src/chrome/content/rules/amazon.ca.xml +++ b/src/chrome/content/rules/amazon.ca.xml @@ -22,25 +22,12 @@ - - - - - - - - - - - - - + + - - + - @@ -22,17 +11,9 @@ + - - - - - - - - - + + diff --git a/src/chrome/content/rules/amazon.co.jp.xml b/src/chrome/content/rules/amazon.co.jp.xml index 202a99f8e772..f458948034d0 100644 --- a/src/chrome/content/rules/amazon.co.jp.xml +++ b/src/chrome/content/rules/amazon.co.jp.xml @@ -15,7 +15,7 @@ - + @@ -30,23 +30,12 @@ - - - - - - - - - - + + @@ -41,35 +42,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/amazon.com.au.xml b/src/chrome/content/rules/amazon.com.au.xml index f959ab40d517..b12d9f5fc8c1 100644 --- a/src/chrome/content/rules/amazon.com.au.xml +++ b/src/chrome/content/rules/amazon.com.au.xml @@ -2,6 +2,21 @@ For other Amazon coverage, see Amazon.xml. + Non-functional subdomains: + + - cmu-receiver-fe (t) + - kdp (r) + - kindlestore-sha-proxy (i) + + e: expired certificate + h: http redirect + i: invalid certificate chain + m: certificate mismatch + r: connection refused + s: self-signed certificate + t: timeout on https + + Insecure cookies are set for these domains: ᶜ - .amazon.com.au @@ -12,24 +27,39 @@ + + + + + + + + + + + + + + + + + + - - - - - - - - + + + + + + + - - + + - - - - - - - - - - - + + - - - - - - - - - + - - - - - - - - - - - - - - - - - @@ -74,8 +55,8 @@ --> - - + + - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - + + - - + + - - - - - - - - - - - - - + + - - - - - - - - - - - + + https://profiles.ambercutie.com/ ⁵ 522, preemptable redirect --> - + @@ -24,7 +24,7 @@ Fetch error: http://profiles.ambercutie.com/ => https://profiles.ambercutie.com/ - + - + - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/americanhunter.org.xml b/src/chrome/content/rules/americanhunter.org.xml index 0c50f7cfd04c..22ca7295b1ae 100644 --- a/src/chrome/content/rules/americanhunter.org.xml +++ b/src/chrome/content/rules/americanhunter.org.xml @@ -17,7 +17,7 @@ - + https://wmp.americanrifleman.or ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -24,7 +24,7 @@ Fetch error: http://wmp.americanrifleman.org/ => https://wmp.americanrifleman.or - + https://wmp.americas1stfreedo Mixed content: - Bugs, from: - + - b.scorecardresearch.com ˢ - sb.scorecardresearch.com ˢ ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -26,7 +26,7 @@ Fetch error: http://wmp.americas1stfreedom.org/ => https://wmp.americas1stfreedo - + - + + + + + + + + + diff --git a/src/chrome/content/rules/analog.com.xml b/src/chrome/content/rules/analog.com.xml new file mode 100644 index 000000000000..7270d064c117 --- /dev/null +++ b/src/chrome/content/rules/analog.com.xml @@ -0,0 +1,322 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/anapirana.com.xml b/src/chrome/content/rules/anapirana.com.xml deleted file mode 100644 index 43a224ee81d9..000000000000 --- a/src/chrome/content/rules/anapirana.com.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/anchor.net.au.xml b/src/chrome/content/rules/anchor.net.au.xml index 52201a294e14..2fe4507b14ac 100644 --- a/src/chrome/content/rules/anchor.net.au.xml +++ b/src/chrome/content/rules/anchor.net.au.xml @@ -9,7 +9,7 @@ - + + + + + + diff --git a/src/chrome/content/rules/andreapaiola.name.xml b/src/chrome/content/rules/andreapaiola.name.xml deleted file mode 100644 index 68448e60020f..000000000000 --- a/src/chrome/content/rules/andreapaiola.name.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/andrewmohawk.com.xml b/src/chrome/content/rules/andrewmohawk.com.xml index 73a13e56447c..0bf0f68f3afc 100644 --- a/src/chrome/content/rules/andrewmohawk.com.xml +++ b/src/chrome/content/rules/andrewmohawk.com.xml @@ -1,26 +1,10 @@ - - + - + + + + + + + + + + diff --git a/src/chrome/content/rules/angr.io.xml b/src/chrome/content/rules/angr.io.xml new file mode 100644 index 000000000000..73712a349120 --- /dev/null +++ b/src/chrome/content/rules/angr.io.xml @@ -0,0 +1,13 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/animenewsnetwork.xml b/src/chrome/content/rules/animenewsnetwork.xml index 9f9f2cec0111..f6aea1eba083 100644 --- a/src/chrome/content/rules/animenewsnetwork.xml +++ b/src/chrome/content/rules/animenewsnetwork.xml @@ -1,7 +1,7 @@ @@ -15,13 +15,13 @@ - + - + @@ -30,6 +30,6 @@ - + diff --git a/src/chrome/content/rules/annalindhfoundation.org.xml b/src/chrome/content/rules/annalindhfoundation.org.xml index 6809dc3d94bc..5b9cd250011b 100644 --- a/src/chrome/content/rules/annalindhfoundation.org.xml +++ b/src/chrome/content/rules/annalindhfoundation.org.xml @@ -13,7 +13,7 @@ - + https://annotum.org/: (51, "SSL: no alternat Fetch error: http://www.annotum.org/ => https://www.annotum.org/: (51, "SSL: no alternative certificate subject name matches target host name 'www.annotum.org'") --> - + - + + + + + + + + + diff --git a/src/chrome/content/rules/anskaffelser.no.xml b/src/chrome/content/rules/anskaffelser.no.xml index 32e275e85a58..f8c7053b3bc0 100644 --- a/src/chrome/content/rules/anskaffelser.no.xml +++ b/src/chrome/content/rules/anskaffelser.no.xml @@ -4,7 +4,7 @@ - + https://www21.anthem.com/: (60, 'SSL ce ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -192,7 +192,7 @@ Fetch error: http://www21.anthem.com/ => https://www21.anthem.com/: (60, 'SSL ce - + + + + + + + + + + diff --git a/src/chrome/content/rules/antifascistnetwork.org.xml b/src/chrome/content/rules/antifascistnetwork.org.xml index 7ba81f1d8870..35ac9c3b4a77 100644 --- a/src/chrome/content/rules/antifascistnetwork.org.xml +++ b/src/chrome/content/rules/antifascistnetwork.org.xml @@ -13,7 +13,7 @@ - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/aon.com.xml b/src/chrome/content/rules/aon.com.xml index 692ebb2be103..71066b792818 100644 --- a/src/chrome/content/rules/aon.com.xml +++ b/src/chrome/content/rules/aon.com.xml @@ -3,7 +3,7 @@ - + https://blog.apichangelog.com/: (7, 'Failed to connect to blog.apichangelog.com port 443: Connection refused') --> - + diff --git a/src/chrome/content/rules/apikabu.ru.xml b/src/chrome/content/rules/apikabu.ru.xml new file mode 100644 index 000000000000..4f1cdbf832c3 --- /dev/null +++ b/src/chrome/content/rules/apikabu.ru.xml @@ -0,0 +1,10 @@ + + + + + + + diff --git a/src/chrome/content/rules/apk-dl.com.xml b/src/chrome/content/rules/apk-dl.com.xml index 51eec769e990..f0bb48fe3374 100644 --- a/src/chrome/content/rules/apk-dl.com.xml +++ b/src/chrome/content/rules/apk-dl.com.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://dl3.apk-dl.com/ => https://dl3.apk-dl.com/: (60, 'SSL certificate problem: certificate has expired') --> - + @@ -12,7 +12,7 @@ Fetch error: http://dl3.apk-dl.com/ => https://dl3.apk-dl.com/: (60, 'SSL certif - + diff --git a/src/chrome/content/rules/applegate.com.xml b/src/chrome/content/rules/applegate.com.xml new file mode 100644 index 000000000000..1f96459ffc49 --- /dev/null +++ b/src/chrome/content/rules/applegate.com.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/apprenticeships.scot.xml b/src/chrome/content/rules/apprenticeships.scot.xml index ccd8553529d3..885c90c94317 100644 --- a/src/chrome/content/rules/apprenticeships.scot.xml +++ b/src/chrome/content/rules/apprenticeships.scot.xml @@ -26,7 +26,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/apps.fm.xml b/src/chrome/content/rules/apps.fm.xml index 2245df6f0c70..f611660f80ca 100644 --- a/src/chrome/content/rules/apps.fm.xml +++ b/src/chrome/content/rules/apps.fm.xml @@ -8,7 +8,7 @@ - + - - - - - - - diff --git a/src/chrome/content/rules/appxv.com.xml b/src/chrome/content/rules/appxv.com.xml new file mode 100644 index 000000000000..66f157f55023 --- /dev/null +++ b/src/chrome/content/rules/appxv.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/apricityos.com.xml b/src/chrome/content/rules/apricityos.com.xml index 9bdb305d8237..2dabe98db38a 100644 --- a/src/chrome/content/rules/apricityos.com.xml +++ b/src/chrome/content/rules/apricityos.com.xml @@ -6,7 +6,7 @@ Fetch error: http://www.apricityos.com/ => https://www.apricityos.com/: (35, 'Un Fetch error: http://static.apricityos.com/ => https://static.apricityos.com/: (35, 'Unknown SSL protocol error in connection to static.apricityos.com:443 ') --> - + diff --git a/src/chrome/content/rules/apy2000.com.xml b/src/chrome/content/rules/apy2000.com.xml new file mode 100644 index 000000000000..17b4a98fa07d --- /dev/null +++ b/src/chrome/content/rules/apy2000.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/aqmen.ac.uk.xml b/src/chrome/content/rules/aqmen.ac.uk.xml deleted file mode 100644 index 44f9be35af0d..000000000000 --- a/src/chrome/content/rules/aqmen.ac.uk.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/arashanhoney.xml b/src/chrome/content/rules/arashanhoney.xml new file mode 100644 index 000000000000..85a103bf9b9f --- /dev/null +++ b/src/chrome/content/rules/arashanhoney.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/aravot.am.xml b/src/chrome/content/rules/aravot.am.xml index 255d27cdefae..b6a4472f9dff 100644 --- a/src/chrome/content/rules/aravot.am.xml +++ b/src/chrome/content/rules/aravot.am.xml @@ -11,7 +11,7 @@ archive.aravot.am ⁴ ⁴ self signed --> - + diff --git a/src/chrome/content/rules/arcor.de.xml b/src/chrome/content/rules/arcor.de.xml new file mode 100644 index 000000000000..645880c8bca5 --- /dev/null +++ b/src/chrome/content/rules/arcor.de.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/arewee10syet.com.xml b/src/chrome/content/rules/arewee10syet.com.xml deleted file mode 100644 index f851de0fba25..000000000000 --- a/src/chrome/content/rules/arewee10syet.com.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/arewewebextensionsyet.com.xml b/src/chrome/content/rules/arewewebextensionsyet.com.xml deleted file mode 100644 index 3c6b414d0b63..000000000000 --- a/src/chrome/content/rules/arewewebextensionsyet.com.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/argentdata.com.xml b/src/chrome/content/rules/argentdata.com.xml index 619bb9e44410..a761b9be661b 100644 --- a/src/chrome/content/rules/argentdata.com.xml +++ b/src/chrome/content/rules/argentdata.com.xml @@ -4,7 +4,7 @@ - + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/arhivach.org.xml b/src/chrome/content/rules/arhivach.org.xml deleted file mode 100644 index 1c9c0f61f258..000000000000 --- a/src/chrome/content/rules/arhivach.org.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/arl-net.de.xml b/src/chrome/content/rules/arl-net.de.xml new file mode 100644 index 000000000000..7cf048d2bb75 --- /dev/null +++ b/src/chrome/content/rules/arl-net.de.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/armscontrol.org.xml b/src/chrome/content/rules/armscontrol.org.xml index d2292a0e5fc4..66c15e4a8aed 100644 --- a/src/chrome/content/rules/armscontrol.org.xml +++ b/src/chrome/content/rules/armscontrol.org.xml @@ -5,7 +5,7 @@ - + - + + + + + + + + diff --git a/src/chrome/content/rules/arstechnica.co.uk.xml b/src/chrome/content/rules/arstechnica.co.uk.xml deleted file mode 100644 index fa513f88df8b..000000000000 --- a/src/chrome/content/rules/arstechnica.co.uk.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/art19.com.xml b/src/chrome/content/rules/art19.com.xml index 270a05c4ac37..cf7670bd066d 100644 --- a/src/chrome/content/rules/art19.com.xml +++ b/src/chrome/content/rules/art19.com.xml @@ -6,7 +6,7 @@ - + https://arte.tv/: Too many redirects while fetching 'https://arte.tv/' -Fetch error: http://www.arte.tv/ => https://www.arte.tv/: Too many redirects while fetching 'https://www.arte.tv/' -Fetch error: http://cinema.arte.tv/ => https://cinema.arte.tv/: Too many redirects while fetching 'https://cinema.arte.tv/' -Fetch error: http://future.arte.tv/ => https://future.arte.tv/: Too many redirects while fetching 'https://future.arte.tv/' -Fetch error: http://info.arte.tv/ => https://info.arte.tv/: Too many redirects while fetching 'https://info.arte.tv/' + Content mismatch: + - peakyblinders + - tset + - wanted18 - Mismatch: + Invalid certificate: - alma - - audioblog.arteradio.com - - download.arteradio.com - - prisonvalley - - Refused: - - checkin - - easycomingout - - planetecorps - - planetmensch - - thedevilstoy - - Timeout: - - afrique - - bielutine - - brusselsbusiness - - cartoons - - cinemacity - - cuisine - ddc - - download.pro - - ecologiesonore - empfangswege - - europe - - europe-debat.blog - - gensol - - irak - - loveyourneighbour - - magellan - - moderncouple - - nyminute - - nyminute.blog + - hotel - partner - php4 - - presse - - pro - - roadtrip - - royaldinner - - sales + - prisonvalley - superhigh - - syria - - thebloodytruth - - tracks - - urbangardening - worldbrain - - wp - 404: - - californium - - hotel - - peakyblinders - - tset - - wanted18 - - wrong content: + Timeout: + - checkin + - moderncouple + - europe-debat.blog + - nyminute.blog + - pro + - download.pro - forums.arteradio.com --> - + + + + + + + + + + + + + + + - diff --git a/src/chrome/content/rules/artefact.org.xml b/src/chrome/content/rules/artefact.org.xml new file mode 100644 index 000000000000..d7befb43b289 --- /dev/null +++ b/src/chrome/content/rules/artefact.org.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/artfiles.org.xml b/src/chrome/content/rules/artfiles.org.xml new file mode 100644 index 000000000000..b2ebd6099286 --- /dev/null +++ b/src/chrome/content/rules/artfiles.org.xml @@ -0,0 +1,12 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/artikel5ev.de.xml b/src/chrome/content/rules/artikel5ev.de.xml new file mode 100644 index 000000000000..9d91469854b8 --- /dev/null +++ b/src/chrome/content/rules/artikel5ev.de.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/artvillage.club.xml b/src/chrome/content/rules/artvillage.club.xml index 50e9fa668328..fda63e3cc4ed 100644 --- a/src/chrome/content/rules/artvillage.club.xml +++ b/src/chrome/content/rules/artvillage.club.xml @@ -8,7 +8,7 @@ dev.artvillage.club ¹ ¹ mismatch --> - + diff --git a/src/chrome/content/rules/arukas.io.xml b/src/chrome/content/rules/arukas.io.xml index 97b0587657d4..cbed9fe65577 100644 --- a/src/chrome/content/rules/arukas.io.xml +++ b/src/chrome/content/rules/arukas.io.xml @@ -14,7 +14,7 @@ Fetch error: http://www.arukas.io/ => https://www.arukas.io/: (6, 'Could not res for ^, app --> - + @@ -38,7 +38,7 @@ Fetch error: http://www.arukas.io/ => https://www.arukas.io/: (6, 'Could not res - + - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/arun.gov.uk.xml b/src/chrome/content/rules/arun.gov.uk.xml deleted file mode 100644 index 46db9b1115ce..000000000000 --- a/src/chrome/content/rules/arun.gov.uk.xml +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/as250.net.xml b/src/chrome/content/rules/as250.net.xml new file mode 100644 index 000000000000..2d7447342316 --- /dev/null +++ b/src/chrome/content/rules/as250.net.xml @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/as3gamegears.com.xml b/src/chrome/content/rules/as3gamegears.com.xml new file mode 100644 index 000000000000..1440abe0c463 --- /dev/null +++ b/src/chrome/content/rules/as3gamegears.com.xml @@ -0,0 +1,12 @@ + + + + + + + diff --git a/src/chrome/content/rules/asa.org.uk.xml b/src/chrome/content/rules/asa.org.uk.xml index dc623c290a86..5bfc2c6a2f35 100644 --- a/src/chrome/content/rules/asa.org.uk.xml +++ b/src/chrome/content/rules/asa.org.uk.xml @@ -1,6 +1,6 @@ - + + + + + + + + + + diff --git a/src/chrome/content/rules/asadotzler.com.xml b/src/chrome/content/rules/asadotzler.com.xml index a9707b4d0154..7e9ecb7c2f3d 100644 --- a/src/chrome/content/rules/asadotzler.com.xml +++ b/src/chrome/content/rules/asadotzler.com.xml @@ -4,7 +4,7 @@ - + + + + + + + + + + + + diff --git a/src/chrome/content/rules/asdacalltime.com.xml b/src/chrome/content/rules/asdacalltime.com.xml index 01f830842110..2079485561ae 100644 --- a/src/chrome/content/rules/asdacalltime.com.xml +++ b/src/chrome/content/rules/asdacalltime.com.xml @@ -28,7 +28,7 @@ --> - + - + - + https://asfera.info/ (521) Non-2xx HTTP code: http://www.asfera.info/ (200) => https://www.asfera.info/ (521) --> - + diff --git a/src/chrome/content/rules/ashford.gov.uk.xml b/src/chrome/content/rules/ashford.gov.uk.xml index 2f9ce06141e5..48425c48be31 100644 --- a/src/chrome/content/rules/ashford.gov.uk.xml +++ b/src/chrome/content/rules/ashford.gov.uk.xml @@ -1,52 +1,34 @@ - - - - + Status code mismatch: + - houserepairs.ashford.gov.uk + - licensing.ashford.gov.uk + - planning.ashford.gov.uk + 4xx client error: + - ashford.gov.uk + - pgc.ashford.gov.uk +--> + + + + - - - - - + - + to="https:" /> diff --git a/src/chrome/content/rules/ashops.co.il.xml b/src/chrome/content/rules/ashops.co.il.xml index 2917722f9b8b..5e6ae0b3091f 100644 --- a/src/chrome/content/rules/ashops.co.il.xml +++ b/src/chrome/content/rules/ashops.co.il.xml @@ -7,7 +7,7 @@ Mixed content: - Images from $self ˢ - + ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> @@ -21,7 +21,7 @@ --> - + - + - + - + - - - - - diff --git a/src/chrome/content/rules/astrobl.ru.xml b/src/chrome/content/rules/astrobl.ru.xml index fc94b9171214..c0018a77df81 100644 --- a/src/chrome/content/rules/astrobl.ru.xml +++ b/src/chrome/content/rules/astrobl.ru.xml @@ -63,7 +63,7 @@ voting.astrobl.ru ⁶ ⁴ self signed ⁶ redirect --> - + diff --git a/src/chrome/content/rules/asustor.com.xml b/src/chrome/content/rules/asustor.com.xml index 51210531cb38..6daffe41afec 100644 --- a/src/chrome/content/rules/asustor.com.xml +++ b/src/chrome/content/rules/asustor.com.xml @@ -41,7 +41,7 @@ --> - + - - - - - - diff --git a/src/chrome/content/rules/atex.ru.xml b/src/chrome/content/rules/atex.ru.xml new file mode 100644 index 000000000000..be4e2e0e9007 --- /dev/null +++ b/src/chrome/content/rules/atex.ru.xml @@ -0,0 +1,16 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/atfonline.gov.xml b/src/chrome/content/rules/atfonline.gov.xml index 4f8ae2f257ac..b6448297d53e 100644 --- a/src/chrome/content/rules/atfonline.gov.xml +++ b/src/chrome/content/rules/atfonline.gov.xml @@ -9,7 +9,7 @@ Fetch error: http://atfonline.gov/ => https://www.atfonline.gov/: (60, 'SSL cert ^atfonline.gov: Mismatched --> - + @@ -20,7 +20,7 @@ Fetch error: http://atfonline.gov/ => https://www.atfonline.gov/: (60, 'SSL cert - + - + - + diff --git a/src/chrome/content/rules/atmia.com.xml b/src/chrome/content/rules/atmia.com.xml index 29e241234615..97c9a3ee7555 100644 --- a/src/chrome/content/rules/atmia.com.xml +++ b/src/chrome/content/rules/atmia.com.xml @@ -4,7 +4,7 @@ - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/audit.wales.xml b/src/chrome/content/rules/audit.wales.xml index 730896b35253..0e61023738ac 100644 --- a/src/chrome/content/rules/audit.wales.xml +++ b/src/chrome/content/rules/audit.wales.xml @@ -29,7 +29,7 @@ Fetch error: http://autodiscover.audit.wales/ => https://email.wao.gov.uk/owa: ( ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -41,7 +41,7 @@ Fetch error: http://autodiscover.audit.wales/ => https://email.wao.gov.uk/owa: ( - + + + + + + diff --git a/src/chrome/content/rules/autistica.org.uk.xml b/src/chrome/content/rules/autistica.org.uk.xml index 08f2b4ce1e4d..bd2579df59ed 100644 --- a/src/chrome/content/rules/autistica.org.uk.xml +++ b/src/chrome/content/rules/autistica.org.uk.xml @@ -5,13 +5,13 @@ Fetch error: http://autistica.org.uk/ => https://autistica.org.uk/: (60, 'SSL ce Fetch error: http://www.autistica.org.uk/ => https://www.autistica.org.uk/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + - + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/autotrader.co.uk-falsemixed.xml b/src/chrome/content/rules/autotrader.co.uk-falsemixed.xml index 7d0600d8cca8..7e44dad81f98 100644 --- a/src/chrome/content/rules/autotrader.co.uk-falsemixed.xml +++ b/src/chrome/content/rules/autotrader.co.uk-falsemixed.xml @@ -44,7 +44,7 @@ - + - + - + + + + + + + + diff --git a/src/chrome/content/rules/avcosystems.com.xml b/src/chrome/content/rules/avcosystems.com.xml index 371eb0412ccb..c3c855447fbf 100644 --- a/src/chrome/content/rules/avcosystems.com.xml +++ b/src/chrome/content/rules/avcosystems.com.xml @@ -4,7 +4,7 @@ - + - + - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/avicoder.me.xml b/src/chrome/content/rules/avicoder.me.xml index 2226ef404e32..fc531ea3ec01 100644 --- a/src/chrome/content/rules/avicoder.me.xml +++ b/src/chrome/content/rules/avicoder.me.xml @@ -4,7 +4,7 @@ - + diff --git a/src/chrome/content/rules/avito.ru.xml b/src/chrome/content/rules/avito.ru.xml index 74e4bde99494..7939b6510c60 100644 --- a/src/chrome/content/rules/avito.ru.xml +++ b/src/chrome/content/rules/avito.ru.xml @@ -16,7 +16,7 @@ - + - + diff --git a/src/chrome/content/rules/avoinyliopisto.xml b/src/chrome/content/rules/avoinyliopisto.xml index 11986764c9f4..d4a75bf734d6 100644 --- a/src/chrome/content/rules/avoinyliopisto.xml +++ b/src/chrome/content/rules/avoinyliopisto.xml @@ -5,11 +5,11 @@ Fetch error: http://www.avoinyliopisto.fi/ => https://www.avoinyliopisto.fi/: (5 Fetch error: http://avoinyliopisto.fi/ => https://www.avoinyliopisto.fi/: (51, "SSL: no alternative certificate subject name matches target host name 'www.avoinyliopisto.fi'") --> - + - + diff --git a/src/chrome/content/rules/avto.ru.xml b/src/chrome/content/rules/avto.ru.xml new file mode 100644 index 000000000000..895689d21d75 --- /dev/null +++ b/src/chrome/content/rules/avto.ru.xml @@ -0,0 +1,12 @@ + + + + + + + diff --git a/src/chrome/content/rules/aylesburyvaledc.gov.uk.xml b/src/chrome/content/rules/aylesburyvaledc.gov.uk.xml index 2011c4af6a0d..b5085985d508 100644 --- a/src/chrome/content/rules/aylesburyvaledc.gov.uk.xml +++ b/src/chrome/content/rules/aylesburyvaledc.gov.uk.xml @@ -1,71 +1,28 @@ - - - - - - - - + + - - + + + + + + + - - - - - - - - - - - - - - + diff --git a/src/chrome/content/rules/ayyo.ru.xml b/src/chrome/content/rules/ayyo.ru.xml index e1f538ec4dc4..3959e38be160 100644 --- a/src/chrome/content/rules/ayyo.ru.xml +++ b/src/chrome/content/rules/ayyo.ru.xml @@ -29,7 +29,7 @@ wanted.ayyo.ru ² ¹ mismatch ² refused --> - + diff --git a/src/chrome/content/rules/azalead.com.xml b/src/chrome/content/rules/azalead.com.xml index ad4f6d4f36f1..d5f42ceb1920 100644 --- a/src/chrome/content/rules/azalead.com.xml +++ b/src/chrome/content/rules/azalead.com.xml @@ -3,7 +3,7 @@ - + - + - + + + + + + + diff --git a/src/chrome/content/rules/backchannel.com.xml b/src/chrome/content/rules/backchannel.com.xml index 2dcde32ea860..ac718ad6e121 100644 --- a/src/chrome/content/rules/backchannel.com.xml +++ b/src/chrome/content/rules/backchannel.com.xml @@ -6,7 +6,7 @@ - + diff --git a/src/chrome/content/rules/bacontent.de.xml b/src/chrome/content/rules/bacontent.de.xml new file mode 100644 index 000000000000..5f3400024f43 --- /dev/null +++ b/src/chrome/content/rules/bacontent.de.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/bad-dragon.com.xml b/src/chrome/content/rules/bad-dragon.com.xml index 2e774e91aebb..7fecad735430 100644 --- a/src/chrome/content/rules/bad-dragon.com.xml +++ b/src/chrome/content/rules/bad-dragon.com.xml @@ -8,7 +8,7 @@ Fetch error: http://www.bad-dragon.com/ => https://www.bad-dragon.com/: Too many - .bad-dragon.com --> - + diff --git a/src/chrome/content/rules/baden-wuerttemberg.de.xml b/src/chrome/content/rules/baden-wuerttemberg.de.xml index cacd3093bb75..1a4a9a445bd7 100644 --- a/src/chrome/content/rules/baden-wuerttemberg.de.xml +++ b/src/chrome/content/rules/baden-wuerttemberg.de.xml @@ -8,7 +8,6 @@ www.energie.baden-wuerttemberg.de www.finanzministerium.baden-wuerttemberg.de www.haw.baden-wuerttemberg.de - hvz.baden-wuerttemberg.de immobilien.baden-wuerttemberg.de www.innenministerium.baden-wuerttemberg.de jum.baden-wuerttemberg.de @@ -79,16 +78,14 @@ www.xfaweb.baden-wuerttemberg.de Wrong content: - www.hvz.baden-wuerttemberg.de taluftwiki-leitfaden.lubw.baden-wuerttemberg.de - - Mismatch on ^ --> + @@ -98,6 +95,8 @@ + + @@ -123,6 +122,7 @@ + @@ -145,10 +145,6 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/badv.bund.de.xml b/src/chrome/content/rules/badv.bund.de.xml new file mode 100644 index 000000000000..872c51b61480 --- /dev/null +++ b/src/chrome/content/rules/badv.bund.de.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/baf.bund.de.xml b/src/chrome/content/rules/baf.bund.de.xml new file mode 100644 index 000000000000..b8521e36340c --- /dev/null +++ b/src/chrome/content/rules/baf.bund.de.xml @@ -0,0 +1,12 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/bafg.de.xml b/src/chrome/content/rules/bafg.de.xml new file mode 100644 index 000000000000..4df3e7ac53b3 --- /dev/null +++ b/src/chrome/content/rules/bafg.de.xml @@ -0,0 +1,39 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/bafin.de.xml b/src/chrome/content/rules/bafin.de.xml new file mode 100644 index 000000000000..977970a6e674 --- /dev/null +++ b/src/chrome/content/rules/bafin.de.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/bafza.de.xml b/src/chrome/content/rules/bafza.de.xml new file mode 100644 index 000000000000..a8c775057ade --- /dev/null +++ b/src/chrome/content/rules/bafza.de.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/bag.bund.de.xml b/src/chrome/content/rules/bag.bund.de.xml new file mode 100644 index 000000000000..2f7db938fc70 --- /dev/null +++ b/src/chrome/content/rules/bag.bund.de.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/baidustatic.com.xml b/src/chrome/content/rules/baidustatic.com.xml new file mode 100644 index 000000000000..d370ff0b9024 --- /dev/null +++ b/src/chrome/content/rules/baidustatic.com.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/baifendian.xml b/src/chrome/content/rules/baifendian.xml index a059854bb79f..ba1da6e2f69e 100644 --- a/src/chrome/content/rules/baifendian.xml +++ b/src/chrome/content/rules/baifendian.xml @@ -33,7 +33,7 @@ - + diff --git a/src/chrome/content/rules/bairdmounts.com.xml b/src/chrome/content/rules/bairdmounts.com.xml index a5bb476068ae..17c15c41cdcd 100644 --- a/src/chrome/content/rules/bairdmounts.com.xml +++ b/src/chrome/content/rules/bairdmounts.com.xml @@ -15,7 +15,7 @@ --> - + + + + + + + + + + + diff --git a/src/chrome/content/rules/baks.bund.de.xml b/src/chrome/content/rules/baks.bund.de.xml new file mode 100644 index 000000000000..262f17cb6bcd --- /dev/null +++ b/src/chrome/content/rules/baks.bund.de.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/balabit.hu.xml b/src/chrome/content/rules/balabit.hu.xml index 859d3be1866a..d1a4181397c5 100644 --- a/src/chrome/content/rules/balabit.hu.xml +++ b/src/chrome/content/rules/balabit.hu.xml @@ -30,7 +30,7 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/bankcomat.com.xml b/src/chrome/content/rules/bankcomat.com.xml index 115f171a8741..0f5a39182700 100644 --- a/src/chrome/content/rules/bankcomat.com.xml +++ b/src/chrome/content/rules/bankcomat.com.xml @@ -5,7 +5,7 @@ Fetch error: http://bankcomat.com/ => https://bankcomat.com/: (60, 'SSL certific Fetch error: http://www.bankcomat.com/ => https://www.bankcomat.com/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + diff --git a/src/chrome/content/rules/bankid.com.xml b/src/chrome/content/rules/bankid.com.xml new file mode 100644 index 000000000000..20e852e63837 --- /dev/null +++ b/src/chrome/content/rules/bankid.com.xml @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/banned.video.xml b/src/chrome/content/rules/banned.video.xml new file mode 100644 index 000000000000..332cf716234a --- /dev/null +++ b/src/chrome/content/rules/banned.video.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/bargainmoose.ca.xml b/src/chrome/content/rules/bargainmoose.ca.xml index 70ad73317c54..9864d9af228f 100644 --- a/src/chrome/content/rules/bargainmoose.ca.xml +++ b/src/chrome/content/rules/bargainmoose.ca.xml @@ -16,7 +16,7 @@ --> - + + + + + + + + diff --git a/src/chrome/content/rules/barnardos.org.uk.xml b/src/chrome/content/rules/barnardos.org.uk.xml index 25c6385583e6..4027fa74d713 100644 --- a/src/chrome/content/rules/barnardos.org.uk.xml +++ b/src/chrome/content/rules/barnardos.org.uk.xml @@ -24,7 +24,7 @@ Fetch error: http://testllwcmlw.barnardos.org.uk/ => https://testllwcmlw.barnard - www.barnardos.org.uk --> - + @@ -43,7 +43,7 @@ Fetch error: http://testllwcmlw.barnardos.org.uk/ => https://testllwcmlw.barnard - + - + https://applicationstemp.barnsley.gov.uk/: (6, 'Could not resolve host: applicationstemp.barnsley.gov.uk') - - Barnsley Metropolitan Borough Council - - For other UK government coverage, see GOV.UK.xml. - - - Nonfunctional hosts in *barnsley.gov.uk: - - - edemocracy ᵃ - - fsd ʰ - - new ² - - wwwapplications ᵇ - - wwwdev³ - - ² 200 "404" - ³ 403 - ᵃ Shows another domain - ᵇ Shows default page - ʰ Redirects to http - - - Problematic hosts in *barnsley.gov.uk: - - - ^ ᵐ - - consult ᵐ - - ᵐ Mismatched - - - Insecure cookies are set for these domains and hosts: ᶜ - - - applications.barnsley.gov.uk - - applicationstemp.barnsley.gov.uk - - consult.barnsley.gov.uk - - education.barnsley.gov.uk - - .www.barnsley.gov.uk - - www2.barnsley.gov.uk - - ᶜ See https://owasp.org/index.php/SecureFlag - ---> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/barrons.com.xml b/src/chrome/content/rules/barrons.com.xml index 4492bbba4988..87b74e09d551 100644 --- a/src/chrome/content/rules/barrons.com.xml +++ b/src/chrome/content/rules/barrons.com.xml @@ -31,8 +31,8 @@ - - + + - - + @@ -39,15 +41,6 @@ - - - - - - diff --git a/src/chrome/content/rules/basildon.gov.uk.xml b/src/chrome/content/rules/basildon.gov.uk.xml index 2f957902958c..d7e4e9fd85fd 100644 --- a/src/chrome/content/rules/basildon.gov.uk.xml +++ b/src/chrome/content/rules/basildon.gov.uk.xml @@ -34,7 +34,7 @@ Exceptions: --> - + @@ -44,7 +44,7 @@ - + @@ -63,7 +63,7 @@ - + https://bataysk-gorod.ru/: (7, 'Failed Fetch error: http://www.bataysk-gorod.ru/ => https://www.bataysk-gorod.ru/: (7, 'Failed to connect to www.bataysk-gorod.ru port 443: Connection refused') Fetch error: http://rss.bataysk-gorod.ru/ => https://rss.bataysk-gorod.ru/: (7, 'Failed to connect to rss.bataysk-gorod.ru port 443: Connection refused') old. refused --> - + diff --git a/src/chrome/content/rules/bato.to.xml b/src/chrome/content/rules/bato.to.xml index 0b88aab1ff90..bf27fed1a8cf 100644 --- a/src/chrome/content/rules/bato.to.xml +++ b/src/chrome/content/rules/bato.to.xml @@ -1,7 +1,7 @@ - + diff --git a/src/chrome/content/rules/bauercreative.net.xml b/src/chrome/content/rules/bauercreative.net.xml index cd068b0abc48..32a1bfea9914 100644 --- a/src/chrome/content/rules/bauercreative.net.xml +++ b/src/chrome/content/rules/bauercreative.net.xml @@ -1,37 +1,15 @@ - + - + + - - - - + - diff --git a/src/chrome/content/rules/bauermedia.co.uk.xml b/src/chrome/content/rules/bauermedia.co.uk.xml index b87e6fda88df..5c95d0a1d2dd 100644 --- a/src/chrome/content/rules/bauermedia.co.uk.xml +++ b/src/chrome/content/rules/bauermedia.co.uk.xml @@ -39,7 +39,7 @@ Fetch error: http://bauermedia.co.uk/ => https://bauermedia.co.uk/: (7, 'Failed ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -52,7 +52,7 @@ Fetch error: http://bauermedia.co.uk/ => https://bauermedia.co.uk/: (7, 'Failed --> - + - + + + + + + + + + diff --git a/src/chrome/content/rules/bay12games.com.xml b/src/chrome/content/rules/bay12games.com.xml new file mode 100644 index 000000000000..0089429227ca --- /dev/null +++ b/src/chrome/content/rules/bay12games.com.xml @@ -0,0 +1,21 @@ + + + + + + + diff --git a/src/chrome/content/rules/bbc.co.uk-resources.xml b/src/chrome/content/rules/bbc.co.uk-resources.xml deleted file mode 100644 index 24b91b16e5f9..000000000000 --- a/src/chrome/content/rules/bbc.co.uk-resources.xml +++ /dev/null @@ -1,62 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/bbci.co.uk.xml b/src/chrome/content/rules/bbci.co.uk.xml index d730208e4fe0..424db99e48a6 100644 --- a/src/chrome/content/rules/bbci.co.uk.xml +++ b/src/chrome/content/rules/bbci.co.uk.xml @@ -62,7 +62,7 @@ - + - + - + - + diff --git a/src/chrome/content/rules/bbr.bund.de.xml b/src/chrome/content/rules/bbr.bund.de.xml new file mode 100644 index 000000000000..9b0d6b119bf2 --- /dev/null +++ b/src/chrome/content/rules/bbr.bund.de.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/bbsr.bund.de.xml b/src/chrome/content/rules/bbsr.bund.de.xml new file mode 100644 index 000000000000..58a95b8bd40a --- /dev/null +++ b/src/chrome/content/rules/bbsr.bund.de.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/bbthat.com.xml b/src/chrome/content/rules/bbthat.com.xml index 4e809732c0ed..aaad2e9c77d3 100644 --- a/src/chrome/content/rules/bbthat.com.xml +++ b/src/chrome/content/rules/bbthat.com.xml @@ -16,7 +16,7 @@ - + - + diff --git a/src/chrome/content/rules/bdip.org.uk.xml b/src/chrome/content/rules/bdip.org.uk.xml index 37f90d626445..ec6e05a0ea97 100644 --- a/src/chrome/content/rules/bdip.org.uk.xml +++ b/src/chrome/content/rules/bdip.org.uk.xml @@ -15,7 +15,7 @@ - + - - - - - - @@ -40,26 +37,60 @@ + + + + + + - + + + + - + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/beabloo.com.xml b/src/chrome/content/rules/beabloo.com.xml index 1377684aeb12..32934f6dc76d 100644 --- a/src/chrome/content/rules/beabloo.com.xml +++ b/src/chrome/content/rules/beabloo.com.xml @@ -26,7 +26,7 @@ --> - + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/bedford.gov.uk.xml b/src/chrome/content/rules/bedford.gov.uk.xml index 0801a6008a1c..a147ed3e5e9b 100644 --- a/src/chrome/content/rules/bedford.gov.uk.xml +++ b/src/chrome/content/rules/bedford.gov.uk.xml @@ -44,7 +44,7 @@ Fetch error: http://www.athleticstadium.bedford.gov.uk/ => https://www.bedford.g ˢ Secured by us --> - + @@ -73,7 +73,7 @@ Fetch error: http://www.athleticstadium.bedford.gov.uk/ => https://www.bedford.g --> - + - - - - - - - - - - - - diff --git a/src/chrome/content/rules/beej.us.xml b/src/chrome/content/rules/beej.us.xml index 0efffb64869b..8960863239f9 100644 --- a/src/chrome/content/rules/beej.us.xml +++ b/src/chrome/content/rules/beej.us.xml @@ -4,7 +4,7 @@ - + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/beirel.ru.xml b/src/chrome/content/rules/beirel.ru.xml deleted file mode 100644 index d0e6cd1f3f20..000000000000 --- a/src/chrome/content/rules/beirel.ru.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/belaruswith.me.xml b/src/chrome/content/rules/belaruswith.me.xml new file mode 100644 index 000000000000..24aa2c709d91 --- /dev/null +++ b/src/chrome/content/rules/belaruswith.me.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/belive.ru.xml b/src/chrome/content/rules/belive.ru.xml deleted file mode 100644 index fb95bb73afd5..000000000000 --- a/src/chrome/content/rules/belive.ru.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/chrome/content/rules/bell-cranel.net.xml b/src/chrome/content/rules/bell-cranel.net.xml index c0046bc14b81..140ab2f31780 100644 --- a/src/chrome/content/rules/bell-cranel.net.xml +++ b/src/chrome/content/rules/bell-cranel.net.xml @@ -17,7 +17,7 @@ --> - + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/bellewaerdefun.be.xml b/src/chrome/content/rules/bellewaerdefun.be.xml new file mode 100644 index 000000000000..9a38ae588e21 --- /dev/null +++ b/src/chrome/content/rules/bellewaerdefun.be.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/benchmarkjs.com.xml b/src/chrome/content/rules/benchmarkjs.com.xml index 49df28ef970e..a191dbcc2d82 100644 --- a/src/chrome/content/rules/benchmarkjs.com.xml +++ b/src/chrome/content/rules/benchmarkjs.com.xml @@ -2,5 +2,5 @@ - + diff --git a/src/chrome/content/rules/benj.cloud.xml b/src/chrome/content/rules/benj.cloud.xml new file mode 100644 index 000000000000..e1d9d5e46952 --- /dev/null +++ b/src/chrome/content/rules/benj.cloud.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/bepixelung.org.xml b/src/chrome/content/rules/bepixelung.org.xml index 7dc6ed4c4cca..3a9bddaf0c9e 100644 --- a/src/chrome/content/rules/bepixelung.org.xml +++ b/src/chrome/content/rules/bepixelung.org.xml @@ -19,7 +19,7 @@ --> - + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/bet365.es.xml b/src/chrome/content/rules/bet365.es.xml index ae09bb14078f..793c057b4fbb 100644 --- a/src/chrome/content/rules/bet365.es.xml +++ b/src/chrome/content/rules/bet365.es.xml @@ -1,5 +1,18 @@ - + + + + + + + + + + + + - + + + diff --git a/src/chrome/content/rules/bet365affiliates.com.xml b/src/chrome/content/rules/bet365affiliates.com.xml index c7289ebe7b4a..3fd534a94cb2 100644 --- a/src/chrome/content/rules/bet365affiliates.com.xml +++ b/src/chrome/content/rules/bet365affiliates.com.xml @@ -18,7 +18,7 @@ - + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/betanews.com.xml b/src/chrome/content/rules/betanews.com.xml index aa2567c2563b..1da9bd8fd9fd 100644 --- a/src/chrome/content/rules/betanews.com.xml +++ b/src/chrome/content/rules/betanews.com.xml @@ -46,7 +46,7 @@ --> - + - - - - - - + + diff --git a/src/chrome/content/rules/bezeq.co.il.xml b/src/chrome/content/rules/bezeq.co.il.xml index 732de70ef7cc..58fc7b9ea0ec 100644 --- a/src/chrome/content/rules/bezeq.co.il.xml +++ b/src/chrome/content/rules/bezeq.co.il.xml @@ -36,7 +36,7 @@ Fetch error: http://music.bezeq.co.il/ => https://music.bezeq.co.il/: (6, 'Could Mixed content: - Images, on: - + - bsupport, m from www02.bezeq.co.il ˢ - m from www.bezeq.co.il ˢ @@ -45,7 +45,7 @@ Fetch error: http://music.bezeq.co.il/ => https://music.bezeq.co.il/: (6, 'Could ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -69,7 +69,7 @@ Fetch error: http://music.bezeq.co.il/ => https://music.bezeq.co.il/: (6, 'Could - + - - - - - - - diff --git a/src/chrome/content/rules/bfe.bund.de.xml b/src/chrome/content/rules/bfe.bund.de.xml new file mode 100644 index 000000000000..f436d57ea424 --- /dev/null +++ b/src/chrome/content/rules/bfe.bund.de.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/bfn.de.xml b/src/chrome/content/rules/bfn.de.xml new file mode 100644 index 000000000000..e509208f88ec --- /dev/null +++ b/src/chrome/content/rules/bfn.de.xml @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/bg-verkehr.de.xml b/src/chrome/content/rules/bg-verkehr.de.xml new file mode 100644 index 000000000000..d55bfe30bb85 --- /dev/null +++ b/src/chrome/content/rules/bg-verkehr.de.xml @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/bger.ch.xml b/src/chrome/content/rules/bger.ch.xml index 7b3edad4a294..1298ec996862 100644 --- a/src/chrome/content/rules/bger.ch.xml +++ b/src/chrome/content/rules/bger.ch.xml @@ -1,17 +1,20 @@ - - - - + + diff --git a/src/chrome/content/rules/bgetem.de.xml b/src/chrome/content/rules/bgetem.de.xml new file mode 100644 index 000000000000..943228c06b2d --- /dev/null +++ b/src/chrome/content/rules/bgetem.de.xml @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/bghm.de.xml b/src/chrome/content/rules/bghm.de.xml new file mode 100644 index 000000000000..8d8974af22b2 --- /dev/null +++ b/src/chrome/content/rules/bghm.de.xml @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/bghw.de.xml b/src/chrome/content/rules/bghw.de.xml new file mode 100644 index 000000000000..0a51875f870e --- /dev/null +++ b/src/chrome/content/rules/bghw.de.xml @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/bgn.de.xml b/src/chrome/content/rules/bgn.de.xml new file mode 100644 index 000000000000..f007855e843c --- /dev/null +++ b/src/chrome/content/rules/bgn.de.xml @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/bgrci.de.xml b/src/chrome/content/rules/bgrci.de.xml new file mode 100644 index 000000000000..c9bbaca81f68 --- /dev/null +++ b/src/chrome/content/rules/bgrci.de.xml @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/bgslinc.com.xml b/src/chrome/content/rules/bgslinc.com.xml new file mode 100644 index 000000000000..f46a0c819211 --- /dev/null +++ b/src/chrome/content/rules/bgslinc.com.xml @@ -0,0 +1,21 @@ + + + + + + + + diff --git a/src/chrome/content/rules/bgw-online.de.xml b/src/chrome/content/rules/bgw-online.de.xml new file mode 100644 index 000000000000..90ed26861bc3 --- /dev/null +++ b/src/chrome/content/rules/bgw-online.de.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/bhphoto.com.xml b/src/chrome/content/rules/bhphoto.com.xml index 2c3a11913bf0..46aa40c44e0d 100644 --- a/src/chrome/content/rules/bhphoto.com.xml +++ b/src/chrome/content/rules/bhphoto.com.xml @@ -11,7 +11,7 @@ - + - + https://wiki.bicomsystems.com/: (6 blog.bicomsystems.com expired --> - + diff --git a/src/chrome/content/rules/bicotender.ru.xml b/src/chrome/content/rules/bicotender.ru.xml new file mode 100644 index 000000000000..b71c483de320 --- /dev/null +++ b/src/chrome/content/rules/bicotender.ru.xml @@ -0,0 +1,19 @@ + + + + + + + + diff --git a/src/chrome/content/rules/biderundtanner.ch.xml b/src/chrome/content/rules/biderundtanner.ch.xml index b9c6afddd002..3d6fa79e2eee 100644 --- a/src/chrome/content/rules/biderundtanner.ch.xml +++ b/src/chrome/content/rules/biderundtanner.ch.xml @@ -1,9 +1,9 @@ - + - - + + + + diff --git a/src/chrome/content/rules/bigfile.to.xml b/src/chrome/content/rules/bigfile.to.xml index 0161b16a8c18..67c5af2b6d0f 100644 --- a/src/chrome/content/rules/bigfile.to.xml +++ b/src/chrome/content/rules/bigfile.to.xml @@ -24,7 +24,7 @@ --> - + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/bikeability.org.uk.xml b/src/chrome/content/rules/bikeability.org.uk.xml index 72011fab8852..b8b57d97f469 100644 --- a/src/chrome/content/rules/bikeability.org.uk.xml +++ b/src/chrome/content/rules/bikeability.org.uk.xml @@ -21,7 +21,7 @@ - + - + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/birmingham.gov.uk-falsemixed.xml b/src/chrome/content/rules/birmingham.gov.uk-falsemixed.xml index a95e315b87c6..2182a280ae6f 100644 --- a/src/chrome/content/rules/birmingham.gov.uk-falsemixed.xml +++ b/src/chrome/content/rules/birmingham.gov.uk-falsemixed.xml @@ -7,7 +7,7 @@ - + https://lsblaw.birmingham.gov.u Mixed content: - css, on: - + - lsblaw from fonts.googleapis.com ˢ - property from $self ˢ @@ -64,7 +64,7 @@ Fetch error: http://lsblaw.birmingham.gov.uk/ => https://lsblaw.birmingham.gov.u ˢ Secured by us --> - + @@ -101,12 +101,12 @@ Fetch error: http://lsblaw.birmingham.gov.uk/ => https://lsblaw.birmingham.gov.u - + - + diff --git a/src/chrome/content/rules/bis.gov.uk-falsemixed.xml b/src/chrome/content/rules/bis.gov.uk-falsemixed.xml index b8d612102bae..6012472b5e12 100644 --- a/src/chrome/content/rules/bis.gov.uk-falsemixed.xml +++ b/src/chrome/content/rules/bis.gov.uk-falsemixed.xml @@ -9,12 +9,12 @@ Fetch error: http://feconnect.sfa.bis.gov.uk/ => https://feconnect.sfa.bis.gov.u NB: See https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + - + - + https://developer.bitcasa.com/: (60, 'SSL certificate problem: unable to get local issuer certificate') -Fetch error: http://m.bitcasa.com/ => https://m.bitcasa.com/: (6, 'Could not resolve host: m.bitcasa.com') -Fetch error: http://my.bitcasa.com/ => https://my.bitcasa.com/: (6, 'Could not resolve host: my.bitcasa.com') -Fetch error: http://portal.bitcasa.com/ => https://portal.bitcasa.com/: (6, 'Could not resolve host: portal.bitcasa.com') -Fetch error: http://support.bitcasa.com/ => https://support.bitcasa.com/: (6, 'Could not resolve host: support.bitcasa.com') - - Nonfunctional hosts in *bitcasa.com: - - - forums * - - * Shows sh11; mismatched, CN: sh11.lw.ipslink.com - - - Problematic hosts in *bitcasa.com: - - - blog * - - developer.blog * - - l ² - - * Wordpress - ² Mismatched - ---> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/bitclubnetwork.com.xml b/src/chrome/content/rules/bitclubnetwork.com.xml deleted file mode 100644 index ddf120583c26..000000000000 --- a/src/chrome/content/rules/bitclubnetwork.com.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/bitcoinknots.org.xml b/src/chrome/content/rules/bitcoinknots.org.xml index 0d623f6a7db7..0a2cd49d21de 100644 --- a/src/chrome/content/rules/bitcoinknots.org.xml +++ b/src/chrome/content/rules/bitcoinknots.org.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.bitcoinknots.org/ => https://www.bitcoinknots.org/: (51, "SSL: no alternative certificate subject name matches target host name 'www.bitcoinknots.org'") --> - + diff --git a/src/chrome/content/rules/bitcointrezor.com.xml b/src/chrome/content/rules/bitcointrezor.com.xml index ba2091f0a927..4e3b2b2043b7 100644 --- a/src/chrome/content/rules/bitcointrezor.com.xml +++ b/src/chrome/content/rules/bitcointrezor.com.xml @@ -8,7 +8,7 @@ - + - - - - - - - - - diff --git a/src/chrome/content/rules/bitlaunch.io.xml b/src/chrome/content/rules/bitlaunch.io.xml new file mode 100644 index 000000000000..82fbd35dd275 --- /dev/null +++ b/src/chrome/content/rules/bitlaunch.io.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/bitmixer.io.xml b/src/chrome/content/rules/bitmixer.io.xml deleted file mode 100644 index 97e241a7b12f..000000000000 --- a/src/chrome/content/rules/bitmixer.io.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/bitrise.io.xml b/src/chrome/content/rules/bitrise.io.xml index e5f8114d7a5b..167de5b77623 100644 --- a/src/chrome/content/rules/bitrise.io.xml +++ b/src/chrome/content/rules/bitrise.io.xml @@ -8,7 +8,7 @@ chat.bitrise.io timed out devcenter.bitrise.io mismatch status.bitrise.io mismatch --> - + diff --git a/src/chrome/content/rules/bitshare.com.xml b/src/chrome/content/rules/bitshare.com.xml index 432e05625929..55787f65af60 100644 --- a/src/chrome/content/rules/bitshare.com.xml +++ b/src/chrome/content/rules/bitshare.com.xml @@ -27,7 +27,7 @@ - + - + - + + + + + + + + + diff --git a/src/chrome/content/rules/bk55.ru.xml b/src/chrome/content/rules/bk55.ru.xml index c92e072f722c..b7d475e09d04 100644 --- a/src/chrome/content/rules/bk55.ru.xml +++ b/src/chrome/content/rules/bk55.ru.xml @@ -8,7 +8,7 @@ Fetch error: http://m.bk55.ru/ => https://m.bk55.ru/: Too many redirects while f Fetch error: http://blog.bk55.ru/ => https://blog.bk55.ru/: Too many redirects while fetching 'https://blog.bk55.ru/' --> - + diff --git a/src/chrome/content/rules/blackarrowsoftware.com.xml b/src/chrome/content/rules/blackarrowsoftware.com.xml deleted file mode 100644 index 4e18ff222a67..000000000000 --- a/src/chrome/content/rules/blackarrowsoftware.com.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/blackburn.gov.uk.xml b/src/chrome/content/rules/blackburn.gov.uk.xml index 18df9ea4ba5a..7cc5c5b38a57 100644 --- a/src/chrome/content/rules/blackburn.gov.uk.xml +++ b/src/chrome/content/rules/blackburn.gov.uk.xml @@ -33,7 +33,7 @@ Fetch error: http://revenuesbenefits.blackburn.gov.uk/ => https://revenuesbenefi ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -58,7 +58,7 @@ Fetch error: http://revenuesbenefits.blackburn.gov.uk/ => https://revenuesbenefi - + - + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/blindseeker.com.xml b/src/chrome/content/rules/blindseeker.com.xml index eda7b02605e2..afc0c664d1f2 100644 --- a/src/chrome/content/rules/blindseeker.com.xml +++ b/src/chrome/content/rules/blindseeker.com.xml @@ -10,7 +10,7 @@ - + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/blockchainbdgpzk.onion.xml b/src/chrome/content/rules/blockchainbdgpzk.onion.xml new file mode 100644 index 000000000000..441526817a34 --- /dev/null +++ b/src/chrome/content/rules/blockchainbdgpzk.onion.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/blogimg.jp.xml b/src/chrome/content/rules/blogimg.jp.xml new file mode 100644 index 000000000000..6390a9dd51eb --- /dev/null +++ b/src/chrome/content/rules/blogimg.jp.xml @@ -0,0 +1,10 @@ + + + + + + + diff --git a/src/chrome/content/rules/blogsmithmedia.com.xml b/src/chrome/content/rules/blogsmithmedia.com.xml index f15bc2eeddc1..b53ad4e8bccb 100644 --- a/src/chrome/content/rules/blogsmithmedia.com.xml +++ b/src/chrome/content/rules/blogsmithmedia.com.xml @@ -3,26 +3,32 @@ For other AOL coverage, see AOL.xml. + Non-functional subdomain: + - blogcdn.com (could not resolve host) + - media (certificate mismatch) + - blogsmithcdn.com (could not resolve host) + - blogsmithmedia.com (could not resolve host) + - www (certificate mismatch) CDN buckets: - - www.blogsmithcdn-ds.com.edgesuite.net - www.blogcdn.com - www.blogsmithcdn.com - www.blogsmithmedia.com - ^blogsmithmedia.com: 503, Akamai --> + + + + - - - + diff --git a/src/chrome/content/rules/bloomsky.com.xml b/src/chrome/content/rules/bloomsky.com.xml index f36e20ce51de..5c37734aba96 100644 --- a/src/chrome/content/rules/bloomsky.com.xml +++ b/src/chrome/content/rules/bloomsky.com.xml @@ -11,13 +11,13 @@ Fetch error: http://maps.bloomsky.com/ => https://maps.bloomsky.com/: (60, 'SSL - weatherlution.com (handshake failure) Mixed content: - + - video from storage.googleapis.com * * Secured by us. --> - + diff --git a/src/chrome/content/rules/blubrry.com.xml b/src/chrome/content/rules/blubrry.com.xml index 47eb91b8fb92..f6c1af95cde4 100644 --- a/src/chrome/content/rules/blubrry.com.xml +++ b/src/chrome/content/rules/blubrry.com.xml @@ -23,7 +23,7 @@ - + - + - + diff --git a/src/chrome/content/rules/bmbf.de.xml b/src/chrome/content/rules/bmbf.de.xml index d2e38b622953..04d789be11b8 100644 --- a/src/chrome/content/rules/bmbf.de.xml +++ b/src/chrome/content/rules/bmbf.de.xml @@ -4,7 +4,7 @@ - + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/bmf1.dk.xml b/src/chrome/content/rules/bmf1.dk.xml new file mode 100644 index 000000000000..ee0168b5ea9b --- /dev/null +++ b/src/chrome/content/rules/bmf1.dk.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/bmjv.de.xml b/src/chrome/content/rules/bmjv.de.xml new file mode 100644 index 000000000000..9240fd17c936 --- /dev/null +++ b/src/chrome/content/rules/bmjv.de.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/bnitm.de.xml b/src/chrome/content/rules/bnitm.de.xml new file mode 100644 index 000000000000..a9fab6be4bd9 --- /dev/null +++ b/src/chrome/content/rules/bnitm.de.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/bnl.gov.xml b/src/chrome/content/rules/bnl.gov.xml index 13caaea07877..ee2e1123b95b 100644 --- a/src/chrome/content/rules/bnl.gov.xml +++ b/src/chrome/content/rules/bnl.gov.xml @@ -92,7 +92,7 @@ Fetch error: http://wiki.bnl.gov/ => https://wiki.bnl.gov/: (6, 'Could not resol ˢ Secured by us --> - + @@ -141,7 +141,7 @@ Fetch error: http://wiki.bnl.gov/ => https://wiki.bnl.gov/: (6, 'Could not resol - + - + diff --git a/src/chrome/content/rules/bnymellon.com.xml b/src/chrome/content/rules/bnymellon.com.xml index f559128cc42a..512bda2d3855 100644 --- a/src/chrome/content/rules/bnymellon.com.xml +++ b/src/chrome/content/rules/bnymellon.com.xml @@ -49,7 +49,7 @@ Fetch error: http://talentcommunity.bnymellon.com/ => https://talentcommunity.bn - jobs.bnymellon.com --> - + @@ -76,7 +76,7 @@ Fetch error: http://talentcommunity.bnymellon.com/ => https://talentcommunity.bn - + https://www.bnymellonim.com/: (60, 'SSL ^bnymellonim.com: Dropped --> - + @@ -21,7 +21,7 @@ Fetch error: http://bnymellonim.com/ => https://www.bnymellonim.com/: (60, 'SSL - + + + + + + + + + + + + diff --git a/src/chrome/content/rules/boburnham.com.xml b/src/chrome/content/rules/boburnham.com.xml new file mode 100644 index 000000000000..d5db40254e1c --- /dev/null +++ b/src/chrome/content/rules/boburnham.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/boell.org.xml b/src/chrome/content/rules/boell.org.xml index d70d8b49de69..b48abac1abaa 100644 --- a/src/chrome/content/rules/boell.org.xml +++ b/src/chrome/content/rules/boell.org.xml @@ -32,7 +32,7 @@ - + - - + + diff --git a/src/chrome/content/rules/boincstats.com.xml b/src/chrome/content/rules/boincstats.com.xml new file mode 100644 index 000000000000..4668b79e6f8c --- /dev/null +++ b/src/chrome/content/rules/boincstats.com.xml @@ -0,0 +1,39 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/bolton.gov.uk.xml b/src/chrome/content/rules/bolton.gov.uk.xml index 46ab599f3bd1..bfec779a62b8 100644 --- a/src/chrome/content/rules/bolton.gov.uk.xml +++ b/src/chrome/content/rules/bolton.gov.uk.xml @@ -52,7 +52,7 @@ --> - + - + - + - + + + + + + + + diff --git a/src/chrome/content/rules/bookware3000.ca.xml b/src/chrome/content/rules/bookware3000.ca.xml index 9a683cad1312..69c7e2384367 100644 --- a/src/chrome/content/rules/bookware3000.ca.xml +++ b/src/chrome/content/rules/bookware3000.ca.xml @@ -4,7 +4,7 @@ - + @@ -17,4 +17,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/boomstarter.ru.xml b/src/chrome/content/rules/boomstarter.ru.xml index c3d7d67ea2a7..9502f188a398 100644 --- a/src/chrome/content/rules/boomstarter.ru.xml +++ b/src/chrome/content/rules/boomstarter.ru.xml @@ -7,7 +7,7 @@ gifts.boomstarter.ru nonexist --> - + diff --git a/src/chrome/content/rules/boredofstudies.org.xml b/src/chrome/content/rules/boredofstudies.org.xml new file mode 100644 index 000000000000..2caa9778deae --- /dev/null +++ b/src/chrome/content/rules/boredofstudies.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/bosfera.ru.xml b/src/chrome/content/rules/bosfera.ru.xml index a888c2277bd4..7fc11b61beaa 100644 --- a/src/chrome/content/rules/bosfera.ru.xml +++ b/src/chrome/content/rules/bosfera.ru.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://bosfera.bosfera.ru/ => https://bosfera.bosfera.ru/: (6, 'Could not resolve host: bosfera.bosfera.ru') --> - + diff --git a/src/chrome/content/rules/bostonfed.org.xml b/src/chrome/content/rules/bostonfed.org.xml deleted file mode 100644 index dca80c54e441..000000000000 --- a/src/chrome/content/rules/bostonfed.org.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/boundarydevices.com.xml b/src/chrome/content/rules/boundarydevices.com.xml index 7ff32e98d60c..b55874cf0fac 100644 --- a/src/chrome/content/rules/boundarydevices.com.xml +++ b/src/chrome/content/rules/boundarydevices.com.xml @@ -12,7 +12,7 @@ - + diff --git a/src/chrome/content/rules/bplaced.xml b/src/chrome/content/rules/bplaced.xml index 1540c8d8b611..101479eec8ce 100644 --- a/src/chrome/content/rules/bplaced.xml +++ b/src/chrome/content/rules/bplaced.xml @@ -10,12 +10,11 @@ - + - diff --git a/src/chrome/content/rules/bpsshop.org.uk.xml b/src/chrome/content/rules/bpsshop.org.uk.xml index 9ba645867f5d..2ad77e651295 100644 --- a/src/chrome/content/rules/bpsshop.org.uk.xml +++ b/src/chrome/content/rules/bpsshop.org.uk.xml @@ -3,7 +3,7 @@ (www.)?bpsshop.org.uk: refused - + --> diff --git a/src/chrome/content/rules/bracknell-forest.gov.uk.xml b/src/chrome/content/rules/bracknell-forest.gov.uk.xml index 83709d8f392a..a427fa12038f 100644 --- a/src/chrome/content/rules/bracknell-forest.gov.uk.xml +++ b/src/chrome/content/rules/bracknell-forest.gov.uk.xml @@ -72,7 +72,7 @@ - + - + diff --git a/src/chrome/content/rules/brassring.com.xml b/src/chrome/content/rules/brassring.com.xml index 4454eceb6f2d..22a280d71c04 100644 --- a/src/chrome/content/rules/brassring.com.xml +++ b/src/chrome/content/rules/brassring.com.xml @@ -17,7 +17,7 @@ - + - + - + - + - + https://www2.bristol.gov.uk/: (60, ' - www2 ʰ ʰ Some pages redirect to http - + Insecure cookies are set for these domains and hosts: ᶜ @@ -80,7 +80,7 @@ Fetch error: http://www2.bristol.gov.uk/ => https://www2.bristol.gov.uk/: (60, ' ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -173,7 +173,7 @@ Fetch error: http://www2.bristol.gov.uk/ => https://www2.bristol.gov.uk/: (60, ' - + - + https://widgets-script.broadagesports.com/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + @@ -14,7 +14,7 @@ Fetch error: http://widgets-script.broadagesports.com/ => https://widgets-script - + https://secure.broadlan NB: See https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -22,7 +22,7 @@ Non-2xx HTTP code: http://www.broadland.gov.uk/ (200) => https://secure.broadlan - + - + - + - + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/brunel.ac.uk.xml b/src/chrome/content/rules/brunel.ac.uk.xml index 3dabce0c93b1..9e1094e6d049 100644 --- a/src/chrome/content/rules/brunel.ac.uk.xml +++ b/src/chrome/content/rules/brunel.ac.uk.xml @@ -82,8 +82,8 @@ - - + + + + + + + + diff --git a/src/chrome/content/rules/bstu.bund.de.xml b/src/chrome/content/rules/bstu.bund.de.xml new file mode 100644 index 000000000000..bbcfc76bad82 --- /dev/null +++ b/src/chrome/content/rules/bstu.bund.de.xml @@ -0,0 +1,11 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/btinstallershop.com.xml b/src/chrome/content/rules/btinstallershop.com.xml index b6672245b5bb..a2cd2ba9502b 100644 --- a/src/chrome/content/rules/btinstallershop.com.xml +++ b/src/chrome/content/rules/btinstallershop.com.xml @@ -23,7 +23,7 @@ --> - + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/buchhaus.ch.xml b/src/chrome/content/rules/buchhaus.ch.xml index 8733e6a215cc..bb45119c9380 100644 --- a/src/chrome/content/rules/buchhaus.ch.xml +++ b/src/chrome/content/rules/buchhaus.ch.xml @@ -2,8 +2,8 @@ - - + + + + diff --git a/src/chrome/content/rules/buckscc.gov.uk-falsemixed.xml b/src/chrome/content/rules/buckscc.gov.uk-falsemixed.xml index 7d04b7be25de..01d44180a375 100644 --- a/src/chrome/content/rules/buckscc.gov.uk-falsemixed.xml +++ b/src/chrome/content/rules/buckscc.gov.uk-falsemixed.xml @@ -8,7 +8,7 @@ - + https://udp.buckscc.gov.uk/: (6, 'Cou ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -71,7 +71,7 @@ Fetch error: http://udp.buckscc.gov.uk/ => https://udp.buckscc.gov.uk/: (6, 'Cou - + - + - + + + + + + + + diff --git a/src/chrome/content/rules/bundesjustizamt.de.xml b/src/chrome/content/rules/bundesjustizamt.de.xml new file mode 100644 index 000000000000..59aeaef315e4 --- /dev/null +++ b/src/chrome/content/rules/bundesjustizamt.de.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/bundesregierung.de.xml b/src/chrome/content/rules/bundesregierung.de.xml new file mode 100644 index 000000000000..877461b1a303 --- /dev/null +++ b/src/chrome/content/rules/bundesregierung.de.xml @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/bungalows.nl.xml b/src/chrome/content/rules/bungalows.nl.xml index db5edc5eeac4..0a83be87a278 100644 --- a/src/chrome/content/rules/bungalows.nl.xml +++ b/src/chrome/content/rules/bungalows.nl.xml @@ -8,7 +8,7 @@ - + - + - + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/bushcraft-deutschland.de.xml b/src/chrome/content/rules/bushcraft-deutschland.de.xml new file mode 100644 index 000000000000..69724e68c13c --- /dev/null +++ b/src/chrome/content/rules/bushcraft-deutschland.de.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/bushcraft-germany.com.xml b/src/chrome/content/rules/bushcraft-germany.com.xml new file mode 100644 index 000000000000..f6796376f846 --- /dev/null +++ b/src/chrome/content/rules/bushcraft-germany.com.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/business.gov.au.xml b/src/chrome/content/rules/business.gov.au.xml new file mode 100644 index 000000000000..9a9422fd24e8 --- /dev/null +++ b/src/chrome/content/rules/business.gov.au.xml @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/businessclick.com.xml b/src/chrome/content/rules/businessclick.com.xml index ea5afa27f771..664fa03a3f11 100644 --- a/src/chrome/content/rules/businessclick.com.xml +++ b/src/chrome/content/rules/businessclick.com.xml @@ -34,7 +34,7 @@ --> - + - + + + + + diff --git a/src/chrome/content/rules/buttons.social.xml b/src/chrome/content/rules/buttons.social.xml index d200fdef894a..908beb65c0b3 100644 --- a/src/chrome/content/rules/buttons.social.xml +++ b/src/chrome/content/rules/buttons.social.xml @@ -4,7 +4,7 @@ - + - + - + - + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/bws.com.au.xml b/src/chrome/content/rules/bws.com.au.xml new file mode 100644 index 000000000000..68d5ce53599e --- /dev/null +++ b/src/chrome/content/rules/bws.com.au.xml @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/bypassingcensorshipinthe.uk.xml b/src/chrome/content/rules/bypassingcensorshipinthe.uk.xml deleted file mode 100644 index 13c3174ff3ba..000000000000 --- a/src/chrome/content/rules/bypassingcensorshipinthe.uk.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/bytes.com.xml b/src/chrome/content/rules/bytes.com.xml index df010dfc406c..50458dd6680a 100644 --- a/src/chrome/content/rules/bytes.com.xml +++ b/src/chrome/content/rules/bytes.com.xml @@ -17,7 +17,7 @@ - + - + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/cacti.net.xml b/src/chrome/content/rules/cacti.net.xml new file mode 100644 index 000000000000..831feba76ad5 --- /dev/null +++ b/src/chrome/content/rules/cacti.net.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/cadlink.com.xml b/src/chrome/content/rules/cadlink.com.xml index 7dea95917c34..bcd96bae510d 100644 --- a/src/chrome/content/rules/cadlink.com.xml +++ b/src/chrome/content/rules/cadlink.com.xml @@ -18,7 +18,7 @@ --> - + - + - + - + - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + diff --git a/src/chrome/content/rules/cambridgeshire.net.xml b/src/chrome/content/rules/cambridgeshire.net.xml index 0311e89960c5..2147ee73083e 100644 --- a/src/chrome/content/rules/cambridgeshire.net.xml +++ b/src/chrome/content/rules/cambridgeshire.net.xml @@ -14,7 +14,7 @@ - + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/campaignforhouston.com.xml b/src/chrome/content/rules/campaignforhouston.com.xml index 16fbe640a6d9..11522d42696c 100644 --- a/src/chrome/content/rules/campaignforhouston.com.xml +++ b/src/chrome/content/rules/campaignforhouston.com.xml @@ -12,7 +12,7 @@ - + - + - - + + https://survey.cancerresearc ˢ Secured by us --> - + @@ -230,7 +230,7 @@ Fetch error: http://survey.cancerresearchuk.org/ => https://survey.cancerresearc - + - + + + + + + + diff --git a/src/chrome/content/rules/candwich.com.xml b/src/chrome/content/rules/candwich.com.xml new file mode 100644 index 000000000000..d6a78dcf1c2f --- /dev/null +++ b/src/chrome/content/rules/candwich.com.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/cannockchasedc.gov.uk.xml b/src/chrome/content/rules/cannockchasedc.gov.uk.xml index a676772a47e8..d85716d5b12d 100644 --- a/src/chrome/content/rules/cannockchasedc.gov.uk.xml +++ b/src/chrome/content/rules/cannockchasedc.gov.uk.xml @@ -17,7 +17,7 @@ - + - - + + - + - + @@ -56,7 +56,7 @@ Non-2xx HTTP code: http://digitalmarketing.captora.com/rs/719-TVA-959/images/arr - + - + @@ -106,7 +106,7 @@ Fetch error: http://active.cardiff.gov.uk/ => https://active.cardiff.gov.uk/: (6 - + https://www.carecareersdevon For other UK government coverage, see GOV.UK.xml. --> - + - + - + https://api.careerbuild ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -45,7 +45,7 @@ Non-2xx HTTP code: http://api.careerbuilder.no/ (200) => https://api.careerbuild - + - + https://walkinhe - walkinhershoes.careinternational.org.uk --> - + @@ -32,7 +32,7 @@ Fetch error: http://walkinhershoes.careinternational.org.uk/ => https://walkinhe - + - + - + + + + + + + + diff --git a/src/chrome/content/rules/carowinds.com.xml b/src/chrome/content/rules/carowinds.com.xml new file mode 100644 index 000000000000..27d46b1e1e76 --- /dev/null +++ b/src/chrome/content/rules/carowinds.com.xml @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/carsales.com.au.xml b/src/chrome/content/rules/carsales.com.au.xml new file mode 100644 index 000000000000..664e920c8291 --- /dev/null +++ b/src/chrome/content/rules/carsales.com.au.xml @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/carzone.ie.xml b/src/chrome/content/rules/carzone.ie.xml index a18e08c117cd..1fe417f70cff 100644 --- a/src/chrome/content/rules/carzone.ie.xml +++ b/src/chrome/content/rules/carzone.ie.xml @@ -58,7 +58,7 @@ - + - + - + - + https://secure.catchdigital.com/ (www.)?catchdigital.com: Plaintext reply --> - + - + - + + + + + + + + diff --git a/src/chrome/content/rules/cbox.ws.xml b/src/chrome/content/rules/cbox.ws.xml index f6dca2f9d4ab..b93a818e1021 100644 --- a/src/chrome/content/rules/cbox.ws.xml +++ b/src/chrome/content/rules/cbox.ws.xml @@ -7,7 +7,7 @@ - + - + - - - - - - - - - - - diff --git a/src/chrome/content/rules/ccczh.ch.xml b/src/chrome/content/rules/ccczh.ch.xml index f4838af23c04..bc3fe0b8d9c9 100644 --- a/src/chrome/content/rules/ccczh.ch.xml +++ b/src/chrome/content/rules/ccczh.ch.xml @@ -20,7 +20,7 @@ - + + + + + + + diff --git a/src/chrome/content/rules/cdash.org.xml b/src/chrome/content/rules/cdash.org.xml index 11536cba5546..b5d976aa1c20 100644 --- a/src/chrome/content/rules/cdash.org.xml +++ b/src/chrome/content/rules/cdash.org.xml @@ -7,7 +7,7 @@ - + - + - - - - - - - - diff --git a/src/chrome/content/rules/cdnmaster.xml b/src/chrome/content/rules/cdnmaster.xml index 1329912ab13c..3dc03e630dc8 100644 --- a/src/chrome/content/rules/cdnmaster.xml +++ b/src/chrome/content/rules/cdnmaster.xml @@ -4,7 +4,7 @@ --> - + diff --git a/src/chrome/content/rules/cdntrf.com.xml b/src/chrome/content/rules/cdntrf.com.xml new file mode 100644 index 000000000000..3ccf826233b0 --- /dev/null +++ b/src/chrome/content/rules/cdntrf.com.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/cdon.se.xml b/src/chrome/content/rules/cdon.se.xml new file mode 100644 index 000000000000..afcc49b52e17 --- /dev/null +++ b/src/chrome/content/rules/cdon.se.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/cebix.net.xml b/src/chrome/content/rules/cebix.net.xml new file mode 100644 index 000000000000..31e4d8eaea0b --- /dev/null +++ b/src/chrome/content/rules/cebix.net.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/cedarpoint.com.xml b/src/chrome/content/rules/cedarpoint.com.xml new file mode 100644 index 000000000000..ead28bb3fc2a --- /dev/null +++ b/src/chrome/content/rules/cedarpoint.com.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/cede.ch.xml b/src/chrome/content/rules/cede.ch.xml index b0684a4160f0..d01655c6f872 100644 --- a/src/chrome/content/rules/cede.ch.xml +++ b/src/chrome/content/rules/cede.ch.xml @@ -1,9 +1,7 @@ - - - + diff --git a/src/chrome/content/rules/censornet.com.xml b/src/chrome/content/rules/censornet.com.xml index 2169860ee19a..188de356358e 100644 --- a/src/chrome/content/rules/censornet.com.xml +++ b/src/chrome/content/rules/censornet.com.xml @@ -14,7 +14,7 @@ secure.censornet.com different content ¹ mismatch ⁴ self signed --> - + diff --git a/src/chrome/content/rules/centennialbulb.org.xml b/src/chrome/content/rules/centennialbulb.org.xml new file mode 100644 index 000000000000..8a280157ce97 --- /dev/null +++ b/src/chrome/content/rules/centennialbulb.org.xml @@ -0,0 +1,11 @@ + + + + + + + diff --git a/src/chrome/content/rules/central-lincs.org.uk.xml b/src/chrome/content/rules/central-lincs.org.uk.xml index 96b42b56e511..82684560df9c 100644 --- a/src/chrome/content/rules/central-lincs.org.uk.xml +++ b/src/chrome/content/rules/central-lincs.org.uk.xml @@ -10,7 +10,7 @@ Non-2xx HTTP code: http://www.central-lincs.org.uk/ (200) => https://www.lincoln (www.)?central-lincs.org.uk: Refused --> - + @@ -33,7 +33,7 @@ Non-2xx HTTP code: http://www.central-lincs.org.uk/ (200) => https://www.lincoln - + - + - + diff --git a/src/chrome/content/rules/centreformentalhealth.org.uk.xml b/src/chrome/content/rules/centreformentalhealth.org.uk.xml index 60914c18b9bd..b61045961a63 100644 --- a/src/chrome/content/rules/centreformentalhealth.org.uk.xml +++ b/src/chrome/content/rules/centreformentalhealth.org.uk.xml @@ -25,7 +25,7 @@ --> - + - + https://na-sjg.marketo.com/css/mktLPSupportCompat.css (403) -Non-2xx HTTP code: http://info.centrify.com/rs/Centrify/images/centrify-master-logo.png (200) => https://na-sjg.marketo.com/rs/Centrify/images/centrify-master-logo.png (403) - - CDN buckets: - - - d1bymqnf4zi2cz.cloudfront.net ← edge - - centrifyblogs.wpengine.com ← blog - Nonfunctional hosts in *centrify.com: - - blog ᵂ ʰ - community ʳ - - feeds ᶠ - - info ᴹ - - otps.my ʰ - - ᴹ Marketo / shows another domain - ᵂ WP Engine - ᶠ FeedBurner / handshake fails - ʰ Redirects to http + ʳ Refused Problematic hosts in *centrify.com: - - ^ ʳ - - edge ᵐ (Cloudfront) - uptime ᵐ (StatusPage.io) - ʳ Refused ᵐ Mismatched @@ -49,85 +28,31 @@ Non-2xx HTTP code: http://info.centrify.com/rs/Centrify/images/centrify-master-l ˢ Secured by us --> - + - + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + to="https://centrify.statuspage.io/" /> diff --git a/src/chrome/content/rules/centrum.cz.xml b/src/chrome/content/rules/centrum.cz.xml index b4d9679d14bb..cbcf29616582 100644 --- a/src/chrome/content/rules/centrum.cz.xml +++ b/src/chrome/content/rules/centrum.cz.xml @@ -19,6 +19,7 @@ - slovniky.centrum.cz - stahuj.centrum.cz - svatky.centrum.cz + - sw.centrum..cz - tvprogram.centrum.cz - user.stahuj.centrum.cz - www.stahuj.centrum.cz @@ -38,10 +39,12 @@ + + @@ -50,21 +53,13 @@ - - + - - - - - - - diff --git a/src/chrome/content/rules/ceop.police.uk.xml b/src/chrome/content/rules/ceop.police.uk.xml index 910816a94534..7c7b57b7dbc3 100644 --- a/src/chrome/content/rules/ceop.police.uk.xml +++ b/src/chrome/content/rules/ceop.police.uk.xml @@ -18,7 +18,7 @@ --> - + - + - + - - - - - - - - - - - - diff --git a/src/chrome/content/rules/cesky-hosting.cz.xml b/src/chrome/content/rules/cesky-hosting.cz.xml index 933d6beb5dba..28557f917d73 100644 --- a/src/chrome/content/rules/cesky-hosting.cz.xml +++ b/src/chrome/content/rules/cesky-hosting.cz.xml @@ -15,7 +15,7 @@ Fetch error: http://mysql2.cesky-hosting.cz/ => https://mysql2.cesky-hosting.cz/ - opensource.cesky-hosting.cz --> - + diff --git a/src/chrome/content/rules/cgames.de.xml b/src/chrome/content/rules/cgames.de.xml new file mode 100644 index 000000000000..cf212a7328dc --- /dev/null +++ b/src/chrome/content/rules/cgames.de.xml @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/cgsecurity.org.xml b/src/chrome/content/rules/cgsecurity.org.xml new file mode 100644 index 000000000000..b4fc58bb5ba1 --- /dev/null +++ b/src/chrome/content/rules/cgsecurity.org.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ch-open.ch.xml b/src/chrome/content/rules/ch-open.ch.xml index 8773f9512718..582b8fc8344e 100644 --- a/src/chrome/content/rules/ch-open.ch.xml +++ b/src/chrome/content/rules/ch-open.ch.xml @@ -23,7 +23,7 @@ --> - + - + diff --git a/src/chrome/content/rules/changeagain.me.xml b/src/chrome/content/rules/changeagain.me.xml index 7033de02fbd0..6185d795da81 100644 --- a/src/chrome/content/rules/changeagain.me.xml +++ b/src/chrome/content/rules/changeagain.me.xml @@ -16,7 +16,7 @@ --> - + - - - - - - - - diff --git a/src/chrome/content/rules/charen.ch.xml b/src/chrome/content/rules/charen.ch.xml index 1865cff29ec2..36a1780c367a 100644 --- a/src/chrome/content/rules/charen.ch.xml +++ b/src/chrome/content/rules/charen.ch.xml @@ -4,7 +4,7 @@ - + https://www.charlottenaturemuseum.org/assets/css/_synced/layerslider/skins/noskin/skin.css: (51, "SSL: no alternative certificate subject name matches target host name 'www.charlottenaturemuseum.org'") -Fetch error: http://www.charlottenaturemuseum.org/assets/images/sub_nav_arrow.gif => https://www.charlottenaturemuseum.org/assets/images/sub_nav_arrow.gif: (51, "SSL: no alternative certificate subject name matches target host name 'www.charlottenaturemuseum.org'") -Fetch error: http://www.charlottenaturemuseum.org/content/blog/photos/thumbs/246.jpg => https://www.charlottenaturemuseum.org/content/blog/photos/thumbs/246.jpg: (51, "SSL: no alternative certificate subject name matches target host name 'www.charlottenaturemuseum.org'") -Fetch error: http://www.charlottenaturemuseum.org/content/features/home/thumbs/1.jpg => https://www.charlottenaturemuseum.org/content/features/home/thumbs/1.jpg: (51, "SSL: no alternative certificate subject name matches target host name 'www.charlottenaturemuseum.org'") -Fetch error: http://www.charlottenaturemuseum.org/favicon.ico => https://www.charlottenaturemuseum.org/favicon.ico: (51, "SSL: no alternative certificate subject name matches target host name 'www.charlottenaturemuseum.org'") - - For rules covering more than resources, see CharlotteNatureMuseum.xml. - - Note: platform is so as not to increase non-Tor - distinguishability, given that no pages are covered - and no mixed content secured. - ---> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/chatlio.com.xml b/src/chrome/content/rules/chatlio.com.xml index 23ad4d8899e9..51b561e34328 100644 --- a/src/chrome/content/rules/chatlio.com.xml +++ b/src/chrome/content/rules/chatlio.com.xml @@ -25,7 +25,7 @@ - + - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/cheapandspeedytrafficschool.com.xml b/src/chrome/content/rules/cheapandspeedytrafficschool.com.xml index 450fdbd6626c..0f4198e3bc02 100644 --- a/src/chrome/content/rules/cheapandspeedytrafficschool.com.xml +++ b/src/chrome/content/rules/cheapandspeedytrafficschool.com.xml @@ -17,7 +17,7 @@ --> - + + + - + + + + + - - + + - diff --git a/src/chrome/content/rules/cheat.sh.xml b/src/chrome/content/rules/cheat.sh.xml new file mode 100644 index 000000000000..f3ab9f0503da --- /dev/null +++ b/src/chrome/content/rules/cheat.sh.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/cheatography.com.xml b/src/chrome/content/rules/cheatography.com.xml index 59334740dcb8..fc4176329a3b 100644 --- a/src/chrome/content/rules/cheatography.com.xml +++ b/src/chrome/content/rules/cheatography.com.xml @@ -20,7 +20,7 @@ - + - + - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/chemguide.co.uk.xml b/src/chrome/content/rules/chemguide.co.uk.xml new file mode 100644 index 000000000000..3e294485cbdc --- /dev/null +++ b/src/chrome/content/rules/chemguide.co.uk.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/chemistryworld.com.xml b/src/chrome/content/rules/chemistryworld.com.xml new file mode 100644 index 000000000000..d14d0429efe5 --- /dev/null +++ b/src/chrome/content/rules/chemistryworld.com.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/cherwell.gov.uk-resources.xml b/src/chrome/content/rules/cherwell.gov.uk-resources.xml deleted file mode 100644 index 31a1da33ca34..000000000000 --- a/src/chrome/content/rules/cherwell.gov.uk-resources.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/cheshire.police.uk.xml b/src/chrome/content/rules/cheshire.police.uk.xml index c3f1b1e9d61e..d033a112060e 100644 --- a/src/chrome/content/rules/cheshire.police.uk.xml +++ b/src/chrome/content/rules/cheshire.police.uk.xml @@ -9,7 +9,7 @@ - + - + - - - - - - - - - - - diff --git a/src/chrome/content/rules/cheshirewestandchester.gov.uk.xml b/src/chrome/content/rules/cheshirewestandchester.gov.uk.xml index 3b0cddf72620..9fafbed95451 100644 --- a/src/chrome/content/rules/cheshirewestandchester.gov.uk.xml +++ b/src/chrome/content/rules/cheshirewestandchester.gov.uk.xml @@ -74,7 +74,7 @@ - + - + - + https://www.westga These altnames do not exist: - + - chichester.gov.uk @@ -48,7 +48,7 @@ Fetch error: http://www.westgateleisure.chichester.gov.uk/ => https://www.westga ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -101,7 +101,7 @@ Fetch error: http://www.westgateleisure.chichester.gov.uk/ => https://www.westga - + - + https://www.chinafile.com/: Too many r ᶜ Server sends no certificate chain, see https://whatsmychaincert.com --> - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/chooseprivacyweek.org.xml b/src/chrome/content/rules/chooseprivacyweek.org.xml index e18e50a85b48..9a7136d03447 100644 --- a/src/chrome/content/rules/chooseprivacyweek.org.xml +++ b/src/chrome/content/rules/chooseprivacyweek.org.xml @@ -15,7 +15,7 @@ - + - + - + + + + + + diff --git a/src/chrome/content/rules/chrs-mln-krs.com.xml b/src/chrome/content/rules/chrs-mln-krs.com.xml index aea36cb09039..abbb7d7204fb 100644 --- a/src/chrome/content/rules/chrs-mln-krs.com.xml +++ b/src/chrome/content/rules/chrs-mln-krs.com.xml @@ -14,7 +14,7 @@ - + - + + + + + + + + + + + diff --git a/src/chrome/content/rules/cihan.com.tr.xml b/src/chrome/content/rules/cihan.com.tr.xml index 813c5afcf412..0ebafccc3af4 100644 --- a/src/chrome/content/rules/cihan.com.tr.xml +++ b/src/chrome/content/rules/cihan.com.tr.xml @@ -32,7 +32,7 @@ Fetch error: http://www.cihan.com.tr/ => https://www.cihan.com.tr/: (28, 'Operat ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -48,7 +48,7 @@ Fetch error: http://www.cihan.com.tr/ => https://www.cihan.com.tr/: (28, 'Operat - + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/circuitlab.com.xml b/src/chrome/content/rules/circuitlab.com.xml index 5359ed00cd60..29fd6255dc08 100644 --- a/src/chrome/content/rules/circuitlab.com.xml +++ b/src/chrome/content/rules/circuitlab.com.xml @@ -5,7 +5,7 @@ - + - - - - - - - - - - - diff --git a/src/chrome/content/rules/citizensadvice.org.uk.xml b/src/chrome/content/rules/citizensadvice.org.uk.xml index e1e9ae93c07b..0bcaf7abdf71 100644 --- a/src/chrome/content/rules/citizensadvice.org.uk.xml +++ b/src/chrome/content/rules/citizensadvice.org.uk.xml @@ -47,7 +47,7 @@ Fetch error: http://citizensadvice.org.uk/ => https://citizensadvice.org.uk/: (2 ˢ Secured by us --> - + @@ -68,7 +68,7 @@ Fetch error: http://citizensadvice.org.uk/ => https://citizensadvice.org.uk/: (2 - + https://discuss.citra-emu.org/: (6, 'Could not resolve host: discuss.citra-emu.org') - ---> - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/civica.co.uk.xml b/src/chrome/content/rules/civica.co.uk.xml index 73e7232fe658..9cc99ab995e3 100644 --- a/src/chrome/content/rules/civica.co.uk.xml +++ b/src/chrome/content/rules/civica.co.uk.xml @@ -33,7 +33,7 @@ - + - + https://www.faststrea - www.gss.civilservice.gov.uk --> - + @@ -78,7 +78,7 @@ Fetch error: http://www.faststream.civilservice.gov.uk/ => https://www.faststrea - + - + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/classy.org.xml b/src/chrome/content/rules/classy.org.xml index 5564394f876d..26346fe15412 100644 --- a/src/chrome/content/rules/classy.org.xml +++ b/src/chrome/content/rules/classy.org.xml @@ -17,9 +17,9 @@ --> - + - + + + + + + + diff --git a/src/chrome/content/rules/clevelandconnected.co.uk.xml b/src/chrome/content/rules/clevelandconnected.co.uk.xml index b74c5726bc82..2466bbf9e779 100644 --- a/src/chrome/content/rules/clevelandconnected.co.uk.xml +++ b/src/chrome/content/rules/clevelandconnected.co.uk.xml @@ -5,7 +5,7 @@ - + - + https://clicknupload.link/: Too many r Fetch error: http://www.clicknupload.link/ => https://www.clicknupload.link/: Too many redirects while fetching 'https://www.clicknupload.link/' --> - + - + - + - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/clixgalore.com.xml b/src/chrome/content/rules/clixgalore.com.xml index 42c6f497bf4c..6209986a03d5 100644 --- a/src/chrome/content/rules/clixgalore.com.xml +++ b/src/chrome/content/rules/clixgalore.com.xml @@ -34,7 +34,7 @@ --> - + - + + + + + + + + + diff --git a/src/chrome/content/rules/clonezilla.org.xml b/src/chrome/content/rules/clonezilla.org.xml new file mode 100644 index 000000000000..e40fc80adca0 --- /dev/null +++ b/src/chrome/content/rules/clonezilla.org.xml @@ -0,0 +1,15 @@ + + + + + + + + diff --git a/src/chrome/content/rules/cloud66.com.xml b/src/chrome/content/rules/cloud66.com.xml index 804648104480..2262a4bb208d 100644 --- a/src/chrome/content/rules/cloud66.com.xml +++ b/src/chrome/content/rules/cloud66.com.xml @@ -6,20 +6,18 @@ realscale.cloud66.com mismatch status.cloud66.com mismatch uptime.cloud66.com timed out developers.cloud66.com timed out -birdseye.cloud66.com mixed content font, image +birdseye.cloud66.com mixed content font, image, expired help.cloud66.com mixed content image --> - - + - diff --git a/src/chrome/content/rules/cloudbees.com.xml b/src/chrome/content/rules/cloudbees.com.xml index c6c263cc18f4..7263a5f0fae9 100644 --- a/src/chrome/content/rules/cloudbees.com.xml +++ b/src/chrome/content/rules/cloudbees.com.xml @@ -1,32 +1,58 @@ - - + + - - - - - - + + + + + + + + + + + + + + + + - + + + + + - - - - - - - + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/cloudcma.com.xml b/src/chrome/content/rules/cloudcma.com.xml new file mode 100644 index 000000000000..bb9ad72cbdf5 --- /dev/null +++ b/src/chrome/content/rules/cloudcma.com.xml @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/cloudconvert.org.xml b/src/chrome/content/rules/cloudconvert.org.xml index 6583f9956f09..b12f2d79e1ab 100644 --- a/src/chrome/content/rules/cloudconvert.org.xml +++ b/src/chrome/content/rules/cloudconvert.org.xml @@ -17,7 +17,7 @@ - + - + + + + + + + + + + diff --git a/src/chrome/content/rules/cloudpassage.com.xml b/src/chrome/content/rules/cloudpassage.com.xml index 6fe8f42ba00c..3a35aeead774 100644 --- a/src/chrome/content/rules/cloudpassage.com.xml +++ b/src/chrome/content/rules/cloudpassage.com.xml @@ -8,7 +8,7 @@ - + - + - + - + + + + + + + diff --git a/src/chrome/content/rules/cms.gov.xml b/src/chrome/content/rules/cms.gov.xml index 0cebde477d69..f2701fba98db 100644 --- a/src/chrome/content/rules/cms.gov.xml +++ b/src/chrome/content/rules/cms.gov.xml @@ -71,7 +71,7 @@ Non-2xx HTTP code: http://innovation.cms.gov/ (200) => https://innovation.cms.go ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -137,7 +137,7 @@ Non-2xx HTTP code: http://innovation.cms.gov/ (200) => https://innovation.cms.go - + - + + @@ -25,8 +22,11 @@ + + + @@ -45,34 +45,15 @@ + - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/cncf.io.xml b/src/chrome/content/rules/cncf.io.xml new file mode 100644 index 000000000000..85c5855ef46d --- /dev/null +++ b/src/chrome/content/rules/cncf.io.xml @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/cnv.com.xml b/src/chrome/content/rules/cnv.com.xml index 8cbf5e125572..8e314f35ba38 100644 --- a/src/chrome/content/rules/cnv.com.xml +++ b/src/chrome/content/rules/cnv.com.xml @@ -1,7 +1,6 @@ - + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/coca-cola.ru.xml b/src/chrome/content/rules/coca-cola.ru.xml index b872b4b4e6d9..70fd5a029ae4 100644 --- a/src/chrome/content/rules/coca-cola.ru.xml +++ b/src/chrome/content/rules/coca-cola.ru.xml @@ -14,7 +14,7 @@ - + - - + + - + - + - + + + + + + + + diff --git a/src/chrome/content/rules/cogneurosociety.org.xml b/src/chrome/content/rules/cogneurosociety.org.xml index d316bdf321d5..7e0cc56a683e 100644 --- a/src/chrome/content/rules/cogneurosociety.org.xml +++ b/src/chrome/content/rules/cogneurosociety.org.xml @@ -24,7 +24,7 @@ --> - + https://ru.coin.space/: (6, 'Could not resolve host: ru.coin.space') - + coin.space uses a subdomain for every cryptocurrency + so it is required the wildcard rule. + Subdomains can be added and removed at any time + for example in case of emergency fork of cryptocurrency. --> - + - - - - - + + + + diff --git a/src/chrome/content/rules/coinpaymtstgtibr.onion.xml b/src/chrome/content/rules/coinpaymtstgtibr.onion.xml new file mode 100644 index 000000000000..8423c4d9d355 --- /dev/null +++ b/src/chrome/content/rules/coinpaymtstgtibr.onion.xml @@ -0,0 +1,16 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/cointelgraph.com.xml b/src/chrome/content/rules/cointelgraph.com.xml index 6505ffc33e9e..08f90af3933e 100644 --- a/src/chrome/content/rules/cointelgraph.com.xml +++ b/src/chrome/content/rules/cointelgraph.com.xml @@ -14,7 +14,7 @@ Fetch error: http://www.cointelgraph.com/ => https://www.cointelgraph.com/: (28, ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -27,7 +27,7 @@ Fetch error: http://www.cointelgraph.com/ => https://www.cointelgraph.com/: (28, - + - + - + + + - - - - - - - + diff --git a/src/chrome/content/rules/colsonservices.com.xml b/src/chrome/content/rules/colsonservices.com.xml index 82177ee9e57f..e62af81615ec 100644 --- a/src/chrome/content/rules/colsonservices.com.xml +++ b/src/chrome/content/rules/colsonservices.com.xml @@ -7,7 +7,7 @@ - + + + + + + + + + + + diff --git a/src/chrome/content/rules/comedy.co.uk.xml b/src/chrome/content/rules/comedy.co.uk.xml index 1a9aa922dae5..a675f6437803 100644 --- a/src/chrome/content/rules/comedy.co.uk.xml +++ b/src/chrome/content/rules/comedy.co.uk.xml @@ -17,7 +17,7 @@ - + + + + + + diff --git a/src/chrome/content/rules/committedgiving.uk.net.xml b/src/chrome/content/rules/committedgiving.uk.net.xml index 8382b520505e..85ebd0741707 100644 --- a/src/chrome/content/rules/committedgiving.uk.net.xml +++ b/src/chrome/content/rules/committedgiving.uk.net.xml @@ -28,7 +28,7 @@ --> - + - + - + https://barrierbusting.communities.gov.uk/: (51, "SSL: no alternative certificate subject name matches target host name 'barrierbusting.communities.gov.uk'") - For other UK government coverage, see GOV.UK.xml. - - Nonfunctional hosts in *communities.gov.uk: - - - dclgapps ᵇ - - enterprisezones ᵇ - - planningguidance ʳ - - ᵇ Shows default page - ʳ Refused - - - Problematic hosts in *communities.gov.uk: - - - core ᶜ - - www.local ᵐ - - www ᵐ - - ᶜ Server sends no certificate chain, see https://whatsmychaincert.com - ᵐ Mismatched - - - These altnames don't exist: - - - www.barrierbusting.communities.gov.uk - - - Insecure cookies are set for these hosts: - - - core.communities.gov.uk + Non-functional hosts + Couldn't connect to server: + - communityrights.communities.gov.uk + - mta1.mail.communities.gov.uk + - mta2.mail.communities.gov.uk + + SSL connect error: + - Interform.communities.gov.uk + - interform.communities.gov.uk + + SSL peer certificate was not OK: + - www.communities.gov.uk + - barrierbusting.communities.gov.uk + - content.communities.gov.uk + - www.local.communities.gov.uk + - markprisk.communities.gov.uk + - planningguidance.communities.gov.uk + - users.communities.gov.uk + + Peer certificate cannot be authenticated with given CA certificates: + - righttobuy.communities.gov.uk + - www.righttobuy.communities.gov.uk + + Incomplete certificate chain error: + - acceptance.erdf.communities.gov.uk + - testing.erdf.communities.gov.uk + - training.erdf.communities.gov.uk + + Status code mismatch: - mcis.erdf.communities.gov.uk + - reporting.erdf.communities.gov.uk + - maps.communities.gov.uk + Example URL: http://maps.communities.gov.uk/geoserver/dclg_inspire/ows?service=WFS&version=2.0.0&request=GetFeature&typeName=dclg_inspire:Local_Authority_Greenbelt_boundaries_2017-18&outputFormat=shape-zip&srsName=EPSG:4326 + + 4xx client error: - logasnet.communities.gov.uk + Mixed content blocking (MCB) triggered: + - enterprisezones.communities.gov.uk + - enterprisezonesdev.communities.gov.uk + - forms.communities.gov.uk --> - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + diff --git a/src/chrome/content/rules/community-ix.de.xml b/src/chrome/content/rules/community-ix.de.xml new file mode 100644 index 000000000000..64fd010eb009 --- /dev/null +++ b/src/chrome/content/rules/community-ix.de.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/communitycares.com.xml b/src/chrome/content/rules/communitycares.com.xml index f6d3486fd5d8..cfe844fa4c7c 100644 --- a/src/chrome/content/rules/communitycares.com.xml +++ b/src/chrome/content/rules/communitycares.com.xml @@ -29,7 +29,7 @@ - + + + + + + diff --git a/src/chrome/content/rules/companic.nl.xml b/src/chrome/content/rules/companic.nl.xml index 4867ffad4831..2a787d8db7b3 100644 --- a/src/chrome/content/rules/companic.nl.xml +++ b/src/chrome/content/rules/companic.nl.xml @@ -7,7 +7,7 @@ - .companic.nl --> - + diff --git a/src/chrome/content/rules/companieshouse.gi.xml b/src/chrome/content/rules/companieshouse.gi.xml index 84bc65f4a40c..ddb0edcf092f 100644 --- a/src/chrome/content/rules/companieshouse.gi.xml +++ b/src/chrome/content/rules/companieshouse.gi.xml @@ -7,12 +7,12 @@ - companieshouse.gi --> - + - + - + https://complinet.com/: (51, "SSL: no alte Fetch error: http://www.complinet.com/ => https://www.complinet.com/: Too many redirects while fetching 'https://www.complinet.com/' --> - + - + https://computerbild.de/: Too many redirects while fetching 'https://computerbild.de/' -Fetch error: http://www.computerbild.de/ => https://www.computerbild.de/: Too many redirects while fetching 'https://www.computerbild.de/' -Fetch error: http://computer-bild.de/ => https://computerbild.de/: Too many redirects while fetching 'https://computerbild.de/' -Fetch error: http://www.computer-bild.de/ => https://www.computerbild.de/: Too many redirects while fetching 'https://www.computerbild.de/' - Refused: - forum - - Redirect: - - dsl-speedtest - - Mismatch: - - intenium - - d - levelr - - newsletter - - video - Timeout: + Invalid certificate: - gameduell - - r2 + - intenium --> - + + - + + + + + + + + + + - + + + diff --git a/src/chrome/content/rules/computextaipei.com.tw.xml b/src/chrome/content/rules/computextaipei.com.tw.xml index bb9fe915f1ad..4bd5fd9bd861 100644 --- a/src/chrome/content/rules/computextaipei.com.tw.xml +++ b/src/chrome/content/rules/computextaipei.com.tw.xml @@ -21,7 +21,7 @@ - + - + + + + + + + + + + + diff --git a/src/chrome/content/rules/concordeurope.org.xml b/src/chrome/content/rules/concordeurope.org.xml index de863d8b7e2d..28126159d4e8 100644 --- a/src/chrome/content/rules/concordeurope.org.xml +++ b/src/chrome/content/rules/concordeurope.org.xml @@ -4,7 +4,7 @@ - + - - - - - - - - - - - diff --git a/src/chrome/content/rules/conferencemanager.dk-resources.xml b/src/chrome/content/rules/conferencemanager.dk-resources.xml index 102254b9213a..acf10312de45 100644 --- a/src/chrome/content/rules/conferencemanager.dk-resources.xml +++ b/src/chrome/content/rules/conferencemanager.dk-resources.xml @@ -18,7 +18,7 @@ - + - + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/connect6.com.xml b/src/chrome/content/rules/connect6.com.xml index 387717fc9287..bca847dce36b 100644 --- a/src/chrome/content/rules/connect6.com.xml +++ b/src/chrome/content/rules/connect6.com.xml @@ -21,7 +21,7 @@ --> - + - + - + + + + + + + diff --git a/src/chrome/content/rules/connecttosupport.org.xml b/src/chrome/content/rules/connecttosupport.org.xml index 530e095d921f..52d32dedb496 100644 --- a/src/chrome/content/rules/connecttosupport.org.xml +++ b/src/chrome/content/rules/connecttosupport.org.xml @@ -14,7 +14,7 @@ - + + + + + + + + + + + diff --git a/src/chrome/content/rules/contentreserve.com.xml b/src/chrome/content/rules/contentreserve.com.xml index b7e441b59f51..63a3fac1d916 100644 --- a/src/chrome/content/rules/contentreserve.com.xml +++ b/src/chrome/content/rules/contentreserve.com.xml @@ -19,7 +19,7 @@ --> - + - - diff --git a/src/chrome/content/rules/contrastsecurity.com.xml b/src/chrome/content/rules/contrastsecurity.com.xml index bff448d40497..b5ae4de0c688 100644 --- a/src/chrome/content/rules/contrastsecurity.com.xml +++ b/src/chrome/content/rules/contrastsecurity.com.xml @@ -13,7 +13,7 @@ - + - + https://cookiepedia.co.uk/: (60, 'SSL certificate problem: unable to get local issuer certificate') -Fetch error: http://www.cookiepedia.co.uk/ => https://cookiepedia.co.uk/: (60, 'SSL certificate problem: unable to get local issuer certificate') - - www.cookiepedia.co.uk: Mismatched - ---> - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/cool18.com.xml b/src/chrome/content/rules/cool18.com.xml new file mode 100644 index 000000000000..d3e0fc3e35a8 --- /dev/null +++ b/src/chrome/content/rules/cool18.com.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/cooley.com.xml b/src/chrome/content/rules/cooley.com.xml index dd6e5284b6f7..ae141c5eb4c3 100644 --- a/src/chrome/content/rules/cooley.com.xml +++ b/src/chrome/content/rules/cooley.com.xml @@ -4,7 +4,7 @@ - + - + - + https://erb.copeland.gov.uk/: (60, ' (www.)?copeland.gov.uk: Refused --> - + - + - + diff --git a/src/chrome/content/rules/copyninja.info.xml b/src/chrome/content/rules/copyninja.info.xml index efeecebf9c72..b14303eea924 100644 --- a/src/chrome/content/rules/copyninja.info.xml +++ b/src/chrome/content/rules/copyninja.info.xml @@ -20,7 +20,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/core.ac.uk.xml b/src/chrome/content/rules/core.ac.uk.xml index fea0b1331b8c..da392b3094c4 100644 --- a/src/chrome/content/rules/core.ac.uk.xml +++ b/src/chrome/content/rules/core.ac.uk.xml @@ -17,7 +17,7 @@ --> - + + + + + + + + + diff --git a/src/chrome/content/rules/corporatetravelmoney.com.xml b/src/chrome/content/rules/corporatetravelmoney.com.xml index 60dc3f99b529..2c1b65d713b9 100644 --- a/src/chrome/content/rules/corporatetravelmoney.com.xml +++ b/src/chrome/content/rules/corporatetravelmoney.com.xml @@ -13,7 +13,7 @@ - + https://corrupcia.net/: (28, 'Operation ti Fetch error: http://www.corrupcia.net/ => https://www.corrupcia.net/: (28, 'Operation timed out after 30001 milliseconds with 0 bytes received') --> - + diff --git a/src/chrome/content/rules/cosmonova.net.xml b/src/chrome/content/rules/cosmonova.net.xml index 12b5584c7c69..63f5fa731bb1 100644 --- a/src/chrome/content/rules/cosmonova.net.xml +++ b/src/chrome/content/rules/cosmonova.net.xml @@ -10,7 +10,7 @@ mobapp.cosmonova.net ⁷ - + diff --git a/src/chrome/content/rules/cossa.ru.xml b/src/chrome/content/rules/cossa.ru.xml new file mode 100644 index 000000000000..7faf4b00274d --- /dev/null +++ b/src/chrome/content/rules/cossa.ru.xml @@ -0,0 +1,15 @@ + + + + + + + + diff --git a/src/chrome/content/rules/cotswold.gov.uk.xml b/src/chrome/content/rules/cotswold.gov.uk.xml index 01e80afa75ef..831a7940a3a3 100644 --- a/src/chrome/content/rules/cotswold.gov.uk.xml +++ b/src/chrome/content/rules/cotswold.gov.uk.xml @@ -1,70 +1,21 @@ - - - - - - - - - - - - - - - - - - - - - - - - + + + diff --git a/src/chrome/content/rules/couchsurfing.com.xml b/src/chrome/content/rules/couchsurfing.com.xml index d0142af813d2..f65fa3f7087f 100644 --- a/src/chrome/content/rules/couchsurfing.com.xml +++ b/src/chrome/content/rules/couchsurfing.com.xml @@ -49,7 +49,7 @@ --> - + - + diff --git a/src/chrome/content/rules/countle.com.xml b/src/chrome/content/rules/countle.com.xml new file mode 100644 index 000000000000..7794d85c7f59 --- /dev/null +++ b/src/chrome/content/rules/countle.com.xml @@ -0,0 +1,7 @@ + + + + + + diff --git a/src/chrome/content/rules/courant.com-falsemixed.xml b/src/chrome/content/rules/courant.com-falsemixed.xml index bba3e9da881a..afbe970786db 100644 --- a/src/chrome/content/rules/courant.com-falsemixed.xml +++ b/src/chrome/content/rules/courant.com-falsemixed.xml @@ -14,7 +14,7 @@ - + - + - + - + - - + + https://www.cpaste.org/: (51, "SSL: no alternative certificate subject name matches target host name 'www.cpaste.org'") --> - + diff --git a/src/chrome/content/rules/cpcwiki.eu.xml b/src/chrome/content/rules/cpcwiki.eu.xml new file mode 100644 index 000000000000..4202cd093ed0 --- /dev/null +++ b/src/chrome/content/rules/cpcwiki.eu.xml @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/src/chrome/content/rules/cpiz.net.xml b/src/chrome/content/rules/cpiz.net.xml index ea02897f376a..22d4da540b0a 100644 --- a/src/chrome/content/rules/cpiz.net.xml +++ b/src/chrome/content/rules/cpiz.net.xml @@ -6,7 +6,7 @@ Fetch error: http://www.cpiz.net/ => https://www.cpiz.net/: (60, 'SSL certificat Fetch error: http://annie.cpiz.net/ => https://annie.cpiz.net/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/cppc.ca.xml b/src/chrome/content/rules/cppc.ca.xml new file mode 100644 index 000000000000..98515ac13af9 --- /dev/null +++ b/src/chrome/content/rules/cppc.ca.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/cppreference.com.xml b/src/chrome/content/rules/cppreference.com.xml new file mode 100644 index 000000000000..e4341018909f --- /dev/null +++ b/src/chrome/content/rules/cppreference.com.xml @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/cpx.to.xml b/src/chrome/content/rules/cpx.to.xml index e48bad4bcd9d..32cd604b96ca 100644 --- a/src/chrome/content/rules/cpx.to.xml +++ b/src/chrome/content/rules/cpx.to.xml @@ -11,7 +11,7 @@ - + - + - + diff --git a/src/chrome/content/rules/creativecommons.net.xml b/src/chrome/content/rules/creativecommons.net.xml new file mode 100644 index 000000000000..0634e8c4f327 --- /dev/null +++ b/src/chrome/content/rules/creativecommons.net.xml @@ -0,0 +1,8 @@ + + + + + + + diff --git a/src/chrome/content/rules/crick.ac.uk.xml b/src/chrome/content/rules/crick.ac.uk.xml index d769d9586fe4..ace45dddd8bf 100644 --- a/src/chrome/content/rules/crick.ac.uk.xml +++ b/src/chrome/content/rules/crick.ac.uk.xml @@ -36,7 +36,7 @@ - Image on (www.)? from pbs.twimg.com ˢ - favicons, on: - + - (www.)? from www.crick.ac.uk ˢ - (www.)? from hts.cancerresearchuk.org @@ -68,7 +68,7 @@ --> - + - + @@ -12,7 +12,7 @@ Fetch error: http://arms.crimestoppers-uk.org/ => https://arms.crimestoppers-uk. - + - + diff --git a/src/chrome/content/rules/crosskeyshomes.co.uk.xml b/src/chrome/content/rules/crosskeyshomes.co.uk.xml index 3e79ddc038de..3d3766c8877e 100644 --- a/src/chrome/content/rules/crosskeyshomes.co.uk.xml +++ b/src/chrome/content/rules/crosskeyshomes.co.uk.xml @@ -13,7 +13,7 @@ - + - - - - - diff --git a/src/chrome/content/rules/crowdstrike.com.xml b/src/chrome/content/rules/crowdstrike.com.xml index b026af98a2ea..c645832ff0a3 100644 --- a/src/chrome/content/rules/crowdstrike.com.xml +++ b/src/chrome/content/rules/crowdstrike.com.xml @@ -18,7 +18,7 @@ - + - + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/crypto-loot.com.xml b/src/chrome/content/rules/crypto-loot.com.xml new file mode 100644 index 000000000000..1456eabda7bf --- /dev/null +++ b/src/chrome/content/rules/crypto-loot.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/cryptonote.org.xml b/src/chrome/content/rules/cryptonote.org.xml index 2ba1d28d95d8..53c1c67881df 100644 --- a/src/chrome/content/rules/cryptonote.org.xml +++ b/src/chrome/content/rules/cryptonote.org.xml @@ -7,7 +7,7 @@ - + - + - + - + diff --git a/src/chrome/content/rules/cryptotec.com.xml b/src/chrome/content/rules/cryptotec.com.xml index f8699090e083..8c1550049193 100644 --- a/src/chrome/content/rules/cryptotec.com.xml +++ b/src/chrome/content/rules/cryptotec.com.xml @@ -4,7 +4,7 @@ - + - - - - - - diff --git a/src/chrome/content/rules/cscportal.org.uk.xml b/src/chrome/content/rules/cscportal.org.uk.xml deleted file mode 100644 index 32de35c41ddf..000000000000 --- a/src/chrome/content/rules/cscportal.org.uk.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/cube.io.xml b/src/chrome/content/rules/cube.io.xml new file mode 100644 index 000000000000..20841b3c8032 --- /dev/null +++ b/src/chrome/content/rules/cube.io.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/cubeupload.com.xml b/src/chrome/content/rules/cubeupload.com.xml new file mode 100644 index 000000000000..a29e50f6cae0 --- /dev/null +++ b/src/chrome/content/rules/cubeupload.com.xml @@ -0,0 +1,13 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/cublinux.com.xml b/src/chrome/content/rules/cublinux.com.xml index 9b4f2bc4a6a5..018d18750bd5 100644 --- a/src/chrome/content/rules/cublinux.com.xml +++ b/src/chrome/content/rules/cublinux.com.xml @@ -5,7 +5,7 @@ Fetch error: http://cublinux.com/ => https://cublinux.com/: (51, "SSL: no altern Fetch error: http://www.cublinux.com/ => https://www.cublinux.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.cublinux.com'") --> - + diff --git a/src/chrome/content/rules/cuckoosandbox.org.xml b/src/chrome/content/rules/cuckoosandbox.org.xml index 64146730cc53..dbc12ba98a25 100644 --- a/src/chrome/content/rules/cuckoosandbox.org.xml +++ b/src/chrome/content/rules/cuckoosandbox.org.xml @@ -12,7 +12,7 @@ - + https://www.cumbria.gov.uk/: (60, 'SSL ce ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -67,7 +67,7 @@ Fetch error: http://cumbria.gov.uk/ => https://www.cumbria.gov.uk/: (60, 'SSL ce - + - + + + + + + + + + + + + diff --git a/src/chrome/content/rules/cut-the-knot.org.xml b/src/chrome/content/rules/cut-the-knot.org.xml new file mode 100644 index 000000000000..1ac37dea3088 --- /dev/null +++ b/src/chrome/content/rules/cut-the-knot.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/cuteness.com.xml b/src/chrome/content/rules/cuteness.com.xml index c92f61502cb9..b2d9a8e55f52 100644 --- a/src/chrome/content/rules/cuteness.com.xml +++ b/src/chrome/content/rules/cuteness.com.xml @@ -11,7 +11,7 @@ Fetch error: http://support.cuteness.com/ => https://support.cuteness.com/: (6, ^cuteness.com: Refused --> - + @@ -24,7 +24,7 @@ Fetch error: http://support.cuteness.com/ => https://support.cuteness.com/: (6, - + - + - + + + + + + + + diff --git a/src/chrome/content/rules/cwgv.com.tw.xml b/src/chrome/content/rules/cwgv.com.tw.xml new file mode 100644 index 000000000000..be82c7736481 --- /dev/null +++ b/src/chrome/content/rules/cwgv.com.tw.xml @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/cyberbits.eu.xml b/src/chrome/content/rules/cyberbits.eu.xml new file mode 100644 index 000000000000..962e55ab1355 --- /dev/null +++ b/src/chrome/content/rules/cyberbits.eu.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/cyberciti.biz.xml b/src/chrome/content/rules/cyberciti.biz.xml new file mode 100644 index 000000000000..c4771b853ee1 --- /dev/null +++ b/src/chrome/content/rules/cyberciti.biz.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/cybrary.it.xml b/src/chrome/content/rules/cybrary.it.xml deleted file mode 100644 index 0a42a48c53b8..000000000000 --- a/src/chrome/content/rules/cybrary.it.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/d3js.org.xml b/src/chrome/content/rules/d3js.org.xml new file mode 100644 index 000000000000..ad5b66b151aa --- /dev/null +++ b/src/chrome/content/rules/d3js.org.xml @@ -0,0 +1,14 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/daemonology.net.xml b/src/chrome/content/rules/daemonology.net.xml new file mode 100644 index 000000000000..f3e422a44742 --- /dev/null +++ b/src/chrome/content/rules/daemonology.net.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/src/chrome/content/rules/dailyedge.ie.xml b/src/chrome/content/rules/dailyedge.ie.xml index b759aebf0694..e01569aa177d 100644 --- a/src/chrome/content/rules/dailyedge.ie.xml +++ b/src/chrome/content/rules/dailyedge.ie.xml @@ -38,7 +38,7 @@ --> - + - + - - - - - - diff --git a/src/chrome/content/rules/danmurphys.com.au.xml b/src/chrome/content/rules/danmurphys.com.au.xml new file mode 100644 index 000000000000..9ffee70b4f00 --- /dev/null +++ b/src/chrome/content/rules/danmurphys.com.au.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/daofile.com.xml b/src/chrome/content/rules/daofile.com.xml index 8310b54998d3..a8480795a9a7 100644 --- a/src/chrome/content/rules/daofile.com.xml +++ b/src/chrome/content/rules/daofile.com.xml @@ -16,7 +16,7 @@ --> - + https://mail.darebee.com/: (51, "SSL: n webmail.darebee.com --> - + diff --git a/src/chrome/content/rules/darktrace.com.xml b/src/chrome/content/rules/darktrace.com.xml index e93cd3207e2e..2e12d9673a89 100644 --- a/src/chrome/content/rules/darktrace.com.xml +++ b/src/chrome/content/rules/darktrace.com.xml @@ -22,7 +22,7 @@ - + - + - - - - - - - diff --git a/src/chrome/content/rules/darlinghq.org.xml b/src/chrome/content/rules/darlinghq.org.xml new file mode 100644 index 000000000000..4e6882df85dc --- /dev/null +++ b/src/chrome/content/rules/darlinghq.org.xml @@ -0,0 +1,16 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/data.gouv.fr.xml b/src/chrome/content/rules/data.gouv.fr.xml new file mode 100644 index 000000000000..3e1ac79d650f --- /dev/null +++ b/src/chrome/content/rules/data.gouv.fr.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/data.gov.au.xml b/src/chrome/content/rules/data.gov.au.xml new file mode 100644 index 000000000000..cfa432ebbc21 --- /dev/null +++ b/src/chrome/content/rules/data.gov.au.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/data.gov.hk.xml b/src/chrome/content/rules/data.gov.hk.xml index 8885a63d529b..2d8d69b88d75 100644 --- a/src/chrome/content/rules/data.gov.hk.xml +++ b/src/chrome/content/rules/data.gov.hk.xml @@ -12,7 +12,7 @@ - + diff --git a/src/chrome/content/rules/data.gov.uk.xml b/src/chrome/content/rules/data.gov.uk.xml index a1255464af66..3f5e0d051003 100644 --- a/src/chrome/content/rules/data.gov.uk.xml +++ b/src/chrome/content/rules/data.gov.uk.xml @@ -12,7 +12,7 @@ - reference ʳ - statistics ᵃ - transport ʳ - + ᵃ Shows another domain ʰ Redirects to http ʳ Refused @@ -36,7 +36,7 @@ - + diff --git a/src/chrome/content/rules/dataexchangewales.org.uk.xml b/src/chrome/content/rules/dataexchangewales.org.uk.xml index 99b7e508461b..b63c42fbd15d 100644 --- a/src/chrome/content/rules/dataexchangewales.org.uk.xml +++ b/src/chrome/content/rules/dataexchangewales.org.uk.xml @@ -8,7 +8,7 @@ - + - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/datafile.com.xml b/src/chrome/content/rules/datafile.com.xml deleted file mode 100644 index 716414165d1d..000000000000 --- a/src/chrome/content/rules/datafile.com.xml +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/datamotion.com.xml b/src/chrome/content/rules/datamotion.com.xml index 88e1189616a6..ba2cb9f8adb2 100644 --- a/src/chrome/content/rules/datamotion.com.xml +++ b/src/chrome/content/rules/datamotion.com.xml @@ -23,7 +23,7 @@ Fetch error: http://testing.datamotion.com/ => https://testing.datamotion.com/: - testing.datamotion.com --> - + @@ -42,7 +42,7 @@ Fetch error: http://testing.datamotion.com/ => https://testing.datamotion.com/: - + - + - + - + @@ -49,7 +49,7 @@ - + @@ -63,7 +63,7 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/david-dm.org.xml b/src/chrome/content/rules/david-dm.org.xml index 7d9dbbefe296..17ca29fe7187 100644 --- a/src/chrome/content/rules/david-dm.org.xml +++ b/src/chrome/content/rules/david-dm.org.xml @@ -4,11 +4,9 @@ www.david-dm.org mismatch - + - - diff --git a/src/chrome/content/rules/davidperkinsphotography.com.xml b/src/chrome/content/rules/davidperkinsphotography.com.xml new file mode 100644 index 000000000000..69cc693b3477 --- /dev/null +++ b/src/chrome/content/rules/davidperkinsphotography.com.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/davidwalsh.name.xml b/src/chrome/content/rules/davidwalsh.name.xml index a381df54dd6f..0607aa912f3f 100644 --- a/src/chrome/content/rules/davidwalsh.name.xml +++ b/src/chrome/content/rules/davidwalsh.name.xml @@ -5,7 +5,7 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/dbstatic.no.xml b/src/chrome/content/rules/dbstatic.no.xml index 5500ab179348..27de329c6177 100644 --- a/src/chrome/content/rules/dbstatic.no.xml +++ b/src/chrome/content/rules/dbstatic.no.xml @@ -31,7 +31,7 @@ - + - + - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/dcerpc.org.xml b/src/chrome/content/rules/dcerpc.org.xml index 0ee51e93d769..f66853eb5da2 100644 --- a/src/chrome/content/rules/dcerpc.org.xml +++ b/src/chrome/content/rules/dcerpc.org.xml @@ -5,7 +5,7 @@ Fetch error: http://www.dcerpc.org/ => https://www.dcerpc.org/: (51, "SSL: no al Fetch error: http://dcerpc.org/ => https://www.dcerpc.org/: (51, "SSL: no alternative certificate subject name matches target host name 'www.dcerpc.org'") --> - + diff --git a/src/chrome/content/rules/dcmuseum.co.uk.xml b/src/chrome/content/rules/dcmuseum.co.uk.xml new file mode 100644 index 000000000000..20584946813a --- /dev/null +++ b/src/chrome/content/rules/dcmuseum.co.uk.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/dcos.io.xml b/src/chrome/content/rules/dcos.io.xml index 643194355321..c179c6c46a24 100644 --- a/src/chrome/content/rules/dcos.io.xml +++ b/src/chrome/content/rules/dcos.io.xml @@ -13,7 +13,7 @@ - + - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/dd-wrt.com.xml b/src/chrome/content/rules/dd-wrt.com.xml index 0842e51a8b69..da759c3a31d7 100644 --- a/src/chrome/content/rules/dd-wrt.com.xml +++ b/src/chrome/content/rules/dd-wrt.com.xml @@ -7,7 +7,7 @@ - + - + diff --git a/src/chrome/content/rules/dditservices.com.xml b/src/chrome/content/rules/dditservices.com.xml index be11d37f291c..7180c545c634 100644 --- a/src/chrome/content/rules/dditservices.com.xml +++ b/src/chrome/content/rules/dditservices.com.xml @@ -55,7 +55,7 @@ --> - + - + - + - + https://checkip6.dedyn.io/: (6, 'Could * *.dedyn.io are user-generated domains with user content, so they do not have to support HTTPS there. --> - - - + diff --git a/src/chrome/content/rules/deakinandfrancis.co.uk.xml b/src/chrome/content/rules/deakinandfrancis.co.uk.xml index 9224dea7c941..9eb0c71edb62 100644 --- a/src/chrome/content/rules/deakinandfrancis.co.uk.xml +++ b/src/chrome/content/rules/deakinandfrancis.co.uk.xml @@ -17,7 +17,7 @@ - + - + https://securetrial.deal (www.)?dealinteractive.com: server sends no certificate chain, see https://whatsmychaincert.com --> - + @@ -17,7 +17,7 @@ Fetch error: http://securetrial.dealinteractive.com/ => https://securetrial.deal - + - + https://images.e.debenhams.com/: - css on www from fonts.googleapis.com ˢ - Images, on: - + - pages.e from image.e.debenhams.com ˢ - www from $self ˢ - www from debenhams.scene7.com @@ -59,7 +59,7 @@ Fetch error: http://images.e.debenhams.com/ => https://images.e.debenhams.com/: ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + diff --git a/src/chrome/content/rules/deborahrfowler.com.xml b/src/chrome/content/rules/deborahrfowler.com.xml new file mode 100644 index 000000000000..c314a7b8faf1 --- /dev/null +++ b/src/chrome/content/rules/deborahrfowler.com.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/debugconnection.xml b/src/chrome/content/rules/debugconnection.xml new file mode 100644 index 000000000000..487cf0c829e3 --- /dev/null +++ b/src/chrome/content/rules/debugconnection.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/decc.gov.uk.xml b/src/chrome/content/rules/decc.gov.uk.xml index 41713f88277e..183ea1247483 100644 --- a/src/chrome/content/rules/decc.gov.uk.xml +++ b/src/chrome/content/rules/decc.gov.uk.xml @@ -76,7 +76,7 @@ Fetch error: http://econsultation.decc.gov.uk/ => https://econsultation.decc.gov - gdorb.decc.gov.uk --> - + @@ -133,7 +133,7 @@ Fetch error: http://econsultation.decc.gov.uk/ => https://econsultation.decc.gov --> - + - + https://declaredthoughtfulness.co/: (35, 'error:14077438:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert internal error') - ---> - - - - - - - diff --git a/src/chrome/content/rules/defendingrussia.ru.xml b/src/chrome/content/rules/defendingrussia.ru.xml new file mode 100644 index 000000000000..e5046edd4af8 --- /dev/null +++ b/src/chrome/content/rules/defendingrussia.ru.xml @@ -0,0 +1,8 @@ + + + + + + diff --git a/src/chrome/content/rules/dei.gr.xml b/src/chrome/content/rules/dei.gr.xml new file mode 100644 index 000000000000..8f3f3def010a --- /dev/null +++ b/src/chrome/content/rules/dei.gr.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/deliverydom.com.xml b/src/chrome/content/rules/deliverydom.com.xml index 17fccdbbfae2..f6421501b9c2 100644 --- a/src/chrome/content/rules/deliverydom.com.xml +++ b/src/chrome/content/rules/deliverydom.com.xml @@ -18,7 +18,7 @@ --> - + - + - - + - + - + diff --git a/src/chrome/content/rules/democracyclub.org.uk.xml b/src/chrome/content/rules/democracyclub.org.uk.xml index 6a2886153218..41d27edbf17a 100644 --- a/src/chrome/content/rules/democracyclub.org.uk.xml +++ b/src/chrome/content/rules/democracyclub.org.uk.xml @@ -4,14 +4,14 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.democracyclub.org.uk/ => https://www.democracyclub.org.uk/: (52, 'Empty reply from server') --> - + - + - + diff --git a/src/chrome/content/rules/demonoid.cc.xml b/src/chrome/content/rules/demonoid.cc.xml index 74f83e73d20b..26fcd9c0c75b 100644 --- a/src/chrome/content/rules/demonoid.cc.xml +++ b/src/chrome/content/rules/demonoid.cc.xml @@ -10,7 +10,7 @@ inferno.demonoid.cc ² ² refused --> - + diff --git a/src/chrome/content/rules/deploybot.com.xml b/src/chrome/content/rules/deploybot.com.xml index c575a8c744de..d11c9aac786c 100644 --- a/src/chrome/content/rules/deploybot.com.xml +++ b/src/chrome/content/rules/deploybot.com.xml @@ -11,14 +11,14 @@ dploy.io/: (52, 'Empty reply from server') support.dploy.io mismatch blog.dploy.io mismatch --> - + - + diff --git a/src/chrome/content/rules/derbyshire.gov.uk.xml b/src/chrome/content/rules/derbyshire.gov.uk.xml index 06cda40a58ed..3fdb8039617e 100644 --- a/src/chrome/content/rules/derbyshire.gov.uk.xml +++ b/src/chrome/content/rules/derbyshire.gov.uk.xml @@ -57,7 +57,7 @@ - + - + - + - - - - + diff --git a/src/chrome/content/rules/detini.gov.uk.xml b/src/chrome/content/rules/detini.gov.uk.xml index 5e3303119e02..ac43c05c2b21 100644 --- a/src/chrome/content/rules/detini.gov.uk.xml +++ b/src/chrome/content/rules/detini.gov.uk.xml @@ -20,7 +20,7 @@ Fetch error: http://detini.gov.uk/ => https://www.detini.gov.uk/: (7, 'Failed to - ^ ᶠ - www.business ᵉ - + ᵉ Expired ᶠ Handshake fails; preemptable redirect @@ -31,7 +31,7 @@ Fetch error: http://detini.gov.uk/ => https://www.detini.gov.uk/: (7, 'Failed to - insolvency.detini.gov.uk --> - + @@ -52,7 +52,7 @@ Fetch error: http://detini.gov.uk/ => https://www.detini.gov.uk/: (7, 'Failed to - + - + diff --git a/src/chrome/content/rules/deutschland-spielt.de.xml b/src/chrome/content/rules/deutschland-spielt.de.xml index 54225b32227f..e966132b7432 100644 --- a/src/chrome/content/rules/deutschland-spielt.de.xml +++ b/src/chrome/content/rules/deutschland-spielt.de.xml @@ -7,7 +7,7 @@ Fetch error: http://www.deutschland-spielt.de/ => https://www.deutschland-spielt Refused: - download.deutschland-spielt.de --> - + diff --git a/src/chrome/content/rules/dev47apps.com.xml b/src/chrome/content/rules/dev47apps.com.xml new file mode 100644 index 000000000000..251cd0574827 --- /dev/null +++ b/src/chrome/content/rules/dev47apps.com.xml @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/devalate.com.xml b/src/chrome/content/rules/devalate.com.xml index c033f15d67ac..7c79dcfed39a 100644 --- a/src/chrome/content/rules/devalate.com.xml +++ b/src/chrome/content/rules/devalate.com.xml @@ -10,7 +10,7 @@ Fetch error: http://www.devalate.com/ => https://www.devalate.com/: (28, 'Connec - www.devalate.com --> - + @@ -20,7 +20,7 @@ Fetch error: http://www.devalate.com/ => https://www.devalate.com/: (28, 'Connec --> - + - + - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/dfo.no.xml b/src/chrome/content/rules/dfo.no.xml index b1e730e43c61..eb0d9dc0e126 100644 --- a/src/chrome/content/rules/dfo.no.xml +++ b/src/chrome/content/rules/dfo.no.xml @@ -27,7 +27,7 @@ --> - + - + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/dhi-scotland.com.xml b/src/chrome/content/rules/dhi-scotland.com.xml index d039b836dd92..24f2a1745f54 100644 --- a/src/chrome/content/rules/dhi-scotland.com.xml +++ b/src/chrome/content/rules/dhi-scotland.com.xml @@ -16,7 +16,7 @@ Fetch error: http://www.dhi-scotland.com/ => https://www.dhi-scotland.com/: (51, STS header includes includeSubdomains --> - + @@ -28,7 +28,7 @@ Fetch error: http://www.dhi-scotland.com/ => https://www.dhi-scotland.com/: (51, --> - + https://www.dhsspsni.gov.uk/: (7, 'Faile - .dhsspsni.gov.uk --> - + @@ -39,7 +39,7 @@ Fetch error: http://dhsspsni.gov.uk/ => https://www.dhsspsni.gov.uk/: (7, 'Faile --> - + - - + + - - + + + + + + + + + - + + diff --git a/src/chrome/content/rules/diapers.com.xml b/src/chrome/content/rules/diapers.com.xml index 5afa8e810e0a..6ba88184c741 100644 --- a/src/chrome/content/rules/diapers.com.xml +++ b/src/chrome/content/rules/diapers.com.xml @@ -29,9 +29,9 @@ - + - + - + + + + + + + + + + + + diff --git a/src/chrome/content/rules/difficulties.de.xml b/src/chrome/content/rules/difficulties.de.xml deleted file mode 100644 index a801d06e4ce0..000000000000 --- a/src/chrome/content/rules/difficulties.de.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/digidip.net.xml b/src/chrome/content/rules/digidip.net.xml new file mode 100644 index 000000000000..18e0ed9574f8 --- /dev/null +++ b/src/chrome/content/rules/digidip.net.xml @@ -0,0 +1,134 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/digiguide.tv.xml b/src/chrome/content/rules/digiguide.tv.xml index 41b2149fdb98..b898b6420440 100644 --- a/src/chrome/content/rules/digiguide.tv.xml +++ b/src/chrome/content/rules/digiguide.tv.xml @@ -17,7 +17,7 @@ - + + + + + diff --git a/src/chrome/content/rules/digitale-gesellschaft.ch.xml b/src/chrome/content/rules/digitale-gesellschaft.ch.xml index 752d54af3c31..e7f92c8bd62c 100644 --- a/src/chrome/content/rules/digitale-gesellschaft.ch.xml +++ b/src/chrome/content/rules/digitale-gesellschaft.ch.xml @@ -4,7 +4,7 @@ - + - - - - - - - - diff --git a/src/chrome/content/rules/digitv.de.xml b/src/chrome/content/rules/digitv.de.xml new file mode 100644 index 000000000000..da565ddafb3d --- /dev/null +++ b/src/chrome/content/rules/digitv.de.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/dinglisch.net.xml b/src/chrome/content/rules/dinglisch.net.xml index 27d626cccf2a..625631eb34ee 100644 --- a/src/chrome/content/rules/dinglisch.net.xml +++ b/src/chrome/content/rules/dinglisch.net.xml @@ -1,5 +1,5 @@ diff --git a/src/chrome/content/rules/dingtalk.com.xml b/src/chrome/content/rules/dingtalk.com.xml index e8ed49228120..e50a49190f3f 100644 --- a/src/chrome/content/rules/dingtalk.com.xml +++ b/src/chrome/content/rules/dingtalk.com.xml @@ -31,7 +31,7 @@ - + - + - + + + + + + + + diff --git a/src/chrome/content/rules/directlyrics.com.xml b/src/chrome/content/rules/directlyrics.com.xml index 1219861810f9..24e7c4e6a17f 100644 --- a/src/chrome/content/rules/directlyrics.com.xml +++ b/src/chrome/content/rules/directlyrics.com.xml @@ -5,7 +5,7 @@ - + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/discovercarlisle.co.uk.xml b/src/chrome/content/rules/discovercarlisle.co.uk.xml index 6c56708b09dc..07fae0cf2e70 100644 --- a/src/chrome/content/rules/discovercarlisle.co.uk.xml +++ b/src/chrome/content/rules/discovercarlisle.co.uk.xml @@ -23,7 +23,7 @@ --> - + + + + + + + + + + diff --git a/src/chrome/content/rules/divShare.xml b/src/chrome/content/rules/divShare.xml index 89f4ea567cd8..0e1dd0c6c3ce 100644 --- a/src/chrome/content/rules/divShare.xml +++ b/src/chrome/content/rules/divShare.xml @@ -24,7 +24,7 @@ Fetch error: http://divshare.com/ => https://www.divshare.com/: (28, 'Connection * Secured by us --> - + @@ -39,7 +39,7 @@ Fetch error: http://divshare.com/ => https://www.divshare.com/: (28, 'Connection --> - + - - - - - - - diff --git a/src/chrome/content/rules/dizzyjam.com.xml b/src/chrome/content/rules/dizzyjam.com.xml index 977c8e11ba49..428882dd7861 100644 --- a/src/chrome/content/rules/dizzyjam.com.xml +++ b/src/chrome/content/rules/dizzyjam.com.xml @@ -38,7 +38,7 @@ - + - + - + https://dltags.com/: (7, 'Failed to connect t Fetch error: http://www.dltags.com/ => https://www.dltags.com/: (7, 'Failed to connect to www.dltags.com port 443: Connection refused') --> - + - + - - diff --git a/src/chrome/content/rules/dmalloc.com.xml b/src/chrome/content/rules/dmalloc.com.xml new file mode 100644 index 000000000000..5a7df759c2c3 --- /dev/null +++ b/src/chrome/content/rules/dmalloc.com.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/src/chrome/content/rules/dmyv.de.xml b/src/chrome/content/rules/dmyv.de.xml new file mode 100644 index 000000000000..b0e714d933ad --- /dev/null +++ b/src/chrome/content/rules/dmyv.de.xml @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/dnainfo.com.xml b/src/chrome/content/rules/dnainfo.com.xml index 4e2f8d5f8b26..5aea3d3244cf 100644 --- a/src/chrome/content/rules/dnainfo.com.xml +++ b/src/chrome/content/rules/dnainfo.com.xml @@ -25,7 +25,7 @@ - + - - - - - diff --git a/src/chrome/content/rules/dns-shop.ru.xml b/src/chrome/content/rules/dns-shop.ru.xml deleted file mode 100644 index d4e39bd0b80d..000000000000 --- a/src/chrome/content/rules/dns-shop.ru.xml +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/dns4torpnlfs2ifuz2s2yf3fc7rdmsbhm6rw75euj35pac6ap25zgqad.onion.xml b/src/chrome/content/rules/dns4torpnlfs2ifuz2s2yf3fc7rdmsbhm6rw75euj35pac6ap25zgqad.onion.xml new file mode 100644 index 000000000000..5f5a99d478e6 --- /dev/null +++ b/src/chrome/content/rules/dns4torpnlfs2ifuz2s2yf3fc7rdmsbhm6rw75euj35pac6ap25zgqad.onion.xml @@ -0,0 +1,14 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/dnsrecords.io.xml b/src/chrome/content/rules/dnsrecords.io.xml new file mode 100644 index 000000000000..1fe75eac39fa --- /dev/null +++ b/src/chrome/content/rules/dnsrecords.io.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/docin.xml b/src/chrome/content/rules/docin.xml new file mode 100644 index 000000000000..d5d6ebc02f2d --- /dev/null +++ b/src/chrome/content/rules/docin.xml @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/docs.tw.xml b/src/chrome/content/rules/docs.tw.xml deleted file mode 100644 index 8c391d467c5c..000000000000 --- a/src/chrome/content/rules/docs.tw.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/dods.co.uk.xml b/src/chrome/content/rules/dods.co.uk.xml index b3e163c15587..d43117d87f1c 100644 --- a/src/chrome/content/rules/dods.co.uk.xml +++ b/src/chrome/content/rules/dods.co.uk.xml @@ -7,12 +7,12 @@ Fetch error: http://media.dods.co.uk/ => https://media.dods.co.uk/: (60, 'SSL ce www.dods.co.uk: dropped --> - + - + - + - + + + + + + diff --git a/src/chrome/content/rules/dol.gov-falsemixed.xml b/src/chrome/content/rules/dol.gov-falsemixed.xml index d94375f3c5c6..b872cbb5305c 100644 --- a/src/chrome/content/rules/dol.gov-falsemixed.xml +++ b/src/chrome/content/rules/dol.gov-falsemixed.xml @@ -10,7 +10,7 @@ - + https://jobcorps.dol.gov/: (60, 'SSL ce Mixed content: - css, on: - + - developer from fonts.googleapis.com ˢ - webapps from www.dol.gov ˢ - Images, on: - + - api, savingmatters from www.dol.gov ˢ - www.oalj, www from $self ˢ @@ -56,7 +56,7 @@ Fetch error: http://jobcorps.dol.gov/ => https://jobcorps.dol.gov/: (60, 'SSL ce ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -96,7 +96,7 @@ Fetch error: http://jobcorps.dol.gov/ => https://jobcorps.dol.gov/: (60, 'SSL ce - + - + + + + + + + + + + + diff --git a/src/chrome/content/rules/domainsite.com.xml b/src/chrome/content/rules/domainsite.com.xml index 229b1cdf479a..917c92b95c1e 100644 --- a/src/chrome/content/rules/domainsite.com.xml +++ b/src/chrome/content/rules/domainsite.com.xml @@ -7,13 +7,13 @@ Fetch error: http://www.domainsite.com/ => https://www.domainsite.com/: (60, 'SS For other Name.com coverage, see Name.com.xml. --> - + - + https://www.domtele.com/: (60, 'SSL cert dev.domtele.com mismatch --> - + diff --git a/src/chrome/content/rules/donejs.com.xml b/src/chrome/content/rules/donejs.com.xml index 2c76f696eb1b..f5761d8a5afc 100644 --- a/src/chrome/content/rules/donejs.com.xml +++ b/src/chrome/content/rules/donejs.com.xml @@ -20,7 +20,7 @@ - + + + + + + + + diff --git a/src/chrome/content/rules/donmai.us.xml b/src/chrome/content/rules/donmai.us.xml index 8bddc96bcea0..d319c43a837f 100644 --- a/src/chrome/content/rules/donmai.us.xml +++ b/src/chrome/content/rules/donmai.us.xml @@ -1,4 +1,4 @@ - + + + + + + + + + + diff --git a/src/chrome/content/rules/dorar.net.xml b/src/chrome/content/rules/dorar.net.xml index 3f126e7644dc..6cdf8db415c7 100644 --- a/src/chrome/content/rules/dorar.net.xml +++ b/src/chrome/content/rules/dorar.net.xml @@ -1,7 +1,8 @@ - + - + + diff --git a/src/chrome/content/rules/dorsetalert.co.uk.xml b/src/chrome/content/rules/dorsetalert.co.uk.xml index 90412fd112e2..58c9f4fc7751 100644 --- a/src/chrome/content/rules/dorsetalert.co.uk.xml +++ b/src/chrome/content/rules/dorsetalert.co.uk.xml @@ -4,7 +4,7 @@ - + - - - diff --git a/src/chrome/content/rules/dotnetkicks.com.xml b/src/chrome/content/rules/dotnetkicks.com.xml index 964c62b8c462..7aa25cd9ed2d 100644 --- a/src/chrome/content/rules/dotnetkicks.com.xml +++ b/src/chrome/content/rules/dotnetkicks.com.xml @@ -15,7 +15,7 @@ - + - - - - + - - - - - - - - - + + diff --git a/src/chrome/content/rules/doubanio.com.xml b/src/chrome/content/rules/doubanio.com.xml index a66511064677..a05ca720e07c 100644 --- a/src/chrome/content/rules/doubanio.com.xml +++ b/src/chrome/content/rules/doubanio.com.xml @@ -1,32 +1,25 @@ - - + + - + + - - - + diff --git a/src/chrome/content/rules/dpfile.com.xml b/src/chrome/content/rules/dpfile.com.xml index 89edf6cb5581..7b78a763ea07 100644 --- a/src/chrome/content/rules/dpfile.com.xml +++ b/src/chrome/content/rules/dpfile.com.xml @@ -13,19 +13,16 @@ - - - - + - + @@ -43,11 +40,11 @@ - + - + diff --git a/src/chrome/content/rules/dpstatic.com.xml b/src/chrome/content/rules/dpstatic.com.xml index bd8b58b0f648..520870543ede 100644 --- a/src/chrome/content/rules/dpstatic.com.xml +++ b/src/chrome/content/rules/dpstatic.com.xml @@ -15,7 +15,7 @@ - + + + + + diff --git a/src/chrome/content/rules/drapt.com.xml b/src/chrome/content/rules/drapt.com.xml index 9dfb05cac07f..f0271c5674be 100644 --- a/src/chrome/content/rules/drapt.com.xml +++ b/src/chrome/content/rules/drapt.com.xml @@ -24,7 +24,7 @@ --> - + - + + + + + + + + diff --git a/src/chrome/content/rules/dribper.com.xml b/src/chrome/content/rules/dribper.com.xml deleted file mode 100644 index 6a831cc271e5..000000000000 --- a/src/chrome/content/rules/dribper.com.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/drillisch-online.de.xml b/src/chrome/content/rules/drillisch-online.de.xml new file mode 100644 index 000000000000..782cbdb53e86 --- /dev/null +++ b/src/chrome/content/rules/drillisch-online.de.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/driving.co.uk.xml b/src/chrome/content/rules/driving.co.uk.xml index 874a39324f13..070413360b06 100644 --- a/src/chrome/content/rules/driving.co.uk.xml +++ b/src/chrome/content/rules/driving.co.uk.xml @@ -13,7 +13,7 @@ Non-2xx HTTP code: http://www.driving.co.uk/ (200) => https://www.driving.co.uk/ ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -25,7 +25,7 @@ Non-2xx HTTP code: http://www.driving.co.uk/ (200) => https://www.driving.co.uk/ - + + + + + + + + diff --git a/src/chrome/content/rules/dsmltools.org.xml b/src/chrome/content/rules/dsmltools.org.xml index 359174823226..bd99c8de3eee 100644 --- a/src/chrome/content/rules/dsmltools.org.xml +++ b/src/chrome/content/rules/dsmltools.org.xml @@ -7,7 +7,7 @@ - + + + + + + + + + diff --git a/src/chrome/content/rules/du00.cc.xml b/src/chrome/content/rules/du00.cc.xml index c4df1fce3304..f3c9d2d992c3 100644 --- a/src/chrome/content/rules/du00.cc.xml +++ b/src/chrome/content/rules/du00.cc.xml @@ -11,7 +11,7 @@ See https://github.com/EFForg/https-everywhere/issues/8506 --> - + diff --git a/src/chrome/content/rules/duapp.com.xml b/src/chrome/content/rules/duapp.com.xml deleted file mode 100644 index 3327fe84809a..000000000000 --- a/src/chrome/content/rules/duapp.com.xml +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/dudleyfoi.org.uk.xml b/src/chrome/content/rules/dudleyfoi.org.uk.xml index b6505a9efceb..c46defe1c715 100644 --- a/src/chrome/content/rules/dudleyfoi.org.uk.xml +++ b/src/chrome/content/rules/dudleyfoi.org.uk.xml @@ -18,7 +18,7 @@ --> - + - + https://weishanghuoyuan.duos dev --> - + - + @@ -55,7 +55,7 @@ Fetch error: http://weishanghuoyuan.duoshuo.com/ => https://weishanghuoyuan.duos - + diff --git a/src/chrome/content/rules/durchmesser.ch.xml b/src/chrome/content/rules/durchmesser.ch.xml index a4a77a7b9e18..71edba92a176 100644 --- a/src/chrome/content/rules/durchmesser.ch.xml +++ b/src/chrome/content/rules/durchmesser.ch.xml @@ -4,7 +4,7 @@ - + - + + + + + + diff --git a/src/chrome/content/rules/dvdpaytech.com.xml b/src/chrome/content/rules/dvdpaytech.com.xml index 216c54ba97b4..1ba64768d55b 100644 --- a/src/chrome/content/rules/dvdpaytech.com.xml +++ b/src/chrome/content/rules/dvdpaytech.com.xml @@ -40,7 +40,7 @@ - + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/dvlabs.com.xml b/src/chrome/content/rules/dvlabs.com.xml index a14f88e5d75a..22837f98a629 100644 --- a/src/chrome/content/rules/dvlabs.com.xml +++ b/src/chrome/content/rules/dvlabs.com.xml @@ -12,7 +12,7 @@ - + + + + + + + + + + diff --git a/src/chrome/content/rules/dwnews.com-mixedcontent.xml b/src/chrome/content/rules/dwnews.com-mixedcontent.xml new file mode 100644 index 000000000000..a309640827d9 --- /dev/null +++ b/src/chrome/content/rules/dwnews.com-mixedcontent.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/dwnews.net.xml b/src/chrome/content/rules/dwnews.net.xml new file mode 100644 index 000000000000..2b2f6bbd72b9 --- /dev/null +++ b/src/chrome/content/rules/dwnews.net.xml @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/dxy.com.xml b/src/chrome/content/rules/dxy.com.xml index f9847141ee50..e5c46611d389 100644 --- a/src/chrome/content/rules/dxy.com.xml +++ b/src/chrome/content/rules/dxy.com.xml @@ -1,20 +1,17 @@ - - - - + + diff --git a/src/chrome/content/rules/dynamic1001.eu.xml b/src/chrome/content/rules/dynamic1001.eu.xml index 1ff3eb09e4a6..110e7dc98288 100644 --- a/src/chrome/content/rules/dynamic1001.eu.xml +++ b/src/chrome/content/rules/dynamic1001.eu.xml @@ -21,7 +21,7 @@ Fetch error: http://www.customercenter.dynamic1001.eu/ => https://www.customerce ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -32,7 +32,7 @@ Fetch error: http://www.customercenter.dynamic1001.eu/ => https://www.customerce --> - + - - - - - - - - - - - - diff --git a/src/chrome/content/rules/e-paycapita.com.xml b/src/chrome/content/rules/e-paycapita.com.xml index c2b83e5bb0f0..ca53c1f7017e 100644 --- a/src/chrome/content/rules/e-paycapita.com.xml +++ b/src/chrome/content/rules/e-paycapita.com.xml @@ -5,7 +5,7 @@ - + - - - - - - - - diff --git a/src/chrome/content/rules/eGenix.xml b/src/chrome/content/rules/eGenix.xml index 8a5cea3a95a7..e4df73d4985e 100644 --- a/src/chrome/content/rules/eGenix.xml +++ b/src/chrome/content/rules/eGenix.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://lists.egenix.com/ => https://lists.egenix.com/: (51, "SSL: no alternative certificate subject name matches target host name 'lists.egenix.com'") --> - + diff --git a/src/chrome/content/rules/eHarmony.xml b/src/chrome/content/rules/eHarmony.xml index 25f6f91671d5..3ee11efc2bbd 100644 --- a/src/chrome/content/rules/eHarmony.xml +++ b/src/chrome/content/rules/eHarmony.xml @@ -20,7 +20,7 @@ - + - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/eIPOCIMB.com.xml b/src/chrome/content/rules/eIPOCIMB.com.xml new file mode 100644 index 000000000000..cd979f9bb32d --- /dev/null +++ b/src/chrome/content/rules/eIPOCIMB.com.xml @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/eKomi.xml b/src/chrome/content/rules/eKomi.xml new file mode 100644 index 000000000000..020285d6bc3f --- /dev/null +++ b/src/chrome/content/rules/eKomi.xml @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/eNovance.xml b/src/chrome/content/rules/eNovance.xml index 34d8338d61c4..a2fe6d0ed97f 100644 --- a/src/chrome/content/rules/eNovance.xml +++ b/src/chrome/content/rules/eNovance.xml @@ -38,7 +38,7 @@ Fetch error: http://www.enocloud.com/ => https://www.enovance.com/: (60, 'SSL ce ² Unsecurable <= redirects to http --> - + @@ -51,7 +51,7 @@ Fetch error: http://www.enocloud.com/ => https://www.enovance.com/: (60, 'SSL ce - + + + + + + + + diff --git a/src/chrome/content/rules/eStruxture.com.xml b/src/chrome/content/rules/eStruxture.com.xml new file mode 100644 index 000000000000..c3ad26da2976 --- /dev/null +++ b/src/chrome/content/rules/eStruxture.com.xml @@ -0,0 +1,19 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/eagereyes.org.xml b/src/chrome/content/rules/eagereyes.org.xml index 8f09d2216762..03918a0cb6b4 100644 --- a/src/chrome/content/rules/eagereyes.org.xml +++ b/src/chrome/content/rules/eagereyes.org.xml @@ -4,7 +4,7 @@ - + + + + + + diff --git a/src/chrome/content/rules/earthcam.net.xml b/src/chrome/content/rules/earthcam.net.xml index 1f08c242737c..55766810b066 100644 --- a/src/chrome/content/rules/earthcam.net.xml +++ b/src/chrome/content/rules/earthcam.net.xml @@ -17,7 +17,7 @@ --> - + - + - + - + diff --git a/src/chrome/content/rules/eastdane.com.xml b/src/chrome/content/rules/eastdane.com.xml index 4085cc794d5b..9af2e01ca5a9 100644 --- a/src/chrome/content/rules/eastdane.com.xml +++ b/src/chrome/content/rules/eastdane.com.xml @@ -20,7 +20,7 @@ - + - + https://learningzone.eastsussex.gov.uk/: (60, 'SSL certificate problem: certificate has expired') - - East Sussex County Council - - - CDN buckets: - - - eastsussexgovuk.blob.core.windows.net - - - Nonfunctional hosts in *eastsussex.gov.uk: - - - petitions ᵇ - - ᵇ Shows default page - + For other UK government coverage, see GOV.UK.xml. - Problematic hosts in *eastsussex.gov.uk: - - - ^ ᵐ - - admissions ᶜ - - consult ᵐ - - mylimehouse ᵐ - - ᶜ Server sends no certificate chain, see https://whatsmychaincert.com - ᵐ Mismatched - - - These altnames don't exist: - - - www.consultation.eastsussex.gov.uk - - - Insecure cookies are set for these domains and hosts: - - - admissions.eastsussex.gov.uk - - apps.eastsussex.gov.uk + Non-functional hosts + SSL peer certificate was not OK: - consult.eastsussex.gov.uk - - democracy.eastsussex.gov.uk - mylimehouse.eastsussex.gov.uk - - .new.eastsussex.gov.uk - - payments.eastsussex.gov.uk - - spreturns.eastsussex.gov.uk + - petitions.eastsussex.gov.uk - ᶜ See https://owasp.org/index.php/SecureFlag - - - Mixed content: - - - Images on news from $self ˢ - - ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ + Peer certificate cannot be authenticated with given CA certificates: + - learningzone.eastsussex.gov.uk + Different content: + - spreturns.eastsussex.gov.uk --> - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + diff --git a/src/chrome/content/rules/eastsussex1space.co.uk.xml b/src/chrome/content/rules/eastsussex1space.co.uk.xml index f898c4961b1c..9419ec3c0441 100644 --- a/src/chrome/content/rules/eastsussex1space.co.uk.xml +++ b/src/chrome/content/rules/eastsussex1space.co.uk.xml @@ -21,7 +21,7 @@ - + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ebay.be.xml b/src/chrome/content/rules/ebay.be.xml new file mode 100644 index 000000000000..da65de242fcb --- /dev/null +++ b/src/chrome/content/rules/ebay.be.xml @@ -0,0 +1,352 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ebay.ca.xml b/src/chrome/content/rules/ebay.ca.xml new file mode 100644 index 000000000000..e71edeeb85a9 --- /dev/null +++ b/src/chrome/content/rules/ebay.ca.xml @@ -0,0 +1,350 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ebay.ch.xml b/src/chrome/content/rules/ebay.ch.xml new file mode 100644 index 000000000000..fdbf5fb4feac --- /dev/null +++ b/src/chrome/content/rules/ebay.ch.xml @@ -0,0 +1,198 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ebay.co.uk.xml b/src/chrome/content/rules/ebay.co.uk.xml new file mode 100644 index 000000000000..be545f534080 --- /dev/null +++ b/src/chrome/content/rules/ebay.co.uk.xml @@ -0,0 +1,333 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ebay.com.au.xml b/src/chrome/content/rules/ebay.com.au.xml new file mode 100644 index 000000000000..137200d77d11 --- /dev/null +++ b/src/chrome/content/rules/ebay.com.au.xml @@ -0,0 +1,300 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ebay.com.hk.xml b/src/chrome/content/rules/ebay.com.hk.xml new file mode 100644 index 000000000000..a15266a5cebb --- /dev/null +++ b/src/chrome/content/rules/ebay.com.hk.xml @@ -0,0 +1,201 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ebay.com.my.xml b/src/chrome/content/rules/ebay.com.my.xml new file mode 100644 index 000000000000..3f2e2d371912 --- /dev/null +++ b/src/chrome/content/rules/ebay.com.my.xml @@ -0,0 +1,180 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ebay.com.sg.xml b/src/chrome/content/rules/ebay.com.sg.xml new file mode 100644 index 000000000000..996b3b5c8474 --- /dev/null +++ b/src/chrome/content/rules/ebay.com.sg.xml @@ -0,0 +1,195 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ebay.com.xml b/src/chrome/content/rules/ebay.com.xml new file mode 100644 index 000000000000..4e7b88c3d084 --- /dev/null +++ b/src/chrome/content/rules/ebay.com.xml @@ -0,0 +1,103 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ebay.de.xml b/src/chrome/content/rules/ebay.de.xml new file mode 100644 index 000000000000..769a18810748 --- /dev/null +++ b/src/chrome/content/rules/ebay.de.xml @@ -0,0 +1,294 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ebay.es.xml b/src/chrome/content/rules/ebay.es.xml new file mode 100644 index 000000000000..4505e566f8b9 --- /dev/null +++ b/src/chrome/content/rules/ebay.es.xml @@ -0,0 +1,228 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ebay.fr.xml b/src/chrome/content/rules/ebay.fr.xml new file mode 100644 index 000000000000..28378983c9c4 --- /dev/null +++ b/src/chrome/content/rules/ebay.fr.xml @@ -0,0 +1,247 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ebay.ie.xml b/src/chrome/content/rules/ebay.ie.xml new file mode 100644 index 000000000000..ba1627696907 --- /dev/null +++ b/src/chrome/content/rules/ebay.ie.xml @@ -0,0 +1,213 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ebay.in.xml b/src/chrome/content/rules/ebay.in.xml new file mode 100644 index 000000000000..6cb928c2cb6a --- /dev/null +++ b/src/chrome/content/rules/ebay.in.xml @@ -0,0 +1,219 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ebay.it.xml b/src/chrome/content/rules/ebay.it.xml new file mode 100644 index 000000000000..c396d431ae7d --- /dev/null +++ b/src/chrome/content/rules/ebay.it.xml @@ -0,0 +1,273 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ebay.nl.xml b/src/chrome/content/rules/ebay.nl.xml new file mode 100644 index 000000000000..6d59ffe6cc04 --- /dev/null +++ b/src/chrome/content/rules/ebay.nl.xml @@ -0,0 +1,205 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ebay.ph.xml b/src/chrome/content/rules/ebay.ph.xml new file mode 100644 index 000000000000..584fcda0138f --- /dev/null +++ b/src/chrome/content/rules/ebay.ph.xml @@ -0,0 +1,181 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ebay.pl.xml b/src/chrome/content/rules/ebay.pl.xml new file mode 100644 index 000000000000..805f646646d0 --- /dev/null +++ b/src/chrome/content/rules/ebay.pl.xml @@ -0,0 +1,195 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ebay.ru.xml b/src/chrome/content/rules/ebay.ru.xml new file mode 100644 index 000000000000..45be4e87f758 --- /dev/null +++ b/src/chrome/content/rules/ebay.ru.xml @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ebayclassifieds.com-falsemixed.xml b/src/chrome/content/rules/ebayclassifieds.com-falsemixed.xml deleted file mode 100644 index d6c3418d0376..000000000000 --- a/src/chrome/content/rules/ebayclassifieds.com-falsemixed.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/ebayclassifieds.com.xml b/src/chrome/content/rules/ebayclassifieds.com.xml deleted file mode 100644 index e8a2266c499c..000000000000 --- a/src/chrome/content/rules/ebayclassifieds.com.xml +++ /dev/null @@ -1,147 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/ebayclassifiedsgroup.com.xml b/src/chrome/content/rules/ebayclassifiedsgroup.com.xml new file mode 100644 index 000000000000..a19ceb938568 --- /dev/null +++ b/src/chrome/content/rules/ebayclassifiedsgroup.com.xml @@ -0,0 +1,25 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/ebayimg.com.xml b/src/chrome/content/rules/ebayimg.com.xml new file mode 100644 index 000000000000..7df6d6bba496 --- /dev/null +++ b/src/chrome/content/rules/ebayimg.com.xml @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ebayrtm.com.xml b/src/chrome/content/rules/ebayrtm.com.xml new file mode 100644 index 000000000000..895d3d7e1dff --- /dev/null +++ b/src/chrome/content/rules/ebayrtm.com.xml @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ebaystatic.com.xml b/src/chrome/content/rules/ebaystatic.com.xml new file mode 100644 index 000000000000..56d2f2a003d6 --- /dev/null +++ b/src/chrome/content/rules/ebaystatic.com.xml @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/echo24.cz.xml b/src/chrome/content/rules/echo24.cz.xml index 401fc7f294e1..ea9217d00ee6 100644 --- a/src/chrome/content/rules/echo24.cz.xml +++ b/src/chrome/content/rules/echo24.cz.xml @@ -5,7 +5,7 @@ Fetch error: http://tydenik.echo24.cz/ => https://tydenik.echo24.cz/: (51, "SSL: Fetch error: http://echomedia.cz/ => https://echomedia.cz/: (6, 'Could not resolve host: echomedia.cz') --> - + diff --git a/src/chrome/content/rules/eclkmpsa.com.xml b/src/chrome/content/rules/eclkmpsa.com.xml index f332dffb5764..237046de8f21 100644 --- a/src/chrome/content/rules/eclkmpsa.com.xml +++ b/src/chrome/content/rules/eclkmpsa.com.xml @@ -10,7 +10,7 @@ - + + + + + + + diff --git a/src/chrome/content/rules/ecops.org.uk.xml b/src/chrome/content/rules/ecops.org.uk.xml index 1ab520f69bcc..abc28747923a 100644 --- a/src/chrome/content/rules/ecops.org.uk.xml +++ b/src/chrome/content/rules/ecops.org.uk.xml @@ -4,7 +4,7 @@ - + + + + + + + + + + diff --git a/src/chrome/content/rules/edfringe.com.xml b/src/chrome/content/rules/edfringe.com.xml index dc6786d390c4..4b84636909a2 100644 --- a/src/chrome/content/rules/edfringe.com.xml +++ b/src/chrome/content/rules/edfringe.com.xml @@ -32,7 +32,7 @@ - + + + + + diff --git a/src/chrome/content/rules/edgis-security.org.xml b/src/chrome/content/rules/edgis-security.org.xml new file mode 100644 index 000000000000..fd48c0ddbb1f --- /dev/null +++ b/src/chrome/content/rules/edgis-security.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/edina.ac.uk.xml b/src/chrome/content/rules/edina.ac.uk.xml index baca31db55f2..b67cddde3df4 100644 --- a/src/chrome/content/rules/edina.ac.uk.xml +++ b/src/chrome/content/rules/edina.ac.uk.xml @@ -25,7 +25,7 @@ Fetch error: http://census.edina.ac.uk/ => https://census.edina.ac.uk/: (51, "SS ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -40,7 +40,7 @@ Fetch error: http://census.edina.ac.uk/ => https://census.edina.ac.uk/: (51, "SS - + - - + + https://tableschecking.e ˢ Secured by us --> - + @@ -142,7 +142,7 @@ Fetch error: http://tableschecking.education.gov.uk/ => https://tableschecking.e - + diff --git a/src/chrome/content/rules/educationusa.info.xml b/src/chrome/content/rules/educationusa.info.xml deleted file mode 100644 index ba9343f34a91..000000000000 --- a/src/chrome/content/rules/educationusa.info.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/eduroam.gr.xml b/src/chrome/content/rules/eduroam.gr.xml new file mode 100644 index 000000000000..0ebac48c2187 --- /dev/null +++ b/src/chrome/content/rules/eduroam.gr.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/eduserv.org.uk.xml b/src/chrome/content/rules/eduserv.org.uk.xml index d103b8dd8e6d..0b2215ea878c 100644 --- a/src/chrome/content/rules/eduserv.org.uk.xml +++ b/src/chrome/content/rules/eduserv.org.uk.xml @@ -8,7 +8,7 @@ - swalive ᵐ ᵐ Mismatched - + Insecure cookies are set for these domains and hosts: ᶜ @@ -23,7 +23,7 @@ - css on (www.)? from fonts.googleapis.com ˢ - Bug on (www.)? from www.final-azr-01.com ᵐ - + ᵐ Not secured by us <= mismatched ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ @@ -41,7 +41,7 @@ - + + + + + + + diff --git a/src/chrome/content/rules/edusupportcenter.com.xml b/src/chrome/content/rules/edusupportcenter.com.xml index 85c4fbdf3adb..4eab868feba6 100644 --- a/src/chrome/content/rules/edusupportcenter.com.xml +++ b/src/chrome/content/rules/edusupportcenter.com.xml @@ -12,7 +12,7 @@ - + - + - - - - - - - - - - - diff --git a/src/chrome/content/rules/efsyn.gr.xml b/src/chrome/content/rules/efsyn.gr.xml index 896b92579e5c..dbbe486b563e 100644 --- a/src/chrome/content/rules/efsyn.gr.xml +++ b/src/chrome/content/rules/efsyn.gr.xml @@ -10,13 +10,13 @@ Fetch error: http://efsyn.gr/ => https://efsyn.gr/: (51, "SSL: no alternative ce ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + - + + + + + + diff --git a/src/chrome/content/rules/ehsanakhgari.org.xml b/src/chrome/content/rules/ehsanakhgari.org.xml index 66cc40ed2353..9589de7521fe 100644 --- a/src/chrome/content/rules/ehsanakhgari.org.xml +++ b/src/chrome/content/rules/ehsanakhgari.org.xml @@ -19,7 +19,7 @@ - + @@ -12,7 +12,7 @@ - + diff --git a/src/chrome/content/rules/ejtaal.net.xml b/src/chrome/content/rules/ejtaal.net.xml index ec1e9c5246dc..1900aea46f14 100644 --- a/src/chrome/content/rules/ejtaal.net.xml +++ b/src/chrome/content/rules/ejtaal.net.xml @@ -1,8 +1,8 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/elec.ru.xml b/src/chrome/content/rules/elec.ru.xml index 5eded1c3ef6b..033ed390ef50 100644 --- a/src/chrome/content/rules/elec.ru.xml +++ b/src/chrome/content/rules/elec.ru.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://market.elec.ru/ => https://market.elec.ru/: (60, 'SSL certificate problem: unable to get local issuer certificate') advert. mismatch www.advert. mismatch --> - + diff --git a/src/chrome/content/rules/electionmentions.com.xml b/src/chrome/content/rules/electionmentions.com.xml index 7c75a16000fd..c41ed5b73f9b 100644 --- a/src/chrome/content/rules/electionmentions.com.xml +++ b/src/chrome/content/rules/electionmentions.com.xml @@ -17,7 +17,7 @@ --> - + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/electric-cloud.com.xml b/src/chrome/content/rules/electric-cloud.com.xml index 73ba0a19ba6d..f0110987ecd0 100644 --- a/src/chrome/content/rules/electric-cloud.com.xml +++ b/src/chrome/content/rules/electric-cloud.com.xml @@ -7,7 +7,7 @@ cdn.electric-cloud.com mismatch docs.electric-cloud.com mismatch downloads.electric-cloud.com mismatch --> - + diff --git a/src/chrome/content/rules/electroneum.com.xml b/src/chrome/content/rules/electroneum.com.xml new file mode 100644 index 000000000000..70aa9efbc113 --- /dev/null +++ b/src/chrome/content/rules/electroneum.com.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/elephorm.com.xml b/src/chrome/content/rules/elephorm.com.xml index 2af26d540994..7658e8d70623 100644 --- a/src/chrome/content/rules/elephorm.com.xml +++ b/src/chrome/content/rules/elephorm.com.xml @@ -18,7 +18,7 @@ - + https://elkosmas.gr/: (60, 'SSL certificate problem: unable to get local issuer certificate') Fetch error: http://elkosmas.gr/ => https://elkosmas.gr/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + diff --git a/src/chrome/content/rules/ellislab.com.xml b/src/chrome/content/rules/ellislab.com.xml index ea1dc0baeb15..72ae5e9e257c 100644 --- a/src/chrome/content/rules/ellislab.com.xml +++ b/src/chrome/content/rules/ellislab.com.xml @@ -20,7 +20,7 @@ - + + + + + + + + + + + diff --git a/src/chrome/content/rules/elrippoisland.net.xml b/src/chrome/content/rules/elrippoisland.net.xml index b40840851afb..d67a13230c16 100644 --- a/src/chrome/content/rules/elrippoisland.net.xml +++ b/src/chrome/content/rules/elrippoisland.net.xml @@ -2,13 +2,13 @@ NB: Server sends no certificate chain, see https://whatsmychaincert.com --> - + - + - + + + + + + + + + + diff --git a/src/chrome/content/rules/email-comparethemarket.com.xml b/src/chrome/content/rules/email-comparethemarket.com.xml index 9eabf9413c0c..a64903e8b1f1 100644 --- a/src/chrome/content/rules/email-comparethemarket.com.xml +++ b/src/chrome/content/rules/email-comparethemarket.com.xml @@ -11,7 +11,7 @@ Fetch error: http://email-comparethemarket.com/ => https://email-comparethemarke - email-comparethemarket.com --> - + @@ -20,7 +20,7 @@ Fetch error: http://email-comparethemarket.com/ => https://email-comparethemarke --> - + + + + + + + + diff --git a/src/chrome/content/rules/emailregex.com.xml b/src/chrome/content/rules/emailregex.com.xml new file mode 100644 index 000000000000..7d9bdba5474b --- /dev/null +++ b/src/chrome/content/rules/emailregex.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/eme.moe.xml b/src/chrome/content/rules/eme.moe.xml deleted file mode 100644 index fda768347190..000000000000 --- a/src/chrome/content/rules/eme.moe.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/emfcamp.org.xml b/src/chrome/content/rules/emfcamp.org.xml index 15df6e8e4f96..a0db9534a2ae 100644 --- a/src/chrome/content/rules/emfcamp.org.xml +++ b/src/chrome/content/rules/emfcamp.org.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://wiki-archive.emfcamp.org/ => https://wiki-archive.emfcamp.org/: (51, "SSL: no alternative certificate subject name matches target host name 'wiki-archive.emfcamp.org'") --> - + @@ -12,7 +12,7 @@ Fetch error: http://wiki-archive.emfcamp.org/ => https://wiki-archive.emfcamp.or - + https://enrollment-info.e - transformationcentral from transformation-central.com - transformationcentral from www.transformation-central.com - + ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -100,7 +100,7 @@ Fetch error: http://enrollment-info.empireblue.com/ => https://enrollment-info.e - + https://empirehost.me/: (6, 'Could not resolve host: empirehost.me') -Fetch error: http://www.empirehost.me/ => https://www.empirehost.me/: (6, 'Could not resolve host: www.empirehost.me') - - unable to connect: - - sync ---> - - - - - - diff --git a/src/chrome/content/rules/emssoftware.com.xml b/src/chrome/content/rules/emssoftware.com.xml index 038e8832671b..78bb7dbc609d 100644 --- a/src/chrome/content/rules/emssoftware.com.xml +++ b/src/chrome/content/rules/emssoftware.com.xml @@ -21,7 +21,7 @@ Non-2xx HTTP code: http://pages.emssoftware.com/rs/486-ESV-129/images/download-n ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -61,7 +61,7 @@ Non-2xx HTTP code: http://pages.emssoftware.com/rs/486-ESV-129/images/download-n - + + + + + + + + diff --git a/src/chrome/content/rules/emule-rus.net.xml b/src/chrome/content/rules/emule-rus.net.xml new file mode 100644 index 000000000000..6dc4147f5185 --- /dev/null +++ b/src/chrome/content/rules/emule-rus.net.xml @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/emule-security.org.xml b/src/chrome/content/rules/emule-security.org.xml index 9d8ca276d847..0388c21f1f90 100644 --- a/src/chrome/content/rules/emule-security.org.xml +++ b/src/chrome/content/rules/emule-security.org.xml @@ -1,14 +1,16 @@ - + + + + + + + diff --git a/src/chrome/content/rules/emuvr.net.xml b/src/chrome/content/rules/emuvr.net.xml new file mode 100644 index 000000000000..059ddd4ff960 --- /dev/null +++ b/src/chrome/content/rules/emuvr.net.xml @@ -0,0 +1,18 @@ + + + + + + + diff --git a/src/chrome/content/rules/encrypt-the-planet.com.xml b/src/chrome/content/rules/encrypt-the-planet.com.xml index e18389338235..647bf1f1ab40 100644 --- a/src/chrome/content/rules/encrypt-the-planet.com.xml +++ b/src/chrome/content/rules/encrypt-the-planet.com.xml @@ -9,7 +9,7 @@ - + - - + + - + @@ -23,7 +23,7 @@ Non-2xx HTTP code: http://pages.endgame.com/rs/endgame/images/f-logo.png (200) = - + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/energylinx.co.uk.xml b/src/chrome/content/rules/energylinx.co.uk.xml index b1da4910debe..1dab117f86a0 100644 --- a/src/chrome/content/rules/energylinx.co.uk.xml +++ b/src/chrome/content/rules/energylinx.co.uk.xml @@ -4,7 +4,7 @@ - + - + diff --git a/src/chrome/content/rules/entangledstates.org.xml b/src/chrome/content/rules/entangledstates.org.xml index 5af218eac9dd..a62f38e561cb 100644 --- a/src/chrome/content/rules/entangledstates.org.xml +++ b/src/chrome/content/rules/entangledstates.org.xml @@ -4,7 +4,7 @@ - + https://www.enterbrain.co.jp/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + - + https://shop.entropia.de/: (7, 'Failed to connect to shop.entropia.de port 443: No route to host') - Invalid certificate: + eventvm.entropia.de + gpn-noc.entropia.de oid.entropia.de planet.entropia.de poc.entropia.de sistina.entropia.de soup.entropia.de tttool.entropia.de + vorstand.entropia.de - Not found: - radius.club.entropia.de - - Rejected: + Refused: + club.entropia.de + dns.entropia.de mail.entropia.de Timeout: - ipe8ac.gpn.entropia.de - ipe8f7.gpn.entropia.de - radius1.gpn.entropia.de + ccc-tool-1.entropia.de + Unable to get local issuer certificate: + pretalx.entropia.de + pretix.entropia.de --> - + - - - - - + + diff --git a/src/chrome/content/rules/entstix.com.xml b/src/chrome/content/rules/entstix.com.xml index 5c47eae97259..a429370b35a8 100644 --- a/src/chrome/content/rules/entstix.com.xml +++ b/src/chrome/content/rules/entstix.com.xml @@ -3,7 +3,7 @@ - + https://learning.envi - piedc.environment-agency.gov.uk --> - + @@ -96,7 +96,7 @@ Fetch error: http://learning.environment-agency.gov.uk/ => https://learning.envi - + - + - + + + + + + + + + + + diff --git a/src/chrome/content/rules/erewash.gov.uk.xml b/src/chrome/content/rules/erewash.gov.uk.xml index c967ca66ea24..22906708bcf8 100644 --- a/src/chrome/content/rules/erewash.gov.uk.xml +++ b/src/chrome/content/rules/erewash.gov.uk.xml @@ -34,7 +34,7 @@ --> - + - + - + - + - + https://www.eschools.co.uk/: (51, "SS - css on 360, 457-northumberland, new-brighton from fonts.googleapis.com ˢ - Images, on: - + - castle-hill from i\d+.photobucket.com ˢ - new-brighton from www.computingatschool.org.uk ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -57,7 +57,7 @@ Fetch error: http://www.eschools.co.uk/ => https://www.eschools.co.uk/: (51, "SS --> - + + + + + + + + diff --git a/src/chrome/content/rules/espiv.net-falsemixed.xml b/src/chrome/content/rules/espiv.net-falsemixed.xml deleted file mode 100644 index f8eaa1fa65bb..000000000000 --- a/src/chrome/content/rules/espiv.net-falsemixed.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/espiv.net.xml b/src/chrome/content/rules/espiv.net.xml index d173c2709575..795025b36de0 100644 --- a/src/chrome/content/rules/espiv.net.xml +++ b/src/chrome/content/rules/espiv.net.xml @@ -33,12 +33,12 @@ Mixed content: - css, on: - + - saltadoroi, thersitis from fonts.googleapis.com ˢ - skya from $self - Images, on: - + - adelante from adelante.espivblogs.net - adelante from athens.indymedia.org ˢ - adelante from ia.media-imdb.com @@ -113,7 +113,7 @@ - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/espivblogs.net.xml b/src/chrome/content/rules/espivblogs.net.xml index a4922517bbe3..11b96682d543 100644 --- a/src/chrome/content/rules/espivblogs.net.xml +++ b/src/chrome/content/rules/espivblogs.net.xml @@ -88,14 +88,14 @@ Mixed content: - iframes, on: - + - adn, agros, anotherdemocracy, apallotriwsh, farmazapatista, pastanaka from www.youtube.com ˢ - ajde, nogoldthess from static.issuu.com ˢ - psalidi from radiopsalidi.fs-dl.net ᵘ - synerga-re from player.vimeo.com ˢ - css, on: - + - adespoto-sinafi, aestia, aithrio, anarxikoigalatsiou, aneyarxon, anokatopatision, anwthrwskw, asyrmatos, autodiaxirizomenosyros, bastards, diamedia, espapei, freedomtrekking, immigrants-asoee, kaiussparilus, katalipsi-virwnos-3, katalipsianalipsis, kentauros, koinonikoiatreionfnx, kpapasotiriou, musaferat, nogoldthess, nolagerthess, oikodiktyo, olikiarnisi, paidikostekiftoukselefteria, peiratikokafeneio, proledialers, prosfygika, psalidi, radiofragmata, rioters, saher, sakana, sasta, stekiantipnoia, stepanyantsp, strouga, syl-kat-exarcheion, syneleusivolos, vogliamotutto, zsol from $self ˢ - akay, antifaprotsamou, autonomomath, ekpaideysi, espapei, katalipsi-virwnos-3, katalipsimithe, sinialo, syl-kat-exarcheion, xanadu from fonts.googleapis.com ˢ - alliotikosxoleio, antifa-ngt, antinertia, atakton, autonomohmmy from $self * ˢ @@ -184,7 +184,6 @@ - @@ -200,7 +199,6 @@ - @@ -303,7 +301,6 @@ - @@ -436,7 +433,7 @@ - + - + - + + + + + + diff --git a/src/chrome/content/rules/etmirror.com.xml b/src/chrome/content/rules/etmirror.com.xml index eab172a9d0b8..820844f68adf 100644 --- a/src/chrome/content/rules/etmirror.com.xml +++ b/src/chrome/content/rules/etmirror.com.xml @@ -5,13 +5,13 @@ Fetch error: http://etmirror.com/ => https://etmirror.com/: (28, 'Operation time Fetch error: http://www.etmirror.com/ => https://www.etmirror.com/: (28, 'Operation timed out after 30006 milliseconds with 0 bytes received') --> - + - + - - - - - - - - - - - - diff --git a/src/chrome/content/rules/etorostatic.com.xml b/src/chrome/content/rules/etorostatic.com.xml index 044cec7c9e26..9e8c076d31d9 100644 --- a/src/chrome/content/rules/etorostatic.com.xml +++ b/src/chrome/content/rules/etorostatic.com.xml @@ -1,15 +1,17 @@ - + + + + - + + + + + + + + + + diff --git a/src/chrome/content/rules/eugenekolo.com.xml b/src/chrome/content/rules/eugenekolo.com.xml index 9d5c4294dcd1..29c8c1a9d92b 100644 --- a/src/chrome/content/rules/eugenekolo.com.xml +++ b/src/chrome/content/rules/eugenekolo.com.xml @@ -5,7 +5,7 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/eumostwanted.eu.xml b/src/chrome/content/rules/eumostwanted.eu.xml index f8a654646213..c2473112067d 100644 --- a/src/chrome/content/rules/eumostwanted.eu.xml +++ b/src/chrome/content/rules/eumostwanted.eu.xml @@ -4,7 +4,7 @@ - + - + - + + + + + + + diff --git a/src/chrome/content/rules/europe1.fr.xml b/src/chrome/content/rules/europe1.fr.xml index bc4603e113f9..82b5b3c8ba92 100644 --- a/src/chrome/content/rules/europe1.fr.xml +++ b/src/chrome/content/rules/europe1.fr.xml @@ -35,13 +35,13 @@ Non-2xx HTTP code: http://blog.europe1.fr/ (200) => https://blog.europe1.fr/ (40 club-news.europe1.fr planiweb.europe1.fr (self-signed) rencontres.europe1.fr - + Secure connection failed: avantages.europe1.fr bienvenueauclub.europe1.fr elections.europe1.fr generationseurope1.europe1.fr - + Bad redirection: club.europe1.fr festival-de-cannes.europe1.fr @@ -54,7 +54,7 @@ Non-2xx HTTP code: http://blog.europe1.fr/ (200) => https://blog.europe1.fr/ (40 sport.europe1.fr webradio.europe1.fr --> - + @@ -62,10 +62,10 @@ Non-2xx HTTP code: http://blog.europe1.fr/ (200) => https://blog.europe1.fr/ (40 - + - + diff --git a/src/chrome/content/rules/europeana.eu.xml b/src/chrome/content/rules/europeana.eu.xml index ecaa765bb474..d50430e042bf 100644 --- a/src/chrome/content/rules/europeana.eu.xml +++ b/src/chrome/content/rules/europeana.eu.xml @@ -36,7 +36,7 @@ Fetch error: http://www.europeana.eu/ => https://www.europeana.eu/: Too many red ˢ Secured by us --> - + @@ -46,7 +46,7 @@ Fetch error: http://www.europeana.eu/ => https://www.europeana.eu/: Too many red --> - + + + + + + + + + + + + diff --git a/src/chrome/content/rules/eventbrite.de.xml b/src/chrome/content/rules/eventbrite.de.xml index 47c9988ae9f8..51f357374ace 100644 --- a/src/chrome/content/rules/eventbrite.de.xml +++ b/src/chrome/content/rules/eventbrite.de.xml @@ -27,7 +27,7 @@ - + - + - - - - - - - - - - - - diff --git a/src/chrome/content/rules/evilsocket.net.xml b/src/chrome/content/rules/evilsocket.net.xml index 5696d73fdea7..a192afa35a65 100644 --- a/src/chrome/content/rules/evilsocket.net.xml +++ b/src/chrome/content/rules/evilsocket.net.xml @@ -5,7 +5,7 @@ - + + + + + + + + + diff --git a/src/chrome/content/rules/ewebcart.com.xml b/src/chrome/content/rules/ewebcart.com.xml index 7bad9158d087..d55bd39cbed4 100644 --- a/src/chrome/content/rules/ewebcart.com.xml +++ b/src/chrome/content/rules/ewebcart.com.xml @@ -7,7 +7,7 @@ - + - + diff --git a/src/chrome/content/rules/excelatlife.com.xml b/src/chrome/content/rules/excelatlife.com.xml index 66e73cae93e6..58e19c1496cc 100644 --- a/src/chrome/content/rules/excelatlife.com.xml +++ b/src/chrome/content/rules/excelatlife.com.xml @@ -18,7 +18,7 @@ - + - + - + - + + + + + + diff --git a/src/chrome/content/rules/expatpartnersurvival.com.xml b/src/chrome/content/rules/expatpartnersurvival.com.xml index 5f85cf488090..bb54f12017c6 100644 --- a/src/chrome/content/rules/expatpartnersurvival.com.xml +++ b/src/chrome/content/rules/expatpartnersurvival.com.xml @@ -12,7 +12,7 @@ - + + + + + + diff --git a/src/chrome/content/rules/explore.co.uk.xml b/src/chrome/content/rules/explore.co.uk.xml index 6016eadfb3d1..756146ee1cff 100644 --- a/src/chrome/content/rules/explore.co.uk.xml +++ b/src/chrome/content/rules/explore.co.uk.xml @@ -16,7 +16,7 @@ --> - + - + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/extra.to.xml b/src/chrome/content/rules/extra.to.xml deleted file mode 100644 index 6e47ab365026..000000000000 --- a/src/chrome/content/rules/extra.to.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/extratorrentlive.com.xml b/src/chrome/content/rules/extratorrentlive.com.xml index 4968254aa18e..f0efe0ec737f 100644 --- a/src/chrome/content/rules/extratorrentlive.com.xml +++ b/src/chrome/content/rules/extratorrentlive.com.xml @@ -11,14 +11,14 @@ Fetch error: http://www.extratorrentlive.com/ => https://www.extratorrentlive.co ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + - + - + + + + + + + diff --git a/src/chrome/content/rules/eyeo.com.xml b/src/chrome/content/rules/eyeo.com.xml index 19d90691352c..40d3784ba5b1 100644 --- a/src/chrome/content/rules/eyeo.com.xml +++ b/src/chrome/content/rules/eyeo.com.xml @@ -4,7 +4,7 @@ - + https://helpdesk.eyeota.net/: (6, 'Could not resolve host: helpdesk.eyeota.net') Insecure cookies are set for these domains: ᶜ @@ -17,9 +14,8 @@ Fetch error: http://helpdesk.eyeota.net/ => https://helpdesk.eyeota.net/: (6, 'C ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + - - + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/facedetection.com.xml b/src/chrome/content/rules/facedetection.com.xml index e0aeda24c73a..7cad75a73f3e 100644 --- a/src/chrome/content/rules/facedetection.com.xml +++ b/src/chrome/content/rules/facedetection.com.xml @@ -12,7 +12,7 @@ - + + + + + + + + diff --git a/src/chrome/content/rules/fact.group.xml b/src/chrome/content/rules/fact.group.xml index 35ca7c1f8d6f..70cea7425392 100644 --- a/src/chrome/content/rules/fact.group.xml +++ b/src/chrome/content/rules/fact.group.xml @@ -5,10 +5,10 @@ Fetch error: http://fact.group/ => https://fact.group/: (60, 'SSL certificate pr Fetch error: http://www.fact.group/ => https://www.fact.group/: (60, 'SSL certificate problem: certificate has expired') --> - + - + diff --git a/src/chrome/content/rules/factor.io.xml b/src/chrome/content/rules/factor.io.xml index 634e4f9c5676..d9b8de6b0332 100644 --- a/src/chrome/content/rules/factor.io.xml +++ b/src/chrome/content/rules/factor.io.xml @@ -8,10 +8,10 @@ Fetch error: http://www.factor.io/ => https://factor.io/: (6, 'Could not resolve www.factor.io timed out docs.factor.io timed out --> - + - + diff --git a/src/chrome/content/rules/fail0verflow.com.xml b/src/chrome/content/rules/fail0verflow.com.xml new file mode 100644 index 000000000000..14fa2dd26779 --- /dev/null +++ b/src/chrome/content/rules/fail0verflow.com.xml @@ -0,0 +1,9 @@ + + + + + + + + diff --git a/src/chrome/content/rules/fail0verflow.xml b/src/chrome/content/rules/fail0verflow.xml deleted file mode 100644 index bc483df4d974..000000000000 --- a/src/chrome/content/rules/fail0verflow.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/faiumoni.de.xml b/src/chrome/content/rules/faiumoni.de.xml index 10f4238e95d6..08982f2312ac 100644 --- a/src/chrome/content/rules/faiumoni.de.xml +++ b/src/chrome/content/rules/faiumoni.de.xml @@ -19,7 +19,7 @@ - + + + + + + + diff --git a/src/chrome/content/rules/fancybrideness.com.xml b/src/chrome/content/rules/fancybrideness.com.xml deleted file mode 100644 index 81a51ec80e13..000000000000 --- a/src/chrome/content/rules/fancybrideness.com.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/fans.fm.xml b/src/chrome/content/rules/fans.fm.xml index e3f2ff2dfd39..70ae524d9d8c 100644 --- a/src/chrome/content/rules/fans.fm.xml +++ b/src/chrome/content/rules/fans.fm.xml @@ -16,7 +16,7 @@ --> - + + + + + + + diff --git a/src/chrome/content/rules/fatiguescience.com.xml b/src/chrome/content/rules/fatiguescience.com.xml new file mode 100644 index 000000000000..61f0254767f5 --- /dev/null +++ b/src/chrome/content/rules/fatiguescience.com.xml @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/fatwreck.com.xml b/src/chrome/content/rules/fatwreck.com.xml index 5cde6ca76a82..7c58dc251c14 100644 --- a/src/chrome/content/rules/fatwreck.com.xml +++ b/src/chrome/content/rules/fatwreck.com.xml @@ -4,7 +4,7 @@ - + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/fckme.org.xml b/src/chrome/content/rules/fckme.org.xml new file mode 100644 index 000000000000..e09cc41248f4 --- /dev/null +++ b/src/chrome/content/rules/fckme.org.xml @@ -0,0 +1,11 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/fczbkk.com.xml b/src/chrome/content/rules/fczbkk.com.xml new file mode 100644 index 000000000000..4c29578dd6c1 --- /dev/null +++ b/src/chrome/content/rules/fczbkk.com.xml @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/febo.com.xml b/src/chrome/content/rules/febo.com.xml index 56e765a796ea..e5dd75ece605 100644 --- a/src/chrome/content/rules/febo.com.xml +++ b/src/chrome/content/rules/febo.com.xml @@ -12,7 +12,7 @@ - + - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/feed.press.xml b/src/chrome/content/rules/feed.press.xml index 8e0157ee8c7f..f740af05d899 100644 --- a/src/chrome/content/rules/feed.press.xml +++ b/src/chrome/content/rules/feed.press.xml @@ -34,7 +34,7 @@ - + - + + + + + + + + + + + diff --git a/src/chrome/content/rules/fgdc.gov.xml b/src/chrome/content/rules/fgdc.gov.xml deleted file mode 100644 index 009d15e5b19b..000000000000 --- a/src/chrome/content/rules/fgdc.gov.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/fh-nuernberg.de.xml b/src/chrome/content/rules/fh-nuernberg.de.xml new file mode 100644 index 000000000000..5794d00d042b --- /dev/null +++ b/src/chrome/content/rules/fh-nuernberg.de.xml @@ -0,0 +1,35 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/fh-nuernberg.eu.xml b/src/chrome/content/rules/fh-nuernberg.eu.xml new file mode 100644 index 000000000000..5e55c21f11a7 --- /dev/null +++ b/src/chrome/content/rules/fh-nuernberg.eu.xml @@ -0,0 +1,11 @@ + + + + + + + diff --git a/src/chrome/content/rules/fieldnation.com.xml b/src/chrome/content/rules/fieldnation.com.xml index 1fcb78d37ad9..f72b4f01eaeb 100644 --- a/src/chrome/content/rules/fieldnation.com.xml +++ b/src/chrome/content/rules/fieldnation.com.xml @@ -4,7 +4,7 @@ - + - + - + - - + + diff --git a/src/chrome/content/rules/filecrypt.co.xml b/src/chrome/content/rules/filecrypt.co.xml new file mode 100644 index 000000000000..97e19e6ee02d --- /dev/null +++ b/src/chrome/content/rules/filecrypt.co.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/filediva.com.xml b/src/chrome/content/rules/filediva.com.xml new file mode 100644 index 000000000000..ff390bec538e --- /dev/null +++ b/src/chrome/content/rules/filediva.com.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/filesharingpremium.com.xml b/src/chrome/content/rules/filesharingpremium.com.xml index 14ce6fe82be8..01e63fa3a02b 100644 --- a/src/chrome/content/rules/filesharingpremium.com.xml +++ b/src/chrome/content/rules/filesharingpremium.com.xml @@ -24,7 +24,7 @@ --> - + - + - + - + - + - + - + - + - - - - - - - - - - - - diff --git a/src/chrome/content/rules/finlex.xml b/src/chrome/content/rules/finlex.xml index 35008adaa66d..82620611b91e 100644 --- a/src/chrome/content/rules/finlex.xml +++ b/src/chrome/content/rules/finlex.xml @@ -5,9 +5,9 @@ Fetch error: http://finlex.fi/ => https://www.finlex.fi/: (60, 'SSL certificate Fetch error: http://www.finlex.fi/ => https://www.finlex.fi/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + - + diff --git a/src/chrome/content/rules/finseth.com.xml b/src/chrome/content/rules/finseth.com.xml index 52db8e0075d0..5e7707742f46 100644 --- a/src/chrome/content/rules/finseth.com.xml +++ b/src/chrome/content/rules/finseth.com.xml @@ -1,19 +1,10 @@ - - + - + https://tweb.fir.im/: (28, 'Operation timed firicon.fir.im firimg.fir.im pkg3.fir.im - + Break load forum avatar images in https://firimg.fir.im/ : club.fir.im --> - + diff --git a/src/chrome/content/rules/firealpaca.com.xml b/src/chrome/content/rules/firealpaca.com.xml new file mode 100644 index 000000000000..688997313ef2 --- /dev/null +++ b/src/chrome/content/rules/firealpaca.com.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/firehol.org.xml b/src/chrome/content/rules/firehol.org.xml index 9dae54899d5a..f594ebb021e1 100644 --- a/src/chrome/content/rules/firehol.org.xml +++ b/src/chrome/content/rules/firehol.org.xml @@ -1,15 +1,12 @@ - - + + @@ -17,8 +14,10 @@ vps.firehol.org ¹ - + + + diff --git a/src/chrome/content/rules/firmstep.com-mixedcontent.xml b/src/chrome/content/rules/firmstep.com-mixedcontent.xml index 3b88b216f1f8..09ff996a526d 100644 --- a/src/chrome/content/rules/firmstep.com-mixedcontent.xml +++ b/src/chrome/content/rules/firmstep.com-mixedcontent.xml @@ -7,7 +7,7 @@ Fetch error: http://richmondshire.firmstep.com/ => https://richmondshire.firmste For rules not causing MCB, see firmstep.com.xml. --> - + @@ -26,8 +26,8 @@ Fetch error: http://richmondshire.firmstep.com/ => https://richmondshire.firmste - - + + - + diff --git a/src/chrome/content/rules/firstdirect.com.xml b/src/chrome/content/rules/firstdirect.com.xml index c47e4cc2c3be..b5073e3e24e1 100644 --- a/src/chrome/content/rules/firstdirect.com.xml +++ b/src/chrome/content/rules/firstdirect.com.xml @@ -49,7 +49,7 @@ Fetch error: http://www.lifeinsurance.firstdirect.com/ => https://www.lifeinsura ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -138,7 +138,7 @@ Fetch error: http://www.lifeinsurance.firstdirect.com/ => https://www.lifeinsura - + - + - + diff --git a/src/chrome/content/rules/fkfev.de.xml b/src/chrome/content/rules/fkfev.de.xml deleted file mode 100644 index 2025aa782d87..000000000000 --- a/src/chrome/content/rules/fkfev.de.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/flagcounter.com.xml b/src/chrome/content/rules/flagcounter.com.xml index 7b61afa665f9..d4739ca1d91e 100644 --- a/src/chrome/content/rules/flagcounter.com.xml +++ b/src/chrome/content/rules/flagcounter.com.xml @@ -25,7 +25,7 @@ - + - + - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/fliphtml5.com.xml b/src/chrome/content/rules/fliphtml5.com.xml new file mode 100644 index 000000000000..758e7e142636 --- /dev/null +++ b/src/chrome/content/rules/fliphtml5.com.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/flippfly.com.xml b/src/chrome/content/rules/flippfly.com.xml new file mode 100644 index 000000000000..1d98782baea9 --- /dev/null +++ b/src/chrome/content/rules/flippfly.com.xml @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/flirt4free.com.xml b/src/chrome/content/rules/flirt4free.com.xml index 9f45aff6cf3a..7049c3fdd6d9 100644 --- a/src/chrome/content/rules/flirt4free.com.xml +++ b/src/chrome/content/rules/flirt4free.com.xml @@ -18,7 +18,7 @@ --> - + - + + + + + + + + + + + diff --git a/src/chrome/content/rules/flsenate.gov.xml b/src/chrome/content/rules/flsenate.gov.xml index 6a0c136fa0f6..b2bea0c5c9b2 100644 --- a/src/chrome/content/rules/flsenate.gov.xml +++ b/src/chrome/content/rules/flsenate.gov.xml @@ -26,7 +26,7 @@ --> - + + + + + + + + + diff --git a/src/chrome/content/rules/flyspray.org.xml b/src/chrome/content/rules/flyspray.org.xml deleted file mode 100644 index 49a50b14f724..000000000000 --- a/src/chrome/content/rules/flyspray.org.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/fm-world.co.uk.xml b/src/chrome/content/rules/fm-world.co.uk.xml index b950781d6879..ad264b8c75a6 100644 --- a/src/chrome/content/rules/fm-world.co.uk.xml +++ b/src/chrome/content/rules/fm-world.co.uk.xml @@ -29,7 +29,7 @@ - + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/fmworld.net.xml b/src/chrome/content/rules/fmworld.net.xml new file mode 100644 index 000000000000..77b98d7779d4 --- /dev/null +++ b/src/chrome/content/rules/fmworld.net.xml @@ -0,0 +1,17 @@ + + + + + + + diff --git a/src/chrome/content/rules/fofa.so.xml b/src/chrome/content/rules/fofa.so.xml new file mode 100644 index 000000000000..ab2dc3624494 --- /dev/null +++ b/src/chrome/content/rules/fofa.so.xml @@ -0,0 +1,11 @@ + + + + + + + diff --git a/src/chrome/content/rules/followmail.com.xml b/src/chrome/content/rules/followmail.com.xml index b73f8cdf1997..8b38b04a81d3 100644 --- a/src/chrome/content/rules/followmail.com.xml +++ b/src/chrome/content/rules/followmail.com.xml @@ -27,7 +27,7 @@ --> - + + + + + + + + diff --git a/src/chrome/content/rules/foobar2000.com.xml b/src/chrome/content/rules/foobar2000.com.xml new file mode 100644 index 000000000000..462704e4208c --- /dev/null +++ b/src/chrome/content/rules/foobar2000.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/foobar2000.xml b/src/chrome/content/rules/foobar2000.xml index 458512cde261..19798306ea2b 100644 --- a/src/chrome/content/rules/foobar2000.xml +++ b/src/chrome/content/rules/foobar2000.xml @@ -2,7 +2,7 @@ - + - + diff --git a/src/chrome/content/rules/food.gov.uk.xml b/src/chrome/content/rules/food.gov.uk.xml index ed0bf3b7e310..ab8c521e91cd 100644 --- a/src/chrome/content/rules/food.gov.uk.xml +++ b/src/chrome/content/rules/food.gov.uk.xml @@ -46,7 +46,7 @@ - + diff --git a/src/chrome/content/rules/foodsharing.de.xml b/src/chrome/content/rules/foodsharing.de.xml index 4f2a57c717e8..aab46349810d 100644 --- a/src/chrome/content/rules/foodsharing.de.xml +++ b/src/chrome/content/rules/foodsharing.de.xml @@ -4,7 +4,7 @@ - + - + - + - + - + https://formsite.com/: (60, 'SSL certificat - www.formsite.com --> - + @@ -55,7 +55,7 @@ Fetch error: http://formsite.com/ => https://formsite.com/: (60, 'SSL certificat - + - - + + - - + + + diff --git a/src/chrome/content/rules/forum.gigabyte.ru.xml b/src/chrome/content/rules/forum.gigabyte.ru.xml new file mode 100644 index 000000000000..5d4582fe245d --- /dev/null +++ b/src/chrome/content/rules/forum.gigabyte.ru.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/fosshub.xml b/src/chrome/content/rules/fosshub.xml index 964edac025b1..2b059b6dde42 100644 --- a/src/chrome/content/rules/fosshub.xml +++ b/src/chrome/content/rules/fosshub.xml @@ -1,8 +1,8 @@ - - - - - - - - + + + + + + + + diff --git a/src/chrome/content/rules/fossies.org.xml b/src/chrome/content/rules/fossies.org.xml index be81e8327993..734b47e5d0e1 100644 --- a/src/chrome/content/rules/fossies.org.xml +++ b/src/chrome/content/rules/fossies.org.xml @@ -4,7 +4,7 @@ - + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/foursignposts.com.xml b/src/chrome/content/rules/foursignposts.com.xml index 7b723fc10693..321851162ae1 100644 --- a/src/chrome/content/rules/foursignposts.com.xml +++ b/src/chrome/content/rules/foursignposts.com.xml @@ -4,7 +4,7 @@ - + + + + + + + + diff --git a/src/chrome/content/rules/fpf.org.xml b/src/chrome/content/rules/fpf.org.xml index 20b2e346e3c8..1c365e842c1e 100644 --- a/src/chrome/content/rules/fpf.org.xml +++ b/src/chrome/content/rules/fpf.org.xml @@ -5,7 +5,7 @@ - + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/fraedom-cdn.com.xml b/src/chrome/content/rules/fraedom-cdn.com.xml index e6dc5f0fc351..c29c5ccb4812 100644 --- a/src/chrome/content/rules/fraedom-cdn.com.xml +++ b/src/chrome/content/rules/fraedom-cdn.com.xml @@ -11,7 +11,7 @@ - + https://www.fraedom.com/: (6, 'Could not resolve host: www2.fraedom.com') +Time: 2020-09-25 16:20:22 + Fetch error: http://www2.fraedom.com/l/97782/2015-09-17/5r76f => https://pi.pardot.com/l/97782/2015-09-17/5r76f: (6, 'Could not resolve host: www2.fraedom.com') +Time: 2020-09-25 16:20:22 + Fetch error: http://www2.fraedom.com/ => https://www.fraedom.com/: (6, 'Could not resolve host: www2.fraedom.com') + Other Fraedom rulesets: - fraedom-cdn.com.xml - - spendvision.com.xml Problematic hosts in *fraedom.com: @@ -14,7 +23,7 @@ Partially covered hosts in *fraedom.com: - - www2 + - www2 Insecure cookies are set for these hosts: @@ -33,7 +42,7 @@ - + - - - - - - - - - - - - - - - - - - - - - + diff --git a/src/chrome/content/rules/franceinter.fr.xml b/src/chrome/content/rules/franceinter.fr.xml index 8c5b066c7e95..969941a372b5 100644 --- a/src/chrome/content/rules/franceinter.fr.xml +++ b/src/chrome/content/rules/franceinter.fr.xml @@ -35,7 +35,7 @@ - + diff --git a/src/chrome/content/rules/francetvinfo.fr.xml b/src/chrome/content/rules/francetvinfo.fr.xml deleted file mode 100644 index aef86972adaf..000000000000 --- a/src/chrome/content/rules/francetvinfo.fr.xml +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/francisfrith.com.xml b/src/chrome/content/rules/francisfrith.com.xml index 5643c29fdf0c..2f487fc62bf2 100644 --- a/src/chrome/content/rules/francisfrith.com.xml +++ b/src/chrome/content/rules/francisfrith.com.xml @@ -27,7 +27,7 @@ - + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/fraudmetrix.cn.xml b/src/chrome/content/rules/fraudmetrix.cn.xml index 872111cbe22e..9c27c3e64858 100644 --- a/src/chrome/content/rules/fraudmetrix.cn.xml +++ b/src/chrome/content/rules/fraudmetrix.cn.xml @@ -11,6 +11,6 @@ - + diff --git a/src/chrome/content/rules/fredrikolofsson.com.xml b/src/chrome/content/rules/fredrikolofsson.com.xml index 05c590d1eb0e..5eed9129d13a 100644 --- a/src/chrome/content/rules/fredrikolofsson.com.xml +++ b/src/chrome/content/rules/fredrikolofsson.com.xml @@ -4,7 +4,7 @@ - + + + + + + + + + + diff --git a/src/chrome/content/rules/freeboard.io.xml b/src/chrome/content/rules/freeboard.io.xml index 27229e564b49..a40de175f113 100644 --- a/src/chrome/content/rules/freeboard.io.xml +++ b/src/chrome/content/rules/freeboard.io.xml @@ -1,15 +1,20 @@ - + + + - - diff --git a/src/chrome/content/rules/freech.net.xml b/src/chrome/content/rules/freech.net.xml deleted file mode 100644 index 3a5109859232..000000000000 --- a/src/chrome/content/rules/freech.net.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/freecode.club.xml b/src/chrome/content/rules/freecode.club.xml index 5b323c653e66..947c64a197d0 100644 --- a/src/chrome/content/rules/freecode.club.xml +++ b/src/chrome/content/rules/freecode.club.xml @@ -5,13 +5,13 @@ Fetch error: http://freecode.club/ => https://freecode.club/: (51, "SSL: no alte Fetch error: http://www.freecode.club/ => https://www.freecode.club/: (51, "SSL: no alternative certificate subject name matches target host name 'www.freecode.club'") --> - + - + - + - - + + - - + + + + + + + + + + diff --git a/src/chrome/content/rules/freehookupsearch.com.xml b/src/chrome/content/rules/freehookupsearch.com.xml index dc6ff85374e1..7c7b1adf96b4 100644 --- a/src/chrome/content/rules/freehookupsearch.com.xml +++ b/src/chrome/content/rules/freehookupsearch.com.xml @@ -34,7 +34,7 @@ - + - + https://www.freeovi.com/: (51, "SSL: no alte ^freeovi.com: Refused --> - + @@ -18,7 +18,7 @@ Fetch error: http://freeovi.com/ => https://www.freeovi.com/: (51, "SSL: no alte - + - + diff --git a/src/chrome/content/rules/freetalklive.com.xml b/src/chrome/content/rules/freetalklive.com.xml index d9ca90e2d727..5d527b8a311e 100644 --- a/src/chrome/content/rules/freetalklive.com.xml +++ b/src/chrome/content/rules/freetalklive.com.xml @@ -35,7 +35,7 @@ - + - - - - - - - - - - + + + + + + + + + + + diff --git a/src/chrome/content/rules/freifunk-rhein-neckar.de.xml b/src/chrome/content/rules/freifunk-rhein-neckar.de.xml new file mode 100644 index 000000000000..d1f3d44fec4c --- /dev/null +++ b/src/chrome/content/rules/freifunk-rhein-neckar.de.xml @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/freshmeat.club.xml b/src/chrome/content/rules/freshmeat.club.xml index 06745645d563..3131046d2fba 100644 --- a/src/chrome/content/rules/freshmeat.club.xml +++ b/src/chrome/content/rules/freshmeat.club.xml @@ -5,13 +5,13 @@ Fetch error: http://freshmeat.club/ => https://freshmeat.club/: (6, 'Could not r Fetch error: http://www.freshmeat.club/ => https://www.freshmeat.club/: (6, 'Could not resolve host: www.freshmeat.club') --> - + - + - + - - - - diff --git a/src/chrome/content/rules/fronter.com.xml b/src/chrome/content/rules/fronter.com.xml index d736cbf5300c..d3e4ae040d57 100644 --- a/src/chrome/content/rules/fronter.com.xml +++ b/src/chrome/content/rules/fronter.com.xml @@ -29,7 +29,7 @@ - + - + diff --git a/src/chrome/content/rules/ft.com-mixedcontent.xml b/src/chrome/content/rules/ft.com-mixedcontent.xml deleted file mode 100644 index 26e14930297c..000000000000 --- a/src/chrome/content/rules/ft.com-mixedcontent.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/ftp.rnl.tecnico.ulisboa.pt.xml b/src/chrome/content/rules/ftp.rnl.tecnico.ulisboa.pt.xml index 73b282e91322..a8f29b0f4a48 100644 --- a/src/chrome/content/rules/ftp.rnl.tecnico.ulisboa.pt.xml +++ b/src/chrome/content/rules/ftp.rnl.tecnico.ulisboa.pt.xml @@ -6,7 +6,7 @@ Fetch error: http://www.ftp.rnl.tecnico.ulisboa.pt/ => https://www.ftp.rnl.tecni Software mirror provided by the Department of Computer Science and Engineering of Tecnico Lisboa. --> - + diff --git a/src/chrome/content/rules/ftsafe.com.xml b/src/chrome/content/rules/ftsafe.com.xml new file mode 100644 index 000000000000..905fd4a40ebe --- /dev/null +++ b/src/chrome/content/rules/ftsafe.com.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/fujitsu-webmart.com.xml b/src/chrome/content/rules/fujitsu-webmart.com.xml new file mode 100644 index 000000000000..1f066964b4af --- /dev/null +++ b/src/chrome/content/rules/fujitsu-webmart.com.xml @@ -0,0 +1,16 @@ + + + + + + + + diff --git a/src/chrome/content/rules/full30.com.xml b/src/chrome/content/rules/full30.com.xml index f39d4700f7a1..adf61e8b4e7c 100644 --- a/src/chrome/content/rules/full30.com.xml +++ b/src/chrome/content/rules/full30.com.xml @@ -5,7 +5,7 @@ - + - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/funke.press.xml b/src/chrome/content/rules/funke.press.xml new file mode 100644 index 000000000000..20f38d657901 --- /dev/null +++ b/src/chrome/content/rules/funke.press.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/funktionstjanster.se.xml b/src/chrome/content/rules/funktionstjanster.se.xml new file mode 100644 index 000000000000..a9275cddbbd2 --- /dev/null +++ b/src/chrome/content/rules/funktionstjanster.se.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/funoverip.net.xml b/src/chrome/content/rules/funoverip.net.xml deleted file mode 100644 index 08e5f66115f4..000000000000 --- a/src/chrome/content/rules/funoverip.net.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/funtip.de.xml b/src/chrome/content/rules/funtip.de.xml index 7c2b0a171aa2..7ce577a78a9f 100644 --- a/src/chrome/content/rules/funtip.de.xml +++ b/src/chrome/content/rules/funtip.de.xml @@ -5,7 +5,7 @@ - + - + - + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/fuzeqna.com.xml b/src/chrome/content/rules/fuzeqna.com.xml new file mode 100644 index 000000000000..4d4741663a5f --- /dev/null +++ b/src/chrome/content/rules/fuzeqna.com.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/src/chrome/content/rules/fvap.gov.xml b/src/chrome/content/rules/fvap.gov.xml deleted file mode 100644 index ac3362b48f30..000000000000 --- a/src/chrome/content/rules/fvap.gov.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/fvz.io.xml b/src/chrome/content/rules/fvz.io.xml deleted file mode 100644 index 909334d9a095..000000000000 --- a/src/chrome/content/rules/fvz.io.xml +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/fxsitecompat.com.xml b/src/chrome/content/rules/fxsitecompat.com.xml index 4140adc9abab..b6806f4d4b56 100644 --- a/src/chrome/content/rules/fxsitecompat.com.xml +++ b/src/chrome/content/rules/fxsitecompat.com.xml @@ -4,7 +4,7 @@ - + https://www.careers.g4s.com/: (51, " ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -137,7 +137,7 @@ Fetch error: http://www.careers.g4s.com/ => https://www.careers.g4s.com/: (51, " - + - + - + https://gamecraft.cz/: (60, 'SSL certificat Fetch error: http://www.gamecraft.cz/ => https://gamecraft.cz/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + diff --git a/src/chrome/content/rules/gamedev.ru.xml b/src/chrome/content/rules/gamedev.ru.xml new file mode 100644 index 000000000000..0c700858f0bb --- /dev/null +++ b/src/chrome/content/rules/gamedev.ru.xml @@ -0,0 +1,47 @@ + + + + + + + diff --git a/src/chrome/content/rules/gamingpastime.com.xml b/src/chrome/content/rules/gamingpastime.com.xml new file mode 100644 index 000000000000..915c6ebc2f82 --- /dev/null +++ b/src/chrome/content/rules/gamingpastime.com.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/gardners.com.xml b/src/chrome/content/rules/gardners.com.xml index dd9e65273070..174d9ff1c69c 100644 --- a/src/chrome/content/rules/gardners.com.xml +++ b/src/chrome/content/rules/gardners.com.xml @@ -6,14 +6,14 @@ ᶜ Server sends no certificate chain, see https://whatsmychaincert.com --> - + - + https://gargoyle-router.com/: (51, " - .gargoyle-router.com --> - + diff --git a/src/chrome/content/rules/garmin.xml b/src/chrome/content/rules/garmin.xml index 1f02252201c5..8d1d5f040534 100644 --- a/src/chrome/content/rules/garmin.xml +++ b/src/chrome/content/rules/garmin.xml @@ -1,5 +1,4 @@ - diff --git a/src/chrome/content/rules/garrysmods.org.xml b/src/chrome/content/rules/garrysmods.org.xml index ffbbb8584486..8f92fed45210 100644 --- a/src/chrome/content/rules/garrysmods.org.xml +++ b/src/chrome/content/rules/garrysmods.org.xml @@ -28,7 +28,7 @@ - + https://test1.gatewayto ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -40,7 +40,7 @@ Fetch error: http://test1.gatewaytohomechoice.org.uk/ => https://test1.gatewayto --> - + - + https://gawkermediagroup.com/: (60, www.gawkermediagroup.com: Mismatched --> - + @@ -29,7 +29,7 @@ Fetch error: http://gawkermediagroup.com/ => https://gawkermediagroup.com/: (60, - + - + https://gaytimes.co.uk/: Too many redirects while fetching 'https://gaytimes.co.uk/' -Fetch error: http://www.gaytimes.co.uk/ => https://www.gaytimes.co.uk/: Too many redirects while fetching 'https://www.gaytimes.co.uk/' - - Problematic hosts in *gaytimes.co.uk: - - - boxoffice ᵐ - - ᵐ Mismatched - - - Insecure cookies are set for these domains and hosts: ᶜ - - - gaytimes.co.uk - - .gaytimes.co.uk - - boxoffice.gaytimes.co.uk - - .boxoffice.gaytimes.co.uk - - www.gaytimes.co.uk - - ᶜ See https://owasp.org/index.php/SecureFlag - ---> - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/gaytimesmagazine.com.xml b/src/chrome/content/rules/gaytimesmagazine.com.xml index 5cc4f76e4001..d240988dbe23 100644 --- a/src/chrome/content/rules/gaytimesmagazine.com.xml +++ b/src/chrome/content/rules/gaytimesmagazine.com.xml @@ -29,7 +29,7 @@ - + - + diff --git a/src/chrome/content/rules/gblwebcen.com.xml b/src/chrome/content/rules/gblwebcen.com.xml index df2daf2e0326..2c11518cca5f 100644 --- a/src/chrome/content/rules/gblwebcen.com.xml +++ b/src/chrome/content/rules/gblwebcen.com.xml @@ -13,7 +13,7 @@ - + - + + + + + + + + + diff --git a/src/chrome/content/rules/geekdad.com.xml b/src/chrome/content/rules/geekdad.com.xml index ebbb1a33212f..9d3d237b5dae 100644 --- a/src/chrome/content/rules/geekdad.com.xml +++ b/src/chrome/content/rules/geekdad.com.xml @@ -4,7 +4,7 @@ - + - + - + - + - + - + - + - + - diff --git a/src/chrome/content/rules/geodatenzentrum.de.xml b/src/chrome/content/rules/geodatenzentrum.de.xml new file mode 100644 index 000000000000..cf5487ee4b65 --- /dev/null +++ b/src/chrome/content/rules/geodatenzentrum.de.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/geoedge.be.xml b/src/chrome/content/rules/geoedge.be.xml new file mode 100644 index 000000000000..465f1a814953 --- /dev/null +++ b/src/chrome/content/rules/geoedge.be.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/geofeedia.com.xml b/src/chrome/content/rules/geofeedia.com.xml index a9136473cfe0..a10c0a00988a 100644 --- a/src/chrome/content/rules/geofeedia.com.xml +++ b/src/chrome/content/rules/geofeedia.com.xml @@ -37,7 +37,7 @@ --> - + + + + + + diff --git a/src/chrome/content/rules/geoiptool.com.xml b/src/chrome/content/rules/geoiptool.com.xml index 93d36ee79a90..bac29e436703 100644 --- a/src/chrome/content/rules/geoiptool.com.xml +++ b/src/chrome/content/rules/geoiptool.com.xml @@ -12,7 +12,7 @@ - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/geokretymap.org.xml b/src/chrome/content/rules/geokretymap.org.xml index 1d1232ad413c..a30bc7577d9c 100644 --- a/src/chrome/content/rules/geokretymap.org.xml +++ b/src/chrome/content/rules/geokretymap.org.xml @@ -1,11 +1,11 @@ - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/georgetown.edu-mixedcontent.xml b/src/chrome/content/rules/georgetown.edu-mixedcontent.xml index 32f0f43a47bf..3729d8bf08b2 100644 --- a/src/chrome/content/rules/georgetown.edu-mixedcontent.xml +++ b/src/chrome/content/rules/georgetown.edu-mixedcontent.xml @@ -10,7 +10,7 @@ - + https://zendesk.get.no/: Too many redirec ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -58,7 +58,7 @@ Fetch error: http://zendesk.get.no/ => https://zendesk.get.no/: Too many redirec - + - + - + - + - + - + + + + + + diff --git a/src/chrome/content/rules/giftcloud.com.xml b/src/chrome/content/rules/giftcloud.com.xml index 3d60f5b17e1e..7e209923459b 100644 --- a/src/chrome/content/rules/giftcloud.com.xml +++ b/src/chrome/content/rules/giftcloud.com.xml @@ -13,7 +13,7 @@ - + + + + + + + + diff --git a/src/chrome/content/rules/gimp.org.xml b/src/chrome/content/rules/gimp.org.xml index 6d6a65778ac4..e9c203236b6c 100644 --- a/src/chrome/content/rules/gimp.org.xml +++ b/src/chrome/content/rules/gimp.org.xml @@ -1,28 +1,30 @@ - - - - - - - - - - - - + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/giraf-network.org.xml b/src/chrome/content/rules/giraf-network.org.xml new file mode 100644 index 000000000000..ead4a43a03a7 --- /dev/null +++ b/src/chrome/content/rules/giraf-network.org.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/girlsoutwest.com-falsemixed.xml b/src/chrome/content/rules/girlsoutwest.com-falsemixed.xml index ccb0f5c9ff6a..be669b1fef8f 100644 --- a/src/chrome/content/rules/girlsoutwest.com-falsemixed.xml +++ b/src/chrome/content/rules/girlsoutwest.com-falsemixed.xml @@ -13,7 +13,7 @@ - + + + + + + + + + + diff --git a/src/chrome/content/rules/githost.io.xml b/src/chrome/content/rules/githost.io.xml index 90fd96ecf492..3ad0b472f881 100644 --- a/src/chrome/content/rules/githost.io.xml +++ b/src/chrome/content/rules/githost.io.xml @@ -6,7 +6,7 @@ Fetch error: http://guard.githost.io/ => https://guard.githost.io/: (6, 'Could n gnu.githost.io mismatch jfryelocaltest02.githost.io expired --> - + diff --git a/src/chrome/content/rules/githubassets.com.xml b/src/chrome/content/rules/githubassets.com.xml new file mode 100644 index 000000000000..a3ba1cbf9316 --- /dev/null +++ b/src/chrome/content/rules/githubassets.com.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/givingwhatwecan.org.xml b/src/chrome/content/rules/givingwhatwecan.org.xml index 977ee74af6fa..e810d758755c 100644 --- a/src/chrome/content/rules/givingwhatwecan.org.xml +++ b/src/chrome/content/rules/givingwhatwecan.org.xml @@ -8,7 +8,7 @@ - + + + + + + + diff --git a/src/chrome/content/rules/glandium.org.xml b/src/chrome/content/rules/glandium.org.xml index 8cb049470ce9..ec89b7e4e9cf 100644 --- a/src/chrome/content/rules/glandium.org.xml +++ b/src/chrome/content/rules/glandium.org.xml @@ -5,7 +5,7 @@ - + - + - + - + - + - + + + + + + + + diff --git a/src/chrome/content/rules/glee.co.uk.xml b/src/chrome/content/rules/glee.co.uk.xml index 66a774c8043a..c0dcb6574c58 100644 --- a/src/chrome/content/rules/glee.co.uk.xml +++ b/src/chrome/content/rules/glee.co.uk.xml @@ -5,7 +5,7 @@ - + - + + + + + + + diff --git a/src/chrome/content/rules/glimg.net.xml b/src/chrome/content/rules/glimg.net.xml new file mode 100644 index 000000000000..ddeceffd0551 --- /dev/null +++ b/src/chrome/content/rules/glimg.net.xml @@ -0,0 +1,15 @@ + + + + + + + + diff --git a/src/chrome/content/rules/glittering.blue.xml b/src/chrome/content/rules/glittering.blue.xml index d4755c5e796a..b73c6a367152 100644 --- a/src/chrome/content/rules/glittering.blue.xml +++ b/src/chrome/content/rules/glittering.blue.xml @@ -13,7 +13,7 @@ - + - + - + - + + + + + + + diff --git a/src/chrome/content/rules/glomex.com.xml b/src/chrome/content/rules/glomex.com.xml new file mode 100644 index 000000000000..c91ed533f2f4 --- /dev/null +++ b/src/chrome/content/rules/glomex.com.xml @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/glowingbear.org.xml b/src/chrome/content/rules/glowingbear.org.xml new file mode 100644 index 000000000000..45d79c60f38a --- /dev/null +++ b/src/chrome/content/rules/glowingbear.org.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/glx-dock.org.xml b/src/chrome/content/rules/glx-dock.org.xml index 3c56ff97ed10..0ad2ddc66996 100644 --- a/src/chrome/content/rules/glx-dock.org.xml +++ b/src/chrome/content/rules/glx-dock.org.xml @@ -20,7 +20,7 @@ themes.glx-dock.org ⁴ --> - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/gnucitizen.org.xml b/src/chrome/content/rules/gnucitizen.org.xml index f65e399dd13f..d3783b8d87b7 100644 --- a/src/chrome/content/rules/gnucitizen.org.xml +++ b/src/chrome/content/rules/gnucitizen.org.xml @@ -5,7 +5,7 @@ - + + + + + + diff --git a/src/chrome/content/rules/goMokulele.xml b/src/chrome/content/rules/goMokulele.xml index 28c61e99ab05..7083f0c522f3 100644 --- a/src/chrome/content/rules/goMokulele.xml +++ b/src/chrome/content/rules/goMokulele.xml @@ -8,10 +8,10 @@ Disabled by https-everywhere-checker because: Fetch error: http://iflygo.com/ => https://www.iflygo.com/: (28, 'Connection timed out after 10000 milliseconds') Fetch error: http://www.iflygo.com/ => https://www.iflygo.com/: (28, 'Connection timed out after 10001 milliseconds') --> - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/godliteratury.ru.xml b/src/chrome/content/rules/godliteratury.ru.xml index d560b24527e0..629832b004fe 100644 --- a/src/chrome/content/rules/godliteratury.ru.xml +++ b/src/chrome/content/rules/godliteratury.ru.xml @@ -4,7 +4,7 @@ - + - + + + + + + + + + + + diff --git a/src/chrome/content/rules/gofore.com.xml b/src/chrome/content/rules/gofore.com.xml index 84c9f5850efb..454d858d3304 100644 --- a/src/chrome/content/rules/gofore.com.xml +++ b/src/chrome/content/rules/gofore.com.xml @@ -4,7 +4,7 @@ - + - + - - + + - - - - - - - diff --git a/src/chrome/content/rules/goldesel.to.xml b/src/chrome/content/rules/goldesel.to.xml index 6691a556b16e..bd432d47778e 100644 --- a/src/chrome/content/rules/goldesel.to.xml +++ b/src/chrome/content/rules/goldesel.to.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://board.goldesel.to/ => https://board.goldesel.to/: Too many redirects while fetching 'https://board.goldesel.to/' --> - + diff --git a/src/chrome/content/rules/golem.network.xml b/src/chrome/content/rules/golem.network.xml new file mode 100644 index 000000000000..93e8b8bc9a98 --- /dev/null +++ b/src/chrome/content/rules/golem.network.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/gonightshift.com.xml b/src/chrome/content/rules/gonightshift.com.xml index fe7034c6a396..16c1a2c693f1 100644 --- a/src/chrome/content/rules/gonightshift.com.xml +++ b/src/chrome/content/rules/gonightshift.com.xml @@ -17,7 +17,7 @@ --> - + + + + + + + + + diff --git a/src/chrome/content/rules/goodweave.org.xml b/src/chrome/content/rules/goodweave.org.xml new file mode 100644 index 000000000000..95fc885d486e --- /dev/null +++ b/src/chrome/content/rules/goodweave.org.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/gorcom.ru.xml b/src/chrome/content/rules/gorcom.ru.xml deleted file mode 100644 index 55ce0e8fe7e4..000000000000 --- a/src/chrome/content/rules/gorcom.ru.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/goroost.com.xml b/src/chrome/content/rules/goroost.com.xml index 7ecc1be70e17..89b1ee909f7a 100644 --- a/src/chrome/content/rules/goroost.com.xml +++ b/src/chrome/content/rules/goroost.com.xml @@ -48,7 +48,7 @@ - + - - - - - - - diff --git a/src/chrome/content/rules/gov-murman.ru.xml b/src/chrome/content/rules/gov-murman.ru.xml index 8241e3e74c8f..14e99b28f916 100644 --- a/src/chrome/content/rules/gov-murman.ru.xml +++ b/src/chrome/content/rules/gov-murman.ru.xml @@ -42,7 +42,7 @@ utr.gov-murman.ru different content ⁶ redirect ⁷ protocol error --> - + diff --git a/src/chrome/content/rules/gov.scot.xml b/src/chrome/content/rules/gov.scot.xml new file mode 100644 index 000000000000..5cc9509ec747 --- /dev/null +++ b/src/chrome/content/rules/gov.scot.xml @@ -0,0 +1,95 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/govdelivery.com-falsemixed.xml b/src/chrome/content/rules/govdelivery.com-falsemixed.xml deleted file mode 100644 index 591c84c79d61..000000000000 --- a/src/chrome/content/rules/govdelivery.com-falsemixed.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/govloop.com.xml b/src/chrome/content/rules/govloop.com.xml index 2daa20e9823d..63bb2c6b70e9 100644 --- a/src/chrome/content/rules/govloop.com.xml +++ b/src/chrome/content/rules/govloop.com.xml @@ -28,7 +28,7 @@ - + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/gpupowered.org.xml b/src/chrome/content/rules/gpupowered.org.xml new file mode 100644 index 000000000000..45bf082c2e6a --- /dev/null +++ b/src/chrome/content/rules/gpupowered.org.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/grafica.app.xml b/src/chrome/content/rules/grafica.app.xml new file mode 100644 index 000000000000..190d4c6ded90 --- /dev/null +++ b/src/chrome/content/rules/grafica.app.xml @@ -0,0 +1,8 @@ + + + + + + diff --git a/src/chrome/content/rules/granularproject.org.xml b/src/chrome/content/rules/granularproject.org.xml deleted file mode 100644 index 7214b2fe677f..000000000000 --- a/src/chrome/content/rules/granularproject.org.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/chrome/content/rules/grape.ru.xml b/src/chrome/content/rules/grape.ru.xml index a4b6dffc70cb..66416b911e68 100644 --- a/src/chrome/content/rules/grape.ru.xml +++ b/src/chrome/content/rules/grape.ru.xml @@ -23,7 +23,7 @@ zdraivery.pro.grape.ru ¹ ² refused ⁴ self signed --> - + diff --git a/src/chrome/content/rules/graylady3jvrrxbe.onion.xml b/src/chrome/content/rules/graylady3jvrrxbe.onion.xml new file mode 100644 index 000000000000..eb30c9b32224 --- /dev/null +++ b/src/chrome/content/rules/graylady3jvrrxbe.onion.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/great-yarmouth.gov.uk.xml b/src/chrome/content/rules/great-yarmouth.gov.uk.xml index 068f5783032a..acf1aeef871c 100644 --- a/src/chrome/content/rules/great-yarmouth.gov.uk.xml +++ b/src/chrome/content/rules/great-yarmouth.gov.uk.xml @@ -49,7 +49,7 @@ --> - + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/greatscottgadgets.com.xml b/src/chrome/content/rules/greatscottgadgets.com.xml new file mode 100644 index 000000000000..e6ef586a9617 --- /dev/null +++ b/src/chrome/content/rules/greatscottgadgets.com.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/green.ch.xml b/src/chrome/content/rules/green.ch.xml index fa4bd23c7f0a..bd5a35e14ac4 100644 --- a/src/chrome/content/rules/green.ch.xml +++ b/src/chrome/content/rules/green.ch.xml @@ -1,36 +1,41 @@ - - + - + + - + + + + - - - - - - - - - - - diff --git a/src/chrome/content/rules/gregzaal.com.xml b/src/chrome/content/rules/gregzaal.com.xml new file mode 100644 index 000000000000..891e698250e2 --- /dev/null +++ b/src/chrome/content/rules/gregzaal.com.xml @@ -0,0 +1,21 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/grindr.com.xml b/src/chrome/content/rules/grindr.com.xml index c7ddfe9c7ac7..a969764382ce 100644 --- a/src/chrome/content/rules/grindr.com.xml +++ b/src/chrome/content/rules/grindr.com.xml @@ -36,7 +36,7 @@ - + @@ -13,7 +13,7 @@ - + https://www.growerscup.coffee/: (51, "SSL: no alternative certificate subject name matches target host name 'www.growerscup.coffee'") --> - + - + diff --git a/src/chrome/content/rules/growingio.xml b/src/chrome/content/rules/growingio.xml index 83885fdc90cb..a316f85c21d2 100644 --- a/src/chrome/content/rules/growingio.xml +++ b/src/chrome/content/rules/growingio.xml @@ -1,24 +1,13 @@ - - - - + + - - - - - + diff --git a/src/chrome/content/rules/gsmmap.org.xml b/src/chrome/content/rules/gsmmap.org.xml index 1aecde618cc6..6dd0485420f8 100644 --- a/src/chrome/content/rules/gsmmap.org.xml +++ b/src/chrome/content/rules/gsmmap.org.xml @@ -2,7 +2,7 @@ Mismatch on www. --> - + diff --git a/src/chrome/content/rules/gsspat.jp.xml b/src/chrome/content/rules/gsspat.jp.xml index a0d5ba749699..67c919fa3b15 100644 --- a/src/chrome/content/rules/gsspat.jp.xml +++ b/src/chrome/content/rules/gsspat.jp.xml @@ -5,4 +5,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/gtrk.tv.xml b/src/chrome/content/rules/gtrk.tv.xml deleted file mode 100644 index 984ff04395c1..000000000000 --- a/src/chrome/content/rules/gtrk.tv.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/chrome/content/rules/gu.spb.ru.xml b/src/chrome/content/rules/gu.spb.ru.xml new file mode 100644 index 000000000000..eb86c4546845 --- /dev/null +++ b/src/chrome/content/rules/gu.spb.ru.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/guardianapps.co.uk.xml b/src/chrome/content/rules/guardianapps.co.uk.xml index aecf67d4adfe..5294bf9d3e66 100644 --- a/src/chrome/content/rules/guardianapps.co.uk.xml +++ b/src/chrome/content/rules/guardianapps.co.uk.xml @@ -9,7 +9,7 @@ - + - + - + - + - - - - - - - - - + + + + + + + diff --git a/src/chrome/content/rules/gumtree.com.xml b/src/chrome/content/rules/gumtree.com.xml deleted file mode 100644 index d166a8b7e52c..000000000000 --- a/src/chrome/content/rules/gumtree.com.xml +++ /dev/null @@ -1,65 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/gunsamerica.com.xml b/src/chrome/content/rules/gunsamerica.com.xml index 946c286299ee..f6bdadda40ab 100644 --- a/src/chrome/content/rules/gunsamerica.com.xml +++ b/src/chrome/content/rules/gunsamerica.com.xml @@ -20,7 +20,7 @@ - + - + - + - + diff --git a/src/chrome/content/rules/gvt1.com.xml b/src/chrome/content/rules/gvt1.com.xml new file mode 100644 index 000000000000..31a174f94ec9 --- /dev/null +++ b/src/chrome/content/rules/gvt1.com.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/src/chrome/content/rules/gwdang.xml b/src/chrome/content/rules/gwdang.xml index 034ecd6c1489..9535244a2612 100644 --- a/src/chrome/content/rules/gwdang.xml +++ b/src/chrome/content/rules/gwdang.xml @@ -15,5 +15,5 @@ - + diff --git a/src/chrome/content/rules/gymaesthetics.de.xml b/src/chrome/content/rules/gymaesthetics.de.xml index da4fe9401e5e..99ea9eb84deb 100644 --- a/src/chrome/content/rules/gymaesthetics.de.xml +++ b/src/chrome/content/rules/gymaesthetics.de.xml @@ -17,7 +17,7 @@ - + - + + + + + + + + + + + diff --git a/src/chrome/content/rules/hackint.org.xml b/src/chrome/content/rules/hackint.org.xml index 885419200d8a..ad4390452c47 100644 --- a/src/chrome/content/rules/hackint.org.xml +++ b/src/chrome/content/rules/hackint.org.xml @@ -10,7 +10,7 @@ - + - + https://kohalibrary.halton.gov For rules not causing false/broken MCB, see halton.gov.uk.xml. --> - + - + https://www2.halton.gov.uk/: (6, 'Cou - iframe on careandsupportforyou from www.youtube.com - css, on: - + - councillors, moderngov from www.halton.gov.uk - kohalibrary from $self @@ -66,7 +66,7 @@ Fetch error: http://www2.halton.gov.uk/ => https://www2.halton.gov.uk/: (6, 'Cou ᵈ Unsecurable <= dropped --> - + @@ -165,7 +165,7 @@ Fetch error: http://www2.halton.gov.uk/ => https://www2.halton.gov.uk/: (6, 'Cou - + + + + + + + + + + diff --git a/src/chrome/content/rules/handelsbanken.se.xml b/src/chrome/content/rules/handelsbanken.se.xml new file mode 100644 index 000000000000..fe23920bd4c1 --- /dev/null +++ b/src/chrome/content/rules/handelsbanken.se.xml @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/handylinux.org.xml b/src/chrome/content/rules/handylinux.org.xml deleted file mode 100644 index 7d5ec3cf9a4d..000000000000 --- a/src/chrome/content/rules/handylinux.org.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/hangerproject.com.xml b/src/chrome/content/rules/hangerproject.com.xml index 2862312e381f..20b98a2b8745 100644 --- a/src/chrome/content/rules/hangerproject.com.xml +++ b/src/chrome/content/rules/hangerproject.com.xml @@ -17,8 +17,8 @@ - - + + + + + + + diff --git a/src/chrome/content/rules/hao123.com-mixedcontent.xml b/src/chrome/content/rules/hao123.com-mixedcontent.xml deleted file mode 100644 index 1dfd44293641..000000000000 --- a/src/chrome/content/rules/hao123.com-mixedcontent.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/hao123img.com.xml b/src/chrome/content/rules/hao123img.com.xml deleted file mode 100644 index 02002c6fd98d..000000000000 --- a/src/chrome/content/rules/hao123img.com.xml +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/happybearsoftware.com.xml b/src/chrome/content/rules/happybearsoftware.com.xml index 9cb4dce08763..557e0f18fc4d 100644 --- a/src/chrome/content/rules/happybearsoftware.com.xml +++ b/src/chrome/content/rules/happybearsoftware.com.xml @@ -5,7 +5,7 @@ - + - - - - - - - - - - - diff --git a/src/chrome/content/rules/hardware.fr.xml b/src/chrome/content/rules/hardware.fr.xml index c1f8bf1e1482..1dabcafeab6e 100644 --- a/src/chrome/content/rules/hardware.fr.xml +++ b/src/chrome/content/rules/hardware.fr.xml @@ -1,12 +1,18 @@ + + + + + @@ -14,5 +20,9 @@ + + + diff --git a/src/chrome/content/rules/hardwareluxx.ru.xml b/src/chrome/content/rules/hardwareluxx.ru.xml deleted file mode 100644 index f17d41f5c24e..000000000000 --- a/src/chrome/content/rules/hardwareluxx.ru.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/hashkiller.co.uk.xml b/src/chrome/content/rules/hashkiller.co.uk.xml deleted file mode 100644 index 63f12afaf822..000000000000 --- a/src/chrome/content/rules/hashkiller.co.uk.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/src/chrome/content/rules/havant.gov.uk.xml b/src/chrome/content/rules/havant.gov.uk.xml index e82fb5c07517..1a3a7a7a0e15 100644 --- a/src/chrome/content/rules/havant.gov.uk.xml +++ b/src/chrome/content/rules/havant.gov.uk.xml @@ -37,7 +37,7 @@ Fetch error: http://www3.havant.gov.uk/ => https://www3.havant.gov.uk/: (28, 'Co ˢ Secured by us --> - + @@ -59,7 +59,7 @@ Fetch error: http://www3.havant.gov.uk/ => https://www3.havant.gov.uk/: (28, 'Co - + - + - + + + - - - - - - - - - - - - - - - + + + + - + diff --git a/src/chrome/content/rules/hayloft-plants.co.uk.xml b/src/chrome/content/rules/hayloft-plants.co.uk.xml index f48f3317cd9e..79e59de67909 100644 --- a/src/chrome/content/rules/hayloft-plants.co.uk.xml +++ b/src/chrome/content/rules/hayloft-plants.co.uk.xml @@ -2,7 +2,7 @@ Problematic hosts in *hayloft-plants.co.uk: - support ᵐ - + ᵐ Mismatched @@ -24,9 +24,9 @@ --> - + - + https://hazro.com/: (60, 'SSL certificate prob Fetch error: http://www.hazro.com/ => https://www.hazro.com/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/hbo.com-falsemixed.xml b/src/chrome/content/rules/hbo.com-falsemixed.xml index c90380f51f26..58bf22942bad 100644 --- a/src/chrome/content/rules/hbo.com-falsemixed.xml +++ b/src/chrome/content/rules/hbo.com-falsemixed.xml @@ -18,7 +18,7 @@ - + - + - + - + https://www.hcstx.org/: (7, 'Failed to con ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + - + - - - - - diff --git a/src/chrome/content/rules/hddguru.com.xml b/src/chrome/content/rules/hddguru.com.xml new file mode 100644 index 000000000000..dd68dea7deaa --- /dev/null +++ b/src/chrome/content/rules/hddguru.com.xml @@ -0,0 +1,13 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/hdmi.org.xml b/src/chrome/content/rules/hdmi.org.xml new file mode 100644 index 000000000000..2fa06ee269b8 --- /dev/null +++ b/src/chrome/content/rules/hdmi.org.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/hdvest.com.xml b/src/chrome/content/rules/hdvest.com.xml index b0c1f4e59826..5fb46fd3e5db 100644 --- a/src/chrome/content/rules/hdvest.com.xml +++ b/src/chrome/content/rules/hdvest.com.xml @@ -8,7 +8,7 @@ Fetch error: http://bcp.hdvlink.com/ => https://bcp.hdvlink.com/: (60, 'SSL cert - my.hdvest.com (incomplete cert chain) - (my|www).myhdvest.com (incomplete cert chain) --> - + diff --git a/src/chrome/content/rules/headline24.de.xml b/src/chrome/content/rules/headline24.de.xml new file mode 100644 index 000000000000..7b083eb0b226 --- /dev/null +++ b/src/chrome/content/rules/headline24.de.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/healthnet.com.xml b/src/chrome/content/rules/healthnet.com.xml index e248c05256b0..d59421d57add 100644 --- a/src/chrome/content/rules/healthnet.com.xml +++ b/src/chrome/content/rules/healthnet.com.xml @@ -14,7 +14,7 @@ Fetch error: http://jobs.healthnet.com/ => https://jobs.healthnet.com/: (51, "SS ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -28,7 +28,7 @@ Fetch error: http://jobs.healthnet.com/ => https://jobs.healthnet.com/: (51, "SS - + https://hebdo.ch/: Too many redirects while fet Fetch error: http://www.hebdo.ch/ => https://www.hebdo.ch/: Too many redirects while fetching 'https://www.hebdo.ch/' --> - + diff --git a/src/chrome/content/rules/heidilatskydance.org.xml b/src/chrome/content/rules/heidilatskydance.org.xml new file mode 100644 index 000000000000..daa9e3fe0cd3 --- /dev/null +++ b/src/chrome/content/rules/heidilatskydance.org.xml @@ -0,0 +1,12 @@ + + + + + + + diff --git a/src/chrome/content/rules/hekasoft.com.xml b/src/chrome/content/rules/hekasoft.com.xml new file mode 100644 index 000000000000..7086c7f2e9bf --- /dev/null +++ b/src/chrome/content/rules/hekasoft.com.xml @@ -0,0 +1,14 @@ + + + + + + + diff --git a/src/chrome/content/rules/helbing.ch.xml b/src/chrome/content/rules/helbing.ch.xml index aafedfad8800..e3de64b6e2d9 100644 --- a/src/chrome/content/rules/helbing.ch.xml +++ b/src/chrome/content/rules/helbing.ch.xml @@ -2,8 +2,8 @@ - - + + + + diff --git a/src/chrome/content/rules/helixo.fr.xml b/src/chrome/content/rules/helixo.fr.xml index 4685bb5335c4..511d843f3de3 100644 --- a/src/chrome/content/rules/helixo.fr.xml +++ b/src/chrome/content/rules/helixo.fr.xml @@ -4,7 +4,7 @@ - + - + - - - - - diff --git a/src/chrome/content/rules/hengxinli.com.xml b/src/chrome/content/rules/hengxinli.com.xml index 8dd48ef4b846..01d928eeb278 100644 --- a/src/chrome/content/rules/hengxinli.com.xml +++ b/src/chrome/content/rules/hengxinli.com.xml @@ -5,13 +5,13 @@ Fetch error: http://hengxinli.com/ => https://hengxinli.com/: (28, 'Connection t Fetch error: http://www.hengxinli.com/ => https://www.hengxinli.com/: (28, 'Connection timed out after 20000 milliseconds') --> - + - + + + + + + + + + + + + diff --git a/src/chrome/content/rules/heraut.eu.xml b/src/chrome/content/rules/heraut.eu.xml new file mode 100644 index 000000000000..ff09f9776f66 --- /dev/null +++ b/src/chrome/content/rules/heraut.eu.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/hessenschau.de.xml b/src/chrome/content/rules/hessenschau.de.xml new file mode 100644 index 000000000000..fe94eb5ee49b --- /dev/null +++ b/src/chrome/content/rules/hessenschau.de.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/heute.at.xml b/src/chrome/content/rules/heute.at.xml new file mode 100644 index 000000000000..5037b0342107 --- /dev/null +++ b/src/chrome/content/rules/heute.at.xml @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/hexchat.net.xml b/src/chrome/content/rules/hexchat.net.xml index 8924d84e81d6..83a90077790a 100644 --- a/src/chrome/content/rules/hexchat.net.xml +++ b/src/chrome/content/rules/hexchat.net.xml @@ -9,7 +9,7 @@ - + - - - - - - diff --git a/src/chrome/content/rules/highland.gov.uk.xml b/src/chrome/content/rules/highland.gov.uk.xml index 728105309892..0666be3a0f69 100644 --- a/src/chrome/content/rules/highland.gov.uk.xml +++ b/src/chrome/content/rules/highland.gov.uk.xml @@ -70,8 +70,8 @@ - - + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/hiking.gov.hk.xml b/src/chrome/content/rules/hiking.gov.hk.xml new file mode 100644 index 000000000000..11ad990311d7 --- /dev/null +++ b/src/chrome/content/rules/hiking.gov.hk.xml @@ -0,0 +1,13 @@ + + + + + + + diff --git a/src/chrome/content/rules/hipercontas.com.br.xml b/src/chrome/content/rules/hipercontas.com.br.xml index 0e028072e5ac..be583ace5ac9 100644 --- a/src/chrome/content/rules/hipercontas.com.br.xml +++ b/src/chrome/content/rules/hipercontas.com.br.xml @@ -34,7 +34,7 @@ - + - + + + + + + + + + + diff --git a/src/chrome/content/rules/hkex.com.hk.xml b/src/chrome/content/rules/hkex.com.hk.xml index 711c2d349d17..7eae35a02f32 100644 --- a/src/chrome/content/rules/hkex.com.hk.xml +++ b/src/chrome/content/rules/hkex.com.hk.xml @@ -1,16 +1,16 @@ @@ -19,10 +19,12 @@ + + - + - diff --git a/src/chrome/content/rules/hkexgroup.com.xml b/src/chrome/content/rules/hkexgroup.com.xml new file mode 100644 index 000000000000..7adc252d11a1 --- /dev/null +++ b/src/chrome/content/rules/hkexgroup.com.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/hkexnews.hk.xml b/src/chrome/content/rules/hkexnews.hk.xml new file mode 100644 index 000000000000..1c138e7a1008 --- /dev/null +++ b/src/chrome/content/rules/hkexnews.hk.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/hkicl.com.hk.xml b/src/chrome/content/rules/hkicl.com.hk.xml new file mode 100644 index 000000000000..7d2e69a87a19 --- /dev/null +++ b/src/chrome/content/rules/hkicl.com.hk.xml @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/hkjc.com.xml b/src/chrome/content/rules/hkjc.com.xml index 1da61acb2d18..2522a33d271b 100644 --- a/src/chrome/content/rules/hkjc.com.xml +++ b/src/chrome/content/rules/hkjc.com.xml @@ -102,13 +102,13 @@ - + - + - + @@ -116,12 +116,6 @@ - - - - - - @@ -129,10 +123,10 @@ - + - + @@ -145,17 +139,17 @@ - + - + - + - + diff --git a/src/chrome/content/rules/hko.gov.hk.xml b/src/chrome/content/rules/hko.gov.hk.xml new file mode 100644 index 000000000000..4c58b6000da4 --- /dev/null +++ b/src/chrome/content/rules/hko.gov.hk.xml @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/hkqf.gov.hk.xml b/src/chrome/content/rules/hkqf.gov.hk.xml index 75fbd89613b6..e3a7ffc2f752 100644 --- a/src/chrome/content/rules/hkqf.gov.hk.xml +++ b/src/chrome/content/rules/hkqf.gov.hk.xml @@ -2,6 +2,7 @@ For other HK government coverage, see GovHK.xml. Nonfunctional hosts in *.hkqf.gov.hk: + - hkqf.gov.hk (m) h: http redirect m: certificate mismatch @@ -13,5 +14,6 @@ - + diff --git a/src/chrome/content/rules/hkstockadr.com.xml b/src/chrome/content/rules/hkstockadr.com.xml new file mode 100644 index 000000000000..5eadb2999d97 --- /dev/null +++ b/src/chrome/content/rules/hkstockadr.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/hku.hk.xml b/src/chrome/content/rules/hku.hk.xml index 01428d6038db..2ebc79dc4cb0 100644 --- a/src/chrome/content/rules/hku.hk.xml +++ b/src/chrome/content/rules/hku.hk.xml @@ -9,7 +9,7 @@ Fetch error: http://acs.law.hku.hk/ => https://acs.law.hku.hk/: (28, 'Connection Fetch error: http://www.talentedapp.hku.hk/ => https://www.talentedapp.hku.hk/: (60, 'SSL certificate problem: unable to get local issuer certificate') Problematic domains: - + Invalid certs: - www.aal.hku.hk - www.als.hku.hk @@ -181,11 +181,11 @@ Fetch error: http://www.talentedapp.hku.hk/ => https://www.talentedapp.hku.hk/: - sis-eportal.hku.hk - paed.hku.hk --> - + - + @@ -339,6 +339,6 @@ Fetch error: http://www.talentedapp.hku.hk/ => https://www.talentedapp.hku.hk/: - + diff --git a/src/chrome/content/rules/hobbypcb.com.xml b/src/chrome/content/rules/hobbypcb.com.xml index 89000b6ac937..17ebf64f6def 100644 --- a/src/chrome/content/rules/hobbypcb.com.xml +++ b/src/chrome/content/rules/hobbypcb.com.xml @@ -4,7 +4,7 @@ - + - + + + + + + + + + + diff --git a/src/chrome/content/rules/holbi.co.uk.xml b/src/chrome/content/rules/holbi.co.uk.xml index 1e06b8fccb7e..044a14b9987c 100644 --- a/src/chrome/content/rules/holbi.co.uk.xml +++ b/src/chrome/content/rules/holbi.co.uk.xml @@ -25,7 +25,7 @@ - + - + https://holyrood.com/: (28, 'Connection tim Mixed content: - Image, on: - + - assetmanagement, bigdata, bim, brexitexplained, briefings, channelshift, childprotection, childrensinfosharing, cloud, colleges, connect, connectawards, connectdata, cybersecurity, digitaljustice, earlyyears, femaleoffenders, foi, healthandsocialcare, ltt, mobileworking, olderpeople, referendum, scotlandsuniversities, scottishpublicserviceawards, stem, swan, telehealthcare from media.dods.co.uk ˢ - www from $self ˢ ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -48,7 +48,7 @@ Fetch error: http://holyrood.com/ => https://holyrood.com/: (28, 'Connection tim - + + + + + + + + + + diff --git a/src/chrome/content/rules/home-school.com.xml b/src/chrome/content/rules/home-school.com.xml index 9746cca01798..2605ded0736a 100644 --- a/src/chrome/content/rules/home-school.com.xml +++ b/src/chrome/content/rules/home-school.com.xml @@ -12,7 +12,7 @@ - + - + https://book.homeaway.com/: (7, 'Faile - css on mailaway from images.mailaway.homeaway.com ˢ - Images, on: - + - blog, productupdates from static1.squarespace.com ˢ - blog from pbs.twimg.com ˢ - mailaway from images.mailaway.homeaway.com ˢ @@ -73,7 +73,7 @@ Fetch error: http://book.homeaway.com/ => https://book.homeaway.com/: (7, 'Faile ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -132,7 +132,7 @@ Fetch error: http://book.homeaway.com/ => https://book.homeaway.com/: (7, 'Faile - + diff --git a/src/chrome/content/rules/homebid.org.uk.xml b/src/chrome/content/rules/homebid.org.uk.xml index aaa6b7800e96..393b9424f1ef 100644 --- a/src/chrome/content/rules/homebid.org.uk.xml +++ b/src/chrome/content/rules/homebid.org.uk.xml @@ -12,7 +12,7 @@ - Image from homeconnections.org.uk --> - + @@ -23,7 +23,7 @@ - + - + https://www.elearning.homeof ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -140,7 +140,7 @@ Fetch error: http://elearning.homeoffice.gov.uk/ => https://www.elearning.homeof - + - + - + - + @@ -26,7 +26,7 @@ Fetch error: http://public.honeynet.org/ => https://public.honeynet.org/: (60, ' - + + + + + + + + + + diff --git a/src/chrome/content/rules/hosted-ci.com.xml b/src/chrome/content/rules/hosted-ci.com.xml index cc819edf9dc8..8af4e6efb881 100644 --- a/src/chrome/content/rules/hosted-ci.com.xml +++ b/src/chrome/content/rules/hosted-ci.com.xml @@ -7,10 +7,10 @@ Fetch error: http://www.hosted-ci.com/ => https://hosted-ci.com/: (60, 'SSL cert www.hosted-ci.com mismatch --> - + - + diff --git a/src/chrome/content/rules/hosting.com.xml b/src/chrome/content/rules/hosting.com.xml deleted file mode 100644 index 8329d6fef64f..000000000000 --- a/src/chrome/content/rules/hosting.com.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/hotel.ch.xml b/src/chrome/content/rules/hotel.ch.xml index 5537d6d5440a..373839b0ead3 100644 --- a/src/chrome/content/rules/hotel.ch.xml +++ b/src/chrome/content/rules/hotel.ch.xml @@ -5,7 +5,7 @@ Fetch error: http://hotel.ch/ => https://www.hotel.ch/: (28, 'Connection timed o Fetch error: http://www.hotel.ch/ => https://www.hotel.ch/: (28, 'Connection timed out after 20000 milliseconds') --> - + diff --git a/src/chrome/content/rules/hotelchantelle.com.xml b/src/chrome/content/rules/hotelchantelle.com.xml new file mode 100644 index 000000000000..bac9026b6326 --- /dev/null +++ b/src/chrome/content/rules/hotelchantelle.com.xml @@ -0,0 +1,11 @@ + + + + + + + diff --git a/src/chrome/content/rules/hotelmetropolitan.co.il.xml b/src/chrome/content/rules/hotelmetropolitan.co.il.xml new file mode 100644 index 000000000000..0398f8b3ee96 --- /dev/null +++ b/src/chrome/content/rules/hotelmetropolitan.co.il.xml @@ -0,0 +1,11 @@ + + + + + + + diff --git a/src/chrome/content/rules/hotjar.com.xml b/src/chrome/content/rules/hotjar.com.xml index b1be8d009e75..b01d92883615 100644 --- a/src/chrome/content/rules/hotjar.com.xml +++ b/src/chrome/content/rules/hotjar.com.xml @@ -30,7 +30,7 @@ - + - + https://www.howard-cottage.co.uk/: ^howard-cottage.co.uk: Handshake fails --> - + @@ -18,7 +18,7 @@ Fetch error: http://howard-cottage.co.uk/ => https://www.howard-cottage.co.uk/: - + - + - + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/hs-mannheim.de.xml b/src/chrome/content/rules/hs-mannheim.de.xml new file mode 100644 index 000000000000..5daeea23c23f --- /dev/null +++ b/src/chrome/content/rules/hs-mannheim.de.xml @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/hsbc.co.in.xml b/src/chrome/content/rules/hsbc.co.in.xml index 206b8e08c77f..4e969fd0a688 100644 --- a/src/chrome/content/rules/hsbc.co.in.xml +++ b/src/chrome/content/rules/hsbc.co.in.xml @@ -29,7 +29,7 @@ Mixed content: - Bugs, on: - + - services.assetmanagement from www1.member-hsbc-group.com ˢ - www from ad.doubleclick.net @@ -54,7 +54,7 @@ - + - + - + - + - + - + - + - + - + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + - + - - + + + + - - - - - - - - + - + + - diff --git a/src/chrome/content/rules/hsbc.com.lb.xml b/src/chrome/content/rules/hsbc.com.lb.xml index eb1a9e2fb6a8..f7290f2214f8 100644 --- a/src/chrome/content/rules/hsbc.com.lb.xml +++ b/src/chrome/content/rules/hsbc.com.lb.xml @@ -23,7 +23,7 @@ --> - + - + - + - + - + - + - + https://www.igtt.hscic.gov.uk/: (7, 'Failed to connect to www.igtt.hscic.gov.uk port 443: Connection refused') - Health and Social Care Information Centre For other UK government coverage, see GOV.UK.xml. + Non-functional hosts + Couldn't connect to server: + - igtt.hscic.gov.uk + - www.igtt.hscic.gov.uk + - www.hscic.gov.uk - Nonfunctional hosts in *hscic.gov.uk: - - - ^ ᶠ - - ascif ᵈ - - ckm ʳ - - efm ᵈ - - healthsurvey ⁴ - - hefs ᵈ - - link.ict ᵈ - - igtt ᵗ - - (www.)?qof ᶠ - - systems ᵈ - - www ³ - - ³ 403 - ⁴ 404 - ᵈ Dropped - ᶠ Handshake fails - ʳ Refused - ᵗ Reset - - - Problematic hosts in *hscic.gov.uk: - - - web.ict ᵐ - - ᵐ Mismatched + Timeout was reached: + - efm.hscic.gov.uk + - hefs.hscic.gov.uk + - link.ict.hscic.gov.uk + - systems.hscic.gov.uk + SSL connect error: + - qof.hscic.gov.uk + - www.qof.hscic.gov.uk - These altnames do not exist: + SSL peer certificate was not OK: + - healthsurvey.hscic.gov.uk + - web.ict.hscic.gov.uk - - www.dd4c.hscic.gov.uk - - nww.igt.hscic.gov.uk - - www.isd.hscic.gov.uk - - - Insecure cookies are set for these hosts: - - - clinicalaudit.hscic.gov.uk - - www.igt.hscic.gov.uk - - isd.hscic.gov.uk - - omnibus.hscic.gov.uk + Incomplete certificate chain error: + - ckm.hscic.gov.uk + 5xx server error: + - gpoutcomes.hscic.gov.uk --> - - + + + - - @@ -71,16 +47,9 @@ Fetch error: http://www.igtt.hscic.gov.uk/ => https://www.igtt.hscic.gov.uk/: (7 - - - - - - - + - + to="https:" /> diff --git a/src/chrome/content/rules/hse.gov.uk.xml b/src/chrome/content/rules/hse.gov.uk.xml index 2424f8b6be01..a0f3872c5327 100644 --- a/src/chrome/content/rules/hse.gov.uk.xml +++ b/src/chrome/content/rules/hse.gov.uk.xml @@ -43,7 +43,7 @@ - + - + - + - - + + + diff --git a/src/chrome/content/rules/humankode.com.xml b/src/chrome/content/rules/humankode.com.xml new file mode 100644 index 000000000000..5b41e47b188f --- /dev/null +++ b/src/chrome/content/rules/humankode.com.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/humboldt-foundation.de.xml b/src/chrome/content/rules/humboldt-foundation.de.xml new file mode 100644 index 000000000000..92fec6964b45 --- /dev/null +++ b/src/chrome/content/rules/humboldt-foundation.de.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/hungryhowies.com.xml b/src/chrome/content/rules/hungryhowies.com.xml deleted file mode 100644 index 2237d8c6a2cc..000000000000 --- a/src/chrome/content/rules/hungryhowies.com.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/huntonprivacyblog.com.xml b/src/chrome/content/rules/huntonprivacyblog.com.xml index cee1fc6a32f7..a1e5ba28c130 100644 --- a/src/chrome/content/rules/huntonprivacyblog.com.xml +++ b/src/chrome/content/rules/huntonprivacyblog.com.xml @@ -4,7 +4,7 @@ - + - - - - - - - - - diff --git a/src/chrome/content/rules/huuto.net-resources.xml b/src/chrome/content/rules/huuto.net-resources.xml index 1b1afdd4d02e..3c717bab8e86 100644 --- a/src/chrome/content/rules/huuto.net-resources.xml +++ b/src/chrome/content/rules/huuto.net-resources.xml @@ -10,7 +10,7 @@ Fetch error: http://kuvat2.huuto.net/ => https://kuvat2.huuto.net/: (35, 'error: and no mixed content secured. --> - + diff --git a/src/chrome/content/rules/huuto.net.xml b/src/chrome/content/rules/huuto.net.xml index 0615f8520d28..113508509163 100644 --- a/src/chrome/content/rules/huuto.net.xml +++ b/src/chrome/content/rules/huuto.net.xml @@ -114,7 +114,7 @@ - + diff --git a/src/chrome/content/rules/hyb.pw.xml b/src/chrome/content/rules/hyb.pw.xml deleted file mode 100644 index 5b9ef2a94d99..000000000000 --- a/src/chrome/content/rules/hyb.pw.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/hydraproxy.party.xml b/src/chrome/content/rules/hydraproxy.party.xml deleted file mode 100644 index 6ccda3625d5b..000000000000 --- a/src/chrome/content/rules/hydraproxy.party.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/hydro.gov.hk.xml b/src/chrome/content/rules/hydro.gov.hk.xml new file mode 100644 index 000000000000..3cd0e6c741d1 --- /dev/null +++ b/src/chrome/content/rules/hydro.gov.hk.xml @@ -0,0 +1,10 @@ + + + + + + + + diff --git a/src/chrome/content/rules/hyperisland.com.xml b/src/chrome/content/rules/hyperisland.com.xml index ea6a3e1a64f9..e2f19e9b6b02 100644 --- a/src/chrome/content/rules/hyperisland.com.xml +++ b/src/chrome/content/rules/hyperisland.com.xml @@ -21,7 +21,7 @@ - + - + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/hypestat.com.xml b/src/chrome/content/rules/hypestat.com.xml index 45757a554303..a8726298b9d4 100644 --- a/src/chrome/content/rules/hypestat.com.xml +++ b/src/chrome/content/rules/hypestat.com.xml @@ -7,7 +7,7 @@ Fetch error: http://static.hypestat.com/ => https://static.hypestat.com/: Too ma Fetch error: http://www.hypestat.com/ => https://www.hypestat.com/: Too many redirects while fetching 'https://www.hypestat.com/' --> - + @@ -16,7 +16,7 @@ Fetch error: http://www.hypestat.com/ => https://www.hypestat.com/: Too many red - + + + + + + diff --git a/src/chrome/content/rules/i-epistemology.net.xml b/src/chrome/content/rules/i-epistemology.net.xml new file mode 100644 index 000000000000..b3b8bac6f629 --- /dev/null +++ b/src/chrome/content/rules/i-epistemology.net.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/i4wifi.cz.xml b/src/chrome/content/rules/i4wifi.cz.xml index 60180c9ba869..e299bdc8d584 100644 --- a/src/chrome/content/rules/i4wifi.cz.xml +++ b/src/chrome/content/rules/i4wifi.cz.xml @@ -14,7 +14,7 @@ Fetch error: http://files.i4wifi.cz/ => https://files.i4wifi.cz/: (60, 'SSL cert Time out: - old.i4wifi.cz --> - + diff --git a/src/chrome/content/rules/iCloud.com.xml b/src/chrome/content/rules/iCloud.com.xml deleted file mode 100644 index 4d445e3c7b47..000000000000 --- a/src/chrome/content/rules/iCloud.com.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - diff --git a/src/chrome/content/rules/iDreamx.com.xml b/src/chrome/content/rules/iDreamx.com.xml new file mode 100644 index 000000000000..e3882c66cba1 --- /dev/null +++ b/src/chrome/content/rules/iDreamx.com.xml @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/src/chrome/content/rules/iEntry.com.xml b/src/chrome/content/rules/iEntry.com.xml new file mode 100644 index 000000000000..201094bd5842 --- /dev/null +++ b/src/chrome/content/rules/iEntry.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/iEntry.xml b/src/chrome/content/rules/iEntry.xml deleted file mode 100644 index 8a392cfcfbe9..000000000000 --- a/src/chrome/content/rules/iEntry.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/iHub_-Nairobi.xml b/src/chrome/content/rules/iHub_-Nairobi.xml index 128657481a9e..eb79d6802eac 100644 --- a/src/chrome/content/rules/iHub_-Nairobi.xml +++ b/src/chrome/content/rules/iHub_-Nairobi.xml @@ -1,12 +1,14 @@ - + + + diff --git a/src/chrome/content/rules/iMapEnterprises.com.xml b/src/chrome/content/rules/iMapEnterprises.com.xml new file mode 100644 index 000000000000..f8597f2744e7 --- /dev/null +++ b/src/chrome/content/rules/iMapEnterprises.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/iPay88.com.xml b/src/chrome/content/rules/iPay88.com.xml new file mode 100644 index 000000000000..a37b573b0b46 --- /dev/null +++ b/src/chrome/content/rules/iPay88.com.xml @@ -0,0 +1,44 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/iPerceptions.xml b/src/chrome/content/rules/iPerceptions.xml index 9412776e7628..8715ab4fd849 100644 --- a/src/chrome/content/rules/iPerceptions.xml +++ b/src/chrome/content/rules/iPerceptions.xml @@ -16,8 +16,8 @@ - - + + + + + + + + + + - + diff --git a/src/chrome/content/rules/iStockphoto.com.xml b/src/chrome/content/rules/iStockphoto.com.xml new file mode 100644 index 000000000000..bfcbe2214319 --- /dev/null +++ b/src/chrome/content/rules/iStockphoto.com.xml @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/iTerm2.xml b/src/chrome/content/rules/iTerm2.xml index d9b7359ce788..2fb0d7c46d70 100644 --- a/src/chrome/content/rules/iTerm2.xml +++ b/src/chrome/content/rules/iTerm2.xml @@ -12,7 +12,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/iTradeCIMB.com.my.xml b/src/chrome/content/rules/iTradeCIMB.com.my.xml new file mode 100644 index 000000000000..a46b5fbce8e4 --- /dev/null +++ b/src/chrome/content/rules/iTradeCIMB.com.my.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/iWork.com.xml b/src/chrome/content/rules/iWork.com.xml index 0f1b70e09f93..5f868c8f0156 100644 --- a/src/chrome/content/rules/iWork.com.xml +++ b/src/chrome/content/rules/iWork.com.xml @@ -9,7 +9,7 @@ Fetch error: http://www.iwork.com/ => https://www.iwork.com/: (28, 'Connection t Mismatch: - iwork.com (cert only matches www) --> - + diff --git a/src/chrome/content/rules/iamgiki.co.xml b/src/chrome/content/rules/iamgiki.co.xml new file mode 100644 index 000000000000..b9a749583d1e --- /dev/null +++ b/src/chrome/content/rules/iamgiki.co.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/iapc.utwente.nl.xml b/src/chrome/content/rules/iapc.utwente.nl.xml index b4faab7b8b01..b2a0c107fa1d 100644 --- a/src/chrome/content/rules/iapc.utwente.nl.xml +++ b/src/chrome/content/rules/iapc.utwente.nl.xml @@ -15,7 +15,7 @@ - + diff --git a/src/chrome/content/rules/ibiblio.org.xml b/src/chrome/content/rules/ibiblio.org.xml new file mode 100644 index 000000000000..aa68112f9c51 --- /dev/null +++ b/src/chrome/content/rules/ibiblio.org.xml @@ -0,0 +1,47 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ibm.biz.xml b/src/chrome/content/rules/ibm.biz.xml index ae8d148cf294..71eae0cb18c1 100644 --- a/src/chrome/content/rules/ibm.biz.xml +++ b/src/chrome/content/rules/ibm.biz.xml @@ -16,7 +16,7 @@ - + - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/ibx.com.xml b/src/chrome/content/rules/ibx.com.xml index 8d9fb72e6948..58d317d7038f 100644 --- a/src/chrome/content/rules/ibx.com.xml +++ b/src/chrome/content/rules/ibx.com.xml @@ -49,7 +49,7 @@ Fetch error: http://ibx.com/ => https://ibx.com/: (7, 'Failed to connect to ibx. ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -84,7 +84,7 @@ Fetch error: http://ibx.com/ => https://ibx.com/: (7, 'Failed to connect to ibx. - + - + - + + + + + + + + + diff --git a/src/chrome/content/rules/ictv.ua.xml b/src/chrome/content/rules/ictv.ua.xml index 3b6b3e5e7bb5..a5218e349427 100644 --- a/src/chrome/content/rules/ictv.ua.xml +++ b/src/chrome/content/rules/ictv.ua.xml @@ -105,7 +105,7 @@ zeki.ictv.ua ⁴ ³ timed out ⁴ self signed --> - + diff --git a/src/chrome/content/rules/iddh.org.br.xml b/src/chrome/content/rules/iddh.org.br.xml new file mode 100644 index 000000000000..2f99d74fc41c --- /dev/null +++ b/src/chrome/content/rules/iddh.org.br.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/ideal-collaboration.net.xml b/src/chrome/content/rules/ideal-collaboration.net.xml new file mode 100644 index 000000000000..440c17eca9d8 --- /dev/null +++ b/src/chrome/content/rules/ideal-collaboration.net.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/idealconceal.com.xml b/src/chrome/content/rules/idealconceal.com.xml index 970f3a3a7dc5..9794cca4b7b9 100644 --- a/src/chrome/content/rules/idealconceal.com.xml +++ b/src/chrome/content/rules/idealconceal.com.xml @@ -13,7 +13,7 @@ - + - + - + diff --git a/src/chrome/content/rules/idnes-cz.xml b/src/chrome/content/rules/idnes-cz.xml index d2129cf99d50..70ae3a75a24c 100644 --- a/src/chrome/content/rules/idnes-cz.xml +++ b/src/chrome/content/rules/idnes-cz.xml @@ -71,7 +71,7 @@ - + diff --git a/src/chrome/content/rules/idoxgroup.com.xml b/src/chrome/content/rules/idoxgroup.com.xml index 8baa60618c73..05ae2fe5c425 100644 --- a/src/chrome/content/rules/idoxgroup.com.xml +++ b/src/chrome/content/rules/idoxgroup.com.xml @@ -70,7 +70,7 @@ - + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ifec.org.hk.xml b/src/chrome/content/rules/ifec.org.hk.xml new file mode 100644 index 000000000000..e6a3885b0abb --- /dev/null +++ b/src/chrome/content/rules/ifec.org.hk.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ifeng.com.xml b/src/chrome/content/rules/ifeng.com.xml new file mode 100644 index 000000000000..726b3076103d --- /dev/null +++ b/src/chrome/content/rules/ifeng.com.xml @@ -0,0 +1,18 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/ifs.org.uk.xml b/src/chrome/content/rules/ifs.org.uk.xml index a1f2b83ebded..ab9f70338628 100644 --- a/src/chrome/content/rules/ifs.org.uk.xml +++ b/src/chrome/content/rules/ifs.org.uk.xml @@ -15,7 +15,7 @@ - + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ijg.org.xml b/src/chrome/content/rules/ijg.org.xml new file mode 100644 index 000000000000..d3b1b89c53dc --- /dev/null +++ b/src/chrome/content/rules/ijg.org.xml @@ -0,0 +1,10 @@ + + + + + + + diff --git a/src/chrome/content/rules/ilca.ru.xml b/src/chrome/content/rules/ilca.ru.xml deleted file mode 100644 index 7ba43f62f2f9..000000000000 --- a/src/chrome/content/rules/ilca.ru.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/iliad.it.xml b/src/chrome/content/rules/iliad.it.xml new file mode 100644 index 000000000000..5306825095fe --- /dev/null +++ b/src/chrome/content/rules/iliad.it.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/illuminateed.com.xml b/src/chrome/content/rules/illuminateed.com.xml index 9c385a9c247d..1ea0a7de4300 100644 --- a/src/chrome/content/rules/illuminateed.com.xml +++ b/src/chrome/content/rules/illuminateed.com.xml @@ -19,7 +19,7 @@ Mixed content: - Images, on: - + - go from $self ˢ - go from storage.pardot.com ˢ @@ -143,7 +143,7 @@ --> - + - + diff --git a/src/chrome/content/rules/im9.eu.xml b/src/chrome/content/rules/im9.eu.xml deleted file mode 100644 index 0e5605a94795..000000000000 --- a/src/chrome/content/rules/im9.eu.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/imagecurl.com.xml b/src/chrome/content/rules/imagecurl.com.xml deleted file mode 100644 index 3922286ffcfc..000000000000 --- a/src/chrome/content/rules/imagecurl.com.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/imagelayers.io.xml b/src/chrome/content/rules/imagelayers.io.xml index f09580c3f990..c073c6028151 100644 --- a/src/chrome/content/rules/imagelayers.io.xml +++ b/src/chrome/content/rules/imagelayers.io.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.imagelayers.io/ => https://www.imagelayers.io/: (6, 'Could not resolve host: www.imagelayers.io') --> - + diff --git a/src/chrome/content/rules/imageraider.com.xml b/src/chrome/content/rules/imageraider.com.xml index 7793bb168396..d2e8904254f1 100644 --- a/src/chrome/content/rules/imageraider.com.xml +++ b/src/chrome/content/rules/imageraider.com.xml @@ -16,7 +16,7 @@ - + - + - + diff --git a/src/chrome/content/rules/img.ifcdn.com.xml b/src/chrome/content/rules/img.ifcdn.com.xml index 0346a383c324..dbb362f40af5 100644 --- a/src/chrome/content/rules/img.ifcdn.com.xml +++ b/src/chrome/content/rules/img.ifcdn.com.xml @@ -1,6 +1,6 @@ - + diff --git a/src/chrome/content/rules/imgburn.com.xml b/src/chrome/content/rules/imgburn.com.xml new file mode 100644 index 000000000000..bea664a79a64 --- /dev/null +++ b/src/chrome/content/rules/imgburn.com.xml @@ -0,0 +1,27 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/imgix.com.xml b/src/chrome/content/rules/imgix.com.xml index 31b3a05845da..8908dabc8226 100644 --- a/src/chrome/content/rules/imgix.com.xml +++ b/src/chrome/content/rules/imgix.com.xml @@ -13,7 +13,7 @@ - + - + diff --git a/src/chrome/content/rules/imgtec.com.xml b/src/chrome/content/rules/imgtec.com.xml index b05cea7f7ea7..f17bea8da377 100644 --- a/src/chrome/content/rules/imgtec.com.xml +++ b/src/chrome/content/rules/imgtec.com.xml @@ -58,7 +58,7 @@ --> - + - + https://immunicity.uk/: (6, 'Could not resolve host: immunicity.uk') -Fetch error: http://www.immunicity.uk/ => https://www.immunicity.uk/: (6, 'Could not resolve host: www.immunicity.uk') - ---> - - - - - - - - diff --git a/src/chrome/content/rules/import.io.xml b/src/chrome/content/rules/import.io.xml index 2aa9e8df7454..6cb71c06c01a 100644 --- a/src/chrome/content/rules/import.io.xml +++ b/src/chrome/content/rules/import.io.xml @@ -15,7 +15,7 @@ - + - + + + + + + + + + + diff --git a/src/chrome/content/rules/in-tend.co.uk.xml b/src/chrome/content/rules/in-tend.co.uk.xml index b3fd79d4c1dd..03f31876a678 100644 --- a/src/chrome/content/rules/in-tend.co.uk.xml +++ b/src/chrome/content/rules/in-tend.co.uk.xml @@ -32,7 +32,7 @@ --> - + - + - + - + - + - - - - - diff --git a/src/chrome/content/rules/inetvl.ru.xml b/src/chrome/content/rules/inetvl.ru.xml index 5d831f635056..61ba0b600790 100644 --- a/src/chrome/content/rules/inetvl.ru.xml +++ b/src/chrome/content/rules/inetvl.ru.xml @@ -32,7 +32,7 @@ w-host-52.inetvl.ru ³ ³ timed out ⁴ self signed --> - + diff --git a/src/chrome/content/rules/infinum.co.xml b/src/chrome/content/rules/infinum.co.xml index 52f827014a73..c5cf14fd5c38 100644 --- a/src/chrome/content/rules/infinum.co.xml +++ b/src/chrome/content/rules/infinum.co.xml @@ -14,7 +14,7 @@ presence.infinum.co mixed content ¹ mismatch ² refused --> - + diff --git a/src/chrome/content/rules/info.gov.hk.xml b/src/chrome/content/rules/info.gov.hk.xml new file mode 100644 index 000000000000..8e50fc6f154d --- /dev/null +++ b/src/chrome/content/rules/info.gov.hk.xml @@ -0,0 +1,32 @@ + + + + + + + + diff --git a/src/chrome/content/rules/infolan.by.xml b/src/chrome/content/rules/infolan.by.xml index 8c101af89edc..5e683dfdd4dd 100644 --- a/src/chrome/content/rules/infolan.by.xml +++ b/src/chrome/content/rules/infolan.by.xml @@ -7,13 +7,13 @@ Fetch error: http://www.infolan.by/ => https://infolan.by/: (51, "SSL: no altern www.infolan.by self signed --> - + - + - + diff --git a/src/chrome/content/rules/infosactu.com.xml b/src/chrome/content/rules/infosactu.com.xml deleted file mode 100644 index 412c7f590d48..000000000000 --- a/src/chrome/content/rules/infosactu.com.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/ingtes.ch.xml b/src/chrome/content/rules/ingtes.ch.xml new file mode 100644 index 000000000000..625c831da8b4 --- /dev/null +++ b/src/chrome/content/rules/ingtes.ch.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/init.sh.xml b/src/chrome/content/rules/init.sh.xml index b407ba7c7d98..dea24532a48f 100644 --- a/src/chrome/content/rules/init.sh.xml +++ b/src/chrome/content/rules/init.sh.xml @@ -11,13 +11,13 @@ Fetch error: http://www.init.sh/ => https://www.init.sh/: (60, 'SSL certificate ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + - + - + https://iniy.org/: (60, 'SSL certificate pr - iniy.org --> - + diff --git a/src/chrome/content/rules/inl.gov.xml b/src/chrome/content/rules/inl.gov.xml index 0b3bd5fd1d33..906092be1d5b 100644 --- a/src/chrome/content/rules/inl.gov.xml +++ b/src/chrome/content/rules/inl.gov.xml @@ -64,7 +64,7 @@ Fetch error: http://nuclear.inl.gov/ => https://inlportal.inl.gov/portal/server. ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -151,7 +151,7 @@ Fetch error: http://nuclear.inl.gov/ => https://inlportal.inl.gov/portal/server. - + - + diff --git a/src/chrome/content/rules/instasync.com.xml b/src/chrome/content/rules/instasync.com.xml deleted file mode 100644 index 8fbad0f0ed05..000000000000 --- a/src/chrome/content/rules/instasync.com.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/intagme.com.xml b/src/chrome/content/rules/intagme.com.xml index a5b0cb4d2827..774483916470 100644 --- a/src/chrome/content/rules/intagme.com.xml +++ b/src/chrome/content/rules/intagme.com.xml @@ -13,14 +13,14 @@ Fetch error: http://www.intagme.com/ => https://www.intagme.com/: (28, 'Operatio ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + - + + + + + + + + + diff --git a/src/chrome/content/rules/integrityglobal.com.xml b/src/chrome/content/rules/integrityglobal.com.xml deleted file mode 100644 index c2be8086a44c..000000000000 --- a/src/chrome/content/rules/integrityglobal.com.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/intellipoker.bg.xml b/src/chrome/content/rules/intellipoker.bg.xml index ce410ee7208b..f74b3538c814 100644 --- a/src/chrome/content/rules/intellipoker.bg.xml +++ b/src/chrome/content/rules/intellipoker.bg.xml @@ -8,7 +8,7 @@ Fetch error: http://media.intellipoker.bg/ => https://media.intellipoker.bg/: (5 - .intellipoker.bg --> - + @@ -19,7 +19,7 @@ Fetch error: http://media.intellipoker.bg/ => https://media.intellipoker.bg/: (5 --> - + https://www.intellnews.net/: (60, 'SSL ce ˢ Secured by us --> - + @@ -33,7 +33,7 @@ Fetch error: http://intellnews.net/ => https://www.intellnews.net/: (60, 'SSL ce - + - - + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/interactivepython.org.xml b/src/chrome/content/rules/interactivepython.org.xml deleted file mode 100644 index 90a34d2ce4dc..000000000000 --- a/src/chrome/content/rules/interactivepython.org.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/internetessentials.com.xml b/src/chrome/content/rules/internetessentials.com.xml index 1be7a78b888b..6cf369d889a0 100644 --- a/src/chrome/content/rules/internetessentials.com.xml +++ b/src/chrome/content/rules/internetessentials.com.xml @@ -16,7 +16,7 @@ Fetch error: http://learning.internetessentials.com/ => https://learning.interne - partner.internetessentials.com --> - + @@ -34,7 +34,7 @@ Fetch error: http://learning.internetessentials.com/ => https://learning.interne - + - + + + + + + + diff --git a/src/chrome/content/rules/intertelecom.ru.com.xml b/src/chrome/content/rules/intertelecom.ru.com.xml index d0738fc67edd..b5194b281db5 100644 --- a/src/chrome/content/rules/intertelecom.ru.com.xml +++ b/src/chrome/content/rules/intertelecom.ru.com.xml @@ -7,7 +7,7 @@ intertelecom.ru.com revoked www.intertelecom.ru.com revoked old.intertelecom.ru.com revoked --> - + diff --git a/src/chrome/content/rules/intsig.com.xml b/src/chrome/content/rules/intsig.com.xml index 4c47f62515a5..79622a457921 100644 --- a/src/chrome/content/rules/intsig.com.xml +++ b/src/chrome/content/rules/intsig.com.xml @@ -31,7 +31,7 @@ Fetch error: http://www.intsig.com/ => https://www.intsig.com/: Too many redirec ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -48,7 +48,7 @@ Fetch error: http://www.intsig.com/ => https://www.intsig.com/: Too many redirec - + - + @@ -49,7 +49,7 @@ Fetch error: http://www.intsig.net/ => https://www.intsig.net/: Too many redirec - + - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/ioke.org.xml b/src/chrome/content/rules/ioke.org.xml index c39ecfbfab16..ae7b58dfb072 100644 --- a/src/chrome/content/rules/ioke.org.xml +++ b/src/chrome/content/rules/ioke.org.xml @@ -12,7 +12,7 @@ - + - + + + + + + + + + diff --git a/src/chrome/content/rules/iot.uk.xml b/src/chrome/content/rules/iot.uk.xml index 4550af5e4683..8f815c3967f2 100644 --- a/src/chrome/content/rules/iot.uk.xml +++ b/src/chrome/content/rules/iot.uk.xml @@ -5,7 +5,7 @@ - + - + + + + + + + diff --git a/src/chrome/content/rules/ipleak.net.xml b/src/chrome/content/rules/ipleak.net.xml deleted file mode 100644 index 06838f5d91d3..000000000000 --- a/src/chrome/content/rules/ipleak.net.xml +++ /dev/null @@ -1,166 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/iplocation.net.xml b/src/chrome/content/rules/iplocation.net.xml index 0f3df941c606..6dc3704ec8f8 100644 --- a/src/chrome/content/rules/iplocation.net.xml +++ b/src/chrome/content/rules/iplocation.net.xml @@ -14,5 +14,5 @@ - + diff --git a/src/chrome/content/rules/iq-optimize.de.xml b/src/chrome/content/rules/iq-optimize.de.xml new file mode 100644 index 000000000000..a4bac262e984 --- /dev/null +++ b/src/chrome/content/rules/iq-optimize.de.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/iqdb.xml b/src/chrome/content/rules/iqdb.xml index b8fc1c63b9ed..6d060170300c 100644 --- a/src/chrome/content/rules/iqdb.xml +++ b/src/chrome/content/rules/iqdb.xml @@ -5,7 +5,7 @@ - + diff --git a/src/chrome/content/rules/iqoption.com.xml b/src/chrome/content/rules/iqoption.com.xml new file mode 100644 index 000000000000..78ad03d49b35 --- /dev/null +++ b/src/chrome/content/rules/iqoption.com.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/irancybercrime.org.xml b/src/chrome/content/rules/irancybercrime.org.xml index ebab4f5a4574..fd6a981a51b1 100644 --- a/src/chrome/content/rules/irancybercrime.org.xml +++ b/src/chrome/content/rules/irancybercrime.org.xml @@ -4,7 +4,7 @@ - + https://dev.irc.lc/: (51, "SSL: no alternativ Refused: - pad.irc.lc --> - + diff --git a/src/chrome/content/rules/ire.org.xml b/src/chrome/content/rules/ire.org.xml index d4c19bf2a007..22d7638f50b7 100644 --- a/src/chrome/content/rules/ire.org.xml +++ b/src/chrome/content/rules/ire.org.xml @@ -4,7 +4,7 @@ - + - - - - - diff --git a/src/chrome/content/rules/irex.org.xml b/src/chrome/content/rules/irex.org.xml index 15995934c426..3322311520be 100644 --- a/src/chrome/content/rules/irex.org.xml +++ b/src/chrome/content/rules/irex.org.xml @@ -31,7 +31,7 @@ - + - - - - - - - - - - - - diff --git a/src/chrome/content/rules/irrlab.com.xml b/src/chrome/content/rules/irrlab.com.xml index cb9e4407101a..ef9f7d424d26 100644 --- a/src/chrome/content/rules/irrlab.com.xml +++ b/src/chrome/content/rules/irrlab.com.xml @@ -1,6 +1,6 @@ diff --git a/src/chrome/content/rules/is.gd.xml b/src/chrome/content/rules/is.gd.xml index f305d9880e6e..42baf5a91a28 100644 --- a/src/chrome/content/rules/is.gd.xml +++ b/src/chrome/content/rules/is.gd.xml @@ -29,7 +29,7 @@ --> - + - + diff --git a/src/chrome/content/rules/islandhealth.ca.xml b/src/chrome/content/rules/islandhealth.ca.xml new file mode 100644 index 000000000000..5d165fa38a0d --- /dev/null +++ b/src/chrome/content/rules/islandhealth.ca.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/isoc.ch.xml b/src/chrome/content/rules/isoc.ch.xml index a4402c15a35d..8444347f8700 100644 --- a/src/chrome/content/rules/isoc.ch.xml +++ b/src/chrome/content/rules/isoc.ch.xml @@ -12,7 +12,7 @@ - + - + - - - - - - - - - diff --git a/src/chrome/content/rules/istockimg.com.xml b/src/chrome/content/rules/istockimg.com.xml deleted file mode 100644 index 2d2da2d45250..000000000000 --- a/src/chrome/content/rules/istockimg.com.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/istockphoto.com.xml b/src/chrome/content/rules/istockphoto.com.xml deleted file mode 100644 index f2159e778b61..000000000000 --- a/src/chrome/content/rules/istockphoto.com.xml +++ /dev/null @@ -1,160 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/itao.com.xml b/src/chrome/content/rules/itao.com.xml index 1641bdefa9ef..c5cf8fd32e4a 100644 --- a/src/chrome/content/rules/itao.com.xml +++ b/src/chrome/content/rules/itao.com.xml @@ -45,7 +45,7 @@ - + - + - + diff --git a/src/chrome/content/rules/itemname.com.xml b/src/chrome/content/rules/itemname.com.xml index cdf40de8ad9c..b84080e5ceb3 100644 --- a/src/chrome/content/rules/itemname.com.xml +++ b/src/chrome/content/rules/itemname.com.xml @@ -5,7 +5,7 @@ - + - + diff --git a/src/chrome/content/rules/itif.org.xml b/src/chrome/content/rules/itif.org.xml index 07d863f6bd44..20dd5a25584f 100644 --- a/src/chrome/content/rules/itif.org.xml +++ b/src/chrome/content/rules/itif.org.xml @@ -15,7 +15,7 @@ - + - + + + + + + + diff --git a/src/chrome/content/rules/ius.io.xml b/src/chrome/content/rules/ius.io.xml index 8cd7b2cc10a8..e1c851632eea 100644 --- a/src/chrome/content/rules/ius.io.xml +++ b/src/chrome/content/rules/ius.io.xml @@ -1,4 +1,9 @@ @@ -16,11 +21,11 @@ - - - - + + + + diff --git a/src/chrome/content/rules/ivi.ru.xml b/src/chrome/content/rules/ivi.ru.xml index f17222557c5c..6f6cee48654d 100644 --- a/src/chrome/content/rules/ivi.ru.xml +++ b/src/chrome/content/rules/ivi.ru.xml @@ -19,7 +19,7 @@ --> - + - + - + @@ -18,7 +18,7 @@ --> - + - + - + - + - - - - - - - - - - - - diff --git a/src/chrome/content/rules/iwill.org.uk.xml b/src/chrome/content/rules/iwill.org.uk.xml index 0dc6120417d0..95eb8a02610f 100644 --- a/src/chrome/content/rules/iwill.org.uk.xml +++ b/src/chrome/content/rules/iwill.org.uk.xml @@ -32,7 +32,7 @@ --> - + - + + + + + + + + diff --git a/src/chrome/content/rules/jacksonzoo.org.xml b/src/chrome/content/rules/jacksonzoo.org.xml new file mode 100644 index 000000000000..00bb54271d28 --- /dev/null +++ b/src/chrome/content/rules/jacksonzoo.org.xml @@ -0,0 +1,12 @@ + + + + + + + diff --git a/src/chrome/content/rules/jacktrammellmusic.com.xml b/src/chrome/content/rules/jacktrammellmusic.com.xml new file mode 100644 index 000000000000..a48099f3f830 --- /dev/null +++ b/src/chrome/content/rules/jacktrammellmusic.com.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/jaist.ac.jp.xml b/src/chrome/content/rules/jaist.ac.jp.xml new file mode 100644 index 000000000000..40806789b0c9 --- /dev/null +++ b/src/chrome/content/rules/jaist.ac.jp.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/jaoa.org.xml b/src/chrome/content/rules/jaoa.org.xml index dd2aafd0f97e..e455d999616b 100644 --- a/src/chrome/content/rules/jaoa.org.xml +++ b/src/chrome/content/rules/jaoa.org.xml @@ -1,9 +1,9 @@ - + diff --git a/src/chrome/content/rules/jasonsmovieblog.com.xml b/src/chrome/content/rules/jasonsmovieblog.com.xml index e33904290894..fce19addf7c5 100644 --- a/src/chrome/content/rules/jasonsmovieblog.com.xml +++ b/src/chrome/content/rules/jasonsmovieblog.com.xml @@ -4,7 +4,7 @@ - + - + diff --git a/src/chrome/content/rules/javaops.ru.xml b/src/chrome/content/rules/javaops.ru.xml new file mode 100644 index 000000000000..978162303799 --- /dev/null +++ b/src/chrome/content/rules/javaops.ru.xml @@ -0,0 +1,10 @@ + + + + + + + diff --git a/src/chrome/content/rules/javascriptobfuscator.com.xml b/src/chrome/content/rules/javascriptobfuscator.com.xml index 9c2d5ee8993a..88e7247648a2 100644 --- a/src/chrome/content/rules/javascriptobfuscator.com.xml +++ b/src/chrome/content/rules/javascriptobfuscator.com.xml @@ -9,7 +9,7 @@ - + - + diff --git a/src/chrome/content/rules/jdi-solutions.co.uk.xml b/src/chrome/content/rules/jdi-solutions.co.uk.xml index 4bcb1a6dfc5b..caec75610a5c 100644 --- a/src/chrome/content/rules/jdi-solutions.co.uk.xml +++ b/src/chrome/content/rules/jdi-solutions.co.uk.xml @@ -4,7 +4,7 @@ - + - + - + - + - + https://jeman.de/: (60, 'SSL certificate problem: certificate has expired') --> - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/jenkins.io.xml b/src/chrome/content/rules/jenkins.io.xml index c9cbb7719cf8..be5a521c2803 100644 --- a/src/chrome/content/rules/jenkins.io.xml +++ b/src/chrome/content/rules/jenkins.io.xml @@ -1,28 +1,41 @@ + - - + + + + + + + + + + diff --git a/src/chrome/content/rules/jeremyheminger.com.xml b/src/chrome/content/rules/jeremyheminger.com.xml new file mode 100644 index 000000000000..491086d1036e --- /dev/null +++ b/src/chrome/content/rules/jeremyheminger.com.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/jeremymorgan.com.xml b/src/chrome/content/rules/jeremymorgan.com.xml index 2bcf6fb8280a..0d982b14f02b 100644 --- a/src/chrome/content/rules/jeremymorgan.com.xml +++ b/src/chrome/content/rules/jeremymorgan.com.xml @@ -4,7 +4,7 @@ - + + + + + + + + diff --git a/src/chrome/content/rules/jewishvirtuallibrary.org.xml b/src/chrome/content/rules/jewishvirtuallibrary.org.xml index 5cf758f9e75d..02e5d77b6e3b 100644 --- a/src/chrome/content/rules/jewishvirtuallibrary.org.xml +++ b/src/chrome/content/rules/jewishvirtuallibrary.org.xml @@ -1,14 +1,10 @@ - - + - + https://jibbed.org/: (60, 'SSL certificate pr Fetch error: http://dus.jibbed.org/ => https://dus.jibbed.org/: (7, 'Failed to connect to dus.jibbed.org port 443: Connection timed out') --> - + diff --git a/src/chrome/content/rules/jiri-dvorak.cz.xml b/src/chrome/content/rules/jiri-dvorak.cz.xml new file mode 100644 index 000000000000..1d8c1a53c388 --- /dev/null +++ b/src/chrome/content/rules/jiri-dvorak.cz.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/jklakshmicement.com.xml b/src/chrome/content/rules/jklakshmicement.com.xml new file mode 100644 index 000000000000..2c1fa7914a2f --- /dev/null +++ b/src/chrome/content/rules/jklakshmicement.com.xml @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/src/chrome/content/rules/jm.com.xml b/src/chrome/content/rules/jm.com.xml index 1c40fe8d865c..9e75053ae018 100644 --- a/src/chrome/content/rules/jm.com.xml +++ b/src/chrome/content/rules/jm.com.xml @@ -7,7 +7,6 @@ Fetch error: http://e-commerce.jm.com/ => https://e-commerce.jm.com/: (60, 'SSL Other Johns Manville rulesets: - - jmconnexus.com.xml ^jm.com: Dropped @@ -26,7 +25,7 @@ Fetch error: http://e-commerce.jm.com/ => https://e-commerce.jm.com/: (60, 'SSL ᵐ Pardot / mismatched --> - + @@ -60,7 +59,7 @@ Fetch error: http://e-commerce.jm.com/ => https://e-commerce.jm.com/: (60, 'SSL - + + + + + + + diff --git a/src/chrome/content/rules/jmconnexus.com.xml b/src/chrome/content/rules/jmconnexus.com.xml deleted file mode 100644 index 856079087063..000000000000 --- a/src/chrome/content/rules/jmconnexus.com.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/jmd4you.de.xml b/src/chrome/content/rules/jmd4you.de.xml new file mode 100644 index 000000000000..b10c89a2ba93 --- /dev/null +++ b/src/chrome/content/rules/jmd4you.de.xml @@ -0,0 +1,17 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/jmsustainability.com.xml b/src/chrome/content/rules/jmsustainability.com.xml new file mode 100644 index 000000000000..1d393d1d638f --- /dev/null +++ b/src/chrome/content/rules/jmsustainability.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/joanganzcooneycenter.org.xml b/src/chrome/content/rules/joanganzcooneycenter.org.xml new file mode 100644 index 000000000000..a65290932f84 --- /dev/null +++ b/src/chrome/content/rules/joanganzcooneycenter.org.xml @@ -0,0 +1,10 @@ + + + + + + + diff --git a/src/chrome/content/rules/jobcorps.gov-resources.xml b/src/chrome/content/rules/jobcorps.gov-resources.xml index 3f623154c1eb..5c56e574da12 100644 --- a/src/chrome/content/rules/jobcorps.gov-resources.xml +++ b/src/chrome/content/rules/jobcorps.gov-resources.xml @@ -15,7 +15,7 @@ Fetch error: http://www.jobcorps.gov/favicon.ico => https://www.jobcorps.gov/fav and no mixed content secured. --> - + diff --git a/src/chrome/content/rules/jobcorps.gov.xml b/src/chrome/content/rules/jobcorps.gov.xml index 75d0c83388f0..317f3fc85954 100644 --- a/src/chrome/content/rules/jobcorps.gov.xml +++ b/src/chrome/content/rules/jobcorps.gov.xml @@ -59,7 +59,7 @@ - + - - - - - - - - diff --git a/src/chrome/content/rules/jobs.gov.hk.xml b/src/chrome/content/rules/jobs.gov.hk.xml index 34ae547e131a..e325739d01d0 100644 --- a/src/chrome/content/rules/jobs.gov.hk.xml +++ b/src/chrome/content/rules/jobs.gov.hk.xml @@ -14,7 +14,7 @@ - - diff --git a/src/chrome/content/rules/joejulian.name.xml b/src/chrome/content/rules/joejulian.name.xml index 28f540703aa9..8a8e5305bcbd 100644 --- a/src/chrome/content/rules/joejulian.name.xml +++ b/src/chrome/content/rules/joejulian.name.xml @@ -4,13 +4,13 @@ Disabled by https-everywhere-checker because: Non-2xx HTTP code: http://www.joejulian.name/ (200) => https://www.joejulian.name/ (400) --> - + - + + + + + + + + + + diff --git a/src/chrome/content/rules/jomsocial.com.xml b/src/chrome/content/rules/jomsocial.com.xml new file mode 100644 index 000000000000..1a28a0422a30 --- /dev/null +++ b/src/chrome/content/rules/jomsocial.com.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/josipfranjkovic.com.xml b/src/chrome/content/rules/josipfranjkovic.com.xml index f7d5778f8f2c..2161157a7e60 100644 --- a/src/chrome/content/rules/josipfranjkovic.com.xml +++ b/src/chrome/content/rules/josipfranjkovic.com.xml @@ -5,7 +5,7 @@ - + + + + + + + + + + + + diff --git a/src/chrome/content/rules/joycasino.com.xml b/src/chrome/content/rules/joycasino.com.xml index 00631468576c..805a872754b0 100644 --- a/src/chrome/content/rules/joycasino.com.xml +++ b/src/chrome/content/rules/joycasino.com.xml @@ -41,7 +41,7 @@ www.joy-kazino.com 520 www.joycazino.com mismatch www.joykazino.com 520 www.joycasino9.com 522--> - + @@ -114,9 +114,9 @@ www.joycasino9.com 522--> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/jrnl.ie.xml b/src/chrome/content/rules/jrnl.ie.xml index 4c82a8415cbf..4fbe700b0a15 100644 --- a/src/chrome/content/rules/jrnl.ie.xml +++ b/src/chrome/content/rules/jrnl.ie.xml @@ -33,7 +33,7 @@ - + https://wow.js.org/: (6, 'Could not resolve host: wow.js.org') - -reduxible.js.org mismatch -spin.js.org mismatch -aping.js.org mismatch -bestof.js.org mismatch -redux.js.org mismatch -jargon.js.org mismatch -gun.js.org mismatch -is.js.org mismatch -opentype.js.org mismatch -selectric.js.org mismatch -deterministic.js.org mismatch -fortune.js.org mismatch -objectmodel.js.org mismatch -cycle.js.org mismatch -immybox.js.org mismatch -firenze.js.org mismatch -spectragram.js.org mismatch -guiseek.js.org mismatch -refraction.js.org mismatch -rmodal.js.org mismatch -mesh.js.org mismatch -xto6.js.org mismatch -pliers.js.org mismatch -reactdesktop.js.org mismatch -alt.js.org mismatch -es.redux.js.org mismatch -cn.redux.js.org mismatch ---> - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/js1k.com.xml b/src/chrome/content/rules/js1k.com.xml new file mode 100644 index 000000000000..bfea1e78b3a3 --- /dev/null +++ b/src/chrome/content/rules/js1k.com.xml @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/src/chrome/content/rules/jsFiddle.xml b/src/chrome/content/rules/jsFiddle.xml index 557b7d4a9fd4..ab44bbf6fe45 100644 --- a/src/chrome/content/rules/jsFiddle.xml +++ b/src/chrome/content/rules/jsFiddle.xml @@ -22,7 +22,7 @@ --> - + https://chetharrison.jsbin.com/: (28, 'Operation timed out after 30001 milliseconds with 0 bytes received') -Fetch error: http://simevidas.jsbin.com/ => https://simevidas.jsbin.com/: (28, 'Operation timed out after 30001 milliseconds with 0 bytes received') - - Different HTTP/HTTPS response: - learn.jsbin.com - Invalid certificate: - status.jsbin.com - - No working URL known: - origin-static.jsbin.com + old.jsbin.com + share.jsbin.com + stats.jsbin.com + Time out: + apps.jsbin.com --> - + - - - - - - + + + + - - - - - - - + + + + diff --git a/src/chrome/content/rules/jsdelivr.com.xml b/src/chrome/content/rules/jsdelivr.com.xml deleted file mode 100644 index 3fa78067c48c..000000000000 --- a/src/chrome/content/rules/jsdelivr.com.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/json.org.xml b/src/chrome/content/rules/json.org.xml new file mode 100644 index 000000000000..2891171ee4d7 --- /dev/null +++ b/src/chrome/content/rules/json.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/jsonline.com.xml b/src/chrome/content/rules/jsonline.com.xml index 876718ad39b0..6eedd15dcf81 100644 --- a/src/chrome/content/rules/jsonline.com.xml +++ b/src/chrome/content/rules/jsonline.com.xml @@ -15,7 +15,7 @@ - + + + + + + + - - - - - - - - - + diff --git a/src/chrome/content/rules/juick.com.xml b/src/chrome/content/rules/juick.com.xml index 31ddde2f4f14..80bd09dc94e0 100644 --- a/src/chrome/content/rules/juick.com.xml +++ b/src/chrome/content/rules/juick.com.xml @@ -4,11 +4,10 @@ www.juick.com mismatch - + - - + diff --git a/src/chrome/content/rules/jumpshare.com.xml b/src/chrome/content/rules/jumpshare.com.xml index dfc1cdce2a5d..320aef901f62 100644 --- a/src/chrome/content/rules/jumpshare.com.xml +++ b/src/chrome/content/rules/jumpshare.com.xml @@ -5,7 +5,7 @@ - + - + - + https://partner.justeat.nl/: (6, 'Cou - www.plusdecommandes.fr - www.eatonline.fr --> - + diff --git a/src/chrome/content/rules/justgiving.com-falsemixed.xml b/src/chrome/content/rules/justgiving.com-falsemixed.xml index 64fc2e568490..0c6d4293fb34 100644 --- a/src/chrome/content/rules/justgiving.com-falsemixed.xml +++ b/src/chrome/content/rules/justgiving.com-falsemixed.xml @@ -11,7 +11,7 @@ - + - + diff --git a/src/chrome/content/rules/jwz.org.xml b/src/chrome/content/rules/jwz.org.xml deleted file mode 100644 index 9ef116a7c0bd..000000000000 --- a/src/chrome/content/rules/jwz.org.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/jydoll.cn.xml b/src/chrome/content/rules/jydoll.cn.xml new file mode 100644 index 000000000000..24a980e7e51d --- /dev/null +++ b/src/chrome/content/rules/jydoll.cn.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/k7r.eu.xml b/src/chrome/content/rules/k7r.eu.xml index d045b3b1b372..88c752e5d2c5 100644 --- a/src/chrome/content/rules/k7r.eu.xml +++ b/src/chrome/content/rules/k7r.eu.xml @@ -4,7 +4,7 @@ - + + + + + + + + + + diff --git a/src/chrome/content/rules/ka-news.de.xml b/src/chrome/content/rules/ka-news.de.xml new file mode 100644 index 000000000000..6f83f8e4b66f --- /dev/null +++ b/src/chrome/content/rules/ka-news.de.xml @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/kabelbw.xml b/src/chrome/content/rules/kabelbw.xml index d1b2b3e906cc..0b0d6c799225 100644 --- a/src/chrome/content/rules/kabelbw.xml +++ b/src/chrome/content/rules/kabelbw.xml @@ -2,4 +2,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/kachelmannwetter.com.xml b/src/chrome/content/rules/kachelmannwetter.com.xml new file mode 100644 index 000000000000..20fbf00c19bc --- /dev/null +++ b/src/chrome/content/rules/kachelmannwetter.com.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/kaimi.ru.xml b/src/chrome/content/rules/kaimi.ru.xml deleted file mode 100644 index 65203e083a58..000000000000 --- a/src/chrome/content/rules/kaimi.ru.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/kancloud.cn.xml b/src/chrome/content/rules/kancloud.cn.xml index 222116354237..c9741f8a3d02 100644 --- a/src/chrome/content/rules/kancloud.cn.xml +++ b/src/chrome/content/rules/kancloud.cn.xml @@ -6,7 +6,7 @@ Non-2xx HTTP code: http://kancloud.cn/ (200) => https://kancloud.cn/ (404) Different HTTP/HTTPS content: git.kancloud.cn release.kancloud.cn - + Invalid certificate: help.kancloud.cn @@ -14,8 +14,8 @@ Non-2xx HTTP code: http://kancloud.cn/ (200) => https://kancloud.cn/ (404) box.kancloud.cn --> - - + + diff --git a/src/chrome/content/rules/kantonalbanken.xml b/src/chrome/content/rules/kantonalbanken.xml index f9efe443552a..a7543409aa47 100644 --- a/src/chrome/content/rules/kantonalbanken.xml +++ b/src/chrome/content/rules/kantonalbanken.xml @@ -10,7 +10,6 @@ Fetch error: http://advent.sgkb.ch/ => https://advent.sgkb.ch/: (60, 'SSL certif Fetch error: http://fxnet.sgkb.ch/ => https://fxnet.sgkb.ch/: (28, 'Connection timed out after 20001 milliseconds') Fetch error: http://tabs.sgkb.ch/ => https://tabs.sgkb.ch/: (60, 'SSL certificate problem: certificate has expired') Fetch error: http://tradedirect.ch/ => https://tradedirect.ch/: (51, "SSL: no alternative certificate subject name matches target host name 'tradedirect.ch'") -Fetch error: http://fxnet.zkb.ch/ => https://fxnet.zkb.ch/: (6, 'Could not resolve host: fxnet.zkb.ch') Fetch error: http://tradedirect.ch/ => https://tradedirect.ch/: (51, "SSL: no alternative certificate subject name matches target host name 'tradedirect.ch'") Problematic hosts: @@ -20,13 +19,7 @@ Fetch error: http://tradedirect.ch/ => https://tradedirect.ch/: (51, "SSL: no al Not supported: - newhome.ch --> - - - - - - - + @@ -37,13 +30,10 @@ Fetch error: http://tradedirect.ch/ => https://tradedirect.ch/: (51, "SSL: no al - - - @@ -70,26 +60,9 @@ Fetch error: http://tradedirect.ch/ => https://tradedirect.ch/: (51, "SSL: no al - - - - - - - - - - - - - - - - - @@ -109,10 +82,6 @@ Fetch error: http://tradedirect.ch/ => https://tradedirect.ch/: (51, "SSL: no al - - - - @@ -186,33 +155,26 @@ Fetch error: http://tradedirect.ch/ => https://tradedirect.ch/: (51, "SSL: no al - - - - - - + - - - + - + - https://www.kapital.kz/: (51, "SSL: no alternative certificate subject name matches target host name 'www.kapital.kz'") - ---> - - - - - - - diff --git a/src/chrome/content/rules/kaprica.com.xml b/src/chrome/content/rules/kaprica.com.xml index ee798d26caf0..40188ba8e501 100644 --- a/src/chrome/content/rules/kaprica.com.xml +++ b/src/chrome/content/rules/kaprica.com.xml @@ -5,13 +5,13 @@ Fetch error: http://kaprica.com/ => https://kaprica.com/: (60, 'SSL certificate Fetch error: http://www.kaprica.com/ => https://www.kaprica.com/: (60, 'SSL certificate problem: certificate has expired') --> - + - + - - - - - + + + + + + + + + + + + + - + diff --git a/src/chrome/content/rules/katsomo.fi.xml b/src/chrome/content/rules/katsomo.fi.xml index f5824c2f7203..63f7698ab3bf 100644 --- a/src/chrome/content/rules/katsomo.fi.xml +++ b/src/chrome/content/rules/katsomo.fi.xml @@ -34,7 +34,7 @@ - + - + - + @@ -72,7 +72,7 @@ Fetch error: http://www.artsedge.kennedy-center.org/ => https://artsedge.kennedy - + - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/kernsec.org.xml b/src/chrome/content/rules/kernsec.org.xml new file mode 100644 index 000000000000..b5b138f9f632 --- /dev/null +++ b/src/chrome/content/rules/kernsec.org.xml @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/src/chrome/content/rules/kf5.com.xml b/src/chrome/content/rules/kf5.com.xml index 9ff5beb08a97..dc5853a202bb 100644 --- a/src/chrome/content/rules/kf5.com.xml +++ b/src/chrome/content/rules/kf5.com.xml @@ -4,13 +4,13 @@ Disabled by https-everywhere-checker because: Fetch error: http://assetscdn.kf5.com/ => https://assetscdn.kf5.com/: (60, 'SSL certificate problem: certificate has expired') kf5.com is an open site, so there are lots of *.kf5.com sites. Lucky, all of them support https. - + Mismatch: - agents - d --> - + diff --git a/src/chrome/content/rules/khashaev.ru.xml b/src/chrome/content/rules/khashaev.ru.xml index 99db3afc9683..cd1039c7dc20 100644 --- a/src/chrome/content/rules/khashaev.ru.xml +++ b/src/chrome/content/rules/khashaev.ru.xml @@ -4,7 +4,7 @@ - + - + - + - - - - - - - - - - - diff --git a/src/chrome/content/rules/kik.com.xml b/src/chrome/content/rules/kik.com.xml index 16699e05de98..8e075d28327c 100644 --- a/src/chrome/content/rules/kik.com.xml +++ b/src/chrome/content/rules/kik.com.xml @@ -53,7 +53,7 @@ - + https://www.kikisso.com/: (6, 'Could not ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -30,7 +30,7 @@ Fetch error: http://www.kikisso.com/ => https://www.kikisso.com/: (6, 'Could not --> - + - + - + - + https://www.kinogo.co/: Too many redirects ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -37,7 +37,7 @@ Fetch error: http://www.kinogo.co/ => https://www.kinogo.co/: Too many redirects - + https://www.kinogo.net/: Too many redirec For other kinogo coverage, see kinogo.co.xml. --> - + - + - + https://kirlism.ga/: (6, 'Could not resolve host: kirlism.ga') -Fetch error: http://www.kirlism.ga/ => https://www.kirlism.ga/: (6, 'Could not resolve host: www.kirlism.ga') -Fetch error: http://posts.kirlism.ga/ => https://posts.kirlism.ga/: (6, 'Could not resolve host: posts.kirlism.ga') - ---> - - - - - - - diff --git a/src/chrome/content/rules/kiro7.com.xml b/src/chrome/content/rules/kiro7.com.xml new file mode 100644 index 000000000000..62785cbd81f3 --- /dev/null +++ b/src/chrome/content/rules/kiro7.com.xml @@ -0,0 +1,20 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/kitaabun.com.xml b/src/chrome/content/rules/kitaabun.com.xml new file mode 100644 index 000000000000..6d1530ad61d2 --- /dev/null +++ b/src/chrome/content/rules/kitaabun.com.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/kitware.com.xml b/src/chrome/content/rules/kitware.com.xml index 86c7eec9bcca..0f2bdf289918 100644 --- a/src/chrome/content/rules/kitware.com.xml +++ b/src/chrome/content/rules/kitware.com.xml @@ -19,7 +19,7 @@ - + - + - + https://klick2contact.com/: (51, "SSL: Fetch error: http://www.klick2contact.com/ => https://www.klick2contact.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.klick2contactsales.com'") --> - + - + https://www.klick2contactsale ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + - + https://www.klikki.fi/: (51, "SSL: no alternative certificate subject name matches target host name 'www.klikki.fi'") --> - + - + + + + + + diff --git a/src/chrome/content/rules/klikr.pw.xml b/src/chrome/content/rules/klikr.pw.xml new file mode 100644 index 000000000000..69f829f02d1d --- /dev/null +++ b/src/chrome/content/rules/klikr.pw.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/klilu.de.xml b/src/chrome/content/rules/klilu.de.xml index e9c7564e7d32..1520e65b0989 100644 --- a/src/chrome/content/rules/klilu.de.xml +++ b/src/chrome/content/rules/klilu.de.xml @@ -6,7 +6,7 @@ Non-2xx HTTP code: http://groupwise.klilu.de/ (200) => https://groupwise.klilu.d Refused: mtaschule.klilu.de --> - + diff --git a/src/chrome/content/rules/klops.ru.xml b/src/chrome/content/rules/klops.ru.xml index bc85cc6f6f02..2be6885e6b49 100644 --- a/src/chrome/content/rules/klops.ru.xml +++ b/src/chrome/content/rules/klops.ru.xml @@ -37,7 +37,7 @@ velo.klops.ru ¹ ² refused ³ timed out --> - + diff --git a/src/chrome/content/rules/kls.rs.xml b/src/chrome/content/rules/kls.rs.xml index 264111f562f3..e0d1321a12f6 100644 --- a/src/chrome/content/rules/kls.rs.xml +++ b/src/chrome/content/rules/kls.rs.xml @@ -3,7 +3,7 @@ - + - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/kmd.dk.xml b/src/chrome/content/rules/kmd.dk.xml index 1d7ffd2270e2..696c847b3a9a 100644 --- a/src/chrome/content/rules/kmd.dk.xml +++ b/src/chrome/content/rules/kmd.dk.xml @@ -143,7 +143,7 @@ - + - + diff --git a/src/chrome/content/rules/knot-resolver.cz.xml b/src/chrome/content/rules/knot-resolver.cz.xml index 6274942d0869..3950d5c24e8c 100644 --- a/src/chrome/content/rules/knot-resolver.cz.xml +++ b/src/chrome/content/rules/knot-resolver.cz.xml @@ -8,7 +8,7 @@ - + - + - + diff --git a/src/chrome/content/rules/koolspan.com.xml b/src/chrome/content/rules/koolspan.com.xml index 268ebb499961..d7884c0a829f 100644 --- a/src/chrome/content/rules/koolspan.com.xml +++ b/src/chrome/content/rules/koolspan.com.xml @@ -20,7 +20,7 @@ --> - + + + + + + + + diff --git a/src/chrome/content/rules/koptevo.net.xml b/src/chrome/content/rules/koptevo.net.xml index bca2bd35f67d..a57d424ea752 100644 --- a/src/chrome/content/rules/koptevo.net.xml +++ b/src/chrome/content/rules/koptevo.net.xml @@ -30,7 +30,7 @@ x-zone.koptevo.net ⁴ ⁴ self signed ⁷ protocol error --> - + diff --git a/src/chrome/content/rules/korpijaakko.com.xml b/src/chrome/content/rules/korpijaakko.com.xml index fcbe7baedf85..97a933ae4bab 100644 --- a/src/chrome/content/rules/korpijaakko.com.xml +++ b/src/chrome/content/rules/korpijaakko.com.xml @@ -4,7 +4,7 @@ - + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/krasnodar.ru.xml b/src/chrome/content/rules/krasnodar.ru.xml index 23f43710bb0e..fa353d85de5f 100644 --- a/src/chrome/content/rules/krasnodar.ru.xml +++ b/src/chrome/content/rules/krasnodar.ru.xml @@ -91,7 +91,7 @@ www.vin.krasnodar.ru ¹ ⁴ self signed ⁷ protocol error --> - + diff --git a/src/chrome/content/rules/kremlinpress.ru.xml b/src/chrome/content/rules/kremlinpress.ru.xml deleted file mode 100644 index 1caeb2609786..000000000000 --- a/src/chrome/content/rules/kremlinpress.ru.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/krystal.info.xml b/src/chrome/content/rules/krystal.info.xml index 1536bbac1907..bd42f0664ec4 100644 --- a/src/chrome/content/rules/krystal.info.xml +++ b/src/chrome/content/rules/krystal.info.xml @@ -8,7 +8,7 @@ - + - - - - diff --git a/src/chrome/content/rules/ktxtr.com.xml b/src/chrome/content/rules/ktxtr.com.xml new file mode 100644 index 000000000000..f748b8258834 --- /dev/null +++ b/src/chrome/content/rules/ktxtr.com.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/kuna.io.xml b/src/chrome/content/rules/kuna.io.xml index b0dae1dba31f..321151ecc80d 100644 --- a/src/chrome/content/rules/kuna.io.xml +++ b/src/chrome/content/rules/kuna.io.xml @@ -11,7 +11,7 @@ investors.kuna.io different content ¹ mismatch ⁴ self signed --> - + diff --git a/src/chrome/content/rules/kurs.expert.xml b/src/chrome/content/rules/kurs.expert.xml index 7b43dea8969a..f18ed7dfef07 100644 --- a/src/chrome/content/rules/kurs.expert.xml +++ b/src/chrome/content/rules/kurs.expert.xml @@ -5,7 +5,7 @@ Fetch error: http://p2p.kurs.expert/ => https://p2p.kurs.expert/: (51, "SSL: no Fetch error: http://www.p2p.kurs.expert/ => https://www.p2p.kurs.expert/: (6, 'Could not resolve host: www.p2p.kurs.expert') --> - + diff --git a/src/chrome/content/rules/kutub-pdf.net.xml b/src/chrome/content/rules/kutub-pdf.net.xml new file mode 100644 index 000000000000..5b7a1d20e7f7 --- /dev/null +++ b/src/chrome/content/rules/kutub-pdf.net.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/kva.se.xml b/src/chrome/content/rules/kva.se.xml index 6039413aa943..0e2d2ad7db35 100644 --- a/src/chrome/content/rules/kva.se.xml +++ b/src/chrome/content/rules/kva.se.xml @@ -5,7 +5,7 @@ Fetch error: http://kva.se/ => https://kva.se/: (51, "SSL: no alternative certif Fetch error: http://www.kva.se/ => https://www.kva.se/: (51, "SSL: no alternative certificate subject name matches target host name 'www.kva.se'") --> - + diff --git a/src/chrome/content/rules/kylie.com.xml b/src/chrome/content/rules/kylie.com.xml deleted file mode 100644 index 4a21f20d035e..000000000000 --- a/src/chrome/content/rules/kylie.com.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/l214.com.xml b/src/chrome/content/rules/l214.com.xml deleted file mode 100644 index d18051b1ac3f..000000000000 --- a/src/chrome/content/rules/l214.com.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/lackname.org.xml b/src/chrome/content/rules/lackname.org.xml deleted file mode 100644 index d23d8706ee83..000000000000 --- a/src/chrome/content/rules/lackname.org.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - diff --git a/src/chrome/content/rules/ladsholidayguide.com.xml b/src/chrome/content/rules/ladsholidayguide.com.xml index 088bb748976f..e64713fc5b10 100644 --- a/src/chrome/content/rules/ladsholidayguide.com.xml +++ b/src/chrome/content/rules/ladsholidayguide.com.xml @@ -14,7 +14,7 @@ - + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/laiwang.com.xml b/src/chrome/content/rules/laiwang.com.xml index 3e34863e3215..af927afaa35c 100644 --- a/src/chrome/content/rules/laiwang.com.xml +++ b/src/chrome/content/rules/laiwang.com.xml @@ -41,7 +41,7 @@ Fetch error: http://wukong.laiwang.com/ => https://wukong.laiwang.com/: (6, 'Cou ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + diff --git a/src/chrome/content/rules/lambeth.gov.uk-falsemixed.xml b/src/chrome/content/rules/lambeth.gov.uk-falsemixed.xml index a4f954f789fe..84c43b02853a 100644 --- a/src/chrome/content/rules/lambeth.gov.uk-falsemixed.xml +++ b/src/chrome/content/rules/lambeth.gov.uk-falsemixed.xml @@ -8,7 +8,7 @@ - + https://onlinep ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -112,8 +112,8 @@ Non-2xx HTTP code: http://onlinepermits.lambeth.gov.uk/ (200) => https://onlinep - - + + - + @@ -79,7 +79,7 @@ Fetch error: http://eforms.lancashire.gov.uk/ => https://eforms.lancashire.gov.u - + https://planning.l ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -40,7 +40,7 @@ Non-2xx HTTP code: http://planning.lancaster.gov.uk/ (200) => https://planning.l --> - + + + + + + + + + + diff --git a/src/chrome/content/rules/landaire.net.xml b/src/chrome/content/rules/landaire.net.xml index 77798ba459c8..c1699d4e59d4 100644 --- a/src/chrome/content/rules/landaire.net.xml +++ b/src/chrome/content/rules/landaire.net.xml @@ -13,7 +13,7 @@ - + + + + + + + + + diff --git a/src/chrome/content/rules/landalskilife.ch.xml b/src/chrome/content/rules/landalskilife.ch.xml new file mode 100644 index 000000000000..61f63e322d3c --- /dev/null +++ b/src/chrome/content/rules/landalskilife.ch.xml @@ -0,0 +1,17 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/landalskilife.com.xml b/src/chrome/content/rules/landalskilife.com.xml new file mode 100644 index 000000000000..e527be15e08f --- /dev/null +++ b/src/chrome/content/rules/landalskilife.com.xml @@ -0,0 +1,17 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/landalskilife.cz.xml b/src/chrome/content/rules/landalskilife.cz.xml new file mode 100644 index 000000000000..0eea9964f90f --- /dev/null +++ b/src/chrome/content/rules/landalskilife.cz.xml @@ -0,0 +1,17 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/landalskilife.de.xml b/src/chrome/content/rules/landalskilife.de.xml new file mode 100644 index 000000000000..497e97e9d511 --- /dev/null +++ b/src/chrome/content/rules/landalskilife.de.xml @@ -0,0 +1,17 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/landalskilife.fr.xml b/src/chrome/content/rules/landalskilife.fr.xml new file mode 100644 index 000000000000..bd54d00601bf --- /dev/null +++ b/src/chrome/content/rules/landalskilife.fr.xml @@ -0,0 +1,17 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/landalskilife.nl.xml b/src/chrome/content/rules/landalskilife.nl.xml new file mode 100644 index 000000000000..5d89cdb24672 --- /dev/null +++ b/src/chrome/content/rules/landalskilife.nl.xml @@ -0,0 +1,17 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/lanta-net.ru.xml b/src/chrome/content/rules/lanta-net.ru.xml deleted file mode 100644 index c6c111ebdb15..000000000000 --- a/src/chrome/content/rules/lanta-net.ru.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/laronde.com.xml b/src/chrome/content/rules/laronde.com.xml new file mode 100644 index 000000000000..af7594d0dc73 --- /dev/null +++ b/src/chrome/content/rules/laronde.com.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/latticechallenge.org.xml b/src/chrome/content/rules/latticechallenge.org.xml index f2d5bb621f60..0f863701f2b5 100644 --- a/src/chrome/content/rules/latticechallenge.org.xml +++ b/src/chrome/content/rules/latticechallenge.org.xml @@ -4,7 +4,7 @@ - + - + - + + + + + + + diff --git a/src/chrome/content/rules/lbo-news.com.xml b/src/chrome/content/rules/lbo-news.com.xml index 14bbffc87697..99581ab9c093 100644 --- a/src/chrome/content/rules/lbo-news.com.xml +++ b/src/chrome/content/rules/lbo-news.com.xml @@ -4,7 +4,7 @@ - + - + - + + + + + + + + + diff --git a/src/chrome/content/rules/lead-analytics-1000.com.xml b/src/chrome/content/rules/lead-analytics-1000.com.xml index e35af17ca78d..8201fe2f0df6 100644 --- a/src/chrome/content/rules/lead-analytics-1000.com.xml +++ b/src/chrome/content/rules/lead-analytics-1000.com.xml @@ -10,7 +10,7 @@ - + - + - + + + + + + diff --git a/src/chrome/content/rules/lede-project.org.xml b/src/chrome/content/rules/lede-project.org.xml index 1e23ab85ecee..a523306cebf1 100644 --- a/src/chrome/content/rules/lede-project.org.xml +++ b/src/chrome/content/rules/lede-project.org.xml @@ -1,38 +1,19 @@ - - + + + - - - - - - + https://consult.leeds.gov.uk/: (35, 'Unknown SSL protocol error in connection to consult.leeds.gov.uk:443 ') - - Leeds City Council - - For other UK government coverage, see GOV.UK.xml. - - - Nonfunctional hosts in *leeds.gov.uk: - - - (www.)? ʳ - - democracy ʳ - - plandocs ʳ - - planningapplications ʳ - - statistics ʳ - - tithemaps ʳ - - whatson ʳ - - ʳ Refused - - - Problematic hosts in *leeds.gov.uk: - - - artprints ᵐ - - news ᵐ - - ᵐ Mismatched - - - These altnames do not exist: - - - www.observatory.leeds.gov.uk - - - Insecure cookies are set for these domains and hosts: - - - .leeds.gov.uk - - bscmembers.leeds.gov.uk - - jobs.leeds.gov.uk - - librarybookings.leeds.gov.uk - - my.leeds.gov.uk - - observatory.leeds.gov.uk - - publicaccess.leeds.gov.uk - - schoolsonlineservices.leeds.gov.uk - - sport.leeds.gov.uk - - - Mixed content: - - - Images on my, sport from www.leeds.gov.uk ʳ - - ʳ Unsecurable <= refused - ---> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/leerstandsmelder.de.xml b/src/chrome/content/rules/leerstandsmelder.de.xml index 353079893435..b791d933f190 100644 --- a/src/chrome/content/rules/leerstandsmelder.de.xml +++ b/src/chrome/content/rules/leerstandsmelder.de.xml @@ -4,7 +4,7 @@ - + - + - + - + + + + + + + + + + + + diff --git a/src/chrome/content/rules/lekumo.jp.xml b/src/chrome/content/rules/lekumo.jp.xml index e2f23c7a43f3..667b5ec8cb3e 100644 --- a/src/chrome/content/rules/lekumo.jp.xml +++ b/src/chrome/content/rules/lekumo.jp.xml @@ -17,4 +17,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/lend.me.xml b/src/chrome/content/rules/lend.me.xml index 3b201300a4c5..57861bf51f62 100644 --- a/src/chrome/content/rules/lend.me.xml +++ b/src/chrome/content/rules/lend.me.xml @@ -5,13 +5,13 @@ Fetch error: http://lend.me/ => https://lend.me/: (35, 'Unknown SSL protocol err Fetch error: http://www.lend.me/ => https://www.lend.me/: (35, 'Unknown SSL protocol error in connection to www.lend.me:443 ') --> - + - + - - - - - - - - - - - - diff --git a/src/chrome/content/rules/lenta.ru.xml b/src/chrome/content/rules/lenta.ru.xml index af4b8d91e0ec..3fb1de7dfec7 100644 --- a/src/chrome/content/rules/lenta.ru.xml +++ b/src/chrome/content/rules/lenta.ru.xml @@ -33,7 +33,7 @@ Fetch error: http://www.lenta.ru/ => https://www.lenta.ru/: (56, 'Malformed enco ˢ Secured by us --> - + @@ -56,7 +56,7 @@ Fetch error: http://www.lenta.ru/ => https://www.lenta.ru/: (56, 'Malformed enco - + + + + + + + + + + diff --git a/src/chrome/content/rules/lesbianpornfan.com.xml b/src/chrome/content/rules/lesbianpornfan.com.xml index 09c0fe38e179..face5b270f29 100644 --- a/src/chrome/content/rules/lesbianpornfan.com.xml +++ b/src/chrome/content/rules/lesbianpornfan.com.xml @@ -22,7 +22,7 @@ - + - + - + - + diff --git a/src/chrome/content/rules/letvimg.xml b/src/chrome/content/rules/letvimg.xml index df84ed6b6c33..f4aad273052d 100644 --- a/src/chrome/content/rules/letvimg.xml +++ b/src/chrome/content/rules/letvimg.xml @@ -12,7 +12,7 @@ Not exist: - + - + diff --git a/src/chrome/content/rules/lewes.gov.uk.xml b/src/chrome/content/rules/lewes.gov.uk.xml index 0ef6e6aa67bb..d18c9ffa0f95 100644 --- a/src/chrome/content/rules/lewes.gov.uk.xml +++ b/src/chrome/content/rules/lewes.gov.uk.xml @@ -18,7 +18,7 @@ ᶜ Server sends no certificate chain, see https://whatsmychaincert.com --> - + @@ -27,7 +27,7 @@ - + - + https://ggtoon.lezhin.com/: (60, 'SSL certificate problem: certificate has expired') --> - + - + @@ -26,11 +26,11 @@ Fetch error: http://ggtoon.lezhin.com/ => https://ggtoon.lezhin.com/: (60, 'SSL - + - + diff --git a/src/chrome/content/rules/lfeeder.com.xml b/src/chrome/content/rules/lfeeder.com.xml new file mode 100644 index 000000000000..05afe8df3958 --- /dev/null +++ b/src/chrome/content/rules/lfeeder.com.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/lfg.com.xml b/src/chrome/content/rules/lfg.com.xml index 52a07483ee6d..ff75107b758c 100644 --- a/src/chrome/content/rules/lfg.com.xml +++ b/src/chrome/content/rules/lfg.com.xml @@ -35,7 +35,7 @@ - + - + - + + + + + + + diff --git a/src/chrome/content/rules/libraryreserve.com.xml b/src/chrome/content/rules/libraryreserve.com.xml index 8a152a0632ad..ce3cfd175920 100644 --- a/src/chrome/content/rules/libraryreserve.com.xml +++ b/src/chrome/content/rules/libraryreserve.com.xml @@ -28,7 +28,7 @@ - + - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/libuv.org.xml b/src/chrome/content/rules/libuv.org.xml new file mode 100644 index 000000000000..cdd515be66a7 --- /dev/null +++ b/src/chrome/content/rules/libuv.org.xml @@ -0,0 +1,20 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/lichfielddc.gov.uk.xml b/src/chrome/content/rules/lichfielddc.gov.uk.xml index 1f92e54872e9..18bbef23f234 100644 --- a/src/chrome/content/rules/lichfielddc.gov.uk.xml +++ b/src/chrome/content/rules/lichfielddc.gov.uk.xml @@ -24,7 +24,7 @@ Mixed content: - css, on: - + - spending from www-prev.lichfielddc.gov.uk - www2 from www.lichfielddc.gov.uk ˢ @@ -47,7 +47,7 @@ --> - + https://specials.lidl.co.uk/: (6, 'C ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -54,7 +54,7 @@ Fetch error: http://specials.lidl.co.uk/ => https://specials.lidl.co.uk/: (6, 'C - + - + - + + + + + + + + + + diff --git a/src/chrome/content/rules/lightreading.com.xml b/src/chrome/content/rules/lightreading.com.xml index bde8bb61fb30..4984c8aee04f 100644 --- a/src/chrome/content/rules/lightreading.com.xml +++ b/src/chrome/content/rules/lightreading.com.xml @@ -63,17 +63,15 @@ --> - + - + - + diff --git a/src/chrome/content/rules/lightwidget.com.xml b/src/chrome/content/rules/lightwidget.com.xml index 0f1b15f229c5..cbdaaad2b773 100644 --- a/src/chrome/content/rules/lightwidget.com.xml +++ b/src/chrome/content/rules/lightwidget.com.xml @@ -11,7 +11,7 @@ Fetch error: http://www.lightwidget.com/ => https://www.lightwidget.com/: (51, " ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -21,7 +21,7 @@ Fetch error: http://www.lightwidget.com/ => https://www.lightwidget.com/: (51, " --> - + - + - - - - - - - - - + - + diff --git a/src/chrome/content/rules/linear.enterprises.xml b/src/chrome/content/rules/linear.enterprises.xml deleted file mode 100644 index 46a945a6f038..000000000000 --- a/src/chrome/content/rules/linear.enterprises.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/lingvo.org.xml b/src/chrome/content/rules/lingvo.org.xml new file mode 100644 index 000000000000..8339bb1897f7 --- /dev/null +++ b/src/chrome/content/rules/lingvo.org.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/link-page.info.xml b/src/chrome/content/rules/link-page.info.xml index a0471a216f13..00b9a7312bde 100644 --- a/src/chrome/content/rules/link-page.info.xml +++ b/src/chrome/content/rules/link-page.info.xml @@ -1,8 +1,4 @@ - - + @@ -12,7 +8,7 @@ - + - - - - - diff --git a/src/chrome/content/rules/linksnappy.com.xml b/src/chrome/content/rules/linksnappy.com.xml index 9861b94467c4..78abf85d3b09 100644 --- a/src/chrome/content/rules/linksnappy.com.xml +++ b/src/chrome/content/rules/linksnappy.com.xml @@ -17,7 +17,7 @@ - + + + + + + + diff --git a/src/chrome/content/rules/linuxcenter.ru.xml b/src/chrome/content/rules/linuxcenter.ru.xml new file mode 100644 index 000000000000..933060fb80f8 --- /dev/null +++ b/src/chrome/content/rules/linuxcenter.ru.xml @@ -0,0 +1,28 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/linuxconfig.org.xml b/src/chrome/content/rules/linuxconfig.org.xml index 0d3e280a3f2e..a1ad6b8f7659 100644 --- a/src/chrome/content/rules/linuxconfig.org.xml +++ b/src/chrome/content/rules/linuxconfig.org.xml @@ -23,7 +23,7 @@ --> - + - + - + - + - + + + + + + + diff --git a/src/chrome/content/rules/listverse.com.xml b/src/chrome/content/rules/listverse.com.xml new file mode 100644 index 000000000000..e99bccc995df --- /dev/null +++ b/src/chrome/content/rules/listverse.com.xml @@ -0,0 +1,12 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/literaryreview.co.uk.xml b/src/chrome/content/rules/literaryreview.co.uk.xml index 21886110ebd4..9ce3962a9d5a 100644 --- a/src/chrome/content/rules/literaryreview.co.uk.xml +++ b/src/chrome/content/rules/literaryreview.co.uk.xml @@ -4,7 +4,7 @@ - + + + + + + + diff --git a/src/chrome/content/rules/livecomm.ru.xml b/src/chrome/content/rules/livecomm.ru.xml index 1869c65fdc3d..37a6b5ccb2b9 100644 --- a/src/chrome/content/rules/livecomm.ru.xml +++ b/src/chrome/content/rules/livecomm.ru.xml @@ -5,7 +5,7 @@ Fetch error: http://livecomm.ru/ => https://livecomm.ru/: (60, 'SSL certificate Fetch error: http://www.livecomm.ru/ => https://www.livecomm.ru/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + diff --git a/src/chrome/content/rules/livetrucking.com.xml b/src/chrome/content/rules/livetrucking.com.xml new file mode 100644 index 000000000000..d10bde9fd49e --- /dev/null +++ b/src/chrome/content/rules/livetrucking.com.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/livingwage.org.uk.xml b/src/chrome/content/rules/livingwage.org.uk.xml index 96c23eb6c1b4..710e4a7003a8 100644 --- a/src/chrome/content/rules/livingwage.org.uk.xml +++ b/src/chrome/content/rules/livingwage.org.uk.xml @@ -14,7 +14,7 @@ - + + + + + + + + + + + diff --git a/src/chrome/content/rules/lloydsbankinggroup.com.xml b/src/chrome/content/rules/lloydsbankinggroup.com.xml index 1227fe36ef72..c12a560d72a5 100644 --- a/src/chrome/content/rules/lloydsbankinggroup.com.xml +++ b/src/chrome/content/rules/lloydsbankinggroup.com.xml @@ -14,7 +14,7 @@ - + + + + + + + + + + diff --git a/src/chrome/content/rules/lmms.io.xml b/src/chrome/content/rules/lmms.io.xml index 1c82a3fd1cae..d259166a3b79 100644 --- a/src/chrome/content/rules/lmms.io.xml +++ b/src/chrome/content/rules/lmms.io.xml @@ -4,7 +4,7 @@ - + - - - - - - - - - - - diff --git a/src/chrome/content/rules/localizejs.com.xml b/src/chrome/content/rules/localizejs.com.xml deleted file mode 100644 index e71fd4100849..000000000000 --- a/src/chrome/content/rules/localizejs.com.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/localmonero.co.xml b/src/chrome/content/rules/localmonero.co.xml new file mode 100644 index 000000000000..06a0ca47f416 --- /dev/null +++ b/src/chrome/content/rules/localmonero.co.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/localmotors.com.xml b/src/chrome/content/rules/localmotors.com.xml index 1ab4e0526bf9..e329aa9f1da1 100644 --- a/src/chrome/content/rules/localmotors.com.xml +++ b/src/chrome/content/rules/localmotors.com.xml @@ -19,7 +19,7 @@ --> - + - + https://gets.lockscalecompare. - www.gets.lockscalecompare.com --> - + - + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/lofter.xml b/src/chrome/content/rules/lofter.xml deleted file mode 100644 index 812b5a34c27e..000000000000 --- a/src/chrome/content/rules/lofter.xml +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/logcg.com.xml b/src/chrome/content/rules/logcg.com.xml index 79a90215034d..4ae9825b9b64 100644 --- a/src/chrome/content/rules/logcg.com.xml +++ b/src/chrome/content/rules/logcg.com.xml @@ -4,7 +4,7 @@ - + + + + + + + + + + + diff --git a/src/chrome/content/rules/london-fire.gov.uk.xml b/src/chrome/content/rules/london-fire.gov.uk.xml index c7af59b2247b..2363c72ed863 100644 --- a/src/chrome/content/rules/london-fire.gov.uk.xml +++ b/src/chrome/content/rules/london-fire.gov.uk.xml @@ -33,7 +33,7 @@ --> - + - + + + + + + + + + + + diff --git a/src/chrome/content/rules/lostpic.net.xml b/src/chrome/content/rules/lostpic.net.xml new file mode 100644 index 000000000000..b3714cc89895 --- /dev/null +++ b/src/chrome/content/rules/lostpic.net.xml @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/lotro.com.xml b/src/chrome/content/rules/lotro.com.xml index 3d8f96415f85..2a25896e8af3 100644 --- a/src/chrome/content/rules/lotro.com.xml +++ b/src/chrome/content/rules/lotro.com.xml @@ -13,7 +13,7 @@ Fetch error: http://signup.lotro.com/ => https://signup.lotro.com/: (60, 'SSL ce ² Cert mismatched for redirect destination --> - + diff --git a/src/chrome/content/rules/lpgenerator.ru.xml b/src/chrome/content/rules/lpgenerator.ru.xml index a9bc1f949ae5..046c21a46107 100644 --- a/src/chrome/content/rules/lpgenerator.ru.xml +++ b/src/chrome/content/rules/lpgenerator.ru.xml @@ -6,7 +6,7 @@ - + - + - + - + + + + + + + + + diff --git a/src/chrome/content/rules/lubakiagenda.net.xml b/src/chrome/content/rules/lubakiagenda.net.xml index b9e76e885548..2f7a3b7f2d4e 100644 --- a/src/chrome/content/rules/lubakiagenda.net.xml +++ b/src/chrome/content/rules/lubakiagenda.net.xml @@ -4,7 +4,7 @@ - + https://s.luca-steeb.com/css/style.css: (6, 'Could not resolve host: s.luca-steeb.com') -Fetch error: http://blog.luca-steeb.com/ => https://blog.luca-steeb.com/: (6, 'Could not resolve host: blog.luca-steeb.com') -Fetch error: http://s.luca-steeb.com/ => https://s.luca-steeb.com/: (6, 'Could not resolve host: s.luca-steeb.com') - - Insecure cookies are set for these hosts: ᶜ - - - luca-steeb.com - - blog.luca-steeb.com - - www.luca-steeb.com - - ᶜ See https://owasp.org/index.php/SecureFlag - ---> - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/luckyreferrals.com.xml b/src/chrome/content/rules/luckyreferrals.com.xml index 725c7e80065a..b5584c5170f4 100644 --- a/src/chrome/content/rules/luckyreferrals.com.xml +++ b/src/chrome/content/rules/luckyreferrals.com.xml @@ -20,7 +20,7 @@ Fetch error: http://www.luckyreferrals.com/ => https://www.luckyreferrals.com/: ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -30,7 +30,7 @@ Fetch error: http://www.luckyreferrals.com/ => https://www.luckyreferrals.com/: --> - + - + https://my.luosimao.com/ (50 - + - + - + - + - - + - + diff --git a/src/chrome/content/rules/lushstories.com.xml b/src/chrome/content/rules/lushstories.com.xml index 7e3a109eae28..16b3ea6a7087 100644 --- a/src/chrome/content/rules/lushstories.com.xml +++ b/src/chrome/content/rules/lushstories.com.xml @@ -55,7 +55,7 @@ - + - + - + + + + + diff --git a/src/chrome/content/rules/m2c.ru.xml b/src/chrome/content/rules/m2c.ru.xml deleted file mode 100644 index 7a81d318b145..000000000000 --- a/src/chrome/content/rules/m2c.ru.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - diff --git a/src/chrome/content/rules/m2ch.xml b/src/chrome/content/rules/m2ch.xml new file mode 100644 index 000000000000..594638467a6c --- /dev/null +++ b/src/chrome/content/rules/m2ch.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/m3connect.xml b/src/chrome/content/rules/m3connect.xml index 9ff6d0f2bf8d..ae8ab84edd2c 100644 --- a/src/chrome/content/rules/m3connect.xml +++ b/src/chrome/content/rules/m3connect.xml @@ -2,8 +2,5 @@ - - + diff --git a/src/chrome/content/rules/maajim.com.xml b/src/chrome/content/rules/maajim.com.xml new file mode 100644 index 000000000000..b9daa7f8534b --- /dev/null +++ b/src/chrome/content/rules/maajim.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/madadsmedia.com.xml b/src/chrome/content/rules/madadsmedia.com.xml index b36474f5c5e7..be1342029ac3 100644 --- a/src/chrome/content/rules/madadsmedia.com.xml +++ b/src/chrome/content/rules/madadsmedia.com.xml @@ -19,7 +19,7 @@ Fetch error: http://www.madadsmedia.com/ => https://www.madadsmedia.com/: Too ma ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -34,7 +34,7 @@ Fetch error: http://www.madadsmedia.com/ => https://www.madadsmedia.com/: Too ma --> - + - + https://madgex.zendesk.com/: Too many ᵐ Mismatched --> - + @@ -26,7 +26,7 @@ Fetch error: http://support.madgex.com/ => https://madgex.zendesk.com/: Too many - + https://www.magnum-ci.com/: (7, 'Faile blog.magnum-ci.com mismatch --> - + diff --git a/src/chrome/content/rules/maist.jp.xml b/src/chrome/content/rules/maist.jp.xml index 26043f11d92b..e7bfe411e2ee 100644 --- a/src/chrome/content/rules/maist.jp.xml +++ b/src/chrome/content/rules/maist.jp.xml @@ -19,4 +19,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/make-trivial-rule b/src/chrome/content/rules/make-trivial-rule index 5eb61affc285..8a7d9c1a2ee8 100755 --- a/src/chrome/content/rules/make-trivial-rule +++ b/src/chrome/content/rules/make-trivial-rule @@ -51,7 +51,14 @@ fi cat > "$dest" < - + https://maldon.gov.uk/: (28, 'Connection timed out after 20000 milliseconds') - - Maldon District Council - For other UK government coverage, see GOV.UK.xml. + Non-functional hosts + Timeout was reached: + - msptclive.maldon.gov.uk + - recruit.maldon.gov.uk - Nonfunctional hosts in *maldon.gov.uk: - - - msptclive ᵈ - - ᵈ Dropped - - - Insecure cookies are set for these domains and hosts: - + Peer certificate cannot be authenticated with given CA certificates: - maldon.gov.uk - - www.maldon.gov.uk - - .www.maldon.gov.uk ---> - + Incomplete certificate chain error: + - ssl2.maldon.gov.uk + 4xx client error: + - mdcmaps.maldon.gov.uk +--> + + + - - - - - - - - + - + to="https:" /> diff --git a/src/chrome/content/rules/mameworld.info.xml b/src/chrome/content/rules/mameworld.info.xml new file mode 100644 index 000000000000..2fd2f9cc805b --- /dev/null +++ b/src/chrome/content/rules/mameworld.info.xml @@ -0,0 +1,204 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/manager.mijndomeinreseller.nl.xml b/src/chrome/content/rules/manager.mijndomeinreseller.nl.xml index c833c0421ec0..6d56a3e8fa84 100644 --- a/src/chrome/content/rules/manager.mijndomeinreseller.nl.xml +++ b/src/chrome/content/rules/manager.mijndomeinreseller.nl.xml @@ -1,5 +1,5 @@ - + diff --git a/src/chrome/content/rules/manchesterdigital.com.xml b/src/chrome/content/rules/manchesterdigital.com.xml index fd411e7e772c..6ecdb5edbf8c 100644 --- a/src/chrome/content/rules/manchesterdigital.com.xml +++ b/src/chrome/content/rules/manchesterdigital.com.xml @@ -4,7 +4,7 @@ - + - - + + + + + + + + + + diff --git a/src/chrome/content/rules/mandrakewine.com.xml b/src/chrome/content/rules/mandrakewine.com.xml new file mode 100644 index 000000000000..8c44b8e5c526 --- /dev/null +++ b/src/chrome/content/rules/mandrakewine.com.xml @@ -0,0 +1,18 @@ + + + + + + + + diff --git a/src/chrome/content/rules/manning.com.xml b/src/chrome/content/rules/manning.com.xml index 05550e6fb012..03b829bbd128 100644 --- a/src/chrome/content/rules/manning.com.xml +++ b/src/chrome/content/rules/manning.com.xml @@ -1,6 +1,5 @@ @@ -8,6 +7,7 @@ ycart.manning.com different content + diff --git a/src/chrome/content/rules/manpagez.com.xml b/src/chrome/content/rules/manpagez.com.xml new file mode 100644 index 000000000000..8cd78a998232 --- /dev/null +++ b/src/chrome/content/rules/manpagez.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/mansfield.gov.uk.xml b/src/chrome/content/rules/mansfield.gov.uk.xml index 4f1992d1b4bb..3b25c84fa690 100644 --- a/src/chrome/content/rules/mansfield.gov.uk.xml +++ b/src/chrome/content/rules/mansfield.gov.uk.xml @@ -34,7 +34,7 @@ --> - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/markbillingham.com.xml b/src/chrome/content/rules/markbillingham.com.xml index 1b920c3dc39c..21aab3b55c58 100644 --- a/src/chrome/content/rules/markbillingham.com.xml +++ b/src/chrome/content/rules/markbillingham.com.xml @@ -5,7 +5,7 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/marketoracle.co.uk.xml b/src/chrome/content/rules/marketoracle.co.uk.xml new file mode 100644 index 000000000000..4efa89d8f08d --- /dev/null +++ b/src/chrome/content/rules/marketoracle.co.uk.xml @@ -0,0 +1,17 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/marksdailyapple.xml b/src/chrome/content/rules/marksdailyapple.xml index 0d31f9e8f1d9..c5fd9057fa19 100644 --- a/src/chrome/content/rules/marksdailyapple.xml +++ b/src/chrome/content/rules/marksdailyapple.xml @@ -1,9 +1,9 @@ - + - + - + diff --git a/src/chrome/content/rules/mastercard.us.xml b/src/chrome/content/rules/mastercard.us.xml index 2c8558353362..c283fec6e539 100644 --- a/src/chrome/content/rules/mastercard.us.xml +++ b/src/chrome/content/rules/mastercard.us.xml @@ -16,7 +16,7 @@ - + + + + + + + + + + diff --git a/src/chrome/content/rules/mathbabe.org.xml b/src/chrome/content/rules/mathbabe.org.xml new file mode 100644 index 000000000000..587356a0fff4 --- /dev/null +++ b/src/chrome/content/rules/mathbabe.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/mathcha.io.xml b/src/chrome/content/rules/mathcha.io.xml new file mode 100644 index 000000000000..e36e58e2a0ca --- /dev/null +++ b/src/chrome/content/rules/mathcha.io.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/mathjax.xml b/src/chrome/content/rules/mathjax.xml deleted file mode 100644 index 495c354f14e1..000000000000 --- a/src/chrome/content/rules/mathjax.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/matplotlib.org.xml b/src/chrome/content/rules/matplotlib.org.xml new file mode 100644 index 000000000000..f913ca819b81 --- /dev/null +++ b/src/chrome/content/rules/matplotlib.org.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/matraxis.net.xml b/src/chrome/content/rules/matraxis.net.xml index 229cc6a6ab9f..82eb5ecdd578 100644 --- a/src/chrome/content/rules/matraxis.net.xml +++ b/src/chrome/content/rules/matraxis.net.xml @@ -19,7 +19,7 @@ --> - + - + - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/mattermark.com.xml b/src/chrome/content/rules/mattermark.com.xml index 26a4194f5419..90fa1d3f19f0 100644 --- a/src/chrome/content/rules/mattermark.com.xml +++ b/src/chrome/content/rules/mattermark.com.xml @@ -11,7 +11,7 @@ Fetch error: http://wordpress.mattermark.com/ => https://wordpress.mattermark.co - support.mattermark.com --> - + @@ -30,7 +30,7 @@ Fetch error: http://wordpress.mattermark.com/ => https://wordpress.mattermark.co - + + + + + + + + + diff --git a/src/chrome/content/rules/mazesp.in.xml b/src/chrome/content/rules/mazesp.in.xml new file mode 100644 index 000000000000..57e0d1c9d317 --- /dev/null +++ b/src/chrome/content/rules/mazesp.in.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/mbitcasino.com.xml b/src/chrome/content/rules/mbitcasino.com.xml index 53bb112ccbe2..5d2b18a247a2 100644 --- a/src/chrome/content/rules/mbitcasino.com.xml +++ b/src/chrome/content/rules/mbitcasino.com.xml @@ -5,7 +5,7 @@ - + - + https://data.mcc.gov/: (35, 'Unknown SSL pr --> - + @@ -15,7 +15,7 @@ Fetch error: http://data.mcc.gov/ => https://data.mcc.gov/: (35, 'Unknown SSL pr - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/mcvuk.com.xml b/src/chrome/content/rules/mcvuk.com.xml index 195757b2ba5c..1de8b7ae338b 100644 --- a/src/chrome/content/rules/mcvuk.com.xml +++ b/src/chrome/content/rules/mcvuk.com.xml @@ -27,7 +27,7 @@ --> - + + + + + + + + + + diff --git a/src/chrome/content/rules/mediaconnect.no.xml b/src/chrome/content/rules/mediaconnect.no.xml index 9755e3071bbd..b9f36e0549f9 100644 --- a/src/chrome/content/rules/mediaconnect.no.xml +++ b/src/chrome/content/rules/mediaconnect.no.xml @@ -9,7 +9,7 @@ - + - + - + https://tracking.mediamarkt.de/: (60, 'SSL certificate problem: unable to get local issuer certificate') - Video-Downloadtest.mediamarkt.de ³ abfrage.mediamarkt.de ⁷ ankauf.mediamarkt.de ⁵ @@ -39,6 +36,7 @@ software-download.mediamarkt.de/: (52, 'Empty reply from server') stagenew.mediamarkt.de ³ swdltest.mediamarkt.de ³ tarife.mediamarkt.de ⁶ +tracking.mediamarkt.de/: (incomplete cert chain) hb.tracking.mediamarkt.de ⁴ video-download.mediamarkt.de/: (52, 'Empty reply from server') gewinnspiel.mediamarkt.de mixed content @@ -53,7 +51,7 @@ hotlist.mediamarkt.de mixed content ⁶ redirect ⁷ protocol error --> - + @@ -73,7 +71,6 @@ hotlist.mediamarkt.de mixed content - diff --git a/src/chrome/content/rules/mediaroots.org.xml b/src/chrome/content/rules/mediaroots.org.xml index 85f4cb2e8704..0f677c4b8f26 100644 --- a/src/chrome/content/rules/mediaroots.org.xml +++ b/src/chrome/content/rules/mediaroots.org.xml @@ -16,7 +16,7 @@ - + https://questions.med - public from ^medicaid.gov --> - + @@ -50,7 +50,7 @@ Non-2xx HTTP code: http://questions.medicaid.gov/ (200) => https://questions.med - + https://www4c.medicare.gov/: (6, 'Cou Insecure cookies are set for these hosts: - + - medicare.gov - enrollmentcenter.medicare.gov - es.medicare.gov @@ -40,7 +40,7 @@ Fetch error: http://www4c.medicare.gov/ => https://www4c.medicare.gov/: (6, 'Cou ˢ Secured by us --> - + @@ -61,7 +61,7 @@ Fetch error: http://www4c.medicare.gov/ => https://www4c.medicare.gov/: (6, 'Cou - + diff --git a/src/chrome/content/rules/meetmecdna.com.xml b/src/chrome/content/rules/meetmecdna.com.xml index 0e07969a9ccc..049fa92c1eba 100644 --- a/src/chrome/content/rules/meetmecdna.com.xml +++ b/src/chrome/content/rules/meetmecdna.com.xml @@ -9,7 +9,7 @@ - + https://tickets.megaadventu Non-functional subdomain: - (www) (unknown protocol) --> - + diff --git a/src/chrome/content/rules/megamozg.ru.xml b/src/chrome/content/rules/megamozg.ru.xml index 0aa4e9c2bfa8..966fd01f65ff 100644 --- a/src/chrome/content/rules/megamozg.ru.xml +++ b/src/chrome/content/rules/megamozg.ru.xml @@ -24,7 +24,7 @@ --> - + - + + + + + + + diff --git a/src/chrome/content/rules/member-hsbc-group.com.xml b/src/chrome/content/rules/member-hsbc-group.com.xml index d699566603d1..451680311434 100644 --- a/src/chrome/content/rules/member-hsbc-group.com.xml +++ b/src/chrome/content/rules/member-hsbc-group.com.xml @@ -18,7 +18,7 @@ --> - + - - + + + + + + + + diff --git a/src/chrome/content/rules/mentalhelp.net.xml b/src/chrome/content/rules/mentalhelp.net.xml index 43036b6a937e..d1f9af6c3e87 100644 --- a/src/chrome/content/rules/mentalhelp.net.xml +++ b/src/chrome/content/rules/mentalhelp.net.xml @@ -40,8 +40,8 @@ --> - - + + https://menulog.com.au/: (51, "SSL: no al - www.menulog.com.au --> - + @@ -21,7 +21,7 @@ Fetch error: http://menulog.com.au/ => https://menulog.com.au/: (51, "SSL: no al - + + + + + + + + + + diff --git a/src/chrome/content/rules/mercycorps.org.xml b/src/chrome/content/rules/mercycorps.org.xml index f591185df45e..b415238102c3 100644 --- a/src/chrome/content/rules/mercycorps.org.xml +++ b/src/chrome/content/rules/mercycorps.org.xml @@ -12,7 +12,7 @@ - + - + - + https://secure.met.police.uk/: (35, ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -50,7 +50,7 @@ Fetch error: http://secure.met.police.uk/ => https://secure.met.police.uk/: (35, - + @@ -31,7 +31,7 @@ --> - + - + https://reservati ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -20,7 +20,7 @@ Non-2xx HTTP code: http://reservations.mgmmirage.com/ (200) => https://reservati --> - + - + @@ -34,7 +34,7 @@ Non-2xx HTTP code: http://info.mheducation.com/rs/mheducation/images/mcgrawhill- - + https://mhecareers.silkroad.com/default.aspx: (6, 'Could not resolve host: mhecareers.silkroad.com') -Non-2xx HTTP code: http://info.mheducation.com/rs/mheducation/images/Power%20of%20Thanks%20Sample%20Chapter.pdf (200) => https://na-sj03.marketo.com/rs/mheducation/images/Power%20of%20Thanks%20Sample%20Chapter.pdf (403) -Fetch error: http://status.mheducation.com/ => https://status.mheducation.com/: (51, "SSL: no alternative certificate subject name matches target host name 'status.mheducation.com'") -Fetch error: http://careers.mheducation.com/ => https://mhecareers.silkroad.com/: (6, 'Could not resolve host: mhecareers.silkroad.com') + For rules causing false/broken MCB, see mheducation.com-falsemixed.xml. @@ -54,7 +50,7 @@ Fetch error: http://careers.mheducation.com/ => https://mhecareers.silkroad.com/ - css on createwp.customer.mheducation.com from $self ˢ - Images, on: - + - dev, pqa, www from $self ˢ - paris from highered.mheducation.com ˢ - shopdev from dev.mheducation.com ˢ @@ -64,17 +60,16 @@ Fetch error: http://careers.mheducation.com/ => https://mhecareers.silkroad.com/ ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + - + - @@ -82,10 +77,9 @@ Fetch error: http://careers.mheducation.com/ => https://mhecareers.silkroad.com/ + - - + @@ -96,7 +90,6 @@ Fetch error: http://careers.mheducation.com/ => https://mhecareers.silkroad.com/ - @@ -128,7 +121,7 @@ Fetch error: http://careers.mheducation.com/ => https://mhecareers.silkroad.com/ - + https://mhecareers.silkroad.com/ - - - @@ -150,13 +139,9 @@ Fetch error: http://careers.mheducation.com/ => https://mhecareers.silkroad.com/ - - diff --git a/src/chrome/content/rules/mhfa.com.au.xml b/src/chrome/content/rules/mhfa.com.au.xml new file mode 100644 index 000000000000..e5e001fe8265 --- /dev/null +++ b/src/chrome/content/rules/mhfa.com.au.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/mhfi.com.xml b/src/chrome/content/rules/mhfi.com.xml index 44753706a9ad..54424c2672d9 100644 --- a/src/chrome/content/rules/mhfi.com.xml +++ b/src/chrome/content/rules/mhfi.com.xml @@ -19,7 +19,7 @@ --> - + + + + + + + + + + + diff --git a/src/chrome/content/rules/mi-pro.co.uk.xml b/src/chrome/content/rules/mi-pro.co.uk.xml index 3fd52dcc247e..41208126636b 100644 --- a/src/chrome/content/rules/mi-pro.co.uk.xml +++ b/src/chrome/content/rules/mi-pro.co.uk.xml @@ -30,7 +30,7 @@ --> - + + + + + + + + + + diff --git a/src/chrome/content/rules/midkemiaonline.xml b/src/chrome/content/rules/midkemiaonline.xml index a300d1cc674c..55a8a295f983 100644 --- a/src/chrome/content/rules/midkemiaonline.xml +++ b/src/chrome/content/rules/midkemiaonline.xml @@ -5,7 +5,7 @@ Fetch error: http://midkemiaonline.com/ => https://midkemiaonline.com/: (6, 'Cou Fetch error: http://www.midkemiaonline.com/ => https://www.midkemiaonline.com/: (6, 'Could not resolve host: www.midkemiaonline.com') --> - + diff --git a/src/chrome/content/rules/mijnusenet.nl.xml b/src/chrome/content/rules/mijnusenet.nl.xml index 3c000c5d3424..8f785231234f 100644 --- a/src/chrome/content/rules/mijnusenet.nl.xml +++ b/src/chrome/content/rules/mijnusenet.nl.xml @@ -28,7 +28,7 @@ --> - + - + - + diff --git a/src/chrome/content/rules/milk.com.xml b/src/chrome/content/rules/milk.com.xml new file mode 100644 index 000000000000..7c8b47e7cb5c --- /dev/null +++ b/src/chrome/content/rules/milk.com.xml @@ -0,0 +1,11 @@ + + + + + + + diff --git a/src/chrome/content/rules/minavardkontakter.se.xml b/src/chrome/content/rules/minavardkontakter.se.xml new file mode 100644 index 000000000000..753793ba3f00 --- /dev/null +++ b/src/chrome/content/rules/minavardkontakter.se.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/mindleaking.org.xml b/src/chrome/content/rules/mindleaking.org.xml deleted file mode 100644 index 0e852be7dac3..000000000000 --- a/src/chrome/content/rules/mindleaking.org.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/minetrack.xml b/src/chrome/content/rules/minetrack.xml index 927aa8a6d5d9..bb5c14b72a07 100644 --- a/src/chrome/content/rules/minetrack.xml +++ b/src/chrome/content/rules/minetrack.xml @@ -7,4 +7,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/mini-dweeb.org.xml b/src/chrome/content/rules/mini-dweeb.org.xml new file mode 100644 index 000000000000..d28896484b8c --- /dev/null +++ b/src/chrome/content/rules/mini-dweeb.org.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/minifree.org.xml b/src/chrome/content/rules/minifree.org.xml index ecf5802da27f..8bf27fc8beb4 100644 --- a/src/chrome/content/rules/minifree.org.xml +++ b/src/chrome/content/rules/minifree.org.xml @@ -12,7 +12,7 @@ - + + + + + + + diff --git a/src/chrome/content/rules/mipt.ru.xml b/src/chrome/content/rules/mipt.ru.xml index a1e727f6bc86..564c7636039a 100644 --- a/src/chrome/content/rules/mipt.ru.xml +++ b/src/chrome/content/rules/mipt.ru.xml @@ -14,7 +14,7 @@ --> - + https://mir-politika.com/: (60, 'SSL ce Fetch error: http://www.mir-politika.com/ => https://mir-politika.com/: (60, 'SSL certificate problem: unable to get local issuer certificate') list. mismatcha www.mir-politika.com mismatch --> - + diff --git a/src/chrome/content/rules/miracl.com.xml b/src/chrome/content/rules/miracl.com.xml index b3c24ad29c93..a39f2e24a4fe 100644 --- a/src/chrome/content/rules/miracl.com.xml +++ b/src/chrome/content/rules/miracl.com.xml @@ -29,7 +29,7 @@ - + https://mirtv33.ru/: (7, 'Failed to connect t Fetch error: http://www.mirtv33.ru/ => https://www.mirtv33.ru/: (7, 'Failed to connect to www.mirtv33.ru port 443: Connection refused') --> - + diff --git a/src/chrome/content/rules/mk.co.kr.xml b/src/chrome/content/rules/mk.co.kr.xml index f6f6446dd45d..3a3f84567a9c 100644 --- a/src/chrome/content/rules/mk.co.kr.xml +++ b/src/chrome/content/rules/mk.co.kr.xml @@ -2,14 +2,14 @@ Mixed content: - css, on: - - - estate from $self ˢ - - estate from common.mk.co.kr ˢ + + - estate from $self ˢ + - estate from common.mk.co.kr ˢ - Images, on: - - - estate from file.mk.co.kr ˢ - - estate from img.mk.co.kr ˢ + + - estate from file.mk.co.kr ˢ + - estate from img.mk.co.kr ˢ ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ @@ -26,7 +26,7 @@ - + - + + + + + + + diff --git a/src/chrome/content/rules/mobile-ventures.com.xml b/src/chrome/content/rules/mobile-ventures.com.xml new file mode 100644 index 000000000000..35b8c51bc8cc --- /dev/null +++ b/src/chrome/content/rules/mobile-ventures.com.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/mobile.de.xml b/src/chrome/content/rules/mobile.de.xml index aa1dba966595..36fbf2991b35 100644 --- a/src/chrome/content/rules/mobile.de.xml +++ b/src/chrome/content/rules/mobile.de.xml @@ -1,43 +1,92 @@ - - - - - - - - - - - - - - - - - - + Non-functional subdomains: - - - + - adstream (r) + - apptest (r) + - callpush (t) + - amsconsul.corp (t) + - analytics.corp (t) + - ci-jenkins.corp (t) + - kamsconsul.corp (t) + - registry.corp (t) + - tech.corp (t) + - advertising.dev (i) + - newsroom.dev (t) + - finanzierung (i) + - finanzierung-test (m) + - test.finanzierungsanfrage (e) + - www.fr (m) + - imode (HTTP error 404) + - info (m) + - mailin46-1 (t) + - mailin46-2 (t) + - mailin46-3 (t) + - mailin47-1 (t) + - mailin47-2 (t) + - mailin47-3 (t) + - mailout46-1 (t) + - mailout46-2 (t) + - mailout46-3 (t) + - mailout46-4 (t) + - mailout47-1 (t) + - mailout47-2 (t) + - mailout47-3 (t) + - mailout47-4 (t) + - marktdaten (t) + - presse (HTTP error 404) + - promo (i) + - sandbox (t) + - survey (i) + + e: expired certificate + h: http redirect + i: invalid certificate chain + m: certificate mismatch + r: connection refused + s: self-signed certificate + t: timeout on https +--> + - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + to="https:" /> diff --git a/src/chrome/content/rules/mobileapptracking.com.xml b/src/chrome/content/rules/mobileapptracking.com.xml deleted file mode 100644 index d4fa1b81bfff..000000000000 --- a/src/chrome/content/rules/mobileapptracking.com.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/mobileworldcongress.com.xml b/src/chrome/content/rules/mobileworldcongress.com.xml index 55c5c8dc5e38..7e859b2e37b0 100644 --- a/src/chrome/content/rules/mobileworldcongress.com.xml +++ b/src/chrome/content/rules/mobileworldcongress.com.xml @@ -4,7 +4,7 @@ - + https://forum.mobilism.me/: Too many r Fetch error: http://images.mobilism.me/ => https://images.mobilism.me/: (28, 'Operation timed out after 30001 milliseconds with 0 bytes received') --> - + diff --git a/src/chrome/content/rules/moderngov.co.uk.xml b/src/chrome/content/rules/moderngov.co.uk.xml index 649146284a30..9bd4f98bcc43 100644 --- a/src/chrome/content/rules/moderngov.co.uk.xml +++ b/src/chrome/content/rules/moderngov.co.uk.xml @@ -72,7 +72,7 @@ Fetch error: http://powys.moderngov.co.uk/ => https://powys.moderngov.co.uk/: To ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -156,7 +156,7 @@ Fetch error: http://powys.moderngov.co.uk/ => https://powys.moderngov.co.uk/: To --> - + + + + + + diff --git a/src/chrome/content/rules/molevalley.gov.uk.xml b/src/chrome/content/rules/molevalley.gov.uk.xml index 66a29284647b..e9f2569b3a81 100644 --- a/src/chrome/content/rules/molevalley.gov.uk.xml +++ b/src/chrome/content/rules/molevalley.gov.uk.xml @@ -1,6 +1,6 @@ - + + + + + + diff --git a/src/chrome/content/rules/molotro.ru.xml b/src/chrome/content/rules/molotro.ru.xml deleted file mode 100644 index 9d95b84a9fe4..000000000000 --- a/src/chrome/content/rules/molotro.ru.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/monazilla.org.xml b/src/chrome/content/rules/monazilla.org.xml index b76dfe272798..c30558863ea2 100644 --- a/src/chrome/content/rules/monazilla.org.xml +++ b/src/chrome/content/rules/monazilla.org.xml @@ -17,7 +17,7 @@ --> - + - - - - - - - - - - - - diff --git a/src/chrome/content/rules/moneycorp.com.xml b/src/chrome/content/rules/moneycorp.com.xml index 7237c478472f..ee23169349a3 100644 --- a/src/chrome/content/rules/moneycorp.com.xml +++ b/src/chrome/content/rules/moneycorp.com.xml @@ -35,7 +35,7 @@ - + - + + + + + + + diff --git a/src/chrome/content/rules/montanalinux.org.xml b/src/chrome/content/rules/montanalinux.org.xml index 5446e100979e..b391a0e04b37 100644 --- a/src/chrome/content/rules/montanalinux.org.xml +++ b/src/chrome/content/rules/montanalinux.org.xml @@ -22,7 +22,7 @@ --> - + - + - - - - - - - - - - - - diff --git a/src/chrome/content/rules/moodlerooms.com.xml b/src/chrome/content/rules/moodlerooms.com.xml index ca020699a94b..73b4dfa4e571 100644 --- a/src/chrome/content/rules/moodlerooms.com.xml +++ b/src/chrome/content/rules/moodlerooms.com.xml @@ -74,7 +74,7 @@ --> - + - + - + diff --git a/src/chrome/content/rules/moslenta.ru.xml b/src/chrome/content/rules/moslenta.ru.xml index 17ca97cc1a34..8b89fa17aedb 100644 --- a/src/chrome/content/rules/moslenta.ru.xml +++ b/src/chrome/content/rules/moslenta.ru.xml @@ -3,7 +3,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://cdn.moslenta.ru/ => https://cdn.moslenta.ru/: (51, "SSL: no alternative certificate subject name matches target host name 'cdn.moslenta.ru'") - Certificate mismatch: + Certificate mismatch: dengoroda2016.moslenta.ru detmag.moslenta.ru mck.moslenta.ru @@ -11,11 +11,11 @@ Fetch error: http://cdn.moslenta.ru/ => https://cdn.moslenta.ru/: (51, "SSL: no on.moslenta.ru sovety.moslenta.ru --> - + - + diff --git a/src/chrome/content/rules/motive.com.xml b/src/chrome/content/rules/motive.com.xml index c558bcb699ef..55c0e2cf785f 100644 --- a/src/chrome/content/rules/motive.com.xml +++ b/src/chrome/content/rules/motive.com.xml @@ -21,7 +21,7 @@ Fetch error: http://pbttbcpn.bt.motive.com/ => https://pbttbcpn.bt.motive.com/: ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -38,7 +38,7 @@ Fetch error: http://pbttbcpn.bt.motive.com/ => https://pbttbcpn.bt.motive.com/: --> - + - - - - - - - - - diff --git a/src/chrome/content/rules/mousejack.com.xml b/src/chrome/content/rules/mousejack.com.xml index d2a960f8e49d..01f2a43e67f7 100644 --- a/src/chrome/content/rules/mousejack.com.xml +++ b/src/chrome/content/rules/mousejack.com.xml @@ -20,7 +20,7 @@ Fetch error: http://mousejack.com/ => https://www.mousejack.com/: Too many redir ˢ Secured by us --> - + @@ -37,8 +37,8 @@ Fetch error: http://mousejack.com/ => https://www.mousejack.com/: Too many redir - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/mozillazine-fr.xml b/src/chrome/content/rules/mozillazine-fr.xml index 5c3edcc9c39e..9ced19ed47c9 100644 --- a/src/chrome/content/rules/mozillazine-fr.xml +++ b/src/chrome/content/rules/mozillazine-fr.xml @@ -30,7 +30,7 @@ --> - + - + - + + + + + + diff --git a/src/chrome/content/rules/mppglobal.com.xml b/src/chrome/content/rules/mppglobal.com.xml index cc9ea04c7b8b..91a6bc8fac51 100644 --- a/src/chrome/content/rules/mppglobal.com.xml +++ b/src/chrome/content/rules/mppglobal.com.xml @@ -26,7 +26,7 @@ --> - + https://www.msgme.com/: (51, "SSL: no alte For other Waterfall International coverage, see waterfall.com.xml. --> - + - + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/mshcdn.com.xml b/src/chrome/content/rules/mshcdn.com.xml new file mode 100644 index 000000000000..b4cbd77dafa9 --- /dev/null +++ b/src/chrome/content/rules/mshcdn.com.xml @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/msl24.de.xml b/src/chrome/content/rules/msl24.de.xml new file mode 100644 index 000000000000..5d73ed37faf5 --- /dev/null +++ b/src/chrome/content/rules/msl24.de.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/msu.edu.xml b/src/chrome/content/rules/msu.edu.xml index f7e03ef3096d..9001693b7185 100644 --- a/src/chrome/content/rules/msu.edu.xml +++ b/src/chrome/content/rules/msu.edu.xml @@ -18,18 +18,18 @@ - - - + diff --git a/src/chrome/content/rules/mtel.ru.xml b/src/chrome/content/rules/mtel.ru.xml index fbbd51c6c9b4..e415af40fb38 100644 --- a/src/chrome/content/rules/mtel.ru.xml +++ b/src/chrome/content/rules/mtel.ru.xml @@ -6,7 +6,7 @@ Fetch error: http://lk.mtel.ru/ => https://lk.mtel.ru/: (60, 'SSL certificate pr mtel.ru mismatch www.mtel.ru mismatch --> - + diff --git a/src/chrome/content/rules/mts.ru.xml b/src/chrome/content/rules/mts.ru.xml index 37ff48ef051d..fee4c5aea3cd 100644 --- a/src/chrome/content/rules/mts.ru.xml +++ b/src/chrome/content/rules/mts.ru.xml @@ -42,7 +42,7 @@ Mixed content: - Image, on: - + - cloud from static.cloud.mts.ru.s3.amazonaws.com - www from static.mts.ru @@ -139,7 +139,7 @@ - + diff --git a/src/chrome/content/rules/mtswelding.co.uk.xml b/src/chrome/content/rules/mtswelding.co.uk.xml index a818d8e786df..b0f7fbc1f3e6 100644 --- a/src/chrome/content/rules/mtswelding.co.uk.xml +++ b/src/chrome/content/rules/mtswelding.co.uk.xml @@ -7,7 +7,7 @@ Fetch error: http://www.mtswelding.co.uk/wp-content/plugins/sitemap/css/page-lis www.mtswelding.co.uk: Mismatched --> - + diff --git a/src/chrome/content/rules/mtt.ru.xml b/src/chrome/content/rules/mtt.ru.xml index faf7f42bad1b..35bbfec52e3d 100644 --- a/src/chrome/content/rules/mtt.ru.xml +++ b/src/chrome/content/rules/mtt.ru.xml @@ -12,7 +12,7 @@ uis.mtt.ru timed out mil.mtt.ru self signed magic.mtt.ru nonexist --> - + diff --git a/src/chrome/content/rules/mtv.com.xml b/src/chrome/content/rules/mtv.com.xml new file mode 100644 index 000000000000..14d3dc5c82be --- /dev/null +++ b/src/chrome/content/rules/mtv.com.xml @@ -0,0 +1,378 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/mtv.fi.xml b/src/chrome/content/rules/mtv.fi.xml index 0104e0060746..638f2c746ced 100644 --- a/src/chrome/content/rules/mtv.fi.xml +++ b/src/chrome/content/rules/mtv.fi.xml @@ -32,7 +32,7 @@ Fetch error: http://s.mtv.fi/ => https://s.mtv.fi/: (6, 'Could not resolve host: ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -66,7 +66,7 @@ Fetch error: http://s.mtv.fi/ => https://s.mtv.fi/: (6, 'Could not resolve host: - + - + + + + + + + + diff --git a/src/chrome/content/rules/mulle-kybernetik.com.xml b/src/chrome/content/rules/mulle-kybernetik.com.xml index 0ac840a15857..a18cd5c06763 100644 --- a/src/chrome/content/rules/mulle-kybernetik.com.xml +++ b/src/chrome/content/rules/mulle-kybernetik.com.xml @@ -19,7 +19,7 @@ - + - + + + + + + + diff --git a/src/chrome/content/rules/muscache.com.xml b/src/chrome/content/rules/muscache.com.xml new file mode 100644 index 000000000000..6234ff85353b --- /dev/null +++ b/src/chrome/content/rules/muscache.com.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/muse.mu-problematic.xml b/src/chrome/content/rules/muse.mu-problematic.xml index 2bdd05304bd8..699bd53b1a87 100644 --- a/src/chrome/content/rules/muse.mu-problematic.xml +++ b/src/chrome/content/rules/muse.mu-problematic.xml @@ -8,7 +8,7 @@ - + - + diff --git a/src/chrome/content/rules/my-history.co.uk.xml b/src/chrome/content/rules/my-history.co.uk.xml index e802ed3b9ae2..f2bd91b72d2f 100644 --- a/src/chrome/content/rules/my-history.co.uk.xml +++ b/src/chrome/content/rules/my-history.co.uk.xml @@ -20,7 +20,7 @@ - + - + - + - + diff --git a/src/chrome/content/rules/mydrivers.com.xml b/src/chrome/content/rules/mydrivers.com.xml new file mode 100644 index 000000000000..2034060769e1 --- /dev/null +++ b/src/chrome/content/rules/mydrivers.com.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/myfreecams.com.xml b/src/chrome/content/rules/myfreecams.com.xml index b45fc3ff68ed..e32d72fb818c 100644 --- a/src/chrome/content/rules/myfreecams.com.xml +++ b/src/chrome/content/rules/myfreecams.com.xml @@ -44,7 +44,7 @@ - + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/mynyp.org.xml b/src/chrome/content/rules/mynyp.org.xml index acad681e9137..dc795d92bfdc 100644 --- a/src/chrome/content/rules/mynyp.org.xml +++ b/src/chrome/content/rules/mynyp.org.xml @@ -28,7 +28,7 @@ - + - - - - - - - - - - - diff --git a/src/chrome/content/rules/mysubwaycard.com.xml b/src/chrome/content/rules/mysubwaycard.com.xml index fffcc9a88f5b..0ce0474274b7 100644 --- a/src/chrome/content/rules/mysubwaycard.com.xml +++ b/src/chrome/content/rules/mysubwaycard.com.xml @@ -14,7 +14,7 @@ --> - + - - - - - - - - - - - diff --git a/src/chrome/content/rules/mytrinity.com.ua.xml b/src/chrome/content/rules/mytrinity.com.ua.xml deleted file mode 100644 index 381a151ff86a..000000000000 --- a/src/chrome/content/rules/mytrinity.com.ua.xml +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/myuni-form.com.xml b/src/chrome/content/rules/myuni-form.com.xml index 2671449242df..ffa467ce5314 100644 --- a/src/chrome/content/rules/myuni-form.com.xml +++ b/src/chrome/content/rules/myuni-form.com.xml @@ -7,7 +7,7 @@ - + + + + + + + diff --git a/src/chrome/content/rules/myworldofwork.co.uk.xml b/src/chrome/content/rules/myworldofwork.co.uk.xml index f2b86a1327f9..7889d8a7f188 100644 --- a/src/chrome/content/rules/myworldofwork.co.uk.xml +++ b/src/chrome/content/rules/myworldofwork.co.uk.xml @@ -17,7 +17,7 @@ - + https://cs9.myzuka.fm/: (51, "SSL: no alte ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -83,7 +83,7 @@ Fetch error: http://cs9.myzuka.fm/ => https://cs9.myzuka.fm/: (51, "SSL: no alte - + https://n-tv.de/: (7, 'Failed to connect to n-tv.de port 443: Connection refused') -Fetch error: http://www.n-tv.de/ => https://www.n-tv.de/: Too many redirects while fetching 'https://www.n-tv.de/' + This domain contains a wildcard DNS record. +--> + - Mismatch: - - bilder[1-4] - - tools + + + + + + + + + + + + + + + + + + + + + + + + + + + - Expired: - - hbbtv ---> - - - + - diff --git a/src/chrome/content/rules/n210adserv.com.xml b/src/chrome/content/rules/n210adserv.com.xml index 99d77adccee6..ee96727ea7a6 100644 --- a/src/chrome/content/rules/n210adserv.com.xml +++ b/src/chrome/content/rules/n210adserv.com.xml @@ -13,7 +13,7 @@ Fetch error: http://www.n210adserv.com/ => https://www.n210adserv.com/: (28, 'Co ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -28,7 +28,7 @@ Fetch error: http://www.n210adserv.com/ => https://www.n210adserv.com/: (28, 'Co - + https://beta.nachrichtendienstgesetz.ch/: (51, "SSL: no alternative certificate subject name matches target host name 'beta.nachrichtendienstgesetz.ch'") - - Insecure cookies are set for these hosts: ᶜ - - - www.nachrichtendienstgesetz.ch - - ᶜ See https://owasp.org/index.php/SecureFlag - - - STS header includes includeSubdomains - for ^, www - + Mismatch: + - beta.nachrichtendienstgesetz.ch --> - + - - - - - - - - - - - - - - - - + + - + - + + + + + + + diff --git a/src/chrome/content/rules/nap-pflanzenschutz.de.xml b/src/chrome/content/rules/nap-pflanzenschutz.de.xml new file mode 100644 index 000000000000..9e00da582f99 --- /dev/null +++ b/src/chrome/content/rules/nap-pflanzenschutz.de.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/napster.com.xml b/src/chrome/content/rules/napster.com.xml index a3f81cc57ed4..bcab8a632f8f 100644 --- a/src/chrome/content/rules/napster.com.xml +++ b/src/chrome/content/rules/napster.com.xml @@ -38,7 +38,7 @@ - + + + + + + + + + + diff --git a/src/chrome/content/rules/nasawestprime.com.xml b/src/chrome/content/rules/nasawestprime.com.xml index 01b2e8b8395f..1c2582ca69b0 100644 --- a/src/chrome/content/rules/nasawestprime.com.xml +++ b/src/chrome/content/rules/nasawestprime.com.xml @@ -16,7 +16,7 @@ - + + + + + + + + diff --git a/src/chrome/content/rules/nationalinterest.org.xml b/src/chrome/content/rules/nationalinterest.org.xml index 394baa8b3bd2..8047ca7f4d41 100644 --- a/src/chrome/content/rules/nationalinterest.org.xml +++ b/src/chrome/content/rules/nationalinterest.org.xml @@ -11,7 +11,7 @@ - css from $self ˢ - Images, from: - + - ^nationalinterest.org ˢ - $self ˢ @@ -25,7 +25,7 @@ - + - + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - + diff --git a/src/chrome/content/rules/naukri.com-falsemixed.xml b/src/chrome/content/rules/naukri.com-falsemixed.xml deleted file mode 100644 index 3462290e2d2c..000000000000 --- a/src/chrome/content/rules/naukri.com-falsemixed.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/nav.no.xml b/src/chrome/content/rules/nav.no.xml index 4df8f2a9caa2..5838a12108fa 100644 --- a/src/chrome/content/rules/nav.no.xml +++ b/src/chrome/content/rules/nav.no.xml @@ -33,7 +33,7 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/nawadir.org.xml b/src/chrome/content/rules/nawadir.org.xml new file mode 100644 index 000000000000..3f1b7e1986a3 --- /dev/null +++ b/src/chrome/content/rules/nawadir.org.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/ncar.cc.xml b/src/chrome/content/rules/ncar.cc.xml deleted file mode 100644 index a4401a882f56..000000000000 --- a/src/chrome/content/rules/ncar.cc.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/nciphub.org.xml b/src/chrome/content/rules/nciphub.org.xml index 458170929f8d..d62c77e064a4 100644 --- a/src/chrome/content/rules/nciphub.org.xml +++ b/src/chrome/content/rules/nciphub.org.xml @@ -5,14 +5,9 @@ - - - - - - - + + diff --git a/src/chrome/content/rules/ncp-e.com.xml b/src/chrome/content/rules/ncp-e.com.xml index bda35ea9b910..a4dd484af4a7 100644 --- a/src/chrome/content/rules/ncp-e.com.xml +++ b/src/chrome/content/rules/ncp-e.com.xml @@ -12,7 +12,7 @@ - + - + - + - + - + - + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/nero.com.xml b/src/chrome/content/rules/nero.com.xml new file mode 100644 index 000000000000..483e11a33535 --- /dev/null +++ b/src/chrome/content/rules/nero.com.xml @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/nervomusic.com.xml b/src/chrome/content/rules/nervomusic.com.xml new file mode 100644 index 000000000000..1d5cc86c9643 --- /dev/null +++ b/src/chrome/content/rules/nervomusic.com.xml @@ -0,0 +1,14 @@ + + + + + + + + diff --git a/src/chrome/content/rules/net.cn.xml b/src/chrome/content/rules/net.cn.xml index 0f3e2ecc3229..a8873a63a2d9 100644 --- a/src/chrome/content/rules/net.cn.xml +++ b/src/chrome/content/rules/net.cn.xml @@ -26,13 +26,13 @@ Fetch error: http://www.net.cn/mail/ => https://www.net.cn/mail/: (28, 'Connecti Mixed content: - css, on: - + - www from g.alicdn.com ˢ - www from cdn.hichinaimg.com ᵐ - www from $self ˢ - Images, on: - + - www from gtms0[1-4].alicdn.com ˢ - www from $self ˢ @@ -40,7 +40,7 @@ Fetch error: http://www.net.cn/mail/ => https://www.net.cn/mail/: (28, 'Connecti ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -62,7 +62,7 @@ Fetch error: http://www.net.cn/mail/ => https://www.net.cn/mail/: (28, 'Connecti --> - + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/netis.ru.xml b/src/chrome/content/rules/netis.ru.xml index 95c96b6ea71c..db16f2788888 100644 --- a/src/chrome/content/rules/netis.ru.xml +++ b/src/chrome/content/rules/netis.ru.xml @@ -6,11 +6,10 @@ forum.netis.ru mismatch - + - - + diff --git a/src/chrome/content/rules/netn.fi.xml b/src/chrome/content/rules/netn.fi.xml new file mode 100644 index 000000000000..4f72d7087bc4 --- /dev/null +++ b/src/chrome/content/rules/netn.fi.xml @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/netorn.ru.xml b/src/chrome/content/rules/netorn.ru.xml deleted file mode 100644 index 2a3f32f15b84..000000000000 --- a/src/chrome/content/rules/netorn.ru.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/netsalesnetwork.com.xml b/src/chrome/content/rules/netsalesnetwork.com.xml deleted file mode 100644 index 2ad2b68f7bf8..000000000000 --- a/src/chrome/content/rules/netsalesnetwork.com.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/netwheels.fi.xml b/src/chrome/content/rules/netwheels.fi.xml index 24c44b06ccc2..5e692ceacbf2 100644 --- a/src/chrome/content/rules/netwheels.fi.xml +++ b/src/chrome/content/rules/netwheels.fi.xml @@ -22,7 +22,7 @@ --> - + + + + + + + + + diff --git a/src/chrome/content/rules/netzclub.xml b/src/chrome/content/rules/netzclub.xml index d049a9bb9d36..281b96405a6f 100644 --- a/src/chrome/content/rules/netzclub.xml +++ b/src/chrome/content/rules/netzclub.xml @@ -5,4 +5,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/neurotalk.org.xml b/src/chrome/content/rules/neurotalk.org.xml index 2a5ac5d53a87..dce7e484eefe 100644 --- a/src/chrome/content/rules/neurotalk.org.xml +++ b/src/chrome/content/rules/neurotalk.org.xml @@ -16,7 +16,7 @@ --> - + - + - + - + - + https://m.newkaliningrad.ru/: (6, 'Could not resolve host: m.newkaliningrad.ru') - ---> - - - - - - diff --git a/src/chrome/content/rules/newsela.com.xml b/src/chrome/content/rules/newsela.com.xml index 25615355aa98..1080d3a81f20 100644 --- a/src/chrome/content/rules/newsela.com.xml +++ b/src/chrome/content/rules/newsela.com.xml @@ -1,57 +1,13 @@ - - - - + + - - - - - - - - - - - - - + - + + diff --git a/src/chrome/content/rules/newsledge.com.xml b/src/chrome/content/rules/newsledge.com.xml index e8ebc82c1cdd..3c04359a5dca 100644 --- a/src/chrome/content/rules/newsledge.com.xml +++ b/src/chrome/content/rules/newsledge.com.xml @@ -4,7 +4,7 @@ - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/nexusmods.com.xml b/src/chrome/content/rules/nexusmods.com.xml index 91414a43a147..145eedc9d8d8 100644 --- a/src/chrome/content/rules/nexusmods.com.xml +++ b/src/chrome/content/rules/nexusmods.com.xml @@ -6,8 +6,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/nginx.com.xml b/src/chrome/content/rules/nginx.com.xml index a26bb2e5b109..3a8c4b45d6fb 100644 --- a/src/chrome/content/rules/nginx.com.xml +++ b/src/chrome/content/rules/nginx.com.xml @@ -31,7 +31,7 @@ - + https://homes.ngs.ru/: Too many redirects w pogoda. redirect love. redirect news. redirect--> - + diff --git a/src/chrome/content/rules/nibusinessinfo.co.uk.xml b/src/chrome/content/rules/nibusinessinfo.co.uk.xml index 7c93ee8bc387..e2af927771c1 100644 --- a/src/chrome/content/rules/nibusinessinfo.co.uk.xml +++ b/src/chrome/content/rules/nibusinessinfo.co.uk.xml @@ -19,7 +19,7 @@ Fetch error: http://admin.events.nibusinessinfo.co.uk/ => https://admin.events.n ᵈ Dropped; preemptable redirect --> - + @@ -33,7 +33,7 @@ Fetch error: http://admin.events.nibusinessinfo.co.uk/ => https://admin.events.n - + + + + + + + + + + diff --git a/src/chrome/content/rules/niche.com.au.xml b/src/chrome/content/rules/niche.com.au.xml index e2598f31fe99..d4180e6c1c2d 100644 --- a/src/chrome/content/rules/niche.com.au.xml +++ b/src/chrome/content/rules/niche.com.au.xml @@ -22,7 +22,7 @@ - + - + - + https://nieman.de/: (60, 'SSL certificate problem: certificate has expired') --> - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/nightline-paris.fr.xml b/src/chrome/content/rules/nightline-paris.fr.xml new file mode 100644 index 000000000000..45d9336f3183 --- /dev/null +++ b/src/chrome/content/rules/nightline-paris.fr.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/nijipi.lgbt.xml b/src/chrome/content/rules/nijipi.lgbt.xml new file mode 100644 index 000000000000..cf5bd2520f38 --- /dev/null +++ b/src/chrome/content/rules/nijipi.lgbt.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/nix.ru.xml b/src/chrome/content/rules/nix.ru.xml new file mode 100644 index 000000000000..90142756a83c --- /dev/null +++ b/src/chrome/content/rules/nix.ru.xml @@ -0,0 +1,179 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/nixonlibrary.gov.xml b/src/chrome/content/rules/nixonlibrary.gov.xml deleted file mode 100644 index 05b23e04b526..000000000000 --- a/src/chrome/content/rules/nixonlibrary.gov.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/nllapps.xml b/src/chrome/content/rules/nllapps.xml index 652daed98355..adb78300816a 100644 --- a/src/chrome/content/rules/nllapps.xml +++ b/src/chrome/content/rules/nllapps.xml @@ -2,7 +2,7 @@ - + diff --git a/src/chrome/content/rules/nltk.org.xml b/src/chrome/content/rules/nltk.org.xml new file mode 100644 index 000000000000..c8089f07918c --- /dev/null +++ b/src/chrome/content/rules/nltk.org.xml @@ -0,0 +1,26 @@ + + + + + + + + diff --git a/src/chrome/content/rules/nlx.org.xml b/src/chrome/content/rules/nlx.org.xml index fad60d3d5831..161ea19cf42d 100644 --- a/src/chrome/content/rules/nlx.org.xml +++ b/src/chrome/content/rules/nlx.org.xml @@ -53,7 +53,7 @@ + to="https://de.nlx.org/" /> diff --git a/src/chrome/content/rules/nodeny-plus.com.ua.xml b/src/chrome/content/rules/nodeny-plus.com.ua.xml index 6779fe3943b9..3402e843e6a4 100644 --- a/src/chrome/content/rules/nodeny-plus.com.ua.xml +++ b/src/chrome/content/rules/nodeny-plus.com.ua.xml @@ -9,7 +9,7 @@ www.nodeny-plus.com.ua ⁵ ⁵ expired --> - + diff --git a/src/chrome/content/rules/nominet.uk.xml b/src/chrome/content/rules/nominet.uk.xml index 5bd1ec4400b9..1eef2934de98 100644 --- a/src/chrome/content/rules/nominet.uk.xml +++ b/src/chrome/content/rules/nominet.uk.xml @@ -17,7 +17,7 @@ - + - + - + - + https://library ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -112,7 +112,7 @@ Fetch error: http://librarycatalogue.northamptonshire.gov.uk/ => https://library - + - + https://leisure.no For rules not causing false/broken MCB, see northlincs.gov.uk.xml. --> - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/notehub.org.xml b/src/chrome/content/rules/notehub.org.xml index fff558388b84..a6e440301b7c 100644 --- a/src/chrome/content/rules/notehub.org.xml +++ b/src/chrome/content/rules/notehub.org.xml @@ -14,7 +14,7 @@ --> - + - + - - - - - - - - - - - diff --git a/src/chrome/content/rules/nousrandom.net.xml b/src/chrome/content/rules/nousrandom.net.xml index 42a724269250..50e134d9f912 100644 --- a/src/chrome/content/rules/nousrandom.net.xml +++ b/src/chrome/content/rules/nousrandom.net.xml @@ -5,13 +5,13 @@ Fetch error: http://nousrandom.net/ => https://nousrandom.net/: (60, 'SSL certif Fetch error: http://www.nousrandom.net/ => https://www.nousrandom.net/: (60, 'SSL certificate problem: self signed certificate') --> - + - + - + diff --git a/src/chrome/content/rules/novo-ordo.com.xml b/src/chrome/content/rules/novo-ordo.com.xml new file mode 100644 index 000000000000..c9c2ca29a477 --- /dev/null +++ b/src/chrome/content/rules/novo-ordo.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/nowwhere.com.au-falsemixed.xml b/src/chrome/content/rules/nowwhere.com.au-falsemixed.xml index cccc8b14cba2..f1c0e3fbc14d 100644 --- a/src/chrome/content/rules/nowwhere.com.au-falsemixed.xml +++ b/src/chrome/content/rules/nowwhere.com.au-falsemixed.xml @@ -12,7 +12,7 @@ - + - + + + + + + + + diff --git a/src/chrome/content/rules/noxa.de.xml b/src/chrome/content/rules/noxa.de.xml index 808e8e05b4db..d0cec61be838 100644 --- a/src/chrome/content/rules/noxa.de.xml +++ b/src/chrome/content/rules/noxa.de.xml @@ -5,7 +5,7 @@ Fetch error: http://admin.noxa.de/ => https://admin.noxa.de/: (28, 'Connection t Fetch error: http://webmail.noxa.de/ => https://webmail.noxa.de/: (28, 'Connection timed out after 20001 milliseconds') --> - + diff --git a/src/chrome/content/rules/npp.org.hk.xml b/src/chrome/content/rules/npp.org.hk.xml index f3cd38f427b1..94be2d09e724 100644 --- a/src/chrome/content/rules/npp.org.hk.xml +++ b/src/chrome/content/rules/npp.org.hk.xml @@ -1,9 +1,9 @@ - + - + diff --git a/src/chrome/content/rules/nra.org-resources.xml b/src/chrome/content/rules/nra.org-resources.xml index a9c846f7132e..aedc6511d67f 100644 --- a/src/chrome/content/rules/nra.org-resources.xml +++ b/src/chrome/content/rules/nra.org-resources.xml @@ -12,7 +12,7 @@ Fetch error: http://training.nra.org/images/bg_gray.jpg => https://training.nra. and no mixed content secured. --> - + diff --git a/src/chrome/content/rules/nra.org.xml b/src/chrome/content/rules/nra.org.xml index 6b6514ab3a31..671c53afdc47 100644 --- a/src/chrome/content/rules/nra.org.xml +++ b/src/chrome/content/rules/nra.org.xml @@ -1,4 +1,9 @@ - + @@ -61,7 +65,7 @@ - + @@ -124,7 +128,7 @@ - + - + - + https://wmp.nrafamily.org/: (60, 'SSL ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -26,7 +26,7 @@ Fetch error: http://wmp.nrafamily.org/ => https://wmp.nrafamily.org/: (60, 'SSL - + https://www.nrahq.org.org/: (6, 'Could For other National Rifle Association coverage, see nra.org.xml. --> - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/nrapvf.org.xml b/src/chrome/content/rules/nrapvf.org.xml index 5b5d7510b54b..cd42d0c83176 100644 --- a/src/chrome/content/rules/nrapvf.org.xml +++ b/src/chrome/content/rules/nrapvf.org.xml @@ -12,7 +12,7 @@ - + - + - + - + https://c9.nrostatic.com/: Too many red and no mixed content secured. --> - + @@ -49,7 +49,7 @@ Fetch error: http://c9.nrostatic.com/ => https://c9.nrostatic.com/: Too many red - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/nso.ru.xml b/src/chrome/content/rules/nso.ru.xml index 88aff12edd6c..e277f75e447f 100644 --- a/src/chrome/content/rules/nso.ru.xml +++ b/src/chrome/content/rules/nso.ru.xml @@ -134,7 +134,7 @@ wso2.nso.ru different content ³ timed out ⁴ self signed --> - + diff --git a/src/chrome/content/rules/nspcc.org.uk.xml b/src/chrome/content/rules/nspcc.org.uk.xml index d698623d82b9..7bb8ee9d6f69 100644 --- a/src/chrome/content/rules/nspcc.org.uk.xml +++ b/src/chrome/content/rules/nspcc.org.uk.xml @@ -17,7 +17,7 @@ --> - + https://api.nspublieksprijs.nl/: - nspublieksprijs.nl --> - + @@ -19,7 +19,7 @@ Fetch error: http://api.nspublieksprijs.nl/ => https://api.nspublieksprijs.nl/: --> - + - - - - - - - - diff --git a/src/chrome/content/rules/ntlite.com.xml b/src/chrome/content/rules/ntlite.com.xml index 1c8e64e9a6f7..9e2d2a824a26 100644 --- a/src/chrome/content/rules/ntlite.com.xml +++ b/src/chrome/content/rules/ntlite.com.xml @@ -5,7 +5,7 @@ - + + + + + + + + diff --git a/src/chrome/content/rules/nuevocloud.com.xml b/src/chrome/content/rules/nuevocloud.com.xml index b0986eb22d55..017d35f7f12d 100644 --- a/src/chrome/content/rules/nuevocloud.com.xml +++ b/src/chrome/content/rules/nuevocloud.com.xml @@ -14,7 +14,7 @@ --> - + - + - + diff --git a/src/chrome/content/rules/nuneatonandbedworth.gov.uk.xml b/src/chrome/content/rules/nuneatonandbedworth.gov.uk.xml index 7346ea07396c..1f0d648fd2bd 100644 --- a/src/chrome/content/rules/nuneatonandbedworth.gov.uk.xml +++ b/src/chrome/content/rules/nuneatonandbedworth.gov.uk.xml @@ -26,8 +26,8 @@ --> - - + + - + - + - + - + + + + + + + diff --git a/src/chrome/content/rules/nyantec.xml b/src/chrome/content/rules/nyantec.xml deleted file mode 100644 index 9c5277d4d572..000000000000 --- a/src/chrome/content/rules/nyantec.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/nycmesh.net.xml b/src/chrome/content/rules/nycmesh.net.xml index 3e2fcf950964..eb0deeb084fe 100644 --- a/src/chrome/content/rules/nycmesh.net.xml +++ b/src/chrome/content/rules/nycmesh.net.xml @@ -13,7 +13,7 @@ - + https://www.nypf.org.uk/: (60, 'SSL cert - www.nypf.org.uk --> - + @@ -25,7 +25,7 @@ Fetch error: http://www.nypf.org.uk/ => https://www.nypf.org.uk/: (60, 'SSL cert --> - + - + - + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/nyttips4bmquxfzw.onion.xml b/src/chrome/content/rules/nyttips4bmquxfzw.onion.xml new file mode 100644 index 000000000000..7dedf102403d --- /dev/null +++ b/src/chrome/content/rules/nyttips4bmquxfzw.onion.xml @@ -0,0 +1,16 @@ + + + + + + + + diff --git a/src/chrome/content/rules/nzbget.net.xml b/src/chrome/content/rules/nzbget.net.xml new file mode 100644 index 000000000000..0a269898376c --- /dev/null +++ b/src/chrome/content/rules/nzbget.net.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/nzbs.org.xml b/src/chrome/content/rules/nzbs.org.xml deleted file mode 100644 index 2ccb331aca2e..000000000000 --- a/src/chrome/content/rules/nzbs.org.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/nzlweb.com.xml b/src/chrome/content/rules/nzlweb.com.xml new file mode 100644 index 000000000000..5e9e275f6e04 --- /dev/null +++ b/src/chrome/content/rules/nzlweb.com.xml @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/nzpug.org.xml b/src/chrome/content/rules/nzpug.org.xml index 065d1134f738..626047b8a18d 100644 --- a/src/chrome/content/rules/nzpug.org.xml +++ b/src/chrome/content/rules/nzpug.org.xml @@ -5,13 +5,13 @@ Fetch error: http://register.nzpug.org/ => https://register.nzpug.org/: (60, 'SS New Zealand Python User Group --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/oaklands.ac.uk.xml b/src/chrome/content/rules/oaklands.ac.uk.xml index 5f06d1da4b8b..fc688c0f61b6 100644 --- a/src/chrome/content/rules/oaklands.ac.uk.xml +++ b/src/chrome/content/rules/oaklands.ac.uk.xml @@ -45,7 +45,7 @@ Fetch error: http://proportal.oaklands.ac.uk/ => https://portal.oaklands.ac.uk/d * Not all paths redirect --> - + @@ -66,7 +66,7 @@ Fetch error: http://proportal.oaklands.ac.uk/ => https://portal.oaklands.ac.uk/d @@ -77,7 +77,7 @@ Fetch error: http://proportal.oaklands.ac.uk/ => https://portal.oaklands.ac.uk/d - + https://swdp.objective.co.uk/: (51, ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -155,7 +155,7 @@ Fetch error: http://swdp.objective.co.uk/ => https://swdp.objective.co.uk/: (51, - + - + + + + + + + + + + + diff --git a/src/chrome/content/rules/oclasrv.com.xml b/src/chrome/content/rules/oclasrv.com.xml index 2169e4bb112b..67fe702ba602 100644 --- a/src/chrome/content/rules/oclasrv.com.xml +++ b/src/chrome/content/rules/oclasrv.com.xml @@ -10,7 +10,7 @@ - + - + diff --git a/src/chrome/content/rules/offenesparlament.de.xml b/src/chrome/content/rules/offenesparlament.de.xml new file mode 100644 index 000000000000..375874912695 --- /dev/null +++ b/src/chrome/content/rules/offenesparlament.de.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/ofsted.gov.uk.xml b/src/chrome/content/rules/ofsted.gov.uk.xml index 727b33266b8f..d89ae2e2498b 100644 --- a/src/chrome/content/rules/ofsted.gov.uk.xml +++ b/src/chrome/content/rules/ofsted.gov.uk.xml @@ -39,7 +39,7 @@ Fetch error: http://www.mobile.learnerview.ofsted.gov.uk/ => https://www.mobile. - .reports.ofsted.gov.uk --> - + @@ -68,8 +68,8 @@ Fetch error: http://www.mobile.learnerview.ofsted.gov.uk/ => https://www.mobile. - - + + + + + + + + + + + diff --git a/src/chrome/content/rules/ogdb.eu.xml b/src/chrome/content/rules/ogdb.eu.xml new file mode 100644 index 000000000000..d17d5080440d --- /dev/null +++ b/src/chrome/content/rules/ogdb.eu.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/ogilvy.co.uk.xml b/src/chrome/content/rules/ogilvy.co.uk.xml index a3a303e39cc7..d0535f69cbea 100644 --- a/src/chrome/content/rules/ogilvy.co.uk.xml +++ b/src/chrome/content/rules/ogilvy.co.uk.xml @@ -48,7 +48,7 @@ --> - + - + + + + + + + + diff --git a/src/chrome/content/rules/oikotie.fi.xml b/src/chrome/content/rules/oikotie.fi.xml index bd0cff7047f7..f22c2ac928a1 100644 --- a/src/chrome/content/rules/oikotie.fi.xml +++ b/src/chrome/content/rules/oikotie.fi.xml @@ -52,7 +52,7 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/okfn.de.xml b/src/chrome/content/rules/okfn.de.xml index 17944369eb43..43b4cabc8442 100644 --- a/src/chrome/content/rules/okfn.de.xml +++ b/src/chrome/content/rules/okfn.de.xml @@ -6,7 +6,7 @@ - + - + - - - - - - - - - - - diff --git a/src/chrome/content/rules/oktv-rlp.de.xml b/src/chrome/content/rules/oktv-rlp.de.xml new file mode 100644 index 000000000000..72fb53321d13 --- /dev/null +++ b/src/chrome/content/rules/oktv-rlp.de.xml @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/olabini.se.xml b/src/chrome/content/rules/olabini.se.xml index ff6bdf4f9033..e5a0754985e8 100644 --- a/src/chrome/content/rules/olabini.se.xml +++ b/src/chrome/content/rules/olabini.se.xml @@ -4,7 +4,7 @@ - + + + + + + + + diff --git a/src/chrome/content/rules/omim.org.xml b/src/chrome/content/rules/omim.org.xml index ac054e3d5d14..7ded0d7676e7 100644 --- a/src/chrome/content/rules/omim.org.xml +++ b/src/chrome/content/rules/omim.org.xml @@ -36,7 +36,7 @@ --> - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/omni.media.xml b/src/chrome/content/rules/omni.media.xml index 82b8d3753d11..173c26d2b29b 100644 --- a/src/chrome/content/rules/omni.media.xml +++ b/src/chrome/content/rules/omni.media.xml @@ -5,7 +5,7 @@ - + - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/omniweb.ru.xml b/src/chrome/content/rules/omniweb.ru.xml index c5de834060c0..f20bbdb861fb 100644 --- a/src/chrome/content/rules/omniweb.ru.xml +++ b/src/chrome/content/rules/omniweb.ru.xml @@ -8,7 +8,7 @@ www.omniweb.ru mismatch stsl.omniweb.ru nonexist t5.omniweb.ru mismatch --> - + diff --git a/src/chrome/content/rules/onclasrv.com.xml b/src/chrome/content/rules/onclasrv.com.xml index fbc50c2460fd..b1b723813e4e 100644 --- a/src/chrome/content/rules/onclasrv.com.xml +++ b/src/chrome/content/rules/onclasrv.com.xml @@ -10,7 +10,7 @@ - + - + - + + + + + + + + + + + diff --git a/src/chrome/content/rules/oneclickdigital.eu.xml b/src/chrome/content/rules/oneclickdigital.eu.xml deleted file mode 100644 index 7357f5d98850..000000000000 --- a/src/chrome/content/rules/oneclickdigital.eu.xml +++ /dev/null @@ -1,180 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/oneclickreseller.com.xml b/src/chrome/content/rules/oneclickreseller.com.xml index bb6f5c7a4a45..db924a7bb643 100644 --- a/src/chrome/content/rules/oneclickreseller.com.xml +++ b/src/chrome/content/rules/oneclickreseller.com.xml @@ -26,7 +26,7 @@ - + - + - + - + - + + + + + + + diff --git a/src/chrome/content/rules/onlineprospectus.net.xml b/src/chrome/content/rules/onlineprospectus.net.xml new file mode 100644 index 000000000000..9e8e05c32206 --- /dev/null +++ b/src/chrome/content/rules/onlineprospectus.net.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/onr.org.uk.xml b/src/chrome/content/rules/onr.org.uk.xml index a468c94c775e..24fe6e25bc2e 100644 --- a/src/chrome/content/rules/onr.org.uk.xml +++ b/src/chrome/content/rules/onr.org.uk.xml @@ -37,7 +37,7 @@ --> - + + + - @@ -29,7 +30,7 @@ - + + + + + + + diff --git a/src/chrome/content/rules/open-groupe.nl.xml b/src/chrome/content/rules/open-groupe.nl.xml index 284061c4471e..660ea7286a5b 100644 --- a/src/chrome/content/rules/open-groupe.nl.xml +++ b/src/chrome/content/rules/open-groupe.nl.xml @@ -17,7 +17,7 @@ --> - + https://www.open27.ru/: (51, "SSL: no alternative certificate subject name matches target host name 'www.open27.ru'") --> - + diff --git a/src/chrome/content/rules/openbank.ru.xml b/src/chrome/content/rules/openbank.ru.xml index 57c0e583f536..7b38b36d08d0 100644 --- a/src/chrome/content/rules/openbank.ru.xml +++ b/src/chrome/content/rules/openbank.ru.xml @@ -16,7 +16,7 @@ otvet.openbank.ru ¹ ¹ mismatch ⁶ redirect --> - + diff --git a/src/chrome/content/rules/opencaching.de.xml b/src/chrome/content/rules/opencaching.de.xml index 5830b49adaf9..e1ce21e08368 100644 --- a/src/chrome/content/rules/opencaching.de.xml +++ b/src/chrome/content/rules/opencaching.de.xml @@ -1,20 +1,9 @@ @@ -23,9 +12,24 @@ - + + + + + + + + + + + + + + + + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/opencaching.pl.xml b/src/chrome/content/rules/opencaching.pl.xml index d073eb81a1c9..84840df804c9 100644 --- a/src/chrome/content/rules/opencaching.pl.xml +++ b/src/chrome/content/rules/opencaching.pl.xml @@ -1,25 +1,30 @@ - - + - - - - + + + + - + - + diff --git a/src/chrome/content/rules/opencaching.us.xml b/src/chrome/content/rules/opencaching.us.xml new file mode 100644 index 000000000000..acfd07581a42 --- /dev/null +++ b/src/chrome/content/rules/opencaching.us.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/opendata.ch.xml b/src/chrome/content/rules/opendata.ch.xml index dee2f21a41d6..369bcc7ae04f 100644 --- a/src/chrome/content/rules/opendata.ch.xml +++ b/src/chrome/content/rules/opendata.ch.xml @@ -9,11 +9,11 @@ Mixed content: - css, on: - + - ^, en, energy, finance, food, fr, glam, make from fonts.googleapis.com ˢ - Images, on: - + - ^, en, energy, finance, food, fr, glam from $self ˢ - ^ from fr.opendata.ch ˢ - ^, fr from soda.camp ⁴ @@ -21,7 +21,7 @@ - finance from assets.okfn.org ˢ - Bugs, on: - + - ^, en, food, fr, make from i.creativecommons.org ˢ - ^ from licensebuttons.net ˢ @@ -47,7 +47,7 @@ --> - + - + + + + + + + + + + diff --git a/src/chrome/content/rules/openfoo.org.xml b/src/chrome/content/rules/openfoo.org.xml index ce8bde635b73..16321d4be9cf 100644 --- a/src/chrome/content/rules/openfoo.org.xml +++ b/src/chrome/content/rules/openfoo.org.xml @@ -4,7 +4,7 @@ - + - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/opening-times.co.uk.xml b/src/chrome/content/rules/opening-times.co.uk.xml index d1d9fb6d2870..881264607b62 100644 --- a/src/chrome/content/rules/opening-times.co.uk.xml +++ b/src/chrome/content/rules/opening-times.co.uk.xml @@ -5,7 +5,7 @@ - + - + + + + + + + + diff --git a/src/chrome/content/rules/openra.net.xml b/src/chrome/content/rules/openra.net.xml new file mode 100644 index 000000000000..32fcd2ea170e --- /dev/null +++ b/src/chrome/content/rules/openra.net.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/openrct2.io.xml b/src/chrome/content/rules/openrct2.io.xml new file mode 100644 index 000000000000..ca5ad9ec27d6 --- /dev/null +++ b/src/chrome/content/rules/openrct2.io.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/openrepos.net.xml b/src/chrome/content/rules/openrepos.net.xml index 5c4bca1ec1e1..bb71ca483b98 100644 --- a/src/chrome/content/rules/openrepos.net.xml +++ b/src/chrome/content/rules/openrepos.net.xml @@ -4,7 +4,7 @@ - + - + diff --git a/src/chrome/content/rules/openscad.org.xml b/src/chrome/content/rules/openscad.org.xml new file mode 100644 index 000000000000..cdb466368c67 --- /dev/null +++ b/src/chrome/content/rules/openscad.org.xml @@ -0,0 +1,20 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/openseamap.org.xml b/src/chrome/content/rules/openseamap.org.xml new file mode 100644 index 000000000000..8945d60c2140 --- /dev/null +++ b/src/chrome/content/rules/openseamap.org.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/opensocietyfoundations.org.xml b/src/chrome/content/rules/opensocietyfoundations.org.xml deleted file mode 100644 index 840299bbcc47..000000000000 --- a/src/chrome/content/rules/opensocietyfoundations.org.xml +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/openstat.com.xml b/src/chrome/content/rules/openstat.com.xml index 95e64158fb01..8ee51983b8b1 100644 --- a/src/chrome/content/rules/openstat.com.xml +++ b/src/chrome/content/rules/openstat.com.xml @@ -22,7 +22,7 @@ --> - + + + + + + diff --git a/src/chrome/content/rules/openwebrtc.org.xml b/src/chrome/content/rules/openwebrtc.org.xml index 62f7fee56a85..bfe4c266c74c 100644 --- a/src/chrome/content/rules/openwebrtc.org.xml +++ b/src/chrome/content/rules/openwebrtc.org.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://demo.openwebrtc.org/ => https://demo.openwebrtc.org/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/openx.com-resources.xml b/src/chrome/content/rules/openx.com-resources.xml deleted file mode 100644 index 9a3423ae53a7..000000000000 --- a/src/chrome/content/rules/openx.com-resources.xml +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/openxmarket.asia.xml b/src/chrome/content/rules/openxmarket.asia.xml deleted file mode 100644 index 560dbb43ed75..000000000000 --- a/src/chrome/content/rules/openxmarket.asia.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/optimizely.com-resources.xml b/src/chrome/content/rules/optimizely.com-resources.xml index 43b7e10ecafe..5012f819fd5f 100644 --- a/src/chrome/content/rules/optimizely.com-resources.xml +++ b/src/chrome/content/rules/optimizely.com-resources.xml @@ -10,7 +10,7 @@ Non-2xx HTTP code: http://pages.optimizely.com/rs/361-GER-922/images/Share1.png and no mixed content secured. --> - + diff --git a/src/chrome/content/rules/optum.com.xml b/src/chrome/content/rules/optum.com.xml index e6fb61ab741b..9934f0a2ed95 100644 --- a/src/chrome/content/rules/optum.com.xml +++ b/src/chrome/content/rules/optum.com.xml @@ -4,14 +4,14 @@ Disabled by https-everywhere-checker because: Fetch error: http://optum.com/ => https://optum.com/: (51, "SSL: no alternative certificate subject name matches target host name 'optum.com'") --> - + - + - + + + + + + + diff --git a/src/chrome/content/rules/orangeplant.co.uk.xml b/src/chrome/content/rules/orangeplant.co.uk.xml index d521079a62f6..b00b03abc69f 100644 --- a/src/chrome/content/rules/orangeplant.co.uk.xml +++ b/src/chrome/content/rules/orangeplant.co.uk.xml @@ -6,7 +6,7 @@ Non-2xx HTTP code: http://www.orangeplant.co.uk/ (200) => https://orangeplant.co www.orangeplant.co.uk: Mismatched --> - + @@ -17,7 +17,7 @@ Non-2xx HTTP code: http://www.orangeplant.co.uk/ (200) => https://orangeplant.co - + - + diff --git a/src/chrome/content/rules/oroboro.com.xml b/src/chrome/content/rules/oroboro.com.xml index 953157d65c94..51e3bdb7f8a1 100644 --- a/src/chrome/content/rules/oroboro.com.xml +++ b/src/chrome/content/rules/oroboro.com.xml @@ -4,14 +4,14 @@ Disabled by https-everywhere-checker because: Fetch error: http://img.oroboro.com/ => https://img.oroboro.com/: (35, 'error:14077458:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 unrecognized name') --> - + - + - + https://orrdat.orr.gov.uk/: (60, 'SSL - .dataportal.orr.gov.uk --> - + @@ -36,7 +36,7 @@ Fetch error: http://orrdat.orr.gov.uk/ => https://orrdat.orr.gov.uk/: (60, 'SSL - + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/osalt.com.xml b/src/chrome/content/rules/osalt.com.xml index 3509f19ffc86..2f8e0e25c0be 100644 --- a/src/chrome/content/rules/osalt.com.xml +++ b/src/chrome/content/rules/osalt.com.xml @@ -8,7 +8,7 @@ - + - + - + + + + + + + + + + diff --git a/src/chrome/content/rules/osmc.tv.xml b/src/chrome/content/rules/osmc.tv.xml index c202d893bb7e..d4e7a8574b6d 100644 --- a/src/chrome/content/rules/osmc.tv.xml +++ b/src/chrome/content/rules/osmc.tv.xml @@ -41,7 +41,7 @@ - + - - - - - diff --git a/src/chrome/content/rules/ostermiller.org.xml b/src/chrome/content/rules/ostermiller.org.xml index da738f238842..a185c589c989 100644 --- a/src/chrome/content/rules/ostermiller.org.xml +++ b/src/chrome/content/rules/ostermiller.org.xml @@ -89,7 +89,7 @@ coinmill.deadsea.ostermiller.org ⁵ ³ timed out ⁵ expired --> - + diff --git a/src/chrome/content/rules/ostif.org.xml b/src/chrome/content/rules/ostif.org.xml index d4b5bdaf5bbb..6b0019f0dcce 100644 --- a/src/chrome/content/rules/ostif.org.xml +++ b/src/chrome/content/rules/ostif.org.xml @@ -5,7 +5,7 @@ - + - + diff --git a/src/chrome/content/rules/osuosl.org.xml b/src/chrome/content/rules/osuosl.org.xml index 547d3028e08a..e3fe0162468a 100644 --- a/src/chrome/content/rules/osuosl.org.xml +++ b/src/chrome/content/rules/osuosl.org.xml @@ -1,25 +1,260 @@ - + Unreachable: + lf-bugs.osuosl.org + lf-lists.osuosl.org + lf-web1.osuosl.org + lf-web2.osuosl.org + mon2.osuosl.org + mozillazine1.osuosl.org + ntp.osuosl.org + panama.osuosl.org + parisc.osuosl.org + time.osuosl.org + webdav1.osuosl.org + Unsupported protocol: + console1.gentoo.osuosl.org +--> + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - + diff --git a/src/chrome/content/rules/osvehicle.com.xml b/src/chrome/content/rules/osvehicle.com.xml deleted file mode 100644 index c1108114eae2..000000000000 --- a/src/chrome/content/rules/osvehicle.com.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/otaserve.net.xml b/src/chrome/content/rules/otaserve.net.xml index 63813173aadb..60c6892d0d84 100644 --- a/src/chrome/content/rules/otaserve.net.xml +++ b/src/chrome/content/rules/otaserve.net.xml @@ -7,7 +7,7 @@ - + + + + + + + + + + diff --git a/src/chrome/content/rules/ots-net.ru.xml b/src/chrome/content/rules/ots-net.ru.xml index ececefca3529..7e3173369c0f 100644 --- a/src/chrome/content/rules/ots-net.ru.xml +++ b/src/chrome/content/rules/ots-net.ru.xml @@ -8,7 +8,7 @@ forum.ots-net.ru mismatch moidom.ots-net.ru mismatch info.ots-net.ru mismatch --> - + diff --git a/src/chrome/content/rules/our-work.com.tw.xml b/src/chrome/content/rules/our-work.com.tw.xml index 61b2e62ccadc..83d7bc996d5d 100644 --- a/src/chrome/content/rules/our-work.com.tw.xml +++ b/src/chrome/content/rules/our-work.com.tw.xml @@ -13,7 +13,7 @@ - + - + https://ourskillsforce.co.uk/: (60, ᵐ Mismatched --> - + - + - + - - - - - - diff --git a/src/chrome/content/rules/owler.com.xml b/src/chrome/content/rules/owler.com.xml index 800113cc2923..3486f491e590 100644 --- a/src/chrome/content/rules/owler.com.xml +++ b/src/chrome/content/rules/owler.com.xml @@ -21,7 +21,7 @@ - + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ox4.li.xml b/src/chrome/content/rules/ox4.li.xml index 59c30b328655..dc7abe76ef8f 100644 --- a/src/chrome/content/rules/ox4.li.xml +++ b/src/chrome/content/rules/ox4.li.xml @@ -1,18 +1,9 @@ - - + - + - + - - + + - + https://winter.oxf For rules not causing false/broken MCB, see oxfordshire.gov.uk.xml. --> - + @@ -16,7 +16,7 @@ Non-2xx HTTP code: http://winter.oxfordshire.gov.uk/ (200) => https://winter.oxf - + https://owls.oxfords - css on insight, schools, volunteering, winter from $self ˢ - Images, on: - + - insight, schools, volunteering, winter from $self ˢ - schools from www.oxfordshire.gov.uk ˢ ˢ Secured by us; see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -103,7 +103,7 @@ Non-2xx HTTP code: http://owls.oxfordshire.gov.uk/ (200) => https://owls.oxfords - + - + diff --git a/src/chrome/content/rules/pac-uk.org.xml b/src/chrome/content/rules/pac-uk.org.xml index c19ee715ffe2..be9b4ed5dcb4 100644 --- a/src/chrome/content/rules/pac-uk.org.xml +++ b/src/chrome/content/rules/pac-uk.org.xml @@ -4,7 +4,7 @@ - + - + - - - - - - - diff --git a/src/chrome/content/rules/packetflagon.uk.xml b/src/chrome/content/rules/packetflagon.uk.xml deleted file mode 100644 index 221fbe786bb1..000000000000 --- a/src/chrome/content/rules/packetflagon.uk.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/packrafting-store.de.xml b/src/chrome/content/rules/packrafting-store.de.xml index 9db50485e531..356eb783251e 100644 --- a/src/chrome/content/rules/packrafting-store.de.xml +++ b/src/chrome/content/rules/packrafting-store.de.xml @@ -16,7 +16,7 @@ --> - + + + + + + + + + diff --git a/src/chrome/content/rules/pagesix.com.xml b/src/chrome/content/rules/pagesix.com.xml index d8db6ea74acf..f4a77fb9154d 100644 --- a/src/chrome/content/rules/pagesix.com.xml +++ b/src/chrome/content/rules/pagesix.com.xml @@ -4,9 +4,9 @@ - + - + - + - + - - - - + + + + + diff --git a/src/chrome/content/rules/panerabread.com.xml b/src/chrome/content/rules/panerabread.com.xml index 171c7c12af8c..81e7e0be51c9 100644 --- a/src/chrome/content/rules/panerabread.com.xml +++ b/src/chrome/content/rules/panerabread.com.xml @@ -33,7 +33,7 @@ - + https://life.panorama.am/ ( Non-2xx HTTP code: http://sport.panorama.am/ (200) => https://sport.panorama.am/ (521) --> - + diff --git a/src/chrome/content/rules/paperspace.com.xml b/src/chrome/content/rules/paperspace.com.xml index 882e21899f01..3b3c10d0adce 100644 --- a/src/chrome/content/rules/paperspace.com.xml +++ b/src/chrome/content/rules/paperspace.com.xml @@ -20,7 +20,7 @@ - + + + + + + + + + diff --git a/src/chrome/content/rules/paralympic.org.xml b/src/chrome/content/rules/paralympic.org.xml index 2ed69161f4f0..316b13bf866e 100644 --- a/src/chrome/content/rules/paralympic.org.xml +++ b/src/chrome/content/rules/paralympic.org.xml @@ -8,7 +8,7 @@ paralympic.org ³ - + diff --git a/src/chrome/content/rules/paraschetal.in.xml b/src/chrome/content/rules/paraschetal.in.xml index 5efe1d5b4380..d6ee943818ee 100644 --- a/src/chrome/content/rules/paraschetal.in.xml +++ b/src/chrome/content/rules/paraschetal.in.xml @@ -5,7 +5,7 @@ - + - + - + - + - - + + + - - - + + + diff --git a/src/chrome/content/rules/passwordless.net.xml b/src/chrome/content/rules/passwordless.net.xml index ee4a67106ac2..aaab4e75795f 100644 --- a/src/chrome/content/rules/passwordless.net.xml +++ b/src/chrome/content/rules/passwordless.net.xml @@ -15,7 +15,7 @@ --> - + https://passwordscon.org/: (7, 'Failed to connect to passwordscon.org port 443: Connection refused') -Fetch error: http://www.passwordscon.org/ => https://www.passwordscon.org/: (7, 'Failed to connect to www.passwordscon.org port 443: Connection refused') - ---> - - - - - - - - - - - - diff --git a/src/chrome/content/rules/passwordsgenerator.net.xml b/src/chrome/content/rules/passwordsgenerator.net.xml new file mode 100644 index 000000000000..d87711320358 --- /dev/null +++ b/src/chrome/content/rules/passwordsgenerator.net.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/passwordwolf.com.xml b/src/chrome/content/rules/passwordwolf.com.xml index 57a3639911ca..4493336776e6 100644 --- a/src/chrome/content/rules/passwordwolf.com.xml +++ b/src/chrome/content/rules/passwordwolf.com.xml @@ -14,7 +14,7 @@ --> - + - + + + + + + + + + + + diff --git a/src/chrome/content/rules/patronbase.co.uk.xml b/src/chrome/content/rules/patronbase.co.uk.xml index 532c732cb830..58d679f35eec 100644 --- a/src/chrome/content/rules/patronbase.co.uk.xml +++ b/src/chrome/content/rules/patronbase.co.uk.xml @@ -13,7 +13,7 @@ - + https://patronbase.com/: (28, 'Connection ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -37,7 +37,7 @@ Fetch error: http://patronbase.com/ => https://patronbase.com/: (28, 'Connection - + - + + + + + + + + + diff --git a/src/chrome/content/rules/paxum.com.xml b/src/chrome/content/rules/paxum.com.xml index 8946af233d46..bc191726f15f 100644 --- a/src/chrome/content/rules/paxum.com.xml +++ b/src/chrome/content/rules/paxum.com.xml @@ -17,7 +17,7 @@ --> - + - + - + - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/pbbans.com.xml b/src/chrome/content/rules/pbbans.com.xml index 0307f168f690..0885c22db70b 100644 --- a/src/chrome/content/rules/pbbans.com.xml +++ b/src/chrome/content/rules/pbbans.com.xml @@ -17,7 +17,7 @@ - + - + - + - + diff --git a/src/chrome/content/rules/pcper.com.xml b/src/chrome/content/rules/pcper.com.xml index b898e1562675..a30b79ca98c8 100644 --- a/src/chrome/content/rules/pcper.com.xml +++ b/src/chrome/content/rules/pcper.com.xml @@ -23,7 +23,7 @@ - + - + - - + + + + + + + diff --git a/src/chrome/content/rules/pdf-online.com.xml b/src/chrome/content/rules/pdf-online.com.xml index 55975dba368a..4f40c187a8e6 100644 --- a/src/chrome/content/rules/pdf-online.com.xml +++ b/src/chrome/content/rules/pdf-online.com.xml @@ -20,7 +20,7 @@ --> - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/pdfill.com.xml b/src/chrome/content/rules/pdfill.com.xml index ba2e38d212bd..ab0697922c4c 100644 --- a/src/chrome/content/rules/pdfill.com.xml +++ b/src/chrome/content/rules/pdfill.com.xml @@ -4,7 +4,7 @@ - + + + + + + + + + diff --git a/src/chrome/content/rules/peekvids.com.xml b/src/chrome/content/rules/peekvids.com.xml index 6daa4953d3fe..897026c9118d 100644 --- a/src/chrome/content/rules/peekvids.com.xml +++ b/src/chrome/content/rules/peekvids.com.xml @@ -18,7 +18,7 @@ - + https://peercloud.io/: (60, 'SSL certificat Fetch error: http://www.peercloud.io/ => https://www.peercloud.io/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/pehub.com.xml b/src/chrome/content/rules/pehub.com.xml index 609dfb01515a..8add907d38cf 100644 --- a/src/chrome/content/rules/pehub.com.xml +++ b/src/chrome/content/rules/pehub.com.xml @@ -17,7 +17,7 @@ - + - - - - - - - - diff --git a/src/chrome/content/rules/penzionspicak.cz.xml b/src/chrome/content/rules/penzionspicak.cz.xml new file mode 100644 index 000000000000..d00e73824b43 --- /dev/null +++ b/src/chrome/content/rules/penzionspicak.cz.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/peoplebank.com.xml b/src/chrome/content/rules/peoplebank.com.xml index 4f79ef51b741..80d09c580c6f 100644 --- a/src/chrome/content/rules/peoplebank.com.xml +++ b/src/chrome/content/rules/peoplebank.com.xml @@ -21,7 +21,7 @@ --> - + - + - - - - - + + diff --git a/src/chrome/content/rules/pepperridgefarm.xml b/src/chrome/content/rules/pepperridgefarm.xml new file mode 100644 index 000000000000..bc52dd6b431a --- /dev/null +++ b/src/chrome/content/rules/pepperridgefarm.xml @@ -0,0 +1,7 @@ + + + + + + diff --git a/src/chrome/content/rules/perf-html.io.xml b/src/chrome/content/rules/perf-html.io.xml new file mode 100644 index 000000000000..0df403d28fdf --- /dev/null +++ b/src/chrome/content/rules/perf-html.io.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/perfora.net.xml b/src/chrome/content/rules/perfora.net.xml index 665dc45909bd..be722c2dc6dc 100644 --- a/src/chrome/content/rules/perfora.net.xml +++ b/src/chrome/content/rules/perfora.net.xml @@ -11,7 +11,7 @@ - + - + - + diff --git a/src/chrome/content/rules/peterkieser.com.xml b/src/chrome/content/rules/peterkieser.com.xml index 85c3d9b33dfb..73582638071f 100644 --- a/src/chrome/content/rules/peterkieser.com.xml +++ b/src/chrome/content/rules/peterkieser.com.xml @@ -4,7 +4,7 @@ - + - + - + https://pharmgkb.org/: (28, 'Connection tim STS header includes includeSubdomains --> - + @@ -14,7 +14,7 @@ Fetch error: http://pharmgkb.org/ => https://pharmgkb.org/: (28, 'Connection tim - + - + + - - - - + diff --git a/src/chrome/content/rules/phys.org.xml b/src/chrome/content/rules/phys.org.xml index 591836d18c1a..306d187eb27a 100644 --- a/src/chrome/content/rules/phys.org.xml +++ b/src/chrome/content/rules/phys.org.xml @@ -3,11 +3,13 @@ - + - + + diff --git a/src/chrome/content/rules/pi-hole.net.xml b/src/chrome/content/rules/pi-hole.net.xml index 39febe03a095..2e1143393231 100644 --- a/src/chrome/content/rules/pi-hole.net.xml +++ b/src/chrome/content/rules/pi-hole.net.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Non-2xx HTTP code: http://www.pi-hole.net/ (200) => https://www.pi-hole.net/ (526) --> - + @@ -12,7 +12,7 @@ Non-2xx HTTP code: http://www.pi-hole.net/ (200) => https://www.pi-hole.net/ (52 - + + + + + + + + + diff --git a/src/chrome/content/rules/pieperhome.de.xml b/src/chrome/content/rules/pieperhome.de.xml deleted file mode 100644 index 96a7b771f48d..000000000000 --- a/src/chrome/content/rules/pieperhome.de.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/pindrop.com.xml b/src/chrome/content/rules/pindrop.com.xml index c50ba6884972..a2ea209ee579 100644 --- a/src/chrome/content/rules/pindrop.com.xml +++ b/src/chrome/content/rules/pindrop.com.xml @@ -18,7 +18,7 @@ - + - + @@ -26,7 +26,7 @@ Non-2xx HTTP code: http://info.pindropsecurity.com/rs/pindropsecurity/images/Pin - + diff --git a/src/chrome/content/rules/piraadipartei.ee.xml b/src/chrome/content/rules/piraadipartei.ee.xml index a379e93c1367..684178abacb6 100644 --- a/src/chrome/content/rules/piraadipartei.ee.xml +++ b/src/chrome/content/rules/piraadipartei.ee.xml @@ -32,7 +32,7 @@ - + - + - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/pirate-party.us.xml b/src/chrome/content/rules/pirate-party.us.xml index eb0c279dfe99..3590f196d93d 100644 --- a/src/chrome/content/rules/pirate-party.us.xml +++ b/src/chrome/content/rules/pirate-party.us.xml @@ -27,7 +27,7 @@ - + + + + + + + diff --git a/src/chrome/content/rules/piratebaymirror.eu.xml b/src/chrome/content/rules/piratebaymirror.eu.xml new file mode 100644 index 000000000000..1975ec1f04ba --- /dev/null +++ b/src/chrome/content/rules/piratebaymirror.eu.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/piratebaynew.co.uk.xml b/src/chrome/content/rules/piratebaynew.co.uk.xml new file mode 100644 index 000000000000..88be73e9eb88 --- /dev/null +++ b/src/chrome/content/rules/piratebaynew.co.uk.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/piratebayproxy.be.xml b/src/chrome/content/rules/piratebayproxy.be.xml new file mode 100644 index 000000000000..c0ca440f29b7 --- /dev/null +++ b/src/chrome/content/rules/piratebayproxy.be.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/piraten-aargau.ch.xml b/src/chrome/content/rules/piraten-aargau.ch.xml index 14eecf876598..c71241bcd6ba 100644 --- a/src/chrome/content/rules/piraten-aargau.ch.xml +++ b/src/chrome/content/rules/piraten-aargau.ch.xml @@ -4,7 +4,7 @@ - + https://www.piraten-basel.ch/: (60, 'SSL certificate problem: certificate has expired') - - Insecure cookies are set for these hosts: ᶜ - - - piraten-basel.ch - - www.piraten-basel.ch - - ᶜ See https://owasp.org/index.php/SecureFlag - ---> - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/piraten.lu.xml b/src/chrome/content/rules/piraten.lu.xml index 37967a6ce71b..33369a20eeb1 100644 --- a/src/chrome/content/rules/piraten.lu.xml +++ b/src/chrome/content/rules/piraten.lu.xml @@ -19,7 +19,7 @@ Fetch error: http://www.piraten.lu/ => https://www.piraten.lu/: (60, 'SSL certif ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -31,7 +31,7 @@ Fetch error: http://www.piraten.lu/ => https://www.piraten.lu/: (60, 'SSL certif --> - + - - - - - - - - - - - - diff --git a/src/chrome/content/rules/pirateparty.gr.xml b/src/chrome/content/rules/pirateparty.gr.xml index 2e3a5f1d0b80..35a97e61171e 100644 --- a/src/chrome/content/rules/pirateparty.gr.xml +++ b/src/chrome/content/rules/pirateparty.gr.xml @@ -51,7 +51,7 @@ - + + + + + + + + diff --git a/src/chrome/content/rules/pirateproxy.net.xml b/src/chrome/content/rules/pirateproxy.net.xml new file mode 100644 index 000000000000..2e50069138a0 --- /dev/null +++ b/src/chrome/content/rules/pirateproxy.net.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/pirateproxy.se.xml b/src/chrome/content/rules/pirateproxy.se.xml new file mode 100644 index 000000000000..96575261616d --- /dev/null +++ b/src/chrome/content/rules/pirateproxy.se.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/pirateproxy.tv.xml b/src/chrome/content/rules/pirateproxy.tv.xml new file mode 100644 index 000000000000..e180562de6d7 --- /dev/null +++ b/src/chrome/content/rules/pirateproxy.tv.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/piratesahoy.net.xml b/src/chrome/content/rules/piratesahoy.net.xml new file mode 100644 index 000000000000..0511ba08b44c --- /dev/null +++ b/src/chrome/content/rules/piratesahoy.net.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/piratpartiet.dk.xml b/src/chrome/content/rules/piratpartiet.dk.xml deleted file mode 100644 index 9cfa5ab49154..000000000000 --- a/src/chrome/content/rules/piratpartiet.dk.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/pit-format-online.pl.xml b/src/chrome/content/rules/pit-format-online.pl.xml index ec365b2653eb..159e573f1839 100644 --- a/src/chrome/content/rules/pit-format-online.pl.xml +++ b/src/chrome/content/rules/pit-format-online.pl.xml @@ -14,7 +14,7 @@ --> - + - + - + - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/pixxxels.org.xml b/src/chrome/content/rules/pixxxels.org.xml deleted file mode 100644 index 0aefa090487e..000000000000 --- a/src/chrome/content/rules/pixxxels.org.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/pizzaportal.pl.xml b/src/chrome/content/rules/pizzaportal.pl.xml index a841d30a0dc6..2404ac506b87 100644 --- a/src/chrome/content/rules/pizzaportal.pl.xml +++ b/src/chrome/content/rules/pizzaportal.pl.xml @@ -43,7 +43,7 @@ - + - + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/plainenglish.co.uk.xml b/src/chrome/content/rules/plainenglish.co.uk.xml index 87da7331d294..935007b1668b 100644 --- a/src/chrome/content/rules/plainenglish.co.uk.xml +++ b/src/chrome/content/rules/plainenglish.co.uk.xml @@ -17,7 +17,7 @@ Fetch error: http://www.plainenglish.co.uk/ => https://www.plainenglish.co.uk/: ˢ Secured by us --> - + @@ -27,7 +27,7 @@ Fetch error: http://www.plainenglish.co.uk/ => https://www.plainenglish.co.uk/: --> - + https://www.planetrulers.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.planetrulers.com'") --> - + diff --git a/src/chrome/content/rules/planetsyria.org.xml b/src/chrome/content/rules/planetsyria.org.xml index c2cf05841732..356a400422ef 100644 --- a/src/chrome/content/rules/planetsyria.org.xml +++ b/src/chrome/content/rules/planetsyria.org.xml @@ -17,7 +17,7 @@ --> - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/plasso.co.xml b/src/chrome/content/rules/plasso.co.xml index bb36caacec33..e91992320962 100644 --- a/src/chrome/content/rules/plasso.co.xml +++ b/src/chrome/content/rules/plasso.co.xml @@ -32,7 +32,7 @@ --> - + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/playphrase.me.xml b/src/chrome/content/rules/playphrase.me.xml new file mode 100644 index 000000000000..7eaa5cf22ef9 --- /dev/null +++ b/src/chrome/content/rules/playphrase.me.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/plymouth.gov.uk.xml b/src/chrome/content/rules/plymouth.gov.uk.xml index c75426bbea63..2108fa2f4246 100644 --- a/src/chrome/content/rules/plymouth.gov.uk.xml +++ b/src/chrome/content/rules/plymouth.gov.uk.xml @@ -24,7 +24,7 @@ - Images on democracy from go.m-gov.eu ⁴ - favicon on secure1 from www.plymouth.gov.uk ʳ - + ⁴ Unsecurable <= 404 ʳ Unsecurable <= refused @@ -52,7 +52,7 @@ - + + + + + + + + diff --git a/src/chrome/content/rules/pmf.gov.xml b/src/chrome/content/rules/pmf.gov.xml deleted file mode 100644 index 7ee72b419808..000000000000 --- a/src/chrome/content/rules/pmf.gov.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/pocketmags.com.xml b/src/chrome/content/rules/pocketmags.com.xml index 065a97b69d5f..ed7845296018 100644 --- a/src/chrome/content/rules/pocketmags.com.xml +++ b/src/chrome/content/rules/pocketmags.com.xml @@ -1,6 +1,6 @@ - + - + - + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/pokerstars.com.xml b/src/chrome/content/rules/pokerstars.com.xml index 545386894563..0d823dfc7fbe 100644 --- a/src/chrome/content/rules/pokerstars.com.xml +++ b/src/chrome/content/rules/pokerstars.com.xml @@ -1,7 +1,6 @@ - - + + - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/pokerstarspartners.com.xml b/src/chrome/content/rules/pokerstarspartners.com.xml index 91fc087d17be..b831f1bfd90e 100644 --- a/src/chrome/content/rules/pokerstarspartners.com.xml +++ b/src/chrome/content/rules/pokerstarspartners.com.xml @@ -9,7 +9,7 @@ ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -19,7 +19,7 @@ --> - + + + + + + + + diff --git a/src/chrome/content/rules/police.gov.hk.xml b/src/chrome/content/rules/police.gov.hk.xml new file mode 100644 index 000000000000..9d0eca791dcf --- /dev/null +++ b/src/chrome/content/rules/police.gov.hk.xml @@ -0,0 +1,22 @@ + + + + + + + diff --git a/src/chrome/content/rules/policyalternatives.ca.xml b/src/chrome/content/rules/policyalternatives.ca.xml index 841a03e86d8a..799cd34ca0a2 100644 --- a/src/chrome/content/rules/policyalternatives.ca.xml +++ b/src/chrome/content/rules/policyalternatives.ca.xml @@ -19,7 +19,7 @@ - + - + - - - + - https://analytics.ponyfoo.com/: (6, 'Could not resolve host: analytics.ponyfoo.com') - ---> - - - - - - - diff --git a/src/chrome/content/rules/popcorntime.sh.xml b/src/chrome/content/rules/popcorntime.sh.xml index 81fe731d5236..a6c2fb17ff24 100644 --- a/src/chrome/content/rules/popcorntime.sh.xml +++ b/src/chrome/content/rules/popcorntime.sh.xml @@ -16,7 +16,7 @@ - + @@ -24,15 +24,15 @@ - + - + - + diff --git a/src/chrome/content/rules/popinga.it.xml b/src/chrome/content/rules/popinga.it.xml deleted file mode 100644 index 47001fd36104..000000000000 --- a/src/chrome/content/rules/popinga.it.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/chrome/content/rules/pornBB.xml b/src/chrome/content/rules/pornBB.xml deleted file mode 100644 index 0b6a16009fe4..000000000000 --- a/src/chrome/content/rules/pornBB.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/porndig.com.xml b/src/chrome/content/rules/porndig.com.xml index 21500de522bb..e017db3141f2 100644 --- a/src/chrome/content/rules/porndig.com.xml +++ b/src/chrome/content/rules/porndig.com.xml @@ -9,7 +9,7 @@ - + - - - + + + - + diff --git a/src/chrome/content/rules/portablepython.com.xml b/src/chrome/content/rules/portablepython.com.xml new file mode 100644 index 000000000000..a7c6d1911a92 --- /dev/null +++ b/src/chrome/content/rules/portablepython.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/portsmouth.gov.uk.xml b/src/chrome/content/rules/portsmouth.gov.uk.xml deleted file mode 100644 index 69a1358435c0..000000000000 --- a/src/chrome/content/rules/portsmouth.gov.uk.xml +++ /dev/null @@ -1,103 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/postcodeanywhere.co.uk.xml b/src/chrome/content/rules/postcodeanywhere.co.uk.xml index cea99da42e05..d9ede0be4b91 100644 --- a/src/chrome/content/rules/postcodeanywhere.co.uk.xml +++ b/src/chrome/content/rules/postcodeanywhere.co.uk.xml @@ -28,7 +28,7 @@ - + - - + + diff --git a/src/chrome/content/rules/postovoy.org.xml b/src/chrome/content/rules/postovoy.org.xml deleted file mode 100644 index 39c1b9e3dfbf..000000000000 --- a/src/chrome/content/rules/postovoy.org.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/pottermore.com.xml b/src/chrome/content/rules/pottermore.com.xml index 4467d9522136..9861e62a57d8 100644 --- a/src/chrome/content/rules/pottermore.com.xml +++ b/src/chrome/content/rules/pottermore.com.xml @@ -14,7 +14,7 @@ - + + + + + + + diff --git a/src/chrome/content/rules/powys.gov.uk.xml b/src/chrome/content/rules/powys.gov.uk.xml index d0c980ef2af5..cd26984a1be1 100644 --- a/src/chrome/content/rules/powys.gov.uk.xml +++ b/src/chrome/content/rules/powys.gov.uk.xml @@ -72,7 +72,7 @@ --> - + - + + + + + + + + + + + diff --git a/src/chrome/content/rules/praktikpladsen.dk.xml b/src/chrome/content/rules/praktikpladsen.dk.xml index 1a8115450c7d..43bb0c699d7a 100644 --- a/src/chrome/content/rules/praktikpladsen.dk.xml +++ b/src/chrome/content/rules/praktikpladsen.dk.xml @@ -1,6 +1,6 @@ - + diff --git a/src/chrome/content/rules/pravdatyt.com.xml b/src/chrome/content/rules/pravdatyt.com.xml deleted file mode 100644 index 575b9d294345..000000000000 --- a/src/chrome/content/rules/pravdatyt.com.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/pravobraz.ru.xml b/src/chrome/content/rules/pravobraz.ru.xml index 10cc2a7abd34..bd51d1a28390 100644 --- a/src/chrome/content/rules/pravobraz.ru.xml +++ b/src/chrome/content/rules/pravobraz.ru.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://cdn1.pravobraz.ru/ => https://cdn1.pravobraz.ru/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/precedent.com.xml b/src/chrome/content/rules/precedent.com.xml index 69e9610a8339..05b2070e3207 100644 --- a/src/chrome/content/rules/precedent.com.xml +++ b/src/chrome/content/rules/precedent.com.xml @@ -16,7 +16,7 @@ --> - + - + - + - + - + - + - + - + https://www.pretty52.com/: Too many red ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + - + - + + + + + + + diff --git a/src/chrome/content/rules/primustel.ca.xml b/src/chrome/content/rules/primustel.ca.xml index 6c8d6539e672..6120fc6ab4d4 100644 --- a/src/chrome/content/rules/primustel.ca.xml +++ b/src/chrome/content/rules/primustel.ca.xml @@ -18,7 +18,7 @@ --> - + - + - + + + + + + + + + + + + diff --git a/src/chrome/content/rules/privatebin.info.xml b/src/chrome/content/rules/privatebin.info.xml deleted file mode 100644 index 216463595bc9..000000000000 --- a/src/chrome/content/rules/privatebin.info.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/prnt.sc.xml b/src/chrome/content/rules/prnt.sc.xml index 0f2f8f010a2b..91d7fdfa3ec3 100644 --- a/src/chrome/content/rules/prnt.sc.xml +++ b/src/chrome/content/rules/prnt.sc.xml @@ -1,17 +1,15 @@ - - + - + diff --git a/src/chrome/content/rules/pro.hostingas.lt.xml b/src/chrome/content/rules/pro.hostingas.lt.xml index c72ffd9e7b75..433d0618429d 100644 --- a/src/chrome/content/rules/pro.hostingas.lt.xml +++ b/src/chrome/content/rules/pro.hostingas.lt.xml @@ -1,6 +1,6 @@ - + diff --git a/src/chrome/content/rules/proXPN.xml b/src/chrome/content/rules/proXPN.xml index f9bb757aa05c..64b52d88ba37 100644 --- a/src/chrome/content/rules/proXPN.xml +++ b/src/chrome/content/rules/proXPN.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://get.proxpn.com/ => https://get.proxpn.com/: (51, "SSL: no alternative certificate subject name matches target host name 'get.proxpn.com'") --> - + diff --git a/src/chrome/content/rules/probay.in.xml b/src/chrome/content/rules/probay.in.xml new file mode 100644 index 000000000000..1d745802ed67 --- /dev/null +++ b/src/chrome/content/rules/probay.in.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/progressivetech.org.xml b/src/chrome/content/rules/progressivetech.org.xml index a7c753fef928..f440fc52389d 100644 --- a/src/chrome/content/rules/progressivetech.org.xml +++ b/src/chrome/content/rules/progressivetech.org.xml @@ -3,7 +3,7 @@ - + + + + + diff --git a/src/chrome/content/rules/projectdev.org.xml b/src/chrome/content/rules/projectdev.org.xml index a0ec39be2ac0..8bdf3968fea2 100644 --- a/src/chrome/content/rules/projectdev.org.xml +++ b/src/chrome/content/rules/projectdev.org.xml @@ -5,7 +5,7 @@ Fetch error: http://wiki.projectdev.org/ => https://wiki.projectdev.org/: (6, 'C Fetch error: http://web.projectdev.org/ => https://web.projectdev.org/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/projectgus.com.xml b/src/chrome/content/rules/projectgus.com.xml index 68b889c31406..3fb7ce9affcd 100644 --- a/src/chrome/content/rules/projectgus.com.xml +++ b/src/chrome/content/rules/projectgus.com.xml @@ -4,7 +4,7 @@ - + - + diff --git a/src/chrome/content/rules/pronoun.is.xml b/src/chrome/content/rules/pronoun.is.xml new file mode 100644 index 000000000000..439d9722ba63 --- /dev/null +++ b/src/chrome/content/rules/pronoun.is.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/propub3r6espa33w.onion.xml b/src/chrome/content/rules/propub3r6espa33w.onion.xml new file mode 100644 index 000000000000..524d5db88b18 --- /dev/null +++ b/src/chrome/content/rules/propub3r6espa33w.onion.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/prostovpn.org.xml b/src/chrome/content/rules/prostovpn.org.xml deleted file mode 100644 index 002c6122d088..000000000000 --- a/src/chrome/content/rules/prostovpn.org.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/prototypefund.de.xml b/src/chrome/content/rules/prototypefund.de.xml deleted file mode 100644 index 50195c8110d8..000000000000 --- a/src/chrome/content/rules/prototypefund.de.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/protvino.net.xml b/src/chrome/content/rules/protvino.net.xml index 714b9ab95e57..6f6913180989 100644 --- a/src/chrome/content/rules/protvino.net.xml +++ b/src/chrome/content/rules/protvino.net.xml @@ -11,14 +11,14 @@ support.protvino.net mismatch hs.protvino.net mismatch uefa2016.protvino.net timed out --> - + - + - + diff --git a/src/chrome/content/rules/providercentral.org.uk.xml b/src/chrome/content/rules/providercentral.org.uk.xml index 81bfe7ebe02d..b8e65840a254 100644 --- a/src/chrome/content/rules/providercentral.org.uk.xml +++ b/src/chrome/content/rules/providercentral.org.uk.xml @@ -7,7 +7,7 @@ Fetch error: http://providercentral.org.uk/ => https://www.providercentral.org.u ^providercentral.org.uk: Handshake fails --> - + @@ -19,7 +19,7 @@ Fetch error: http://providercentral.org.uk/ => https://www.providercentral.org.u - + - + + + + + + + + + + + diff --git a/src/chrome/content/rules/proxybay.one.xml b/src/chrome/content/rules/proxybay.one.xml deleted file mode 100644 index f953f1c976f6..000000000000 --- a/src/chrome/content/rules/proxybay.one.xml +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/proxybay.pl.xml b/src/chrome/content/rules/proxybay.pl.xml deleted file mode 100644 index 8584aaf782a9..000000000000 --- a/src/chrome/content/rules/proxybay.pl.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - diff --git a/src/chrome/content/rules/proxyportal.org.xml b/src/chrome/content/rules/proxyportal.org.xml index e83299f7a593..02d2ca681b76 100644 --- a/src/chrome/content/rules/proxyportal.org.xml +++ b/src/chrome/content/rules/proxyportal.org.xml @@ -38,7 +38,7 @@ Fetch error: http://thepiratebay.webypass.xyz/ => https://thepiratebay.webypass. pirateproxy.press non-2xx http code --> - + @@ -94,4 +94,4 @@ pirateproxy.press non-2xx http code - \ No newline at end of file + diff --git a/src/chrome/content/rules/proxyshard.uk.xml b/src/chrome/content/rules/proxyshard.uk.xml deleted file mode 100644 index bd221fdff8ac..000000000000 --- a/src/chrome/content/rules/proxyshard.uk.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/proxytpb.nl.xml b/src/chrome/content/rules/proxytpb.nl.xml new file mode 100644 index 000000000000..bef3e0328f31 --- /dev/null +++ b/src/chrome/content/rules/proxytpb.nl.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/psc.gov.xml b/src/chrome/content/rules/psc.gov.xml deleted file mode 100644 index b9ec29ff5c07..000000000000 --- a/src/chrome/content/rules/psc.gov.xml +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/pspx.ru.xml b/src/chrome/content/rules/pspx.ru.xml new file mode 100644 index 000000000000..1d868dda34c9 --- /dev/null +++ b/src/chrome/content/rules/pspx.ru.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/psychcentral.com.xml b/src/chrome/content/rules/psychcentral.com.xml index 82de677b2347..434b204eac8a 100644 --- a/src/chrome/content/rules/psychcentral.com.xml +++ b/src/chrome/content/rules/psychcentral.com.xml @@ -28,7 +28,7 @@ - + - + - + - + - + - + - + - + - + - + - + diff --git a/src/chrome/content/rules/pureos.net.xml b/src/chrome/content/rules/pureos.net.xml new file mode 100644 index 000000000000..e0c9c79c84c1 --- /dev/null +++ b/src/chrome/content/rules/pureos.net.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/puri.sm.xml b/src/chrome/content/rules/puri.sm.xml new file mode 100644 index 000000000000..87b87cee0e68 --- /dev/null +++ b/src/chrome/content/rules/puri.sm.xml @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/pushshift.io.xml b/src/chrome/content/rules/pushshift.io.xml new file mode 100644 index 000000000000..2d465d85c9fc --- /dev/null +++ b/src/chrome/content/rules/pushshift.io.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/putlocker.is.xml b/src/chrome/content/rules/putlocker.is.xml index d880c22d6b6f..dcbaa98f3581 100644 --- a/src/chrome/content/rules/putlocker.is.xml +++ b/src/chrome/content/rules/putlocker.is.xml @@ -16,7 +16,7 @@ - + - + diff --git a/src/chrome/content/rules/pwntools.com.xml b/src/chrome/content/rules/pwntools.com.xml new file mode 100644 index 000000000000..fcdf6d491512 --- /dev/null +++ b/src/chrome/content/rules/pwntools.com.xml @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/pyeongchang2018.com.xml b/src/chrome/content/rules/pyeongchang2018.com.xml index 5de4f3aa88ef..036928fc3c13 100644 --- a/src/chrome/content/rules/pyeongchang2018.com.xml +++ b/src/chrome/content/rules/pyeongchang2018.com.xml @@ -5,7 +5,7 @@ Fetch error: http://missionrelay.pyeongchang2018.com/ => https://missionrelay.py newsletter.pyeongchang2018.com mismatch --> - + diff --git a/src/chrome/content/rules/pygmyboats.com-falsemixed.xml b/src/chrome/content/rules/pygmyboats.com-falsemixed.xml index 525bec8e6f99..95de1897bf08 100644 --- a/src/chrome/content/rules/pygmyboats.com-falsemixed.xml +++ b/src/chrome/content/rules/pygmyboats.com-falsemixed.xml @@ -11,7 +11,7 @@ - + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/qacafe.com.xml b/src/chrome/content/rules/qacafe.com.xml index a5015c67e26f..613571c5163b 100644 --- a/src/chrome/content/rules/qacafe.com.xml +++ b/src/chrome/content/rules/qacafe.com.xml @@ -17,7 +17,7 @@ --> - + https://test.qdaily.com/: (51, "SSL: no alternative certificate subject name matches target host name 'test.qdaily.com'") - Mismatch: ^ ( equal to www.qdaily.com ) img.qdaily.com mail.qdaily.com pad.qdaily.com test.pad.qdaily.com + test.qdaily.com Refused: app.qdaily.com --> - - + - + @@ -25,8 +21,8 @@ Fetch error: http://test.qdaily.com/ => https://test.qdaily.com/: (51, "SSL: no - - + + diff --git a/src/chrome/content/rules/qdcdn.com.xml b/src/chrome/content/rules/qdcdn.com.xml index 3ac878631d76..7cffcde8f14a 100644 --- a/src/chrome/content/rules/qdcdn.com.xml +++ b/src/chrome/content/rules/qdcdn.com.xml @@ -10,7 +10,7 @@ Fetch error: http://ssl.qdcdn.com/ => https://ssl.qdcdn.com/: (7, 'Failed to con Timeout: - 2fs.qdcdn.com --> - + diff --git a/src/chrome/content/rules/qelectrotech.org.xml b/src/chrome/content/rules/qelectrotech.org.xml deleted file mode 100644 index 7c311b69f9fc..000000000000 --- a/src/chrome/content/rules/qelectrotech.org.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/qf.org.qa.xml b/src/chrome/content/rules/qf.org.qa.xml index 327fc50eea7d..ed43e88a041e 100644 --- a/src/chrome/content/rules/qf.org.qa.xml +++ b/src/chrome/content/rules/qf.org.qa.xml @@ -44,7 +44,7 @@ Timeout: Other: fas.qf.org.qa --> - + diff --git a/src/chrome/content/rules/qfcdn.com.xml b/src/chrome/content/rules/qfcdn.com.xml index 33d713ccd16c..af2a643f9cf1 100644 --- a/src/chrome/content/rules/qfcdn.com.xml +++ b/src/chrome/content/rules/qfcdn.com.xml @@ -5,7 +5,7 @@ - + + + + + + + diff --git a/src/chrome/content/rules/qiwi.me.xml b/src/chrome/content/rules/qiwi.me.xml index 0828efa8cc37..827c2101b7f6 100644 --- a/src/chrome/content/rules/qiwi.me.xml +++ b/src/chrome/content/rules/qiwi.me.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://www.qiwi.me/ => https://www.qiwi.me/: (51, "SSL: no alternative certificate subject name matches target host name 'www.qiwi.me'") --> - + diff --git a/src/chrome/content/rules/qiyukf.com.xml b/src/chrome/content/rules/qiyukf.com.xml index f2b5f07c887a..25d03d1aa670 100644 --- a/src/chrome/content/rules/qiyukf.com.xml +++ b/src/chrome/content/rules/qiyukf.com.xml @@ -4,7 +4,7 @@ - + diff --git a/src/chrome/content/rules/qntm.org.xml b/src/chrome/content/rules/qntm.org.xml index 98208903355d..29066254a8ae 100644 --- a/src/chrome/content/rules/qntm.org.xml +++ b/src/chrome/content/rules/qntm.org.xml @@ -4,7 +4,7 @@ - + + + + + + + diff --git a/src/chrome/content/rules/quebecsolidaire.net.xml b/src/chrome/content/rules/quebecsolidaire.net.xml index 2cd8748ccd6e..02dbe5aaa20b 100644 --- a/src/chrome/content/rules/quebecsolidaire.net.xml +++ b/src/chrome/content/rules/quebecsolidaire.net.xml @@ -47,7 +47,7 @@ - + https://webmail.quickline.ch/: (51, - ndt.quickline.com - speedtest.quickline.com --> - + diff --git a/src/chrome/content/rules/quidsi.com.xml b/src/chrome/content/rules/quidsi.com.xml index dee10cb5e6a4..212b237c7c35 100644 --- a/src/chrome/content/rules/quidsi.com.xml +++ b/src/chrome/content/rules/quidsi.com.xml @@ -34,7 +34,7 @@ --> - + - + diff --git a/src/chrome/content/rules/r46.ru.xml b/src/chrome/content/rules/r46.ru.xml index 3816a628419f..e7cba5ecec74 100644 --- a/src/chrome/content/rules/r46.ru.xml +++ b/src/chrome/content/rules/r46.ru.xml @@ -10,7 +10,7 @@ games.r46.ru timed out kabinet-old.r46.ru mismatch webmail.r46.ru mismatch --> - + diff --git a/src/chrome/content/rules/radeon.ru.xml b/src/chrome/content/rules/radeon.ru.xml new file mode 100644 index 000000000000..de51cb263a49 --- /dev/null +++ b/src/chrome/content/rules/radeon.ru.xml @@ -0,0 +1,13 @@ + + + + + + + + diff --git a/src/chrome/content/rules/radio-browser.info.xml b/src/chrome/content/rules/radio-browser.info.xml new file mode 100644 index 000000000000..17c987b4e26c --- /dev/null +++ b/src/chrome/content/rules/radio-browser.info.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/radiocane.info.xml b/src/chrome/content/rules/radiocane.info.xml index f392266061a4..ff39d3a36eeb 100644 --- a/src/chrome/content/rules/radiocane.info.xml +++ b/src/chrome/content/rules/radiocane.info.xml @@ -22,7 +22,7 @@ - + https://radiokniga.com/: (60, 'SSL certif Fetch error: http://www.radiokniga.com/ => https://www.radiokniga.com/: (60, 'SSL certificate problem: certificate has expired') --> - + - + - + + + + + + + + + + diff --git a/src/chrome/content/rules/railyatri.in.xml b/src/chrome/content/rules/railyatri.in.xml new file mode 100644 index 000000000000..0a4c5adde7f3 --- /dev/null +++ b/src/chrome/content/rules/railyatri.in.xml @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/rainews.it.xml b/src/chrome/content/rules/rainews.it.xml new file mode 100644 index 000000000000..aa79fd317949 --- /dev/null +++ b/src/chrome/content/rules/rainews.it.xml @@ -0,0 +1,58 @@ + + + + + + + + diff --git a/src/chrome/content/rules/rainierarms.com.xml b/src/chrome/content/rules/rainierarms.com.xml index 91175909083f..f944e476877f 100644 --- a/src/chrome/content/rules/rainierarms.com.xml +++ b/src/chrome/content/rules/rainierarms.com.xml @@ -16,8 +16,8 @@ --> - - + + - + - + - + https://www.rapidrar.com/: (60, 'SSL ce ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -30,7 +30,7 @@ Fetch error: http://www.rapidrar.com/ => https://www.rapidrar.com/: (60, 'SSL ce --> - + - - - - - - - - - - diff --git a/src/chrome/content/rules/rarbg.xml b/src/chrome/content/rules/rarbg.xml index aa0381a17439..5454ec4acfcd 100644 --- a/src/chrome/content/rules/rarbg.xml +++ b/src/chrome/content/rules/rarbg.xml @@ -24,7 +24,7 @@ - + https://rascal999.co.uk/: (6, 'Could not STS header includes includeSubdomains --> - + @@ -15,7 +15,7 @@ Fetch error: http://rascal999.co.uk/ => https://rascal999.co.uk/: (6, 'Could not - + - + - + https://cdn.ravenjs.com/: Redirect for 'https://cdn.ravenjs.com/' missing location header - ---> - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/raxcdn.com.xml b/src/chrome/content/rules/raxcdn.com.xml index 3b93a3450a20..d0a47c08fe2d 100644 --- a/src/chrome/content/rules/raxcdn.com.xml +++ b/src/chrome/content/rules/raxcdn.com.xml @@ -17,7 +17,7 @@ --> - + - - - - - diff --git a/src/chrome/content/rules/rb-hk.de.xml b/src/chrome/content/rules/rb-hk.de.xml new file mode 100644 index 000000000000..66de65a1bf4b --- /dev/null +++ b/src/chrome/content/rules/rb-hk.de.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/rbdigital.com.xml b/src/chrome/content/rules/rbdigital.com.xml index b268a0ae94ed..a6c142f06fb5 100644 --- a/src/chrome/content/rules/rbdigital.com.xml +++ b/src/chrome/content/rules/rbdigital.com.xml @@ -5,7 +5,7 @@ - + - - - - - diff --git a/src/chrome/content/rules/rbkc.gov.uk.xml b/src/chrome/content/rules/rbkc.gov.uk.xml index b5a67e8134f4..b27a937db8ec 100644 --- a/src/chrome/content/rules/rbkc.gov.uk.xml +++ b/src/chrome/content/rules/rbkc.gov.uk.xml @@ -49,7 +49,7 @@ --> - + - + https://licensing.rbwm.gov.uk/: (6 ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -93,8 +93,8 @@ Fetch error: http://licensing.rbwm.gov.uk/ => https://licensing.rbwm.gov.uk/: (6 - - + + - - - - - - - - - - - - diff --git a/src/chrome/content/rules/rclone.org.xml b/src/chrome/content/rules/rclone.org.xml new file mode 100644 index 000000000000..9cea70ea1ace --- /dev/null +++ b/src/chrome/content/rules/rclone.org.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/rcm.org.uk.xml b/src/chrome/content/rules/rcm.org.uk.xml index c33e1e1fea15..8070b017b2b1 100644 --- a/src/chrome/content/rules/rcm.org.uk.xml +++ b/src/chrome/content/rules/rcm.org.uk.xml @@ -21,7 +21,7 @@ - + + + + + + + diff --git a/src/chrome/content/rules/reCaptcha.net.xml b/src/chrome/content/rules/reCaptcha.net.xml new file mode 100644 index 000000000000..5cab0cca5de2 --- /dev/null +++ b/src/chrome/content/rules/reCaptcha.net.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/reachboarding.com.xml b/src/chrome/content/rules/reachboarding.com.xml index daca779dda7b..0b01cc3f13f0 100644 --- a/src/chrome/content/rules/reachboarding.com.xml +++ b/src/chrome/content/rules/reachboarding.com.xml @@ -7,7 +7,7 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/realtimeboard.com.xml b/src/chrome/content/rules/realtimeboard.com.xml index 075265a7438e..92d19de847b2 100644 --- a/src/chrome/content/rules/realtimeboard.com.xml +++ b/src/chrome/content/rules/realtimeboard.com.xml @@ -39,7 +39,7 @@ --> - + - + + + + + + + + + + diff --git a/src/chrome/content/rules/recognified.net.xml b/src/chrome/content/rules/recognified.net.xml new file mode 100644 index 000000000000..816ed2489cb2 --- /dev/null +++ b/src/chrome/content/rules/recognified.net.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/recordedbooks.com.xml b/src/chrome/content/rules/recordedbooks.com.xml index 6e047fa6a512..3f627357f348 100644 --- a/src/chrome/content/rules/recordedbooks.com.xml +++ b/src/chrome/content/rules/recordedbooks.com.xml @@ -5,7 +5,7 @@ Fetch error: http://images.recordedbooks.com/publications/2011/ly5110g_FB_FindUs Fetch error: http://images.recordedbooks.com/ => https://images.recordedbooks.com/: (60, 'SSL certificate problem: certificate has expired') --> - + @@ -14,7 +14,7 @@ Fetch error: http://images.recordedbooks.com/ => https://images.recordedbooks.co - + - + - + - + - + - - - - - diff --git a/src/chrome/content/rules/redcare.com.xml b/src/chrome/content/rules/redcare.com.xml index 742c66580d38..595a1d77dfc1 100644 --- a/src/chrome/content/rules/redcare.com.xml +++ b/src/chrome/content/rules/redcare.com.xml @@ -11,12 +11,12 @@ Fetch error: http://www.redcare.com/ => https://www.redcare.com/: (7, 'Failed to - redcare.com --> - + - + - + diff --git a/src/chrome/content/rules/redditblog.com.xml b/src/chrome/content/rules/redditblog.com.xml index 6350e0b6f5ad..acffd785053b 100644 --- a/src/chrome/content/rules/redditblog.com.xml +++ b/src/chrome/content/rules/redditblog.com.xml @@ -1,16 +1,11 @@ - + + - - - - - + diff --git a/src/chrome/content/rules/redditbot.com.xml b/src/chrome/content/rules/redditbot.com.xml deleted file mode 100644 index cfd7b92c712a..000000000000 --- a/src/chrome/content/rules/redditbot.com.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/redditchbc.gov.uk.xml b/src/chrome/content/rules/redditchbc.gov.uk.xml index c4a15f0eb095..8830a9d13c9f 100644 --- a/src/chrome/content/rules/redditchbc.gov.uk.xml +++ b/src/chrome/content/rules/redditchbc.gov.uk.xml @@ -32,7 +32,7 @@ --> - + - + - + - + - - - - - - - - - - - diff --git a/src/chrome/content/rules/regeringen.se.xml b/src/chrome/content/rules/regeringen.se.xml new file mode 100644 index 000000000000..8d5996be77f1 --- /dev/null +++ b/src/chrome/content/rules/regeringen.se.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/regettingold.com.xml b/src/chrome/content/rules/regettingold.com.xml new file mode 100644 index 000000000000..d4490af839a9 --- /dev/null +++ b/src/chrome/content/rules/regettingold.com.xml @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/regexr.com.xml b/src/chrome/content/rules/regexr.com.xml new file mode 100644 index 000000000000..eadc57fba30d --- /dev/null +++ b/src/chrome/content/rules/regexr.com.xml @@ -0,0 +1,16 @@ + + + + + + + diff --git a/src/chrome/content/rules/regular-expressions.info.xml b/src/chrome/content/rules/regular-expressions.info.xml new file mode 100644 index 000000000000..7a6cc90a9417 --- /dev/null +++ b/src/chrome/content/rules/regular-expressions.info.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/relink.to.xml b/src/chrome/content/rules/relink.to.xml new file mode 100644 index 000000000000..ca779fbad99d --- /dev/null +++ b/src/chrome/content/rules/relink.to.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/renoise.com.xml b/src/chrome/content/rules/renoise.com.xml index 965973301a20..28c170bdaf0b 100644 --- a/src/chrome/content/rules/renoise.com.xml +++ b/src/chrome/content/rules/renoise.com.xml @@ -43,7 +43,7 @@ - + - + - - - - - diff --git a/src/chrome/content/rules/rescue.org-falsemixed.xml b/src/chrome/content/rules/rescue.org-falsemixed.xml deleted file mode 100644 index 838a3fd15cdf..000000000000 --- a/src/chrome/content/rules/rescue.org-falsemixed.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/rescue.org.xml b/src/chrome/content/rules/rescue.org.xml index f75522775842..dd0b4d970144 100644 --- a/src/chrome/content/rules/rescue.org.xml +++ b/src/chrome/content/rules/rescue.org.xml @@ -40,12 +40,12 @@ Non-2xx HTTP code: http://m.rescue.org/user (200) => https://m.rescue.org/user ( Mixed content: - - css on feature from $self - - Images on feature from $self - - favicon on feature from $self + - css on feature from $self + - Images on feature from $self + - favicon on feature from $self --> - + @@ -124,7 +124,7 @@ Non-2xx HTTP code: http://m.rescue.org/user (200) => https://m.rescue.org/user ( - + - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/responsetek.com.xml b/src/chrome/content/rules/responsetek.com.xml deleted file mode 100644 index 03d2ecf41b74..000000000000 --- a/src/chrome/content/rules/responsetek.com.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/restic.net.xml b/src/chrome/content/rules/restic.net.xml new file mode 100644 index 000000000000..8891333bd294 --- /dev/null +++ b/src/chrome/content/rules/restic.net.xml @@ -0,0 +1,12 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/rethink.org.xml b/src/chrome/content/rules/rethink.org.xml index 0d7e9f9132b8..cf4ef6793adb 100644 --- a/src/chrome/content/rules/rethink.org.xml +++ b/src/chrome/content/rules/rethink.org.xml @@ -29,7 +29,7 @@ - + - + + + + + + diff --git a/src/chrome/content/rules/retroachievements.org.xml b/src/chrome/content/rules/retroachievements.org.xml new file mode 100644 index 000000000000..f7b5e2caecda --- /dev/null +++ b/src/chrome/content/rules/retroachievements.org.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/retroarch.com.xml b/src/chrome/content/rules/retroarch.com.xml new file mode 100644 index 000000000000..c6de8257cf18 --- /dev/null +++ b/src/chrome/content/rules/retroarch.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/reuters.tv.xml b/src/chrome/content/rules/reuters.tv.xml index 6521d67bf912..ce13f4b052b9 100644 --- a/src/chrome/content/rules/reuters.tv.xml +++ b/src/chrome/content/rules/reuters.tv.xml @@ -26,7 +26,7 @@ - + - + - + - + - + diff --git a/src/chrome/content/rules/rhap.com.xml b/src/chrome/content/rules/rhap.com.xml index 0d3b1d4214f5..0ccce16174f7 100644 --- a/src/chrome/content/rules/rhap.com.xml +++ b/src/chrome/content/rules/rhap.com.xml @@ -12,7 +12,7 @@ - + - + - + https://ridecompare.com/: (28, 'Connecti Fetch error: http://www.ridecompare.com/ => https://www.ridecompare.com/: (28, 'Connection timed out after 20001 milliseconds') --> - + - + + + + + + + + + diff --git a/src/chrome/content/rules/rio2016.com.xml b/src/chrome/content/rules/rio2016.com.xml index ca482e332f90..f7b6e8a60383 100644 --- a/src/chrome/content/rules/rio2016.com.xml +++ b/src/chrome/content/rules/rio2016.com.xml @@ -8,7 +8,7 @@ Fetch error: http://rioexchange.rio2016.com/ => https://rioexchange.rio2016.com/ imprensa.rio2016.com mismatch portaldesuprimentos.rio2016.com mismatch --> - + diff --git a/src/chrome/content/rules/ripmedicaldebt.org.xml b/src/chrome/content/rules/ripmedicaldebt.org.xml index c52b7c623e88..bee639cf2609 100644 --- a/src/chrome/content/rules/ripmedicaldebt.org.xml +++ b/src/chrome/content/rules/ripmedicaldebt.org.xml @@ -17,7 +17,7 @@ --> - + + + + + + + + diff --git a/src/chrome/content/rules/rivals.com.xml b/src/chrome/content/rules/rivals.com.xml index dca945ebfc86..2de2c07b2926 100644 --- a/src/chrome/content/rules/rivals.com.xml +++ b/src/chrome/content/rules/rivals.com.xml @@ -26,7 +26,7 @@ - + - + https://www.rkhd.in/: (60, 'SSL certificate ʳ Refused --> - + @@ -29,7 +29,7 @@ Fetch error: http://www.rkhd.in/ => https://www.rkhd.in/: (60, 'SSL certificate --> - + - + - + - + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/robustirc.net.xml b/src/chrome/content/rules/robustirc.net.xml index e6c58c8c0a82..8a0467489b71 100644 --- a/src/chrome/content/rules/robustirc.net.xml +++ b/src/chrome/content/rules/robustirc.net.xml @@ -5,7 +5,7 @@ - + + + + + + diff --git a/src/chrome/content/rules/rockfile.eu.xml b/src/chrome/content/rules/rockfile.eu.xml deleted file mode 100644 index 446b90839341..000000000000 --- a/src/chrome/content/rules/rockfile.eu.xml +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/rocksbox.com.xml b/src/chrome/content/rules/rocksbox.com.xml index 027bda6c4dbf..1b406af20ca7 100644 --- a/src/chrome/content/rules/rocksbox.com.xml +++ b/src/chrome/content/rules/rocksbox.com.xml @@ -7,13 +7,13 @@ - + - + + + + + + + + + diff --git a/src/chrome/content/rules/rootless.org.xml b/src/chrome/content/rules/rootless.org.xml index 6800563fabbd..1ce27deee54b 100644 --- a/src/chrome/content/rules/rootless.org.xml +++ b/src/chrome/content/rules/rootless.org.xml @@ -10,7 +10,7 @@ NB: server sends no certificate chain, see https://whatsmychaincert.com --> - + diff --git a/src/chrome/content/rules/rosamondgiffordzoo.org.xml b/src/chrome/content/rules/rosamondgiffordzoo.org.xml new file mode 100644 index 000000000000..7af577edd225 --- /dev/null +++ b/src/chrome/content/rules/rosamondgiffordzoo.org.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/roskomzakon.ru.xml b/src/chrome/content/rules/roskomzakon.ru.xml index 00a05e63e731..bb3034a6c34c 100644 --- a/src/chrome/content/rules/roskomzakon.ru.xml +++ b/src/chrome/content/rules/roskomzakon.ru.xml @@ -4,7 +4,7 @@ www.roskomzakon.ru self signed - + diff --git a/src/chrome/content/rules/rosminzdrav.ru.xml b/src/chrome/content/rules/rosminzdrav.ru.xml index 526f07524bf5..eae48a994da3 100644 --- a/src/chrome/content/rules/rosminzdrav.ru.xml +++ b/src/chrome/content/rules/rosminzdrav.ru.xml @@ -95,7 +95,7 @@ hc.rosminzdrav.ru different content ⁵ expired ⁷ protocol error --> - + diff --git a/src/chrome/content/rules/rostov.press.xml b/src/chrome/content/rules/rostov.press.xml deleted file mode 100644 index 61c85b19d139..000000000000 --- a/src/chrome/content/rules/rostov.press.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/chrome/content/rules/routingpacketsisnotacrime.uk.xml b/src/chrome/content/rules/routingpacketsisnotacrime.uk.xml deleted file mode 100644 index d2185f31f3bb..000000000000 --- a/src/chrome/content/rules/routingpacketsisnotacrime.uk.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/royaldns.net.xml b/src/chrome/content/rules/royaldns.net.xml index 8c8574321af5..f93b1d68b4d9 100644 --- a/src/chrome/content/rules/royaldns.net.xml +++ b/src/chrome/content/rules/royaldns.net.xml @@ -1,9 +1,11 @@ - - - - - - + + + + + + + + diff --git a/src/chrome/content/rules/royalvoluntaryservice.org.uk-resources.xml b/src/chrome/content/rules/royalvoluntaryservice.org.uk-resources.xml deleted file mode 100644 index dca58614bbb4..000000000000 --- a/src/chrome/content/rules/royalvoluntaryservice.org.uk-resources.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/royalvoluntaryservice.org.uk.xml b/src/chrome/content/rules/royalvoluntaryservice.org.uk.xml index 7b390e1bec81..1c1987ad2683 100644 --- a/src/chrome/content/rules/royalvoluntaryservice.org.uk.xml +++ b/src/chrome/content/rules/royalvoluntaryservice.org.uk.xml @@ -1,61 +1,21 @@ - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + diff --git a/src/chrome/content/rules/roysac.com.xml b/src/chrome/content/rules/roysac.com.xml deleted file mode 100644 index cf53ab8ef9e6..000000000000 --- a/src/chrome/content/rules/roysac.com.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/rsbsrt.ru.xml b/src/chrome/content/rules/rsbsrt.ru.xml new file mode 100644 index 000000000000..13b48c98b835 --- /dev/null +++ b/src/chrome/content/rules/rsbsrt.ru.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/rsdn.org.xml b/src/chrome/content/rules/rsdn.org.xml index 1e4d38076bf7..ea7c0152ae20 100644 --- a/src/chrome/content/rules/rsdn.org.xml +++ b/src/chrome/content/rules/rsdn.org.xml @@ -1,21 +1,15 @@ - - - + + + - - + diff --git a/src/chrome/content/rules/rsl.ru.xml b/src/chrome/content/rules/rsl.ru.xml index eebdfcc2b163..5b3e85087c05 100644 --- a/src/chrome/content/rules/rsl.ru.xml +++ b/src/chrome/content/rules/rsl.ru.xml @@ -91,7 +91,7 @@ nebreader.rsl.ru mixed content ⁴ self signed ⁵ expired --> - + diff --git a/src/chrome/content/rules/rssowl.org.xml b/src/chrome/content/rules/rssowl.org.xml new file mode 100644 index 000000000000..af0bbb4be314 --- /dev/null +++ b/src/chrome/content/rules/rssowl.org.xml @@ -0,0 +1,17 @@ + + + + + + + + diff --git a/src/chrome/content/rules/rtbpopd.com.xml b/src/chrome/content/rules/rtbpopd.com.xml index 89e0978bc74a..893e8e7e85b2 100644 --- a/src/chrome/content/rules/rtbpopd.com.xml +++ b/src/chrome/content/rules/rtbpopd.com.xml @@ -28,7 +28,7 @@ --> - + + + + + + + + + + + diff --git a/src/chrome/content/rules/rtm.quebec.xml b/src/chrome/content/rules/rtm.quebec.xml new file mode 100644 index 000000000000..2195221b128e --- /dev/null +++ b/src/chrome/content/rules/rtm.quebec.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/rtr-vesti.ru.xml b/src/chrome/content/rules/rtr-vesti.ru.xml index ff0884df46fc..a7722b0b5b0e 100644 --- a/src/chrome/content/rules/rtr-vesti.ru.xml +++ b/src/chrome/content/rules/rtr-vesti.ru.xml @@ -20,7 +20,7 @@ - + + + + + + + diff --git a/src/chrome/content/rules/ruanyifeng.com.xml b/src/chrome/content/rules/ruanyifeng.com.xml new file mode 100644 index 000000000000..60e1d9f3b226 --- /dev/null +++ b/src/chrome/content/rules/ruanyifeng.com.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/rubri.co.xml b/src/chrome/content/rules/rubri.co.xml new file mode 100644 index 000000000000..583a1ba66a69 --- /dev/null +++ b/src/chrome/content/rules/rubri.co.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/rudimental.co.uk.xml b/src/chrome/content/rules/rudimental.co.uk.xml new file mode 100644 index 000000000000..85fd70632085 --- /dev/null +++ b/src/chrome/content/rules/rudimental.co.uk.xml @@ -0,0 +1,14 @@ + + + + + + + + diff --git a/src/chrome/content/rules/ruffle.rs.xml b/src/chrome/content/rules/ruffle.rs.xml new file mode 100644 index 000000000000..0457b49f4d25 --- /dev/null +++ b/src/chrome/content/rules/ruffle.rs.xml @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/src/chrome/content/rules/rufus.ie.xml b/src/chrome/content/rules/rufus.ie.xml new file mode 100644 index 000000000000..3ffbaacaabcd --- /dev/null +++ b/src/chrome/content/rules/rufus.ie.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/src/chrome/content/rules/ruguoapp.com.xml b/src/chrome/content/rules/ruguoapp.com.xml deleted file mode 100644 index 85d7f111954d..000000000000 --- a/src/chrome/content/rules/ruguoapp.com.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/runnersconnect.net.xml b/src/chrome/content/rules/runnersconnect.net.xml index 5653431d5582..d75ed32f978b 100644 --- a/src/chrome/content/rules/runnersconnect.net.xml +++ b/src/chrome/content/rules/runnersconnect.net.xml @@ -21,7 +21,7 @@ --> - + https://myaccount.runnymede.gov.uk/: (52, 'Empty reply from server') - Runnymede Borough Council For other UK government coverage, see GOV.UK.xml. + Non-functional hosts + Timeout was reached: + - butlerdata.runnymede.gov.uk + - butlertestdata.runnymede.gov.uk + - documents.runnymede.gov.uk + - freja.runnymede.gov.uk + - mail.runnymede.gov.uk + - planning.runnymede.gov.uk + - ww4.runnymede.gov.uk + + SSL peer certificate was not OK: + - myaccount.runnymede.gov.uk + - ww2.runnymede.gov.uk - Nonfunctional hosts in *runnymede.gov.uk: - - - documents ᵈ - - petitions ᵗ - - ᵈ Dropped - ᵗ Reset - - - Problematic hosts in *runnymede.gov.uk: - - - maps ᶜ - - ᶜ Server sends no certificate chain, see https://whatsmychaincert.com - - - Insecure cookies are set for these hosts: + Peer certificate cannot be authenticated with given CA certificates: + - myforms.runnymede.gov.uk + - ww5.runnymede.gov.uk - - runnymede.gov.uk - - m.runnymede.gov.uk - - myaccount.runnymede.gov.uk - - www.runnymede.gov.uk + Incomplete certificate chain error: + - parking.runnymede.gov.uk + Mixed content blocking (MCB) triggered: + - petitions.runnymede.gov.uk --> - - + - - - + + + + + - - - - - - - - - - + diff --git a/src/chrome/content/rules/runpee.com.xml b/src/chrome/content/rules/runpee.com.xml new file mode 100644 index 000000000000..f27e17e3c789 --- /dev/null +++ b/src/chrome/content/rules/runpee.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/runtimeverification.com.xml b/src/chrome/content/rules/runtimeverification.com.xml index 69f051c7256e..98352b897e88 100644 --- a/src/chrome/content/rules/runtimeverification.com.xml +++ b/src/chrome/content/rules/runtimeverification.com.xml @@ -5,7 +5,7 @@ - + - + - + - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/rustedlogic.net.xml b/src/chrome/content/rules/rustedlogic.net.xml new file mode 100644 index 000000000000..9f9e456234d2 --- /dev/null +++ b/src/chrome/content/rules/rustedlogic.net.xml @@ -0,0 +1,168 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/rutland.gov.uk.xml b/src/chrome/content/rules/rutland.gov.uk.xml index ed1f9f1f0682..48e2e1e4da1e 100644 --- a/src/chrome/content/rules/rutland.gov.uk.xml +++ b/src/chrome/content/rules/rutland.gov.uk.xml @@ -26,7 +26,7 @@ - webpayments.rutland.gov.uk --> - + @@ -35,7 +35,7 @@ --> - + https://rw-online.co.uk/: (60, 'SSL cert ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -20,8 +20,8 @@ Fetch error: http://rw-online.co.uk/ => https://rw-online.co.uk/: (60, 'SSL cert --> - - + + https://webmarket.rwe.de/: (6, 'Could n ^rwe.de: Mismatched --> - + @@ -23,9 +23,9 @@ Fetch error: http://webmarket.rwe.de/ => https://webmarket.rwe.de/: (6, 'Could n - + - + - - - - - - - - - - - - diff --git a/src/chrome/content/rules/saba.com.xml b/src/chrome/content/rules/saba.com.xml index 2897158f0f34..ed58885e062d 100644 --- a/src/chrome/content/rules/saba.com.xml +++ b/src/chrome/content/rules/saba.com.xml @@ -25,7 +25,7 @@ Fetch error: http://help.saba.com/ => https://help.saba.com/: (7, 'Failed to con ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -56,7 +56,7 @@ Fetch error: http://help.saba.com/ => https://help.saba.com/: (7, 'Failed to con --> - + - + https://safeornot.net/: (60, 'SSL certific - www (cert mismatch, CN: geo.cryptolayer.net) --> - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/sahih-bukhari.com.xml b/src/chrome/content/rules/sahih-bukhari.com.xml deleted file mode 100644 index 0019cc7a9bf3..000000000000 --- a/src/chrome/content/rules/sahih-bukhari.com.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/saintcon.org.xml b/src/chrome/content/rules/saintcon.org.xml index 190cd2b06bf2..315e120a909a 100644 --- a/src/chrome/content/rules/saintcon.org.xml +++ b/src/chrome/content/rules/saintcon.org.xml @@ -19,7 +19,7 @@ - + - + - + - + https://maps.salford.gov.uk/: (28, 'Operation timed out after 30000 milliseconds with 0 bytes received') - - Salford City Council - For other UK government coverage, see GOV.UK.xml. + Non-functional hosts + Timeout was reached: + - citymayor.salford.gov.uk - Nonfunctional hosts in *salford.gov.uk: - - - citymayor ᵈ - - epetitions ᵗ - - publicaccess ᵈ - - ᵈ Dropped - ᵗ Reset - - - Problematic hosts in *salford.gov.uk: - - - beta ᵐ - - himpact ᵐ - - ᵐ Mismatched - - - These altnames do not exist: - - - salford.gov.uk - - - Insecure cookies are set for these domains and hosts: - - - .beta.salford.gov.uk + 5xx server error: - maps.salford.gov.uk - - services.salford.gov.uk - - stats.salford.gov.uk - - - Mixed content: - - - favicon on services from www.salford.gov.uk ˢ - - ˢ Secured by us - --> - - - + + + - - - - - - - - - - - - - - + diff --git a/src/chrome/content/rules/saltpack.org.xml b/src/chrome/content/rules/saltpack.org.xml index 9ce37d514cf0..04d4bdebd68b 100644 --- a/src/chrome/content/rules/saltpack.org.xml +++ b/src/chrome/content/rules/saltpack.org.xml @@ -1,27 +1,9 @@ - - - - - - - - - - - - - - + + diff --git a/src/chrome/content/rules/samaratoday.ru.xml b/src/chrome/content/rules/samaratoday.ru.xml index 30d73725a479..46917becb367 100644 --- a/src/chrome/content/rules/samaratoday.ru.xml +++ b/src/chrome/content/rules/samaratoday.ru.xml @@ -12,7 +12,7 @@ news.samaratoday.ru mixed content ⁴ self signed --> - + diff --git a/src/chrome/content/rules/samlab.ws.xml b/src/chrome/content/rules/samlab.ws.xml new file mode 100644 index 000000000000..a10ba660862d --- /dev/null +++ b/src/chrome/content/rules/samlab.ws.xml @@ -0,0 +1,16 @@ + + + + + + + diff --git a/src/chrome/content/rules/sampelongbeach.org.xml b/src/chrome/content/rules/sampelongbeach.org.xml index 9d00c0cfcfbe..22d707b3d6db 100644 --- a/src/chrome/content/rules/sampelongbeach.org.xml +++ b/src/chrome/content/rules/sampelongbeach.org.xml @@ -17,7 +17,7 @@ --> - + - + diff --git a/src/chrome/content/rules/sandwell.gov.uk.xml b/src/chrome/content/rules/sandwell.gov.uk.xml index 0d6562c4ed6d..83984498b7b3 100644 --- a/src/chrome/content/rules/sandwell.gov.uk.xml +++ b/src/chrome/content/rules/sandwell.gov.uk.xml @@ -58,8 +58,8 @@ - - + + + + + + + + diff --git a/src/chrome/content/rules/sankakucomplex.com.xml b/src/chrome/content/rules/sankakucomplex.com.xml index 4d20d44d7866..c73e4709fa7a 100644 --- a/src/chrome/content/rules/sankakucomplex.com.xml +++ b/src/chrome/content/rules/sankakucomplex.com.xml @@ -18,7 +18,7 @@ - + diff --git a/src/chrome/content/rules/sanomacloud.net.xml b/src/chrome/content/rules/sanomacloud.net.xml index 7c6aca7e972c..26c30669ade1 100644 --- a/src/chrome/content/rules/sanomacloud.net.xml +++ b/src/chrome/content/rules/sanomacloud.net.xml @@ -11,7 +11,7 @@ - + - + - - - - diff --git a/src/chrome/content/rules/saskatooncarshare.xml b/src/chrome/content/rules/saskatooncarshare.xml new file mode 100644 index 000000000000..6a1a527ebaac --- /dev/null +++ b/src/chrome/content/rules/saskatooncarshare.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/saskcoop.xml b/src/chrome/content/rules/saskcoop.xml new file mode 100644 index 000000000000..2d5e5f4ca0bc --- /dev/null +++ b/src/chrome/content/rules/saskcoop.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/src/chrome/content/rules/satoshilabs.com-falsemixed.xml b/src/chrome/content/rules/satoshilabs.com-falsemixed.xml deleted file mode 100644 index 21265a10702e..000000000000 --- a/src/chrome/content/rules/satoshilabs.com-falsemixed.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/satoshilabs.com.xml b/src/chrome/content/rules/satoshilabs.com.xml deleted file mode 100644 index 84cacf271d46..000000000000 --- a/src/chrome/content/rules/satoshilabs.com.xml +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/saturn.de.xml b/src/chrome/content/rules/saturn.de.xml index 5255f2582f6e..3cd2a600f65b 100644 --- a/src/chrome/content/rules/saturn.de.xml +++ b/src/chrome/content/rules/saturn.de.xml @@ -54,7 +54,7 @@ prospekt.saturn.de different content ⁶ redirect ⁷ protocol error --> - + diff --git a/src/chrome/content/rules/save.org.xml b/src/chrome/content/rules/save.org.xml index da89eb9d30a1..8173ce87bb4f 100644 --- a/src/chrome/content/rules/save.org.xml +++ b/src/chrome/content/rules/save.org.xml @@ -23,7 +23,7 @@ --> - + - + - + - + https://www.schema.org/: Too many redirects while fetching 'https://www.schema.org/' - - refused: + Refused: - blog.schema.org + + Timeout: + - www.schema.org --> - - - - + + + + + + + + + + + + + + + + - diff --git a/src/chrome/content/rules/schlicht-moebel.de.xml b/src/chrome/content/rules/schlicht-moebel.de.xml deleted file mode 100644 index 9b5befb93d30..000000000000 --- a/src/chrome/content/rules/schlicht-moebel.de.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/schneierfacts.com.xml b/src/chrome/content/rules/schneierfacts.com.xml index b181dd1d72a9..7b19238b3704 100644 --- a/src/chrome/content/rules/schneierfacts.com.xml +++ b/src/chrome/content/rules/schneierfacts.com.xml @@ -4,7 +4,7 @@ - + - + - - + @@ -39,10 +38,9 @@ - - + diff --git a/src/chrome/content/rules/scmagazine.com.xml b/src/chrome/content/rules/scmagazine.com.xml index 4b63f678a264..da18871b72a7 100644 --- a/src/chrome/content/rules/scmagazine.com.xml +++ b/src/chrome/content/rules/scmagazine.com.xml @@ -52,16 +52,13 @@ --> - - + + - - - + + + + + + + diff --git a/src/chrome/content/rules/scoreassured.com.xml b/src/chrome/content/rules/scoreassured.com.xml index b0d4b335286f..d8527f6b9238 100644 --- a/src/chrome/content/rules/scoreassured.com.xml +++ b/src/chrome/content/rules/scoreassured.com.xml @@ -12,7 +12,7 @@ Fetch error: http://www.scoreassured.com/ => https://www.scoreassured.com/: (60, ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -22,7 +22,7 @@ Fetch error: http://www.scoreassured.com/ => https://www.scoreassured.com/: (60, --> - + https://scottishgovernment.presscentre.com/: (28, 'Connection timed out after 20001 milliseconds') - - For other UK government coverage, see GOV.UK.xml. - - - Nonfunctional hosts in *scotland.gov.uk: - - - aquaculture ᵈ - - blogs ᵈ - - labs.data ᵈ - - www.environment ᵈ - - housingcharter ᵃ - - pirc ʳ - - register ᵈ - - simd ʳ - - www ᵈ - - ᵃ Shows another domain - ᵈ Dropped - ʳ Refused - - - Problematic hosts in *scotland.gov.uk: - - - business ᵐ - - news ᵐ - - ᵐ Mismatched - - - Partially covered hosts in *scotland.gov.uk: - - - www.marine ʰ - - ʰ Some pages redirect to http - - - These altnames don't exist: - - - www.consult.scotland.gov.uk - - - Insecure cookies are set for these hosts: - - - www.dpea.scotland.gov.uk - ---> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/scotland.police.uk-mixedcontent.xml b/src/chrome/content/rules/scotland.police.uk-mixedcontent.xml index 20360fb34e6b..f45de0215389 100644 --- a/src/chrome/content/rules/scotland.police.uk-mixedcontent.xml +++ b/src/chrome/content/rules/scotland.police.uk-mixedcontent.xml @@ -10,7 +10,7 @@ Fetch error: http://www.scotland.police.uk/your-community/fife/ => https://www.s NB: See https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + diff --git a/src/chrome/content/rules/scotland.police.uk.xml b/src/chrome/content/rules/scotland.police.uk.xml index e158dc041c84..66f06e58b743 100644 --- a/src/chrome/content/rules/scotland.police.uk.xml +++ b/src/chrome/content/rules/scotland.police.uk.xml @@ -18,7 +18,7 @@ Fetch error: http://www.askthe.scotland.police.uk/ => https://www.askthe.scotlan Mixed content: - css, on: - + - www from serverapi.arcgisonline.com ˢ - www from live.policestatic.co.uk ʰ @@ -28,7 +28,7 @@ Fetch error: http://www.askthe.scotland.police.uk/ => https://www.askthe.scotlan ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -69,7 +69,7 @@ Fetch error: http://www.askthe.scotland.police.uk/ => https://www.askthe.scotlan - + - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/scrutinizer-ci.com.xml b/src/chrome/content/rules/scrutinizer-ci.com.xml index 7874ca6eae8d..caf61ae4538d 100644 --- a/src/chrome/content/rules/scrutinizer-ci.com.xml +++ b/src/chrome/content/rules/scrutinizer-ci.com.xml @@ -48,7 +48,7 @@ wss.scrutinizer-ci.com different content ³ timed out ⁵ expired --> - + diff --git a/src/chrome/content/rules/sdk.cn.xml b/src/chrome/content/rules/sdk.cn.xml deleted file mode 100644 index b6e26517f92b..000000000000 --- a/src/chrome/content/rules/sdk.cn.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/sdkboy.com.xml b/src/chrome/content/rules/sdkboy.com.xml new file mode 100644 index 000000000000..3cf4fa39046a --- /dev/null +++ b/src/chrome/content/rules/sdkboy.com.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/sdrplay.com.xml b/src/chrome/content/rules/sdrplay.com.xml new file mode 100644 index 000000000000..0cb098eabc6a --- /dev/null +++ b/src/chrome/content/rules/sdrplay.com.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/se-sy.org.xml b/src/chrome/content/rules/se-sy.org.xml index b93113cc9b19..1b8691aa5a49 100644 --- a/src/chrome/content/rules/se-sy.org.xml +++ b/src/chrome/content/rules/se-sy.org.xml @@ -20,7 +20,7 @@ - + - + + + + + + + + diff --git a/src/chrome/content/rules/searchenginejournal.com.xml b/src/chrome/content/rules/searchenginejournal.com.xml index 4398418ce6b6..81d75fe67eb4 100644 --- a/src/chrome/content/rules/searchenginejournal.com.xml +++ b/src/chrome/content/rules/searchenginejournal.com.xml @@ -19,7 +19,7 @@ --> - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/searchx.mobi.xml b/src/chrome/content/rules/searchx.mobi.xml new file mode 100644 index 000000000000..1b4ee39453f4 --- /dev/null +++ b/src/chrome/content/rules/searchx.mobi.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/searx.at.xml b/src/chrome/content/rules/searx.at.xml new file mode 100644 index 000000000000..a3103623e685 --- /dev/null +++ b/src/chrome/content/rules/searx.at.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/searx.ch.xml b/src/chrome/content/rules/searx.ch.xml new file mode 100644 index 000000000000..bb3af95cd64b --- /dev/null +++ b/src/chrome/content/rules/searx.ch.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/searx.info.xml b/src/chrome/content/rules/searx.info.xml new file mode 100644 index 000000000000..fb93aafaaf1e --- /dev/null +++ b/src/chrome/content/rules/searx.info.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/searx.me.xml b/src/chrome/content/rules/searx.me.xml new file mode 100644 index 000000000000..f334381d57ad --- /dev/null +++ b/src/chrome/content/rules/searx.me.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/searx.pw.xml b/src/chrome/content/rules/searx.pw.xml new file mode 100644 index 000000000000..fdb877e85c08 --- /dev/null +++ b/src/chrome/content/rules/searx.pw.xml @@ -0,0 +1,8 @@ + + + + + + + diff --git a/src/chrome/content/rules/secnews.ru.xml b/src/chrome/content/rules/secnews.ru.xml new file mode 100644 index 000000000000..9330ffd06695 --- /dev/null +++ b/src/chrome/content/rules/secnews.ru.xml @@ -0,0 +1,16 @@ + + + + + + + diff --git a/src/chrome/content/rules/secouchermoinsbete.fr.xml b/src/chrome/content/rules/secouchermoinsbete.fr.xml new file mode 100644 index 000000000000..1d26d293b6a8 --- /dev/null +++ b/src/chrome/content/rules/secouchermoinsbete.fr.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/secure-decoration.com.xml b/src/chrome/content/rules/secure-decoration.com.xml index a915dee597b0..3617646d57e7 100644 --- a/src/chrome/content/rules/secure-decoration.com.xml +++ b/src/chrome/content/rules/secure-decoration.com.xml @@ -18,7 +18,7 @@ --> - + https://secure-usb.co.uk/: (6, 'Could not resolve host: secure-usb.co.uk') -Fetch error: http://www.secure-usb.co.uk/ => https://www.secure-usb.co.uk/: (6, 'Could not resolve host: www.secure-usb.co.uk') - ---> - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/securedatejoin.com.xml b/src/chrome/content/rules/securedatejoin.com.xml index 65b3a74cc0fb..fdb95f4aa54d 100644 --- a/src/chrome/content/rules/securedatejoin.com.xml +++ b/src/chrome/content/rules/securedatejoin.com.xml @@ -18,7 +18,7 @@ --> - + - - + - + - + self-signed & is possibly changed/deleted in the near future - + Mixed content: wiki.selfhtml.org (from src.selfhtml.org) blog.selfhtml.org (from blog.selfhtml.org) - + Discussion: https://forum.selfhtml.org/meta/2015/sep/9/https-bei-selfhtml/1649624 (DE) https://forum.selfhtml.org/meta/2015/sep/8/https-fuer-forum-punkt-selfhtml-punkt-org/1649452 (DE) diff --git a/src/chrome/content/rules/sell2uk.co.uk.xml b/src/chrome/content/rules/sell2uk.co.uk.xml index 23e29b91efe3..8416ce43c647 100644 --- a/src/chrome/content/rules/sell2uk.co.uk.xml +++ b/src/chrome/content/rules/sell2uk.co.uk.xml @@ -11,7 +11,7 @@ - + - + + + + + + diff --git a/src/chrome/content/rules/sepa.org.uk-falsemixed.xml b/src/chrome/content/rules/sepa.org.uk-falsemixed.xml index 3f99db0f7f8b..6abd9af07df7 100644 --- a/src/chrome/content/rules/sepa.org.uk-falsemixed.xml +++ b/src/chrome/content/rules/sepa.org.uk-falsemixed.xml @@ -6,13 +6,13 @@ Non-2xx HTTP code: http://gis.sepa.org.uk/ (200) => https://gis.sepa.org.uk/ (40 For rules not causing false/broken MCB, see sepa.org.uk.xml. --> - + - + - + - - - - - - - - - - - diff --git a/src/chrome/content/rules/serverbase.xml b/src/chrome/content/rules/serverbase.xml index 2a756d1ef6e6..1daa63c1e5a4 100644 --- a/src/chrome/content/rules/serverbase.xml +++ b/src/chrome/content/rules/serverbase.xml @@ -10,7 +10,7 @@ Fetch error: http://support.serverbase.ch/ => https://support.serverbase.ch/: (2 - vm* *serverbase-status.net --> - + diff --git a/src/chrome/content/rules/servote.de.xml b/src/chrome/content/rules/servote.de.xml new file mode 100644 index 000000000000..7a1e73864c2c --- /dev/null +++ b/src/chrome/content/rules/servote.de.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/sesplan.gov.uk.xml b/src/chrome/content/rules/sesplan.gov.uk.xml index 4af40b354bad..327b991eb5d4 100644 --- a/src/chrome/content/rules/sesplan.gov.uk.xml +++ b/src/chrome/content/rules/sesplan.gov.uk.xml @@ -17,7 +17,7 @@ --> - + - + diff --git a/src/chrome/content/rules/sex8.cc.xml b/src/chrome/content/rules/sex8.cc.xml new file mode 100644 index 000000000000..931895938ed9 --- /dev/null +++ b/src/chrome/content/rules/sex8.cc.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/sextoyclub.com.xml b/src/chrome/content/rules/sextoyclub.com.xml index a166062f221f..16690b9ddb60 100644 --- a/src/chrome/content/rules/sextoyclub.com.xml +++ b/src/chrome/content/rules/sextoyclub.com.xml @@ -43,7 +43,7 @@ - + - + - + - + diff --git a/src/chrome/content/rules/sheetsu.com.xml b/src/chrome/content/rules/sheetsu.com.xml index 10f4f1c50039..efaad308bbff 100644 --- a/src/chrome/content/rules/sheetsu.com.xml +++ b/src/chrome/content/rules/sheetsu.com.xml @@ -15,7 +15,7 @@ --> - + - + - - diff --git a/src/chrome/content/rules/shinystat.com.xml b/src/chrome/content/rules/shinystat.com.xml index 314a55087597..86ce284cd4fb 100644 --- a/src/chrome/content/rules/shinystat.com.xml +++ b/src/chrome/content/rules/shinystat.com.xml @@ -4,7 +4,7 @@ - css on (www.)? fonts.googleapis.com ˢ - Bugs, on: - + - (www.)? from s[24].shinystat.com ˢ - (www.)? from www.shinystat.com ˢ @@ -19,7 +19,7 @@ - + + + + + + + + + diff --git a/src/chrome/content/rules/shootingillustrated.com.xml b/src/chrome/content/rules/shootingillustrated.com.xml index 1bb527aa06ec..560da36df5cc 100644 --- a/src/chrome/content/rules/shootingillustrated.com.xml +++ b/src/chrome/content/rules/shootingillustrated.com.xml @@ -13,7 +13,7 @@ Fetch error: http://wmp.shootingillustrated.com/ => https://wmp.shootingillustra ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -22,7 +22,7 @@ Fetch error: http://wmp.shootingillustrated.com/ => https://wmp.shootingillustra - + + + + + + diff --git a/src/chrome/content/rules/shopbop.com.xml b/src/chrome/content/rules/shopbop.com.xml index 33dd5dead824..9d95508a6bd1 100644 --- a/src/chrome/content/rules/shopbop.com.xml +++ b/src/chrome/content/rules/shopbop.com.xml @@ -22,7 +22,7 @@ - + https://www.shoporca.com/: (28, 'Connec ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -23,7 +23,7 @@ Fetch error: http://www.shoporca.com/ => https://www.shoporca.com/: (28, 'Connec - + - + + - diff --git a/src/chrome/content/rules/shopspring.com.xml b/src/chrome/content/rules/shopspring.com.xml index 779082c18154..fce22cc36775 100644 --- a/src/chrome/content/rules/shopspring.com.xml +++ b/src/chrome/content/rules/shopspring.com.xml @@ -47,7 +47,7 @@ - + - + - + - + https://secure.shreksadventur For other Merlin Entertainments coverage, see Merlin-Entertainments.xml. --> - + diff --git a/src/chrome/content/rules/shrew.net.xml b/src/chrome/content/rules/shrew.net.xml index 85a870e5f193..cad6a4c9796e 100644 --- a/src/chrome/content/rules/shrew.net.xml +++ b/src/chrome/content/rules/shrew.net.xml @@ -5,7 +5,7 @@ - diff --git a/src/chrome/content/rules/shrib.com.xml b/src/chrome/content/rules/shrib.com.xml index 9d1ec0fa74b4..edd5c5a56309 100644 --- a/src/chrome/content/rules/shrib.com.xml +++ b/src/chrome/content/rules/shrib.com.xml @@ -5,7 +5,7 @@ - + https://etopia.shropshire.gov.uk/: (60, 'SSL certificate problem: unable to get local issuer certificate') - - NB: p://(forms|www5).../$ redirects to s://(forms|www5).../$ - 403 ?=> fetch test failure - - Shropshire Council - For other UK government coverage, see GOV.UK.xml. + Non-functional hosts + SSL peer certificate was not OK: + - cpp.shropshire.gov.uk - Problematic hosts in *shropshire.gov.uk: - - - cpp ᵐ - - ᵐ Mismatched - - - These altnames do not exist: - - - www5.shropshire.gov.uk - - - Insecure cookies are set for these hosts: - - - www4.shropshire.gov.uk - - - Mixed content: - - - css on forms, www4 from css.static.shropshire.gov.uk * ˢ - - Image on forms, www4 from images.static.shropshire.gov.uk * ˢ - - * Just an error page & page redirects to https - ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ - + Incomplete certificate chain error: + - etopia.shropshire.gov.uk --> - - + - - - - - - - - - - - - - - - + + diff --git a/src/chrome/content/rules/siamogeek.com.xml b/src/chrome/content/rules/siamogeek.com.xml index 82b046e66a26..7de6c9cec428 100644 --- a/src/chrome/content/rules/siamogeek.com.xml +++ b/src/chrome/content/rules/siamogeek.com.xml @@ -6,7 +6,7 @@ Fetch error: http://www.siamogeek.com/ => https://www.siamogeek.com/: (51, "SSL: STS header includes includeSubdomains --> - + @@ -14,7 +14,7 @@ Fetch error: http://www.siamogeek.com/ => https://www.siamogeek.com/: (51, "SSL: - + - - - - - diff --git a/src/chrome/content/rules/sibinfo.su.xml b/src/chrome/content/rules/sibinfo.su.xml index d0df4e90f15b..b1a7e7a04c85 100644 --- a/src/chrome/content/rules/sibinfo.su.xml +++ b/src/chrome/content/rules/sibinfo.su.xml @@ -5,7 +5,7 @@ Non-2xx HTTP code: http://sibinfo.su/ (200) => https://sibinfo.su/ (521) Non-2xx HTTP code: http://www.sibinfo.su/ (200) => https://www.sibinfo.su/ (521) --> - + diff --git a/src/chrome/content/rules/sibttk.ru.xml b/src/chrome/content/rules/sibttk.ru.xml index 7f33dcdfe8f0..feb26aa1817a 100644 --- a/src/chrome/content/rules/sibttk.ru.xml +++ b/src/chrome/content/rules/sibttk.ru.xml @@ -6,11 +6,11 @@ Fetch error: http://bill.sibttk.ru/ => https://bill.sibttk.ru/: (51, "SSL: no al sibttk.ru mismatch www.sibttk.ru mismatch --> - + - + - + diff --git a/src/chrome/content/rules/sicurezzarete.com.xml b/src/chrome/content/rules/sicurezzarete.com.xml index f6f8a9903e83..b5adfaba0d09 100644 --- a/src/chrome/content/rules/sicurezzarete.com.xml +++ b/src/chrome/content/rules/sicurezzarete.com.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://voltalinux.sicurezzarete.com/ => https://voltalinux.sicurezzarete.com/: (51, "SSL: no alternative certificate subject name matches target host name 'voltalinux.sicurezzarete.com'") --> - + diff --git a/src/chrome/content/rules/sierraclubbc.xml b/src/chrome/content/rules/sierraclubbc.xml new file mode 100644 index 000000000000..6de7c2e61c1e --- /dev/null +++ b/src/chrome/content/rules/sierraclubbc.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/sigidwiki.com.xml b/src/chrome/content/rules/sigidwiki.com.xml new file mode 100644 index 000000000000..9f83ff4ffe5c --- /dev/null +++ b/src/chrome/content/rules/sigidwiki.com.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/signalvnoise.com.xml b/src/chrome/content/rules/signalvnoise.com.xml index fb0e3d91786d..a9d7e9e3abd9 100644 --- a/src/chrome/content/rules/signalvnoise.com.xml +++ b/src/chrome/content/rules/signalvnoise.com.xml @@ -3,7 +3,7 @@ - + diff --git a/src/chrome/content/rules/silego.com.xml b/src/chrome/content/rules/silego.com.xml new file mode 100644 index 000000000000..ef3735ae339c --- /dev/null +++ b/src/chrome/content/rules/silego.com.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/silencerforum.com.xml b/src/chrome/content/rules/silencerforum.com.xml index 837cb7382e99..b7f7ac96b27b 100644 --- a/src/chrome/content/rules/silencerforum.com.xml +++ b/src/chrome/content/rules/silencerforum.com.xml @@ -24,7 +24,7 @@ --> - + - + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/simpel.nl.xml b/src/chrome/content/rules/simpel.nl.xml index 59d5256d56f6..8d7358e1a2fc 100644 --- a/src/chrome/content/rules/simpel.nl.xml +++ b/src/chrome/content/rules/simpel.nl.xml @@ -5,15 +5,13 @@ Fetch error: http://mijnsimpel.nl/ => https://mijnsimpel.nl/: (7, 'Failed to con Fetch error: http://www.mijnsimpel.nl/ => https://www.mijnsimpel.nl/: (7, 'Failed to connect to www.mijnsimpel.nl port 443: Connection refused') --> - + - - - + diff --git a/src/chrome/content/rules/simplemachines.xml b/src/chrome/content/rules/simplemachines.xml index c0b49bbcbf29..dd58d5ef0bc9 100644 --- a/src/chrome/content/rules/simplemachines.xml +++ b/src/chrome/content/rules/simplemachines.xml @@ -1,17 +1,17 @@ - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/simplesamlphp.org.xml b/src/chrome/content/rules/simplesamlphp.org.xml index 448f8ce029d6..729dd2a0df0d 100644 --- a/src/chrome/content/rules/simplesamlphp.org.xml +++ b/src/chrome/content/rules/simplesamlphp.org.xml @@ -14,7 +14,7 @@ --> - + https://www.simplewebrtc.com/: (7, Fetch error: http://signaling.simplewebrtc.com/ => https://signaling.simplewebrtc.com/: (6, 'Could not resolve host: signaling.simplewebrtc.com') --> - + diff --git a/src/chrome/content/rules/simplifydigital.co.uk.xml b/src/chrome/content/rules/simplifydigital.co.uk.xml index a18f70459288..e2f1136947b7 100644 --- a/src/chrome/content/rules/simplifydigital.co.uk.xml +++ b/src/chrome/content/rules/simplifydigital.co.uk.xml @@ -28,7 +28,7 @@ - + - + https://www.simtechdev.ru/: (51, "SSL: --> - + diff --git a/src/chrome/content/rules/singyin.edu.hk.xml b/src/chrome/content/rules/singyin.edu.hk.xml new file mode 100644 index 000000000000..3931fdded03c --- /dev/null +++ b/src/chrome/content/rules/singyin.edu.hk.xml @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/sirinlabs.com.xml b/src/chrome/content/rules/sirinlabs.com.xml index 6933ec695a35..201530b8eec2 100644 --- a/src/chrome/content/rules/sirinlabs.com.xml +++ b/src/chrome/content/rules/sirinlabs.com.xml @@ -5,7 +5,7 @@ - + - + diff --git a/src/chrome/content/rules/sirsidynix.com.xml b/src/chrome/content/rules/sirsidynix.com.xml index 42cb01ab0e77..735e711262d1 100644 --- a/src/chrome/content/rules/sirsidynix.com.xml +++ b/src/chrome/content/rules/sirsidynix.com.xml @@ -25,7 +25,7 @@ Non-2xx HTTP code: http://go.sirsidynix.com/rs/sirsidynix1/images/STEMtoolkit.pd - www.support.sirsidynix.com --> - + @@ -74,7 +74,7 @@ Non-2xx HTTP code: http://go.sirsidynix.com/rs/sirsidynix1/images/STEMtoolkit.pd - + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/sitejam.com.xml b/src/chrome/content/rules/sitejam.com.xml index b83ae0214da0..ac4509fa738a 100644 --- a/src/chrome/content/rules/sitejam.com.xml +++ b/src/chrome/content/rules/sitejam.com.xml @@ -9,7 +9,7 @@ ᵐ Mismatched --> - + @@ -23,7 +23,7 @@ - + https://www.sitelabs.co.uk/: (51, "SSL: no alternative certificate subject name matches target host name 'www.sitelabs.co.uk'") --> - + - + + + + + + diff --git a/src/chrome/content/rules/sjme.de.xml b/src/chrome/content/rules/sjme.de.xml new file mode 100644 index 000000000000..c3721553508c --- /dev/null +++ b/src/chrome/content/rules/sjme.de.xml @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/sjpl.org.xml b/src/chrome/content/rules/sjpl.org.xml index 16ab3eef2220..d12c2c02a072 100644 --- a/src/chrome/content/rules/sjpl.org.xml +++ b/src/chrome/content/rules/sjpl.org.xml @@ -18,7 +18,7 @@ --> - + - + + + + + + diff --git a/src/chrome/content/rules/skeptoid.com.xml b/src/chrome/content/rules/skeptoid.com.xml index 8b04d5809e64..84ec3d779c52 100644 --- a/src/chrome/content/rules/skeptoid.com.xml +++ b/src/chrome/content/rules/skeptoid.com.xml @@ -28,7 +28,7 @@ --> - + - - - - - - - diff --git a/src/chrome/content/rules/skift.com.xml b/src/chrome/content/rules/skift.com.xml index a573c05f3189..aff69a33cfb5 100644 --- a/src/chrome/content/rules/skift.com.xml +++ b/src/chrome/content/rules/skift.com.xml @@ -24,7 +24,7 @@ Fetch error: http://www.skift.com/ => https://www.skift.com/: Too many redirects ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -38,7 +38,7 @@ Fetch error: http://www.skift.com/ => https://www.skift.com/: Too many redirects - + - + - + diff --git a/src/chrome/content/rules/skrinshoter.ru.xml b/src/chrome/content/rules/skrinshoter.ru.xml new file mode 100644 index 000000000000..cfd20f10324f --- /dev/null +++ b/src/chrome/content/rules/skrinshoter.ru.xml @@ -0,0 +1,15 @@ + + + + + + + + diff --git a/src/chrome/content/rules/skycure.com.xml b/src/chrome/content/rules/skycure.com.xml index 77818bce629e..daeeb0d30233 100644 --- a/src/chrome/content/rules/skycure.com.xml +++ b/src/chrome/content/rules/skycure.com.xml @@ -27,7 +27,7 @@ --> - + https://www.skytal.es/: (51, "SSL: no alternative certificate subject name matches target host name 'www.skytal.es'") --> - + - + - - - - - - - - - - - diff --git a/src/chrome/content/rules/sledcom.ru.xml b/src/chrome/content/rules/sledcom.ru.xml index 0b3e627c9c92..e761c6add506 100644 --- a/src/chrome/content/rules/sledcom.ru.xml +++ b/src/chrome/content/rules/sledcom.ru.xml @@ -57,7 +57,7 @@ www.yaroslavl.sledcom.ru www.zabaykalye.sledcom.ru www.zapsib-sut.sledcom.ru ---> +--> diff --git a/src/chrome/content/rules/sli.mg.xml b/src/chrome/content/rules/sli.mg.xml deleted file mode 100644 index 843e10100ec1..000000000000 --- a/src/chrome/content/rules/sli.mg.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/slimerjs.org.xml b/src/chrome/content/rules/slimerjs.org.xml deleted file mode 100644 index 8c7881e1ba50..000000000000 --- a/src/chrome/content/rules/slimerjs.org.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/smart-DSL.xml b/src/chrome/content/rules/smart-DSL.xml index d457639d70ab..2be42cd08770 100644 --- a/src/chrome/content/rules/smart-DSL.xml +++ b/src/chrome/content/rules/smart-DSL.xml @@ -1,16 +1,11 @@ - + - + - - - - - diff --git a/src/chrome/content/rules/smart-places.org.xml b/src/chrome/content/rules/smart-places.org.xml index 703ae820c26d..665b915c6099 100644 --- a/src/chrome/content/rules/smart-places.org.xml +++ b/src/chrome/content/rules/smart-places.org.xml @@ -18,7 +18,7 @@ - + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/smartmontools.org.xml b/src/chrome/content/rules/smartmontools.org.xml index 30a49409347f..2f478c779a72 100644 --- a/src/chrome/content/rules/smartmontools.org.xml +++ b/src/chrome/content/rules/smartmontools.org.xml @@ -16,7 +16,7 @@ --> - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/smeserver.org.xml b/src/chrome/content/rules/smeserver.org.xml index b198dec71a94..ae62f5c6a08e 100644 --- a/src/chrome/content/rules/smeserver.org.xml +++ b/src/chrome/content/rules/smeserver.org.xml @@ -2,9 +2,9 @@ - + - + diff --git a/src/chrome/content/rules/smokefree.gov.xml b/src/chrome/content/rules/smokefree.gov.xml deleted file mode 100644 index d04e5f1329b5..000000000000 --- a/src/chrome/content/rules/smokefree.gov.xml +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/smokefree.hk.xml b/src/chrome/content/rules/smokefree.hk.xml new file mode 100644 index 000000000000..57fe42c4e50a --- /dev/null +++ b/src/chrome/content/rules/smokefree.hk.xml @@ -0,0 +1,20 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/smoozed.com.xml b/src/chrome/content/rules/smoozed.com.xml index 46b618b240f4..4ac2b690db8f 100644 --- a/src/chrome/content/rules/smoozed.com.xml +++ b/src/chrome/content/rules/smoozed.com.xml @@ -5,7 +5,7 @@ - + + + + + + + + diff --git a/src/chrome/content/rules/snap-ci.com.xml b/src/chrome/content/rules/snap-ci.com.xml index f5ef18b04d38..6fe92c38a552 100644 --- a/src/chrome/content/rules/snap-ci.com.xml +++ b/src/chrome/content/rules/snap-ci.com.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://production-website.snap-ci.com/ => https://production-website.snap-ci.com/: (6, 'Could not resolve host: production-website.snap-ci.com') --> - + diff --git a/src/chrome/content/rules/snapraid.it.xml b/src/chrome/content/rules/snapraid.it.xml new file mode 100644 index 000000000000..47bd72a936fe --- /dev/null +++ b/src/chrome/content/rules/snapraid.it.xml @@ -0,0 +1,9 @@ + + + + + + diff --git a/src/chrome/content/rules/snapsurveys.com.xml b/src/chrome/content/rules/snapsurveys.com.xml index 9dded7224882..80a1406535ac 100644 --- a/src/chrome/content/rules/snapsurveys.com.xml +++ b/src/chrome/content/rules/snapsurveys.com.xml @@ -17,7 +17,7 @@ - + diff --git a/src/chrome/content/rules/sneakerfreaker.com-falsemixed.xml b/src/chrome/content/rules/sneakerfreaker.com-falsemixed.xml index 7503c39a3de4..45be05a21e42 100644 --- a/src/chrome/content/rules/sneakerfreaker.com-falsemixed.xml +++ b/src/chrome/content/rules/sneakerfreaker.com-falsemixed.xml @@ -9,14 +9,14 @@ Fetch error: http://archive.sneakerfreaker.com/ => https://archive.sneakerfreake NB: See https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + - + - + - + + + + + + + + + + + diff --git a/src/chrome/content/rules/sns.gov.uk.xml b/src/chrome/content/rules/sns.gov.uk.xml index 49509acd7b6a..4784ffcee817 100644 --- a/src/chrome/content/rules/sns.gov.uk.xml +++ b/src/chrome/content/rules/sns.gov.uk.xml @@ -10,7 +10,7 @@ Fetch error: http://www.sns.gov.uk/ => https://admin.sns.gov.uk/: (6, 'Could not www.sns.gov.uk: Mismatched --> - + @@ -21,7 +21,7 @@ Fetch error: http://www.sns.gov.uk/ => https://admin.sns.gov.uk/: (6, 'Could not - + + + + + + + diff --git a/src/chrome/content/rules/snyk.io.xml b/src/chrome/content/rules/snyk.io.xml index fd4759a90609..efe2ef3f6a81 100644 --- a/src/chrome/content/rules/snyk.io.xml +++ b/src/chrome/content/rules/snyk.io.xml @@ -2,7 +2,7 @@ - + diff --git a/src/chrome/content/rules/sobytiya.info.xml b/src/chrome/content/rules/sobytiya.info.xml index 7a31e5ccb22b..236fc221f62b 100644 --- a/src/chrome/content/rules/sobytiya.info.xml +++ b/src/chrome/content/rules/sobytiya.info.xml @@ -5,7 +5,7 @@ Non-2xx HTTP code: http://sobytiya.info/ (200) => https://sobytiya.info/ (521) Non-2xx HTTP code: http://www.sobytiya.info/ (200) => https://www.sobytiya.info/ (521) afisha. wrong content en. wrong content --> - + diff --git a/src/chrome/content/rules/socialdemocrats.ie.xml b/src/chrome/content/rules/socialdemocrats.ie.xml index 681e8df58b1d..fbfa064e5111 100644 --- a/src/chrome/content/rules/socialdemocrats.ie.xml +++ b/src/chrome/content/rules/socialdemocrats.ie.xml @@ -13,7 +13,7 @@ - + + + + + diff --git a/src/chrome/content/rules/softnik.com.xml b/src/chrome/content/rules/softnik.com.xml index 5f798fa26e3e..76555962698e 100644 --- a/src/chrome/content/rules/softnik.com.xml +++ b/src/chrome/content/rules/softnik.com.xml @@ -18,7 +18,7 @@ --> - + + + + + + diff --git a/src/chrome/content/rules/softwareok.com.xml b/src/chrome/content/rules/softwareok.com.xml new file mode 100644 index 000000000000..bfb96739e5b8 --- /dev/null +++ b/src/chrome/content/rules/softwareok.com.xml @@ -0,0 +1,19 @@ + + + + + + + diff --git a/src/chrome/content/rules/sojern.com.xml b/src/chrome/content/rules/sojern.com.xml index 3045caf77280..2f3e6c519352 100644 --- a/src/chrome/content/rules/sojern.com.xml +++ b/src/chrome/content/rules/sojern.com.xml @@ -3,7 +3,7 @@ - + https://www.sol.no/: Too many redirects while ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -41,7 +41,7 @@ Fetch error: http://www.sol.no/ => https://www.sol.no/: Too many redirects while - + - - - - - - - - diff --git a/src/chrome/content/rules/solydxk.com.xml b/src/chrome/content/rules/solydxk.com.xml index 9d3692adbac8..5b1f7399202c 100644 --- a/src/chrome/content/rules/solydxk.com.xml +++ b/src/chrome/content/rules/solydxk.com.xml @@ -6,7 +6,7 @@ Fetch error: http://dev.solydxk.com/ => https://dev.solydxk.com/: (6, 'Could not downloads.solydxk.com refused repository.solydxk.com refused --> - + diff --git a/src/chrome/content/rules/songkick.com.xml b/src/chrome/content/rules/songkick.com.xml index fe34d443d4cb..a7da03a9967b 100644 --- a/src/chrome/content/rules/songkick.com.xml +++ b/src/chrome/content/rules/songkick.com.xml @@ -16,9 +16,9 @@ - + - + diff --git a/src/chrome/content/rules/soobi.org.xml b/src/chrome/content/rules/soobi.org.xml deleted file mode 100644 index 75cd1b016109..000000000000 --- a/src/chrome/content/rules/soobi.org.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/sosmedecins-lille.fr.xml b/src/chrome/content/rules/sosmedecins-lille.fr.xml new file mode 100644 index 000000000000..a75277e5e459 --- /dev/null +++ b/src/chrome/content/rules/sosmedecins-lille.fr.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/sotawiki.net.xml b/src/chrome/content/rules/sotawiki.net.xml new file mode 100644 index 000000000000..0adecf306b4f --- /dev/null +++ b/src/chrome/content/rules/sotawiki.net.xml @@ -0,0 +1,18 @@ + + + + + + + + diff --git a/src/chrome/content/rules/soundbounce.org.xml b/src/chrome/content/rules/soundbounce.org.xml new file mode 100644 index 000000000000..abe7fbe3872e --- /dev/null +++ b/src/chrome/content/rules/soundbounce.org.xml @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/src/chrome/content/rules/south-wales.police.uk.xml b/src/chrome/content/rules/south-wales.police.uk.xml index 96bf27f53617..6f963409a0dd 100644 --- a/src/chrome/content/rules/south-wales.police.uk.xml +++ b/src/chrome/content/rules/south-wales.police.uk.xml @@ -44,7 +44,7 @@ Fetch error: http://sports.south-wales.police.uk/ => https://sports.south-wales. ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -61,8 +61,8 @@ Fetch error: http://sports.south-wales.police.uk/ => https://sports.south-wales. - - + + - + https://southend-on-the-move - train.southend-on-the-move.org.uk --> - + - + - + - - - - - - - - - - + + + + + + + + diff --git a/src/chrome/content/rules/sovcombank.ru.xml b/src/chrome/content/rules/sovcombank.ru.xml index e48ba86db29c..8f66650e509c 100644 --- a/src/chrome/content/rules/sovcombank.ru.xml +++ b/src/chrome/content/rules/sovcombank.ru.xml @@ -7,7 +7,7 @@ lk.sovcombank.ru different content --> - + diff --git a/src/chrome/content/rules/soverin.net.xml b/src/chrome/content/rules/soverin.net.xml new file mode 100644 index 000000000000..d11d189b5ee1 --- /dev/null +++ b/src/chrome/content/rules/soverin.net.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/sovrn.com.xml b/src/chrome/content/rules/sovrn.com.xml index b51c94549379..f015e87423ef 100644 --- a/src/chrome/content/rules/sovrn.com.xml +++ b/src/chrome/content/rules/sovrn.com.xml @@ -12,7 +12,7 @@ - + + + + + + diff --git a/src/chrome/content/rules/spacecraft.co.uk.xml b/src/chrome/content/rules/spacecraft.co.uk.xml index 8f3a45dca544..a04c495651f1 100644 --- a/src/chrome/content/rules/spacecraft.co.uk.xml +++ b/src/chrome/content/rules/spacecraft.co.uk.xml @@ -4,13 +4,13 @@ Disabled by https-everywhere-checker because: Fetch error: http://spacecraft.co.uk/ => https://spacecraft.co.uk/: (51, "SSL: no alternative certificate subject name matches target host name 'spacecraft.co.uk'") --> - + - + - + https://www.spacenews.com/: Too many r ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/spamcop.xml b/src/chrome/content/rules/spamcop.xml index ae4a143809a7..739b6798c0d2 100644 --- a/src/chrome/content/rules/spamcop.xml +++ b/src/chrome/content/rules/spamcop.xml @@ -1,6 +1,6 @@ - + diff --git a/src/chrome/content/rules/sparanoid.xml b/src/chrome/content/rules/sparanoid.xml deleted file mode 100644 index 8f0ccf9a2146..000000000000 --- a/src/chrome/content/rules/sparanoid.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/sparebank1.no.xml b/src/chrome/content/rules/sparebank1.no.xml index 61a220101da8..04b6307d537e 100644 --- a/src/chrome/content/rules/sparebank1.no.xml +++ b/src/chrome/content/rules/sparebank1.no.xml @@ -40,7 +40,7 @@ Fetch error: http://statistikk.sparebank1.no/ => https://statistikk.sparebank1.n ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -86,7 +86,7 @@ Fetch error: http://statistikk.sparebank1.no/ => https://statistikk.sparebank1.n - + + + + + + diff --git a/src/chrome/content/rules/spbelect.org.xml b/src/chrome/content/rules/spbelect.org.xml new file mode 100644 index 000000000000..d9a93d6db1ee --- /dev/null +++ b/src/chrome/content/rules/spbelect.org.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/spdb.com.cn.xml b/src/chrome/content/rules/spdb.com.cn.xml index 26132d1ff56c..5576c324918f 100644 --- a/src/chrome/content/rules/spdb.com.cn.xml +++ b/src/chrome/content/rules/spdb.com.cn.xml @@ -1,19 +1,11 @@ - - - + - - - - - - + diff --git a/src/chrome/content/rules/spectator.co.uk.xml b/src/chrome/content/rules/spectator.co.uk.xml index 9c9e07ddf924..d571625656bb 100644 --- a/src/chrome/content/rules/spectator.co.uk.xml +++ b/src/chrome/content/rules/spectator.co.uk.xml @@ -1,4 +1,10 @@ - + - - - - - - - - - - - - - - - - - - + - diff --git a/src/chrome/content/rules/speech-language-therapy-jobs.org.xml b/src/chrome/content/rules/speech-language-therapy-jobs.org.xml index 71cb96b2259e..025b007db3fd 100644 --- a/src/chrome/content/rules/speech-language-therapy-jobs.org.xml +++ b/src/chrome/content/rules/speech-language-therapy-jobs.org.xml @@ -7,7 +7,7 @@ - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/speedwellsoftware.com.xml b/src/chrome/content/rules/speedwellsoftware.com.xml index 693ac5cadbbc..f52ef70765e5 100644 --- a/src/chrome/content/rules/speedwellsoftware.com.xml +++ b/src/chrome/content/rules/speedwellsoftware.com.xml @@ -1,7 +1,12 @@ + - + - + - + - + diff --git a/src/chrome/content/rules/spektrix.com.xml b/src/chrome/content/rules/spektrix.com.xml index 98b8ab61c33d..4a95f63bdad9 100644 --- a/src/chrome/content/rules/spektrix.com.xml +++ b/src/chrome/content/rules/spektrix.com.xml @@ -23,7 +23,7 @@ - + https://larissa.spelthorne.gov - www.spelthorne.gov.uk --> - + @@ -45,7 +45,7 @@ Fetch error: http://larissa.spelthorne.gov.uk/ => https://larissa.spelthorne.gov - + - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/sphere.ly.xml b/src/chrome/content/rules/sphere.ly.xml index a4c65581b563..47546ce439f2 100644 --- a/src/chrome/content/rules/sphere.ly.xml +++ b/src/chrome/content/rules/sphere.ly.xml @@ -12,7 +12,7 @@ - + + + + + + + + + + + + diff --git a/src/chrome/content/rules/spkrb.de.xml b/src/chrome/content/rules/spkrb.de.xml index 2e98a207bb5e..864dbc7caf8b 100644 --- a/src/chrome/content/rules/spkrb.de.xml +++ b/src/chrome/content/rules/spkrb.de.xml @@ -6,13 +6,13 @@ Fetch error: http://www.spkrb.de/ => https://info.spkrb.de/: (6, 'Could not reso Fetch error: http://info.spkrb.de/ => https://info.spkrb.de/: (6, 'Could not resolve host: info.spkrb.de') --> - + - + diff --git a/src/chrome/content/rules/splitsider.com.xml b/src/chrome/content/rules/splitsider.com.xml new file mode 100644 index 000000000000..2fd8f03d0127 --- /dev/null +++ b/src/chrome/content/rules/splitsider.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/spongecell.com.xml b/src/chrome/content/rules/spongecell.com.xml index ad2b18e08e26..37feede20ae2 100644 --- a/src/chrome/content/rules/spongecell.com.xml +++ b/src/chrome/content/rules/spongecell.com.xml @@ -83,7 +83,7 @@ - + - + diff --git a/src/chrome/content/rules/sport.de.xml b/src/chrome/content/rules/sport.de.xml new file mode 100644 index 000000000000..882b8ba1c678 --- /dev/null +++ b/src/chrome/content/rules/sport.de.xml @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/sportbox.ru.xml b/src/chrome/content/rules/sportbox.ru.xml index ab03dc2f2b19..2c1f6177e8d8 100644 --- a/src/chrome/content/rules/sportbox.ru.xml +++ b/src/chrome/content/rules/sportbox.ru.xml @@ -28,7 +28,7 @@ forum.sportbox.ru mixed content ² refused ³ timed out --> - + diff --git a/src/chrome/content/rules/sportdepot.co.il.xml b/src/chrome/content/rules/sportdepot.co.il.xml index b6c3daecc920..9f5ff1dc2213 100644 --- a/src/chrome/content/rules/sportdepot.co.il.xml +++ b/src/chrome/content/rules/sportdepot.co.il.xml @@ -16,7 +16,7 @@ - + - + https://www.sporx.com/: (60, 'SSL certific Mixed content: - iframes, on: - + - euro2016 from www.sporx.com ˢ - nba from tr.global.nba.com - www from nba.sporx.com @@ -76,7 +76,7 @@ Fetch error: http://www.sporx.com/ => https://www.sporx.com/: (60, 'SSL certific - favicon on m from $self ˢ - Ads / bugs, on: - + - euro2016 from widgets-script.broadagesports.com ˢ - euro2016, nba, turkcell, www from b.scorecardresearch.com ˢ - turkcell, www from gdetr.hit.gemius.pl ˢ @@ -85,7 +85,7 @@ Fetch error: http://www.sporx.com/ => https://www.sporx.com/: (60, 'SSL certific ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -103,7 +103,7 @@ Fetch error: http://www.sporx.com/ => https://www.sporx.com/: (60, 'SSL certific - + - - - - - - - diff --git a/src/chrome/content/rules/spreadshirt.at.xml b/src/chrome/content/rules/spreadshirt.at.xml new file mode 100644 index 000000000000..e47eee937139 --- /dev/null +++ b/src/chrome/content/rules/spreadshirt.at.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/spreadshirt.be.xml b/src/chrome/content/rules/spreadshirt.be.xml new file mode 100644 index 000000000000..8319fa6c94f7 --- /dev/null +++ b/src/chrome/content/rules/spreadshirt.be.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/spreadshirt.ch.xml b/src/chrome/content/rules/spreadshirt.ch.xml new file mode 100644 index 000000000000..7573533f55af --- /dev/null +++ b/src/chrome/content/rules/spreadshirt.ch.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/spreadshirt.co.uk.xml b/src/chrome/content/rules/spreadshirt.co.uk.xml new file mode 100644 index 000000000000..6698096b37d4 --- /dev/null +++ b/src/chrome/content/rules/spreadshirt.co.uk.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/spreadshirt.com.au.xml b/src/chrome/content/rules/spreadshirt.com.au.xml new file mode 100644 index 000000000000..d7e1b004d29f --- /dev/null +++ b/src/chrome/content/rules/spreadshirt.com.au.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/spreadshirt.com.xml b/src/chrome/content/rules/spreadshirt.com.xml new file mode 100644 index 000000000000..90e168c27950 --- /dev/null +++ b/src/chrome/content/rules/spreadshirt.com.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/spreadshirt.de.xml b/src/chrome/content/rules/spreadshirt.de.xml new file mode 100644 index 000000000000..072083f30333 --- /dev/null +++ b/src/chrome/content/rules/spreadshirt.de.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/spreadshirt.dk.xml b/src/chrome/content/rules/spreadshirt.dk.xml new file mode 100644 index 000000000000..6e7e235c33e3 --- /dev/null +++ b/src/chrome/content/rules/spreadshirt.dk.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/spreadshirt.es.xml b/src/chrome/content/rules/spreadshirt.es.xml new file mode 100644 index 000000000000..482a78412cfd --- /dev/null +++ b/src/chrome/content/rules/spreadshirt.es.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/spreadshirt.fi.xml b/src/chrome/content/rules/spreadshirt.fi.xml new file mode 100644 index 000000000000..a04e1011535e --- /dev/null +++ b/src/chrome/content/rules/spreadshirt.fi.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/spreadshirt.fr.xml b/src/chrome/content/rules/spreadshirt.fr.xml new file mode 100644 index 000000000000..0fde6aac45a4 --- /dev/null +++ b/src/chrome/content/rules/spreadshirt.fr.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/spreadshirt.ie.xml b/src/chrome/content/rules/spreadshirt.ie.xml new file mode 100644 index 000000000000..1b5da91930f1 --- /dev/null +++ b/src/chrome/content/rules/spreadshirt.ie.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/spreadshirt.it.xml b/src/chrome/content/rules/spreadshirt.it.xml new file mode 100644 index 000000000000..717ea345a027 --- /dev/null +++ b/src/chrome/content/rules/spreadshirt.it.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/spreadshirt.net.xml b/src/chrome/content/rules/spreadshirt.net.xml new file mode 100644 index 000000000000..00c0a372c9de --- /dev/null +++ b/src/chrome/content/rules/spreadshirt.net.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/spreadshirt.nl.xml b/src/chrome/content/rules/spreadshirt.nl.xml new file mode 100644 index 000000000000..e182f30b6e28 --- /dev/null +++ b/src/chrome/content/rules/spreadshirt.nl.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/spreadshirt.no.xml b/src/chrome/content/rules/spreadshirt.no.xml new file mode 100644 index 000000000000..312f6a61fed1 --- /dev/null +++ b/src/chrome/content/rules/spreadshirt.no.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/spreadshirt.pl.xml b/src/chrome/content/rules/spreadshirt.pl.xml new file mode 100644 index 000000000000..8adf495240cb --- /dev/null +++ b/src/chrome/content/rules/spreadshirt.pl.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/spreadshirt.se.xml b/src/chrome/content/rules/spreadshirt.se.xml new file mode 100644 index 000000000000..2d5b6f392e82 --- /dev/null +++ b/src/chrome/content/rules/spreadshirt.se.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/springer.com-falsemixed.xml b/src/chrome/content/rules/springer.com-falsemixed.xml index ec004f9e5184..2205bc89df9a 100644 --- a/src/chrome/content/rules/springer.com-falsemixed.xml +++ b/src/chrome/content/rules/springer.com-falsemixed.xml @@ -7,7 +7,7 @@ - + + + + + + + + + + + diff --git a/src/chrome/content/rules/sprinklr.com.xml b/src/chrome/content/rules/sprinklr.com.xml index c01f171a7e5a..53ea581c71e6 100644 --- a/src/chrome/content/rules/sprinklr.com.xml +++ b/src/chrome/content/rules/sprinklr.com.xml @@ -11,7 +11,7 @@ - + - + - + + + + + + + diff --git a/src/chrome/content/rules/squarecdn.xml b/src/chrome/content/rules/squarecdn.xml index 7a69f2a1ea3b..097f3017c33a 100644 --- a/src/chrome/content/rules/squarecdn.xml +++ b/src/chrome/content/rules/squarecdn.xml @@ -9,7 +9,7 @@ - + + + + + + + + diff --git a/src/chrome/content/rules/squat.gr.xml b/src/chrome/content/rules/squat.gr.xml deleted file mode 100644 index 93a645c9b2ac..000000000000 --- a/src/chrome/content/rules/squat.gr.xml +++ /dev/null @@ -1,198 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/squat.net.xml b/src/chrome/content/rules/squat.net.xml index ba528577905f..ec8062ba6ff3 100644 --- a/src/chrome/content/rules/squat.net.xml +++ b/src/chrome/content/rules/squat.net.xml @@ -175,7 +175,7 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/srad.jp.xml b/src/chrome/content/rules/srad.jp.xml index 0740685ed56d..8f2987ee3d94 100644 --- a/src/chrome/content/rules/srad.jp.xml +++ b/src/chrome/content/rules/srad.jp.xml @@ -25,7 +25,7 @@ - + diff --git a/src/chrome/content/rules/srg-ssr.xml b/src/chrome/content/rules/srg-ssr.xml deleted file mode 100644 index 56be7054ceda..000000000000 --- a/src/chrome/content/rules/srg-ssr.xml +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/srv2020real.com.xml b/src/chrome/content/rules/srv2020real.com.xml index d2ed6158249d..0c3d98bed313 100644 --- a/src/chrome/content/rules/srv2020real.com.xml +++ b/src/chrome/content/rules/srv2020real.com.xml @@ -12,7 +12,7 @@ - + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ssa.gov.xml b/src/chrome/content/rules/ssa.gov.xml index 7186c38f6169..7d2268bc645a 100644 --- a/src/chrome/content/rules/ssa.gov.xml +++ b/src/chrome/content/rules/ssa.gov.xml @@ -53,7 +53,7 @@ - + + + + + + + + + diff --git a/src/chrome/content/rules/sspl.org.xml b/src/chrome/content/rules/sspl.org.xml index d9def4c6c3a7..de934a3f2cd3 100644 --- a/src/chrome/content/rules/sspl.org.xml +++ b/src/chrome/content/rules/sspl.org.xml @@ -22,7 +22,7 @@ - + - + - + - + diff --git a/src/chrome/content/rules/st65.ru.xml b/src/chrome/content/rules/st65.ru.xml index 61f009489a87..a746ea3a50cf 100644 --- a/src/chrome/content/rules/st65.ru.xml +++ b/src/chrome/content/rules/st65.ru.xml @@ -6,7 +6,7 @@ Fetch error: http://mail.st65.ru/ => https://mail.st65.ru/: (60, 'SSL certificat st65.ru expired www.st65.ru expired --> - + diff --git a/src/chrome/content/rules/stackedit.io.xml b/src/chrome/content/rules/stackedit.io.xml deleted file mode 100644 index 1c6de4cdeb80..000000000000 --- a/src/chrome/content/rules/stackedit.io.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/chrome/content/rules/stackpath.com.xml b/src/chrome/content/rules/stackpath.com.xml deleted file mode 100644 index 6aba5ef7bdc8..000000000000 --- a/src/chrome/content/rules/stackpath.com.xml +++ /dev/null @@ -1,58 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/stadtwiki.net.xml b/src/chrome/content/rules/stadtwiki.net.xml new file mode 100644 index 000000000000..3588877b7189 --- /dev/null +++ b/src/chrome/content/rules/stadtwiki.net.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/staffordbc.gov.uk.xml b/src/chrome/content/rules/staffordbc.gov.uk.xml index 7c986be5a4f2..c00ebeb15379 100644 --- a/src/chrome/content/rules/staffordbc.gov.uk.xml +++ b/src/chrome/content/rules/staffordbc.gov.uk.xml @@ -15,7 +15,7 @@ These altnames do not exist: - + - www.www12.staffordbc.gov.uk --> @@ -24,7 +24,7 @@ - + https://stalbans.gov.uk/ (404) -Fetch error: http://mailarray.stalbans.gov.uk/ => https://mailarray.stalbans.gov.uk/: (28, 'Connection timed out after 20000 milliseconds') - St Albans City and District Council For other UK government coverage, see GOV.UK.xml. @@ -44,7 +39,7 @@ Fetch error: http://mailarray.stalbans.gov.uk/ => https://mailarray.stalbans.gov - www.stalbans.gov.uk --> - + @@ -69,7 +64,7 @@ Fetch error: http://mailarray.stalbans.gov.uk/ => https://mailarray.stalbans.gov - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/state.gov-falsemixed.xml b/src/chrome/content/rules/state.gov-falsemixed.xml index 246d693ec2a8..c9b6d3e94d07 100644 --- a/src/chrome/content/rules/state.gov-falsemixed.xml +++ b/src/chrome/content/rules/state.gov-falsemixed.xml @@ -10,7 +10,7 @@ - + + + + + + + + + + + + diff --git a/src/chrome/content/rules/static-fra.de.xml b/src/chrome/content/rules/static-fra.de.xml new file mode 100644 index 000000000000..0d7feba38eba --- /dev/null +++ b/src/chrome/content/rules/static-fra.de.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/statistics.gov.uk.xml b/src/chrome/content/rules/statistics.gov.uk.xml deleted file mode 100644 index 1954d64e142c..000000000000 --- a/src/chrome/content/rules/statistics.gov.uk.xml +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/status.io.xml b/src/chrome/content/rules/status.io.xml index 5ddd7f63de1c..24bdeb9c6be8 100644 --- a/src/chrome/content/rules/status.io.xml +++ b/src/chrome/content/rules/status.io.xml @@ -1,26 +1,29 @@ + - - + - - - - - + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/stavklass.ru.xml b/src/chrome/content/rules/stavklass.ru.xml index 493f79076aca..3edd776dcefd 100644 --- a/src/chrome/content/rules/stavklass.ru.xml +++ b/src/chrome/content/rules/stavklass.ru.xml @@ -1,7 +1,7 @@ - + diff --git a/src/chrome/content/rules/stayintheknow.co.uk.xml b/src/chrome/content/rules/stayintheknow.co.uk.xml index eb3f695e5628..39812a6808fa 100644 --- a/src/chrome/content/rules/stayintheknow.co.uk.xml +++ b/src/chrome/content/rules/stayintheknow.co.uk.xml @@ -4,7 +4,7 @@ - + - + - + diff --git a/src/chrome/content/rules/steamstat.ru.xml b/src/chrome/content/rules/steamstat.ru.xml index 34ff94fff85c..027b162f0930 100644 --- a/src/chrome/content/rules/steamstat.ru.xml +++ b/src/chrome/content/rules/steamstat.ru.xml @@ -6,7 +6,7 @@ Fetch error: http://www.steamstat.ru/ => https://www.steamstat.ru/: (51, "SSL: n --> - + diff --git a/src/chrome/content/rules/steamstat.us.xml b/src/chrome/content/rules/steamstat.us.xml deleted file mode 100644 index 1646e08514b4..000000000000 --- a/src/chrome/content/rules/steamstat.us.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/stelladotcdn.com.xml b/src/chrome/content/rules/stelladotcdn.com.xml deleted file mode 100644 index 590c7e492bb3..000000000000 --- a/src/chrome/content/rules/stelladotcdn.com.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/stellarium.org.xml b/src/chrome/content/rules/stellarium.org.xml new file mode 100644 index 000000000000..561e4e5cda71 --- /dev/null +++ b/src/chrome/content/rules/stellarium.org.xml @@ -0,0 +1,16 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/stewilliams.com.xml b/src/chrome/content/rules/stewilliams.com.xml index e11308c009e4..ee6f49f83af7 100644 --- a/src/chrome/content/rules/stewilliams.com.xml +++ b/src/chrome/content/rules/stewilliams.com.xml @@ -12,7 +12,7 @@ - + diff --git a/src/chrome/content/rules/stgeorge.com.au.xml b/src/chrome/content/rules/stgeorge.com.au.xml index 7f2109f99cfc..9a0a63e6f3fd 100644 --- a/src/chrome/content/rules/stgeorge.com.au.xml +++ b/src/chrome/content/rules/stgeorge.com.au.xml @@ -19,7 +19,7 @@ - + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/stockport.gov.uk.xml b/src/chrome/content/rules/stockport.gov.uk.xml index cd3951702b73..04948d1a664f 100644 --- a/src/chrome/content/rules/stockport.gov.uk.xml +++ b/src/chrome/content/rules/stockport.gov.uk.xml @@ -1,51 +1,74 @@ - - - + + + + + + + + + + - - + + + + + + + + - - - - - - - - - + - + to="https:" /> diff --git a/src/chrome/content/rules/stoke.gov.uk.xml b/src/chrome/content/rules/stoke.gov.uk.xml index 7b8e34a923c8..f49589f391ee 100644 --- a/src/chrome/content/rules/stoke.gov.uk.xml +++ b/src/chrome/content/rules/stoke.gov.uk.xml @@ -28,7 +28,7 @@ Fetch error: http://planning.stoke.gov.uk/ => https://planning.stoke.gov.uk/: (6 - myaccount.stoke.gov.uk --> - + @@ -46,7 +46,7 @@ Fetch error: http://planning.stoke.gov.uk/ => https://planning.stoke.gov.uk/: (6 --> - + - + - + - + + + + + + diff --git a/src/chrome/content/rules/storehouse.co.xml b/src/chrome/content/rules/storehouse.co.xml index e64d8764e15e..3743f6504f4f 100644 --- a/src/chrome/content/rules/storehouse.co.xml +++ b/src/chrome/content/rules/storehouse.co.xml @@ -11,13 +11,13 @@ Fetch error: http://www.storehouse.co/ => https://www.storehouse.co/: (6, 'Could ³ 403 --> - + - + - - - - - - - - - - - - diff --git a/src/chrome/content/rules/strana.ua.xml b/src/chrome/content/rules/strana.ua.xml index b3b0f9210226..135ea918d422 100644 --- a/src/chrome/content/rules/strana.ua.xml +++ b/src/chrome/content/rules/strana.ua.xml @@ -1,5 +1,5 @@ - + - + - + https://devlegapallac ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -33,7 +33,7 @@ Fetch error: http://devlegapallacanestro.streamamg.com/ => https://devlegapallac - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/strongSwan.xml b/src/chrome/content/rules/strongSwan.xml index e5e0a9fb0ac7..8f3580da2994 100644 --- a/src/chrome/content/rules/strongSwan.xml +++ b/src/chrome/content/rules/strongSwan.xml @@ -7,7 +7,7 @@ - ^wiki - ^www --> - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/studentprivacypledge.org.xml b/src/chrome/content/rules/studentprivacypledge.org.xml index e83ea8b40f89..ddc32b6bfc25 100644 --- a/src/chrome/content/rules/studentprivacypledge.org.xml +++ b/src/chrome/content/rules/studentprivacypledge.org.xml @@ -3,10 +3,7 @@ - - - - + diff --git a/src/chrome/content/rules/studyinsweden.se.xml b/src/chrome/content/rules/studyinsweden.se.xml index e9deec021102..558619fc9119 100644 --- a/src/chrome/content/rules/studyinsweden.se.xml +++ b/src/chrome/content/rules/studyinsweden.se.xml @@ -14,7 +14,7 @@ - + - - - - - - - - - - - - diff --git a/src/chrome/content/rules/studyres.com.xml b/src/chrome/content/rules/studyres.com.xml new file mode 100644 index 000000000000..16397248e0a2 --- /dev/null +++ b/src/chrome/content/rules/studyres.com.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/stylershop.ru.xml b/src/chrome/content/rules/stylershop.ru.xml new file mode 100644 index 000000000000..847630a76c23 --- /dev/null +++ b/src/chrome/content/rules/stylershop.ru.xml @@ -0,0 +1,12 @@ + + + + + + + diff --git a/src/chrome/content/rules/sub.fm.xml b/src/chrome/content/rules/sub.fm.xml index bcadb5578c3a..5d13dde06194 100644 --- a/src/chrome/content/rules/sub.fm.xml +++ b/src/chrome/content/rules/sub.fm.xml @@ -20,7 +20,7 @@ - + - + + + + + + + + + + diff --git a/src/chrome/content/rules/submittable.com.xml b/src/chrome/content/rules/submittable.com.xml index 2fc2e117e48a..86aba9e82ab3 100644 --- a/src/chrome/content/rules/submittable.com.xml +++ b/src/chrome/content/rules/submittable.com.xml @@ -42,7 +42,7 @@ --> - + - + - + https://www.subtraxion.com/: (7, 'Failed to connect to www.subtraxion.com port 443: Connection refused') - - These altnames do not exist: - - - subtraxion.com - ---> - - - - - - - - - - - diff --git a/src/chrome/content/rules/sumatrapdfreader.org.xml b/src/chrome/content/rules/sumatrapdfreader.org.xml index 4530265483a7..104563dbda5f 100644 --- a/src/chrome/content/rules/sumatrapdfreader.org.xml +++ b/src/chrome/content/rules/sumatrapdfreader.org.xml @@ -1,5 +1,5 @@ - + diff --git a/src/chrome/content/rules/sumo.com.xml b/src/chrome/content/rules/sumo.com.xml index 54a78a3046cd..2cd868fc88a3 100644 --- a/src/chrome/content/rules/sumo.com.xml +++ b/src/chrome/content/rules/sumo.com.xml @@ -1,16 +1,25 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/sumome.com.xml b/src/chrome/content/rules/sumome.com.xml deleted file mode 100644 index aace0d3011ce..000000000000 --- a/src/chrome/content/rules/sumome.com.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/sumtel.ru.xml b/src/chrome/content/rules/sumtel.ru.xml index f323c57a5739..d2017636390b 100644 --- a/src/chrome/content/rules/sumtel.ru.xml +++ b/src/chrome/content/rules/sumtel.ru.xml @@ -80,7 +80,7 @@ wiki.sumtel.ru ⁴ ⁴ self signed ⁷ protocol error --> - + diff --git a/src/chrome/content/rules/sundance.tv.xml b/src/chrome/content/rules/sundance.tv.xml index 20e530bfd55e..817d354f47f2 100644 --- a/src/chrome/content/rules/sundance.tv.xml +++ b/src/chrome/content/rules/sundance.tv.xml @@ -18,7 +18,7 @@ - css on www from $self ˢ - Images, on: - + - www from $self - www from images.amcnetworks.com ˢ @@ -43,7 +43,7 @@ - + htt ᶜ See https://owasp.org/index.php/SecureFlag --> - + diff --git a/src/chrome/content/rules/sunxdcc.com.xml b/src/chrome/content/rules/sunxdcc.com.xml new file mode 100644 index 000000000000..9eabda72c8da --- /dev/null +++ b/src/chrome/content/rules/sunxdcc.com.xml @@ -0,0 +1,10 @@ + + + + + + + diff --git a/src/chrome/content/rules/suomi.fi.xml b/src/chrome/content/rules/suomi.fi.xml index 148ef5385d01..e440b340c768 100644 --- a/src/chrome/content/rules/suomi.fi.xml +++ b/src/chrome/content/rules/suomi.fi.xml @@ -3,13 +3,14 @@ - + + + - + diff --git a/src/chrome/content/rules/superbreak.com.xml b/src/chrome/content/rules/superbreak.com.xml index 60b7cdb5372f..68301cca0c23 100644 --- a/src/chrome/content/rules/superbreak.com.xml +++ b/src/chrome/content/rules/superbreak.com.xml @@ -9,7 +9,7 @@ - + - + + + + + + + + diff --git a/src/chrome/content/rules/surreycc.gov.xml b/src/chrome/content/rules/surreycc.gov.xml index fb3aa4661ab8..7c6b8cb1a0dd 100644 --- a/src/chrome/content/rules/surreycc.gov.xml +++ b/src/chrome/content/rules/surreycc.gov.xml @@ -48,7 +48,7 @@ Fetch error: http://www2.surreycc.gov.uk/ => https://www2.surreycc.gov.uk/: (6, - www2.surreycc.gov.uk --> - + @@ -71,9 +71,9 @@ Fetch error: http://www2.surreycc.gov.uk/ => https://www2.surreycc.gov.uk/: (6, - + - + - + - + - + - - - - - - - - - - - - diff --git a/src/chrome/content/rules/suspiciousumbrella.uk.xml b/src/chrome/content/rules/suspiciousumbrella.uk.xml deleted file mode 100644 index d58e6daf3fd6..000000000000 --- a/src/chrome/content/rules/suspiciousumbrella.uk.xml +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/sutton.gov.uk.xml b/src/chrome/content/rules/sutton.gov.uk.xml index 71152dc8caaf..80385c1e1359 100644 --- a/src/chrome/content/rules/sutton.gov.uk.xml +++ b/src/chrome/content/rules/sutton.gov.uk.xml @@ -18,7 +18,7 @@ --> - + - + - + - \ No newline at end of file + diff --git a/src/chrome/content/rules/swale.gov.uk-falsemixed.xml b/src/chrome/content/rules/swale.gov.uk-falsemixed.xml deleted file mode 100644 index 8485f7904581..000000000000 --- a/src/chrome/content/rules/swale.gov.uk-falsemixed.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/swale.gov.uk.xml b/src/chrome/content/rules/swale.gov.uk.xml index c4b2ab46572a..27027f2f6434 100644 --- a/src/chrome/content/rules/swale.gov.uk.xml +++ b/src/chrome/content/rules/swale.gov.uk.xml @@ -1,64 +1,35 @@ - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + diff --git a/src/chrome/content/rules/swarmapp.com.xml b/src/chrome/content/rules/swarmapp.com.xml index 3fc5a43b7cbe..8e955d32996d 100644 --- a/src/chrome/content/rules/swarmapp.com.xml +++ b/src/chrome/content/rules/swarmapp.com.xml @@ -15,7 +15,7 @@ - + - + + @@ -285,18 +283,13 @@ - + + --> - - - - - diff --git a/src/chrome/content/rules/swissnode.ch.xml b/src/chrome/content/rules/swissnode.ch.xml new file mode 100644 index 000000000000..fdebda1e7c66 --- /dev/null +++ b/src/chrome/content/rules/swissnode.ch.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/sydney.edu.au.xml b/src/chrome/content/rules/sydney.edu.au.xml index fb1a614245cf..7d050d097d56 100644 --- a/src/chrome/content/rules/sydney.edu.au.xml +++ b/src/chrome/content/rules/sydney.edu.au.xml @@ -54,7 +54,7 @@ Fetch error: http://www.sydney.edu.au/ => https://www.sydney.edu.au/: Too many r ˢ Secured by us --> - + @@ -103,7 +103,7 @@ Fetch error: http://www.sydney.edu.au/ => https://www.sydney.edu.au/: Too many r - + diff --git a/src/chrome/content/rules/symphonyos.com.xml b/src/chrome/content/rules/symphonyos.com.xml deleted file mode 100644 index c1c3311bf4bf..000000000000 --- a/src/chrome/content/rules/symphonyos.com.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/syncaccess.net.xml b/src/chrome/content/rules/syncaccess.net.xml deleted file mode 100644 index 8a3e08853873..000000000000 --- a/src/chrome/content/rules/syncaccess.net.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/synonymer.se.xml b/src/chrome/content/rules/synonymer.se.xml new file mode 100644 index 000000000000..3f00d86134a0 --- /dev/null +++ b/src/chrome/content/rules/synonymer.se.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/syrianmalware.com.xml b/src/chrome/content/rules/syrianmalware.com.xml new file mode 100644 index 000000000000..2a7054d65962 --- /dev/null +++ b/src/chrome/content/rules/syrianmalware.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/sysax.com.xml b/src/chrome/content/rules/sysax.com.xml index 78f4f9fe8de3..b5cea86661f6 100644 --- a/src/chrome/content/rules/sysax.com.xml +++ b/src/chrome/content/rules/sysax.com.xml @@ -13,7 +13,7 @@ - Images on (www.)? from www.sysax.com ˢ - Bug, on: - + - (www.)? from static.getclicky.com ˢ - (www.)? from www.sysax.com ˢ @@ -38,7 +38,7 @@ --> - + - - - - - - - - - - - diff --git a/src/chrome/content/rules/sysdig.com.xml b/src/chrome/content/rules/sysdig.com.xml index a4d33a4e6260..aa03381e6c82 100644 --- a/src/chrome/content/rules/sysdig.com.xml +++ b/src/chrome/content/rules/sysdig.com.xml @@ -13,7 +13,7 @@ - + - - + + diff --git a/src/chrome/content/rules/system-rescue-cd.org.xml b/src/chrome/content/rules/system-rescue-cd.org.xml index 0d2e2ac07fbd..52f4e52b7d25 100644 --- a/src/chrome/content/rules/system-rescue-cd.org.xml +++ b/src/chrome/content/rules/system-rescue-cd.org.xml @@ -9,7 +9,7 @@ Fetch error: http://www.sysresccd.org/ => https://www.sysresccd.org/: Too many r beta.system-rescue-cd.org self signed beta.sysresccd.org broken because it redirects to https://beta.system-rescue-cd.org --> - + @@ -18,7 +18,7 @@ beta.sysresccd.org broken because it redirects to https://beta.system-rescue-cd. - + + + + + + + + + + + + diff --git a/src/chrome/content/rules/szfw.org.xml b/src/chrome/content/rules/szfw.org.xml index cb52eb8c50f7..c37a473781f5 100644 --- a/src/chrome/content/rules/szfw.org.xml +++ b/src/chrome/content/rules/szfw.org.xml @@ -13,7 +13,7 @@ - + - + https://www.t-mobil - www.t-mobilebankowe.pl --> - + @@ -64,7 +64,7 @@ Non-2xx HTTP code: http://konto.t-mobilebankowe.pl/ (200) => https://www.t-mobil - + + + + + + + + diff --git a/src/chrome/content/rules/t3n.de.xml b/src/chrome/content/rules/t3n.de.xml new file mode 100644 index 000000000000..b4b580822f19 --- /dev/null +++ b/src/chrome/content/rules/t3n.de.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/tab-beim-bundestag.de.xml b/src/chrome/content/rules/tab-beim-bundestag.de.xml index cd147742a892..e5a8e77dbd81 100644 --- a/src/chrome/content/rules/tab-beim-bundestag.de.xml +++ b/src/chrome/content/rules/tab-beim-bundestag.de.xml @@ -13,7 +13,7 @@ - + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/tacdn.com.xml b/src/chrome/content/rules/tacdn.com.xml index bea2d1fc2161..9d53d38851f2 100644 --- a/src/chrome/content/rules/tacdn.com.xml +++ b/src/chrome/content/rules/tacdn.com.xml @@ -17,7 +17,7 @@ - + - + - + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + - diff --git a/src/chrome/content/rules/tagilka.ru.xml b/src/chrome/content/rules/tagilka.ru.xml deleted file mode 100644 index f8d3f898093e..000000000000 --- a/src/chrome/content/rules/tagilka.ru.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - diff --git a/src/chrome/content/rules/taihe.com.xml b/src/chrome/content/rules/taihe.com.xml new file mode 100644 index 000000000000..ace1b06c7154 --- /dev/null +++ b/src/chrome/content/rules/taihe.com.xml @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/taiwantradeshows.com.tw.xml b/src/chrome/content/rules/taiwantradeshows.com.tw.xml index c25535980086..eb2d02845387 100644 --- a/src/chrome/content/rules/taiwantradeshows.com.tw.xml +++ b/src/chrome/content/rules/taiwantradeshows.com.tw.xml @@ -5,7 +5,7 @@ - + - + - + - + - - - - - - - - - - - diff --git a/src/chrome/content/rules/tameside.gov.uk.xml b/src/chrome/content/rules/tameside.gov.uk.xml index 0212aa6e086f..c742bda3e273 100644 --- a/src/chrome/content/rules/tameside.gov.uk.xml +++ b/src/chrome/content/rules/tameside.gov.uk.xml @@ -53,7 +53,7 @@ Fetch error: http://ecitizen.tameside.gov.uk/ => https://ecitizen.tameside.gov.u - css on web from www.tameside.gov.uk ʳ - Images, on: - + - web from public.tameside.gov.uk ᵈ - web, whatson from www.tameside.gov.uk ʳ @@ -61,7 +61,7 @@ Fetch error: http://ecitizen.tameside.gov.uk/ => https://ecitizen.tameside.gov.u ʳ Unsecurable <= refused --> - + @@ -114,7 +114,7 @@ Fetch error: http://ecitizen.tameside.gov.uk/ => https://ecitizen.tameside.gov.u - + https://benefits.tamworth.gov.u - benefits.tamworth.gov.uk --> - + @@ -42,7 +42,7 @@ Fetch error: http://benefits.tamworth.gov.uk/ => https://benefits.tamworth.gov.u --> - + - + - - + - + diff --git a/src/chrome/content/rules/taw.org.uk.xml b/src/chrome/content/rules/taw.org.uk.xml deleted file mode 100644 index a1d12c706ce7..000000000000 --- a/src/chrome/content/rules/taw.org.uk.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/tbz.ch.xml b/src/chrome/content/rules/tbz.ch.xml new file mode 100644 index 000000000000..0ce7e55d2a42 --- /dev/null +++ b/src/chrome/content/rules/tbz.ch.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/tdnetdiscover.com.xml b/src/chrome/content/rules/tdnetdiscover.com.xml index b3379462eb3f..5b5ce2f5284f 100644 --- a/src/chrome/content/rules/tdnetdiscover.com.xml +++ b/src/chrome/content/rules/tdnetdiscover.com.xml @@ -15,7 +15,7 @@ --> - + - + - + https://www.www.teacherspensions. ʳ Refused --> - + @@ -21,7 +21,7 @@ Fetch error: http://teacherspensions.co.uk/ => https://www.www.teacherspensions. - + - + - - - - - - - - - diff --git a/src/chrome/content/rules/techanarchy.net.xml b/src/chrome/content/rules/techanarchy.net.xml index 46c9208b88d9..48194940e26a 100644 --- a/src/chrome/content/rules/techanarchy.net.xml +++ b/src/chrome/content/rules/techanarchy.net.xml @@ -4,7 +4,7 @@ - + + + + + diff --git a/src/chrome/content/rules/technical-service.net.xml b/src/chrome/content/rules/technical-service.net.xml new file mode 100644 index 000000000000..9611c6facd3e --- /dev/null +++ b/src/chrome/content/rules/technical-service.net.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/technik-museum.de.xml b/src/chrome/content/rules/technik-museum.de.xml new file mode 100644 index 000000000000..bf98ee55336c --- /dev/null +++ b/src/chrome/content/rules/technik-museum.de.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/technopark.ru.xml b/src/chrome/content/rules/technopark.ru.xml index e2b19317e3f6..0887ea891d04 100644 --- a/src/chrome/content/rules/technopark.ru.xml +++ b/src/chrome/content/rules/technopark.ru.xml @@ -23,8 +23,8 @@ mail.technopark.ru different content - - + + diff --git a/src/chrome/content/rules/techpowerup.org.xml b/src/chrome/content/rules/techpowerup.org.xml new file mode 100644 index 000000000000..a9b4cfe17cd9 --- /dev/null +++ b/src/chrome/content/rules/techpowerup.org.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/tehsausage.com.xml b/src/chrome/content/rules/tehsausage.com.xml new file mode 100644 index 000000000000..706b0fe525ef --- /dev/null +++ b/src/chrome/content/rules/tehsausage.com.xml @@ -0,0 +1,15 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/tekram.com.xml b/src/chrome/content/rules/tekram.com.xml new file mode 100644 index 000000000000..f72dfe0b953b --- /dev/null +++ b/src/chrome/content/rules/tekram.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/teleguide.info.xml b/src/chrome/content/rules/teleguide.info.xml index 2b9ff676cc9e..bd9df621fce4 100644 --- a/src/chrome/content/rules/teleguide.info.xml +++ b/src/chrome/content/rules/teleguide.info.xml @@ -9,7 +9,7 @@ rt.teleguide.info ¹ ¹ mismatch --> - + diff --git a/src/chrome/content/rules/telenet.ru.xml b/src/chrome/content/rules/telenet.ru.xml deleted file mode 100644 index 32b69582994f..000000000000 --- a/src/chrome/content/rules/telenet.ru.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/telesign.com.xml b/src/chrome/content/rules/telesign.com.xml index ee8c7b3fa12b..fe36a6f66cd3 100644 --- a/src/chrome/content/rules/telesign.com.xml +++ b/src/chrome/content/rules/telesign.com.xml @@ -12,7 +12,7 @@ Fetch error: http://www.telesign.com/ => https://www.telesign.com/: (60, 'SSL ce ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -26,7 +26,7 @@ Fetch error: http://www.telesign.com/ => https://www.telesign.com/: (60, 'SSL ce - + - + - + - + - + - + + + + + + + + diff --git a/src/chrome/content/rules/tersee.xml b/src/chrome/content/rules/tersee.xml deleted file mode 100644 index 8f0fab597504..000000000000 --- a/src/chrome/content/rules/tersee.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/tesglobal.com.xml b/src/chrome/content/rules/tesglobal.com.xml index 51f61f7bee09..e1f9313dad60 100644 --- a/src/chrome/content/rules/tesglobal.com.xml +++ b/src/chrome/content/rules/tesglobal.com.xml @@ -4,14 +4,14 @@ Disabled by https-everywhere-checker because: Fetch error: http://tesglobal.com/ => https://tesglobal.com/: (28, 'Connection timed out after 20000 milliseconds') --> - + - + - + + + + + + + + diff --git a/src/chrome/content/rules/test.xml b/src/chrome/content/rules/test.xml deleted file mode 100644 index 48bdd7679441..000000000000 --- a/src/chrome/content/rules/test.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/testament-erbe-und-pflichtteil.de.xml b/src/chrome/content/rules/testament-erbe-und-pflichtteil.de.xml index fa60753a5792..907fcde62152 100644 --- a/src/chrome/content/rules/testament-erbe-und-pflichtteil.de.xml +++ b/src/chrome/content/rules/testament-erbe-und-pflichtteil.de.xml @@ -4,7 +4,7 @@ - + + + + + + diff --git a/src/chrome/content/rules/testfabrik.com.xml b/src/chrome/content/rules/testfabrik.com.xml index 8a87d33ccef3..cca7aaf9b9d6 100644 --- a/src/chrome/content/rules/testfabrik.com.xml +++ b/src/chrome/content/rules/testfabrik.com.xml @@ -13,7 +13,7 @@ - + - - diff --git a/src/chrome/content/rules/thamesvalley.police.uk.xml b/src/chrome/content/rules/thamesvalley.police.uk.xml index 70f28787162b..82fcdc4ac920 100644 --- a/src/chrome/content/rules/thamesvalley.police.uk.xml +++ b/src/chrome/content/rules/thamesvalley.police.uk.xml @@ -26,7 +26,7 @@ --> - + - + - + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/the-i.de.xml b/src/chrome/content/rules/the-i.de.xml index 2767c4c53c92..561980e598a5 100644 --- a/src/chrome/content/rules/the-i.de.xml +++ b/src/chrome/content/rules/the-i.de.xml @@ -4,7 +4,7 @@ - + - + - + - + - + https://thebodyshop.co.id/: (28, 'Conn ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -27,7 +27,7 @@ Fetch error: http://thebodyshop.co.id/ => https://thebodyshop.co.id/: (28, 'Conn --> - + + + + + + + + diff --git a/src/chrome/content/rules/thecipherbrief.com.xml b/src/chrome/content/rules/thecipherbrief.com.xml index d7d41616b5a7..2b4b34b115c4 100644 --- a/src/chrome/content/rules/thecipherbrief.com.xml +++ b/src/chrome/content/rules/thecipherbrief.com.xml @@ -16,7 +16,7 @@ - + - + - - - - - - - - - diff --git a/src/chrome/content/rules/thedarkmod.com.xml b/src/chrome/content/rules/thedarkmod.com.xml new file mode 100644 index 000000000000..197a99fbbbcc --- /dev/null +++ b/src/chrome/content/rules/thedarkmod.com.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/thedebrief.co.uk.xml b/src/chrome/content/rules/thedebrief.co.uk.xml index 370bff62d7c8..5ba7a69cd8d4 100644 --- a/src/chrome/content/rules/thedebrief.co.uk.xml +++ b/src/chrome/content/rules/thedebrief.co.uk.xml @@ -10,14 +10,14 @@ Fetch error: http://thedebrief.co.uk/ => https://thedebrief.co.uk/: (7, 'Failed ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/theeca.com.xml b/src/chrome/content/rules/theeca.com.xml new file mode 100644 index 000000000000..bd753e06b928 --- /dev/null +++ b/src/chrome/content/rules/theeca.com.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/thefiringline.com.xml b/src/chrome/content/rules/thefiringline.com.xml index b9b97da3f91c..66e6a11ef6e3 100644 --- a/src/chrome/content/rules/thefiringline.com.xml +++ b/src/chrome/content/rules/thefiringline.com.xml @@ -19,7 +19,7 @@ - + - + + + + + + + + diff --git a/src/chrome/content/rules/thegenealogist.co.uk.xml b/src/chrome/content/rules/thegenealogist.co.uk.xml index 0ee2a558406d..6ec1b440eb8a 100644 --- a/src/chrome/content/rules/thegenealogist.co.uk.xml +++ b/src/chrome/content/rules/thegenealogist.co.uk.xml @@ -14,7 +14,7 @@ --> - + - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/theindigokitchen.com.xml b/src/chrome/content/rules/theindigokitchen.com.xml new file mode 100644 index 000000000000..43847fa2cf60 --- /dev/null +++ b/src/chrome/content/rules/theindigokitchen.com.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/theinfosphere.org.xml b/src/chrome/content/rules/theinfosphere.org.xml index e00bf5d65710..d97c08f5ba8d 100644 --- a/src/chrome/content/rules/theinfosphere.org.xml +++ b/src/chrome/content/rules/theinfosphere.org.xml @@ -13,7 +13,7 @@ - + - + diff --git a/src/chrome/content/rules/thekelleys.org.uk.xml b/src/chrome/content/rules/thekelleys.org.uk.xml new file mode 100644 index 000000000000..bdb7967181a8 --- /dev/null +++ b/src/chrome/content/rules/thekelleys.org.uk.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/theladbible.com.xml b/src/chrome/content/rules/theladbible.com.xml index c5948ff6cede..731ba98b98e7 100644 --- a/src/chrome/content/rules/theladbible.com.xml +++ b/src/chrome/content/rules/theladbible.com.xml @@ -31,7 +31,7 @@ - + - + - + - + - + - + - + - + - + - + - + - + - + - + + + + + + diff --git a/src/chrome/content/rules/thepensionsregulator.gov.uk.xml b/src/chrome/content/rules/thepensionsregulator.gov.uk.xml index 9a95e8a764e8..2407316709a9 100644 --- a/src/chrome/content/rules/thepensionsregulator.gov.uk.xml +++ b/src/chrome/content/rules/thepensionsregulator.gov.uk.xml @@ -65,7 +65,7 @@ - + https://proxxy.site/: (7, 'Failed to connect to proxxy.site port 443: Connection refused') -Fetch error: http://www.proxxy.site/ => https://www.proxxy.site/: (7, 'Failed to connect to www.proxxy.site port 443: Connection refused') -Fetch error: http://theproxy.site/ => https://theproxy.site/: (51, "SSL: no alternative certificate subject name matches target host name 'theproxy.site'") -Fetch error: http://www.theproxy.site/ => https://www.theproxy.site/: (51, "SSL: no alternative certificate subject name matches target host name 'www.theproxy.site'") -Fetch error: http://pbproxy.tech/ => https://pbproxy.tech/: (51, "SSL: no alternative certificate subject name matches target host name 'pbproxy.tech'") -Fetch error: http://www.pbproxy.tech/ => https://www.pbproxy.tech/: (51, "SSL: no alternative certificate subject name matches target host name 'www.pbproxy.tech'") -Fetch error: http://thepbproxy.pw/ => https://thepbproxy.pw/: (28, 'Connection timed out after 20001 milliseconds') -Fetch error: http://www.thepbproxy.pw/ => https://www.thepbproxy.pw/: (28, 'Connection timed out after 20001 milliseconds') -Fetch error: http://thepirateproxy.tech/ => https://thepirateproxy.tech/: (7, 'Failed to connect to thepirateproxy.tech port 443: Connection refused') -Fetch error: http://www.thepirateproxy.tech/ => https://www.thepirateproxy.tech/: (7, 'Failed to connect to www.thepirateproxy.tech port 443: Connection refused') -Fetch error: http://theproxybay.website/ => https://theproxybay.website/: (51, "SSL: no alternative certificate subject name matches target host name 'theproxybay.website'") -Fetch error: http://www.theproxybay.website/ => https://www.theproxybay.website/: (51, "SSL: no alternative certificate subject name matches target host name 'www.theproxybay.website'") -Fetch error: http://thepbproxy.website/ => https://thepbproxy.website/: (51, "SSL: no alternative certificate subject name matches target host name 'thepbproxy.website'") -Fetch error: http://www.thepbproxy.website/ => https://www.thepbproxy.website/: (51, "SSL: no alternative certificate subject name matches target host name 'www.thepbproxy.website'") -Fetch error: http://pirateproxybay.tech/ => https://pirateproxybay.tech/: (51, "SSL: no alternative certificate subject name matches target host name 'pirateproxybay.tech'") -Fetch error: http://www.pirateproxybay.tech/ => https://www.pirateproxybay.tech/: (51, "SSL: no alternative certificate subject name matches target host name 'www.pirateproxybay.tech'") -Fetch error: http://tpbproxy.website/ => https://tpbproxy.website/: (51, "SSL: no alternative certificate subject name matches target host name 'tpbproxy.website'") -Fetch error: http://www.tpbproxy.website/ => https://www.tpbproxy.website/: (51, "SSL: no alternative certificate subject name matches target host name 'www.tpbproxy.website'") -Fetch error: http://unblockbay.com/ => https://unblockbay.com/: (7, 'Failed to connect to unblockbay.com port 443: Connection refused') -Fetch error: http://www.unblockbay.com/ => https://www.unblockbay.com/: (7, 'Failed to connect to www.unblockbay.com port 443: Connection refused') -Fetch error: http://thepirate.pw/ => https://thepirate.pw/: (7, 'Failed to connect to thepirate.pw port 443: Connection refused') -Fetch error: http://www.thepirate.pw/ => https://www.thepirate.pw/: (7, 'Failed to connect to www.thepirate.pw port 443: Connection refused') -Fetch error: http://mypirateproxy.com/ => https://mypirateproxy.com/: (28, 'Connection timed out after 20000 milliseconds') -Fetch error: http://tpb.press/ => https://tpb.press/: (6, 'Could not resolve host: tpb.press') -Fetch error: http://www.tpb.press/ => https://www.tpb.press/: (6, 'Could not resolve host: www.tpb.press') -Fetch error: http://piratewiki.info/ => https://piratewiki.info/: (28, 'Connection timed out after 20001 milliseconds') -Fetch error: http://www.piratewiki.info/ => https://www.piratewiki.info/: (28, 'Connection timed out after 20001 milliseconds') -Fetch error: http://theproxypirate.pw/ => https://theproxypirate.pw/: (6, 'Could not resolve host: theproxypirate.pw') -Fetch error: http://www.theproxypirate.pw/ => https://www.theproxypirate.pw/: (6, 'Could not resolve host: www.theproxypirate.pw') -Fetch error: http://magnetsearch.net/ => https://magnetsearch.net/: (28, 'Connection timed out after 20001 milliseconds') -Fetch error: http://www.magnetsearch.net/ => https://www.magnetsearch.net/: (28, 'Connection timed out after 20001 milliseconds') -Fetch error: http://thepiratebay.中国/ => https://thepiratebay.中国/: (28, 'Operation timed out after 30001 milliseconds with 0 bytes received') -Fetch error: http://www.thepiratebay.中国/ => https://www.thepiratebay.中国/: (28, 'Operation timed out after 30001 milliseconds with 0 bytes received') -Fetch error: http://thepiratebay.id/ => https://thepiratebay.id/: (28, 'Connection timed out after 20001 milliseconds') -Fetch error: http://www.thepiratebay.id/ => https://www.thepiratebay.id/: (28, 'Connection timed out after 20001 milliseconds') -Fetch error: http://tpbay.co/ => https://tpbay.co/: (6, 'Could not resolve host: tpbay.co') -Fetch error: http://www.tpbay.co/ => https://www.tpbay.co/: (6, 'Could not resolve host: www.tpbay.co') -Fetch error: http://thepiratebay.ar.com/ => https://thepiratebay.ar.com/: (6, 'Could not resolve host: thepiratebay.ar.com') -Fetch error: http://piratehole.com/ => https://piratehole.com/: (7, 'Failed to connect to piratehole.com port 443: Connection refused') -Fetch error: http://www.piratehole.com/ => https://www.piratehole.com/: (7, 'Failed to connect to www.piratehole.com port 443: Connection refused') -Fetch error: http://thepiratebay.mg/ => https://thepiratebay.mg/: (6, 'Could not resolve host: thepiratebay.mg') -Fetch error: http://www.thepiratebay.mg/ => https://www.thepiratebay.mg/: (6, 'Could not resolve host: www.thepiratebay.mg') -Fetch error: http://thepiratebay.kr.com/ => https://thepiratebay.kr.com/: (7, 'Failed to connect to thepiratebay.kr.com port 443: Connection refused') -Fetch error: http://unblockthepiratebay.org/ => https://unblockthepiratebay.org/: (51, "SSL: no alternative certificate subject name matches target host name 'unblockthepiratebay.org'") -Fetch error: http://www.unblockthepiratebay.org/ => https://www.unblockthepiratebay.org/: (51, "SSL: no alternative certificate subject name matches target host name 'www.unblockthepiratebay.org'") -Fetch error: http://thehiddenbay.eu/ => https://thehiddenbay.eu/: (7, 'Failed to connect to thehiddenbay.eu port 443: Connection refused') -Fetch error: http://www.thehiddenbay.eu/ => https://www.thehiddenbay.eu/: (7, 'Failed to connect to www.thehiddenbay.eu port 443: Connection refused') -Fetch error: http://thepiratebay.eu.com/ => https://thepiratebay.eu.com/: (28, 'Operation timed out after 30001 milliseconds with 0 bytes received') -Fetch error: http://magnetsearch.org/ => https://magnetsearch.org/: (7, 'Failed to connect to magnetsearch.org port 443: Connection refused') -Fetch error: http://www.magnetsearch.org/ => https://www.magnetsearch.org/: (7, 'Failed to connect to www.magnetsearch.org port 443: Connection refused') -Fetch error: http://thepiratebay.lv/ => https://thepiratebay.lv/: (6, 'Could not resolve host: thepiratebay.lv') -Fetch error: http://www.thepiratebay.lv/ => https://www.thepiratebay.lv/: (6, 'Could not resolve host: www.thepiratebay.lv') -Fetch error: http://proxypirate.pw/ => https://proxypirate.pw/: (51, "SSL: no alternative certificate subject name matches target host name 'proxypirate.pw'") -Fetch error: http://www.proxypirate.pw/ => https://www.proxypirate.pw/: (51, "SSL: no alternative certificate subject name matches target host name 'www.proxypirate.pw'") -Fetch error: http://thepirateproxy.co/ => https://thepirateproxy.co/: (6, 'Could not resolve host: thepirateproxy.co') -Fetch error: http://www.thepirateproxy.co/ => https://www.thepirateproxy.co/: (6, 'Could not resolve host: www.thepirateproxy.co') -Fetch error: http://bayproxy.pw/ => https://bayproxy.pw/: (51, "SSL: no alternative certificate subject name matches target host name 'bayproxy.pw'") -Fetch error: http://www.bayproxy.pw/ => https://www.bayproxy.pw/: (51, "SSL: no alternative certificate subject name matches target host name 'www.bayproxy.pw'") -Fetch error: http://tpb.genyaa.org/ => https://tpb.genyaa.org/: (6, 'Could not resolve host: tpb.genyaa.org') -Fetch error: http://pirata.top/ => https://pirata.top/: (6, 'Could not resolve host: pirata.top') -Fetch error: http://www.pirata.top/ => https://www.pirata.top/: (6, 'Could not resolve host: www.pirata.top') -Fetch error: http://thepiratebay.torrentdr.com/ => https://thepiratebay.torrentdr.com/: (7, 'Failed to connect to thepiratebay.torrentdr.com port 443: Connection refused') -Fetch error: http://pirata.online/ => https://pirata.online/: (6, 'Could not resolve host: pirata.online') -Fetch error: http://www.pirata.online/ => https://www.pirata.online/: (6, 'Could not resolve host: www.pirata.online') -Fetch error: http://proxytpb.nl/ => https://proxytpb.nl/: (28, 'Operation timed out after 30001 milliseconds with 0 bytes received') -Fetch error: http://www.proxytpb.nl/ => https://www.proxytpb.nl/: (28, 'Operation timed out after 30001 milliseconds with 0 bytes received') -Fetch error: http://123bay.space/ => https://123bay.space/: (6, 'Could not resolve host: 123bay.space') -Fetch error: http://www.123bay.space/ => https://www.123bay.space/: (6, 'Could not resolve host: www.123bay.space') -Fetch error: http://www.thepiratebay.gg/ => https://www.thepiratebay.gg/: (7, 'Failed to connect to www.thepiratebay.gg port 443: Connection refused') -Fetch error: http://thepiratebay.gg/ => https://thepiratebay.gg/: (7, 'Failed to connect to thepiratebay.gg port 443: Connection refused') -Fetch error: http://tpbproxy.cc/ => https://tpbproxy.cc/: (6, 'Could not resolve host: tpbproxy.cc') -Fetch error: http://www.tpbproxy.cc/ => https://www.tpbproxy.cc/: (6, 'Could not resolve host: www.tpbproxy.cc') -Fetch error: http://pirateproxies.org/ => https://pirateproxies.org/: (7, 'Failed to connect to pirateproxies.org port 443: Connection refused') -Fetch error: http://www.pirateproxies.org/ => https://www.pirateproxies.org/: (7, 'Failed to connect to www.pirateproxies.org port 443: Connection refused') -Fetch error: http://accesspiratebay.com/ => https://accesspiratebay.com/: (6, 'Could not resolve host: accesspiratebay.com') -Fetch error: http://www.accesspiratebay.com/ => https://www.accesspiratebay.com/: (6, 'Could not resolve host: www.accesspiratebay.com') -Fetch error: http://thepiratebay.casa/ => https://thepiratebay.casa/: (6, 'Could not resolve host: thepiratebay.casa') -Fetch error: http://www.thepiratebay.casa/ => https://www.thepiratebay.casa/: (6, 'Could not resolve host: www.thepiratebay.casa') -Fetch error: http://thepirateproxy.website/ => https://thepirateproxy.website/: (51, "SSL: no alternative certificate subject name matches target host name 'thepirateproxy.website'") -Fetch error: http://www.thepirateproxy.website/ => https://www.thepirateproxy.website/: (51, "SSL: no alternative certificate subject name matches target host name 'www.thepirateproxy.website'") -Fetch error: http://theproxy.pw/ => https://theproxy.pw/: (51, "SSL: no alternative certificate subject name matches target host name 'theproxy.pw'") -Fetch error: http://www.theproxy.pw/ => https://www.theproxy.pw/: (51, "SSL: no alternative certificate subject name matches target host name 'www.theproxy.pw'") -Fetch error: http://piratetavern.org/ => https://piratetavern.org/: (28, 'Connection timed out after 20001 milliseconds') -Fetch error: http://www.piratetavern.org/ => https://www.piratetavern.org/: (28, 'Connection timed out after 20001 milliseconds') -Fetch error: http://piratetavern.net/ => https://piratetavern.net/: (28, 'Connection timed out after 20000 milliseconds') -Fetch error: http://www.piratetavern.net/ => https://www.piratetavern.net/: (28, 'Connection timed out after 20001 milliseconds') -Fetch error: http://pirateproxies.net/ => https://pirateproxies.net/: (51, "SSL: no alternative certificate subject name matches target host name 'pirateproxies.net'") -Fetch error: http://www.pirateproxies.net/ => https://www.pirateproxies.net/: (51, "SSL: no alternative certificate subject name matches target host name 'www.pirateproxies.net'") -Fetch error: http://fattorrents.ws/ => https://fattorrents.ws/: (28, 'Connection timed out after 20000 milliseconds') -Fetch error: http://www.fattorrents.ws/ => https://www.fattorrents.ws/: (28, 'Connection timed out after 20000 milliseconds') -Fetch error: http://thepirateproxy.info/ => https://thepirateproxy.info/: (28, 'Connection timed out after 20000 milliseconds') -Fetch error: http://www.thepirateproxy.info/ => https://www.thepirateproxy.info/: (28, 'Connection timed out after 20000 milliseconds') -Fetch error: http://pirateproxies.info/ => https://pirateproxies.info/: (28, 'Connection timed out after 20001 milliseconds') -Fetch error: http://www.pirateproxies.info/ => https://www.pirateproxies.info/: (28, 'Connection timed out after 20001 milliseconds') -Fetch error: http://unblockthepiratebay.net/ => https://unblockthepiratebay.net/: (28, 'Connection timed out after 20001 milliseconds') -Fetch error: http://www.unblockthepiratebay.net/ => https://www.unblockthepiratebay.net/: (28, 'Connection timed out after 20001 milliseconds') -Fetch error: http://jltorrent.com/ => https://jltorrent.com/: (6, 'Could not resolve host: jltorrent.com') -Fetch error: http://www.jltorrent.com/ => https://www.jltorrent.com/: (6, 'Could not resolve host: www.jltorrent.com') -Fetch error: http://thepiratebay.link/ => https://thepiratebay.link/: (6, 'Could not resolve host: thepiratebay.link') -Fetch error: http://www.thepiratebay.link/ => https://www.thepiratebay.link/: (6, 'Could not resolve host: www.thepiratebay.link') -Fetch error: http://torrentdr.com/ => https://torrentdr.com/: (7, 'Failed to connect to torrentdr.com port 443: Connection refused') -Fetch error: http://www.torrentdr.com/ => https://www.torrentdr.com/: (7, 'Failed to connect to www.torrentdr.com port 443: Connection refused') -Fetch error: http://thepiratebay.mk/ => https://thepiratebay.mk/: (28, 'Operation timed out after 30003 milliseconds with 0 bytes received') -Fetch error: http://www.thepiratebay.mk/ => https://www.thepiratebay.mk/: (28, 'Operation timed out after 30001 milliseconds with 0 bytes received') -Fetch error: http://tpbproxy.pw/ => https://tpbproxy.pw/: (6, 'Could not resolve host: tpbproxy.pw') -Fetch error: http://www.tpbproxy.pw/ => https://www.tpbproxy.pw/: (6, 'Could not resolve host: www.tpbproxy.pw') -Fetch error: http://thepiratebay.みんな/ => https://thepiratebay.みんな/: (28, 'Operation timed out after 30001 milliseconds with 0 bytes received') -Fetch error: http://www.thepiratebay.みんな/ => https://www.thepiratebay.みんな/: (28, 'Operation timed out after 30001 milliseconds with 0 bytes received') -Fetch error: http://thenewbay.org/ => https://thenewbay.org/: (28, 'Connection timed out after 20000 milliseconds') -Fetch error: http://www.thenewbay.org/ => https://www.thenewbay.org/: (28, 'Connection timed out after 20000 milliseconds') - -thepirateproxy.link refused -www.thepirateproxy.link refused -theproxybay.site nonexist -www.theproxybay.site nonexist -www.piratebayproxy.tf nonexist -tpb.pm nonexist -www.tpb.pm nonexist -pirateproxybay.pw nonexist -www.pirateproxybay.pw nonexist -pbproxy.link refused -www.pbproxy.link refused -pirateproxybay.com refused -www.pirateproxybay.com protocol error -pirateproxy.nl expired -www.pirateproxy.nl expired -www.dapiratebay.eu timed out -dapiratebay.eu timed out -thepiratebay.uno mismatch -www.thepiratebay.uno mismatch -bayproxy.link refused -www.bayproxy.link refused -www.piratehome.tk mismatch -piratehome.tk mismatch -www.mypirateproxy.com nonexist -thepiratebayproxy.ga mismatch -www.thepiratebayproxy.ga mismatch -piratemirror.net nonexist -www.piratemirror.net nonexist -thepiratebay.de.com refused -bay.muffe.no mismatch -pbproxy.xyz nonexist -www.pbproxy.xyz nonexist -accessbay.link refused -www.accessbay.link refused -piratebaytorrent.org timed out -www.piratebaytorrent.org timed out -themeatbay.com timed out -www.themeatbay.com timed out -www.urbanproxy.eu nonexist -thepromobay.co.uk protocol error -tpb.tf nonexist -www.tpb.tf nonexist -thepiratebay.edu.gr nonexist -tpbtpb.com timed out -www.tpbtpb.com timed out -tpb.al nonexist -www.tpb.al nonexist -pb.codergrounds.net refused -www.pirateproxy.yt nonexist -baylive.net timed out -www.baylive.net timed out -www.thepirateboat.eu nonexist -tpb.torrentproxy.nl mismatch -tpb.par-anoia.net refused -pirateshit.com timed out -www.pirateshit.com timed out -tpb.piraten.lu nonexist -thepiratebay.expert refused -www.thepiratebay.expert timed out -thefastbay.com nonexist -www.thefastbay.com nonexist -pirateproxybay.link refused -www.pirateproxybay.link refused -www.thepiratebay-proxy.com nonexist -thepirateproxy.biz refused -www.thepirateproxy.biz refused -tpb4all.servebeer.com refused -tpbmirror.xyz nonexist -www.tpbmirror.xyz nonexist -tpbproxy.link refused -www.tpbproxy.link refused -thepiratebay.torrentnerd.com refused -piratebayguru.com timed out -www.piratebayguru.com refused -piratebay.skey.sk self signed -www.piratebay.host nonexist -tpb.ninja.so nonexist -pirateproxybay.xyz nonexist -www.pirateproxybay.xyz nonexist -tpb.cryptocloud.ca timed out -mctorrents.se timed out -www.mctorrents.se timed out -tpb.li expired -www.tpb.li expired -www.pirateahoy.eu nonexist -www.fastpiratebayproxy.com mismatch -fastpiratebayproxy.com mismatch -quluxingba.info refused -www.quluxingba.info refused -www.pirateproxy.tf nonexist -tpb-proxy.com timed out -www.tpb-proxy.com timed out -bayproxy.xyz nonexist -www.bayproxy.xyz nonexist -tpb.fattylewis.com nonexist -thepirateportal.com refused -www.thepirateportal.com refused -thebay.al nonexist -www.thebay.al nonexist -thepiratebay.si mismatch -www.thepiratebay.si mismatch -thepirate.me nonexist -www.thepirate.me nonexist -www.thepiratebay.tech nonexist -thepiratebay.tn expired -www.thepiratebay.tn expired -tpb.pusic.si nonexist -www.ukpirate.click nonexist -thepiratebay.gb.com protocol error -thepiratebay.sl nonexist -www.thepiratebay.sl nonexist -tpbproxy.me expired -www.tpbproxy.me expired -piraattilahti.url.ph refused -www.pirateproxy.click nonexist -proxytpb.com refused -www.proxytpb.com refused -piratebaybyproxy.com mismatch -www.piratebaybyproxy.com mismatch -getpiratebay.com refused -www.getpiratebay.com refused -tpb.portalimg.com mismatch -tpb.so nonexist -www.tpb.so nonexist -unblockbay.pw nonexist -www.unblockbay.pw nonexist -piratebayproxy.ga timed out -www.piratebayproxy.ga timed out -uj3wazyk5u4hnvtk.onion.nu mismatch -tpb.occupyuk.co.uk nonexist -piratebayproxy.se mismatch -www.piratebayproxy.se mismatch -tpbuk.co.uk nonexist -torrentfusion.com refused -www.torrentfusion.com refused -thepirateproxy.xyz refused -www.thepirateproxy.xyz refused -thepiratebay.je refused -www.thepiratebay.je refused -tpb.ukhack.com timed out -thepiratebay.psb.cu.cc self signed -www.piratebaymirror.eu nonexist -tpb.5gg.biz nonexist -proxy.arrr.nl expired -tpb.kleisauke.nl mismatch -tpb.me timed out -www.tpb.me timed out -accessbay.pw nonexist -www.accessbay.pw nonexist -thepiratebay.gr.com protocol error -unblocktpb.link refused -www.unblocktpb.link refused -tpb.ic0nic.de nonexist -thepiratebay.norwichdowngrades.com nonexist -www.thebay.tv nonexist -www.arrr.xyz nonexist -proxybay.fr nonexist -www.proxybay.fr nonexist -tpbunion.com refused -www.tpbunion.com refused -pirate.bugabuse.net timed out -piratesbay.link nonexist -www.piratesbay.link nonexist -tpbay.link nonexist -www.tpbay.link nonexist -tpb.fast-hosting.net nonexist -theproxypirate.com timed out -www.theproxypirate.com timed out -www.tpb.gr self signed -tpb.gr self signed -pirate.guru refused -www.pirate.guru timed out -scenerelease.com timed out -www.scenerelease.com timed out -accesstpb.co refused -www.accesstpb.co refused -tpbproxy.cremoznik.si nonexist -piratebay1.com self signed -www.piratebay1.com self signed -tpb.pw nonexist -www.tpb.pw nonexist -www.ahoy.re nonexist -pirateproxy.be refused -www.pirateproxy.be refused -pbay.gq nonexist -www.pbay.gq nonexist -proxybay.in timed out -www.proxybay.in timed out -piratebayunion.com refused -www.piratebayunion.com refused -03042167894310543608954317678950.com protocol error -www.03042167894310543608954317678950.com refused -piratebays.eu refused -www.piratebays.eu refused -www.piratebay.click nonexist -tpb.unblocked.co mismatch -www.ukpirate.org nonexist -accessbay.xyz nonexist -www.accessbay.xyz nonexist -piratebayproxy.eu mismatch -www.piratebayproxy.eu mismatch -pirateproxy.wiki timed out -www.pirateproxy.wiki timed out -unblocktpb.xyz nonexist -www.unblocktpb.xyz nonexist -pbp.wtf nonexist -www.pbp.wtf nonexist -tpb.cas.yt mismatch -proxytank.com refused -www.proxytank.com refused -piraattilahti.org expired -www.piraattilahti.org expired -www.tpbmirror.us nonexist -unblockbay.co nonexist -www.unblockbay.co nonexist -thehydra.ru nonexist -www.thehydra.ru nonexist -tpb.skit.org.ua nonexist -pirateproxy.co refused -www.pirateproxy.co refused -thepiratebayproxy.eu mismatch -www.thepiratebayproxy.eu mismatch -www.battleit.ee self signed -battleit.ee self signed -tpb.rtbt.me nonexist -accesstpb.link nonexist -www.accesstpb.link nonexist -thepiratebeach.com expired -www.thepiratebeach.com expired -thepiratebay.org.es refused -123bay.spacet nonexist -www.123bay.spacet nonexist -accesstpb.xyz refused -www.accesstpb.xyz refused -pbproxy.pw nonexist -www.pbproxy.pw nonexist -www.piratebays.co nonexist -unblockbay.xyz nonexist -www.unblockbay.xyz nonexist -thepiratebay.sexy nonexist -www.thepiratebay.sexy nonexist -tpb.tv-shuffle.ch nonexist -tpb.pirates.ie timed out -pbproxy.co refused -www.pbproxy.co refused -tpb.thepiratesea.com timed out -tpbproxy.net timed out -www.tpbproxy.net timed out -www.pirateproxy.wf nonexist -pirateproxybay.co refused -www.pirateproxybay.co refused -tpb.madfedora.site40.net timed out -thepirate.al nonexist -www.thepirate.al nonexist -downloadbay.eu refused -www.downloadbay.eu refused -thepiratemirror.com timed out -www.thepiratemirror.com timed out -piratebay.taratek.ie nonexist -thedarkbay.psb.cu.cc self signed -tpb.rocks nonexist -www.tpb.rocks nonexist -unblocktpb.co nonexist -www.unblocktpb.co nonexist -thepiratebaytorrent.com refused -www.thepiratebaytorrent.com refused -tpb.evil.org.pl nonexist -theproxybay.eu expired -www.theproxybay.eu expired -tpblite.com timed out -www.tpblite.com timed out -torrentfiles.in timed out -www.torrentfiles.in timed out -thepiratebay.kz nonexist -www.thepiratebay.kz nonexist -prx.relva.co.uk nonexist -piratebay.io mismatch -www.piratebay.io mismatch -tpb.proxyduck.net self signed -pirateblay.com protocol error -www.pirateblay.com protocol error -thepiratebay.cn.com timed out -proxypirate.co refused -www.proxypirate.co refused -tpb.pleb.me nonexist -thepiratebayz.com refused -www.thepiratebayz.com refused -www.fastpiratebay.eu nonexist -proxypirate.xyz nonexist -www.proxypirate.xyz nonexist -tpb.linuxthefish.net nonexist -www.bayproxy.com mismatch -bayproxy.com mismatch -deathbay.com timed out -www.deathbay.com timed out -www.pirateproxy.online nonexist -smartpiratebay.com timed out -www.smartpiratebay.com refused -tpb.360percents.com refused -www.dieroschtibay.org timed out -dieroschtibay.org timed out -tpb.co.pl protocol error -accesstpb.pw nonexist -www.accesstpb.pw nonexist -mybestbay.com timed out -www.mybestbay.com timed out -www.pirateshore.nl expired -pirateshore.nl expired -tpb.qwertyoruiop.com refused -tpb.vubey.com nonexist -www.piratebay.red nonexist -takewhatyoucan.cf timed out -www.takewhatyoucan.cf timed out -pirateproxyhk.qc.to nonexist -proxypirate.link nonexist -www.proxypirate.link nonexist -tpb.skit.kiev.ua nonexist -unblockbay.link nonexist -www.unblockbay.link nonexist -pirateby.info mismatch -www.pirateby.info mismatch -superbay.net/: (35, 'error:14077438:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert internal error') -www.superbay.net/: (35, 'error:14077438:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert internal error') -proxybay.me timed out -www.proxybay.me timed out -tbp.proxybay.us mismatch -unblocktpb.pw nonexist -www.unblocktpb.pw nonexist -www.thepiratebay2.se timed out -thepiratebay2.se timed out -pirate-bay-proxy.com mismatch -www.pirate-bay-proxy.com mismatch -uberproxy.net refused -www.uberproxy.net refused -thelitebay.com mismatch -www.thelitebay.com mismatch -www.pirate.trade nonexist -www.ukpirateproxy.xyz nonexist -tpbay.xyz nonexist -www.tpbay.xyz nonexist -probay.in timed out -www.probay.in timed out -accessbay.co refused -www.accessbay.co refused -pirateshore.org timed out -www.pirateshore.org timed out -thevideobay.com non-2xx http code -www.thevideobay.com non-2xx http code -tvbay.net non-2xx http code -www.tvbay.net non-2xx http code -thebootlegbay.com non-2xx http code -www.thebootlegbay.com non-2xx http code -themusicbay.com non-2xx http code -www.themusicbay.com non-2xx http code -suprbay.com non-2xx http code -www.suprbay.com non-2xx http code -tpb.disposable.name non-2xx http code - ---> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/thepiratebay-legacy.xml b/src/chrome/content/rules/thepiratebay-legacy.xml index dc8b0043570e..8c1f11130f9d 100644 --- a/src/chrome/content/rules/thepiratebay-legacy.xml +++ b/src/chrome/content/rules/thepiratebay-legacy.xml @@ -54,7 +54,7 @@ www.thepiratebay.is mismatch - + diff --git a/src/chrome/content/rules/thepiratebay-proxylist.org.xml b/src/chrome/content/rules/thepiratebay-proxylist.org.xml deleted file mode 100644 index 3c07f8c6502f..000000000000 --- a/src/chrome/content/rules/thepiratebay-proxylist.org.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/thepiratebay.cd.xml b/src/chrome/content/rules/thepiratebay.cd.xml new file mode 100644 index 000000000000..1da716401a86 --- /dev/null +++ b/src/chrome/content/rules/thepiratebay.cd.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/thepiratebay.red.xml b/src/chrome/content/rules/thepiratebay.red.xml new file mode 100644 index 000000000000..f83e19b11ef3 --- /dev/null +++ b/src/chrome/content/rules/thepiratebay.red.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/thepiratebay.rocks.xml b/src/chrome/content/rules/thepiratebay.rocks.xml new file mode 100644 index 000000000000..e9d3e02289af --- /dev/null +++ b/src/chrome/content/rules/thepiratebay.rocks.xml @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/chrome/content/rules/thepiratebay.uk.net.xml b/src/chrome/content/rules/thepiratebay.uk.net.xml new file mode 100644 index 000000000000..3a97082407d7 --- /dev/null +++ b/src/chrome/content/rules/thepiratebay.uk.net.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/thepirateportal.org.xml b/src/chrome/content/rules/thepirateportal.org.xml deleted file mode 100644 index a9b40c1a7feb..000000000000 --- a/src/chrome/content/rules/thepirateportal.org.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/theplacetelford.com.xml b/src/chrome/content/rules/theplacetelford.com.xml index 915fa6b0498a..de41bc658f5a 100644 --- a/src/chrome/content/rules/theplacetelford.com.xml +++ b/src/chrome/content/rules/theplacetelford.com.xml @@ -33,7 +33,7 @@ --> - + - + - + - + - + - + +--> + - - - + to="https://www.theses.fr/" /> + diff --git a/src/chrome/content/rules/thesportbible.com.xml b/src/chrome/content/rules/thesportbible.com.xml index 2f8926a38fba..0028f52e34e5 100644 --- a/src/chrome/content/rules/thesportbible.com.xml +++ b/src/chrome/content/rules/thesportbible.com.xml @@ -17,7 +17,7 @@ - + - + - + https://www.thesyriacampaign.or ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -25,7 +25,7 @@ Fetch error: http://www.thesyriacampaign.org/ => https://www.thesyriacampaign.or - + - + + + + + + + diff --git a/src/chrome/content/rules/thinkmoney.co.uk.xml b/src/chrome/content/rules/thinkmoney.co.uk.xml index 3edc2925ce40..a088f91fced8 100644 --- a/src/chrome/content/rules/thinkmoney.co.uk.xml +++ b/src/chrome/content/rules/thinkmoney.co.uk.xml @@ -18,7 +18,7 @@ - + - + - + + + + + + diff --git a/src/chrome/content/rules/thomashunter.name.xml b/src/chrome/content/rules/thomashunter.name.xml index be922a7897bd..31273ba3bff3 100644 --- a/src/chrome/content/rules/thomashunter.name.xml +++ b/src/chrome/content/rules/thomashunter.name.xml @@ -6,7 +6,7 @@ Fetch error: http://www.thomashunter.name/ => https://www.thomashunter.name/: (5 STS header includes includeSubdomains --> - + @@ -14,7 +14,7 @@ Fetch error: http://www.thomashunter.name/ => https://www.thomashunter.name/: (5 - + - + - + + + + + + + + + + + + diff --git a/src/chrome/content/rules/threatmatrix.com.xml b/src/chrome/content/rules/threatmatrix.com.xml index 409ca0a8cb00..9fc227ce7a2c 100644 --- a/src/chrome/content/rules/threatmatrix.com.xml +++ b/src/chrome/content/rules/threatmatrix.com.xml @@ -12,7 +12,7 @@ Fetch error: http://www.threatmatrix.com/ => https://www.threatmatrix.com/: (51, - www.threatmatrix.com --> - + @@ -26,7 +26,7 @@ Fetch error: http://www.threatmatrix.com/ => https://www.threatmatrix.com/: (51, - + - + + + + + + diff --git a/src/chrome/content/rules/tianya.cn-mixedcontent.xml b/src/chrome/content/rules/tianya.cn-mixedcontent.xml new file mode 100644 index 000000000000..ff11b8926c5f --- /dev/null +++ b/src/chrome/content/rules/tianya.cn-mixedcontent.xml @@ -0,0 +1,10 @@ + + + + + + + + diff --git a/src/chrome/content/rules/tianya.cn.xml b/src/chrome/content/rules/tianya.cn.xml new file mode 100644 index 000000000000..e535c003852b --- /dev/null +++ b/src/chrome/content/rules/tianya.cn.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/tibia.com.xml b/src/chrome/content/rules/tibia.com.xml index b60d935adc9f..225ff004e73a 100644 --- a/src/chrome/content/rules/tibia.com.xml +++ b/src/chrome/content/rules/tibia.com.xml @@ -2,23 +2,25 @@ + to="https://www.tibia.com/forum/" /> + to="https://www.tibia.com/" /> + to="https://www.test.tibia.com/forum/" /> + to="https://www.test.tibia.com/" /> - + + + diff --git a/src/chrome/content/rules/tibiamaps.io.xml b/src/chrome/content/rules/tibiamaps.io.xml index 8e0ffd196b26..e15e1dc0da6c 100644 --- a/src/chrome/content/rules/tibiamaps.io.xml +++ b/src/chrome/content/rules/tibiamaps.io.xml @@ -2,5 +2,5 @@ - + diff --git a/src/chrome/content/rules/tibus.com.xml b/src/chrome/content/rules/tibus.com.xml index 5ba0488da6a7..d45973fa2c29 100644 --- a/src/chrome/content/rules/tibus.com.xml +++ b/src/chrome/content/rules/tibus.com.xml @@ -22,7 +22,7 @@ - + https://ticket4u.com.my/: (7, 'Failed to Fetch error: http://www.ticket4u.com.my/ => https://www.ticket4u.com.my/: (7, 'Failed to connect to www.ticket4u.com.my port 443: No route to host') --> - + diff --git a/src/chrome/content/rules/ticketsource.co.uk.xml b/src/chrome/content/rules/ticketsource.co.uk.xml deleted file mode 100644 index b0cdcc0dc073..000000000000 --- a/src/chrome/content/rules/ticketsource.co.uk.xml +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/tifbs.net.xml b/src/chrome/content/rules/tifbs.net.xml index a22f7dcd4024..52c79c8f1f71 100644 --- a/src/chrome/content/rules/tifbs.net.xml +++ b/src/chrome/content/rules/tifbs.net.xml @@ -7,7 +7,7 @@ - + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/tildeslash.com.xml b/src/chrome/content/rules/tildeslash.com.xml new file mode 100644 index 000000000000..8f01cab617ff --- /dev/null +++ b/src/chrome/content/rules/tildeslash.com.xml @@ -0,0 +1,14 @@ + + + + + + + diff --git a/src/chrome/content/rules/timus.online.xml b/src/chrome/content/rules/timus.online.xml new file mode 100644 index 000000000000..19514d920973 --- /dev/null +++ b/src/chrome/content/rules/timus.online.xml @@ -0,0 +1,12 @@ + + + + + + diff --git a/src/chrome/content/rules/tinkernut.com.xml b/src/chrome/content/rules/tinkernut.com.xml index 86fb129d7eab..3464457202d5 100644 --- a/src/chrome/content/rules/tinkernut.com.xml +++ b/src/chrome/content/rules/tinkernut.com.xml @@ -1,4 +1,4 @@ - diff --git a/src/chrome/content/rules/tinyimg.io.xml b/src/chrome/content/rules/tinyimg.io.xml new file mode 100644 index 000000000000..9ec0fb10c9ce --- /dev/null +++ b/src/chrome/content/rules/tinyimg.io.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/tipeeestream.com.xml b/src/chrome/content/rules/tipeeestream.com.xml index fe4190934f1a..f8cfd9b6e8fb 100644 --- a/src/chrome/content/rules/tipeeestream.com.xml +++ b/src/chrome/content/rules/tipeeestream.com.xml @@ -20,7 +20,7 @@ --> - + - + - + https://tkgorod.ru/: Too many redirects while fetching 'https://tkgorod.ru/' Fetch error: http://www.tkgorod.ru/ => https://tkgorod.ru/: Too many redirects while fetching 'https://tkgorod.ru/' www. to many redirects--> - + - + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/tldpros.com.xml b/src/chrome/content/rules/tldpros.com.xml index 0cd67fcedace..8639d4f59594 100644 --- a/src/chrome/content/rules/tldpros.com.xml +++ b/src/chrome/content/rules/tldpros.com.xml @@ -17,7 +17,7 @@ --> - + - + diff --git a/src/chrome/content/rules/tmetric.com.xml b/src/chrome/content/rules/tmetric.com.xml new file mode 100644 index 000000000000..ad61aa8e5ac5 --- /dev/null +++ b/src/chrome/content/rules/tmetric.com.xml @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/tmp.ninja.xml b/src/chrome/content/rules/tmp.ninja.xml new file mode 100644 index 000000000000..8417a06d59c8 --- /dev/null +++ b/src/chrome/content/rules/tmp.ninja.xml @@ -0,0 +1,8 @@ + + + + + + diff --git a/src/chrome/content/rules/tms-media.co.uk.xml b/src/chrome/content/rules/tms-media.co.uk.xml index 15f2e3a7b4c6..0a62325c5a4a 100644 --- a/src/chrome/content/rules/tms-media.co.uk.xml +++ b/src/chrome/content/rules/tms-media.co.uk.xml @@ -6,12 +6,12 @@ Fetch error: http://agilisys.tms-media.co.uk/ => https://agilisys.tms-media.co.u (www.)?tms-media.co.uk: Mismatched --> - + - + - @@ -20,15 +17,7 @@ - - - - - - - - + diff --git a/src/chrome/content/rules/tns-cs.net.xml b/src/chrome/content/rules/tns-cs.net.xml index 8b4615a05d0b..e4d5dc3a9309 100644 --- a/src/chrome/content/rules/tns-cs.net.xml +++ b/src/chrome/content/rules/tns-cs.net.xml @@ -18,14 +18,10 @@ - - - - @@ -34,13 +30,12 @@ - + - + - + + + + + + + diff --git a/src/chrome/content/rules/todayifoundout.com.xml b/src/chrome/content/rules/todayifoundout.com.xml new file mode 100644 index 000000000000..80a1ab15f752 --- /dev/null +++ b/src/chrome/content/rules/todayifoundout.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/togethertrust.org.uk.xml b/src/chrome/content/rules/togethertrust.org.uk.xml index ede99606a77f..85f9dadf3514 100644 --- a/src/chrome/content/rules/togethertrust.org.uk.xml +++ b/src/chrome/content/rules/togethertrust.org.uk.xml @@ -13,7 +13,7 @@ - + @@ -9,11 +10,9 @@ www.tokyo2020.jp mismatch - + - - diff --git a/src/chrome/content/rules/tomritterbassljd.onion.xml b/src/chrome/content/rules/tomritterbassljd.onion.xml new file mode 100644 index 000000000000..4352ca0ce50d --- /dev/null +++ b/src/chrome/content/rules/tomritterbassljd.onion.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/tonmo.com.xml b/src/chrome/content/rules/tonmo.com.xml index 524d25e9d307..fbe3eb996238 100644 --- a/src/chrome/content/rules/tonmo.com.xml +++ b/src/chrome/content/rules/tonmo.com.xml @@ -5,7 +5,7 @@ - + + + + + + + + diff --git a/src/chrome/content/rules/topicbox.com.xml b/src/chrome/content/rules/topicbox.com.xml new file mode 100644 index 000000000000..10da918a6f8c --- /dev/null +++ b/src/chrome/content/rules/topicbox.com.xml @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/toppreise.ch.xml b/src/chrome/content/rules/toppreise.ch.xml index 1609691cf06f..512473b0856e 100644 --- a/src/chrome/content/rules/toppreise.ch.xml +++ b/src/chrome/content/rules/toppreise.ch.xml @@ -26,7 +26,7 @@ --> - + https://www.topshop.co ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -100,7 +100,7 @@ Non-2xx HTTP code: http://insideout.topshop.com/ (200) => https://www.topshop.co - + - + - + diff --git a/src/chrome/content/rules/torrentdownloads.me.xml b/src/chrome/content/rules/torrentdownloads.me.xml index a3ca41795d1d..8c0acc595b1f 100644 --- a/src/chrome/content/rules/torrentdownloads.me.xml +++ b/src/chrome/content/rules/torrentdownloads.me.xml @@ -1,10 +1,14 @@ + + + + diff --git a/src/chrome/content/rules/torrents-time.com.xml b/src/chrome/content/rules/torrents-time.com.xml index 0d6fa8a145d8..e53c5fd53aa6 100644 --- a/src/chrome/content/rules/torrents-time.com.xml +++ b/src/chrome/content/rules/torrents-time.com.xml @@ -5,7 +5,7 @@ - + https://torrentsstorage.net/: (6, 'Could not resolve host: torrentsstorage.net') -Fetch error: http://www.torrentsstorage.net/ => https://www.torrentsstorage.net/: (6, 'Could not resolve host: www.torrentsstorage.net') - - Insecure cookies are set for these domains: ᶜ - - - .torrentsstorage.net - - .www.torrentsstorage.net - - ᶜ See https://owasp.org/index.php/SecureFlag - ---> - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/torrentz.ht.xml b/src/chrome/content/rules/torrentz.ht.xml deleted file mode 100644 index ec820e135b5e..000000000000 --- a/src/chrome/content/rules/torrentz.ht.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/torrentz.site.xml b/src/chrome/content/rules/torrentz.site.xml deleted file mode 100644 index 3221606a019c..000000000000 --- a/src/chrome/content/rules/torrentz.site.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/torrentz2.eu.xml b/src/chrome/content/rules/torrentz2.eu.xml deleted file mode 100644 index 62869b25f8de..000000000000 --- a/src/chrome/content/rules/torrentz2.eu.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/tortall.net.xml b/src/chrome/content/rules/tortall.net.xml new file mode 100644 index 000000000000..33874b754536 --- /dev/null +++ b/src/chrome/content/rules/tortall.net.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/toshiba-tec.com.cn.xml b/src/chrome/content/rules/toshiba-tec.com.cn.xml deleted file mode 100644 index 12ed53df7914..000000000000 --- a/src/chrome/content/rules/toshiba-tec.com.cn.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/totalpolitics.com.xml b/src/chrome/content/rules/totalpolitics.com.xml index 92c32d898a36..12b29cd9ff14 100644 --- a/src/chrome/content/rules/totalpolitics.com.xml +++ b/src/chrome/content/rules/totalpolitics.com.xml @@ -13,7 +13,7 @@ - + - + - + diff --git a/src/chrome/content/rules/toxstats.com.xml b/src/chrome/content/rules/toxstats.com.xml deleted file mode 100644 index dbd76ca64cc0..000000000000 --- a/src/chrome/content/rules/toxstats.com.xml +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/toynews-online.biz.xml b/src/chrome/content/rules/toynews-online.biz.xml index 1f52dbf1586e..0e3b6fb7c7a6 100644 --- a/src/chrome/content/rules/toynews-online.biz.xml +++ b/src/chrome/content/rules/toynews-online.biz.xml @@ -27,7 +27,7 @@ --> - + - + + + + + + + + diff --git a/src/chrome/content/rules/tpblist.xyz.xml b/src/chrome/content/rules/tpblist.xyz.xml index 212661de4d89..2a435c79eaa3 100644 --- a/src/chrome/content/rules/tpblist.xyz.xml +++ b/src/chrome/content/rules/tpblist.xyz.xml @@ -29,7 +29,7 @@ tpb.proxyduck.net self signed www.pbp.rocks refused --> - + @@ -79,4 +79,4 @@ www.pbp.rocks refused - \ No newline at end of file + diff --git a/src/chrome/content/rules/tpucdn.com.xml b/src/chrome/content/rules/tpucdn.com.xml index 85a86111a0bf..c52ff84f0a9c 100644 --- a/src/chrome/content/rules/tpucdn.com.xml +++ b/src/chrome/content/rules/tpucdn.com.xml @@ -8,7 +8,7 @@ - + - + - + - + - + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/trainingjournal.com.xml b/src/chrome/content/rules/trainingjournal.com.xml index 4f8531aa277f..a65d1139bc2b 100644 --- a/src/chrome/content/rules/trainingjournal.com.xml +++ b/src/chrome/content/rules/trainingjournal.com.xml @@ -5,7 +5,7 @@ - + - + - + https://www.transfer.sh/: (35, 'error:14077410:SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert handshake failure') - - - + Wildcard DNS and cert. --> - + + + diff --git a/src/chrome/content/rules/transfermarkt.de.xml b/src/chrome/content/rules/transfermarkt.de.xml new file mode 100644 index 000000000000..b2c8d5257d91 --- /dev/null +++ b/src/chrome/content/rules/transfermarkt.de.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/translations.com.xml b/src/chrome/content/rules/translations.com.xml index 6eaddeda02b5..a6f3f5dcef01 100644 --- a/src/chrome/content/rules/translations.com.xml +++ b/src/chrome/content/rules/translations.com.xml @@ -19,11 +19,11 @@ Fetch error: http://translations.com/ => https://www.translations.com/: (60, 'SS - Images on www from cdn.transperfect.com ˡ - Bug on www from a.analytics.yahoo.com * - ˡ Unsecurable <= redirect loop + ˡ Unsecurable <= redirect loop * See https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -35,7 +35,7 @@ Fetch error: http://translations.com/ => https://www.translations.com/: (60, 'SS - + - + - + - + - + - + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/trbo.com.xml b/src/chrome/content/rules/trbo.com.xml new file mode 100644 index 000000000000..b7a998db644b --- /dev/null +++ b/src/chrome/content/rules/trbo.com.xml @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/trezor.io.xml b/src/chrome/content/rules/trezor.io.xml deleted file mode 100644 index 2e102803b28c..000000000000 --- a/src/chrome/content/rules/trezor.io.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/trialinteractive.com.xml b/src/chrome/content/rules/trialinteractive.com.xml index 5eab20ccfd3d..d2715710068e 100644 --- a/src/chrome/content/rules/trialinteractive.com.xml +++ b/src/chrome/content/rules/trialinteractive.com.xml @@ -22,7 +22,7 @@ --> - + - + - + - + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/tripadvisor.ca.xml b/src/chrome/content/rules/tripadvisor.ca.xml index 2617eeed8144..2040995a7d13 100644 --- a/src/chrome/content/rules/tripadvisor.ca.xml +++ b/src/chrome/content/rules/tripadvisor.ca.xml @@ -20,7 +20,7 @@ - + - + - + - + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/trvl-media.com.xml b/src/chrome/content/rules/trvl-media.com.xml new file mode 100644 index 000000000000..becb31c82828 --- /dev/null +++ b/src/chrome/content/rules/trvl-media.com.xml @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/trvl-px.com.xml b/src/chrome/content/rules/trvl-px.com.xml new file mode 100644 index 000000000000..bee9a6e42da7 --- /dev/null +++ b/src/chrome/content/rules/trvl-px.com.xml @@ -0,0 +1,26 @@ + + + + + + + + diff --git a/src/chrome/content/rules/tset.de.xml b/src/chrome/content/rules/tset.de.xml new file mode 100644 index 000000000000..8228128f73d6 --- /dev/null +++ b/src/chrome/content/rules/tset.de.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/tsowell.xml b/src/chrome/content/rules/tsowell.xml new file mode 100644 index 000000000000..e0856caa8aea --- /dev/null +++ b/src/chrome/content/rules/tsowell.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/tsp.gov.xml b/src/chrome/content/rules/tsp.gov.xml index 1fde77fdebda..650659b94ecc 100644 --- a/src/chrome/content/rules/tsp.gov.xml +++ b/src/chrome/content/rules/tsp.gov.xml @@ -9,7 +9,7 @@ - + - + diff --git a/src/chrome/content/rules/tuc.org.uk.xml b/src/chrome/content/rules/tuc.org.uk.xml index f305fdbaef79..bad3076a0201 100644 --- a/src/chrome/content/rules/tuc.org.uk.xml +++ b/src/chrome/content/rules/tuc.org.uk.xml @@ -14,7 +14,7 @@ - + - + - + diff --git a/src/chrome/content/rules/tumba.ch.xml b/src/chrome/content/rules/tumba.ch.xml index aae8e1f257d7..7021b2555083 100644 --- a/src/chrome/content/rules/tumba.ch.xml +++ b/src/chrome/content/rules/tumba.ch.xml @@ -6,7 +6,7 @@ Fetch error: http://les.tumba.ch/ => https://les.tumba.ch/: (51, "SSL: no altern Fetch error: http://u.tumba.ch/ => https://u.tumba.ch/: (51, "SSL: no alternative certificate subject name matches target host name 'u.tumba.ch'") --> - + diff --git a/src/chrome/content/rules/tunbridgewells.gov.uk.xml b/src/chrome/content/rules/tunbridgewells.gov.uk.xml deleted file mode 100644 index cfe42387e0b8..000000000000 --- a/src/chrome/content/rules/tunbridgewells.gov.uk.xml +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/tune.com.xml b/src/chrome/content/rules/tune.com.xml index 5e3c8395e94d..ae8352a2009b 100644 --- a/src/chrome/content/rules/tune.com.xml +++ b/src/chrome/content/rules/tune.com.xml @@ -1,8 +1,14 @@ + + - + @@ -79,7 +85,7 @@ - + - + https://tuquito.org.ar/: (6, 'Could not resolve host: tuquito.org.ar') -Fetch error: http://www.tuquito.org.ar/ => https://www.tuquito.org.ar/: (6, 'Could not resolve host: www.tuquito.org.ar') - -blog.tuquito.org.ar mixed content -fundacion.tuquito.org.ar mixed content ---> - - - - - - diff --git a/src/chrome/content/rules/turku.fi.xml b/src/chrome/content/rules/turku.fi.xml index c322fc7d18ba..3653ba300ee7 100644 --- a/src/chrome/content/rules/turku.fi.xml +++ b/src/chrome/content/rules/turku.fi.xml @@ -9,7 +9,7 @@ Non-2xx HTTP code: http://www.bussit.turku.fi/ (200) => https://www.turku.fi/pub - www.turku.fi/(ahtela|bussar|busses|bussit|paikalla|paplats| ippe|nuorikulttuuri|sustainable-city|...) --> - + diff --git a/src/chrome/content/rules/tushuku.net.xml b/src/chrome/content/rules/tushuku.net.xml deleted file mode 100644 index 569e91eb1480..000000000000 --- a/src/chrome/content/rules/tushuku.net.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/src/chrome/content/rules/tutti.ch.xml b/src/chrome/content/rules/tutti.ch.xml index 885e5e3550bb..51e9f6cb9e15 100644 --- a/src/chrome/content/rules/tutti.ch.xml +++ b/src/chrome/content/rules/tutti.ch.xml @@ -13,10 +13,16 @@ - + + + + + + + diff --git a/src/chrome/content/rules/tuxfamily.net.xml b/src/chrome/content/rules/tuxfamily.net.xml index d29483d3f6cb..3a6b1f9762b7 100644 --- a/src/chrome/content/rules/tuxfamily.net.xml +++ b/src/chrome/content/rules/tuxfamily.net.xml @@ -7,7 +7,7 @@ - + https://gimpphoto.tuxfamily. NB: see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -46,7 +46,7 @@ Fetch error: http://www.gimpphoto.tuxfamily.org/ => https://gimpphoto.tuxfamily. - + https://tvaddons.ag/: (6, 'Could not resolve host: tvaddons.ag') -Fetch error: http://logs.tvaddons.ag/ => https://logs.tvaddons.ag/: (6, 'Could not resolve host: logs.tvaddons.ag') -Fetch error: http://www.tvaddons.ag/ => https://www.tvaddons.ag/: (6, 'Could not resolve host: www.tvaddons.ag') - - Insecure cookies are set for these hosts: ᶜ - - - logs.tvaddons.ag - - ᶜ See https://owasp.org/index.php/SecureFlag - ---> - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/tvaddons.org.xml b/src/chrome/content/rules/tvaddons.org.xml deleted file mode 100644 index 5f7cbf1b37b2..000000000000 --- a/src/chrome/content/rules/tvaddons.org.xml +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/tvc.ru.xml b/src/chrome/content/rules/tvc.ru.xml index 85d2e4e94dd8..0d05328c5c2a 100644 --- a/src/chrome/content/rules/tvc.ru.xml +++ b/src/chrome/content/rules/tvc.ru.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://cdn.tvc.ru/ => https://cdn.tvc.ru/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + diff --git a/src/chrome/content/rules/tvkultura.ru.xml b/src/chrome/content/rules/tvkultura.ru.xml index 40d0b2556e0c..55f8777f945a 100644 --- a/src/chrome/content/rules/tvkultura.ru.xml +++ b/src/chrome/content/rules/tvkultura.ru.xml @@ -36,7 +36,7 @@ --> - + - + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/tweetamonial.com.xml b/src/chrome/content/rules/tweetamonial.com.xml index 7713e9a70a43..93931ffd5086 100644 --- a/src/chrome/content/rules/tweetamonial.com.xml +++ b/src/chrome/content/rules/tweetamonial.com.xml @@ -17,7 +17,7 @@ - + - + + + + + + + + + diff --git a/src/chrome/content/rules/tyresales.com.au.xml b/src/chrome/content/rules/tyresales.com.au.xml new file mode 100644 index 000000000000..2d3a0a113d1b --- /dev/null +++ b/src/chrome/content/rules/tyresales.com.au.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/tyumedia.ru.xml b/src/chrome/content/rules/tyumedia.ru.xml index 21a16c027c83..f45a9d2832ba 100644 --- a/src/chrome/content/rules/tyumedia.ru.xml +++ b/src/chrome/content/rules/tyumedia.ru.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://tyumedia.ru/ => https://tyumedia.ru/: (60, 'SSL certificate problem: unable to get local issuer certificate') Fetch error: http://www.tyumedia.ru/ => https://tyumedia.ru/: (60, 'SSL certificate problem: unable to get local issuer certificate') www. mismatch --> - + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/ubalt.edu.xml b/src/chrome/content/rules/ubalt.edu.xml new file mode 100644 index 000000000000..542de6cf5b4f --- /dev/null +++ b/src/chrome/content/rules/ubalt.edu.xml @@ -0,0 +1,149 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/uberflip.com.xml b/src/chrome/content/rules/uberflip.com.xml index 5f186fe6d938..3ac99b16be78 100644 --- a/src/chrome/content/rules/uberflip.com.xml +++ b/src/chrome/content/rules/uberflip.com.xml @@ -27,7 +27,7 @@ --> - + + + + + + + + + diff --git a/src/chrome/content/rules/ubuntugeek.com.xml b/src/chrome/content/rules/ubuntugeek.com.xml new file mode 100644 index 000000000000..c2911527b07e --- /dev/null +++ b/src/chrome/content/rules/ubuntugeek.com.xml @@ -0,0 +1,23 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/ubuntupodcast.org.xml b/src/chrome/content/rules/ubuntupodcast.org.xml new file mode 100644 index 000000000000..1de6a3fad8e0 --- /dev/null +++ b/src/chrome/content/rules/ubuntupodcast.org.xml @@ -0,0 +1,16 @@ + + + + + + + + diff --git a/src/chrome/content/rules/ubuntutheaterproject.com.xml b/src/chrome/content/rules/ubuntutheaterproject.com.xml new file mode 100644 index 000000000000..d27468ea5d18 --- /dev/null +++ b/src/chrome/content/rules/ubuntutheaterproject.com.xml @@ -0,0 +1,10 @@ + + + + + + + diff --git a/src/chrome/content/rules/ucarp.org.xml b/src/chrome/content/rules/ucarp.org.xml deleted file mode 100644 index 335c4b10f7ca..000000000000 --- a/src/chrome/content/rules/ucarp.org.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - diff --git a/src/chrome/content/rules/uclick.com.xml b/src/chrome/content/rules/uclick.com.xml index e818e6bfdf76..758ccc775bea 100644 --- a/src/chrome/content/rules/uclick.com.xml +++ b/src/chrome/content/rules/uclick.com.xml @@ -2,7 +2,7 @@ These altnames do not exist: - www.admin.uclick.com - + Mixed content: @@ -26,7 +26,7 @@ - + - + - + diff --git a/src/chrome/content/rules/uhrp.org.xml b/src/chrome/content/rules/uhrp.org.xml new file mode 100644 index 000000000000..241187e7de16 --- /dev/null +++ b/src/chrome/content/rules/uhrp.org.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/uhulinux.hu.xml b/src/chrome/content/rules/uhulinux.hu.xml deleted file mode 100644 index 803fec129fcf..000000000000 --- a/src/chrome/content/rules/uhulinux.hu.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/ukconstitutionallaw.org.xml b/src/chrome/content/rules/ukconstitutionallaw.org.xml index c6acf168f07d..19a8a761704b 100644 --- a/src/chrome/content/rules/ukconstitutionallaw.org.xml +++ b/src/chrome/content/rules/ukconstitutionallaw.org.xml @@ -4,7 +4,7 @@ - + + + + + + + diff --git a/src/chrome/content/rules/ukw.jp.xml b/src/chrome/content/rules/ukw.jp.xml deleted file mode 100644 index f9a349807581..000000000000 --- a/src/chrome/content/rules/ukw.jp.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/ukxcam.co.uk.xml b/src/chrome/content/rules/ukxcam.co.uk.xml index f71d134fe56a..4a755c17cbfa 100644 --- a/src/chrome/content/rules/ukxcam.co.uk.xml +++ b/src/chrome/content/rules/ukxcam.co.uk.xml @@ -18,7 +18,7 @@ Fetch error: http://www.ukxcam.co.uk/ => https://www.ukxcam.co.uk/: (51, "SSL: n ˢ See https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -28,7 +28,7 @@ Fetch error: http://www.ukxcam.co.uk/ => https://www.ukxcam.co.uk/: (51, "SSL: n --> - + - + https://ultimateeditionoz.com/: (7 Fetch error: http://www.ultimateeditionoz.com/ => https://www.ultimateeditionoz.com/: (7, 'Failed to connect to www.ultimateeditionoz.com port 443: Connection refused') --> - + diff --git a/src/chrome/content/rules/ultimedia.com.xml b/src/chrome/content/rules/ultimedia.com.xml new file mode 100644 index 000000000000..e69454c4acfa --- /dev/null +++ b/src/chrome/content/rules/ultimedia.com.xml @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/umeng.xml b/src/chrome/content/rules/umeng.xml index ac9754b0e54c..cffc747aac57 100644 --- a/src/chrome/content/rules/umeng.xml +++ b/src/chrome/content/rules/umeng.xml @@ -21,7 +21,7 @@ Fetch error: http://umeng.com/ => https://umeng.com/: (7, 'Failed to connect to - huodong.umeng.com --> - + @@ -35,12 +35,12 @@ Fetch error: http://umeng.com/ => https://umeng.com/: (7, 'Failed to connect to - + - + diff --git a/src/chrome/content/rules/umgum.com.xml b/src/chrome/content/rules/umgum.com.xml new file mode 100644 index 000000000000..bc150dfa1712 --- /dev/null +++ b/src/chrome/content/rules/umgum.com.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/umontpellier.fr.xml b/src/chrome/content/rules/umontpellier.fr.xml index bb20f5d74e55..7ada006cfa15 100644 --- a/src/chrome/content/rules/umontpellier.fr.xml +++ b/src/chrome/content/rules/umontpellier.fr.xml @@ -34,7 +34,7 @@ - + diff --git a/src/chrome/content/rules/undraw.co.xml b/src/chrome/content/rules/undraw.co.xml new file mode 100644 index 000000000000..7d0c8137537b --- /dev/null +++ b/src/chrome/content/rules/undraw.co.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/unet.by.xml b/src/chrome/content/rules/unet.by.xml index 1d94b8198dda..ce375a1eeab5 100644 --- a/src/chrome/content/rules/unet.by.xml +++ b/src/chrome/content/rules/unet.by.xml @@ -31,7 +31,7 @@ devmy.unet.by different content ⁴ self signed ⁵ expired --> - + diff --git a/src/chrome/content/rules/uni-mannheim.de.xml b/src/chrome/content/rules/uni-mannheim.de.xml new file mode 100644 index 000000000000..bd0a71d1e5a2 --- /dev/null +++ b/src/chrome/content/rules/uni-mannheim.de.xml @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/uni-ulm.de.xml b/src/chrome/content/rules/uni-ulm.de.xml index 680f1b462e54..f64270b8b1bd 100644 --- a/src/chrome/content/rules/uni-ulm.de.xml +++ b/src/chrome/content/rules/uni-ulm.de.xml @@ -50,7 +50,7 @@ - + + + + + + + + + + + + diff --git a/src/chrome/content/rules/unimatrix.si-resources.xml b/src/chrome/content/rules/unimatrix.si-resources.xml deleted file mode 100644 index a1c553603a02..000000000000 --- a/src/chrome/content/rules/unimatrix.si-resources.xml +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/unimatrix.si.xml b/src/chrome/content/rules/unimatrix.si.xml index b9ea4eea125d..91d06050e738 100644 --- a/src/chrome/content/rules/unimatrix.si.xml +++ b/src/chrome/content/rules/unimatrix.si.xml @@ -59,7 +59,7 @@ --> - + + + + + + diff --git a/src/chrome/content/rules/unionlearn.org.uk.xml b/src/chrome/content/rules/unionlearn.org.uk.xml index 875e017ff2ad..651441c0f2c9 100644 --- a/src/chrome/content/rules/unionlearn.org.uk.xml +++ b/src/chrome/content/rules/unionlearn.org.uk.xml @@ -5,7 +5,7 @@ - + - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/unionreps.org.uk.xml b/src/chrome/content/rules/unionreps.org.uk.xml index 89b75ea3b876..4e90fd2e5e4a 100644 --- a/src/chrome/content/rules/unionreps.org.uk.xml +++ b/src/chrome/content/rules/unionreps.org.uk.xml @@ -4,7 +4,7 @@ - + - + diff --git a/src/chrome/content/rules/unit4.com.xml b/src/chrome/content/rules/unit4.com.xml index 9ba702995095..b97bf2ac11b4 100644 --- a/src/chrome/content/rules/unit4.com.xml +++ b/src/chrome/content/rules/unit4.com.xml @@ -41,7 +41,7 @@ Non-2xx HTTP code: http://info.unit4.com/rs/900-SZD-631/images/U4-U4BW-WHO-CS-Ve ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -162,7 +162,7 @@ Non-2xx HTTP code: http://info.unit4.com/rs/900-SZD-631/images/U4-U4BW-WHO-CS-Ve - + - - + + - + - + + + + + + + + diff --git a/src/chrome/content/rules/unwetteralarm.com.xml b/src/chrome/content/rules/unwetteralarm.com.xml new file mode 100644 index 000000000000..8f7143947e34 --- /dev/null +++ b/src/chrome/content/rules/unwetteralarm.com.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/unz.com.xml b/src/chrome/content/rules/unz.com.xml new file mode 100644 index 000000000000..b1a394494ee8 --- /dev/null +++ b/src/chrome/content/rules/unz.com.xml @@ -0,0 +1,11 @@ + + + + + + + + diff --git a/src/chrome/content/rules/up.com.xml b/src/chrome/content/rules/up.com.xml index b01a144c8cb3..f786e60be6e3 100644 --- a/src/chrome/content/rules/up.com.xml +++ b/src/chrome/content/rules/up.com.xml @@ -4,7 +4,6 @@ Other Union Pacific Railroad Company rulesets: - streamline.com.xml - - unionpacific.jobs.xml - up.jobs.xml - upds.com.xml - uprr.com.xml @@ -42,7 +41,7 @@ --> - + - + - - - - diff --git a/src/chrome/content/rules/upc-cablecom.xml b/src/chrome/content/rules/upc-cablecom.xml index 4bf386826464..13355ad45183 100644 --- a/src/chrome/content/rules/upc-cablecom.xml +++ b/src/chrome/content/rules/upc-cablecom.xml @@ -17,7 +17,7 @@ Fetch error: http://preprod.it.hispeed.ch/ => https://preprod.it.hispeed.ch/: (2 Fetch error: http://preprod.en.hispeed.ch/ => https://preprod.en.hispeed.ch/: (28, 'Connection timed out after 20001 milliseconds') Fetch error: http://webmail.hispeed.ch/ => https://webmail.hispeed.ch/: (7, 'Failed to connect to webmail.hispeed.ch port 443: Connection refused') - CDN buckets: + CDN buckets: - www.orion.lgi.com.c.footprint.net @@ -38,7 +38,7 @@ Fetch error: http://webmail.hispeed.ch/ => https://webmail.hispeed.ch/: (7, 'Fai - static --> - + diff --git a/src/chrome/content/rules/upds.com.xml b/src/chrome/content/rules/upds.com.xml index 53956aeb9fe2..fa13719e41eb 100644 --- a/src/chrome/content/rules/upds.com.xml +++ b/src/chrome/content/rules/upds.com.xml @@ -16,7 +16,7 @@ - + - + - + - + - - - - - - - - - - - diff --git a/src/chrome/content/rules/uprr.com.xml b/src/chrome/content/rules/uprr.com.xml index cd165eea0373..4ffb26dad205 100644 --- a/src/chrome/content/rules/uprr.com.xml +++ b/src/chrome/content/rules/uprr.com.xml @@ -95,7 +95,7 @@ - + - + diff --git a/src/chrome/content/rules/uptimerobot.xml b/src/chrome/content/rules/uptimerobot.xml deleted file mode 100644 index 040c90cd4c4e..000000000000 --- a/src/chrome/content/rules/uptimerobot.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/src/chrome/content/rules/uptodown.com.xml b/src/chrome/content/rules/uptodown.com.xml index f87e38a9bd6c..e4e8a3a7c97c 100644 --- a/src/chrome/content/rules/uptodown.com.xml +++ b/src/chrome/content/rules/uptodown.com.xml @@ -14,16 +14,7 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/uptodown.net.xml b/src/chrome/content/rules/uptodown.net.xml index 1eeee1971dd2..98c0d05f3ea8 100644 --- a/src/chrome/content/rules/uptodown.net.xml +++ b/src/chrome/content/rules/uptodown.net.xml @@ -1,7 +1,7 @@ @@ -20,15 +23,14 @@ - - + + - - + - diff --git a/src/chrome/content/rules/ura.gov.sg.xml b/src/chrome/content/rules/ura.gov.sg.xml index 005c8d94ec5f..fb9fb1801467 100644 --- a/src/chrome/content/rules/ura.gov.sg.xml +++ b/src/chrome/content/rules/ura.gov.sg.xml @@ -9,7 +9,7 @@ - + - + diff --git a/src/chrome/content/rules/urlQuery.net.xml b/src/chrome/content/rules/urlQuery.net.xml deleted file mode 100644 index 6bbece917fe2..000000000000 --- a/src/chrome/content/rules/urlQuery.net.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/src/chrome/content/rules/us.jobs.xml b/src/chrome/content/rules/us.jobs.xml index 86b99eacbaa1..119e2e28a702 100644 --- a/src/chrome/content/rules/us.jobs.xml +++ b/src/chrome/content/rules/us.jobs.xml @@ -43,7 +43,7 @@ - + https://webmail.usainteanne.ca/: Fetch error: http://smtp.usainteanne.ca/ => https://smtp.usainteanne.ca/: (28, 'Connection timed out after 20001 milliseconds') --> - + diff --git a/src/chrome/content/rules/usatodayw7vu5egc.onion.xml b/src/chrome/content/rules/usatodayw7vu5egc.onion.xml new file mode 100644 index 000000000000..c02c8e8a92fb --- /dev/null +++ b/src/chrome/content/rules/usatodayw7vu5egc.onion.xml @@ -0,0 +1,8 @@ + + + + + + diff --git a/src/chrome/content/rules/usefedora.com.xml b/src/chrome/content/rules/usefedora.com.xml index f7cf2defc449..60a2d2726942 100644 --- a/src/chrome/content/rules/usefedora.com.xml +++ b/src/chrome/content/rules/usefedora.com.xml @@ -20,7 +20,7 @@ - + https://suva.usembassy.gov/: (6, 'Cou - iframe on macedonia, tanzania from www.youtube.com ˢ - Images, on: - + - abudhabi, arabic.algeria, french.algeria, algiers, angola, portuguese.angola, www.antananarivo, armenia, armenian.armenia, russian.ashgabat, turkmen.ashgabat, athens, austria, german.austria, azerbaijan, azeri.azerbaijan, bahrain, bangkok, thai.bangkok, bangui, banjul, barbados, belgium, dutch.belgium, french.belgium, belize, french.benin, bern, bishkek, kyrgyz.bishkek, russian.bishkek, bogota, spanish.bogota, bolivia, spanish.bolivia, botswana, brazzaville, french.brazzaville, brunei, bulgaria, bulgarian.bulgaria, french.burkinafaso, burma, burundi, canberra, caracas, spanish.caracas, french.chad, chile, spanish.chile, conakry, costarica, spanish.costarica, costarica, cotonou, dakar, french.dakar, damascus, denmark, dhaka, djibouti, dushanbe, russian.dushanbe, tajik.dushanbe, ecuador, spanish.ecuador, egypt, eritrea, estonia, estonian.estonia, russian.estonia, ethiopia, finland, freetown, georgetown, georgia, georgian.georgia, ghana, guatemala, spanish.guatemala, french.guinea, haiti, french.haiti, harare, havana, honduras, spanish.honduras, hungary, hungarian.hungary, iceland, iran, persian.iran, iraq, arabic.iraq, islamabad, israel, hebrew.israel, italy, italian.italy, jakarta, jordan, kabul, kazakhstan, kingston, kinshasa, kolonia, kuwait, laos, lebanon, libreville, libya, lilongwe, lima, luxembourg, macedonia, madrid, majuro, malabo, mali, malta, manila, maputo, maseru, mauritania, mauritius, minsk, moldova, mongolia, morocco, nairobi, nassau, ndjamena, nepal, newdelhi, niamey, nicaragua, nigeria, norway, oman, ouagadougou, palau, panama, paraguay, podgorica, portmoresby, portugal, praia, pristina, qatar, riga, latvian.riga, romania, rwanda, sansalvador, santodomingo, sarajevo, seoul, serbia, singapore, slovakia, slovenia, southsudan, srilanka, sudan, suriname, suva, swaziland, tanzania, thehague, tirana, togo, trinidad, tunisia, turkey, turkmenistan, ukraine, uruguay, uzbekistan, vilnius, windhoek, www, yaounde, yemen, zagreb from photos.state.gov ˢ - www.antananarivo, athens, azeri.azerbaijan, belize, belgium, dutch.belgium, bogota, spanish.bogota, bolivia, spanish.bolivia, french.brazzaville, brunei, ghana, dushanbe, french.guinea, harare, honduras, luxembourg, majuro, minsk, moscow, newdelhi, srilanka, sudan, suriname, tanzania, thehague, turkey, vatican, windhoek, yemen from photos.america.gov ˢ - azerbaijan, azeri.azerbaijan from s97095.gridserver.com ᵒ @@ -143,7 +143,7 @@ Fetch error: http://suva.usembassy.gov/ => https://suva.usembassy.gov/: (6, 'Cou ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -396,7 +396,7 @@ Fetch error: http://suva.usembassy.gov/ => https://suva.usembassy.gov/: (6, 'Cou - + https://www.usenetter.nl/: (60, 'SSL certif ^usenetter.nl: Mismatched --> - + @@ -18,7 +18,7 @@ Fetch error: http://usenetter.nl/ => https://www.usenetter.nl/: (60, 'SSL certif - + + + + + + diff --git a/src/chrome/content/rules/userstory.ru.xml b/src/chrome/content/rules/userstory.ru.xml index 59c63769eddc..909b36709067 100644 --- a/src/chrome/content/rules/userstory.ru.xml +++ b/src/chrome/content/rules/userstory.ru.xml @@ -50,7 +50,7 @@ shop.demo1.loko.office.userstory.ru ¹ ¹ mismatch ² refused --> - + diff --git a/src/chrome/content/rules/ust.hk.xml b/src/chrome/content/rules/ust.hk.xml deleted file mode 100644 index af2d9c641693..000000000000 --- a/src/chrome/content/rules/ust.hk.xml +++ /dev/null @@ -1,115 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/usyd.edu.au.xml b/src/chrome/content/rules/usyd.edu.au.xml index c1d79567b487..6f30439a3aad 100644 --- a/src/chrome/content/rules/usyd.edu.au.xml +++ b/src/chrome/content/rules/usyd.edu.au.xml @@ -57,7 +57,7 @@ Fetch error: http://www.alumniandfriends.usyd.edu.au/ => https://www.alumniandfr ˢ Secured by us --> - + @@ -86,7 +86,7 @@ Fetch error: http://www.alumniandfriends.usyd.edu.au/ => https://www.alumniandfr - + - + + + + + + + diff --git a/src/chrome/content/rules/valuate.com.xml b/src/chrome/content/rules/valuate.com.xml deleted file mode 100644 index 02dac98eede1..000000000000 --- a/src/chrome/content/rules/valuate.com.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/vanguard.xml b/src/chrome/content/rules/vanguard.xml index b1c6c6a2df19..b70b81c66463 100644 --- a/src/chrome/content/rules/vanguard.xml +++ b/src/chrome/content/rules/vanguard.xml @@ -4,9 +4,6 @@ - - - diff --git a/src/chrome/content/rules/variantweb.net.xml b/src/chrome/content/rules/variantweb.net.xml index a534c6ca265d..6187f6156fda 100644 --- a/src/chrome/content/rules/variantweb.net.xml +++ b/src/chrome/content/rules/variantweb.net.xml @@ -8,7 +8,7 @@ - + + + + + + + + + + + diff --git a/src/chrome/content/rules/vaultoro.com.xml b/src/chrome/content/rules/vaultoro.com.xml index 392eb68a869c..58e1e26ecbe1 100644 --- a/src/chrome/content/rules/vaultoro.com.xml +++ b/src/chrome/content/rules/vaultoro.com.xml @@ -17,7 +17,7 @@ - + + + + + + diff --git a/src/chrome/content/rules/vdvc.de.xml b/src/chrome/content/rules/vdvc.de.xml new file mode 100644 index 000000000000..e08938555fea --- /dev/null +++ b/src/chrome/content/rules/vdvc.de.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/vedomosti.ru-falsemixed.xml b/src/chrome/content/rules/vedomosti.ru-falsemixed.xml index 7e6e168b61ed..31d87608af84 100644 --- a/src/chrome/content/rules/vedomosti.ru-falsemixed.xml +++ b/src/chrome/content/rules/vedomosti.ru-falsemixed.xml @@ -7,7 +7,7 @@ - + - + - + + - - + + + + diff --git a/src/chrome/content/rules/vendini.com.xml b/src/chrome/content/rules/vendini.com.xml index cf026f25f8f5..59bedc328e2e 100644 --- a/src/chrome/content/rules/vendini.com.xml +++ b/src/chrome/content/rules/vendini.com.xml @@ -34,7 +34,7 @@ Non-2xx HTTP code: http://landing.vendini.com/rs/vendini/images/nav_bg.jpg (200) ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -75,7 +75,7 @@ Non-2xx HTTP code: http://landing.vendini.com/rs/vendini/images/nav_bg.jpg (200) - + - + - + https://static-business.veri - care.verizon.net --> - + diff --git a/src/chrome/content/rules/verseone.com.xml b/src/chrome/content/rules/verseone.com.xml index dd952c54f60a..e30550fa97b0 100644 --- a/src/chrome/content/rules/verseone.com.xml +++ b/src/chrome/content/rules/verseone.com.xml @@ -25,7 +25,7 @@ Fetch error: http://hc.verseone.com/ => https://www.howard-cottage.co.uk/: (60, ᵐ Mismatched --> - + @@ -39,7 +39,7 @@ Fetch error: http://hc.verseone.com/ => https://www.howard-cottage.co.uk/: (60, - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/versionista.com.xml b/src/chrome/content/rules/versionista.com.xml index 801d46e076b5..773b61cbffca 100644 --- a/src/chrome/content/rules/versionista.com.xml +++ b/src/chrome/content/rules/versionista.com.xml @@ -11,7 +11,7 @@ - + - + https://vevent.com/: (6, 'Could not resolve h ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -22,7 +22,7 @@ Fetch error: http://vevent.com/ => https://vevent.com/: (6, 'Could not resolve h --> - + - + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/vgtrk.com.xml b/src/chrome/content/rules/vgtrk.com.xml index f5a36abf584e..25341093598a 100644 --- a/src/chrome/content/rules/vgtrk.com.xml +++ b/src/chrome/content/rules/vgtrk.com.xml @@ -46,7 +46,7 @@ --> - + diff --git a/src/chrome/content/rules/vhffs.org.xml b/src/chrome/content/rules/vhffs.org.xml index c2070e894a55..07439a3bc28a 100644 --- a/src/chrome/content/rules/vhffs.org.xml +++ b/src/chrome/content/rules/vhffs.org.xml @@ -13,7 +13,7 @@ panel.vhffs.org ³ - + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/viceland.com.xml b/src/chrome/content/rules/viceland.com.xml index 2efe2fcda361..34d86a6e30d4 100644 --- a/src/chrome/content/rules/viceland.com.xml +++ b/src/chrome/content/rules/viceland.com.xml @@ -19,7 +19,7 @@ - + https://victoriaforms.com/ Non-2xx HTTP code: http://www.victoriaforms.com/ (200) => https://www.victoriaforms.com/ (403) --> - + - + - + + + + + + + + + + + diff --git a/src/chrome/content/rules/viewablemedia.net.xml b/src/chrome/content/rules/viewablemedia.net.xml index a2d516f67c05..4f740680c8cd 100644 --- a/src/chrome/content/rules/viewablemedia.net.xml +++ b/src/chrome/content/rules/viewablemedia.net.xml @@ -7,7 +7,7 @@ Fetch error: http://www.viewablemedia.net/ => https://www.viewablemedia.net/: (7 For other Visible Measures coverage, see Visible-Measures.xml. --> - + diff --git a/src/chrome/content/rules/viewsourceconf.org.xml b/src/chrome/content/rules/viewsourceconf.org.xml deleted file mode 100644 index ebde79898edf..000000000000 --- a/src/chrome/content/rules/viewsourceconf.org.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/virtmo.com.xml b/src/chrome/content/rules/virtmo.com.xml new file mode 100644 index 000000000000..3e6c5bb98303 --- /dev/null +++ b/src/chrome/content/rules/virtmo.com.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/virtualglobaltaskforce.com.xml b/src/chrome/content/rules/virtualglobaltaskforce.com.xml index 91ba54d7aa4a..754677d1c5dc 100644 --- a/src/chrome/content/rules/virtualglobaltaskforce.com.xml +++ b/src/chrome/content/rules/virtualglobaltaskforce.com.xml @@ -18,7 +18,7 @@ - + https://reportingvsn.visma.no/: (7 ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -43,7 +43,7 @@ Fetch error: http://reportingvsn.visma.no/ => https://reportingvsn.visma.no/: (7 - + - + + + + + + + + + diff --git a/src/chrome/content/rules/vitalsource.com.xml b/src/chrome/content/rules/vitalsource.com.xml index fd066138f2f4..5587a3729e30 100644 --- a/src/chrome/content/rules/vitalsource.com.xml +++ b/src/chrome/content/rules/vitalsource.com.xml @@ -25,7 +25,7 @@ - + https://www.vitrinepix.com.br/: (6, 'Could not resolve host: www.vitrinepix.com.br') -Fetch error: http://www.vitrinepix.com.br/ => https://www.vitrinepix.com.br/: (6, 'Could not resolve host: www.vitrinepix.com.br') - ---> - - - - - - diff --git a/src/chrome/content/rules/viz-info.de.xml b/src/chrome/content/rules/viz-info.de.xml deleted file mode 100644 index 8280c7ad908b..000000000000 --- a/src/chrome/content/rules/viz-info.de.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/vizzion.com.xml b/src/chrome/content/rules/vizzion.com.xml new file mode 100644 index 000000000000..811b1ac09f02 --- /dev/null +++ b/src/chrome/content/rules/vizzion.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/vkarpinsk.info.xml b/src/chrome/content/rules/vkarpinsk.info.xml deleted file mode 100644 index 048e0f322c1a..000000000000 --- a/src/chrome/content/rules/vkarpinsk.info.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/chrome/content/rules/vm.de.xml b/src/chrome/content/rules/vm.de.xml deleted file mode 100644 index f9154116259d..000000000000 --- a/src/chrome/content/rules/vm.de.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/vmxray.com.xml b/src/chrome/content/rules/vmxray.com.xml new file mode 100644 index 000000000000..dfedaa5ed723 --- /dev/null +++ b/src/chrome/content/rules/vmxray.com.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/vntsm.com.xml b/src/chrome/content/rules/vntsm.com.xml index 5f18e125108c..dda9cdbdb05b 100644 --- a/src/chrome/content/rules/vntsm.com.xml +++ b/src/chrome/content/rules/vntsm.com.xml @@ -23,7 +23,7 @@ - + diff --git a/src/chrome/content/rules/vnu.ru.xml b/src/chrome/content/rules/vnu.ru.xml index 4460a12822b0..7da2ccd0bb6e 100644 --- a/src/chrome/content/rules/vnu.ru.xml +++ b/src/chrome/content/rules/vnu.ru.xml @@ -8,7 +8,7 @@ www.vnu.ru mismatch equil.vnu.ru mismatch mail.vnu.ru mismatch --> - + diff --git a/src/chrome/content/rules/voa.gov.uk.xml b/src/chrome/content/rules/voa.gov.uk.xml index a79b0c696c05..84a02524e76a 100644 --- a/src/chrome/content/rules/voa.gov.uk.xml +++ b/src/chrome/content/rules/voa.gov.uk.xml @@ -48,7 +48,7 @@ --> - + - + - + - - - - \ No newline at end of file diff --git a/src/chrome/content/rules/vogogo.com.xml b/src/chrome/content/rules/vogogo.com.xml index aa880a72368e..cb66deccea6c 100644 --- a/src/chrome/content/rules/vogogo.com.xml +++ b/src/chrome/content/rules/vogogo.com.xml @@ -6,7 +6,7 @@ Fetch error: http://docs.vogogo.com/ => https://docs.vogogo.com/: (6, 'Could not Fetch error: http://interac.vogogo.com/ => https://interac.vogogo.com/: (6, 'Could not resolve host: interac.vogogo.com') --> - + @@ -14,7 +14,7 @@ Fetch error: http://interac.vogogo.com/ => https://interac.vogogo.com/: (6, 'Cou - + diff --git a/src/chrome/content/rules/void.gr.xml b/src/chrome/content/rules/void.gr.xml new file mode 100644 index 000000000000..a32eed542e44 --- /dev/null +++ b/src/chrome/content/rules/void.gr.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/voidlinux.eu.xml b/src/chrome/content/rules/voidlinux.eu.xml deleted file mode 100644 index 08810664581b..000000000000 --- a/src/chrome/content/rules/voidlinux.eu.xml +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/voidtools.com.xml b/src/chrome/content/rules/voidtools.com.xml index 43337dea0c65..a4b26d77b73f 100644 --- a/src/chrome/content/rules/voidtools.com.xml +++ b/src/chrome/content/rules/voidtools.com.xml @@ -4,8 +4,7 @@ - - + diff --git a/src/chrome/content/rules/voipuserportal.co.uk.xml b/src/chrome/content/rules/voipuserportal.co.uk.xml index f656c88ffd18..7e274680621d 100644 --- a/src/chrome/content/rules/voipuserportal.co.uk.xml +++ b/src/chrome/content/rules/voipuserportal.co.uk.xml @@ -13,7 +13,7 @@ ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -23,7 +23,7 @@ --> - + - + - + - + - + - - - - - - diff --git a/src/chrome/content/rules/vouchercloud.com.xml b/src/chrome/content/rules/vouchercloud.com.xml index e059937d0fbd..e9b9ef2e853a 100644 --- a/src/chrome/content/rules/vouchercloud.com.xml +++ b/src/chrome/content/rules/vouchercloud.com.xml @@ -27,7 +27,7 @@ Fetch error: http://media.vouchercloud.com/ => https://media.vouchercloud.com/: ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -49,7 +49,7 @@ Fetch error: http://media.vouchercloud.com/ => https://media.vouchercloud.com/: - + - + https://providence.voxmedia.com/: (7, 'Failed to connect to providence.voxmedia.com port 443: Connection timed out') - For rules covering more than resources, see Vox_Media.com.xml. - Note: platform is so as not to increase non-Tor - distinguishability, given that no pages are covered - and no mixed content secured. - + Non-functional hosts: + Connection timeout: + - providence.voxmedia.com --> - + - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/vpn.ac.xml b/src/chrome/content/rules/vpn.ac.xml index f8c8472bf7e1..5dc07e790c6e 100644 --- a/src/chrome/content/rules/vpn.ac.xml +++ b/src/chrome/content/rules/vpn.ac.xml @@ -28,6 +28,6 @@ - diff --git a/src/chrome/content/rules/vpn.asia.xml b/src/chrome/content/rules/vpn.asia.xml index 584d6dc9d88b..395bacd861ce 100644 --- a/src/chrome/content/rules/vpn.asia.xml +++ b/src/chrome/content/rules/vpn.asia.xml @@ -18,7 +18,7 @@ --> - + - + https://vrijstellingoldtimer.nl/ Fetch error: http://www.vrijstellingoldtimer.nl/ => https://www.vrijstellingoldtimer.nl/: (60, 'SSL certificate problem: certificate has expired') --> - + - - + diff --git a/src/chrome/content/rules/vs4.com.xml b/src/chrome/content/rules/vs4.com.xml index c2caa3ac30c7..3c678397ef04 100644 --- a/src/chrome/content/rules/vs4.com.xml +++ b/src/chrome/content/rules/vs4.com.xml @@ -28,7 +28,7 @@ --> - + - + diff --git a/src/chrome/content/rules/vulture.com.xml b/src/chrome/content/rules/vulture.com.xml new file mode 100644 index 000000000000..3dadca162ad3 --- /dev/null +++ b/src/chrome/content/rules/vulture.com.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/vxlabs.com.xml b/src/chrome/content/rules/vxlabs.com.xml index 6adda2fa4c45..ec09b023377e 100644 --- a/src/chrome/content/rules/vxlabs.com.xml +++ b/src/chrome/content/rules/vxlabs.com.xml @@ -4,7 +4,7 @@ - + - + - + diff --git a/src/chrome/content/rules/wag.com.xml b/src/chrome/content/rules/wag.com.xml index dc22191684b7..91444c72a051 100644 --- a/src/chrome/content/rules/wag.com.xml +++ b/src/chrome/content/rules/wag.com.xml @@ -34,9 +34,9 @@ - + - + + + + + + + + diff --git a/src/chrome/content/rules/wakefield.gov.uk.xml b/src/chrome/content/rules/wakefield.gov.uk.xml index 25d29aa34f22..1b7009d940ef 100644 --- a/src/chrome/content/rules/wakefield.gov.uk.xml +++ b/src/chrome/content/rules/wakefield.gov.uk.xml @@ -20,10 +20,11 @@ - aces * - consult ᵐ + - eforms (timeout) - mapping ᶜ - observatory ᵐ - * ($|\?) 403s + * Refused ᶜ Server sends no certificate chain, see https://whatsmychaincert.com ᵐ Mismatched @@ -42,7 +43,7 @@ Mixed content: - Images, on: - + - eforms from www.wakefield.gov.uk ᵈ - observatory from observatory.bradford.gov.uk ᵐ - observatory from observatory.calderdale.gov.uk ᵐ @@ -57,46 +58,14 @@ --> - - - - - - - - - - - - - - - - - - - - - - - - - - + diff --git a/src/chrome/content/rules/wald0.com.xml b/src/chrome/content/rules/wald0.com.xml index 05a9d53f9916..05fe4d3db63a 100644 --- a/src/chrome/content/rules/wald0.com.xml +++ b/src/chrome/content/rules/wald0.com.xml @@ -4,7 +4,7 @@ - + + + + + + + + + + + diff --git a/src/chrome/content/rules/walkit.xml b/src/chrome/content/rules/walkit.xml deleted file mode 100644 index 8c476acb45fc..000000000000 --- a/src/chrome/content/rules/walkit.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/walla.co.il.xml b/src/chrome/content/rules/walla.co.il.xml index c36137395446..dcd7be5f7a5d 100644 --- a/src/chrome/content/rules/walla.co.il.xml +++ b/src/chrome/content/rules/walla.co.il.xml @@ -34,7 +34,7 @@ --> - + - + - + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/wao.gov.uk.xml b/src/chrome/content/rules/wao.gov.uk.xml index 69e0b7313ba6..72b82c50be67 100644 --- a/src/chrome/content/rules/wao.gov.uk.xml +++ b/src/chrome/content/rules/wao.gov.uk.xml @@ -21,7 +21,7 @@ Fetch error: http://email.wao.gov.uk/ => https://email.wao.gov.uk/: (28, 'Connec ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -32,7 +32,7 @@ Fetch error: http://email.wao.gov.uk/ => https://email.wao.gov.uk/: (28, 'Connec --> - + - + - + diff --git a/src/chrome/content/rules/warwickdc.gov.uk.xml b/src/chrome/content/rules/warwickdc.gov.uk.xml index d0b27bafc35c..1e006c92f96b 100644 --- a/src/chrome/content/rules/warwickdc.gov.uk.xml +++ b/src/chrome/content/rules/warwickdc.gov.uk.xml @@ -69,8 +69,8 @@ - - + + - + + + + + + + + + + diff --git a/src/chrome/content/rules/wastereduction.gov.hk.xml b/src/chrome/content/rules/wastereduction.gov.hk.xml new file mode 100644 index 000000000000..ff7506967753 --- /dev/null +++ b/src/chrome/content/rules/wastereduction.gov.hk.xml @@ -0,0 +1,18 @@ + + + + + + + + + + diff --git a/src/chrome/content/rules/watchcurbyourenthusiasm.com.xml b/src/chrome/content/rules/watchcurbyourenthusiasm.com.xml new file mode 100644 index 000000000000..e95f39240aee --- /dev/null +++ b/src/chrome/content/rules/watchcurbyourenthusiasm.com.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/waterfall.com.xml b/src/chrome/content/rules/waterfall.com.xml index b3378e6dd278..b9e6ed10981e 100644 --- a/src/chrome/content/rules/waterfall.com.xml +++ b/src/chrome/content/rules/waterfall.com.xml @@ -19,7 +19,7 @@ - + - - + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/waverly.gov.uk.xml b/src/chrome/content/rules/waverly.gov.uk.xml index ab3392d581e2..abd90b6fde27 100644 --- a/src/chrome/content/rules/waverly.gov.uk.xml +++ b/src/chrome/content/rules/waverly.gov.uk.xml @@ -49,7 +49,7 @@ Fetch error: http://www.waverly.gov.uk/ => https://www.waverly.gov.uk/: (6, 'Cou ᵐ Not secured by us <= mismatched --> - + @@ -66,8 +66,8 @@ Fetch error: http://www.waverly.gov.uk/ => https://www.waverly.gov.uk/: (6, 'Cou - - + + - - - - - - - - - - diff --git a/src/chrome/content/rules/waywire.com.xml b/src/chrome/content/rules/waywire.com.xml deleted file mode 100644 index 4c3f0020475f..000000000000 --- a/src/chrome/content/rules/waywire.com.xml +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - diff --git a/src/chrome/content/rules/waz.de.xml b/src/chrome/content/rules/waz.de.xml new file mode 100644 index 000000000000..34658e7b252f --- /dev/null +++ b/src/chrome/content/rules/waz.de.xml @@ -0,0 +1,42 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/wbond.xml b/src/chrome/content/rules/wbond.xml index 676f851f4b4a..504667ddfe0a 100644 --- a/src/chrome/content/rules/wbond.xml +++ b/src/chrome/content/rules/wbond.xml @@ -2,4 +2,4 @@ - \ No newline at end of file + diff --git a/src/chrome/content/rules/wclc.com.xml b/src/chrome/content/rules/wclc.com.xml new file mode 100644 index 000000000000..e3d5c260a311 --- /dev/null +++ b/src/chrome/content/rules/wclc.com.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/wealden.gov.uk.xml b/src/chrome/content/rules/wealden.gov.uk.xml index 60561ba5dbc1..b690da27f97f 100644 --- a/src/chrome/content/rules/wealden.gov.uk.xml +++ b/src/chrome/content/rules/wealden.gov.uk.xml @@ -81,7 +81,7 @@ --> - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/webcaster.pro.xml b/src/chrome/content/rules/webcaster.pro.xml index adfe15dd78bd..4f793d7c814b 100644 --- a/src/chrome/content/rules/webcaster.pro.xml +++ b/src/chrome/content/rules/webcaster.pro.xml @@ -9,6 +9,7 @@ + @@ -17,15 +18,9 @@ + - - - - - - + diff --git a/src/chrome/content/rules/webenrol.com.xml b/src/chrome/content/rules/webenrol.com.xml index 15e9a278c856..2c69255b6cb0 100644 --- a/src/chrome/content/rules/webenrol.com.xml +++ b/src/chrome/content/rules/webenrol.com.xml @@ -22,7 +22,7 @@ --> - + - + - - - - - - - diff --git a/src/chrome/content/rules/webm.red.xml b/src/chrome/content/rules/webm.red.xml index 884759b4814d..f2b69f560d74 100644 --- a/src/chrome/content/rules/webm.red.xml +++ b/src/chrome/content/rules/webm.red.xml @@ -24,7 +24,7 @@ --> - + - - + + + + + + + + + diff --git a/src/chrome/content/rules/websetnet.com.xml b/src/chrome/content/rules/websetnet.com.xml deleted file mode 100644 index 413ce2267697..000000000000 --- a/src/chrome/content/rules/websetnet.com.xml +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/weburg.me.xml b/src/chrome/content/rules/weburg.me.xml index a5f754c22d6d..3dc350ab79f6 100644 --- a/src/chrome/content/rules/weburg.me.xml +++ b/src/chrome/content/rules/weburg.me.xml @@ -11,11 +11,10 @@ passport.weburg.net mismatch - + - - + diff --git a/src/chrome/content/rules/wecamgirls.com.xml b/src/chrome/content/rules/wecamgirls.com.xml index d8fda87f4122..50624c4073ea 100644 --- a/src/chrome/content/rules/wecamgirls.com.xml +++ b/src/chrome/content/rules/wecamgirls.com.xml @@ -16,7 +16,7 @@ --> - + - + - + - + - + https://jobs.wellcome.ac.uk/: (28, ' - Images on thecrunch from $self --> - + @@ -101,7 +101,7 @@ Fetch error: http://jobs.wellcome.ac.uk/ => https://jobs.wellcome.ac.uk/: (28, ' - + - + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/werkema.com.xml b/src/chrome/content/rules/werkema.com.xml new file mode 100644 index 000000000000..6ff3537d35ad --- /dev/null +++ b/src/chrome/content/rules/werkema.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/west-norfolk.gov.uk.xml b/src/chrome/content/rules/west-norfolk.gov.uk.xml index f91c728a9a4a..6536639354c7 100644 --- a/src/chrome/content/rules/west-norfolk.gov.uk.xml +++ b/src/chrome/content/rules/west-norfolk.gov.uk.xml @@ -56,7 +56,7 @@ --> - + - - + - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/westlancs.gov.uk.xml b/src/chrome/content/rules/westlancs.gov.uk.xml index a4cf559bc3a6..7dd6f66b2634 100644 --- a/src/chrome/content/rules/westlancs.gov.uk.xml +++ b/src/chrome/content/rules/westlancs.gov.uk.xml @@ -43,7 +43,7 @@ - + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/wh0rd.org.xml b/src/chrome/content/rules/wh0rd.org.xml index fe546093b2cc..ba623c0ed8a5 100644 --- a/src/chrome/content/rules/wh0rd.org.xml +++ b/src/chrome/content/rules/wh0rd.org.xml @@ -4,7 +4,7 @@ - + - + + - - - - + diff --git a/src/chrome/content/rules/whatsappbrand.com.xml b/src/chrome/content/rules/whatsappbrand.com.xml index 042a5fe475f9..f2a5df792c65 100644 --- a/src/chrome/content/rules/whatsappbrand.com.xml +++ b/src/chrome/content/rules/whatsappbrand.com.xml @@ -1,14 +1,10 @@ - - + - - - - - diff --git a/src/chrome/content/rules/whitehatters.academy.xml b/src/chrome/content/rules/whitehatters.academy.xml index b31b9151164e..e8f98f6f58c6 100644 --- a/src/chrome/content/rules/whitehatters.academy.xml +++ b/src/chrome/content/rules/whitehatters.academy.xml @@ -5,14 +5,14 @@ Fetch error: http://whitehatters.academy/ => https://whitehatters.academy/: (60, Fetch error: http://www.whitehatters.academy/ => https://www.whitehatters.academy/: (60, 'SSL certificate problem: certificate has expired') --> - + - + - + - + - + - + + + + + + diff --git a/src/chrome/content/rules/whyopencomputing.xml b/src/chrome/content/rules/whyopencomputing.xml index 20fec293520d..f89b21fb44ad 100644 --- a/src/chrome/content/rules/whyopencomputing.xml +++ b/src/chrome/content/rules/whyopencomputing.xml @@ -5,7 +5,7 @@ Fetch error: http://why-opencomputing.com/ => https://why-opencomputing.com/: (5 Fetch error: http://www.why-opencomputing.com/ => https://www.why-opencomputing.com/: (51, "SSL: no alternative certificate subject name matches target host name 'www.why-opencomputing.com'") --> - + diff --git a/src/chrome/content/rules/wi-fi.hk.xml b/src/chrome/content/rules/wi-fi.hk.xml new file mode 100644 index 000000000000..06c1efb3a768 --- /dev/null +++ b/src/chrome/content/rules/wi-fi.hk.xml @@ -0,0 +1,17 @@ + + + + + + + diff --git a/src/chrome/content/rules/widevine.com.xml b/src/chrome/content/rules/widevine.com.xml new file mode 100644 index 000000000000..08d21362e6a9 --- /dev/null +++ b/src/chrome/content/rules/widevine.com.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/widgit-online.com.xml b/src/chrome/content/rules/widgit-online.com.xml index 7ee34b545c41..eed247e06198 100644 --- a/src/chrome/content/rules/widgit-online.com.xml +++ b/src/chrome/content/rules/widgit-online.com.xml @@ -9,7 +9,7 @@ - + - + - + - + + + + + + + diff --git a/src/chrome/content/rules/wikidot.com.xml b/src/chrome/content/rules/wikidot.com.xml new file mode 100644 index 000000000000..aec74e9bcdfd --- /dev/null +++ b/src/chrome/content/rules/wikidot.com.xml @@ -0,0 +1,55 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/wikipediocracy.com.xml b/src/chrome/content/rules/wikipediocracy.com.xml new file mode 100644 index 000000000000..7b01a93b8daa --- /dev/null +++ b/src/chrome/content/rules/wikipediocracy.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/wilhelmtux.ch.xml b/src/chrome/content/rules/wilhelmtux.ch.xml index 3b2a5d5cb87b..3f04b42f29d9 100644 --- a/src/chrome/content/rules/wilhelmtux.ch.xml +++ b/src/chrome/content/rules/wilhelmtux.ch.xml @@ -5,7 +5,7 @@ - + - + - + diff --git a/src/chrome/content/rules/wiltsmessaging.co.uk.xml b/src/chrome/content/rules/wiltsmessaging.co.uk.xml index 6a5a687ceef8..57d7f940632b 100644 --- a/src/chrome/content/rules/wiltsmessaging.co.uk.xml +++ b/src/chrome/content/rules/wiltsmessaging.co.uk.xml @@ -4,7 +4,7 @@ - + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/windstar.com.xml b/src/chrome/content/rules/windstar.com.xml index 51ee49ab4c57..a20671826336 100644 --- a/src/chrome/content/rules/windstar.com.xml +++ b/src/chrome/content/rules/windstar.com.xml @@ -15,7 +15,7 @@ --> - + + + + + + + + diff --git a/src/chrome/content/rules/wipe.de.xml b/src/chrome/content/rules/wipe.de.xml index 8ecebb3de6da..1fd96ce9a331 100644 --- a/src/chrome/content/rules/wipe.de.xml +++ b/src/chrome/content/rules/wipe.de.xml @@ -1,23 +1,23 @@ - - + diff --git a/src/chrome/content/rules/wired.co.uk.xml b/src/chrome/content/rules/wired.co.uk.xml index 32c56bf50cc3..60797809c4e7 100644 --- a/src/chrome/content/rules/wired.co.uk.xml +++ b/src/chrome/content/rules/wired.co.uk.xml @@ -28,7 +28,7 @@ - + diff --git a/src/chrome/content/rules/wiremask.eu.xml b/src/chrome/content/rules/wiremask.eu.xml index 0a7cab532340..eec4e0bd5ddb 100644 --- a/src/chrome/content/rules/wiremask.eu.xml +++ b/src/chrome/content/rules/wiremask.eu.xml @@ -4,7 +4,7 @@ - + - + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/wku.edu.xml b/src/chrome/content/rules/wku.edu.xml index 344b8208d848..62a2aa261f49 100644 --- a/src/chrome/content/rules/wku.edu.xml +++ b/src/chrome/content/rules/wku.edu.xml @@ -60,14 +60,14 @@ Fetch error: http://ecas-sso.wku.edu/ => https://ecas-sso.wku.edu/: (6, 'Could n - Image on (www.)? from img.youtube.com ˢ - Bugs, on: - + - alumni from www.facebook.com ˢ - alumni from www.intagme.com ˢ - + ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -117,7 +117,7 @@ Fetch error: http://ecas-sso.wku.edu/ => https://ecas-sso.wku.edu/: (6, 'Could n - + - + - + - + https://www.wokingham.gov. ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -103,7 +103,7 @@ Fetch error: http://www.wokingham.gov.uk/contacts/ => https://www.wokingham.gov. - + + + + + + + + diff --git a/src/chrome/content/rules/wolfssl.com.xml b/src/chrome/content/rules/wolfssl.com.xml new file mode 100644 index 000000000000..71b73f39af0b --- /dev/null +++ b/src/chrome/content/rules/wolfssl.com.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/src/chrome/content/rules/wondershare.com-falsemixed.xml b/src/chrome/content/rules/wondershare.com-falsemixed.xml index 1751891c8877..9a615a8e507d 100644 --- a/src/chrome/content/rules/wondershare.com-falsemixed.xml +++ b/src/chrome/content/rules/wondershare.com-falsemixed.xml @@ -10,7 +10,7 @@ - + - + - + - - - - - - - - - - - diff --git a/src/chrome/content/rules/worcestershire.gov.uk.xml b/src/chrome/content/rules/worcestershire.gov.uk.xml index 278f2c27c69e..f7c35a47d023 100644 --- a/src/chrome/content/rules/worcestershire.gov.uk.xml +++ b/src/chrome/content/rules/worcestershire.gov.uk.xml @@ -1,79 +1,23 @@ - - - - - + + - - + + - - - - - - - - - - - - - - - - - + diff --git a/src/chrome/content/rules/word.camera.xml b/src/chrome/content/rules/word.camera.xml index d331e77ee368..7ef0c50b4a3a 100644 --- a/src/chrome/content/rules/word.camera.xml +++ b/src/chrome/content/rules/word.camera.xml @@ -5,7 +5,7 @@ Fetch error: http://word.camera/ => https://word.camera/: (28, 'Connection timed Fetch error: http://www.word.camera/ => https://word.camera/: (28, 'Connection timed out after 20000 milliseconds') --> - + diff --git a/src/chrome/content/rules/wordreference.com.xml b/src/chrome/content/rules/wordreference.com.xml new file mode 100644 index 000000000000..78f278e4c536 --- /dev/null +++ b/src/chrome/content/rules/wordreference.com.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/workingatbooking.com.xml b/src/chrome/content/rules/workingatbooking.com.xml index 47d7ed5d1fcf..03b12024ec23 100644 --- a/src/chrome/content/rules/workingatbooking.com.xml +++ b/src/chrome/content/rules/workingatbooking.com.xml @@ -9,7 +9,7 @@ - + - + - + - + - + + + + + + + + + + + diff --git a/src/chrome/content/rules/worldofspectrum.org.xml b/src/chrome/content/rules/worldofspectrum.org.xml new file mode 100644 index 000000000000..6d50695cef7e --- /dev/null +++ b/src/chrome/content/rules/worldofspectrum.org.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/worldsoffun.com.xml b/src/chrome/content/rules/worldsoffun.com.xml new file mode 100644 index 000000000000..f619bfda8a7c --- /dev/null +++ b/src/chrome/content/rules/worldsoffun.com.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/wpa_supplicant.xml b/src/chrome/content/rules/wpa_supplicant.xml index 923b6e7519d5..a8da8ab7af8a 100644 --- a/src/chrome/content/rules/wpa_supplicant.xml +++ b/src/chrome/content/rules/wpa_supplicant.xml @@ -2,7 +2,6 @@ - + diff --git a/src/chrome/content/rules/wpimg.pl.xml b/src/chrome/content/rules/wpimg.pl.xml index 7fc3a6bba60d..e82315df938c 100644 --- a/src/chrome/content/rules/wpimg.pl.xml +++ b/src/chrome/content/rules/wpimg.pl.xml @@ -34,7 +34,7 @@ - + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/wrelease.nl.xml b/src/chrome/content/rules/wrelease.nl.xml deleted file mode 100644 index 91ab8968e63f..000000000000 --- a/src/chrome/content/rules/wrelease.nl.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/writtenchinese.com.xml b/src/chrome/content/rules/writtenchinese.com.xml index b6e8e3a628d8..761b5493a271 100644 --- a/src/chrome/content/rules/writtenchinese.com.xml +++ b/src/chrome/content/rules/writtenchinese.com.xml @@ -36,7 +36,7 @@ --> - + https://portfolio.wsj.com/: (7, 'Failed to connect to portfolio.wsj.com port 443: Connection refused') - - For other News Corporation coverage, see News-Corporation.xml. - - - CDN buckets: - - - blogs.wsj.com.edgesuite.net - - fonts.wsj.com.edgesuite.net - - - Nonfunctional hosts in *wsj.com: - - - blogs ʰ - - cfonetwork ʳ - - cionetwork ʳ - - converge ³ - - deloitte ³ - - dj ᵈ - - europesubs ⁴ - - graphics ⁵ - - graphicsweb ⁵ - - guides ³ - - help ʰ - - info ʳ - - jp ⁴ - - midmarketsummit ³ - - online ʰ - - peac ʳ - - professor ³ - - projects ⁵ - - quotes ³ - - realtime ʰ - - (www.)?stepahead ⁴ - - admin.stream ³ - - student ³ - - subscription ³ - - synccontent - - womenin ʳ - - wsjdconference ᵈ - - wsjdlive ʳ - - ³ 503 - ⁴ 404 - ⁵ 504 - ᵈ Dropped - ʰ Redirects to http - ʳ Refused - - - Problematic hosts in *wsj.com: - - - classified ᶜ - - classifieds ᶜ - - cn ᵐ - - m.cn ᵐ - - djx ᶜ - - indo ᵐ - - m.jp ᵐ - - kr ᵐ - - live ᵐ - - m ᵐ - - now ᵐ - - projoin.origin ᵐ - - stream ᵐ - - www.subscribe ᵗ - - topics ᵐ - - uk ᵐ - - ore.www ᵐ - - vir.www ᵐ - - ᶜ Server sends no certificate chain, see https://whatsmychaincert.com - ᵐ Mismatched - ᵗ Timeout - - - These altnames do not exist: - - - ssl.wsj.com - - - Insecure cookies are set for these domains and hosts: ᶜ - - - .wsj.com - - blue-store.wsj.com - - customercenter.wsj.com - - .customercenter.wsj.com - - services.wsj.com - - store.wsj.com - - ᶜ See https://owasp.org/index.php/SecureFlag - - - Mixed content: - - - css on buy from fonts.wsj.net ˢ - - Image on customercenter from s2.wsj.net ˢ - - Bug on classified, classifieds from dowjones.122.2o7.net ˢ - - ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ - ---> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/www.browserscope.org.xml b/src/chrome/content/rules/www.browserscope.org.xml deleted file mode 100644 index 34bc6439f7fe..000000000000 --- a/src/chrome/content/rules/www.browserscope.org.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/chrome/content/rules/www.elcorteingles.es.xml b/src/chrome/content/rules/www.elcorteingles.es.xml deleted file mode 100644 index b630c1969553..000000000000 --- a/src/chrome/content/rules/www.elcorteingles.es.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/chrome/content/rules/www.inet.no.xml b/src/chrome/content/rules/www.inet.no.xml new file mode 100644 index 000000000000..de4eed1ddf2b --- /dev/null +++ b/src/chrome/content/rules/www.inet.no.xml @@ -0,0 +1,8 @@ + + + + + diff --git a/src/chrome/content/rules/www.movistar.es.xml b/src/chrome/content/rules/www.movistar.es.xml deleted file mode 100644 index abb1c22d2fe0..000000000000 --- a/src/chrome/content/rules/www.movistar.es.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/chrome/content/rules/www.tecgraf.puc-rio.br.xml b/src/chrome/content/rules/www.tecgraf.puc-rio.br.xml new file mode 100644 index 000000000000..fb696f136348 --- /dev/null +++ b/src/chrome/content/rules/www.tecgraf.puc-rio.br.xml @@ -0,0 +1,4 @@ + + + + diff --git a/src/chrome/content/rules/wwwpromoter.com.xml b/src/chrome/content/rules/wwwpromoter.com.xml index d0dec6a0edee..168b40c61ff6 100644 --- a/src/chrome/content/rules/wwwpromoter.com.xml +++ b/src/chrome/content/rules/wwwpromoter.com.xml @@ -26,7 +26,7 @@ - + - + - + - - + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/x-pay.cc.xml b/src/chrome/content/rules/x-pay.cc.xml deleted file mode 100644 index 4520c6d6bbba..000000000000 --- a/src/chrome/content/rules/x-pay.cc.xml +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - diff --git a/src/chrome/content/rules/x-plarium.com.xml b/src/chrome/content/rules/x-plarium.com.xml index e3a87994be0d..ad48583e069c 100644 --- a/src/chrome/content/rules/x-plarium.com.xml +++ b/src/chrome/content/rules/x-plarium.com.xml @@ -7,7 +7,7 @@ - + + + + + + + diff --git a/src/chrome/content/rules/x.ai.xml b/src/chrome/content/rules/x.ai.xml index 31509b98dce3..80404cc5d68a 100644 --- a/src/chrome/content/rules/x.ai.xml +++ b/src/chrome/content/rules/x.ai.xml @@ -1,7 +1,14 @@ + + + - + + + diff --git a/src/chrome/content/rules/x360ce.com.xml b/src/chrome/content/rules/x360ce.com.xml new file mode 100644 index 000000000000..32569540740b --- /dev/null +++ b/src/chrome/content/rules/x360ce.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/xael.org.xml b/src/chrome/content/rules/xael.org.xml new file mode 100644 index 000000000000..4d4237822b00 --- /dev/null +++ b/src/chrome/content/rules/xael.org.xml @@ -0,0 +1,24 @@ + + + + + + + + diff --git a/src/chrome/content/rules/xanmod.org.xml b/src/chrome/content/rules/xanmod.org.xml index 34377ab0b9a2..5fdb7857dad2 100644 --- a/src/chrome/content/rules/xanmod.org.xml +++ b/src/chrome/content/rules/xanmod.org.xml @@ -16,7 +16,7 @@ - + + + + + + + + diff --git a/src/chrome/content/rules/xchange.cc.xml b/src/chrome/content/rules/xchange.cc.xml index 05a788f82c44..1c2afa60b4c2 100644 --- a/src/chrome/content/rules/xchange.cc.xml +++ b/src/chrome/content/rules/xchange.cc.xml @@ -6,7 +6,7 @@ Fetch error: http://www.xchange.cc/ => https://www.xchange.cc/: (28, 'Operation Fetch error: http://support.xchange.cc/ => https://support.xchange.cc/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + diff --git a/src/chrome/content/rules/xchange.is.xml b/src/chrome/content/rules/xchange.is.xml index 6b219601c4e8..a639a48bdd7f 100644 --- a/src/chrome/content/rules/xchange.is.xml +++ b/src/chrome/content/rules/xchange.is.xml @@ -5,7 +5,7 @@ Fetch error: http://xchange.is/ => https://xchange.is/: (60, 'SSL certificate pr Fetch error: http://www.xchange.is/ => https://www.xchange.is/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + diff --git a/src/chrome/content/rules/xen.org.xml b/src/chrome/content/rules/xen.org.xml index 44ff9e8da1a4..0c3eacbfcfbf 100644 --- a/src/chrome/content/rules/xen.org.xml +++ b/src/chrome/content/rules/xen.org.xml @@ -19,7 +19,7 @@ - + https://piwik.xiala.net/: (60, 'SSL cert (www.)?xiala.net: expired --> - + - + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/xlove.com.xml b/src/chrome/content/rules/xlove.com.xml index f885240960f3..ca73f32e05d4 100644 --- a/src/chrome/content/rules/xlove.com.xml +++ b/src/chrome/content/rules/xlove.com.xml @@ -12,7 +12,7 @@ Fetch error: http://www.xlove.com/ => https://www.xlove.com/: (51, "SSL: no alte ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -22,7 +22,7 @@ Fetch error: http://www.xlove.com/ => https://www.xlove.com/: (51, "SSL: no alte --> - + + diff --git a/src/chrome/content/rules/xpda.com.xml b/src/chrome/content/rules/xpda.com.xml deleted file mode 100644 index e13aa39b8852..000000000000 --- a/src/chrome/content/rules/xpda.com.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - diff --git a/src/chrome/content/rules/xrllc.com.xml b/src/chrome/content/rules/xrllc.com.xml index 3cb2637ef25b..a132e1f5cd57 100644 --- a/src/chrome/content/rules/xrllc.com.xml +++ b/src/chrome/content/rules/xrllc.com.xml @@ -1,17 +1,9 @@ - - + - + - + @@ -21,8 +21,8 @@ - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/xxxhubba.com.xml b/src/chrome/content/rules/xxxhubba.com.xml index 66adb8a7414c..41b57572882e 100644 --- a/src/chrome/content/rules/xxxhubba.com.xml +++ b/src/chrome/content/rules/xxxhubba.com.xml @@ -30,7 +30,7 @@ - + https://srv44c.xxxyours.com/: (6, 'C ᶜ See https://owasp.org/index.php/SecureFlag --> - + @@ -30,7 +30,7 @@ Fetch error: http://srv44c.xxxyours.com/ => https://srv44c.xxxyours.com/: (6, 'C - + - - - - - + + + + diff --git a/src/chrome/content/rules/yadg.cc.xml b/src/chrome/content/rules/yadg.cc.xml index 5537f660ac88..8031ac0738b4 100644 --- a/src/chrome/content/rules/yadg.cc.xml +++ b/src/chrome/content/rules/yadg.cc.xml @@ -1,6 +1,6 @@ - + diff --git a/src/chrome/content/rules/yapx.ru.xml b/src/chrome/content/rules/yapx.ru.xml new file mode 100644 index 000000000000..686a0e2a3df1 --- /dev/null +++ b/src/chrome/content/rules/yapx.ru.xml @@ -0,0 +1,13 @@ + + + + + + + + diff --git a/src/chrome/content/rules/yarnpkg.com.xml b/src/chrome/content/rules/yarnpkg.com.xml new file mode 100644 index 000000000000..1689621f02ff --- /dev/null +++ b/src/chrome/content/rules/yarnpkg.com.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/yartv.ru.xml b/src/chrome/content/rules/yartv.ru.xml index f2c9b1d0a1cb..b0ffce84053c 100644 --- a/src/chrome/content/rules/yartv.ru.xml +++ b/src/chrome/content/rules/yartv.ru.xml @@ -6,7 +6,7 @@ Fetch error: http://www.yartv.ru/ => https://www.yartv.ru/: (60, 'SSL certificat Fetch error: http://cabinet.yartv.ru/ => https://cabinet.yartv.ru/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + diff --git a/src/chrome/content/rules/yash.osdn.jp.xml b/src/chrome/content/rules/yash.osdn.jp.xml new file mode 100644 index 000000000000..b6a55b46b26d --- /dev/null +++ b/src/chrome/content/rules/yash.osdn.jp.xml @@ -0,0 +1,5 @@ + + + + + diff --git a/src/chrome/content/rules/ycbi.org.xml b/src/chrome/content/rules/ycbi.org.xml index ab420af220da..150294cc2c82 100644 --- a/src/chrome/content/rules/ycbi.org.xml +++ b/src/chrome/content/rules/ycbi.org.xml @@ -6,12 +6,12 @@ Fetch error: http://ycbi.org/ => https://ycbi.org/: (60, 'SSL certificate proble www.ycbi.org: Differs from http & ^ycbi.org --> - + - + https://st.yell.com/: (6, 'Could not resolve ˢ Secured by us --> - + @@ -76,7 +76,7 @@ Fetch error: http://st.yell.com/ => https://st.yell.com/: (6, 'Could not resolve - + - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/yelpblog.com.xml b/src/chrome/content/rules/yelpblog.com.xml index 03ddae2b5faa..5ea849160e51 100644 --- a/src/chrome/content/rules/yelpblog.com.xml +++ b/src/chrome/content/rules/yelpblog.com.xml @@ -8,7 +8,7 @@ - + - + https://yerkramas.org/: (51, "SSL: no alte Fetch error: http://www.yerkramas.org/ => https://www.yerkramas.org/: (51, "SSL: no alternative certificate subject name matches target host name 'www.yerkramas.org'") --> - + diff --git a/src/chrome/content/rules/yes.co.il.xml b/src/chrome/content/rules/yes.co.il.xml index dbce31e57b6e..57527796b093 100644 --- a/src/chrome/content/rules/yes.co.il.xml +++ b/src/chrome/content/rules/yes.co.il.xml @@ -41,7 +41,7 @@ - + + + + + + + + + + diff --git a/src/chrome/content/rules/yfrog.xml b/src/chrome/content/rules/yfrog.xml index cf015ae3e9f1..072380251a1c 100644 --- a/src/chrome/content/rules/yfrog.xml +++ b/src/chrome/content/rules/yfrog.xml @@ -14,7 +14,7 @@ Fetch error: http://www.yfrog.com/ => https://www.yfrog.com/: (28, 'Connection t * Secured by us --> - + diff --git a/src/chrome/content/rules/yikeweiqi.com.xml b/src/chrome/content/rules/yikeweiqi.com.xml new file mode 100644 index 000000000000..8b177ba86935 --- /dev/null +++ b/src/chrome/content/rules/yikeweiqi.com.xml @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/yilan.io.xml b/src/chrome/content/rules/yilan.io.xml deleted file mode 100644 index bcd9021ed9e6..000000000000 --- a/src/chrome/content/rules/yilan.io.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - diff --git a/src/chrome/content/rules/yiwutaro.com.xml b/src/chrome/content/rules/yiwutaro.com.xml new file mode 100644 index 000000000000..cf8a578927e5 --- /dev/null +++ b/src/chrome/content/rules/yiwutaro.com.xml @@ -0,0 +1,10 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/chrome/content/rules/ylilauta.xml b/src/chrome/content/rules/ylilauta.xml deleted file mode 100644 index 9388ea78ea9e..000000000000 --- a/src/chrome/content/rules/ylilauta.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/yoast.com.xml b/src/chrome/content/rules/yoast.com.xml deleted file mode 100644 index 8c12fff9e86a..000000000000 --- a/src/chrome/content/rules/yoast.com.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/yoogiscloset.com.xml b/src/chrome/content/rules/yoogiscloset.com.xml index 7ea82cb6f543..4838dbb31bfc 100644 --- a/src/chrome/content/rules/yoogiscloset.com.xml +++ b/src/chrome/content/rules/yoogiscloset.com.xml @@ -5,7 +5,7 @@ - + - + - - - - - - - - - - - - diff --git a/src/chrome/content/rules/youngstonewall.org.uk.xml b/src/chrome/content/rules/youngstonewall.org.uk.xml index 05636a84941d..95e9d98de777 100644 --- a/src/chrome/content/rules/youngstonewall.org.uk.xml +++ b/src/chrome/content/rules/youngstonewall.org.uk.xml @@ -4,7 +4,7 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/yourchoiceyourhome.org.uk.xml b/src/chrome/content/rules/yourchoiceyourhome.org.uk.xml index beb4b269938e..9da02b9e34ff 100644 --- a/src/chrome/content/rules/yourchoiceyourhome.org.uk.xml +++ b/src/chrome/content/rules/yourchoiceyourhome.org.uk.xml @@ -32,7 +32,7 @@ --> - + + + + + + + diff --git a/src/chrome/content/rules/yourpensionservice.org.uk.xml b/src/chrome/content/rules/yourpensionservice.org.uk.xml index 6f81e119bb17..3d61f18354e3 100644 --- a/src/chrome/content/rules/yourpensionservice.org.uk.xml +++ b/src/chrome/content/rules/yourpensionservice.org.uk.xml @@ -21,7 +21,7 @@ --> - + - - - - - diff --git a/src/chrome/content/rules/youth.cn.xml b/src/chrome/content/rules/youth.cn.xml new file mode 100644 index 000000000000..e12f19652176 --- /dev/null +++ b/src/chrome/content/rules/youth.cn.xml @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/youthscape.co.uk.xml b/src/chrome/content/rules/youthscape.co.uk.xml index 0816ffbbc966..8626d494de18 100644 --- a/src/chrome/content/rules/youthscape.co.uk.xml +++ b/src/chrome/content/rules/youthscape.co.uk.xml @@ -24,7 +24,7 @@ --> - + + + + + + + + + diff --git a/src/chrome/content/rules/yoyo.com.xml b/src/chrome/content/rules/yoyo.com.xml index f27c66ee9bb8..c3aca02fd12e 100644 --- a/src/chrome/content/rules/yoyo.com.xml +++ b/src/chrome/content/rules/yoyo.com.xml @@ -34,9 +34,9 @@ - + - + https://yoyogames.com/: (60, 'SSL certificate problem: unable to get local issuer certificate') --> - + diff --git a/src/chrome/content/rules/yp.ru.xml b/src/chrome/content/rules/yp.ru.xml index 9b1838dc4cbf..82b3c31cb3d2 100644 --- a/src/chrome/content/rules/yp.ru.xml +++ b/src/chrome/content/rules/yp.ru.xml @@ -4,7 +4,7 @@ Disabled by https-everywhere-checker because: Fetch error: http://yp.ru/ => https://yp.ru/: (60, 'SSL certificate problem: certificate has expired') --> - + diff --git a/src/chrome/content/rules/yr.no.xml b/src/chrome/content/rules/yr.no.xml index 10288e05fd8e..063a1d62dd0d 100644 --- a/src/chrome/content/rules/yr.no.xml +++ b/src/chrome/content/rules/yr.no.xml @@ -1,43 +1,37 @@ - + - - + --> - - - + diff --git a/src/chrome/content/rules/yuga.ru.xml b/src/chrome/content/rules/yuga.ru.xml index 76bf882d880b..a1a82fd8b4fd 100644 --- a/src/chrome/content/rules/yuga.ru.xml +++ b/src/chrome/content/rules/yuga.ru.xml @@ -9,7 +9,7 @@ biznes. mismatch iskra. mismatch fckuban. mismatch internet. mismatch--> - + diff --git a/src/chrome/content/rules/yuji.ne.jp.xml b/src/chrome/content/rules/yuji.ne.jp.xml new file mode 100644 index 000000000000..9ccaf13c06e9 --- /dev/null +++ b/src/chrome/content/rules/yuji.ne.jp.xml @@ -0,0 +1,10 @@ + + + + + + + + diff --git a/src/chrome/content/rules/yunaq.com.xml b/src/chrome/content/rules/yunaq.com.xml index 72941933a1fc..703e6a0e3ec6 100644 --- a/src/chrome/content/rules/yunaq.com.xml +++ b/src/chrome/content/rules/yunaq.com.xml @@ -10,6 +10,6 @@ - + diff --git a/src/chrome/content/rules/yupoo.com.xml b/src/chrome/content/rules/yupoo.com.xml index 260f6597b544..637fa2632563 100644 --- a/src/chrome/content/rules/yupoo.com.xml +++ b/src/chrome/content/rules/yupoo.com.xml @@ -13,8 +13,8 @@ - - + + diff --git a/src/chrome/content/rules/yuzusushisanmateo.com.xml b/src/chrome/content/rules/yuzusushisanmateo.com.xml new file mode 100644 index 000000000000..166ab3786514 --- /dev/null +++ b/src/chrome/content/rules/yuzusushisanmateo.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/yvt.jp.xml b/src/chrome/content/rules/yvt.jp.xml new file mode 100644 index 000000000000..bb9fa1f650af --- /dev/null +++ b/src/chrome/content/rules/yvt.jp.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/z.cash.xml b/src/chrome/content/rules/z.cash.xml index 49cfc291ca6d..75ef459acfed 100644 --- a/src/chrome/content/rules/z.cash.xml +++ b/src/chrome/content/rules/z.cash.xml @@ -7,7 +7,7 @@ - + + + + + + + + + diff --git a/src/chrome/content/rules/zaobao.com.xml b/src/chrome/content/rules/zaobao.com.xml new file mode 100644 index 000000000000..b843061ce498 --- /dev/null +++ b/src/chrome/content/rules/zaobao.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/zchat.com.xml b/src/chrome/content/rules/zchat.com.xml index 797974245531..285224556060 100644 --- a/src/chrome/content/rules/zchat.com.xml +++ b/src/chrome/content/rules/zchat.com.xml @@ -16,7 +16,7 @@ - + https://machtfaktorerde.zdf.de/: (6, 'Could not resolve host: machtfaktorerde.zdf.de') -Fetch error: http://mauerspecht.zdf.de/ => https://mauerspecht.zdf.de/: (6, 'Could not resolve host: mauerspecht.zdf.de') -Fetch error: http://lobbyradar.de/ => https://lobbyradar.de/: (60, 'SSL certificate problem: certificate has expired') -Fetch error: http://weihnachtsbaumspiel.tivi.de/ => https://weihnachtsbaumspiel.tivi.de/: (6, 'Could not resolve host: weihnachtsbaumspiel.tivi.de') + Invalid certificate: + - lobbyradar.de + - abenteuermako.tivi.de + - fehlersuche.spiel.tivi.de Mismatch: - - (www.)neo-magazin-royale.de - - (www.)zdfinfo.de - - (www.)zdfkultur.de - - (www.)zdfneo.de - - cl.zdf.de - cl.zdfsport.de - - m.heute.de - - m.zdf.de - - m.zdfsport.de - - podcast.heute.de - quartett.tivi.de - spiel.tivi.de - - tivi.zdf.de - - vr.tivi.de - - Refused: - - kinderhilfe.zdf.de No secure connection: - wohin.heute.de --> - + + + + - - + + - - - + + + + + + + + + + + + + + + - - - - - + + - - + + + + diff --git a/src/chrome/content/rules/zealdocs.org.xml b/src/chrome/content/rules/zealdocs.org.xml index 5f2008f7fb2d..54ed8d937d8b 100644 --- a/src/chrome/content/rules/zealdocs.org.xml +++ b/src/chrome/content/rules/zealdocs.org.xml @@ -5,7 +5,7 @@ - + - - - - - - - - - - - diff --git a/src/chrome/content/rules/zeranoe.com.xml b/src/chrome/content/rules/zeranoe.com.xml new file mode 100644 index 000000000000..983d833ceec2 --- /dev/null +++ b/src/chrome/content/rules/zeranoe.com.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/zeroanthropology.net.xml b/src/chrome/content/rules/zeroanthropology.net.xml index 9fa7a60b5d06..243fd72cf618 100644 --- a/src/chrome/content/rules/zeroanthropology.net.xml +++ b/src/chrome/content/rules/zeroanthropology.net.xml @@ -4,7 +4,7 @@ - + - - - - - diff --git a/src/chrome/content/rules/zeus-software.com.xml b/src/chrome/content/rules/zeus-software.com.xml new file mode 100644 index 000000000000..ff4bcb42d939 --- /dev/null +++ b/src/chrome/content/rules/zeus-software.com.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/zicguzoo.com.xml b/src/chrome/content/rules/zicguzoo.com.xml deleted file mode 100644 index c75bddbd48e8..000000000000 --- a/src/chrome/content/rules/zicguzoo.com.xml +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/zimuku.la.xml b/src/chrome/content/rules/zimuku.la.xml new file mode 100644 index 000000000000..265143e934b5 --- /dev/null +++ b/src/chrome/content/rules/zimuku.la.xml @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/chrome/content/rules/zipPay.com.au.xml b/src/chrome/content/rules/zipPay.com.au.xml new file mode 100644 index 000000000000..ab571c3d9aeb --- /dev/null +++ b/src/chrome/content/rules/zipPay.com.au.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/zli.ch.xml b/src/chrome/content/rules/zli.ch.xml new file mode 100644 index 000000000000..ec102234e2a4 --- /dev/null +++ b/src/chrome/content/rules/zli.ch.xml @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/chrome/content/rules/zlib.net.xml b/src/chrome/content/rules/zlib.net.xml new file mode 100644 index 000000000000..7fdb2e50cd61 --- /dev/null +++ b/src/chrome/content/rules/zlib.net.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/zmtcdn.com.xml b/src/chrome/content/rules/zmtcdn.com.xml index 6a4607832e9a..b76003a22f0d 100644 --- a/src/chrome/content/rules/zmtcdn.com.xml +++ b/src/chrome/content/rules/zmtcdn.com.xml @@ -7,7 +7,7 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/zongheng.com.xml b/src/chrome/content/rules/zongheng.com.xml index 338b18890649..25175dcc898e 100644 --- a/src/chrome/content/rules/zongheng.com.xml +++ b/src/chrome/content/rules/zongheng.com.xml @@ -38,7 +38,7 @@ Fetch error: http://www.zongheng.com/ => https://www.zongheng.com/: (35, 'error: ˢ Secured by us, see https://www.paulirish.com/2010/the-protocol-relative-url/ --> - + @@ -52,8 +52,8 @@ Fetch error: http://www.zongheng.com/ => https://www.zongheng.com/: (35, 'error: - - + + + + + + + diff --git a/src/chrome/content/rules/zoo-frankfurt.de.xml b/src/chrome/content/rules/zoo-frankfurt.de.xml new file mode 100644 index 000000000000..5df4d0d5dbe7 --- /dev/null +++ b/src/chrome/content/rules/zoo-frankfurt.de.xml @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/chrome/content/rules/zoocdn.com.xml b/src/chrome/content/rules/zoocdn.com.xml index 4a8e1a03a1d8..f327635e24a6 100644 --- a/src/chrome/content/rules/zoocdn.com.xml +++ b/src/chrome/content/rules/zoocdn.com.xml @@ -7,11 +7,11 @@ - + - + - - - - - - - - - - - - - - - - - diff --git a/src/chrome/content/rules/zoonegaramalaysia.my.xml b/src/chrome/content/rules/zoonegaramalaysia.my.xml new file mode 100644 index 000000000000..9fd668018c01 --- /dev/null +++ b/src/chrome/content/rules/zoonegaramalaysia.my.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + diff --git a/src/chrome/content/rules/zrkuban.ru.xml b/src/chrome/content/rules/zrkuban.ru.xml deleted file mode 100644 index 1853a08160b3..000000000000 --- a/src/chrome/content/rules/zrkuban.ru.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/src/chrome/content/rules/zsh.org.xml b/src/chrome/content/rules/zsh.org.xml new file mode 100644 index 000000000000..32280118a336 --- /dev/null +++ b/src/chrome/content/rules/zsh.org.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + diff --git a/src/chrome/content/rules/zsnes.com.xml b/src/chrome/content/rules/zsnes.com.xml new file mode 100644 index 000000000000..7cef6001a3d7 --- /dev/null +++ b/src/chrome/content/rules/zsnes.com.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/chrome/content/rules/zucks.co.jp.xml b/src/chrome/content/rules/zucks.co.jp.xml index 68701d148ba5..03a6ea9022aa 100644 --- a/src/chrome/content/rules/zucks.co.jp.xml +++ b/src/chrome/content/rules/zucks.co.jp.xml @@ -26,7 +26,7 @@ --> - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/chrome/content/rules/zugaina.net.xml b/src/chrome/content/rules/zugaina.net.xml index 790f8eba5bb7..05813c3eb088 100644 --- a/src/chrome/content/rules/zugaina.net.xml +++ b/src/chrome/content/rules/zugaina.net.xml @@ -22,7 +22,7 @@ --> - + + + + + + + + + + + + diff --git a/src/chrome/content/rules/zyxel.ru.xml b/src/chrome/content/rules/zyxel.ru.xml index 5906874baf8f..d65a9e48e081 100644 --- a/src/chrome/content/rules/zyxel.ru.xml +++ b/src/chrome/content/rules/zyxel.ru.xml @@ -16,7 +16,7 @@ support.zyxel.ru ⁴ ¹ mismatch ⁴ self signed --> - + diff --git a/src/chrome/locale/en/https-everywhere.dtd b/src/chrome/locale/en/https-everywhere.dtd index b945cea1e3cb..cde60e0b4222 100644 --- a/src/chrome/locale/en/https-everywhere.dtd +++ b/src/chrome/locale/en/https-everywhere.dtd @@ -2,60 +2,69 @@ - - - + - - - - - - - - - - - - + + + + + + + + + - - - + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + @@ -67,4 +76,6 @@ - + + + diff --git a/src/chrome/locale/en/https-everywhere.properties b/src/chrome/locale/en/https-everywhere.properties deleted file mode 100644 index be838311a3cc..000000000000 --- a/src/chrome/locale/en/https-everywhere.properties +++ /dev/null @@ -1,8 +0,0 @@ -https-everywhere.menu.globalEnable = Enable HTTPS Everywhere -https-everywhere.menu.globalDisable = Disable HTTPS Everywhere -https-everywhere.menu.enableDisable = Enable / Disable Rules -https-everywhere.menu.noRules = (No Rules for This Page) -https-everywhere.menu.unknownRules = (Rules for This Page Unknown) -https-everywhere.toolbar.hint = HTTPS Everywhere is now active. You can toggle it on a site-by-site basis by clicking the icon in the address bar. -https-everywhere.migration.notification0 = In order to implement a crucial fix, this update resets your HTTPS Everywhere rule preferences to their default values. -https-everywhere.menu.ruleset-tests = Run HTTPS Everywhere Ruleset Tests diff --git a/src/chrome/locale/en/ssl-observatory.dtd b/src/chrome/locale/en/ssl-observatory.dtd deleted file mode 100644 index a42567764f7f..000000000000 --- a/src/chrome/locale/en/ssl-observatory.dtd +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/chrome/skin/icon-active-48.png b/src/chrome/skin/icon-active-48.png deleted file mode 120000 index 26b03994c172..000000000000 --- a/src/chrome/skin/icon-active-48.png +++ /dev/null @@ -1 +0,0 @@ -../../../common/icons/icon-active-48.png \ No newline at end of file diff --git a/src/defaults/preferences/preferences.js b/src/defaults/preferences/preferences.js deleted file mode 100644 index a9c5f3363925..000000000000 --- a/src/defaults/preferences/preferences.js +++ /dev/null @@ -1,51 +0,0 @@ -pref("extensions.https_everywhere.LogLevel", 5); -pref("extensions.https_everywhere.log_to_stdout", false); -pref("extensions.https_everywhere.globalEnabled",true); - -// this is the HTTPS Everywhere preferences version (for migrations) -pref("extensions.https_everywhere.prefs_version", 0); - -// this is a popup asking whether the user really meant to be on the dev branch -pref("extensions.https_everywhere.dev_popup_shown", false); - -// show ruleset tests in the menu -pref("extensions.https_everywhere.show_ruleset_tests", false); -// run a ruleset performance test at startup -pref("extensions.https_everywhere.performance_tests", false); - -// enable rulesets that trigger mixed content blocking -pref("extensions.https_everywhere.enable_mixed_rulesets", false); - -// HTTP Nowhere preferences -pref("extensions.https_everywhere.http_nowhere.enabled", false); -pref("extensions.https_everywhere.http_nowhere.orig.ocsp.required", false); - -// SSl Observatory preferences -pref("extensions.https_everywhere._observatory.enabled",false); - -// "testing" currently means send unnecessary fingerprints and other test-suite -// type stuff -pref("extensions.https_everywhere._observatory.testing",false); - -pref("extensions.https_everywhere._observatory.server_host","observatory.eff.org"); -pref("extensions.https_everywhere._observatory.use_tor_proxy",true); -pref("extensions.https_everywhere._observatory.submit_during_tor",true); -pref("extensions.https_everywhere._observatory.submit_during_nontor",true); - -pref("extensions.https_everywhere._observatory.cache_submitted",true); - -pref("extensions.https_everywhere._observatory.use_custom_proxy",false); -pref("extensions.https_everywhere._observatory.popup_shown",false); -pref("extensions.https_everywhere._observatory.proxy_host",""); -pref("extensions.https_everywhere._observatory.proxy_port",0); -pref("extensions.https_everywhere._observatory.proxy_type","direct"); -pref("extensions.https_everywhere._observatory.use_tor_proxy",true); -pref("extensions.https_everywhere._observatory.alt_roots",false); -pref("extensions.https_everywhere._observatory.self_signed",true); -pref("extensions.https_everywhere._observatory.priv_dns",false); -pref("extensions.https_everywhere._observatory.send_asn",true); -pref("extensions.https_everywhere._observatory.show_cert_warning",true); -pref("extensions.https_everywhere._observatory.use_whitelist",true); -pref("extensions.https_everywhere._observatory.clean_config",false); - -pref("extensions.https_everywhere._observatory.whitelist_update_due",0); diff --git a/src/install.rdf b/src/install.rdf deleted file mode 100644 index e0f9392f4d33..000000000000 --- a/src/install.rdf +++ /dev/null @@ -1,61 +0,0 @@ - - - - - HTTPS Everywhere - EFF Technologists - https-everywhere-eff@eff.org - 2 - true - Encrypt the Web! Automatically use HTTPS security on many sites. - 5.2.21 - true - https://www.eff.org/https-everywhere - chrome://https-everywhere/skin/icon-active-48.png - false - true - https://www.eff.org/files/https-everywhere-eff-update-2048.rdf - MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA6MR8W/galdxnpGqBsYbqOzQb2eyW15YFjDDEMI0ZOzt8f504obNs920lDnpPD2/KqgsfjOgw2K7xWDJIj/18xUvWPk3LDkrnokNiRkA3KOx3W6fHycKL+zID7zy+xZYBuh2fLyQtWV1VGQ45iNRp9+Zo7rH86cdfgkdnWTlNSHyTLW9NbXvyv/E12bppPcEvgCTAQXgnDVJ0/sqmeiijn9tTFh03aM+R2V/21h8aTraAS24qiPCz6gkmYGC8yr6mglcnNoYbsLNYZ69zF1XHcXPduCPdPdfLlzVlKK1/U7hkA28eG3BIAMh6uJYBRJTpiGgaGdPd7YekUB8S6cy+CQIDAQAB - - - - {ec8030f7-c20a-464f-9b0e-13a3a9e97384} - 52.0 - 56.* - - - - - - {92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a} - 2.17 - 2.32 - - - - - - {3550f703-e582-4d05-9a08-453d09bdfdc6} - 17.* - 35.* - - - - - - {a79fe89b-6662-4ff4-8e88-09950ad4dfde} - 0.1 - 40.0 - - - - - - {aa3c5121-dab2-40e2-81ca-7ea25febc110} - 52.0 - 56.* - - - - diff --git a/test.sh b/test.sh index 441bd3557157..64c9b27c68b8 100755 --- a/test.sh +++ b/test.sh @@ -14,6 +14,6 @@ else git rev-parse && cd "$(git rev-parse --show-toplevel)" fi -./test/rules.sh +./test/validations.sh ./test/firefox.sh $@ ./test/chromium.sh $@ diff --git a/test/README.md b/test/README.md new file mode 100644 index 000000000000..5b4e2441ff27 --- /dev/null +++ b/test/README.md @@ -0,0 +1,50 @@ +# Automated Tests for HTTPS Everywhere + +## Running + + bash test.sh + +## Requirements for Selenium Testing + +- Python 3.6 +- Selenium + - Install Selenium as a python package using ```pip3 install selenium```, or run install-dev-dependencies.sh and it will do the job +- GeckoDriver + - Manually download GeckoDriver from [here](https://github.com/mozilla/geckodriver/releases). Extract the executable to `/usr/bin/`, so that the pasted executable's full path becomes `/usr/bin/geckodriver`. + +# List of Manual tests + +These are integrated into Travis for automated end-to-end testing within Firefox and Chrome/Chromium browsers + +# Firefox + +- Visit a site that triggers a ruleset (e.g., Reddit.com). +- Click HTTPS Everywhere icon, verify ruleset shows up in blue. +- Click 'show more' text and view ruleset and toggle off ruleset. +- Reopen HTTPS Everywhere menu, verify ruleset shows up in grey. +- Reload HTTP version of the site, ensure it doesn't get rewritten now that the ruleset is disabled. +- Click HTTP Everywhere icon, click ruleset again. +- Click HTTPS Everywhere icon menu, click 'Encrypt All Sites Eligible'. Verify icon + turns red. +- Visit an HTTP site known to not have a rewrite rule. http://http.badssl.com is a + good example. Verify page does not load. +- Visit an HTTPS site that contains passive mixed content that is not rewritten + to HTTPS. https://jacob.hoffman-andrews.com/passive-mixed-content.html is a + good example. Verify the passive mixed content (e.g., image) does not load. +- Click menu, click 'HTTPS Everywhere is ON' to 'HTTPS Everywhere is OFF' Verify icon turns grey. +- Visit a site that would normally trigger a ruleset. Verify it is not rewritten to HTTPS. +- Click menu, click 'Enable HTTPS Everywhere.' Verify icon turns blue. Verify page reloads and is rewritten to HTTPS. +- Look at log output, look for errors. +- Browser Menu > Web Developer > Web Console. Check for errors. + +# Chromium + +- Visit a site that triggers a ruleset (e.g., Reddit.com). Verify counter appears + within the HTTPS Everywhere menu under 'show more'. +- Click HTTPS Everywhere menu. Verify it contains appropriate ruleset. +- Disable ruleset. +- Visit HTTP version of the site again. Verify it does not get redirected to HTTPS. +- Re-enable ruleset. +- Visit HTTP version of the site again. Verify it does get redirected. +- Visit site that does not have a ruleset. Under the 'show more' menu, click 'Add this site', and complete site-adding process. +- Reload the site. Verify it gets redirected to HTTPS. diff --git a/test/chromium.sh b/test/chromium.sh index 29fdc3110dea..70f6c712a798 100755 --- a/test/chromium.sh +++ b/test/chromium.sh @@ -19,25 +19,23 @@ fi # If you just want to run Chromium with the latest code: if [ "$1" == "--justrun" ]; then shift - ./makecrx.sh + ./make.sh echo "running Chromium" source utils/mktemp.sh PROFILE_DIRECTORY="$(mktemp -d)" trap 'rm -r "$PROFILE_DIRECTORY"' EXIT - - # Chromium package name is 'chromium' in Debian 7 (wheezy) and later + + # Chromium package name is 'chromium' in Debian 7 (wheezy) and other distros like Arch BROWSER="chromium-browser" - if [[ "$(lsb_release -is)" == "Debian" ]]; then - BROWSER="chromium" - fi + which $BROWSER || BROWSER="chromium" $BROWSER \ --user-data-dir="$PROFILE_DIRECTORY" \ - --load-extension=pkg/crx/ \ + --load-extension=pkg/crx-cws/ \ "$@" else - ./makecrx.sh + ./make.sh echo "running tests" CRX_NAME="`ls -tr pkg/*.crx | tail -1`" - $XVFB_RUN python2.7 test/script.py Chrome $CRX_NAME + $XVFB_RUN python3 test/script.py Chrome $CRX_NAME fi diff --git a/test/chromium/README.md b/test/chromium/README.md deleted file mode 100644 index 9dd3fb4e50ad..000000000000 --- a/test/chromium/README.md +++ /dev/null @@ -1,8 +0,0 @@ -# Requirements - -- Python 2.7 -- Selenium - - Install Selenium as a python package using ```pip install selenium```, or run install-dev-dependencies.sh and it will do the job -- ChromeDriver - - Run ```apt-get install chromium-chromedriver```, or run install-dev-dependencies.sh - - Or, manually download ChromeDriver from https://sites.google.com/a/chromium.org/chromedriver/downloads. Extract the executable to /usr/lib/chromium-browser/ (Ubuntu), /usr/lib/chromium/ (Debian), or /usr/bin/ (other) , so that the pasted executable's full path becomes /usr/lib/chromium-browser/chromedriver (for Ubuntu, otherwise substitute the directory as needed). diff --git a/test/chromium/README.md b/test/chromium/README.md new file mode 120000 index 000000000000..32d46ee883b5 --- /dev/null +++ b/test/chromium/README.md @@ -0,0 +1 @@ +../README.md \ No newline at end of file diff --git a/test/fetch.sh b/test/fetch.sh index d3d0636afe4a..6f08359e525b 100755 --- a/test/fetch.sh +++ b/test/fetch.sh @@ -19,7 +19,7 @@ if [ "$TO_BE_TESTED" ]; then # Do the actual test, using https-everywhere-checker. OUTPUT_FILE=`mktemp` trap 'rm "$OUTPUT_FILE"' EXIT - python $RULETESTFOLDER/src/https_everywhere_checker/check_rules.py $RULETESTFOLDER/http.checker.config $TO_BE_TESTED 2>&1 | tee $OUTPUT_FILE + python3 $RULETESTFOLDER/src/https_everywhere_checker/check_rules.py $RULETESTFOLDER/http.checker.config $TO_BE_TESTED 2>&1 | tee $OUTPUT_FILE # Unfortunately, no specific exit codes are available for connection # failures, so we catch those with grep. if [[ `cat $OUTPUT_FILE | grep ERROR | wc -l` -ge 1 ]]; then diff --git a/test/firefox.sh b/test/firefox.sh index 9e97b00db7de..1e99239fdab2 100755 --- a/test/firefox.sh +++ b/test/firefox.sh @@ -17,25 +17,25 @@ source utils/mktemp.sh # We'll create a Firefox profile here and install HTTPS Everywhere into it. PROFILE_DIRECTORY="$(mktemp -d)" trap 'rm -r "$PROFILE_DIRECTORY"' EXIT -HTTPSE_INSTALL_DIRECTORY=$PROFILE_DIRECTORY/extensions/https-everywhere-eff@eff.org +HTTPSE_INSTALL_FILE=$PROFILE_DIRECTORY/extensions/https-everywhere-eff@eff.org.xpi -# Build the XPI to run all the validations in makexpi.sh, and to ensure that +# Build the XPI to run all the validations in make.sh, and to ensure that # we test what is actually getting built. -./makexpi.sh -XPI_NAME="`ls -tr pkg/*-eff.xpi | tail -1`" +./make.sh +XPI_NAME="`ls -tr pkg/https-everywhere-20*.xpi | tail -1`" # Set up a skeleton profile and then install into it. # The skeleton contains a few files required to trick Firefox into thinking # that the extension was fully installed rather than just unpacked. -rsync -a test/firefox/test_profile_skeleton/ $PROFILE_DIRECTORY -unzip -qd $HTTPSE_INSTALL_DIRECTORY $XPI_NAME +cp -a test/firefox/test_profile_skeleton/* $PROFILE_DIRECTORY +cp $XPI_NAME $HTTPSE_INSTALL_FILE die() { echo "$@" exit 1 } -if [ ! -d "$HTTPSE_INSTALL_DIRECTORY" ]; then +if [ ! -f "$HTTPSE_INSTALL_FILE" ]; then die "Firefox profile does not have HTTPS Everywhere installed" fi @@ -58,8 +58,8 @@ else PATH=/home/user/geckodriver:$PATH if [ -n "$FIREFOX" ]; then - $XVFB_RUN python2.7 test/script.py Firefox "$PROFILE_DIRECTORY" $FIREFOX + $XVFB_RUN python3 test/script.py Firefox "$PROFILE_DIRECTORY" $FIREFOX else - $XVFB_RUN python2.7 test/script.py Firefox "$PROFILE_DIRECTORY" + $XVFB_RUN python3 test/script.py Firefox "$PROFILE_DIRECTORY" fi fi diff --git a/test/firefox/README.md b/test/firefox/README.md deleted file mode 100644 index b503f2bb36b8..000000000000 --- a/test/firefox/README.md +++ /dev/null @@ -1,62 +0,0 @@ -# Tests for HTTPS Everywhere - -## Prerequisites -* Latest release of the Firefox Add-On SDK as a submodule: - git submodule update - -# Running - bash test.sh - -To add tests, put them in `./https-everywhere-tests/tests`. - -# Manual tests - -These are test cases to execute manually before a release, and we should -implement them as automated tests: - -# Firefox -- Visit a site that triggers a ruleset (e.g., Reddit.com). Verify counter appears on HTTPS - Everywhere icon. -- Click HTTPS Everywhere icon menu, click 'show counter'. Verify counter - disappears. Verify checkmark disappears from menu item. -- Click HTTPS Everywhere icon, verify ruleset shows up in green. -- Click ruleset. -- Reopen HTTPS Everywhere icon menu, verify ruleset shows up in grey. -- Reload HTTP version of the site, ensure it doesn't get rewritten now that the - ruleset is disabled. -- Click HTTP Everywhere icon, click ruleset again. -- Reopen HTTPS Everywhere icon menu, verify ruleset shows up in green. -- Right-click on a rule, click 'View XML source.' Verify it opens up a dialog - box and shows the rule source. -- Click HTTPS Everywhere icon menu, click 'Block all HTTP requests'. Verify icon - turns red. -- Visit an HTTP site known to not have a rewrite rule. http://amazon.com is a - good example. Verify page does not load. -- Visit an HTTPS site that contains passive mixed content that is not rewritten - to HTTPS. https://jacob.hoffman-andrews.com/passive-mixed-content.html is a - good example. Verify the passive mixed content (e.g., image) does not load. -- Click icon menu, click 'About HTTPS Everywhere.' Verify dialog opens. -- Click icon menu, click 'SSL Observatory Preferences.' Verify dialog opens. -- Click icon menu, click 'Disable HTTPS Everywhere.' Verify icon turns grey. -- Visit a site that would normally trigger a ruleset. Verify it is not rewritten - to HTTPS. -- Click icon menu, click 'Enable HTTPS Everywhere.' Verify icon turns blue. - Verify page reloads and is rewritten to HTTPS. -- Look at log output, look for errors. Make sure certificates are being -submitted to SSL Observatory -- Tools > Web Developer > Browser Toolbox > Console. Check for errors. -- TODO: Test translations? - -# Chromium - -- Visit a site that triggers a ruleset (e.g., Reddit.com). Verify counter appears - on HTTPS Everywhere icon. -- Click HTTPS Everywhere icon menu. Verify it contains appropriate ruleset. -- Disable ruleset. -- Visit HTTP version of the site again. Verify it does not get redirected to - HTTPS. -- Re-enable ruleset. -- Visit HTTP version of the site again. Verify it does get redirected. -- Visit site that does not have a ruleset. From icon menu, click 'Add this - site', and complete site-adding process. -- Reload the site. Verify it gets redirected to HTTPS. diff --git a/test/firefox/README.md b/test/firefox/README.md new file mode 120000 index 000000000000..32d46ee883b5 --- /dev/null +++ b/test/firefox/README.md @@ -0,0 +1 @@ +../README.md \ No newline at end of file diff --git a/test/firefox/test_profile_skeleton/extensions.json b/test/firefox/test_profile_skeleton/extensions.json index 5ea29d6ab4dc..471c313bb25c 100644 --- a/test/firefox/test_profile_skeleton/extensions.json +++ b/test/firefox/test_profile_skeleton/extensions.json @@ -1,43 +1,48 @@ { "addons": [ { - "aboutURL": "chrome://https-everywhere/content/about.xul", + "aboutURL": null, "active": true, "appDisabled": false, "applyBackgroundUpdates": 1, - "bootstrap": false, + "blocklistState": 0, + "blocklistURL": null, "defaultLocale": { - "creator": "EFF Technologists", + "contributors": null, + "creator": "extension-devs@eff.org", "description": "Encrypt the Web! Automatically use HTTPS security on many sites.", + "developers": null, "homepageURL": "https://www.eff.org/https-everywhere", - "name": "HTTPS Everywhere" + "name": "HTTPS Everywhere", + "translators": null }, - "descriptor": "/tmp/tmp.KvR5nzzEal/extensions/https-everywhere-eff@eff.org", + "dependencies": [], "foreignInstall": false, - "hasBinaryComponents": false, - "icon64URL": null, - "iconURL": "chrome://https-everywhere/skin/https-everywhere.png", - "icons": {}, + "hidden": false, + "iconURL": null, "id": "https-everywhere-eff@eff.org", - "installDate": 1451269062000, - "internalName": null, - "locales": [], + "installDate": 1559865340000, + "installTelemetryInfo": { + "method": "link", + "source": "unknown" + }, + "loader": null, "location": "app-profile", - "multiprocessCompatible": true, - "optionsType": null, - "optionsURL": "chrome://https-everywhere/content/observatory-preferences.xul", + "optionsBrowserStyle": true, + "optionsType": 5, "releaseNotesURI": null, - "signedState": 1, - "size": 9460335, + "seen": true, + "signedState": 2, "skinnable": false, "softDisabled": false, - "strictCompatibility": false, - "syncGUID": "L3vNFuFgQJ4m", + "sourceURI": "https://www.eff.org/files/https-everywhere-latest.xpi", + "startupData": null, + "strictCompatibility": true, + "targetPlatforms": [], "type": "extension", - "updateDate": 1451269062000, + "updateDate": 1559865340000, "userDisabled": false, "visible": true } - ], - "schemaVersion": 17 + ] } diff --git a/test/firefox/test_profile_skeleton/prefs.js b/test/firefox/test_profile_skeleton/prefs.js index 42b3f0a7ec01..d1c0e37d53b0 100644 --- a/test/firefox/test_profile_skeleton/prefs.js +++ b/test/firefox/test_profile_skeleton/prefs.js @@ -1,20 +1,9 @@ -// Submit SSL Observatory reports. -user_pref("extensions.https_everywhere._observatory.enabled", true); -// Don't show any popups that might get in the way of testing. -user_pref("extensions.https_everywhere._observatory.popup_shown", true); -user_pref("extensions.https_everywhere.toolbar_hint_shown", true); -// Show all logs. -user_pref("extensions.https_everywhere.LogLevel", 0); -user_pref("extensions.https_everywhere.log_to_stdout", true); // Make it quicker to make manual config changes. user_pref("general.warnOnAboutConfig", false); // Minimize unnecessary requests. user_pref("browser.safebrowsing.enabled", false); user_pref("browser.safebrowsing.malware.enabled", false); // These two preferences allow debugging the extension -// using Tools > Web Developer > Browser Toolbox -// (Note: Since this is not an SDK extension, you can't use the Addon -// Debugger, but the Browser Toolbox is just about as good). user_pref("devtools.chrome.enabled", true); user_pref("devtools.debugger.remote-enabled", true); // Disable signature requirement so we can run testing addons diff --git a/test/manual.sh b/test/manual.sh new file mode 100755 index 000000000000..d16a977f178c --- /dev/null +++ b/test/manual.sh @@ -0,0 +1,6 @@ +#!/bin/bash +# This script assists ruleset creators in ensuring that there is proper test +# coverage for their rules, and performs a network "fetch" test to alert the +# contributor of potential problems. + +exec python3 test/rules/src/https_everywhere_checker/check_rules.py test/rules/manual.checker.config "$@" diff --git a/test/rules.sh b/test/rules.sh deleted file mode 100755 index 7bef2f2d5d84..000000000000 --- a/test/rules.sh +++ /dev/null @@ -1,45 +0,0 @@ -#!/bin/bash -ex -# -# Test that all rulesets modified after a certain date have sufficient test -# coverage, according to the ruleset checker. -# - -# Get to the repo root directory, even when we're symlinked as a hook. -if [ -n "$GIT_DIR" ] -then - # $GIT_DIR is set, so we're running as a hook. - cd $GIT_DIR -else - # Git command exists? Cool, let's CD to the right place. - git rev-parse && cd "$(git rev-parse --show-toplevel)" -fi - -source utils/mktemp.sh - -TMP="$(mktemp)" -trap 'rm "$TMP"' EXIT -if ! [ -d test/rules ] ; then - echo "Submodule https-everywhere-checker is missing. Run" - echo "./install-dev-dependencies.sh" - exit 1 -fi -if [ $# -gt 0 ] ; then - exec python2.7 test/rules/src/https_everywhere_checker/check_rules.py \ - test/rules/coverage.checker.config "$@" -fi -if ! python2.7 test/rules/src/https_everywhere_checker/check_rules.py \ - test/rules/coverage.checker.config; then - echo ' -Ruleset test coverage was insufficient. - -Under the new ruleset testing rules (February 2015), any modified ruleset -must have sufficient test coverage. You can often improve test coverage by -adding tags, or by restructuring the rule to avoid -wildcard tags. See these documents: -https://github.com/EFForg/https-everywhere/blob/master/ruleset-testing.md -https://github.com/EFForg/https-everywhere/blob/master/CONTRIBUTING.md#ruleset-style-guide -' - exit 1 -else - exit 0 -fi diff --git a/test/rules/HISTORY.rst b/test/rules/HISTORY.rst deleted file mode 100644 index 1b6f7af1ac52..000000000000 --- a/test/rules/HISTORY.rst +++ /dev/null @@ -1,9 +0,0 @@ -.. :changelog: - -History -------- - -0.1.0 (unreleased) -++++++++++++++++++ - -* First release on PyPI. diff --git a/test/rules/COPYING b/test/rules/LICENSE.txt similarity index 100% rename from test/rules/COPYING rename to test/rules/LICENSE.txt diff --git a/test/rules/MANIFEST.in b/test/rules/MANIFEST.in deleted file mode 100644 index 2bb6bb1c98ff..000000000000 --- a/test/rules/MANIFEST.in +++ /dev/null @@ -1,11 +0,0 @@ -include AUTHORS.rst -include CONTRIBUTING.rst -include HISTORY.rst -include LICENSE -include README.rst - -recursive-include tests * -recursive-exclude * __pycache__ -recursive-exclude * *.py[co] - -recursive-include docs *.rst conf.py Makefile make.bat diff --git a/test/rules/README.md b/test/rules/README.md new file mode 100644 index 000000000000..8c574b0f408f --- /dev/null +++ b/test/rules/README.md @@ -0,0 +1,74 @@ +# HTTPS Everywhere Rule Checker + +Author: Ondrej Mikle, CZ.NIC (ondrej.mikle@nic.cz) + +## Configuration + +Copy `checker.config.sample` to `checker.config` and change the `rulesdir` under `[rulesets]` to point to a directory with the XML files of HTTPS Everywhere rules (usually the `src/chrome/content/rules` of locally checked out git tree of HTTPS Everywhere). + +## Running + +Once you have modified the config, run: + + check-https-rules checker.config + +Output will be written to selected log file, infos/warnings/errors contain the useful information. + +## Features + +* Attempts to follow Firefox behavior as closely as possible (including rewriting HTTP redirects according to rules; well except for Javascript and meta-redirects) +* IDN domain support +* Currently two metrics on "distance" of two resources implemented, one is purely string-based, the other tries to measure "similarity of the shape of DOM tree" +* Multi-threaded scanner +* Support for various "platforms" (e.g. CAcert), i.e. sets of CA certificate sets which can be switched during following of redirects +* set of used CA certificates can be statically restricted to one CA certificate set (see `static_ca_path` in config file) + +## What errors in rulesets can be detected + +* big difference in HTML page structure +* error in ruleset - declared target that no rule rewrites, bad regexps (usually capture groups are wrong), incomplete FQDNs, non-existent domains +* HTTP 200 in original page, while rewritten page returns 4xx/5xx +* cycle detection in redirects +* transvalid certificates (incomplete chains) +* other invalid certificate detection (self-signed, expired, CN mismatch...) + +## False positives and shortcomings + +* Some pages deliberately have different HTTP and HTTPS page, some for example redirect to different page under https +* URLs to scan are naively guessed from target hosts, having test set of URLs in a ruleset would improve it (better coverage) + +## Known bugs + +### At most 9 capture groups in rule supported + +This is a workaround for ambiguous rewrites in rules such as: + + + +The `$101` would actually mean 101-st group, so we assume that only first digit after `$` denotes the group (which is how it seems to work in javascript). + +### May not work under Windows + +According to [PyCURL documentation](http://curl.haxx.se/libcurl/c/curl_easy_setopt.html#CURLOPTCAPATH), using CAPATH may not work under Windows. I'd guess it's due to openssl's `c_rehash` utility that creates symlinks to PEM certificates. Hypothetically it could work if the symlinks were replaced by regular files with identical names, but haven't tried. + +### Threading bugs and workarounds + +There are some race conditions with Python threads and OpenSSL/GnuTLS that cause about due to SIGPIPE or SIGSEGV. While libcurl code seems to have implemented the necessary callbacks, there's a bug somewhere :-) + +Workaround: set `fetch_in_subprocess` under `http` section in config to true when using multiple threads for fetching. Using subprocess is on by default. + +You might have to set PYTHONPATH if working dir is different from code dir with python scripts. + +If underlying SSL library is NSS, threading looks fine. + +As a side effect, the CURL+NSS SNI bug does not happen with subprocesses (SSL session ID cache is not kept among process invocations). + +If pure-threaded version starts eating too much memory (like 1 GB in a minute), turn on the ``fetch_in_subprocess`` option metioned above. Some combinations of CURL and SSL library versions do that. Spawning separate subprocesses prevents any caches building up and eating too much memory. + +Using subprocess hypothetically might cause a deadlock due to insufficient buffer size when exchanging data through stdin/stdout in case of a large HTML page, but hasn't happened for any of the rules (I've tried to run them on the complete batch of rulesets contained in HTTPS Everywhere Nov 2 2012 commit c343f230a49d960dba90424799c3bacc2325fc94). Though in case deadlock happens, increase buffer size in `subprocess.Popen` invocation in `http_client.py`. + +### Generic bugs/quirks of SSL libraries + +Each of the three possible libraries (OpenSSL, GnuTLS, NSS) has different set of quirks. GnuTLS seems to be the most strict one regarding relevant RFCs and will not for instance tolerate certificate chain in wrong order or forgive server not sending `close_notify` alert. + +Thus it's entirely possible that while a server chain and SSL/TLS handshake seems OK when using one lib, it may break with the other. diff --git a/test/rules/README.rst b/test/rules/README.rst deleted file mode 100644 index fa404ae75802..000000000000 --- a/test/rules/README.rst +++ /dev/null @@ -1,226 +0,0 @@ -HTTPS Everywhere Rule Checker -============================= - -Author: Ondrej Mikle, CZ.NIC (ondrej.mikle@nic.cz) - -Installation ------------- - -:: - - pip install https-everywhere-checker - -or using the supplied setup.py - -:: - - python setup.py install - -Configuration -------------- - -Copy ``checker.config.sample`` to ``checker.config`` and change the -``rulesdir`` under ``[rulesets]`` to point to a directory with the XML -files of HTTPS Everywhere rules (usually the -``src/chrome/content/rules`` of locally checked out git tree of HTTPS -Everywhere). - -Running -------- - -Once you have modified the config, run: - -:: - - check-https-rules checker.config - -Output will be written to selected log file, infos/warnings/errors -contain the useful information. - -Features --------- - -- Attempts to follow Firefox behavior as closely as possible (including - rewriting HTTP redirects according to rules; well except for - Javascript and meta-redirects) -- IDN domain support -- Currently two metrics on "distance" of two resources implemented, one - is purely string-based, the other tries to measure "similarity of the - shape of DOM tree" -- Multi-threaded scanner -- Support for various "platforms" (e.g. CAcert), i.e. sets of CA - certificate sets which can be switched during following of redirects -- set of used CA certificates can be statically restricted to one CA - certificate set (see ``static_ca_path`` in config file) - -What errors in rulesets can be detected ---------------------------------------- - -- big difference in HTML page structure -- error in ruleset - declared target that no rule rewrites, bad regexps - (usually capture groups are wrong), incomplete FQDNs, non-existent - domains -- HTTP 200 in original page, while rewritten page returns 4xx/5xx -- cycle detection in redirects -- transvalid certificates (incomplete chains) -- other invalid certificate detection (self-signed, expired, CN - mismatch...) - -False positives and shortcomings --------------------------------- - -- Some pages deliberately have different HTTP and HTTPS page, some for - example redirect to different page under https -- URLs to scan are naively guessed from target hosts, having test set - of URLs in a ruleset would improve it (better coverage) - -Known bugs ----------- - -CURL+NSS can't handle hosts with SNI sharing same IP address -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -PyCURL and NSS incorrectly handle the case when two FQDNs have identical -IP address, use Server Name Indication and try to resume TLS session -with the same session ID. Even turning off SSL session cache via setting -``pycurl.SSL_SESSIONID_CACHE`` to zero won't help (it's ignored by -libcurl/pycurl for some reason). PyCURL+NSS fail to see that server -didn't acknowledge SNI in response (see RFC 4366 reference below), thus -'Host' header in HTTP and SNI seen by server are different, thus HTTP -404. - -This one issue was especially insidious bug, many thanks to Pavel Janík -for helping hunt this bug down. - -Testcase -^^^^^^^^ - -See ``curl_test_nss/curl_testcase_nss_sni.py`` script that demonstrates -the bug. - -Technical details -^^^^^^^^^^^^^^^^^ - -PyCURL sends TLS handshake with SNI for the first host. This works. -Connection is then closed, but PyCURL+NSS remembers the SSL session ID. -It will attempt to use the same session ID when later connecting to -second host on the same IP. - -However, the server won't acknowledge what client requested with new -SNI, because client attempts to resume during TLS handshake using the -incorrect session ID. Thus the session is "resumed" to the first host's -SNI. - -Side observation: When validation is turned off in PyCURL+NSS, it also -turns off session resume as a side effect (the code is in curl's nss.c). - -Workaround -^^^^^^^^^^ - -Set config to use SSLv3 instead of default TLSv1 (option ``ssl_version`` -under ``http`` section). - -Normative reference -^^^^^^^^^^^^^^^^^^^ - -See last four paragraphs of `RFC 4366, section -3.1 `__. Contrast with -`RFC 6066 section 3 `__, -last two paragraphs. In TLS 1.2 the logic is reversed - server must not -resume such connection and must go through full handshake again. - -At most 9 capture groups in rule supported -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -This is a workaround for ambiguous rewrites in rules such as: - -:: - - - -The ``$101`` would actually mean 101-st group, so we assume that only first digit after ``$`` -denotes the group (which is how it seems to work in javascript). - -May not work under Windows -~~~~~~~~~~~~~~~~~~~~~~~~~~ - -According to `PyCURL -documentation `__, -using CAPATH may not work under Windows. I'd guess it's due to openssl's -``c_rehash`` utility that creates symlinks to PEM certificates. -Hypothetically it could work if the symlinks were replaced by regular -files with identical names, but haven't tried. - -Threading bugs and workarounds -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -There are some race conditions with Python threads and OpenSSL/GnuTLS -that cause about due to SIGPIPE or SIGSEGV. While libcurl code seems to -have implemented the necessary callbacks, there's a bug somewhere :-) - -Workaround: set ``fetch_in_subprocess`` under ``http`` section in config -to true when using multiple threads for fetching. Using subprocess is on -by default. - -You might have to set PYTHONPATH if working dir is different from code -dir with python scripts. - -If underlying SSL library is NSS, threading looks fine. - -As a side effect, the CURL+NSS SNI bug does not happen with subprocesses -(SSL session ID cache is not kept among process invocations). - -If pure-threaded version starts eating too much memory (like 1 GB in a -minute), turn on the ``fetch_in_subprocess`` option metioned above. Some -combinations of CURL and SSL library versions do that. Spawning separate -subprocesses prevents any caches building up and eating too much memory. - -Using subprocess hypothetically might cause a deadlock due to -insufficient buffer size when exchanging data through stdin/stdout in -case of a large HTML page, but hasn't happened for any of the rules -(I've tried to run them on the complete batch of rulesets contained in -HTTPS Everywhere Nov 2 2012 commit -c343f230a49d960dba90424799c3bacc2325fc94). Though in case deadlock -happens, increase buffer size in ``subprocess.Popen`` invocation in -``http_client.py``. - -Generic bugs/quirks of SSL libraries -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -Each of the three possible libraries (OpenSSL, GnuTLS, NSS) has -different set of quirks. GnuTLS seems to be the most strict one -regarding relevant RFCs and will not for instance tolerate certificate -chain in wrong order or forgive server not sending ``close_notify`` -alert. - -Thus it's entirely possible that while a server chain and SSL/TLS -handshake seems OK when using one lib, it may break with the other. - -Transvalid certificates (transitive closure of root and intermediate certs) ---------------------------------------------------------------------------- - -The ``platform_certs/FF_transvalid.tar.bz2`` attempts to simulate common -browser behavior of caching intermediate certs. The directory contains -FF's builtin certs and all intermediate certs that validate from FF's -builtin certs (a transitive closure). - -The certs above are in a tarball (need to be unpacked and c\_rehash'd -for use). - -The script is in ``certs_transitive_closure/build_closure.sh`` and is -rather crude, definitely needs some double-checking of sanity (see -comments inside the script). - -Quick outline of the script's algorithm: - -1. IntermediateSet\_0 := {trusted builtin certs from clean install of - Firefox} -2. Certs that have basic constraints CA=true or are X509 version 1 are - exported from some DB like SSL Observatory -3. Iterate over all exported certs, add new unique certificates not yet - contained in IntermediateSet\_n validate against latest - IntermediateSet\_n, forming IntermediateSet\_{n+1} -4. n += 1 -5. If any certs were added in step 3, goto 3, else end - -Last IntermediateSet is the closure. diff --git a/test/rules/certs_transitive_closure/build_closure.sh b/test/rules/certs_transitive_closure/build_closure.sh deleted file mode 100755 index ca4c0a19f915..000000000000 --- a/test/rules/certs_transitive_closure/build_closure.sh +++ /dev/null @@ -1,103 +0,0 @@ -#!/bin/bash - -# Script to build transitive closure of valid intermediate and root certificates -# from a starting set of "trusted" ones and a set of intermediate CA ones. -# See usage() below for invocation. - -# IMPORTANT: You MUST compile openssl from source, otherwise it may take trust -# anchors from some distribution bundle (I didn't find a switch to turn it off -# Use latest stable openssl from openssl.org (I tested with 1.0.1c). - -OPENSSL="$HOME/tmp/openssl_raw/bin/openssl" - -usage() { - cat << EOF -Usage: $0 trusted_certs_dir intermediate_certs_dir output_dir - -Upon finishing, "output_dir" will contain all certificates from -"trusted_certs_dir" with all the certificates from "intermediate_certs_dir" that -can be transitively validated. - -All certs are expected in PEM format with ".pem" extension (lowercase). - -Note: this script will first run openssl's c_rehash on "trusted_certs_dir", so -symlinks will be added there. -EOF -} - -# print $@ and die with exitcode 1 -fatal() { - echo "$@" - exit 1 -} - -# Rehash certs for openssl's use in directory given as arg1 -rehash_dir() { - perl "$REHASH" "$1" > /dev/null -} - -if [ "$#" -lt 3 ]; then - usage - exit 1 -fi - -TRUSTED_DIR="$1" -INTERMEDIATE_DIR="$2" -OUTPUT_DIR="$3" - -SCRIPT_DIR="${0%/*}" -REHASH="$SCRIPT_DIR/c_rehash" -UNIQUE_CERTS="$SCRIPT_DIR/unique_certs.py" -ROUND=1 # iteration index -ROUND_NEW_CERTS=0 # number of new certs found in the round -ROUND_TA_DIR="$TRUSTED_DIR" # trust anchor dir for round -WORKDIR=$(mktemp -d closure_workdir.XXXX) - -echo "=== Starting, workdir is $WORKDIR" -#echo "=== Rehashing source dir $TRUSTED_DIR" -#rehash_dir "$TRUSTED_DIR" - -mkdir -p "$OUTPUT_DIR" || fatal "Can't create output dir and it's not directory - $OUTPUT_DIR" - -# Loop until no new transitively trusted certs are found -while [ "$ROUND_NEW_CERTS" -gt 0 -o "$TRUSTED_DIR" = "$ROUND_TA_DIR" ]; do - ROUND_NEW_CERTS=0 - echo "=== Starting round $ROUND" - ROUND_OUT_DIR="$WORKDIR/round_${ROUND}" - mkdir -p "$ROUND_OUT_DIR" - echo " \- Copying previous round certs from $ROUND_TA_DIR to $ROUND_OUT_DIR" - find "$ROUND_TA_DIR" -name "*.pem" -exec cp {} "$ROUND_OUT_DIR" ';' - echo " \- Rehash previous round certs in $ROUND_TA_DIR" - rehash_dir "$ROUND_TA_DIR" - - # Iterate over unique certs not yet in partial closure - # ...the for cycle below is ugly and has limit on cert count but while runs - # in a subshell (can't get variables out) - for TESTED_CERT in $(python "$UNIQUE_CERTS" "$INTERMEDIATE_DIR" "$ROUND_TA_DIR"); do - # TODO: - # - we should check against untrusted like Diginotar - # - openssl verify has "-purpose" option, but doesn't seem to work - # - find out if there's a way to disable built-in certbundle other than - # compile openssl locally - # - time checks are not done unless '-attime' is used, but it shouldn't - # matter for our purpose - # - the method of grepping for 'error' is crude, but exit code is - # meaningless - ERROR_COUNT=$("$OPENSSL" verify -CApath "$ROUND_TA_DIR" "$TESTED_CERT" 2>&1 | grep -ci error) - - if [ "$ERROR_COUNT" -eq 0 ]; then #chain validated - echo " \- Found $TESTED_CERT to be transitively trusted" - cp "$TESTED_CERT" "$ROUND_OUT_DIR" - ROUND_NEW_CERTS=$(($ROUND_NEW_CERTS+1)) - fi - done - - ROUND_TA_DIR="$ROUND_OUT_DIR" - ROUND=$((ROUND+1)) -done - -echo "=== Finished at round $ROUND" -echo " \- Last round dir with transitive closure is $ROUND_TA_DIR, copying to $OUTPUT_DIR" -find "$ROUND_TA_DIR" -name "*.pem" -type f -exec cp {} "$OUTPUT_DIR" ';' - -#rm -r "$WORKDIR" diff --git a/test/rules/certs_transitive_closure/c_rehash b/test/rules/certs_transitive_closure/c_rehash deleted file mode 100755 index 2fea36840257..000000000000 --- a/test/rules/certs_transitive_closure/c_rehash +++ /dev/null @@ -1,180 +0,0 @@ -#!/usr/bin/env perl - - -# Perl c_rehash script, scan all files in a directory -# and add symbolic links to their hash values. - -my $openssl; - -my $dir = "openssl really does not care about this var"; -my $prefix = "nor this one"; - -if(defined $ENV{OPENSSL}) { - $openssl = $ENV{OPENSSL}; -} else { - $openssl = "openssl"; - $ENV{OPENSSL} = $openssl; -} - -my $pwd; -eval "require Cwd"; -if (defined(&Cwd::getcwd)) { - $pwd=Cwd::getcwd(); -} else { - $pwd=`pwd`; chomp($pwd); -} -my $path_delim = ($pwd =~ /^[a-z]\:/i) ? ';' : ':'; # DOS/Win32 or Unix delimiter? - -$ENV{PATH} = "$prefix/bin" . ($ENV{PATH} ? $path_delim . $ENV{PATH} : ""); # prefix our path - -if(! -x $openssl) { - my $found = 0; - foreach (split /$path_delim/, $ENV{PATH}) { - if(-x "$_/$openssl") { - $found = 1; - $openssl = "$_/$openssl"; - last; - } - } - if($found == 0) { - print STDERR "c_rehash: rehashing skipped ('openssl' program not available)\n"; - exit 0; - } -} - -if(@ARGV) { - @dirlist = @ARGV; -} elsif($ENV{SSL_CERT_DIR}) { - @dirlist = split /$path_delim/, $ENV{SSL_CERT_DIR}; -} else { - $dirlist[0] = "$dir/certs"; -} - -if (-d $dirlist[0]) { - chdir $dirlist[0]; - $openssl="$pwd/$openssl" if (!-x $openssl); - chdir $pwd; -} - -foreach (@dirlist) { - if(-d $_ and -w $_) { - hash_dir($_); - } -} - -sub hash_dir { - my %hashlist; - print "Doing $_[0]\n"; - chdir $_[0]; - opendir(DIR, "."); - my @flist = readdir(DIR); - # Delete any existing symbolic links - foreach (grep {/^[\da-f]+\.r{0,1}\d+$/} @flist) { - if(-l $_) { - unlink $_; - } - } - closedir DIR; - FILE: foreach $fname (grep {/\.pem$/} @flist) { - # Check to see if certificates and/or CRLs present. - my ($cert, $crl) = check_file($fname); - if(!$cert && !$crl) { - print STDERR "WARNING: $fname does not contain a certificate or CRL: skipping\n"; - next; - } - link_hash_cert($fname) if($cert); - link_hash_crl($fname) if($crl); - } -} - -sub check_file { - my ($is_cert, $is_crl) = (0,0); - my $fname = $_[0]; - open IN, $fname; - while() { - if(/^-----BEGIN (.*)-----/) { - my $hdr = $1; - if($hdr =~ /^(X509 |TRUSTED |)CERTIFICATE$/) { - $is_cert = 1; - last if($is_crl); - } elsif($hdr eq "X509 CRL") { - $is_crl = 1; - last if($is_cert); - } - } - } - close IN; - return ($is_cert, $is_crl); -} - - -# Link a certificate to its subject name hash value, each hash is of -# the form . where n is an integer. If the hash value already exists -# then we need to up the value of n, unless its a duplicate in which -# case we skip the link. We check for duplicates by comparing the -# certificate fingerprints - -sub link_hash_cert { - my $fname = $_[0]; - $fname =~ s/'/'\\''/g; - my ($hash, $fprint) = `"$openssl" x509 -hash -fingerprint -noout -in "$fname"`; - chomp $hash; - chomp $fprint; - $fprint =~ s/^.*=//; - $fprint =~ tr/://d; - my $suffix = 0; - # Search for an unused hash filename - while(exists $hashlist{"$hash.$suffix"}) { - # Hash matches: if fingerprint matches its a duplicate cert - if($hashlist{"$hash.$suffix"} eq $fprint) { - print STDERR "WARNING: Skipping duplicate certificate $fname\n"; - return; - } - $suffix++; - } - $hash .= ".$suffix"; - print "$fname => $hash\n"; - $symlink_exists=eval {symlink("",""); 1}; - if ($symlink_exists) { - symlink $fname, $hash; - } else { - open IN,"<$fname" or die "can't open $fname for read"; - open OUT,">$hash" or die "can't open $hash for write"; - print OUT ; # does the job for small text files - close OUT; - close IN; - } - $hashlist{$hash} = $fprint; -} - -# Same as above except for a CRL. CRL links are of the form .r - -sub link_hash_crl { - my $fname = $_[0]; - $fname =~ s/'/'\\''/g; - my ($hash, $fprint) = `"$openssl" crl -hash -fingerprint -noout -in '$fname'`; - chomp $hash; - chomp $fprint; - $fprint =~ s/^.*=//; - $fprint =~ tr/://d; - my $suffix = 0; - # Search for an unused hash filename - while(exists $hashlist{"$hash.r$suffix"}) { - # Hash matches: if fingerprint matches its a duplicate cert - if($hashlist{"$hash.r$suffix"} eq $fprint) { - print STDERR "WARNING: Skipping duplicate CRL $fname\n"; - return; - } - $suffix++; - } - $hash .= ".r$suffix"; - print "$fname => $hash\n"; - $symlink_exists=eval {symlink("",""); 1}; - if ($symlink_exists) { - symlink $fname, $hash; - } else { - system ("cp", $fname, $hash); - } - $hashlist{$hash} = $fprint; -} - diff --git a/test/rules/certs_transitive_closure/unique_certs.py b/test/rules/certs_transitive_closure/unique_certs.py deleted file mode 100755 index 78e59c587142..000000000000 --- a/test/rules/certs_transitive_closure/unique_certs.py +++ /dev/null @@ -1,62 +0,0 @@ -#!/usr/bin/env python - -# Given a directory as arg1 with PEM certs as *.pem named files, return list of -# filenames that constitute set of unique certs (comparison is done on certs' -# SHA256) -# -# Symlinks are skipped, only regular files are returned. -# -# Second directory can be specified as arg2, containing *.pem certificates that -# should be skipped - i.e. set subtraction. Symlinks are accounted for in this -# exclude dir). - -import os -import sys -import logging -import ssl -from hashlib import sha256 -from glob import glob - -def pemFileHash(fname): - """ Return SHA256 hash of PEM cert in hex """ - with file(fname) as certFile: - pemData = certFile.read() - derData = ssl.PEM_cert_to_DER_cert(pemData) - certDigest = sha256(derData).hexdigest() - - return certDigest - - -sourceDir = sys.argv[1] -if not os.path.isdir(sourceDir): - raise ValueError("%s is not a directory" % sourceDir) - -filenames = glob("%s/*.pem" % sourceDir) -filenames.sort() #let's have some deterministic ordering -hash2cert = {} - -# Certs to be excluded -if len(sys.argv) >= 3: - excludeDir = sys.argv[2] - if not os.path.isdir(excludeDir): - raise ValueError("%s is not a directory" % excludeDir) - - for fname in filter(os.path.isfile, glob(excludeDir+"/*.pem")): - try: - certDigest = pemFileHash(fname) - hash2cert[certDigest] = fname - except: - logging.exception("Failed to process certificate file %s" % fname) - -# take only regular files, no symlinks -filenames = [f for f in filenames if os.path.isfile(f) and not os.path.islink(f)] - -for fname in filenames: - try: - certDigest = pemFileHash(fname) - if certDigest not in hash2cert: - print fname - hash2cert[certDigest] = fname - except: - logging.exception("Failed to process certificate file %s" % fname) - diff --git a/test/rules/checker.config.sample b/test/rules/checker.config.sample index 79bf9191a9bd..d75bbf49f604 100644 --- a/test/rules/checker.config.sample +++ b/test/rules/checker.config.sample @@ -34,7 +34,9 @@ connect_timeout = 10 read_timeout = 15 redirect_depth = 10 threads = 10 -#user_agent = Mozilla/5.0 (X11; Linux x86_64; rv:14.0) Gecko/20100101 Firefox/14.0.1 +# user_agent should be that of the latest ESR version on which TBB is based on. +# https://blog.torproject.org/browser-fingerprinting-introduction-and-challenges-ahead +#user_agent = Mozilla/5.0 (Windows NT 10.0; rv:68.0) Gecko/20100101 Firefox/68.0 #curl_verbose = true #ssl_version = TLSv1 fetch_in_subprocess = true diff --git a/test/rules/coverage.checker.config b/test/rules/coverage.checker.config index f269915cf93b..8b73bf7cff06 100644 --- a/test/rules/coverage.checker.config +++ b/test/rules/coverage.checker.config @@ -4,17 +4,20 @@ [rulesets] rulesdir = src/chrome/content/rules check_coverage = true +check_target_validity = true check_nonmatch_groups = true check_test_formatting = true include_default_off = false -skiplist = utils/ruleset-whitelist.csv +skiplist = utils/ruleset-allowlist.csv skipfield = 1 [certificates] basedir = test/rules/platform_certs [http] -user_agent = Mozilla/5.0 (X11; Linux x86_64; rv:36.0) Gecko/20100101 Firefox/36.0 +# user_agent should be that of the latest ESR version on which TBB is based on. +# https://blog.torproject.org/browser-fingerprinting-introduction-and-challenges-ahead +user_agent = Mozilla/5.0 (Windows NT 10.0; rv:68.0) Gecko/20100101 Firefox/68.0 # Don't bother doing HTTP, we are just checking coverage and want it to be fast. enabled = false connect_timeout = 20 diff --git a/test/rules/curl_test_nss/cacert/cacert1.pem b/test/rules/curl_test_nss/cacert/cacert1.pem deleted file mode 100644 index e7dfc82947e3..000000000000 --- a/test/rules/curl_test_nss/cacert/cacert1.pem +++ /dev/null @@ -1,41 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIHPTCCBSWgAwIBAgIBADANBgkqhkiG9w0BAQQFADB5MRAwDgYDVQQKEwdSb290 -IENBMR4wHAYDVQQLExVodHRwOi8vd3d3LmNhY2VydC5vcmcxIjAgBgNVBAMTGUNB -IENlcnQgU2lnbmluZyBBdXRob3JpdHkxITAfBgkqhkiG9w0BCQEWEnN1cHBvcnRA -Y2FjZXJ0Lm9yZzAeFw0wMzAzMzAxMjI5NDlaFw0zMzAzMjkxMjI5NDlaMHkxEDAO -BgNVBAoTB1Jvb3QgQ0ExHjAcBgNVBAsTFWh0dHA6Ly93d3cuY2FjZXJ0Lm9yZzEi -MCAGA1UEAxMZQ0EgQ2VydCBTaWduaW5nIEF1dGhvcml0eTEhMB8GCSqGSIb3DQEJ -ARYSc3VwcG9ydEBjYWNlcnQub3JnMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC -CgKCAgEAziLA4kZ97DYoB1CW8qAzQIxL8TtmPzHlawI229Z89vGIj053NgVBlfkJ -8BLPRoZzYLdufujAWGSuzbCtRRcMY/pnCujW0r8+55jE8Ez64AO7NV1sId6eINm6 -zWYyN3L69wj1x81YyY7nDl7qPv4coRQKFWyGhFtkZip6qUtTefWIonvuLwphK42y -fk1WpRPs6tqSnqxEQR5YYGUFZvjARL3LlPdCfgv3ZWiYUQXw8wWRBB0bF4LsyFe7 -w2t6iPGwcswlWyCR7BYCEo8y6RcYSNDHBS4CMEK4JZwFaz+qOqfrU0j36NK2B5jc -G8Y0f3/JHIJ6BVgrCFvzOKKrF11myZjXnhCLotLddJr3cQxyYN/Nb5gznZY0dj4k -epKwDpUeb+agRThHqtdB7Uq3EvbXG4OKDy7YCbZZ16oE/9KTfWgu3YtLq1i6L43q -laegw1SJpfvbi1EinbLDvhG+LJGGi5Z4rSDTii8aP8bQUWWHIbEZAWV/RRyH9XzQ -QUxPKZgh/TMfdQwEUfoZd9vUFBzugcMd9Zi3aQaRIt0AUMyBMawSB3s42mhb5ivU -fslfrejrckzzAeVLIL+aplfKkQABi6F1ITe1Yw1nPkZPcCBnzsXWWdsC4PDSy826 -YreQQejdIOQpvGQpQsgi3Hia/0PsmBsJUUtaWsJx8cTLc6nloQsCAwEAAaOCAc4w -ggHKMB0GA1UdDgQWBBQWtTIb1Mfz4OaO873SsDrusjkY0TCBowYDVR0jBIGbMIGY -gBQWtTIb1Mfz4OaO873SsDrusjkY0aF9pHsweTEQMA4GA1UEChMHUm9vdCBDQTEe -MBwGA1UECxMVaHR0cDovL3d3dy5jYWNlcnQub3JnMSIwIAYDVQQDExlDQSBDZXJ0 -IFNpZ25pbmcgQXV0aG9yaXR5MSEwHwYJKoZIhvcNAQkBFhJzdXBwb3J0QGNhY2Vy -dC5vcmeCAQAwDwYDVR0TAQH/BAUwAwEB/zAyBgNVHR8EKzApMCegJaAjhiFodHRw -czovL3d3dy5jYWNlcnQub3JnL3Jldm9rZS5jcmwwMAYJYIZIAYb4QgEEBCMWIWh0 -dHBzOi8vd3d3LmNhY2VydC5vcmcvcmV2b2tlLmNybDA0BglghkgBhvhCAQgEJxYl -aHR0cDovL3d3dy5jYWNlcnQub3JnL2luZGV4LnBocD9pZD0xMDBWBglghkgBhvhC -AQ0ESRZHVG8gZ2V0IHlvdXIgb3duIGNlcnRpZmljYXRlIGZvciBGUkVFIGhlYWQg -b3ZlciB0byBodHRwOi8vd3d3LmNhY2VydC5vcmcwDQYJKoZIhvcNAQEEBQADggIB -ACjH7pyCArpcgBLKNQodgW+JapnM8mgPf6fhjViVPr3yBsOQWqy1YPaZQwGjiHCc -nWKdpIevZ1gNMDY75q1I08t0AoZxPuIrA2jxNGJARjtT6ij0rPtmlVOKTV39O9lg -18p5aTuxZZKmxoGCXJzN600BiqXfEVWqFcofN8CCmHBh22p8lqOOLlQ+TyGpkO/c -gr/c6EWtTZBzCDyUZbAEmXZ/4rzCahWqlwQ3JNgelE5tDlG+1sSPypZt90Pf6DBl -Jzt7u0NDY8RD97LsaMzhGY4i+5jhe1o+ATc7iwiwovOVThrLm82asduycPAtStvY -sONvRUgzEv/+PDIqVPfE94rwiCPCR/5kenHA0R6mY7AHfqQv0wGP3J8rtsYIqQ+T -SCX8Ev2fQtzzxD72V7DX3WnRBnc0CkvSyqD/HMaMyRa+xMwyN2hzXwj7UfdJUzYF -CpUCTPJ5GhD22Dp1nPMd8aINcGeGG7MW9S/lpOt5hvk9C8JzC6WZrG/8Z7jlLwum -GCSNe9FINSkYQKyTYOGWhlC0elnYjyELn8+CkcY7v2vcB5G5l1YjqrZslMZIBjzk -zk6q5PYvCdxTby78dOs6Y5nCpqyJvKeyRKANihDjbPIky/qbn3BHLt4Ui9SyIAmW -omTxJBzcoTWcFbLUvFUufQb1nA5V9FrWk9p2rSVzTMVD ------END CERTIFICATE----- diff --git a/test/rules/curl_test_nss/cacert/cacert2.pem b/test/rules/curl_test_nss/cacert/cacert2.pem deleted file mode 100644 index 35e2689d98ff..000000000000 --- a/test/rules/curl_test_nss/cacert/cacert2.pem +++ /dev/null @@ -1,35 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIGCDCCA/CgAwIBAgIBATANBgkqhkiG9w0BAQQFADB5MRAwDgYDVQQKEwdSb290 -IENBMR4wHAYDVQQLExVodHRwOi8vd3d3LmNhY2VydC5vcmcxIjAgBgNVBAMTGUNB -IENlcnQgU2lnbmluZyBBdXRob3JpdHkxITAfBgkqhkiG9w0BCQEWEnN1cHBvcnRA -Y2FjZXJ0Lm9yZzAeFw0wNTEwMTQwNzM2NTVaFw0zMzAzMjgwNzM2NTVaMFQxFDAS -BgNVBAoTC0NBY2VydCBJbmMuMR4wHAYDVQQLExVodHRwOi8vd3d3LkNBY2VydC5v -cmcxHDAaBgNVBAMTE0NBY2VydCBDbGFzcyAzIFJvb3QwggIiMA0GCSqGSIb3DQEB -AQUAA4ICDwAwggIKAoICAQCrSTURSHzSJn5TlM9Dqd0o10Iqi/OHeBlYfA+e2ol9 -4fvrcpANdKGWZKufoCSZc9riVXbHF3v1BKxGuMO+f2SNEGwk82GcwPKQ+lHm9WkB -Y8MPVuJKQs/iRIwlKKjFeQl9RrmK8+nzNCkIReQcn8uUBByBqBSzmGXEQ+xOgo0J -0b2qW42S0OzekMV/CsLj6+YxWl50PpczWejDAz1gM7/30W9HxM3uYoNSbi4ImqTZ -FRiRpoWSR7CuSOtttyHshRpocjWr//AQXcD0lKdq1TuSfkyQBX6TwSyLpI5idBVx -bgtxA+qvFTia1NIFcm+M+SvrWnIl+TlG43IbPgTDZCciECqKT1inA62+tC4T7V2q -SNfVfdQqe1z6RgRQ5MwOQluM7dvyz/yWk+DbETZUYjQ4jwxgmzuXVjit89Jbi6Bb -6k6WuHzX1aCGcEDTkSm3ojyt9Yy7zxqSiuQ0e8DYbF/pCsLDpyCaWt8sXVJcukfV -m+8kKHA4IC/VfynAskEDaJLM4JzMl0tF7zoQCqtwOpiVcK01seqFK6QcgCExqa5g -eoAmSAC4AcCTY1UikTxW56/bOiXzjzFU6iaLgVn5odFTEcV7nQP2dBHgbbEsPyyG -kZlxmqZ3izRg0RS0LKydr4wQ05/EavhvE/xzWfdmQnQeiuP43NJvmJzLR5iVQAX7 -6QIDAQABo4G/MIG8MA8GA1UdEwEB/wQFMAMBAf8wXQYIKwYBBQUHAQEEUTBPMCMG -CCsGAQUFBzABhhdodHRwOi8vb2NzcC5DQWNlcnQub3JnLzAoBggrBgEFBQcwAoYc -aHR0cDovL3d3dy5DQWNlcnQub3JnL2NhLmNydDBKBgNVHSAEQzBBMD8GCCsGAQQB -gZBKMDMwMQYIKwYBBQUHAgEWJWh0dHA6Ly93d3cuQ0FjZXJ0Lm9yZy9pbmRleC5w -aHA/aWQ9MTAwDQYJKoZIhvcNAQEEBQADggIBAH8IiKHaGlBJ2on7oQhy84r3HsQ6 -tHlbIDCxRd7CXdNlafHCXVRUPIVfuXtCkcKZ/RtRm6tGpaEQU55tiKxzbiwzpvD0 -nuB1wT6IRanhZkP+VlrRekF490DaSjrxC1uluxYG5sLnk7mFTZdPsR44Q4Dvmw2M -77inYACHV30eRBzLI++bPJmdr7UpHEV5FpZNJ23xHGzDwlVks7wU4vOkHx4y/CcV -Bc/dLq4+gmF78CEQGPZE6lM5+dzQmiDgxrvgu1pPxJnIB721vaLbLmINQjRBvP+L -ivVRIqqIMADisNS8vmW61QNXeZvo3MhN+FDtkaVSKKKs+zZYPumUK5FQhxvWXtaM -zPcPEAxSTtAWYeXlCmy/F8dyRlecmPVsYGN6b165Ti/Iubm7aoW8mA3t+T6XhDSU -rgCvoeXnkm5OvfPi2RSLXNLrAWygF6UtEOucekq9ve7O/e0iQKtwOIj1CodqwqsF -YMlIBdpTwd5Ed2qz8zw87YC8pjhKKSRf/lk7myV6VmMAZLldpGJ9VzZPrYPvH5JT -oI53V93lYRE9IwCQTDz6o2CTBKOvNfYOao9PSmCnhQVsRqGP9Md246FZV/dxssRu -FFxtbUFm3xuTsdQAw+7Lzzw9IYCpX2Nl/N3gX6T0K/CFcUHUZyX7GrGXrtaZghNB -0m6lG5kngOcLqagA ------END CERTIFICATE----- diff --git a/test/rules/curl_test_nss/cacert/cacert3.pem b/test/rules/curl_test_nss/cacert/cacert3.pem deleted file mode 100644 index 087ca0e52a57..000000000000 --- a/test/rules/curl_test_nss/cacert/cacert3.pem +++ /dev/null @@ -1,42 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIHWTCCBUGgAwIBAgIDCkGKMA0GCSqGSIb3DQEBCwUAMHkxEDAOBgNVBAoTB1Jv -b3QgQ0ExHjAcBgNVBAsTFWh0dHA6Ly93d3cuY2FjZXJ0Lm9yZzEiMCAGA1UEAxMZ -Q0EgQ2VydCBTaWduaW5nIEF1dGhvcml0eTEhMB8GCSqGSIb3DQEJARYSc3VwcG9y -dEBjYWNlcnQub3JnMB4XDTExMDUyMzE3NDgwMloXDTIxMDUyMDE3NDgwMlowVDEU -MBIGA1UEChMLQ0FjZXJ0IEluYy4xHjAcBgNVBAsTFWh0dHA6Ly93d3cuQ0FjZXJ0 -Lm9yZzEcMBoGA1UEAxMTQ0FjZXJ0IENsYXNzIDMgUm9vdDCCAiIwDQYJKoZIhvcN -AQEBBQADggIPADCCAgoCggIBAKtJNRFIfNImflOUz0Op3SjXQiqL84d4GVh8D57a -iX3h++tykA10oZZkq5+gJJlz2uJVdscXe/UErEa4w75/ZI0QbCTzYZzA8pD6Ueb1 -aQFjww9W4kpCz+JEjCUoqMV5CX1GuYrz6fM0KQhF5Byfy5QEHIGoFLOYZcRD7E6C -jQnRvapbjZLQ7N6QxX8KwuPr5jFaXnQ+lzNZ6MMDPWAzv/fRb0fEze5ig1JuLgia -pNkVGJGmhZJHsK5I6223IeyFGmhyNav/8BBdwPSUp2rVO5J+TJAFfpPBLIukjmJ0 -FXFuC3ED6q8VOJrU0gVyb4z5K+taciX5OUbjchs+BMNkJyIQKopPWKcDrb60LhPt -XapI19V91Cp7XPpGBFDkzA5CW4zt2/LP/JaT4NsRNlRiNDiPDGCbO5dWOK3z0luL -oFvqTpa4fNfVoIZwQNORKbeiPK31jLvPGpKK5DR7wNhsX+kKwsOnIJpa3yxdUly6 -R9Wb7yQocDggL9V/KcCyQQNokszgnMyXS0XvOhAKq3A6mJVwrTWx6oUrpByAITGp -rmB6gCZIALgBwJNjVSKRPFbnr9s6JfOPMVTqJouBWfmh0VMRxXudA/Z0EeBtsSw/ -LIaRmXGapneLNGDRFLQsrJ2vjBDTn8Rq+G8T/HNZ92ZCdB6K4/jc0m+YnMtHmJVA -BfvpAgMBAAGjggINMIICCTAdBgNVHQ4EFgQUdahxYEyIE/B42Yl3tW3Fid+8sXow -gaMGA1UdIwSBmzCBmIAUFrUyG9TH8+DmjvO90rA67rI5GNGhfaR7MHkxEDAOBgNV -BAoTB1Jvb3QgQ0ExHjAcBgNVBAsTFWh0dHA6Ly93d3cuY2FjZXJ0Lm9yZzEiMCAG -A1UEAxMZQ0EgQ2VydCBTaWduaW5nIEF1dGhvcml0eTEhMB8GCSqGSIb3DQEJARYS -c3VwcG9ydEBjYWNlcnQub3JnggEAMA8GA1UdEwEB/wQFMAMBAf8wXQYIKwYBBQUH -AQEEUTBPMCMGCCsGAQUFBzABhhdodHRwOi8vb2NzcC5DQWNlcnQub3JnLzAoBggr -BgEFBQcwAoYcaHR0cDovL3d3dy5DQWNlcnQub3JnL2NhLmNydDBKBgNVHSAEQzBB -MD8GCCsGAQQBgZBKMDMwMQYIKwYBBQUHAgEWJWh0dHA6Ly93d3cuQ0FjZXJ0Lm9y -Zy9pbmRleC5waHA/aWQ9MTAwNAYJYIZIAYb4QgEIBCcWJWh0dHA6Ly93d3cuQ0Fj -ZXJ0Lm9yZy9pbmRleC5waHA/aWQ9MTAwUAYJYIZIAYb4QgENBEMWQVRvIGdldCB5 -b3VyIG93biBjZXJ0aWZpY2F0ZSBmb3IgRlJFRSwgZ28gdG8gaHR0cDovL3d3dy5D -QWNlcnQub3JnMA0GCSqGSIb3DQEBCwUAA4ICAQApKIWuRKm5r6R5E/CooyuXYPNc -7uMvwfbiZqARrjY3OnYVBFPqQvX56sAV2KaC2eRhrnILKVyQQ+hBsuF32wITRHhH -Va9Y/MyY9kW50SD42CEH/m2qc9SzxgfpCYXMO/K2viwcJdVxjDm1Luq+GIG6sJO4 -D+Pm1yaMMVpyA4RS5qb1MyJFCsgLDYq4Nm+QCaGrvdfVTi5xotSu+qdUK+s1jVq3 -VIgv7nSf7UgWyg1I0JTTrKSi9iTfkuO960NAkW4cGI5WtIIS86mTn9S8nK2cde5a -lxuV53QtHA+wLJef+6kzOXrnAzqSjiL2jA3k2X4Ndhj3AfnvlpaiVXPAPHG0HRpW -Q7fDCo1y/OIQCQtBzoyUoPkD/XFzS4pXM+WOdH4VAQDmzEoc53+VGS3FpQyLu7Xt -hbNc09+4ufLKxw0BFKxwWMWMjTPUnWajGlCVI/xI4AZDEtnNp4Y5LzZyo4AQ5OHz -0ctbGsDkgJp8E3MGT9ujayQKurMcvEp4u+XjdTilSKeiHq921F73OIZWWonO1sOn -ebJSoMbxhbQljPI/lrMQ2Y1sVzufb4Y6GIIiNsiwkTjbKqGTqoQ/9SdlrnPVyNXT -d+pLncdBu8fA46A/5H2kjXPmEkvfoXNzczqA6NXLji/L6hOn1kGLrPo8idck9U60 -4GGSt/M3mMS+lqO3ig== ------END CERTIFICATE----- diff --git a/test/rules/curl_test_nss/curl_testcase_nss_sni.py b/test/rules/curl_test_nss/curl_testcase_nss_sni.py deleted file mode 100755 index bf4195c954c7..000000000000 --- a/test/rules/curl_test_nss/curl_testcase_nss_sni.py +++ /dev/null @@ -1,43 +0,0 @@ -#!/usr/bin/env python2.7 -import pycurl -import cStringIO - -""" Test case showing the CURL+NSS bug with SNI and FQDNs sharing IP address """ - -def curlRequest(url): - buf = cStringIO.StringIO() - headers = cStringIO.StringIO() - - c = pycurl.Curl() - c.setopt(c.URL, url) - c.setopt(c.VERBOSE, 1) - c.setopt(c.WRITEFUNCTION, buf.write) - c.setopt(c.HEADERFUNCTION, headers.write) - c.setopt(c.CONNECTTIMEOUT, 5) - c.setopt(c.TIMEOUT, 8) - c.setopt(c.CAPATH, "cacert/") - # Even though the bug is caused by SSL session IDs and session resume, the - # following option doesn't help, it's somehow "ignored" - #c.setopt(c.SSL_SESSIONID_CACHE, 0) - # Turning off certchain validation turns off SSL session IDs and the HTTP - # 400 thus vanishes: - #c.setopt(c.SSL_VERIFYPEER, 0) - #c.setopt(c.SSL_VERIFYHOST, 0) - # Also using SSLv3 instead of TLSv1 is a "workaround" for the HTTP 400: - #c.setopt(c.SSLVERSION, c.SSLVERSION_SSLv3) - c.perform() - - bufData = buf.getvalue() - headerData = headers.getvalue() - buf.close() - headers.close() - c.close() - - return (bufData, headerData) - -(data, headers) = curlRequest("https://wiki.vorratsdatenspeicherung.de") -print "=== Data length: ", len(data) -# This will return HTTP 400 if CURL was linked with NSS -(data, headers) = curlRequest("https://www.vorratsdatenspeicherung.de") -print "=== Data length: ", len(data) - diff --git a/test/rules/disable-broken-rulesets.checker.config b/test/rules/disable-broken-rulesets.checker.config index 39a5c63bde66..f9156a3e4f62 100644 --- a/test/rules/disable-broken-rulesets.checker.config +++ b/test/rules/disable-broken-rulesets.checker.config @@ -18,6 +18,7 @@ read_timeout = 30 redirect_depth = 10 threads = 20 fetch_in_subprocess = false +ssl_version = TLSv1_2 [log] logfile = - diff --git a/test/rules/http.checker.config b/test/rules/http.checker.config index 186b55281839..ecdd8e36d802 100644 --- a/test/rules/http.checker.config +++ b/test/rules/http.checker.config @@ -8,7 +8,7 @@ check_nonmatch_groups = false check_test_formatting = false auto_disable = false include_default_off = false -skiplist = utils/ruleset-whitelist.csv +skiplist = utils/ruleset-allowlist.csv skipfield = 2 [certificates] @@ -16,13 +16,16 @@ skipfield = 2 basedir = test/rules/platform_certs [http] -user_agent = Mozilla/5.0 (X11; Linux x86_64; rv:36.0) Gecko/20100101 Firefox/36.0 +# user_agent should be that of the latest ESR version on which TBB is based on. +# https://blog.torproject.org/browser-fingerprinting-introduction-and-challenges-ahead +user_agent = Mozilla/5.0 (Windows NT 10.0; rv:68.0) Gecko/20100101 Firefox/68.0 enabled = true connect_timeout = 20 read_timeout = 30 redirect_depth = 10 threads = 40 fetch_in_subprocess = false +ssl_version = TLSv1_2 [log] logfile = - diff --git a/test/rules/manual.checker.config b/test/rules/manual.checker.config index 74db4990a611..74066fc6ae43 100644 --- a/test/rules/manual.checker.config +++ b/test/rules/manual.checker.config @@ -6,13 +6,16 @@ rulesdir = src/chrome/content/rules check_coverage = true auto_disable = false include_default_off = true +check_target_validity = true [certificates] # Certificate trust anchors for checking chains in HTTPS connections basedir = test/rules/platform_certs [http] -user_agent = Mozilla/5.0 (X11; Linux x86_64; rv:36.0) Gecko/20100101 Firefox/36.0 +# user_agent should be that of the latest ESR version on which TBB is based on. +# https://blog.torproject.org/browser-fingerprinting-introduction-and-challenges-ahead +user_agent = Mozilla/5.0 (Windows NT 10.0; rv:68.0) Gecko/20100101 Firefox/68.0 enabled = true connect_timeout = 20 read_timeout = 30 diff --git a/test/rules/platform_certs/FF_transvalid.tar.bz2 b/test/rules/platform_certs/FF_transvalid.tar.bz2 deleted file mode 100644 index a1bebf69560a..000000000000 Binary files a/test/rules/platform_certs/FF_transvalid.tar.bz2 and /dev/null differ diff --git a/test/rules/platform_certs/cacert/024dc131.0 b/test/rules/platform_certs/cacert/024dc131.0 deleted file mode 120000 index 6d0189fb7b68..000000000000 --- a/test/rules/platform_certs/cacert/024dc131.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-134_Microsec e-Szigno Root CA_Microsec Ltd.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/039c618a.0 b/test/rules/platform_certs/cacert/039c618a.0 deleted file mode 120000 index 9dfccc4f33d9..000000000000 --- a/test/rules/platform_certs/cacert/039c618a.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-063_TÜRKTRUST.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/03f0efa4.0 b/test/rules/platform_certs/cacert/03f0efa4.0 deleted file mode 120000 index 15ddf9aed482..000000000000 --- a/test/rules/platform_certs/cacert/03f0efa4.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-023_Wells Fargo Root Certificate Authority_Wells Fargo.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/062cdee6.0 b/test/rules/platform_certs/cacert/062cdee6.0 deleted file mode 120000 index 47b1577011ef..000000000000 --- a/test/rules/platform_certs/cacert/062cdee6.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-053_GlobalSign_GlobalSign.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/080911ac.0 b/test/rules/platform_certs/cacert/080911ac.0 deleted file mode 120000 index 6bab348d3975..000000000000 --- a/test/rules/platform_certs/cacert/080911ac.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-037_QuoVadis Root Certification Authority_QuoVadis Limited.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/0810ba98.0 b/test/rules/platform_certs/cacert/0810ba98.0 deleted file mode 120000 index 5495374c6604..000000000000 --- a/test/rules/platform_certs/cacert/0810ba98.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-127_Root CA Generalitat Valenciana_Generalitat Valenciana.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/09789157.0 b/test/rules/platform_certs/cacert/09789157.0 deleted file mode 120000 index 5ac973b0d36f..000000000000 --- a/test/rules/platform_certs/cacert/09789157.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-095_Starfield Services Root Certificate Authority - G2_Starfield Technologies, Inc.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/0979f948.0 b/test/rules/platform_certs/cacert/0979f948.0 deleted file mode 120000 index 006a77ea8ff5..000000000000 --- a/test/rules/platform_certs/cacert/0979f948.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-001_Akamai Subordinate CA 3_Akamai Technologies Inc.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/0b759015.0 b/test/rules/platform_certs/cacert/0b759015.0 deleted file mode 120000 index b6219d43c3b0..000000000000 --- a/test/rules/platform_certs/cacert/0b759015.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-084_e-Guven Kok Elektronik Sertifika Hizmet Saglayicisi_Elektronik Bilgi Guvenligi A.S.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/0c4c9b6c.0 b/test/rules/platform_certs/cacert/0c4c9b6c.0 deleted file mode 120000 index d7772280e465..000000000000 --- a/test/rules/platform_certs/cacert/0c4c9b6c.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-152_Global Chambersign Root - 2008_AC Camerfirma S.A.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/0d1b923b.0 b/test/rules/platform_certs/cacert/0d1b923b.0 deleted file mode 120000 index d98dd1730a40..000000000000 --- a/test/rules/platform_certs/cacert/0d1b923b.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-058_S-TRUST Authentication and Encryption Root CA 2005-PN_Deutscher Sparkassen Verlag GmbH.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/116bf586.0 b/test/rules/platform_certs/cacert/116bf586.0 deleted file mode 120000 index ff8767595a5c..000000000000 --- a/test/rules/platform_certs/cacert/116bf586.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-096_GeoTrust Primary Certification Authority - G2_GeoTrust Inc.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/157753a5.0 b/test/rules/platform_certs/cacert/157753a5.0 deleted file mode 120000 index 01049dab7cbe..000000000000 --- a/test/rules/platform_certs/cacert/157753a5.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-155_AddTrust External CA Root_AddTrust AB.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/1636090b.0 b/test/rules/platform_certs/cacert/1636090b.0 deleted file mode 120000 index 635418ccc9cf..000000000000 --- a/test/rules/platform_certs/cacert/1636090b.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-040_Hellenic Academic and Research Institutions RootCA 2011_Hellenic Academic and Research Institutions Cert. Authority.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/17974aab.0 b/test/rules/platform_certs/cacert/17974aab.0 deleted file mode 120000 index 31d702dcb1ea..000000000000 --- a/test/rules/platform_certs/cacert/17974aab.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-003_Google Internet Authority_Google Inc.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/18856ac4.0 b/test/rules/platform_certs/cacert/18856ac4.0 deleted file mode 120000 index 18f4ab0b8c59..000000000000 --- a/test/rules/platform_certs/cacert/18856ac4.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-144_SecureSign RootCA11_Japan Certification Services, Inc.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/1ec4d31a.0 b/test/rules/platform_certs/cacert/1ec4d31a.0 deleted file mode 120000 index c9323c597ed5..000000000000 --- a/test/rules/platform_certs/cacert/1ec4d31a.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-094_VeriSign, Inc.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/201cada0.0 b/test/rules/platform_certs/cacert/201cada0.0 deleted file mode 120000 index a0b20eb3c665..000000000000 --- a/test/rules/platform_certs/cacert/201cada0.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-162_America Online Root Certification Authority 2_America Online Inc.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/20533f91.0 b/test/rules/platform_certs/cacert/20533f91.0 deleted file mode 120000 index ebc335b087a4..000000000000 --- a/test/rules/platform_certs/cacert/20533f91.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-151_DigiNotar Services 1024 CA_DigiNotar.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/20d096ba.0 b/test/rules/platform_certs/cacert/20d096ba.0 deleted file mode 120000 index f20ef6300e72..000000000000 --- a/test/rules/platform_certs/cacert/20d096ba.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-173_http---www.valicert.com-_ValiCert, Inc.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/2251b13a.0 b/test/rules/platform_certs/cacert/2251b13a.0 deleted file mode 120000 index 00b2620eae00..000000000000 --- a/test/rules/platform_certs/cacert/2251b13a.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-018_ComSign Secured CA_ComSign.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/244b5494.0 b/test/rules/platform_certs/cacert/244b5494.0 deleted file mode 120000 index b35ec1d89cc5..000000000000 --- a/test/rules/platform_certs/cacert/244b5494.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-150_DigiCert High Assurance EV Root CA_DigiCert Inc.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/24ad0b63.0 b/test/rules/platform_certs/cacert/24ad0b63.0 deleted file mode 120000 index e39ef2280def..000000000000 --- a/test/rules/platform_certs/cacert/24ad0b63.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-086_VeriSign, Inc.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/2ab3b959.0 b/test/rules/platform_certs/cacert/2ab3b959.0 deleted file mode 120000 index 6dafc3f28fdb..000000000000 --- a/test/rules/platform_certs/cacert/2ab3b959.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-026_NetLock Expressz (Class C) Tanusitvanykiado_NetLock Halozatbiztonsagi Kft.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/2b349938.0 b/test/rules/platform_certs/cacert/2b349938.0 deleted file mode 120000 index e95f27694487..000000000000 --- a/test/rules/platform_certs/cacert/2b349938.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-008_AffirmTrust Commercial_AffirmTrust.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/2c3e3f84.0 b/test/rules/platform_certs/cacert/2c3e3f84.0 deleted file mode 120000 index 09759c83c900..000000000000 --- a/test/rules/platform_certs/cacert/2c3e3f84.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-109_UTN-USERFirst-Object_The USERTRUST Network.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/2c543cd1.0 b/test/rules/platform_certs/cacert/2c543cd1.0 deleted file mode 120000 index a9f2c096819a..000000000000 --- a/test/rules/platform_certs/cacert/2c543cd1.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-050_GeoTrust Global CA_GeoTrust Inc.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/2cfc4974.0 b/test/rules/platform_certs/cacert/2cfc4974.0 deleted file mode 120000 index b7376048f5fc..000000000000 --- a/test/rules/platform_certs/cacert/2cfc4974.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-057_TDC OCES CA_TDC.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/2e4eed3c.0 b/test/rules/platform_certs/cacert/2e4eed3c.0 deleted file mode 120000 index 92b38bb7f14c..000000000000 --- a/test/rules/platform_certs/cacert/2e4eed3c.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-098_thawte Primary Root CA_thawte, Inc.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/2e5ac55d.0 b/test/rules/platform_certs/cacert/2e5ac55d.0 deleted file mode 120000 index 1128f653a65f..000000000000 --- a/test/rules/platform_certs/cacert/2e5ac55d.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-171_DST Root CA X3_Digital Signature Trust Co.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/349f2832.0 b/test/rules/platform_certs/cacert/349f2832.0 deleted file mode 120000 index 12f75068daca..000000000000 --- a/test/rules/platform_certs/cacert/349f2832.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-019_EC-ACC_Agencia Catalana de Certificacio (NIF Q-0801176-I).pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/3513523f.0 b/test/rules/platform_certs/cacert/3513523f.0 deleted file mode 120000 index e496138d8eba..000000000000 --- a/test/rules/platform_certs/cacert/3513523f.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-062_DigiCert Global Root CA_DigiCert Inc.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/381ce4dd.0 b/test/rules/platform_certs/cacert/381ce4dd.0 deleted file mode 120000 index 55c9c41bb996..000000000000 --- a/test/rules/platform_certs/cacert/381ce4dd.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-054_ACEDICOM Root_EDICOM.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/3b2716e5.0 b/test/rules/platform_certs/cacert/3b2716e5.0 deleted file mode 120000 index a4e1338084f5..000000000000 --- a/test/rules/platform_certs/cacert/3b2716e5.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-010_EBG Elektronik Sertifika Hizmet Sağlayıcısı_EBG Bilişim Teknolojileri ve Hizmetleri A.Ş.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/3bde41ac.0 b/test/rules/platform_certs/cacert/3bde41ac.0 deleted file mode 120000 index d74cc2199808..000000000000 --- a/test/rules/platform_certs/cacert/3bde41ac.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-141_Autoridad de Certificacion Firmaprofesional CIF A62634068.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/3e45d192.0 b/test/rules/platform_certs/cacert/3e45d192.0 deleted file mode 120000 index 449759f7648c..000000000000 --- a/test/rules/platform_certs/cacert/3e45d192.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-125_Hongkong Post Root CA 1_Hongkong Post.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/3ee7e181.0 b/test/rules/platform_certs/cacert/3ee7e181.0 deleted file mode 120000 index 9f0fb7c77c45..000000000000 --- a/test/rules/platform_certs/cacert/3ee7e181.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-046_IGC-A_PM-SGDN.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/40547a79.0 b/test/rules/platform_certs/cacert/40547a79.0 deleted file mode 120000 index b57a35f38c46..000000000000 --- a/test/rules/platform_certs/cacert/40547a79.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-132_COMODO Certification Authority_COMODO CA Limited.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/415660c1.0 b/test/rules/platform_certs/cacert/415660c1.0 deleted file mode 120000 index e39b2b21389e..000000000000 --- a/test/rules/platform_certs/cacert/415660c1.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-078_VeriSign, Inc.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/415660c1.1 b/test/rules/platform_certs/cacert/415660c1.1 deleted file mode 120000 index ec6c6568c9f5..000000000000 --- a/test/rules/platform_certs/cacert/415660c1.1 +++ /dev/null @@ -1 +0,0 @@ -Cert-100_VeriSign, Inc.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/4304c5e5.0 b/test/rules/platform_certs/cacert/4304c5e5.0 deleted file mode 120000 index bd1e2b934e26..000000000000 --- a/test/rules/platform_certs/cacert/4304c5e5.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-065_Network Solutions Certificate Authority_Network Solutions L.L.C.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/442adcac.0 b/test/rules/platform_certs/cacert/442adcac.0 deleted file mode 120000 index 4e2eeb062ee8..000000000000 --- a/test/rules/platform_certs/cacert/442adcac.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-024_Certum CA_Unizeto Sp. z o.o.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/4597689c.0 b/test/rules/platform_certs/cacert/4597689c.0 deleted file mode 120000 index c132031f8bdd..000000000000 --- a/test/rules/platform_certs/cacert/4597689c.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-059_Equifax Secure.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/46f053f0.0 b/test/rules/platform_certs/cacert/46f053f0.0 deleted file mode 120000 index 68032ae6dc7d..000000000000 --- a/test/rules/platform_certs/cacert/46f053f0.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-106_DigiNotar Root CA_DigiNotar.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/480720ec.0 b/test/rules/platform_certs/cacert/480720ec.0 deleted file mode 120000 index 23ea788c1586..000000000000 --- a/test/rules/platform_certs/cacert/480720ec.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-130_GeoTrust Primary Certification Authority_GeoTrust Inc.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/48bec511.0 b/test/rules/platform_certs/cacert/48bec511.0 deleted file mode 120000 index 4d2a54f0590b..000000000000 --- a/test/rules/platform_certs/cacert/48bec511.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-164_Certum Trusted Network CA_Unizeto Technologies S.A.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/4a6481c9.0 b/test/rules/platform_certs/cacert/4a6481c9.0 deleted file mode 120000 index dbc32b8cce18..000000000000 --- a/test/rules/platform_certs/cacert/4a6481c9.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-066_GlobalSign_GlobalSign.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/4bfab552.0 b/test/rules/platform_certs/cacert/4bfab552.0 deleted file mode 120000 index a18ef4893b2e..000000000000 --- a/test/rules/platform_certs/cacert/4bfab552.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-131_Starfield Root Certificate Authority - G2_Starfield Technologies, Inc.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/4f316efb.0 b/test/rules/platform_certs/cacert/4f316efb.0 deleted file mode 120000 index 7ad45aefeeda..000000000000 --- a/test/rules/platform_certs/cacert/4f316efb.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-055_SwissSign Gold CA - G2_SwissSign AG.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/55a10908.0 b/test/rules/platform_certs/cacert/55a10908.0 deleted file mode 120000 index 0d3fdd6939e3..000000000000 --- a/test/rules/platform_certs/cacert/55a10908.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-104_http---www.valicert.com-_ValiCert, Inc.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/5620c4aa.0 b/test/rules/platform_certs/cacert/5620c4aa.0 deleted file mode 120000 index a420c57b7792..000000000000 --- a/test/rules/platform_certs/cacert/5620c4aa.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-169_TC TrustCenter Class 3 CA II_TC TrustCenter GmbH.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/56657bde.0 b/test/rules/platform_certs/cacert/56657bde.0 deleted file mode 120000 index 239ef9e6e534..000000000000 --- a/test/rules/platform_certs/cacert/56657bde.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-088_Trusted Certificate Services_Comodo CA Limited.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/578d5c04.0 b/test/rules/platform_certs/cacert/578d5c04.0 deleted file mode 120000 index c75b1d7b72a6..000000000000 --- a/test/rules/platform_certs/cacert/578d5c04.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-165_Equifax.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/57b0f75e.0 b/test/rules/platform_certs/cacert/57b0f75e.0 deleted file mode 120000 index 63f2bf821949..000000000000 --- a/test/rules/platform_certs/cacert/57b0f75e.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-103_UTN-USERFirst-Network Applications_The USERTRUST Network.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/57bbd831.0 b/test/rules/platform_certs/cacert/57bbd831.0 deleted file mode 120000 index 0487e5f8d6a8..000000000000 --- a/test/rules/platform_certs/cacert/57bbd831.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-080_Japanese Government.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/57bcb2da.0 b/test/rules/platform_certs/cacert/57bcb2da.0 deleted file mode 120000 index 1983861b99c6..000000000000 --- a/test/rules/platform_certs/cacert/57bcb2da.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-027_SwissSign Silver CA - G2_SwissSign AG.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/590d426f.0 b/test/rules/platform_certs/cacert/590d426f.0 deleted file mode 120000 index 22ec948bfc8d..000000000000 --- a/test/rules/platform_certs/cacert/590d426f.0 +++ /dev/null @@ -1 +0,0 @@ -cacert3.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/590d426f.1 b/test/rules/platform_certs/cacert/590d426f.1 deleted file mode 120000 index df704295c595..000000000000 --- a/test/rules/platform_certs/cacert/590d426f.1 +++ /dev/null @@ -1 +0,0 @@ -cacert2.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/5ad8a5d6.0 b/test/rules/platform_certs/cacert/5ad8a5d6.0 deleted file mode 120000 index 4c23196367c8..000000000000 --- a/test/rules/platform_certs/cacert/5ad8a5d6.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-113_GlobalSign Root CA_GlobalSign nv-sa.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/5c44d531.0 b/test/rules/platform_certs/cacert/5c44d531.0 deleted file mode 120000 index 69de477e60f6..000000000000 --- a/test/rules/platform_certs/cacert/5c44d531.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-145_Staat der Nederlanden Root CA - G2_Staat der Nederlanden.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/5e5a5bcb.0 b/test/rules/platform_certs/cacert/5e5a5bcb.0 deleted file mode 120000 index c3248b5ee689..000000000000 --- a/test/rules/platform_certs/cacert/5e5a5bcb.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-005_GeoTrust SSL CA_GeoTrust, Inc.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/5f267794.0 b/test/rules/platform_certs/cacert/5f267794.0 deleted file mode 120000 index 8be8d1c6402b..000000000000 --- a/test/rules/platform_certs/cacert/5f267794.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-112_Entrust.net Secure Server Certification Authority_Entrust.net.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/6410666e.0 b/test/rules/platform_certs/cacert/6410666e.0 deleted file mode 120000 index b3276def52ad..000000000000 --- a/test/rules/platform_certs/cacert/6410666e.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-153_Government Root Certification Authority.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/653b494a.0 b/test/rules/platform_certs/cacert/653b494a.0 deleted file mode 120000 index 96bba44f8e69..000000000000 --- a/test/rules/platform_certs/cacert/653b494a.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-157_Baltimore CyberTrust Root_Baltimore.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/65b876bd.0 b/test/rules/platform_certs/cacert/65b876bd.0 deleted file mode 120000 index ce22e36fe8c7..000000000000 --- a/test/rules/platform_certs/cacert/65b876bd.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-047_TÜRKTRUST.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/667c66d4.0 b/test/rules/platform_certs/cacert/667c66d4.0 deleted file mode 120000 index 0a77ebf6798e..000000000000 --- a/test/rules/platform_certs/cacert/667c66d4.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-136_Swisscom Root CA 1_Swisscom.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/67d559d1.0 b/test/rules/platform_certs/cacert/67d559d1.0 deleted file mode 120000 index 3c7b543fc037..000000000000 --- a/test/rules/platform_certs/cacert/67d559d1.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-012_Sonera Class1 CA_Sonera.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/6b99d060.0 b/test/rules/platform_certs/cacert/6b99d060.0 deleted file mode 120000 index 8a313193b693..000000000000 --- a/test/rules/platform_certs/cacert/6b99d060.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-138_Entrust Root Certification Authority_Entrust, Inc.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/6cc3c4c3.0 b/test/rules/platform_certs/cacert/6cc3c4c3.0 deleted file mode 120000 index 0c2ea8bf5cbf..000000000000 --- a/test/rules/platform_certs/cacert/6cc3c4c3.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-168_Thawte Server CA_Thawte Consulting cc.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/6e7f22c1.0 b/test/rules/platform_certs/cacert/6e7f22c1.0 deleted file mode 120000 index 275120cd134f..000000000000 --- a/test/rules/platform_certs/cacert/6e7f22c1.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-002_VeriSign Class 3 Extended Validation SSL CA_VeriSign, Inc.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/6f2c1157.0 b/test/rules/platform_certs/cacert/6f2c1157.0 deleted file mode 120000 index 719e7a36fbef..000000000000 --- a/test/rules/platform_certs/cacert/6f2c1157.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-148_AC Raíz Certicámara S.A._Sociedad Cameral de Certificación Digital - Certicámara S.A.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/706f604c.0 b/test/rules/platform_certs/cacert/706f604c.0 deleted file mode 120000 index c3bd5238238d..000000000000 --- a/test/rules/platform_certs/cacert/706f604c.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-032_XRamp Global Certification Authority_XRamp Security Services Inc.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/76cb8f92.0 b/test/rules/platform_certs/cacert/76cb8f92.0 deleted file mode 120000 index 62cf17bc61ea..000000000000 --- a/test/rules/platform_certs/cacert/76cb8f92.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-091_Cybertrust Global Root_Cybertrust, Inc.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/76faf6c0.0 b/test/rules/platform_certs/cacert/76faf6c0.0 deleted file mode 120000 index bb754d394010..000000000000 --- a/test/rules/platform_certs/cacert/76faf6c0.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-135_QuoVadis Root CA 3_QuoVadis Limited.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/778e3cb0.0 b/test/rules/platform_certs/cacert/778e3cb0.0 deleted file mode 120000 index 0c4542068b84..000000000000 --- a/test/rules/platform_certs/cacert/778e3cb0.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-064_UTN - DATACorp SGC_The USERTRUST Network.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/790a7190.0 b/test/rules/platform_certs/cacert/790a7190.0 deleted file mode 120000 index e8826c8b6d87..000000000000 --- a/test/rules/platform_certs/cacert/790a7190.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-089_DST ACES CA X6_Digital Signature Trust.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/79ad8b43.0 b/test/rules/platform_certs/cacert/79ad8b43.0 deleted file mode 120000 index 6dcbf591f1ea..000000000000 --- a/test/rules/platform_certs/cacert/79ad8b43.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-092_Equifax Secure eBusiness CA-1_Equifax Secure Inc.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/7d0b38bd.0 b/test/rules/platform_certs/cacert/7d0b38bd.0 deleted file mode 120000 index 0b02810f8557..000000000000 --- a/test/rules/platform_certs/cacert/7d0b38bd.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-007_VeriSign Class 3 Public Primary Certification Authority - G4_VeriSign, Inc.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/7d5a75e4.0 b/test/rules/platform_certs/cacert/7d5a75e4.0 deleted file mode 120000 index 0eb8b08ff645..000000000000 --- a/test/rules/platform_certs/cacert/7d5a75e4.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-147_WellsSecure Public Root Certificate Authority_Wells Fargo WellsSecure.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/812e17de.0 b/test/rules/platform_certs/cacert/812e17de.0 deleted file mode 120000 index 86845e20c2fc..000000000000 --- a/test/rules/platform_certs/cacert/812e17de.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-009_Deutsche Telekom Root CA 2_Deutsche Telekom AG.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/8160b96c.0 b/test/rules/platform_certs/cacert/8160b96c.0 deleted file mode 120000 index db8d6a0b720f..000000000000 --- a/test/rules/platform_certs/cacert/8160b96c.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-045_Microsec e-Szigno Root CA 2009_Microsec Ltd.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/84009bc3.0 b/test/rules/platform_certs/cacert/84009bc3.0 deleted file mode 120000 index 49274f2bda8a..000000000000 --- a/test/rules/platform_certs/cacert/84009bc3.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-035_DigiNotar Cyber CA_DigiNotar.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/861a399d.0 b/test/rules/platform_certs/cacert/861a399d.0 deleted file mode 120000 index 7c8ca7c81541..000000000000 --- a/test/rules/platform_certs/cacert/861a399d.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-149_AddTrust Class 1 CA Root_AddTrust AB.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/861e0100.0 b/test/rules/platform_certs/cacert/861e0100.0 deleted file mode 120000 index ef22b886e221..000000000000 --- a/test/rules/platform_certs/cacert/861e0100.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-006_NetLock Minositett Kozjegyzoi (Class QA) Tanusitvanykiado_NetLock Halozatbiztonsagi Kft.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/8867006a.0 b/test/rules/platform_certs/cacert/8867006a.0 deleted file mode 120000 index 88a42363a87c..000000000000 --- a/test/rules/platform_certs/cacert/8867006a.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-166_GeoTrust Universal CA 2_GeoTrust Inc.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/88f89ea7.0 b/test/rules/platform_certs/cacert/88f89ea7.0 deleted file mode 120000 index 550fd007101a..000000000000 --- a/test/rules/platform_certs/cacert/88f89ea7.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-029_TÜRKTRUST.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/8b59b1ad.0 b/test/rules/platform_certs/cacert/8b59b1ad.0 deleted file mode 120000 index 2e6e0bb75fbb..000000000000 --- a/test/rules/platform_certs/cacert/8b59b1ad.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-038_AddTrust Public CA Root_AddTrust AB.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/8d86cdd1.0 b/test/rules/platform_certs/cacert/8d86cdd1.0 deleted file mode 120000 index 94bfc5a438a5..000000000000 --- a/test/rules/platform_certs/cacert/8d86cdd1.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-143_certSIGN.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/8e52d3cd.0 b/test/rules/platform_certs/cacert/8e52d3cd.0 deleted file mode 120000 index 2d6fab7eb3e1..000000000000 --- a/test/rules/platform_certs/cacert/8e52d3cd.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-021_Buypass Class 3 CA 1_Buypass AS-983163327.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/8f111d69.0 b/test/rules/platform_certs/cacert/8f111d69.0 deleted file mode 120000 index 53fad336c0d6..000000000000 --- a/test/rules/platform_certs/cacert/8f111d69.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-049_MD5 Collisions Inc. (http---www.phreedom.org-md5).pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/93bc0acc.0 b/test/rules/platform_certs/cacert/93bc0acc.0 deleted file mode 120000 index ea08bd899e09..000000000000 --- a/test/rules/platform_certs/cacert/93bc0acc.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-117_AffirmTrust Networking_AffirmTrust.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/94010abc.0 b/test/rules/platform_certs/cacert/94010abc.0 deleted file mode 120000 index 893c36266a60..000000000000 --- a/test/rules/platform_certs/cacert/94010abc.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-041_Digisign Server ID - (Enrich)_Digicert Sdn. Bhd.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/9818ca0b.0 b/test/rules/platform_certs/cacert/9818ca0b.0 deleted file mode 120000 index 448e25c3ace6..000000000000 --- a/test/rules/platform_certs/cacert/9818ca0b.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-158_TC TrustCenter Universal CA III_TC TrustCenter GmbH.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/988a38cb.0 b/test/rules/platform_certs/cacert/988a38cb.0 deleted file mode 120000 index 4a66a4eb8992..000000000000 --- a/test/rules/platform_certs/cacert/988a38cb.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-126_NetLock Arany (Class Gold) Főtanúsítvány_NetLock Kft.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/98ec67f0.0 b/test/rules/platform_certs/cacert/98ec67f0.0 deleted file mode 120000 index c0c1bfe10f52..000000000000 --- a/test/rules/platform_certs/cacert/98ec67f0.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-069_Thawte Premium Server CA_Thawte Consulting cc.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/99d0fa06.0 b/test/rules/platform_certs/cacert/99d0fa06.0 deleted file mode 120000 index 198d44b6ae78..000000000000 --- a/test/rules/platform_certs/cacert/99d0fa06.0 +++ /dev/null @@ -1 +0,0 @@ -cacert1.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/9af9f759.0 b/test/rules/platform_certs/cacert/9af9f759.0 deleted file mode 120000 index 87b719840405..000000000000 --- a/test/rules/platform_certs/cacert/9af9f759.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-013_http---www.valicert.com-_ValiCert, Inc.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/9b353c9a.0 b/test/rules/platform_certs/cacert/9b353c9a.0 deleted file mode 120000 index 4f0572857da0..000000000000 --- a/test/rules/platform_certs/cacert/9b353c9a.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-076_TDC Internet.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/9c2e7d30.0 b/test/rules/platform_certs/cacert/9c2e7d30.0 deleted file mode 120000 index 9a84fc0ca1b8..000000000000 --- a/test/rules/platform_certs/cacert/9c2e7d30.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-174_Sonera Class2 CA_Sonera.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/9c472bf7.0 b/test/rules/platform_certs/cacert/9c472bf7.0 deleted file mode 120000 index 8bf2d3a7ddc4..000000000000 --- a/test/rules/platform_certs/cacert/9c472bf7.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-163_A-Trust-nQual-03_A-Trust Ges. f. Sicherheitssysteme im elektr. Datenverkehr GmbH.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/9c8dfbd4.0 b/test/rules/platform_certs/cacert/9c8dfbd4.0 deleted file mode 120000 index 0c4417258a55..000000000000 --- a/test/rules/platform_certs/cacert/9c8dfbd4.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-102_AffirmTrust Premium ECC_AffirmTrust.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/9d520b32.0 b/test/rules/platform_certs/cacert/9d520b32.0 deleted file mode 120000 index c755a2adad4e..000000000000 --- a/test/rules/platform_certs/cacert/9d520b32.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-074_SECOM Trust Systems CO.,LTD.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/9f541fb4.0 b/test/rules/platform_certs/cacert/9f541fb4.0 deleted file mode 120000 index 98155f6fa84a..000000000000 --- a/test/rules/platform_certs/cacert/9f541fb4.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-075_Digital Signature Trust Co.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/Cert-001_Akamai Subordinate CA 3_Akamai Technologies Inc.pem b/test/rules/platform_certs/cacert/Cert-001_Akamai Subordinate CA 3_Akamai Technologies Inc.pem deleted file mode 100644 index 132b42c43050..000000000000 --- a/test/rules/platform_certs/cacert/Cert-001_Akamai Subordinate CA 3_Akamai Technologies Inc.pem +++ /dev/null @@ -1,23 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDxzCCAzCgAwIBAgIEBAAEAzANBgkqhkiG9w0BAQUFADB1MQswCQYDVQQGEwJV -UzEYMBYGA1UEChMPR1RFIENvcnBvcmF0aW9uMScwJQYDVQQLEx5HVEUgQ3liZXJU -cnVzdCBTb2x1dGlvbnMsIEluYy4xIzAhBgNVBAMTGkdURSBDeWJlclRydXN0IEds -b2JhbCBSb290MB4XDTA2MDUxMTE1MzIwMFoXDTEzMDUxMTIzNTkwMFowUTELMAkG -A1UEBhMCVVMxIDAeBgNVBAoTF0FrYW1haSBUZWNobm9sb2dpZXMgSW5jMSAwHgYD -VQQDExdBa2FtYWkgU3Vib3JkaW5hdGUgQ0EgMzCBnzANBgkqhkiG9w0BAQEFAAOB -jQAwgYkCgYEAnTR2c7MmRMRgzHZfj9gvSzoSVoxt1bTirAzhR4qFQxK8A2aFIB1r -inRyOIVhqXMLV1vbxZ6zZsVR+AqQfPh0FHISgPToWs3IuxEUyUQv7OGvM8FZKd1M -hXscgN1GpWTPYO9PVZM+BakWJCtI/58Fkt4M559g31Rvpxbu/69hqZ0CAwEAAaOC -AYYwggGCMEUGA1UdHwQ+MDwwOqA4oDaGNGh0dHA6Ly93d3cucHVibGljLXRydXN0 -LmNvbS9jZ2ktYmluL0NSTC8yMDE4L2NkcC5jcmwwHQYDVR0OBBYEFL45v0Fm+tTO -i254o0l+3j3ELiv2MFMGA1UdIARMMEowSAYJKwYBBAGxPgEAMDswOQYIKwYBBQUH -AgEWLWh0dHA6Ly93d3cucHVibGljLXRydXN0LmNvbS9DUFMvT21uaVJvb3QuaHRt -bDCBoAYDVR0jBIGYMIGVgBSmDB2fYf8HF7W/OEbbQzDVjrBSBqF5pHcwdTELMAkG -A1UEBhMCVVMxGDAWBgNVBAoTD0dURSBDb3Jwb3JhdGlvbjEnMCUGA1UECxMeR1RF -IEN5YmVyVHJ1c3QgU29sdXRpb25zLCBJbmMuMSMwIQYDVQQDExpHVEUgQ3liZXJU -cnVzdCBHbG9iYWwgUm9vdIICAaUwDgYDVR0PAQH/BAQDAgHGMBIGA1UdEwEB/wQI -MAYBAf8CAQAwDQYJKoZIhvcNAQEFBQADgYEAdofTrk09xGso4VIfeYEe6WIa90/Z -GsDlBRH6d/n/sSUXXsoZyKzM3HGVzs9mAmDBfv/s2bZw4QNgM0MMNlWNMJddXZcJ -bZ14M6VWhKYouKEZnaAsSCe+XHsF0haUfOnxpj4p7CZj/DnGZVB8Uh92ORa0lyY5 -q44d/bV6wDodO38= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-002_VeriSign Class 3 Extended Validation SSL CA_VeriSign, Inc.pem b/test/rules/platform_certs/cacert/Cert-002_VeriSign Class 3 Extended Validation SSL CA_VeriSign, Inc.pem deleted file mode 100644 index c5ab1d9fa04e..000000000000 --- a/test/rules/platform_certs/cacert/Cert-002_VeriSign Class 3 Extended Validation SSL CA_VeriSign, Inc.pem +++ /dev/null @@ -1,34 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIF5DCCBMygAwIBAgIQW3dZxheE4V7HJ8AylSkoazANBgkqhkiG9w0BAQUFADCB -yjELMAkGA1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQL -ExZWZXJpU2lnbiBUcnVzdCBOZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwNiBWZXJp -U2lnbiwgSW5jLiAtIEZvciBhdXRob3JpemVkIHVzZSBvbmx5MUUwQwYDVQQDEzxW -ZXJpU2lnbiBDbGFzcyAzIFB1YmxpYyBQcmltYXJ5IENlcnRpZmljYXRpb24gQXV0 -aG9yaXR5IC0gRzUwHhcNMDYxMTA4MDAwMDAwWhcNMTYxMTA3MjM1OTU5WjCBujEL -MAkGA1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZW -ZXJpU2lnbiBUcnVzdCBOZXR3b3JrMTswOQYDVQQLEzJUZXJtcyBvZiB1c2UgYXQg -aHR0cHM6Ly93d3cudmVyaXNpZ24uY29tL3JwYSAoYykwNjE0MDIGA1UEAxMrVmVy -aVNpZ24gQ2xhc3MgMyBFeHRlbmRlZCBWYWxpZGF0aW9uIFNTTCBDQTCCASIwDQYJ -KoZIhvcNAQEBBQADggEPADCCAQoCggEBAJjboFXrnP0XeeOabhQdsVuYI4cWbod2 -nLU4O7WgerQHYwkZ5iqISKnnnbYwWgiXDOyq5BZpcmIjmvt6VCiYxQwtt9citsj5 -OBfH3doxRpqUFI6e7nigtyLUSVSXTeV0W5K87Gws3+fBthsaVWtmCAN/Ra+aM/EQ -wGyZSpIkMQht3QI+YXZ4eLbtfjeubPOJ4bfh3BXMt1afgKCxBX9ONxX/ty8ejwY4 -P1C3aSijtWZfNhpSSENmUt+ikk/TGGC+4+peGXEFv54cbGhyJW+ze3PJbb0S/5tB -Ml706H7FC6NMZNFOvCYIZfsZl1h44TO/7Wg+sSdFb8Di7Jdp91zT91ECAwEAAaOC -AdIwggHOMB0GA1UdDgQWBBT8ilC6nrklWntVhU+VAGOP6VhrQzASBgNVHRMBAf8E -CDAGAQH/AgEAMD0GA1UdIAQ2MDQwMgYEVR0gADAqMCgGCCsGAQUFBwIBFhxodHRw -czovL3d3dy52ZXJpc2lnbi5jb20vY3BzMD0GA1UdHwQ2MDQwMqAwoC6GLGh0dHA6 -Ly9FVlNlY3VyZS1jcmwudmVyaXNpZ24uY29tL3BjYTMtZzUuY3JsMA4GA1UdDwEB -/wQEAwIBBjARBglghkgBhvhCAQEEBAMCAQYwbQYIKwYBBQUHAQwEYTBfoV2gWzBZ -MFcwVRYJaW1hZ2UvZ2lmMCEwHzAHBgUrDgMCGgQUj+XTGoasjY5rw8+AatRIGCx7 -GS4wJRYjaHR0cDovL2xvZ28udmVyaXNpZ24uY29tL3ZzbG9nby5naWYwKQYDVR0R -BCIwIKQeMBwxGjAYBgNVBAMTEUNsYXNzM0NBMjA0OC0xLTQ3MD0GCCsGAQUFBwEB -BDEwLzAtBggrBgEFBQcwAYYhaHR0cDovL0VWU2VjdXJlLW9jc3AudmVyaXNpZ24u -Y29tMB8GA1UdIwQYMBaAFH/TZafC3ey78DAJ80M5+gKvMzEzMA0GCSqGSIb3DQEB -BQUAA4IBAQCWovp/5j3t1CvOtxU/wHIDX4u6FpAl98KD2Md1NGNoElMMU4l7yVYJ -p8M2RE4O0GJis4b66KGbNGeNUyIXPv2s7mcuQ+JdfzOE8qJwwG6Cl8A0/SXGI3/t -5rDFV0OEst4t8dD2SB8UcVeyrDHhlyQjyRNddOVG7wl8nuGZMQoIeRuPcZ8XZsg4 -z+6Ml7YGuXNG5NOUweVgtSV1LdlpMezNlsOjdv3odESsErlNv1HoudRETifLriDR -fip8tmNHnna6l9AW5wtsbfdDbzMLKTB3+p359U64drPNGLT5IO892+bKrZvQTtKH -qQ2mRHNQ3XBb7a1+Srwi1agm5MKFIA3Z ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-003_Google Internet Authority_Google Inc.pem b/test/rules/platform_certs/cacert/Cert-003_Google Internet Authority_Google Inc.pem deleted file mode 100644 index 7dc5afd883fe..000000000000 --- a/test/rules/platform_certs/cacert/Cert-003_Google Internet Authority_Google Inc.pem +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICsDCCAhmgAwIBAgIDC2dxMA0GCSqGSIb3DQEBBQUAME4xCzAJBgNVBAYTAlVT -MRAwDgYDVQQKEwdFcXVpZmF4MS0wKwYDVQQLEyRFcXVpZmF4IFNlY3VyZSBDZXJ0 -aWZpY2F0ZSBBdXRob3JpdHkwHhcNMDkwNjA4MjA0MzI3WhcNMTMwNjA3MTk0MzI3 -WjBGMQswCQYDVQQGEwJVUzETMBEGA1UEChMKR29vZ2xlIEluYzEiMCAGA1UEAxMZ -R29vZ2xlIEludGVybmV0IEF1dGhvcml0eTCBnzANBgkqhkiG9w0BAQEFAAOBjQAw -gYkCgYEAye23pIucV+eEPkB9hPSP0XFjU5nneXQUr0SZMyCSjXvlKAy6rWxJfoNf -NFlOCnowzdDXxFdF7dWq1nMmzq0yE7jXDx07393cCDaob1FEm8rWIFJztyaHNWrb -qeXUWaUr/GcZOfqTGBhs3t0lig4zFEfC7wFQeeT9adGnwKziV28CAwEAAaOBozCB -oDAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFL/AMOv1QxE+Z7qekfv8atrjaxIk -MB8GA1UdIwQYMBaAFEjmaPkr0rKV10fYIyAQTzOYkJ/UMBIGA1UdEwEB/wQIMAYB -Af8CAQAwOgYDVR0fBDMwMTAvoC2gK4YpaHR0cDovL2NybC5nZW90cnVzdC5jb20v -Y3Jscy9zZWN1cmVjYS5jcmwwDQYJKoZIhvcNAQEFBQADgYEAuIojxkiWsRF8YHde -BZqrocb6ghwYB8TrgbCoZutJqOkM0ymt9e8kTP3kS8p/XmOrmSfLnzYhLLkQYGfN -0rTw8Ktx5YtaiScRhKqOv5nwnQkhClIZmloJ0pC3+gz4fniisIWvXEyZ2VxVKfml -UUIuOss4jHg7y/j7lYe8vJD5UDI= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-004_Entrust Certification Authority - L1C_Entrust, Inc.pem b/test/rules/platform_certs/cacert/Cert-004_Entrust Certification Authority - L1C_Entrust, Inc.pem deleted file mode 100644 index 7461ae60ab7c..000000000000 --- a/test/rules/platform_certs/cacert/Cert-004_Entrust Certification Authority - L1C_Entrust, Inc.pem +++ /dev/null @@ -1,29 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIE8jCCA9qgAwIBAgIEOGPp/DANBgkqhkiG9w0BAQUFADCBtDEUMBIGA1UEChML -RW50cnVzdC5uZXQxQDA+BgNVBAsUN3d3dy5lbnRydXN0Lm5ldC9DUFNfMjA0OCBp -bmNvcnAuIGJ5IHJlZi4gKGxpbWl0cyBsaWFiLikxJTAjBgNVBAsTHChjKSAxOTk5 -IEVudHJ1c3QubmV0IExpbWl0ZWQxMzAxBgNVBAMTKkVudHJ1c3QubmV0IENlcnRp -ZmljYXRpb24gQXV0aG9yaXR5ICgyMDQ4KTAeFw0wOTEyMTAyMDQzNTRaFw0xOTEy -MTAyMTEzNTRaMIGxMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNRW50cnVzdCwgSW5j -LjE5MDcGA1UECxMwd3d3LmVudHJ1c3QubmV0L3JwYSBpcyBpbmNvcnBvcmF0ZWQg -YnkgcmVmZXJlbmNlMR8wHQYDVQQLExYoYykgMjAwOSBFbnRydXN0LCBJbmMuMS4w -LAYDVQQDEyVFbnRydXN0IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gTDFDMIIB -IjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAl6MtPJ7eBdoTwhGNnY7jf8dL -flqfs/9iq3PIKGu6EGSChxPNVxj/KM7A5g4GkVApg9Hywyrb2NtOBMwA64u2lty8 -qvpSdwTB2xnkrpz9PIsD7028GgNl+cGxP3KG8jiqGa4QiHgo2nXDPQKCApy5wWV3 -diRMmPdtMTj72/7bNwJ2oRiXpszeIAlJNiRpQvbkN2LxWW2pPO00nKOO29w61/cK -b+8u2NWTWnrtCElo4kHjWpDBhlX8UUOd4LLEZ7TLMjEl8FSfS9Fv29Td/K9ebHiQ -ld7KOki5eTybGdZ1BaD5iNfB6KUJ5BoV3IcjqrJ1jGMlh9j4PabCzGb/pWZoVQID -AQABo4IBCzCCAQcwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wMwYI -KwYBBQUHAQEEJzAlMCMGCCsGAQUFBzABhhdodHRwOi8vb2NzcC5lbnRydXN0Lm5l -dDAyBgNVHR8EKzApMCegJaAjhiFodHRwOi8vY3JsLmVudHJ1c3QubmV0LzIwNDhj -YS5jcmwwOwYDVR0gBDQwMjAwBgRVHSAAMCgwJgYIKwYBBQUHAgEWGmh0dHA6Ly93 -d3cuZW50cnVzdC5uZXQvcnBhMB0GA1UdDgQWBBQe8auJBvhJDwEzd+4Ueu4ZfJMo -TTAfBgNVHSMEGDAWgBRV5IHREYC+2Im5CKMx+aEkCRa5cDANBgkqhkiG9w0BAQUF -AAOCAQEAB/ZfgoR/gEDHkDRGQiQDzi+ruoOeJXMN7awFacaH7aNc8lfBsUl2mk3y -P93kDv4LPrmY2TKVHTL0Ae6cyMjlP+BTdmL83attPZSQ8sCzPJgnNl4olyL8G0DT -Kw2ttVdt3w/jS+9zAhBl+hvQrDHV4w/oujIwg+5K0L/fIpB6vuw6G8RJBB3xroB3 -PEII26c7KKaAAQPmOaPr34BZG/MsvtxyRHmgbAelbU1EjkJoypR8Lja6hZ7NqsRe -PFS+/i/qaZ0cHimbltjI/lGQ8SSmkAaz8Cmi/3gud1xFIdlEADHzvjJP9QoyDfz8 -uhZ2VrLWSJLyi6Y+t6xcaeoLP2ZFuQ== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-005_GeoTrust SSL CA_GeoTrust, Inc.pem b/test/rules/platform_certs/cacert/Cert-005_GeoTrust SSL CA_GeoTrust, Inc.pem deleted file mode 100644 index a2c26f81ecf2..000000000000 --- a/test/rules/platform_certs/cacert/Cert-005_GeoTrust SSL CA_GeoTrust, Inc.pem +++ /dev/null @@ -1,23 +0,0 @@ ------BEGIN CERTIFICATE----- -MIID2TCCAsGgAwIBAgIDAjbQMA0GCSqGSIb3DQEBBQUAMEIxCzAJBgNVBAYTAlVT -MRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMRswGQYDVQQDExJHZW9UcnVzdCBHbG9i -YWwgQ0EwHhcNMTAwMjE5MjIzOTI2WhcNMjAwMjE4MjIzOTI2WjBAMQswCQYDVQQG -EwJVUzEXMBUGA1UEChMOR2VvVHJ1c3QsIEluYy4xGDAWBgNVBAMTD0dlb1RydXN0 -IFNTTCBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJCzgMHk5Uat -cGA9uuUU3Z6KXot1WubKbUGlI+g5hSZ6p1V3mkihkn46HhrxJ6ujTDnMyz1Hr4Gu -FmpcN+9FQf37mpc8oEOdxt8XIdGKolbCA0mEEoE+yQpUYGa5jFTk+eb5lPHgX3UR -8im55IaisYmtph6DKWOy8FQchQt65+EuDa+kvc3nsVrXjAVaDktzKIt1XTTYdwvh -dGLicTBi2LyKBeUxY0pUiWozeKdOVSQdl+8a5BLGDzAYtDRN4dgjOyFbLTAZJQ50 -96QhS6CkIMlszZhWwPKoXz4mdaAN+DaIiixafWcwqQ/RmXAueOFRJq9VeiS+jDkN -d53eAsMMvR8CAwEAAaOB2TCB1jAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFEJ5 -VBthzVUrPmPVPEhX9Z/7Rc5KMB8GA1UdIwQYMBaAFMB6mGiNifurBWQMEX2qfWW4 -ysxOMBIGA1UdEwEB/wQIMAYBAf8CAQAwOgYDVR0fBDMwMTAvoC2gK4YpaHR0cDov -L2NybC5nZW90cnVzdC5jb20vY3Jscy9ndGdsb2JhbC5jcmwwNAYIKwYBBQUHAQEE -KDAmMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5nZW90cnVzdC5jb20wDQYJKoZI -hvcNAQEFBQADggEBANTvU4ToGr2hiwTAqfVfoRB4RV2yV2pOJMtlTjGXkZrUJPji -J2ZwMZzBYlQG55cdOprApClICq8kx6jEmlTBfEx4TCtoLF0XplR4TEbigMMfOHES -0tdT41SFULgCy+5jOvhWiU1Vuy7AyBh3hjELC3DwfjWDpCoTZFZnNF0WX3OsewYk -2k9QbSqr0E1TQcKOu3EDSSmGGM8hQkx0YlEVxW+o78Qn5Rsz3VqI138S0adhJR/V -4NwdzxoQ2KDLX4z6DOW/cf/lXUQdpj6HR/oaToODEj+IZpWYeZqF6wJHzSXj8gYE -TpnKXKBuervdo5AaRTPvvz7SBMS24CqFZUE+ENQ= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-006_NetLock Minositett Kozjegyzoi (Class QA) Tanusitvanykiado_NetLock Halozatbiztonsagi Kft.pem b/test/rules/platform_certs/cacert/Cert-006_NetLock Minositett Kozjegyzoi (Class QA) Tanusitvanykiado_NetLock Halozatbiztonsagi Kft.pem deleted file mode 100644 index d9368cff33bc..000000000000 --- a/test/rules/platform_certs/cacert/Cert-006_NetLock Minositett Kozjegyzoi (Class QA) Tanusitvanykiado_NetLock Halozatbiztonsagi Kft.pem +++ /dev/null @@ -1,39 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIG0TCCBbmgAwIBAgIBezANBgkqhkiG9w0BAQUFADCByTELMAkGA1UEBhMCSFUx -ETAPBgNVBAcTCEJ1ZGFwZXN0MScwJQYDVQQKEx5OZXRMb2NrIEhhbG96YXRiaXp0 -b25zYWdpIEtmdC4xGjAYBgNVBAsTEVRhbnVzaXR2YW55a2lhZG9rMUIwQAYDVQQD -EzlOZXRMb2NrIE1pbm9zaXRldHQgS296amVneXpvaSAoQ2xhc3MgUUEpIFRhbnVz -aXR2YW55a2lhZG8xHjAcBgkqhkiG9w0BCQEWD2luZm9AbmV0bG9jay5odTAeFw0w -MzAzMzAwMTQ3MTFaFw0yMjEyMTUwMTQ3MTFaMIHJMQswCQYDVQQGEwJIVTERMA8G -A1UEBxMIQnVkYXBlc3QxJzAlBgNVBAoTHk5ldExvY2sgSGFsb3phdGJpenRvbnNh -Z2kgS2Z0LjEaMBgGA1UECxMRVGFudXNpdHZhbnlraWFkb2sxQjBABgNVBAMTOU5l -dExvY2sgTWlub3NpdGV0dCBLb3pqZWd5em9pIChDbGFzcyBRQSkgVGFudXNpdHZh -bnlraWFkbzEeMBwGCSqGSIb3DQEJARYPaW5mb0BuZXRsb2NrLmh1MIIBIjANBgkq -hkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAx1Ilstg91IRVCacbvWy5FPSKAtt2/Goq -eKvld/Bu4IwjZ9ulZJm53QE+b+8tmjwi8F3JV6BVQX/yQ15YglMxZc4e8ia6AFQe -r7C8HORSjKAyr7c3sVNnaHRnUPYtLmTeriZ539+Zhqurf4XsoPuAzPS4DB6TRWO5 -3Lhbm+1bOdRfYrCnjnxmOCyqsQhjF2d9zL2z8cM/z1A57dEZgxXbhxInlrfa6uWd -vLrqOU+L73Sa58XQ0uqGURzk/mQIKAR5BevKxXEOC++r6uwSEaEYBTJp0QwsGj0l -mT+1fMptsK6ZmfoIYOcZwvK9UdPM0wKswREMgM6r3JSda6M5UzrWhQIDAMV9o4IC -wDCCArwwEgYDVR0TAQH/BAgwBgEB/wIBBDAOBgNVHQ8BAf8EBAMCAQYwggJ1Bglg -hkgBhvhCAQ0EggJmFoICYkZJR1lFTEVNISBFemVuIHRhbnVzaXR2YW55IGEgTmV0 -TG9jayBLZnQuIE1pbm9zaXRldHQgU3pvbGdhbHRhdGFzaSBTemFiYWx5emF0YWJh -biBsZWlydCBlbGphcmFzb2sgYWxhcGphbiBrZXN6dWx0LiBBIG1pbm9zaXRldHQg -ZWxla3Ryb25pa3VzIGFsYWlyYXMgam9naGF0YXMgZXJ2ZW55ZXN1bGVzZW5laywg -dmFsYW1pbnQgZWxmb2dhZGFzYW5hayBmZWx0ZXRlbGUgYSBNaW5vc2l0ZXR0IFN6 -b2xnYWx0YXRhc2kgU3phYmFseXphdGJhbiwgYXogQWx0YWxhbm9zIFN6ZXJ6b2Rl -c2kgRmVsdGV0ZWxla2JlbiBlbG9pcnQgZWxsZW5vcnplc2kgZWxqYXJhcyBtZWd0 -ZXRlbGUuIEEgZG9rdW1lbnR1bW9rIG1lZ3RhbGFsaGF0b2sgYSBodHRwczovL3d3 -dy5uZXRsb2NrLmh1L2RvY3MvIGNpbWVuIHZhZ3kga2VyaGV0b2sgYXogaW5mb0Bu -ZXRsb2NrLm5ldCBlLW1haWwgY2ltZW4uIFdBUk5JTkchIFRoZSBpc3N1YW5jZSBh -bmQgdGhlIHVzZSBvZiB0aGlzIGNlcnRpZmljYXRlIGFyZSBzdWJqZWN0IHRvIHRo -ZSBOZXRMb2NrIFF1YWxpZmllZCBDUFMgYXZhaWxhYmxlIGF0IGh0dHBzOi8vd3d3 -Lm5ldGxvY2suaHUvZG9jcy8gb3IgYnkgZS1tYWlsIGF0IGluZm9AbmV0bG9jay5u -ZXQwHQYDVR0OBBYEFAlqYhaSsFq7VQ7LdTI6MuWyIckoMA0GCSqGSIb3DQEBBQUA -A4IBAQCRalCc23iBmz+LQuM7/KbD7kPgz/PigDVJRXYC4uMvBcXxKufAQTPGtpvQ -MznNwNuhrWw3AkxYQTvyl5LGSKjN5Yo5iWH5Upfpvfb5lHTocQ68d4bDBsxafEp+ -NFAwLvt/MpqNPfMgW/hqyobzMUwsWYACff44yTB1HLdV47yfuqhthCgFdbOLDcCR -VCHnpgu0mfVRQdzNo0ci2ccBgcTcR08m6h/t280NmPSjnLRzMkqWmf68f8glWPhY -83ZmiVSkpj7EUFy6iRiCdUgh0k8T6GB+B3bbELVR5qq5aKrN9p2QdRLqOBrKROi3 -macqaJVmlaut74nLYKkGEsaUR+ko ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-007_VeriSign Class 3 Public Primary Certification Authority - G4_VeriSign, Inc.pem b/test/rules/platform_certs/cacert/Cert-007_VeriSign Class 3 Public Primary Certification Authority - G4_VeriSign, Inc.pem deleted file mode 100644 index e19fdea044a4..000000000000 --- a/test/rules/platform_certs/cacert/Cert-007_VeriSign Class 3 Public Primary Certification Authority - G4_VeriSign, Inc.pem +++ /dev/null @@ -1,21 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDhDCCAwqgAwIBAgIQL4D+I4wOIg9IZxIokYesszAKBggqhkjOPQQDAzCByjEL -MAkGA1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZW -ZXJpU2lnbiBUcnVzdCBOZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwNyBWZXJpU2ln -biwgSW5jLiAtIEZvciBhdXRob3JpemVkIHVzZSBvbmx5MUUwQwYDVQQDEzxWZXJp -U2lnbiBDbGFzcyAzIFB1YmxpYyBQcmltYXJ5IENlcnRpZmljYXRpb24gQXV0aG9y -aXR5IC0gRzQwHhcNMDcxMTA1MDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCByjELMAkG -A1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZWZXJp -U2lnbiBUcnVzdCBOZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwNyBWZXJpU2lnbiwg -SW5jLiAtIEZvciBhdXRob3JpemVkIHVzZSBvbmx5MUUwQwYDVQQDEzxWZXJpU2ln -biBDbGFzcyAzIFB1YmxpYyBQcmltYXJ5IENlcnRpZmljYXRpb24gQXV0aG9yaXR5 -IC0gRzQwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAASnVnp8Utpkmw4tXNherJI9/gHm -GUo9FANL+mAnINmDiWn6VMaaGF5VKmTeBvaNSjutEDxlPZCIBIngMGGzrl0Bp3ve -fLK+ymVhAIau2o970ImtTR1ZmkGxvEeA3J5iw/mjgbIwga8wDwYDVR0TAQH/BAUw -AwEB/zAOBgNVHQ8BAf8EBAMCAQYwbQYIKwYBBQUHAQwEYTBfoV2gWzBZMFcwVRYJ -aW1hZ2UvZ2lmMCEwHzAHBgUrDgMCGgQUj+XTGoasjY5rw8+AatRIGCx7GS4wJRYj -aHR0cDovL2xvZ28udmVyaXNpZ24uY29tL3ZzbG9nby5naWYwHQYDVR0OBBYEFLMW -kf3upm7ktS5Jj4d4gYDs5bG1MAoGCCqGSM49BAMDA2gAMGUCMGYhDBgmYFo4e1ZC -4Kf8NoRRkSAsdk1DPcQdhCPQrNZ8NQbOzWm9kA3bbEhCHQ6qQgIxAJw9SDkjOVga -FRJZap7v1VmyHVIsmXHNxynfGyphe3HR3vPA5Q06Sqotp9iGKt0uEA== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-008_AffirmTrust Commercial_AffirmTrust.pem b/test/rules/platform_certs/cacert/Cert-008_AffirmTrust Commercial_AffirmTrust.pem deleted file mode 100644 index 73a3367437d9..000000000000 --- a/test/rules/platform_certs/cacert/Cert-008_AffirmTrust Commercial_AffirmTrust.pem +++ /dev/null @@ -1,20 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDTDCCAjSgAwIBAgIId3cGJyapsXwwDQYJKoZIhvcNAQELBQAwRDELMAkGA1UE -BhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVz -dCBDb21tZXJjaWFsMB4XDTEwMDEyOTE0MDYwNloXDTMwMTIzMTE0MDYwNlowRDEL -MAkGA1UEBhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZp -cm1UcnVzdCBDb21tZXJjaWFsMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC -AQEA9htPZwcroRX1BiLLHwGy43NFBkRJLLtJJRTWzsO3qyxPxkEylFf6EqdbDuKP -Hx6GGaeqtS25Xw2Kwq+FNXkyLbscYjfysVtKPcrNcV/pQr6U6Mje+SJIZMblq8Yr -ba0F8PrVC8+a5fBQpIs7R6UjW3p6+DM/uO+Zl+MgwdYoic+U+7lF7eNAFxHUdPAL -MeIrJmqbTFeurCA+ukV6BfO9m2kVrn1OIGPENXY6BwLJN/3HR+7o8XYdcxXyl6S1 -yHp52UKqK39c/s4mT6NmgTWvRLpUHhwwMmWd5jyTXlBOeuM61G7MGvv50jeuJCqr -VwMiKA1JdX+3KNp1v47j3A55MQIDAQABo0IwQDAdBgNVHQ4EFgQUnZPGU4teyq8/ -nx4P5ZmVvCT2lI8wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwDQYJ -KoZIhvcNAQELBQADggEBAFis9AQOzcAN/wr91LoWXym9e2iZWEnStB03TX8nfUYG -XUPGhi4+c7ImfU+TqbbEKpqrIZcUsd6M06uJFdhrJNTxFq7YpFzUf1GO7RgBsZNj -vbz4YYCanrHOQnDiqX0GJX0nof5v7LMeJNrjS1UaADs1tDvZ110w/YETifLCBivt -Z8SOyUOyXGsViQK8YvxO8rUzqrJv0wqiUOP2O+guRMLbZjipM1ZI8W0bM40NjD9g -N53Tym1+NH4Nn3J2ixufcv1SNUFFApYvHLKac0khsUlHRUe072o0EclNmsxZt9YC -nlpOZbWUrhvfKbAW8b8Angc6F2S1BLUjIZkKlTuXfO8= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-009_Deutsche Telekom Root CA 2_Deutsche Telekom AG.pem b/test/rules/platform_certs/cacert/Cert-009_Deutsche Telekom Root CA 2_Deutsche Telekom AG.pem deleted file mode 100644 index 05879ff35eef..000000000000 --- a/test/rules/platform_certs/cacert/Cert-009_Deutsche Telekom Root CA 2_Deutsche Telekom AG.pem +++ /dev/null @@ -1,22 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDnzCCAoegAwIBAgIBJjANBgkqhkiG9w0BAQUFADBxMQswCQYDVQQGEwJERTEc -MBoGA1UEChMTRGV1dHNjaGUgVGVsZWtvbSBBRzEfMB0GA1UECxMWVC1UZWxlU2Vj -IFRydXN0IENlbnRlcjEjMCEGA1UEAxMaRGV1dHNjaGUgVGVsZWtvbSBSb290IENB -IDIwHhcNOTkwNzA5MTIxMTAwWhcNMTkwNzA5MjM1OTAwWjBxMQswCQYDVQQGEwJE -RTEcMBoGA1UEChMTRGV1dHNjaGUgVGVsZWtvbSBBRzEfMB0GA1UECxMWVC1UZWxl -U2VjIFRydXN0IENlbnRlcjEjMCEGA1UEAxMaRGV1dHNjaGUgVGVsZWtvbSBSb290 -IENBIDIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCrC6M14IspFLEU -ha88EOQ5bzVdSq7d6mGNlUn0b2SjGmBmpKlAIoTZ1KXleJMOaAGtuU1cOs7TuKhC -QN/Po7qCWWqSG6wcmtoIKyUn+WkjR/Hg6yx6m/UTAtB+NHzCnjwAWav12gz1Mjwr -rFDa1sPeg5TKqAyZMg4ISFZbavva4VhYAUlfckE8FQYBjl2tqriTtM2e66foai1S -NNs671x1Udrb8zH57nGYMsRUFUQM+ZtV7a3fGAigo4aKSe5TBY8ZTNXeWHmb0moc -QqvF1afPaA+W5OFhmHZhyJF81j4A4pFQh+GdCuatl9Idxjp9y7zaAzTVjlsB9WoH -txa2bkp/AgMBAAGjQjBAMB0GA1UdDgQWBBQxw3kbuvVT1xfgiXotF2wKsyudMzAP -BgNVHRMECDAGAQH/AgEFMA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQUFAAOC -AQEAlGRZrTlk5ynrE/5aw4sTV8gEJPB0d8Bg42f76Ymmg7+Wgnxu1MM9756Abrsp -tJh6sTtU6zkXR34ajgv8HzFZMQSyzhfzLMdiNlXiItiJVbSYSKpk+tYcNthEeFpa -IzpXl/V6ME+un2pMSyuOoAPjPuCp1NJ70rOo4nI8rZ7/gFnkm0W09juwzTkZmDLl -6iFhkOQxIY40sfcvNUqFENrnijchvllj4PKFiDFT1FQUhXB59C4Gdyd1Lx+4ivn+ -xbrYNuSD7Odlt79jWvNGr4GUN9RBjNYj1h7P9WgbRGOiWrqnNVmh5XAFmw4jV5mU -Cm26OWMohpLzGITY+9HPBVZkVw== ------END CERTIFICATE----- diff --git "a/test/rules/platform_certs/cacert/Cert-010_EBG Elektronik Sertifika Hizmet Sa\304\237lay\304\261c\304\261s\304\261_EBG Bili\305\237im Teknolojileri ve Hizmetleri A.\305\236.pem" "b/test/rules/platform_certs/cacert/Cert-010_EBG Elektronik Sertifika Hizmet Sa\304\237lay\304\261c\304\261s\304\261_EBG Bili\305\237im Teknolojileri ve Hizmetleri A.\305\236.pem" deleted file mode 100644 index a684013b93f6..000000000000 --- "a/test/rules/platform_certs/cacert/Cert-010_EBG Elektronik Sertifika Hizmet Sa\304\237lay\304\261c\304\261s\304\261_EBG Bili\305\237im Teknolojileri ve Hizmetleri A.\305\236.pem" +++ /dev/null @@ -1,34 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIF5zCCA8+gAwIBAgIITK9zQhyOdAIwDQYJKoZIhvcNAQEFBQAwgYAxODA2BgNV -BAMML0VCRyBFbGVrdHJvbmlrIFNlcnRpZmlrYSBIaXptZXQgU2HEn2xhecSxY8Sx -c8SxMTcwNQYDVQQKDC5FQkcgQmlsacWfaW0gVGVrbm9sb2ppbGVyaSB2ZSBIaXpt -ZXRsZXJpIEEuxZ4uMQswCQYDVQQGEwJUUjAeFw0wNjA4MTcwMDIxMDlaFw0xNjA4 -MTQwMDMxMDlaMIGAMTgwNgYDVQQDDC9FQkcgRWxla3Ryb25payBTZXJ0aWZpa2Eg -SGl6bWV0IFNhxJ9sYXnEsWPEsXPEsTE3MDUGA1UECgwuRUJHIEJpbGnFn2ltIFRl -a25vbG9qaWxlcmkgdmUgSGl6bWV0bGVyaSBBLsWeLjELMAkGA1UEBhMCVFIwggIi -MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDuoIRh0DpqZhAy2DE4f6en5f2h -4fuXd7hxlugTlkaDT7byX3JWbhNgpQGR4lvFzVcfd2NR/y8927k/qqk153nQ9dAk -tiHq6yOU/im/+4mRDGSaBUorzAzu8T2bgmmkTPiab+ci2hC6X5L8GCcKqKpE+i4s -tPtGmggDg3KriORqcsnlZR9uKg+ds+g75AxuetpX/dfreYteIAbTdgtsApWjluTL -dlHRKJ2hGvxEok3MenaoDT2/F08iiFD9rrbskFBKW5+VQarKD7JK/oCZTqNGFav4 -c0JqwmZ2sQomFd2TkuzbqV9UIlKRcF0T6kjsbgNs2d1s/OsNA/+mgxKb8amTD8Um -TDGyY5lhcucqZJnSuOl14nypqZoaqsNW2xCaPINStnuWt6yHd6i58mcLlEOzrz5z -+kI2sSXFCjEmN1ZnuqMLfdb3ic1nobc6HmZP9qBVFCVMLDMNpkGMvQQxahByCp0O -Lna9XvNRiYuoP1Vzv9s6xiQFlpJIqkuNKgPlV5EQ9GooFW5Hd4RcUXSfGenmHmMW -OeMRFeNYGkS9y8RsZteEBt8w9DeiQyJ50hBs37vmExH8nYQKE3vwO9D8owrXieqW -fo1IhR5kX9tUoqzVegJ5a9KK8GfaZXINFHDk6Y54jzJ0fFfy1tb0Nokb+Clsi7n2 -l9GkLqq+CxnCRelwXQIDAJ3Zo2MwYTAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB -/wQEAwIBBjAdBgNVHQ4EFgQU587GT/wWZ5b6SqMHwQSny2re2kcwHwYDVR0jBBgw -FoAU587GT/wWZ5b6SqMHwQSny2re2kcwDQYJKoZIhvcNAQEFBQADggIBAJuYml2+ -8ygjdsZs93/mQJ7ANtyVDR2tFcU22NU57/IeIl6zgrRdu0waypIN30ckHrMk2pGI -6YNw3ZPX6bqz3xZaPt7gyPvT/Wwp+BVGoGgmzJNSroIBk5DKd8pNSe/iWtkqvTDO -TLKBtjDOWU/aWR1qeqRFsIImgYZ29fUQALjuswnoT4cCB64kXPBfrAowzIpAoHME -wfuJJPaaHFy3PApnNgUIMbOv2AFoKuB4j3TeuFGkjGwgPaL7s9QJ/XvCgKqTbCmY -Iai7FvOpEl90tYeY8pUm3zTvilORiF0alKM/fCL414i6poyWqD1SNGKfAB5UVUJn -xk1Gj7sURT0KlhaOEKGXmdXTMIXM3rRyt7yKPBgpaP3ccQfuJDlq+u2lrDgv+R4Q -DgZxGhBM/nV+/x5XOULK1+EVoVZVWRvRo68R2E7DpSvvkL/A7IITW43WciyTTo9q -Kd+FPNMN4KIYEsxVL0e3p5sC/kH2iExt2qkBR4NkJ2IQgtYSe14DHzSpyZH+r11t -hie3I6p1GMog57AP14kOpmciY/SDQSsGS7tY1dHXt7kQY9iJSrSq3RZj9W6+YKH4 -7ejWkE8axsWgKdOnIaj1Wjz3x0miIZpKlVIglnKaZsv30oZDfCK+lvm9AahH3eU7 -QPl1K5srRmSGjR70j/sHd9DqSaIcjVIUpgqT ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-011_Juur-SK_AS Sertifitseerimiskeskus.pem b/test/rules/platform_certs/cacert/Cert-011_Juur-SK_AS Sertifitseerimiskeskus.pem deleted file mode 100644 index 269961b598a7..000000000000 --- a/test/rules/platform_certs/cacert/Cert-011_Juur-SK_AS Sertifitseerimiskeskus.pem +++ /dev/null @@ -1,29 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIE5jCCA86gAwIBAgIEO45L/DANBgkqhkiG9w0BAQUFADBdMRgwFgYJKoZIhvcN -AQkBFglwa2lAc2suZWUxCzAJBgNVBAYTAkVFMSIwIAYDVQQKExlBUyBTZXJ0aWZp -dHNlZXJpbWlza2Vza3VzMRAwDgYDVQQDEwdKdXVyLVNLMB4XDTAxMDgzMDE0MjMw -MVoXDTE2MDgyNjE0MjMwMVowXTEYMBYGCSqGSIb3DQEJARYJcGtpQHNrLmVlMQsw -CQYDVQQGEwJFRTEiMCAGA1UEChMZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czEQ -MA4GA1UEAxMHSnV1ci1TSzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB -AIFxNj4zB9bjMI0TfncyRsvPGbJgMUaXhvSYRqTCZUXP00B841oiqBB4M8yIsdOB -SvZiF3tfTQou0M+LI+5PAk676w7KvRhj6IAcjeEcjT3g/1tf6mTll+g/mX8MCgkz -ABpTpyHhOEvWgxutr2TC+Rx6jGZITWYfGAriPrsfB2WThbkasLnE+w0R9vXW+RvH -LCu3GFH+4Hv2qEivbDtPL+/40UceJlfwUR0zlv/vWT3aTdEVNMfqPxZIe5EcgEMP -PbgFPtGzlc3Yyg/CQ2fbt5PgIoIuvvVoKIO5wTtpeyDaTpxt4brNj3pssAki14sL -2xzVWiZbDcDq5WDQn/413z8CAwEAAaOCAawwggGoMA8GA1UdEwEB/wQFMAMBAf8w -ggEWBgNVHSAEggENMIIBCTCCAQUGCisGAQQBzh8BAQEwgfYwgdAGCCsGAQUFBwIC -MIHDHoHAAFMAZQBlACAAcwBlAHIAdABpAGYAaQBrAGEAYQB0ACAAbwBuACAAdgDk -AGwAagBhAHMAdABhAHQAdQBkACAAQQBTAC0AaQBzACAAUwBlAHIAdABpAGYAaQB0 -AHMAZQBlAHIAaQBtAGkAcwBrAGUAcwBrAHUAcwAgAGEAbABhAG0ALQBTAEsAIABz -AGUAcgB0AGkAZgBpAGsAYQBhAHQAaQBkAGUAIABrAGkAbgBuAGkAdABhAG0AaQBz -AGUAawBzMCEGCCsGAQUFBwIBFhVodHRwOi8vd3d3LnNrLmVlL2Nwcy8wKwYDVR0f -BCQwIjAgoB6gHIYaaHR0cDovL3d3dy5zay5lZS9qdXVyL2NybC8wHQYDVR0OBBYE -FASqekej5ImvGs8KQKcYP2/v6X2+MB8GA1UdIwQYMBaAFASqekej5ImvGs8KQKcY -P2/v6X2+MA4GA1UdDwEB/wQEAwIB5jANBgkqhkiG9w0BAQUFAAOCAQEAe8EYlFOi -CfP+JmeaUOTDBS8rNXiRTHyoERF5TElZrMj3hWVcRrs7EKACr81Ptcw2Kuxd/u+g -kcm2k298gFTsxwhwDY77guwqYHhpNjbRxZyLabVAyJRld/JXIWY7zoVAtjNjGr95 -HvxcHdMdkxuLDF2FvZkwMhgJkVLpfKG6/2SSmuz+Ne6ML678IIbsSt4beDI3poHS -na9aEhbKmVv8b20OxaAehsmR0FyYgl9jDIpaq9iVpszLita/ZEuOyoqysOkhMp6q -qIWYNIE5ITuoOlIyPfZrN4YGWhWY3PARZv40ILcD9EEQfTmEeZZyY7aWAuVrua0Z -TbvGRNs2yyqcjg== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-012_Sonera Class1 CA_Sonera.pem b/test/rules/platform_certs/cacert/Cert-012_Sonera Class1 CA_Sonera.pem deleted file mode 100644 index c5dad57acee4..000000000000 --- a/test/rules/platform_certs/cacert/Cert-012_Sonera Class1 CA_Sonera.pem +++ /dev/null @@ -1,19 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDIDCCAgigAwIBAgIBJDANBgkqhkiG9w0BAQUFADA5MQswCQYDVQQGEwJGSTEP -MA0GA1UEChMGU29uZXJhMRkwFwYDVQQDExBTb25lcmEgQ2xhc3MxIENBMB4XDTAx -MDQwNjEwNDkxM1oXDTIxMDQwNjEwNDkxM1owOTELMAkGA1UEBhMCRkkxDzANBgNV -BAoTBlNvbmVyYTEZMBcGA1UEAxMQU29uZXJhIENsYXNzMSBDQTCCASIwDQYJKoZI -hvcNAQEBBQADggEPADCCAQoCggEBALWJHytPZwp5/8Ue+H887dF+2rDNbS82rDTG -29lkFwhjMDMiikzujrsPDUJVyZ0upe/3p4zDq7mXy47vPxVnqIJyY1MPQYx9EJUk -oVqlBvqSV536pQHydekfvFYmUk54GWVYVQNYwBSujHxVX3BbdyMGNpfzJLWaRpXk -3w0LBUXl0fIdgrvGE+D+qnr9aTCU89JFhfzyMlsy3uhsXR/LpCJ0sICOXZT3BgBL -qdReLjVQCfOAl/QMF6452F/NM8EcyonCIvdFEu1eEpOdY6uCLrnrQkFEy0oaAIIN -nvmLVz5MxxftLItyM19yejhW1ebZrgUaHXVFsculJRwSVzb9IjcCAwEAAaMzMDEw -DwYDVR0TAQH/BAUwAwEB/zARBgNVHQ4ECgQIR+IMi/ZTiFIwCwYDVR0PBAQDAgEG -MA0GCSqGSIb3DQEBBQUAA4IBAQCLGrLJXWG04bkruVPRsoWdd44W7hE928Jj2VuX -ZfsSZ9gqXLar5V7DtxYvyOirHYr9qxp81V9jz9yw3Xe5qObSIjiHBxTZ/75Wtf0H -DjxVyhbMp6Z3N/vbXB9OWQaHowND9Rart4S9Tu+fMTfwRvFAttEMpWT4Y14h21VO -TzF2nBBhjrZTOqMRvq9tfB69ri3iDGnHhVNoomG6xT60eVR4ngrHAr5i0RGCS2Uv -kVrCqIexVmiUefkl98HVrhq4uz2PqYo4Ffdz0Fpg0YCw8NzVUM1O7pJIae2yIx4w -zMiUyLb1O4Z/P6Yun/Y+LLWSlj7fLJOK/4GMDw9ZIRlXvVWa ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-013_http---www.valicert.com-_ValiCert, Inc.pem b/test/rules/platform_certs/cacert/Cert-013_http---www.valicert.com-_ValiCert, Inc.pem deleted file mode 100644 index 2b60983655c6..000000000000 --- a/test/rules/platform_certs/cacert/Cert-013_http---www.valicert.com-_ValiCert, Inc.pem +++ /dev/null @@ -1,18 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIC5zCCAlACAQEwDQYJKoZIhvcNAQEFBQAwgbsxJDAiBgNVBAcTG1ZhbGlDZXJ0 -IFZhbGlkYXRpb24gTmV0d29yazEXMBUGA1UEChMOVmFsaUNlcnQsIEluYy4xNTAz -BgNVBAsTLFZhbGlDZXJ0IENsYXNzIDMgUG9saWN5IFZhbGlkYXRpb24gQXV0aG9y -aXR5MSEwHwYDVQQDExhodHRwOi8vd3d3LnZhbGljZXJ0LmNvbS8xIDAeBgkqhkiG -9w0BCQEWEWluZm9AdmFsaWNlcnQuY29tMB4XDTk5MDYyNjAwMjIzM1oXDTE5MDYy -NjAwMjIzM1owgbsxJDAiBgNVBAcTG1ZhbGlDZXJ0IFZhbGlkYXRpb24gTmV0d29y -azEXMBUGA1UEChMOVmFsaUNlcnQsIEluYy4xNTAzBgNVBAsTLFZhbGlDZXJ0IENs -YXNzIDMgUG9saWN5IFZhbGlkYXRpb24gQXV0aG9yaXR5MSEwHwYDVQQDExhodHRw -Oi8vd3d3LnZhbGljZXJ0LmNvbS8xIDAeBgkqhkiG9w0BCQEWEWluZm9AdmFsaWNl -cnQuY29tMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDjmFGWHOjVsQaBalfD -cnWTq8+epvzzFlLWLU2fNUSoLgRNB0mKOCn1dzfnt6td3zZxFJmP3MKS8edgkpfs -2Ejcv8ECIMYkpChMMFp2bbFc893enhBxoYjHW5tBbcqwuI4V7q0zK89HBFx1cQqY -JJgpp0lZpd34t0NiYfPT4tBVPwIDAQABMA0GCSqGSIb3DQEBBQUAA4GBAFa7AliE -Zwgs3x/be0kz9dNnnfS0ChCzycUs4pJqcXgn8nCDQtM+z6lU9PHYkhaM0QTLS6vJ -n0WuPIqpsHEzXcjFV9+vqDWzf4mH6eglkrh/hXqu1rweN1gqZ8mRzyqBPu3GOd/A -PhmcGcwTTYJBtYze4D1gCCAPRX5ron+jjBXu ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-014_TC TrustCenter Class 2 CA II_TC TrustCenter GmbH.pem b/test/rules/platform_certs/cacert/Cert-014_TC TrustCenter Class 2 CA II_TC TrustCenter GmbH.pem deleted file mode 100644 index c28ac18daef0..000000000000 --- a/test/rules/platform_certs/cacert/Cert-014_TC TrustCenter Class 2 CA II_TC TrustCenter GmbH.pem +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEqjCCA5KgAwIBAgIOLmoAAQACH9dSISwRXDswDQYJKoZIhvcNAQEFBQAwdjEL -MAkGA1UEBhMCREUxHDAaBgNVBAoTE1RDIFRydXN0Q2VudGVyIEdtYkgxIjAgBgNV -BAsTGVRDIFRydXN0Q2VudGVyIENsYXNzIDIgQ0ExJTAjBgNVBAMTHFRDIFRydXN0 -Q2VudGVyIENsYXNzIDIgQ0EgSUkwHhcNMDYwMTEyMTQzODQzWhcNMjUxMjMxMjI1 -OTU5WjB2MQswCQYDVQQGEwJERTEcMBoGA1UEChMTVEMgVHJ1c3RDZW50ZXIgR21i -SDEiMCAGA1UECxMZVEMgVHJ1c3RDZW50ZXIgQ2xhc3MgMiBDQTElMCMGA1UEAxMc -VEMgVHJ1c3RDZW50ZXIgQ2xhc3MgMiBDQSBJSTCCASIwDQYJKoZIhvcNAQEBBQAD -ggEPADCCAQoCggEBAKuAh5uO8MN8h9foJIIRszzdQ2Lu+MNF2ujhoF/RKrLqk2jf -tMjWQ+nEdVl//OEd+DFwIxuInie5e/060smp6RQvkL4DUsFJzfb95AhmC1eKokKg -uNV/aVyQMrKXDcpK3EY+AlWJU+MaWss2xgdW94zPEfRMuzBwBJWl9jmM/XOBCH2J -XjIeIqkiRUuwZi4wzJ9l/fzLganx4Duvo4bRierERXlQXa7pIXSSTYtZgo+U4+lK -8edJsBTj9WLL1XK9H7nSn6DNqPoByNkN39r8R52zyFTfSUrxIan+GE7uSNQZu+99 -5OKdy1u2bv/jzVrndIIFuoAlOMvkaZ6vQaoahPUCAwEAAaOCATQwggEwMA8GA1Ud -EwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBTjq1RMgKHbVkO3 -kUrL84J6E1wIqzCB7QYDVR0fBIHlMIHiMIHfoIHcoIHZhjVodHRwOi8vd3d3LnRy -dXN0Y2VudGVyLmRlL2NybC92Mi90Y19jbGFzc18yX2NhX0lJLmNybIaBn2xkYXA6 -Ly93d3cudHJ1c3RjZW50ZXIuZGUvQ049VEMlMjBUcnVzdENlbnRlciUyMENsYXNz -JTIwMiUyMENBJTIwSUksTz1UQyUyMFRydXN0Q2VudGVyJTIwR21iSCxPVT1yb290 -Y2VydHMsREM9dHJ1c3RjZW50ZXIsREM9ZGU/Y2VydGlmaWNhdGVSZXZvY2F0aW9u -TGlzdD9iYXNlPzANBgkqhkiG9w0BAQUFAAOCAQEAjNfffu4bgBCzg/XbEeprS6iS -GNn3Bzn1LL4GdXpoUxUc6krtXvwjshOg0wn/9vYua0Fxec3ibf2uWWuFHbhOIprt -ZjluS5TmVfwLG4t3wVMTZonZKNaL80VKY7f9ewthXbhtvsPcW3nS7Yblok2+XnR8 -au0WOB9/WIFaGusyiC2y8zl3gK9etmF1KdsjTYjKUCjLhdLTEKJZbtOTVAB6okaV -hgWcqRmY5TFyDADiZ9lA4CQze28suVyrZZ0srHbqNZn1l7kPJOzHdiEoZa5X6AeI -dUpWoNIFOqTmjZKILPPy4cHGYdtBxceb9w4aUUXCYWvcZCcXjFq32nQozZfkvQ== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-015_CNNIC ROOT_CNNIC.pem b/test/rules/platform_certs/cacert/Cert-015_CNNIC ROOT_CNNIC.pem deleted file mode 100644 index c81744b5f5e3..000000000000 --- a/test/rules/platform_certs/cacert/Cert-015_CNNIC ROOT_CNNIC.pem +++ /dev/null @@ -1,20 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDVTCCAj2gAwIBAgIESTMAATANBgkqhkiG9w0BAQUFADAyMQswCQYDVQQGEwJD -TjEOMAwGA1UEChMFQ05OSUMxEzARBgNVBAMTCkNOTklDIFJPT1QwHhcNMDcwNDE2 -MDcwOTE0WhcNMjcwNDE2MDcwOTE0WjAyMQswCQYDVQQGEwJDTjEOMAwGA1UEChMF -Q05OSUMxEzARBgNVBAMTCkNOTklDIFJPT1QwggEiMA0GCSqGSIb3DQEBAQUAA4IB -DwAwggEKAoIBAQDTNfc/c3et6FtzF8LRb+1VvG7q6KR5smzDo+/hn7E7SIX1mlwh -IhAsxYLO2uOabjfhhyzcuQxauohV3/2q2x8x6gHx3zkBwRP9SFIhxFXf2tizVHa6 -dLG3fdfA6PZZxU3Iva0fFNrfWEQlMhkqx35+jq44sDB7R3IJMfAw28Mbdim7aXZO -V/kbZKKTVrdvmW7bCgScEeOAH8tjlBAKqeFkgjH5jCftppkA9nCTGPihNIaj3XrC -GHn2emU1z5DrvTOTn1OrczvmmzQgLx3vqR1jGqCA2wMv+SYahtKNu6m+UjqHZ0gN -v7Sg2Ca+I19zN38m5pIEo3/PIKe38zrKy5nLAgMBAAGjczBxMBEGCWCGSAGG+EIB -AQQEAwIABzAfBgNVHSMEGDAWgBRl8jGtKvf33VKWCscCwQ7vptU7ETAPBgNVHRMB -Af8EBTADAQH/MAsGA1UdDwQEAwIB/jAdBgNVHQ4EFgQUZfIxrSr3991SlgrHAsEO -76bVOxEwDQYJKoZIhvcNAQEFBQADggEBAEs17szkrr/Dbq2flTtLP1se31cpolnK -OOK5Gv+e5m4y3R6u6jW39ZORTtpC4cMXYFDy0VwmuYK36m3knITnA3kXr5g9lNvH -ugDnuL8BV8F3RTIMO/G0HAiw/VGgod2aHRM2mm23xzy54cXZF/qD1T0VoDy7Hgvi -yJA/qIYM/PmLXoXLT1tLYhFHxUV8BS9BsZ4QaRuZluBVeftOhpm4lNqGOGqTo+fL -buXf6iFViZx9fX+Y9QCJ7uOEwFyWtcVG6kbghVW2G8kS1sHNzYDzAgE8yGnLRUhj -2JTQ7IUOO04RZfSCjKY9ri4ilAnIXOo8gV0WKgOXFlUJ24pBgp5mmxE= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-016_StartCom Certification Authority_StartCom Ltd.pem b/test/rules/platform_certs/cacert/Cert-016_StartCom Certification Authority_StartCom Ltd.pem deleted file mode 100644 index 960f2657be21..000000000000 --- a/test/rules/platform_certs/cacert/Cert-016_StartCom Certification Authority_StartCom Ltd.pem +++ /dev/null @@ -1,44 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIHyTCCBbGgAwIBAgIBATANBgkqhkiG9w0BAQUFADB9MQswCQYDVQQGEwJJTDEW -MBQGA1UEChMNU3RhcnRDb20gTHRkLjErMCkGA1UECxMiU2VjdXJlIERpZ2l0YWwg -Q2VydGlmaWNhdGUgU2lnbmluZzEpMCcGA1UEAxMgU3RhcnRDb20gQ2VydGlmaWNh -dGlvbiBBdXRob3JpdHkwHhcNMDYwOTE3MTk0NjM2WhcNMzYwOTE3MTk0NjM2WjB9 -MQswCQYDVQQGEwJJTDEWMBQGA1UEChMNU3RhcnRDb20gTHRkLjErMCkGA1UECxMi -U2VjdXJlIERpZ2l0YWwgQ2VydGlmaWNhdGUgU2lnbmluZzEpMCcGA1UEAxMgU3Rh -cnRDb20gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUA -A4ICDwAwggIKAoICAQDBiNsJvGxGfHiflXu1M5DycmLWwTYgIiRezul38kMKogZk -pMyONvg45iPwbm2xPN1yo4UcodM9tDMr0y+v/uqwQVlntsQGfQqedIXWeUyAN3rf -OQVSWff0G0ZDpNKFhdLDcfN1YjS6LIp/Ho/u7TTQEceWzVI9ujPW3U3eCztKS5/C -Ji/6tRYccjV3yjxd5srhJosaNnZcAdt0FCX+7bWgiA/deMotHweXMAEtcnn6RtYT -Kqi5pquDSR3l8u/d5AGOGAqPY1MWhWKpDhk6zLVmpsJrdAfkK+F2PrRt2PZE4XNi -HzvEvqBTViVsUQn3qqvKv3b9bZvzndu/PWa8DFaqr5hIlTpL36dYUNk4dalb6kMM -Av+Z6+hsTXBbKWWc3apdzK8BMewM69KN6Oqce+Zu9ydmDBpI125C4z/eIT574Q1w -+2OqqGwaVLRcJXrJosmLFqa7LH4XXgVNWG4SHQHuEhANxjJ/GP/89PrNbpHoNkm+ -Gkhpi8KWTRoSsmkXwQqQ1vp5Iki/untp+HDH+no32NgN0nZPV/+Qt+OR0t3vwmC3 -Zzrd/qqc8NSLf3Iizsafl7b4r4qgEKjZ+xjGtrVcUjyJthkqcwEKDwOzEmDyei+B -26Nu/yYwl/WL3YlXtq09s68rxbd2AvCl1iuahhQqcvbjM4xdCUsT37uMdBNSSwID -AQABo4ICUjCCAk4wDAYDVR0TBAUwAwEB/zALBgNVHQ8EBAMCAa4wHQYDVR0OBBYE -FE4L7xqkQFulF2mHMMo0aEPQQa7yMGQGA1UdHwRdMFswLKAqoCiGJmh0dHA6Ly9j -ZXJ0LnN0YXJ0Y29tLm9yZy9zZnNjYS1jcmwuY3JsMCugKaAnhiVodHRwOi8vY3Js -LnN0YXJ0Y29tLm9yZy9zZnNjYS1jcmwuY3JsMIIBXQYDVR0gBIIBVDCCAVAwggFM -BgsrBgEEAYG1NwEBATCCATswLwYIKwYBBQUHAgEWI2h0dHA6Ly9jZXJ0LnN0YXJ0 -Y29tLm9yZy9wb2xpY3kucGRmMDUGCCsGAQUFBwIBFilodHRwOi8vY2VydC5zdGFy -dGNvbS5vcmcvaW50ZXJtZWRpYXRlLnBkZjCB0AYIKwYBBQUHAgIwgcMwJxYgU3Rh -cnQgQ29tbWVyY2lhbCAoU3RhcnRDb20pIEx0ZC4wAwIBARqBl0xpbWl0ZWQgTGlh -YmlsaXR5LCByZWFkIHRoZSBzZWN0aW9uICpMZWdhbCBMaW1pdGF0aW9ucyogb2Yg -dGhlIFN0YXJ0Q29tIENlcnRpZmljYXRpb24gQXV0aG9yaXR5IFBvbGljeSBhdmFp -bGFibGUgYXQgaHR0cDovL2NlcnQuc3RhcnRjb20ub3JnL3BvbGljeS5wZGYwEQYJ -YIZIAYb4QgEBBAQDAgAHMDgGCWCGSAGG+EIBDQQrFilTdGFydENvbSBGcmVlIFNT -TCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTANBgkqhkiG9w0BAQUFAAOCAgEAFmyZ -9GYMNPXQhV59CuzaEE44HF7fpiUFS5Eyweg78T3dRAlbB0mKKctmArexmvclmAk8 -jhvh3TaHK0u7aNM5Zj2gJsfyOZEdUauCe37Vzlrk4gNXcGmXCPleWKYK34wGmkUW -FjgKXlf2Ysd6AgXmvB618p70qSmD+LIU424oh0TDkBreOKk8rENNZEXO3SipXPJz -ewT4F+irsfMuXGRuczE6Eri8sxHkfY+BUZo7jYn0TZNmezwD7dOaHZrzZVD1oNB1 -ny+v8OqCQ5j4aZyJecRDjkZy42Q2Eq/3JR44iZB3fsNrarnDy0RLrHiQi+fHLB5L -EUTINFInzQpdn4XBidUaePKVEFMy3YCEZnXZtWgo+2EuvoSoOMCZEoalHmdkrQYu -L6lwhceWD3yJZfWOQ1QOq92lgDmUYMA0yZZwLKMS9R9Ie70cfmu3nZD0Ijuu+Pwq -yvqCUqDvr0tVk+vBtfAii6w0TiYiBKGHLHVKt+V9E9e4DGTANtLJL4YSjCMJwRuC -O3NJo2pXh5Tl1njFmUNj403gdy3hZZlyaQQaRwnmDwFWJPsfvw55qVguucQJAX6V -um0ABj6y6koQOdjQK/W/7HW/lwLFCRsI3FU34oH7N4RDYiDK51ZLZer+bMEkkySh -NOsF/5oirpt9P/FlUQqmMGqz9IgcgA38corog14= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-017_Certigna_Dhimyotis.pem b/test/rules/platform_certs/cacert/Cert-017_Certigna_Dhimyotis.pem deleted file mode 100644 index 220d95f9f49e..000000000000 --- a/test/rules/platform_certs/cacert/Cert-017_Certigna_Dhimyotis.pem +++ /dev/null @@ -1,22 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDqDCCApCgAwIBAgIJAP7c4wEPyUj/MA0GCSqGSIb3DQEBBQUAMDQxCzAJBgNV -BAYTAkZSMRIwEAYDVQQKDAlEaGlteW90aXMxETAPBgNVBAMMCENlcnRpZ25hMB4X -DTA3MDYyOTE1MTMwNVoXDTI3MDYyOTE1MTMwNVowNDELMAkGA1UEBhMCRlIxEjAQ -BgNVBAoMCURoaW15b3RpczERMA8GA1UEAwwIQ2VydGlnbmEwggEiMA0GCSqGSIb3 -DQEBAQUAA4IBDwAwggEKAoIBAQDIaPHJ1tazNHUmgh7stL7qXOEm7RFHYeGifBZ4 -QCHkYJ5ayGPhxLGWkv8YbWkj4Sti993iNi+RB7lIzw7sebYs5zRLcAglozyHGxny -gQcPOJAZ0xH+hrTy0V4eHpbNgGzOOzGTtvKg0KmVEn2lmsxryIRWijOp5yIVUxbw -zBfsV1/pogqYCd7jX5xv3EjjhQsVWqa6n6xI4wmy9/Qy3l40vhx4XUJbzg4ij02Q -130yGLMLLGq/jj8UEYkgDncUtT2UCIf3JR7VsmAA7G8qKCVuKj4YYxclPz5EIBb2 -JsglrgVKtOdjLPOMFlN+XPsRGgjBRmKfIrjxwo1p3Po6WAbfAgMBAAGjgbwwgbkw -DwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUGu3+QTmQtCRZvgHyUtVF9lo53BEw -ZAYDVR0jBF0wW4AUGu3+QTmQtCRZvgHyUtVF9lo53BGhOKQ2MDQxCzAJBgNVBAYT -AkZSMRIwEAYDVQQKDAlEaGlteW90aXMxETAPBgNVBAMMCENlcnRpZ25hggkA/tzj -AQ/JSP8wDgYDVR0PAQH/BAQDAgEGMBEGCWCGSAGG+EIBAQQEAwIABzANBgkqhkiG -9w0BAQUFAAOCAQEAhQMeknH2Qq/ho2Ge6/PAD/Kl1NqV5ta+aDY9fm4fTIrv0Q8h -bV6lUmPOEvjvKtpv6zf+EwLHyzs+ImvaYS5/1HI93TDhHkxAGYwP15zRgzB7mFnc -fca5DClMoTOi62c6ZYTTluLtdkVwj7Ur3vkj1kluPBS1xp81HlDQwY9qcEQCYsuu -HWhBp6pX6FOqB9IG9tUUBguRA3UsbHK1YZWaDYu5Def131TN3ubY1gkIl2PlwS6w -t0QmwCbAr1UwnjvVNioZBPRcHv/PLLf/0P2HQBHVESO7SMAhqaQoLf0V+LBOK/Qw -WyH8EZE0vkHve52Xdf+XlcCWWC/qu0bXu+TZLg== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-018_ComSign Secured CA_ComSign.pem b/test/rules/platform_certs/cacert/Cert-018_ComSign Secured CA_ComSign.pem deleted file mode 100644 index 8d80b192041d..000000000000 --- a/test/rules/platform_certs/cacert/Cert-018_ComSign Secured CA_ComSign.pem +++ /dev/null @@ -1,22 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDqzCCApOgAwIBAgIRAMcoRwmzuGxFjB36JPU2TukwDQYJKoZIhvcNAQEFBQAw -PDEbMBkGA1UEAxMSQ29tU2lnbiBTZWN1cmVkIENBMRAwDgYDVQQKEwdDb21TaWdu -MQswCQYDVQQGEwJJTDAeFw0wNDAzMjQxMTM3MjBaFw0yOTAzMTYxNTA0NTZaMDwx -GzAZBgNVBAMTEkNvbVNpZ24gU2VjdXJlZCBDQTEQMA4GA1UEChMHQ29tU2lnbjEL -MAkGA1UEBhMCSUwwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDGtWhf -HZQVw6QIVS3joFd67+l0Kru5fFdJGhFeTymHDEjWaueP1H5XJLkGieQcPOqs49oh -gHMhCu95mGwfCP+hUH3ymBvJVG8+pSjsIQQPRbsHPaHA+iqYHU4Gk/v1iDurX8sW -v+bznkqH7Rnqwp9D5PGBpX8QTz7RSmKtUxvLg/8HZaWSLWapW7ha9B20IZFKF3ue -Mv5WJDmyVIRD9YTC2LxBkMyd1mja6YJQqTtoz7VdApRgFrFD2UNd3V2Hbuq7s8lr -9gOUCXDeFhF6K+h2j0kQmHe5Y1yLM5d19guMsqtb3nQgJT/j8xH5h2iGNXHDHYwt -6+UarA9z1YJZQIDTAgMBAAGjgacwgaQwDAYDVR0TBAUwAwEB/zBEBgNVHR8EPTA7 -MDmgN6A1hjNodHRwOi8vZmVkaXIuY29tc2lnbi5jby5pbC9jcmwvQ29tU2lnblNl -Y3VyZWRDQS5jcmwwDgYDVR0PAQH/BAQDAgGGMB8GA1UdIwQYMBaAFMFL7XC29z58 -ADsAj8c+DkWfHl3sMB0GA1UdDgQWBBTBS+1wtvc+fAA7AI/HPg5Fnx5d7DANBgkq -hkiG9w0BAQUFAAOCAQEAFs/ukhNQq3sUnjO2QiBq1BW9Cav8cujvR3qQrFHBZE7p -iL1DRYHjZiM/EoZNGeQFsOY3wo3aBijJD4mkU6l1P7CW+6tMM1X5eCZGbxs2mPtC -dsGCuY7e+0X5YxtiOzkGynd6qDwJz2w2PQ8KRUtpFhpFfTMDZflScZAmlaxMDPWL -kz/MdXSFmLr/YnpNH4n+rr2UAJm/EaXc4HnFFgt9AmEd6oX5AhVP51qJThRv4zdL -hfXBPGHg/QVBspJ/wx2g0K5SZGBrGMYmnNj1ZOQ2GmKfig8+/21OGVZOIJFsnzQz -OjRXUDpvgV4GxvU+fE6OK85lBi5d0ipTdF7Tbieejw== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-019_EC-ACC_Agencia Catalana de Certificacio (NIF Q-0801176-I).pem b/test/rules/platform_certs/cacert/Cert-019_EC-ACC_Agencia Catalana de Certificacio (NIF Q-0801176-I).pem deleted file mode 100644 index 87a13f620b43..000000000000 --- a/test/rules/platform_certs/cacert/Cert-019_EC-ACC_Agencia Catalana de Certificacio (NIF Q-0801176-I).pem +++ /dev/null @@ -1,31 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFVjCCBD6gAwIBAgIQ7is969Qh3hSoYqwE893EATANBgkqhkiG9w0BAQUFADCB -8zELMAkGA1UEBhMCRVMxOzA5BgNVBAoTMkFnZW5jaWEgQ2F0YWxhbmEgZGUgQ2Vy -dGlmaWNhY2lvIChOSUYgUS0wODAxMTc2LUkpMSgwJgYDVQQLEx9TZXJ2ZWlzIFB1 -YmxpY3MgZGUgQ2VydGlmaWNhY2lvMTUwMwYDVQQLEyxWZWdldSBodHRwczovL3d3 -dy5jYXRjZXJ0Lm5ldC92ZXJhcnJlbCAoYykwMzE1MDMGA1UECxMsSmVyYXJxdWlh -IEVudGl0YXRzIGRlIENlcnRpZmljYWNpbyBDYXRhbGFuZXMxDzANBgNVBAMTBkVD -LUFDQzAeFw0wMzAxMDcyMzAwMDBaFw0zMTAxMDcyMjU5NTlaMIHzMQswCQYDVQQG -EwJFUzE7MDkGA1UEChMyQWdlbmNpYSBDYXRhbGFuYSBkZSBDZXJ0aWZpY2FjaW8g -KE5JRiBRLTA4MDExNzYtSSkxKDAmBgNVBAsTH1NlcnZlaXMgUHVibGljcyBkZSBD -ZXJ0aWZpY2FjaW8xNTAzBgNVBAsTLFZlZ2V1IGh0dHBzOi8vd3d3LmNhdGNlcnQu -bmV0L3ZlcmFycmVsIChjKTAzMTUwMwYDVQQLEyxKZXJhcnF1aWEgRW50aXRhdHMg -ZGUgQ2VydGlmaWNhY2lvIENhdGFsYW5lczEPMA0GA1UEAxMGRUMtQUNDMIIBIjAN -BgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsyLHT+KXQpWIR4NA9h0X84NzJB5R -85iKw5K4/0CQBXCHYMkAqbWUZRkiFRfCQ2xmRJoNBD45b6VLeqpjt4pEndljkYRm -4CgPukLjbo73FCeTae6RDqNfDrHrZqJyTxIThmV6PttPB/SnCWDaOkKZx7J/sxaV -HMf5NLWUhdWZXqBIoH7nF2W4onW4HvPlQn2v7fOKSGRdghST2MDk/7NQcvJ29rNd -QlB50JQ+awwAvthrDk4q7D7SzIKiGGUzE3eeml0aE9jD2z3Il3rucO2n5nzbcc8t -lGLfbdb1OL4/pYUKGbio2Al1QnDE6u/LDsg0qBIimAy4E5S2S+zw0JDnJwIDAQAB -o4HjMIHgMB0GA1UdEQQWMBSBEmVjX2FjY0BjYXRjZXJ0Lm5ldDAPBgNVHRMBAf8E -BTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUoMOLRKo3pUW/l4Ba0fF4 -opvpXY0wfwYDVR0gBHgwdjB0BgsrBgEEAfV4AQMBCjBlMCwGCCsGAQUFBwIBFiBo -dHRwczovL3d3dy5jYXRjZXJ0Lm5ldC92ZXJhcnJlbDA1BggrBgEFBQcCAjApGidW -ZWdldSBodHRwczovL3d3dy5jYXRjZXJ0Lm5ldC92ZXJhcnJlbCAwDQYJKoZIhvcN -AQEFBQADggEBAKBIW4IB9k1IuDlVNZyAelOZ1Vr/sXE7zDkJlF7W2u++AVtd0x7Y -/X1PzaBB4DSTv8vihpw3kpBWHNzrKQXlxJ7HNd+KDM3FIUPpqojlNcAZQmNaAl6k -SBg6hW/cnbw/nZzBh7h6YQjpdwt/cKt63dmXLGQehb+8dJahw3oS7AwaboMMPOhy -Rp/7SNVel+axofjk70YllJyJ22k4vuxcDlbHZVHlUIiIv0LVKz3l+bqeLrPK9HOS -Agu+TGbrIP65y7WZf+a2E/rKS03Z7lNGBjvGTq2TWoF+bCpLagVFjPIhpDGQh2xl -nJ2lYJU6Un/10asIbvPuW/mIPX64b24D5EI= ------END CERTIFICATE----- diff --git "a/test/rules/platform_certs/cacert/Cert-020_Certinomis - Autorit\303\251 Racine_Certinomis.pem" "b/test/rules/platform_certs/cacert/Cert-020_Certinomis - Autorit\303\251 Racine_Certinomis.pem" deleted file mode 100644 index e764de4d2e99..000000000000 --- "a/test/rules/platform_certs/cacert/Cert-020_Certinomis - Autorit\303\251 Racine_Certinomis.pem" +++ /dev/null @@ -1,32 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFnDCCA4SgAwIBAgIBATANBgkqhkiG9w0BAQUFADBjMQswCQYDVQQGEwJGUjET -MBEGA1UEChMKQ2VydGlub21pczEXMBUGA1UECxMOMDAwMiA0MzM5OTg5MDMxJjAk -BgNVBAMMHUNlcnRpbm9taXMgLSBBdXRvcml0w6kgUmFjaW5lMB4XDTA4MDkxNzA4 -Mjg1OVoXDTI4MDkxNzA4Mjg1OVowYzELMAkGA1UEBhMCRlIxEzARBgNVBAoTCkNl -cnRpbm9taXMxFzAVBgNVBAsTDjAwMDIgNDMzOTk4OTAzMSYwJAYDVQQDDB1DZXJ0 -aW5vbWlzIC0gQXV0b3JpdMOpIFJhY2luZTCCAiIwDQYJKoZIhvcNAQEBBQADggIP -ADCCAgoCggIBAJ2Fn4bT46/HsmtuM+Cet0I0VZ35gb5j2CN2DpdUzZlMGvE5x4jY -F1AMnmHawE5V3udauHpOd4cN5bjr+p5eex7Ezyh0x5P1FMYiKAT5kcOrJ3NqDi5N -8y4oH3DfVS9O7cdxbwlyLu3VMpfQ8Vh30WC8Tl7bmoT2R2FFK/ZQpn9qcSdIhDWe -rP5pqZ56XjUl+rSnSTV3lqc2W+HN3yNw2F1MpQiD8aYkOBOo7C+ooWfHpi2GR+6K -/OybDnT0K0kCe5B1jPyZOQE51kqJ5Z52qz6WKDgmi92NjMD2AR5vpTESOH2VwnHu -7XSu5DaiQ3XV8QCb4uTXzEIDS3h65X27uK4uIJPT5GHfceF2Z5c/tt9qc1pkIuVC -28+BA5PY9OMQ4HL2AHCs8MF6DwV/zzRpRbWT5BnbUhYjBYkOjUjkJW+zeL9i9Qf6 -lSTClrLooyPCXQP8w9PlfMl1I9f09bze5N/NgL+RiH2nE7Q5uiy6vdFrzPOlKO1E -nn1So2+WLhl+HPNbxxaOu2B9d2ZHVIIAEWBsMsGoOBvrbpgT1u449fCfDu/+MYHB -0iSVL1N6aaLwD4ZFjliCK0wi1F6g530mJ0jfJUaNSih8hp75mxpZuWW/Bd22Ql09 -5gBIgl4g9xGC3srYn+Y3RyYe63j3YcNBZFgCQfna4NH4+ej9Uji29YnfAgMBAAGj -WzBZMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBQN -jLZh2kS40RR9w759XkjwzspqsDAXBgNVHSAEEDAOMAwGCiqBegFWAgIAAQEwDQYJ -KoZIhvcNAQEFBQADggIBACQ+YAZ+He86PtvqrxyaLAEL9MW12Ukx9F1BjYkMTv9s -ov3/4gbIOZ/xWqndIlgVqIrTseYyCYIDbNc/CMf4uboAbbnW/FIyXaR/pDGUu7ZM -OH8oMDX/nyNTt7buFHAAQCvaR6s0fl6nVjBhK4tDrP22iCj1a7Y+YEq6QpA0Z43q -619FVDsXrIvkxmUP7tCMXWY5zjKn2BCXwH40nJ+U8/aGH88bc62UeYdocMMzpXDn -2NU4lG9jeeu/Cg4I58UvD0KgKxRA/yHgBcUn4YQRE7rWhh1BCxMjidPJC+iKunqj -o3M3NYB9Ergzd0A4wPpeMNLytqOx1qKVl4GbUu1pTP+A5FPbVFsDbVRfsbjvJL1v -nxHDx2TCDyhihWZeGnuyt++uNckZM6i4J9szVb9o4XVIRFb7zdNIu0eJOqxp9YDG -5ERQL1TEqkPFMTFYvZbF6nVsmnWxTfj3l/+WFvKXTej28xH5On2KOG4Ey+HTRRWq -pdEdnV1j6CTmNhTih60bWfVEm/vXd3wfAXBioSAaosUaKPQhA+4u2cGA6rnZgtZb -dsLLO7XSAPCjDuGtbkD326C00EauFddEwk01+dIL8hf2rGbVJLJP0RyZwG71fet0 -BLj5TXcJ17TPBzAJ8bgAVtkXFhYKK4bfjwEZGuW7gmP/vgt2Fl43N+bYdJeimUV5 ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-021_Buypass Class 3 CA 1_Buypass AS-983163327.pem b/test/rules/platform_certs/cacert/Cert-021_Buypass Class 3 CA 1_Buypass AS-983163327.pem deleted file mode 100644 index 6fdb64399a1b..000000000000 --- a/test/rules/platform_certs/cacert/Cert-021_Buypass Class 3 CA 1_Buypass AS-983163327.pem +++ /dev/null @@ -1,20 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDUzCCAjugAwIBAgIBAjANBgkqhkiG9w0BAQUFADBLMQswCQYDVQQGEwJOTzEd -MBsGA1UECgwUQnV5cGFzcyBBUy05ODMxNjMzMjcxHTAbBgNVBAMMFEJ1eXBhc3Mg -Q2xhc3MgMyBDQSAxMB4XDTA1MDUwOTE0MTMwM1oXDTE1MDUwOTE0MTMwM1owSzEL -MAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1eXBhc3MgQVMtOTgzMTYzMzI3MR0wGwYD -VQQDDBRCdXlwYXNzIENsYXNzIDMgQ0EgMTCCASIwDQYJKoZIhvcNAQEBBQADggEP -ADCCAQoCggEBAKSO13TZKWTeXx+HgJHqTjnmGcZEC4DVC69TB4sSveZn8AKxifZg -isRbsELRwCGoy+Gb72RRtqfPFfV0gGgEkKBYouZ0plNTVUhjP5JW3SROjvi6K//z -NIqeKNc0n6wv1g/xpC+9UrJJhW05NfBEMJNGJPO251P7vGGvqaMU+8IXF4Rs4HyI -+MkcVyzwPX6UvCWThOiaAJpFBUJXgPROztmuOfbIUxAMZTpHe2DC1vqRycZxbL2R -hzyRhkmr8w+gbCZ2Xhysm3HljbybIR6c1jh+JIAVMYKWsUnTYjdbiAwKYjT+p0h+ -mbEwi5A3lRyoH6UsjfRVyNvdWQrCrXig9IsCAwEAAaNCMEAwDwYDVR0TAQH/BAUw -AwEB/zAdBgNVHQ4EFgQUOBTmyPCppAP0Tj4io1vy1uCtQHQwDgYDVR0PAQH/BAQD -AgEGMA0GCSqGSIb3DQEBBQUAA4IBAQABZ6OMySU9E2NdFm/soT4JXJEVKirZgCFP -Bdy7pYmrEzMqnji3jG8CcmPHc3ceCQa6Oyh7pEfJYWsICCD8igWKH7y6xsL+z27s -EzNxZy5p+qksP2bAEllNC1QCkoS72xLvg3BweMhT+t/Gxv/ciC8HwEmdMldg0/L2 -mSlf56oBzKwzqBwKu5HEA6BvtjT5htOzdlSY9EqBs1OdTUDs5XcTRa9bqh/YL0yC -e/4qxFi7T/ye/QNlGioOw6UgFpRreaaiErS7GqQjel/wroQk5PMr+4okoyeYZdow -dXb8GZHo2+ubPzK/QJcHJrrM85SFSnonk8+QQtS4Wxam58tAA915 ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-022_GeoTrust Global CA 2_GeoTrust Inc.pem b/test/rules/platform_certs/cacert/Cert-022_GeoTrust Global CA 2_GeoTrust Inc.pem deleted file mode 100644 index 2031f3edb4eb..000000000000 --- a/test/rules/platform_certs/cacert/Cert-022_GeoTrust Global CA 2_GeoTrust Inc.pem +++ /dev/null @@ -1,21 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDZjCCAk6gAwIBAgIBATANBgkqhkiG9w0BAQUFADBEMQswCQYDVQQGEwJVUzEW -MBQGA1UEChMNR2VvVHJ1c3QgSW5jLjEdMBsGA1UEAxMUR2VvVHJ1c3QgR2xvYmFs -IENBIDIwHhcNMDQwMzA0MDUwMDAwWhcNMTkwMzA0MDUwMDAwWjBEMQswCQYDVQQG -EwJVUzEWMBQGA1UEChMNR2VvVHJ1c3QgSW5jLjEdMBsGA1UEAxMUR2VvVHJ1c3Qg -R2xvYmFsIENBIDIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDvPE1A -PRDfO1MA4Wf+lGAVPoWI8YkNkMgoI5kF6CsgncbzYEbYwbLVjDHZ3CB5JIG/NTL8 -Y2nbsSpr7iFY8gjpeMtvy/wWUsiRxP89c96xPqfCfWbB9X5SJBri1WeR0IIQ13hL -TytCOb1kLUCgsBDTOEhGiKEMuzozKmKY+wCdE1l/bztyqu6mD4b5BWHqZ38MN5aL -5mkWRxHCJ1kDs6ZgwiFAVvqgx306E+PsV8ez1q6diYD3Aecs9pYrEw15LNnA5IZ7 -S4wMcoKK+xfNAGw6EzywhIdLFnopsk/bHdQL82Y3vdj2V7teJHq4PIu5+pIaGoSe -2HSPqht/XvT+RSIhAgMBAAGjYzBhMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYE -FHE4NvICMVNHK266ZUapEBVYIAUJMB8GA1UdIwQYMBaAFHE4NvICMVNHK266ZUap -EBVYIAUJMA4GA1UdDwEB/wQEAwIBhjANBgkqhkiG9w0BAQUFAAOCAQEAA/e1K6td -EPx7srJerJsOflN4WT5CBP51o62sgU7XAotexC3IUnbHLB/8gTKY0UvGkpMzNTEv -/NgdRN3ggX+d6YvhZJFiCzkIjKx0nVnZellSlxG5FntvRdOW2TF9AjYPnDtuzywN -A0ZF66D0f0hExghAzN4bcLUprbqLOzRldRtxIR0sFAqwlpW41uryZfspuk/qkZN0 -abby/+Ea0AzRdoXLiiW9l14sbxWZJue2Kf8i7MkCx1YAzUm5s2x7UwQa4qjJqhIF -I8LO57sEAszAR6LkxCkvW0VXiVHuPOtSCP8HNR6fNWpHSlaY0VqFH4z1Ir+rzoPz -4iIprn2DQKi6bA== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-023_Wells Fargo Root Certificate Authority_Wells Fargo.pem b/test/rules/platform_certs/cacert/Cert-023_Wells Fargo Root Certificate Authority_Wells Fargo.pem deleted file mode 100644 index 2ba88cdda792..000000000000 --- a/test/rules/platform_certs/cacert/Cert-023_Wells Fargo Root Certificate Authority_Wells Fargo.pem +++ /dev/null @@ -1,23 +0,0 @@ ------BEGIN CERTIFICATE----- -MIID5TCCAs2gAwIBAgIEOeSXnjANBgkqhkiG9w0BAQUFADCBgjELMAkGA1UEBhMC -VVMxFDASBgNVBAoTC1dlbGxzIEZhcmdvMSwwKgYDVQQLEyNXZWxscyBGYXJnbyBD -ZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTEvMC0GA1UEAxMmV2VsbHMgRmFyZ28gUm9v -dCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwHhcNMDAxMDExMTY0MTI4WhcNMjEwMTE0 -MTY0MTI4WjCBgjELMAkGA1UEBhMCVVMxFDASBgNVBAoTC1dlbGxzIEZhcmdvMSww -KgYDVQQLEyNXZWxscyBGYXJnbyBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTEvMC0G -A1UEAxMmV2VsbHMgRmFyZ28gUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwggEi -MA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDVqDM7Jvk0/82bfuUER84A4n13 -5zHCLielTWi5MbqNQ1mXx3Oqfz1cQJ4F5aHiidlMuD+b+Qy0yGIZLEWukR5zcUHE -SxP9cMIlrCL1dQu3U+SlK93OvRw6esP3E48mVJwWa2uv+9iWsWCaSOAlIiR5NM4O -JgALTqv9i86C1y8IcGjBqAr5dE8Hq6T54oN+J3N0Prj5OEL8pahbSCOz6+MlsoCu -ltQKnMJ4msZoGK43YjdeUXWoWGPAUe5AeH6orxqg4bB4nVCMe+ez/I4jsNtlAHCE -AQgAFG5Uhpq6zPk3EPbg3oQtnaSFN9OH4xXQwReQfhkhahKpdv0SAulPIV4XAgMB -AAGjYTBfMA8GA1UdEwEB/wQFMAMBAf8wTAYDVR0gBEUwQzBBBgtghkgBhvt7hwcB -CzAyMDAGCCsGAQUFBwIBFiRodHRwOi8vd3d3LndlbGxzZmFyZ28uY29tL2NlcnRw -b2xpY3kwDQYJKoZIhvcNAQEFBQADggEBANIn3ZwKdyu7IvICtUpKkfnRLb7kuxpo -7w6kAOnu5+/u9vnldKTC2FJYxHT7zmu1Oyl5GFrvm+0fazbuSCUlFLZWohDo7qd/ -0D+j0MNdJu4HzMPBJCGHHt8qElNvQRbn7a6U+oxy+hNH8Dx+rn0ROhPs7fpvcmR7 -nX1/Jv16+yWt6j4pf0zjAFcysLPp7VMX2YuyFA4w6OXVE8Zkr8QA1dhYJPz1j+zx -x32l2w8n0cbyQIjmH/ZhqPRCyLk306m+LFZ4wnKbWV01QIroTmMatukgalHizqSQ -33ZwmVxwQ023tqcZZE6St8WRPH9IFmV7Fv3L/PvZ1dZPIWU7Sn9Ho/s= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-024_Certum CA_Unizeto Sp. z o.o.pem b/test/rules/platform_certs/cacert/Cert-024_Certum CA_Unizeto Sp. z o.o.pem deleted file mode 100644 index b133fcb49560..000000000000 --- a/test/rules/platform_certs/cacert/Cert-024_Certum CA_Unizeto Sp. z o.o.pem +++ /dev/null @@ -1,19 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDDDCCAfSgAwIBAgIDAQAgMA0GCSqGSIb3DQEBBQUAMD4xCzAJBgNVBAYTAlBM -MRswGQYDVQQKExJVbml6ZXRvIFNwLiB6IG8uby4xEjAQBgNVBAMTCUNlcnR1bSBD -QTAeFw0wMjA2MTExMDQ2MzlaFw0yNzA2MTExMDQ2MzlaMD4xCzAJBgNVBAYTAlBM -MRswGQYDVQQKExJVbml6ZXRvIFNwLiB6IG8uby4xEjAQBgNVBAMTCUNlcnR1bSBD -QTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM6xwS7TT3zNJc4YPk/E -jG+AanPIW1H4m9LcuwBcsaD8dQPugfCI7iNS6eYVM42sLQnFdvkrOYCJ5JdLkKWo -ePhzQ3ukYbDYWMzhbGZ+nPMJXlVjhNWo7/OxLjBos8Q82KxujZlakE403Daaj4GI -ULdtlkIJ89eVgw1BS7Bqa/j8D35in2fE7SZfECYPCE/wpFcozo+47UX2bu4lXapu -Ob7kky/ZR6By6/qmW6/KUz/iDsaWVhFu9+lmqSbYf5VT7QqFiLpPKaVCjF62/IUg -AKpoC6EahQGcxEZjgoi2IrHu/qpGWX7PNSzVttpd90gzFFS269lvzs2I1qsb2pY7 -HVkCAwEAAaMTMBEwDwYDVR0TAQH/BAUwAwEB/zANBgkqhkiG9w0BAQUFAAOCAQEA -uI3O7+cUus/usESSbLQ5PqKEbq24IXfS1HeCh+YgQYHu4vgRt2PRFze+GXYkHAQa -TOs9qmdvLdTN/mUxcMUbpgIKumB7bVjCmkn+YzILa+M6wKyrO7Do0wlRjBCDxjTg -xSvgGrZgFCdsMneMvLJymM/NzD+5yCRCFNZX/OYmQ6kd5YCQzgNUKD73P9P4Te1q -CjqTE5s7FCMTY5w/0YcneeVMUeMBrYVdGjux1XMQpNPyvG5k9VpWkKjHDkx0Dy5x -O/fIR/RpbxXyEV6DHpx8Uq79AtoSqFlnGNu8cN2bsWntgM6JQEhqDjXKKWYVIZQs -6GAqm4VKQPNriiTsBhYscw== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-025_TWCA Root Certification Authority_TAIWAN-CA.pem b/test/rules/platform_certs/cacert/Cert-025_TWCA Root Certification Authority_TAIWAN-CA.pem deleted file mode 100644 index 8d39bc6ffe03..000000000000 --- a/test/rules/platform_certs/cacert/Cert-025_TWCA Root Certification Authority_TAIWAN-CA.pem +++ /dev/null @@ -1,21 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDezCCAmOgAwIBAgIBATANBgkqhkiG9w0BAQUFADBfMQswCQYDVQQGEwJUVzES -MBAGA1UECgwJVEFJV0FOLUNBMRAwDgYDVQQLDAdSb290IENBMSowKAYDVQQDDCFU -V0NBIFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDgwODI4MDcyNDMz -WhcNMzAxMjMxMTU1OTU5WjBfMQswCQYDVQQGEwJUVzESMBAGA1UECgwJVEFJV0FO -LUNBMRAwDgYDVQQLDAdSb290IENBMSowKAYDVQQDDCFUV0NBIFJvb3QgQ2VydGlm -aWNhdGlvbiBBdXRob3JpdHkwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB -AQCwfnK4pAOU5qfeCTiRShFAh6d8WWQUe7UREN3+v9XAu1bihSX0NXIP+FPQQeFE -AcK0HMMxQhZHhTMidrIKbw/lJVBPhYa+v5guEGcevhEFhgWQxFnQfHgQsIBct+HH -K3XLfJ+utdGdIzdjp9xCoi2SBBtQwXu4PhvJVgSLL1KbralW6cH/ralYhzC2gfeX -RfwZVzsrb+RH9JlF/h3x+JejiB03HFyP4HYlmlD4oFT/RJB2I9IyxsOrBr/8+7/z -rX2SYgJbKdM1o5OaQ2RgXbL6Mv87BK9NQGr5x+PvI/1ry+UPizgN7gr8/g+YnzAx -3WxSZfmLgb4i4RxYA7qRG4kHAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNV -HRMBAf8EBTADAQH/MB0GA1UdDgQWBBRqOFsmjd6LWvJPelSDGRjjCDWmujANBgkq -hkiG9w0BAQUFAAOCAQEAPNV3PdrfibqHDAhUaiBQkr6wQT25JmSDCi/oQMCXKCeC -MErJk/9q56YAf4lCmtYR5VPOL8zy2gXE/uJQxDqGfczafhAJO5I1KlOy/usrBdls -XebQ79NqZp4VKIV66IIArB6nCWlWQtNoURi+VJq/REG6Sb4gumlc7rh3zc5sH62D -lhh9DrUUOYTxKOkto557HnpyWoOzeW/vtPzQCqVYT0bf+215WfKEIlKuD8z7fDvn -aspHYcN6+NOSBB+4IIThNlQWx0DeO4pz3N/GCUzf7Nr/1FNCocnyYh0igzyXxfkZ -YiesZSLX0zzG5Y6yU8xJzrww/nsOM5D77dIUkR8Hrw== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-026_NetLock Expressz (Class C) Tanusitvanykiado_NetLock Halozatbiztonsagi Kft.pem b/test/rules/platform_certs/cacert/Cert-026_NetLock Expressz (Class C) Tanusitvanykiado_NetLock Halozatbiztonsagi Kft.pem deleted file mode 100644 index 5f7c1ce434fa..000000000000 --- a/test/rules/platform_certs/cacert/Cert-026_NetLock Expressz (Class C) Tanusitvanykiado_NetLock Halozatbiztonsagi Kft.pem +++ /dev/null @@ -1,31 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFTzCCBLigAwIBAgIBaDANBgkqhkiG9w0BAQQFADCBmzELMAkGA1UEBhMCSFUx -ETAPBgNVBAcTCEJ1ZGFwZXN0MScwJQYDVQQKEx5OZXRMb2NrIEhhbG96YXRiaXp0 -b25zYWdpIEtmdC4xGjAYBgNVBAsTEVRhbnVzaXR2YW55a2lhZG9rMTQwMgYDVQQD -EytOZXRMb2NrIEV4cHJlc3N6IChDbGFzcyBDKSBUYW51c2l0dmFueWtpYWRvMB4X -DTk5MDIyNTE0MDgxMVoXDTE5MDIyMDE0MDgxMVowgZsxCzAJBgNVBAYTAkhVMREw -DwYDVQQHEwhCdWRhcGVzdDEnMCUGA1UEChMeTmV0TG9jayBIYWxvemF0Yml6dG9u -c2FnaSBLZnQuMRowGAYDVQQLExFUYW51c2l0dmFueWtpYWRvazE0MDIGA1UEAxMr -TmV0TG9jayBFeHByZXNzeiAoQ2xhc3MgQykgVGFudXNpdHZhbnlraWFkbzCBnzAN -BgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEA6+ywbGGKIyWvYCDj2Z/8kwvbXY2wobNA -OoLO/XXgeDIDhlqGlZHtU/qdQPzm6N3ZW3oDvV3zOwzDUXmbrVWg6dADEK8KuhRC -2VImESLH0iDMgqSaqf64gXadarfSNnU+sYYJ9m5tfk63euyucYT2BDMIJTLrdKwW -RMbkQJMdf60CAwEAAaOCAp8wggKbMBIGA1UdEwEB/wQIMAYBAf8CAQQwDgYDVR0P -AQH/BAQDAgAGMBEGCWCGSAGG+EIBAQQEAwIABzCCAmAGCWCGSAGG+EIBDQSCAlEW -ggJNRklHWUVMRU0hIEV6ZW4gdGFudXNpdHZhbnkgYSBOZXRMb2NrIEtmdC4gQWx0 -YWxhbm9zIFN6b2xnYWx0YXRhc2kgRmVsdGV0ZWxlaWJlbiBsZWlydCBlbGphcmFz -b2sgYWxhcGphbiBrZXN6dWx0LiBBIGhpdGVsZXNpdGVzIGZvbHlhbWF0YXQgYSBO -ZXRMb2NrIEtmdC4gdGVybWVrZmVsZWxvc3NlZy1iaXp0b3NpdGFzYSB2ZWRpLiBB -IGRpZ2l0YWxpcyBhbGFpcmFzIGVsZm9nYWRhc2FuYWsgZmVsdGV0ZWxlIGF6IGVs -b2lydCBlbGxlbm9yemVzaSBlbGphcmFzIG1lZ3RldGVsZS4gQXogZWxqYXJhcyBs -ZWlyYXNhIG1lZ3RhbGFsaGF0byBhIE5ldExvY2sgS2Z0LiBJbnRlcm5ldCBob25s -YXBqYW4gYSBodHRwczovL3d3dy5uZXRsb2NrLm5ldC9kb2NzIGNpbWVuIHZhZ3kg -a2VyaGV0byBheiBlbGxlbm9yemVzQG5ldGxvY2submV0IGUtbWFpbCBjaW1lbi4g -SU1QT1JUQU5UISBUaGUgaXNzdWFuY2UgYW5kIHRoZSB1c2Ugb2YgdGhpcyBjZXJ0 -aWZpY2F0ZSBpcyBzdWJqZWN0IHRvIHRoZSBOZXRMb2NrIENQUyBhdmFpbGFibGUg -YXQgaHR0cHM6Ly93d3cubmV0bG9jay5uZXQvZG9jcyBvciBieSBlLW1haWwgYXQg -Y3BzQG5ldGxvY2submV0LjANBgkqhkiG9w0BAQQFAAOBgQAQrX/XDDKACtiG8XmY -ta3UzbM2xJZIwVzNmtkFLp++UOv0JhQQLdRmF/iewSf98e3ke0ugbLWrmldwpu2g -pO0u9f38vf5NNwgMvOOWgyL1SRt/Syu0VMGAfJlOHdCM7tCs5ZL6dVb+ZKATj7i4 -Fp1hBWeAyNDYpQcCNJgEjTME1A== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-027_SwissSign Silver CA - G2_SwissSign AG.pem b/test/rules/platform_certs/cacert/Cert-027_SwissSign Silver CA - G2_SwissSign AG.pem deleted file mode 100644 index 67a172cb6dc0..000000000000 --- a/test/rules/platform_certs/cacert/Cert-027_SwissSign Silver CA - G2_SwissSign AG.pem +++ /dev/null @@ -1,33 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFvTCCA6WgAwIBAgIITxvUL1S7L0swDQYJKoZIhvcNAQEFBQAwRzELMAkGA1UE -BhMCQ0gxFTATBgNVBAoTDFN3aXNzU2lnbiBBRzEhMB8GA1UEAxMYU3dpc3NTaWdu -IFNpbHZlciBDQSAtIEcyMB4XDTA2MTAyNTA4MzI0NloXDTM2MTAyNTA4MzI0Nlow -RzELMAkGA1UEBhMCQ0gxFTATBgNVBAoTDFN3aXNzU2lnbiBBRzEhMB8GA1UEAxMY -U3dpc3NTaWduIFNpbHZlciBDQSAtIEcyMIICIjANBgkqhkiG9w0BAQEFAAOCAg8A -MIICCgKCAgEAxPGHf9N4Mfc4yfjDmUO8x/e8N+dOcbpLj6VzHVxumK4DV644N0Mv -Fz0fyM5oEMF4rhkDKxD6LHmD9ui5aLlV8gREpzn5/ASLHvGiTSf5YXu6t+WiE7br -YT7QbNHm+/pe7R20nqA1W6GSy/BJkv6FCgU+5tkL4k+73JU3/JHpMjUi0R86TieF -nbAVlDLaYQ1HTWBCrpJH6INaUFjpiou5XaHc3ZlKHzZnu0jkg7Y360g6rw9njxcH -6ATK72oxh9TAtvmUcXtnZLi2kUpCe2UuMGoM9ZDulebyzYLs2aFK7PayS+VFheZt -eJMELpyCbTapxDFkH4aDCyr0NQp4yVXPQbBH6TCfmb5hqAaEuSh6XzjZG6k4sIN/ -c8HDO0gqgg8hm7jMqDXDhBuDsz6+pJVpATqJAHgE2cn0mRmrVn5bi4Y5FZGkECwJ -MoBgs5PAKrYYC51+jUnyEEp/+dVGLxmSo5mnJqy7jDzmDrxHB9xzUfFwZC8I+bRH -HTBsROopN4WSaGa8gzj+ezku01DwH/teYLappvonQfGbGHLy9YR0SslnxFSuSGTf -jNFusB3hB48IHpmccelM2KX3RxIfdNFRnobzwqIjQAtz20um53MGjMGg6cFZrEb6 -5i/4z3GcRm25xBWNOHkDRUjvxF3XCO6HOSKGsg0PWEP3calILv3q1h8CAwEAAaOB -rDCBqTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQU -F6DNweRBtjpbO8tFnb0cwpj6hlgwHwYDVR0jBBgwFoAUF6DNweRBtjpbO8tFnb0c -wpj6hlgwRgYDVR0gBD8wPTA7BglghXQBWQEDAQEwLjAsBggrBgEFBQcCARYgaHR0 -cDovL3JlcG9zaXRvcnkuc3dpc3NzaWduLmNvbS8wDQYJKoZIhvcNAQEFBQADggIB -AHPGgeAn0i0P4JUw4ppBf1AsX19iYamGamkYDHRJ1l2E6kFSGG9YrVBWIGrGvShp -WJHckRE1qTodvBqlYJ7YH39FkWnZfrt4csEGDyrOj4VwYaygzQu4OSlWhDJOhrs9 -xCrZ1x9y7v5RoSJBsXECYxqCsGKrXlcSH9/L3XWgwF15kIwb4FDm3jH+mHtwX6WQ -2K34ArZv02DdQEsixT2tOnqfGhpHkXkzuoLcMmkDlm4fS/Bx/uNncqCxv1yL5PqZ -IseEuRuNI5c/7SXgz2W79WEE790eslpBIlqhn10s6FvJbakMDHiqYMZWjwFaDGi8 -aRl5xB9+lwW/xekkUV7U1UtT7dkjWjYDZaPBA61BMPNGG4WQr2W11bHkFlt4dR2X -em1ZqSqPe97Dh4kQmUlzeMg9vVE1dCrV8X5pGyq7O70luJpaPXJhkGaH7gzWTdQR -dAtq/gsD/KNVV4n+SsuuWxcFyPKNIzFTONItaj+CuY0IavdeQXRuwxF+B6wpYJE/ -OMpXEA29MC/HpeZBoNquBYeaoKRlbEwJDIm6uNO5wJOKMPqN5ZprFQFOZ6raYlY+ -hAhm0sQ2fac+EPyI4NSA5QC9qvNOBqN6avlicuMJT+ubDgEj8Z+7fNzcbBGXJbLy -tGMU0gYqZ4yD9c7qB9iaah7s5Aq7KkzrCWA5zspi2C5u ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-028_Entrust.net Certification Authority (2048)_Entrust.net.pem b/test/rules/platform_certs/cacert/Cert-028_Entrust.net Certification Authority (2048)_Entrust.net.pem deleted file mode 100644 index 06926c8e0186..000000000000 --- a/test/rules/platform_certs/cacert/Cert-028_Entrust.net Certification Authority (2048)_Entrust.net.pem +++ /dev/null @@ -1,26 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEXDCCA0SgAwIBAgIEOGO5ZjANBgkqhkiG9w0BAQUFADCBtDEUMBIGA1UEChML -RW50cnVzdC5uZXQxQDA+BgNVBAsUN3d3dy5lbnRydXN0Lm5ldC9DUFNfMjA0OCBp -bmNvcnAuIGJ5IHJlZi4gKGxpbWl0cyBsaWFiLikxJTAjBgNVBAsTHChjKSAxOTk5 -IEVudHJ1c3QubmV0IExpbWl0ZWQxMzAxBgNVBAMTKkVudHJ1c3QubmV0IENlcnRp -ZmljYXRpb24gQXV0aG9yaXR5ICgyMDQ4KTAeFw05OTEyMjQxNzUwNTFaFw0xOTEy -MjQxODIwNTFaMIG0MRQwEgYDVQQKEwtFbnRydXN0Lm5ldDFAMD4GA1UECxQ3d3d3 -LmVudHJ1c3QubmV0L0NQU18yMDQ4IGluY29ycC4gYnkgcmVmLiAobGltaXRzIGxp -YWIuKTElMCMGA1UECxMcKGMpIDE5OTkgRW50cnVzdC5uZXQgTGltaXRlZDEzMDEG -A1UEAxMqRW50cnVzdC5uZXQgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgKDIwNDgp -MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArU1LqRKGsuqjIAcVFmQq -K0vRvwtKTY7tgHalZ7d4QMBzQshowNtTK91euHaYNZOLGp18EzoOH1u3Hs/lJBQe -sYGpjX24zGtLA/ECDNyrpUAkAH90lKGdCCmziAv1h3edVc3kw37XamSrhRSGlVuX -MlBvPci6Zgzj/L24ScF2iUkZ/cCovYmjZy/Gn7xxGWC4LeksyZB2ZnuU4q941mVT -XTzWnLLPKQP5L6RQstRIzgUyVYr9smRMDuSYB3Xbf9+5CFVghTAp+XtIpGmG4zU/ -HoZdenoVve8AjhUiVBcAkCaTvA5JaJG/+EfTnZVCwQ5N328mz8MYIWJmQ3DW1cAH -4QIDAQABo3QwcjARBglghkgBhvhCAQEEBAMCAAcwHwYDVR0jBBgwFoAUVeSB0RGA -vtiJuQijMfmhJAkWuXAwHQYDVR0OBBYEFFXkgdERgL7YibkIozH5oSQJFrlwMB0G -CSqGSIb2fQdBAAQQMA4bCFY1LjA6NC4wAwIEkDANBgkqhkiG9w0BAQUFAAOCAQEA -WUesIYSKF8mciVMeuoCFGsY8Tj6xnLZ8xpJdGGQC49MGCBFhfGPjK50xA3B20qMo -oPS7mmNz7W3lKtvtFKkrxjYR0CvrB4ul2p5cGZ1WEvVUKcgF7bISKo30Axv/55IQ -h7A6tcOdBTcSo8f0FbnVpDkWm1M6I5HxqIKiaohowXkCIryqptau37AUX7iH0N18 -f3v/rxzP5tsHrV7bhZ3QKw0z2wTR5klAEyt2+z7pnIkPFc4YsIV4IU9rTw76NmfN -B/L/CNDi3tm/Kq+4h4YhPATKt5Rof8886ZjXOP/swNlQ8C5LWK5Gb9Auw2DaclVy -vUxFnmG6v4SBkgPR0ml8xQ== ------END CERTIFICATE----- diff --git "a/test/rules/platform_certs/cacert/Cert-029_T\303\234RKTRUST.pem" "b/test/rules/platform_certs/cacert/Cert-029_T\303\234RKTRUST.pem" deleted file mode 100644 index 4069c783bda8..000000000000 --- "a/test/rules/platform_certs/cacert/Cert-029_T\303\234RKTRUST.pem" +++ /dev/null @@ -1,24 +0,0 @@ ------BEGIN CERTIFICATE----- -MIID+zCCAuOgAwIBAgIBATANBgkqhkiG9w0BAQUFADCBtzE/MD0GA1UEAww2VMOc -UktUUlVTVCBFbGVrdHJvbmlrIFNlcnRpZmlrYSBIaXptZXQgU2HEn2xhecSxY8Sx -c8SxMQswCQYDVQQGDAJUUjEPMA0GA1UEBwwGQU5LQVJBMVYwVAYDVQQKDE0oYykg -MjAwNSBUw5xSS1RSVVNUIEJpbGdpIMSwbGV0acWfaW0gdmUgQmlsacWfaW0gR8O8 -dmVubGnEn2kgSGl6bWV0bGVyaSBBLsWeLjAeFw0wNTA1MTMxMDI3MTdaFw0xNTAz -MjIxMDI3MTdaMIG3MT8wPQYDVQQDDDZUw5xSS1RSVVNUIEVsZWt0cm9uaWsgU2Vy -dGlmaWthIEhpem1ldCBTYcSfbGF5xLFjxLFzxLExCzAJBgNVBAYMAlRSMQ8wDQYD -VQQHDAZBTktBUkExVjBUBgNVBAoMTShjKSAyMDA1IFTDnFJLVFJVU1QgQmlsZ2kg -xLBsZXRpxZ9pbSB2ZSBCaWxpxZ9pbSBHw7x2ZW5sacSfaSBIaXptZXRsZXJpIEEu -xZ4uMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAylIF1mMD2Bxf3dJ7 -XfIMYGFbazt0K3gNfUW9InTojAPBxhEqPZW8qZSwu5GXyGl8hMW0kWxsE2qkVa2k -heiVfrMArwDCBRj1cJ02i67L5BuBf5OI+2pVu32Fks66WJ/bMsW9Xe8iSi9BB35J -YbOG7E6mQW6EvAPs9TscyB/C7qju6hJKjRTP8wrgUDn5CDX4EVmt5yLqS8oUBt5C -urKZ8y1UiBAG6uEaPj1nH/vO+3yC6BFdSsG5FOpU2WabfIl9BJpiyelSPJ6c79L1 -JuTm5Rh8i27fbMx4W09ysstcP4wFjdFMjK2Sx+F4f2VsSQZQLJ4ywtdKxnWKWU51 -b0dewQIDAQABoxAwDjAMBgNVHRMEBTADAQH/MA0GCSqGSIb3DQEBBQUAA4IBAQAV -9VX/N5aAWSGk/KEVTCD21F/aAyT8z5Aa9CEKmu46sWrv7/hg0Uw2ZkUd82YCdAR7 -kjCo3gp2D++Vbr3JN+YaDayJSFvMgzbC9UZcWYJWtNX+I7TYVBxEq8Sn5RTOPEFh -fEPmzcSBCYsk+1Ql1haolgxnB2+zUEfjHCQo3SqYpGH+2+oSN7wBGjSFvW5P55Fy -B0SFHljKVETd96y5y4khctuPwGkplyqjrhgjlxxBKot8KsF8kOipKMDTkcatKIdA -aLX/7KfS0zgYnNN9aV3wxqUeJBujR/xpB2jn5Jq07Q+hh4cCzofSSE7hvP/L8XKS -RGQDJereW26fyfJOrN3H ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-030_UTN-USERFirst-Hardware_The USERTRUST Network.pem b/test/rules/platform_certs/cacert/Cert-030_UTN-USERFirst-Hardware_The USERTRUST Network.pem deleted file mode 100644 index 46386b734ac4..000000000000 --- a/test/rules/platform_certs/cacert/Cert-030_UTN-USERFirst-Hardware_The USERTRUST Network.pem +++ /dev/null @@ -1,26 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEdDCCA1ygAwIBAgIQRL4Mi1AAJLQR0zYq/mUK/TANBgkqhkiG9w0BAQUFADCB -lzELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAlVUMRcwFQYDVQQHEw5TYWx0IExha2Ug -Q2l0eTEeMBwGA1UEChMVVGhlIFVTRVJUUlVTVCBOZXR3b3JrMSEwHwYDVQQLExho -dHRwOi8vd3d3LnVzZXJ0cnVzdC5jb20xHzAdBgNVBAMTFlVUTi1VU0VSRmlyc3Qt -SGFyZHdhcmUwHhcNOTkwNzA5MTgxMDQyWhcNMTkwNzA5MTgxOTIyWjCBlzELMAkG -A1UEBhMCVVMxCzAJBgNVBAgTAlVUMRcwFQYDVQQHEw5TYWx0IExha2UgQ2l0eTEe -MBwGA1UEChMVVGhlIFVTRVJUUlVTVCBOZXR3b3JrMSEwHwYDVQQLExhodHRwOi8v -d3d3LnVzZXJ0cnVzdC5jb20xHzAdBgNVBAMTFlVUTi1VU0VSRmlyc3QtSGFyZHdh -cmUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCx98M4P7Sof885glFn -0G2f0v9Y8+efK+wNiVSZuTiZFvfgIXlIwrthdBKWHTxqctU8EGc6Oe0rE81m65UJ -M6Rsl7HoxuzBdXmcRl6Nq9Bq/bkqVRcQVLMZ8Jr28bFdtqdt++BxF2uiiPsA3/4a -MXcMmgF6sTLjKwEHOG7DpV4jvEWbe1DByTCP2+UretNb+zNAHqDVmBe8i4fDidNd -oI6yqqr2jmmIBsX6iSHzCJ1pLgkzmykNRg+MzEk0sGlRvfkGzWitZky8PqxhvQqI -DsjfPe58BEydCl5rkdbux+0ojatNh4lz0G6k0B4WixThdkQDf2Os5M1JnMWS9Ksy -oUhbAgMBAAGjgbkwgbYwCwYDVR0PBAQDAgHGMA8GA1UdEwEB/wQFMAMBAf8wHQYD -VR0OBBYEFKFyXyYbKJhDlV0HN9WFlp1L0sNFMEQGA1UdHwQ9MDswOaA3oDWGM2h0 -dHA6Ly9jcmwudXNlcnRydXN0LmNvbS9VVE4tVVNFUkZpcnN0LUhhcmR3YXJlLmNy -bDAxBgNVHSUEKjAoBggrBgEFBQcDAQYIKwYBBQUHAwUGCCsGAQUFBwMGBggrBgEF -BQcDBzANBgkqhkiG9w0BAQUFAAOCAQEARxkP3nTGmZev/K0oXnWO6y1n7k57K9cM -//bey1WiCuFMVGWTYGufEpytXoMs61quwOQt9ABjHbjAbPLPSbtNk28Gpgoiskli -CE7/yMgUsogWXecB5BKV5UU0s4tpvc+0hY91UZ59Ojg6FEgSxvunOxqNDYJAB+gE -CJChicsZUN/KHAG8HQQZexB2lzvukJDKxA4fFm517zP4029bHpbj4HR3dHuKom4t -3XbWOTCC8KucUvIqx69JXn7HaOWCgchqJ/kniCrVWFCVH/A7HFe7fRQ5YiuayZSS -KqMiDP+JJn1fIytH1xUdqWqeUQ0qUZ6B+dQ7XnASfxAynB67nfhmqA== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-031_VeriSign Class 4 Public Primary Certification Authority - G3_VeriSign, Inc.pem b/test/rules/platform_certs/cacert/Cert-031_VeriSign Class 4 Public Primary Certification Authority - G3_VeriSign, Inc.pem deleted file mode 100644 index a0c3ef8270a9..000000000000 --- a/test/rules/platform_certs/cacert/Cert-031_VeriSign Class 4 Public Primary Certification Authority - G3_VeriSign, Inc.pem +++ /dev/null @@ -1,24 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEGjCCAwICEQDsoKeLbnVqAc/EfMwvlF7XMA0GCSqGSIb3DQEBBQUAMIHKMQsw -CQYDVQQGEwJVUzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZl -cmlTaWduIFRydXN0IE5ldHdvcmsxOjA4BgNVBAsTMShjKSAxOTk5IFZlcmlTaWdu -LCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxRTBDBgNVBAMTPFZlcmlT -aWduIENsYXNzIDQgUHVibGljIFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3Jp -dHkgLSBHMzAeFw05OTEwMDEwMDAwMDBaFw0zNjA3MTYyMzU5NTlaMIHKMQswCQYD -VQQGEwJVUzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlT -aWduIFRydXN0IE5ldHdvcmsxOjA4BgNVBAsTMShjKSAxOTk5IFZlcmlTaWduLCBJ -bmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxRTBDBgNVBAMTPFZlcmlTaWdu -IENsYXNzIDQgUHVibGljIFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkg -LSBHMzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAK3LpRFpxlmr8Y+1 -GQ9Wzsy1HyDkniYlS+BzZYlZ3tCD5PUPtbut8XzoIfzk6AzufEUiGXaStBO3IFsJ -+mGuqPKljYXCKtbeZjbSmwL0qJJgfJxptI8kHtCGUvYynEFYHiK9zUVilQhu0Gbd -U6LM8BDcVHOLBKFGMzNcF0C5nk3T875Vg+ixiY5afJqWIpA7iCXy0lOIAgwLePLm -NxdLMEYH5IBtptiWLugs+BGzOA1mppvqySNb247i8xOOGlktqgLw7KSHZtzBP/XY -ufTsgsbSPZUd5cBPhMnZo0QoBmrXRazwa2rvTl/4EYIeOGM0ZlDUPpNz+jDDZq3/ -ky2X7wMCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEAj/ola09b5KROJ1WrIhVZPMq1 -CtRK26vdoV9TxaBXOcLORyu+OshWv8LZJxA6sQU8wHcxuzrTBXttmhwwjIDLk5Mq -g6sFUYICABFna/OIYUdfA5PVWw3g8dShMjWFsjrbsIKr0csKvE+MW8VLADsfKoKm -fjaF3H48ZwC15DtS4KjrXRX5xm3wrR0OhbepmnMUWluPQSjA1egtTaRezarZ7c7c -2NU8Qh0XwRJdRTjDOPP8hS6DRkiy1yBfkjaP53kPmF6Z6PDQpLv1U70qzlmwr25/ -bLvSHgCwIe34QWKCudiyxLtGUPMxxY8BqHTr9Xgn2uf3ZkPznoM+IKrDNWCRzg== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-032_XRamp Global Certification Authority_XRamp Security Services Inc.pem b/test/rules/platform_certs/cacert/Cert-032_XRamp Global Certification Authority_XRamp Security Services Inc.pem deleted file mode 100644 index f21e6d8b7ca6..000000000000 --- a/test/rules/platform_certs/cacert/Cert-032_XRamp Global Certification Authority_XRamp Security Services Inc.pem +++ /dev/null @@ -1,25 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEMDCCAxigAwIBAgIQUJRs7Bjq1ZxN1ZfvdY+grTANBgkqhkiG9w0BAQUFADCB -gjELMAkGA1UEBhMCVVMxHjAcBgNVBAsTFXd3dy54cmFtcHNlY3VyaXR5LmNvbTEk -MCIGA1UEChMbWFJhbXAgU2VjdXJpdHkgU2VydmljZXMgSW5jMS0wKwYDVQQDEyRY -UmFtcCBHbG9iYWwgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDQxMTAxMTcx -NDA0WhcNMzUwMTAxMDUzNzE5WjCBgjELMAkGA1UEBhMCVVMxHjAcBgNVBAsTFXd3 -dy54cmFtcHNlY3VyaXR5LmNvbTEkMCIGA1UEChMbWFJhbXAgU2VjdXJpdHkgU2Vy -dmljZXMgSW5jMS0wKwYDVQQDEyRYUmFtcCBHbG9iYWwgQ2VydGlmaWNhdGlvbiBB -dXRob3JpdHkwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCYJB69FbS6 -38eMpSe2OAtp87ZOqCwuIR1cRN8hXX4jdP5efrRKt6atH67gBhbim1vZZ3RrXYCP -KZ2GG9mcDZhtdhAoWORlsH9KmHmf4MMxfoArtYzAQDsRhtDLooY2YKTVMIJt2W7Q -DxIEM5dfT2Fa8OT5kavnHTu86M/0ay00fOJIYRyO82FEzG+gSqmUsE3a56k0enI4 -qEHMPJQRfevIpoy3hsvKMzvZPTeL+3o+hiznc9cKV6xkmxnr9A8ECIqsAxcZZPRa -JSKNNCyy9mgdEm3Tih4U2sSPpuIjhdV6Db1q4Ons7Be7QhtnqiXtRYMh/MHJfNVi -PvryxS3T/dRlAgMBAAGjgZ8wgZwwEwYJKwYBBAGCNxQCBAYeBABDAEEwCwYDVR0P -BAQDAgGGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFMZPoj0GY4QJnM5i5ASs -jVy16bYbMDYGA1UdHwQvMC0wK6ApoCeGJWh0dHA6Ly9jcmwueHJhbXBzZWN1cml0 -eS5jb20vWEdDQS5jcmwwEAYJKwYBBAGCNxUBBAMCAQEwDQYJKoZIhvcNAQEFBQAD -ggEBAJEVOQMBG2f7Shz5CmBbodpNl2L5JFMn14JkTpAuw0kbK5rc/Kh4ZzXxHfAR -vbdI4xD2Dd8/0sm2qlWkSLoC295ZLhVbO50WfUfXN+pfTXYSNrsf16GBBEYgoyxt -qZ4Bfj8pzgCT3/3JknOJiWSe5yvkHJEs0rnOfc5vMZnT5r7SHpDwCRR5XCOrTdLa -IR9NmXmd4c8nnxCbHIgNsIpkQTG4DmyQJKSbXHGPurt+HBvbaoAPIbzp26a3QPSy -i6mx5O+aGtA9aZnuqCij4Tyz8LIRnM98QObd50N9otg6tamN8jSZxNQQ4Qb9CYQQ -O+7ETPTsJ3xCwnR8gooJybQDJbw= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-034_ComSign CA_ComSign.pem b/test/rules/platform_certs/cacert/Cert-034_ComSign CA_ComSign.pem deleted file mode 100644 index 35fb5229487f..000000000000 --- a/test/rules/platform_certs/cacert/Cert-034_ComSign CA_ComSign.pem +++ /dev/null @@ -1,22 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDkzCCAnugAwIBAgIQFBOWgxRVjOp7Y+X8NId3RDANBgkqhkiG9w0BAQUFADA0 -MRMwEQYDVQQDEwpDb21TaWduIENBMRAwDgYDVQQKEwdDb21TaWduMQswCQYDVQQG -EwJJTDAeFw0wNDAzMjQxMTMyMThaFw0yOTAzMTkxNTAyMThaMDQxEzARBgNVBAMT -CkNvbVNpZ24gQ0ExEDAOBgNVBAoTB0NvbVNpZ24xCzAJBgNVBAYTAklMMIIBIjAN -BgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA8ORUaSvTx49qROR+WCf4C9DklBKK -8Rs4OC8fMZwG1Cyn3gsqrhqg455qv588x26i+YtkbDqthVVRVKU4VbirgwTyP2Q2 -98CNQ0NqZtH3FyrV7zb6MBBC11PN+fozc0yz6YQgitZBJzXkOPqUm7h65HkfM/sb -2CEJKHxNGGleZIp6GZPKfuzzcuc3B1hZKKxC+cX/zT/npfo4sdAMx9lSGlPWgcxC -ejVb7Us6eva1jsz/D3zkYDaHL63woSV9/9JLEYhwVKZBqGdTUkJe5DSe5L6j7Kpi -Xd3DTKaCQeQzC6zJMw9kglcq/QytNuEMrkvF7zuZ2SOzW120V+x0cAwqTwIDAQAB -o4GgMIGdMAwGA1UdEwQFMAMBAf8wPQYDVR0fBDYwNDAyoDCgLoYsaHR0cDovL2Zl -ZGlyLmNvbXNpZ24uY28uaWwvY3JsL0NvbVNpZ25DQS5jcmwwDgYDVR0PAQH/BAQD -AgGGMB8GA1UdIwQYMBaAFEsBmz5WGmU2dst7l6qSBe4y5ygxMB0GA1UdDgQWBBRL -AZs+VhplNnbLe5eqkgXuMucoMTANBgkqhkiG9w0BAQUFAAOCAQEA0Nmlfv4pYEWd -foPPbrxHbvUanlR2QnG0PFg/LUAlQvaBnPGJEMgOqnhPOAlXsDzACPw1jvFIUY0M -cXS6hMTXcpuEfDhOZAYnKuGntewImbQKDdSFc8gS4TXt8QUxHXOZDOuWyt3T5oWq -8Ir7dcHyCTxlZWTzTNity4hp8+SDtwy9F1qWF8pb/627HOkthIDYIb6FUtnUdLlp -hbpN7Sgy6/lhSuTENh4Z3G+EER+V9YMoGKgzkkMn3V0TBEVPh9VGzT2ouvDzuFYk -Res3x+F2T3I5GN9+dHLHcy056mDmrRGiVod7w2ia/viMcKjfZTL0pECMocJEAw6U -AGegcQCCSA== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-035_DigiNotar Cyber CA_DigiNotar.pem b/test/rules/platform_certs/cacert/Cert-035_DigiNotar Cyber CA_DigiNotar.pem deleted file mode 100644 index d5c0c43509ba..000000000000 --- a/test/rules/platform_certs/cacert/Cert-035_DigiNotar Cyber CA_DigiNotar.pem +++ /dev/null @@ -1,31 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFRTCCBK6gAwIBAgIED////zANBgkqhkiG9w0BAQUFADBgMQswCQYDVQQGEwJO -TDESMBAGA1UEChMJRGlnaU5vdGFyMRswGQYDVQQDExJEaWdpTm90YXIgQ3liZXIg -Q0ExIDAeBgkqhkiG9w0BCQEWEWluZm9AZGlnaW5vdGFyLm5sMB4XDTA2MTAwNDEw -NTQxMloXDTExMTAwNDEwNTMxMlowYDELMAkGA1UEBhMCTkwxEjAQBgNVBAoTCURp -Z2lOb3RhcjEbMBkGA1UEAxMSRGlnaU5vdGFyIEN5YmVyIENBMSAwHgYJKoZIhvcN -AQkBFhFpbmZvQGRpZ2lub3Rhci5ubDCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCC -AgoCggIBANLOFQotqF6EZ639vu9Gx8i5z3P89DS5+SxD52ATPXrjss87Z2yQrcC5 -P4RS8DVC3HTcKDu9UrSnrHJFF8bwieu0qiXyXUte0dmHutZ9fPXOMp8QM8WxSrte -kTHC0OlBwpFkfglBO9uLCDdqqspS3rU5HsCIA6U/i5kTYUO1m4Kz7iBvz6FEouov -a0CfjytXraFTwoUiaZ2gP1HfC0GRDaXhqKpcSQhdvd5wQbEPyWNr0380dAIvNFp4 -dRxoeoFnivPaQPBgY/SSINcDpj2jHmfEhBtBpcmM5r3qSLYFFgizNxJa92E89zhv -Lpfgb1Y4VNMota0Ubi5LZLUnZbd1JQm2Bz2VVgIKgmCyc0XgMyZRdJq51FAc9k1b -W1JSE1qmf6cO4ehBVGeYjIfVydNsy9NUkgYJNEH3gW8/nsl8dVWw58Gzd+jDxAA1 -lUBwEEoF3iW7n1mlZLxHYL9g43aLE1Xd4XR6uc8kpmp/3mQiRFhogmoQ+T3lPhu5 -vfwi9GAEibtVbShV+t6OjRshFNc3izR7TfayshDPM7F9HGKZSMsrbHaWVb8ZDR0f -u2WqG46ZtcYokOWCLXhQIJr9eS8kf/CJKWn0fc1zvrPtTsHR7VJej/e4142HrbLZ -G1ES/1az4a80fVykeIgQnp0DxqWqoiRR90kUxbHuWUOV36toKDA/AgMBAAGjggGG -MIIBgjASBgNVHRMBAf8ECDAGAQH/AgEBMFMGA1UdIARMMEowSAYJKwYBBAGxPgEA -MDswOQYIKwYBBQUHAgEWLWh0dHA6Ly93d3cucHVibGljLXRydXN0LmNvbS9DUFMv -T21uaVJvb3QuaHRtbDAOBgNVHQ8BAf8EBAMCAQYwgaAGA1UdIwSBmDCBlYAUpgwd -n2H/Bxe1vzhG20Mw1Y6wUgaheaR3MHUxCzAJBgNVBAYTAlVTMRgwFgYDVQQKEw9H -VEUgQ29ycG9yYXRpb24xJzAlBgNVBAsTHkdURSBDeWJlclRydXN0IFNvbHV0aW9u -cywgSW5jLjEjMCEGA1UEAxMaR1RFIEN5YmVyVHJ1c3QgR2xvYmFsIFJvb3SCAgGl -MEUGA1UdHwQ+MDwwOqA4oDaGNGh0dHA6Ly93d3cucHVibGljLXRydXN0LmNvbS9j -Z2ktYmluL0NSTC8yMDE4L2NkcC5jcmwwHQYDVR0OBBYEFKv5aN/PSjfXe0WMX3Le -QETDZbvCMA0GCSqGSIb3DQEBBQUAA4GBAI9oa6VbB7pEZg4cqFwwezPkCiYE/O+e -GjjWLqEf0JlHwnVkJP2eOyh2uSYoYZEMbSz4BJ98UAHV42mv7xXSRZskCSpmBU8l -gcpdvqrBWSeuM46C9990sFWzjvjnN8huqlZE9r1TgSOWPbT6MopTZkQloiXGpjwl -jPDgKAYityZB ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-037_QuoVadis Root Certification Authority_QuoVadis Limited.pem b/test/rules/platform_certs/cacert/Cert-037_QuoVadis Root Certification Authority_QuoVadis Limited.pem deleted file mode 100644 index ffa4dbe4190b..000000000000 --- a/test/rules/platform_certs/cacert/Cert-037_QuoVadis Root Certification Authority_QuoVadis Limited.pem +++ /dev/null @@ -1,34 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIF0DCCBLigAwIBAgIEOrZQizANBgkqhkiG9w0BAQUFADB/MQswCQYDVQQGEwJC -TTEZMBcGA1UEChMQUXVvVmFkaXMgTGltaXRlZDElMCMGA1UECxMcUm9vdCBDZXJ0 -aWZpY2F0aW9uIEF1dGhvcml0eTEuMCwGA1UEAxMlUXVvVmFkaXMgUm9vdCBDZXJ0 -aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wMTAzMTkxODMzMzNaFw0yMTAzMTcxODMz -MzNaMH8xCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMSUw -IwYDVQQLExxSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MS4wLAYDVQQDEyVR -dW9WYWRpcyBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIIBIjANBgkqhkiG -9w0BAQEFAAOCAQ8AMIIBCgKCAQEAv2G1lVO6V/z68mcLOhrfEYBklbTRvM16z/Yp -li4kVEAkOPcahdxYTMukJ0KX0J+DisPkBgNbAKVRHnAEdOLB1Dqr1607BxgFjv2D -rOpm2RgbaIr1VxqYuvXtdj182d6UajtLF8HVj71lODqV0D1VNk7feVcxKh7YWWVJ -WCCYfqtffp/p1k3sg3Spx2zY7ilKhSoGFPlU5tPaZQeLYzcS19Dsw3sgQUSj7cug -F+FxZc4dZjH3dgEZyH0DWLaVSR2mEiboxgx24ONmy+pdpibu5cxfvWenAScOospU -xbF6lR1xHkopigPcakXBpBlebzbNw6Kwt/5cOOJSvPhEQ+aQuwIDAQABo4ICUjCC -Ak4wPQYIKwYBBQUHAQEEMTAvMC0GCCsGAQUFBzABhiFodHRwczovL29jc3AucXVv -dmFkaXNvZmZzaG9yZS5jb20wDwYDVR0TAQH/BAUwAwEB/zCCARoGA1UdIASCAREw -ggENMIIBCQYJKwYBBAG+WAABMIH7MIHUBggrBgEFBQcCAjCBxxqBxFJlbGlhbmNl -IG9uIHRoZSBRdW9WYWRpcyBSb290IENlcnRpZmljYXRlIGJ5IGFueSBwYXJ0eSBh -c3N1bWVzIGFjY2VwdGFuY2Ugb2YgdGhlIHRoZW4gYXBwbGljYWJsZSBzdGFuZGFy -ZCB0ZXJtcyBhbmQgY29uZGl0aW9ucyBvZiB1c2UsIGNlcnRpZmljYXRpb24gcHJh -Y3RpY2VzLCBhbmQgdGhlIFF1b1ZhZGlzIENlcnRpZmljYXRlIFBvbGljeS4wIgYI -KwYBBQUHAgEWFmh0dHA6Ly93d3cucXVvdmFkaXMuYm0wHQYDVR0OBBYEFItLbe3T -KbkGGew5Oanwl4Rqy+/fMIGuBgNVHSMEgaYwgaOAFItLbe3TKbkGGew5Oanwl4Rq -y+/foYGEpIGBMH8xCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1p -dGVkMSUwIwYDVQQLExxSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MS4wLAYD -VQQDEyVRdW9WYWRpcyBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5ggQ6tlCL -MA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQUFAAOCAQEAitQUtf70mpKnGdSk -fnIYj9lofFIk3WdvOXrEql494liwTXCYhGHoG+NpGA7O+0dQoE7/8CQfvbLO9Sf8 -7C9TqnN7Az10buYWnuulLsS/VidQK2K6vkscPFVcQR0kvoIgR13VRH56FmjffU1R -cHhXHTMe/QKZnAzNCgVPx7uOpHX6Sm2xgI4JVrmcGmD+XcHXetwReNDWXcG31a0y -mQM6isxUJTkxgXsTIlG6Rmyhu576BGxJJnSP0nPrzDCi5upZIof4l/UO/erMkqQW -xFIY6iHOsfHmhIHluqmGKPJDWl0Snawe2ajlCmqnf6CHKc/yiU3U7MXi5nrQNiOK -SnQ2+Q== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-038_AddTrust Public CA Root_AddTrust AB.pem b/test/rules/platform_certs/cacert/Cert-038_AddTrust Public CA Root_AddTrust AB.pem deleted file mode 100644 index b9665db7c689..000000000000 --- a/test/rules/platform_certs/cacert/Cert-038_AddTrust Public CA Root_AddTrust AB.pem +++ /dev/null @@ -1,24 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEFTCCAv2gAwIBAgIBATANBgkqhkiG9w0BAQUFADBkMQswCQYDVQQGEwJTRTEU -MBIGA1UEChMLQWRkVHJ1c3QgQUIxHTAbBgNVBAsTFEFkZFRydXN0IFRUUCBOZXR3 -b3JrMSAwHgYDVQQDExdBZGRUcnVzdCBQdWJsaWMgQ0EgUm9vdDAeFw0wMDA1MzAx -MDQxNTBaFw0yMDA1MzAxMDQxNTBaMGQxCzAJBgNVBAYTAlNFMRQwEgYDVQQKEwtB -ZGRUcnVzdCBBQjEdMBsGA1UECxMUQWRkVHJ1c3QgVFRQIE5ldHdvcmsxIDAeBgNV -BAMTF0FkZFRydXN0IFB1YmxpYyBDQSBSb290MIIBIjANBgkqhkiG9w0BAQEFAAOC -AQ8AMIIBCgKCAQEA6Rowj4OIFMEg2Dybjxt+A3S72mnTRqX4jsIMEZBRpS9mVEBV -6tsfSlbunyNu9DnLoblv8n75XYcmYZ4c+OLspoH4IcUkzBEMP9smcnrHAZcHF/nX -GCwwfQ56HmIexkvA/X1id9NEHif2P0tEs7c42TkfYNVRknMDtABp4/MUTu7R3AnP -dzRGULD4EfL+OHn3Bzn+UZKXC1sIXzSGAa2Il+tmzV7R/9x98oTaunet3IAIx6eH -1lWfl2royBFkuucZKT8Rs3iQhCBSWxHveNCD9tVIkNAwHM+A+WD+eeSI8t0A65RF -62WUaUC6wNW0uLp9BBGo6zEFlpROWCGOn9Bg/QIDAQABo4HRMIHOMB0GA1UdDgQW -BBSBPjfYkrAfd59ctKtzquf2NGAv+jALBgNVHQ8EBAMCAQYwDwYDVR0TAQH/BAUw -AwEB/zCBjgYDVR0jBIGGMIGDgBSBPjfYkrAfd59ctKtzquf2NGAv+qFopGYwZDEL -MAkGA1UEBhMCU0UxFDASBgNVBAoTC0FkZFRydXN0IEFCMR0wGwYDVQQLExRBZGRU -cnVzdCBUVFAgTmV0d29yazEgMB4GA1UEAxMXQWRkVHJ1c3QgUHVibGljIENBIFJv -b3SCAQEwDQYJKoZIhvcNAQEFBQADggEBAAP3FUr4JNojVhaTdt02KLmuG7jD8WS6 -IBh4lSknVwW8fCr0uVFV2ocC3g8WFzH4qnkuCRO7r7IgGRLlk/lL+YPoRNWyQSW/ -iHVv/xD8SlTQX/D67zZzfRs2RcYhbbQVuE7PnFylPVoAjgbjPGsye/Kf8Lb93/Ao -GEjwxrzQvzSAlsJKsW2Ox5BF3i9nrEUEo3rcVZLJR2bYGozH7ZxOmuASu7VqTITh -4SINhwBk/ox9Yjllpu9CtoAlEmEBqCQTcAARJl/6NVDFSMwGR+gn2HCNX2TmoUQm -XiLsks3/QppEIW1cxeMiHV9HEufOX1362KqxMy3ZdvJOOjMMK7MtkAY= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-040_Hellenic Academic and Research Institutions RootCA 2011_Hellenic Academic and Research Institutions Cert. Authority.pem b/test/rules/platform_certs/cacert/Cert-040_Hellenic Academic and Research Institutions RootCA 2011_Hellenic Academic and Research Institutions Cert. Authority.pem deleted file mode 100644 index 5ecc81c3675f..000000000000 --- a/test/rules/platform_certs/cacert/Cert-040_Hellenic Academic and Research Institutions RootCA 2011_Hellenic Academic and Research Institutions Cert. Authority.pem +++ /dev/null @@ -1,25 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEMTCCAxmgAwIBAgIBADANBgkqhkiG9w0BAQUFADCBlTELMAkGA1UEBhMCR1Ix -RDBCBgNVBAoTO0hlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1 -dGlvbnMgQ2VydC4gQXV0aG9yaXR5MUAwPgYDVQQDEzdIZWxsZW5pYyBBY2FkZW1p -YyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIFJvb3RDQSAyMDExMB4XDTExMTIw -NjEzNDk1MloXDTMxMTIwMTEzNDk1MlowgZUxCzAJBgNVBAYTAkdSMUQwQgYDVQQK -EztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENl -cnQuIEF1dGhvcml0eTFAMD4GA1UEAxM3SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJl -c2VhcmNoIEluc3RpdHV0aW9ucyBSb290Q0EgMjAxMTCCASIwDQYJKoZIhvcNAQEB -BQADggEPADCCAQoCggEBAKlTAOMupvaO+mDYLZU++CwqVE7NuYRhlFhPjz2L5EPz -dYmNUeTDN9KKiE15HrcS3UN4SoqS5tdI1Q+kOilENbgH9mgdVc04UfCMJDGFr4PJ -fel3r+0ae50X+bOdOFAPplp5kYCvN66m0zH7tSYJnTxa71HFK9+WXesyHgLacEns -bgzImjeN9/E2YEsmLIKe0HjzDQ9jpFEw4fkrJxIH2Oq9GGKYsFk3fb7u8yBRQlqD -75O6aRXxYp2fmTmCobd0LovUxQt7L/DICto9eQqakxylKHJzkUOap9FNhYS5qXSP -FEDH3N6sQWRstBmbAmNtJGSPRLIl6s5ddAxjMlyNh+UCAwEAAaOBiTCBhjAPBgNV -HRMBAf8EBTADAQH/MAsGA1UdDwQEAwIBBjAdBgNVHQ4EFgQUppFC/RNhSiOeCKQp -5dgTBCPuQSUwRwYDVR0eBEAwPqA8MAWCAy5ncjAFggMuZXUwBoIELmVkdTAGggQu -b3JnMAWBAy5ncjAFgQMuZXUwBoEELmVkdTAGgQQub3JnMA0GCSqGSIb3DQEBBQUA -A4IBAQAf73lB4XtuP7KMhjdCSk4cNx6NZrokgclPEg8hwAOXhiVtXdMiKahsog2p -6z0GW5k6x8zDmjR/qw7IThzh+uTczQ2+vyT+bOdrwg3IBp5OjWEopmr95fZi6hg8 -TqBTnbI6nOulnJEWtk2C4AwFSKls9cz4y51JtPACpf1wA+2KIaWuE4ZJwzNzvoc7 -dIsXRSZMFpGD/md9zU1jZ/rzAxKWeAaNsWftjj++n08C9bMJL/NMh98qy5V8Acys -Nnq/onN694/BtZqhFLKPM58N7yLcZnuEvUUXBj08yrl3NI/K6s8/MT7jiOOASSXI -l7WdmplNsDz4SgCbZN2fOUvRJ9e4 ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-041_Digisign Server ID - (Enrich)_Digicert Sdn. Bhd.pem b/test/rules/platform_certs/cacert/Cert-041_Digisign Server ID - (Enrich)_Digicert Sdn. Bhd.pem deleted file mode 100644 index 9e347a56cd05..000000000000 --- a/test/rules/platform_certs/cacert/Cert-041_Digisign Server ID - (Enrich)_Digicert Sdn. Bhd.pem +++ /dev/null @@ -1,28 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIE0DCCA7igAwIBAgIGB///////MA0GCSqGSIb3DQEBBQUAMIG0MRQwEgYDVQQK -EwtFbnRydXN0Lm5ldDFAMD4GA1UECxQ3d3d3LmVudHJ1c3QubmV0L0NQU18yMDQ4 -IGluY29ycC4gYnkgcmVmLiAobGltaXRzIGxpYWIuKTElMCMGA1UECxMcKGMpIDE5 -OTkgRW50cnVzdC5uZXQgTGltaXRlZDEzMDEGA1UEAxMqRW50cnVzdC5uZXQgQ2Vy -dGlmaWNhdGlvbiBBdXRob3JpdHkgKDIwNDgpMB4XDTEwMDcxNjE3MjMzOFoXDTE1 -MDcxNjE3NTMzOFowZTELMAkGA1UEBhMCTVkxGzAZBgNVBAoTEkRpZ2ljZXJ0IFNk -bi4gQmhkLjERMA8GA1UECxMINDU3NjA4LUsxJjAkBgNVBAMTHURpZ2lzaWduIFNl -cnZlciBJRCAtIChFbnJpY2gpMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC -AQEAxYnk9A0GQJJZxxqzNdEOTCoz+fivyp5/7rmnbWD0VOhv1ZvzG2MxBGhy0TQW -jLQXLJfec8XYkBWgGiv1y7NIhkTwHYhMzkFCGu/1DN7+QNo5IPcGVTpqnUbB0m+l -sshXPimjnODphXdm6JinJH6+wFkg5URvtlfYvs7CZXdYxmFB0XQEyH9JQsVyqXIW -7ozdEl20StTRr1C32Kp1dmitPl2qMG1hqKsQWz4TvzPgr0SdOCJb70wvpnEmFSbK -KIzZ+o6OqaIUNeKbJIi09H+FnYNPB6G2FJA2xDQcjSZhbRNveL7ojyfHS4SWo4Zo -DCO+C+yMlACpBIoTkPffhWwMsQIDAQABo4IBNDCCATAwDgYDVR0PAQH/BAQDAgEG -MBIGA1UdEwEB/wQIMAYBAf8CAQAwJwYDVR0lBCAwHgYIKwYBBQUHAwEGCCsGAQUF -BwMCBggrBgEFBQcDBDAzBggrBgEFBQcBAQQnMCUwIwYIKwYBBQUHMAGGF2h0dHA6 -Ly9vY3NwLmVudHJ1c3QubmV0MEQGA1UdIAQ9MDswOQYFYINKAQEwMDAuBggrBgEF -BQcCARYiaHR0cDovL3d3dy5kaWdpY2VydC5jb20ubXkvY3BzLmh0bTAyBgNVHR8E -KzApMCegJaAjhiFodHRwOi8vY3JsLmVudHJ1c3QubmV0LzIwNDhjYS5jcmwwEQYD -VR0OBAoECExOzCUoAymBMB8GA1UdIwQYMBaAFFXkgdERgL7YibkIozH5oSQJFrlw -MA0GCSqGSIb3DQEBBQUAA4IBAQCXTO9KOkmscvwwIGu0KVunxZUEkPky1cKFat4D -oTf5iQCwWqxVfttDNf/JAfhRvswmyshqpMRUPiYe5wyjzZdnlN2mQutczY85eWsz -eSEGefqCRBWZzMG3OdNGYnyycOtvziCqPhm36XSCnLSlS01hADfkh9LyFDpkfLip -e2HgkyLn1Z8+R+Y2dqBT2AADOg+1M/6WytPSgjou3ddI4eSnacwc6ZlK58pwRdcL -Bw6adRvQL5Jv9qQHw70cS6aEtn2omqnSpynxC1dpHpdXJuwrQ6zURYMFAOnj8EZA -B/rqsVFzkxyl3VMRN8gqpxUnHbSqzH+qMTD8uEWfSAntEOLF ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-042_Secure Certificate Services_Comodo CA Limited.pem b/test/rules/platform_certs/cacert/Cert-042_Secure Certificate Services_Comodo CA Limited.pem deleted file mode 100644 index fe804a3777f6..000000000000 --- a/test/rules/platform_certs/cacert/Cert-042_Secure Certificate Services_Comodo CA Limited.pem +++ /dev/null @@ -1,25 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEPzCCAyegAwIBAgIBATANBgkqhkiG9w0BAQUFADB+MQswCQYDVQQGEwJHQjEb -MBkGA1UECAwSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHDAdTYWxmb3JkMRow -GAYDVQQKDBFDb21vZG8gQ0EgTGltaXRlZDEkMCIGA1UEAwwbU2VjdXJlIENlcnRp -ZmljYXRlIFNlcnZpY2VzMB4XDTA0MDEwMTAwMDAwMFoXDTI4MTIzMTIzNTk1OVow -fjELMAkGA1UEBhMCR0IxGzAZBgNVBAgMEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4G -A1UEBwwHU2FsZm9yZDEaMBgGA1UECgwRQ29tb2RvIENBIExpbWl0ZWQxJDAiBgNV -BAMMG1NlY3VyZSBDZXJ0aWZpY2F0ZSBTZXJ2aWNlczCCASIwDQYJKoZIhvcNAQEB -BQADggEPADCCAQoCggEBAMBxM4KK0HDrc4eCQNUd5MvJDkKQ+d40uaG6EfQlhfPM -cm3ye5drswfxdySRXyWP9nQ95IDC+DwN879A6vfIUtFyb+/Iq0G4bi4XKpVpDM3S -HpR7LZQdqnXXs5jLrLxkU0C8j6ysNstcrbvd4JQX7NFc0L/vpZXJkMWwrPsbQ996 -CF23uPJAGysnnlDOXmWCiIxe004MeuoIkbY2qitC++rCoznl2yY4rYsK7hljxxwk -3wN42ubqwUcaCwtGCd0C/N7Lh1/XMGNooa7cMqG6vv5Eq2i2pRcV/b3Vp6ea5EQz -6YiO/O1R65NxTq0B50SOqy3LqP4BSUjwwN3HaNiS/j0CAwEAAaOBxzCBxDAdBgNV -HQ4EFgQUPNiTiMLAggnMAZkGkyDpnnAJY08wDgYDVR0PAQH/BAQDAgEGMA8GA1Ud -EwEB/wQFMAMBAf8wgYEGA1UdHwR6MHgwO6A5oDeGNWh0dHA6Ly9jcmwuY29tb2Rv -Y2EuY29tL1NlY3VyZUNlcnRpZmljYXRlU2VydmljZXMuY3JsMDmgN6A1hjNodHRw -Oi8vY3JsLmNvbW9kby5uZXQvU2VjdXJlQ2VydGlmaWNhdGVTZXJ2aWNlcy5jcmww -DQYJKoZIhvcNAQEFBQADggEBAIcBbSMdflsXfcFhMs+P5/OKlFlm4J4oqF7Tt/Q0 -5qo5spcWxYJvMqTpjOev/e/C6LlLqqP05tqNZSH7uoDrJiiFGv45jN5bBAS0VPmj -Z55B+glSzAVIqMk/IQQezkhr/IXownuvf7fM+F86/TXGDe+X3EyrEeFryzHRbPtI -gKvcnDe4IRRLDXE97IMzbtFuMhbsmMcWi1mmNKsFVy2T96oTy9IT4rcuO81rUBcJ -aD61JlfutuC23bkpgHl9j6PwpCikFcSF9CfUa7/lXORlAnZUtOM3ZiTTGWHIUhDl -izeauan5Hb/qmZJhlv8BzaFfDbxxvA6sCx1HRR3B7Hzs/Sk= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-043_SECOM Trust Systems CO.,LTD.pem b/test/rules/platform_certs/cacert/Cert-043_SECOM Trust Systems CO.,LTD.pem deleted file mode 100644 index 078bd0e33eab..000000000000 --- a/test/rules/platform_certs/cacert/Cert-043_SECOM Trust Systems CO.,LTD.pem +++ /dev/null @@ -1,21 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDdzCCAl+gAwIBAgIBADANBgkqhkiG9w0BAQsFADBdMQswCQYDVQQGEwJKUDEl -MCMGA1UEChMcU0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEnMCUGA1UECxMe -U2VjdXJpdHkgQ29tbXVuaWNhdGlvbiBSb290Q0EyMB4XDTA5MDUyOTA1MDAzOVoX -DTI5MDUyOTA1MDAzOVowXTELMAkGA1UEBhMCSlAxJTAjBgNVBAoTHFNFQ09NIFRy -dXN0IFN5c3RlbXMgQ08uLExURC4xJzAlBgNVBAsTHlNlY3VyaXR5IENvbW11bmlj -YXRpb24gUm9vdENBMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANAV -OVKxUrO6xVmCxF1SrjpDZYBLx/KWvNs2l9amZIyoXvDjChz335c9S672XewhtUGr -zbl+dp+++T42NKA7wfYxEUV0kz1XgMX5iZnK5atq1LXaQZAQwdbWQonCv/Q4EpVM -VAX3NuRFg3sUZdbcDE3R3n4MqzvEFb46VqZab3ZpUql6ucjrappdUtAtCms1FgkQ -hNBqyjoGADdH5H5XTz+L62e4iKrFvlNVspHEfbmwhRkGeC7bYRr6hfVKkaHnFtWO -ojnflLhwHyg/i/xAXmODPIMqGplrz95Zajv8bxbXH/1KEOtOghY6rCcMU/Gt1SSw -awNQwS08Ft1ENCcadfsCAwEAAaNCMEAwHQYDVR0OBBYEFAqFqXdlBZh8QIH4D5cs -OPEK7DzPMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3 -DQEBCwUAA4IBAQBMOqNErLlFsceTfsgLCkLfZOoc7llsCLqJX2rKSpWeeo8HxdpF -coJxDjrSzG+ntKEju/Ykn8sX/oymzsLS28yN/HH8AynBbF0zX2S2ZTuJbxh2ePXc -okgfGT+Ok+vx+hfuzU7jBBJV1uXk3fs+BXziHV7Gp7yXT2g69ekuCkO2r1dcYmh8 -t/2jioSgrGK+KwmHNPBqAbubKVY8/gA3zyNs8U6qtnRGEmyR7jTV7JqR50S+kDFy -1UkC9gLl9B/rfNmWVan/7Ir5mUf/NVoCqgTLiluHcSmRvaS0eg29mvVXIwAHIRc/ -SjnRBUkLp7Y3gaVdjKozXoEofKd9J+sAro03 ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-044_COMODO ECC Certification Authority_COMODO CA Limited.pem b/test/rules/platform_certs/cacert/Cert-044_COMODO ECC Certification Authority_COMODO CA Limited.pem deleted file mode 100644 index 546c95e30de7..000000000000 --- a/test/rules/platform_certs/cacert/Cert-044_COMODO ECC Certification Authority_COMODO CA Limited.pem +++ /dev/null @@ -1,16 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICiTCCAg+gAwIBAgIQH0evqmIAcFBUTAGem2OZKjAKBggqhkjOPQQDAzCBhTEL -MAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UE -BxMHU2FsZm9yZDEaMBgGA1UEChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMT -IkNPTU9ETyBFQ0MgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDgwMzA2MDAw -MDAwWhcNMzgwMTE4MjM1OTU5WjCBhTELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdy -ZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UEChMRQ09N -T0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBFQ0MgQ2VydGlmaWNhdGlv -biBBdXRob3JpdHkwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQDR3svdcmCFYX7deSR -FtSrYpn1PlILBs5BAH+X4QokPB0BBO490o0JlwzgdeT6+3eKKvUDYEs2ixYjFq0J -cfRK9ChQtP6IHG4/bC8vCVlbpVsLM5niwz2J+Wos77LTBumjQjBAMB0GA1UdDgQW -BBR1cacZSBm8nZ3qQUfflMRId5nTeTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/ -BAUwAwEB/zAKBggqhkjOPQQDAwNoADBlAjEA7wNbeqy3eApyt4jf/7VGFAkK+qDm -fQjGGoe9GKhzvSbKYAydzpmfz1wPMOG+FDHqAjAU9JM8SaczepBGR7NjfRObTrdv -GDeAU/7dIOA1mjbRxwG55tzd8/8dLDoWV9mSOdY= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-045_Microsec e-Szigno Root CA 2009_Microsec Ltd.pem b/test/rules/platform_certs/cacert/Cert-045_Microsec e-Szigno Root CA 2009_Microsec Ltd.pem deleted file mode 100644 index aa844e757d2d..000000000000 --- a/test/rules/platform_certs/cacert/Cert-045_Microsec e-Szigno Root CA 2009_Microsec Ltd.pem +++ /dev/null @@ -1,24 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIECjCCAvKgAwIBAgIJAMJ+QwRORz8ZMA0GCSqGSIb3DQEBCwUAMIGCMQswCQYD -VQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0 -ZC4xJzAlBgNVBAMMHk1pY3Jvc2VjIGUtU3ppZ25vIFJvb3QgQ0EgMjAwOTEfMB0G -CSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5odTAeFw0wOTA2MTYxMTMwMThaFw0y -OTEyMzAxMTMwMThaMIGCMQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3Qx -FjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xJzAlBgNVBAMMHk1pY3Jvc2VjIGUtU3pp -Z25vIFJvb3QgQ0EgMjAwOTEfMB0GCSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5o -dTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOn4j/NjrdqG2KfgQvvP -kd6mJviZpWNwrZuuyjNAfW2WbqEORO7hE52UQlKavXWFdCyoDh2Tthi3jCyoz/tc -cbna7P7ofo/kLx2yqHWH2Leh5TvPmUpG0IMZfcChEhyVbUr02MelTTMuhTlAdX4U -fIASmFDHQWe4oIBhVKZsTh/gnQ4H6cm6M+f+wFUoLAKApxn1ntxVUwOXewdI/5n7 -N4okxFnMUBBjjqqpGrCEGob5X7uxUG6k0QrM1XF+H6cbfPVTbiJfyyvm1HxdrtbC -xkzlBQHZ7Vf8wSN5/PrIJIOV87VqUQHQd9bpEqH5GoP7ghu5sJf0dgYzQ0mg/wu1 -+rUCAwEAAaOBgDB+MA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0G -A1UdDgQWBBTLD8bfQkPMPcu1SCOhGnqmKrs0aDAfBgNVHSMEGDAWgBTLD8bfQkPM -Pcu1SCOhGnqmKrs0aDAbBgNVHREEFDASgRBpbmZvQGUtc3ppZ25vLmh1MA0GCSqG -SIb3DQEBCwUAA4IBAQDJ0Q5eLtXMs3w+y/w9/w0olZMEyL/azXm4Q5DwpL7v8u8h -mLzU1F0G9u5C7DBsoKqpyvGvivo/C3NqPuouQH4frlRheesuCDfXI/OMn74dseGk -ddug4lQUsbocKaQY9hK6ohQU4zE1yED/t+AFdlfBHFny+L/k7SViXITwfn4fs775 -tyERzAMBVnCnEJIeGzSBHq2cGsMEPO0CYdYeBvNfOofyK/FFh+U9rNHHV4S9a67c -2Pm2G2JwCz02yULyMtd6YebS2z3PyKnJm9zbWETXbzivf3jTo60adbocwTZ8jx5t -HMN1Rq41Bab2XD0h7lbwyYIiLXpUq3DDfSJlgnCW ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-046_IGC-A_PM-SGDN.pem b/test/rules/platform_certs/cacert/Cert-046_IGC-A_PM-SGDN.pem deleted file mode 100644 index 8940ef5a010f..000000000000 --- a/test/rules/platform_certs/cacert/Cert-046_IGC-A_PM-SGDN.pem +++ /dev/null @@ -1,24 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEAjCCAuqgAwIBAgIFORFFEJQwDQYJKoZIhvcNAQEFBQAwgYUxCzAJBgNVBAYT -AkZSMQ8wDQYDVQQIEwZGcmFuY2UxDjAMBgNVBAcTBVBhcmlzMRAwDgYDVQQKEwdQ -TS9TR0ROMQ4wDAYDVQQLEwVEQ1NTSTEOMAwGA1UEAxMFSUdDL0ExIzAhBgkqhkiG -9w0BCQEWFGlnY2FAc2dkbi5wbS5nb3V2LmZyMB4XDTAyMTIxMzE0MjkyM1oXDTIw -MTAxNzE0MjkyMlowgYUxCzAJBgNVBAYTAkZSMQ8wDQYDVQQIEwZGcmFuY2UxDjAM -BgNVBAcTBVBhcmlzMRAwDgYDVQQKEwdQTS9TR0ROMQ4wDAYDVQQLEwVEQ1NTSTEO -MAwGA1UEAxMFSUdDL0ExIzAhBgkqhkiG9w0BCQEWFGlnY2FAc2dkbi5wbS5nb3V2 -LmZyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsh/R0GLFMzvABIaI -s9z4iPf930Pfeo2aSVz2TqrMHLmh6yeJ8kbpO0px1R2OLc/mratjUMdUC24SyZA2 -xtgv2pGqaMVy/hcKshd+ebUyiHDKcMCWSo7kVc0dJ5S/znIq7Fz5cyD+vfcuiWe4 -u0dzEvfRNWk68gq5rv9GQkaiv6GFGvm/5P9JhfejcIYyHF2fYPepraX/z9E0+X1b -F8bc1g4oa8Ld8fUzaJ1O/Id8NhLWo4DoQw1VYZTqZDdH6nfK0LJYBcNdfrGoRpAx -Vs5wKpayMLh35nnAvSk7/ZR3TL0gzUEl4C7HG7vupARB0l2tEmqKm0f7yd1GQOGd -PDPQtQIDAQABo3cwdTAPBgNVHRMBAf8EBTADAQH/MAsGA1UdDwQEAwIBRjAVBgNV -HSAEDjAMMAoGCCqBegF5AQEBMB0GA1UdDgQWBBSjBS8YYFDCiQrdKyFP/45OqDAx -NjAfBgNVHSMEGDAWgBSjBS8YYFDCiQrdKyFP/45OqDAxNjANBgkqhkiG9w0BAQUF -AAOCAQEABdwm2Pp3FURo/C9mOnTgXeQp/wYHE4RKq89toB9RlPhJy3Q2FLwV3duJ -L92PoF189RLrn544pEfMs5bZvpwlqwN+Mw+VgQ39FuCIvjfwbF3QMZsyK10XZZOY -YLxuj7GoPB7ZHPOpJkL5ZB3C55L29B5aqhlSXa/oovdgoPaN8In1buAKBQGVyYsg -Crpa/JosPL3Dt8ldeCUFP1YUmwza+zpI/pdpXsoQhvdOlgQITeywvl3cO45Pwf2a -NjSaTFR+FwNIlQgRHAdvhQh+XU3Endv7rs6y0bO4g2wdsrN58dhwmX7wEwLOXt1R -0982gaEbeC9xs/FZTEYYKKuF0mBWWg== ------END CERTIFICATE----- diff --git "a/test/rules/platform_certs/cacert/Cert-047_T\303\234RKTRUST.pem" "b/test/rules/platform_certs/cacert/Cert-047_T\303\234RKTRUST.pem" deleted file mode 100644 index ab1606c29ba0..000000000000 --- "a/test/rules/platform_certs/cacert/Cert-047_T\303\234RKTRUST.pem" +++ /dev/null @@ -1,30 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFFzCCA/+gAwIBAgIBETANBgkqhkiG9w0BAQUFADCCASsxCzAJBgNVBAYTAlRS -MRgwFgYDVQQHDA9HZWJ6ZSAtIEtvY2FlbGkxRzBFBgNVBAoMPlTDvHJraXllIEJp -bGltc2VsIHZlIFRla25vbG9qaWsgQXJhxZ90xLFybWEgS3VydW11IC0gVMOcQsSw -VEFLMUgwRgYDVQQLDD9VbHVzYWwgRWxla3Ryb25payB2ZSBLcmlwdG9sb2ppIEFy -YcWfdMSxcm1hIEVuc3RpdMO8c8O8IC0gVUVLQUUxIzAhBgNVBAsMGkthbXUgU2Vy -dGlmaWthc3lvbiBNZXJrZXppMUowSAYDVQQDDEFUw5xCxLBUQUsgVUVLQUUgS8O2 -ayBTZXJ0aWZpa2EgSGl6bWV0IFNhxJ9sYXnEsWPEsXPEsSAtIFPDvHLDvG0gMzAe -Fw0wNzA4MjQxMTM3MDdaFw0xNzA4MjExMTM3MDdaMIIBKzELMAkGA1UEBhMCVFIx -GDAWBgNVBAcMD0dlYnplIC0gS29jYWVsaTFHMEUGA1UECgw+VMO8cmtpeWUgQmls -aW1zZWwgdmUgVGVrbm9sb2ppayBBcmHFn3TEsXJtYSBLdXJ1bXUgLSBUw5xCxLBU -QUsxSDBGBgNVBAsMP1VsdXNhbCBFbGVrdHJvbmlrIHZlIEtyaXB0b2xvamkgQXJh -xZ90xLFybWEgRW5zdGl0w7xzw7wgLSBVRUtBRTEjMCEGA1UECwwaS2FtdSBTZXJ0 -aWZpa2FzeW9uIE1lcmtlemkxSjBIBgNVBAMMQVTDnELEsFRBSyBVRUtBRSBLw7Zr -IFNlcnRpZmlrYSBIaXptZXQgU2HEn2xhecSxY8Sxc8SxIC0gU8O8csO8bSAzMIIB -IjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAim1L/xCIOsP2fpTo6iBkcK4h -gb46ezzb8R1Sf1n68yJMlaCQvEhOEav7t7WNeoMojCZG2E6VQIdhn8WebYGHV2yK -O7Rm6sxA/OOqbLLLAdsyv9Lrhc+hDVXDWzhXcLh1xnnRFDDtG1hba+818qEhTsXO -fJlfbLm4IpNQp81McGq+agV/E5wrHur+R84EpW+sky58K5+eeROR6Oqeyjh1jmKw -lZMq5d/pXpduIF9fhHpEORlAHLpVK/swsoHvhOPc7Jg4OQOFCKlUAwUp8MmPi+oL -hmUZEdPpCSPeaJMDyTYcIW7OjGbxmTDY17PDHfiBLqi9ggtm/oLL4eAagsNAgQID -AQABo0IwQDAdBgNVHQ4EFgQUvYiHyY/2pAoLquvF/pEjnatKijIwDgYDVR0PAQH/ -BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBAB18+kmP -NOm3JpIWmgV050vQbTlswyb2zrgxvMTfvCr4N5EY3ATIZJkrGG2AA1nJrvhY0D7t -wyOfaTyGOBye79oneNGEN3GKPEs5z35FBtYt2IpNeBLWrcLTy9LQQfMmNkqblWwM -7uXRQydmwYj3erMgbOqwaSvHIOgMA8RBBZniP+Rr+KCGgceExh/VS4ESshYhLBOh -gLJeDEoTniDYYkCrkOpkSi+sDQESeUWoL4cZaMjihccwsnX5OD+ywJO0a+IDRM5n -oN+J1q2MdqMTw5RhK2vZbMEHCiIHhWyFJEapvj+LeISCfiQMnf2BN+MlqO02TpUs -yZyQ2uypQjyttgI= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-048_CA Disig_Disig a.s.pem b/test/rules/platform_certs/cacert/Cert-048_CA Disig_Disig a.s.pem deleted file mode 100644 index 6496d08da565..000000000000 --- a/test/rules/platform_certs/cacert/Cert-048_CA Disig_Disig a.s.pem +++ /dev/null @@ -1,24 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEDzCCAvegAwIBAgIBATANBgkqhkiG9w0BAQUFADBKMQswCQYDVQQGEwJTSzET -MBEGA1UEBxMKQnJhdGlzbGF2YTETMBEGA1UEChMKRGlzaWcgYS5zLjERMA8GA1UE -AxMIQ0EgRGlzaWcwHhcNMDYwMzIyMDEzOTM0WhcNMTYwMzIyMDEzOTM0WjBKMQsw -CQYDVQQGEwJTSzETMBEGA1UEBxMKQnJhdGlzbGF2YTETMBEGA1UEChMKRGlzaWcg -YS5zLjERMA8GA1UEAxMIQ0EgRGlzaWcwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAw -ggEKAoIBAQCS9jHBfYj9mQGp2HvycXXxMcbzdWb6UShGhJd4NLxs/LxFWYgmGErE -Nx+hSkS943EE9UQX4j/8SFhvXJ56CbpRNyIjZkMhsDxkovhqFQ4/61HhVKndBpnX -mjxUizkDPw/Fzsbrg3ICqB9x8y34dQjbYkzo+s7552oftms1grrijxaSfQUMbEYD -XcDtab86wYqg6I7ZuUUohwjstMoVvoLdtUSLLa2GDGhibYVW8qwUYzrG0ZmsNHhW -S8+2rT+MitcE5eN4TPWGqvWP+j1scaMtymfraHtuM6kMgiioTGohQBUgDCZbg8Kp -FhXAJIJdKxatymP2dACw30PEEGBWZ2NFAgMBAAGjgf8wgfwwDwYDVR0TAQH/BAUw -AwEB/zAdBgNVHQ4EFgQUjbJJaJ1yCCW5wCf1UJNWSEZx+Y8wDgYDVR0PAQH/BAQD -AgEGMDYGA1UdEQQvMC2BE2Nhb3BlcmF0b3JAZGlzaWcuc2uGFmh0dHA6Ly93d3cu -ZGlzaWcuc2svY2EwZgYDVR0fBF8wXTAtoCugKYYnaHR0cDovL3d3dy5kaXNpZy5z -ay9jYS9jcmwvY2FfZGlzaWcuY3JsMCygKqAohiZodHRwOi8vY2EuZGlzaWcuc2sv -Y2EvY3JsL2NhX2Rpc2lnLmNybDAaBgNVHSAEEzARMA8GDSuBHpGT5goAAAABAQEw -DQYJKoZIhvcNAQEFBQADggEBAF00dGFMrzvY/59tWDYcPQuBDRIrRhCA/ec8J9B6 -yKm2fnQwM6M6int0wHl5QpNt/7EpFIKrIYwvF/k/Ji/1WcbvgAa3mkkp7M5+cTxq -EEHA9tOasnxakZzArFvITV734VP/Q3f8nktnbNfzg9Gg4H8l37iYC5oyOGwwoPP/ -CBUz91BKez6jPiCp3C9WgArtQVCwyfTssuMmRAAOb54GvCKWU3BlxFAKRmukLyeB -EicTXxChds6KezfqwzlhA5WYOudsiCUI/HloDYd9Yvi0X/vF2Ey9WLw/Q1vUHgFN -PGO+I++MzVpQuGhU+QqZMxEA4Z7CRneC9VkGjCFMhwnN5ag= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-049_MD5 Collisions Inc. (http---www.phreedom.org-md5).pem b/test/rules/platform_certs/cacert/Cert-049_MD5 Collisions Inc. (http---www.phreedom.org-md5).pem deleted file mode 100644 index e59ce9d8549d..000000000000 --- a/test/rules/platform_certs/cacert/Cert-049_MD5 Collisions Inc. (http---www.phreedom.org-md5).pem +++ /dev/null @@ -1,25 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEMjCCA5ugAwIBAgIBQjANBgkqhkiG9w0BAQQFADBaMQswCQYDVQQGEwJVUzEc -MBoGA1UEChMTRXF1aWZheCBTZWN1cmUgSW5jLjEtMCsGA1UEAxMkRXF1aWZheCBT -ZWN1cmUgR2xvYmFsIGVCdXNpbmVzcyBDQS0xMB4XDTA0MDczMTAwMDAwMVoXDTA0 -MDkwMjAwMDAwMVowPDE6MDgGA1UEAxMxTUQ1IENvbGxpc2lvbnMgSW5jLiAoaHR0 -cDovL3d3dy5waHJlZWRvbS5vcmcvbWQ1KTCBnzANBgkqhkiG9w0BAQEFAAOBjQAw -gYkCgYEAuqZZySwo1iqw+O2fRqSkN+4OGWhZ0bMDmVHWFppeN2sV4A5L9YRk+KPb -QW811ZsVH9vEOFJwgZdej6C193458DKsHq1E0rP6SMPOkZvs9Jx84Vr1yDdrmoPe -58oglzFCcxWRaPSIr/koKMXpD3OwF0sTTJl10ETmfghsGvJPG0ECAwEAAaOCAiQw -ggIgMAsGA1UdDwQEAwIBxjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBSnBGAf -q3JDCMV/CJBVVhzWzuY46zAfBgNVHSMEGDAWgBS+qKB0clBrRLfJI9j7qP+zV2to -bDCCAb4GCWCGSAGG+EIBDQSCAa8WggGrMwAAACdeOeCJYQ9Oo8VFCza7AdFTqsMI -j2/4Tz6Hh0QR3GDg35JV+bhzG1STxZ/QRsRgtjVizbmvHKhpGslbPJY3wO1n77v+ -wIucUC8pvYMino4I+qwTcKJYf2JiihH3ifbftmdZcxb7YxaKtJE4zi71tr5MpJRJ -5GURCkIVycEw4mnVRX2lJru5YexiZPA54ee8aNhQUZ4dYNPRo6cK+AMgoXABF5E2 -TwJwMYaD3fcP2AcdEbMTBKXc8K5QsSgOY2kqDIJvj0cz32yiBpLxT0W+2TA2oyuM -1neuNWN/Tkyak0g22Z8CAwEAAaOBvTCBujAOBgNVHQ8BAf8EBAMCBPAwHQYDVR0O -BBYEFM2mg/qlYDf3ljcXKd5BePGHiVXnMDsGA1UdHwQ0MDIwMKAuoCyGKmh0dHA6 -Ly9jcmwuZ2VvdHJ1c3QuY29tL2NybHMvZ2xvYmFsY2ExLmNybDAfBgNVHSMEGDAW -gBS+qKB0clBrRLfJI9j7qP+zV2tobDAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYB -BQUHAwIwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQQFAAOBgQCnIQKN0Q6igHcl -/UNgFY/s75BH1IRCFSYRHM3CPBApqbbfq1d1kdrlK7OQRRwwY1Y/itlQ+u1YbMBl -rGZX3hzGdjv1AA6ORc5/TJDsK8bNs7SPYtD+t8UmckTt9phbrsvRlfXaCL5oRrF1 -yOwdjx56lPGqU3iiRa5U6tGedMh2Zw== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-050_GeoTrust Global CA_GeoTrust Inc.pem b/test/rules/platform_certs/cacert/Cert-050_GeoTrust Global CA_GeoTrust Inc.pem deleted file mode 100644 index bcb252976103..000000000000 --- a/test/rules/platform_certs/cacert/Cert-050_GeoTrust Global CA_GeoTrust Inc.pem +++ /dev/null @@ -1,20 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDVDCCAjygAwIBAgIDAjRWMA0GCSqGSIb3DQEBBQUAMEIxCzAJBgNVBAYTAlVT -MRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMRswGQYDVQQDExJHZW9UcnVzdCBHbG9i -YWwgQ0EwHhcNMDIwNTIxMDQwMDAwWhcNMjIwNTIxMDQwMDAwWjBCMQswCQYDVQQG -EwJVUzEWMBQGA1UEChMNR2VvVHJ1c3QgSW5jLjEbMBkGA1UEAxMSR2VvVHJ1c3Qg -R2xvYmFsIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2swYYzD9 -9BcjGlZ+W988bDjkcbd4kdS8odhM+KhDtgPpTSEHCIjaWC9mOSm9BXiLnTjoBbdq -fnGk5sRgprDvgOSJKA+eJdbtg/OtppHHmMlCGDUUna2YRpIuT8rxh0PBFpVXLVDv -iS2Aelet8u5fa9IAjbkU+BQVNdnARqN7csiRv8lVK83Qlz6cJmTM386DGXHKTubU -1XupGc1V3sjs0l44U+VcT4wt/lAjNvxm5suOpDkZALeVAjmRCw7+OC7RHQWa9k0+ -bw8HHa8sHo9gOeL6NlMTOdReJivbPagUvTLrGAMoUgRx5aszPeE4uwc2hGKceeoW -MPRfwCvocWvk+QIDAQABo1MwUTAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBTA -ephojYn7qwVkDBF9qn1luMrMTjAfBgNVHSMEGDAWgBTAephojYn7qwVkDBF9qn1l -uMrMTjANBgkqhkiG9w0BAQUFAAOCAQEANeMpauUvXVSOKVCUn5kaFOSPeCpilKIn -Z57QzxpeR+nBsqTP3UEaBU6bS+5Kb1VSsyShNwrrZHYqLizz/Tt1kL/6cdjHPTfS -tQWVYrmm3ok9Nns4d0iXrKYgjy6myQzCsplFAMfOEVEiIuCl6rYVSAlk6l5PdPcF -PseKUgzbFbS9bZvlxrFUaKnjaZC2mqUPuLk/IH2uSrW4nOQdtqvmlKXBx4Ot2/Un -hw4EbNX/3aBd7YdStysVAq45pmp06drE57xNNB6pXE0zX5IJL4hmXXeXxx12E6nV -5fEWCRE11azbJHFwLJhWC9kXtNHjUStedejV0NxPNO3CBWaAocvmMw== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-052_UTN-USERFirst-Client Authentication and Email_The USERTRUST Network.pem b/test/rules/platform_certs/cacert/Cert-052_UTN-USERFirst-Client Authentication and Email_The USERTRUST Network.pem deleted file mode 100644 index 97c392fa4d51..000000000000 --- a/test/rules/platform_certs/cacert/Cert-052_UTN-USERFirst-Client Authentication and Email_The USERTRUST Network.pem +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEojCCA4qgAwIBAgIQRL4Mi1AAJLQR0zYlJWfJiTANBgkqhkiG9w0BAQUFADCB -rjELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAlVUMRcwFQYDVQQHEw5TYWx0IExha2Ug -Q2l0eTEeMBwGA1UEChMVVGhlIFVTRVJUUlVTVCBOZXR3b3JrMSEwHwYDVQQLExho -dHRwOi8vd3d3LnVzZXJ0cnVzdC5jb20xNjA0BgNVBAMTLVVUTi1VU0VSRmlyc3Qt -Q2xpZW50IEF1dGhlbnRpY2F0aW9uIGFuZCBFbWFpbDAeFw05OTA3MDkxNzI4NTBa -Fw0xOTA3MDkxNzM2NThaMIGuMQswCQYDVQQGEwJVUzELMAkGA1UECBMCVVQxFzAV -BgNVBAcTDlNhbHQgTGFrZSBDaXR5MR4wHAYDVQQKExVUaGUgVVNFUlRSVVNUIE5l -dHdvcmsxITAfBgNVBAsTGGh0dHA6Ly93d3cudXNlcnRydXN0LmNvbTE2MDQGA1UE -AxMtVVROLVVTRVJGaXJzdC1DbGllbnQgQXV0aGVudGljYXRpb24gYW5kIEVtYWls -MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsjmFpPJ9q0E7YkY3rs3B -YHW8OWX5ShpHornMSMxqmNVNNRm5pELlzkniii8efNIxB8dOtINknS4p1aJkxIW9 -hVE1eaROaJB7HHqkkqgX8pgV8pPMyaQylbsMTzC9mKALi+VuG6JG+ni8om+rWV6l -L8/K2m2qL+usobNqqrcuZzWLeeEeaYji5kbNoKXqvgvOdjp6Dpvq/NonWz1zHyLm -SGHGTPNpsaguG7bUMSAsvIKKjqQOpdeJQ/wWWq8dcdcRWdq6hw2v+vPhwvCkxWeM -1tZUOt4KpLoDd7NlyP0e03RiqhjKaJMeoYV+9Udly/hNVyh00jT/MLbu9mIwFIws -6wIDAQABo4G5MIG2MAsGA1UdDwQEAwIBxjAPBgNVHRMBAf8EBTADAQH/MB0GA1Ud -DgQWBBSJgmd9xJ0mcABLtFBIfN49rgRufTBYBgNVHR8EUTBPME2gS6BJhkdodHRw -Oi8vY3JsLnVzZXJ0cnVzdC5jb20vVVROLVVTRVJGaXJzdC1DbGllbnRBdXRoZW50 -aWNhdGlvbmFuZEVtYWlsLmNybDAdBgNVHSUEFjAUBggrBgEFBQcDAgYIKwYBBQUH -AwQwDQYJKoZIhvcNAQEFBQADggEBALFtYV2mGn98q0rkMPxTbyUkxsrt4jFcKw7u -7mFVbwQ+zznexRtJlOTrIEy05p5QLnLZjfWqo7NK2lYcYJeA3IKirUq9iiv/Cwm0 -xtcgBEXkzYABurorbs6q15L+5K/r9CYdFip/bDCVNy8zEqx/3cfREYxRmLLQo5HQ -rfafnoOTHh1CuEava2bwm3/q4wMC5QJRwarVNZ1yQAOJujEdxRBoUp7fooXFXAim -eOZTT7Hot9MUnpOmw2TjrH5xzbyf6QMbzPvprDHBr3wVdAKZw7JHpsIyYdfHb0gk -USeh1YdV8nuPmD0Wnu51tvjQjvLzxq4oW6fw8zYX/MMF08oDSlQ= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-053_GlobalSign_GlobalSign.pem b/test/rules/platform_certs/cacert/Cert-053_GlobalSign_GlobalSign.pem deleted file mode 100644 index 8afb219058fb..000000000000 --- a/test/rules/platform_certs/cacert/Cert-053_GlobalSign_GlobalSign.pem +++ /dev/null @@ -1,21 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDXzCCAkegAwIBAgILBAAAAAABIVhTCKIwDQYJKoZIhvcNAQELBQAwTDEgMB4G -A1UECxMXR2xvYmFsU2lnbiBSb290IENBIC0gUjMxEzARBgNVBAoTCkdsb2JhbFNp -Z24xEzARBgNVBAMTCkdsb2JhbFNpZ24wHhcNMDkwMzE4MTAwMDAwWhcNMjkwMzE4 -MTAwMDAwWjBMMSAwHgYDVQQLExdHbG9iYWxTaWduIFJvb3QgQ0EgLSBSMzETMBEG -A1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbjCCASIwDQYJKoZI -hvcNAQEBBQADggEPADCCAQoCggEBAMwldpB5BngiFvXAg7aEyiie/QV2EcWtiHL8 -RgJDx7KKnQRfJMsuS+FggkbhUqsMgUdwbN1k0ev1LKMPgj0MK66X17YUhhB5uzsT -gHeMCOFJ0mpiLx9e+pZo34knlTifBtc+ycsmWQ1z3rDI6SYOgxXG71uL0gRgykmm -KPZpO/bLyCiR5Z2KYVc3rHQU3HTgOu5yLy6c+9C7v/U9AOEGM+iCK65TpjoWc4zd -QQ4gOsC0p6Hpsk+QLjJg6VfLuQSSaGjlOCZgdbKfd/+RFO+uIEn8rUAVSNECMWEZ -XriX7613t2Saer9fwRPvm2L7DWzgVGkWqQPabumDk3F2xmmFghcCAwEAAaNCMEAw -DgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFI/wS3+o -LkUkrk1Q+mOai97i3Ru8MA0GCSqGSIb3DQEBCwUAA4IBAQBLQNvAUKr+yAzv95ZU -RUm7lgAJQayzE4aGKAczymvmdLm6AC2upArT9fHxD4q/c2dKg8dEe3jgr25sbwMp -jjM5RcOO5LlXbKr8EpbsU8Yt5CRsuZRj+9xTaGdWPoO4zzUhw8lo/s7awlOqzJCK -6fBdRoyV3XpYKBovHd7NADdBj+1EbddTKJd+82cEHhXXipa0095MJ6RMG3NzdvQX -mcIfeg7jLQitChws/zyrVQ4PkX4268NXSb7hLi18YIvDQVETI53O9zJrlAGomecs -Mx86OyXShkDOOyyGeMlhLxS67ttVb9+E7gUJTb0o2HLO02JQZR7rkpeDMdmztcpH -WD9f ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-054_ACEDICOM Root_EDICOM.pem b/test/rules/platform_certs/cacert/Cert-054_ACEDICOM Root_EDICOM.pem deleted file mode 100644 index 44e967354b1a..000000000000 --- a/test/rules/platform_certs/cacert/Cert-054_ACEDICOM Root_EDICOM.pem +++ /dev/null @@ -1,33 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFtTCCA52gAwIBAgIIYY3HhjsBggUwDQYJKoZIhvcNAQEFBQAwRDEWMBQGA1UE -AwwNQUNFRElDT00gUm9vdDEMMAoGA1UECwwDUEtJMQ8wDQYDVQQKDAZFRElDT00x -CzAJBgNVBAYTAkVTMB4XDTA4MDQxODE2MjQyMloXDTI4MDQxMzE2MjQyMlowRDEW -MBQGA1UEAwwNQUNFRElDT00gUm9vdDEMMAoGA1UECwwDUEtJMQ8wDQYDVQQKDAZF -RElDT00xCzAJBgNVBAYTAkVTMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKC -AgEA/5KV4WgGdrQsyFhIyv2AVClVYyT/kGWbEHV7w2rbYgIB8hiGtXxaOLHkWLn7 -09gtn70yN78sFW2+tfQh0hOR2QetAQXW8713zl9CgQr5auODAKgrLlUTY4HKRxx7 -XBZXehuDYAQ6PmXDzQHe3qTWDLqO3tkE7hdWIpuPY/1NFgu3e3eM+SW10W2ZEi5P -Grjm6gSSrj0RuVFCPYewMYWveVqc/udOXpJPQ/yrOq2lEiZmueIM15jO1FillUAK -t0SdE3QrwqXrIhWYENiLxQSfHY9g5QYbm8+5eaA9oiM/Qj9r+hwDezCNzmzAv+Yb -X79nuIQZ1RXve8uQNjFiybwCq0Zfm/4aaJQ0PZCOrfbkHQl/Sog4P75n/TSW9R28 -MHTLOO7VbKvU/PQAtwBbhTIWdjPp2KOZnQUAqhbm84F9b32qhm2tFXTTxKJxqvQU -fecyuB+81fFOvW8XAjnXDpVCOscAPukmYxHqC9FK/xidstd7LzrZlvvoHpKuE1XI -2Sf23EgbsCTBheN3nZqk8wwRHQ3ItBTutYJXCb8gWH8vIiPYcMt5bMlL8qkqyPyH -K9caUPgn6C9D4zq92Fdx/c6mUlv53U3t5fZvie27k5x2IXXwkkwp9y+cAS7+UEae -ZAwUswdbxcJzbPEHXEUkFDWug/FqTYl6+rPYLWbwNof1K1MCAwEAAaOBqjCBpzAP -BgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFKaz4SsrSbbXc6GqlPUB53NlTKxQ -MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUprPhKytJttdzoaqU9QHnc2VMrFAw -RAYDVR0gBD0wOzA5BgRVHSAAMDEwLwYIKwYBBQUHAgEWI2h0dHA6Ly9hY2VkaWNv -bS5lZGljb21ncm91cC5jb20vZG9jMA0GCSqGSIb3DQEBBQUAA4ICAQDOLAtSUWIm -fQwng4/F9tqgaHtPkl7qpHMyEVNEskTLnewPeUKzEKbHDZ3Ltvo/Onzqv4hTGzz3 -gvoFNTPhNahXwOf9jU8/kzJPeGYDdwdY6ZXIfj7QeQCM8htRM5u8lOk6e25SLTKe -I6RF+7YuE7CLGLHdztUdp0J/Vb77W7tH1PwkzQSulgUV1qzOMPPKC8W64iLgpq0i -5ALudBF/TP94HTXa5gI06xgSYXcGCRZj6hitoocf8seACQl1ThCojz2GuHURwCRi -ipZ7SkXp7FnFvmuD5uHorLUwHv4FB4D54SMNUI8FmP8sX+g7tq3PgbUhh8oIKiMn -MCArz+2UW6yyetLHKKGKC5tNSixthT8Jcjxn4tncB7rrZXtaAWPWkFtPF2Y9fwsZ -o5NjEFIqnxQWWOLcpfShFosOkYuByptZ+thrkQdlVV9SH686+5DdaaVbnG0OLLb6 -zqylfDJKZ0DcMDQj3dcEI2bw/FWAp/tmGYI1Z2JwOV5vx+qQQEQIHriy1tvuWacN -GHk0vFQYXlPKNFHtRQrmjseCNj6nOGOpMCwXEGCSn1WHElkQwg9naRHMTh5+Spqt -r0CodaxWkHS4oJyleW/c6RrIaQXpuvoDs3zk4E7Czp3otkYNbn5XOmeUwssfnHdK -Z05phkOTOPu220+DkdRgfks+KzgHVZhepA== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-055_SwissSign Gold CA - G2_SwissSign AG.pem b/test/rules/platform_certs/cacert/Cert-055_SwissSign Gold CA - G2_SwissSign AG.pem deleted file mode 100644 index d72118781967..000000000000 --- a/test/rules/platform_certs/cacert/Cert-055_SwissSign Gold CA - G2_SwissSign AG.pem +++ /dev/null @@ -1,33 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFujCCA6KgAwIBAgIJALtAHEP1Xk+wMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNV -BAYTAkNIMRUwEwYDVQQKEwxTd2lzc1NpZ24gQUcxHzAdBgNVBAMTFlN3aXNzU2ln -biBHb2xkIENBIC0gRzIwHhcNMDYxMDI1MDgzMDM1WhcNMzYxMDI1MDgzMDM1WjBF -MQswCQYDVQQGEwJDSDEVMBMGA1UEChMMU3dpc3NTaWduIEFHMR8wHQYDVQQDExZT -d2lzc1NpZ24gR29sZCBDQSAtIEcyMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC -CgKCAgEAr+TufoskDhJuqVAtFkQ7kpJcyrhdhJJCEyq8ZVeCQD5XJM1QiyUqt2/8 -76LQwB8CJEoTlo8jE+YoWACjR8cGp4QjK7u9lit/VcyLwVcfDmJlD909Vopz2q5+ -bbqBHH5CjCA12UNNhPqE21Is8w4ndwtrvxEvcnifLtg+5hg3Wipy+dpikJKVyh+c -6bM8K8vzARO/Ws/BtQpgvd21mWRTuKCWs2/iJneRjOBiEAKfNA+k1ZIzUd6+jbqE -emA8atufK+ze3gE/bk3lUIbLtK/tREDFylqM2tIrfKjuvqblCqoOpd8FUrdVxyJd -MmqXl2MT28nbeTZ7hTpKxVKJ+STnnXepgv9VHKVxaSvRAiTysybUa9oEVeXBCsdt -MDeQKuSeFDNeFhdVxVu1yzSJkvGdJo+hB9TGsnhQ2wwMC3wLjEHXuendjIj3o02y -MszYF9rNt85mndT9Xv+9lz4pded+p2JYryU0pUHHPbwNUMoDAw8IWh+Vc3hiv69y -FGkOpeUDDniOJihC8AcLYiAQZzlG+qkDzAQ4embvIIO1jEpWjpEA/I5cgt6IoMPi -aG59je883WX0XaxR7ySArqpWl2/5rX3aYT+YdzylkbYcjCbaZaIJbcHiVOO5ykxM -gI93e2CaHt+28kgeDrpOVG2Y4OGiGqJ3UM/EY5LsRxmd6+ZrzsECAwEAAaOBrDCB -qTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUWyV7 -lqRlUX64OfPAeGZe6Drn8O4wHwYDVR0jBBgwFoAUWyV7lqRlUX64OfPAeGZe6Drn -8O4wRgYDVR0gBD8wPTA7BglghXQBWQECAQEwLjAsBggrBgEFBQcCARYgaHR0cDov -L3JlcG9zaXRvcnkuc3dpc3NzaWduLmNvbS8wDQYJKoZIhvcNAQEFBQADggIBACe6 -45R88a7A3hfm5djV9VSwg/S7zV4Fe0+fdWavPOhWfvxyeDgD2StiGwC5+OlgzczO -UYrHUDFu4Up+GC9pWbY9ZIEr44OE5iKHjn3g7gKZYbge9LgriBIWhMIxkziWMaa5 -O1M/wySTVltpkuzFwbs4AOPsF6m43Md8AYOfMke6UiI0HTJ6CVanfCU2qT1L2sCC -bwq7EsiHSycR+R4tx5M/nttfJmtS2S6K8RTGRI0Vqbe/vd6mGu6uLftIdxf+u+yv -GPUqUfA5hJeVbG4bwyvEdGB5JbAKJ9/fXtI5z0V9QkvfsywexcZdylU6oJxpmo/a -77KwPJ+HbBIrZXAVUjEaJM9vMSNQH4xPjyPDdEFjHFWoFN0+4FFQz/EbMFYOkrCC -hdiDyyJkvC24JdVUorgG6q2SpCSgwYa1ShNqR88uC1aVVMvOmttqtKay20EIhid3 -92qgQmwLOM7XdVAyksLfKzAiSNDVQTglXaTpXZ/GlHXQRf0wl0OPkKsKx4ZzYEpp -Ld6leNcG2mqeSz53OiATIgHQv2ieY2BrNU0LbbqhPcCT4H8js1WtciVORvnSFu+w -ZMEBnunKoGqYDs/YYPIvSbjkQuE4NRb0yG5P94FW6LqjviOvrv1vA+ACOzB2+htt -Qc8Bsem4yWb02ybzOqR08kkkW8mw0FfB+j564ZfJ ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-056_Chambers of Commerce Root - 2008_AC Camerfirma S.A.pem b/test/rules/platform_certs/cacert/Cert-056_Chambers of Commerce Root - 2008_AC Camerfirma S.A.pem deleted file mode 100644 index 7d3a2491a58b..000000000000 --- a/test/rules/platform_certs/cacert/Cert-056_Chambers of Commerce Root - 2008_AC Camerfirma S.A.pem +++ /dev/null @@ -1,42 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIHTzCCBTegAwIBAgIJAKPaQn6ksa7aMA0GCSqGSIb3DQEBBQUAMIGuMQswCQYD -VQQGEwJFVTFDMEEGA1UEBxM6TWFkcmlkIChzZWUgY3VycmVudCBhZGRyZXNzIGF0 -IHd3dy5jYW1lcmZpcm1hLmNvbS9hZGRyZXNzKTESMBAGA1UEBRMJQTgyNzQzMjg3 -MRswGQYDVQQKExJBQyBDYW1lcmZpcm1hIFMuQS4xKTAnBgNVBAMTIENoYW1iZXJz -IG9mIENvbW1lcmNlIFJvb3QgLSAyMDA4MB4XDTA4MDgwMTEyMjk1MFoXDTM4MDcz -MTEyMjk1MFowga4xCzAJBgNVBAYTAkVVMUMwQQYDVQQHEzpNYWRyaWQgKHNlZSBj -dXJyZW50IGFkZHJlc3MgYXQgd3d3LmNhbWVyZmlybWEuY29tL2FkZHJlc3MpMRIw -EAYDVQQFEwlBODI3NDMyODcxGzAZBgNVBAoTEkFDIENhbWVyZmlybWEgUy5BLjEp -MCcGA1UEAxMgQ2hhbWJlcnMgb2YgQ29tbWVyY2UgUm9vdCAtIDIwMDgwggIiMA0G -CSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCvAMtwNyuAWko6bHiUfaN/Gh/2NdW9 -28sNRHI+JrKQUrpjOyhYb6WzbZSm891kDFX29ufyIiKAXuFixrYp4YFs8r/lfTJq -VKAyGVn+H4vXPWCGhSRv4xGzdz4gljUha7MI2XAuZPeEklPWDrCQiorjh40G072Q -DuKZoRuGDtqaCrsLYVAGUvGef3bsyw/QHg3PmTA9HMRFEFis1tPo1+XqxQEHd9ZR -5gN/ikilTWh1uem8nk4ZcfUyS5xtYBkL+8ydddy/Js2Pk3g5eXNeJQ7KXOt3EgfL -ZEFHcpOrUMPrCXZkNNI5t3YRCQ12RcSprj1qr7V9ZS+UWBDsXHyvfuK2GNnQm05a -Sd+pZgvMPMZ4fKecHePOjlO+Bd5gD2vlGts/4+EhySnB8esHnFIbAURRPHsl18Tl -UlRdJQfKFiC4reRB7noI/plvg6aRArBsNlVq5331lubKgdaX8ZSD6e2wsWsSaR6s -+12pxZjptFtYer49okQ6Y1nUCyXeG0+95QGezdIp1Z8XGQpvvwyQ0wlf2eOKNcx5 -Wk0ZN5K3xMGtr/R5JJqyAQuxr1yW84Ay+1w9mPGgP0revq+ULtlVmhduYJ1jbLhj -ya6BXBg14JC7vjxPNyK5fuvPnnchpj04gftI2jE9K+OJ9dC1vX7gUMQSibMjmhAx -hduub+84Mxh2EQIDAQABo4IBbDCCAWgwEgYDVR0TAQH/BAgwBgEB/wIBDDAdBgNV -HQ4EFgQU+SSsD7K1+HnA+mCIG8TZTQKeFxkwgeMGA1UdIwSB2zCB2IAU+SSsD7K1 -+HnA+mCIG8TZTQKeFxmhgbSkgbEwga4xCzAJBgNVBAYTAkVVMUMwQQYDVQQHEzpN -YWRyaWQgKHNlZSBjdXJyZW50IGFkZHJlc3MgYXQgd3d3LmNhbWVyZmlybWEuY29t -L2FkZHJlc3MpMRIwEAYDVQQFEwlBODI3NDMyODcxGzAZBgNVBAoTEkFDIENhbWVy -ZmlybWEgUy5BLjEpMCcGA1UEAxMgQ2hhbWJlcnMgb2YgQ29tbWVyY2UgUm9vdCAt -IDIwMDiCCQCj2kJ+pLGu2jAOBgNVHQ8BAf8EBAMCAQYwPQYDVR0gBDYwNDAyBgRV -HSAAMCowKAYIKwYBBQUHAgEWHGh0dHA6Ly9wb2xpY3kuY2FtZXJmaXJtYS5jb20w -DQYJKoZIhvcNAQEFBQADggIBAJASryI1wqM58C7e6bXpeHxIvj99RZJe6dqxGfwW -PJ+0W2aeaufDuV2I6A+tzyMP3iU6XsxPpcG1Lawk0lgH3qLPaYRgM+gQDROpI9CF -5Y57pp49chNyM/WqfcZjHwj0/gF/JM8rLFQJ3uIrbZLGOU8W6jx+ekbURWpGqOt1 -glanq6B8aBMz9p0w8G8nOSQjKpD9kCk18pPfNKXG9/jvjA9iSnyu0/VU+I22mlaH -FoI6M6taIgj3grrqLuBHmrS1RaMFO9ncLkVAO+rcf+g769HsJtg1pDDFOqxXnrN2 -pSB7+R5KBWIBpih1YJeSDW4+TTdDDZIVnBgizVGZoCkaPF+KMjNbMMeJL0eYD6MD -xvbxrN8y8NmBGuScvfaAFPDRLLmF9dijscilIeUcE5fuDr3fKanvNFNb0+RqE4QG -tjICxFKuItLcsiFCGtpA8CnJ7AoMXOLQusxI0zcKzBIKinmwPQN/aUv0NCB9szTq -jktk9T79syNnFQ0EuPAtwQlRPLJsFfClI9eDdOTlLsn+mCdCxqvGnrDQWzilm1De -fhiYtUU79nm06PcaewaD+9CL2rvHvRirCG88gGtAPxkZumWK5r7VXNM21+9AUiRg -OGcEMeyP84LG3rlV8zsxkVrctQgVrXYlCg17LofiDKYGvCYQbTed7N14jHyAxfDZ -d0jQ ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-057_TDC OCES CA_TDC.pem b/test/rules/platform_certs/cacert/Cert-057_TDC OCES CA_TDC.pem deleted file mode 100644 index e1cce316e88a..000000000000 --- a/test/rules/platform_certs/cacert/Cert-057_TDC OCES CA_TDC.pem +++ /dev/null @@ -1,30 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFGTCCBAGgAwIBAgIEPki9xDANBgkqhkiG9w0BAQUFADAxMQswCQYDVQQGEwJE -SzEMMAoGA1UEChMDVERDMRQwEgYDVQQDEwtUREMgT0NFUyBDQTAeFw0wMzAyMTEw -ODM5MzBaFw0zNzAyMTEwOTA5MzBaMDExCzAJBgNVBAYTAkRLMQwwCgYDVQQKEwNU -REMxFDASBgNVBAMTC1REQyBPQ0VTIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A -MIIBCgKCAQEArGL2YSCyz8DGhdfjeebM7fI5kqSXLmSjhFuHnEz9pPPEXyG9VhDr -2y5h7JNp46PMvZnDBfwGuMo2HP6QjklMxFaaL1a8z3sM8W9Hpg1DTeLpHTk0zY0s -2RKY+ePhwUp8hjjEqcRhiNJerxomTdXkoCJHhNlktxmW/OwZ5LKXJk5KTMuPJItU -GBxIYXvViGjaXbXqzRowwYCDdlCqT9HU3Tjw7xb04QxQBr/q+3pJoSgrHPb8FTKj -dGqPqcNiKXEx5TukYBdedObaE+3pHx8b0bJoc8YQNHVGEBDjkAB2QMuLt0MJIf+r -TpPGWOmlgtt3xDqZsXKVSQTwtyv6e1mO3QIDAQABo4ICNzCCAjMwDwYDVR0TAQH/ -BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwgewGA1UdIASB5DCB4TCB3gYIKoFQgSkB -AQEwgdEwLwYIKwYBBQUHAgEWI2h0dHA6Ly93d3cuY2VydGlmaWthdC5kay9yZXBv -c2l0b3J5MIGdBggrBgEFBQcCAjCBkDAKFgNUREMwAwIBARqBgUNlcnRpZmlrYXRl -ciBmcmEgZGVubmUgQ0EgdWRzdGVkZXMgdW5kZXIgT0lEIDEuMi4yMDguMTY5LjEu -MS4xLiBDZXJ0aWZpY2F0ZXMgZnJvbSB0aGlzIENBIGFyZSBpc3N1ZWQgdW5kZXIg -T0lEIDEuMi4yMDguMTY5LjEuMS4xLjARBglghkgBhvhCAQEEBAMCAAcwgYEGA1Ud -HwR6MHgwSKBGoESkQjBAMQswCQYDVQQGEwJESzEMMAoGA1UEChMDVERDMRQwEgYD -VQQDEwtUREMgT0NFUyBDQTENMAsGA1UEAxMEQ1JMMTAsoCqgKIYmaHR0cDovL2Ny -bC5vY2VzLmNlcnRpZmlrYXQuZGsvb2Nlcy5jcmwwKwYDVR0QBCQwIoAPMjAwMzAy -MTEwODM5MzBagQ8yMDM3MDIxMTA5MDkzMFowHwYDVR0jBBgwFoAUYLWF7FZkfhIZ -J2cdUBVLc647+RIwHQYDVR0OBBYEFGC1hexWZH4SGSdnHVAVS3OuO/kSMB0GCSqG -SIb2fQdBAAQQMA4bCFY2LjA6NC4wAwIEkDANBgkqhkiG9w0BAQUFAAOCAQEACrom -JkbTc6gJ82sLMJn9iuFXehHTuJTXCRBuo7E4A9G28kNBKWKnctj7fAXmMXAnVBhO -inxO5dHKjHiIzxvTkIvmI/gLDjNDfZziChmPyQE+dF10yYscA+UYyAFMP8uXBV2Y -caaYb7Z8vTd/vuGTJW1v8AqtFxjhA7wHKcitJuj4YfD9IQl+mo6paH1IYnK9AOoB -mbgGglGBTvH1tJFUuSN6AJqfXY3gPGS5GhKSKseCRHI53OI8xthV9RVOyAUO28bQ -YqbsFbS1AoLbrIyigfCbmTH1ICCoiGEKB5+U/NDXG8wuF/MEJ3Zn61SD/aSQfgY9 -BKNDLdr8C2LqL19iUw== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-058_S-TRUST Authentication and Encryption Root CA 2005-PN_Deutscher Sparkassen Verlag GmbH.pem b/test/rules/platform_certs/cacert/Cert-058_S-TRUST Authentication and Encryption Root CA 2005-PN_Deutscher Sparkassen Verlag GmbH.pem deleted file mode 100644 index c0328d0c1257..000000000000 --- a/test/rules/platform_certs/cacert/Cert-058_S-TRUST Authentication and Encryption Root CA 2005-PN_Deutscher Sparkassen Verlag GmbH.pem +++ /dev/null @@ -1,26 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEezCCA2OgAwIBAgIQNxkY5lNUfBq1uMtZWts1tzANBgkqhkiG9w0BAQUFADCB -rjELMAkGA1UEBhMCREUxIDAeBgNVBAgTF0JhZGVuLVd1ZXJ0dGVtYmVyZyAoQlcp -MRIwEAYDVQQHEwlTdHV0dGdhcnQxKTAnBgNVBAoTIERldXRzY2hlciBTcGFya2Fz -c2VuIFZlcmxhZyBHbWJIMT4wPAYDVQQDEzVTLVRSVVNUIEF1dGhlbnRpY2F0aW9u -IGFuZCBFbmNyeXB0aW9uIFJvb3QgQ0EgMjAwNTpQTjAeFw0wNTA2MjIwMDAwMDBa -Fw0zMDA2MjEyMzU5NTlaMIGuMQswCQYDVQQGEwJERTEgMB4GA1UECBMXQmFkZW4t -V3VlcnR0ZW1iZXJnIChCVykxEjAQBgNVBAcTCVN0dXR0Z2FydDEpMCcGA1UEChMg -RGV1dHNjaGVyIFNwYXJrYXNzZW4gVmVybGFnIEdtYkgxPjA8BgNVBAMTNVMtVFJV -U1QgQXV0aGVudGljYXRpb24gYW5kIEVuY3J5cHRpb24gUm9vdCBDQSAyMDA1OlBO -MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2bVKwdMz6tNGs9HiTNL1 -toPQb9UY6ZOvJ44TzbUlNlA0EmQpoVXhOmCTnijJ4/Ob4QSwI7+Vio5bG0F/WsPo -TUzVJBY+h0jUJ67m91MduwwA7z5hca2/OnpYH5Q9XIHV1W/fuJvS9eXLg3KSwlOy -ggLrra1fFi2SU3bxibYs9cEv4KdKb6AwajLrmnQDaHgTncovmwsdvs91DSaXm8f1 -XgqfeN+zvOyauu9VjxuapgdjKRdZYgkqeQd3peDRF2npW932kKvimAoA0SVtnteF -hy+S8dF2g08LOlk3KC8zpxdQ1iALCvQm+Z845y2kuJuJja2tyWp9iRe79n+Ag3rm -7QIDAQABo4GSMIGPMBIGA1UdEwEB/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgEG -MCkGA1UdEQQiMCCkHjAcMRowGAYDVQQDExFTVFJvbmxpbmUxLTIwNDgtNTAdBgNV -HQ4EFgQUD8oeXHngovMpttKFswtKtWXsa1IwHwYDVR0jBBgwFoAUD8oeXHngovMp -ttKFswtKtWXsa1IwDQYJKoZIhvcNAQEFBQADggEBAK8B8O0ZPCjoTVy7pWMciDMD -pwCHpB8gq9Yc4wYfl35UvbfRssnV2oDsF9eK9XvCAPbpEW+EoFolMeKJ+aQAPzFo -LtU96G7m1R08P7K9n3frndOMusDXtk3sU5wPBG7qNWdX4wple5A64U8+wwCSersF -iXOMy6ZNwPv2AtawB6MDwidAnwzkhYItr5pCHdDHjfhA7p0GVxzZotiAFP7hYy0y -h9WUUpY6RsZxlj33mA6ykaqP2vROJAA5VeitF7nTNCtKqUDMFypVZUF0Qn71wK/I -k63yGFs9iQzbRzkk+OBM8h+wPQrKBU6JIRrjKpms/H+h8Q8bHz2eBIPdltkdOpQ= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-059_Equifax Secure.pem b/test/rules/platform_certs/cacert/Cert-059_Equifax Secure.pem deleted file mode 100644 index e29f64ea5c4d..000000000000 --- a/test/rules/platform_certs/cacert/Cert-059_Equifax Secure.pem +++ /dev/null @@ -1,19 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDIDCCAomgAwIBAgIEN3DPtTANBgkqhkiG9w0BAQUFADBOMQswCQYDVQQGEwJV -UzEXMBUGA1UEChMORXF1aWZheCBTZWN1cmUxJjAkBgNVBAsTHUVxdWlmYXggU2Vj -dXJlIGVCdXNpbmVzcyBDQS0yMB4XDTk5MDYyMzEyMTQ0NVoXDTE5MDYyMzEyMTQ0 -NVowTjELMAkGA1UEBhMCVVMxFzAVBgNVBAoTDkVxdWlmYXggU2VjdXJlMSYwJAYD -VQQLEx1FcXVpZmF4IFNlY3VyZSBlQnVzaW5lc3MgQ0EtMjCBnzANBgkqhkiG9w0B -AQEFAAOBjQAwgYkCgYEA5Dk5kx5SBhsoNviyoynF7Y6yEb3+6+e0dMKP/wXn2Z0G -vxLIPw7y1tEkshHe0XMJitSxLJgJDR5QRrKDpkWNYmi7hRsgcDKqQM2mll/EcTc/ -BPO3QSQ5BxoeLmFYoBIL5aXfxavqN3HMHMg3OrmXUqesxWoklE6ce8/AatbfIb0C -AwEAAaOCAQkwggEFMHAGA1UdHwRpMGcwZaBjoGGkXzBdMQswCQYDVQQGEwJVUzEX -MBUGA1UEChMORXF1aWZheCBTZWN1cmUxJjAkBgNVBAsTHUVxdWlmYXggU2VjdXJl -IGVCdXNpbmVzcyBDQS0yMQ0wCwYDVQQDEwRDUkwxMBoGA1UdEAQTMBGBDzIwMTkw -NjIzMTIxNDQ1WjALBgNVHQ8EBAMCAQYwHwYDVR0jBBgwFoAUUJ4L6q9euSBIplBq -y/3YIHqngnYwHQYDVR0OBBYEFFCeC+qvXrkgSKZQasv92CB6p4J2MAwGA1UdEwQF -MAMBAf8wGgYJKoZIhvZ9B0EABA0wCxsFVjMuMGMDAgbAMA0GCSqGSIb3DQEBBQUA -A4GBAAyGgq3oThr1jokn4jVYPSm0B482UJW/bsGe68SQsoWou7dC4A8HOd/7npCy -0cE+U58DRLB+S/Rv5Hwf5+Kx5Lia78O9zt4LMjTZ3ijtM2vE1Nc9ElirfQkty3D1 -E4qUoSek1nDFbZS1yX2doNLGCEnZZpum0/QL3MUmV+GRMOrN ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-060_DigiCert Assured ID Root CA_DigiCert Inc.pem b/test/rules/platform_certs/cacert/Cert-060_DigiCert Assured ID Root CA_DigiCert Inc.pem deleted file mode 100644 index 2731638b6ead..000000000000 --- a/test/rules/platform_certs/cacert/Cert-060_DigiCert Assured ID Root CA_DigiCert Inc.pem +++ /dev/null @@ -1,22 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDtzCCAp+gAwIBAgIQDOfg5RfYRv6P5WD8G/AwOTANBgkqhkiG9w0BAQUFADBl -MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 -d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJv -b3QgQ0EwHhcNMDYxMTEwMDAwMDAwWhcNMzExMTEwMDAwMDAwWjBlMQswCQYDVQQG -EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNl -cnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgQ0EwggEi -MA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCtDhXO5EOAXLGH87dg+XESpa7c -JpSIqvTO9SA5KFhgDPiA2qkVlTJhPLWxKISKityfCgyDF3qPkKyK53lTXDGEKvYP -mDI2dsze3Tyoou9q+yHyUmHfnyDXH+Kx2f4YZNISW1/5WBg1vEfNoTb5a3/UsDg+ -wRvDjDPZ2C8Y/igPs6eD1sNuRMBhNZYW/lmci3Zt1/GiSw0r/wty2p5g0I6QNcZ4 -VYcgoc/lbQrISXwxmDNsIumH0DJaoroTghHtORedmTpyoeb6pNnVFzF1roV9Iq4/ -AUaG9ih5yLHa5FcXxH4cDrC0kqZWs72yl+2qp/C3xag/lRbQ/6GW6whfGHdPAgMB -AAGjYzBhMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQW -BBRF66Kv9JLLgjEtUYunpyGd823IDzAfBgNVHSMEGDAWgBRF66Kv9JLLgjEtUYun -pyGd823IDzANBgkqhkiG9w0BAQUFAAOCAQEAog683+Lt8ONyc3pklL/3cmbYMuRC -dWKuh+vy1dneVrOfzM4UKLkNl2BcEkxY5NM9g0lFWJc1aRqoR+pWxnmrEthngYTf -fwk8lOa4JiwgvT2zKIn3X/8i4peEH+ll74fg38FnSbNd67IJKusm7Xi+fT8r87cm -NW1fiQG2SVufAQWbqz0lwcy2f8Lxb4bG+mRo64EtlOtCt/qMHt1i8b5QZ7dsvfPx -H2sMNgcWfzd8qVttevESRmCD1ycEvkvOl77DZypoEd+A5wwzZr8TDRRu838fYxAe -+o0bJW1sj6W3YQGx0qMmoRBxna3iw/nDmVG3KwcIzi7mULKn+gpFL6Lw8g== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-061_VeriSign Class 3 Public Primary Certification Authority - G5_VeriSign, Inc.pem b/test/rules/platform_certs/cacert/Cert-061_VeriSign Class 3 Public Primary Certification Authority - G5_VeriSign, Inc.pem deleted file mode 100644 index 707ff085b8d2..000000000000 --- a/test/rules/platform_certs/cacert/Cert-061_VeriSign Class 3 Public Primary Certification Authority - G5_VeriSign, Inc.pem +++ /dev/null @@ -1,28 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIE0zCCA7ugAwIBAgIQGNrRniZ96LtKIVjNzGs7SjANBgkqhkiG9w0BAQUFADCB -yjELMAkGA1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQL -ExZWZXJpU2lnbiBUcnVzdCBOZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwNiBWZXJp -U2lnbiwgSW5jLiAtIEZvciBhdXRob3JpemVkIHVzZSBvbmx5MUUwQwYDVQQDEzxW -ZXJpU2lnbiBDbGFzcyAzIFB1YmxpYyBQcmltYXJ5IENlcnRpZmljYXRpb24gQXV0 -aG9yaXR5IC0gRzUwHhcNMDYxMTA4MDAwMDAwWhcNMzYwNzE2MjM1OTU5WjCByjEL -MAkGA1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZW -ZXJpU2lnbiBUcnVzdCBOZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwNiBWZXJpU2ln -biwgSW5jLiAtIEZvciBhdXRob3JpemVkIHVzZSBvbmx5MUUwQwYDVQQDEzxWZXJp -U2lnbiBDbGFzcyAzIFB1YmxpYyBQcmltYXJ5IENlcnRpZmljYXRpb24gQXV0aG9y -aXR5IC0gRzUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCvJAgIKXo1 -nmAMqudLO07cfLw8RRy7K+D+KQL5VwijZIUVJ/XxrcgxiV0i6CqqpkKzj/i5Vbex -t0uz/o9+B1fs70PbZmIVYc9gDaTY3vjgw2IIPVQT60nKWVSFJuUrjxuf6/WhkcIz -SdhDY2pSS9KP6HBRTdGJaXvHcPaz3BJ023tdS1bTlr8Vd6Gw9KIl8q8ckmcY5fQG -BO+QueQA5N06tRn/Arr0PO7gi+s3i+z016zy9vA9r911kTMZHRxAy3QkGSGT2RT+ -rCpSx4/VBEnkjWNHiDxpg8v+R70rfk/Fla4OndTRQ8Bnc+MUCH7lP59zuDMKz10/ -NIeWiu5T6CUVAgMBAAGjgbIwga8wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8E -BAMCAQYwbQYIKwYBBQUHAQwEYTBfoV2gWzBZMFcwVRYJaW1hZ2UvZ2lmMCEwHzAH -BgUrDgMCGgQUj+XTGoasjY5rw8+AatRIGCx7GS4wJRYjaHR0cDovL2xvZ28udmVy -aXNpZ24uY29tL3ZzbG9nby5naWYwHQYDVR0OBBYEFH/TZafC3ey78DAJ80M5+gKv -MzEzMA0GCSqGSIb3DQEBBQUAA4IBAQCTJEowX2LP2BqYLz3q3JktvXf2pXkiOOzE -p6B4Eq1iDkVwZMXnl2YtmAl+X6/WzChl8gGqCBpH3vn5fJJaCGkgDdk+bW48DW7Y -5gaRQBi5+MHt39tBquCWIMnNZBU4gcmU7qKEKQsTb47bDN0lAtukixlE0kF6BWlK -WE9gyn6CagsCqiUXObXbf+eEZSqVir2G3l6BFoMtEMze/aiCKm0oHw0LxOXnGiYZ -4fQRbxC1lfznQgUy286dUV4otp6F01vvpX1FQHKOtw5rDgb7MzVIcbidJ4vEZV8N -hnacRHr2lVz2XTIIM6RUthg/aFzyQkqFOFSDX9HoLPKsEdao7WNq ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-062_DigiCert Global Root CA_DigiCert Inc.pem b/test/rules/platform_certs/cacert/Cert-062_DigiCert Global Root CA_DigiCert Inc.pem deleted file mode 100644 index fd4341df2663..000000000000 --- a/test/rules/platform_certs/cacert/Cert-062_DigiCert Global Root CA_DigiCert Inc.pem +++ /dev/null @@ -1,22 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDrzCCApegAwIBAgIQCDvgVpBCRrGhdWrJWZHHSjANBgkqhkiG9w0BAQUFADBh -MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 -d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBD -QTAeFw0wNjExMTAwMDAwMDBaFw0zMTExMTAwMDAwMDBaMGExCzAJBgNVBAYTAlVT -MRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5j -b20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IENBMIIBIjANBgkqhkiG -9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4jvhEXLeqKTTo1eqUKKPC3eQyaKl7hLOllsB -CSDMAZOnTjC3U/dDxGkAV53ijSLdhwZAAIEJzs4bg7/fzTtxRuLWZscFs3YnFo97 -nh6Vfe63SKMI2tavegw5BmV/Sl0fvBf4q77uKNd0f3p4mVmFaG5cIzJLv07A6Fpt -43C/dxC//AH2hdmoRBBYMql1GNXRor5H4idq9Joz+EkIYIvUX7Q6hL+hqkpMfT7P -T19sdl6gSzeRntwi5m3OFBqOasv+zbMUZBfHWymeMr/y7vrTC0LUq7dBMtoM1O/4 -gdW7jVg/tRvoSSiicNoxBN33shbyTApOB6jtSj1etX+jkMOvJwIDAQABo2MwYTAO -BgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUA95QNVbR -TLtm8KPiGxvDl7I90VUwHwYDVR0jBBgwFoAUA95QNVbRTLtm8KPiGxvDl7I90VUw -DQYJKoZIhvcNAQEFBQADggEBAMucN6pIExIK+t1EnE9SsPTfrgT1eXkIoyQY/Esr -hMAtudXH/vTBH1jLuG2cenTnmCmrEbXjcKChzUyImZOMkXDiqw8cvpOp/2PV5Adg -06O/nVsJ8dWO41P0jmP6P6fbtGbfYmbW0W5BjfIttep3Sp+dWOIrWcBAI+0tKIJF -PnlUkiaY4IBIqDfv8NZ5YBberOgOzW6sRBc4L0na4UU+Krk2U886UAb3LujEV0ls -YSEY1QSteDwsOoBrp+uvFRTp2InBuThs4pFsiv9kuXclVzDAGySj4dzp30d8tbQk -CAUw7C29C79Fv1C5qfPrmAESrciIxpg0X40KPMbp1ZWVbd4= ------END CERTIFICATE----- diff --git "a/test/rules/platform_certs/cacert/Cert-063_T\303\234RKTRUST.pem" "b/test/rules/platform_certs/cacert/Cert-063_T\303\234RKTRUST.pem" deleted file mode 100644 index 5205c777e5d5..000000000000 --- "a/test/rules/platform_certs/cacert/Cert-063_T\303\234RKTRUST.pem" +++ /dev/null @@ -1,25 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEPDCCAySgAwIBAgIBATANBgkqhkiG9w0BAQUFADCBvjE/MD0GA1UEAww2VMOc -UktUUlVTVCBFbGVrdHJvbmlrIFNlcnRpZmlrYSBIaXptZXQgU2HEn2xhecSxY8Sx -c8SxMQswCQYDVQQGEwJUUjEPMA0GA1UEBwwGQW5rYXJhMV0wWwYDVQQKDFRUw5xS -S1RSVVNUIEJpbGdpIMSwbGV0acWfaW0gdmUgQmlsacWfaW0gR8O8dmVubGnEn2kg -SGl6bWV0bGVyaSBBLsWeLiAoYykgS2FzxLFtIDIwMDUwHhcNMDUxMTA3MTAwNzU3 -WhcNMTUwOTE2MTAwNzU3WjCBvjE/MD0GA1UEAww2VMOcUktUUlVTVCBFbGVrdHJv -bmlrIFNlcnRpZmlrYSBIaXptZXQgU2HEn2xhecSxY8Sxc8SxMQswCQYDVQQGEwJU -UjEPMA0GA1UEBwwGQW5rYXJhMV0wWwYDVQQKDFRUw5xSS1RSVVNUIEJpbGdpIMSw -bGV0acWfaW0gdmUgQmlsacWfaW0gR8O8dmVubGnEn2kgSGl6bWV0bGVyaSBBLsWe -LiAoYykgS2FzxLFtIDIwMDUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB -AQCpNn7DkUNMwxmYCMjHWHtPFoylzkkBH3MOrHUTpvqeLCDe2JAOCtFp0if7qnef -J1Il4std2NiDUBd9irWCPwSOtNXwSadktx4uXyCcUHVPr+G1QRT0mJKIx+XlZEdh -R3n9wFHxwZnn3M5q+6+1ATDcRhzviuyV79z/rxAc653YsKpqhRgNF8k+v/Gb0AmJ -Qv2gQrSdiVFVKc8bcLyEVK3BEx+Y9C52YItdP5qtygy/p1Zbj3e41Z55SZI/4PGX -JHpsmxcPbe9TmJEr5A++WXkHeLuXlfSfadRYhwqp48y2WBmfJiGxxFmNskF1wK1p -zpwACPI2/z7woQ8arBT9pmAPAgMBAAGjQzBBMB0GA1UdDgQWBBTZN7NOBf3Zz58S -Fq62iS/rJTqIHDAPBgNVHQ8BAf8EBQMDBwYAMA8GA1UdEwEB/wQFMAMBAf8wDQYJ -KoZIhvcNAQEFBQADggEBAHJglrfJ3NgpXiOFX7KzLXb7iNcX/nttRbj2hWyfIvwq -ECLsqrkw9qtY1jkQMZkpAL2JZkH7dN6RwRgLn7Vhy506vvWolKMiVW4XSf/SKfE4 -Jl3vpao6+XF75tpYHdN0wgH6PmlYX63LaL4ULptswLbcoCb6dxriJNoaN+BnrdFz -gw2lGh1uEpJ+hGIAF728JRhX8tepb1mIvDS3LoV4nZbcFMMsilKbloxSZj2GFotH -uFEJjOp9zYhys2AzsfAKRO8P9Qk3iCQOLGsgOqL6EfJANZxEaGM7rDNvY7wsu/LS -y3Z9fYjYHcgFHW68lKlmjHdxx/qR+i9Rnuk5UrbnBEI= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-064_UTN - DATACorp SGC_The USERTRUST Network.pem b/test/rules/platform_certs/cacert/Cert-064_UTN - DATACorp SGC_The USERTRUST Network.pem deleted file mode 100644 index 1c747eb57d07..000000000000 --- a/test/rules/platform_certs/cacert/Cert-064_UTN - DATACorp SGC_The USERTRUST Network.pem +++ /dev/null @@ -1,26 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEXjCCA0agAwIBAgIQRL4Mi1AAIbQR0ypoBqmtaTANBgkqhkiG9w0BAQUFADCB -kzELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAlVUMRcwFQYDVQQHEw5TYWx0IExha2Ug -Q2l0eTEeMBwGA1UEChMVVGhlIFVTRVJUUlVTVCBOZXR3b3JrMSEwHwYDVQQLExho -dHRwOi8vd3d3LnVzZXJ0cnVzdC5jb20xGzAZBgNVBAMTElVUTiAtIERBVEFDb3Jw -IFNHQzAeFw05OTA2MjQxODU3MjFaFw0xOTA2MjQxOTA2MzBaMIGTMQswCQYDVQQG -EwJVUzELMAkGA1UECBMCVVQxFzAVBgNVBAcTDlNhbHQgTGFrZSBDaXR5MR4wHAYD -VQQKExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxITAfBgNVBAsTGGh0dHA6Ly93d3cu -dXNlcnRydXN0LmNvbTEbMBkGA1UEAxMSVVROIC0gREFUQUNvcnAgU0dDMIIBIjAN -BgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3+5YEKIrblXEjr8uRgnn4AgPLit6 -E5Qbvfa2gI5lBZMAHryv4g+OGQ0SR+ysraP6LnD43m77VkIVni5c7yPeIbkFdicZ -D0/Ww5y0vpQZY/KmEQrrU0icvvIpOxboGqBMpsn0GFlowHDyUwDAXlCCpVZvNvlK -4ESGoE1O1kduSUrLZ9emxAW5jh70/P/N5zbgnAVssjMiFdC04MwXwLLA9P4yPykq -lXvY8qdOD1R8oQ2AswkDwf9c3V6aPryuvEeKaq5xyh+xKrhfQgUL7EYw0XILyulW -bfXv33i+Ybqypa4ETLyorGkVl73v67SMvzX41MPRKA5cOp9wGDMgd8SirwIDAQAB -o4GrMIGoMAsGA1UdDwQEAwIBxjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRT -MtGzz3/64PGgXYVOktKeRR20TzA9BgNVHR8ENjA0MDKgMKAuhixodHRwOi8vY3Js -LnVzZXJ0cnVzdC5jb20vVVROLURBVEFDb3JwU0dDLmNybDAqBgNVHSUEIzAhBggr -BgEFBQcDAQYKKwYBBAGCNwoDAwYJYIZIAYb4QgQBMA0GCSqGSIb3DQEBBQUAA4IB -AQAnNZcAiosovcYzMB4p/OL31ZjUQLtgyr+rFywJNn9Q+kHcrpY6CiM+iVnJowft -Gzet/Hy+UUla3joKVAgWRcKZsYfNjGjgaQPpxE6YsjuMFrMOoAyYUJuTqXAJyCyj -j98C5OBxOvG0I3KgqgHf35g+FFCgMSa9KOlaMCZ1+XtgHI3zzVAmbQQnmt/VDUVH -KWss5nbZqSl9Mt3JNjy9rjXxEZ4du5A/EkdOjtd+D2JzHVImOBwYSf0wdJrE5SIv -2MCN7ZF6TACPcn9d2t0bi0Vr591pl6jFVkwPDPafepE39peC4N1xaf92P2BNPM/3 -mfnGV/TJVTl4uix5yaaIK/QI ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-065_Network Solutions Certificate Authority_Network Solutions L.L.C.pem b/test/rules/platform_certs/cacert/Cert-065_Network Solutions Certificate Authority_Network Solutions L.L.C.pem deleted file mode 100644 index 11289bcdf344..000000000000 --- a/test/rules/platform_certs/cacert/Cert-065_Network Solutions Certificate Authority_Network Solutions L.L.C.pem +++ /dev/null @@ -1,23 +0,0 @@ ------BEGIN CERTIFICATE----- -MIID5jCCAs6gAwIBAgIQV8szb8JcFuZHFhfjkDFo4DANBgkqhkiG9w0BAQUFADBi -MQswCQYDVQQGEwJVUzEhMB8GA1UEChMYTmV0d29yayBTb2x1dGlvbnMgTC5MLkMu -MTAwLgYDVQQDEydOZXR3b3JrIFNvbHV0aW9ucyBDZXJ0aWZpY2F0ZSBBdXRob3Jp -dHkwHhcNMDYxMjAxMDAwMDAwWhcNMjkxMjMxMjM1OTU5WjBiMQswCQYDVQQGEwJV -UzEhMB8GA1UEChMYTmV0d29yayBTb2x1dGlvbnMgTC5MLkMuMTAwLgYDVQQDEydO -ZXR3b3JrIFNvbHV0aW9ucyBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwggEiMA0GCSqG -SIb3DQEBAQUAA4IBDwAwggEKAoIBAQDkvH6SMG3G2I4rC7xGzuAnlt7e+foS0zwz -c7MEL7xxjOWftiJgPl9dzgn/ggwbmlFQGiaJ3dVhXRncEg8tCqJDXRfQNJIg6nPP -OCwGJgl6cvf6UDL4wpPTaaIjzkGxzOTVHzbRijr4jGPiFFlp7Q3Tf2vouAPlT2rl -mGNpSAW+Lv8ztumXWWn4Zxmuk2GWRBXTcrA/vGp97Eh/jcOrqnErU2lBUzS1sLnF -BgrEsEX1QV1uiUV7PTsmjHTC5dLRfbIR1PtYMiKagMnc/Qzpf14Dl847ABSHJ3A4 -qY5usyd2mFHgBeMhqxrVhSI8KbWaFsWAqPS7azCPL0YCorEMIuDTAgMBAAGjgZcw -gZQwHQYDVR0OBBYEFCEwyfsA106Y2oeqKtCnLrFAMadMMA4GA1UdDwEB/wQEAwIB -BjAPBgNVHRMBAf8EBTADAQH/MFIGA1UdHwRLMEkwR6BFoEOGQWh0dHA6Ly9jcmwu -bmV0c29sc3NsLmNvbS9OZXR3b3JrU29sdXRpb25zQ2VydGlmaWNhdGVBdXRob3Jp -dHkuY3JsMA0GCSqGSIb3DQEBBQUAA4IBAQC7rkvnt1frf6ott3NHhWrB5KUd5Oc8 -6fRZZXe1eltajSU24HqXLjjAV2CDmAaDn7l2em5Q4LqILPxFzBiwmZVRDuwduIj/ -h1AcgsLj4DKAv6ALR8jDMe+ZZzKATxcheQxpXN5eNK4CtSbqUN9/GGUsyfJj4akH -/nxxH2szJGoeBfcFaMBqEssuXmHLrijTfsK0ZpEmXzwuJF/LWA/rKOyvEZbz3Htv -wKeI8lN3s2Berq4o2jUsbzRF0ybh3uxbTydrFny9RAQYgrOJeRcQcT16ohZO9QHN -pGxlaKFJdlxDydi8NmdspZS11My5vWo1ViHe2MPr+8ukYEywVaCge1ey ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-066_GlobalSign_GlobalSign.pem b/test/rules/platform_certs/cacert/Cert-066_GlobalSign_GlobalSign.pem deleted file mode 100644 index 6f0f8db0d8f2..000000000000 --- a/test/rules/platform_certs/cacert/Cert-066_GlobalSign_GlobalSign.pem +++ /dev/null @@ -1,22 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDujCCAqKgAwIBAgILBAAAAAABD4Ym5g0wDQYJKoZIhvcNAQEFBQAwTDEgMB4G -A1UECxMXR2xvYmFsU2lnbiBSb290IENBIC0gUjIxEzARBgNVBAoTCkdsb2JhbFNp -Z24xEzARBgNVBAMTCkdsb2JhbFNpZ24wHhcNMDYxMjE1MDgwMDAwWhcNMjExMjE1 -MDgwMDAwWjBMMSAwHgYDVQQLExdHbG9iYWxTaWduIFJvb3QgQ0EgLSBSMjETMBEG -A1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbjCCASIwDQYJKoZI -hvcNAQEBBQADggEPADCCAQoCggEBAKbPJA6+Lm8omUVCxKs+IVSbC9N/hHD6ErPL -v4dfxn+G07IwXNb9rfF73OX4YJYJkhD10FPe+3t+c4isUoh7SqbKSaZeqKeMWhG8 -eoLrvozps6yWJQeXSpkqBy+0Hne/ig+1AnwblrjFuTosvNYSuetZfeLQBoZfXklq -tTleiDTsvHgMCJiEbKjNS7SgfQx5TfC4LcshytVsW33hoCmEofnTlEnLJGKRILzd -C9XZzPnqJworc5HGnRusyMvo4KD0L5CLTfuwNhv2GXqF4G3yYROIXJ/gkwpRl4pa -zq+r1feqCapgvdzZX99yqWATXgAByUr6P6TqBwMhAo6CygPCm48CAwEAAaOBnDCB -mTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUm+IH -V2ccHsBqBt5ZtJot39wZhi4wNgYDVR0fBC8wLTAroCmgJ4YlaHR0cDovL2NybC5n -bG9iYWxzaWduLm5ldC9yb290LXIyLmNybDAfBgNVHSMEGDAWgBSb4gdXZxwewGoG -3lm0mi3f3BmGLjANBgkqhkiG9w0BAQUFAAOCAQEAmYFThxxol4aR7OBKuEQLq4Gs -J0/WwbgcQ3izDJr86iw8bmEbTUsp9Z8FHSbBuOmDAGJFtqkIk7mpM0sYmsL4h4hO -291xNBrBVNpGP+DTKqttVCL1OmLNIG+6KYnX3ZHu01yiPqFbQfXf5WRDLenVOavS -ot+3i9DAgBkcRcAtjOj4LaR0VknFBbVPFd5uRHg5h6h+u/N5GJG79G+dwfCMNYxd -AfvDbbnvRG15RjF+Cv6pgsH/76tuIMRQyV+dTZsXjAzlAcmgQWpzU/qlULRuJQ/7 -TBj0/VLZjmmx6BEP3ojY+x1J96relc8geMJgEtslQIxq/H5COEBkEveegeGTLg== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-067_America Online Root Certification Authority 1_America Online Inc.pem b/test/rules/platform_certs/cacert/Cert-067_America Online Root Certification Authority 1_America Online Inc.pem deleted file mode 100644 index d6837453dd86..000000000000 --- a/test/rules/platform_certs/cacert/Cert-067_America Online Root Certification Authority 1_America Online Inc.pem +++ /dev/null @@ -1,22 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDpDCCAoygAwIBAgIBATANBgkqhkiG9w0BAQUFADBjMQswCQYDVQQGEwJVUzEc -MBoGA1UEChMTQW1lcmljYSBPbmxpbmUgSW5jLjE2MDQGA1UEAxMtQW1lcmljYSBP -bmxpbmUgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAxMB4XDTAyMDUyODA2 -MDAwMFoXDTM3MTExOTIwNDMwMFowYzELMAkGA1UEBhMCVVMxHDAaBgNVBAoTE0Ft -ZXJpY2EgT25saW5lIEluYy4xNjA0BgNVBAMTLUFtZXJpY2EgT25saW5lIFJvb3Qg -Q2VydGlmaWNhdGlvbiBBdXRob3JpdHkgMTCCASIwDQYJKoZIhvcNAQEBBQADggEP -ADCCAQoCggEBAKgv6KRpBgNHw+kqmP8ZonCaxlCyfqXfaE0bfA+2l2h9LaaLl+lk -hsmj76CGv2BlnEtUiMJIxUo5vxTjWVXlGbR0yLQFOVwWpeKVBeASrlmLojNoWBym -1BW32J/X3HGrfpq/m44zDyL9Hy7nBzbvYjnF3cu6JRQj3gzGPTzOggjmZj7aUTsW -OqMFf6Dch9Wc/HKpoH145LcxVR5lu9RhsCFg7RAycsWSJR74kEoYeEfffjA3PlAb -2xzTa5qGUwew76wGePiEmf4hjUyAtgyC9mZweRrTT6PP8c9GsEsPPt2IYriMqQko -O3rHl+Ee5fSfwMCuJKDIodkP1nsmgmkyPacCAwEAAaNjMGEwDwYDVR0TAQH/BAUw -AwEB/zAdBgNVHQ4EFgQUAK3Zo/Z59m50qX8zPYEX10zPM94wHwYDVR0jBBgwFoAU -AK3Zo/Z59m50qX8zPYEX10zPM94wDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3DQEB -BQUAA4IBAQB8itEfGDeC4Liwo+1WlchiYZwFos3CYiZhzRAW18y0ZTTQEYqtqKkF -Zu90821fnZmv9ov761KyBZiibyrFVL0lvV+uyIbqRizBs73B6UlwGBaXCBOMIOAb -LjpHyx7kADCVW/RFo8AasAFOq73AI25jP4BKxQft3OJvx8Fi8eNy1gTIdGcL+oir -oQHIb/AUr9KZzVGTfu0uOMe9zkZQPXLjeSWdm4grECDdpbgyn43gKd8hdIaC2y+C -MMbHNYaz+ZZfRtsMRf3zUMNvxsNIrUam4SdHCh0Om7bCd39j8uB9Gr784N/Xx6ds -sPmuujz9dLQR6FgNgLzTqIA6me11zEZ7 ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-068_GTE CyberTrust Global Root_GTE Corporation.pem b/test/rules/platform_certs/cacert/Cert-068_GTE CyberTrust Global Root_GTE Corporation.pem deleted file mode 100644 index 82ae5e1bec73..000000000000 --- a/test/rules/platform_certs/cacert/Cert-068_GTE CyberTrust Global Root_GTE Corporation.pem +++ /dev/null @@ -1,15 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICWjCCAcMCAgGlMA0GCSqGSIb3DQEBBAUAMHUxCzAJBgNVBAYTAlVTMRgwFgYD -VQQKEw9HVEUgQ29ycG9yYXRpb24xJzAlBgNVBAsTHkdURSBDeWJlclRydXN0IFNv -bHV0aW9ucywgSW5jLjEjMCEGA1UEAxMaR1RFIEN5YmVyVHJ1c3QgR2xvYmFsIFJv -b3QwHhcNOTgwODEzMDAyOTAwWhcNMTgwODEzMjM1OTAwWjB1MQswCQYDVQQGEwJV -UzEYMBYGA1UEChMPR1RFIENvcnBvcmF0aW9uMScwJQYDVQQLEx5HVEUgQ3liZXJU -cnVzdCBTb2x1dGlvbnMsIEluYy4xIzAhBgNVBAMTGkdURSBDeWJlclRydXN0IEds -b2JhbCBSb290MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCVD6C28FCc6HrH -iM3dFw4usJTQGz0O9pTAipTHBsiQl8i4ZBp6fmw8U+E3KHNgf7KXUwefU/ltWJTS -r41tiGeA5u2ylc9yMcqlHHK6XALnZELn+aks1joNrI1CqiQBOeacPwGFVw1Yh0X4 -04Wqk2kmhXBIgD8SFcd5tB8FLztimQIDAQABMA0GCSqGSIb3DQEBBAUAA4GBAG3r -GwnpXtlR22ciYaQqPEh346B8pt5zohQDhT37qw4wxYMWM4ETCJ57NE7fQMh017l9 -3PR2VX2bY1QY6fDq81yx2YtCHrnAlU66+tXifPVoYb+O7AWXX1uw16OFNMQkpw0P -lZPvy5TYnh+dXIVtx6quTx8itc2VrbqnzPmrC3p/ ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-069_Thawte Premium Server CA_Thawte Consulting cc.pem b/test/rules/platform_certs/cacert/Cert-069_Thawte Premium Server CA_Thawte Consulting cc.pem deleted file mode 100644 index 51285e33c2fc..000000000000 --- a/test/rules/platform_certs/cacert/Cert-069_Thawte Premium Server CA_Thawte Consulting cc.pem +++ /dev/null @@ -1,19 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDJzCCApCgAwIBAgIBATANBgkqhkiG9w0BAQQFADCBzjELMAkGA1UEBhMCWkEx -FTATBgNVBAgTDFdlc3Rlcm4gQ2FwZTESMBAGA1UEBxMJQ2FwZSBUb3duMR0wGwYD -VQQKExRUaGF3dGUgQ29uc3VsdGluZyBjYzEoMCYGA1UECxMfQ2VydGlmaWNhdGlv -biBTZXJ2aWNlcyBEaXZpc2lvbjEhMB8GA1UEAxMYVGhhd3RlIFByZW1pdW0gU2Vy -dmVyIENBMSgwJgYJKoZIhvcNAQkBFhlwcmVtaXVtLXNlcnZlckB0aGF3dGUuY29t -MB4XDTk2MDgwMTAwMDAwMFoXDTIwMTIzMTIzNTk1OVowgc4xCzAJBgNVBAYTAlpB -MRUwEwYDVQQIEwxXZXN0ZXJuIENhcGUxEjAQBgNVBAcTCUNhcGUgVG93bjEdMBsG -A1UEChMUVGhhd3RlIENvbnN1bHRpbmcgY2MxKDAmBgNVBAsTH0NlcnRpZmljYXRp -b24gU2VydmljZXMgRGl2aXNpb24xITAfBgNVBAMTGFRoYXd0ZSBQcmVtaXVtIFNl -cnZlciBDQTEoMCYGCSqGSIb3DQEJARYZcHJlbWl1bS1zZXJ2ZXJAdGhhd3RlLmNv -bTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEA0jY2aovXwlue2oFBYo847kkE -VdbQ7xwblRZH7xhINTpS9CtqBo87L+pW46+GjZ4X9560ZXUCTe/LCaIhUdib0GfQ -ug2SBhRz1JPLlyoAnFxODLz6FVL88kRu2hFKbgifLy3j+ao6hnO2RlNYyIkFvYMR -uHM/qgeN9EJN50CdHDcCAwEAAaMTMBEwDwYDVR0TAQH/BAUwAwEB/zANBgkqhkiG -9w0BAQQFAAOBgQAmSCwWwlj66BZ0DKqqX1Q/8tfJeGBeXm43YyJ3Nn6yF8Q0ufUI -hfzJATj/Tb7yFkJD57taRvvBxhEf8UqwKEbJw8RCfbz6q1lu1bdRiBHjpIUZa4JM -pAwSremkrj/xw0llmozFyD4lt5SZu5IycQfwhl7tUCemDaYj+bvLpgcUQg== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-070_Equifax Secure Global eBusiness CA-1_Equifax Secure Inc.pem b/test/rules/platform_certs/cacert/Cert-070_Equifax Secure Global eBusiness CA-1_Equifax Secure Inc.pem deleted file mode 100644 index 03cb845809b0..000000000000 --- a/test/rules/platform_certs/cacert/Cert-070_Equifax Secure Global eBusiness CA-1_Equifax Secure Inc.pem +++ /dev/null @@ -1,16 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICkDCCAfmgAwIBAgIBATANBgkqhkiG9w0BAQQFADBaMQswCQYDVQQGEwJVUzEc -MBoGA1UEChMTRXF1aWZheCBTZWN1cmUgSW5jLjEtMCsGA1UEAxMkRXF1aWZheCBT -ZWN1cmUgR2xvYmFsIGVCdXNpbmVzcyBDQS0xMB4XDTk5MDYyMTA0MDAwMFoXDTIw -MDYyMTA0MDAwMFowWjELMAkGA1UEBhMCVVMxHDAaBgNVBAoTE0VxdWlmYXggU2Vj -dXJlIEluYy4xLTArBgNVBAMTJEVxdWlmYXggU2VjdXJlIEdsb2JhbCBlQnVzaW5l -c3MgQ0EtMTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuucXkAJlsTRVPEnC -UdXfp9E3j9HngXNBUmCbnaEXJnitx7HoJpQytd4zjTov2/KaelpzmKNc6fuKcxtc -58O/gGzNqfTWK8D3+ZmqY6KxRwIP1ORROhI8bIpaVIRw28HFkM9yRcuoWcDNM50/ -o5brhTMhHD4ePmBudpxnhcXIw2ECAwEAAaNmMGQwEQYJYIZIAYb4QgEBBAQDAgAH -MA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUvqigdHJQa0S3ySPY+6j/s1dr -aGwwHQYDVR0OBBYEFL6ooHRyUGtEt8kj2Puo/7NXa2hsMA0GCSqGSIb3DQEBBAUA -A4GBADDiAVGqx+pf2rnQZQ8w1j7aDRRJbpGTJxQx78T3LUX47Me/okENI7SS+RkA -Z70Br83gcfxaz2TE4JaY0KNA4gGK7ycH8WUBikQtBmV1UsCGECAhX2xrD2yuCRyv -8qIYNMR1pHMc8Y3c7635s3a0kr/clRAevsvIO1qEYBlWlKlV ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-071_thawte Primary Root CA - G2_thawte, Inc.pem b/test/rules/platform_certs/cacert/Cert-071_thawte Primary Root CA - G2_thawte, Inc.pem deleted file mode 100644 index 447ee3d89816..000000000000 --- a/test/rules/platform_certs/cacert/Cert-071_thawte Primary Root CA - G2_thawte, Inc.pem +++ /dev/null @@ -1,16 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICiDCCAg2gAwIBAgIQNfwmXNmET8k9Jj1Xm67XVjAKBggqhkjOPQQDAzCBhDEL -MAkGA1UEBhMCVVMxFTATBgNVBAoTDHRoYXd0ZSwgSW5jLjE4MDYGA1UECxMvKGMp -IDIwMDcgdGhhd3RlLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxJDAi -BgNVBAMTG3RoYXd0ZSBQcmltYXJ5IFJvb3QgQ0EgLSBHMjAeFw0wNzExMDUwMDAw -MDBaFw0zODAxMTgyMzU5NTlaMIGEMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMdGhh -d3RlLCBJbmMuMTgwNgYDVQQLEy8oYykgMjAwNyB0aGF3dGUsIEluYy4gLSBGb3Ig -YXV0aG9yaXplZCB1c2Ugb25seTEkMCIGA1UEAxMbdGhhd3RlIFByaW1hcnkgUm9v -dCBDQSAtIEcyMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAEotWcgnuVnfFSeIf+iha/ -BebfowJPDQfGAFG6DAJSLSKkQjnE/o/qycG+1E3/n3qe4rF8mq2nhglzh9HnmuN6 -papu+7qzcMBniKI11KOasf2twu8x+qi58/sIxpHR+ymVo0IwQDAPBgNVHRMBAf8E -BTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUmtgAMADna3+FGO6Lts6K -DPgR4bswCgYIKoZIzj0EAwMDaQAwZgIxAN344FdHW6fmCsO99YCKlzUNG4k8VIZ3 -KMqh9HneteY4sPBlcIx/AlTCv//YoT7ZzwIxAMSNlPzcU9LcnXgWHxUzI1NS41ox -XZ3Krr0TKUQNJ1uo52icEvdYPy5yAlejj6EULg== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-072_Digisign Server ID (Enrich)_Digicert Sdn. Bhd.pem b/test/rules/platform_certs/cacert/Cert-072_Digisign Server ID (Enrich)_Digicert Sdn. Bhd.pem deleted file mode 100644 index 13316db4f43c..000000000000 --- a/test/rules/platform_certs/cacert/Cert-072_Digisign Server ID (Enrich)_Digicert Sdn. Bhd.pem +++ /dev/null @@ -1,23 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDzTCCAzagAwIBAgIGB///////MA0GCSqGSIb3DQEBBQUAMHUxCzAJBgNVBAYT -AlVTMRgwFgYDVQQKEw9HVEUgQ29ycG9yYXRpb24xJzAlBgNVBAsTHkdURSBDeWJl -clRydXN0IFNvbHV0aW9ucywgSW5jLjEjMCEGA1UEAxMaR1RFIEN5YmVyVHJ1c3Qg -R2xvYmFsIFJvb3QwHhcNMDcwNzE3MTUxNzQ5WhcNMTIwNzE3MTUxNjU1WjBjMQsw -CQYDVQQGEwJNWTEbMBkGA1UEChMSRGlnaWNlcnQgU2RuLiBCaGQuMREwDwYDVQQL -Ewg0NTc2MDgtSzEkMCIGA1UEAxMbRGlnaXNpZ24gU2VydmVyIElEIChFbnJpY2gp -MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCtqGRLTYfHhFm5+5BGoKaJwPH+ -1dpUgjcNmStFJgroVrB/yqj0jkeEAYIp47NqtZHz+5WFvHKoZOgKQJzF9HGue3tq -B+qQFE+Nia+Uq7IG1AJqe5gfWbk6zVT6IN+yKgrpuN1pkMAp007Ql+1mzMUZSQZ/ -+l4sfHuFGzJC33uVJQIDAQABo4IBeDCCAXQwEgYDVR0TAQH/BAgwBgEB/wIBADBc -BgNVHSAEVTBTMEgGCSsGAQQBsT4BADA7MDkGCCsGAQUFBwIBFi1odHRwOi8vY3li -ZXJ0cnVzdC5vbW5pcm9vdC5jb20vcmVwb3NpdG9yeS5jZm0wBwYFYINKAQEwDgYD -VR0PAQH/BAQDAgHmMIGJBgNVHSMEgYEwf6F5pHcwdTELMAkGA1UEBhMCVVMxGDAW -BgNVBAoTD0dURSBDb3Jwb3JhdGlvbjEnMCUGA1UECxMeR1RFIEN5YmVyVHJ1c3Qg -U29sdXRpb25zLCBJbmMuMSMwIQYDVQQDExpHVEUgQ3liZXJUcnVzdCBHbG9iYWwg -Um9vdIICAaUwRQYDVR0fBD4wPDA6oDigNoY0aHR0cDovL3d3dy5wdWJsaWMtdHJ1 -c3QuY29tL2NnaS1iaW4vQ1JMLzIwMTgvY2RwLmNybDAdBgNVHQ4EFgQUxhaTThYX -7BaujJR284ZtxXRuhHcwDQYJKoZIhvcNAQEFBQADgYEAdgB7pngrZh2OXjbGpI4F -8iOSfJNn0/TACn2LLdnq1W8a8+FKKVoihE1QL0sM8v+FwntV1ESCvm2sZ468tB+S -nFGAGhT2bqthiAutHH/3S1BR1mUbpkdxFV6wcfM1FPI3vWPI1fCTWjRf2D3oXffF -HsDlzx+GJKk8B2bNwdI2Y1k= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-073_thawte Primary Root CA - G3_thawte, Inc.pem b/test/rules/platform_certs/cacert/Cert-073_thawte Primary Root CA - G3_thawte, Inc.pem deleted file mode 100644 index acfed9d2c846..000000000000 --- a/test/rules/platform_certs/cacert/Cert-073_thawte Primary Root CA - G3_thawte, Inc.pem +++ /dev/null @@ -1,25 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEKjCCAxKgAwIBAgIQYAGXt0an6rS0mtZLL/eQ+zANBgkqhkiG9w0BAQsFADCB -rjELMAkGA1UEBhMCVVMxFTATBgNVBAoTDHRoYXd0ZSwgSW5jLjEoMCYGA1UECxMf -Q2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjE4MDYGA1UECxMvKGMpIDIw -MDggdGhhd3RlLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxJDAiBgNV -BAMTG3RoYXd0ZSBQcmltYXJ5IFJvb3QgQ0EgLSBHMzAeFw0wODA0MDIwMDAwMDBa -Fw0zNzEyMDEyMzU5NTlaMIGuMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMdGhhd3Rl -LCBJbmMuMSgwJgYDVQQLEx9DZXJ0aWZpY2F0aW9uIFNlcnZpY2VzIERpdmlzaW9u -MTgwNgYDVQQLEy8oYykgMjAwOCB0aGF3dGUsIEluYy4gLSBGb3IgYXV0aG9yaXpl -ZCB1c2Ugb25seTEkMCIGA1UEAxMbdGhhd3RlIFByaW1hcnkgUm9vdCBDQSAtIEcz -MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsr8nLPvb2FvdeHsbnndm -gcs+vHyu86YnmjSjaDFxODNi5PNxZnmxqWWjpYvVj2AtP0LMqmsywCPLLEHd5N/8 -YZzic7IilRFDGF/Eth9XbAoFWCLINkw6fKXRz4aviKdEAhN0cXMKQlkC+BsUa0Lf -b1+6a4KinVvnSr0eAXLbS3ToO39/fR8EtCab4LRarEc9VbjXsCZSKAExQGbY2SS9 -9irY7CFJXJv2eul/VTV+lmuNk5Mny5K76qxAwJ/C+IDPXfRa3M50hqY+bAtTyr2S -zhkGcuYMXDhpxwTWvGzOW/b3aJzcJRVIiKHpqfiYnODz1TEoYRFsZ5aNOZnLwkUk -OQIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNV -HQ4EFgQUrWyqlGCc7eT/+j4KdCtjA/e2Wb8wDQYJKoZIhvcNAQELBQADggEBABpA -2JVlrAmSicY59BDlqQ5mU1143vokkbvnRFHfxhY0Cu9qRFHqKweKA3rD6z8KLFIW -oCtDuSWQP3CpMyVtRRooOyfPqsMpQhvfO0zAMzRbQYi/aytlryjvsvXDqmbOe1bu -t8jLZ8HJnBoYuMTDSQPxYA5QzUbF83d597YV4Djbxy8ooAw/dyZ02SUS2jHaGh7c -KUGRIjxpp7sC8rZcJwOJ9Abqm+RyguOhCcHpABnTPtRwa7pxpqpYrvS76Wy274fM -m7v/OeZWYdMKp8RcTGB7BXcmer/YB1IsYvdwY9k5vG8cwnncdimvzsUsZAReiDZu -MdRAGmI0Nj81Aa6sY6A= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-074_SECOM Trust Systems CO.,LTD.pem b/test/rules/platform_certs/cacert/Cert-074_SECOM Trust Systems CO.,LTD.pem deleted file mode 100644 index de75da583833..000000000000 --- a/test/rules/platform_certs/cacert/Cert-074_SECOM Trust Systems CO.,LTD.pem +++ /dev/null @@ -1,21 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDfTCCAmWgAwIBAgIBADANBgkqhkiG9w0BAQUFADBgMQswCQYDVQQGEwJKUDEl -MCMGA1UEChMcU0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEqMCgGA1UECxMh -U2VjdXJpdHkgQ29tbXVuaWNhdGlvbiBFViBSb290Q0ExMB4XDTA3MDYwNjAyMTIz -MloXDTM3MDYwNjAyMTIzMlowYDELMAkGA1UEBhMCSlAxJTAjBgNVBAoTHFNFQ09N -IFRydXN0IFN5c3RlbXMgQ08uLExURC4xKjAoBgNVBAsTIVNlY3VyaXR5IENvbW11 -bmljYXRpb24gRVYgUm9vdENBMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC -ggEBALx/7FebJOD+nLpCeamIivqA4PUHKUPqjgo0No0c+qe1OXj/l3X3L+SqawSE -RMqm4miO/VVQYg+kcQ7OBzgtQoVQrTyWb4vVog7P3kmJPdZkLjjlHmy1V4qe70gO -zXppFodEtZDkBp2uoQSXWHnvIEqCa4wiv+wfD+mEce3xDuS4GBPMVjZd0ZoeUWs5 -bmB2iDQL87PRsJ3KYeJkHcFGB7hj3R4zZbOOCVVSPbW9/wfrrWFVGCypaZhKqkDF -MxRldAD5kd6vA0jFQFTcD4SQaCDFkpbcLuUCRarAX1T4bepJz11sS6/vmsJWXMY1 -VkJqMF/Cq/biPT+zyRGPMUzXn0kCAwEAAaNCMEAwHQYDVR0OBBYEFDVK9U2vP9eC -OKyrcWUXdYydVZPmMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MA0G -CSqGSIb3DQEBBQUAA4IBAQCoh+ns+EBnXcPBZsdAS5f8hxOQWsTvoMpfi7ent/HW -tWS3irO4G8za+6xmiEHO6Pzk2x6Ipu0nUBsCMCRGef4Eh3CXQHPRwMFXGZpppSeZ -q51ihPZRwSzJIxXYKLerJRO1RuGGAv8mjMSIkh1W/hln8lXkgKNrnKt34VFxDSDb -EJrbvXZ5B3eZKK2aXtqxT0QsNY6llsf9g/BYxnnWmHyojf6GPgcWkuF75x3sM3Z+ -Qi5KhfmRiWiEA4Glm5q+4zfFVKtWOxgtQaQM+ELbmaDgcm+7XeEWT1MKZPlO9L9O -VL14bIjqv5wTJMJwaaJ/D8g8rQjJsJhAoyrniIPtd490 ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-075_Digital Signature Trust Co.pem b/test/rules/platform_certs/cacert/Cert-075_Digital Signature Trust Co.pem deleted file mode 100644 index 32b72ee3715c..000000000000 --- a/test/rules/platform_certs/cacert/Cert-075_Digital Signature Trust Co.pem +++ /dev/null @@ -1,19 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDKTCCApKgAwIBAgIENm7TzjANBgkqhkiG9w0BAQUFADBGMQswCQYDVQQGEwJV -UzEkMCIGA1UEChMbRGlnaXRhbCBTaWduYXR1cmUgVHJ1c3QgQ28uMREwDwYDVQQL -EwhEU1RDQSBFMjAeFw05ODEyMDkxOTE3MjZaFw0xODEyMDkxOTQ3MjZaMEYxCzAJ -BgNVBAYTAlVTMSQwIgYDVQQKExtEaWdpdGFsIFNpZ25hdHVyZSBUcnVzdCBDby4x -ETAPBgNVBAsTCERTVENBIEUyMIGdMA0GCSqGSIb3DQEBAQUAA4GLADCBhwKBgQC/ -k48Xku8zExjrEH9OFr//Bo8qhbxe+SSmJIi2A7fBw18DW9Fvrn5C6mYjuGODVvso -LeE4i7TuqAHhzhy2iCoiRoX7n6dwqUcUP87eZfCocfdPJmyMvMa1795JJ/9IKn3o -TQPMx7JSxhcxEzu1TdvIxPbDDyQq2gyd55FbgM2UnQIBA6OCASQwggEgMBEGCWCG -SAGG+EIBAQQEAwIABzBoBgNVHR8EYTBfMF2gW6BZpFcwVTELMAkGA1UEBhMCVVMx -JDAiBgNVBAoTG0RpZ2l0YWwgU2lnbmF0dXJlIFRydXN0IENvLjERMA8GA1UECxMI -RFNUQ0EgRTIxDTALBgNVBAMTBENSTDEwKwYDVR0QBCQwIoAPMTk5ODEyMDkxOTE3 -MjZagQ8yMDE4MTIwOTE5MTcyNlowCwYDVR0PBAQDAgEGMB8GA1UdIwQYMBaAFB6C -TShlgDzJQW6sNS5ay97u+DlbMB0GA1UdDgQWBBQegk0oZYA8yUFurDUuWsve7vg5 -WzAMBgNVHRMEBTADAQH/MBkGCSqGSIb2fQdBAAQMMAobBFY0LjADAgSQMA0GCSqG -SIb3DQEBBQUAA4GBAEeNg61i8tuwnkUiBbmi1gMOOHLnnvx75pO2mqWilMg0HZHR -xdf0CiUPPXiBng+xZ8SQTGPdXqfiup/1902lMXucKS1M/mQ+7LZT/uqb7YLbdHVL -B3luHtgZg3Pe9T7Qtd7nS2h9Qy4qIOF+oHhEngj1mPnHfxsb1gYgAlihw6ID ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-076_TDC Internet.pem b/test/rules/platform_certs/cacert/Cert-076_TDC Internet.pem deleted file mode 100644 index 21ccc8f16448..000000000000 --- a/test/rules/platform_certs/cacert/Cert-076_TDC Internet.pem +++ /dev/null @@ -1,25 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEKzCCAxOgAwIBAgIEOsylTDANBgkqhkiG9w0BAQUFADBDMQswCQYDVQQGEwJE -SzEVMBMGA1UEChMMVERDIEludGVybmV0MR0wGwYDVQQLExRUREMgSW50ZXJuZXQg -Um9vdCBDQTAeFw0wMTA0MDUxNjMzMTdaFw0yMTA0MDUxNzAzMTdaMEMxCzAJBgNV -BAYTAkRLMRUwEwYDVQQKEwxUREMgSW50ZXJuZXQxHTAbBgNVBAsTFFREQyBJbnRl -cm5ldCBSb290IENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxLhA -vJHVYx/XmaCLDEAedLdInUaMArLgJF/wGROnN4NrXceO+YQwzho7+vvOi20jxsNu -Zp+Jpd/gQlBn+h9sHvTQBda/ytZO5GhgbEaqHF1j4QeGDmUApy6mcca8uYGoOn0a -0vnRrEvLznWv3Hv6gXPU/Lq9QYjUdLP5Xjg6PEOo0pVOd20TDJ2PeAG3WiAfAzc1 -4izbSysseLlJ28TQx5yc5IogCSEWVmb/Bexb4/DPqyQkXsN/cHoSxNK1EKC2IeGN -eGlVRGn1ypYcNIUXJXfi9i8nmHj9eQY6otZaQ8H/7AQ77hPv01ha/5Lr7K7a8jcD -R0G2l8ktCkEiu7vmpwIDAQABo4IBJTCCASEwEQYJYIZIAYb4QgEBBAQDAgAHMGUG -A1UdHwReMFwwWqBYoFakVDBSMQswCQYDVQQGEwJESzEVMBMGA1UEChMMVERDIElu -dGVybmV0MR0wGwYDVQQLExRUREMgSW50ZXJuZXQgUm9vdCBDQTENMAsGA1UEAxME -Q1JMMTArBgNVHRAEJDAigA8yMDAxMDQwNTE2MzMxN1qBDzIwMjEwNDA1MTcwMzE3 -WjALBgNVHQ8EBAMCAQYwHwYDVR0jBBgwFoAUbGQBx/2FbazI2p5QCIUItTxWqFAw -HQYDVR0OBBYEFGxkAcf9hW2syNqeUAiFCLU8VqhQMAwGA1UdEwQFMAMBAf8wHQYJ -KoZIhvZ9B0EABBAwDhsIVjUuMDo0LjADAgSQMA0GCSqGSIb3DQEBBQUAA4IBAQBO -Q8zR3R0QGwZ/t6T609lN+yOfI1Rb5osvBCiLtSdtiaHsmGnc540mgwV5dOy0uaOX -wTUA/RXaOYE6lTGQ3pfphqiZdwzlWqCE/xIWrG64jcN7ksKsLtB9KOy282A4aW8+ -2ARVPp7MVdK6/rtHBNcK2RYKNCn1WBPVT8+PVkuzHu7TmHnaCB4Mb7j4Fifvwm89 -9qNLPg7kbWzbO0ESm70NRyN/PErQr8Cv9u8btRXE64PECV90i9kR+8JWsTz4cMo0 -jUNAE4z9mQNUecYu6oah9jrUCbz0vGbMPVjQV0kK7iXiQe4T+Zs4NNEA9X7nlB38 -aQNiuJkFBT1reBK9sG9l ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-077_DigiNotar Cyber CA_DigiNotar.pem b/test/rules/platform_certs/cacert/Cert-077_DigiNotar Cyber CA_DigiNotar.pem deleted file mode 100644 index ab9096205e59..000000000000 --- a/test/rules/platform_certs/cacert/Cert-077_DigiNotar Cyber CA_DigiNotar.pem +++ /dev/null @@ -1,29 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFATCCBGqgAwIBAgIED////zANBgkqhkiG9w0BAQUFADA+MQswCQYDVQQGEwJO -TDESMBAGA1UEChMJRGlnaU5vdGFyMRswGQYDVQQDExJEaWdpTm90YXIgQ3liZXIg -Q0EwHhcNMDYwOTI3MTA1MzUzWhcNMTMwOTIwMDk0NDA3WjA+MQswCQYDVQQGEwJO -TDESMBAGA1UEChMJRGlnaU5vdGFyMRswGQYDVQQDExJEaWdpTm90YXIgQ3liZXIg -Q0EwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDSzhUKLahehGet/b7v -RsfIuc9z/PQ0ufksQ+dgEz1647LPO2dskK3AuT+EUvA1Qtx03Cg7vVK0p6xyRRfG -8InrtKol8l1LXtHZh7rWfXz1zjKfEDPFsUq7XpExwtDpQcKRZH4JQTvbiwg3aqrK -Ut61OR7AiAOlP4uZE2FDtZuCs+4gb8+hRKLqL2tAn48rV62hU8KFImmdoD9R3wtB -kQ2l4aiqXEkIXb3ecEGxD8lja9N/NHQCLzRaeHUcaHqBZ4rz2kDwYGP0kiDXA6Y9 -ox5nxIQbQaXJjOa96ki2BRYIszcSWvdhPPc4by6X4G9WOFTTKLWtFG4uS2S1J2W3 -dSUJtgc9lVYCCoJgsnNF4DMmUXSaudRQHPZNW1tSUhNapn+nDuHoQVRnmIyH1cnT -bMvTVJIGCTRB94FvP57JfHVVsOfBs3fow8QANZVAcBBKBd4lu59ZpWS8R2C/YON2 -ixNV3eF0ernPJKZqf95kIkRYaIJqEPk95T4bub38IvRgBIm7VW0oVfrejo0bIRTX -N4s0e032srIQzzOxfRximUjLK2x2llW/GQ0dH7tlqhuOmbXGKJDlgi14UCCa/Xkv -JH/wiSlp9H3Nc76z7U7B0e1SXo/3uNeNh62y2RtREv9Ws+GvNH1cpHiIEJ6dA8al -qqIkUfdJFMWx7llDld+raCgwPwIDAQABo4IBhjCCAYIwEgYDVR0TAQH/BAgwBgEB -/wIBATBTBgNVHSAETDBKMEgGCSsGAQQBsT4BADA7MDkGCCsGAQUFBwIBFi1odHRw -Oi8vd3d3LnB1YmxpYy10cnVzdC5jb20vQ1BTL09tbmlSb290Lmh0bWwwDgYDVR0P -AQH/BAQDAgEGMIGgBgNVHSMEgZgwgZWAFKYMHZ9h/wcXtb84RttDMNWOsFIGoXmk -dzB1MQswCQYDVQQGEwJVUzEYMBYGA1UEChMPR1RFIENvcnBvcmF0aW9uMScwJQYD -VQQLEx5HVEUgQ3liZXJUcnVzdCBTb2x1dGlvbnMsIEluYy4xIzAhBgNVBAMTGkdU -RSBDeWJlclRydXN0IEdsb2JhbCBSb290ggIBpTBFBgNVHR8EPjA8MDqgOKA2hjRo -dHRwOi8vd3d3LnB1YmxpYy10cnVzdC5jb20vY2dpLWJpbi9DUkwvMjAxOC9jZHAu -Y3JsMB0GA1UdDgQWBBSr+Wjfz0o313tFjF9y3kBEw2W7wjANBgkqhkiG9w0BAQUF -AAOBgQAJymIPjbtK4NR6NSsGLdEoYbasAfuDSbyu1C8thq4Zg6XWHRPiF77+MnTp -ehQ4ypRe9ykBaXEbkRr9o7uqHcp74hb9oaMO8wxfsuEgMZQrXpJ27frptSOmvwo7 -A6lvUmBUzV/pty98oif9QYN1tg37eCbzsUXpMpUqGjUhlcWidQ== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-078_VeriSign, Inc.pem b/test/rules/platform_certs/cacert/Cert-078_VeriSign, Inc.pem deleted file mode 100644 index d209ab6f8cbf..000000000000 --- a/test/rules/platform_certs/cacert/Cert-078_VeriSign, Inc.pem +++ /dev/null @@ -1,14 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICPDCCAaUCEDyRMcsf9tAbDpq40ES/Er4wDQYJKoZIhvcNAQEFBQAwXzELMAkG -A1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMTcwNQYDVQQLEy5DbGFz -cyAzIFB1YmxpYyBQcmltYXJ5IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTk2 -MDEyOTAwMDAwMFoXDTI4MDgwMjIzNTk1OVowXzELMAkGA1UEBhMCVVMxFzAVBgNV -BAoTDlZlcmlTaWduLCBJbmMuMTcwNQYDVQQLEy5DbGFzcyAzIFB1YmxpYyBQcmlt -YXJ5IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIGfMA0GCSqGSIb3DQEBAQUAA4GN -ADCBiQKBgQDJXFme8huKARS0EN8EQNvjV69qRUCPhAwL0TPZ2RHP7gJYHyX3KqhE -BarsAx94f56TuZoAqiN91qyFomNFx3InzPRMxnVx0jnvT0Lwdd8KkMaOIG+YD/is -I19wKTakyYbnsZogy1Olhec9vn2a/iRFM9x2Fe0PonFkTGUugWhFpwIDAQABMA0G -CSqGSIb3DQEBBQUAA4GBABByUqkFFBkyCEHwxWsKzH4PIRnN5GfcX6kb5sroc50i -2JhucwNhkcV8sEVAbkSdjbCxlnRhLQ2pRdKkkirWmnWXbj9T/UWZYB2oK0z5XqcJ -2HUw19JlYD1n1khVdWk/kfVIC0dpImmClr7JyDiGSnoscxlIaU5rfGW/D/xwzoiQ ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-079_SwissSign Platinum CA - G2_SwissSign AG.pem b/test/rules/platform_certs/cacert/Cert-079_SwissSign Platinum CA - G2_SwissSign AG.pem deleted file mode 100644 index 0aa3e35778df..000000000000 --- a/test/rules/platform_certs/cacert/Cert-079_SwissSign Platinum CA - G2_SwissSign AG.pem +++ /dev/null @@ -1,33 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFwTCCA6mgAwIBAgIITrIAZwwDXU8wDQYJKoZIhvcNAQEFBQAwSTELMAkGA1UE -BhMCQ0gxFTATBgNVBAoTDFN3aXNzU2lnbiBBRzEjMCEGA1UEAxMaU3dpc3NTaWdu -IFBsYXRpbnVtIENBIC0gRzIwHhcNMDYxMDI1MDgzNjAwWhcNMzYxMDI1MDgzNjAw -WjBJMQswCQYDVQQGEwJDSDEVMBMGA1UEChMMU3dpc3NTaWduIEFHMSMwIQYDVQQD -ExpTd2lzc1NpZ24gUGxhdGludW0gQ0EgLSBHMjCCAiIwDQYJKoZIhvcNAQEBBQAD -ggIPADCCAgoCggIBAMrfogLi2vj8Bxax3mCq3pZcZB/HL37PZ/pEQtZ2Y5Wu669y -IIpFR4ZieIbWIDkm9K6j/SPnpZy1IiEZtzeTIsBQnIJ71NUERFzLtMKfkr4k2Htn -IuJpX+UFeNSH2XFwMyVTtIc7KZAoNppVRDBopIOXfw0enHb/FZ1glwCNioUD7IC+ -6ixuEFGSzH7VozPY1kneWCqv9hbrS3uQMpe5up1Y8fhXSQQeol0GcN1x2/ndi5ob -jM89o03Oy3z2u5yg+gnOI2Ky6Q0f4nIoj5+saCB9bzuohTEJfwvH6GXp43gOCWcw -izSC+13gzJ2BbWLuCB4ELE6b7P6pT1/9aXjvCR+htL/68++QHkwFix7qepF6w9fl -+zC8bBsQWJj3Gl/QKTIDE0ZNYWqFTFJ0LwYfexHihJfGmfNtf9dng34TaNhxKFrY -zt3oEBSa/m0jh26OWnA81Y0JAKeqvLAxN23IhBQeW71FYyBrS3SMvds6DsHPWhaP -pZjydomyExI7C3d3rLvlPClKknLKYRorXkzig3R3+jVIeoVNjZpTxN94ypeRSCtF -KwH3HBqi7Ri6Cr2D+m+8jVeTO9TUps4e8aCxzqv9KyiaTxvXw3LbpMS/XUz13XuW -ae5ogObnmLo2t/5u7Su9IPhlGdpVCX4l3P5hYnL5fhgC72O00Puv5TtjjGePAgMB -AAGjgawwgakwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0O -BBYEFFCvzAeHFUdvOMW0ZdHelarp35zMMB8GA1UdIwQYMBaAFFCvzAeHFUdvOMW0 -ZdHelarp35zMMEYGA1UdIAQ/MD0wOwYJYIV0AVkBAQEBMC4wLAYIKwYBBQUHAgEW -IGh0dHA6Ly9yZXBvc2l0b3J5LnN3aXNzc2lnbi5jb20vMA0GCSqGSIb3DQEBBQUA -A4ICAQAIhab1Fgz8RBrBY+D5VUYI/HAcQiiWjrfFwUF1TglxeeVtlspLpYhg0DB0 -uMoI3LQwnkAHFmtllXcBrqS3NQuB2nEVqXQXOHtYyvkv+8Bldo1bAbl93oI9ZLi+ -FHSjClTTLJUYFzX1UWs/j6KWYTl4a0vlpqD4U99REJNi54Av4tHgvI42Rncz7Lj7 -jposiU0xEQ8mngS7twSNC/K5/FqdOxa3L8iYq/6KUFkuozv8KV2LwUvJ4ooTHbG/ -u0IdUt1O2BReEMYxB+9xJ/cbOQncguqLs5WGXv312l0xpuAxtpTmREl0xRbl9x8D -YSjFyMsSoEJL+WuICI20MhjzdZ/EfwBPBZWcoxcCw7NTm6ogOSkrZvqdr16zktK1 -puEa+S1BaYEUtLS17Yk9zvupnTVCRLEcFHOBzyoBNZox1S2PbYTfgE1X4z/FhHXa -icYwu+uPyyIIoK6q8QNsOktNCaUOcsZWayFCTiMlFGiudgp8DAdwZPmaL/YFOSbG -DI8Zf0NebvRbFS/bYV3mZy8/CJT5YLSYMdp08YSTcU1f+2BY0fvEwW2JorsgH51x -kcsymxM9Pn2SUjWskpSi0xjCfMfqr3YFFt1nJ8J+HAciIfNAChs0B0QTwoRqjt8Z -Wr9/6x3iGjjRXK9HkmuAtTClyY3YqzGBH9/CZjfTk6mFhnll0g== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-080_Japanese Government.pem b/test/rules/platform_certs/cacert/Cert-080_Japanese Government.pem deleted file mode 100644 index c28e86d758ca..000000000000 --- a/test/rules/platform_certs/cacert/Cert-080_Japanese Government.pem +++ /dev/null @@ -1,22 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDoDCCAoigAwIBAgIBMTANBgkqhkiG9w0BAQUFADBDMQswCQYDVQQGEwJKUDEc -MBoGA1UEChMTSmFwYW5lc2UgR292ZXJubWVudDEWMBQGA1UECxMNQXBwbGljYXRp -b25DQTAeFw0wNzEyMTIxNTAwMDBaFw0xNzEyMTIxNTAwMDBaMEMxCzAJBgNVBAYT -AkpQMRwwGgYDVQQKExNKYXBhbmVzZSBHb3Zlcm5tZW50MRYwFAYDVQQLEw1BcHBs -aWNhdGlvbkNBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAp23gdE6H -j6UG3mii24aZS2QNcfAKBZuOquHMLtJqO8F6tJdhjYq+xpqcBrSGUeQ3DnR4fl+K -f5Sk10cI/VBaVuRorChzoHvpfxiSQE8tnfWuREhzNgaeZCw7NCPbXCbkcXmP1G55 -IrmTwcrNwVbtiGrXoDkhBFcsovW8R0FPXjQilbUfKW1eSvNNcr5BViCH/OlQR9cw -FO5cjFW6WY2H/CPek9AEjP3vbb3QesmlOmpyM8ZKDQUXKi17safY1vC+9D/qDiht -QWEjdnjDuGWk81quzMKq2edY3rZ+nYVunyoKb58DKTCXKB28t89UKU5RMfkntigm -/qJj5kEW8DOYRwIDAQABo4GeMIGbMB0GA1UdDgQWBBRUWssmP3HMlEYNllPqa0jQ -k/5CdTAOBgNVHQ8BAf8EBAMCAQYwWQYDVR0RBFIwUKROMEwxCzAJBgNVBAYTAkpQ -MRgwFgYDVQQKDA/ml6XmnKzlm73mlL/lupwxIzAhBgNVBAsMGuOCouODl+ODquOC -seODvOOCt+ODp+ODs0NBMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEFBQAD -ggEBADlqRHZ3ODrso2dGD/mLBqj7apAxzn7s2tGJfHrrLgy9mTLnsCTWw//1sogJ -hyzjVOGjprIIC8CFqMjSnHH2HZ9g/DgzE+Ge3Atf2hZQKXsvcJEPmbo0NI2VdMV+ -eKlmXb3KIXdCEKxmJj3ekav9FfBv7WxfEPjzFvYDio+nEhEMy/0/ecGc/WLuo89U -DNErXxc+4z6/wCs+CZv+iKZ+tJIX/COUgb1up8WMwusRRdv4QcmWdupwX3kSa+Sj -B1oF7ydJzyGfikwJcGapJsErEU4z0g781mzSDjJkaP+tBXhfAx2o45CsJOAPQKdL -rosot4LKGAfmt1t06SAZf7IbiVQ= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-081_OISTE WISeKey Global Root GA CA_WISeKey.pem b/test/rules/platform_certs/cacert/Cert-081_OISTE WISeKey Global Root GA CA_WISeKey.pem deleted file mode 100644 index a695c21bb456..000000000000 --- a/test/rules/platform_certs/cacert/Cert-081_OISTE WISeKey Global Root GA CA_WISeKey.pem +++ /dev/null @@ -1,24 +0,0 @@ ------BEGIN CERTIFICATE----- -MIID8TCCAtmgAwIBAgIQQT1yx/RrH4FDffHSKFTfmjANBgkqhkiG9w0BAQUFADCB -ijELMAkGA1UEBhMCQ0gxEDAOBgNVBAoTB1dJU2VLZXkxGzAZBgNVBAsTEkNvcHly -aWdodCAoYykgMjAwNTEiMCAGA1UECxMZT0lTVEUgRm91bmRhdGlvbiBFbmRvcnNl -ZDEoMCYGA1UEAxMfT0lTVEUgV0lTZUtleSBHbG9iYWwgUm9vdCBHQSBDQTAeFw0w -NTEyMTExNjAzNDRaFw0zNzEyMTExNjA5NTFaMIGKMQswCQYDVQQGEwJDSDEQMA4G -A1UEChMHV0lTZUtleTEbMBkGA1UECxMSQ29weXJpZ2h0IChjKSAyMDA1MSIwIAYD -VQQLExlPSVNURSBGb3VuZGF0aW9uIEVuZG9yc2VkMSgwJgYDVQQDEx9PSVNURSBX -SVNlS2V5IEdsb2JhbCBSb290IEdBIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A -MIIBCgKCAQEAy0+zAJs9Nt350UlqaxBJH+zYK7LG+DKBKUOVTJoZIyEVRd7jyBxR -VVuuk+g3/ytr6dTqvirdqFEr12bDYVxgAsj1znJ7O7jyTmUIms2kahnBAbtzptf2 -w93NvKSLtZlhuAGio9RN1AU9ka34tAhxZK9w8RxrfvbDd50kc3vkDIzh2TbhmYsF -mQvtRTEJysIA2/dyoJaqlYfQjse2YXMNdmaM3Bu0Y6Kff5MTMPGhJ9vZ/yxViJGg -4E8HsChWjBgbl0SOid3gF27nKu+POQoxhILYQBRJLnpB5Kf+42TMwVlxSywhp1t9 -4B3RLoGbw9ho972WG6xwsRYUC9tguSYBBQIDAQABo1EwTzALBgNVHQ8EBAMCAYYw -DwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUswN+rja8sHnR3JQmthG+IbJphpQw -EAYJKwYBBAGCNxUBBAMCAQAwDQYJKoZIhvcNAQEFBQADggEBAEuh/wuHbrP5wUOx -SPMowB0uyQlB+pQAHKSkq0lPjz0e701vvbyk9vImMMkQyh2I+3QZH4VFvbBsUfk2 -ftv1TDI6QU9bR8/oCy22xBmddMVHxjtqD6wU2zz0c5ypBd8A3HR4+vg1YFkCExh8 -vPtNsCBtQ7tgMHpnM1zFmdH4LTlSc/uMqpclXHLZCB6rTjzjgTGfA6b7wP4piFXa -hNVQA7bihKOmNqoROgHhGEvWRGizPflTdISzRpFGlgC3gCy24eMQ4tui5yiPAZZi -Fj4A4xylNoEYokxSdsARo27mHbrjWr42U8U+dY+GaSlYU7Wcu2+fXMUY7N0v4ZjJ -/L7fCg0= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-083_VeriSign Class 3 Public Primary Certification Authority - G3_VeriSign, Inc.pem b/test/rules/platform_certs/cacert/Cert-083_VeriSign Class 3 Public Primary Certification Authority - G3_VeriSign, Inc.pem deleted file mode 100644 index 688036446e40..000000000000 --- a/test/rules/platform_certs/cacert/Cert-083_VeriSign Class 3 Public Primary Certification Authority - G3_VeriSign, Inc.pem +++ /dev/null @@ -1,24 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEGjCCAwICEQCbfgZJoz5iudXukEhxKe9XMA0GCSqGSIb3DQEBBQUAMIHKMQsw -CQYDVQQGEwJVUzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZl -cmlTaWduIFRydXN0IE5ldHdvcmsxOjA4BgNVBAsTMShjKSAxOTk5IFZlcmlTaWdu -LCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxRTBDBgNVBAMTPFZlcmlT -aWduIENsYXNzIDMgUHVibGljIFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3Jp -dHkgLSBHMzAeFw05OTEwMDEwMDAwMDBaFw0zNjA3MTYyMzU5NTlaMIHKMQswCQYD -VQQGEwJVUzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlT -aWduIFRydXN0IE5ldHdvcmsxOjA4BgNVBAsTMShjKSAxOTk5IFZlcmlTaWduLCBJ -bmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxRTBDBgNVBAMTPFZlcmlTaWdu -IENsYXNzIDMgUHVibGljIFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkg -LSBHMzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMu6nFL8eB8aHm8b -N3O9+MlrlBIwT/A2R/XQkQr1F8ilYcEWQE37imGQ5XYgwREGfassbqb1EUGO+i2t -KmFZpGcmTNDovFJbcCAEWNF6yaRpvIMXZK0Fi7zQWM6NjPXr8EJJC52XJ2cybuGu -kxUccLwgTS8Y3pKI6GyFVxEa6X7jJhFUokWWVYPKMIno3Nij7SqAP395ZVc+FSBm -CC+Vk7+qRy+oRpfwEuL+wgorUeZ25rdGt+INpsyow0xZVYnm6FNcHOqd8GIWC6fJ -Xwzw3sJ2zq/3avL6QaaiMxTJ5Xpj055iN9WFZZ4O5lMkdBteHRJTW8cs54NJOxWu -imi5V5cCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEAERSWwauSCPc/L8my/uRan2Te -2yFPhpk0djZX3dAVL8WtfxUfN2JzPtTnX84XA9s1+ivbrmAJXx5fj267Cz3qWhMe -DGBvtcC1IyIuBwvLqXTLR7sdwdela8wv0kL9Sd2nic9TutoAWii/gt/4uhMdUIaC -/Y4wjylGsB49Ndo4YhYYSq3mtlFs3q9i6wHQHiT+eo8SGhJouPtmmRQURVyu565p -F4ErWjfJXir0xuKhXFSbplQAz/DxwceYMBo7Nhbbo27q/a2ywtrvAkcTisDxszGt -TxzhT5yvDwyd93gN2PQ1VoDat20Xj50egWTh/sVFuq1ruQp6Tk9LhO5L8X3dEQ== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-084_e-Guven Kok Elektronik Sertifika Hizmet Saglayicisi_Elektronik Bilgi Guvenligi A.S.pem b/test/rules/platform_certs/cacert/Cert-084_e-Guven Kok Elektronik Sertifika Hizmet Saglayicisi_Elektronik Bilgi Guvenligi A.S.pem deleted file mode 100644 index 4d9767dd72d2..000000000000 --- a/test/rules/platform_certs/cacert/Cert-084_e-Guven Kok Elektronik Sertifika Hizmet Saglayicisi_Elektronik Bilgi Guvenligi A.S.pem +++ /dev/null @@ -1,22 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDtjCCAp6gAwIBAgIQRJmNPMADJ72cdpW56tustTANBgkqhkiG9w0BAQUFADB1 -MQswCQYDVQQGEwJUUjEoMCYGA1UEChMfRWxla3Ryb25payBCaWxnaSBHdXZlbmxp -Z2kgQS5TLjE8MDoGA1UEAxMzZS1HdXZlbiBLb2sgRWxla3Ryb25payBTZXJ0aWZp -a2EgSGl6bWV0IFNhZ2xheWljaXNpMB4XDTA3MDEwNDExMzI0OFoXDTE3MDEwNDEx -MzI0OFowdTELMAkGA1UEBhMCVFIxKDAmBgNVBAoTH0VsZWt0cm9uaWsgQmlsZ2kg -R3V2ZW5saWdpIEEuUy4xPDA6BgNVBAMTM2UtR3V2ZW4gS29rIEVsZWt0cm9uaWsg -U2VydGlmaWthIEhpem1ldCBTYWdsYXlpY2lzaTCCASIwDQYJKoZIhvcNAQEBBQAD -ggEPADCCAQoCggEBAMMSIJ6wXgBljU5Gu4Bc6SwGl9XzcslwuedLZYDBS75+PNdU -MZTe1RK6UxYC6lhj71vY8+0qGqpxSKPcEC1fX+tcS5yWCEIlKBHMilpiAVDV6wlT -L/jDj/6z/P2douNffb7tC+Bg62nsM+3YjfsSSYMAyYuXjDtzKjKzEve5TfL0TW3H -5tYmNwjy2f1rXKPlSFxYvEK+A1qBuhw1DADT9SN+cTAIJjjcJRFHLfO6IxClv7wC -90Nex/6wN1CZew+TzuZDLMN+DfIcQ2Zgy2ExR4ejT669VmxMvLz4Bcpk9Ok0oSy1 -c+HCPujIyTQlCFzz7abHlJ+tiEMl1+E5YP6sOVkCAwEAAaNCMEAwDgYDVR0PAQH/ -BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFJ/uRLOU1fqRTy7ZVZoE -VtstxNulMA0GCSqGSIb3DQEBBQUAA4IBAQB/X7lTW2M9dTLn+sR0GstG30ZpHFLP -qk/CaOv/gKlR6D1id4k9CnU58W5dF4dvaAXBlGzZXd/aslnLpRCKysw5zZ/rTt5S -/wzw9JKp8mxTq5vSR6AfdPebmvEvFZ96ZDAYBzwqD2fK/A+JYZ1lpTzlvBNbCNvj -/+27BrtqBrF6T2XGgv0enIu1De5Iu7i9qgi0+6N8y5/NkHZchpZ4Vwpm+Vganf2X -KWDeEaaQHBkc7gGWIjQ0LpH5t8Qn0Xvmv/uARFoW5evg1Ao4vOSR49XrXMGs3xtq -fJ7lddK2l4fbzIcrQzqECK+rPNv3PGYxhrCdU3nt+CPeQuMtgvEP5fqX ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-085_VeriSign, Inc.pem b/test/rules/platform_certs/cacert/Cert-085_VeriSign, Inc.pem deleted file mode 100644 index c7b612a29a4f..000000000000 --- a/test/rules/platform_certs/cacert/Cert-085_VeriSign, Inc.pem +++ /dev/null @@ -1,19 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDAjCCAmsCEEzH6qqYPnHTkxD4PTqJkZIwDQYJKoZIhvcNAQEFBQAwgcExCzAJ -BgNVBAYTAlVTMRcwFQYDVQQKEw5WZXJpU2lnbiwgSW5jLjE8MDoGA1UECxMzQ2xh -c3MgMSBQdWJsaWMgUHJpbWFyeSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEcy -MTowOAYDVQQLEzEoYykgMTk5OCBWZXJpU2lnbiwgSW5jLiAtIEZvciBhdXRob3Jp -emVkIHVzZSBvbmx5MR8wHQYDVQQLExZWZXJpU2lnbiBUcnVzdCBOZXR3b3JrMB4X -DTk4MDUxODAwMDAwMFoXDTI4MDgwMTIzNTk1OVowgcExCzAJBgNVBAYTAlVTMRcw -FQYDVQQKEw5WZXJpU2lnbiwgSW5jLjE8MDoGA1UECxMzQ2xhc3MgMSBQdWJsaWMg -UHJpbWFyeSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEcyMTowOAYDVQQLEzEo -YykgMTk5OCBWZXJpU2lnbiwgSW5jLiAtIEZvciBhdXRob3JpemVkIHVzZSBvbmx5 -MR8wHQYDVQQLExZWZXJpU2lnbiBUcnVzdCBOZXR3b3JrMIGfMA0GCSqGSIb3DQEB -AQUAA4GNADCBiQKBgQCq0Lq+Fi24g9TK0g+8djHKlNgdk4xWArzZbxpvUjZudVYK -VdPfQ4chEWWKfo+9Id5rMj8bhDSVBZ1BNeuS65bdqlk/AVNtmU/t5eIqWpDBucSm -Fc/IReumXY6cPvBkJHalzasab7bYe1FhbqZ/h8jit+U03EGI6glAvnOSPWvndQID -AQABMA0GCSqGSIb3DQEBBQUAA4GBAKlPww3HZ74sy9mozS11534Vnjty637rXC0J -h9ZrbWB85a7FkCMMXErQr7Fd88e2CtvgFZMN3QO8x3aKtd1Pw5sTdbgBwObJW2ul -uIncrKTdcu1OofdPvAbT6shkdHvClUGcZXNY8ZCaPGqxmMnEh7zPRW1F4m4iP/68 -DzFc6PLZ ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-086_VeriSign, Inc.pem b/test/rules/platform_certs/cacert/Cert-086_VeriSign, Inc.pem deleted file mode 100644 index cd0e805fd55d..000000000000 --- a/test/rules/platform_certs/cacert/Cert-086_VeriSign, Inc.pem +++ /dev/null @@ -1,14 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICPDCCAaUCED9pHoGc8JpK83P/uUii5N0wDQYJKoZIhvcNAQEFBQAwXzELMAkG -A1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMTcwNQYDVQQLEy5DbGFz -cyAxIFB1YmxpYyBQcmltYXJ5IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTk2 -MDEyOTAwMDAwMFoXDTI4MDgwMjIzNTk1OVowXzELMAkGA1UEBhMCVVMxFzAVBgNV -BAoTDlZlcmlTaWduLCBJbmMuMTcwNQYDVQQLEy5DbGFzcyAxIFB1YmxpYyBQcmlt -YXJ5IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIGfMA0GCSqGSIb3DQEBAQUAA4GN -ADCBiQKBgQDlGb9to1ZhLZlIcfZn3rmN67eehoAKkQ76OCWvRoiC5XOooJskXQ0f -zGVuDLDQVoQYh5oGmxChc9+0WDlrbsH2FdWoqD+qEgaNMax/sDTXjzRniAnNFBHi -TkVWaR94AoDa3EeRKbs2yWNcxeDXLYd7obcysHswuiovMaruo2fa2wIDAQABMA0G -CSqGSIb3DQEBBQUAA4GBAFgVKTk8d6PaXCUDfGD67gmZPCcQcMgMCeazh88K4hiW -NWLMv5sneYlfycQJ9M61Hd8qveXbhpxoJeUwfLaJFf5n0a3hUKw8fGJLj7qE1xIV -Gx/KXQ/BUpQqEZnae88MNhPVNdwQGVnqlMEAv3WP2fr9dgTbYruQagPZRjXZ+Hxb ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-087_AffirmTrust Premium_AffirmTrust.pem b/test/rules/platform_certs/cacert/Cert-087_AffirmTrust Premium_AffirmTrust.pem deleted file mode 100644 index 516ecf55ab5e..000000000000 --- a/test/rules/platform_certs/cacert/Cert-087_AffirmTrust Premium_AffirmTrust.pem +++ /dev/null @@ -1,31 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFRjCCAy6gAwIBAgIIbYwURrGmCu4wDQYJKoZIhvcNAQEMBQAwQTELMAkGA1UE -BhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MRwwGgYDVQQDDBNBZmZpcm1UcnVz -dCBQcmVtaXVtMB4XDTEwMDEyOTE0MTAzNloXDTQwMTIzMTE0MTAzNlowQTELMAkG -A1UEBhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MRwwGgYDVQQDDBNBZmZpcm1U -cnVzdCBQcmVtaXVtMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAxBLf -qV/+Qd3d9Z+K4/as4Tx4mrzY8H96oDMq3I0gW64tb+eT2TZwamjPjlGjhVtnBKAQ -JG9dKILBl1fYSCkTtuG+kU3fhQxTGJoeJKJPj/CihQvL9Cl/0qRY7iZNyaqoe5rZ -+jjeRFcV5fiMyNlI4g0WJx0eyIOFJbe6qlVBzAMiSy2RjYvmia9mx+n/K+k8rNrS -s8PhaJyJ+HoAVt70VZVs+7pk3WKL3wt3MutizCaam7uqYoNMtAZ6MMgpv+0GTZe5 -HMQxK9VfvFMSF5yZVylmd2EhMQcuJUmdGPLu8ytxjLW6OQdJd/zvLpKQBY0tL3d7 -70O/Nbua2Plzpyzy0FfuKE4mX4+QaAkvuPjcBukumj5Rp9EixAqnOEhss/n/fauG -V+O61oV4d7pD6kh/9ti+I20ev9E2bFhc8e6kGVQa9QPSdubhjL08s9NIS+LI+H+S -qHZGnEJlPqQewQcDWkYtuJfzt9WyVSHvutxMAJf7FJUnM7/oQ0dG0giZFmA7mn7S -5u046uwBHjxIVkkJx0w3AJ6IDsBz4W9m6XJHMD4Q5QsDyZpCAGzFlH5hxIrff4Ia -C1nEWTJ3s7xgaVY5/bQGeyzWZDbZvUjthB9+pSKPKrhC9IK31FOQeE4tGv2Bb0TX -OwF0lkLgAOIua+rF7nKsu7/+6qqo+Nz2snmKtmcCAwEAAaNCMEAwHQYDVR0OBBYE -FJ3AZ6YMItkm9UWrpmVSESfYRaxjMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/ -BAQDAgEGMA0GCSqGSIb3DQEBDAUAA4ICAQCzV00QYk465KzquByvMiPIs0laUZx2 -KI15qldGF9X1Uva3ROgIRL8YhNILgM3FEv0AVQVhh0HctSSePMTYyPtwni94loMg -Nt58D2kTiKV1NpgIpsbfrM7jWNa3Pt668+s0QNiigfV4Py/VpfzZotReBA4Xrf5B -8OWycvpEgjNC6C1Y91aMYj+6QrCcDFx+LmUmXFNPALJ4fqENmS2NuB2OosSw/WDQ -MKSOyARiqcTtNd56l+0OOF6SL5Nwpamcb6d9Ex1+xghIsV5n61EIJenmJWtSKZGc -0jlzCFfemQa0W50QBuHCAKi4HEoCChTQwUHK+4w1IX2COPKpVJEZNZOUbWo6xbLQ -u4mGk+ibyQ86p3q4ofB4Rvr8Ny/lioTz3/4E2aFooC8k4gmVBtWVyuEklut89pMF -u+1z6S3RdTnX5yTb2E5fQ4+e0BQ5v1VwSJlXMbSc7kqYA5YwH2AG7hsj/oFgIxpH -YoWlzBk0gG+zrBrjn/B7SK3VAdlntqlyk+otZrWyuOQ9PLLvTIzq6we/qzWaVYa8 -GKa1qF60g2xraUDTn9zxw2lrueFtCfTxqlB2Cnp9ehehVZZCmTEJ3WARjQUwfuaO -RtGdFNrHF+QFlozEJLUbzxQHskD4o55BhrwE0GuWyCqANP2/7waj3VjFhT0+j/6e -KeC2uAloGRwYQw== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-088_Trusted Certificate Services_Comodo CA Limited.pem b/test/rules/platform_certs/cacert/Cert-088_Trusted Certificate Services_Comodo CA Limited.pem deleted file mode 100644 index 72cbf561098d..000000000000 --- a/test/rules/platform_certs/cacert/Cert-088_Trusted Certificate Services_Comodo CA Limited.pem +++ /dev/null @@ -1,25 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEQzCCAyugAwIBAgIBATANBgkqhkiG9w0BAQUFADB/MQswCQYDVQQGEwJHQjEb -MBkGA1UECAwSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHDAdTYWxmb3JkMRow -GAYDVQQKDBFDb21vZG8gQ0EgTGltaXRlZDElMCMGA1UEAwwcVHJ1c3RlZCBDZXJ0 -aWZpY2F0ZSBTZXJ2aWNlczAeFw0wNDAxMDEwMDAwMDBaFw0yODEyMzEyMzU5NTla -MH8xCzAJBgNVBAYTAkdCMRswGQYDVQQIDBJHcmVhdGVyIE1hbmNoZXN0ZXIxEDAO -BgNVBAcMB1NhbGZvcmQxGjAYBgNVBAoMEUNvbW9kbyBDQSBMaW1pdGVkMSUwIwYD -VQQDDBxUcnVzdGVkIENlcnRpZmljYXRlIFNlcnZpY2VzMIIBIjANBgkqhkiG9w0B -AQEFAAOCAQ8AMIIBCgKCAQEA33FvNlhTWvI2VFeAxHQIIO0Yfyod5jWaHiWsnOWW -fnJSoBVC21ndZHoa0Lh73TkVvFVIxO06AOoxEbrycXQaZ7jPM8yoMa+j49d/vzMt -TGo87IvDktJTdyR0nAducPy9C1t2ul/y/9c3S0pgePfw+spwtOpZqqPOSC+pw7IL -fhdyFgymBwwbOM/JYrc/oJOlh0Hyt3BAd9i+FHzjqMB6juljatEPmsbS9Is6FARW -1O24zG71++IsWL1/T2sr92AkWCTOJu80kTrV44HQsvAEAtdbtz6SrGsSivnkBbA7 -kUlcsutT6vifR4buv5XAwAaf0lteERv0xwQ1KdJVXOTt6wIDAQABo4HJMIHGMB0G -A1UdDgQWBBTFe1i97doladL3WRaoszLAeydb9DAOBgNVHQ8BAf8EBAMCAQYwDwYD -VR0TAQH/BAUwAwEB/zCBgwYDVR0fBHwwejA8oDqgOIY2aHR0cDovL2NybC5jb21v -ZG9jYS5jb20vVHJ1c3RlZENlcnRpZmljYXRlU2VydmljZXMuY3JsMDqgOKA2hjRo -dHRwOi8vY3JsLmNvbW9kby5uZXQvVHJ1c3RlZENlcnRpZmljYXRlU2VydmljZXMu -Y3JsMA0GCSqGSIb3DQEBBQUAA4IBAQDIk4E7ibSvuIQSTI3S8NtwuleGFTQQuS9/ -HrCoiWChisJ3DFBKmwCL2Iv0QeLQg4pKHBQGsKNoBXAxMKdTmw7pSqBYaWcOrp32 -pSxBvzwGa+RZzG0Q8ZZvH9/0BAKkn0U+yNj6NkZEUD+Cl5EfKNsYEYwq5GWDVxIS -jBc/lDb+XbDABHcTuPQV1T84zJQ6VdCsmPW6AF/ghhmBeC8owH7TzEIK9a5QoNE+ -xqFx7D+gIIxmOom0jtTYsU0lR+4viMi14QVFwL4Ucd56/Y57fU0IlqUSc/Atyjcn -dBInTMu2l+nZrghtWjlA3QVHdWpaIbOjGM9O9y5Xt5hwXsjEeLBi ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-089_DST ACES CA X6_Digital Signature Trust.pem b/test/rules/platform_certs/cacert/Cert-089_DST ACES CA X6_Digital Signature Trust.pem deleted file mode 100644 index 13a7df492a81..000000000000 --- a/test/rules/platform_certs/cacert/Cert-089_DST ACES CA X6_Digital Signature Trust.pem +++ /dev/null @@ -1,24 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIECTCCAvGgAwIBAgIQDV6ZCtadt3js2AdWO4YV2TANBgkqhkiG9w0BAQUFADBb -MQswCQYDVQQGEwJVUzEgMB4GA1UEChMXRGlnaXRhbCBTaWduYXR1cmUgVHJ1c3Qx -ETAPBgNVBAsTCERTVCBBQ0VTMRcwFQYDVQQDEw5EU1QgQUNFUyBDQSBYNjAeFw0w -MzExMjAyMTE5NThaFw0xNzExMjAyMTE5NThaMFsxCzAJBgNVBAYTAlVTMSAwHgYD -VQQKExdEaWdpdGFsIFNpZ25hdHVyZSBUcnVzdDERMA8GA1UECxMIRFNUIEFDRVMx -FzAVBgNVBAMTDkRTVCBBQ0VTIENBIFg2MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A -MIIBCgKCAQEAuT31LMmU3HWKlV1j6IR3dma5WZFcRt2SPp/5DgO0PWGSvSMmtWPu -ktKe1jzIDZBfZIGxqAgNTNj50wUoUrQBJcWVHAx+PhCEdc/BGZFjz+iokYi5Q1K7 -gLFViYsx+tC3dr5BPTCapCIlF3PoHuLTrCq9Wzgh1SpL11V94zpVvddtawJXa+ZH -fAjIgrrep4c9oW24MFbCswKBXy314powGCi4ZtPLAZZv6opFVdbgnf9nKxcCpk4a -ahELfrd755jWjHZvwTvbUJN+5dCOHze4vbrGn2zpfDPyMjwmR/onJALJfh1biEIT -ajV8fTXpLmaRcpPVMibEdPVTo7NdmvYJywIDAQABo4HIMIHFMA8GA1UdEwEB/wQF -MAMBAf8wDgYDVR0PAQH/BAQDAgHGMB8GA1UdEQQYMBaBFHBraS1vcHNAdHJ1c3Rk -c3QuY29tMGIGA1UdIARbMFkwVwYKYIZIAWUDAgEBATBJMEcGCCsGAQUFBwIBFjto -dHRwOi8vd3d3LnRydXN0ZHN0LmNvbS9jZXJ0aWZpY2F0ZXMvcG9saWN5L0FDRVMt -aW5kZXguaHRtbDAdBgNVHQ4EFgQUCXIGThhDD+XWzMNqizF7eI+og7gwDQYJKoZI -hvcNAQEFBQADggEBAKPYjtay284F5zLNAdMEA+V25FYrnJmQ6AgwbN99Pe7lv7Uk -QIRJ4dEorsTCOlMwiPH1d25Ryvr/ma8kXxug/fKshMrfqfBfBC6tFr8hlxCBPeP/ -h40y3JTlR4peahPJlJU90u7INJXQgNStMgiAVDzgvVJT11J8smk/f3rPanTK+gQq -nExaBqXpIK1FZg9p8d2/6eMyi/rgwYZNcjwu2JN4Cir42NInPRmJX1p7ijvMDNpR -rscL9yuwNwXsvFcj4jjSm2jzVhKIT0J8uDHEtdvkyCE06UgRNe76x5JXxZ805Mf2 -9w4LTJxoeHtxMcfrHuBnQfO3oKfN5XozNmr6mis= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-090_Chunghwa Telecom Co., Ltd.pem b/test/rules/platform_certs/cacert/Cert-090_Chunghwa Telecom Co., Ltd.pem deleted file mode 100644 index 4b5425697dc6..000000000000 --- a/test/rules/platform_certs/cacert/Cert-090_Chunghwa Telecom Co., Ltd.pem +++ /dev/null @@ -1,33 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFsDCCA5igAwIBAgIQFci9ZUdcr7iXAF7kBtK8nTANBgkqhkiG9w0BAQUFADBe -MQswCQYDVQQGEwJUVzEjMCEGA1UECgwaQ2h1bmdod2EgVGVsZWNvbSBDby4sIEx0 -ZC4xKjAoBgNVBAsMIWVQS0kgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAe -Fw0wNDEyMjAwMjMxMjdaFw0zNDEyMjAwMjMxMjdaMF4xCzAJBgNVBAYTAlRXMSMw -IQYDVQQKDBpDaHVuZ2h3YSBUZWxlY29tIENvLiwgTHRkLjEqMCgGA1UECwwhZVBL -SSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIICIjANBgkqhkiG9w0BAQEF -AAOCAg8AMIICCgKCAgEA4SUP7o3biDN1Z82tH306Tm2d0y8U82N0ywEhajfqhFAH -SyZbCUNsIZ5qyNUD9WBpj8zwIuQf5/dqIjG3LBXy4P4AakP/h2XGtRrBp0xtInAh -ijHyl3SJCRImHJ7K2RKilTza6We/CKBk49ZCt0Xvl/T29de1ShUCWH2YWEtgvM3X -DZoTM1PRYfl61dd4s5oz9wCGzh1NlDivqOx4UXCKXBCDUSH3ET00hl7lSM2XgYI1 -TBnsZfZrxQWh7kcT1rMhJ5QQCtkkO7q+RBNGMD+XPNjX12ruOzjjK9SXDrkb5wdJ -fzcq+Xd4z1TtW0ado4AOkUPB1ltfFLqfpo0kR0BZv3I4sjZsN/+Z0V0OWQqraffA -sgRFelQArr5T9rXn4fg8ozHSqf4hUmTFpmfwdQcGlBSBVcYn5AGPF8Fqcde+S/uU -WH1+ETOxQvdibBjWzwloPn9s9h6PYq2lY9sJpx8iQkEeb5mKPtf5P0B6ebClAZLS -nT0IFaUQAS2zMnaolQ2zepr7BxB4EW/hj8e6DyUadCrlHJhBmd8hh+iVBmoKs2pH -dmX2Os+PYhcZewoozRrSgx4hxyy/vv9haLdnG7t4TY3OZ+XkwY63I2binZB1NJip -NiuKmpS5nezMirH4JYlcWrYvjB9teSSnUmjDhDXiZo1jDiVN1Rmy5nk3pyKdVDEC -AwEAAaNqMGgwHQYDVR0OBBYEFB4M97Zn8uGSJglFwFU5Lnc/QkqiMAwGA1UdEwQF -MAMBAf8wOQYEZyoHAAQxMC8wLQIBADAJBgUrDgMCGgUAMAcGBWcqAwAABBRFsMLH -ClZ87lt4DJX5GFPBphzYEDANBgkqhkiG9w0BAQUFAAOCAgEACbODU1kBPpVJufGB -uvl2ICO1J2B01GqZNF5sAFPZn/KmsSQHRGoqxqWOeBLoR9lYGxMqXnmbnwoqZ6Yl -PwZpVnPDimZI+ymBV3QGypzqKOg4ZyYr8dW1P2WT+DZdjo2NQCCHGervJ8A9tDkP -JXtoUHRVnAxZfVo9QZQlUgjgRywVMRnVvwdVxrsStZf0X4OFunHB2WyBEXYKCrC/ -gpf36j36+uwtqSiUO1bd0lEursC9CBWMd1I0ltabrNMdjmEPNXubrjlpC2JgQCA2 -j6/7Nu4tCEoduL+bXPjqpRugc6bY+G7gMwRfaKonh+3ZwZCc7b3jajWvY9+rGNm6 -5ulK6lCKD2GTHuItGeIwlDWSXQ62B68ZgI9HkFFLLk3dheLSClIKF5r8GrBQAuUB -o2M3IUxExJtRmREOc5wGj1QupyheRDmHVi03vYVElOEMSyycw5KFNGHLD7ibSkNS -/jQ6fbjpKdx2qcgw+BRxgMYeNkh0IkFch4LoGHGLQYlE535YW6i4jRPpp2zDR+2z -Gp1iro2C6pSe3VkQw63d4k3jMdXH7OjysP6SHhYKGvzZ8/gntsm+HbRsZJB/9OTE -W9c3rkIO3aQab3yIVMUWbuF6aC74Or8NpDyJO3inTmODBCEIZ43ygknQW/2xzQ+D -hNQ+IIX3Sj0rnP0qCglN6oH4EZw= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-091_Cybertrust Global Root_Cybertrust, Inc.pem b/test/rules/platform_certs/cacert/Cert-091_Cybertrust Global Root_Cybertrust, Inc.pem deleted file mode 100644 index edbeb27e7133..000000000000 --- a/test/rules/platform_certs/cacert/Cert-091_Cybertrust Global Root_Cybertrust, Inc.pem +++ /dev/null @@ -1,22 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDoTCCAomgAwIBAgILBAAAAAABD4WqLUgwDQYJKoZIhvcNAQEFBQAwOzEYMBYG -A1UEChMPQ3liZXJ0cnVzdCwgSW5jMR8wHQYDVQQDExZDeWJlcnRydXN0IEdsb2Jh -bCBSb290MB4XDTA2MTIxNTA4MDAwMFoXDTIxMTIxNTA4MDAwMFowOzEYMBYGA1UE -ChMPQ3liZXJ0cnVzdCwgSW5jMR8wHQYDVQQDExZDeWJlcnRydXN0IEdsb2JhbCBS -b290MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA+Mi8vRRQZhP/8NN5 -7CPytxrHjoXxEnOmGaoQ25yiZXRadz5RfVb23CO21O1fWLE3TdVJDm71aofW0ozS -J8bi/zafmGWgE07GKmSb1ZASzxQG9Dvj1Ci+6A74q05IlG2OlTEQXO2iLb3VOm2y -HLtgwEZLAfVJrn5GitB0jaEMAs7u/OePuGtm839EAL9mJRQr3RAwHQeWP032a7iP -t3sMpTjr3kfb1V05/Iin89cqdPHoWqI7n1C6poxFNcJQZZXcY4Lv3b93TZxiyWNz -FtApD0mpSPCzqrdsxacwOUBdrsTiXSZT8M4cIwhhqJQZugRiQOwfOHB3EgZxpzAY -XSUnpQIDAQABo4GlMIGiMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/ -MB0GA1UdDgQWBBS2CHsNesysIEyGVjJez6tuhS1wVzA/BgNVHR8EODA2MDSgMqAw -hi5odHRwOi8vd3d3Mi5wdWJsaWMtdHJ1c3QuY29tL2NybC9jdC9jdHJvb3QuY3Js -MB8GA1UdIwQYMBaAFLYIew16zKwgTIZWMl7Pq26FLXBXMA0GCSqGSIb3DQEBBQUA -A4IBAQBW7wojoFROlZfJ+InaRcHUowAl9B8Tq7ejhVhpwjCt2BWKLePJzYFa+HMj -Wqd8BfP9IjsO0QbE2zZMcwSO5bAi5MXzLqXZI+O4Tkogp24CJJ8iYGd7ix1yCcUx -XOl5n4BHPa2hCwcUPUf/A2kaDAtE52Mlp3+yybh2hO0j9n0Hq0V+09+zv+mKts2o -omcrUtW3ZfA5TGOgkXmTUg9U3YO7n9GPp1Nzw8v/MOx8BLjYRB+TX3EJIrduPuoc -A06dGiBh+4E37F78CkWr1+cXVdCg6mCbpvbjjFspwgZgFJ0tl0ypkxWdYcQBX0jW -WL1WMRJOEcgh4LMRkWXbtKaIOM5V ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-092_Equifax Secure eBusiness CA-1_Equifax Secure Inc.pem b/test/rules/platform_certs/cacert/Cert-092_Equifax Secure eBusiness CA-1_Equifax Secure Inc.pem deleted file mode 100644 index 768a9eb97058..000000000000 --- a/test/rules/platform_certs/cacert/Cert-092_Equifax Secure eBusiness CA-1_Equifax Secure Inc.pem +++ /dev/null @@ -1,16 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICgjCCAeugAwIBAgIBBDANBgkqhkiG9w0BAQQFADBTMQswCQYDVQQGEwJVUzEc -MBoGA1UEChMTRXF1aWZheCBTZWN1cmUgSW5jLjEmMCQGA1UEAxMdRXF1aWZheCBT -ZWN1cmUgZUJ1c2luZXNzIENBLTEwHhcNOTkwNjIxMDQwMDAwWhcNMjAwNjIxMDQw -MDAwWjBTMQswCQYDVQQGEwJVUzEcMBoGA1UEChMTRXF1aWZheCBTZWN1cmUgSW5j -LjEmMCQGA1UEAxMdRXF1aWZheCBTZWN1cmUgZUJ1c2luZXNzIENBLTEwgZ8wDQYJ -KoZIhvcNAQEBBQADgY0AMIGJAoGBAM4vGbwXt3fek6lfWg0XTzQaDJj0ItlZ1MRo -RvC0NcWFAyDGr0WlIVFFQesWWDYyb+JQYmT5/VGcqiTZ9J2DKocKIdMSODRsjQBu -WqDZQu4aIZX5UkxVWsUPOE9G+m34LjXWHXzr4vCwdYDIqROsvojvOm6rXyo4YgKw -Env+j6YDAgMBAAGjZjBkMBEGCWCGSAGG+EIBAQQEAwIABzAPBgNVHRMBAf8EBTAD -AQH/MB8GA1UdIwQYMBaAFEp4MlIR21kWNl7fwRQ2QGpHfEyhMB0GA1UdDgQWBBRK -eDJSEdtZFjZe38EUNkBqR3xMoTANBgkqhkiG9w0BAQQFAAOBgQB1W6ibAxHm6VZM -zfmpTMANmvPMZWnmJXbMWbfWVMMdzZmsGd20hdXgPfxiIKeES1hl8eL5lSE/9dR+ -WB5Hh1Q+WKG1tfgq73HnvMP2sUlG4tega+VWeponmHxGYhTnyfxuAxJ5gDgdSIKN -/Bf+KpYrtWKmpj29f5JZzVoqgrI3eQ== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-093_Chambers of Commerce Root_AC Camerfirma SA CIF A82743287.pem b/test/rules/platform_certs/cacert/Cert-093_Chambers of Commerce Root_AC Camerfirma SA CIF A82743287.pem deleted file mode 100644 index b3962515f674..000000000000 --- a/test/rules/platform_certs/cacert/Cert-093_Chambers of Commerce Root_AC Camerfirma SA CIF A82743287.pem +++ /dev/null @@ -1,28 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEvTCCA6WgAwIBAgIBADANBgkqhkiG9w0BAQUFADB/MQswCQYDVQQGEwJFVTEn -MCUGA1UEChMeQUMgQ2FtZXJmaXJtYSBTQSBDSUYgQTgyNzQzMjg3MSMwIQYDVQQL -ExpodHRwOi8vd3d3LmNoYW1iZXJzaWduLm9yZzEiMCAGA1UEAxMZQ2hhbWJlcnMg -b2YgQ29tbWVyY2UgUm9vdDAeFw0wMzA5MzAxNjEzNDNaFw0zNzA5MzAxNjEzNDRa -MH8xCzAJBgNVBAYTAkVVMScwJQYDVQQKEx5BQyBDYW1lcmZpcm1hIFNBIENJRiBB -ODI3NDMyODcxIzAhBgNVBAsTGmh0dHA6Ly93d3cuY2hhbWJlcnNpZ24ub3JnMSIw -IAYDVQQDExlDaGFtYmVycyBvZiBDb21tZXJjZSBSb290MIIBIDANBgkqhkiG9w0B -AQEFAAOCAQ0AMIIBCAKCAQEAtzZV5aVdGDDg2olUkfzIx1L4L1DZ77F1c2VHfRtb -unXF/KGIJPov7coISjlUxFF6tdpg6jg8gbLL8bvZkSM/SAFwdakFKq0fcfPJVD0d -BmpAPrMMhe5cG3nCYsS4No41XQEMIwRHNaqbYE6gZj3LJgqcQKH0XZi/caulAGgq -7YN6D6IUtdQis4CwPAxaUWktWBiP7Zme8a7ileb2R6jWDA+wWFjbw2Y3npuRVDM3 -0pQcakjJyfKl2qUMI/cjDpwyVV5xnIQFUZot/eZOKjRa3spAN2cMVCFVd9oKDMyX -roDclDZK9D7ONhMeU+SsTjoF7Nuucpw4i9A5O4kKPnf+dQIBA6OCAUQwggFAMBIG -A1UdEwEB/wQIMAYBAf8CAQwwPAYDVR0fBDUwMzAxoC+gLYYraHR0cDovL2NybC5j -aGFtYmVyc2lnbi5vcmcvY2hhbWJlcnNyb290LmNybDAdBgNVHQ4EFgQU45T1sU3p -26EpW1eLTXYGduHRooowDgYDVR0PAQH/BAQDAgEGMBEGCWCGSAGG+EIBAQQEAwIA -BzAnBgNVHREEIDAegRxjaGFtYmVyc3Jvb3RAY2hhbWJlcnNpZ24ub3JnMCcGA1Ud -EgQgMB6BHGNoYW1iZXJzcm9vdEBjaGFtYmVyc2lnbi5vcmcwWAYDVR0gBFEwTzBN -BgsrBgEEAYGHLgoDATA+MDwGCCsGAQUFBwIBFjBodHRwOi8vY3BzLmNoYW1iZXJz -aWduLm9yZy9jcHMvY2hhbWJlcnNyb290Lmh0bWwwDQYJKoZIhvcNAQEFBQADggEB -AAxBl8IahsAifJ/7kPMa0QOx7xP5IV8EnNrJpY0nbJaHkb5BkAFyk+cefV/2icZd -p0AJPaxJRUXcLo0waLIJuvvDL8y6C98/d3tGfToSJI6WjzwFCm/SlCgdbQzALogi -1djPHRPH8EjX1wWnz8dHnjs8NMiAT9QUu/wNUPf6s+xCX6ndbcj0dc97wXImsQEc -XCz9ek60AcUFV7nnPKoF2YjpB0ZBzu9Bga5Y34OirsrXdx/nADydb47kMgkdTXg0 -eDQ8lJsm7U9xxhl6vSAiSFr+S30Dt+dYvsYyTnQeaN2oaFuzPu5ifdmA6Ap1erfu -tGWaIZDgqtCYvDi1czyL+Nw= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-094_VeriSign, Inc.pem b/test/rules/platform_certs/cacert/Cert-094_VeriSign, Inc.pem deleted file mode 100644 index 2202c69287f7..000000000000 --- a/test/rules/platform_certs/cacert/Cert-094_VeriSign, Inc.pem +++ /dev/null @@ -1,19 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDAjCCAmsCEH3Z/gfPqB63EHln+6eJNMYwDQYJKoZIhvcNAQEFBQAwgcExCzAJ -BgNVBAYTAlVTMRcwFQYDVQQKEw5WZXJpU2lnbiwgSW5jLjE8MDoGA1UECxMzQ2xh -c3MgMyBQdWJsaWMgUHJpbWFyeSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEcy -MTowOAYDVQQLEzEoYykgMTk5OCBWZXJpU2lnbiwgSW5jLiAtIEZvciBhdXRob3Jp -emVkIHVzZSBvbmx5MR8wHQYDVQQLExZWZXJpU2lnbiBUcnVzdCBOZXR3b3JrMB4X -DTk4MDUxODAwMDAwMFoXDTI4MDgwMTIzNTk1OVowgcExCzAJBgNVBAYTAlVTMRcw -FQYDVQQKEw5WZXJpU2lnbiwgSW5jLjE8MDoGA1UECxMzQ2xhc3MgMyBQdWJsaWMg -UHJpbWFyeSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEcyMTowOAYDVQQLEzEo -YykgMTk5OCBWZXJpU2lnbiwgSW5jLiAtIEZvciBhdXRob3JpemVkIHVzZSBvbmx5 -MR8wHQYDVQQLExZWZXJpU2lnbiBUcnVzdCBOZXR3b3JrMIGfMA0GCSqGSIb3DQEB -AQUAA4GNADCBiQKBgQDMXtERXVxp0KvTuWpMmR9ZmDCOFoUgRm1HP9SFIIThbbP4 -pO0M8RcPO/mn+SXXwc+EY/J8Y8+iR/LGWzOOZEAEaMGAuWQcRXfH2G71lSk8UOg0 -13gfqLptQ5GVj0VXXn7F+8qkBOvqlzdUMG+7AUcyM83cV5tkaWH4mx0ciU9cZwID -AQABMA0GCSqGSIb3DQEBBQUAA4GBAFFNzb5cy5gZnBWyATl4Lk0PZ3BwmcYQWpSk -U01UbSuvDV1Ai2TT1+7eVmGSX6bEHRBhNtMsJzzoKQm5EWR0zLVznxxIqbxhAe7i -F6YM40AIOw7n60RzKprxaZLvcRTDOaxxp5EJb+RxBrO6WVcmeQD2+A2iMzAo1KpY -oJ2daZH9 ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-095_Starfield Services Root Certificate Authority - G2_Starfield Technologies, Inc.pem b/test/rules/platform_certs/cacert/Cert-095_Starfield Services Root Certificate Authority - G2_Starfield Technologies, Inc.pem deleted file mode 100644 index f7519150cdd7..000000000000 --- a/test/rules/platform_certs/cacert/Cert-095_Starfield Services Root Certificate Authority - G2_Starfield Technologies, Inc.pem +++ /dev/null @@ -1,24 +0,0 @@ ------BEGIN CERTIFICATE----- -MIID7zCCAtegAwIBAgIBADANBgkqhkiG9w0BAQsFADCBmDELMAkGA1UEBhMCVVMx -EDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoT -HFN0YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xOzA5BgNVBAMTMlN0YXJmaWVs -ZCBTZXJ2aWNlcyBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTA5 -MDkwMTAwMDAwMFoXDTM3MTIzMTIzNTk1OVowgZgxCzAJBgNVBAYTAlVTMRAwDgYD -VQQIEwdBcml6b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMSUwIwYDVQQKExxTdGFy -ZmllbGQgVGVjaG5vbG9naWVzLCBJbmMuMTswOQYDVQQDEzJTdGFyZmllbGQgU2Vy -dmljZXMgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgLSBHMjCCASIwDQYJKoZI -hvcNAQEBBQADggEPADCCAQoCggEBANUMOsQq+U7i9b4Zl1+OiFOxHz/Lz58gE20p -OsgPfTz3a3Y4Y9k2YKibXlwAgLIvWX/2h/klQ4bnaRtSmpDhcePYLQ1Ob/bISdm2 -8xpWriu2dBTrz/sm4xq6HZYuajtYlIlHVv8loJNwU4PahHQUw2eeBGg6345AWh1K -Ts9DkTvnVtYAcMtS7nt9rjrnvDH5RfbCYM8TWQIrgMw0R9+53pBlbQLPLJGmpufe -hRhJfGZOozptqbXuNC66DQO4M99H67FrjSXZm86B0UVGMpZwh94CDklDhbZsc7tk -6mFBrMnUVN+HL8cisibMn1lUaJ/8viovxFUcdUBgF4UCVTmLfwUCAwEAAaNCMEAw -DwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFJxfAN+q -AdcwKziIorhtSpzyEZGDMA0GCSqGSIb3DQEBCwUAA4IBAQBLNqaEd2ndOxmfZyMI -bw5hyf2E3F/YNoHN2BtBLZ9g3ccaaNnRbobhiCPPE95Dz+I0swSdHynVv/heyNXB -ve6SbzJ08pGCL72CQnqtKrcgfU28elUSwhXqvfdqlS5sdJ/PHLTyxQGjhdByPq1z -qwubdQxtRbeOlKyWN7Wg0I8VRw7j6IPdj/3vQQF3zCepYoUz8jcI73HPdwbeyBkd -iEDPfUYd/x7H4c7/I9vG+o1VTqkC50cRRj70/b17KSa7qWFiNyi2LSr2EIZkyXCn -0q23KXB56jzaYyWf/Wi3MOxw+3WKt21gZ7IeyLnp2KhvAotnDU0mV3HaIPzBSlCN -sSi6 ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-096_GeoTrust Primary Certification Authority - G2_GeoTrust Inc.pem b/test/rules/platform_certs/cacert/Cert-096_GeoTrust Primary Certification Authority - G2_GeoTrust Inc.pem deleted file mode 100644 index f9364c087ff7..000000000000 --- a/test/rules/platform_certs/cacert/Cert-096_GeoTrust Primary Certification Authority - G2_GeoTrust Inc.pem +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrjCCAjWgAwIBAgIQPLL0SAoA4v7rJDteYD7DazAKBggqhkjOPQQDAzCBmDEL -MAkGA1UEBhMCVVMxFjAUBgNVBAoTDUdlb1RydXN0IEluYy4xOTA3BgNVBAsTMChj -KSAyMDA3IEdlb1RydXN0IEluYy4gLSBGb3IgYXV0aG9yaXplZCB1c2Ugb25seTE2 -MDQGA1UEAxMtR2VvVHJ1c3QgUHJpbWFyeSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0 -eSAtIEcyMB4XDTA3MTEwNTAwMDAwMFoXDTM4MDExODIzNTk1OVowgZgxCzAJBgNV -BAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMTkwNwYDVQQLEzAoYykgMjAw -NyBHZW9UcnVzdCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxNjA0BgNV -BAMTLUdlb1RydXN0IFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgLSBH -MjB2MBAGByqGSM49AgEGBSuBBAAiA2IABBWx6P0DFUPlrOuHNxFi79KDNlJ9RVcL -So17VDs6bl8VAsBQps8lL33KSLjHUGMcKiEIfJo22Av+0SbFWDEwKCXzXV2juLal -tJLtbCyf691DiaI8S0iRHVDsJt/WYC69IaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAO -BgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFBVfNVdRVfslsq0DafwBo/q+EVXVMAoG -CCqGSM49BAMDA2cAMGQCMGSWWaboCd6LuvpaiIjwH5HTRqjySkwCY/tsXzjbLkGT -qQ7mndwxHLKgpxgceeHHNgIwOlavmnRs9vuD4DPTCF+hnMJbn0bWtsuRBmOiBucz -rD6ogRLQy7rQkgu2npaqBA+K ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-098_thawte Primary Root CA_thawte, Inc.pem b/test/rules/platform_certs/cacert/Cert-098_thawte Primary Root CA_thawte, Inc.pem deleted file mode 100644 index 998460f1c2d9..000000000000 --- a/test/rules/platform_certs/cacert/Cert-098_thawte Primary Root CA_thawte, Inc.pem +++ /dev/null @@ -1,25 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEIDCCAwigAwIBAgIQNE7VVyDV7exJ9C/ON9srbTANBgkqhkiG9w0BAQUFADCB -qTELMAkGA1UEBhMCVVMxFTATBgNVBAoTDHRoYXd0ZSwgSW5jLjEoMCYGA1UECxMf -Q2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjE4MDYGA1UECxMvKGMpIDIw -MDYgdGhhd3RlLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxHzAdBgNV -BAMTFnRoYXd0ZSBQcmltYXJ5IFJvb3QgQ0EwHhcNMDYxMTE3MDAwMDAwWhcNMzYw -NzE2MjM1OTU5WjCBqTELMAkGA1UEBhMCVVMxFTATBgNVBAoTDHRoYXd0ZSwgSW5j -LjEoMCYGA1UECxMfQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjE4MDYG -A1UECxMvKGMpIDIwMDYgdGhhd3RlLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNl -IG9ubHkxHzAdBgNVBAMTFnRoYXd0ZSBQcmltYXJ5IFJvb3QgQ0EwggEiMA0GCSqG -SIb3DQEBAQUAA4IBDwAwggEKAoIBAQCsoPD7gFnUnMekz52hWXMJEEUMDSxuaPFs -W0hoSVk3/AszGcJ3f8wQLZU0HObrTQmnHNK4yZc2AreJ1CRfBsDMRJSUjQJib+ta -3RGNKJpchJAQeg29dGYvajig4tVUROsdB58Hum/u6f1OCyn1PoSgAfGcq/gcfomk -6KHYcWUNo1F77rzSImANuVud37r8UVsLr5iy6S7pBOhih94ryNdOwUxkHt3Ph1i6 -Sk/KaAcdHJ1KxtUvkcx8cXIcxcBn6zL9yZJclNqFwJu/U30rCfSMnZEfl2pSy94J -NqR32HuHUETVPm4pafs5SSYeCaWAe0At6+gnhcn+Yf1+5nyXHdWdAgMBAAGjQjBA -MA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBR7W0XP -r87Lev0xkhpqtvNG61dIUDANBgkqhkiG9w0BAQUFAAOCAQEAeRHAS7ORtvzw6WfU -DW5FvlXok9LOAz/t2iWwHVfLHjp2oEzsUHboZHIMpKnxuIvW1oeEuzLlQRHAd9mz -YJ3rG9XRbkREqaYB7FViHXe4XI5ISXycO1cRrK1zN44veFyQaEfZYGDm/Ac9IiAX -xPcW6cTYcvnIc3zfFi8VqT79aie2oetaupgf1eNNZAqdE8hhuvU5HIe6uL17In/2 -/qxAeeWsEG89jxt5dovEN7MhGITlNgDrYyCZuen+MwS7QcjBAvlEYyCegc5C09Y/ -LHbTY5xZ3Y+m4Q6gLkH3LpVHz7z9M/P2C2F+fpErgUfCJzDupxBdN49cOSvkBPB7 -jVaMaA== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-099_Class 2 Primary CA_Certplus.pem b/test/rules/platform_certs/cacert/Cert-099_Class 2 Primary CA_Certplus.pem deleted file mode 100644 index 6d0133d3543a..000000000000 --- a/test/rules/platform_certs/cacert/Cert-099_Class 2 Primary CA_Certplus.pem +++ /dev/null @@ -1,22 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDkjCCAnqgAwIBAgIRAIW9S/PY2uNp9pTXX8OlRCMwDQYJKoZIhvcNAQEFBQAw -PTELMAkGA1UEBhMCRlIxETAPBgNVBAoTCENlcnRwbHVzMRswGQYDVQQDExJDbGFz -cyAyIFByaW1hcnkgQ0EwHhcNOTkwNzA3MTcwNTAwWhcNMTkwNzA2MjM1OTU5WjA9 -MQswCQYDVQQGEwJGUjERMA8GA1UEChMIQ2VydHBsdXMxGzAZBgNVBAMTEkNsYXNz -IDIgUHJpbWFyeSBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANxQ -ltAS+DXSCHh6tlJw/W/uz7kRy1134ezpfgSN1sxvc0NXYKwzCkTsA18cgCSR5aiR -VhKC9+Ar9NuuYS6JEI1rbLqzAr3VNsVINyPi8Fo3UjMXEuLRYE2+L0ER4/YXJQyL -kcAbmXuZVg2v7tK8R1fjeUl7NIknJITesezpWE7+Tt9avkGtrAjFGA7v0lPubNCd -EgETjdyAYveVqUSISnFOYFWe2yMZeVYHDD9jC1yw4r5+FfyUM1hBOHTE4Y+L3yas -H7WLO7dDWWuwJKZtkIvEcupdM5i3y95ee++U8Rs+yskhwcWYAqqi9lt3m/V+llU0 -HGdpwPFC40es/CgcZlUCAwEAAaOBjDCBiTAPBgNVHRMECDAGAQH/AgEKMAsGA1Ud -DwQEAwIBBjAdBgNVHQ4EFgQU43Mt38sOKAze3bOkynm4jrvoMIkwEQYJYIZIAYb4 -QgEBBAQDAgEGMDcGA1UdHwQwMC4wLKAqoCiGJmh0dHA6Ly93d3cuY2VydHBsdXMu -Y29tL0NSTC9jbGFzczIuY3JsMA0GCSqGSIb3DQEBBQUAA4IBAQCnVM+IRBnL39R/ -AN9WM2K191EBkOvDP9GIROkkXe/nFL0gt5o8AP5tn9uQ3Nf0YtaLcF3n5QRIqWh8 -yfFC82x/xXp8HVGIutIKPidd3i1RTtMTZGnkLuPT55sJmabglZvOGtd/vjzOUrMR -FcEPF80Du5wlFbqidon8BvEY0JNLDnyCt6X09l/+7UCmnYR0ObncHoUW2ikbhiMA -ybuJfm6AiB4vFLQDJKgybwOaRywwvlbGp0ICcBvqQNi6BQNwB6SW//1IMwrh3KWB -kJtN3X3n57LNXMhqlfil9o3EXXgIvnsG1knPGTZQIy4I5p4FTUcY1Rbpsda2ENW7 -l7+ijrRU ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-100_VeriSign, Inc.pem b/test/rules/platform_certs/cacert/Cert-100_VeriSign, Inc.pem deleted file mode 100644 index 87676acf5fc2..000000000000 --- a/test/rules/platform_certs/cacert/Cert-100_VeriSign, Inc.pem +++ /dev/null @@ -1,14 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICPDCCAaUCEHC65B0Q2Sk0tjjKewPMur8wDQYJKoZIhvcNAQECBQAwXzELMAkG -A1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMTcwNQYDVQQLEy5DbGFz -cyAzIFB1YmxpYyBQcmltYXJ5IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTk2 -MDEyOTAwMDAwMFoXDTI4MDgwMTIzNTk1OVowXzELMAkGA1UEBhMCVVMxFzAVBgNV -BAoTDlZlcmlTaWduLCBJbmMuMTcwNQYDVQQLEy5DbGFzcyAzIFB1YmxpYyBQcmlt -YXJ5IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIGfMA0GCSqGSIb3DQEBAQUAA4GN -ADCBiQKBgQDJXFme8huKARS0EN8EQNvjV69qRUCPhAwL0TPZ2RHP7gJYHyX3KqhE -BarsAx94f56TuZoAqiN91qyFomNFx3InzPRMxnVx0jnvT0Lwdd8KkMaOIG+YD/is -I19wKTakyYbnsZogy1Olhec9vn2a/iRFM9x2Fe0PonFkTGUugWhFpwIDAQABMA0G -CSqGSIb3DQEBAgUAA4GBALtMEivPLCYATxQT3ab7/AoRhIzzKBxnki98tsX63/Do -lbwdj2wsqFHMc9ikwFPwTtYmwHYBV4GSXiHx0bH/59AhWM1pF+NEHJwZRDmJXNyc -AA9WjQKZ7aKQRUzkuxCkPfAyAw7xzvjoyVGM5mKf5p/AfbdynMk2OmufTqj/ZA1k ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-101_AddTrust Qualified CA Root_AddTrust AB.pem b/test/rules/platform_certs/cacert/Cert-101_AddTrust Qualified CA Root_AddTrust AB.pem deleted file mode 100644 index ad3800d58b46..000000000000 --- a/test/rules/platform_certs/cacert/Cert-101_AddTrust Qualified CA Root_AddTrust AB.pem +++ /dev/null @@ -1,25 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEHjCCAwagAwIBAgIBATANBgkqhkiG9w0BAQUFADBnMQswCQYDVQQGEwJTRTEU -MBIGA1UEChMLQWRkVHJ1c3QgQUIxHTAbBgNVBAsTFEFkZFRydXN0IFRUUCBOZXR3 -b3JrMSMwIQYDVQQDExpBZGRUcnVzdCBRdWFsaWZpZWQgQ0EgUm9vdDAeFw0wMDA1 -MzAxMDQ0NTBaFw0yMDA1MzAxMDQ0NTBaMGcxCzAJBgNVBAYTAlNFMRQwEgYDVQQK -EwtBZGRUcnVzdCBBQjEdMBsGA1UECxMUQWRkVHJ1c3QgVFRQIE5ldHdvcmsxIzAh -BgNVBAMTGkFkZFRydXN0IFF1YWxpZmllZCBDQSBSb290MIIBIjANBgkqhkiG9w0B -AQEFAAOCAQ8AMIIBCgKCAQEA5B6a/twJWoekn0e+EV+vhDTbYjx5eLfpMLXsDBwq -xBb/4Oxx64r1EW7tTw2R0hIYLUkVAcKkIhPHEWT/IhKauY5cLwjPcWqzZwFZ8V1G -87B4pfYOQnrjfxvM0PC3KP0q6p6zsLkEqv32x7SxuCqg+1jxGaBvcCV+PmlKfw8i -2O+tCBGaKZnhqkRFmhJePp1tUvznoD1oL/BLcHwTOK28FSXx1s6rosAx1i+f4P8U -WfyEk9mHfExUE+uf0S0R+Bg6Ot4l2ffTQO2kBhLEO+GRwVY18BTcZTYJbqukB8c1 -0cIDMzZbdSZtQvESa0NvS3GU+jQd7RNuyoB/mC9suWXY6QIDAQABo4HUMIHRMB0G -A1UdDgQWBBQ5lYtii1zJ1IC6WA+XPxUIQ8yYpzALBgNVHQ8EBAMCAQYwDwYDVR0T -AQH/BAUwAwEB/zCBkQYDVR0jBIGJMIGGgBQ5lYtii1zJ1IC6WA+XPxUIQ8yYp6Fr -pGkwZzELMAkGA1UEBhMCU0UxFDASBgNVBAoTC0FkZFRydXN0IEFCMR0wGwYDVQQL -ExRBZGRUcnVzdCBUVFAgTmV0d29yazEjMCEGA1UEAxMaQWRkVHJ1c3QgUXVhbGlm -aWVkIENBIFJvb3SCAQEwDQYJKoZIhvcNAQEFBQADggEBABmrder4i2VhlRO6aQTv -hsoToMeqT2QbPxj2qC0sVY8FtzDqQmodwCVRLae/DLPt7wh/bDxGGuoYQ992zPlm -hpwsaPXpF/gxsxjE1kh9I0xowX67ARRvxdlu3rsEQmr49lx95dr6h+sNNVJn0J6X -dgWTP5XHAeZpVTh/EGGZyeNfpso+gmNIquIISD6q8rKFYqa0p9m9N5xotS1WfbC3 -P6CxB9bpT9zeRXEwMn8bLgn5v1Kh7sKAPgZcLlVAwRv1cEWw3F369nJad9Jjzc9Y -iQBCYz95OdBEsIJuQRno3eDBiFrRHnGTHyQwdOUeqN48Jzd/g66ed8/wMLH/S5no -xqE= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-102_AffirmTrust Premium ECC_AffirmTrust.pem b/test/rules/platform_certs/cacert/Cert-102_AffirmTrust Premium ECC_AffirmTrust.pem deleted file mode 100644 index 4bcc6a4336d5..000000000000 --- a/test/rules/platform_certs/cacert/Cert-102_AffirmTrust Premium ECC_AffirmTrust.pem +++ /dev/null @@ -1,13 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIB/jCCAYWgAwIBAgIIdJclisc/elQwCgYIKoZIzj0EAwMwRTELMAkGA1UEBhMC -VVMxFDASBgNVBAoMC0FmZmlybVRydXN0MSAwHgYDVQQDDBdBZmZpcm1UcnVzdCBQ -cmVtaXVtIEVDQzAeFw0xMDAxMjkxNDIwMjRaFw00MDEyMzExNDIwMjRaMEUxCzAJ -BgNVBAYTAlVTMRQwEgYDVQQKDAtBZmZpcm1UcnVzdDEgMB4GA1UEAwwXQWZmaXJt -VHJ1c3QgUHJlbWl1bSBFQ0MwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQNMF4bFZ0D -0KF5Nbc6PJJ6yhUczWLznCZcBz3lVPqj1swS6vQUX+iOGasvLkjmrBhDeKzQN8O9 -ss0s5kfiGuZjuD0uL3jET9v0D6RoTFVya5UdThhClXjMNzyR4ptlKymjQjBAMB0G -A1UdDgQWBBSaryl6wBE1NSZRMADDav5A1a7WPDAPBgNVHRMBAf8EBTADAQH/MA4G -A1UdDwEB/wQEAwIBBjAKBggqhkjOPQQDAwNnADBkAjAXCfOHiFBar8jAQr9HX/Vs -aobgxCd05DhT1wV/GzTjxi+zygk8N53X57hG8f2h4nECMEJZh0PUUd+60wkyWs6I -flc9nF9Ca/UHLbXwgpP5WW+uZPpY5Yse42O+tYHNbwKMeQ== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-103_UTN-USERFirst-Network Applications_The USERTRUST Network.pem b/test/rules/platform_certs/cacert/Cert-103_UTN-USERFirst-Network Applications_The USERTRUST Network.pem deleted file mode 100644 index 72b576a59a07..000000000000 --- a/test/rules/platform_certs/cacert/Cert-103_UTN-USERFirst-Network Applications_The USERTRUST Network.pem +++ /dev/null @@ -1,26 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEZDCCA0ygAwIBAgIQRL4Mi1AAJLQR0zYwS8AzdzANBgkqhkiG9w0BAQUFADCB -ozELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAlVUMRcwFQYDVQQHEw5TYWx0IExha2Ug -Q2l0eTEeMBwGA1UEChMVVGhlIFVTRVJUUlVTVCBOZXR3b3JrMSEwHwYDVQQLExho -dHRwOi8vd3d3LnVzZXJ0cnVzdC5jb20xKzApBgNVBAMTIlVUTi1VU0VSRmlyc3Qt -TmV0d29yayBBcHBsaWNhdGlvbnMwHhcNOTkwNzA5MTg0ODM5WhcNMTkwNzA5MTg1 -NzQ5WjCBozELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAlVUMRcwFQYDVQQHEw5TYWx0 -IExha2UgQ2l0eTEeMBwGA1UEChMVVGhlIFVTRVJUUlVTVCBOZXR3b3JrMSEwHwYD -VQQLExhodHRwOi8vd3d3LnVzZXJ0cnVzdC5jb20xKzApBgNVBAMTIlVUTi1VU0VS -Rmlyc3QtTmV0d29yayBBcHBsaWNhdGlvbnMwggEiMA0GCSqGSIb3DQEBAQUAA4IB -DwAwggEKAoIBAQCz+5Gh5DZVhawGNFugmliy+LUPBXeDrjKxdpJo7CNKyXY/45y2 -N3kDuatpjQclthln5LAbGHNhSuh+zdMvZOOmfAz6F4CjDUeJT1FxL+78P/m4FoCH -iZMlIJpDgmkkdihZNaEdwH+DBmQWICzTSaSFtMBhf1EI+GgVkYDLpdXuOzr0hARe -YFmnjDRy7rh4xdE7EkpvfmUnuaRVxblvQ6TFHSyZwFKkeEwVs0CYCGtDxgGwenv1 -axwiP8vv/6jQOkt2FZ7S0cYu49tXGzKiuG/ohqY/cKvlcJKrRB5AUPuco2LkbG6g -yN7igEL66S/ozjIEj3yNtxyjNTwV3Z7DrpelAgMBAAGjgZEwgY4wCwYDVR0PBAQD -AgHGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFPqGydvguul49Uuo1hXf8NPh -ahQ8ME8GA1UdHwRIMEYwRKBCoECGPmh0dHA6Ly9jcmwudXNlcnRydXN0LmNvbS9V -VE4tVVNFUkZpcnN0LU5ldHdvcmtBcHBsaWNhdGlvbnMuY3JsMA0GCSqGSIb3DQEB -BQUAA4IBAQCk8yXM0dSRgyLQzDKrm5ZONJFUICU0YV8qAhXhi6r/fWRRzwr/vH3Y -IWp4yy9Rb/hCHTO967V7lMPDqaAt39EpHx3+jz+7qEUqf9FuVSTiuwL7MT++6Lzs -QCv4AdRWOOTKRIK1YSAhZ2X28AvnNPilwpyjXEAfhZOVBt5P1CeptqX8Fs1zMT+4 -ZSfP1FMa8Kxun08FDAOBp4QpxFq9ZFdyrTvPNximmMatBrTcCKME1SmklpoSZ0qM -YEWd8SOasACcaLWYUNPvji6SZbFIPiG+FTAqDbUMo2s/rn9X9R+WfN9v3YIwLGUb -QErNaLly7HF27FSOH4UMAWr6pjisH8SE ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-104_http---www.valicert.com-_ValiCert, Inc.pem b/test/rules/platform_certs/cacert/Cert-104_http---www.valicert.com-_ValiCert, Inc.pem deleted file mode 100644 index 85a877b873d5..000000000000 --- a/test/rules/platform_certs/cacert/Cert-104_http---www.valicert.com-_ValiCert, Inc.pem +++ /dev/null @@ -1,18 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIC5zCCAlACAQEwDQYJKoZIhvcNAQEFBQAwgbsxJDAiBgNVBAcTG1ZhbGlDZXJ0 -IFZhbGlkYXRpb24gTmV0d29yazEXMBUGA1UEChMOVmFsaUNlcnQsIEluYy4xNTAz -BgNVBAsTLFZhbGlDZXJ0IENsYXNzIDIgUG9saWN5IFZhbGlkYXRpb24gQXV0aG9y -aXR5MSEwHwYDVQQDExhodHRwOi8vd3d3LnZhbGljZXJ0LmNvbS8xIDAeBgkqhkiG -9w0BCQEWEWluZm9AdmFsaWNlcnQuY29tMB4XDTk5MDYyNjAwMTk1NFoXDTE5MDYy -NjAwMTk1NFowgbsxJDAiBgNVBAcTG1ZhbGlDZXJ0IFZhbGlkYXRpb24gTmV0d29y -azEXMBUGA1UEChMOVmFsaUNlcnQsIEluYy4xNTAzBgNVBAsTLFZhbGlDZXJ0IENs -YXNzIDIgUG9saWN5IFZhbGlkYXRpb24gQXV0aG9yaXR5MSEwHwYDVQQDExhodHRw -Oi8vd3d3LnZhbGljZXJ0LmNvbS8xIDAeBgkqhkiG9w0BCQEWEWluZm9AdmFsaWNl -cnQuY29tMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDOOnHK5avIWZJV16vY -dA757tn2VUdZZUcOBVXc65g2PFxTXdMwzzjsvUGJ7SVCCSRrCl6zfN1SLUzm1NZ9 -WlmpZdRJEy0kTRxQb7XBhVQ7/nHk01xC+YDgkRoKWzk2Z/M/VXwbP7RfZHM047QS -v4dk+NoS/zcnwbNDu+97bi5p9wIDAQABMA0GCSqGSIb3DQEBBQUAA4GBADt/UG9v -UJSZSWI4OB9L+KXIPqeCgfYrx+jFzug6EILLGACOTb2oWH+heQC1u+mNr0HZDzTu -IYEZoDJJKPTEjlbVUjP9UNV+mWwD5MlM/Mtsq2azSiGM5bUMMj4QssxsodyamEwC -W/POuZ6lcg5Ktz885hZo+L7tdEy8W9ViH0Pd ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-106_DigiNotar Root CA_DigiNotar.pem b/test/rules/platform_certs/cacert/Cert-106_DigiNotar Root CA_DigiNotar.pem deleted file mode 100644 index ab60ad25fe99..000000000000 --- a/test/rules/platform_certs/cacert/Cert-106_DigiNotar Root CA_DigiNotar.pem +++ /dev/null @@ -1,32 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFijCCA3KgAwIBAgIQD////////////////////zANBgkqhkiG9w0BAQUFADBf -MQswCQYDVQQGEwJOTDESMBAGA1UEChMJRGlnaU5vdGFyMRowGAYDVQQDExFEaWdp -Tm90YXIgUm9vdCBDQTEgMB4GCSqGSIb3DQEJARYRaW5mb0BkaWdpbm90YXIubmww -HhcNMDcwNzI3MTcxOTM3WhcNMjUwMzMxMTgxOTIyWjBfMQswCQYDVQQGEwJOTDES -MBAGA1UEChMJRGlnaU5vdGFyMRowGAYDVQQDExFEaWdpTm90YXIgUm9vdCBDQTEg -MB4GCSqGSIb3DQEJARYRaW5mb0BkaWdpbm90YXIubmwwggIiMA0GCSqGSIb3DQEB -AQUAA4ICDwAwggIKAoICAQCssFjBAL3YIQgLK5r+blYwBZ8bd5AQQVzDDYcRd46B -8cp86Yxq7Th0Nbva3/m7wAk3tJZzgX0zGpg595NvlX89ubF1h7pRSOiLcD6VBMXY -tsMW2YiwsYcdcNqGtA8Ui3rPENF0NqISe3eGSnnme98CEWilToauNFibJBN4ViIl -HgGLS1Fx+4LMWZZpiFpoU8W5DQI3y0u8ZkqQfioLBQftFl9VkHXYRskbg+IIvvEj -zJkd1ioPgyAVWCeCLvriIsJJsbkBgWqdbZ1Ad2h2TiEqbYRAhU52mXyC8/O3AlnU -JgEbjt+tUwbRrhjd4rI6y9eIOI6sWym5GdOY+RgDz0iChmYLG2kPyes4iHomGgVM -ktck1JbyrFIto0fVUvY//s6EBnCmqj6i8rZWNBhXouSBbefK8GrTx5FrAoNBfBXv -a5pkXuPQPOWx63tdhvvL5ndJzaNl3Pe5nLjkC1+Tz8wwGjIczhxjlaX56uF0i57p -K6kwe6AYHw4YC+VbqdPRbB4HZ4+RS6mKvNJmqpMBiLKR+jFc1abBUggJzQpjotMi -puih2TkGl/VujQKQjBR7P4DNG5y6xFhyI6+2Vp/GekIzKQc/gsnmHwUNzUwoNovT -yD4cxojvXu6JZOkd69qJfjKmadHdzIif0dDJZiHcBmfFlHqabWJMfczgZICynkeO -owIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNV -HQ4EFgQUiGi/4I41xDs4a2L3KDuEgcgM100wDQYJKoZIhvcNAQEFBQADggIBADsC -jcs8MOhuoK3yc7NfniUTBAXT9uOLuwt5zlPe5JbF0a9zvNXD0EBVfEB/zRtfCdXy -fJ9oHbtdzno5wozWmHvFg1Wo1X1AyuAe94leY12hE8JdiraKfADzI8PthV9xdvBo -Y6pFITlIYXg23PFDk9Qlx/KAZeFTAnVR/Ho67zerhChXDNjU1JlWbOOi/lmEtDHo -M/hklJRRl6s5xUvt2t2AC298KQ3EjopyDedTFLJgQT2EkTFoPSdE2+Xe9PpjRchM -Ppj1P0G6Tss3DbpmmPHdy59c91Q2gmssvBNhl0L4eLvMyKKfyvBovWsdst+Nbwed -2o5nx0ceyrm/KkKRt2NTZvFCo+H0Wk1Ya7XkpDOtXHAd3ODy63MUkZoDweoAZbwH -/M8SESIsrqC9OuCiKthZ6SnTGDWkrBFfGbW1G/8iSlzGeuQX7yCpp/Q/rYqnmgQl -nQ7KN+ZQ/YxCKQSa7LnPS3K94gg2ryMvYuXKAdNw23yCIywWMQzGNgeQerEfZ1jE -O1hZibCMjFCz2IbLaKPECudpSyDOwR5WS5WpI2jYMNjD67BVUc3l/Su49bsRn1NU -9jQZjHkJNsphFyUXC4KYcwx3dMPVDceoEkzHp1RxRy4sGn3J4ys7SN4nhKdjNrN9 -j6BkOSQNPXuHr2ZcdBtLc7LljPCGmbjlxd+Ewbfr ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-107_Visa eCommerce Root_VISA.pem b/test/rules/platform_certs/cacert/Cert-107_Visa eCommerce Root_VISA.pem deleted file mode 100644 index 6e1ccd8ee7b4..000000000000 --- a/test/rules/platform_certs/cacert/Cert-107_Visa eCommerce Root_VISA.pem +++ /dev/null @@ -1,22 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDojCCAoqgAwIBAgIQE4Y1TR0/BvLB+WUF1ZAcYjANBgkqhkiG9w0BAQUFADBr -MQswCQYDVQQGEwJVUzENMAsGA1UEChMEVklTQTEvMC0GA1UECxMmVmlzYSBJbnRl -cm5hdGlvbmFsIFNlcnZpY2UgQXNzb2NpYXRpb24xHDAaBgNVBAMTE1Zpc2EgZUNv -bW1lcmNlIFJvb3QwHhcNMDIwNjI2MDIxODM2WhcNMjIwNjI0MDAxNjEyWjBrMQsw -CQYDVQQGEwJVUzENMAsGA1UEChMEVklTQTEvMC0GA1UECxMmVmlzYSBJbnRlcm5h -dGlvbmFsIFNlcnZpY2UgQXNzb2NpYXRpb24xHDAaBgNVBAMTE1Zpc2EgZUNvbW1l -cmNlIFJvb3QwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCvV95WHm6h -2mCxlCfLF9sHP4CFT8icttD0b0/Pmdjh28JIXDqsOTPHH2qLJj0rNfVIsZHBAk4E -lpF7sDPwsRROEW+1QK8bRaVK7362rPKgH1g/EkZgPI2h4H3PVz4zHvtH8aoVlwdV -ZqW1LS7YgFmypw23RuwhY/81q6UCzyr0TP579ZRdhE2o8mCP2w4lPJ9zcc+U30rq -299yOIzzlr3xF7zSujtFWsan9sYXiwGd/BmoKoMWuDpI/k4+oKsGGelT84ATB+0t -vz8KPFUgOSwsAGl0lUq8ILKpeeUYiZGo3BxN77t+Nwtd/jmliFKMAGzsGHxBvfaL -dXe6YJ2E5/4tAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQD -AgEGMB0GA1UdDgQWBBQVOIMPPyw/cDMezUb+B4wg4NfDtzANBgkqhkiG9w0BAQUF -AAOCAQEAX/FBfXxcCLkr4NWSR/pnXKUTwwMhmytMiUbPWU3J/qVAtmPN3XEolWcR -zCSs00Rsca4BIGsDoo8Ytyk6feUWYFN4PMCvFYP3j1IzJL1kk5fui/fbGKhtcbP3 -LBfQdCVp9/5rPJS+TUtBjE7ic9DjkCJzQ83z7+pzzkWKsKZJ/0x9nXGIxHYdkFsd -7v3M9+79YKWxehZx0RbQfBI8bGmX265fOZpwLwU8GUYEmSA20GBuYQa7FkKMcPcw -++DbZqMAAb3mLNqRX6BGi01qnD093QVG/na/oAo85ADmJ7f/hC3euiInlhBx6yLt -398znM/jra6O1I7mT1GvFpLgXPYHDw== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-108_Digital Signature Trust Co.pem b/test/rules/platform_certs/cacert/Cert-108_Digital Signature Trust Co.pem deleted file mode 100644 index 4e25ac5df048..000000000000 --- a/test/rules/platform_certs/cacert/Cert-108_Digital Signature Trust Co.pem +++ /dev/null @@ -1,19 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDKTCCApKgAwIBAgIENnAVljANBgkqhkiG9w0BAQUFADBGMQswCQYDVQQGEwJV -UzEkMCIGA1UEChMbRGlnaXRhbCBTaWduYXR1cmUgVHJ1c3QgQ28uMREwDwYDVQQL -EwhEU1RDQSBFMTAeFw05ODEyMTAxODEwMjNaFw0xODEyMTAxODQwMjNaMEYxCzAJ -BgNVBAYTAlVTMSQwIgYDVQQKExtEaWdpdGFsIFNpZ25hdHVyZSBUcnVzdCBDby4x -ETAPBgNVBAsTCERTVENBIEUxMIGdMA0GCSqGSIb3DQEBAQUAA4GLADCBhwKBgQCg -bIGpzzQeJN3+hijM3oMv+V7UQtLodGBmE5gGHKlREmlvMVW5SXIACH7TpWJENySZ -j9mDSI+ZbZUTu0M7LklOiDfBu1h//uG9+LthzfNHwJmm8fOR6Hh8AMthyUQncWlV -Sn5JTe2io74CTADKAqjuAQIxZA9SLRN0dja1erQtcQIBA6OCASQwggEgMBEGCWCG -SAGG+EIBAQQEAwIABzBoBgNVHR8EYTBfMF2gW6BZpFcwVTELMAkGA1UEBhMCVVMx -JDAiBgNVBAoTG0RpZ2l0YWwgU2lnbmF0dXJlIFRydXN0IENvLjERMA8GA1UECxMI -RFNUQ0EgRTExDTALBgNVBAMTBENSTDEwKwYDVR0QBCQwIoAPMTk5ODEyMTAxODEw -MjNagQ8yMDE4MTIxMDE4MTAyM1owCwYDVR0PBAQDAgEGMB8GA1UdIwQYMBaAFGp5 -fpFpRhgTCgJ3pVlbYJglDqL4MB0GA1UdDgQWBBRqeX6RaUYYEwoCd6VZW2CYJQ6i -+DAMBgNVHRMEBTADAQH/MBkGCSqGSIb2fQdBAAQMMAobBFY0LjADAgSQMA0GCSqG -SIb3DQEBBQUAA4GBACIS2Hod3IEGtgllsofIH160L+nEHvI8wbsEkBFKg05+k7lN -QseSJqBcNJo4cvj9axY+IO6CizEqkzaFI4iKPANo08kJD038bKTaKHKTDomAsH3+ -gG9lbRgzl4vCa4nuYD3Im+9/KzJic5PLPON74nZ4RbyhkwS7hp86W0N6w4pl ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-109_UTN-USERFirst-Object_The USERTRUST Network.pem b/test/rules/platform_certs/cacert/Cert-109_UTN-USERFirst-Object_The USERTRUST Network.pem deleted file mode 100644 index df6caba185dc..000000000000 --- a/test/rules/platform_certs/cacert/Cert-109_UTN-USERFirst-Object_The USERTRUST Network.pem +++ /dev/null @@ -1,26 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEZjCCA06gAwIBAgIQRL4Mi1AAJLQR0zYt4LNfGzANBgkqhkiG9w0BAQUFADCB -lTELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAlVUMRcwFQYDVQQHEw5TYWx0IExha2Ug -Q2l0eTEeMBwGA1UEChMVVGhlIFVTRVJUUlVTVCBOZXR3b3JrMSEwHwYDVQQLExho -dHRwOi8vd3d3LnVzZXJ0cnVzdC5jb20xHTAbBgNVBAMTFFVUTi1VU0VSRmlyc3Qt -T2JqZWN0MB4XDTk5MDcwOTE4MzEyMFoXDTE5MDcwOTE4NDAzNlowgZUxCzAJBgNV -BAYTAlVTMQswCQYDVQQIEwJVVDEXMBUGA1UEBxMOU2FsdCBMYWtlIENpdHkxHjAc -BgNVBAoTFVRoZSBVU0VSVFJVU1QgTmV0d29yazEhMB8GA1UECxMYaHR0cDovL3d3 -dy51c2VydHJ1c3QuY29tMR0wGwYDVQQDExRVVE4tVVNFUkZpcnN0LU9iamVjdDCC -ASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM6qgT+jo2F4qjEAVZURnicP -HxzfOpuCaDDASmEd8S8O+r5596Uj71VRloTN2+O5bj4x2AogZ8f02b+U60cEPgLO -KqJdhwQJ9jCdGIqXsqoc/EHSoTbL+z2RuufZcDX65OeQw5ujm9M89RKZd7G3CeBo -5hy485RjiGpq/gt2yb70IuRnuasaXnfBhQfdDWy/7gbHd2pBnqcP1/vulBe3/IW+ -pKvEHDHd17bR5PDv3xaPslKT16HUiaEHLr/hARJCHhrh2JU022R5KP+6LhHC5ehb -kkj7RwvCbNqtMoNB86XlQXD9ZZBt+vpRxPm9lisZBCzTbafc8H9vg2XiaquHhnUC -AwEAAaOBrzCBrDALBgNVHQ8EBAMCAcYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4E -FgQU2u1kdBScFDyr3ZmpvVsoTYs8ydgwQgYDVR0fBDswOTA3oDWgM4YxaHR0cDov -L2NybC51c2VydHJ1c3QuY29tL1VUTi1VU0VSRmlyc3QtT2JqZWN0LmNybDApBgNV -HSUEIjAgBggrBgEFBQcDAwYIKwYBBQUHAwgGCisGAQQBgjcKAwQwDQYJKoZIhvcN -AQEFBQADggEBAAgfUrE3RHjb/c652pWWmKpVZIC1WkDdIaXFwfNfLEzIR1pp6ujw -NTX00CXzyKakh0q9G7FzCL3Uw8q2NbtZhncxzaeAFK4T7/yxSPlrJSUtUbYsbUXB -mMiKVl0+7kNOPmsnjtA6S4ULX9Ptaqd1y9Fahy85dRNacrACgZ++8A+EVCBibGnU -4U3GDZlDAQ0Slox4nb9QorFEqmrPF3rPbw/U+CRVX/A0FklmPlBGyWNxODFiuGK5 -81OtbLUrohKqGU8J2l7nk8aOFAj+8DCAGKCGhU3IfdeLA/5u1fedFqySLKAj5ZyR -Uh+U3xeUc8OzwcFxBSAAeL0TUh2oPs0AH8g= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-110_Go Daddy Root Certificate Authority - G2_GoDaddy.com, Inc.pem b/test/rules/platform_certs/cacert/Cert-110_Go Daddy Root Certificate Authority - G2_GoDaddy.com, Inc.pem deleted file mode 100644 index c2b2907814c0..000000000000 --- a/test/rules/platform_certs/cacert/Cert-110_Go Daddy Root Certificate Authority - G2_GoDaddy.com, Inc.pem +++ /dev/null @@ -1,23 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDxTCCAq2gAwIBAgIBADANBgkqhkiG9w0BAQsFADCBgzELMAkGA1UEBhMCVVMx -EDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxGjAYBgNVBAoT -EUdvRGFkZHkuY29tLCBJbmMuMTEwLwYDVQQDEyhHbyBEYWRkeSBSb290IENlcnRp -ZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTA5MDkwMTAwMDAwMFoXDTM3MTIzMTIz -NTk1OVowgYMxCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6b25hMRMwEQYDVQQH -EwpTY290dHNkYWxlMRowGAYDVQQKExFHb0RhZGR5LmNvbSwgSW5jLjExMC8GA1UE -AxMoR28gRGFkZHkgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgLSBHMjCCASIw -DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL9xYgjx+lk09xvJGKP3gElY6SKD -E6bFIEMBO4Tx5oVJnyfq9oQbTqC023CYxzIBsQU+B07u9PpPL1kwIuerGVZr4oAH -/PMWdYA5UXvl+TW2dE6pjYIT5LY/qQOD+qK+ihVqf94Lw7YZFAXK6sOoBJQ7Rnwy -DfMAZiLIjWltNowRGLfTshxgtDj6AozO091GB94KPutdfMh8+7ArU6SSYmlRJQVh -GkSBjCypQ5Yj36w6gZoOKcUcqeldHraenjAKOc7xiID7S13MMuyFYkMlNAJWJwGR -tDtwKj9useiciAF9n9T521NtYJ2/LOdYq7hfRvzOxBsDPAnrSTFcaUaz4EcCAwEA -AaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYE -FDqahQcQZyi27/a9BUFuIMGU2g/eMA0GCSqGSIb3DQEBCwUAA4IBAQCZ21151fmX -WWcDYfF+OwYxdS2hII5PZYe096acvNjpL9DbWu7PdIxztDhC2gV7+AJ1uP2lsdeu -9tfeE8tTEH6KRtGX+rcuKxGrkLAngPnon1rpN5+r5N9ss4UXnT3ZJE95kTXWXwTr -gIOrmgIttRD02JDHBHNA7XIloKmf7J6raBKZV8aPEjoJpL1E/QYVN8Gb5DKj7Tjo -2GTzLH4U/ALqn83/B2gX2yKQOC16jdFU8WnjXzPKej17CuPKf1855eJ1usV2GDPO -LPAvTK33sefOT6jEm0pUBsV/fdUID+Ic/n4XuKxe9tQWskMJDE32p2u0mYRlynqI -4uJEvlz36hz1 ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-111_AAA Certificate Services_Comodo CA Limited.pem b/test/rules/platform_certs/cacert/Cert-111_AAA Certificate Services_Comodo CA Limited.pem deleted file mode 100644 index 33c71ba9db77..000000000000 --- a/test/rules/platform_certs/cacert/Cert-111_AAA Certificate Services_Comodo CA Limited.pem +++ /dev/null @@ -1,25 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEMjCCAxqgAwIBAgIBATANBgkqhkiG9w0BAQUFADB7MQswCQYDVQQGEwJHQjEb -MBkGA1UECAwSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHDAdTYWxmb3JkMRow -GAYDVQQKDBFDb21vZG8gQ0EgTGltaXRlZDEhMB8GA1UEAwwYQUFBIENlcnRpZmlj -YXRlIFNlcnZpY2VzMB4XDTA0MDEwMTAwMDAwMFoXDTI4MTIzMTIzNTk1OVowezEL -MAkGA1UEBhMCR0IxGzAZBgNVBAgMEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UE -BwwHU2FsZm9yZDEaMBgGA1UECgwRQ29tb2RvIENBIExpbWl0ZWQxITAfBgNVBAMM -GEFBQSBDZXJ0aWZpY2F0ZSBTZXJ2aWNlczCCASIwDQYJKoZIhvcNAQEBBQADggEP -ADCCAQoCggEBAL5AnfRu4ep2hxxNRUSOvkbIgwadwSr+GB+O5AL686tdUIoWMQua -BtDFcCLNSS1UY8y2bmhGC1Pqy0wkwLxyTurxFa70VJoSCsN6sjNg4tqJVfMiWPPe -3M/vg4aijJRPn2jymJBGhCfHdr/jzDUsi14HZGWCwEiwqJH5YZ92IFCokcdmtet4 -YgNW8IoaE+oxox6gmf049vYnMlhvB/VruPsUK6+3qszWY19zjNoFmag4qMsXeDZR -rOme9Hg6jc8P2ULimAyrL58OAd7vn5lJ8S3frHRNG5i1R8XlKdH5kBjHYpy+g8cm -ez6KJcfA3Z3mNWgQIJ2P2N7Sw4ScDV7oL8kCAwEAAaOBwDCBvTAdBgNVHQ4EFgQU -oBEKIz6W8Qfs4q8p74Klf9AwpLQwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQF -MAMBAf8wewYDVR0fBHQwcjA4oDagNIYyaHR0cDovL2NybC5jb21vZG9jYS5jb20v -QUFBQ2VydGlmaWNhdGVTZXJ2aWNlcy5jcmwwNqA0oDKGMGh0dHA6Ly9jcmwuY29t -b2RvLm5ldC9BQUFDZXJ0aWZpY2F0ZVNlcnZpY2VzLmNybDANBgkqhkiG9w0BAQUF -AAOCAQEACFb8AvCb6P+k+tZ7xkSAzk/ExfYAWMymtrwUSWgEdujm7l3sAg9g1o1Q -GE8mTgHj5rCl7r+8dFRBv/38ErjHT1r0iWAFf2C3BUrz9vHCv8S5dIa2LX1rzNLz -Rt0vxuBqw8M0Ayx9lt1awg6nCpnBBYurDC/zXDrPbDdVCYfeU0BsWO/8tqtlbgT2 -G9w84FoVxp7Z8VlIMCFlA2zs6SFz7JsDoeA3raAVGI/6ugLOpyypEBMs1OUIJqsi -l2D4kF501KKaU73yqWjgom7C12yxow+ev+to51byrvLjKzg6CYG1a4XXvi3tPxq3 -smPi9WIsgtRqAEFQ8TmDn5XpNpaYbg== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-112_Entrust.net Secure Server Certification Authority_Entrust.net.pem b/test/rules/platform_certs/cacert/Cert-112_Entrust.net Secure Server Certification Authority_Entrust.net.pem deleted file mode 100644 index 4b8939ccba7f..000000000000 --- a/test/rules/platform_certs/cacert/Cert-112_Entrust.net Secure Server Certification Authority_Entrust.net.pem +++ /dev/null @@ -1,28 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIE2DCCBEGgAwIBAgIEN0rSQzANBgkqhkiG9w0BAQUFADCBwzELMAkGA1UEBhMC -VVMxFDASBgNVBAoTC0VudHJ1c3QubmV0MTswOQYDVQQLEzJ3d3cuZW50cnVzdC5u -ZXQvQ1BTIGluY29ycC4gYnkgcmVmLiAobGltaXRzIGxpYWIuKTElMCMGA1UECxMc -KGMpIDE5OTkgRW50cnVzdC5uZXQgTGltaXRlZDE6MDgGA1UEAxMxRW50cnVzdC5u -ZXQgU2VjdXJlIFNlcnZlciBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw05OTA1 -MjUxNjA5NDBaFw0xOTA1MjUxNjM5NDBaMIHDMQswCQYDVQQGEwJVUzEUMBIGA1UE -ChMLRW50cnVzdC5uZXQxOzA5BgNVBAsTMnd3dy5lbnRydXN0Lm5ldC9DUFMgaW5j -b3JwLiBieSByZWYuIChsaW1pdHMgbGlhYi4pMSUwIwYDVQQLExwoYykgMTk5OSBF -bnRydXN0Lm5ldCBMaW1pdGVkMTowOAYDVQQDEzFFbnRydXN0Lm5ldCBTZWN1cmUg -U2VydmVyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIGdMA0GCSqGSIb3DQEBAQUA -A4GLADCBhwKBgQDNKIM0VBuJ8w+vN5Ex/68xYMmo6LIQaO2f55M28Qpku0f1BBc/ -I0dNxScZgSYMVHINiC3ZH5oSn7yzcdOAGT9HZnuMNSjSuQrfJNqc1lB5gXpa0zf3 -wkrYKZImZNHkmGw6AIr1NJtl+O3jEP/9uElY3KDegjlrgbEWGWG5VLbmQwIBA6OC -AdcwggHTMBEGCWCGSAGG+EIBAQQEAwIABzCCARkGA1UdHwSCARAwggEMMIHeoIHb -oIHYpIHVMIHSMQswCQYDVQQGEwJVUzEUMBIGA1UEChMLRW50cnVzdC5uZXQxOzA5 -BgNVBAsTMnd3dy5lbnRydXN0Lm5ldC9DUFMgaW5jb3JwLiBieSByZWYuIChsaW1p -dHMgbGlhYi4pMSUwIwYDVQQLExwoYykgMTk5OSBFbnRydXN0Lm5ldCBMaW1pdGVk -MTowOAYDVQQDEzFFbnRydXN0Lm5ldCBTZWN1cmUgU2VydmVyIENlcnRpZmljYXRp -b24gQXV0aG9yaXR5MQ0wCwYDVQQDEwRDUkwxMCmgJ6AlhiNodHRwOi8vd3d3LmVu -dHJ1c3QubmV0L0NSTC9uZXQxLmNybDArBgNVHRAEJDAigA8xOTk5MDUyNTE2MDk0 -MFqBDzIwMTkwNTI1MTYwOTQwWjALBgNVHQ8EBAMCAQYwHwYDVR0jBBgwFoAU8Bdi -E1U9s/8KAGv7UISX8+1i0BowHQYDVR0OBBYEFPAXYhNVPbP/CgBr+1CEl/PtYtAa -MAwGA1UdEwQFMAMBAf8wGQYJKoZIhvZ9B0EABAwwChsEVjQuMAMCBJAwDQYJKoZI -hvcNAQEFBQADgYEAkNwwAvpkdMKnCqV8IY00F6j7Rw7/JXyNEwr75Ji174z4xRAN -95K+8cPV1ZVqBLssziY2ZcgxxufuP+NXdYR6Ee9GTxj005i7qIcyunL2POI9n9cd -2cNgQ4xYDiKWL2KjLB+6rQXvqzJ4h6BUcxm1XAX5Uj5tLUUL9wqT6u0G+bI= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-113_GlobalSign Root CA_GlobalSign nv-sa.pem b/test/rules/platform_certs/cacert/Cert-113_GlobalSign Root CA_GlobalSign nv-sa.pem deleted file mode 100644 index f4ce4ca43dc0..000000000000 --- a/test/rules/platform_certs/cacert/Cert-113_GlobalSign Root CA_GlobalSign nv-sa.pem +++ /dev/null @@ -1,21 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDdTCCAl2gAwIBAgILBAAAAAABFUtaw5QwDQYJKoZIhvcNAQEFBQAwVzELMAkG -A1UEBhMCQkUxGTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYtc2ExEDAOBgNVBAsTB1Jv -b3QgQ0ExGzAZBgNVBAMTEkdsb2JhbFNpZ24gUm9vdCBDQTAeFw05ODA5MDExMjAw -MDBaFw0yODAxMjgxMjAwMDBaMFcxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9i -YWxTaWduIG52LXNhMRAwDgYDVQQLEwdSb290IENBMRswGQYDVQQDExJHbG9iYWxT -aWduIFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDaDuaZ -jc6j40+Kfvvxi4Mla+pIH/EqsLmVEQS98GPR4mdmzxzdzxtIK+6NiY6arymAZavp -xy0Sy6scTHAHoT0KMM0VjU/43dSMUBUc71DuxC73/OlS8pF94G3VNTCOXkNz8kHp -1Wrjsok6Vjk4bwY8iGlbKk3Fp1S4bInMm/k8yuX9ifUSPJJ4ltbcdG6TRGHRjcdG -snUOhugZitVtbNV4FpWi6cgKOOvyJBNPc1STE4U6G7weNLWLBYy5d4ux2x8gkasJ -U26Qzns3dLlwR5EiUWMWea6xrkEmCMgZK9FGqkjWZCrXgzT/LCrBbBlDSgeF59N8 -9iFo7+ryUp9/k5DPAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8E -BTADAQH/MB0GA1UdDgQWBBRge2YaRQ2XyolQL30EzTSo//z9SzANBgkqhkiG9w0B -AQUFAAOCAQEA1nPnfE920I2/7LqivjTFKDK1fPxsnCwrvQmeU79rXqoRSLblCKOz -yj1hTdNGCbM+w6DjY1Ub8rrvrTnhQ7k4o+YviiY776BQVvnGCv04zcQLcFGUl5gE -38NflNUVyRRBnMRddWQVDf9VMOyGj/8N7yy5Y0b2qvzfvGn9LhJIZJrglfCm7ymP -AbEVtQwdpf5pLGkkeB6zpxxxYu7KyJesF12KwvhHhm4qxFYxldBniYUr+WymXUad -DKqC5JlR3XC321Y9YeRq4VzW9v493kHMB65jUr9TU/Qr6cf9tveCX4XSQRjbgbME -HMUfpIBvFSDJ3gyICh3WZlXi/EjJKSZp4A== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-114_Izenpe.com_IZENPE S.A.pem b/test/rules/platform_certs/cacert/Cert-114_Izenpe.com_IZENPE S.A.pem deleted file mode 100644 index 763832194b91..000000000000 --- a/test/rules/platform_certs/cacert/Cert-114_Izenpe.com_IZENPE S.A.pem +++ /dev/null @@ -1,34 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIF8TCCA9mgAwIBAgIQALC3WhZIX7/hy/WL1xnmfTANBgkqhkiG9w0BAQsFADA4 -MQswCQYDVQQGEwJFUzEUMBIGA1UECgwLSVpFTlBFIFMuQS4xEzARBgNVBAMMCkl6 -ZW5wZS5jb20wHhcNMDcxMjEzMTMwODI4WhcNMzcxMjEzMDgyNzI1WjA4MQswCQYD -VQQGEwJFUzEUMBIGA1UECgwLSVpFTlBFIFMuQS4xEzARBgNVBAMMCkl6ZW5wZS5j -b20wggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDJ03rKDx6sp4boFmVq -scIbRTJxldn+EFvMr+eleQGPicPK8lVx93e+d5TzcqQsRNiekpsUOqHnJJAKClaO -xdgmlOHZSOEtPtoKct2jmRXagaKH9HtuJneJWK3W6wyyQXpzbm3benhB6QiIEn6H -LmYRY2xU+zydcsC8Lv/Ct90NduM61/e0aL6i9eOBbsFGb12N4E3GVFWJGjMxCrFX -uaOKmMPsOzTFlUFpfnXCPCDFYbpRR6AgkJOhkEvzTnyFRVSa0QUmQbC1TR0zvsQD -yCV8wXDbO/QJLVQnSKwv4cSsPsjLkkxTOTcj7NMB+eAJRE1NZMDhDVqHIrytG6P+ -JrUV86f8hBnp7KGItERphIPzidF0BqnMC9bC3ieFUCbKF7jJeodWLBoBHmy+E60Q -rLUk9TiRodZL2vG70t5HtfG8gfZZa88ZU+mNFctKy6lvROUbQc/hhqfK0GqfvEyN -BjNaooXlkDWgYlwWTvDjovoDGrQscbNYLN57C9saD+veIR8GdwYDsMnvmfzAuU8L -hij+0rnq49qlw0dpEuDb8PYZi+17cNcC1u2HGCgsBCRMd+RIihrGO5rUD8r6ddIB -QFqNeb+Lz0vPqhbBleStTIo+F5HUsWLlguWABKQDfo2/2n+iD5dPDNMN+9fR5XJ+ -HMh3/1uaD7euBUbl8agW7EekFwIDAQABo4H2MIHzMIGwBgNVHREEgagwgaWBD2lu -Zm9AaXplbnBlLmNvbaSBkTCBjjFHMEUGA1UECgw+SVpFTlBFIFMuQS4gLSBDSUYg -QTAxMzM3MjYwLVJNZXJjLlZpdG9yaWEtR2FzdGVpeiBUMTA1NSBGNjIgUzgxQzBB -BgNVBAkMOkF2ZGEgZGVsIE1lZGl0ZXJyYW5lbyBFdG9yYmlkZWEgMTQgLSAwMTAx -MCBWaXRvcmlhLUdhc3RlaXowDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC -AQYwHQYDVR0OBBYEFB0cZQ6o8iV7tJHP5LGx5r1VdGwFMA0GCSqGSIb3DQEBCwUA -A4ICAQB4pgwWSp9MiDrAyw6lFn2fuUhfGI8NYjb2zRlrrKvV9pF9rnHzP7MOeIWb -laQnIUdCSnxIOvVFfLMMjlF4rJUT3sb9fbgakEyrkgPH7UIBzg/YsfqikuFgba56 -awmqxinuaElnMIAkejEWOVt+8Rwu3WwJrfIxwYJOubv5vr8qhT/AQKM6WfxZSzwo -JNu0FXWuDYi6LnPAvViH5ULy617uHjAimcs30cQhbIHsvm0m5hzkQiCeR7Csg1lw -LDXWrzY0tM07+DKo7+N4ifuNRSzanLh+QBxh5z6ikixL8s36mLYp//Pye6kfLqCT -VyvehQP5aTfLnnhqBbTFMXiJ7HqnheG5ezzevh55hM6fcA5ZwjUukCox2eRFekGk -LhObNA5me0mrZJfQRsN5nXJQY6aYWwa9SG3YOYNw6DXwBdGqvOPbyALqfP2C2sJb -UjWumDqtujWTI6cfSN01RpiyEGjkpTHCClguGYEQyVB1/OpaFs4R1+7vUIgtYf8/ -QnMFlEPVjjxOAToZpR9GTnfQXeWBIiGH/pR9hNiTrdZoQ0iy2+tzJOeRf1SktoA+ -naM8THLCV8Sg1Mw4J87VBp6iSNnpn86CcDaTmjvfliHjWbcM2pE38P1ZWrOZyGls -QyYBNWNgVYkDOnXYukrZVP/u3oDYLdE41V4tC5h9Pmzb/CaIxw== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-115_Secure Global CA_SecureTrust Corporation.pem b/test/rules/platform_certs/cacert/Cert-115_Secure Global CA_SecureTrust Corporation.pem deleted file mode 100644 index 1f4574e779f7..000000000000 --- a/test/rules/platform_certs/cacert/Cert-115_Secure Global CA_SecureTrust Corporation.pem +++ /dev/null @@ -1,22 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDvDCCAqSgAwIBAgIQB1YipOjUiolN9BPI8PjqpTANBgkqhkiG9w0BAQUFADBK -MQswCQYDVQQGEwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3QgQ29ycG9yYXRpb24x -GTAXBgNVBAMTEFNlY3VyZSBHbG9iYWwgQ0EwHhcNMDYxMTA3MTk0MjI4WhcNMjkx -MjMxMTk1MjA2WjBKMQswCQYDVQQGEwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3Qg -Q29ycG9yYXRpb24xGTAXBgNVBAMTEFNlY3VyZSBHbG9iYWwgQ0EwggEiMA0GCSqG -SIb3DQEBAQUAA4IBDwAwggEKAoIBAQCvNS7YrGxVaQZx5RNoJLNP2MwhR/jxYDiJ -iQPpvepeRlMJ3Fz1Wuj3RSoC6zFh1ykzTM7HfAo3fg+6MpjhHZevj8fcyTiW89sa -/FHtaMbQbqR8JNGuQsiWUGMu4P51/pinX0kuleM5M2SOHqRfkNJnPLLZ/kG5VacJ -jnIFHovdRIWCQtBJwB1g8NEXLJXr9qXBkqPFwqcIYA1gBBCWeZ4WNOaptvolRTnI -HmX5k/Wq8VLcmZg9pYYaDDUz+kulBAYVHDGA76oYa8J719rO+TMg1fW9ajMtgQT7 -sFzUnKPiXB3jqUJ1XnvUd+85VLrJChgbEplJL4hL/VBi0XPnj3pDAgMBAAGjgZ0w -gZowEwYJKwYBBAGCNxQCBAYeBABDAEEwCwYDVR0PBAQDAgGGMA8GA1UdEwEB/wQF -MAMBAf8wHQYDVR0OBBYEFK9EBMJBfkiD2045AuzshHrmzsmkMDQGA1UdHwQtMCsw -KaAnoCWGI2h0dHA6Ly9jcmwuc2VjdXJldHJ1c3QuY29tL1NHQ0EuY3JsMBAGCSsG -AQQBgjcVAQQDAgEAMA0GCSqGSIb3DQEBBQUAA4IBAQBjGghAfaReUw132HquHw0L -URYD7xh8yOOvaliTFGCRsoTciE6+OYo68+aCiV0BN7OrJKQVDpI1WkpEXk5X+nXO -H0jOZvQ8QCaSmGwb7iRGDBezUqXbpZGRzzfTb+cnCDpOGR86p1hcF895P4vkp9Mm -I50mD1hp/Ed+stCNi5O/KU9DaXR2Z0vPB4zmAve14bRDtUstFJ/53CYNv6ZHdAbY -iNE6KTCEztI5gGIbqMdXSbxqVVFnFUq+NQfk1XWYN3kwFNspnWzFacxHVaIw98xc -f8LDmBxrThaA63p4ZUWiABqvDA1VZDRIuJK58bRQKfJPIx/abKwfROHdI3hRW8cW ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-117_AffirmTrust Networking_AffirmTrust.pem b/test/rules/platform_certs/cacert/Cert-117_AffirmTrust Networking_AffirmTrust.pem deleted file mode 100644 index 04f4a812b205..000000000000 --- a/test/rules/platform_certs/cacert/Cert-117_AffirmTrust Networking_AffirmTrust.pem +++ /dev/null @@ -1,20 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDTDCCAjSgAwIBAgIIfE8EORzUmS0wDQYJKoZIhvcNAQEFBQAwRDELMAkGA1UE -BhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVz -dCBOZXR3b3JraW5nMB4XDTEwMDEyOTE0MDgyNFoXDTMwMTIzMTE0MDgyNFowRDEL -MAkGA1UEBhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZp -cm1UcnVzdCBOZXR3b3JraW5nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC -AQEAtITMMxcua5Rsa2FSoOujz3mUTOWUgJnLVWREZY9nZOIG41w3SfYvm4SEHi3y -YJ0wTsyEheIszx6e/jarM3c1RNg1lho9Nuh6DtjVR6FqaYvZ/Ls6rnla1fTWcbua -kCNrmreIdIcMHl+5ni36q1Mr3Lt2PpNMCAiMHqIjHNRqrSK6mQEubWXLviRmVSRL -QESxG9fhwoXA3hA/Pe24/PHxI1Pcv2WXb9n5QHGNfb2V1M6+oF4nI979ptAmDgAp -6zxG8D1gvz9Q0twmQVGeFDdCBKNwV6gbh+0t+nvujArjqWaJGctB+d1ENmHP4ndG -yH329JKBNv3bNPFyfvMMFr20FQIDAQABo0IwQDAdBgNVHQ4EFgQUBx/S55zawm6i -QLSwelAQUHTEyL0wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwDQYJ -KoZIhvcNAQEFBQADggEBAIlXshZ6qML91tmbmzTCnLQyFE2npN/svqe++EPbkTfO -tDIuUFUaNU52Q3Eg75N3ThVwLofDwR1t3Mu1J9QsVtFSUzpE0nPIxBsFZVpikpzu -QY0x2+c06lkh1QF612S4ZDnNye2v7UsDSKegmQGA3GWjNq5lWUhPgkvIZfFXHeVZ -Lgo/bNjR9eUJtGxUAArgFU2HdW23WJZa3W3SAKD0m0i+wzekujbgfIeFlxoVot4u -olu9rxj5kFDNcFn4J2dHy8egBzp90SxdbBk6ZrV9/ZFvgrG+CJPbFEfxojfHRZ48 -x3evZKiT3/Zpg4Jg8klCNO1aAFSFHBY2kgxc+qatv9s= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-118_SECOM Trust.net.pem b/test/rules/platform_certs/cacert/Cert-118_SECOM Trust.net.pem deleted file mode 100644 index ad1424ac3565..000000000000 --- a/test/rules/platform_certs/cacert/Cert-118_SECOM Trust.net.pem +++ /dev/null @@ -1,20 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDWjCCAkKgAwIBAgIBADANBgkqhkiG9w0BAQUFADBQMQswCQYDVQQGEwJKUDEY -MBYGA1UEChMPU0VDT00gVHJ1c3QubmV0MScwJQYDVQQLEx5TZWN1cml0eSBDb21t -dW5pY2F0aW9uIFJvb3RDQTEwHhcNMDMwOTMwMDQyMDQ5WhcNMjMwOTMwMDQyMDQ5 -WjBQMQswCQYDVQQGEwJKUDEYMBYGA1UEChMPU0VDT00gVHJ1c3QubmV0MScwJQYD -VQQLEx5TZWN1cml0eSBDb21tdW5pY2F0aW9uIFJvb3RDQTEwggEiMA0GCSqGSIb3 -DQEBAQUAA4IBDwAwggEKAoIBAQCzs/5/022x7xZ8V6UMbXaKL0u/ZPtM7orw8yl8 -9f/uKuDp6bpbZCKamm8sOiZpUQWZJtzVHGpxxpp9Hp3dfGzGjGdnSj74cbAZJ6kJ -DKaVv0uMDPpVmDvY6CKhS3E4eayXkmmziX7qIWgGmBSWh9JhNrxtJ1aeV+7AwFb9 -Ms+k2Y7CI9eNqPPYJayX5HA49LY6tJ07lyZDo6G8SVlyTCMwhwFY9k6+HGhWZq/N -QV3Is00qVUarH9oe4kA92819uZKAnDfdDJZkndwi92SL32HeFZRSFaB9UslLqCHJ -xrHty8OVYNEP8Ktw+N/LTX7s1vqr2b1/VPKl6Xn62dZ2JChzAgMBAAGjPzA9MB0G -A1UdDgQWBBSgc0mZaNyFW2XjmygvV5+9M7wHSDALBgNVHQ8EBAMCAQYwDwYDVR0T -AQH/BAUwAwEB/zANBgkqhkiG9w0BAQUFAAOCAQEAaECpqLvkT115swW1F7NgE+vG -kl3g0dNq/vu+m22/xwVtWSDEHPC32oRYAmP6SBbvT6UL90qY8j+eG61Ha2POCEfr -Uj94nK9NrvjVT8+amCoQQTlSxN3Zmw7vkwGusi7KaEIkQmywszo+zenaSMQVy+n5 -Bw+SUEmK3TGXX8npN6o7WWWXlDLJs58+OmJYxUmtYg5xpTKqL8aJdkNAExNnPaJU -JRDL8Try2frbSVa7pv6nQTXD4IhhyYjH3zYQIphZ6rBK+1YWc26sTfcioU+tHXot -RSflMMFe8toTyyVCUZVHA4xsIcx0Qu1T/zOLjw9XARYvz6buyXAiFL39vmwLAw== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-119_VeriSign Class 2 Public Primary Certification Authority - G3_VeriSign, Inc.pem b/test/rules/platform_certs/cacert/Cert-119_VeriSign Class 2 Public Primary Certification Authority - G3_VeriSign, Inc.pem deleted file mode 100644 index 669281096798..000000000000 --- a/test/rules/platform_certs/cacert/Cert-119_VeriSign Class 2 Public Primary Certification Authority - G3_VeriSign, Inc.pem +++ /dev/null @@ -1,24 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEGTCCAwECEGFwy0mMX5hFKeewptlQW3owDQYJKoZIhvcNAQEFBQAwgcoxCzAJ -BgNVBAYTAlVTMRcwFQYDVQQKEw5WZXJpU2lnbiwgSW5jLjEfMB0GA1UECxMWVmVy -aVNpZ24gVHJ1c3QgTmV0d29yazE6MDgGA1UECxMxKGMpIDE5OTkgVmVyaVNpZ24s -IEluYy4gLSBGb3IgYXV0aG9yaXplZCB1c2Ugb25seTFFMEMGA1UEAxM8VmVyaVNp -Z24gQ2xhc3MgMiBQdWJsaWMgUHJpbWFyeSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0 -eSAtIEczMB4XDTk5MTAwMTAwMDAwMFoXDTM2MDcxNjIzNTk1OVowgcoxCzAJBgNV -BAYTAlVTMRcwFQYDVQQKEw5WZXJpU2lnbiwgSW5jLjEfMB0GA1UECxMWVmVyaVNp -Z24gVHJ1c3QgTmV0d29yazE6MDgGA1UECxMxKGMpIDE5OTkgVmVyaVNpZ24sIElu -Yy4gLSBGb3IgYXV0aG9yaXplZCB1c2Ugb25seTFFMEMGA1UEAxM8VmVyaVNpZ24g -Q2xhc3MgMiBQdWJsaWMgUHJpbWFyeSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAt -IEczMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArwoNwtUs22e5LeWU -J92lvuCwTY+zYVY81nzD9M0+hsuiiOLh2KRpxbXiv8GmR1BeRjmL1Za6tW8UvxDO -JxOeBUebMXoT2B/Z0wI3i60sR/COgQanDTAM6/c8DyAd3HJG7qUCyFvDyVZpTMUY -wZF7C9UTAJu878NIPkZgIIUq1ZC2zYugzDLdt/1AVbJQHFauzI13TccgTacxdu9o -koqQHgiBVrKtaaNS0MscxCM9H5n+TOgWY47GCI72MfbS+uV23bUckqNJzc0BzWjN -qWm6o+sdDZykIKbBoMXRRkwXbdKsZj+WjOCE1Db/IlnF+RFgqF8EffIa9iVCYQ/E -Srg+iQIDAQABMA0GCSqGSIb3DQEBBQUAA4IBAQA0JhU8wI1NQ0kdvekhktdmnLfe -xbjQ5F1fdiLAJvmEOjr5jLX77GDx6M4EsMjdpwOPMPOY36TmpDHf0xwLRtxyID+u -7gU8pDM/CzmscHhzS5kr3zDCVLCoO1Wh/hYozUK9dG6A2ydEp85EXdQbkJgNHkKU -sQAsBNB0owIFImNjzYO1+8FtYmtpdf1dcEG59b98377BMnMiIYtYgXsVkXq642RI -sH/7NiXaldDxJBQX3RiAa0YjOVT1jmIJBB2UkKab5iXiQkWquJCtvgiPqQtCGJTP -cjnhsUPgKM+351psE2tJs//jGHyJizNdrDPXp/naOlXJWBD5qu9ats9LS98q ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-120_QuoVadis Root CA 2_QuoVadis Limited.pem b/test/rules/platform_certs/cacert/Cert-120_QuoVadis Root CA 2_QuoVadis Limited.pem deleted file mode 100644 index 35cc4eb56e10..000000000000 --- a/test/rules/platform_certs/cacert/Cert-120_QuoVadis Root CA 2_QuoVadis Limited.pem +++ /dev/null @@ -1,33 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFtzCCA5+gAwIBAgICBQkwDQYJKoZIhvcNAQEFBQAwRTELMAkGA1UEBhMCQk0x -GTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMTElF1b1ZhZGlzIFJv -b3QgQ0EgMjAeFw0wNjExMjQxODI3MDBaFw0zMTExMjQxODIzMzNaMEUxCzAJBgNV -BAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMRswGQYDVQQDExJRdW9W -YWRpcyBSb290IENBIDIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCa -GMpLlA0ALa8DKYrwD4HIrkwZhR0In6spRIXzL4GtMh6QRr+jhiYaHv5+HBg6XJxg -Fyo6dIMzMH1hVBHL7avg5tKifvVrbxi3Cgst/ek+7wrGsxDp3MJGF/hd/aTa/55J -WpzmM+Yklvc/ulsrHHo1wtZn/qtmUIttKGAr79dgw8eTvI02kfN/+NsRE8Scd3bB -rrcCaoF6qUWD4gXmuVbBlDePSHFjIuwXZQeVikvfj8ZaCuWw419eaxGrDPmF60Tp -+ARz8un+XJiM9XOva7R+zdRcAitMOeGylZUtQofX1bOQQ7dsE/He3fbE+Ik/0XX1 -ksOR1YqI0JDs3G3eicJlcZaLDQP9nL9bFqyS2+r+eXyt66/3FsvbzSUr5R/7mp/i -Ucw6UwxI5g69ybR2BlLmEROFcmMDBOAENisgGQLodKcftslWZvB1JdxnwQ5hYIiz -PtGo/KPaHbDRsSNU30R2be1B2MGyIrZTHN81Hdyhdyox5C315eXbyOD/5YDXC2Og -/zOhD7osFRXql7PSorW+8oyWHhqPHWykYTe5hnMz15eWniN9gqRMgeKh0bpnX5UH -oycR7hYQe7xFSkyyBNKr79X9DFHOUGoIMfmR2gyPZFwDwzqLID9ujWc9Otb+fVuI -yV77zGHcizN300QyNQliBJIWENieJ0f7OyHj+OsdWwIDAQABo4GwMIGtMA8GA1Ud -EwEB/wQFMAMBAf8wCwYDVR0PBAQDAgEGMB0GA1UdDgQWBBQahGK8SEwzJQTU7tD2 -A8QZRtGUazBuBgNVHSMEZzBlgBQahGK8SEwzJQTU7tD2A8QZRtGUa6FJpEcwRTEL -MAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMT -ElF1b1ZhZGlzIFJvb3QgQ0EgMoICBQkwDQYJKoZIhvcNAQEFBQADggIBAD4KFk2f -BluornFdLwUvZ+YTRYPENvbzwCYMDbVHZF34tHLJRqUDGCdViXh9duqWNIAXINzn -g/iN/Ae42l9NLmeyhP3ZRPx3UIHmfLTJDQtyU/h2BwdBR5YM++CCJpNVjP4iH2Bl -fF/nJrP3MpCYUNQ3cVX2kiF495V5+vgtJodmVjB3pjd4M1IQWK4/YY7yarHvGH5K -WWPKjaJW1acvvFYfzznB4vsKqBUsfU16Y8Zsl0Q80m/DShcK+JDSV6IZUaUtl0Ha -B0+pUNqQjZRG4T7wlP0QADj1O+hA4bRuVhogzG9Yje0uRY/W6ZM/57Es3zrWIozc -hLsib9D45MY56QSIPMO661V6bYCZJPVsAfv4l7CUW+v90m/xd2gNNWQjrLhVoQPR -TUIZ3Ph1WVaj+ahJefivDrkRoHy3au000LYmYjgahwz46P0u05B/B5EqHdZ+XIWD -mbA4CD/pXvk1B+TJYm5Xf6dQlfe6yJvmjqIBxdZmv3lh8zwc4bmCXF2gw+nYSL0Z -ohEUGW6yhhtoPkg3Goi3XZZenMfvJ2II4pEZXNLxId26F0KCl3GBUzGpn/Z9Yr9y -4aOTHcyKJloJONDO1w2AFrR4pTqHTI2KpdVGl/IsELm8VCLAAVBpQ570su9t+Oza -8eOx79+Rj1QqCyXBJhnEUhAFZdWCEOrCMc0u ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-122_GeoTrust Primary Certification Authority - G3_GeoTrust Inc.pem b/test/rules/platform_certs/cacert/Cert-122_GeoTrust Primary Certification Authority - G3_GeoTrust Inc.pem deleted file mode 100644 index dc1f859a554e..000000000000 --- a/test/rules/platform_certs/cacert/Cert-122_GeoTrust Primary Certification Authority - G3_GeoTrust Inc.pem +++ /dev/null @@ -1,24 +0,0 @@ ------BEGIN CERTIFICATE----- -MIID/jCCAuagAwIBAgIQFaxulBmyeUtB9iepwxgPHzANBgkqhkiG9w0BAQsFADCB -mDELMAkGA1UEBhMCVVMxFjAUBgNVBAoTDUdlb1RydXN0IEluYy4xOTA3BgNVBAsT -MChjKSAyMDA4IEdlb1RydXN0IEluYy4gLSBGb3IgYXV0aG9yaXplZCB1c2Ugb25s -eTE2MDQGA1UEAxMtR2VvVHJ1c3QgUHJpbWFyeSBDZXJ0aWZpY2F0aW9uIEF1dGhv -cml0eSAtIEczMB4XDTA4MDQwMjAwMDAwMFoXDTM3MTIwMTIzNTk1OVowgZgxCzAJ -BgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMTkwNwYDVQQLEzAoYykg -MjAwOCBHZW9UcnVzdCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxNjA0 -BgNVBAMTLUdlb1RydXN0IFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkg -LSBHMzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANziXmJYHTNXOTIz -+uvLh4yn1ErdBojqZI4xmKU4kB6Yzy5jK/BGvESyiaHAKAxJcCGVn2TAppMSAmUm -hsalifD614SgcK9PGpc/BkTVyetyEH3kMSj7HGHmKAdEc5IiaacDiGydY8hS2pgn -5whMcD60yRLBxWeDXTPzAxHsatBT4tG6NmCUgLthY2xbF37fQJQeqw3CIShwiP/W -JmxsYAQlTlV+fe+/lEjetx3dcI0FX4ilm/LC7urRQEFtYjgdVgbFA0dRIBn8exAL -DmKudlW/X3e+PkkBUz2YJQN2JFodtNuJ6nnltrM7P7pMKEF/BqxqjsHQ9gUdfeZC -huOl1UcCAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYw -HQYDVR0OBBYEFMR5yo6hTgMdHNxr2zFblD4/MH8tMA0GCSqGSIb3DQEBCwUAA4IB -AQAtxRPPVoB7eni9n64smefv2t+UXglpp+duaIy9cr5HqQ6XErhK8WTTOd8lNNTB -zU6B8A8ExCSzNJbGpqow32hhc9f5joWJ7w5elShKKiePEI4ufIbEAp7aDHdlDkQN -kv39sxY2+hENHYwOB4lqKVb3cvTdFZx3NWZXqxNT2I7BQMXXExZacse3aQHEerGD -AWh9jUGhlBjBJVz88P6DAod8DQ3PLghcSkANPuyBYeYk28rgDi0Hsj5W3I31QYUH -SJsMC8tJP33st/3LjWeJGqvtux6jAAgIFyqCXDFdRootD4abdNlF+9RAsXqqaC2G -spki4cErx5z481+oghLrGREt ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-124_Autoridad de Certificacion Firmaprofesional CIF A62634068.pem b/test/rules/platform_certs/cacert/Cert-124_Autoridad de Certificacion Firmaprofesional CIF A62634068.pem deleted file mode 100644 index 74be49140e8e..000000000000 --- a/test/rules/platform_certs/cacert/Cert-124_Autoridad de Certificacion Firmaprofesional CIF A62634068.pem +++ /dev/null @@ -1,26 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEVzCCAz+gAwIBAgIBATANBgkqhkiG9w0BAQUFADCBnTELMAkGA1UEBhMCRVMx -IjAgBgNVBAcTGUMvIE11bnRhbmVyIDI0NCBCYXJjZWxvbmExQjBABgNVBAMTOUF1 -dG9yaWRhZCBkZSBDZXJ0aWZpY2FjaW9uIEZpcm1hcHJvZmVzaW9uYWwgQ0lGIEE2 -MjYzNDA2ODEmMCQGCSqGSIb3DQEJARYXY2FAZmlybWFwcm9mZXNpb25hbC5jb20w -HhcNMDExMDI0MjIwMDAwWhcNMTMxMDI0MjIwMDAwWjCBnTELMAkGA1UEBhMCRVMx -IjAgBgNVBAcTGUMvIE11bnRhbmVyIDI0NCBCYXJjZWxvbmExQjBABgNVBAMTOUF1 -dG9yaWRhZCBkZSBDZXJ0aWZpY2FjaW9uIEZpcm1hcHJvZmVzaW9uYWwgQ0lGIEE2 -MjYzNDA2ODEmMCQGCSqGSIb3DQEJARYXY2FAZmlybWFwcm9mZXNpb25hbC5jb20w -ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDnIwNvbyOlXnjOlSztlB5u -Cp4Bx+ow0Syd3Tfom5h5VtP8c9/Qit5Vj1H5WuretXDE7aTt/6MNbg9kUDGvASdY -rv5sp0ovFy3Tc9UTHI9ZpTQsHVQERc1ouKDAA6XPhUJHlShbz++AbOCQl4oBPB3z -hxAwJkh91/zpnZFx/0GaqUC1N5wpIE8fUuOgfRNtVLcK3ulqTgesrBlf3H5idPay -BQC6haD9HThuy1q7hryUZzM1gywfI834yJFxzJeL764P3CkDG8A563DtwW4O2GcL -iam8NeTvtjS0pbbELaW+0MOUJEjb35bTALVmGotmBQ/dPz/LP6pemkr4tErvlTcb -AgMBAAGjgZ8wgZwwKgYDVR0RBCMwIYYfaHR0cDovL3d3dy5maXJtYXByb2Zlc2lv -bmFsLmNvbTASBgNVHRMBAf8ECDAGAQH/AgEBMCsGA1UdEAQkMCKADzIwMDExMDI0 -MjIwMDAwWoEPMjAxMzEwMjQyMjAwMDBaMA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4E -FgQUMwugZtHq2s7eYpMEKFK1FH84aLcwDQYJKoZIhvcNAQEFBQADggEBAEdz/o0n -VPD11HecJ3lXV7cVVuzH2Fi3AQL0M+2TUIiefEaxvT8Ub/GzR0iLjJcG1+p+o1wq -u00vR+L4OQbJnC4xGgN49Lw4xiKLMzHwFgQEffl25EvXwOaD7FnMP97/T2u3Z36m -hoEyIwOdyPdfwUpgpZKpsaSgYMN4h7Mi8yrrW6ntBas3D7Hi05V2Y1Z0jFhyGzfl -ZKG+TQyTmAyX9odtsz/ny4Cm7YjHX1BiAuiZdBbQ5rQ58SfLyEDW44YQqSMSkuBp -QWOnryULwMWSyx6Yo1q6xTMPoJcB3X/ge9YGVM+h4k0460tQtcsm9MracEpqoeJ5 -quGnM/b9Sh/22WA= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-125_Hongkong Post Root CA 1_Hongkong Post.pem b/test/rules/platform_certs/cacert/Cert-125_Hongkong Post Root CA 1_Hongkong Post.pem deleted file mode 100644 index a28e9a0e49b1..000000000000 --- a/test/rules/platform_certs/cacert/Cert-125_Hongkong Post Root CA 1_Hongkong Post.pem +++ /dev/null @@ -1,20 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDMDCCAhigAwIBAgICA+gwDQYJKoZIhvcNAQEFBQAwRzELMAkGA1UEBhMCSEsx -FjAUBgNVBAoTDUhvbmdrb25nIFBvc3QxIDAeBgNVBAMTF0hvbmdrb25nIFBvc3Qg -Um9vdCBDQSAxMB4XDTAzMDUxNTA1MTMxNFoXDTIzMDUxNTA0NTIyOVowRzELMAkG -A1UEBhMCSEsxFjAUBgNVBAoTDUhvbmdrb25nIFBvc3QxIDAeBgNVBAMTF0hvbmdr -b25nIFBvc3QgUm9vdCBDQSAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC -AQEArP84tulmAknjorThkPlAj3n54r15/gK97iSSHSL22oVyaf7XPwnU3ZG1ApzQ -jVrhVcNQhrkpJsLj2aDxaQMoIIBFIi1WpztUlVYiWR8o3x8gPW2iNr4joLFutbEn -PzlTCeqrauh0ssJlXI6/fMN4hM2eFvz1Lk8gKgifd/PFHsSaUmYeSF7jEAaPIpjh -ZY4bXSNmO7ilMlHIhqqhqZ5/dpTCpmy3QfDVyAY45tQM4vM7TG1QjMSDJ8EThFk9 -nnV0ttgCXjqQesBCNnLsak3c78QA3xMYV18meMjWCnl3v/evt3a5pQuEF10Q6m/h -q5URX208o1xNg1vysxmKgIsLhwIDAQABoyYwJDASBgNVHRMBAf8ECDAGAQH/AgED -MA4GA1UdDwEB/wQEAwIBxjANBgkqhkiG9w0BAQUFAAOCAQEADkbVPK7ih9legYsC -mEEIjEy82tvuJxuC52pF7BaLT4Wg87JwvVqWuspube5Gi27nKi6Wsxkz67SfqLI3 -7piol7Yutmcn1KZJ/RyTZXaeQi/cImyaT/JaFTmxcdcrUehtHJjA2Sr0oYJ71clB -oiMBdDhViw+5LmeiIAQ32pwL0xch4I+XeTRvhEgCIDMb5jREn5Fw9IBehEPCKdJs -EhTkYY2sEJCehFC78JZvRZ+K88psT/oROhUVRsPNH4NbLUES7VBnQRM9IauUiqpO -fMGx+6fWtScvl6tu4B3i0RwsH0Ti/L6RoZz71ilTc4afU9hDDl3WY4JxHYB0yvbi -AmvZWg== ------END CERTIFICATE----- diff --git "a/test/rules/platform_certs/cacert/Cert-126_NetLock Arany (Class Gold) F\305\221tan\303\272s\303\255tv\303\241ny_NetLock Kft.pem" "b/test/rules/platform_certs/cacert/Cert-126_NetLock Arany (Class Gold) F\305\221tan\303\272s\303\255tv\303\241ny_NetLock Kft.pem" deleted file mode 100644 index 56b9ee4774ee..000000000000 --- "a/test/rules/platform_certs/cacert/Cert-126_NetLock Arany (Class Gold) F\305\221tan\303\272s\303\255tv\303\241ny_NetLock Kft.pem" +++ /dev/null @@ -1,24 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEFTCCAv2gAwIBAgIGSUEs5AAQMA0GCSqGSIb3DQEBCwUAMIGnMQswCQYDVQQG -EwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFTATBgNVBAoMDE5ldExvY2sgS2Z0LjE3 -MDUGA1UECwwuVGFuw7pzw610dsOhbnlraWFkw7NrIChDZXJ0aWZpY2F0aW9uIFNl -cnZpY2VzKTE1MDMGA1UEAwwsTmV0TG9jayBBcmFueSAoQ2xhc3MgR29sZCkgRsWR -dGFuw7pzw610dsOhbnkwHhcNMDgxMjExMTUwODIxWhcNMjgxMjA2MTUwODIxWjCB -pzELMAkGA1UEBhMCSFUxETAPBgNVBAcMCEJ1ZGFwZXN0MRUwEwYDVQQKDAxOZXRM -b2NrIEtmdC4xNzA1BgNVBAsMLlRhbsO6c8OtdHbDoW55a2lhZMOzayAoQ2VydGlm -aWNhdGlvbiBTZXJ2aWNlcykxNTAzBgNVBAMMLE5ldExvY2sgQXJhbnkgKENsYXNz -IEdvbGQpIEbFkXRhbsO6c8OtdHbDoW55MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A -MIIBCgKCAQEAxCRec75LbRTDofTjl5Bu0jBFHjzuZ9lk4BqKf8owyoPjIMHj9DrT -lF8afFttvzBPhCf2nx9JvMaZCpDyD/V/Q4Q3Y1GLeqVw/HpYzY6b7cNGbIRwXdrz -AZAj/E4wqX7hJ2Pn7WQ8oLjJM2P+FpD/sLj916jAwJRDC7bVWaaeVtAkH3B5r9s5 -VA1lddkVQZQBr17s9o3x/61k/iCa11zr/qYfCGSji3ZVrR47KGAuhyXoqq8fxmRG -ILdwfzzeSNuWU7c5d+Qa4scWhHaXWy+7GRWF+GmF9ZmnqfI0p6m2pgP8b4Y9VHx2 -BJtr+UBdADTHLpl1neWIA6pN+APSQnbAGwIDAKiLo0UwQzASBgNVHRMBAf8ECDAG -AQH/AgEEMA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUzPpnk/C2uNClwB7zU/2M -U9+D15YwDQYJKoZIhvcNAQELBQADggEBAKt/7hwWqZw8UQCgwBEIBaeZ5m8BiFRh -bvG5GK1Krf6BQCOUL/t1fC8oS2IkgYIL9WHxHG64YTjrgfpioTtaYtOUZcTh5m2C -+C8lcLIhJsFyUR+MLMOEkMNaj7rP9KdlpeuY0fsFskZ1FSNqb4VjMIDw1Z4fKRzC -bLBQWV2QWzuoDTDPv31/zvGdg73JRm4gpvlhUbohL3u+pRVjodSVh/GeufOJ8z2F -uLjbvrW5KfnaNwUASZQDhETnv0Mxz3WLJdH0pmT1kvarBes96aULNmLazAZfNou2 -XjG4Kvte9nHfRCaexOYNkbQudZWAUWpLMKawYqGT8ZvYzsRjdT9ZR7E= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-127_Root CA Generalitat Valenciana_Generalitat Valenciana.pem b/test/rules/platform_certs/cacert/Cert-127_Root CA Generalitat Valenciana_Generalitat Valenciana.pem deleted file mode 100644 index f001356e3821..000000000000 --- a/test/rules/platform_certs/cacert/Cert-127_Root CA Generalitat Valenciana_Generalitat Valenciana.pem +++ /dev/null @@ -1,37 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIGizCCBXOgAwIBAgIEO0XlaDANBgkqhkiG9w0BAQUFADBoMQswCQYDVQQGEwJF -UzEfMB0GA1UEChMWR2VuZXJhbGl0YXQgVmFsZW5jaWFuYTEPMA0GA1UECxMGUEtJ -R1ZBMScwJQYDVQQDEx5Sb290IENBIEdlbmVyYWxpdGF0IFZhbGVuY2lhbmEwHhcN -MDEwNzA2MTYyMjQ3WhcNMjEwNzAxMTUyMjQ3WjBoMQswCQYDVQQGEwJFUzEfMB0G -A1UEChMWR2VuZXJhbGl0YXQgVmFsZW5jaWFuYTEPMA0GA1UECxMGUEtJR1ZBMScw -JQYDVQQDEx5Sb290IENBIEdlbmVyYWxpdGF0IFZhbGVuY2lhbmEwggEiMA0GCSqG -SIb3DQEBAQUAA4IBDwAwggEKAoIBAQDGKqtXETcvIorKA3Qdyu0togu8M1JAJke+ -WmmmO3I2F0zo37i7L3bhQEZ0ZQKQUgi0/6iMweDHiVYQOTPvaLRfX9ptI6GJXiKj -SgbwJ/BXufjpTjJ3Cj9BZPPrZe52/lSqfR0grvPXdMIKX/UIKFIIzFVd0g/bmoGl -u6GzwZTNVOAydTGRGmKy3nXiz0+J2ZGQD0EbtFpKd71ng+CT516nDOeB0/RSrFOy -A8dEJvt55cs0YFAQexvba9dHq198aMpunUEDEO5rmXteJajCq+TA81yc477OMUxk -Hl6AovWDfgzWyoxVjr7gvkkHD6MkQXpYHYTqWBLI4bft75PelAgxAgMBAAGjggM7 -MIIDNzAyBggrBgEFBQcBAQQmMCQwIgYIKwYBBQUHMAGGFmh0dHA6Ly9vY3NwLnBr -aS5ndmEuZXMwEgYDVR0TAQH/BAgwBgEB/wIBAjCCAjQGA1UdIASCAiswggInMIIC -IwYKKwYBBAG/VQIBADCCAhMwggHoBggrBgEFBQcCAjCCAdoeggHWAEEAdQB0AG8A -cgBpAGQAYQBkACAAZABlACAAQwBlAHIAdABpAGYAaQBjAGEAYwBpAPMAbgAgAFIA -YQDtAHoAIABkAGUAIABsAGEAIABHAGUAbgBlAHIAYQBsAGkAdABhAHQAIABWAGEA -bABlAG4AYwBpAGEAbgBhAC4ADQAKAEwAYQAgAEQAZQBjAGwAYQByAGEAYwBpAPMA -bgAgAGQAZQAgAFAAcgDhAGMAdABpAGMAYQBzACAAZABlACAAQwBlAHIAdABpAGYA -aQBjAGEAYwBpAPMAbgAgAHEAdQBlACAAcgBpAGcAZQAgAGUAbAAgAGYAdQBuAGMA -aQBvAG4AYQBtAGkAZQBuAHQAbwAgAGQAZQAgAGwAYQAgAHAAcgBlAHMAZQBuAHQA -ZQAgAEEAdQB0AG8AcgBpAGQAYQBkACAAZABlACAAQwBlAHIAdABpAGYAaQBjAGEA -YwBpAPMAbgAgAHMAZQAgAGUAbgBjAHUAZQBuAHQAcgBhACAAZQBuACAAbABhACAA -ZABpAHIAZQBjAGMAaQDzAG4AIAB3AGUAYgAgAGgAdAB0AHAAOgAvAC8AdwB3AHcA -LgBwAGsAaQAuAGcAdgBhAC4AZQBzAC8AYwBwAHMwJQYIKwYBBQUHAgEWGWh0dHA6 -Ly93d3cucGtpLmd2YS5lcy9jcHMwHQYDVR0OBBYEFHs100DSHHgZZu90ECjcPk+y -eAT8MIGVBgNVHSMEgY0wgYqAFHs100DSHHgZZu90ECjcPk+yeAT8oWykajBoMQsw -CQYDVQQGEwJFUzEfMB0GA1UEChMWR2VuZXJhbGl0YXQgVmFsZW5jaWFuYTEPMA0G -A1UECxMGUEtJR1ZBMScwJQYDVQQDEx5Sb290IENBIEdlbmVyYWxpdGF0IFZhbGVu -Y2lhbmGCBDtF5WgwDQYJKoZIhvcNAQEFBQADggEBACRhTvW1yEICKrNcda3Fbcrn -lD+laJWIwVTAEGmiEi8YPyVQqHxK6sYJ2fR1xkDar1CdPaUWu20xxsdzCkj+IHLt -b8zog2EWRpABlUt9jppSCS/2bxzkoXHPjCpaF3ODR00PNvsETUlR4hTJZGH71BTg -9J63NI8KJr2XXPR5OkowGcytT6CYirQxlyric21+eLj4iIlPsSKRZEv1UN4D2+XF -ducTZnV+ZfsBn5OHiJ35Rld8TWCvmHMTI6QgkYH60GFmuH3Rr9ZvHmw96RH9qfmC -IoaZM3Fa6hlXPZHNqcCjbgcTpsnt+GijnsNacgmHKNHEc8RzGF9QdRYxn7fofMM= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-128_NetLock Kozjegyzoi (Class A) Tanusitvanykiado_NetLock Halozatbiztonsagi Kft.pem b/test/rules/platform_certs/cacert/Cert-128_NetLock Kozjegyzoi (Class A) Tanusitvanykiado_NetLock Halozatbiztonsagi Kft.pem deleted file mode 100644 index c4e610816b42..000000000000 --- a/test/rules/platform_certs/cacert/Cert-128_NetLock Kozjegyzoi (Class A) Tanusitvanykiado_NetLock Halozatbiztonsagi Kft.pem +++ /dev/null @@ -1,37 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIGfTCCBWWgAwIBAgICAQMwDQYJKoZIhvcNAQEEBQAwga8xCzAJBgNVBAYTAkhV -MRAwDgYDVQQIEwdIdW5nYXJ5MREwDwYDVQQHEwhCdWRhcGVzdDEnMCUGA1UEChMe -TmV0TG9jayBIYWxvemF0Yml6dG9uc2FnaSBLZnQuMRowGAYDVQQLExFUYW51c2l0 -dmFueWtpYWRvazE2MDQGA1UEAxMtTmV0TG9jayBLb3pqZWd5em9pIChDbGFzcyBB -KSBUYW51c2l0dmFueWtpYWRvMB4XDTk5MDIyNDIzMTQ0N1oXDTE5MDIxOTIzMTQ0 -N1owga8xCzAJBgNVBAYTAkhVMRAwDgYDVQQIEwdIdW5nYXJ5MREwDwYDVQQHEwhC -dWRhcGVzdDEnMCUGA1UEChMeTmV0TG9jayBIYWxvemF0Yml6dG9uc2FnaSBLZnQu -MRowGAYDVQQLExFUYW51c2l0dmFueWtpYWRvazE2MDQGA1UEAxMtTmV0TG9jayBL -b3pqZWd5em9pIChDbGFzcyBBKSBUYW51c2l0dmFueWtpYWRvMIIBIjANBgkqhkiG -9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvHSMD7tM9DceqQWC2ObhbHDqeLVu0ThEDaiD -zl3S1tWBxdRL51uUcCbbO51qTGL3cfNk1mE7PetzozfZz+qMkjvN9wfcZnSX9EUi -3fRc4L9t875lM+QVOr/bmJBVOMTtplVjC7B4BPTjbsE/jvxReB+SnoPC/tmwqcm8 -WgD/qaiYdPv2LD4VOQ22BFWoDpggQrOxJa1+mm9dU7GrDPzr4PN6s6iz/0b2Y6LY -Oph7tqyF/7AlT3Rj5xMHpQqPBffAZG9+pyeAlt7ULoZgx2srXnN7F+eRP2QM2Esi -NCubMvJIH5+hCoR64sKtlz2O1cH5VqNQ6ca0+pii7pXmKgOM3wIDAQABo4ICnzCC -ApswDgYDVR0PAQH/BAQDAgAGMBIGA1UdEwEB/wQIMAYBAf8CAQQwEQYJYIZIAYb4 -QgEBBAQDAgAHMIICYAYJYIZIAYb4QgENBIICURaCAk1GSUdZRUxFTSEgRXplbiB0 -YW51c2l0dmFueSBhIE5ldExvY2sgS2Z0LiBBbHRhbGFub3MgU3pvbGdhbHRhdGFz -aSBGZWx0ZXRlbGVpYmVuIGxlaXJ0IGVsamFyYXNvayBhbGFwamFuIGtlc3p1bHQu -IEEgaGl0ZWxlc2l0ZXMgZm9seWFtYXRhdCBhIE5ldExvY2sgS2Z0LiB0ZXJtZWtm -ZWxlbG9zc2VnLWJpenRvc2l0YXNhIHZlZGkuIEEgZGlnaXRhbGlzIGFsYWlyYXMg -ZWxmb2dhZGFzYW5hayBmZWx0ZXRlbGUgYXogZWxvaXJ0IGVsbGVub3J6ZXNpIGVs -amFyYXMgbWVndGV0ZWxlLiBBeiBlbGphcmFzIGxlaXJhc2EgbWVndGFsYWxoYXRv -IGEgTmV0TG9jayBLZnQuIEludGVybmV0IGhvbmxhcGphbiBhIGh0dHBzOi8vd3d3 -Lm5ldGxvY2submV0L2RvY3MgY2ltZW4gdmFneSBrZXJoZXRvIGF6IGVsbGVub3J6 -ZXNAbmV0bG9jay5uZXQgZS1tYWlsIGNpbWVuLiBJTVBPUlRBTlQhIFRoZSBpc3N1 -YW5jZSBhbmQgdGhlIHVzZSBvZiB0aGlzIGNlcnRpZmljYXRlIGlzIHN1YmplY3Qg -dG8gdGhlIE5ldExvY2sgQ1BTIGF2YWlsYWJsZSBhdCBodHRwczovL3d3dy5uZXRs -b2NrLm5ldC9kb2NzIG9yIGJ5IGUtbWFpbCBhdCBjcHNAbmV0bG9jay5uZXQuMA0G -CSqGSIb3DQEBBAUAA4IBAQBIJEb3ulZv+sgoA0BO5TE5ayZrU3/b39/zcT0mwBQO -xmd7I6gMc90Bu8bKbjc5VdXHjFYgDigKDtIqpLBJUsY4B/6+CgmM0ZjPytoUMaFP -0jn8DxEsQ8Pdq5PHVT5HfBgaANzze9jyf1JsIPQLX2lS9O74silg6+NJMSEN1rUQ -QeJBCWziGppWS3cC9qCbmieH6FUpccKQn0V4GuEVZD3QDtigdp+uxdAu6tYPVuxk -f1qbFFgBJ34TUMdrKuZoPL9coAob4Q566eKAw+np9v1sEZ7Q5SgnK1QyQhSCdeZK -8CtmdWOMovsEPoMOmzbwGOQmIMOM8CgHrTwXZoi1/baI ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-129_TC TrustCenter Universal CA I_TC TrustCenter GmbH.pem b/test/rules/platform_certs/cacert/Cert-129_TC TrustCenter Universal CA I_TC TrustCenter GmbH.pem deleted file mode 100644 index 8b8caf550273..000000000000 --- a/test/rules/platform_certs/cacert/Cert-129_TC TrustCenter Universal CA I_TC TrustCenter GmbH.pem +++ /dev/null @@ -1,23 +0,0 @@ ------BEGIN CERTIFICATE----- -MIID3TCCAsWgAwIBAgIOHaIAAQAC7LdggHiNtgYwDQYJKoZIhvcNAQEFBQAweTEL -MAkGA1UEBhMCREUxHDAaBgNVBAoTE1RDIFRydXN0Q2VudGVyIEdtYkgxJDAiBgNV -BAsTG1RDIFRydXN0Q2VudGVyIFVuaXZlcnNhbCBDQTEmMCQGA1UEAxMdVEMgVHJ1 -c3RDZW50ZXIgVW5pdmVyc2FsIENBIEkwHhcNMDYwMzIyMTU1NDI4WhcNMjUxMjMx -MjI1OTU5WjB5MQswCQYDVQQGEwJERTEcMBoGA1UEChMTVEMgVHJ1c3RDZW50ZXIg -R21iSDEkMCIGA1UECxMbVEMgVHJ1c3RDZW50ZXIgVW5pdmVyc2FsIENBMSYwJAYD -VQQDEx1UQyBUcnVzdENlbnRlciBVbml2ZXJzYWwgQ0EgSTCCASIwDQYJKoZIhvcN -AQEBBQADggEPADCCAQoCggEBAKR3I5ZEr5D0MacQ9CaHnPM42Q9e3s9B6DGtxnSR -JJZ4Hgmgm5qVSkr1YnwCqMqs+1oEdjneX/H5s7/zA1hV0qq34wQi0fiU2iIIAI3T -fCZdzHd55yx4Oagmcw6iXSVphU9VDprvxrlE4Vc93x9UIuVvZaozhDrzznq+VZeu -jRIPFDPiUHDDSYcTvFHe15gSWu86gzOSBnWLknwSaHtwag+1m7Z3W0hZneTvWq3z -wZ7U10VOylY0Ibw+F1tvdwxIAUMpsN0/lm7mlaoMwCC2/T42J5zjXM9OgdwZu5GQ -fezmlwQek8wiSdeXhrYTCjxDI3d+8NzmzSQfO4ObNDqDNOMCAwEAAaNjMGEwHwYD -VR0jBBgwFoAUkqR1LKSevoFE63n8isWVpesQdXMwDwYDVR0TAQH/BAUwAwEB/zAO -BgNVHQ8BAf8EBAMCAYYwHQYDVR0OBBYEFJKkdSyknr6BROt5/IrFlaXrEHVzMA0G -CSqGSIb3DQEBBQUAA4IBAQAo0uCG1eb4e/CX3CJrO5UUVg8RMKWaTzqwOuAGy2X1 -7caXJ/4l8lfmXpWMPmRgFVp/Lw0BxbFg/UU1z/CyvwbZ71q+s2IhtNerNXxTPqYn -8aEt2hojnczd7Dwtnic0XQ/CNnm8yUpiLe1r2X1BQ3y2qsrtYbE3ghUJGooWMNjs -ydZHcnhLEEYUjl8Or+zHL6sQ17bxbuyGssLoDZJz3KL0Dzq/YSMQiZxIQG5wALPT -ujdEWBF6AmqI8Dc08BnprNRlc/ZpjGSUOnmFKbAWKwyCPwacx/0QK54PLLae4xW/ -2TYcuiUaUj0a7CIMHOCkoj3w6DnPgcB77V0fb8XQC9eY ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-130_GeoTrust Primary Certification Authority_GeoTrust Inc.pem b/test/rules/platform_certs/cacert/Cert-130_GeoTrust Primary Certification Authority_GeoTrust Inc.pem deleted file mode 100644 index 03c70c70531c..000000000000 --- a/test/rules/platform_certs/cacert/Cert-130_GeoTrust Primary Certification Authority_GeoTrust Inc.pem +++ /dev/null @@ -1,21 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDfDCCAmSgAwIBAgIQGKy1av1pthU6Y2yv2vrEoTANBgkqhkiG9w0BAQUFADBY -MQswCQYDVQQGEwJVUzEWMBQGA1UEChMNR2VvVHJ1c3QgSW5jLjExMC8GA1UEAxMo -R2VvVHJ1c3QgUHJpbWFyeSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wNjEx -MjcwMDAwMDBaFw0zNjA3MTYyMzU5NTlaMFgxCzAJBgNVBAYTAlVTMRYwFAYDVQQK -Ew1HZW9UcnVzdCBJbmMuMTEwLwYDVQQDEyhHZW9UcnVzdCBQcmltYXJ5IENlcnRp -ZmljYXRpb24gQXV0aG9yaXR5MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC -AQEAvrgVe//UfH1nrYNke8hCUy3f9oQIIGHWAVlqnEQRr+92/ZV+zmEwu3qDXwK9 -AWbK7hWNb6EwnL2hhZ6UOvNWiAAxz9juapYC2e0DjPt1befquFUWBRaa9OBesYjA -ZIVcFU2Ix7e64HXprQU9nceJSOC7KMgD4TCTZF5SwFlwIjVXiIrxlQqD17wxcwE0 -7e9GceBrAqg1cmuXm2bgyxx5X9gaBGgeRwLmnWDiNpcB3841kt++Z8dtd1k7j53W -kBWUvEI0EME5+bEnPn7WinXFsq+W06Lem+SYvn3h6YGttm/81w7a4DSwDRp35+MI -mO9Y+pyEtzavwt+s0vQQBnBxNQIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4G -A1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQULNVQQZcVi/CPNmFbSvtr2ZnJM5IwDQYJ -KoZIhvcNAQEFBQADggEBAFpwfyzdtzRP9YZRqSa+S7iq8XEN3GHHoOo0Hnp3DwQ1 -6CePbJC/kRYkRj5KTs4rFtULUh38H2eiAkUxT87z+gOneZ1TatnaYzr4gNfTmeGl -4b7UVXGYNTq+k+qurUKykG/g/CFNNWMziUnWm07Kx+dOCQD32sfvmWKZd7aVIl6K -oKv0uHiYyjgZmclynnjNS6yvGaBzEi38wkG6gZHaFloxt/m0cYASSJlyc1pZU8Fj -UjPtp8nSOQJw+uCxQmYpqptR7TBUIhRf2asdweSU8Pj1K/fqynhG1riR/aYNKxoU -AT6A8EKglQdebc3MS6RFjasS6LPeWuWgfOgPIh1a6Vk= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-131_Starfield Root Certificate Authority - G2_Starfield Technologies, Inc.pem b/test/rules/platform_certs/cacert/Cert-131_Starfield Root Certificate Authority - G2_Starfield Technologies, Inc.pem deleted file mode 100644 index c1a0a48106a8..000000000000 --- a/test/rules/platform_certs/cacert/Cert-131_Starfield Root Certificate Authority - G2_Starfield Technologies, Inc.pem +++ /dev/null @@ -1,23 +0,0 @@ ------BEGIN CERTIFICATE----- -MIID3TCCAsWgAwIBAgIBADANBgkqhkiG9w0BAQsFADCBjzELMAkGA1UEBhMCVVMx -EDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoT -HFN0YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xMjAwBgNVBAMTKVN0YXJmaWVs -ZCBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTA5MDkwMTAwMDAw -MFoXDTM3MTIzMTIzNTk1OVowgY8xCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6 -b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMSUwIwYDVQQKExxTdGFyZmllbGQgVGVj -aG5vbG9naWVzLCBJbmMuMTIwMAYDVQQDEylTdGFyZmllbGQgUm9vdCBDZXJ0aWZp -Y2F0ZSBBdXRob3JpdHkgLSBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC -ggEBAL3twQP89o/8ArFvW59I2Z154qK3A2FWGMNHttfKPTUuiUP3oWmb3ooa/RMg -nLRJdzIpVv257IzdIvpy3Cdhl+72WoTsbhm5iSzchFvVdPtrX8WJpRBSiUZV9Lh1 -HOZ/5FSuS/hVclcCGfgXcVnrHigHdMWdSL5stPSksPNkN3mSwOxGXn/hbVNMYq/N -Hwtjuzqd+/x5AJhhdM8mgkBj87JyahkNmcrUDnXMN/uLicFZ8WJ/X7NfZTD4p7dN -dloedl40wOiWVpmKs/B/pM293DIxfJHP4F8R+GuqSVzRmZTRouNjWwl2tVZi4Ut0 -HZbUJtQIBFnQmA4O5t78w+wfkPECAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAO -BgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFHwMMh+n2TB/xH1oo2Kooc6rB1snMA0G -CSqGSIb3DQEBCwUAA4IBAQARWfolTwNvlJk7mh+ChTnUdgWUXuEok21iXQnCoKjU -sHU48TRqneSfioYmUeYs0cYtbpUgSpIB7LiKZ3sx4mcujJUDJi5DnUox9g61DLu3 -4jd/IroAow57UvtruzvE03lRTs2Q9GcHGcg8RnoNAX3FWOdt5oUwF5okxBDgBPfg -8n/Uqgr/Qh037ZTlZFkSIHc40zI+OIF1lnP6aI+xy84fxez6nH7PfrHxBy22/L/K -pL/QlwVKvOoYKAKQvVR4CSFx09F9HdkWsKlhPdAKACL8x3vLCWRFCztAgfd9fDL1 -mMpYjn0q7pBZc2T5NnReJaH1ZgUufzkVqSr7UIuOhWn0 ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-132_COMODO Certification Authority_COMODO CA Limited.pem b/test/rules/platform_certs/cacert/Cert-132_COMODO Certification Authority_COMODO CA Limited.pem deleted file mode 100644 index 6146dcb571bc..000000000000 --- a/test/rules/platform_certs/cacert/Cert-132_COMODO Certification Authority_COMODO CA Limited.pem +++ /dev/null @@ -1,25 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEHTCCAwWgAwIBAgIQToEtioJl4AsC7j41AkblPTANBgkqhkiG9w0BAQUFADCB -gTELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4G -A1UEBxMHU2FsZm9yZDEaMBgGA1UEChMRQ09NT0RPIENBIExpbWl0ZWQxJzAlBgNV -BAMTHkNPTU9ETyBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wNjEyMDEwMDAw -MDBaFw0yOTEyMzEyMzU5NTlaMIGBMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3Jl -YXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01P -RE8gQ0EgTGltaXRlZDEnMCUGA1UEAxMeQ09NT0RPIENlcnRpZmljYXRpb24gQXV0 -aG9yaXR5MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0ECLi3LjkRv3 -UcEbVASY06m/weaKXTuH+7uIzg3jLz8GlvCiKVCZrts7oVewdFFxze1CkU1B/qnI -2GqGd0S7WWaXUF601CxwRM/aN5VCaTwwxHGzUvAhTaHYujl8HJ6jJJ3ygxaYqhZ8 -Q5sVW7euNJH+1GImGEaaP+vB+fGQV+useg2L23IwambV4EajcNxo2f8ESIl33rXp -+2dtQem8Ob0y2WIC8bGoPW43nOIv4tOiJovGuFVDiOEjPqXSJDlqR6sA1KGzqSX+ -DT+nHbrTUcELpNqsOO9VUCQFZUaTNE8tja3G1CEZ0o7KBWFxB3NH5YoZEr0ETc5O -nKVIrLsm9wIDAQABo4GOMIGLMB0GA1UdDgQWBBQLWOWLxkwVN6RAqTCpIb5HNlpW -/zAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zBJBgNVHR8EQjBAMD6g -PKA6hjhodHRwOi8vY3JsLmNvbW9kb2NhLmNvbS9DT01PRE9DZXJ0aWZpY2F0aW9u -QXV0aG9yaXR5LmNybDANBgkqhkiG9w0BAQUFAAOCAQEAPpiem/Yb6dc5t3iuHXIY -SdOH5EOC6z/JqvWote9VfCFSZfnVDeFs9D6Mk3ORLgLETgdxb8CPOGEIqB6BCsAv -IC9Bi5HcSEW88cbeunZrM8gALTFGTO3nnc+IlP8zwFboJIYmuNg4ON8qa90SzMc/ -RxdMosIGlgnW2/4/PEZB31jiVg88O8EckzXZOFKs7sjsLjBOlDW0JB9LeGna8gI4 -zJVSk/BwJVmcIGfE7vmLV2H0knZ9P4SNVbfo5azV8fUZVqZa+5Acr5Pr5RzUZ5dd -BA6+C4OmF4O5MBKgxTMVBbkN+8cFduPYSo38NBejxiEovjBFMR7HeL5YYTisO+IB -ZQ== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-133_VeriSign Class 1 Public Primary Certification Authority - G3_VeriSign, Inc.pem b/test/rules/platform_certs/cacert/Cert-133_VeriSign Class 1 Public Primary Certification Authority - G3_VeriSign, Inc.pem deleted file mode 100644 index 3938d8727b94..000000000000 --- a/test/rules/platform_certs/cacert/Cert-133_VeriSign Class 1 Public Primary Certification Authority - G3_VeriSign, Inc.pem +++ /dev/null @@ -1,24 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEGjCCAwICEQCLW3VWhFSFCwDPrzhIzrGkMA0GCSqGSIb3DQEBBQUAMIHKMQsw -CQYDVQQGEwJVUzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZl -cmlTaWduIFRydXN0IE5ldHdvcmsxOjA4BgNVBAsTMShjKSAxOTk5IFZlcmlTaWdu -LCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxRTBDBgNVBAMTPFZlcmlT -aWduIENsYXNzIDEgUHVibGljIFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3Jp -dHkgLSBHMzAeFw05OTEwMDEwMDAwMDBaFw0zNjA3MTYyMzU5NTlaMIHKMQswCQYD -VQQGEwJVUzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlT -aWduIFRydXN0IE5ldHdvcmsxOjA4BgNVBAsTMShjKSAxOTk5IFZlcmlTaWduLCBJ -bmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxRTBDBgNVBAMTPFZlcmlTaWdu -IENsYXNzIDEgUHVibGljIFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkg -LSBHMzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAN2E1Lm0+afY8wR4 -nN493GwTFtl63SRRZsDHJlkNrAYIwpTRMx/wgzUfbhvI3qpuFU5UJ+/EbRrsC+MO -8ESlV8dAWB6jRx9x7GD2bZTIGDnt/kIYVt/kTEkQeE4BdjVjEjbdZrwBBDajVWjV -ojYJrKshJlQGrT/KFOCsyq0GHZXi+J3x4GD/wn91K0zM2v6HmSHquv4+VNfSWXjb -PG7PoBMAGrgnoeS+Z5bKoMWznN3JdZ7rMJpfo83ZrngZPyPpXNspva1VyBtUjGP2 -6KbqxzcSXKMpHgLZ2x87tNcPVkeBFQRKr4Mn0cVYiMHd9qqnoxjaaKptEVHhv2Vr -n5Z20T0CAwEAATANBgkqhkiG9w0BAQUFAAOCAQEAq2aN17O6x5q25lXQBfGfMY1a -qtmqRiYPce2lrVNWYgFHKkTp/j90CxObufRNG7LRX7K20ohcs5/Ny9Sn2WCVhDr4 -wTcdYcrnsMXlkdpUpqwxga6X3s0IrLjAl4B/bnKk52kTlWUfxJM8/XmPBNQ+T+r3 -ns7NZ3xPZQL/kYVUc8f/NveGLezQXk//EZ9yBta4GvFMDSZl4kSAHsef493oCtrs -pSCAaWihT37ha88HQfqDjrw43bAuEbFrskLMmrz5SCJ5ShkPshw+IHTZasO+8ih4 -E1Z5T21Q6huwtVexN2ZYI/PcD98Kh8TvhgXVOBRgmaNL3gaWcSzy27YfpO8/7g== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-134_Microsec e-Szigno Root CA_Microsec Ltd.pem b/test/rules/platform_certs/cacert/Cert-134_Microsec e-Szigno Root CA_Microsec Ltd.pem deleted file mode 100644 index 01bb0be01f1b..000000000000 --- a/test/rules/platform_certs/cacert/Cert-134_Microsec e-Szigno Root CA_Microsec Ltd.pem +++ /dev/null @@ -1,43 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIHqDCCBpCgAwIBAgIRAMy4579OKRr9otxmpRwsDxEwDQYJKoZIhvcNAQEFBQAw -cjELMAkGA1UEBhMCSFUxETAPBgNVBAcTCEJ1ZGFwZXN0MRYwFAYDVQQKEw1NaWNy -b3NlYyBMdGQuMRQwEgYDVQQLEwtlLVN6aWdubyBDQTEiMCAGA1UEAxMZTWljcm9z -ZWMgZS1Temlnbm8gUm9vdCBDQTAeFw0wNTA0MDYxMjI4NDRaFw0xNzA0MDYxMjI4 -NDRaMHIxCzAJBgNVBAYTAkhVMREwDwYDVQQHEwhCdWRhcGVzdDEWMBQGA1UEChMN -TWljcm9zZWMgTHRkLjEUMBIGA1UECxMLZS1Temlnbm8gQ0ExIjAgBgNVBAMTGU1p -Y3Jvc2VjIGUtU3ppZ25vIFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAw -ggEKAoIBAQDtyADVgXvNOABHzNuEwSFpLHSQDCHZU4ftPkNEU6+r+ICbPHiN1I2u -uO/TEdyB5s87lozWbxXGd36hL+BfkrYn13aaHUM86tnsL+4582pnS4uCzyL4ZVX+ -LMsvfUh6PXX5qqAnu3jCBspRwn5mS6/NoqdNAoI/gqyFxuEPkEeZlApxcpMqyabA -vjxWTHOSJ/FrtfX9/DAFYJLG65Z+AZHCabEeHXtTRbjcQR/Ji3HWVBTji1R4P770 -Yjtb9aPs1ZJ04nQw7wHb4dSrmZsqa/i9phyGI0Jf7Enemotb9HI6QMVJPqW+jqpx -62z69Rrkav17fVVA71hu5tnVvCSrwe+3AgMBAAGjggQ3MIIEMzBnBggrBgEFBQcB -AQRbMFkwKAYIKwYBBQUHMAGGHGh0dHBzOi8vcmNhLmUtc3ppZ25vLmh1L29jc3Aw -LQYIKwYBBQUHMAKGIWh0dHA6Ly93d3cuZS1zemlnbm8uaHUvUm9vdENBLmNydDAP -BgNVHRMBAf8EBTADAQH/MIIBcwYDVR0gBIIBajCCAWYwggFiBgwrBgEEAYGoGAIB -AQEwggFQMCgGCCsGAQUFBwIBFhxodHRwOi8vd3d3LmUtc3ppZ25vLmh1L1NaU1ov -MIIBIgYIKwYBBQUHAgIwggEUHoIBEABBACAAdABhAG4A+gBzAO0AdAB2AOEAbgB5 -ACAA6QByAHQAZQBsAG0AZQB6AOkAcwDpAGgAZQB6ACAA6QBzACAAZQBsAGYAbwBn -AGEAZADhAHMA4QBoAG8AegAgAGEAIABTAHoAbwBsAGcA4QBsAHQAYQB0APMAIABT -AHoAbwBsAGcA4QBsAHQAYQB0AOEAcwBpACAAUwB6AGEAYgDhAGwAeQB6AGEAdABh -ACAAcwB6AGUAcgBpAG4AdAAgAGsAZQBsAGwAIABlAGwAagDhAHIAbgBpADoAIABo -AHQAdABwADoALwAvAHcAdwB3AC4AZQAtAHMAegBpAGcAbgBvAC4AaAB1AC8AUwBa -AFMAWgAvMIHIBgNVHR8EgcAwgb0wgbqggbeggbSGIWh0dHA6Ly93d3cuZS1zemln -bm8uaHUvUm9vdENBLmNybIaBjmxkYXA6Ly9sZGFwLmUtc3ppZ25vLmh1L0NOPU1p -Y3Jvc2VjJTIwZS1Temlnbm8lMjBSb290JTIwQ0EsT1U9ZS1Temlnbm8lMjBDQSxP -PU1pY3Jvc2VjJTIwTHRkLixMPUJ1ZGFwZXN0LEM9SFU/Y2VydGlmaWNhdGVSZXZv -Y2F0aW9uTGlzdDtiaW5hcnkwDgYDVR0PAQH/BAQDAgEGMIGWBgNVHREEgY4wgYuB -EGluZm9AZS1zemlnbm8uaHWkdzB1MSMwIQYDVQQDDBpNaWNyb3NlYyBlLVN6aWdu -w7MgUm9vdCBDQTEWMBQGA1UECwwNZS1TemlnbsOzIEhTWjEWMBQGA1UEChMNTWlj -cm9zZWMgS2Z0LjERMA8GA1UEBxMIQnVkYXBlc3QxCzAJBgNVBAYTAkhVMIGsBgNV -HSMEgaQwgaGAFMegSXUWYYTbMUuE0vE3QJDvTtz3oXakdDByMQswCQYDVQQGEwJI -VTERMA8GA1UEBxMIQnVkYXBlc3QxFjAUBgNVBAoTDU1pY3Jvc2VjIEx0ZC4xFDAS -BgNVBAsTC2UtU3ppZ25vIENBMSIwIAYDVQQDExlNaWNyb3NlYyBlLVN6aWdubyBS -b290IENBghEAzLjnv04pGv2i3GalHCwPETAdBgNVHQ4EFgQUx6BJdRZhhNsxS4TS -8TdAkO9O3PcwDQYJKoZIhvcNAQEFBQADggEBANMTnGZjWS7KXHAM/IO8VbH0jgds -ZifOwTsgqRy7RlRw7lrMoHfqaEQn6/Ip3Xep1fvj1KcExJW4C+FEaGAHQzAxQmHl -7tnlJNUb3+FKG6qfx1/4ehHqE5MAyopYse7tDk2016g2JnzgOsHVV4Lxdbb9iV/a -86g4nzUGCM4ilb7N1fy+W955a9x6qWVmvrElWl/tftOsRm1M9DKHtCAE4Gx4sHfR -hUZLphK3dehKyVZs15KrnfVJONJPU+NVkBHbmJbGSfI+9J8b4PeI3CVimUTYc78/ -MPMMNz7UwiiAc7EBt51alhQBS6kRnSlqLtBdgcDPsiBDxwPgN05dCtxZICU= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-135_QuoVadis Root CA 3_QuoVadis Limited.pem b/test/rules/platform_certs/cacert/Cert-135_QuoVadis Root CA 3_QuoVadis Limited.pem deleted file mode 100644 index bda7b1aa5923..000000000000 --- a/test/rules/platform_certs/cacert/Cert-135_QuoVadis Root CA 3_QuoVadis Limited.pem +++ /dev/null @@ -1,38 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIGnTCCBIWgAwIBAgICBcYwDQYJKoZIhvcNAQEFBQAwRTELMAkGA1UEBhMCQk0x -GTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMTElF1b1ZhZGlzIFJv -b3QgQ0EgMzAeFw0wNjExMjQxOTExMjNaFw0zMTExMjQxOTA2NDRaMEUxCzAJBgNV -BAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMRswGQYDVQQDExJRdW9W -YWRpcyBSb290IENBIDMwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDM -V0IWVJzmmNPTTe7+7cefQzlKZbPoFog02w1ZkXTPkrgEQK0CSzGrvI2RaNggDhoB -4hp7Thdd4oq3P5kazethq8Jlph+3t723j/z9cI8LoGe+AaJZz3HmDyl2/7FWeUUr -H556VOijKTVopAFPD6QuN+8bv+OPEKhyq1hX51SGyMnzW9os2l2ObjyjPtr7guXd -8lyyBTNvijbO0BNO/79KDDRMpsMhvVAEVeuxu537RR5kFd5VAYwCdrXLoT9Cabwv -vWhDFlaJKjdhkf2mrk7AyxRllDdLkgbvBNDInIjbC3uBr7E9KsRlOni27tyAsdLT -mZw67mtaa7ONt9XOnMK+pUsvFrGeaDsGb659n/je7Mwpp5ijJUMv7/FfJuGITfhe -btfZFG4ZM2mnO4SJk8RTVROhUXhA+LjJou57ulJCg54U7QVSWllWp5f8nT8KKdjc -T5EOE7zelaTfi5m+rJsziO+1ga8bxiJTyPbH7pcUsMV8eFLI8M5ud2CEpukqdiDt -WAEXMJPpGovgc2PZapKUSU60rUqFxKMiMPwJ7Wgic6aIDFUhWMXhOp8q3crhkODZ -c6tsgLjoC2SToJyMGf+z0gzskSaHirOi4XCPLArlzW1oUevaPwV/izLmE1xr/l9A -4iLItLRkT9a6fUg+qGkM17uGcclzuD87nSVL2v9A6wIDAQABo4IBlTCCAZEwDwYD -VR0TAQH/BAUwAwEB/zCB4QYDVR0gBIHZMIHWMIHTBgkrBgEEAb5YAAMwgcUwgZMG -CCsGAQUFBwICMIGGGoGDQW55IHVzZSBvZiB0aGlzIENlcnRpZmljYXRlIGNvbnN0 -aXR1dGVzIGFjY2VwdGFuY2Ugb2YgdGhlIFF1b1ZhZGlzIFJvb3QgQ0EgMyBDZXJ0 -aWZpY2F0ZSBQb2xpY3kgLyBDZXJ0aWZpY2F0aW9uIFByYWN0aWNlIFN0YXRlbWVu -dC4wLQYIKwYBBQUHAgEWIWh0dHA6Ly93d3cucXVvdmFkaXNnbG9iYWwuY29tL2Nw -czALBgNVHQ8EBAMCAQYwHQYDVR0OBBYEFPLAE+CCQz777i9nMpY1XNu4ywLQMG4G -A1UdIwRnMGWAFPLAE+CCQz777i9nMpY1XNu4ywLQoUmkRzBFMQswCQYDVQQGEwJC -TTEZMBcGA1UEChMQUXVvVmFkaXMgTGltaXRlZDEbMBkGA1UEAxMSUXVvVmFkaXMg -Um9vdCBDQSAzggIFxjANBgkqhkiG9w0BAQUFAAOCAgEAT62gLEz6wPJv92ZVqyM0 -7ucp2sNbtrCD2dDQ4iH782CnO11gUyeim/YIIirnv6By5ZwkajGxkHon24QRiSem -d1o417+shvzuXYO8BsbRd2sPbSQvS3pspweWyuOEn62Iix2rFo1bZhfZFvSLgNLd -+LJ2w/w4E6oM3kJpK27zPOuAJ9v1pkQNn1pVWQvVDVJIxa6f8i+AxeoyUDUSly7B -4f/xI4hROJ/yZlZ25w9Rl6VSDE1JUZU2Pb+iSwwQHYaZTKrzchGT5Or2m9qoXadN -t54CrnMAyNojA+j56hl0YgCUyyIgvpSnWbWCar6ZeXqp8kokUvd0/bpO5qgdAm6x -DYBEwa7TIzdfu4V8K5Iu6H6li92Z4b8nby1dqnuH/grdS/yO9SbkbnBCbjPsMZ57 -k8HkyWkaPcBrTiJt7qtYTcbQQcEr6k8Sh17rRdhs9ZgC06DYVYoGmRmioHfRMJ6s -zHXug/WwYjnPbFfiTNKRCw51KBuav/0aQ/HKd/s7j2G4aSgWQgRecCocIdiP4b0j -Wy10QJLZYxkNc91pvGJHvOB0K7Lrfb5BG7XARsWhIstfTsEokt4YutUqKLsRixeT -mJlglFwjz1onl14LBQaTNx47aTbrqZ5hHY8y2o4M1nQ+ewkk2gF3R8Q7zTSMmfXK -4SVhM7JZG+Ju1zdXtg2pEto= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-136_Swisscom Root CA 1_Swisscom.pem b/test/rules/platform_certs/cacert/Cert-136_Swisscom Root CA 1_Swisscom.pem deleted file mode 100644 index 41b460e752c8..000000000000 --- a/test/rules/platform_certs/cacert/Cert-136_Swisscom Root CA 1_Swisscom.pem +++ /dev/null @@ -1,34 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIF2TCCA8GgAwIBAgIQXAuFXAvnWUHfV8w/f52oNjANBgkqhkiG9w0BAQUFADBk -MQswCQYDVQQGEwJjaDERMA8GA1UEChMIU3dpc3Njb20xJTAjBgNVBAsTHERpZ2l0 -YWwgQ2VydGlmaWNhdGUgU2VydmljZXMxGzAZBgNVBAMTElN3aXNzY29tIFJvb3Qg -Q0EgMTAeFw0wNTA4MTgxMjA2MjBaFw0yNTA4MTgyMjA2MjBaMGQxCzAJBgNVBAYT -AmNoMREwDwYDVQQKEwhTd2lzc2NvbTElMCMGA1UECxMcRGlnaXRhbCBDZXJ0aWZp -Y2F0ZSBTZXJ2aWNlczEbMBkGA1UEAxMSU3dpc3Njb20gUm9vdCBDQSAxMIICIjAN -BgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA0LmwqAzZuz8h+BvVM5OAFmUgdbI9 -m2BtRsiMMW8Xw/qabFbtPMWRV8PNq5ZJkCoZSx6jbVfd8StiKHVFXqrWW/oLJdih -FvkcxC7mlSpnzNApbjyFNDhhSbEAn9Y6cV9Nbc5fuankiX9qUvrKm/LcqfmdmUc/ -TilftKaNXXsLmREDA/7n29uj/x2lzZAeAR81sH8A25Bvxn570e56eqeqDFdvpG3F -EzuwpdntMhy0XmeLVNxzh+XTF3xmUHJd1BpYwdnP2IkCb6dJtDZd0KTeByy2dbco -kdaXvij1mB7qWybJvbCXc9qukSbraMH5ORXWZ0sKbU/Lz7DkQnGMU3nn7uHbHaBu -HYwadzVcFh4rUx80i9Fs/PJnB3r1re3WmquhsUvhzDdf/X/NTa64H5xD+SpYVUNF -vJbNcA78yeNmuk6NO4HLFWR7uZToXTNShXEuT46iBhFRyePLoW4xCGQMwtI89Tbo -19AOeCMgkckkKmUpWyL3Ic6DXqTz3kvTaI9GdVyDCW4pa8RwjPWd1yAv/0bSKzjC -L3UcPX7ape8eYIVpQtPM+GP+HkM5haa2Y0EQs3MevNP6yn0WR+Kn1dCjigoIlmJW -bjTb2QK5MHXjBNLnj8KwEUAKrNVxAmKLMb7dxiNYMUJDLXT5xp6mig/p/r+D5kNX -JLrvRjSq1xIBOO0CAwEAAaOBhjCBgzAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0hBBYw -FDASBgdghXQBUwABBgdghXQBUwABMBIGA1UdEwEB/wQIMAYBAf8CAQcwHwYDVR0j -BBgwFoAUAyUv3m+CATpcLNwroWm1Z9SM0/0wHQYDVR0OBBYEFAMlL95vggE6XCzc -K6FptWfUjNP9MA0GCSqGSIb3DQEBBQUAA4ICAQA1EMvspgQNDQ/NwNurqPKIlwzf -ky9NfEBWMXrrpA9gzXrzvsMnjgM+pN0S734edAY8PzHyHHuRMSG08NBsl9Tpl7Ik -Vh5WwzW9iAUPWxAaZOHHgjD5Mq2eUCzneAXQMbFamIp1TpBcahQq4FJHgmDmHtqB -sfsUC1rxn9KVuj7QG9YVHaO+htXbD8BJZLsuUBlL0iT43R4HVtA4oJVwIHaM190e -3p9xxCPvgxNcoyQVTSlAPGrEqdi3pkSlDfTgnXceQHAm/NrZNuR55LU/vJtlvrsR -ls/bxig5OgjOR1tTWsWZ/l2p3e9M1MalrQLmjAcSHm8D0W+go/MpvRLHUKKwf4ip -mXeascClOS5cfGniLLDqN2qk4Vrh9VDlg++luyqI54zb/W1elxmofmZ1a3Hqv7HH -b6D0jqTsNFFbjCYDcKF31QESVwA12yPeDooomf2xEG9L/zgtYE4snOtnta1J7ksf -rK/7DZBaZmBwXarNeNQk7shBoJMBkpxqnvy5JMWzFYJ+vq6VK+uxwNrjAWALXmms -hFZhvnEX/h0TD/7Gh0Xp/jKgGg0TpJRVcaUWi7rKibCyx/yP2FS1k2Kdzs9Z+z0Y -zirLNRWCXf9UIltxUvu3yf5gmwBBZPCqKuy2QkPOiWaByIufOVQDJdMWNY6E0F/6 -MBr1mmz0DlP5OlvRHA== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-138_Entrust Root Certification Authority_Entrust, Inc.pem b/test/rules/platform_certs/cacert/Cert-138_Entrust Root Certification Authority_Entrust, Inc.pem deleted file mode 100644 index 855485cfd028..000000000000 --- a/test/rules/platform_certs/cacert/Cert-138_Entrust Root Certification Authority_Entrust, Inc.pem +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEkTCCA3mgAwIBAgIERWtQVDANBgkqhkiG9w0BAQUFADCBsDELMAkGA1UEBhMC -VVMxFjAUBgNVBAoTDUVudHJ1c3QsIEluYy4xOTA3BgNVBAsTMHd3dy5lbnRydXN0 -Lm5ldC9DUFMgaXMgaW5jb3Jwb3JhdGVkIGJ5IHJlZmVyZW5jZTEfMB0GA1UECxMW -KGMpIDIwMDYgRW50cnVzdCwgSW5jLjEtMCsGA1UEAxMkRW50cnVzdCBSb290IENl -cnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTA2MTEyNzIwMjM0MloXDTI2MTEyNzIw -NTM0MlowgbAxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1FbnRydXN0LCBJbmMuMTkw -NwYDVQQLEzB3d3cuZW50cnVzdC5uZXQvQ1BTIGlzIGluY29ycG9yYXRlZCBieSBy -ZWZlcmVuY2UxHzAdBgNVBAsTFihjKSAyMDA2IEVudHJ1c3QsIEluYy4xLTArBgNV -BAMTJEVudHJ1c3QgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCASIwDQYJ -KoZIhvcNAQEBBQADggEPADCCAQoCggEBALaVtkNC+sZtKm9I35RMOVcF7sN5EUFo -Nu3s/poBj6E4KPz3EEZmLk0eGrEaTsbRwJWIsMn/MYszA9u3g3s+IIRe7bJWKKf4 -4LlAcTfFy0cOlypowCKVYhXbR9n10Cv/gkvJrT7eTNuQgFA/CYqEAOwwCj0Yzfv9 -KlmaI5UXLEWeH25DeW0MXJj+SKfFI0dcXv1u5x609mhF0YaDW6KKjbHjKYD+JXGI -rb68j6xSlkuqUY3kEzEZ6E5Nn9uss2rVvDlUccp6en+Q3X0dgNmBu1kmwhH+5pPi -94DkZfs0Nw4pgHBNrziGLp5/V6+eF67rHMsoIV+2HNjnogQi+dPa2MsCAwEAAaOB -sDCBrTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zArBgNVHRAEJDAi -gA8yMDA2MTEyNzIwMjM0MlqBDzIwMjYxMTI3MjA1MzQyWjAfBgNVHSMEGDAWgBRo -kORnpKZTgMeGZqTx90tD+4S9bTAdBgNVHQ4EFgQUaJDkZ6SmU4DHhmak8fdLQ/uE -vW0wHQYJKoZIhvZ9B0EABBAwDhsIVjcuMTo0LjADAgSQMA0GCSqGSIb3DQEBBQUA -A4IBAQCT1DCw1wMgKtD5Y+iRDAUgqV8ZyntyTtSx29CW+1RaGSwMCPeyvIWonX9t -O1KzKtvn1ISMY/YPyyYBkVBs9F8U4pN0wBOeMDpQ47RgxRzwIkSNcUesyBrJ6Zua -AGAT/3B+XxFNSRuzFVJ7yVTav52Vr2ua2J7p8eRDjeIRRDq/r72DQnNSi6q7pynP -9WQcCk3RvKqsnyrQ/39/2n3qse0wJcGE2jTSW3iDVuycNsMm4hH2Z0kdkquM++v/ -eu6FSqdQgPCnXEqULl8FmTxSQeDNtGPPAUO6nIPcj2A781q0tHuu2guQOHXvgR1m -0vdXcDazv/wor3ElhVsT/h5/WrQ8 ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-139_VeriSign, Inc.pem b/test/rules/platform_certs/cacert/Cert-139_VeriSign, Inc.pem deleted file mode 100644 index c2e9d2bcf2e2..000000000000 --- a/test/rules/platform_certs/cacert/Cert-139_VeriSign, Inc.pem +++ /dev/null @@ -1,19 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDAzCCAmwCEQC5L2DMiJ+hekYJuFtwbIqvMA0GCSqGSIb3DQEBBQUAMIHBMQsw -CQYDVQQGEwJVUzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xPDA6BgNVBAsTM0Ns -YXNzIDIgUHVibGljIFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgLSBH -MjE6MDgGA1UECxMxKGMpIDE5OTggVmVyaVNpZ24sIEluYy4gLSBGb3IgYXV0aG9y -aXplZCB1c2Ugb25seTEfMB0GA1UECxMWVmVyaVNpZ24gVHJ1c3QgTmV0d29yazAe -Fw05ODA1MTgwMDAwMDBaFw0yODA4MDEyMzU5NTlaMIHBMQswCQYDVQQGEwJVUzEX -MBUGA1UEChMOVmVyaVNpZ24sIEluYy4xPDA6BgNVBAsTM0NsYXNzIDIgUHVibGlj -IFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgLSBHMjE6MDgGA1UECxMx -KGMpIDE5OTggVmVyaVNpZ24sIEluYy4gLSBGb3IgYXV0aG9yaXplZCB1c2Ugb25s -eTEfMB0GA1UECxMWVmVyaVNpZ24gVHJ1c3QgTmV0d29yazCBnzANBgkqhkiG9w0B -AQEFAAOBjQAwgYkCgYEAp4gBIXQs5xoD8JjhlzwPIQjxnNuX6Zr8wgQGE75fUsjM -HiwSViy4AWkszJkfrbCWrnkE8hM5wXuYuggs6MKEEyyqaekJ9MepAqRCwiNPStjw -DqL7MWzJ5m+ZJwf15vRMeJ5t60aG+rmGyVTyssSv1EYcWskVMP8NbPUtDm3Of3cC -AwEAATANBgkqhkiG9w0BAQUFAAOBgQByLvl/0fFx+8Se9sVeUYpAmLho+Jscg9ji -nb3/7aHmZuovCfTK1+qlK5X2JGCGTUQug6XELaDTrnhpb3LabK4I8GOSN+a7xDAX -rXfMSTWqz9iP0b63GJZHc2pUIjRkLbYWm1lbtFFZOrMLFPQS32eg9K0yZF6xRnIn -jBJ7xUS0rg== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-140_Staat der Nederlanden Root CA_Staat der Nederlanden.pem b/test/rules/platform_certs/cacert/Cert-140_Staat der Nederlanden Root CA_Staat der Nederlanden.pem deleted file mode 100644 index c4eb117fa250..000000000000 --- a/test/rules/platform_certs/cacert/Cert-140_Staat der Nederlanden Root CA_Staat der Nederlanden.pem +++ /dev/null @@ -1,22 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDujCCAqKgAwIBAgIEAJiWijANBgkqhkiG9w0BAQUFADBVMQswCQYDVQQGEwJO -TDEeMBwGA1UEChMVU3RhYXQgZGVyIE5lZGVybGFuZGVuMSYwJAYDVQQDEx1TdGFh -dCBkZXIgTmVkZXJsYW5kZW4gUm9vdCBDQTAeFw0wMjEyMTcwOTIzNDlaFw0xNTEy -MTYwOTE1MzhaMFUxCzAJBgNVBAYTAk5MMR4wHAYDVQQKExVTdGFhdCBkZXIgTmVk -ZXJsYW5kZW4xJjAkBgNVBAMTHVN0YWF0IGRlciBOZWRlcmxhbmRlbiBSb290IENB -MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmNK1URF6gaYUmHFtvszn -ExvWJw56s2oYHLZhWtVhCb/ekBPHZ+7d89rFDBKeNVU+LCeIQGv33N0iYfXCxw71 -9tV2U02PjLwYdjeFnejKScfST5gTCaI+Ioicf9byEGW07l8Y1Rfj+MX94p2i71MO -hXeiD+EwR+4A5zN9RGcaC1Hoi6CeUJhoNFIfLm0B8mBF8jHrqTFoKbt6QZ7GGX+U -tFE5A3+y3qcym7RHjm+0Sq7lr7HcsBthvJly3uSJt3omXdozSVtSnA71iq3DuD3o -BmrC1SoLbHuEvVYFy4ZlkuxEK7COudxwC0barbxjiDn622r+I/q85Ej0ZytqERAh -SQIDAQABo4GRMIGOMAwGA1UdEwQFMAMBAf8wTwYDVR0gBEgwRjBEBgRVHSAAMDww -OgYIKwYBBQUHAgEWLmh0dHA6Ly93d3cucGtpb3ZlcmhlaWQubmwvcG9saWNpZXMv -cm9vdC1wb2xpY3kwDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBSofeu8Y6R0E3QA -7Jbg0zTBLL9s+DANBgkqhkiG9w0BAQUFAAOCAQEABYSHVXQ2YcG70dTGFagTtJ+k -/rvuFbQvBgwp8qiSpGEN/KtcCFtREytNwiphyPgJWPwtArI5fZlmgb9uXJVFIGzm -eafR2Bwp/MIgJ1HI8XxdNGdphREwxgDS1/PTfLbwMVcoEoJz6TMvplW0C5GUR5z6 -u3pCMuiufi3IvKwUv9kP2Vv8wfl6leF9fpb8cbDCTMjfRTTJzg3ynGQI0DvDKcWy -7ZAEwbEpkcUwb8GpcjPM/l0WFywRaed+/sWDCN+83CI6LiBpIzlWYGeQiy52OfsR -iJf2fL1LuCAWZwWN4jvBcj+UlTfHXbme2JOhF4//DGYVwSR8MnwDHTuhWEUykw== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-141_Autoridad de Certificacion Firmaprofesional CIF A62634068.pem b/test/rules/platform_certs/cacert/Cert-141_Autoridad de Certificacion Firmaprofesional CIF A62634068.pem deleted file mode 100644 index de97f841cbfa..000000000000 --- a/test/rules/platform_certs/cacert/Cert-141_Autoridad de Certificacion Firmaprofesional CIF A62634068.pem +++ /dev/null @@ -1,35 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIGFDCCA/ygAwIBAgIIU+w77vuySF8wDQYJKoZIhvcNAQEFBQAwUTELMAkGA1UE -BhMCRVMxQjBABgNVBAMMOUF1dG9yaWRhZCBkZSBDZXJ0aWZpY2FjaW9uIEZpcm1h -cHJvZmVzaW9uYWwgQ0lGIEE2MjYzNDA2ODAeFw0wOTA1MjAwODM4MTVaFw0zMDEy -MzEwODM4MTVaMFExCzAJBgNVBAYTAkVTMUIwQAYDVQQDDDlBdXRvcmlkYWQgZGUg -Q2VydGlmaWNhY2lvbiBGaXJtYXByb2Zlc2lvbmFsIENJRiBBNjI2MzQwNjgwggIi -MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDKlmuO6vj78aI14H9M2uDDUtd9 -thDIAl6zQyrET2qyyhxdKJp4ERppWVevtSBC5IsP5t9bpgOSL/UR5GLXMnE42QQM -cas9UX4PB99jBVzpv5RvwSmCwLTaUbDBPLutN0pcyvFLNg4kq7/DhHf9qFD0sefG -L9ItWY16Ck6WaVICqjaY7Pz6FIMMNx/Jkjd/14Et5cS54D40/mf0PmbR0/RAz15i -NA9wBj4gGFrO93IbJWyTdBSTo3OxDqqHECNZXyAFGUftaI6SEspd/NYrspI8IM/h -X68gvqB2f3bl7BqGYTM+53u0P6APjqK5am+5hyZvQWyIplD9amML9ZMWGxmPsu2b -m8mQ9QEM3xk9Dz44I8kvjwzRAv4bVdZO0I08r0+k8/6vKtMFnXkIoctXMbScyJCy -Z/QYFpM6/EfY0XiWMR+6KwxfXZmtY4laJCB22N/9q06mIqqdXuYnin1oKaPnirja -EbsXLZmdEyRG98Xi2J+Of8ePdG1asuhy9azuJBCtLxTa/y2aRnFHvkLfuwHb9H/T -KI8xWVvTyQKmtFLKbpf7Q8UIJm+K9Lv9nyiqDdVF8xM6HdjAeI9BZzwelGSuewvF -6NkBiDkal4ZkQdU7hwxu+g/GvUgUvzlN1J5Bto+WHWOWk9mVBngxaJ43BjuAiUVh -OSPHG0SjFeUc+JIwuwIDAQABo4HvMIHsMBIGA1UdEwEB/wQIMAYBAf8CAQEwDgYD -VR0PAQH/BAQDAgEGMB0GA1UdDgQWBBRlzeurNR4APn7VdMActHNHDhpkLzCBpgYD -VR0gBIGeMIGbMIGYBgRVHSAAMIGPMC8GCCsGAQUFBwIBFiNodHRwOi8vd3d3LmZp -cm1hcHJvZmVzaW9uYWwuY29tL2NwczBcBggrBgEFBQcCAjBQHk4AUABhAHMAZQBv -ACAAZABlACAAbABhACAAQgBvAG4AYQBuAG8AdgBhACAANAA3ACAAQgBhAHIAYwBl -AGwAbwBuAGEAIAAwADgAMAAxADcwDQYJKoZIhvcNAQEFBQADggIBABd9oPm03cXF -661LJLWhAqvdpYhKsg9VSytXjDvlMd3+xDLx51tkljYyGOylMnfX40S2wBEqgLk9 -am58m9Ot/MPWo+ZkKXzR4Tgegiv/J2Wv+xYVxC5xhOW1//qkR71kMrv2JYSiJ0L1 -ILDCExARzRAVukKQKtJE4ZYm6zFIEv0q2skGz3QeqUvVhyj5eTSSPi5E6PaPT481 -PyWzOdxjKpBrIF/EUhJOlywqrJ2X3kjyo2bbwtKDlaZmp54lD+kLM5FlClrD2VQS -3a/DTg4fJl4N3LON7NWBcN7STyQF82xO9UxJZo3R/9ILJUFI/lGExkKvgATP0H5k -SeTy36LssUzAKh3ntLFlosS88Zj0qnAHY7S42jtM+kAiMFsRpvAFDsYCA0irhpuF -3dvd6qJ2gHN99ZwExEWN57kci57q13XRcrHedUTnQn3iV2t93Jm8PYMo6oCTjcVM -ZcFwgbg4/EMxsvYDNEeyrPsiBsse3RdHHF9mudMaotoRsaS8I8nkvof/uZS2+F0g -StRf571oe2XyFR7SOqkt6dhrJKyXWERHrVkY8SFlcN7ONGCoQPHzPKTDKCOM/icz -Q0CgFzzr6juwcqajuUpLXhZI9LK8yIySxZ2frHI2vDSANGupi5LAuBft7HZT9SQB -jLMi6Et8Vcad+qMUu2WFbm5PEn4KPJ2V ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-142_Starfield Technologies, Inc.pem b/test/rules/platform_certs/cacert/Cert-142_Starfield Technologies, Inc.pem deleted file mode 100644 index d552e65dddb9..000000000000 --- a/test/rules/platform_certs/cacert/Cert-142_Starfield Technologies, Inc.pem +++ /dev/null @@ -1,24 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEDzCCAvegAwIBAgIBADANBgkqhkiG9w0BAQUFADBoMQswCQYDVQQGEwJVUzEl -MCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjEyMDAGA1UECxMp -U3RhcmZpZWxkIENsYXNzIDIgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDQw -NjI5MTczOTE2WhcNMzQwNjI5MTczOTE2WjBoMQswCQYDVQQGEwJVUzElMCMGA1UE -ChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjEyMDAGA1UECxMpU3RhcmZp -ZWxkIENsYXNzIDIgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwggEgMA0GCSqGSIb3 -DQEBAQUAA4IBDQAwggEIAoIBAQC3Msj+6XGmBIWtDBFk385N78gDGIc/oav7PKaf -8MOh2tTYbitTkPskpD6E8J7oX+zlJ0T1KKY/e97gKvDIr1MvnsoFAZMej2YcOadN -+lq2cwQlZut3f+dZxkqZJRRU6ybH838Z1TBwj6+wRir/resp7defqgSHo9T5iaU0 -X9tDkYI22WY8sbi5gv2cOj4QyDvvBmVmepsZGD3/cVE8MC5fvj13c7JdBmzDI1aa -K4UmkhynArPkPw2vCHmCuDY96pzTNbO8acr1zJ3o/WSNF4Azbl5KXZnJHoe0nRrA -1W4TNSNe35tfPe/W93bC6j67eA0cQmdrBNj41tpvi/JEoAGrAgEDo4HFMIHCMB0G -A1UdDgQWBBS/X7fRzt0fhvRbVazc1xDCDqmI5zCBkgYDVR0jBIGKMIGHgBS/X7fR -zt0fhvRbVazc1xDCDqmI56FspGowaDELMAkGA1UEBhMCVVMxJTAjBgNVBAoTHFN0 -YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xMjAwBgNVBAsTKVN0YXJmaWVsZCBD -bGFzcyAyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5ggEAMAwGA1UdEwQFMAMBAf8w -DQYJKoZIhvcNAQEFBQADggEBAAWdP4id0ckaVaGsafPzWdqbAYcaT1epoXkJKtv3 -L7IezMdeatiDh6GX70k1PncGQVhiv45YuApnP+yz3SFmH8lU+nLMPUxA2IGvd56D -eruix/U0F47ZEUD0/CwqTRV/p2JdLiXTAAsgGh1o+Re49L2L7ShZ3U0WixeDyLJl -xy16paq8U4Zt3VekyvggQQto8PT7dL5WXXp59fkdheMtlb71cZBDzI0fmgAKhynp -VSJYACPq4xJDKVtHCN2MQWplBqjlIapBtJUhlbl90TSrE9atvNziPTnNvT51cKEY -WQPJIrSPnNVeKtelttQKbfi3QBFGmh95DmK/D5fs4C8fF5Q= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-143_certSIGN.pem b/test/rules/platform_certs/cacert/Cert-143_certSIGN.pem deleted file mode 100644 index 0a38740b432b..000000000000 --- a/test/rules/platform_certs/cacert/Cert-143_certSIGN.pem +++ /dev/null @@ -1,20 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDODCCAiCgAwIBAgIGIAYFFnACMA0GCSqGSIb3DQEBBQUAMDsxCzAJBgNVBAYT -AlJPMREwDwYDVQQKEwhjZXJ0U0lHTjEZMBcGA1UECxMQY2VydFNJR04gUk9PVCBD -QTAeFw0wNjA3MDQxNzIwMDRaFw0zMTA3MDQxNzIwMDRaMDsxCzAJBgNVBAYTAlJP -MREwDwYDVQQKEwhjZXJ0U0lHTjEZMBcGA1UECxMQY2VydFNJR04gUk9PVCBDQTCC -ASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALczuX7IJUqOtdu0KBuqV5Do -0SLTZLrTk+jUrIZhQGpgV2hUhE28alQCBf/fm5oqrl0Hj0rDKH/v+yv6efHHrfAQ -UySQi2bJqIirr1qjAOm+ukbuW3N7LBeCgV5iLKECZbO9xSsAfsT8AzNXDe3i+s5d -RdY4zTW2ssHQnIFKquSyAVwdj1+ZxLGt24gh65AIgoDzMKND5pCCrlUoSe1b16kQ -OA7+j0xbm0bqQfWwCHTD0IgztnzXdN/chNFDDnU5oSVAKOp4yw4sLjmdjItuFhwv -JoIQ4uNllAoEwF73XVv4EOLQunpL+943AAAaWyjj0pxzPjKHmKHJUS/X3qwzs08C -AwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAcYwHQYDVR0O -BBYEFOCMm9slSbPxfIbWskKHC9BroNnkMA0GCSqGSIb3DQEBBQUAA4IBAQA+0hyJ -LjX8+HXd5n9liPRyTMks1zJO890ZeUe9jjtbkw9QSSQTaxQGcu8J06Gh40CEyecY -MnQ8SG4Pn0vU9x7Tk4ZkVJdjclDVVc/6IJMCopvDI5NOFlV2oHB5bc0hH88vLbwZ -44gx+FkagQnIl6Z0x2DEW8xXjrJ1/RsCCdtZb3KTafcxQdaIOL+Hsr0Wefmq5L6I -Jd1hJyMctTEHBDa0GpC9oHRxUIltvBTjD4au8as+x6AJzKNI0eDbZOeStc+vckNw -i/nDhDwTqn6Sm1dTk/pwwpEOMfmbZ13pljheX7NzTogVZ96edhBiIL5VaZVDADlN -9u6wWk5JRFRYX0KD ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-144_SecureSign RootCA11_Japan Certification Services, Inc.pem b/test/rules/platform_certs/cacert/Cert-144_SecureSign RootCA11_Japan Certification Services, Inc.pem deleted file mode 100644 index aff52a8e3dd8..000000000000 --- a/test/rules/platform_certs/cacert/Cert-144_SecureSign RootCA11_Japan Certification Services, Inc.pem +++ /dev/null @@ -1,21 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDbTCCAlWgAwIBAgIBATANBgkqhkiG9w0BAQUFADBYMQswCQYDVQQGEwJKUDEr -MCkGA1UEChMiSmFwYW4gQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcywgSW5jLjEcMBoG -A1UEAxMTU2VjdXJlU2lnbiBSb290Q0ExMTAeFw0wOTA0MDgwNDU2NDdaFw0yOTA0 -MDgwNDU2NDdaMFgxCzAJBgNVBAYTAkpQMSswKQYDVQQKEyJKYXBhbiBDZXJ0aWZp -Y2F0aW9uIFNlcnZpY2VzLCBJbmMuMRwwGgYDVQQDExNTZWN1cmVTaWduIFJvb3RD -QTExMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA/XeqpRyQBTvLTJsz -i1oURaTnkBbR31fSIRCkF/3frNYfp+TbfPfs37gD2pRY/V1yfIw/XwFndBWW4wI8 -h9uuywGOwvNmxoVF9ALGOrVisq/6nL+k5tSAMJjzDbaTj6nU2DbysPyKyiyhFTOV -MdrAG/LuYpmGYz+/3ZMqg6h2uRMft85OQoWPIucuGvKVCbIFtUROd6EgvanyTgp9 -UK31BQ1FT0Zx/Sg+U/sE2C3XZR1KG/rPO7AxmjVuyIsG0wCR8pQIZUyxNAYAeoni -8McDWc/V1uinMrPmmECGxc0nEovMe863ETxiYAcjPitAbpSACW22s293bzUIUPsC -h8U+iQIDAQABo0IwQDAdBgNVHQ4EFgQUW/hNT7KlhtQ60vFjmqC+CfZXt94wDgYD -VR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEB -AKChOBZmLqdWHyGcBvod7bkixTgm2E5P7KN/ed5GIaGHd48HCJqypMWvDzKYC3xm -KbabfSVSSUOrTC4rbnpwrxYO4wJs+0LmGJ1F2FXI6Dvd5+H0LgscNFxsWEr7jIhQ -X5Ucv+2rIrVls4W6ng+4reV6G4pQOh29Dbx7VFALuUKvVaAYga1lme++5Jy/xIWr -QbJUb9wlze144o4MjQlJ3WN7WmmWAiGovVJZ6X01y8hSyn+B/tlr0/cR7SXf+Of5 -pPpyl4RTDaXQMhhRdlkUbA/r7F+AjHVDg8OFmP9Mni0N5HeDk061lgeLKBObjBmN -QSdJQO7e5iNEOdyhIta6A/I= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-145_Staat der Nederlanden Root CA - G2_Staat der Nederlanden.pem b/test/rules/platform_certs/cacert/Cert-145_Staat der Nederlanden Root CA - G2_Staat der Nederlanden.pem deleted file mode 100644 index cedf5967a80b..000000000000 --- a/test/rules/platform_certs/cacert/Cert-145_Staat der Nederlanden Root CA - G2_Staat der Nederlanden.pem +++ /dev/null @@ -1,33 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFyjCCA7KgAwIBAgIEAJiWjDANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQGEwJO -TDEeMBwGA1UECgwVU3RhYXQgZGVyIE5lZGVybGFuZGVuMSswKQYDVQQDDCJTdGFh -dCBkZXIgTmVkZXJsYW5kZW4gUm9vdCBDQSAtIEcyMB4XDTA4MDMyNjExMTgxN1oX -DTIwMDMyNTExMDMxMFowWjELMAkGA1UEBhMCTkwxHjAcBgNVBAoMFVN0YWF0IGRl -ciBOZWRlcmxhbmRlbjErMCkGA1UEAwwiU3RhYXQgZGVyIE5lZGVybGFuZGVuIFJv -b3QgQ0EgLSBHMjCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMVZ5291 -qj5LnLW4rJ4L5PnZyqtdj7U5EILXr1HgO+EASGrP2uEGQxGZqhQlEq0i6ABtQ8Sp -uOUfiUtnvWFI7/3S4GCI5bkYYCjDdyutsDeqN95kWSpGV+RLufg3fNU254DBtvPU -Z5uW6M7XxgpT0GtJlvOjCwV3SPcl5XCsMBQgJeN/dVrlSPhOewMHBPqCYYdu8DvE -pMfQ9XQ+pV0aCPKbJdL2rAQmPlU6Yiile7Iwr/g3wtG61jj99O9JMDeZJiFIhQGp -5Rbn3JBV3w/oOM2ZNyFPXfUib2rFEhZgF1XyZWampzCROME4HYYEhLoaJXhena/M -UGDWE4dS7WMfbWV9whUYdMrhfmQpjHLYFhN9C0lK8SgbIHRrxT3dsKpICT0ugpTN -GmXZK4iambwYfp/ufWZ8Pr2UuIHOzZgweMFvZ9C+X+Bo7d7iscksWXiSqt8rYGPy -5V6548r6f1CGPqI0GAwJaCgRHOThuVw+R7oyPxjMW4T182t0xHJ04eOLoEq9jWYv -6q012iDTiIJh8BIitrzQ1aTsr1SIJSQ8p22xcik/Plemf1WvbibG/ufMQFxRRIEK -eN5KzlW/HdXZt1bv8Hb/C3m1r737qWmRRpdogBQ2HbN/uymYNqUg+oJgYjOk7Na6 -B6duxc8UpufWkjTYgfX8HV2qXB72o007uPc5AgMBAAGjgZcwgZQwDwYDVR0TAQH/ -BAUwAwEB/zBSBgNVHSAESzBJMEcGBFUdIAAwPzA9BggrBgEFBQcCARYxaHR0cDov -L3d3dy5wa2lvdmVyaGVpZC5ubC9wb2xpY2llcy9yb290LXBvbGljeS1HMjAOBgNV -HQ8BAf8EBAMCAQYwHQYDVR0OBBYEFJFoMocVHYnitfGsNig0jQt8YojrMA0GCSqG -SIb3DQEBCwUAA4ICAQCoQUpnKpKBglBu4dfYszk78wIVCVBR7y29JHuIhjv5tLyS -CZa59sCrI2AGeYwRTlHSeYAz+51IvuxBQ4EffkdAHOV6CMqqi3WtFMTC6GY8ggen -5ieCWxjmD27ZUD6KQhgpxrRW/FYQoAUXvQwjf/ST7ZwaUb7dRUG/kSS0H4zpX897 -IZmflZ85OkYcbPnNe5yQzSipx6lVu6xiNGI1E0sUOlWDuYaNkqbG9AclVMwWVxJK -gnjIFNkXgiYtXSAfea7+1HAWFpWD2DU5/1JddRwWxRNVz0fMdWVSSt7wsKfkCpYL -+63C4iWEst3kvX5ZbJvw8NjnyvLplzh+ib7M+zkXYT9y2zqR2GUBGR2tUKRXCnxL -vJxxcypFURmFzI79R6d0lR2o0a9OF7FpJsKqeFdbxU2n5Z4FF5TKsl+gSRiNNOkm -bEgeqmiSBeGCc1qb3AdbCG19ndeNIdn8FCCqwkXfP+cAslHkwvgFuXkajDTznlvk -N1trSt8sV4pAWja63XVECDdCcAz+3F4hoKOKwJCcaNpQ5kUQR3i2TtJlycM33+FC -Y7BXN0Ute4qcvwXqZVUz9zkQxSgqIXobisQk+T8VyJoVIPVVYpbtbZNQvOSqeK3Z -ywplh6ZmwcSBo3c6WB4L7oOLnR7SUqTMHW+wmG2UMbX4cQrcufx9MmDm66+KAQ== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-146_NetLock Uzleti (Class B) Tanusitvanykiado_NetLock Halozatbiztonsagi Kft.pem b/test/rules/platform_certs/cacert/Cert-146_NetLock Uzleti (Class B) Tanusitvanykiado_NetLock Halozatbiztonsagi Kft.pem deleted file mode 100644 index dd373608e83b..000000000000 --- a/test/rules/platform_certs/cacert/Cert-146_NetLock Uzleti (Class B) Tanusitvanykiado_NetLock Halozatbiztonsagi Kft.pem +++ /dev/null @@ -1,31 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFSzCCBLSgAwIBAgIBaTANBgkqhkiG9w0BAQQFADCBmTELMAkGA1UEBhMCSFUx -ETAPBgNVBAcTCEJ1ZGFwZXN0MScwJQYDVQQKEx5OZXRMb2NrIEhhbG96YXRiaXp0 -b25zYWdpIEtmdC4xGjAYBgNVBAsTEVRhbnVzaXR2YW55a2lhZG9rMTIwMAYDVQQD -EylOZXRMb2NrIFV6bGV0aSAoQ2xhc3MgQikgVGFudXNpdHZhbnlraWFkbzAeFw05 -OTAyMjUxNDEwMjJaFw0xOTAyMjAxNDEwMjJaMIGZMQswCQYDVQQGEwJIVTERMA8G -A1UEBxMIQnVkYXBlc3QxJzAlBgNVBAoTHk5ldExvY2sgSGFsb3phdGJpenRvbnNh -Z2kgS2Z0LjEaMBgGA1UECxMRVGFudXNpdHZhbnlraWFkb2sxMjAwBgNVBAMTKU5l -dExvY2sgVXpsZXRpIChDbGFzcyBCKSBUYW51c2l0dmFueWtpYWRvMIGfMA0GCSqG -SIb3DQEBAQUAA4GNADCBiQKBgQCx6gTsIKAjwo84YM/HRrPVG/77uZmeBNwcf4xK -gZjupNTKihe5In+DCnVMm8Bp2GQ5o+2So/1bXHQawEfKOml2mrriRBf8TKPV/riX -iK+IA4kfpPIEPsgHC+b5sy96YhQJRhTKZPWLgLViqNhr1nGTLbO/CVRY7QbrqHvc -Q7GhaQIDAQABo4ICnzCCApswEgYDVR0TAQH/BAgwBgEB/wIBBDAOBgNVHQ8BAf8E -BAMCAAYwEQYJYIZIAYb4QgEBBAQDAgAHMIICYAYJYIZIAYb4QgENBIICURaCAk1G -SUdZRUxFTSEgRXplbiB0YW51c2l0dmFueSBhIE5ldExvY2sgS2Z0LiBBbHRhbGFu -b3MgU3pvbGdhbHRhdGFzaSBGZWx0ZXRlbGVpYmVuIGxlaXJ0IGVsamFyYXNvayBh -bGFwamFuIGtlc3p1bHQuIEEgaGl0ZWxlc2l0ZXMgZm9seWFtYXRhdCBhIE5ldExv -Y2sgS2Z0LiB0ZXJtZWtmZWxlbG9zc2VnLWJpenRvc2l0YXNhIHZlZGkuIEEgZGln -aXRhbGlzIGFsYWlyYXMgZWxmb2dhZGFzYW5hayBmZWx0ZXRlbGUgYXogZWxvaXJ0 -IGVsbGVub3J6ZXNpIGVsamFyYXMgbWVndGV0ZWxlLiBBeiBlbGphcmFzIGxlaXJh -c2EgbWVndGFsYWxoYXRvIGEgTmV0TG9jayBLZnQuIEludGVybmV0IGhvbmxhcGph -biBhIGh0dHBzOi8vd3d3Lm5ldGxvY2submV0L2RvY3MgY2ltZW4gdmFneSBrZXJo -ZXRvIGF6IGVsbGVub3J6ZXNAbmV0bG9jay5uZXQgZS1tYWlsIGNpbWVuLiBJTVBP -UlRBTlQhIFRoZSBpc3N1YW5jZSBhbmQgdGhlIHVzZSBvZiB0aGlzIGNlcnRpZmlj -YXRlIGlzIHN1YmplY3QgdG8gdGhlIE5ldExvY2sgQ1BTIGF2YWlsYWJsZSBhdCBo -dHRwczovL3d3dy5uZXRsb2NrLm5ldC9kb2NzIG9yIGJ5IGUtbWFpbCBhdCBjcHNA -bmV0bG9jay5uZXQuMA0GCSqGSIb3DQEBBAUAA4GBAATbrowXr/gOkDFOzT4JwG06 -sPgzTEdM43WIEJessDgVkcYplswhwG08pXTP2IKlOcNl40JwuyKQ433bNXbhoLXa -n3BukxowOR0w2y7jfLKRstE3Kfq51hdcR0/jHTjrn9V7lagonhVK0dHQKwCXoOKS -NitjrFgBazMpUIaD8QFI ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-147_WellsSecure Public Root Certificate Authority_Wells Fargo WellsSecure.pem b/test/rules/platform_certs/cacert/Cert-147_WellsSecure Public Root Certificate Authority_Wells Fargo WellsSecure.pem deleted file mode 100644 index 5a265ef0c8f7..000000000000 --- a/test/rules/platform_certs/cacert/Cert-147_WellsSecure Public Root Certificate Authority_Wells Fargo WellsSecure.pem +++ /dev/null @@ -1,28 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEvTCCA6WgAwIBAgIBATANBgkqhkiG9w0BAQUFADCBhTELMAkGA1UEBhMCVVMx -IDAeBgNVBAoMF1dlbGxzIEZhcmdvIFdlbGxzU2VjdXJlMRwwGgYDVQQLDBNXZWxs -cyBGYXJnbyBCYW5rIE5BMTYwNAYDVQQDDC1XZWxsc1NlY3VyZSBQdWJsaWMgUm9v -dCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwHhcNMDcxMjEzMTcwNzU0WhcNMjIxMjE0 -MDAwNzU0WjCBhTELMAkGA1UEBhMCVVMxIDAeBgNVBAoMF1dlbGxzIEZhcmdvIFdl -bGxzU2VjdXJlMRwwGgYDVQQLDBNXZWxscyBGYXJnbyBCYW5rIE5BMTYwNAYDVQQD -DC1XZWxsc1NlY3VyZSBQdWJsaWMgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkw -ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDub7S9eeKPCCGeOARBJe+r -WxxTkqxtnt3CxC5FlAM1iGd0V+PfjLindo8796jE2yljDpFoNoqXjopxaAkH5OjU -Dk/41itMpBb570OYj7OeUt9tkTmPOL13i0Nj67eT/DBMHAGTthP796EfvyXhdDcs -HqRePGj4S78NuR4uNuip5Kf4D8uCdXw1LSLWwr8L87T8bJVhHlfXBIEyg1J55oNj -z7fLY4sR4r1e6/aN7ZVyKLSsEmLpSjPmgzKuBXWVvYSV2ypcm44uDLiBK0HmOFaf -SZtsdvqKXfcBeYF8wYNABf5x/Qw/zE5gCQ5lRxAvAcAFP4/4s0HvWkJ+We/Slwxl -AgMBAAGjggE0MIIBMDAPBgNVHRMBAf8EBTADAQH/MDkGA1UdHwQyMDAwLqAsoCqG -KGh0dHA6Ly9jcmwucGtpLndlbGxzZmFyZ28uY29tL3dzcHJjYS5jcmwwDgYDVR0P -AQH/BAQDAgHGMB0GA1UdDgQWBBQmlRkQ2eihl5H/3BnZtQQ+0nMKajCBsgYDVR0j -BIGqMIGngBQmlRkQ2eihl5H/3BnZtQQ+0nMKaqGBi6SBiDCBhTELMAkGA1UEBhMC -VVMxIDAeBgNVBAoMF1dlbGxzIEZhcmdvIFdlbGxzU2VjdXJlMRwwGgYDVQQLDBNX -ZWxscyBGYXJnbyBCYW5rIE5BMTYwNAYDVQQDDC1XZWxsc1NlY3VyZSBQdWJsaWMg -Um9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHmCAQEwDQYJKoZIhvcNAQEFBQADggEB -ALkVsUSRzCPIK0134/iaeycNzXK7mQDKfGYZUMbVmO2rvwNa5U3lHshPcZeG1eMd -/ZDJPHV3V3p9+N701NX3leZ0bh08rnyd2wIDBSxxSyU+B+NemvVmFymIGjifz6pB -A4SXa5M4esowRBskRDPQ5NHcKDj0E0M1NSljqHyita04pO2t/caaH/+Xc/77szWn -k4bGdpEA5qxRFsQnMlzbc9qlk1eOPm01JghZ1edE13YgY+esE2fDbbFwRnzVlhE9 -iW9dqKHrjQrawx0zbKPqZxmamX9LPYNRKh3KL4YMon4QLSvUFpULB6ouFJJJtylv -2G0xffX8oRAHh84vWdw+WNs= ------END CERTIFICATE----- diff --git "a/test/rules/platform_certs/cacert/Cert-148_AC Ra\303\255z Certic\303\241mara S.A._Sociedad Cameral de Certificaci\303\263n Digital - Certic\303\241mara S.A.pem" "b/test/rules/platform_certs/cacert/Cert-148_AC Ra\303\255z Certic\303\241mara S.A._Sociedad Cameral de Certificaci\303\263n Digital - Certic\303\241mara S.A.pem" deleted file mode 100644 index c60cce890180..000000000000 --- "a/test/rules/platform_certs/cacert/Cert-148_AC Ra\303\255z Certic\303\241mara S.A._Sociedad Cameral de Certificaci\303\263n Digital - Certic\303\241mara S.A.pem" +++ /dev/null @@ -1,37 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIGZjCCBE6gAwIBAgIPB35Sk3vgFeNX8GmMy+wMMA0GCSqGSIb3DQEBBQUAMHsx -CzAJBgNVBAYTAkNPMUcwRQYDVQQKDD5Tb2NpZWRhZCBDYW1lcmFsIGRlIENlcnRp -ZmljYWNpw7NuIERpZ2l0YWwgLSBDZXJ0aWPDoW1hcmEgUy5BLjEjMCEGA1UEAwwa -QUMgUmHDrXogQ2VydGljw6FtYXJhIFMuQS4wHhcNMDYxMTI3MjA0NjI5WhcNMzAw -NDAyMjE0MjAyWjB7MQswCQYDVQQGEwJDTzFHMEUGA1UECgw+U29jaWVkYWQgQ2Ft -ZXJhbCBkZSBDZXJ0aWZpY2FjacOzbiBEaWdpdGFsIC0gQ2VydGljw6FtYXJhIFMu -QS4xIzAhBgNVBAMMGkFDIFJhw616IENlcnRpY8OhbWFyYSBTLkEuMIICIjANBgkq -hkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAq2uJo1PMSCMI+8PPUZYILrgIem08kBeG -qentLhM0R7LQcNzJPNCNyu5LF6vQhbCnIwTLqKL85XXbQMpiiY9QngE9JlsYhBzL -fDe3fezTf3MZsGqy2IiKLUV0qPezuMDU2s0iiXRNWhU5cxh0T7XrmafBHoi0wpOQ -Y5fzp6cSsgkiBzPZkc0OnB8OIMfuuzONj8LSWKdf/WU34ojC2I+GdV75LaeHM/J4 -Ny+LvB2GNzmxlPLYvEqcgxhaBvzz1NS6jBUJJfD5to0EfhcSM2tXSExP2yYe68yQ -54v5aHxwD6Mq0Do43zeX4lvegGHTgNiRg0JaTASJaBE8rF9ogEHMYELODVoqDA+b -MMCm8Ibbq0nXl21Ii/kDwFJnmxL3wvIumGVC2daa49AZMQyth9VXAnow6IYm+48j -ilSH5L887uvDdUhfHjlvgWJsxS3EF1QZtzeNnDeRyPYL1epjb4OsOMLzP96a++Ej -YfDIJss2yKHzMI+ko6Kh3VOz3vCaMh+DkXkwwakfU5tTohVTP92dsxA7SH2JD/zt -A/X7JWR1DhcZDY8AFmd5ekD8LVkH2ZD6mq093ICK5lw1omdMEWux+IBkAC1vImHF -rEsm5VoQgpukg3s0956JkSCXjrdCx2bD0Omk1vUgjcTDlaxECp1bczwmPS9KvqfJ -pxAe+59QafMCAwEAAaOB5jCB4zAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQE -AwIBBjAdBgNVHQ4EFgQU0QnQ6dfOeXRU+Tows/RtLAMDG2gwgaAGA1UdIASBmDCB -lTCBkgYEVR0gADCBiTArBggrBgEFBQcCARYfaHR0cDovL3d3dy5jZXJ0aWNhbWFy -YS5jb20vZHBjLzBaBggrBgEFBQcCAjBOGkxMaW1pdGFjaW9uZXMgZGUgZ2FyYW50 -7WFzIGRlIGVzdGUgY2VydGlmaWNhZG8gc2UgcHVlZGVuIGVuY29udHJhciBlbiBs -YSBEUEMuMA0GCSqGSIb3DQEBBQUAA4ICAQBclLW4RZFNjmEfAygPU3zmpFmps4p6 -xbD/CHwso3EcIRNnoZUSQDWDg4902zNc8El2CoFS3UnUmjIz75uny3XlesuXEpBc -unvFm9+7OSPI/5jOCk0iAUgHforA1SBClETvv3eiiWdIG0ADBaGJ7M9i4z0ldma/ -Jre7Ir5v/zlXdLp6yQGVwZVR6Kss+LGGIOk/yzVb0hfpKv6DExdA7ohiZVvVO2Dp -ezy4ydV/NgIlqmjCMRW3MGXrfx1IebHPOeJCgBbT9ZMj/EyXyVo3bHwi2ErN0o42 -gzmRkBDI8ck1fj+404HGIGQatlDCIaR43NAvO2STdPCWkPHv+wlaNECW8DYSwaN0 -jJN+Qd53i+yG2dIPPy3RzECiiWZIHiCznCNZc6lEc7wkeZBWN7PGKX6jD/EpOe9+ -XCgycDWs2rjIdWb8m0w5R44bb5tNAlQiM+9hup4phO9OSzNHdpdqy35f/RWmnkJD -W2ZaiogN9xa5P1FlK2Zqi9E4UqLWRhH6/JocdJ6PlwsCT2TG9WjTSy3/pDceiz+/ -RL5hRqGEPQgnTIEgd4kI6mdAXmwIUV80WoyWaM3X94nCHNMyAK9Sy9NgWyo6R35r -MDOhYil/SrnhLecUIw4OGEfhefwVVdCx/CVxY3UzHCMrr1zZ7Ud3YA47Dx7SwNxk -BYn8eNZcLCZDqQ== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-149_AddTrust Class 1 CA Root_AddTrust AB.pem b/test/rules/platform_certs/cacert/Cert-149_AddTrust Class 1 CA Root_AddTrust AB.pem deleted file mode 100644 index 43b8375f8186..000000000000 --- a/test/rules/platform_certs/cacert/Cert-149_AddTrust Class 1 CA Root_AddTrust AB.pem +++ /dev/null @@ -1,24 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEGDCCAwCgAwIBAgIBATANBgkqhkiG9w0BAQUFADBlMQswCQYDVQQGEwJTRTEU -MBIGA1UEChMLQWRkVHJ1c3QgQUIxHTAbBgNVBAsTFEFkZFRydXN0IFRUUCBOZXR3 -b3JrMSEwHwYDVQQDExhBZGRUcnVzdCBDbGFzcyAxIENBIFJvb3QwHhcNMDAwNTMw -MTAzODMxWhcNMjAwNTMwMTAzODMxWjBlMQswCQYDVQQGEwJTRTEUMBIGA1UEChML -QWRkVHJ1c3QgQUIxHTAbBgNVBAsTFEFkZFRydXN0IFRUUCBOZXR3b3JrMSEwHwYD -VQQDExhBZGRUcnVzdCBDbGFzcyAxIENBIFJvb3QwggEiMA0GCSqGSIb3DQEBAQUA -A4IBDwAwggEKAoIBAQCWltQhSWDia+hBBwzexODcEyPNwTXH+9ZOEQpnXvUGW2ul -CDtbKRY654eyNAbFvAWlA3yCyykQruGIgb3WntP+LVbBFc7jJp0VLhD7Bo8wBN6n -tGO0/7Gcrjyvd7ZWxbWroulpOj0OM3kyP3CCkplhbY0wCI9xP6ZIVxn4JdxLZlyl -dI+Yrsj5wAYi56xz36Uu+1LcsRVlIPo1Zmne3yzxbrww2ywkEtvrNTVokMsAsJch -PXQhI2U0K7t4WaPW4XY5mqRJjox0r26kmqPZm9I4XJuiGMx1I4S+6+JNM3GOGvDC -+Mcdoq0Dlyz4zyXG9rgkMbFjXZJ/Y/AlyVMuH79NAgMBAAGjgdIwgc8wHQYDVR0O -BBYEFJWxtPCUtr3H2tERCSG+wa9J/RB7MAsGA1UdDwQEAwIBBjAPBgNVHRMBAf8E -BTADAQH/MIGPBgNVHSMEgYcwgYSAFJWxtPCUtr3H2tERCSG+wa9J/RB7oWmkZzBl -MQswCQYDVQQGEwJTRTEUMBIGA1UEChMLQWRkVHJ1c3QgQUIxHTAbBgNVBAsTFEFk -ZFRydXN0IFRUUCBOZXR3b3JrMSEwHwYDVQQDExhBZGRUcnVzdCBDbGFzcyAxIENB -IFJvb3SCAQEwDQYJKoZIhvcNAQEFBQADggEBACxtZBsfzQ3duQH6lmM0MkhHma6X -7f1yFqZzR1r0693p9db7RcwpiURdv0Y5PejuvE1Uhh4dbOMXJ0PhiVYrqW9yTkkz -43J8KiOavD7/KCrto/8cI7pDVwlnTUtiBi34/2ydYB7YHEt9tTEv2dB8Xfjea4MY -eDdXL+gzB2ffHsdrKpV2ro9Xo/D0UrSpUwjP4E/TelOL/bscVjby/rK25Xa71SJl -pz/+0WatC7xrmYbvP33zGDLKe8bjq2RGlfgmadlVg3sslgf/WSxEo8bl6ancoWOA -WiFeIc9TVPC6b4nbqKqVz4vjccweGyBECMB6tkD9xOQ14R0WHNC8K47Wcdk= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-150_DigiCert High Assurance EV Root CA_DigiCert Inc.pem b/test/rules/platform_certs/cacert/Cert-150_DigiCert High Assurance EV Root CA_DigiCert Inc.pem deleted file mode 100644 index 9e6810ab70cf..000000000000 --- a/test/rules/platform_certs/cacert/Cert-150_DigiCert High Assurance EV Root CA_DigiCert Inc.pem +++ /dev/null @@ -1,23 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDxTCCAq2gAwIBAgIQAqxcJmoLQJuPC3nyrkYldzANBgkqhkiG9w0BAQUFADBs -MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 -d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5j -ZSBFViBSb290IENBMB4XDTA2MTExMDAwMDAwMFoXDTMxMTExMDAwMDAwMFowbDEL -MAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3 -LmRpZ2ljZXJ0LmNvbTErMCkGA1UEAxMiRGlnaUNlcnQgSGlnaCBBc3N1cmFuY2Ug -RVYgUm9vdCBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMbM5XPm -+9S75S0tMqbf5YE/yc0lSbZxKsPVlDRnogocsF9ppkCxxLeyj9CYpKlBWTrT3JTW -PNt0OKRKzE0lgvdKpVMSOO7zSW1xkX5jtqumX8OkhPhPYlG++MXs2ziS4wblCJEM -xChBVfvLWokVfnHoNb9Ncgk9vjo4UFt3MRuNs8ckRZqnrG0AFFoEt7oT61EKmEFB -Ik5lYYeBQVCmeVyJ3hlKV9Uu5l0cUyx+mM0aBhakaHPQNAQTXKFx01p8VdteZOE3 -hzBWBOURtCmAEvF5OYiiAhF8J2a3iLd48soKqDirCmTCv2ZdlYTBoSUeh10aUAsg -EsxBu24LUTi4S8sCAwEAAaNjMGEwDgYDVR0PAQH/BAQDAgGGMA8GA1UdEwEB/wQF -MAMBAf8wHQYDVR0OBBYEFLE+w2kD+L9HAdSYJhoIAu9jZCvDMB8GA1UdIwQYMBaA -FLE+w2kD+L9HAdSYJhoIAu9jZCvDMA0GCSqGSIb3DQEBBQUAA4IBAQAcGgaX3Nec -nzyIZgYIVyHbIUf4KmeqvxgydkAQV8GK83rZEWWONfqe/EW1ntlMMUu4kehDLI6z -eM7b41N5cdblIZQB2lWHmiRk9opmzN6cN82oNLFpmyPInngiK3BD41VHMWEZ71jF -hS9OMPagMRYjyOfiZRYzy78aG6A9+MpeizGLYAiJLQwGXFK3xPkKmNEVX58Svnw2 -Yzi9RKR/5CYrCsSXaQ3pjOLAEFe4yHYSkVXySGnYvCoCWw9E1CAx2/S6cCZdkGCe -vEsXCS+0yx5DaMkHJ8HSXPfqIbloEpw8nL+e/IBcm2PN7EeqJSdnoDfzAIJ9VNep -+OkuE6N36B9K ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-151_DigiNotar Services 1024 CA_DigiNotar.pem b/test/rules/platform_certs/cacert/Cert-151_DigiNotar Services 1024 CA_DigiNotar.pem deleted file mode 100644 index 332cb8bd3678..000000000000 --- a/test/rules/platform_certs/cacert/Cert-151_DigiNotar Services 1024 CA_DigiNotar.pem +++ /dev/null @@ -1,21 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDcTCCAtqgAwIBAgIED////zANBgkqhkiG9w0BAQUFADBoMQswCQYDVQQGEwJO -TDESMBAGA1UEChMJRGlnaU5vdGFyMSMwIQYDVQQDExpEaWdpTm90YXIgU2Vydmlj -ZXMgMTAyNCBDQTEgMB4GCSqGSIb3DQEJARYRaW5mb0BkaWdpbm90YXIubmwwHhcN -MDcwNzI2MTU1OTAxWhcNMTMwODI2MTYyOTAxWjBoMQswCQYDVQQGEwJOTDESMBAG -A1UEChMJRGlnaU5vdGFyMSMwIQYDVQQDExpEaWdpTm90YXIgU2VydmljZXMgMTAy -NCBDQTEgMB4GCSqGSIb3DQEJARYRaW5mb0BkaWdpbm90YXIubmwwgZ8wDQYJKoZI -hvcNAQEBBQADgY0AMIGJAoGBANqbTV08+dHii8bGCCDF2R5I7GZYZ3liK0Fj9ImN -aNqvuJQ2ixkkpKCT0pkPsq0tNU3NL2rh+ZsZK7wEGn4tPVJkzfE+Zw+JLujyT66m -CKGF/qGpCebGqz5D/K96A5HapjmmYe6YTxio07OvZoLpn7zdcvkGBL0S2Rgk56uT -U4tZAgMBAAGjggEmMIIBIjASBgNVHRMBAf8ECDAGAQH/AgEAMCcGA1UdJQQgMB4G -CCsGAQUFBwMBBggrBgEFBQcDAgYIKwYBBQUHAwQwEQYDVR0gBAowCDAGBgRVHSAA -MDMGCCsGAQUFBwEBBCcwJTAjBggrBgEFBQcwAYYXaHR0cDovL29jc3AuZW50cnVz -dC5uZXQwMwYDVR0fBCwwKjAooCagJIYiaHR0cDovL2NybC5lbnRydXN0Lm5ldC9z -ZXJ2ZXIxLmNybDAdBgNVHQ4EFgQU/tyUSQxv71x/xvESmU8WSa37gmUwCwYDVR0P -BAQDAgEGMB8GA1UdIwQYMBaAFPAXYhNVPbP/CgBr+1CEl/PtYtAaMBkGCSqGSIb2 -fQdBAAQMMAobBFY3LjEDAgCBMA0GCSqGSIb3DQEBBQUAA4GBAGN0ajepP5acZshY -rAnJ7/VllH+jAsQ4Mb1dI4fs1FayybJu5AUG/Oz1+ohwWdTu5t21eqCjYC8CDKve -El2v8DVLqopHkRr1hSxCxx3vlUOzXriVk6XaxSiqrXItMa2Za2z/jCEnr62akSvH -3VjDbgfFn3nSx4xVv0zHJ15RFis+ ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-152_Global Chambersign Root - 2008_AC Camerfirma S.A.pem b/test/rules/platform_certs/cacert/Cert-152_Global Chambersign Root - 2008_AC Camerfirma S.A.pem deleted file mode 100644 index 70b4ce41f214..000000000000 --- a/test/rules/platform_certs/cacert/Cert-152_Global Chambersign Root - 2008_AC Camerfirma S.A.pem +++ /dev/null @@ -1,41 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIHSTCCBTGgAwIBAgIJAMnN0+nVfSPOMA0GCSqGSIb3DQEBBQUAMIGsMQswCQYD -VQQGEwJFVTFDMEEGA1UEBxM6TWFkcmlkIChzZWUgY3VycmVudCBhZGRyZXNzIGF0 -IHd3dy5jYW1lcmZpcm1hLmNvbS9hZGRyZXNzKTESMBAGA1UEBRMJQTgyNzQzMjg3 -MRswGQYDVQQKExJBQyBDYW1lcmZpcm1hIFMuQS4xJzAlBgNVBAMTHkdsb2JhbCBD -aGFtYmVyc2lnbiBSb290IC0gMjAwODAeFw0wODA4MDExMjMxNDBaFw0zODA3MzEx -MjMxNDBaMIGsMQswCQYDVQQGEwJFVTFDMEEGA1UEBxM6TWFkcmlkIChzZWUgY3Vy -cmVudCBhZGRyZXNzIGF0IHd3dy5jYW1lcmZpcm1hLmNvbS9hZGRyZXNzKTESMBAG -A1UEBRMJQTgyNzQzMjg3MRswGQYDVQQKExJBQyBDYW1lcmZpcm1hIFMuQS4xJzAl -BgNVBAMTHkdsb2JhbCBDaGFtYmVyc2lnbiBSb290IC0gMjAwODCCAiIwDQYJKoZI -hvcNAQEBBQADggIPADCCAgoCggIBAMDfVtPkOpt2RbQT2//BthmLN0EYlVJH6xed -KYiONWwGMi5HYvNJBL99RDaxccy9Wglz1dmFRP+RVyXfXjaOcNFccUMd2drvXNL7 -G706tcuto8xEpw2uIRU/uXpbknXYpBI4iRmKt4DS4jJvVpyR1ogQC7N0ZJJ0YPP2 -zxhPYLIj0Mc7zmFLmY/CDNBAspjcDahOo7kKrmCgrUVSY7pmvWjg+b4aqIG7HkF4 -ddPB/gBVsIdU6CeQNR1MM62X/JcumIS/LMmjv9GYERTtY/jKmIhYF5ntRQOXfjyG -HoiMvvKRhI9lNNgATH23MRdaKXoKGCQwoze1eqkBfSbW+Q6OWfH9GzO1KTsXO0G2 -Id3UwD2ln58fQ1DJu7xsepeY7s2MH/ucUa6LcL0nn3HAa6x9kGbo1106DbDVwo3V -yJ2dwW3Q0L9R5OP4wzg2rtandeavhENdk5IMagfeOx2YItaswTXbo6Al/3K1dh3e -beksZixShNBFks4c5eUzHdwHU1SjqoI7mjcv3N2gZOnm3b2u/GSFHTynyQbehP9r -6GsaPMWis0L7iwk+XwhSx2LE1AVxv8Rk5Pihg+g+EpuoHtQ2TS9x9o0o9oOpE9Jh -wZG7SMA0j0GMS0zbaRL/UJScIINZc+18ofLx/d33SdNDWKBWY8o9PeU1VlnpDsog -zCtLkykPAgMBAAGjggFqMIIBZjASBgNVHRMBAf8ECDAGAQH/AgEMMB0GA1UdDgQW -BBS5CcqcHtvTbDprru1U8VuTBjUuXjCB4QYDVR0jBIHZMIHWgBS5CcqcHtvTbDpr -ru1U8VuTBjUuXqGBsqSBrzCBrDELMAkGA1UEBhMCRVUxQzBBBgNVBAcTOk1hZHJp -ZCAoc2VlIGN1cnJlbnQgYWRkcmVzcyBhdCB3d3cuY2FtZXJmaXJtYS5jb20vYWRk -cmVzcykxEjAQBgNVBAUTCUE4Mjc0MzI4NzEbMBkGA1UEChMSQUMgQ2FtZXJmaXJt -YSBTLkEuMScwJQYDVQQDEx5HbG9iYWwgQ2hhbWJlcnNpZ24gUm9vdCAtIDIwMDiC -CQDJzdPp1X0jzjAOBgNVHQ8BAf8EBAMCAQYwPQYDVR0gBDYwNDAyBgRVHSAAMCow -KAYIKwYBBQUHAgEWHGh0dHA6Ly9wb2xpY3kuY2FtZXJmaXJtYS5jb20wDQYJKoZI -hvcNAQEFBQADggIBAICIf3DekijZBZRG/5BXqfEv3xoNa/p8DhxJJHkn2EaqbylZ -UohwEurdPfWbU1Rv4WCiqAm57OtZfMY18dwY6fFn5a+6ReAJ3spED8IXDneRRXoz -X1+WLGiLwUePmJs9wOzL9dWCkoQ10b42OFZyMVtHLaoXpGNR6woBrX/sdZ7LoR/x -fxKxueRkf2fWIyr0uDldmOghp+G9PUIadJpwr2hsUF1Jz//7Dl3mLEfXgTpZALVz -a2Mg9jFFCDkO9HB+QHBaP9BrQql0PSgvAm11cpUJjUhjxsYjV5KTXjXBjfkK9yyd -Yhz2rXzdpjEetrHHfoUm+qRqtdpjMNHvkzeyZi99Bffnt0uYlDXA2TopwZ2yUDMd -SqlapskD7+3056huirRXhOukP9DuqqqHW2Pok+JrqNS4cnhrG+055F3Lm6qH1U9O -AP7Zap88MQ8oAgF9mOinsKJknnn4SPIVqczmyETrP3iZ8ntxPjzxmKfFGBI/5rso -M0LpRQp8bfKGeS/Fghl9CYl8slR2iK7ewfPM4W7bMdaTrpmg7yVqc5iJWzouE4ge -v8CSlDQb4ye3ix5vQv/n6TebUB0tovkC7stYWDpxvGjjqsGvHCgfotwjZT+B6q6Z -09gwzxMNTxXJhLynSC34MCN32EZLeW32jO06f2ARePTpm67VVMB0gNELQp/B ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-153_Government Root Certification Authority.pem b/test/rules/platform_certs/cacert/Cert-153_Government Root Certification Authority.pem deleted file mode 100644 index 51187d8acb1b..000000000000 --- a/test/rules/platform_certs/cacert/Cert-153_Government Root Certification Authority.pem +++ /dev/null @@ -1,32 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFcjCCA1qgAwIBAgIQH51ZWtcvwgZEpYAIaeNe9jANBgkqhkiG9w0BAQUFADA/ -MQswCQYDVQQGEwJUVzEwMC4GA1UECgwnR292ZXJubWVudCBSb290IENlcnRpZmlj -YXRpb24gQXV0aG9yaXR5MB4XDTAyMTIwNTEzMjMzM1oXDTMyMTIwNTEzMjMzM1ow -PzELMAkGA1UEBhMCVFcxMDAuBgNVBAoMJ0dvdmVybm1lbnQgUm9vdCBDZXJ0aWZp -Y2F0aW9uIEF1dGhvcml0eTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIB -AJoluOzMonWoe/fOW1mKydGGEghU7Jzy50b2iPN86aXfTEc2pBsBHH8eV4qNw8XR -IePaJD9IK/ufLqGU5ywck9G/GwGHU5nOp/UKIXZ3/6m3xnOUT0b3EEk3+qhZSV1q -gQdW8or5BtD3cCJNtLdBuTK4sfCxw5w/cP1T3YGq2GN49thTbqGsaoQkclSGxtKy -yhwOeYHWtXBiCAEuTk8O1RGvqa/lmr/czIdtJuTJV6L7lvnM4T9TjGxMfptTCAts -F/tnyMKtsc2AtJfcdgEWFelq16TheEfOhtX7MfP6Mb40qij7cEwdScevLJ1tZqa2 -jWR+tSBqnTuBto9AAGdLiYa4zGX+FVPpBMHWXx1E1wovJ5pGfaENda1UhhXcSTvx -ls4Pm6Dso3pdvtUqdULle96ltqqvKKyskKw4t9VoNSZ63Pc78/1Fm9G7Q3hub/FC -VGqY8A2tl+lSXunVanLeavcbYBT0peS2cWeqH+riTcFCQP5nRhc4L0c/cZyu5SHK -YS1tB6iEfC3uUSXxY5Ce/eFXiGvviiNtsea9P63RPZYLhY3Naye7twWb7LuRqQoH -EgKXTiCQ8P8NHuJBO9NAOueNXdpm5AKwB1KYXA6OM5zCppX7VRluTI6uSw+9wThN -Xo+EHWbNxWCWtFJaBYmOlXqYwZE8lSOyDvR5tMl8wUohAgMBAAGjajBoMB0GA1Ud -DgQWBBTMzO/MKWCkO7GStjz6MmKPrCUVOzAMBgNVHRMEBTADAQH/MDkGBGcqBwAE -MTAvMC0CAQAwCQYFKw4DAhoFADAHBgVnKgMAAAQUA5vwIhP/lSg209yewDL7MTqK -UWUwDQYJKoZIhvcNAQEFBQADggIBAECASvomyc5eMN1PhnR2WPWus4MzeKR6dBcZ -TulStbngCnRiqmjKeKBMmo4sIy7VahIkv9Ro04rQ2JyftB8M3jh+Vzj8jeJPXgyf -qzvS/3WXy6TjZwj/5cAWtUgBfen5Cv8b5Wppv3ghqMKnI6mGq3ZW6A4M9hPdKmaK -ZEk9GhiHkASfQlK3T8v+R0F2Ne//AHY2RTKbxkaFXeIksB7jSJaYV0eUVXoPQbFE -JPPB/hprv4j9wabak2BegUqZIJxIZhm1AHlUD7gsL0u8qV1bYH+Mh6XgUmMqvtg7 -hUAV/h62ZT/FS9p+tXo1KaMuephgIqP0fSdOLeq0dDzpD6QzDxARvBMB1uUO07+1 -EqLhRSPAzAhuYbeJq4PjJB7mXQfnHyA+z2fI56wwbSdLaG5LKlwCCDTb+HbkZ6Mm -nD+iMsJKxYEYMRBWqoTvLQr/uB930r+lWKBi5NdLkXWNiYCYfm3LU05er/ayl4WX -udpVBrkk7tfGOB5jGxI7leFYrPLfhNVfmS8NVVvmONsuP3LpSIXLuykTjx44Vbnz -ssQwmSNOXfJIoRIM3BKQCZBUkQM8R+XVyWXgt0t97EfTsws+rZ7QdAAO671RrcDe -LMDDav7v3Aun+kbfYNucpllQdSNpc5Oy+fwC00fmcc4QAu4njIT/rEUNE1yDMuAl -pYYsfPQS ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-154_Buypass Class 2 CA 1_Buypass AS-983163327.pem b/test/rules/platform_certs/cacert/Cert-154_Buypass Class 2 CA 1_Buypass AS-983163327.pem deleted file mode 100644 index 053f43352638..000000000000 --- a/test/rules/platform_certs/cacert/Cert-154_Buypass Class 2 CA 1_Buypass AS-983163327.pem +++ /dev/null @@ -1,20 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDUzCCAjugAwIBAgIBATANBgkqhkiG9w0BAQUFADBLMQswCQYDVQQGEwJOTzEd -MBsGA1UECgwUQnV5cGFzcyBBUy05ODMxNjMzMjcxHTAbBgNVBAMMFEJ1eXBhc3Mg -Q2xhc3MgMiBDQSAxMB4XDTA2MTAxMzEwMjUwOVoXDTE2MTAxMzEwMjUwOVowSzEL -MAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1eXBhc3MgQVMtOTgzMTYzMzI3MR0wGwYD -VQQDDBRCdXlwYXNzIENsYXNzIDIgQ0EgMTCCASIwDQYJKoZIhvcNAQEBBQADggEP -ADCCAQoCggEBAIs8B0XY9t/mx8q6jUPFR42wWsE425KEHK8T1A9vNkYgxC7McXA0 -ojTTNy7Y3Tp3L8DrKehc0rWpkTSHIln+zNvnma+WwajHQN2lFYxuyHyXA8vmIPLX -l18xoS830r7uvqmtqEyeIWZDO6i88wmjONVZJMHCR3axiFyCO7srpgTXjAePzdVB -HfCuuCkslFJgNJQ72uA40Z0zPhX0kzLFANq1KWYOOngPIVJfAuWSeyXTkh4vFZ2B -5J2O6O+JzhRMVB0cgRJNcKi+EAUXfh/RuFdV7c27UsKwHnjCTTZoy1YmwVLBvXb3 -WNVyfh9EdrsAiR0WnVE1703CVu9r4Iw7DekCAwEAAaNCMEAwDwYDVR0TAQH/BAUw -AwEB/zAdBgNVHQ4EFgQUP42aWYv8e3uco684sDntkHGA1sgwDgYDVR0PAQH/BAQD -AgEGMA0GCSqGSIb3DQEBBQUAA4IBAQAVGn4TirnoB6NLJzKyQJHyIdFkhb5jatLP -gcIV1Xp+DCmsNx4cfHZSldq1fyOhKXdlyTKdqC5Wq2B2zha0jX94wNWZUYN/Xtm+ -DKhQ7SLHrQVMdvvt7h5HZPb3J31cKA9FxVxiXqaakZG3Uxcu3K1gnZZkOb1naLKu -BctN518fV4bVIJwo+28TOPX2EZL2fZleHwzoq0QkKXJAPTZSr4xYkHPB7GEseaHs -h7U/2k3ZIQAw3pDaDtMaSKk+hQsUi4y8QZ5q9w5wwDX3OaJdZtB7WZ+oRxKaJyOk -LY4ng5IgodcVf/EuGO70SH8vf/GhGLWhC5SgYiAynB321O+/TIho ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-155_AddTrust External CA Root_AddTrust AB.pem b/test/rules/platform_certs/cacert/Cert-155_AddTrust External CA Root_AddTrust AB.pem deleted file mode 100644 index 20585f1c01e1..000000000000 --- a/test/rules/platform_certs/cacert/Cert-155_AddTrust External CA Root_AddTrust AB.pem +++ /dev/null @@ -1,25 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIENjCCAx6gAwIBAgIBATANBgkqhkiG9w0BAQUFADBvMQswCQYDVQQGEwJTRTEU -MBIGA1UEChMLQWRkVHJ1c3QgQUIxJjAkBgNVBAsTHUFkZFRydXN0IEV4dGVybmFs -IFRUUCBOZXR3b3JrMSIwIAYDVQQDExlBZGRUcnVzdCBFeHRlcm5hbCBDQSBSb290 -MB4XDTAwMDUzMDEwNDgzOFoXDTIwMDUzMDEwNDgzOFowbzELMAkGA1UEBhMCU0Ux -FDASBgNVBAoTC0FkZFRydXN0IEFCMSYwJAYDVQQLEx1BZGRUcnVzdCBFeHRlcm5h -bCBUVFAgTmV0d29yazEiMCAGA1UEAxMZQWRkVHJ1c3QgRXh0ZXJuYWwgQ0EgUm9v -dDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALf3GjPm8gAELTngTlvt -H7xsD821+iO2zt6bETOXpClMfZOfvUq8k+0DGuOPz+VtUFrWlymUWoCwSXrbLpX9 -uMq/NzgtHj6RQa1wVsfwTz/oMp50ysiQVOnGXw94nZpAPA6sYapeFI+eh6FqUNzX -mk6vBbOmcZSccbNQYArHE504B4YCqOmoaSYYkKtMsE8jqzpPhNjfzp/haW+710LX -a0Tkx63ubUFfclpxCDezeWWkWaCUN/cALw3CknLa0Dhy2xSoRcRdKn23tNbE7qzN -E0S3ySvdQwAl+mG5aWpYIxG3pzOPVnVZ9c0p10a3CitlttNCbxWyuHv77+ldU9U0 -WicCAwEAAaOB3DCB2TAdBgNVHQ4EFgQUrb2YejS0Jvf6xCZU7wO94CTLVBowCwYD -VR0PBAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wgZkGA1UdIwSBkTCBjoAUrb2YejS0 -Jvf6xCZU7wO94CTLVBqhc6RxMG8xCzAJBgNVBAYTAlNFMRQwEgYDVQQKEwtBZGRU -cnVzdCBBQjEmMCQGA1UECxMdQWRkVHJ1c3QgRXh0ZXJuYWwgVFRQIE5ldHdvcmsx -IjAgBgNVBAMTGUFkZFRydXN0IEV4dGVybmFsIENBIFJvb3SCAQEwDQYJKoZIhvcN -AQEFBQADggEBALCb4IUlwtYj4g+WBpKdQZic2YR5gdkeWxQHIzZlj7DYd7usQWxH -YINRsPkyPef89iYTx4AWpb9a/IfPeHmJIZriTAcKhjW88t5RxNKWt9x+Tu5w/Rw5 -6wwCURQtjr0W4MHfRnXnJK3s9EK0hZNwEGe6nQY1ShjTK3rMUUKhemPR5ruhxSvC -Nr4TDea9Y355e6cJDUCrat2PisP29owaQgVR1EX1n6diIWgVIEM8med8vSTYqZEX -c4g/VhsxOBi0cQ+azcgOno4uG+GMmIPLHzHxREzGBHNJdmAPx/i9F4BrLunMTA5a -mnkPIAou1Z5jJh5VkpTYghdae9C8x49OhgQ= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-156_VeriSign Universal Root Certification Authority_VeriSign, Inc.pem b/test/rules/platform_certs/cacert/Cert-156_VeriSign Universal Root Certification Authority_VeriSign, Inc.pem deleted file mode 100644 index b5f187511d58..000000000000 --- a/test/rules/platform_certs/cacert/Cert-156_VeriSign Universal Root Certification Authority_VeriSign, Inc.pem +++ /dev/null @@ -1,28 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEuTCCA6GgAwIBAgIQQBrEZCGzEyEDDrvkEhrFHTANBgkqhkiG9w0BAQsFADCB -vTELMAkGA1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQL -ExZWZXJpU2lnbiBUcnVzdCBOZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwOCBWZXJp -U2lnbiwgSW5jLiAtIEZvciBhdXRob3JpemVkIHVzZSBvbmx5MTgwNgYDVQQDEy9W -ZXJpU2lnbiBVbml2ZXJzYWwgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAe -Fw0wODA0MDIwMDAwMDBaFw0zNzEyMDEyMzU5NTlaMIG9MQswCQYDVQQGEwJVUzEX -MBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlTaWduIFRydXN0 -IE5ldHdvcmsxOjA4BgNVBAsTMShjKSAyMDA4IFZlcmlTaWduLCBJbmMuIC0gRm9y -IGF1dGhvcml6ZWQgdXNlIG9ubHkxODA2BgNVBAMTL1ZlcmlTaWduIFVuaXZlcnNh -bCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIIBIjANBgkqhkiG9w0BAQEF -AAOCAQ8AMIIBCgKCAQEAx2E3XrEBNNti1xWb/1hajCMj1mCOkdeQmIN65lgZOIzF -9uVkhbSicfvtvbnazU0AtMgtc6XHaXGVHzk8skQHnOgO+k1KxCHfKWGPMiJhgsWH -H26MfF8WIFFE0XBPV+rjHOPMee5Y2A7Cs0WTwCznmhcrewA3ekEzeOEz4vMQGn+H -LL729fdC4uW/h2KJXwBL38Xd5HVEMkE6HnFuacsLdUYI0crSK5XQz/u5QGtkjFdN -/BMReYTtXlT2NJ8IAfMQJQYXStrxHXpma5hgZqTZ79IugvHw7wnqRMkVauIDbjPT -rJ9VAMf2CGqUuV/c4DPxhGD5WycRtPwW8rtWaoAljQIDAQABo4GyMIGvMA8GA1Ud -EwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMG0GCCsGAQUFBwEMBGEwX6FdoFsw -WTBXMFUWCWltYWdlL2dpZjAhMB8wBwYFKw4DAhoEFI/l0xqGrI2Oa8PPgGrUSBgs -exkuMCUWI2h0dHA6Ly9sb2dvLnZlcmlzaWduLmNvbS92c2xvZ28uZ2lmMB0GA1Ud -DgQWBBS2d/ppSEefUxLVwuoHMnYH0ZcHGTANBgkqhkiG9w0BAQsFAAOCAQEASvj4 -sAPmLGd75JR3Y8xuTPl9Dg3cyLk1uXBPY/ok+myDjEedO2Pzmvl2MpWRsXe8rJq+ -seQxIcaBlVZaDrHC1LGmWazxY8u4TB1ZkErvkBYoH1quEPuBUDgMbMzxPcP1Y+Oz -4yHJJDnp/RVmRvQbEdBNc6N9Rvk97ahfYtTxP/jgdFcrGJ2BtMQo2pSXpXDrrB2+ -BxHw1dvd5Yzw1TKwg+ZX4o+/vqGqvz0dtdQ46tewXDpPaj+PwGZsY6rp2aQW9IHR -lRQOfc2VNNnSj3BzgXucfr2YYdhFh5iQxeuGMMY1v/D/w1WIg0vvBZIGcfK4mJO3 -7M2CYfE45k+XmCpajQ== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-157_Baltimore CyberTrust Root_Baltimore.pem b/test/rules/platform_certs/cacert/Cert-157_Baltimore CyberTrust Root_Baltimore.pem deleted file mode 100644 index 519028c63b21..000000000000 --- a/test/rules/platform_certs/cacert/Cert-157_Baltimore CyberTrust Root_Baltimore.pem +++ /dev/null @@ -1,21 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDdzCCAl+gAwIBAgIEAgAAuTANBgkqhkiG9w0BAQUFADBaMQswCQYDVQQGEwJJ -RTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYD -VQQDExlCYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTAwMDUxMjE4NDYwMFoX -DTI1MDUxMjIzNTkwMFowWjELMAkGA1UEBhMCSUUxEjAQBgNVBAoTCUJhbHRpbW9y -ZTETMBEGA1UECxMKQ3liZXJUcnVzdDEiMCAGA1UEAxMZQmFsdGltb3JlIEN5YmVy -VHJ1c3QgUm9vdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKMEuyKr -mD1X6CZymrV51Cni4eiVgLGw41uOKymaZN+hXe2wCQVt2yguzmKiYv60iNoS6zjr -IZ3AQSsBUnuId9Mcj8e6uYi1agnnc+gRQKfRzMpijS3ljwumUNKoUMMo6vWrJYeK -mpYcqWe4PwzV9/lSEy/CG9VwcPCPwBLKBsua4dnKM3p31vjsufFoREJIE9LAwqSu -XmD+tqYF/LTdB1kC1FkYmGP1pWPgkAx9XbIGevOF6uvUA65ehD5f/xXtabz5OTZy -dc93Uk3zyZAsuT3lySNTPx8kmCFcB5kpvcY67Oduhjprl3RjM71oGDHweI12v/ye -jl0qhqdNkNwnGjkCAwEAAaNFMEMwHQYDVR0OBBYEFOWdWTCCR1jMrPoIVDaGezq1 -BE3wMBIGA1UdEwEB/wQIMAYBAf8CAQMwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3 -DQEBBQUAA4IBAQCFDF2O5G9RaEIFoN27TyclhAO992T9Ldcw46QQF+vaKSm2eT92 -9hkTI7gQCvlYpNRhcL0EYWoSihfVCr3FvDB81ukMJY2GQE/szKN+OMY3EU/t3Wgx -jkzSswF07r51XgdIGn9w/xZchMB5hbgF/X++ZRGjD8ACtPhSNzkE1akxehi/oCr0 -Epn3o0WC4zxe9Z2etciefC7IpJ5OCBRLbf1wbWsaY71k5h+3zvDyny67G7fyUIhz -ksLi4xaNmjICq44Y3ekQEe5+NauQrz4wlHrQMz2nZQ/1/I6eYs9HRCwBXbsdtTLS -R9I4LtD+gdwyah617jzV/OeBHRnDJELqYzmp ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-158_TC TrustCenter Universal CA III_TC TrustCenter GmbH.pem b/test/rules/platform_certs/cacert/Cert-158_TC TrustCenter Universal CA III_TC TrustCenter GmbH.pem deleted file mode 100644 index b7926f15b6cf..000000000000 --- a/test/rules/platform_certs/cacert/Cert-158_TC TrustCenter Universal CA III_TC TrustCenter GmbH.pem +++ /dev/null @@ -1,23 +0,0 @@ ------BEGIN CERTIFICATE----- -MIID4TCCAsmgAwIBAgIOYyUAAQACFI0zFQLkbPQwDQYJKoZIhvcNAQEFBQAwezEL -MAkGA1UEBhMCREUxHDAaBgNVBAoTE1RDIFRydXN0Q2VudGVyIEdtYkgxJDAiBgNV -BAsTG1RDIFRydXN0Q2VudGVyIFVuaXZlcnNhbCBDQTEoMCYGA1UEAxMfVEMgVHJ1 -c3RDZW50ZXIgVW5pdmVyc2FsIENBIElJSTAeFw0wOTA5MDkwODE1MjdaFw0yOTEy -MzEyMzU5NTlaMHsxCzAJBgNVBAYTAkRFMRwwGgYDVQQKExNUQyBUcnVzdENlbnRl -ciBHbWJIMSQwIgYDVQQLExtUQyBUcnVzdENlbnRlciBVbml2ZXJzYWwgQ0ExKDAm -BgNVBAMTH1RDIFRydXN0Q2VudGVyIFVuaXZlcnNhbCBDQSBJSUkwggEiMA0GCSqG -SIb3DQEBAQUAA4IBDwAwggEKAoIBAQDC2pxisLlxErALyBpXsq6DFJmzNEubkKLF -5+cvAqBNLaT6hdqbJYUtQCggbergvbFIgyIpRJ9Og+41URNzdNW88jBmlFPAQDYv -DIRlzg9uwliT6CwLOunBjvvya8o84pxOjuT5fdMnnxvVZ3iHLX8LR7PH6MlIfK8v -zArZQe+f/prhsq75U7Xl6UafYOPfjdN/+5Z+s7Vy+EutCHnNaYlAJ/Uqwa1D7KRT -yGG299J5KmcYdkhtWyUB0SbFt1dpIxVbYYqt8Bst2a9c8SaQaanVDED1M4BDj5yj -dipFtK+/fz6HP3bFzSreIMUWWMv5G/UPyw0RUmS40nZid4PxWJ//AgMBAAGjYzBh -MB8GA1UdIwQYMBaAFFbn4VslQ4Dg9ozhcbyO5YAvxEjiMA8GA1UdEwEB/wQFMAMB -Af8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBRW5+FbJUOA4PaM4XG8juWAL8RI -4jANBgkqhkiG9w0BAQUFAAOCAQEAg8ev6n9NCjw5sWi+e22JLumzCecYV42Fmhfz -dkJQEw/HkG8zrcVJYCtsSVgZ1OK+t7+rSbyUyKu+KGwWaODIl0YgoGhnYIg5IFHY -aAERzqf2EQf27OysGh+yZm5WZ2B6dF7AbZc2rrUNXWZzwCUyRdhKBgePxLcHsU0G -DeGl6/R1yrqc0L2z0zIkTO5+4nYES0lT2PLpVDP85XEfPRRclkvxOvIAu2y0+pZV -CIgJwcyRGSmwIC3/yzikQOEXvnlhgP8HA4ZMTnsGnxGGjYnuJ8Tb4rwZjgvDwxPH -LQNjO9Po5KIqwoIIlBZU8O8fJ5AluA0OKBtHd0e9HKgl8ZS0Zg== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-160_SecureTrust CA_SecureTrust Corporation.pem b/test/rules/platform_certs/cacert/Cert-160_SecureTrust CA_SecureTrust Corporation.pem deleted file mode 100644 index 37400921e539..000000000000 --- a/test/rules/platform_certs/cacert/Cert-160_SecureTrust CA_SecureTrust Corporation.pem +++ /dev/null @@ -1,22 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDuDCCAqCgAwIBAgIQDPCOXAgWpa1Cf/DrJxhZ0DANBgkqhkiG9w0BAQUFADBI -MQswCQYDVQQGEwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3QgQ29ycG9yYXRpb24x -FzAVBgNVBAMTDlNlY3VyZVRydXN0IENBMB4XDTA2MTEwNzE5MzExOFoXDTI5MTIz -MTE5NDA1NVowSDELMAkGA1UEBhMCVVMxIDAeBgNVBAoTF1NlY3VyZVRydXN0IENv -cnBvcmF0aW9uMRcwFQYDVQQDEw5TZWN1cmVUcnVzdCBDQTCCASIwDQYJKoZIhvcN -AQEBBQADggEPADCCAQoCggEBAKukgeWVzfX2FI7CT8rU4niVWJxB4Q2ZQCQXOZEz -Zum+4YOvYlyJ0fwkW2Gz4BERQRwdbvC4u/jep4G6pkjGnx29vo6pQT64lO0pGtSO -0gMdA+9tDWccV9cGrcrI9f4Or2YlSASWC12juhbDCE/RRvgUXPLIXgGZbf2IzIao -wW8xQmxSPmjL8xk037uHGFaAJsTQ3MBv396gwpEWoGQRS0S8Hvbn+mPeZqx2pHGj -7DaUaHp3pLHnDi+BeuK1cobvomuL8A/b01k/unK8RCSc43Oz969XL0Imnal0ugBS -8kvNU3xHCzaFDmapCJcWNFfBZveA4+1wVMeT4C4oFVmHursCAwEAAaOBnTCBmjAT -BgkrBgEEAYI3FAIEBh4EAEMAQTALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB -/zAdBgNVHQ4EFgQUQjK2FvoE/f5dS3rD/fdMQB1aQ68wNAYDVR0fBC0wKzApoCeg -JYYjaHR0cDovL2NybC5zZWN1cmV0cnVzdC5jb20vU1RDQS5jcmwwEAYJKwYBBAGC -NxUBBAMCAQAwDQYJKoZIhvcNAQEFBQADggEBADDtT0rhWDpSclu1pqNlGKa7UTt3 -6Z3q059c4EVlew3KW+JwULKUBRSuSceNQQcSc5R+DCMh/bwQf2AQWnL1mA6s7Ll/ -3XpvXdMc9P+IBWlCqQVxyLesJugutIxq/3HcuLHfmbx8IVQr5Fiiu1cprp6poxkm -D5kuCLDv/WnPmRoJjeOnnyvJNjR7JLN4TJUXpAYmHrZkUjZfYGfZnMUFdAvnZyPS -CPyI6a6Lf+Ew9Dd+/cYy2i2eRDAwbO4H3tI0/NL/QPZL9GZGBlSm8jIKYyYwa5vR -3ItHuuG51WLQoqD0ZwV4KWMabwTW+MZMo5qxN7SN5ShLHZ4swrhovO0C7jE= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-161_GeoTrust Universal CA_GeoTrust Inc.pem b/test/rules/platform_certs/cacert/Cert-161_GeoTrust Universal CA_GeoTrust Inc.pem deleted file mode 100644 index 6bc288854728..000000000000 --- a/test/rules/platform_certs/cacert/Cert-161_GeoTrust Universal CA_GeoTrust Inc.pem +++ /dev/null @@ -1,31 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFaDCCA1CgAwIBAgIBATANBgkqhkiG9w0BAQUFADBFMQswCQYDVQQGEwJVUzEW -MBQGA1UEChMNR2VvVHJ1c3QgSW5jLjEeMBwGA1UEAxMVR2VvVHJ1c3QgVW5pdmVy -c2FsIENBMB4XDTA0MDMwNDA1MDAwMFoXDTI5MDMwNDA1MDAwMFowRTELMAkGA1UE -BhMCVVMxFjAUBgNVBAoTDUdlb1RydXN0IEluYy4xHjAcBgNVBAMTFUdlb1RydXN0 -IFVuaXZlcnNhbCBDQTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAKYV -VaCjxuAfjJ0hUNfBvitbtaSeodlyWL0AG0y/YckUHUWCq8YdgNY96xCcOq9tJPi8 -cQGeBvV8Xx7BDlXKg5pZMK4ZyzBIle0iN430SppyZj6tlcDgFgDgEB8rMQ7XlFTT -QjOgNB0eRXbdT8oYN+yFFXoZCPzVx5zw8qkuEKmS5j1YPakWaDwvdSEYfyh3peFh -F7em6fgemdtzbvQKoiFs7tqqhZJmr/Z6a4LauiIINQ/PQvE1+mrufislzDoR5G2v -c7J2Ha3QsnhnGqQ5HFELZ1aD/ThdDc7d8Lsrlh/eezJS/R27tQahsiFepdaVaH/w -mZ7cRQg+59IJDTWU3YBOU5fXtQlEIGQWFwMCTFMNaN7VqnJNk22CDtucvc+081xd -VHppCZbW2xHBjXWotM85yM48vCR85mLK4b19p71XZQvk/iXttmkQ3CgaRr0BHdCX -teGYO8A3ZNY9lO4L4fUorgtWv3GLIylBjobFS1J72HGrH4oVpjuDWtdYAVHGTEHZ -f9hBZ3KiKN9gg6meyHv8U3NyWfWTehd2Ds735VzZC1U0oqpbtWpU5xPKV+yXbfRe -Bi9Fi1jUIxaS5BZuKGNZMN9QAZxjiRqf2xeUgnA3wySemkfWWspOqGmJch+RbNt+ -nhutxx9z3SxPGWX9f5NAEC7S8O08ni4oPmkmM8V7AgMBAAGjYzBhMA8GA1UdEwEB -/wQFMAMBAf8wHQYDVR0OBBYEFNq7LqqwDLiIJlF0XG0D08DYj3rWMB8GA1UdIwQY -MBaAFNq7LqqwDLiIJlF0XG0D08DYj3rWMA4GA1UdDwEB/wQEAwIBhjANBgkqhkiG -9w0BAQUFAAOCAgEAMXjmx7XfuJRAyXHEqDXsRh3ChfMoWIawC/yOsjmPRFWrZIRc -aanQmjg8+uUfNeVE44B5lGiku8SfPeE0zTBGi1QrlaXv9z+ZhP015s8xxtxqv6fX -IwjhmF7DWgh2qaavdy+3YL1ERmrvl/9zlcGO6JP7/TG37FcREUWbMPEaiDnBTzyn -ANXH/KttgCJwpQzgXQQpAvvLoJHRfNbDflDVnVi+QTjruXU8FdmbyUqDWcDaU/0z -uzYYm4UPFd3uLax2k7nZAY1IEKj79TiG8dsKxr2EoyNB3tZ3b4XUhRxQ4K5RirqN -Pnbiucon8l+f725ZDQbYKxek0nxru18UGkiPGkzns0ccjkxFKyDuSN/n3QmOGKja -QI2SJhFTYXNd673nxE0pN2HrrDktZy4W1vUAg4WhzH92xH3kt0tm7wNFYGm2DFKW -koRepqO1pD4r2czYG0eq8kTaT/kD6PAUyz/zg97QwVTjt+gKN02LIFkDMBmhLMi9 -ER/frslKxfMnZmaGrGiR/9nmUxwPi1xpZQomyB40w11Re9epnAahNt3ViZS82eQt -DF4JbAiXfKM9fJP/P6EUp8+1Xevb2xzEdt+Iub1FBZUbrvxGakyvSOPOrg/Sfuvm -bJxPgWp6ZKy7PtXny3YuxadIwVyQD8vIP/rmMuGNG2+k5o7Y+SlIis5z/iw= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-162_America Online Root Certification Authority 2_America Online Inc.pem b/test/rules/platform_certs/cacert/Cert-162_America Online Root Certification Authority 2_America Online Inc.pem deleted file mode 100644 index 492d55a98067..000000000000 --- a/test/rules/platform_certs/cacert/Cert-162_America Online Root Certification Authority 2_America Online Inc.pem +++ /dev/null @@ -1,33 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFpDCCA4ygAwIBAgIBATANBgkqhkiG9w0BAQUFADBjMQswCQYDVQQGEwJVUzEc -MBoGA1UEChMTQW1lcmljYSBPbmxpbmUgSW5jLjE2MDQGA1UEAxMtQW1lcmljYSBP -bmxpbmUgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAyMB4XDTAyMDUyODA2 -MDAwMFoXDTM3MDkyOTE0MDgwMFowYzELMAkGA1UEBhMCVVMxHDAaBgNVBAoTE0Ft -ZXJpY2EgT25saW5lIEluYy4xNjA0BgNVBAMTLUFtZXJpY2EgT25saW5lIFJvb3Qg -Q2VydGlmaWNhdGlvbiBBdXRob3JpdHkgMjCCAiIwDQYJKoZIhvcNAQEBBQADggIP -ADCCAgoCggIBAMxBRR3pPU0Q9oyxQcngXssNt79Hc9PwVU3dxgz6sWYFas14tNwC -206B89enfHG8dWOgXeMHDEjsJcQDIPT/DjsS/5uN4cbVG7RtIuOx238hZK+GvFci -KtZHgVdEglZTvYYUAQv8f3SkWq7xuhG1m1hagLQ3eAkzfDJHA1zEpYNI9FdWboE2 -JxhP7JsowtS013wMPgwr38oE18aO6lhOqKSlGBxsRZijQdEt0sdtjRnxrXm3gT+9 -BoInLRBYBbV4Bbkv2wxrkJB+FFk4u5QkE+XRnRTf04JNRvCAOVIyD+OEsnpD8l7e -Xz8d3eOyG6ChKiMDbi4BFYdcpnV1x5dhvt6G3NRI270qv0pV2uh9UPu0gBe4lL8B -PeraunzgWGcXuVjgiIZGZ2ydEEdYMtA1fHkqkKJaEBEjNa0vzORKW6fIJ/KD3l67 -Xnfn6KVuY8INXWHQjNJsWiEOyiijzirplcdIz5ZvHZIlyMbGwcEMBawmxNJ10uEq -Z8A9W6Wa6897GqidFEXlD6CaZd4vKL3Ob5Rmg0gp2OpljK+T2WSfVVcmv2/LNzGZ -o2C7HK2JNDJiuEMhBnIMoVxtRsX6Kc8w3onccVvdtjc+31D1uAclJuW8tf48ArO3 -+L5DwYcRlJ4jbBeKuIonDFRH8KmzwICMoCfrHRnjB453cMor9H124HhnAgMBAAGj -YzBhMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFE1FwWg4u3OpaaEg5+31IqEj -FNeeMB8GA1UdIwQYMBaAFE1FwWg4u3OpaaEg5+31IqEjFNeeMA4GA1UdDwEB/wQE -AwIBhjANBgkqhkiG9w0BAQUFAAOCAgEAZ2sGuV9FOypLM7PmG2tZTiLMubekJcmn -xPBUlgtk87FYT15R/LKXeydlwuXK5w0MJXti4/qftIe3RUavg6WXSIylvfEWK5t2 -LHo1YGwRgJfMqZJS5ivmae2p+DYtLHe/YUjRYwu5W1LtGLBDQiKmsXeu3mnFzccc -obGlHBD7GL4acN3Bkku+KVqdPzW+5X1R+FXgJXUjhx5c3LqdsKyzadsXg8n33gy8 -CNyRnqjQ1xU3c6U1uPx+xURABsPr+CKAXEfOAuMRn0T//ZoyzH1kUQ7rVyZ2OuMe -IjzCpjbdGe+n/BLzJsBZMYVMnNjP36TMzCmT/5RtdlwTCJfy7aULTd3oyWgOZtMA -DjMSW7yV5TKQqLPGbIOtd+6Lfn6xqavT4fG2wLHqiMDn05DpKJKUe2h7lyoKZy2F -AjgQ5ANh1NolNscIWC2hp1GvMApJ9aZphwctREZ2jirlmjvXGKL8nDgQzMY70rUX -Om/9riW99XJZZLF0KjhfGEzfz3EEWjbUvy+ZnOjZurGV5gJLIaFb1cFPj65pbVPb -AZO1XB4Y3WRayhgoPmMEEf0cjQAPuDffZ4qdZqkCapH/E8ovXYO8h5Ns3CRRFgQl -Zvqz2cK6Kb6aSDiCmfS/O0oxGfm/jiEzFMpPVF/7zvuPcX/9XhmgD0uRuMRUvAaw -RY8mkaKO/qk= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-163_A-Trust-nQual-03_A-Trust Ges. f. Sicherheitssysteme im elektr. Datenverkehr GmbH.pem b/test/rules/platform_certs/cacert/Cert-163_A-Trust-nQual-03_A-Trust Ges. f. Sicherheitssysteme im elektr. Datenverkehr GmbH.pem deleted file mode 100644 index 23ddad0bd26f..000000000000 --- a/test/rules/platform_certs/cacert/Cert-163_A-Trust-nQual-03_A-Trust Ges. f. Sicherheitssysteme im elektr. Datenverkehr GmbH.pem +++ /dev/null @@ -1,23 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDzzCCAregAwIBAgIDAWweMA0GCSqGSIb3DQEBBQUAMIGNMQswCQYDVQQGEwJB -VDFIMEYGA1UECgw/QS1UcnVzdCBHZXMuIGYuIFNpY2hlcmhlaXRzc3lzdGVtZSBp -bSBlbGVrdHIuIERhdGVudmVya2VociBHbWJIMRkwFwYDVQQLDBBBLVRydXN0LW5R -dWFsLTAzMRkwFwYDVQQDDBBBLVRydXN0LW5RdWFsLTAzMB4XDTA1MDgxNzIyMDAw -MFoXDTE1MDgxNzIyMDAwMFowgY0xCzAJBgNVBAYTAkFUMUgwRgYDVQQKDD9BLVRy -dXN0IEdlcy4gZi4gU2ljaGVyaGVpdHNzeXN0ZW1lIGltIGVsZWt0ci4gRGF0ZW52 -ZXJrZWhyIEdtYkgxGTAXBgNVBAsMEEEtVHJ1c3QtblF1YWwtMDMxGTAXBgNVBAMM -EEEtVHJ1c3QtblF1YWwtMDMwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB -AQCtPWFuA/OQO8BBC4SAzewqo51ru27CQoT3URThoKgtUaNR8t4j8DRE/5TrzAUj -lUC5B3ilJfYKvUWG6Nm9wASOhURh73+nyfrBJcyFLGM/BWBzSQXgYHiVEEvc+RFZ -znF/QJuKqiTfC0Li21a8StKlDJu3Qz7dg9MmEALP6iPESU7l0+m0iKsMrmKS1GWH -2WrX9IWf5DMiJaXlyDO6w8dB3F/GaswADm0yqLaHNgBid5seHzTLkDx4iHQF63n1 -k3Flyp3HaxgtPVxO59X4PzF9j4fsCiIvI+n+u33J4PTs63zEsMMtYrWacdaxaujs -2e3Vcuy+VwHOBVWf3tFgiBCzAgMBAAGjNjA0MA8GA1UdEwEB/wQFMAMBAf8wEQYD -VR0OBAoECERqlWdVeRFPMA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQUFAAOC -AQEAVdRU0VlIXLOThaq/Yy/kgM40ozRiPvbY7meIMQQDbwvUB/tOdQ/TLtPAF8fG -KOwGDREkDg6lXb+MshOWcdzUzg4NCmgybLlBMRmrsQd7TZjTXLDR8KdCoLXEjq/+ -8T/0709GAHbrAvv5ndJAlseIOrifEXnzgGWovR/TeIGgUUw3tKZdJXDRZslo+S4R -FGjxVJgIrCaSD96JntT6s3kr0qN51OyLrIdTaEJMUVF0HhsnLuP1Hyl0Te2v9+GS -mYHovjrHF1D2t8b8m7CKa9aIA5GPBnc6hQLdmNVDeD/GMBWsm2vLV7eJUYs66MmE -DNuxUCAKGkq6ahq97BvIxYSazQ== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-164_Certum Trusted Network CA_Unizeto Technologies S.A.pem b/test/rules/platform_certs/cacert/Cert-164_Certum Trusted Network CA_Unizeto Technologies S.A.pem deleted file mode 100644 index a04e656d8c41..000000000000 --- a/test/rules/platform_certs/cacert/Cert-164_Certum Trusted Network CA_Unizeto Technologies S.A.pem +++ /dev/null @@ -1,22 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDuzCCAqOgAwIBAgIDBETAMA0GCSqGSIb3DQEBBQUAMH4xCzAJBgNVBAYTAlBM -MSIwIAYDVQQKExlVbml6ZXRvIFRlY2hub2xvZ2llcyBTLkEuMScwJQYDVQQLEx5D -ZXJ0dW0gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxIjAgBgNVBAMTGUNlcnR1bSBU -cnVzdGVkIE5ldHdvcmsgQ0EwHhcNMDgxMDIyMTIwNzM3WhcNMjkxMjMxMTIwNzM3 -WjB+MQswCQYDVQQGEwJQTDEiMCAGA1UEChMZVW5pemV0byBUZWNobm9sb2dpZXMg -Uy5BLjEnMCUGA1UECxMeQ2VydHVtIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MSIw -IAYDVQQDExlDZXJ0dW0gVHJ1c3RlZCBOZXR3b3JrIENBMIIBIjANBgkqhkiG9w0B -AQEFAAOCAQ8AMIIBCgKCAQEA4/t9o3K6wvDJFIf1awFO4W5AB7ptJ11/91sts1rH -UV+rpDKmYYe2bg+G0jACl/jXaVehGDldamR5xgFZrDwxSjh80gTSSyjoIF87B6LM -TXPb865Px1bVWqeWifrzq2jUI4ZZJ88JJ7ysbnKDHDBy3+Ci6dLhdHUZvSqeexVU -BBvXQzmtVSjF4hq79MDkrjhJM8x2hZ85RdKknvISjFH4fOQtf/WsX+sWn7Et0brM -kUJ3TCXJkDhv2/DM+44el1k+1WBO5gUo7Ul5E0u6SNsv+XLTOcr+H9g0cvW0QM8x -AcPs3hEtF10fuFDRXhmnad4HMyjKUJX5p1TLVIZQRan5SQIDAQABo0IwQDAPBgNV -HRMBAf8EBTADAQH/MB0GA1UdDgQWBBQIds3LB/8k9sXN7buQvOKEN0Z19zAOBgNV -HQ8BAf8EBAMCAQYwDQYJKoZIhvcNAQEFBQADggEBAKaorSLOAT2mo/9i0Eidi15y -sHhE49wcrwn9I0j6vSrEuVUEtRCjjSfeC4Jj0O7eDDd5QVsisrCaQVymcODU0HfL -I9MA4GxWL+FpDQ3Zqr8hgVDZBqWo/5U30Kr+4rP1mS1FhIrlQgnXdAIv94nYmem8 -J9RHjboNRhx3zxSkHLmkMcScKHQDNP8zGSal6Q10tz6XxnboJ5ajZt3hrvJBW8qY -VoNzcOSGGtIxQbovvi0TWnZvTuhOgQ4/WwMioBK+ZlgRSssDxLQqKi2WF+A5VLxI -03YnnZotBqbJ7DnSq9ufmgsnAjUpsUCV5/nonFWIGUbWtzT1fs45mtk48VH3Tyw= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-165_Equifax.pem b/test/rules/platform_certs/cacert/Cert-165_Equifax.pem deleted file mode 100644 index 676db9759f40..000000000000 --- a/test/rules/platform_certs/cacert/Cert-165_Equifax.pem +++ /dev/null @@ -1,19 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDIDCCAomgAwIBAgIENd70zzANBgkqhkiG9w0BAQUFADBOMQswCQYDVQQGEwJV -UzEQMA4GA1UEChMHRXF1aWZheDEtMCsGA1UECxMkRXF1aWZheCBTZWN1cmUgQ2Vy -dGlmaWNhdGUgQXV0aG9yaXR5MB4XDTk4MDgyMjE2NDE1MVoXDTE4MDgyMjE2NDE1 -MVowTjELMAkGA1UEBhMCVVMxEDAOBgNVBAoTB0VxdWlmYXgxLTArBgNVBAsTJEVx -dWlmYXggU2VjdXJlIENlcnRpZmljYXRlIEF1dGhvcml0eTCBnzANBgkqhkiG9w0B -AQEFAAOBjQAwgYkCgYEAwV2xWGcIYu6gmi0fCG2RFGiYCh7+2gRvE4RiIcPRfM6f -BeC4AfBONOziipUEZKzxa1NfBbPLZ4C/QgKO/t0BCezhABRP/PvwDN1Dulsr4R+A -cJkVV5MW8Q+XarfCaCMczE1ZMKxRHjuvK9buY0V7xdlfUNLjUA86iOe/FP3gx7kC -AwEAAaOCAQkwggEFMHAGA1UdHwRpMGcwZaBjoGGkXzBdMQswCQYDVQQGEwJVUzEQ -MA4GA1UEChMHRXF1aWZheDEtMCsGA1UECxMkRXF1aWZheCBTZWN1cmUgQ2VydGlm -aWNhdGUgQXV0aG9yaXR5MQ0wCwYDVQQDEwRDUkwxMBoGA1UdEAQTMBGBDzIwMTgw -ODIyMTY0MTUxWjALBgNVHQ8EBAMCAQYwHwYDVR0jBBgwFoAUSOZo+SvSspXXR9gj -IBBPM5iQn9QwHQYDVR0OBBYEFEjmaPkr0rKV10fYIyAQTzOYkJ/UMAwGA1UdEwQF -MAMBAf8wGgYJKoZIhvZ9B0EABA0wCxsFVjMuMGMDAgbAMA0GCSqGSIb3DQEBBQUA -A4GBAFjOKer89961zgK5F7WF0bnj4JXMJTENAKaSbn+2kmOeUJXRmm/kEd5jhW6Y -7qj/WsjTVbJmcVfewCHrPSqnI0kBBIZCe/zuf6IWUrVnZ9NA2zsmWLIodz2uFHdh -1voqZiegDfqnc1zqcPGUIWVEX/r87yloqaKHee9570+sB3c4 ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-166_GeoTrust Universal CA 2_GeoTrust Inc.pem b/test/rules/platform_certs/cacert/Cert-166_GeoTrust Universal CA 2_GeoTrust Inc.pem deleted file mode 100644 index bed6cd0dd331..000000000000 --- a/test/rules/platform_certs/cacert/Cert-166_GeoTrust Universal CA 2_GeoTrust Inc.pem +++ /dev/null @@ -1,31 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFbDCCA1SgAwIBAgIBATANBgkqhkiG9w0BAQUFADBHMQswCQYDVQQGEwJVUzEW -MBQGA1UEChMNR2VvVHJ1c3QgSW5jLjEgMB4GA1UEAxMXR2VvVHJ1c3QgVW5pdmVy -c2FsIENBIDIwHhcNMDQwMzA0MDUwMDAwWhcNMjkwMzA0MDUwMDAwWjBHMQswCQYD -VQQGEwJVUzEWMBQGA1UEChMNR2VvVHJ1c3QgSW5jLjEgMB4GA1UEAxMXR2VvVHJ1 -c3QgVW5pdmVyc2FsIENBIDIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoIC -AQCzVFLByT7y2dyxUxpZKeexw0Uo5dfR7cXFS6GqdHtXr0om/Nj1XqduGdt0DE81 -WzILAePb63p3NeqqWuDW6KFXlPCQo3RWlEQwAx5cTiuFJnSCegx2oG9NzkEtoBUG -FF+3Qs17j1hhNNwqCPkuwwGmIkQcTAeC5lvO0Ep8BNMZcyfwqph/Lq9O64ceJHdq -XbboW0W63MOhBW9Wjo8QJqVJwy7XQYci4E+GymC16qFjwAGXEHm9ADwSbSsVsaxL -se4YuU6W3Nx2/zu+z18DwPw76L5GG//aQMJS9/7jOvdqdzXQ2o3rXhhqMcceujwb -KNZrVMaqW9eiLBsZzKIC9ptZvTdrhrVtgrrY6slWvKk2WP0+GfPtDCapkzj4T8Fd -IgbQl+rhrcZV4IErKIM6+vR7IVEAvlI4zs1meaj0gVbi0IMJR1FbUGrP20gaXT73 -y/Zl92zxlfgCOzJWgjl6W70viRu/obTo/3+NjN8D8WBOWBFM66M/ECuDmgFz2ZRt -hAAnZqzwcEAJQpKtT5MNYQlRJNiS1QuUYbKHsu3/mjX/hVTK7URDrBs8FmtISgoc -QIgfksILAAX/8sgCSqSqqcyZlpwvWOB94b67B9xfBHJcMTTD7F8t4D1kkCLm0ey4 -Lt1ZrtmhN79UNdxzMk+MBB4zsslG8dhcyFVQyWi9qLo2CQIDAQABo2MwYTAPBgNV -HRMBAf8EBTADAQH/MB0GA1UdDgQWBBR281Xh+qQ2+/CfXGJx7Tz0RzgQKzAfBgNV -HSMEGDAWgBR281Xh+qQ2+/CfXGJx7Tz0RzgQKzAOBgNVHQ8BAf8EBAMCAYYwDQYJ -KoZIhvcNAQEFBQADggIBAGbBxiPz2eAubl/oz66wsCVNK/g7WJtAJDday6sWSf+z -dXkzoS9tcBc0kf5nfo/sm+VegqlVHy/c1FEHEv6sFj4sNcZj/NwQ6w2jqtB8zNHQ -L1EuxBRa3ugZ4T7GzKQp5y6EqgYweHZUcyiYWTjgAA1i00J9IZ+uPTqM1fp3DRgr -Fg5fNuH8KrUwJM/gYwx7WBr+mbpCErGR9Hxo4sjoryzqyX6uuyo9DRXcNJW2GHSo -ag/HtPQTxORb7QrSpJdMKu0vbBKJPfEncKpqA1Ihn0CoZ1Dy81of398j9tx4TuaY -T1U6U+Pv8vSfx3zYWK8pIpe44L2RLrB27FcRz+8pRPPphXpgY+RdM4kX2TGq2tbz -GDVyz4crL2MjhF2EjD9XoIj8mZEoJmmZ1I+XRL6O1UixpCgp8RW04eWe3fiPpm8m -1wk8OhwRDqZsN/etRIcsKMfYdIKz0G9KV7s1KSegi+ghp4dkNl3M2Basx7InQJJV -OCiNUW7dFGdTbHFcJoRNdVq2fmBWqU2t+5sel/MN2dKXVHfaPRK34B7vCAas+YWH -6aLcr34YEoP9VhdBLtUpgn2Z9DH2canPLAEnpQW5qrJITirvn5NSUZU8UnOOVkwX -QMAJKOSLakhT2+zNVVXxxvjpoixMptEmX36vWkzaH6byHCx+rgIW0lbQL1dTR+iS ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-167_The Go Daddy Group, Inc.pem b/test/rules/platform_certs/cacert/Cert-167_The Go Daddy Group, Inc.pem deleted file mode 100644 index 42e8d1eef9d0..000000000000 --- a/test/rules/platform_certs/cacert/Cert-167_The Go Daddy Group, Inc.pem +++ /dev/null @@ -1,24 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEADCCAuigAwIBAgIBADANBgkqhkiG9w0BAQUFADBjMQswCQYDVQQGEwJVUzEh -MB8GA1UEChMYVGhlIEdvIERhZGR5IEdyb3VwLCBJbmMuMTEwLwYDVQQLEyhHbyBE -YWRkeSBDbGFzcyAyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTA0MDYyOTE3 -MDYyMFoXDTM0MDYyOTE3MDYyMFowYzELMAkGA1UEBhMCVVMxITAfBgNVBAoTGFRo -ZSBHbyBEYWRkeSBHcm91cCwgSW5jLjExMC8GA1UECxMoR28gRGFkZHkgQ2xhc3Mg -MiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCASAwDQYJKoZIhvcNAQEBBQADggEN -ADCCAQgCggEBAN6d1+pXGEmhW+vXX0iG6r7d/+TvZxz0ZWizV3GgXne77ZtJ6XCA -PVYYYwhv2vLM0D9/AlQiVBDYsoHUwHU9S3/Hd8M+eKsaA7Ugay9qK7HFiH7Eux6w -wdhFJ2+qN1j3hybX2C32qRe3H3I2TqYXP2WYktsqbl2i/ojgC95/5Y0V4evLOtXi -EqITLdiOr18SPaAIBQi2XKVlOARFmR6jYGB0xUGlcmIbYsUfb18aQr4CUWWoriMY -avx4A6lNf4DD+qta/KFApMoZFv6yyO9ecw3ud72a9nmYvLEHZ6IVDd2gWMZEewo+ -YihfukEHU1jPEX44dMX4/7VpkI+EdOqXG68CAQOjgcAwgb0wHQYDVR0OBBYEFNLE -sNKR1EwRcbNhyz2h/t2oatTjMIGNBgNVHSMEgYUwgYKAFNLEsNKR1EwRcbNhyz2h -/t2oatTjoWekZTBjMQswCQYDVQQGEwJVUzEhMB8GA1UEChMYVGhlIEdvIERhZGR5 -IEdyb3VwLCBJbmMuMTEwLwYDVQQLEyhHbyBEYWRkeSBDbGFzcyAyIENlcnRpZmlj -YXRpb24gQXV0aG9yaXR5ggEAMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQEFBQAD -ggEBADJL87LKPpH8EsahB4yOd6AzBhRckB4Y9wimPQoZ+YeAEW5p5JYXMP80kWNy -OO7MHAGjHZQopDH2esRU1/blMVgDoszOYtuURXO1v0XJJLXVggKtI3lpjbi2Tc7P -TMozI+gciKqdi0FuFskg5YmezTvacPd+mSYgFFQlq25zheabIZ0KbIIOqPjCDPoQ -HmyW74cNxA9hi63ugyuV+I6ShHI56yDqg+2DzZduCLzrTia2cyvk0/ZM/iZx4mER -dEr/VxqHD3VILs9RaRegAhJhldXRQLIQTO7ErBBDpqWeCtWVYpoNz4iCxTIM5Cuf -ReYNnyicsbkqWletNw+vHX/bvZ8= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-168_Thawte Server CA_Thawte Consulting cc.pem b/test/rules/platform_certs/cacert/Cert-168_Thawte Server CA_Thawte Consulting cc.pem deleted file mode 100644 index 27df192f0d08..000000000000 --- a/test/rules/platform_certs/cacert/Cert-168_Thawte Server CA_Thawte Consulting cc.pem +++ /dev/null @@ -1,19 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDEzCCAnygAwIBAgIBATANBgkqhkiG9w0BAQQFADCBxDELMAkGA1UEBhMCWkEx -FTATBgNVBAgTDFdlc3Rlcm4gQ2FwZTESMBAGA1UEBxMJQ2FwZSBUb3duMR0wGwYD -VQQKExRUaGF3dGUgQ29uc3VsdGluZyBjYzEoMCYGA1UECxMfQ2VydGlmaWNhdGlv -biBTZXJ2aWNlcyBEaXZpc2lvbjEZMBcGA1UEAxMQVGhhd3RlIFNlcnZlciBDQTEm -MCQGCSqGSIb3DQEJARYXc2VydmVyLWNlcnRzQHRoYXd0ZS5jb20wHhcNOTYwODAx -MDAwMDAwWhcNMjAxMjMxMjM1OTU5WjCBxDELMAkGA1UEBhMCWkExFTATBgNVBAgT -DFdlc3Rlcm4gQ2FwZTESMBAGA1UEBxMJQ2FwZSBUb3duMR0wGwYDVQQKExRUaGF3 -dGUgQ29uc3VsdGluZyBjYzEoMCYGA1UECxMfQ2VydGlmaWNhdGlvbiBTZXJ2aWNl -cyBEaXZpc2lvbjEZMBcGA1UEAxMQVGhhd3RlIFNlcnZlciBDQTEmMCQGCSqGSIb3 -DQEJARYXc2VydmVyLWNlcnRzQHRoYXd0ZS5jb20wgZ8wDQYJKoZIhvcNAQEBBQAD -gY0AMIGJAoGBANOkUG7I/1Zr5s9dtuoMaHVHoqrC2oQl/Kj0R1HahbUgdJSGHg91 -yekIYfUGbTBuFRkC6VLAYttNmZ7iagxEOM3+vuNkCXDF/rFrKbYvScg71CcEJRCX -L+eQbcAoQpnXTEPew/UhbVSfXcNY4cDk2VuwuNy0e982OsK1ZiIS1ocNAgMBAAGj -EzARMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEEBQADgYEAB/pMaVz7lcxG -7oWDTSEwjsrZqG9JGubaUeNgcGyEYRGhGshIPllDfU+VPaGLtwtimHp1it2ITk6e -QNuozDJ0uW8NxuOzRAvZim+aKZuZGCg70eNAKJpaPNW15yAbi8qkq43pUdniTCxZ -qdq5snUb9kLy78fyGPmJvKP/iiMucEc= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-169_TC TrustCenter Class 3 CA II_TC TrustCenter GmbH.pem b/test/rules/platform_certs/cacert/Cert-169_TC TrustCenter Class 3 CA II_TC TrustCenter GmbH.pem deleted file mode 100644 index 78e6ca59750d..000000000000 --- a/test/rules/platform_certs/cacert/Cert-169_TC TrustCenter Class 3 CA II_TC TrustCenter GmbH.pem +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEqjCCA5KgAwIBAgIOSkcAAQAC5aBd1j8AUb8wDQYJKoZIhvcNAQEFBQAwdjEL -MAkGA1UEBhMCREUxHDAaBgNVBAoTE1RDIFRydXN0Q2VudGVyIEdtYkgxIjAgBgNV -BAsTGVRDIFRydXN0Q2VudGVyIENsYXNzIDMgQ0ExJTAjBgNVBAMTHFRDIFRydXN0 -Q2VudGVyIENsYXNzIDMgQ0EgSUkwHhcNMDYwMTEyMTQ0MTU3WhcNMjUxMjMxMjI1 -OTU5WjB2MQswCQYDVQQGEwJERTEcMBoGA1UEChMTVEMgVHJ1c3RDZW50ZXIgR21i -SDEiMCAGA1UECxMZVEMgVHJ1c3RDZW50ZXIgQ2xhc3MgMyBDQTElMCMGA1UEAxMc -VEMgVHJ1c3RDZW50ZXIgQ2xhc3MgMyBDQSBJSTCCASIwDQYJKoZIhvcNAQEBBQAD -ggEPADCCAQoCggEBALTgu1G7OVyLBMVMeRwjhjEQY0NVJz/GRcekPewJDRoeIMJW -Ht4bNwcwIi9v8Qbxq63WyKthoy9DxLCyLfzDlml7forkzMA5EpBCYMnMNWju2l+Q -Vl/NHE1bWEnrDgFPZPosPIlY2C8u4rBo6SI7dYnWRBpl8huXJh0obazovVkdKyT2 -1oQDZogkAHhg8fir/gKya/si+zXmFtGt9i4S5Po1auUZuV3bOx4a+9P/FRQI2Alq -ukWdFHlgfa9Aigdzs5OW03Q0jTo3Kd5c7PXuLjHCINy+8U9/I1LZW+Jk2ZyqBwi1 -Rb3R0DHBq1SfqdLDYmAD8bs5SpJKPQq5ncWg/jcCAwEAAaOCATQwggEwMA8GA1Ud -EwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBTUovyfs8PYA9NX -XAek0CSnwPIA1DCB7QYDVR0fBIHlMIHiMIHfoIHcoIHZhjVodHRwOi8vd3d3LnRy -dXN0Y2VudGVyLmRlL2NybC92Mi90Y19jbGFzc18zX2NhX0lJLmNybIaBn2xkYXA6 -Ly93d3cudHJ1c3RjZW50ZXIuZGUvQ049VEMlMjBUcnVzdENlbnRlciUyMENsYXNz -JTIwMyUyMENBJTIwSUksTz1UQyUyMFRydXN0Q2VudGVyJTIwR21iSCxPVT1yb290 -Y2VydHMsREM9dHJ1c3RjZW50ZXIsREM9ZGU/Y2VydGlmaWNhdGVSZXZvY2F0aW9u -TGlzdD9iYXNlPzANBgkqhkiG9w0BAQUFAAOCAQEANmDkcPcGIEPZIxpC8vijsrlN -irTzwppVMXzEO2eatN9NDoqTSheLG43KieHPOh6sHfGcMrSOWXaiQYUlN6AT0PV8 -TtXqluJucsG7Kv5sbviRmEb8yRtXW+rIGjs/sFGYPAfaLFkB2otE6OF0/ado3VS6 -g0bsyEa1+K+XwDsJHI/OcpY9M1ZwvJbL2NV9IJqDnxrcOfHFcqMRA/07QlIp2+gB -95tejNaNhk4Z+rwcvsUhpYeeeC422wlxo3I0+GzjBgnyXlal092Y+tTmBvTwtiBj -S+opvaqCZh77gaqnN60TGOaSw4HBM7uIHqHn4rS9MWwOUT1v+5ZWgOI2F9Hc5A== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-170_RSA Security Inc.pem b/test/rules/platform_certs/cacert/Cert-170_RSA Security Inc.pem deleted file mode 100644 index 8b30d1101545..000000000000 --- a/test/rules/platform_certs/cacert/Cert-170_RSA Security Inc.pem +++ /dev/null @@ -1,21 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDYTCCAkmgAwIBAgIQCgEBAQAAAnwAAAAKAAAAAjANBgkqhkiG9w0BAQUFADA6 -MRkwFwYDVQQKExBSU0EgU2VjdXJpdHkgSW5jMR0wGwYDVQQLExRSU0EgU2VjdXJp -dHkgMjA0OCBWMzAeFw0wMTAyMjIyMDM5MjNaFw0yNjAyMjIyMDM5MjNaMDoxGTAX -BgNVBAoTEFJTQSBTZWN1cml0eSBJbmMxHTAbBgNVBAsTFFJTQSBTZWN1cml0eSAy -MDQ4IFYzMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAt49VcdKA3Xtp -eafwGFAyPGJn9gqVB93mG/Oe2dJBVGutn3y+Gc37RqtBaB4Y6lXIL5F4iSj7Jylg -/9+PjDvJSZu1pJTOAeo+tWN7fyb9Gd3AIb2E0S1PRsNO3Ng3OTsor8udGuorryGl -wSMiuLgbWhOHV4PR8CDn6E8jQrAApX2J6elhc5SYcSa8LWrg903w8bYqODGBDSnh -AMFRD0xS+ARaqn1y07iHKrtjEAMqs6FPDVpeRrc9DvV07Jmf+T0kgYim3WBU6JU2 -PcYJk5qjEoAAVZkZR73QpXzDuvsf9/UP+Ky5tfQ3mBMY3oVbtwyCO4dvlTlYMNpu -AWgXIszACwIDAQABo2MwYTAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIB -BjAfBgNVHSMEGDAWgBQHw1EwpKrpRa41JPr/JCwz0LGdjDAdBgNVHQ4EFgQUB8NR -MKSq6UWuNST6/yQsM9CxnYwwDQYJKoZIhvcNAQEFBQADggEBAF8+hnZuuDU8TjYc -HnmYv/3VEhF5Ug7uMYm83X/50cYVIeiKAVQNOvtUudZj1LGqlk2iQk3UUx+LEN5/ -Zb5gEydxiKRz44Rj0aRV4VCT5hsOedBnvEbIvz8XDZXmxpBp3ue0L96VfdASPz0+ -f00/FGj1EVDVwfSQpQgdMWD/YIwjVAqv/qFuxdF6Kmh4zx6CCiC0H63lhbJqaHVO -rSU3lIW+vaHU6rcMSzyd6BIA8F+sDeGscGNz9395nzIlQnQFgCi/vcEkllgVsRch -6YlL2weIZ/QVrXA+L02FO8K32/6YaCOJ4XQP3vTFhGMpG8zLB8kApKnXwiJPZ9d3 -7CAFYd4= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-171_DST Root CA X3_Digital Signature Trust Co.pem b/test/rules/platform_certs/cacert/Cert-171_DST Root CA X3_Digital Signature Trust Co.pem deleted file mode 100644 index b2e43c93815b..000000000000 --- a/test/rules/platform_certs/cacert/Cert-171_DST Root CA X3_Digital Signature Trust Co.pem +++ /dev/null @@ -1,20 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDSjCCAjKgAwIBAgIQRK+wgNajJ7qJMDmGLvhAazANBgkqhkiG9w0BAQUFADA/ -MSQwIgYDVQQKExtEaWdpdGFsIFNpZ25hdHVyZSBUcnVzdCBDby4xFzAVBgNVBAMT -DkRTVCBSb290IENBIFgzMB4XDTAwMDkzMDIxMTIxOVoXDTIxMDkzMDE0MDExNVow -PzEkMCIGA1UEChMbRGlnaXRhbCBTaWduYXR1cmUgVHJ1c3QgQ28uMRcwFQYDVQQD -Ew5EU1QgUm9vdCBDQSBYMzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB -AN+v6ZdQCINXtMxiZfaQguzH0yxrMMpb7NnDfcdAwRgUi+DoM3ZJKuM/IUmTrE4O -rz5Iy2Xu/NMhD2XSKtkyj4zl93ewEnu1lcCJo6m67XMuegwGMoOifooUMM0RoOEq -OLl5CjH9UL2AZd+3UWODyOKIYepLYYHsUmu5ouJLGiifSKOeDNoJjj4XLh7dIN9b -xiqKqy69cK3FCxolkHRyxXtqqzTWMIn/5WgTe1QLyNau7Fqckh49ZLOMxt+/yUFw -7BZy1SbsOFU5Q9D8/RhcQPGX69Wam40dutolucbY38EVAjqr2m7xPi71XAicPNaD -aeQQmxkqtilX4+U9m5/wAl0CAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNV -HQ8BAf8EBAMCAQYwHQYDVR0OBBYEFMSnsaR7LHH62+FLkHX/xBVghYkQMA0GCSqG -SIb3DQEBBQUAA4IBAQCjGiybFwBcqR7uKGY3Or+Dxz9LwwmglSBd49lZRNI+DT69 -ikugdB/OEIKcdBodfpga3csTS7MgROSR6cz8faXbauX+5v3gTt23ADq1cEmv8uXr -AvHRAosZy5Q6XkjEGB5YGV8eAlrwDPGxrancWYaLbumR9YbK+rlmM6pZW87ipxZz -R8srzJmwN0jP41ZL9c8PDHIyh8bwRLtTcm1D9SZImlJnt1ir/md2cXjbDaJWFBM5 -JDGFoqgCWjBH4d1QB7wCCZAA62RjYJsWvIjJEubSfZGL+T0yjWW06XyxV3bqxbYo -Ob8VZRzI9neWagqNdwvYkQsEjgfbKbYK7p2CNTUQ ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-172_Global Chambersign Root_AC Camerfirma SA CIF A82743287.pem b/test/rules/platform_certs/cacert/Cert-172_Global Chambersign Root_AC Camerfirma SA CIF A82743287.pem deleted file mode 100644 index f5053061a4c5..000000000000 --- a/test/rules/platform_certs/cacert/Cert-172_Global Chambersign Root_AC Camerfirma SA CIF A82743287.pem +++ /dev/null @@ -1,28 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIExTCCA62gAwIBAgIBADANBgkqhkiG9w0BAQUFADB9MQswCQYDVQQGEwJFVTEn -MCUGA1UEChMeQUMgQ2FtZXJmaXJtYSBTQSBDSUYgQTgyNzQzMjg3MSMwIQYDVQQL -ExpodHRwOi8vd3d3LmNoYW1iZXJzaWduLm9yZzEgMB4GA1UEAxMXR2xvYmFsIENo -YW1iZXJzaWduIFJvb3QwHhcNMDMwOTMwMTYxNDE4WhcNMzcwOTMwMTYxNDE4WjB9 -MQswCQYDVQQGEwJFVTEnMCUGA1UEChMeQUMgQ2FtZXJmaXJtYSBTQSBDSUYgQTgy -NzQzMjg3MSMwIQYDVQQLExpodHRwOi8vd3d3LmNoYW1iZXJzaWduLm9yZzEgMB4G -A1UEAxMXR2xvYmFsIENoYW1iZXJzaWduIFJvb3QwggEgMA0GCSqGSIb3DQEBAQUA -A4IBDQAwggEIAoIBAQCicKLQn0KuWxfH2H3PFIP8T8mhtxOviteePgQKkotgVvq0 -Mi+ITaFgCPS3CU6gSS9J1tPfnZdan5QEcOw/Wdm3zGaLmFIoCQLfxS+EjXqXd7/s -QJ0lcqu1PzKY+7e3/HKE5TWH+VX6ox8Oby4o3Wmg2UIQxvi1RMLQQ3/bvOSiPGpV -eAp3qdjqGTK3L/5cPxvusZjsyq16aUXjlg9V9ubtdepl6DJWk0aJqCWKZQbua795 -B9Dxt6/tLE2Su8CoX6dnfQTyFQhwrJLWfQTSM/tMtgsL+xrJxI0DqX5c8lCrEqWh -z0hQpe/SyBoT+rB/sYIcd2oPX9wLlY/vQ37mRQklAgEDo4IBUDCCAUwwEgYDVR0T -AQH/BAgwBgEB/wIBDDA/BgNVHR8EODA2MDSgMqAwhi5odHRwOi8vY3JsLmNoYW1i -ZXJzaWduLm9yZy9jaGFtYmVyc2lnbnJvb3QuY3JsMB0GA1UdDgQWBBRDnDafsJ4w -TcbOX60Qq+UDpfqpFDAOBgNVHQ8BAf8EBAMCAQYwEQYJYIZIAYb4QgEBBAQDAgAH -MCoGA1UdEQQjMCGBH2NoYW1iZXJzaWducm9vdEBjaGFtYmVyc2lnbi5vcmcwKgYD -VR0SBCMwIYEfY2hhbWJlcnNpZ25yb290QGNoYW1iZXJzaWduLm9yZzBbBgNVHSAE -VDBSMFAGCysGAQQBgYcuCgEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly9jcHMuY2hh -bWJlcnNpZ24ub3JnL2Nwcy9jaGFtYmVyc2lnbnJvb3QuaHRtbDANBgkqhkiG9w0B -AQUFAAOCAQEAPDtwkfkEVCeR4e3t/mh/YV3lQWVPMvEYBZRqHN4fcNs+ezICNLUM -bKGKfKX0j//U2K0X1S0E0T9YgOKBWYi+wONGkyT+kL0mojAt6JcmVzWJdJYY9hXi -ryQZVgICsroPFOrGimbBhkVVi76SvpykBMdJPJ7oKXqJ1/6v/2j1pReQvayZzKWG -VwlnRtvWFsJG8eSpUPWP0ZIV018+xgBJOm5YstHRJw0lyDL4IBHNfTIzSJRUTN3c -ecQwn+uOuFW114hcxWokPbLTBQNRxgfvzBRydD1ucs4YKIxKoHflCStFREest2d/ -AYoFWpO+ocH/+OcOZ6RHSXZddZAa9SaP8A== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-173_http---www.valicert.com-_ValiCert, Inc.pem b/test/rules/platform_certs/cacert/Cert-173_http---www.valicert.com-_ValiCert, Inc.pem deleted file mode 100644 index 3997ac242e83..000000000000 --- a/test/rules/platform_certs/cacert/Cert-173_http---www.valicert.com-_ValiCert, Inc.pem +++ /dev/null @@ -1,18 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIC5zCCAlACAQEwDQYJKoZIhvcNAQEFBQAwgbsxJDAiBgNVBAcTG1ZhbGlDZXJ0 -IFZhbGlkYXRpb24gTmV0d29yazEXMBUGA1UEChMOVmFsaUNlcnQsIEluYy4xNTAz -BgNVBAsTLFZhbGlDZXJ0IENsYXNzIDEgUG9saWN5IFZhbGlkYXRpb24gQXV0aG9y -aXR5MSEwHwYDVQQDExhodHRwOi8vd3d3LnZhbGljZXJ0LmNvbS8xIDAeBgkqhkiG -9w0BCQEWEWluZm9AdmFsaWNlcnQuY29tMB4XDTk5MDYyNTIyMjM0OFoXDTE5MDYy -NTIyMjM0OFowgbsxJDAiBgNVBAcTG1ZhbGlDZXJ0IFZhbGlkYXRpb24gTmV0d29y -azEXMBUGA1UEChMOVmFsaUNlcnQsIEluYy4xNTAzBgNVBAsTLFZhbGlDZXJ0IENs -YXNzIDEgUG9saWN5IFZhbGlkYXRpb24gQXV0aG9yaXR5MSEwHwYDVQQDExhodHRw -Oi8vd3d3LnZhbGljZXJ0LmNvbS8xIDAeBgkqhkiG9w0BCQEWEWluZm9AdmFsaWNl -cnQuY29tMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDYWYJ6ibiWuqYvaG9Y -LqdUHAZu9OqNSLwxlBfw8068srg1knaw0KWlAdcAAxIiGQj4/xEjm84H9b9pGib+ -TunRf50sQB1ZaG6m+FiwnRqP0z/x3BkGgagO4DrdyFNFCQbmD3DD+kCmDuJWBQ8Y -TfwggtFzVXSNdnKgHZ0dwN0/cQIDAQABMA0GCSqGSIb3DQEBBQUAA4GBAFBoPUn0 -LBwGlN+VYH+Wexf+T3GtZMjdd9LvWVXoP+iOBSoh8gfStadS/pyxtuJbdxdA6nLW -I8sogTLDAHkY7FkXicnGah5xyf23dKUlRWnFSKsZ4UWKJWsZ7uW7EvV/96aNUcPw -nXS3qT6gpf+2SQMT2iLM7XGCK5nPOrf1LXLI ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/Cert-174_Sonera Class2 CA_Sonera.pem b/test/rules/platform_certs/cacert/Cert-174_Sonera Class2 CA_Sonera.pem deleted file mode 100644 index 36a998d225c3..000000000000 --- a/test/rules/platform_certs/cacert/Cert-174_Sonera Class2 CA_Sonera.pem +++ /dev/null @@ -1,19 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDIDCCAgigAwIBAgIBHTANBgkqhkiG9w0BAQUFADA5MQswCQYDVQQGEwJGSTEP -MA0GA1UEChMGU29uZXJhMRkwFwYDVQQDExBTb25lcmEgQ2xhc3MyIENBMB4XDTAx -MDQwNjA3Mjk0MFoXDTIxMDQwNjA3Mjk0MFowOTELMAkGA1UEBhMCRkkxDzANBgNV -BAoTBlNvbmVyYTEZMBcGA1UEAxMQU29uZXJhIENsYXNzMiBDQTCCASIwDQYJKoZI -hvcNAQEBBQADggEPADCCAQoCggEBAJAXSjWdyvANlsdE+hY3/Ei9vX+ALTU74W+o -Z6m/AxxNjG8yR9VBaKQTBME1DJqEQ/xcHf+Js+gXGM2RX/uJ4+q/Tl18GybTdXnt -5oTjV+WtKcT0OijnpXuENmmz/V52vaMtmdOQTiMofRhj8VQ7Jp12W5dCsv+u8E7s -3TmVToMGf+dJQMjFAbJUWmYdPfz56TwKnoG4cPABi+QjVHzIrviQHgCWctRUz2Ej -vOr7nQKV0ba5cTppCD8PtOFCx4j1P5iop7oc4HFx71hXgVB6XGt0Rg6DA5jDjqhu -8nYybieDwnPz3BjotJPqdURrBGAgcVeHnfO+oJAjPYok4doh28MCAwEAAaMzMDEw -DwYDVR0TAQH/BAUwAwEB/zARBgNVHQ4ECgQISqCqWITTXjwwCwYDVR0PBAQDAgEG -MA0GCSqGSIb3DQEBBQUAA4IBAQBazof5FnIVV0sd2ZvnoiYw7JNn39Yt0jSv9zil -zqsWuasvfDXLrNAPtEwr/IDva4yRXzZ299uzGxnq9LIR/WFxRL8oszodv7ND6J+/ -3DEIcbCdjdY0RzKQxmUk96BKfARzjzlvF4xytb1LyHr4e4PDKE6cCepnP7JnBBvD -FNr450kkkdAdavphOe9r5yF1BgfYErQhIHBCcYHaPJo2vqZbDWpsmh+Re/n570K6 -Tk6ezAyNlNzZRZxe7EJQY670XcSxEtzKO6gunRRaBXW37Ndj4ro1tgQIkejanZz2 -ZrUYrAqmVCY0M9IbwdR/GjqOC6oybtv8TyWf2TLHllpwrN9M ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/a5fd78f0.0 b/test/rules/platform_certs/cacert/a5fd78f0.0 deleted file mode 120000 index 19369beecfa9..000000000000 --- a/test/rules/platform_certs/cacert/a5fd78f0.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-014_TC TrustCenter Class 2 CA II_TC TrustCenter GmbH.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/a6a593ba.0 b/test/rules/platform_certs/cacert/a6a593ba.0 deleted file mode 120000 index b09ce3813321..000000000000 --- a/test/rules/platform_certs/cacert/a6a593ba.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-108_Digital Signature Trust Co.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/a760e1bd.0 b/test/rules/platform_certs/cacert/a760e1bd.0 deleted file mode 120000 index 4b12cf93e787..000000000000 --- a/test/rules/platform_certs/cacert/a760e1bd.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-107_Visa eCommerce Root_VISA.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/a8dee976.0 b/test/rules/platform_certs/cacert/a8dee976.0 deleted file mode 120000 index 3f091786e1ca..000000000000 --- a/test/rules/platform_certs/cacert/a8dee976.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-079_SwissSign Platinum CA - G2_SwissSign AG.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/ad088e1d.0 b/test/rules/platform_certs/cacert/ad088e1d.0 deleted file mode 120000 index f465ade2bab8..000000000000 --- a/test/rules/platform_certs/cacert/ad088e1d.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-161_GeoTrust Universal CA_GeoTrust Inc.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/ae8153b9.0 b/test/rules/platform_certs/cacert/ae8153b9.0 deleted file mode 120000 index ddcd234bde18..000000000000 --- a/test/rules/platform_certs/cacert/ae8153b9.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-016_StartCom Certification Authority_StartCom Ltd.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/aee5f10d.0 b/test/rules/platform_certs/cacert/aee5f10d.0 deleted file mode 120000 index 660618d78682..000000000000 --- a/test/rules/platform_certs/cacert/aee5f10d.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-028_Entrust.net Certification Authority (2048)_Entrust.net.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/b1159c4c.0 b/test/rules/platform_certs/cacert/b1159c4c.0 deleted file mode 120000 index 4898ba751831..000000000000 --- a/test/rules/platform_certs/cacert/b1159c4c.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-060_DigiCert Assured ID Root CA_DigiCert Inc.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/b13cc6df.0 b/test/rules/platform_certs/cacert/b13cc6df.0 deleted file mode 120000 index 62c5920d4e5f..000000000000 --- a/test/rules/platform_certs/cacert/b13cc6df.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-030_UTN-USERFirst-Hardware_The USERTRUST Network.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/b1b8a7f3.0 b/test/rules/platform_certs/cacert/b1b8a7f3.0 deleted file mode 120000 index 4997164fd91c..000000000000 --- a/test/rules/platform_certs/cacert/b1b8a7f3.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-081_OISTE WISeKey Global Root GA CA_WISeKey.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/b204d74a.0 b/test/rules/platform_certs/cacert/b204d74a.0 deleted file mode 120000 index 597eb47a10d0..000000000000 --- a/test/rules/platform_certs/cacert/b204d74a.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-061_VeriSign Class 3 Public Primary Certification Authority - G5_VeriSign, Inc.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/b42ff584.0 b/test/rules/platform_certs/cacert/b42ff584.0 deleted file mode 120000 index a1c3cdd36d3b..000000000000 --- a/test/rules/platform_certs/cacert/b42ff584.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-140_Staat der Nederlanden Root CA_Staat der Nederlanden.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/b66938e9.0 b/test/rules/platform_certs/cacert/b66938e9.0 deleted file mode 120000 index 8552f2e34c04..000000000000 --- a/test/rules/platform_certs/cacert/b66938e9.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-115_Secure Global CA_SecureTrust Corporation.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/b6c5745d.0 b/test/rules/platform_certs/cacert/b6c5745d.0 deleted file mode 120000 index be9b08c329fa..000000000000 --- a/test/rules/platform_certs/cacert/b6c5745d.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-048_CA Disig_Disig a.s.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/b727005e.0 b/test/rules/platform_certs/cacert/b727005e.0 deleted file mode 120000 index 9373beb805da..000000000000 --- a/test/rules/platform_certs/cacert/b727005e.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-087_AffirmTrust Premium_AffirmTrust.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/b7a5b843.0 b/test/rules/platform_certs/cacert/b7a5b843.0 deleted file mode 120000 index 4275da499297..000000000000 --- a/test/rules/platform_certs/cacert/b7a5b843.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-025_TWCA Root Certification Authority_TAIWAN-CA.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/b7e7231a.0 b/test/rules/platform_certs/cacert/b7e7231a.0 deleted file mode 120000 index 0ead3d12cb1c..000000000000 --- a/test/rules/platform_certs/cacert/b7e7231a.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-146_NetLock Uzleti (Class B) Tanusitvanykiado_NetLock Halozatbiztonsagi Kft.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/b8e83700.0 b/test/rules/platform_certs/cacert/b8e83700.0 deleted file mode 120000 index 9611fc1e75a2..000000000000 --- a/test/rules/platform_certs/cacert/b8e83700.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-085_VeriSign, Inc.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/ba89ed3b.0 b/test/rules/platform_certs/cacert/ba89ed3b.0 deleted file mode 120000 index bad483d7e47f..000000000000 --- a/test/rules/platform_certs/cacert/ba89ed3b.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-073_thawte Primary Root CA - G3_thawte, Inc.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/bad35b78.0 b/test/rules/platform_certs/cacert/bad35b78.0 deleted file mode 120000 index a9a596ed3c08..000000000000 --- a/test/rules/platform_certs/cacert/bad35b78.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-031_VeriSign Class 4 Public Primary Certification Authority - G3_VeriSign, Inc.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/bb2d49a0.0 b/test/rules/platform_certs/cacert/bb2d49a0.0 deleted file mode 120000 index d3828c88bca2..000000000000 --- a/test/rules/platform_certs/cacert/bb2d49a0.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-034_ComSign CA_ComSign.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/bd1910d4.0 b/test/rules/platform_certs/cacert/bd1910d4.0 deleted file mode 120000 index 40ddaeacd932..000000000000 --- a/test/rules/platform_certs/cacert/bd1910d4.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-015_CNNIC ROOT_CNNIC.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/c01cdfa2.0 b/test/rules/platform_certs/cacert/c01cdfa2.0 deleted file mode 120000 index 37dc434dbf18..000000000000 --- a/test/rules/platform_certs/cacert/c01cdfa2.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-156_VeriSign Universal Root Certification Authority_VeriSign, Inc.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/c089bbbd.0 b/test/rules/platform_certs/cacert/c089bbbd.0 deleted file mode 120000 index 20c0b7d05f38..000000000000 --- a/test/rules/platform_certs/cacert/c089bbbd.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-071_thawte Primary Root CA - G2_thawte, Inc.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/c0ff1f52.0 b/test/rules/platform_certs/cacert/c0ff1f52.0 deleted file mode 120000 index b28f734e7fec..000000000000 --- a/test/rules/platform_certs/cacert/c0ff1f52.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-083_VeriSign Class 3 Public Primary Certification Authority - G3_VeriSign, Inc.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/c47d9980.0 b/test/rules/platform_certs/cacert/c47d9980.0 deleted file mode 120000 index 118fa94e282a..000000000000 --- a/test/rules/platform_certs/cacert/c47d9980.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-056_Chambers of Commerce Root - 2008_AC Camerfirma S.A.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/c5e082db.0 b/test/rules/platform_certs/cacert/c5e082db.0 deleted file mode 120000 index 81b82f2ff151..000000000000 --- a/test/rules/platform_certs/cacert/c5e082db.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-052_UTN-USERFirst-Client Authentication and Email_The USERTRUST Network.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/c692a373.0 b/test/rules/platform_certs/cacert/c692a373.0 deleted file mode 120000 index 379807c53de5..000000000000 --- a/test/rules/platform_certs/cacert/c692a373.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-068_GTE CyberTrust Global Root_GTE Corporation.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/c8841d13.0 b/test/rules/platform_certs/cacert/c8841d13.0 deleted file mode 120000 index 12f2b5ac1f5a..000000000000 --- a/test/rules/platform_certs/cacert/c8841d13.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-129_TC TrustCenter Universal CA I_TC TrustCenter GmbH.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/c99398f3.0 b/test/rules/platform_certs/cacert/c99398f3.0 deleted file mode 120000 index 4eba0b514e2c..000000000000 --- a/test/rules/platform_certs/cacert/c99398f3.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-170_RSA Security Inc.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/c9f83a1c.0 b/test/rules/platform_certs/cacert/c9f83a1c.0 deleted file mode 120000 index da46cca2d791..000000000000 --- a/test/rules/platform_certs/cacert/c9f83a1c.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-042_Secure Certificate Services_Comodo CA Limited.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/ca6e4ad9.0 b/test/rules/platform_certs/cacert/ca6e4ad9.0 deleted file mode 120000 index 393ccb56cdf2..000000000000 --- a/test/rules/platform_certs/cacert/ca6e4ad9.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-090_Chunghwa Telecom Co., Ltd.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/cacert1.pem b/test/rules/platform_certs/cacert/cacert1.pem deleted file mode 100644 index e7dfc82947e3..000000000000 --- a/test/rules/platform_certs/cacert/cacert1.pem +++ /dev/null @@ -1,41 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIHPTCCBSWgAwIBAgIBADANBgkqhkiG9w0BAQQFADB5MRAwDgYDVQQKEwdSb290 -IENBMR4wHAYDVQQLExVodHRwOi8vd3d3LmNhY2VydC5vcmcxIjAgBgNVBAMTGUNB -IENlcnQgU2lnbmluZyBBdXRob3JpdHkxITAfBgkqhkiG9w0BCQEWEnN1cHBvcnRA -Y2FjZXJ0Lm9yZzAeFw0wMzAzMzAxMjI5NDlaFw0zMzAzMjkxMjI5NDlaMHkxEDAO -BgNVBAoTB1Jvb3QgQ0ExHjAcBgNVBAsTFWh0dHA6Ly93d3cuY2FjZXJ0Lm9yZzEi -MCAGA1UEAxMZQ0EgQ2VydCBTaWduaW5nIEF1dGhvcml0eTEhMB8GCSqGSIb3DQEJ -ARYSc3VwcG9ydEBjYWNlcnQub3JnMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC -CgKCAgEAziLA4kZ97DYoB1CW8qAzQIxL8TtmPzHlawI229Z89vGIj053NgVBlfkJ -8BLPRoZzYLdufujAWGSuzbCtRRcMY/pnCujW0r8+55jE8Ez64AO7NV1sId6eINm6 -zWYyN3L69wj1x81YyY7nDl7qPv4coRQKFWyGhFtkZip6qUtTefWIonvuLwphK42y -fk1WpRPs6tqSnqxEQR5YYGUFZvjARL3LlPdCfgv3ZWiYUQXw8wWRBB0bF4LsyFe7 -w2t6iPGwcswlWyCR7BYCEo8y6RcYSNDHBS4CMEK4JZwFaz+qOqfrU0j36NK2B5jc -G8Y0f3/JHIJ6BVgrCFvzOKKrF11myZjXnhCLotLddJr3cQxyYN/Nb5gznZY0dj4k -epKwDpUeb+agRThHqtdB7Uq3EvbXG4OKDy7YCbZZ16oE/9KTfWgu3YtLq1i6L43q -laegw1SJpfvbi1EinbLDvhG+LJGGi5Z4rSDTii8aP8bQUWWHIbEZAWV/RRyH9XzQ -QUxPKZgh/TMfdQwEUfoZd9vUFBzugcMd9Zi3aQaRIt0AUMyBMawSB3s42mhb5ivU -fslfrejrckzzAeVLIL+aplfKkQABi6F1ITe1Yw1nPkZPcCBnzsXWWdsC4PDSy826 -YreQQejdIOQpvGQpQsgi3Hia/0PsmBsJUUtaWsJx8cTLc6nloQsCAwEAAaOCAc4w -ggHKMB0GA1UdDgQWBBQWtTIb1Mfz4OaO873SsDrusjkY0TCBowYDVR0jBIGbMIGY -gBQWtTIb1Mfz4OaO873SsDrusjkY0aF9pHsweTEQMA4GA1UEChMHUm9vdCBDQTEe -MBwGA1UECxMVaHR0cDovL3d3dy5jYWNlcnQub3JnMSIwIAYDVQQDExlDQSBDZXJ0 -IFNpZ25pbmcgQXV0aG9yaXR5MSEwHwYJKoZIhvcNAQkBFhJzdXBwb3J0QGNhY2Vy -dC5vcmeCAQAwDwYDVR0TAQH/BAUwAwEB/zAyBgNVHR8EKzApMCegJaAjhiFodHRw -czovL3d3dy5jYWNlcnQub3JnL3Jldm9rZS5jcmwwMAYJYIZIAYb4QgEEBCMWIWh0 -dHBzOi8vd3d3LmNhY2VydC5vcmcvcmV2b2tlLmNybDA0BglghkgBhvhCAQgEJxYl -aHR0cDovL3d3dy5jYWNlcnQub3JnL2luZGV4LnBocD9pZD0xMDBWBglghkgBhvhC -AQ0ESRZHVG8gZ2V0IHlvdXIgb3duIGNlcnRpZmljYXRlIGZvciBGUkVFIGhlYWQg -b3ZlciB0byBodHRwOi8vd3d3LmNhY2VydC5vcmcwDQYJKoZIhvcNAQEEBQADggIB -ACjH7pyCArpcgBLKNQodgW+JapnM8mgPf6fhjViVPr3yBsOQWqy1YPaZQwGjiHCc -nWKdpIevZ1gNMDY75q1I08t0AoZxPuIrA2jxNGJARjtT6ij0rPtmlVOKTV39O9lg -18p5aTuxZZKmxoGCXJzN600BiqXfEVWqFcofN8CCmHBh22p8lqOOLlQ+TyGpkO/c -gr/c6EWtTZBzCDyUZbAEmXZ/4rzCahWqlwQ3JNgelE5tDlG+1sSPypZt90Pf6DBl -Jzt7u0NDY8RD97LsaMzhGY4i+5jhe1o+ATc7iwiwovOVThrLm82asduycPAtStvY -sONvRUgzEv/+PDIqVPfE94rwiCPCR/5kenHA0R6mY7AHfqQv0wGP3J8rtsYIqQ+T -SCX8Ev2fQtzzxD72V7DX3WnRBnc0CkvSyqD/HMaMyRa+xMwyN2hzXwj7UfdJUzYF -CpUCTPJ5GhD22Dp1nPMd8aINcGeGG7MW9S/lpOt5hvk9C8JzC6WZrG/8Z7jlLwum -GCSNe9FINSkYQKyTYOGWhlC0elnYjyELn8+CkcY7v2vcB5G5l1YjqrZslMZIBjzk -zk6q5PYvCdxTby78dOs6Y5nCpqyJvKeyRKANihDjbPIky/qbn3BHLt4Ui9SyIAmW -omTxJBzcoTWcFbLUvFUufQb1nA5V9FrWk9p2rSVzTMVD ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/cacert2.pem b/test/rules/platform_certs/cacert/cacert2.pem deleted file mode 100644 index 35e2689d98ff..000000000000 --- a/test/rules/platform_certs/cacert/cacert2.pem +++ /dev/null @@ -1,35 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIGCDCCA/CgAwIBAgIBATANBgkqhkiG9w0BAQQFADB5MRAwDgYDVQQKEwdSb290 -IENBMR4wHAYDVQQLExVodHRwOi8vd3d3LmNhY2VydC5vcmcxIjAgBgNVBAMTGUNB -IENlcnQgU2lnbmluZyBBdXRob3JpdHkxITAfBgkqhkiG9w0BCQEWEnN1cHBvcnRA -Y2FjZXJ0Lm9yZzAeFw0wNTEwMTQwNzM2NTVaFw0zMzAzMjgwNzM2NTVaMFQxFDAS -BgNVBAoTC0NBY2VydCBJbmMuMR4wHAYDVQQLExVodHRwOi8vd3d3LkNBY2VydC5v -cmcxHDAaBgNVBAMTE0NBY2VydCBDbGFzcyAzIFJvb3QwggIiMA0GCSqGSIb3DQEB -AQUAA4ICDwAwggIKAoICAQCrSTURSHzSJn5TlM9Dqd0o10Iqi/OHeBlYfA+e2ol9 -4fvrcpANdKGWZKufoCSZc9riVXbHF3v1BKxGuMO+f2SNEGwk82GcwPKQ+lHm9WkB -Y8MPVuJKQs/iRIwlKKjFeQl9RrmK8+nzNCkIReQcn8uUBByBqBSzmGXEQ+xOgo0J -0b2qW42S0OzekMV/CsLj6+YxWl50PpczWejDAz1gM7/30W9HxM3uYoNSbi4ImqTZ -FRiRpoWSR7CuSOtttyHshRpocjWr//AQXcD0lKdq1TuSfkyQBX6TwSyLpI5idBVx -bgtxA+qvFTia1NIFcm+M+SvrWnIl+TlG43IbPgTDZCciECqKT1inA62+tC4T7V2q -SNfVfdQqe1z6RgRQ5MwOQluM7dvyz/yWk+DbETZUYjQ4jwxgmzuXVjit89Jbi6Bb -6k6WuHzX1aCGcEDTkSm3ojyt9Yy7zxqSiuQ0e8DYbF/pCsLDpyCaWt8sXVJcukfV -m+8kKHA4IC/VfynAskEDaJLM4JzMl0tF7zoQCqtwOpiVcK01seqFK6QcgCExqa5g -eoAmSAC4AcCTY1UikTxW56/bOiXzjzFU6iaLgVn5odFTEcV7nQP2dBHgbbEsPyyG -kZlxmqZ3izRg0RS0LKydr4wQ05/EavhvE/xzWfdmQnQeiuP43NJvmJzLR5iVQAX7 -6QIDAQABo4G/MIG8MA8GA1UdEwEB/wQFMAMBAf8wXQYIKwYBBQUHAQEEUTBPMCMG -CCsGAQUFBzABhhdodHRwOi8vb2NzcC5DQWNlcnQub3JnLzAoBggrBgEFBQcwAoYc -aHR0cDovL3d3dy5DQWNlcnQub3JnL2NhLmNydDBKBgNVHSAEQzBBMD8GCCsGAQQB -gZBKMDMwMQYIKwYBBQUHAgEWJWh0dHA6Ly93d3cuQ0FjZXJ0Lm9yZy9pbmRleC5w -aHA/aWQ9MTAwDQYJKoZIhvcNAQEEBQADggIBAH8IiKHaGlBJ2on7oQhy84r3HsQ6 -tHlbIDCxRd7CXdNlafHCXVRUPIVfuXtCkcKZ/RtRm6tGpaEQU55tiKxzbiwzpvD0 -nuB1wT6IRanhZkP+VlrRekF490DaSjrxC1uluxYG5sLnk7mFTZdPsR44Q4Dvmw2M -77inYACHV30eRBzLI++bPJmdr7UpHEV5FpZNJ23xHGzDwlVks7wU4vOkHx4y/CcV -Bc/dLq4+gmF78CEQGPZE6lM5+dzQmiDgxrvgu1pPxJnIB721vaLbLmINQjRBvP+L -ivVRIqqIMADisNS8vmW61QNXeZvo3MhN+FDtkaVSKKKs+zZYPumUK5FQhxvWXtaM -zPcPEAxSTtAWYeXlCmy/F8dyRlecmPVsYGN6b165Ti/Iubm7aoW8mA3t+T6XhDSU -rgCvoeXnkm5OvfPi2RSLXNLrAWygF6UtEOucekq9ve7O/e0iQKtwOIj1CodqwqsF -YMlIBdpTwd5Ed2qz8zw87YC8pjhKKSRf/lk7myV6VmMAZLldpGJ9VzZPrYPvH5JT -oI53V93lYRE9IwCQTDz6o2CTBKOvNfYOao9PSmCnhQVsRqGP9Md246FZV/dxssRu -FFxtbUFm3xuTsdQAw+7Lzzw9IYCpX2Nl/N3gX6T0K/CFcUHUZyX7GrGXrtaZghNB -0m6lG5kngOcLqagA ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/cacert3.pem b/test/rules/platform_certs/cacert/cacert3.pem deleted file mode 100644 index 087ca0e52a57..000000000000 --- a/test/rules/platform_certs/cacert/cacert3.pem +++ /dev/null @@ -1,42 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIHWTCCBUGgAwIBAgIDCkGKMA0GCSqGSIb3DQEBCwUAMHkxEDAOBgNVBAoTB1Jv -b3QgQ0ExHjAcBgNVBAsTFWh0dHA6Ly93d3cuY2FjZXJ0Lm9yZzEiMCAGA1UEAxMZ -Q0EgQ2VydCBTaWduaW5nIEF1dGhvcml0eTEhMB8GCSqGSIb3DQEJARYSc3VwcG9y -dEBjYWNlcnQub3JnMB4XDTExMDUyMzE3NDgwMloXDTIxMDUyMDE3NDgwMlowVDEU -MBIGA1UEChMLQ0FjZXJ0IEluYy4xHjAcBgNVBAsTFWh0dHA6Ly93d3cuQ0FjZXJ0 -Lm9yZzEcMBoGA1UEAxMTQ0FjZXJ0IENsYXNzIDMgUm9vdDCCAiIwDQYJKoZIhvcN -AQEBBQADggIPADCCAgoCggIBAKtJNRFIfNImflOUz0Op3SjXQiqL84d4GVh8D57a -iX3h++tykA10oZZkq5+gJJlz2uJVdscXe/UErEa4w75/ZI0QbCTzYZzA8pD6Ueb1 -aQFjww9W4kpCz+JEjCUoqMV5CX1GuYrz6fM0KQhF5Byfy5QEHIGoFLOYZcRD7E6C -jQnRvapbjZLQ7N6QxX8KwuPr5jFaXnQ+lzNZ6MMDPWAzv/fRb0fEze5ig1JuLgia -pNkVGJGmhZJHsK5I6223IeyFGmhyNav/8BBdwPSUp2rVO5J+TJAFfpPBLIukjmJ0 -FXFuC3ED6q8VOJrU0gVyb4z5K+taciX5OUbjchs+BMNkJyIQKopPWKcDrb60LhPt -XapI19V91Cp7XPpGBFDkzA5CW4zt2/LP/JaT4NsRNlRiNDiPDGCbO5dWOK3z0luL -oFvqTpa4fNfVoIZwQNORKbeiPK31jLvPGpKK5DR7wNhsX+kKwsOnIJpa3yxdUly6 -R9Wb7yQocDggL9V/KcCyQQNokszgnMyXS0XvOhAKq3A6mJVwrTWx6oUrpByAITGp -rmB6gCZIALgBwJNjVSKRPFbnr9s6JfOPMVTqJouBWfmh0VMRxXudA/Z0EeBtsSw/ -LIaRmXGapneLNGDRFLQsrJ2vjBDTn8Rq+G8T/HNZ92ZCdB6K4/jc0m+YnMtHmJVA -BfvpAgMBAAGjggINMIICCTAdBgNVHQ4EFgQUdahxYEyIE/B42Yl3tW3Fid+8sXow -gaMGA1UdIwSBmzCBmIAUFrUyG9TH8+DmjvO90rA67rI5GNGhfaR7MHkxEDAOBgNV -BAoTB1Jvb3QgQ0ExHjAcBgNVBAsTFWh0dHA6Ly93d3cuY2FjZXJ0Lm9yZzEiMCAG -A1UEAxMZQ0EgQ2VydCBTaWduaW5nIEF1dGhvcml0eTEhMB8GCSqGSIb3DQEJARYS -c3VwcG9ydEBjYWNlcnQub3JnggEAMA8GA1UdEwEB/wQFMAMBAf8wXQYIKwYBBQUH -AQEEUTBPMCMGCCsGAQUFBzABhhdodHRwOi8vb2NzcC5DQWNlcnQub3JnLzAoBggr -BgEFBQcwAoYcaHR0cDovL3d3dy5DQWNlcnQub3JnL2NhLmNydDBKBgNVHSAEQzBB -MD8GCCsGAQQBgZBKMDMwMQYIKwYBBQUHAgEWJWh0dHA6Ly93d3cuQ0FjZXJ0Lm9y -Zy9pbmRleC5waHA/aWQ9MTAwNAYJYIZIAYb4QgEIBCcWJWh0dHA6Ly93d3cuQ0Fj -ZXJ0Lm9yZy9pbmRleC5waHA/aWQ9MTAwUAYJYIZIAYb4QgENBEMWQVRvIGdldCB5 -b3VyIG93biBjZXJ0aWZpY2F0ZSBmb3IgRlJFRSwgZ28gdG8gaHR0cDovL3d3dy5D -QWNlcnQub3JnMA0GCSqGSIb3DQEBCwUAA4ICAQApKIWuRKm5r6R5E/CooyuXYPNc -7uMvwfbiZqARrjY3OnYVBFPqQvX56sAV2KaC2eRhrnILKVyQQ+hBsuF32wITRHhH -Va9Y/MyY9kW50SD42CEH/m2qc9SzxgfpCYXMO/K2viwcJdVxjDm1Luq+GIG6sJO4 -D+Pm1yaMMVpyA4RS5qb1MyJFCsgLDYq4Nm+QCaGrvdfVTi5xotSu+qdUK+s1jVq3 -VIgv7nSf7UgWyg1I0JTTrKSi9iTfkuO960NAkW4cGI5WtIIS86mTn9S8nK2cde5a -lxuV53QtHA+wLJef+6kzOXrnAzqSjiL2jA3k2X4Ndhj3AfnvlpaiVXPAPHG0HRpW -Q7fDCo1y/OIQCQtBzoyUoPkD/XFzS4pXM+WOdH4VAQDmzEoc53+VGS3FpQyLu7Xt -hbNc09+4ufLKxw0BFKxwWMWMjTPUnWajGlCVI/xI4AZDEtnNp4Y5LzZyo4AQ5OHz -0ctbGsDkgJp8E3MGT9ujayQKurMcvEp4u+XjdTilSKeiHq921F73OIZWWonO1sOn -ebJSoMbxhbQljPI/lrMQ2Y1sVzufb4Y6GIIiNsiwkTjbKqGTqoQ/9SdlrnPVyNXT -d+pLncdBu8fA46A/5H2kjXPmEkvfoXNzczqA6NXLji/L6hOn1kGLrPo8idck9U60 -4GGSt/M3mMS+lqO3ig== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/cacert/cb357862.0 b/test/rules/platform_certs/cacert/cb357862.0 deleted file mode 120000 index a8d81fb13be4..000000000000 --- a/test/rules/platform_certs/cacert/cb357862.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-139_VeriSign, Inc.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/cb59f961.0 b/test/rules/platform_certs/cacert/cb59f961.0 deleted file mode 120000 index 77c468093ddd..000000000000 --- a/test/rules/platform_certs/cacert/cb59f961.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-172_Global Chambersign Root_AC Camerfirma SA CIF A82743287.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/cbeee9e2.0 b/test/rules/platform_certs/cacert/cbeee9e2.0 deleted file mode 120000 index a0b90c3e57c2..000000000000 --- a/test/rules/platform_certs/cacert/cbeee9e2.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-022_GeoTrust Global CA 2_GeoTrust Inc.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/cbf06781.0 b/test/rules/platform_certs/cacert/cbf06781.0 deleted file mode 120000 index 98eac305753c..000000000000 --- a/test/rules/platform_certs/cacert/cbf06781.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-110_Go Daddy Root Certificate Authority - G2_GoDaddy.com, Inc.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/cc154c6e.0 b/test/rules/platform_certs/cacert/cc154c6e.0 deleted file mode 120000 index 5ad715366f5f..000000000000 --- a/test/rules/platform_certs/cacert/cc154c6e.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-077_DigiNotar Cyber CA_DigiNotar.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/cc450945.0 b/test/rules/platform_certs/cacert/cc450945.0 deleted file mode 120000 index 8c73f5c95447..000000000000 --- a/test/rules/platform_certs/cacert/cc450945.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-114_Izenpe.com_IZENPE S.A.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/cd58d51e.0 b/test/rules/platform_certs/cacert/cd58d51e.0 deleted file mode 120000 index 2dab0be63664..000000000000 --- a/test/rules/platform_certs/cacert/cd58d51e.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-043_SECOM Trust Systems CO.,LTD.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/ce026bf8.0 b/test/rules/platform_certs/cacert/ce026bf8.0 deleted file mode 120000 index 0d6f0008adf7..000000000000 --- a/test/rules/platform_certs/cacert/ce026bf8.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-124_Autoridad de Certificacion Firmaprofesional CIF A62634068.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/ce486240.0 b/test/rules/platform_certs/cacert/ce486240.0 deleted file mode 120000 index 68000e43de5e..000000000000 --- a/test/rules/platform_certs/cacert/ce486240.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-072_Digisign Server ID (Enrich)_Digicert Sdn. Bhd.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/cfa1c2ee.0 b/test/rules/platform_certs/cacert/cfa1c2ee.0 deleted file mode 120000 index f7580a2b9943..000000000000 --- a/test/rules/platform_certs/cacert/cfa1c2ee.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-154_Buypass Class 2 CA 1_Buypass AS-983163327.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/d7e8dc79.0 b/test/rules/platform_certs/cacert/d7e8dc79.0 deleted file mode 120000 index 31e488f9ffc1..000000000000 --- a/test/rules/platform_certs/cacert/d7e8dc79.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-120_QuoVadis Root CA 2_QuoVadis Limited.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/d957f522.0 b/test/rules/platform_certs/cacert/d957f522.0 deleted file mode 120000 index c7e5a91b8c6f..000000000000 --- a/test/rules/platform_certs/cacert/d957f522.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-020_Certinomis - Autorité Racine_Certinomis.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/d9d12c58.0 b/test/rules/platform_certs/cacert/d9d12c58.0 deleted file mode 120000 index 8957f8a75670..000000000000 --- a/test/rules/platform_certs/cacert/d9d12c58.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-128_NetLock Kozjegyzoi (Class A) Tanusitvanykiado_NetLock Halozatbiztonsagi Kft.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/dc45b0bd.0 b/test/rules/platform_certs/cacert/dc45b0bd.0 deleted file mode 120000 index 770d1522a6ed..000000000000 --- a/test/rules/platform_certs/cacert/dc45b0bd.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-119_VeriSign Class 2 Public Primary Certification Authority - G3_VeriSign, Inc.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/e113c810.0 b/test/rules/platform_certs/cacert/e113c810.0 deleted file mode 120000 index 97fc3fc5832f..000000000000 --- a/test/rules/platform_certs/cacert/e113c810.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-017_Certigna_Dhimyotis.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/e2799e36.0 b/test/rules/platform_certs/cacert/e2799e36.0 deleted file mode 120000 index f64f16e9d909..000000000000 --- a/test/rules/platform_certs/cacert/e2799e36.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-122_GeoTrust Primary Certification Authority - G3_GeoTrust Inc.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/e536d871.0 b/test/rules/platform_certs/cacert/e536d871.0 deleted file mode 120000 index 28f802a30e37..000000000000 --- a/test/rules/platform_certs/cacert/e536d871.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-101_AddTrust Qualified CA Root_AddTrust AB.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/eacdeb40.0 b/test/rules/platform_certs/cacert/eacdeb40.0 deleted file mode 120000 index 21beaeb05c08..000000000000 --- a/test/rules/platform_certs/cacert/eacdeb40.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-067_America Online Root Certification Authority 1_America Online Inc.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/ed574ed8.0 b/test/rules/platform_certs/cacert/ed574ed8.0 deleted file mode 120000 index afa9c5acc74f..000000000000 --- a/test/rules/platform_certs/cacert/ed574ed8.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-004_Entrust Certification Authority - L1C_Entrust, Inc.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/ee1365c0.0 b/test/rules/platform_certs/cacert/ee1365c0.0 deleted file mode 120000 index c6ffe7666db1..000000000000 --- a/test/rules/platform_certs/cacert/ee1365c0.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-133_VeriSign Class 1 Public Primary Certification Authority - G3_VeriSign, Inc.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/ee64a828.0 b/test/rules/platform_certs/cacert/ee64a828.0 deleted file mode 120000 index 8b3f1d983298..000000000000 --- a/test/rules/platform_certs/cacert/ee64a828.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-111_AAA Certificate Services_Comodo CA Limited.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/eed8c118.0 b/test/rules/platform_certs/cacert/eed8c118.0 deleted file mode 120000 index 68bd7005bb3b..000000000000 --- a/test/rules/platform_certs/cacert/eed8c118.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-044_COMODO ECC Certification Authority_COMODO CA Limited.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/ef2f636c.0 b/test/rules/platform_certs/cacert/ef2f636c.0 deleted file mode 120000 index ed146d06a5e2..000000000000 --- a/test/rules/platform_certs/cacert/ef2f636c.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-070_Equifax Secure Global eBusiness CA-1_Equifax Secure Inc.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/f060240e.0 b/test/rules/platform_certs/cacert/f060240e.0 deleted file mode 120000 index de569bca3364..000000000000 --- a/test/rules/platform_certs/cacert/f060240e.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-099_Class 2 Primary CA_Certplus.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/f081611a.0 b/test/rules/platform_certs/cacert/f081611a.0 deleted file mode 120000 index 3ede621d5068..000000000000 --- a/test/rules/platform_certs/cacert/f081611a.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-167_The Go Daddy Group, Inc.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/f3377b1b.0 b/test/rules/platform_certs/cacert/f3377b1b.0 deleted file mode 120000 index b34cb450d721..000000000000 --- a/test/rules/platform_certs/cacert/f3377b1b.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-118_SECOM Trust.net.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/f387163d.0 b/test/rules/platform_certs/cacert/f387163d.0 deleted file mode 120000 index 03e95784f6f2..000000000000 --- a/test/rules/platform_certs/cacert/f387163d.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-142_Starfield Technologies, Inc.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/f39fc864.0 b/test/rules/platform_certs/cacert/f39fc864.0 deleted file mode 120000 index 6bbbda5876bd..000000000000 --- a/test/rules/platform_certs/cacert/f39fc864.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-160_SecureTrust CA_SecureTrust Corporation.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/f90208f7.0 b/test/rules/platform_certs/cacert/f90208f7.0 deleted file mode 120000 index 9ff02fb9ffb0..000000000000 --- a/test/rules/platform_certs/cacert/f90208f7.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-093_Chambers of Commerce Root_AC Camerfirma SA CIF A82743287.pem \ No newline at end of file diff --git a/test/rules/platform_certs/cacert/fcac10e3.0 b/test/rules/platform_certs/cacert/fcac10e3.0 deleted file mode 120000 index 37f148aa5a28..000000000000 --- a/test/rules/platform_certs/cacert/fcac10e3.0 +++ /dev/null @@ -1 +0,0 @@ -Cert-011_Juur-SK_AS Sertifitseerimiskeskus.pem \ No newline at end of file diff --git a/test/rules/platform_certs/chromium b/test/rules/platform_certs/chromium deleted file mode 120000 index 331d858ce9b1..000000000000 --- a/test/rules/platform_certs/chromium +++ /dev/null @@ -1 +0,0 @@ -default \ No newline at end of file diff --git a/test/rules/platform_certs/default/00673b5b.0 b/test/rules/platform_certs/default/00673b5b.0 new file mode 120000 index 000000000000..302405f29057 --- /dev/null +++ b/test/rules/platform_certs/default/00673b5b.0 @@ -0,0 +1 @@ +cert028.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/02265526.0 b/test/rules/platform_certs/default/02265526.0 new file mode 120000 index 000000000000..62f8be0348c9 --- /dev/null +++ b/test/rules/platform_certs/default/02265526.0 @@ -0,0 +1 @@ +cert100.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/03179a64.0 b/test/rules/platform_certs/default/03179a64.0 new file mode 120000 index 000000000000..fecfe84b3ea3 --- /dev/null +++ b/test/rules/platform_certs/default/03179a64.0 @@ -0,0 +1 @@ +cert097.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/04f60c28.0 b/test/rules/platform_certs/default/04f60c28.0 new file mode 120000 index 000000000000..fe8b7f684bf0 --- /dev/null +++ b/test/rules/platform_certs/default/04f60c28.0 @@ -0,0 +1 @@ +cert093.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/062cdee6.0 b/test/rules/platform_certs/default/062cdee6.0 new file mode 120000 index 000000000000..07df9b5eca3e --- /dev/null +++ b/test/rules/platform_certs/default/062cdee6.0 @@ -0,0 +1 @@ +cert051.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/064e0aa9.0 b/test/rules/platform_certs/default/064e0aa9.0 new file mode 120000 index 000000000000..b81347e699c8 --- /dev/null +++ b/test/rules/platform_certs/default/064e0aa9.0 @@ -0,0 +1 @@ +cert084.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/06dc52d5.0 b/test/rules/platform_certs/default/06dc52d5.0 new file mode 120000 index 000000000000..d358a74650d5 --- /dev/null +++ b/test/rules/platform_certs/default/06dc52d5.0 @@ -0,0 +1 @@ +cert122.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/080911ac.0 b/test/rules/platform_certs/default/080911ac.0 new file mode 120000 index 000000000000..d752b5b008b5 --- /dev/null +++ b/test/rules/platform_certs/default/080911ac.0 @@ -0,0 +1 @@ +cert012.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/09789157.0 b/test/rules/platform_certs/default/09789157.0 new file mode 120000 index 000000000000..0413f9be7825 --- /dev/null +++ b/test/rules/platform_certs/default/09789157.0 @@ -0,0 +1 @@ +cert058.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/0a775a30.0 b/test/rules/platform_certs/default/0a775a30.0 new file mode 120000 index 000000000000..158192fc7dde --- /dev/null +++ b/test/rules/platform_certs/default/0a775a30.0 @@ -0,0 +1 @@ +cert128.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/0b1b94ef.0 b/test/rules/platform_certs/default/0b1b94ef.0 new file mode 120000 index 000000000000..92d55d0abb91 --- /dev/null +++ b/test/rules/platform_certs/default/0b1b94ef.0 @@ -0,0 +1 @@ +cert102.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/0bf05006.0 b/test/rules/platform_certs/default/0bf05006.0 new file mode 120000 index 000000000000..fbeb5ff12554 --- /dev/null +++ b/test/rules/platform_certs/default/0bf05006.0 @@ -0,0 +1 @@ +cert121.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/0c4c9b6c.0 b/test/rules/platform_certs/default/0c4c9b6c.0 new file mode 120000 index 000000000000..426310756475 --- /dev/null +++ b/test/rules/platform_certs/default/0c4c9b6c.0 @@ -0,0 +1 @@ +cert055.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/0d69c7e1.0 b/test/rules/platform_certs/default/0d69c7e1.0 new file mode 120000 index 000000000000..6d6bdec5e46b --- /dev/null +++ b/test/rules/platform_certs/default/0d69c7e1.0 @@ -0,0 +1 @@ +cert094.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/0f5dc4f3.0 b/test/rules/platform_certs/default/0f5dc4f3.0 new file mode 120000 index 000000000000..68fd619a62a8 --- /dev/null +++ b/test/rules/platform_certs/default/0f5dc4f3.0 @@ -0,0 +1 @@ +cert131.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/0f6fa695.0 b/test/rules/platform_certs/default/0f6fa695.0 new file mode 120000 index 000000000000..dc215b21fff3 --- /dev/null +++ b/test/rules/platform_certs/default/0f6fa695.0 @@ -0,0 +1 @@ +cert116.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/1001acf7.0 b/test/rules/platform_certs/default/1001acf7.0 new file mode 120000 index 000000000000..4cb45c9ec0e0 --- /dev/null +++ b/test/rules/platform_certs/default/1001acf7.0 @@ -0,0 +1 @@ +cert126.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/10531352.0 b/test/rules/platform_certs/default/10531352.0 new file mode 120000 index 000000000000..0413f9be7825 --- /dev/null +++ b/test/rules/platform_certs/default/10531352.0 @@ -0,0 +1 @@ +cert058.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/106f3e4d.0 b/test/rules/platform_certs/default/106f3e4d.0 new file mode 120000 index 000000000000..ecbee746f069 --- /dev/null +++ b/test/rules/platform_certs/default/106f3e4d.0 @@ -0,0 +1 @@ +cert101.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/111e6273.0 b/test/rules/platform_certs/default/111e6273.0 new file mode 120000 index 000000000000..97e8273eff0f --- /dev/null +++ b/test/rules/platform_certs/default/111e6273.0 @@ -0,0 +1 @@ +cert002.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/116bf586.0 b/test/rules/platform_certs/default/116bf586.0 new file mode 120000 index 000000000000..cf064caaea2f --- /dev/null +++ b/test/rules/platform_certs/default/116bf586.0 @@ -0,0 +1 @@ +cert043.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/128805a3.0 b/test/rules/platform_certs/default/128805a3.0 new file mode 120000 index 000000000000..3cae6c5e8d73 --- /dev/null +++ b/test/rules/platform_certs/default/128805a3.0 @@ -0,0 +1 @@ +cert073.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/12d55845.0 b/test/rules/platform_certs/default/12d55845.0 new file mode 120000 index 000000000000..bae4f779ba1e --- /dev/null +++ b/test/rules/platform_certs/default/12d55845.0 @@ -0,0 +1 @@ +cert024.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/14bc7599.0 b/test/rules/platform_certs/default/14bc7599.0 new file mode 120000 index 000000000000..ac3fdcd6aae6 --- /dev/null +++ b/test/rules/platform_certs/default/14bc7599.0 @@ -0,0 +1 @@ +cert134.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/157753a5.0 b/test/rules/platform_certs/default/157753a5.0 new file mode 120000 index 000000000000..62d8c8df6ceb --- /dev/null +++ b/test/rules/platform_certs/default/157753a5.0 @@ -0,0 +1 @@ +cert006.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/1636090b.0 b/test/rules/platform_certs/default/1636090b.0 new file mode 120000 index 000000000000..fd0b85b2c438 --- /dev/null +++ b/test/rules/platform_certs/default/1636090b.0 @@ -0,0 +1 @@ +cert067.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/18856ac4.0 b/test/rules/platform_certs/default/18856ac4.0 new file mode 120000 index 000000000000..a569193e45b9 --- /dev/null +++ b/test/rules/platform_certs/default/18856ac4.0 @@ -0,0 +1 @@ +cert049.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/1d3472b9.0 b/test/rules/platform_certs/default/1d3472b9.0 new file mode 120000 index 000000000000..8e9e075e0404 --- /dev/null +++ b/test/rules/platform_certs/default/1d3472b9.0 @@ -0,0 +1 @@ +cert095.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/1dcd6f4c.0 b/test/rules/platform_certs/default/1dcd6f4c.0 new file mode 120000 index 000000000000..73fc246f6c27 --- /dev/null +++ b/test/rules/platform_certs/default/1dcd6f4c.0 @@ -0,0 +1 @@ +cert020.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/1df5a75f.0 b/test/rules/platform_certs/default/1df5a75f.0 new file mode 120000 index 000000000000..924725c67632 --- /dev/null +++ b/test/rules/platform_certs/default/1df5a75f.0 @@ -0,0 +1 @@ +cert074.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/1e08bfd1.0 b/test/rules/platform_certs/default/1e08bfd1.0 new file mode 120000 index 000000000000..14cb25329686 --- /dev/null +++ b/test/rules/platform_certs/default/1e08bfd1.0 @@ -0,0 +1 @@ +cert099.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/1e09d511.0 b/test/rules/platform_certs/default/1e09d511.0 new file mode 120000 index 000000000000..68c876e8ea1b --- /dev/null +++ b/test/rules/platform_certs/default/1e09d511.0 @@ -0,0 +1 @@ +cert081.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/1e1eab7c.0 b/test/rules/platform_certs/default/1e1eab7c.0 new file mode 120000 index 000000000000..590f09763ca0 --- /dev/null +++ b/test/rules/platform_certs/default/1e1eab7c.0 @@ -0,0 +1 @@ +cert072.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/1e8e7201.0 b/test/rules/platform_certs/default/1e8e7201.0 new file mode 120000 index 000000000000..07df9b5eca3e --- /dev/null +++ b/test/rules/platform_certs/default/1e8e7201.0 @@ -0,0 +1 @@ +cert051.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/1eb37bdf.0 b/test/rules/platform_certs/default/1eb37bdf.0 new file mode 120000 index 000000000000..14745ca2234d --- /dev/null +++ b/test/rules/platform_certs/default/1eb37bdf.0 @@ -0,0 +1 @@ +cert054.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/1f58a078.0 b/test/rules/platform_certs/default/1f58a078.0 new file mode 120000 index 000000000000..b81347e699c8 --- /dev/null +++ b/test/rules/platform_certs/default/1f58a078.0 @@ -0,0 +1 @@ +cert084.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/219d9499.0 b/test/rules/platform_certs/default/219d9499.0 new file mode 120000 index 000000000000..a5914a9ae27a --- /dev/null +++ b/test/rules/platform_certs/default/219d9499.0 @@ -0,0 +1 @@ +cert018.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/23f4c490.0 b/test/rules/platform_certs/default/23f4c490.0 new file mode 120000 index 000000000000..6d3afc9f7b75 --- /dev/null +++ b/test/rules/platform_certs/default/23f4c490.0 @@ -0,0 +1 @@ +cert019.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/244b5494.0 b/test/rules/platform_certs/default/244b5494.0 new file mode 120000 index 000000000000..5ba8f65d5e5e --- /dev/null +++ b/test/rules/platform_certs/default/244b5494.0 @@ -0,0 +1 @@ +cert023.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/27af790d.0 b/test/rules/platform_certs/default/27af790d.0 new file mode 120000 index 000000000000..cf064caaea2f --- /dev/null +++ b/test/rules/platform_certs/default/27af790d.0 @@ -0,0 +1 @@ +cert043.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/2923b3f9.0 b/test/rules/platform_certs/default/2923b3f9.0 new file mode 120000 index 000000000000..fe08ce674247 --- /dev/null +++ b/test/rules/platform_certs/default/2923b3f9.0 @@ -0,0 +1 @@ +cert133.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/2add47b6.0 b/test/rules/platform_certs/default/2add47b6.0 new file mode 120000 index 000000000000..8e9e075e0404 --- /dev/null +++ b/test/rules/platform_certs/default/2add47b6.0 @@ -0,0 +1 @@ +cert095.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/2ae6433e.0 b/test/rules/platform_certs/default/2ae6433e.0 new file mode 120000 index 000000000000..dcfdea4695e9 --- /dev/null +++ b/test/rules/platform_certs/default/2ae6433e.0 @@ -0,0 +1 @@ +cert076.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/2b349938.0 b/test/rules/platform_certs/default/2b349938.0 new file mode 120000 index 000000000000..fa7fca3f2ea3 --- /dev/null +++ b/test/rules/platform_certs/default/2b349938.0 @@ -0,0 +1 @@ +cert059.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/2c543cd1.0 b/test/rules/platform_certs/default/2c543cd1.0 new file mode 120000 index 000000000000..7cabe938c30a --- /dev/null +++ b/test/rules/platform_certs/default/2c543cd1.0 @@ -0,0 +1 @@ +cert008.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/2d9dafe4.0 b/test/rules/platform_certs/default/2d9dafe4.0 new file mode 120000 index 000000000000..234aa2b2c2cc --- /dev/null +++ b/test/rules/platform_certs/default/2d9dafe4.0 @@ -0,0 +1 @@ +cert071.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/2e4eed3c.0 b/test/rules/platform_certs/default/2e4eed3c.0 new file mode 120000 index 000000000000..302405f29057 --- /dev/null +++ b/test/rules/platform_certs/default/2e4eed3c.0 @@ -0,0 +1 @@ +cert028.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/2e5ac55d.0 b/test/rules/platform_certs/default/2e5ac55d.0 new file mode 120000 index 000000000000..bae4f779ba1e --- /dev/null +++ b/test/rules/platform_certs/default/2e5ac55d.0 @@ -0,0 +1 @@ +cert024.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/2fa87019.0 b/test/rules/platform_certs/default/2fa87019.0 new file mode 120000 index 000000000000..2089bf3e0005 --- /dev/null +++ b/test/rules/platform_certs/default/2fa87019.0 @@ -0,0 +1 @@ +cert033.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/302904dd.0 b/test/rules/platform_certs/default/302904dd.0 new file mode 120000 index 000000000000..bbce6c435741 --- /dev/null +++ b/test/rules/platform_certs/default/302904dd.0 @@ -0,0 +1 @@ +cert132.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/304d27c3.0 b/test/rules/platform_certs/default/304d27c3.0 new file mode 120000 index 000000000000..3b86526d9425 --- /dev/null +++ b/test/rules/platform_certs/default/304d27c3.0 @@ -0,0 +1 @@ +cert130.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/31188b5e.0 b/test/rules/platform_certs/default/31188b5e.0 new file mode 120000 index 000000000000..d3d34182b0b4 --- /dev/null +++ b/test/rules/platform_certs/default/31188b5e.0 @@ -0,0 +1 @@ +cert115.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/32888f65.0 b/test/rules/platform_certs/default/32888f65.0 new file mode 120000 index 000000000000..ad1a2c9e4e96 --- /dev/null +++ b/test/rules/platform_certs/default/32888f65.0 @@ -0,0 +1 @@ +cert106.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/33ee480d.0 b/test/rules/platform_certs/default/33ee480d.0 new file mode 120000 index 000000000000..498662811fe8 --- /dev/null +++ b/test/rules/platform_certs/default/33ee480d.0 @@ -0,0 +1 @@ +cert120.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/343eb6cb.0 b/test/rules/platform_certs/default/343eb6cb.0 new file mode 120000 index 000000000000..565938c977ad --- /dev/null +++ b/test/rules/platform_certs/default/343eb6cb.0 @@ -0,0 +1 @@ +cert037.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/349f2832.0 b/test/rules/platform_certs/default/349f2832.0 new file mode 120000 index 000000000000..5b97615af165 --- /dev/null +++ b/test/rules/platform_certs/default/349f2832.0 @@ -0,0 +1 @@ +cert066.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/35105088.0 b/test/rules/platform_certs/default/35105088.0 new file mode 120000 index 000000000000..4d799e74ef9e --- /dev/null +++ b/test/rules/platform_certs/default/35105088.0 @@ -0,0 +1 @@ +cert092.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/3513523f.0 b/test/rules/platform_certs/default/3513523f.0 new file mode 120000 index 000000000000..cb763a0db33c --- /dev/null +++ b/test/rules/platform_certs/default/3513523f.0 @@ -0,0 +1 @@ +cert022.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/399e7759.0 b/test/rules/platform_certs/default/399e7759.0 new file mode 120000 index 000000000000..cb763a0db33c --- /dev/null +++ b/test/rules/platform_certs/default/399e7759.0 @@ -0,0 +1 @@ +cert022.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/3a3b02ce.0 b/test/rules/platform_certs/default/3a3b02ce.0 new file mode 120000 index 000000000000..dfc09b96e7a1 --- /dev/null +++ b/test/rules/platform_certs/default/3a3b02ce.0 @@ -0,0 +1 @@ +cert035.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/3ad48a91.0 b/test/rules/platform_certs/default/3ad48a91.0 new file mode 120000 index 000000000000..d4fbe1793401 --- /dev/null +++ b/test/rules/platform_certs/default/3ad48a91.0 @@ -0,0 +1 @@ +cert005.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/3bde41ac.0 b/test/rules/platform_certs/default/3bde41ac.0 new file mode 120000 index 000000000000..caeacfb82a92 --- /dev/null +++ b/test/rules/platform_certs/default/3bde41ac.0 @@ -0,0 +1 @@ +cert052.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/3c58f906.0 b/test/rules/platform_certs/default/3c58f906.0 new file mode 120000 index 000000000000..62d8c8df6ceb --- /dev/null +++ b/test/rules/platform_certs/default/3c58f906.0 @@ -0,0 +1 @@ +cert006.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/3c6676aa.0 b/test/rules/platform_certs/default/3c6676aa.0 new file mode 120000 index 000000000000..fecfe84b3ea3 --- /dev/null +++ b/test/rules/platform_certs/default/3c6676aa.0 @@ -0,0 +1 @@ +cert097.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/3c860d51.0 b/test/rules/platform_certs/default/3c860d51.0 new file mode 120000 index 000000000000..e71a9e353763 --- /dev/null +++ b/test/rules/platform_certs/default/3c860d51.0 @@ -0,0 +1 @@ +cert025.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/3c899c73.0 b/test/rules/platform_certs/default/3c899c73.0 new file mode 120000 index 000000000000..be63f53484ff --- /dev/null +++ b/test/rules/platform_certs/default/3c899c73.0 @@ -0,0 +1 @@ +cert125.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/3c9a4d3b.0 b/test/rules/platform_certs/default/3c9a4d3b.0 new file mode 120000 index 000000000000..31b630c7c1ed --- /dev/null +++ b/test/rules/platform_certs/default/3c9a4d3b.0 @@ -0,0 +1 @@ +cert077.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/3d441de8.0 b/test/rules/platform_certs/default/3d441de8.0 new file mode 120000 index 000000000000..91faf4e1386e --- /dev/null +++ b/test/rules/platform_certs/default/3d441de8.0 @@ -0,0 +1 @@ +cert047.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/3e44d2f7.0 b/test/rules/platform_certs/default/3e44d2f7.0 new file mode 120000 index 000000000000..09d377c2dbdf --- /dev/null +++ b/test/rules/platform_certs/default/3e44d2f7.0 @@ -0,0 +1 @@ +cert118.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/3e45d192.0 b/test/rules/platform_certs/default/3e45d192.0 new file mode 120000 index 000000000000..48214313f446 --- /dev/null +++ b/test/rules/platform_certs/default/3e45d192.0 @@ -0,0 +1 @@ +cert048.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/3e7271e8.0 b/test/rules/platform_certs/default/3e7271e8.0 new file mode 120000 index 000000000000..b7bed8af659f --- /dev/null +++ b/test/rules/platform_certs/default/3e7271e8.0 @@ -0,0 +1 @@ +cert004.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/40193066.0 b/test/rules/platform_certs/default/40193066.0 new file mode 120000 index 000000000000..2d41f6757f8c --- /dev/null +++ b/test/rules/platform_certs/default/40193066.0 @@ -0,0 +1 @@ +cert105.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/4042bcee.0 b/test/rules/platform_certs/default/4042bcee.0 new file mode 120000 index 000000000000..b07ab0a7620c --- /dev/null +++ b/test/rules/platform_certs/default/4042bcee.0 @@ -0,0 +1 @@ +cert108.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/40547a79.0 b/test/rules/platform_certs/default/40547a79.0 new file mode 120000 index 000000000000..94b886e2cf5d --- /dev/null +++ b/test/rules/platform_certs/default/40547a79.0 @@ -0,0 +1 @@ +cert032.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/406c9bb1.0 b/test/rules/platform_certs/default/406c9bb1.0 new file mode 120000 index 000000000000..c64998b14fa3 --- /dev/null +++ b/test/rules/platform_certs/default/406c9bb1.0 @@ -0,0 +1 @@ +cert135.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/40dc992e.0 b/test/rules/platform_certs/default/40dc992e.0 new file mode 120000 index 000000000000..fd0b85b2c438 --- /dev/null +++ b/test/rules/platform_certs/default/40dc992e.0 @@ -0,0 +1 @@ +cert067.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/4304c5e5.0 b/test/rules/platform_certs/default/4304c5e5.0 new file mode 120000 index 000000000000..2089bf3e0005 --- /dev/null +++ b/test/rules/platform_certs/default/4304c5e5.0 @@ -0,0 +1 @@ +cert033.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/455f1b52.0 b/test/rules/platform_certs/default/455f1b52.0 new file mode 120000 index 000000000000..62f8be0348c9 --- /dev/null +++ b/test/rules/platform_certs/default/455f1b52.0 @@ -0,0 +1 @@ +cert100.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/480720ec.0 b/test/rules/platform_certs/default/480720ec.0 new file mode 120000 index 000000000000..184c078f7fc0 --- /dev/null +++ b/test/rules/platform_certs/default/480720ec.0 @@ -0,0 +1 @@ +cert027.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/48a195d8.0 b/test/rules/platform_certs/default/48a195d8.0 new file mode 120000 index 000000000000..4509178e43b6 --- /dev/null +++ b/test/rules/platform_certs/default/48a195d8.0 @@ -0,0 +1 @@ +cert053.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/48bec511.0 b/test/rules/platform_certs/default/48bec511.0 new file mode 120000 index 000000000000..eec3208f5839 --- /dev/null +++ b/test/rules/platform_certs/default/48bec511.0 @@ -0,0 +1 @@ +cert063.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/4a6481c9.0 b/test/rules/platform_certs/default/4a6481c9.0 new file mode 120000 index 000000000000..97e8273eff0f --- /dev/null +++ b/test/rules/platform_certs/default/4a6481c9.0 @@ -0,0 +1 @@ +cert002.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/4b718d9b.0 b/test/rules/platform_certs/default/4b718d9b.0 new file mode 120000 index 000000000000..2707f01ae817 --- /dev/null +++ b/test/rules/platform_certs/default/4b718d9b.0 @@ -0,0 +1 @@ +cert136.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/4be590e0.0 b/test/rules/platform_certs/default/4be590e0.0 new file mode 120000 index 000000000000..14cb25329686 --- /dev/null +++ b/test/rules/platform_certs/default/4be590e0.0 @@ -0,0 +1 @@ +cert099.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/4bfab552.0 b/test/rules/platform_certs/default/4bfab552.0 new file mode 120000 index 000000000000..07968211a11f --- /dev/null +++ b/test/rules/platform_certs/default/4bfab552.0 @@ -0,0 +1 @@ +cert057.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/4f316efb.0 b/test/rules/platform_certs/default/4f316efb.0 new file mode 120000 index 000000000000..e71a9e353763 --- /dev/null +++ b/test/rules/platform_certs/default/4f316efb.0 @@ -0,0 +1 @@ +cert025.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/5046c355.0 b/test/rules/platform_certs/default/5046c355.0 new file mode 120000 index 000000000000..3b6c44b909cc --- /dev/null +++ b/test/rules/platform_certs/default/5046c355.0 @@ -0,0 +1 @@ +cert026.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/524d9b43.0 b/test/rules/platform_certs/default/524d9b43.0 new file mode 120000 index 000000000000..f70c743200ef --- /dev/null +++ b/test/rules/platform_certs/default/524d9b43.0 @@ -0,0 +1 @@ +cert044.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/5273a94c.0 b/test/rules/platform_certs/default/5273a94c.0 new file mode 120000 index 000000000000..62897b262628 --- /dev/null +++ b/test/rules/platform_certs/default/5273a94c.0 @@ -0,0 +1 @@ +cert080.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/52b525c7.0 b/test/rules/platform_certs/default/52b525c7.0 new file mode 120000 index 000000000000..5d47613f1135 --- /dev/null +++ b/test/rules/platform_certs/default/52b525c7.0 @@ -0,0 +1 @@ +cert083.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/5443e9e3.0 b/test/rules/platform_certs/default/5443e9e3.0 new file mode 120000 index 000000000000..590f09763ca0 --- /dev/null +++ b/test/rules/platform_certs/default/5443e9e3.0 @@ -0,0 +1 @@ +cert072.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/54657681.0 b/test/rules/platform_certs/default/54657681.0 new file mode 120000 index 000000000000..fd8f34d766f4 --- /dev/null +++ b/test/rules/platform_certs/default/54657681.0 @@ -0,0 +1 @@ +cert070.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/57bcb2da.0 b/test/rules/platform_certs/default/57bcb2da.0 new file mode 120000 index 000000000000..3b6c44b909cc --- /dev/null +++ b/test/rules/platform_certs/default/57bcb2da.0 @@ -0,0 +1 @@ +cert026.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/583d0756.0 b/test/rules/platform_certs/default/583d0756.0 new file mode 120000 index 000000000000..d358a74650d5 --- /dev/null +++ b/test/rules/platform_certs/default/583d0756.0 @@ -0,0 +1 @@ +cert122.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/5a250ea7.0 b/test/rules/platform_certs/default/5a250ea7.0 new file mode 120000 index 000000000000..aa04b7c3f5bf --- /dev/null +++ b/test/rules/platform_certs/default/5a250ea7.0 @@ -0,0 +1 @@ +cert096.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/5a3f0ff8.0 b/test/rules/platform_certs/default/5a3f0ff8.0 new file mode 120000 index 000000000000..94b886e2cf5d --- /dev/null +++ b/test/rules/platform_certs/default/5a3f0ff8.0 @@ -0,0 +1 @@ +cert032.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/5a4d6896.0 b/test/rules/platform_certs/default/5a4d6896.0 new file mode 120000 index 000000000000..aa04b7c3f5bf --- /dev/null +++ b/test/rules/platform_certs/default/5a4d6896.0 @@ -0,0 +1 @@ +cert096.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/5acf816d.0 b/test/rules/platform_certs/default/5acf816d.0 new file mode 120000 index 000000000000..b293d2f9656d --- /dev/null +++ b/test/rules/platform_certs/default/5acf816d.0 @@ -0,0 +1 @@ +cert129.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/5ad8a5d6.0 b/test/rules/platform_certs/default/5ad8a5d6.0 new file mode 120000 index 000000000000..bbd07385c8a6 --- /dev/null +++ b/test/rules/platform_certs/default/5ad8a5d6.0 @@ -0,0 +1 @@ +cert001.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/5c44d531.0 b/test/rules/platform_certs/default/5c44d531.0 new file mode 120000 index 000000000000..91faf4e1386e --- /dev/null +++ b/test/rules/platform_certs/default/5c44d531.0 @@ -0,0 +1 @@ +cert047.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/5cd81ad7.0 b/test/rules/platform_certs/default/5cd81ad7.0 new file mode 120000 index 000000000000..b4ef283ffd60 --- /dev/null +++ b/test/rules/platform_certs/default/5cd81ad7.0 @@ -0,0 +1 @@ +cert079.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/5cf9d536.0 b/test/rules/platform_certs/default/5cf9d536.0 new file mode 120000 index 000000000000..d752b5b008b5 --- /dev/null +++ b/test/rules/platform_certs/default/5cf9d536.0 @@ -0,0 +1 @@ +cert012.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/5d3033c5.0 b/test/rules/platform_certs/default/5d3033c5.0 new file mode 120000 index 000000000000..3f7d7d6c2ac4 --- /dev/null +++ b/test/rules/platform_certs/default/5d3033c5.0 @@ -0,0 +1 @@ +cert117.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/5e4e69e7.0 b/test/rules/platform_certs/default/5e4e69e7.0 new file mode 120000 index 000000000000..a151a41100d0 --- /dev/null +++ b/test/rules/platform_certs/default/5e4e69e7.0 @@ -0,0 +1 @@ +cert045.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/5e98733a.0 b/test/rules/platform_certs/default/5e98733a.0 new file mode 120000 index 000000000000..b02322a14ba4 --- /dev/null +++ b/test/rules/platform_certs/default/5e98733a.0 @@ -0,0 +1 @@ +cert138.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/5f15c80c.0 b/test/rules/platform_certs/default/5f15c80c.0 new file mode 120000 index 000000000000..6c367fd21202 --- /dev/null +++ b/test/rules/platform_certs/default/5f15c80c.0 @@ -0,0 +1 @@ +cert078.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/5f47b495.0 b/test/rules/platform_certs/default/5f47b495.0 new file mode 120000 index 000000000000..cd5cecffb316 --- /dev/null +++ b/test/rules/platform_certs/default/5f47b495.0 @@ -0,0 +1 @@ +cert068.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/607986c7.0 b/test/rules/platform_certs/default/607986c7.0 new file mode 120000 index 000000000000..20b6b56b9c5f --- /dev/null +++ b/test/rules/platform_certs/default/607986c7.0 @@ -0,0 +1 @@ +cert088.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/60afe812.0 b/test/rules/platform_certs/default/60afe812.0 new file mode 120000 index 000000000000..ad82a9029e39 --- /dev/null +++ b/test/rules/platform_certs/default/60afe812.0 @@ -0,0 +1 @@ +cert046.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/6187b673.0 b/test/rules/platform_certs/default/6187b673.0 new file mode 120000 index 000000000000..b07ab0a7620c --- /dev/null +++ b/test/rules/platform_certs/default/6187b673.0 @@ -0,0 +1 @@ +cert108.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/626dceaf.0 b/test/rules/platform_certs/default/626dceaf.0 new file mode 120000 index 000000000000..d5f16f42cfce --- /dev/null +++ b/test/rules/platform_certs/default/626dceaf.0 @@ -0,0 +1 @@ +cert127.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/63a2c897.0 b/test/rules/platform_certs/default/63a2c897.0 new file mode 120000 index 000000000000..b4ef283ffd60 --- /dev/null +++ b/test/rules/platform_certs/default/63a2c897.0 @@ -0,0 +1 @@ +cert079.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/6410666e.0 b/test/rules/platform_certs/default/6410666e.0 new file mode 120000 index 000000000000..73fc246f6c27 --- /dev/null +++ b/test/rules/platform_certs/default/6410666e.0 @@ -0,0 +1 @@ +cert020.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/653b494a.0 b/test/rules/platform_certs/default/653b494a.0 new file mode 120000 index 000000000000..d4fbe1793401 --- /dev/null +++ b/test/rules/platform_certs/default/653b494a.0 @@ -0,0 +1 @@ +cert005.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/67495436.0 b/test/rules/platform_certs/default/67495436.0 new file mode 120000 index 000000000000..214c9452624b --- /dev/null +++ b/test/rules/platform_certs/default/67495436.0 @@ -0,0 +1 @@ +cert042.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/68dd7389.0 b/test/rules/platform_certs/default/68dd7389.0 new file mode 120000 index 000000000000..2a40c649daa9 --- /dev/null +++ b/test/rules/platform_certs/default/68dd7389.0 @@ -0,0 +1 @@ +cert137.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/69105f4f.0 b/test/rules/platform_certs/default/69105f4f.0 new file mode 120000 index 000000000000..1a4e06971594 --- /dev/null +++ b/test/rules/platform_certs/default/69105f4f.0 @@ -0,0 +1 @@ +cert021.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/6b03dec0.0 b/test/rules/platform_certs/default/6b03dec0.0 new file mode 120000 index 000000000000..158192fc7dde --- /dev/null +++ b/test/rules/platform_certs/default/6b03dec0.0 @@ -0,0 +1 @@ +cert128.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/6b99d060.0 b/test/rules/platform_certs/default/6b99d060.0 new file mode 120000 index 000000000000..b7c6ac77893d --- /dev/null +++ b/test/rules/platform_certs/default/6b99d060.0 @@ -0,0 +1 @@ +cert007.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/6d41d539.0 b/test/rules/platform_certs/default/6d41d539.0 new file mode 120000 index 000000000000..f79cc53a1883 --- /dev/null +++ b/test/rules/platform_certs/default/6d41d539.0 @@ -0,0 +1 @@ +cert111.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/6fa5da56.0 b/test/rules/platform_certs/default/6fa5da56.0 new file mode 120000 index 000000000000..498662811fe8 --- /dev/null +++ b/test/rules/platform_certs/default/6fa5da56.0 @@ -0,0 +1 @@ +cert120.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/706f604c.0 b/test/rules/platform_certs/default/706f604c.0 new file mode 120000 index 000000000000..5717d782c0b8 --- /dev/null +++ b/test/rules/platform_certs/default/706f604c.0 @@ -0,0 +1 @@ +cert017.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/749e9e03.0 b/test/rules/platform_certs/default/749e9e03.0 new file mode 120000 index 000000000000..5d47613f1135 --- /dev/null +++ b/test/rules/platform_certs/default/749e9e03.0 @@ -0,0 +1 @@ +cert083.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/75680d2e.0 b/test/rules/platform_certs/default/75680d2e.0 new file mode 120000 index 000000000000..f3d65f9515d0 --- /dev/null +++ b/test/rules/platform_certs/default/75680d2e.0 @@ -0,0 +1 @@ +cert011.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/75d1b2ed.0 b/test/rules/platform_certs/default/75d1b2ed.0 new file mode 120000 index 000000000000..5d5f80e33054 --- /dev/null +++ b/test/rules/platform_certs/default/75d1b2ed.0 @@ -0,0 +1 @@ +cert090.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/76579174.0 b/test/rules/platform_certs/default/76579174.0 new file mode 120000 index 000000000000..5717d782c0b8 --- /dev/null +++ b/test/rules/platform_certs/default/76579174.0 @@ -0,0 +1 @@ +cert017.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/76cb8f92.0 b/test/rules/platform_certs/default/76cb8f92.0 new file mode 120000 index 000000000000..565938c977ad --- /dev/null +++ b/test/rules/platform_certs/default/76cb8f92.0 @@ -0,0 +1 @@ +cert037.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/76faf6c0.0 b/test/rules/platform_certs/default/76faf6c0.0 new file mode 120000 index 000000000000..be14627b585c --- /dev/null +++ b/test/rules/platform_certs/default/76faf6c0.0 @@ -0,0 +1 @@ +cert014.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/7719f463.0 b/test/rules/platform_certs/default/7719f463.0 new file mode 120000 index 000000000000..ee2dc90a4912 --- /dev/null +++ b/test/rules/platform_certs/default/7719f463.0 @@ -0,0 +1 @@ +cert107.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/773e07ad.0 b/test/rules/platform_certs/default/773e07ad.0 new file mode 120000 index 000000000000..be63f53484ff --- /dev/null +++ b/test/rules/platform_certs/default/773e07ad.0 @@ -0,0 +1 @@ +cert125.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/7892ad52.0 b/test/rules/platform_certs/default/7892ad52.0 new file mode 120000 index 000000000000..8e03fa2ac01b --- /dev/null +++ b/test/rules/platform_certs/default/7892ad52.0 @@ -0,0 +1 @@ +cert123.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/7999be0d.0 b/test/rules/platform_certs/default/7999be0d.0 new file mode 120000 index 000000000000..7cabe938c30a --- /dev/null +++ b/test/rules/platform_certs/default/7999be0d.0 @@ -0,0 +1 @@ +cert008.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/7a7c655d.0 b/test/rules/platform_certs/default/7a7c655d.0 new file mode 120000 index 000000000000..4e69bf016efd --- /dev/null +++ b/test/rules/platform_certs/default/7a7c655d.0 @@ -0,0 +1 @@ +cert112.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/7a819ef2.0 b/test/rules/platform_certs/default/7a819ef2.0 new file mode 120000 index 000000000000..9d25f0e60cb0 --- /dev/null +++ b/test/rules/platform_certs/default/7a819ef2.0 @@ -0,0 +1 @@ +cert013.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/7aaf71c0.0 b/test/rules/platform_certs/default/7aaf71c0.0 new file mode 120000 index 000000000000..5b20fc4c4385 --- /dev/null +++ b/test/rules/platform_certs/default/7aaf71c0.0 @@ -0,0 +1 @@ +cert119.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/7c302982.0 b/test/rules/platform_certs/default/7c302982.0 new file mode 120000 index 000000000000..3f7d7d6c2ac4 --- /dev/null +++ b/test/rules/platform_certs/default/7c302982.0 @@ -0,0 +1 @@ +cert117.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/7d0b38bd.0 b/test/rules/platform_certs/default/7d0b38bd.0 new file mode 120000 index 000000000000..a151a41100d0 --- /dev/null +++ b/test/rules/platform_certs/default/7d0b38bd.0 @@ -0,0 +1 @@ +cert045.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/7d453d8f.0 b/test/rules/platform_certs/default/7d453d8f.0 new file mode 120000 index 000000000000..48fb898242bc --- /dev/null +++ b/test/rules/platform_certs/default/7d453d8f.0 @@ -0,0 +1 @@ +cert003.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/7f3d5d1d.0 b/test/rules/platform_certs/default/7f3d5d1d.0 new file mode 120000 index 000000000000..f43f71de09a2 --- /dev/null +++ b/test/rules/platform_certs/default/7f3d5d1d.0 @@ -0,0 +1 @@ +cert087.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/8160b96c.0 b/test/rules/platform_certs/default/8160b96c.0 new file mode 120000 index 000000000000..f8a471e0b6e2 --- /dev/null +++ b/test/rules/platform_certs/default/8160b96c.0 @@ -0,0 +1 @@ +cert050.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/81b9768f.0 b/test/rules/platform_certs/default/81b9768f.0 new file mode 120000 index 000000000000..5ba8f65d5e5e --- /dev/null +++ b/test/rules/platform_certs/default/81b9768f.0 @@ -0,0 +1 @@ +cert023.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/82223c44.0 b/test/rules/platform_certs/default/82223c44.0 new file mode 120000 index 000000000000..fd8f34d766f4 --- /dev/null +++ b/test/rules/platform_certs/default/82223c44.0 @@ -0,0 +1 @@ +cert070.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/85cde254.0 b/test/rules/platform_certs/default/85cde254.0 new file mode 120000 index 000000000000..07968211a11f --- /dev/null +++ b/test/rules/platform_certs/default/85cde254.0 @@ -0,0 +1 @@ +cert057.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/86212b19.0 b/test/rules/platform_certs/default/86212b19.0 new file mode 120000 index 000000000000..d521e6e25fa9 --- /dev/null +++ b/test/rules/platform_certs/default/86212b19.0 @@ -0,0 +1 @@ +cert060.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/869fbf79.0 b/test/rules/platform_certs/default/869fbf79.0 new file mode 120000 index 000000000000..2707f01ae817 --- /dev/null +++ b/test/rules/platform_certs/default/869fbf79.0 @@ -0,0 +1 @@ +cert136.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/87753b0d.0 b/test/rules/platform_certs/default/87753b0d.0 new file mode 120000 index 000000000000..cd459c934ec9 --- /dev/null +++ b/test/rules/platform_certs/default/87753b0d.0 @@ -0,0 +1 @@ +cert010.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/882de061.0 b/test/rules/platform_certs/default/882de061.0 new file mode 120000 index 000000000000..d0902e3730e9 --- /dev/null +++ b/test/rules/platform_certs/default/882de061.0 @@ -0,0 +1 @@ +cert039.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/8867006a.0 b/test/rules/platform_certs/default/8867006a.0 new file mode 120000 index 000000000000..cd459c934ec9 --- /dev/null +++ b/test/rules/platform_certs/default/8867006a.0 @@ -0,0 +1 @@ +cert010.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/88950faa.0 b/test/rules/platform_certs/default/88950faa.0 new file mode 120000 index 000000000000..fbeb5ff12554 --- /dev/null +++ b/test/rules/platform_certs/default/88950faa.0 @@ -0,0 +1 @@ +cert121.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/89c02a45.0 b/test/rules/platform_certs/default/89c02a45.0 new file mode 120000 index 000000000000..cc53c2682802 --- /dev/null +++ b/test/rules/platform_certs/default/89c02a45.0 @@ -0,0 +1 @@ +cert034.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/8cb5ee0f.0 b/test/rules/platform_certs/default/8cb5ee0f.0 new file mode 120000 index 000000000000..4e69bf016efd --- /dev/null +++ b/test/rules/platform_certs/default/8cb5ee0f.0 @@ -0,0 +1 @@ +cert112.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/8d6437c3.0 b/test/rules/platform_certs/default/8d6437c3.0 new file mode 120000 index 000000000000..e5bfdc4fd316 --- /dev/null +++ b/test/rules/platform_certs/default/8d6437c3.0 @@ -0,0 +1 @@ +cert086.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/8d86cdd1.0 b/test/rules/platform_certs/default/8d86cdd1.0 new file mode 120000 index 000000000000..d0902e3730e9 --- /dev/null +++ b/test/rules/platform_certs/default/8d86cdd1.0 @@ -0,0 +1 @@ +cert039.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/91739615.0 b/test/rules/platform_certs/default/91739615.0 new file mode 120000 index 000000000000..3cae6c5e8d73 --- /dev/null +++ b/test/rules/platform_certs/default/91739615.0 @@ -0,0 +1 @@ +cert073.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/9282e51c.0 b/test/rules/platform_certs/default/9282e51c.0 new file mode 120000 index 000000000000..92d55d0abb91 --- /dev/null +++ b/test/rules/platform_certs/default/9282e51c.0 @@ -0,0 +1 @@ +cert102.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/930ac5d2.0 b/test/rules/platform_certs/default/930ac5d2.0 new file mode 120000 index 000000000000..cd5cecffb316 --- /dev/null +++ b/test/rules/platform_certs/default/930ac5d2.0 @@ -0,0 +1 @@ +cert068.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/9339512a.0 b/test/rules/platform_certs/default/9339512a.0 new file mode 120000 index 000000000000..be14627b585c --- /dev/null +++ b/test/rules/platform_certs/default/9339512a.0 @@ -0,0 +1 @@ +cert014.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/93bc0acc.0 b/test/rules/platform_certs/default/93bc0acc.0 new file mode 120000 index 000000000000..d521e6e25fa9 --- /dev/null +++ b/test/rules/platform_certs/default/93bc0acc.0 @@ -0,0 +1 @@ +cert060.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/9479c8c3.0 b/test/rules/platform_certs/default/9479c8c3.0 new file mode 120000 index 000000000000..ee2dc90a4912 --- /dev/null +++ b/test/rules/platform_certs/default/9479c8c3.0 @@ -0,0 +1 @@ +cert107.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/9576d26b.0 b/test/rules/platform_certs/default/9576d26b.0 new file mode 120000 index 000000000000..dcfdea4695e9 --- /dev/null +++ b/test/rules/platform_certs/default/9576d26b.0 @@ -0,0 +1 @@ +cert076.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/95aff9e3.0 b/test/rules/platform_certs/default/95aff9e3.0 new file mode 120000 index 000000000000..eec3208f5839 --- /dev/null +++ b/test/rules/platform_certs/default/95aff9e3.0 @@ -0,0 +1 @@ +cert063.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/9685a493.0 b/test/rules/platform_certs/default/9685a493.0 new file mode 120000 index 000000000000..48214313f446 --- /dev/null +++ b/test/rules/platform_certs/default/9685a493.0 @@ -0,0 +1 @@ +cert048.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/9772ca32.0 b/test/rules/platform_certs/default/9772ca32.0 new file mode 120000 index 000000000000..184c078f7fc0 --- /dev/null +++ b/test/rules/platform_certs/default/9772ca32.0 @@ -0,0 +1 @@ +cert027.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/985c1f52.0 b/test/rules/platform_certs/default/985c1f52.0 new file mode 120000 index 000000000000..4d3818fc7c3e --- /dev/null +++ b/test/rules/platform_certs/default/985c1f52.0 @@ -0,0 +1 @@ +cert124.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/988a38cb.0 b/test/rules/platform_certs/default/988a38cb.0 new file mode 120000 index 000000000000..ad82a9029e39 --- /dev/null +++ b/test/rules/platform_certs/default/988a38cb.0 @@ -0,0 +1 @@ +cert046.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/9c2e7d30.0 b/test/rules/platform_certs/default/9c2e7d30.0 new file mode 120000 index 000000000000..80f821db43c6 --- /dev/null +++ b/test/rules/platform_certs/default/9c2e7d30.0 @@ -0,0 +1 @@ +cert016.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/9c8dfbd4.0 b/test/rules/platform_certs/default/9c8dfbd4.0 new file mode 120000 index 000000000000..089e357b6505 --- /dev/null +++ b/test/rules/platform_certs/default/9c8dfbd4.0 @@ -0,0 +1 @@ +cert062.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/9d04f354.0 b/test/rules/platform_certs/default/9d04f354.0 new file mode 120000 index 000000000000..e5bfdc4fd316 --- /dev/null +++ b/test/rules/platform_certs/default/9d04f354.0 @@ -0,0 +1 @@ +cert086.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/9d6523ce.0 b/test/rules/platform_certs/default/9d6523ce.0 new file mode 120000 index 000000000000..00871c6d7da0 --- /dev/null +++ b/test/rules/platform_certs/default/9d6523ce.0 @@ -0,0 +1 @@ +cert038.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/9f533518.0 b/test/rules/platform_certs/default/9f533518.0 new file mode 120000 index 000000000000..426310756475 --- /dev/null +++ b/test/rules/platform_certs/default/9f533518.0 @@ -0,0 +1 @@ +cert055.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/AAACertificateServices.crt b/test/rules/platform_certs/default/AAACertificateServices.crt deleted file mode 100644 index 6f41df89dff3..000000000000 --- a/test/rules/platform_certs/default/AAACertificateServices.crt +++ /dev/null @@ -1,25 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEMjCCAxqgAwIBAgIBATANBgkqhkiG9w0BAQUFADB7MQswCQYDVQQGEwJHQjEb -MBkGA1UECAwSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHDAdTYWxmb3JkMRow -GAYDVQQKDBFDb21vZG8gQ0EgTGltaXRlZDEhMB8GA1UEAwwYQUFBIENlcnRpZmlj -YXRlIFNlcnZpY2VzMB4XDTA0MDEwMTAwMDAwMFoXDTI4MTIzMTIzNTk1OVowezEL -MAkGA1UEBhMCR0IxGzAZBgNVBAgMEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UE -BwwHU2FsZm9yZDEaMBgGA1UECgwRQ29tb2RvIENBIExpbWl0ZWQxITAfBgNVBAMM -GEFBQSBDZXJ0aWZpY2F0ZSBTZXJ2aWNlczCCASIwDQYJKoZIhvcNAQEBBQADggEP -ADCCAQoCggEBAL5AnfRu4ep2hxxNRUSOvkbIgwadwSr+GB+O5AL686tdUIoWMQua -BtDFcCLNSS1UY8y2bmhGC1Pqy0wkwLxyTurxFa70VJoSCsN6sjNg4tqJVfMiWPPe -3M/vg4aijJRPn2jymJBGhCfHdr/jzDUsi14HZGWCwEiwqJH5YZ92IFCokcdmtet4 -YgNW8IoaE+oxox6gmf049vYnMlhvB/VruPsUK6+3qszWY19zjNoFmag4qMsXeDZR -rOme9Hg6jc8P2ULimAyrL58OAd7vn5lJ8S3frHRNG5i1R8XlKdH5kBjHYpy+g8cm -ez6KJcfA3Z3mNWgQIJ2P2N7Sw4ScDV7oL8kCAwEAAaOBwDCBvTAdBgNVHQ4EFgQU -oBEKIz6W8Qfs4q8p74Klf9AwpLQwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQF -MAMBAf8wewYDVR0fBHQwcjA4oDagNIYyaHR0cDovL2NybC5jb21vZG9jYS5jb20v -QUFBQ2VydGlmaWNhdGVTZXJ2aWNlcy5jcmwwNqA0oDKGMGh0dHA6Ly9jcmwuY29t -b2RvLm5ldC9BQUFDZXJ0aWZpY2F0ZVNlcnZpY2VzLmNybDANBgkqhkiG9w0BAQUF -AAOCAQEACFb8AvCb6P+k+tZ7xkSAzk/ExfYAWMymtrwUSWgEdujm7l3sAg9g1o1Q -GE8mTgHj5rCl7r+8dFRBv/38ErjHT1r0iWAFf2C3BUrz9vHCv8S5dIa2LX1rzNLz -Rt0vxuBqw8M0Ayx9lt1awg6nCpnBBYurDC/zXDrPbDdVCYfeU0BsWO/8tqtlbgT2 -G9w84FoVxp7Z8VlIMCFlA2zs6SFz7JsDoeA3raAVGI/6ugLOpyypEBMs1OUIJqsi -l2D4kF501KKaU73yqWjgom7C12yxow+ev+to51byrvLjKzg6CYG1a4XXvi3tPxq3 -smPi9WIsgtRqAEFQ8TmDn5XpNpaYbg== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/ACCVRAIZ1.crt b/test/rules/platform_certs/default/ACCVRAIZ1.crt deleted file mode 100644 index f036381f4959..000000000000 --- a/test/rules/platform_certs/default/ACCVRAIZ1.crt +++ /dev/null @@ -1,44 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIH0zCCBbugAwIBAgIIXsO3pkN/pOAwDQYJKoZIhvcNAQEFBQAwQjESMBAGA1UE -AwwJQUNDVlJBSVoxMRAwDgYDVQQLDAdQS0lBQ0NWMQ0wCwYDVQQKDARBQ0NWMQsw -CQYDVQQGEwJFUzAeFw0xMTA1MDUwOTM3MzdaFw0zMDEyMzEwOTM3MzdaMEIxEjAQ -BgNVBAMMCUFDQ1ZSQUlaMTEQMA4GA1UECwwHUEtJQUNDVjENMAsGA1UECgwEQUND -VjELMAkGA1UEBhMCRVMwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCb -qau/YUqXry+XZpp0X9DZlv3P4uRm7x8fRzPCRKPfmt4ftVTdFXxpNRFvu8gMjmoY -HtiP2Ra8EEg2XPBjs5BaXCQ316PWywlxufEBcoSwfdtNgM3802/J+Nq2DoLSRYWo -G2ioPej0RGy9ocLLA76MPhMAhN9KSMDjIgro6TenGEyxCQ0jVn8ETdkXhBilyNpA -lHPrzg5XPAOBOp0KoVdDaaxXbXmQeOW1tDvYvEyNKKGno6e6Ak4l0Squ7a4DIrhr -IA8wKFSVf+DuzgpmndFALW4ir50awQUZ0m/A8p/4e7MCQvtQqR0tkw8jq8bBD5L/ -0KIV9VMJcRz/RROE5iZe+OCIHAr8Fraocwa48GOEAqDGWuzndN9wrqODJerWx5eH -k6fGioozl2A3ED6XPm4pFdahD9GILBKfb6qkxkLrQaLjlUPTAYVtjrs78yM2x/47 -4KElB0iryYl0/wiPgL/AlmXz7uxLaL2diMMxs0Dx6M/2OLuc5NF/1OVYm3z61PMO -m3WR5LpSLhl+0fXNWhn8ugb2+1KoS5kE3fj5tItQo05iifCHJPqDQsGH+tUtKSpa -cXpkatcnYGMN285J9Y0fkIkyF/hzQ7jSWpOGYdbhdQrqeWZ2iE9x6wQl1gpaepPl -uUsXQA+xtrn13k/c4LOsOxFwYIRKQ26ZIMApcQrAZQIDAQABo4ICyzCCAscwfQYI -KwYBBQUHAQEEcTBvMEwGCCsGAQUFBzAChkBodHRwOi8vd3d3LmFjY3YuZXMvZmls -ZWFkbWluL0FyY2hpdm9zL2NlcnRpZmljYWRvcy9yYWl6YWNjdjEuY3J0MB8GCCsG -AQUFBzABhhNodHRwOi8vb2NzcC5hY2N2LmVzMB0GA1UdDgQWBBTSh7Tj3zcnk1X2 -VuqB5TbMjB4/vTAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFNKHtOPfNyeT -VfZW6oHlNsyMHj+9MIIBcwYDVR0gBIIBajCCAWYwggFiBgRVHSAAMIIBWDCCASIG -CCsGAQUFBwICMIIBFB6CARAAQQB1AHQAbwByAGkAZABhAGQAIABkAGUAIABDAGUA -cgB0AGkAZgBpAGMAYQBjAGkA8wBuACAAUgBhAO0AegAgAGQAZQAgAGwAYQAgAEEA -QwBDAFYAIAAoAEEAZwBlAG4AYwBpAGEAIABkAGUAIABUAGUAYwBuAG8AbABvAGcA -7QBhACAAeQAgAEMAZQByAHQAaQBmAGkAYwBhAGMAaQDzAG4AIABFAGwAZQBjAHQA -cgDzAG4AaQBjAGEALAAgAEMASQBGACAAUQA0ADYAMAAxADEANQA2AEUAKQAuACAA -QwBQAFMAIABlAG4AIABoAHQAdABwADoALwAvAHcAdwB3AC4AYQBjAGMAdgAuAGUA -czAwBggrBgEFBQcCARYkaHR0cDovL3d3dy5hY2N2LmVzL2xlZ2lzbGFjaW9uX2Mu -aHRtMFUGA1UdHwROMEwwSqBIoEaGRGh0dHA6Ly93d3cuYWNjdi5lcy9maWxlYWRt -aW4vQXJjaGl2b3MvY2VydGlmaWNhZG9zL3JhaXphY2N2MV9kZXIuY3JsMA4GA1Ud -DwEB/wQEAwIBBjAXBgNVHREEEDAOgQxhY2N2QGFjY3YuZXMwDQYJKoZIhvcNAQEF -BQADggIBAJcxAp/n/UNnSEQU5CmH7UwoZtCPNdpNYbdKl02125DgBS4OxnnQ8pdp -D70ER9m+27Up2pvZrqmZ1dM8MJP1jaGo/AaNRPTKFpV8M9xii6g3+CfYCS0b78gU -JyCpZET/LtZ1qmxNYEAZSUNUY9rizLpm5U9EelvZaoErQNV/+QEnWCzI7UiRfD+m -AM/EKXMRNt6GGT6d7hmKG9Ww7Y49nCrADdg9ZuM8Db3VlFzi4qc1GwQA9j9ajepD -vV+JHanBsMyZ4k0ACtrJJ1vnE5Bc5PUzolVt3OAJTS+xJlsndQAJxGJ3KQhfnlms -tn6tn1QwIgPBHnFk/vk4CpYY3QIUrCPLBhwepH2NDd4nQeit2hW3sCPdK6jT2iWH -7ehVRE2I9DZ+hJp4rPcOVkkO1jMl1oRQQmwgEh0q1b688nCBpHBgvgW1m54ERL5h -I6zppSSMEYCUWqKiuUnSwdzRp+0xESyeGabu4VXhwOrPDYTkF7eifKXeVSUG7szA -h1xA2syVP1XgNce4hL60Xc16gwFy7ofmXx2utYXGJt/mwZrpHgJHnyqobalbz+xF -d3+YJ5oyXSrjhO7FmGYvliAd3djDJ9ew+f7Zfc3Qn48LFFhRny+Lwzgt3uiP1o2H -pPVWQxaZLPSkVrQ0uGE3ycJYgBugl6H8WY3pEfbRD0tVNEYqi4Y7 ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/ACEDICOMRoot.crt b/test/rules/platform_certs/default/ACEDICOMRoot.crt deleted file mode 100644 index a85bacba5c06..000000000000 --- a/test/rules/platform_certs/default/ACEDICOMRoot.crt +++ /dev/null @@ -1,33 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFtTCCA52gAwIBAgIIYY3HhjsBggUwDQYJKoZIhvcNAQEFBQAwRDEWMBQGA1UE -AwwNQUNFRElDT00gUm9vdDEMMAoGA1UECwwDUEtJMQ8wDQYDVQQKDAZFRElDT00x -CzAJBgNVBAYTAkVTMB4XDTA4MDQxODE2MjQyMloXDTI4MDQxMzE2MjQyMlowRDEW -MBQGA1UEAwwNQUNFRElDT00gUm9vdDEMMAoGA1UECwwDUEtJMQ8wDQYDVQQKDAZF -RElDT00xCzAJBgNVBAYTAkVTMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKC -AgEA/5KV4WgGdrQsyFhIyv2AVClVYyT/kGWbEHV7w2rbYgIB8hiGtXxaOLHkWLn7 -09gtn70yN78sFW2+tfQh0hOR2QetAQXW8713zl9CgQr5auODAKgrLlUTY4HKRxx7 -XBZXehuDYAQ6PmXDzQHe3qTWDLqO3tkE7hdWIpuPY/1NFgu3e3eM+SW10W2ZEi5P -Grjm6gSSrj0RuVFCPYewMYWveVqc/udOXpJPQ/yrOq2lEiZmueIM15jO1FillUAK -t0SdE3QrwqXrIhWYENiLxQSfHY9g5QYbm8+5eaA9oiM/Qj9r+hwDezCNzmzAv+Yb -X79nuIQZ1RXve8uQNjFiybwCq0Zfm/4aaJQ0PZCOrfbkHQl/Sog4P75n/TSW9R28 -MHTLOO7VbKvU/PQAtwBbhTIWdjPp2KOZnQUAqhbm84F9b32qhm2tFXTTxKJxqvQU -fecyuB+81fFOvW8XAjnXDpVCOscAPukmYxHqC9FK/xidstd7LzrZlvvoHpKuE1XI -2Sf23EgbsCTBheN3nZqk8wwRHQ3ItBTutYJXCb8gWH8vIiPYcMt5bMlL8qkqyPyH -K9caUPgn6C9D4zq92Fdx/c6mUlv53U3t5fZvie27k5x2IXXwkkwp9y+cAS7+UEae -ZAwUswdbxcJzbPEHXEUkFDWug/FqTYl6+rPYLWbwNof1K1MCAwEAAaOBqjCBpzAP -BgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFKaz4SsrSbbXc6GqlPUB53NlTKxQ -MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUprPhKytJttdzoaqU9QHnc2VMrFAw -RAYDVR0gBD0wOzA5BgRVHSAAMDEwLwYIKwYBBQUHAgEWI2h0dHA6Ly9hY2VkaWNv -bS5lZGljb21ncm91cC5jb20vZG9jMA0GCSqGSIb3DQEBBQUAA4ICAQDOLAtSUWIm -fQwng4/F9tqgaHtPkl7qpHMyEVNEskTLnewPeUKzEKbHDZ3Ltvo/Onzqv4hTGzz3 -gvoFNTPhNahXwOf9jU8/kzJPeGYDdwdY6ZXIfj7QeQCM8htRM5u8lOk6e25SLTKe -I6RF+7YuE7CLGLHdztUdp0J/Vb77W7tH1PwkzQSulgUV1qzOMPPKC8W64iLgpq0i -5ALudBF/TP94HTXa5gI06xgSYXcGCRZj6hitoocf8seACQl1ThCojz2GuHURwCRi -ipZ7SkXp7FnFvmuD5uHorLUwHv4FB4D54SMNUI8FmP8sX+g7tq3PgbUhh8oIKiMn -MCArz+2UW6yyetLHKKGKC5tNSixthT8Jcjxn4tncB7rrZXtaAWPWkFtPF2Y9fwsZ -o5NjEFIqnxQWWOLcpfShFosOkYuByptZ+thrkQdlVV9SH686+5DdaaVbnG0OLLb6 -zqylfDJKZ0DcMDQj3dcEI2bw/FWAp/tmGYI1Z2JwOV5vx+qQQEQIHriy1tvuWacN -GHk0vFQYXlPKNFHtRQrmjseCNj6nOGOpMCwXEGCSn1WHElkQwg9naRHMTh5+Spqt -r0CodaxWkHS4oJyleW/c6RrIaQXpuvoDs3zk4E7Czp3otkYNbn5XOmeUwssfnHdK -Z05phkOTOPu220+DkdRgfks+KzgHVZhepA== ------END CERTIFICATE----- diff --git "a/test/rules/platform_certs/default/ACRa\303\255zCertic\303\241maraS.A..crt" "b/test/rules/platform_certs/default/ACRa\303\255zCertic\303\241maraS.A..crt" deleted file mode 100644 index ad2819f71109..000000000000 --- "a/test/rules/platform_certs/default/ACRa\303\255zCertic\303\241maraS.A..crt" +++ /dev/null @@ -1,37 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIGZjCCBE6gAwIBAgIPB35Sk3vgFeNX8GmMy+wMMA0GCSqGSIb3DQEBBQUAMHsx -CzAJBgNVBAYTAkNPMUcwRQYDVQQKDD5Tb2NpZWRhZCBDYW1lcmFsIGRlIENlcnRp -ZmljYWNpw7NuIERpZ2l0YWwgLSBDZXJ0aWPDoW1hcmEgUy5BLjEjMCEGA1UEAwwa -QUMgUmHDrXogQ2VydGljw6FtYXJhIFMuQS4wHhcNMDYxMTI3MjA0NjI5WhcNMzAw -NDAyMjE0MjAyWjB7MQswCQYDVQQGEwJDTzFHMEUGA1UECgw+U29jaWVkYWQgQ2Ft -ZXJhbCBkZSBDZXJ0aWZpY2FjacOzbiBEaWdpdGFsIC0gQ2VydGljw6FtYXJhIFMu -QS4xIzAhBgNVBAMMGkFDIFJhw616IENlcnRpY8OhbWFyYSBTLkEuMIICIjANBgkq -hkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAq2uJo1PMSCMI+8PPUZYILrgIem08kBeG -qentLhM0R7LQcNzJPNCNyu5LF6vQhbCnIwTLqKL85XXbQMpiiY9QngE9JlsYhBzL -fDe3fezTf3MZsGqy2IiKLUV0qPezuMDU2s0iiXRNWhU5cxh0T7XrmafBHoi0wpOQ -Y5fzp6cSsgkiBzPZkc0OnB8OIMfuuzONj8LSWKdf/WU34ojC2I+GdV75LaeHM/J4 -Ny+LvB2GNzmxlPLYvEqcgxhaBvzz1NS6jBUJJfD5to0EfhcSM2tXSExP2yYe68yQ -54v5aHxwD6Mq0Do43zeX4lvegGHTgNiRg0JaTASJaBE8rF9ogEHMYELODVoqDA+b -MMCm8Ibbq0nXl21Ii/kDwFJnmxL3wvIumGVC2daa49AZMQyth9VXAnow6IYm+48j -ilSH5L887uvDdUhfHjlvgWJsxS3EF1QZtzeNnDeRyPYL1epjb4OsOMLzP96a++Ej -YfDIJss2yKHzMI+ko6Kh3VOz3vCaMh+DkXkwwakfU5tTohVTP92dsxA7SH2JD/zt -A/X7JWR1DhcZDY8AFmd5ekD8LVkH2ZD6mq093ICK5lw1omdMEWux+IBkAC1vImHF -rEsm5VoQgpukg3s0956JkSCXjrdCx2bD0Omk1vUgjcTDlaxECp1bczwmPS9KvqfJ -pxAe+59QafMCAwEAAaOB5jCB4zAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQE -AwIBBjAdBgNVHQ4EFgQU0QnQ6dfOeXRU+Tows/RtLAMDG2gwgaAGA1UdIASBmDCB -lTCBkgYEVR0gADCBiTArBggrBgEFBQcCARYfaHR0cDovL3d3dy5jZXJ0aWNhbWFy -YS5jb20vZHBjLzBaBggrBgEFBQcCAjBOGkxMaW1pdGFjaW9uZXMgZGUgZ2FyYW50 -7WFzIGRlIGVzdGUgY2VydGlmaWNhZG8gc2UgcHVlZGVuIGVuY29udHJhciBlbiBs -YSBEUEMuMA0GCSqGSIb3DQEBBQUAA4ICAQBclLW4RZFNjmEfAygPU3zmpFmps4p6 -xbD/CHwso3EcIRNnoZUSQDWDg4902zNc8El2CoFS3UnUmjIz75uny3XlesuXEpBc -unvFm9+7OSPI/5jOCk0iAUgHforA1SBClETvv3eiiWdIG0ADBaGJ7M9i4z0ldma/ -Jre7Ir5v/zlXdLp6yQGVwZVR6Kss+LGGIOk/yzVb0hfpKv6DExdA7ohiZVvVO2Dp -ezy4ydV/NgIlqmjCMRW3MGXrfx1IebHPOeJCgBbT9ZMj/EyXyVo3bHwi2ErN0o42 -gzmRkBDI8ck1fj+404HGIGQatlDCIaR43NAvO2STdPCWkPHv+wlaNECW8DYSwaN0 -jJN+Qd53i+yG2dIPPy3RzECiiWZIHiCznCNZc6lEc7wkeZBWN7PGKX6jD/EpOe9+ -XCgycDWs2rjIdWb8m0w5R44bb5tNAlQiM+9hup4phO9OSzNHdpdqy35f/RWmnkJD -W2ZaiogN9xa5P1FlK2Zqi9E4UqLWRhH6/JocdJ6PlwsCT2TG9WjTSy3/pDceiz+/ -RL5hRqGEPQgnTIEgd4kI6mdAXmwIUV80WoyWaM3X94nCHNMyAK9Sy9NgWyo6R35r -MDOhYil/SrnhLecUIw4OGEfhefwVVdCx/CVxY3UzHCMrr1zZ7Ud3YA47Dx7SwNxk -BYn8eNZcLCZDqQ== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/ActalisAuthenticationRootCA.crt b/test/rules/platform_certs/default/ActalisAuthenticationRootCA.crt deleted file mode 100644 index 0eeac36ff541..000000000000 --- a/test/rules/platform_certs/default/ActalisAuthenticationRootCA.crt +++ /dev/null @@ -1,33 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFuzCCA6OgAwIBAgIIVwoRl0LE48wwDQYJKoZIhvcNAQELBQAwazELMAkGA1UE -BhMCSVQxDjAMBgNVBAcMBU1pbGFuMSMwIQYDVQQKDBpBY3RhbGlzIFMucC5BLi8w -MzM1ODUyMDk2NzEnMCUGA1UEAwweQWN0YWxpcyBBdXRoZW50aWNhdGlvbiBSb290 -IENBMB4XDTExMDkyMjExMjIwMloXDTMwMDkyMjExMjIwMlowazELMAkGA1UEBhMC -SVQxDjAMBgNVBAcMBU1pbGFuMSMwIQYDVQQKDBpBY3RhbGlzIFMucC5BLi8wMzM1 -ODUyMDk2NzEnMCUGA1UEAwweQWN0YWxpcyBBdXRoZW50aWNhdGlvbiBSb290IENB -MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAp8bEpSmkLO/lGMWwUKNv -UTufClrJwkg4CsIcoBh/kbWHuUA/3R1oHwiD1S0eiKD4j1aPbZkCkpAW1V8IbInX -4ay8IMKx4INRimlNAJZaby/ARH6jDuSRzVju3PvHHkVH3Se5CAGfpiEd9UEtL0z9 -KK3giq0itFZljoZUj5NDKd45RnijMCO6zfB9E1fAXdKDa0hMxKufgFpbOr3JpyI/ -gCczWw63igxdBzcIy2zSekciRDXFzMwujt0q7bd9Zg1fYVEiVRvjRuPjPdA1Yprb -rxTIW6HMiRvhMCb8oJsfgadHHwTrozmSBp+Z07/T6k9QnBn+locePGX2oxgkg4YQ -51Q+qDp2JE+BIcXjDwL4k5RHILv+1A7TaLndxHqEguNTVHnd25zS8gebLra8Pu2F -be8lEfKXGkJh90qX6IuxEAf6ZYGyojnP9zz/GPvG8VqLWeICrHuS0E4UT1lF9gxe -KF+w6D9Fz8+vm2/7hNN3WpVvrJSEnu68wEqPSpP4RCHiMUVhUE4Q2OM1fEwZtN4F -v6MGn8i1zeQf1xcGDXqVdFUNaBr8EBtiZJ1t4JWgw5QHVw0U5r0F+7if5t+L4sbn -fpb2U8WANFAoWPASUHEXMLrmeGO89LKtmyuy/uE5jF66CyCU3nuDuP/jVo23Eek7 -jPKxwV2dpAtMK9myGPW1n0sCAwEAAaNjMGEwHQYDVR0OBBYEFFLYiDrIn3hm7Ynz -ezhwlMkCAjbQMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUUtiIOsifeGbt -ifN7OHCUyQICNtAwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEBCwUAA4ICAQAL -e3KHwGCmSUyIWOYdiPcUZEim2FgKDk8TNd81HdTtBjHIgT5q1d07GjLukD0R0i70 -jsNjLiNmsGe+b7bAEzlgqqI0JZN1Ut6nna0Oh4lScWoWPBkdg/iaKWW+9D+a2fDz -WochcYBNy+A4mz+7+uAwTc+G02UQGRjRlwKxK3JCaKygvU5a2hi/a5iB0P2avl4V -SM0RFbnAKVy06Ij3Pjaut2L9HmLecHgQHEhb2rykOLpn7VU+Xlff1ANATIGk0k9j -pwlCCRT8AKnCgHNPLsBA2RF7SOp6AsDT6ygBJlh0wcBzIm2Tlf05fbsq4/aC4yyX -X04fkZT6/iyj2HYauE2yOE+b+h1IYHkm4vP9qdCa6HCPSXrW5b0KDtst842/6+Ok -fcvHlXHo2qN8xcL4dJIEG4aspCJTQLas/kx2z/uUMsA1n3Y/buWQbqCmJqK4LL7R -K4X9p2jIugErsWx0Hbhzlefut8cl8ABMALJ+tguLHPPAUJ4lueAI3jZm/zel0btU -ZCzJJ7VLkn5l/9Mt4blOvH+kQSGQQXemOR/qnuOf0GZvBeyqdn6/axag67XH/JJU -LysRJyU3eExRarDzzFhdFPFqSBX/wge2sY0PjlxQRrM9vwGYT7JZVEc+NHt4bVaT -LnPqZih4zR0Uv6CPLy64Lo7yFIrM6bV8+2ydDKXhlg== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/AddTrustClass1CARoot.crt b/test/rules/platform_certs/default/AddTrustClass1CARoot.crt deleted file mode 100644 index bb8232b6031d..000000000000 --- a/test/rules/platform_certs/default/AddTrustClass1CARoot.crt +++ /dev/null @@ -1,24 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEGDCCAwCgAwIBAgIBATANBgkqhkiG9w0BAQUFADBlMQswCQYDVQQGEwJTRTEU -MBIGA1UEChMLQWRkVHJ1c3QgQUIxHTAbBgNVBAsTFEFkZFRydXN0IFRUUCBOZXR3 -b3JrMSEwHwYDVQQDExhBZGRUcnVzdCBDbGFzcyAxIENBIFJvb3QwHhcNMDAwNTMw -MTAzODMxWhcNMjAwNTMwMTAzODMxWjBlMQswCQYDVQQGEwJTRTEUMBIGA1UEChML -QWRkVHJ1c3QgQUIxHTAbBgNVBAsTFEFkZFRydXN0IFRUUCBOZXR3b3JrMSEwHwYD -VQQDExhBZGRUcnVzdCBDbGFzcyAxIENBIFJvb3QwggEiMA0GCSqGSIb3DQEBAQUA -A4IBDwAwggEKAoIBAQCWltQhSWDia+hBBwzexODcEyPNwTXH+9ZOEQpnXvUGW2ul -CDtbKRY654eyNAbFvAWlA3yCyykQruGIgb3WntP+LVbBFc7jJp0VLhD7Bo8wBN6n -tGO0/7Gcrjyvd7ZWxbWroulpOj0OM3kyP3CCkplhbY0wCI9xP6ZIVxn4JdxLZlyl -dI+Yrsj5wAYi56xz36Uu+1LcsRVlIPo1Zmne3yzxbrww2ywkEtvrNTVokMsAsJch -PXQhI2U0K7t4WaPW4XY5mqRJjox0r26kmqPZm9I4XJuiGMx1I4S+6+JNM3GOGvDC -+Mcdoq0Dlyz4zyXG9rgkMbFjXZJ/Y/AlyVMuH79NAgMBAAGjgdIwgc8wHQYDVR0O -BBYEFJWxtPCUtr3H2tERCSG+wa9J/RB7MAsGA1UdDwQEAwIBBjAPBgNVHRMBAf8E -BTADAQH/MIGPBgNVHSMEgYcwgYSAFJWxtPCUtr3H2tERCSG+wa9J/RB7oWmkZzBl -MQswCQYDVQQGEwJTRTEUMBIGA1UEChMLQWRkVHJ1c3QgQUIxHTAbBgNVBAsTFEFk -ZFRydXN0IFRUUCBOZXR3b3JrMSEwHwYDVQQDExhBZGRUcnVzdCBDbGFzcyAxIENB -IFJvb3SCAQEwDQYJKoZIhvcNAQEFBQADggEBACxtZBsfzQ3duQH6lmM0MkhHma6X -7f1yFqZzR1r0693p9db7RcwpiURdv0Y5PejuvE1Uhh4dbOMXJ0PhiVYrqW9yTkkz -43J8KiOavD7/KCrto/8cI7pDVwlnTUtiBi34/2ydYB7YHEt9tTEv2dB8Xfjea4MY -eDdXL+gzB2ffHsdrKpV2ro9Xo/D0UrSpUwjP4E/TelOL/bscVjby/rK25Xa71SJl -pz/+0WatC7xrmYbvP33zGDLKe8bjq2RGlfgmadlVg3sslgf/WSxEo8bl6ancoWOA -WiFeIc9TVPC6b4nbqKqVz4vjccweGyBECMB6tkD9xOQ14R0WHNC8K47Wcdk= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/AddTrustExternalCARoot.crt b/test/rules/platform_certs/default/AddTrustExternalCARoot.crt deleted file mode 100644 index a6fdaa32a57d..000000000000 --- a/test/rules/platform_certs/default/AddTrustExternalCARoot.crt +++ /dev/null @@ -1,25 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIENjCCAx6gAwIBAgIBATANBgkqhkiG9w0BAQUFADBvMQswCQYDVQQGEwJTRTEU -MBIGA1UEChMLQWRkVHJ1c3QgQUIxJjAkBgNVBAsTHUFkZFRydXN0IEV4dGVybmFs -IFRUUCBOZXR3b3JrMSIwIAYDVQQDExlBZGRUcnVzdCBFeHRlcm5hbCBDQSBSb290 -MB4XDTAwMDUzMDEwNDgzOFoXDTIwMDUzMDEwNDgzOFowbzELMAkGA1UEBhMCU0Ux -FDASBgNVBAoTC0FkZFRydXN0IEFCMSYwJAYDVQQLEx1BZGRUcnVzdCBFeHRlcm5h -bCBUVFAgTmV0d29yazEiMCAGA1UEAxMZQWRkVHJ1c3QgRXh0ZXJuYWwgQ0EgUm9v -dDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALf3GjPm8gAELTngTlvt -H7xsD821+iO2zt6bETOXpClMfZOfvUq8k+0DGuOPz+VtUFrWlymUWoCwSXrbLpX9 -uMq/NzgtHj6RQa1wVsfwTz/oMp50ysiQVOnGXw94nZpAPA6sYapeFI+eh6FqUNzX -mk6vBbOmcZSccbNQYArHE504B4YCqOmoaSYYkKtMsE8jqzpPhNjfzp/haW+710LX -a0Tkx63ubUFfclpxCDezeWWkWaCUN/cALw3CknLa0Dhy2xSoRcRdKn23tNbE7qzN -E0S3ySvdQwAl+mG5aWpYIxG3pzOPVnVZ9c0p10a3CitlttNCbxWyuHv77+ldU9U0 -WicCAwEAAaOB3DCB2TAdBgNVHQ4EFgQUrb2YejS0Jvf6xCZU7wO94CTLVBowCwYD -VR0PBAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wgZkGA1UdIwSBkTCBjoAUrb2YejS0 -Jvf6xCZU7wO94CTLVBqhc6RxMG8xCzAJBgNVBAYTAlNFMRQwEgYDVQQKEwtBZGRU -cnVzdCBBQjEmMCQGA1UECxMdQWRkVHJ1c3QgRXh0ZXJuYWwgVFRQIE5ldHdvcmsx -IjAgBgNVBAMTGUFkZFRydXN0IEV4dGVybmFsIENBIFJvb3SCAQEwDQYJKoZIhvcN -AQEFBQADggEBALCb4IUlwtYj4g+WBpKdQZic2YR5gdkeWxQHIzZlj7DYd7usQWxH -YINRsPkyPef89iYTx4AWpb9a/IfPeHmJIZriTAcKhjW88t5RxNKWt9x+Tu5w/Rw5 -6wwCURQtjr0W4MHfRnXnJK3s9EK0hZNwEGe6nQY1ShjTK3rMUUKhemPR5ruhxSvC -Nr4TDea9Y355e6cJDUCrat2PisP29owaQgVR1EX1n6diIWgVIEM8med8vSTYqZEX -c4g/VhsxOBi0cQ+azcgOno4uG+GMmIPLHzHxREzGBHNJdmAPx/i9F4BrLunMTA5a -mnkPIAou1Z5jJh5VkpTYghdae9C8x49OhgQ= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/AddTrustPublicCARoot.crt b/test/rules/platform_certs/default/AddTrustPublicCARoot.crt deleted file mode 100644 index 3b4484513e40..000000000000 --- a/test/rules/platform_certs/default/AddTrustPublicCARoot.crt +++ /dev/null @@ -1,24 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEFTCCAv2gAwIBAgIBATANBgkqhkiG9w0BAQUFADBkMQswCQYDVQQGEwJTRTEU -MBIGA1UEChMLQWRkVHJ1c3QgQUIxHTAbBgNVBAsTFEFkZFRydXN0IFRUUCBOZXR3 -b3JrMSAwHgYDVQQDExdBZGRUcnVzdCBQdWJsaWMgQ0EgUm9vdDAeFw0wMDA1MzAx -MDQxNTBaFw0yMDA1MzAxMDQxNTBaMGQxCzAJBgNVBAYTAlNFMRQwEgYDVQQKEwtB -ZGRUcnVzdCBBQjEdMBsGA1UECxMUQWRkVHJ1c3QgVFRQIE5ldHdvcmsxIDAeBgNV -BAMTF0FkZFRydXN0IFB1YmxpYyBDQSBSb290MIIBIjANBgkqhkiG9w0BAQEFAAOC -AQ8AMIIBCgKCAQEA6Rowj4OIFMEg2Dybjxt+A3S72mnTRqX4jsIMEZBRpS9mVEBV -6tsfSlbunyNu9DnLoblv8n75XYcmYZ4c+OLspoH4IcUkzBEMP9smcnrHAZcHF/nX -GCwwfQ56HmIexkvA/X1id9NEHif2P0tEs7c42TkfYNVRknMDtABp4/MUTu7R3AnP -dzRGULD4EfL+OHn3Bzn+UZKXC1sIXzSGAa2Il+tmzV7R/9x98oTaunet3IAIx6eH -1lWfl2royBFkuucZKT8Rs3iQhCBSWxHveNCD9tVIkNAwHM+A+WD+eeSI8t0A65RF -62WUaUC6wNW0uLp9BBGo6zEFlpROWCGOn9Bg/QIDAQABo4HRMIHOMB0GA1UdDgQW -BBSBPjfYkrAfd59ctKtzquf2NGAv+jALBgNVHQ8EBAMCAQYwDwYDVR0TAQH/BAUw -AwEB/zCBjgYDVR0jBIGGMIGDgBSBPjfYkrAfd59ctKtzquf2NGAv+qFopGYwZDEL -MAkGA1UEBhMCU0UxFDASBgNVBAoTC0FkZFRydXN0IEFCMR0wGwYDVQQLExRBZGRU -cnVzdCBUVFAgTmV0d29yazEgMB4GA1UEAxMXQWRkVHJ1c3QgUHVibGljIENBIFJv -b3SCAQEwDQYJKoZIhvcNAQEFBQADggEBAAP3FUr4JNojVhaTdt02KLmuG7jD8WS6 -IBh4lSknVwW8fCr0uVFV2ocC3g8WFzH4qnkuCRO7r7IgGRLlk/lL+YPoRNWyQSW/ -iHVv/xD8SlTQX/D67zZzfRs2RcYhbbQVuE7PnFylPVoAjgbjPGsye/Kf8Lb93/Ao -GEjwxrzQvzSAlsJKsW2Ox5BF3i9nrEUEo3rcVZLJR2bYGozH7ZxOmuASu7VqTITh -4SINhwBk/ox9Yjllpu9CtoAlEmEBqCQTcAARJl/6NVDFSMwGR+gn2HCNX2TmoUQm -XiLsks3/QppEIW1cxeMiHV9HEufOX1362KqxMy3ZdvJOOjMMK7MtkAY= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/AddTrustQualifiedCARoot.crt b/test/rules/platform_certs/default/AddTrustQualifiedCARoot.crt deleted file mode 100644 index 8f8a434071c0..000000000000 --- a/test/rules/platform_certs/default/AddTrustQualifiedCARoot.crt +++ /dev/null @@ -1,25 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEHjCCAwagAwIBAgIBATANBgkqhkiG9w0BAQUFADBnMQswCQYDVQQGEwJTRTEU -MBIGA1UEChMLQWRkVHJ1c3QgQUIxHTAbBgNVBAsTFEFkZFRydXN0IFRUUCBOZXR3 -b3JrMSMwIQYDVQQDExpBZGRUcnVzdCBRdWFsaWZpZWQgQ0EgUm9vdDAeFw0wMDA1 -MzAxMDQ0NTBaFw0yMDA1MzAxMDQ0NTBaMGcxCzAJBgNVBAYTAlNFMRQwEgYDVQQK -EwtBZGRUcnVzdCBBQjEdMBsGA1UECxMUQWRkVHJ1c3QgVFRQIE5ldHdvcmsxIzAh -BgNVBAMTGkFkZFRydXN0IFF1YWxpZmllZCBDQSBSb290MIIBIjANBgkqhkiG9w0B -AQEFAAOCAQ8AMIIBCgKCAQEA5B6a/twJWoekn0e+EV+vhDTbYjx5eLfpMLXsDBwq -xBb/4Oxx64r1EW7tTw2R0hIYLUkVAcKkIhPHEWT/IhKauY5cLwjPcWqzZwFZ8V1G -87B4pfYOQnrjfxvM0PC3KP0q6p6zsLkEqv32x7SxuCqg+1jxGaBvcCV+PmlKfw8i -2O+tCBGaKZnhqkRFmhJePp1tUvznoD1oL/BLcHwTOK28FSXx1s6rosAx1i+f4P8U -WfyEk9mHfExUE+uf0S0R+Bg6Ot4l2ffTQO2kBhLEO+GRwVY18BTcZTYJbqukB8c1 -0cIDMzZbdSZtQvESa0NvS3GU+jQd7RNuyoB/mC9suWXY6QIDAQABo4HUMIHRMB0G -A1UdDgQWBBQ5lYtii1zJ1IC6WA+XPxUIQ8yYpzALBgNVHQ8EBAMCAQYwDwYDVR0T -AQH/BAUwAwEB/zCBkQYDVR0jBIGJMIGGgBQ5lYtii1zJ1IC6WA+XPxUIQ8yYp6Fr -pGkwZzELMAkGA1UEBhMCU0UxFDASBgNVBAoTC0FkZFRydXN0IEFCMR0wGwYDVQQL -ExRBZGRUcnVzdCBUVFAgTmV0d29yazEjMCEGA1UEAxMaQWRkVHJ1c3QgUXVhbGlm -aWVkIENBIFJvb3SCAQEwDQYJKoZIhvcNAQEFBQADggEBABmrder4i2VhlRO6aQTv -hsoToMeqT2QbPxj2qC0sVY8FtzDqQmodwCVRLae/DLPt7wh/bDxGGuoYQ992zPlm -hpwsaPXpF/gxsxjE1kh9I0xowX67ARRvxdlu3rsEQmr49lx95dr6h+sNNVJn0J6X -dgWTP5XHAeZpVTh/EGGZyeNfpso+gmNIquIISD6q8rKFYqa0p9m9N5xotS1WfbC3 -P6CxB9bpT9zeRXEwMn8bLgn5v1Kh7sKAPgZcLlVAwRv1cEWw3F369nJad9Jjzc9Y -iQBCYz95OdBEsIJuQRno3eDBiFrRHnGTHyQwdOUeqN48Jzd/g66ed8/wMLH/S5no -xqE= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/AffirmTrustCommercial.crt b/test/rules/platform_certs/default/AffirmTrustCommercial.crt deleted file mode 100644 index fcabc6f551ea..000000000000 --- a/test/rules/platform_certs/default/AffirmTrustCommercial.crt +++ /dev/null @@ -1,20 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDTDCCAjSgAwIBAgIId3cGJyapsXwwDQYJKoZIhvcNAQELBQAwRDELMAkGA1UE -BhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVz -dCBDb21tZXJjaWFsMB4XDTEwMDEyOTE0MDYwNloXDTMwMTIzMTE0MDYwNlowRDEL -MAkGA1UEBhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZp -cm1UcnVzdCBDb21tZXJjaWFsMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC -AQEA9htPZwcroRX1BiLLHwGy43NFBkRJLLtJJRTWzsO3qyxPxkEylFf6EqdbDuKP -Hx6GGaeqtS25Xw2Kwq+FNXkyLbscYjfysVtKPcrNcV/pQr6U6Mje+SJIZMblq8Yr -ba0F8PrVC8+a5fBQpIs7R6UjW3p6+DM/uO+Zl+MgwdYoic+U+7lF7eNAFxHUdPAL -MeIrJmqbTFeurCA+ukV6BfO9m2kVrn1OIGPENXY6BwLJN/3HR+7o8XYdcxXyl6S1 -yHp52UKqK39c/s4mT6NmgTWvRLpUHhwwMmWd5jyTXlBOeuM61G7MGvv50jeuJCqr -VwMiKA1JdX+3KNp1v47j3A55MQIDAQABo0IwQDAdBgNVHQ4EFgQUnZPGU4teyq8/ -nx4P5ZmVvCT2lI8wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwDQYJ -KoZIhvcNAQELBQADggEBAFis9AQOzcAN/wr91LoWXym9e2iZWEnStB03TX8nfUYG -XUPGhi4+c7ImfU+TqbbEKpqrIZcUsd6M06uJFdhrJNTxFq7YpFzUf1GO7RgBsZNj -vbz4YYCanrHOQnDiqX0GJX0nof5v7LMeJNrjS1UaADs1tDvZ110w/YETifLCBivt -Z8SOyUOyXGsViQK8YvxO8rUzqrJv0wqiUOP2O+guRMLbZjipM1ZI8W0bM40NjD9g -N53Tym1+NH4Nn3J2ixufcv1SNUFFApYvHLKac0khsUlHRUe072o0EclNmsxZt9YC -nlpOZbWUrhvfKbAW8b8Angc6F2S1BLUjIZkKlTuXfO8= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/AffirmTrustNetworking.crt b/test/rules/platform_certs/default/AffirmTrustNetworking.crt deleted file mode 100644 index 58899648c7fe..000000000000 --- a/test/rules/platform_certs/default/AffirmTrustNetworking.crt +++ /dev/null @@ -1,20 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDTDCCAjSgAwIBAgIIfE8EORzUmS0wDQYJKoZIhvcNAQEFBQAwRDELMAkGA1UE -BhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVz -dCBOZXR3b3JraW5nMB4XDTEwMDEyOTE0MDgyNFoXDTMwMTIzMTE0MDgyNFowRDEL -MAkGA1UEBhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZp -cm1UcnVzdCBOZXR3b3JraW5nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC -AQEAtITMMxcua5Rsa2FSoOujz3mUTOWUgJnLVWREZY9nZOIG41w3SfYvm4SEHi3y -YJ0wTsyEheIszx6e/jarM3c1RNg1lho9Nuh6DtjVR6FqaYvZ/Ls6rnla1fTWcbua -kCNrmreIdIcMHl+5ni36q1Mr3Lt2PpNMCAiMHqIjHNRqrSK6mQEubWXLviRmVSRL -QESxG9fhwoXA3hA/Pe24/PHxI1Pcv2WXb9n5QHGNfb2V1M6+oF4nI979ptAmDgAp -6zxG8D1gvz9Q0twmQVGeFDdCBKNwV6gbh+0t+nvujArjqWaJGctB+d1ENmHP4ndG -yH329JKBNv3bNPFyfvMMFr20FQIDAQABo0IwQDAdBgNVHQ4EFgQUBx/S55zawm6i -QLSwelAQUHTEyL0wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwDQYJ -KoZIhvcNAQEFBQADggEBAIlXshZ6qML91tmbmzTCnLQyFE2npN/svqe++EPbkTfO -tDIuUFUaNU52Q3Eg75N3ThVwLofDwR1t3Mu1J9QsVtFSUzpE0nPIxBsFZVpikpzu -QY0x2+c06lkh1QF612S4ZDnNye2v7UsDSKegmQGA3GWjNq5lWUhPgkvIZfFXHeVZ -Lgo/bNjR9eUJtGxUAArgFU2HdW23WJZa3W3SAKD0m0i+wzekujbgfIeFlxoVot4u -olu9rxj5kFDNcFn4J2dHy8egBzp90SxdbBk6ZrV9/ZFvgrG+CJPbFEfxojfHRZ48 -x3evZKiT3/Zpg4Jg8klCNO1aAFSFHBY2kgxc+qatv9s= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/AffirmTrustPremium.crt b/test/rules/platform_certs/default/AffirmTrustPremium.crt deleted file mode 100644 index 4331fbb453b7..000000000000 --- a/test/rules/platform_certs/default/AffirmTrustPremium.crt +++ /dev/null @@ -1,31 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFRjCCAy6gAwIBAgIIbYwURrGmCu4wDQYJKoZIhvcNAQEMBQAwQTELMAkGA1UE -BhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MRwwGgYDVQQDDBNBZmZpcm1UcnVz -dCBQcmVtaXVtMB4XDTEwMDEyOTE0MTAzNloXDTQwMTIzMTE0MTAzNlowQTELMAkG -A1UEBhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MRwwGgYDVQQDDBNBZmZpcm1U -cnVzdCBQcmVtaXVtMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAxBLf -qV/+Qd3d9Z+K4/as4Tx4mrzY8H96oDMq3I0gW64tb+eT2TZwamjPjlGjhVtnBKAQ -JG9dKILBl1fYSCkTtuG+kU3fhQxTGJoeJKJPj/CihQvL9Cl/0qRY7iZNyaqoe5rZ -+jjeRFcV5fiMyNlI4g0WJx0eyIOFJbe6qlVBzAMiSy2RjYvmia9mx+n/K+k8rNrS -s8PhaJyJ+HoAVt70VZVs+7pk3WKL3wt3MutizCaam7uqYoNMtAZ6MMgpv+0GTZe5 -HMQxK9VfvFMSF5yZVylmd2EhMQcuJUmdGPLu8ytxjLW6OQdJd/zvLpKQBY0tL3d7 -70O/Nbua2Plzpyzy0FfuKE4mX4+QaAkvuPjcBukumj5Rp9EixAqnOEhss/n/fauG -V+O61oV4d7pD6kh/9ti+I20ev9E2bFhc8e6kGVQa9QPSdubhjL08s9NIS+LI+H+S -qHZGnEJlPqQewQcDWkYtuJfzt9WyVSHvutxMAJf7FJUnM7/oQ0dG0giZFmA7mn7S -5u046uwBHjxIVkkJx0w3AJ6IDsBz4W9m6XJHMD4Q5QsDyZpCAGzFlH5hxIrff4Ia -C1nEWTJ3s7xgaVY5/bQGeyzWZDbZvUjthB9+pSKPKrhC9IK31FOQeE4tGv2Bb0TX -OwF0lkLgAOIua+rF7nKsu7/+6qqo+Nz2snmKtmcCAwEAAaNCMEAwHQYDVR0OBBYE -FJ3AZ6YMItkm9UWrpmVSESfYRaxjMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/ -BAQDAgEGMA0GCSqGSIb3DQEBDAUAA4ICAQCzV00QYk465KzquByvMiPIs0laUZx2 -KI15qldGF9X1Uva3ROgIRL8YhNILgM3FEv0AVQVhh0HctSSePMTYyPtwni94loMg -Nt58D2kTiKV1NpgIpsbfrM7jWNa3Pt668+s0QNiigfV4Py/VpfzZotReBA4Xrf5B -8OWycvpEgjNC6C1Y91aMYj+6QrCcDFx+LmUmXFNPALJ4fqENmS2NuB2OosSw/WDQ -MKSOyARiqcTtNd56l+0OOF6SL5Nwpamcb6d9Ex1+xghIsV5n61EIJenmJWtSKZGc -0jlzCFfemQa0W50QBuHCAKi4HEoCChTQwUHK+4w1IX2COPKpVJEZNZOUbWo6xbLQ -u4mGk+ibyQ86p3q4ofB4Rvr8Ny/lioTz3/4E2aFooC8k4gmVBtWVyuEklut89pMF -u+1z6S3RdTnX5yTb2E5fQ4+e0BQ5v1VwSJlXMbSc7kqYA5YwH2AG7hsj/oFgIxpH -YoWlzBk0gG+zrBrjn/B7SK3VAdlntqlyk+otZrWyuOQ9PLLvTIzq6we/qzWaVYa8 -GKa1qF60g2xraUDTn9zxw2lrueFtCfTxqlB2Cnp9ehehVZZCmTEJ3WARjQUwfuaO -RtGdFNrHF+QFlozEJLUbzxQHskD4o55BhrwE0GuWyCqANP2/7waj3VjFhT0+j/6e -KeC2uAloGRwYQw== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/AffirmTrustPremiumECC.crt b/test/rules/platform_certs/default/AffirmTrustPremiumECC.crt deleted file mode 100644 index 76a3afffd940..000000000000 --- a/test/rules/platform_certs/default/AffirmTrustPremiumECC.crt +++ /dev/null @@ -1,13 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIB/jCCAYWgAwIBAgIIdJclisc/elQwCgYIKoZIzj0EAwMwRTELMAkGA1UEBhMC -VVMxFDASBgNVBAoMC0FmZmlybVRydXN0MSAwHgYDVQQDDBdBZmZpcm1UcnVzdCBQ -cmVtaXVtIEVDQzAeFw0xMDAxMjkxNDIwMjRaFw00MDEyMzExNDIwMjRaMEUxCzAJ -BgNVBAYTAlVTMRQwEgYDVQQKDAtBZmZpcm1UcnVzdDEgMB4GA1UEAwwXQWZmaXJt -VHJ1c3QgUHJlbWl1bSBFQ0MwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQNMF4bFZ0D -0KF5Nbc6PJJ6yhUczWLznCZcBz3lVPqj1swS6vQUX+iOGasvLkjmrBhDeKzQN8O9 -ss0s5kfiGuZjuD0uL3jET9v0D6RoTFVya5UdThhClXjMNzyR4ptlKymjQjBAMB0G -A1UdDgQWBBSaryl6wBE1NSZRMADDav5A1a7WPDAPBgNVHRMBAf8EBTADAQH/MA4G -A1UdDwEB/wQEAwIBBjAKBggqhkjOPQQDAwNnADBkAjAXCfOHiFBar8jAQr9HX/Vs -aobgxCd05DhT1wV/GzTjxi+zygk8N53X57hG8f2h4nECMEJZh0PUUd+60wkyWs6I -flc9nF9Ca/UHLbXwgpP5WW+uZPpY5Yse42O+tYHNbwKMeQ== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/ApplicationCA-JapaneseGovernment.crt b/test/rules/platform_certs/default/ApplicationCA-JapaneseGovernment.crt deleted file mode 100644 index 99e3addabae9..000000000000 --- a/test/rules/platform_certs/default/ApplicationCA-JapaneseGovernment.crt +++ /dev/null @@ -1,22 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDoDCCAoigAwIBAgIBMTANBgkqhkiG9w0BAQUFADBDMQswCQYDVQQGEwJKUDEc -MBoGA1UEChMTSmFwYW5lc2UgR292ZXJubWVudDEWMBQGA1UECxMNQXBwbGljYXRp -b25DQTAeFw0wNzEyMTIxNTAwMDBaFw0xNzEyMTIxNTAwMDBaMEMxCzAJBgNVBAYT -AkpQMRwwGgYDVQQKExNKYXBhbmVzZSBHb3Zlcm5tZW50MRYwFAYDVQQLEw1BcHBs -aWNhdGlvbkNBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAp23gdE6H -j6UG3mii24aZS2QNcfAKBZuOquHMLtJqO8F6tJdhjYq+xpqcBrSGUeQ3DnR4fl+K -f5Sk10cI/VBaVuRorChzoHvpfxiSQE8tnfWuREhzNgaeZCw7NCPbXCbkcXmP1G55 -IrmTwcrNwVbtiGrXoDkhBFcsovW8R0FPXjQilbUfKW1eSvNNcr5BViCH/OlQR9cw -FO5cjFW6WY2H/CPek9AEjP3vbb3QesmlOmpyM8ZKDQUXKi17safY1vC+9D/qDiht -QWEjdnjDuGWk81quzMKq2edY3rZ+nYVunyoKb58DKTCXKB28t89UKU5RMfkntigm -/qJj5kEW8DOYRwIDAQABo4GeMIGbMB0GA1UdDgQWBBRUWssmP3HMlEYNllPqa0jQ -k/5CdTAOBgNVHQ8BAf8EBAMCAQYwWQYDVR0RBFIwUKROMEwxCzAJBgNVBAYTAkpQ -MRgwFgYDVQQKDA/ml6XmnKzlm73mlL/lupwxIzAhBgNVBAsMGuOCouODl+ODquOC -seODvOOCt+ODp+ODs0NBMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEFBQAD -ggEBADlqRHZ3ODrso2dGD/mLBqj7apAxzn7s2tGJfHrrLgy9mTLnsCTWw//1sogJ -hyzjVOGjprIIC8CFqMjSnHH2HZ9g/DgzE+Ge3Atf2hZQKXsvcJEPmbo0NI2VdMV+ -eKlmXb3KIXdCEKxmJj3ekav9FfBv7WxfEPjzFvYDio+nEhEMy/0/ecGc/WLuo89U -DNErXxc+4z6/wCs+CZv+iKZ+tJIX/COUgb1up8WMwusRRdv4QcmWdupwX3kSa+Sj -B1oF7ydJzyGfikwJcGapJsErEU4z0g781mzSDjJkaP+tBXhfAx2o45CsJOAPQKdL -rosot4LKGAfmt1t06SAZf7IbiVQ= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/AtosTrustedRoot2011.crt b/test/rules/platform_certs/default/AtosTrustedRoot2011.crt deleted file mode 100644 index 4a04a0222c94..000000000000 --- a/test/rules/platform_certs/default/AtosTrustedRoot2011.crt +++ /dev/null @@ -1,21 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDdzCCAl+gAwIBAgIIXDPLYixfszIwDQYJKoZIhvcNAQELBQAwPDEeMBwGA1UE -AwwVQXRvcyBUcnVzdGVkUm9vdCAyMDExMQ0wCwYDVQQKDARBdG9zMQswCQYDVQQG -EwJERTAeFw0xMTA3MDcxNDU4MzBaFw0zMDEyMzEyMzU5NTlaMDwxHjAcBgNVBAMM -FUF0b3MgVHJ1c3RlZFJvb3QgMjAxMTENMAsGA1UECgwEQXRvczELMAkGA1UEBhMC -REUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCVhTuXbyo7LjvPpvMp -Nb7PGKw+qtn4TaA+Gke5vJrf8v7MPkfoepbCJI419KkM/IL9bcFyYie96mvr54rM -VD6QUM+A1JX76LWC1BTFtqlVJVfbsVD2sGBkWXppzwO3bw2+yj5vdHLqqjAqc2K+ -SZFhyBH+DgMq92og3AIVDV4VavzjgsG1xZ1kCWyjWZgHJ8cblithdHFsQ/H3NYkQ -4J7sVaE3IqKHBAUsR320HLliKWYoyrfhk/WklAOZuXCFteZI6o1Q/NnezG8HDt0L -cp2AMBYHlT8oDv3FdU9T1nSatCQujgKRz3bFmx5VdJx4IbHwLfELn8LVlhgf8FQi -eowHAgMBAAGjfTB7MB0GA1UdDgQWBBSnpQaxLKYJYO7Rl+lwrrw7GWzbITAPBgNV -HRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFKelBrEspglg7tGX6XCuvDsZbNshMBgG -A1UdIAQRMA8wDQYLKwYBBAGwLQMEAQEwDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3 -DQEBCwUAA4IBAQAmdzTblEiGKkGdLD4GkGDEjKwLVLgfuXvTBznk+j57sj1O7Z8j -vZfza1zv7v1Apt+hk6EKhqzvINB5Ab149xnYJDE0BAGmuhWawyfc2E8PzBhj/5kP -DpFrdRbhIfzYJsdHt6bPWHJxfrrhTZVHO8mvbaG0weyJ9rQPOLXiZNwlz6bb65pc -maHFCN795trV1lpFDMS3wrUU77QR/w4VtfX128a961qn8FYiqTxlVMYVqL2Gns2D -lmh6cYGJ4Qvh6hEbaAjMaZ7snkGeRDImeuKHCnE96+RapNLbxc3G3mB/ufNPRJLv -KrcYPqcZ2Qt9sTdBQrC6YB3y/gkRsPCHe6ed ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/AutoridaddeCertificacionFirmaprofesionalCIFA62634068.crt b/test/rules/platform_certs/default/AutoridaddeCertificacionFirmaprofesionalCIFA62634068.crt deleted file mode 100644 index 53263650e9a6..000000000000 --- a/test/rules/platform_certs/default/AutoridaddeCertificacionFirmaprofesionalCIFA62634068.crt +++ /dev/null @@ -1,35 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIGFDCCA/ygAwIBAgIIU+w77vuySF8wDQYJKoZIhvcNAQEFBQAwUTELMAkGA1UE -BhMCRVMxQjBABgNVBAMMOUF1dG9yaWRhZCBkZSBDZXJ0aWZpY2FjaW9uIEZpcm1h -cHJvZmVzaW9uYWwgQ0lGIEE2MjYzNDA2ODAeFw0wOTA1MjAwODM4MTVaFw0zMDEy -MzEwODM4MTVaMFExCzAJBgNVBAYTAkVTMUIwQAYDVQQDDDlBdXRvcmlkYWQgZGUg -Q2VydGlmaWNhY2lvbiBGaXJtYXByb2Zlc2lvbmFsIENJRiBBNjI2MzQwNjgwggIi -MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDKlmuO6vj78aI14H9M2uDDUtd9 -thDIAl6zQyrET2qyyhxdKJp4ERppWVevtSBC5IsP5t9bpgOSL/UR5GLXMnE42QQM -cas9UX4PB99jBVzpv5RvwSmCwLTaUbDBPLutN0pcyvFLNg4kq7/DhHf9qFD0sefG -L9ItWY16Ck6WaVICqjaY7Pz6FIMMNx/Jkjd/14Et5cS54D40/mf0PmbR0/RAz15i -NA9wBj4gGFrO93IbJWyTdBSTo3OxDqqHECNZXyAFGUftaI6SEspd/NYrspI8IM/h -X68gvqB2f3bl7BqGYTM+53u0P6APjqK5am+5hyZvQWyIplD9amML9ZMWGxmPsu2b -m8mQ9QEM3xk9Dz44I8kvjwzRAv4bVdZO0I08r0+k8/6vKtMFnXkIoctXMbScyJCy -Z/QYFpM6/EfY0XiWMR+6KwxfXZmtY4laJCB22N/9q06mIqqdXuYnin1oKaPnirja -EbsXLZmdEyRG98Xi2J+Of8ePdG1asuhy9azuJBCtLxTa/y2aRnFHvkLfuwHb9H/T -KI8xWVvTyQKmtFLKbpf7Q8UIJm+K9Lv9nyiqDdVF8xM6HdjAeI9BZzwelGSuewvF -6NkBiDkal4ZkQdU7hwxu+g/GvUgUvzlN1J5Bto+WHWOWk9mVBngxaJ43BjuAiUVh -OSPHG0SjFeUc+JIwuwIDAQABo4HvMIHsMBIGA1UdEwEB/wQIMAYBAf8CAQEwDgYD -VR0PAQH/BAQDAgEGMB0GA1UdDgQWBBRlzeurNR4APn7VdMActHNHDhpkLzCBpgYD -VR0gBIGeMIGbMIGYBgRVHSAAMIGPMC8GCCsGAQUFBwIBFiNodHRwOi8vd3d3LmZp -cm1hcHJvZmVzaW9uYWwuY29tL2NwczBcBggrBgEFBQcCAjBQHk4AUABhAHMAZQBv -ACAAZABlACAAbABhACAAQgBvAG4AYQBuAG8AdgBhACAANAA3ACAAQgBhAHIAYwBl -AGwAbwBuAGEAIAAwADgAMAAxADcwDQYJKoZIhvcNAQEFBQADggIBABd9oPm03cXF -661LJLWhAqvdpYhKsg9VSytXjDvlMd3+xDLx51tkljYyGOylMnfX40S2wBEqgLk9 -am58m9Ot/MPWo+ZkKXzR4Tgegiv/J2Wv+xYVxC5xhOW1//qkR71kMrv2JYSiJ0L1 -ILDCExARzRAVukKQKtJE4ZYm6zFIEv0q2skGz3QeqUvVhyj5eTSSPi5E6PaPT481 -PyWzOdxjKpBrIF/EUhJOlywqrJ2X3kjyo2bbwtKDlaZmp54lD+kLM5FlClrD2VQS -3a/DTg4fJl4N3LON7NWBcN7STyQF82xO9UxJZo3R/9ILJUFI/lGExkKvgATP0H5k -SeTy36LssUzAKh3ntLFlosS88Zj0qnAHY7S42jtM+kAiMFsRpvAFDsYCA0irhpuF -3dvd6qJ2gHN99ZwExEWN57kci57q13XRcrHedUTnQn3iV2t93Jm8PYMo6oCTjcVM -ZcFwgbg4/EMxsvYDNEeyrPsiBsse3RdHHF9mudMaotoRsaS8I8nkvof/uZS2+F0g -StRf571oe2XyFR7SOqkt6dhrJKyXWERHrVkY8SFlcN7ONGCoQPHzPKTDKCOM/icz -Q0CgFzzr6juwcqajuUpLXhZI9LK8yIySxZ2frHI2vDSANGupi5LAuBft7HZT9SQB -jLMi6Et8Vcad+qMUu2WFbm5PEn4KPJ2V ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/BaltimoreCyberTrustRoot.crt b/test/rules/platform_certs/default/BaltimoreCyberTrustRoot.crt deleted file mode 100644 index 13487ad2f90a..000000000000 --- a/test/rules/platform_certs/default/BaltimoreCyberTrustRoot.crt +++ /dev/null @@ -1,21 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDdzCCAl+gAwIBAgIEAgAAuTANBgkqhkiG9w0BAQUFADBaMQswCQYDVQQGEwJJ -RTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYD -VQQDExlCYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTAwMDUxMjE4NDYwMFoX -DTI1MDUxMjIzNTkwMFowWjELMAkGA1UEBhMCSUUxEjAQBgNVBAoTCUJhbHRpbW9y -ZTETMBEGA1UECxMKQ3liZXJUcnVzdDEiMCAGA1UEAxMZQmFsdGltb3JlIEN5YmVy -VHJ1c3QgUm9vdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKMEuyKr -mD1X6CZymrV51Cni4eiVgLGw41uOKymaZN+hXe2wCQVt2yguzmKiYv60iNoS6zjr -IZ3AQSsBUnuId9Mcj8e6uYi1agnnc+gRQKfRzMpijS3ljwumUNKoUMMo6vWrJYeK -mpYcqWe4PwzV9/lSEy/CG9VwcPCPwBLKBsua4dnKM3p31vjsufFoREJIE9LAwqSu -XmD+tqYF/LTdB1kC1FkYmGP1pWPgkAx9XbIGevOF6uvUA65ehD5f/xXtabz5OTZy -dc93Uk3zyZAsuT3lySNTPx8kmCFcB5kpvcY67Oduhjprl3RjM71oGDHweI12v/ye -jl0qhqdNkNwnGjkCAwEAAaNFMEMwHQYDVR0OBBYEFOWdWTCCR1jMrPoIVDaGezq1 -BE3wMBIGA1UdEwEB/wQIMAYBAf8CAQMwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3 -DQEBBQUAA4IBAQCFDF2O5G9RaEIFoN27TyclhAO992T9Ldcw46QQF+vaKSm2eT92 -9hkTI7gQCvlYpNRhcL0EYWoSihfVCr3FvDB81ukMJY2GQE/szKN+OMY3EU/t3Wgx -jkzSswF07r51XgdIGn9w/xZchMB5hbgF/X++ZRGjD8ACtPhSNzkE1akxehi/oCr0 -Epn3o0WC4zxe9Z2etciefC7IpJ5OCBRLbf1wbWsaY71k5h+3zvDyny67G7fyUIhz -ksLi4xaNmjICq44Y3ekQEe5+NauQrz4wlHrQMz2nZQ/1/I6eYs9HRCwBXbsdtTLS -R9I4LtD+gdwyah617jzV/OeBHRnDJELqYzmp ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/BuypassClass2CA1.crt b/test/rules/platform_certs/default/BuypassClass2CA1.crt deleted file mode 100644 index d40cef14c5b5..000000000000 --- a/test/rules/platform_certs/default/BuypassClass2CA1.crt +++ /dev/null @@ -1,20 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDUzCCAjugAwIBAgIBATANBgkqhkiG9w0BAQUFADBLMQswCQYDVQQGEwJOTzEd -MBsGA1UECgwUQnV5cGFzcyBBUy05ODMxNjMzMjcxHTAbBgNVBAMMFEJ1eXBhc3Mg -Q2xhc3MgMiBDQSAxMB4XDTA2MTAxMzEwMjUwOVoXDTE2MTAxMzEwMjUwOVowSzEL -MAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1eXBhc3MgQVMtOTgzMTYzMzI3MR0wGwYD -VQQDDBRCdXlwYXNzIENsYXNzIDIgQ0EgMTCCASIwDQYJKoZIhvcNAQEBBQADggEP -ADCCAQoCggEBAIs8B0XY9t/mx8q6jUPFR42wWsE425KEHK8T1A9vNkYgxC7McXA0 -ojTTNy7Y3Tp3L8DrKehc0rWpkTSHIln+zNvnma+WwajHQN2lFYxuyHyXA8vmIPLX -l18xoS830r7uvqmtqEyeIWZDO6i88wmjONVZJMHCR3axiFyCO7srpgTXjAePzdVB -HfCuuCkslFJgNJQ72uA40Z0zPhX0kzLFANq1KWYOOngPIVJfAuWSeyXTkh4vFZ2B -5J2O6O+JzhRMVB0cgRJNcKi+EAUXfh/RuFdV7c27UsKwHnjCTTZoy1YmwVLBvXb3 -WNVyfh9EdrsAiR0WnVE1703CVu9r4Iw7DekCAwEAAaNCMEAwDwYDVR0TAQH/BAUw -AwEB/zAdBgNVHQ4EFgQUP42aWYv8e3uco684sDntkHGA1sgwDgYDVR0PAQH/BAQD -AgEGMA0GCSqGSIb3DQEBBQUAA4IBAQAVGn4TirnoB6NLJzKyQJHyIdFkhb5jatLP -gcIV1Xp+DCmsNx4cfHZSldq1fyOhKXdlyTKdqC5Wq2B2zha0jX94wNWZUYN/Xtm+ -DKhQ7SLHrQVMdvvt7h5HZPb3J31cKA9FxVxiXqaakZG3Uxcu3K1gnZZkOb1naLKu -BctN518fV4bVIJwo+28TOPX2EZL2fZleHwzoq0QkKXJAPTZSr4xYkHPB7GEseaHs -h7U/2k3ZIQAw3pDaDtMaSKk+hQsUi4y8QZ5q9w5wwDX3OaJdZtB7WZ+oRxKaJyOk -LY4ng5IgodcVf/EuGO70SH8vf/GhGLWhC5SgYiAynB321O+/TIho ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/BuypassClass2RootCA.crt b/test/rules/platform_certs/default/BuypassClass2RootCA.crt deleted file mode 100644 index e8aa9742d63f..000000000000 --- a/test/rules/platform_certs/default/BuypassClass2RootCA.crt +++ /dev/null @@ -1,31 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFWTCCA0GgAwIBAgIBAjANBgkqhkiG9w0BAQsFADBOMQswCQYDVQQGEwJOTzEd -MBsGA1UECgwUQnV5cGFzcyBBUy05ODMxNjMzMjcxIDAeBgNVBAMMF0J1eXBhc3Mg -Q2xhc3MgMiBSb290IENBMB4XDTEwMTAyNjA4MzgwM1oXDTQwMTAyNjA4MzgwM1ow -TjELMAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1eXBhc3MgQVMtOTgzMTYzMzI3MSAw -HgYDVQQDDBdCdXlwYXNzIENsYXNzIDIgUm9vdCBDQTCCAiIwDQYJKoZIhvcNAQEB -BQADggIPADCCAgoCggIBANfHXvfBB9R3+0Mh9PT1aeTuMgHbo4Yf5FkNuud1g1Lr -6hxhFUi7HQfKjK6w3Jad6sNgkoaCKHOcVgb/S2TwDCo3SbXlzwx87vFKu3MwZfPV -L4O2fuPn9Z6rYPnT8Z2SdIrkHJasW4DptfQxh6NR/Md+oW+OU3fUl8FVM5I+GC91 -1K2GScuVr1QGbNgGE41b/+EmGVnAJLqBcXmQRFBoJJRfuLMR8SlBYaNByyM21cHx -MlAQTn/0hpPshNOOvEu/XAFOBz3cFIqUCqTqc/sLUegTBxj6DvEr0VQVfTzh97QZ -QmdiXnfgolXsttlpF9U6r0TtSsWe5HonfOV116rLJeffawrbD02TTqigzXsu8lkB -arcNuAeBfos4GzjmCleZPe4h6KP1DBbdi+w0jpwqHAAVF41og9JwnxgIzRFo1clr -Us3ERo/ctfPYV3Me6ZQ5BL/T3jjetFPsaRyifsSP5BtwrfKi+fv3FmRmaZ9JUaLi -FRhnBkp/1Wy1TbMz4GHrXb7pmA8y1x1LPC5aAVKRCfLf6o3YBkBjqhHk/sM3nhRS -P/TizPJhk9H9Z2vXUq6/aKtAQ6BXNVN48FP4YUIHZMbXb5tMOA1jrGKvNouicwoN -9SG9dKpN6nIDSdvHXx1iY8f93ZHsM+71bbRuMGjeyNYmsHVee7QHIJihdjK4TWxP -AgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFMmAd+BikoL1Rpzz -uvdMw964o605MA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsFAAOCAgEAU18h -9bqwOlI5LJKwbADJ784g7wbylp7ppHR/ehb8t/W2+xUbP6umwHJdELFx7rxP462s -A20ucS6vxOOto70MEae0/0qyexAQH6dXQbLArvQsWdZHEIjzIVEpMMpghq9Gqx3t -OluwlN5E40EIosHsHdb9T7bWR9AUC8rmyrV7d35BH16Dx7aMOZawP5aBQW9gkOLo -+fsicdl9sz1Gv7SEr5AcD48Saq/v7h56rgJKihcrdv6sVIkkLE8/trKnToyokZf7 -KcZ7XC25y2a2t6hbElGFtQl+Ynhw/qlqYLYdDnkM/crqJIByw5c/8nerQyIKx+u2 -DISCLIBrQYoIwOula9+ZEsuK1V6ADJHgJgg2SMX6OBE1/yWDLfJ6v9r9jv6ly0Us -H8SIU653DtmadsWOLB2jutXsMq7Aqqz30XpN69QH4kj3Io6wpJ9qzo6ysmD0oyLQ -I+uUWnpp3Q+/QFesa1lQ2aOZ4W7+jQF5JyMV3pKdewlNWudLSDBaGOYKbeaP4NK7 -5t98biGCwWg5TbSYWGZizEqQXsP6JwSxeRV0mcy+rSDeJmAc61ZRpqPq5KM/p/9h -3PFaTWwyI0PurKju7koSCTxdccK+efrCh2gdC/1cacwG0Jp9VJkqyTkaGa9LKkPz -Y11aWOIv4x3kqdbQCtCev9eBCfHJxyYNrJgWVqA= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/BuypassClass3RootCA.crt b/test/rules/platform_certs/default/BuypassClass3RootCA.crt deleted file mode 100644 index 43529c9a5791..000000000000 --- a/test/rules/platform_certs/default/BuypassClass3RootCA.crt +++ /dev/null @@ -1,31 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFWTCCA0GgAwIBAgIBAjANBgkqhkiG9w0BAQsFADBOMQswCQYDVQQGEwJOTzEd -MBsGA1UECgwUQnV5cGFzcyBBUy05ODMxNjMzMjcxIDAeBgNVBAMMF0J1eXBhc3Mg -Q2xhc3MgMyBSb290IENBMB4XDTEwMTAyNjA4Mjg1OFoXDTQwMTAyNjA4Mjg1OFow -TjELMAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1eXBhc3MgQVMtOTgzMTYzMzI3MSAw -HgYDVQQDDBdCdXlwYXNzIENsYXNzIDMgUm9vdCBDQTCCAiIwDQYJKoZIhvcNAQEB -BQADggIPADCCAgoCggIBAKXaCpUWUOOV8l6ddjEGMnqb8RB2uACatVI2zSRHsJ8Y -ZLya9vrVediQYkwiL944PdbgqOkcLNt4EemOaFEVcsfzM4fkoF0LXOBXByow9c3E -N3coTRiR5r/VUv1xLXA+58bEiuPwKAv0dpihi4dVsjoT/Lc+JzeOIuOoTyrvYLs9 -tznDDgFHmV0ST9tD+leh7fmdvhFHJlsTmKtdFoqwNxxXnUX/iJY2v7vKB3tvh2PX -0DJq1l1sDPGzbjniazEuOQAnFN44wOwZZoYS6J1yFhNkUsepNxz9gjDthBgd9K5c -/3ATAOux9TN6S9ZV+AWNS2mw9bMoNlwUxFFzTWsL8TQH2xc519woe2v1n/MuwU8X -KhDzzMro6/1rqy6any2CbgTUUgGTLT2G/H783+9CHaZr77kgxve9oKeV/afmiSTY -zIw0bOIjL9kSGiG5VZFvC5F5GQytQIgLcOJ60g7YaEi7ghM5EFjp2CoHxhLbWNvS -O1UQRwUVZ2J+GGOmRj8JDlQyXr8NYnon74Do29lLBlo3WiXQCBJ31G8JUJc9yB3D -34xFMFbG02SrZvPAXpacw8Tvw3xrizp5f7NJzz3iiZ+gMEuFuZyUJHmPfWupRWgP -K9Dx2hzLabjKSWJtyNBjYt1gD1iqj6G8BaVmos8bdrKEZLFMOVLAMLrwjEsCsLa3 -AgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFEe4zf/lb+74suwv -Tg75JbCOPGvDMA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsFAAOCAgEAACAj -QTUEkMJAYmDv4jVM1z+s4jSQuKFvdvoWFqRINyzpkMLyPPgKn9iB5btb2iUspKdV -cSQy9sgL8rxq+JOssgfCX5/bzMiKqr5qb+FJEMwx14C7u8jYog5kV+qi9cKpMRXS -IGrs/CIBKM+GuIAeqcwRpTzyFrNHnfzSgCHEy9BHcEGhyoMZCCxt8l13nIoUE9Q2 -HJLw5QY33KbmkJs4j1xrG0aGQ0JfPgEHU1RdZX33inOhmlRaHylDFCfChQ+1iHsa -O5S3HWCntZznKWlXWpuTekMwGwPXYshApqr8ZORK15FTAaggiG6cX0S5y2CBNOxv -033aSF/rtJC8LakcC6wc1aJoIIAE1vyxjy+7SjENSoYc6+I2KSb12tjE8nVhz36u -dmNKekBlk4f4HoCMhuWG1o8O/FMsYOgWYRqiPkN7zTlgVGr18okmAWiDSKIz6MkE -kbIRNBE+6tBDGR8Dk5AM/1E9V/RBbuHLoL7ryWPNbczk+DaqaJ3tvV2XcEQNtg41 -3OEMXbugUZTLfhbrES+jkkXITHHZvMmZUldGL1DPvTVp9D0VzgalLA8+9oG6lLvD -u79leNKGef9JOxqDDPDeeOzI8k1MGt6CKfjBWtrt7uYnXuhF0J0cUahoq0Tj0Itq -4/g7u9xN12TyUb7mqqta6THuBrxzvxNiCp/HuZc= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/CADisigRootR1.crt b/test/rules/platform_certs/default/CADisigRootR1.crt deleted file mode 100644 index 2169ad2b3e27..000000000000 --- a/test/rules/platform_certs/default/CADisigRootR1.crt +++ /dev/null @@ -1,31 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFaTCCA1GgAwIBAgIJAMMDmu5QkG4oMA0GCSqGSIb3DQEBBQUAMFIxCzAJBgNV -BAYTAlNLMRMwEQYDVQQHEwpCcmF0aXNsYXZhMRMwEQYDVQQKEwpEaXNpZyBhLnMu -MRkwFwYDVQQDExBDQSBEaXNpZyBSb290IFIxMB4XDTEyMDcxOTA5MDY1NloXDTQy -MDcxOTA5MDY1NlowUjELMAkGA1UEBhMCU0sxEzARBgNVBAcTCkJyYXRpc2xhdmEx -EzARBgNVBAoTCkRpc2lnIGEucy4xGTAXBgNVBAMTEENBIERpc2lnIFJvb3QgUjEw -ggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCqw3j33Jijp1pedxiy3QRk -D2P9m5YJgNXoqqXinCaUOuiZc4yd39ffg/N4T0Dhf9Kn0uXKE5Pn7cZ3Xza1lK/o -OI7bm+V8u8yN63Vz4STN5qctGS7Y1oprFOsIYgrY3LMATcMjfF9DCCMyEtztDK3A -fQ+lekLZWnDZv6fXARz2m6uOt0qGeKAeVjGu74IKgEH3G8muqzIm1Cxr7X1r5OJe -IgpFy4QxTaz+29FHuvlglzmxZcfe+5nkCiKxLU3lSCZpq+Kq8/v8kiky6bM+TR8n -oc2OuRf7JT7JbvN32g0S9l3HuzYQ1VTW8+DiR0jm3hTaYVKvJrT1cU/J19IG32PK -/yHoWQbgCNWEFVP3Q+V8xaCJmGtzxmjOZd69fwX3se72V6FglcXM6pM6vpmumwKj -rckWtc7dXpl4fho5frLABaTAgqWjR56M6ly2vGfb5ipN0gTco65F97yLnByn1tUD -3AjLLhbKXEAz6GfDLuemROoRRRw1ZS0eRWEkG4IupZ0zXWX4Qfkuy5Q/H6MMMSRE -7cderVC6xkGbrPAXZcD4XW9boAo0PO7X6oifmPmvTiT6l7Jkdtqr9O3jw2Dv1fkC -yC2fg69naQanMVXVz0tv/wQFx1isXxYb5dKj6zHbHzMVTdDypVP1y+E9Tmgt2BLd -qvLmTZtJ5cUoobqwWsagtQIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1Ud -DwEB/wQEAwIBBjAdBgNVHQ4EFgQUiQq0OJMa5qvum5EY+fU8PjXQ04IwDQYJKoZI -hvcNAQEFBQADggIBADKL9p1Kyb4U5YysOMo6CdQbzoaz3evUuii+Eq5FLAR0rBNR -xVgYZk2C2tXck8An4b58n1KeElb21Zyp9HWc+jcSjxyT7Ff+Bw+r1RL3D65hXlaA -SfX8MPWbTx9BLxyE04nH4toCdu0Jz2zBuByDHBb6lM19oMgY0sidbvW9adRtPTXo -HqJPYNcHKfyyo6SdbhWSVhlMCrDpfNIZTUJG7L399ldb3Zh+pE3McgODWF3vkzpB -emOqfDqo9ayk0d2iLbYq/J8BjuIQscTK5GfbVSUZP/3oNn6z4eGBrxEWi1CXYBmC -AMBrTXO40RMHPuq2MU/wQppt4hF05ZSsjYSVPCGvxdpHyN85YmLLW1AL14FABZyb -7bq2ix4Eb5YgOe2kfSnbSM6C3NQCjR0EMVrHS/BsYVLXtFHCgWzN4funodKSds+x -DzdYpPJScWc/DIh4gInByLUfkmO+p3qKViwaqKactV2zY9ATIKHrkWzQjX2v3wvk -F7mGnjixlAxYjOBVqjtjbZqJYLhkKpLGN/R+Q0O3c+gB53+XD9fyexn9GtePyfqF -a3qdnom2piiZk4hA9z7NUaPK6u95RyG1/jLix8NRb76AdPCkwzryT+lf3xkK8jsT -Q6wxpLPn6/wY1gGp8yqPNg7rtLG8t0zJa7+h89n07eLw4+1knj0vllJPgFOL ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/CADisigRootR2.crt b/test/rules/platform_certs/default/CADisigRootR2.crt deleted file mode 100644 index 6c6eddc6c079..000000000000 --- a/test/rules/platform_certs/default/CADisigRootR2.crt +++ /dev/null @@ -1,31 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFaTCCA1GgAwIBAgIJAJK4iNuwisFjMA0GCSqGSIb3DQEBCwUAMFIxCzAJBgNV -BAYTAlNLMRMwEQYDVQQHEwpCcmF0aXNsYXZhMRMwEQYDVQQKEwpEaXNpZyBhLnMu -MRkwFwYDVQQDExBDQSBEaXNpZyBSb290IFIyMB4XDTEyMDcxOTA5MTUzMFoXDTQy -MDcxOTA5MTUzMFowUjELMAkGA1UEBhMCU0sxEzARBgNVBAcTCkJyYXRpc2xhdmEx -EzARBgNVBAoTCkRpc2lnIGEucy4xGTAXBgNVBAMTEENBIERpc2lnIFJvb3QgUjIw -ggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCio8QACdaFXS1tFPbCw3Oe -NcJxVX6B+6tGUODBfEl45qt5WDza/3wcn9iXAng+a0EE6UG9vgMsRfYvZNSrXaNH -PWSb6WiaxswbP7q+sos0Ai6YVRn8jG+qX9pMzk0DIaPY0jSTVpbLTAwAFjxfGs3I -x2ymrdMxp7zo5eFm1tL7A7RBZckQrg4FY8aAamkw/dLukO8NJ9+flXP04SXabBbe -QTg06ov80egEFGEtQX6sx3dOy1FU+16SGBsEWmjGycT6txOgmLcRK7fWV8x8nhfR -yyX+hk4kLlYMeE2eARKmK6cBZW58Yh2EhN/qwGu1pSqVg8NTEQxzHQuyRpDRQjrO -QG6Vrf/GlK1ul4SOfW+eioANSW1z4nuSHsPzwfPrLgVv2RvPN3YEyLRa5Beny912 -H9AZdugsBbPWnDTYltxhh5EF5EQIM8HauQhl1K6yNg3ruji6DOWbnuuNZt2Zz9aJ -QfYEkoopKW1rOhzndX0CcQ7zwOe9yxndnWCywmZgtrEE7snmhrmaZkCo5xHtgUUD -i/ZnWejBBhG93c+AAk9lQHhcR1DIm+YfgXvkRKhbhZri3lrVx/k6RGZL5DJUfORs -nLMOPReisjQS1n6yqEm70XooQL6iFh/f5DcfEXP7kAplQ6INfPgGAVUzfbANuPT1 -rqVCV3w2EYx7XsQDnYx5nQIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1Ud -DwEB/wQEAwIBBjAdBgNVHQ4EFgQUtZn4r7CU9eMg1gqtzk5WpC5uQu0wDQYJKoZI -hvcNAQELBQADggIBACYGXnDnZTPIgm7ZnBc6G3pmsgH2eDtpXi/q/075KMOYKmFM -tCQSin1tERT3nLXK5ryeJ45MGcipvXrA1zYObYVybqjGom32+nNjf7xueQgcnYqf -GopTpti72TVVsRHFqQOzVju5hJMiXn7B9hJSi+osZ7z+Nkz1uM/Rs0mSO9MpDpkb -lvdhuDvEK7Z4bLQjb/D907JedR+Zlais9trhxTF7+9FGs9K8Z7RiVLoJ92Owk6Ka -+elSLotgEqv89WBW7xBci8QaQtyDW2QOy7W81k/BfDxujRNt+3vrMNDcTa/F1bal -TFtxyegxvug4BkihGuLq0t4SOVga/4AOgnXmt8kHbA7v/zjxmHHEt38OFdAlab0i -nSvtBfZGR6ztwPDUO+Ls7pZbkBNOHlY667DvlruWIxG68kOGdGSVyCh13x01utI3 -gzhTODY7z2zp+WsO0PsE6E9312UBeIYMej4hYvF/Y3EMyZ9E26gnonW+boE+18Dr -G5gPcFw0sorMwIUY6256s/daoQe/qUKS82Ail+QUoQebTnbAjn39pCXHR+3/H3Os -zMOl6W8KjptlwlCFtaOgUxLMVYdh84GuEEZhvUQhuMI9dM9+JDX6HAcOmz0iyu8x -L4ysEr3vQCj8KWefshNPZiTEUxnpHikV7+ZtsH8tZ/3zbBt1RqPlShfppNcL ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/CAWoSignECCRoot.crt b/test/rules/platform_certs/default/CAWoSignECCRoot.crt deleted file mode 100644 index b7e8b5c6a6ef..000000000000 --- a/test/rules/platform_certs/default/CAWoSignECCRoot.crt +++ /dev/null @@ -1,13 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICCTCCAY+gAwIBAgIQaEpYcIBr8I8C+vbe6LCQkDAKBggqhkjOPQQDAzBGMQsw -CQYDVQQGEwJDTjEaMBgGA1UEChMRV29TaWduIENBIExpbWl0ZWQxGzAZBgNVBAMT -EkNBIFdvU2lnbiBFQ0MgUm9vdDAeFw0xNDExMDgwMDU4NThaFw00NDExMDgwMDU4 -NThaMEYxCzAJBgNVBAYTAkNOMRowGAYDVQQKExFXb1NpZ24gQ0EgTGltaXRlZDEb -MBkGA1UEAxMSQ0EgV29TaWduIEVDQyBSb290MHYwEAYHKoZIzj0CAQYFK4EEACID -YgAE4f2OuEMkq5Z7hcK6C62N4DrjJLnSsb6IOsq/Srj57ywvr1FQPEd1bPiUt5v8 -KB7FVMxjnRZLU8HnIKvNrCXSf4/CwVqCXjCLelTOA7WRf6qU0NGKSMyCBSah1VES -1ns2o0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4E -FgQUqv3VWqP2h4syhf3RMluARZPzA7gwCgYIKoZIzj0EAwMDaAAwZQIxAOSkhLCB -1T2wdKyUpOgOPQB0TKGXa/kNUTyh2Tv0Daupn75OcsqF1NnstTJFGG+rrQIwfcf3 -aWMvoeGY7xMQ0Xk/0f7qO3/eVvSQsRUR2LIiFdAvwyYua/GRspBl9JrmkO5K ------END CERTIFICATE----- diff --git "a/test/rules/platform_certs/default/CA\346\262\203\351\200\232\346\240\271\350\257\201\344\271\246.crt" "b/test/rules/platform_certs/default/CA\346\262\203\351\200\232\346\240\271\350\257\201\344\271\246.crt" deleted file mode 100644 index 4e3440ff3d5a..000000000000 --- "a/test/rules/platform_certs/default/CA\346\262\203\351\200\232\346\240\271\350\257\201\344\271\246.crt" +++ /dev/null @@ -1,31 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFWDCCA0CgAwIBAgIQUHBrzdgT/BtOOzNy0hFIjTANBgkqhkiG9w0BAQsFADBG -MQswCQYDVQQGEwJDTjEaMBgGA1UEChMRV29TaWduIENBIExpbWl0ZWQxGzAZBgNV -BAMMEkNBIOayg+mAmuagueivgeS5pjAeFw0wOTA4MDgwMTAwMDFaFw0zOTA4MDgw -MTAwMDFaMEYxCzAJBgNVBAYTAkNOMRowGAYDVQQKExFXb1NpZ24gQ0EgTGltaXRl -ZDEbMBkGA1UEAwwSQ0Eg5rKD6YCa5qC56K+B5LmmMIICIjANBgkqhkiG9w0BAQEF -AAOCAg8AMIICCgKCAgEA0EkhHiX8h8EqwqzbdoYGTufQdDTc7WU1/FDWiD+k8H/r -D195L4mx/bxjWDeTmzj4t1up+thxx7S8gJeNbEvxUNUqKaqoGXqW5pWOdO2XCld1 -9AXbbQs5uQF/qvbW2mzmBeCkTVL829B0txGMe41P/4eDrv8FAxNXUDf+jJZSEExf -v5RxadmWPgxDT74wwJ85dE8GRV2j1lY5aAfMh09Qd5Nx2UQIsYo06Yms25tO4dnk -UkWMLhQfkWsZHWgpLFbE4h4TV2TwYeO5Ed+w4VegG63XX9Gv2ystP9Bojg/qnw+L -NVgbExz03jWhCl3W6t8Sb8D7aQdGctyB9gQjF+BNdeFyb7Ao65vh4YOhn0pdr8yb -+gIgthhid5E7o9Vlrdx8kHccREGkSovrlXLp9glk3Kgtn3R46MGiCWOc76DbT52V -qyBPt7D3h1ymoOQ3OMdc4zUPLK2jgKLsLl3Az+2LBcLmc272idX10kaO6m1jGx6K -yX2m+Jzr5dVjhU1zZmkR/sgO9MHHZklTfuQZa/HpelmjbX7FF+Ynxu8b22/8DU0G -AbQOXDBGVWCvOGU6yke6rCzMRh+yRpY/8+0mBe53oWprfi1tWFxK1I5nuPHa1UaK -J/kR8slC/k7e3x9cxKSGhxYzoacXGKUN5AXlK8IrC6KVkLn9YDxOiT7nnO4fuwEC -AwEAAaNCMEAwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0O -BBYEFOBNv9ybQV0T6GTwp+kVpOGBwboxMA0GCSqGSIb3DQEBCwUAA4ICAQBqinA4 -WbbaixjIvirTthnVZil6Xc1bL3McJk6jfW+rtylNpumlEYOnOXOvEESS5iVdT2H6 -yAa+Tkvv/vMx/sZ8cApBWNromUuWyXi8mHwCKe0JgOYKOoICKuLJL8hWGSbueBwj -/feTZU7n85iYr83d2Z5AiDEoOqsuC7CsDCT6eiaY8xJhEPRdF/d+4niXVOKM6Cm6 -jBAyvd0zaziGfjk9DgNyp115j0WKWa5bIW4xRtVZjc8VX90xJc/bYNaBRHIpAlf2 -ltTW/+op2znFuCyKGo3Oy+dCMYYFaA6eFN0AkLppRQjbbpCBhqcqBT/mhDn4t/lX -X0ykeVoQDF7Va/81XwVRHmyjdanPUIPTfPRm94KNPQx96N97qA4bLJyuQHCH2u2n -FoJavjVsIE4iYdm8UXrNemHcSxH5/mc0zy4EZmFcV5cjjPOGG0jfKq+nwf/Yjj4D -u9gqsPoUJbJRa4ZDhS4HIxaAjUz7tGM7zMN07RujHv41D198HRaG9Q7DlfEvr10l -O1Hm13ZBONFLAzkopR6RctR9q5czxNM+4Gm2KHmgCY0c0f9BckgG/Jou5yD5m6Le -ie2uPAmvylezkolwQOQvT8Jwg0DXJCxr5wkf09XHwQj02w47HAcLQxGEIYbpgNR1 -2KvxAmLBsX5VYc8T1yaw15zLKYs4SgsOkI26oQ== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/CFCAEVROOT.crt b/test/rules/platform_certs/default/CFCAEVROOT.crt deleted file mode 100644 index 7d8be66e5583..000000000000 --- a/test/rules/platform_certs/default/CFCAEVROOT.crt +++ /dev/null @@ -1,32 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFjTCCA3WgAwIBAgIEGErM1jANBgkqhkiG9w0BAQsFADBWMQswCQYDVQQGEwJD -TjEwMC4GA1UECgwnQ2hpbmEgRmluYW5jaWFsIENlcnRpZmljYXRpb24gQXV0aG9y -aXR5MRUwEwYDVQQDDAxDRkNBIEVWIFJPT1QwHhcNMTIwODA4MDMwNzAxWhcNMjkx -MjMxMDMwNzAxWjBWMQswCQYDVQQGEwJDTjEwMC4GA1UECgwnQ2hpbmEgRmluYW5j -aWFsIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MRUwEwYDVQQDDAxDRkNBIEVWIFJP -T1QwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDXXWvNED8fBVnVBU03 -sQ7smCuOFR36k0sXgiFxEFLXUWRwFsJVaU2OFW2fvwwbwuCjZ9YMrM8irq93VCpL -TIpTUnrD7i7es3ElweldPe6hL6P3KjzJIx1qqx2hp/Hz7KDVRM8Vz3IvHWOX6Jn5 -/ZOkVIBMUtRSqy5J35DNuF++P96hyk0g1CXohClTt7GIH//62pCfCqktQT+x8Rgp -7hZZLDRJGqgG16iI0gNyejLi6mhNbiyWZXvKWfry4t3uMCz7zEasxGPrb382KzRz -EpR/38wmnvFyXVBlWY9ps4deMm/DGIq1lY+wejfeWkU7xzbh72fROdOXW3NiGUgt -hxwG+3SYIElz8AXSG7Ggo7cbcNOIabla1jj0Ytwli3i/+Oh+uFzJlU9fpy25IGvP -a931DfSCt/SyZi4QKPaXWnuWFo8BGS1sbn85WAZkgwGDg8NNkt0yxoekN+kWzqot -aK8KgWU6cMGbrU1tVMoqLUuFG7OA5nBFDWteNfB/O7ic5ARwiRIlk9oKmSJgamNg -TnYGmE69g60dWIolhdLHZR4tjsbftsbhf4oEIRUpdPA+nJCdDC7xij5aqgwJHsfV -PKPtl8MeNPo4+QgO48BdK4PRVmrJtqhUUy54Mmc9gn900PvhtgVguXDbjgv5E1hv -cWAQUhC5wUEJ73IfZzF4/5YFjQIDAQABo2MwYTAfBgNVHSMEGDAWgBTj/i39KNAL -tbq2osS/BqoFjJP7LzAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAd -BgNVHQ4EFgQU4/4t/SjQC7W6tqLEvwaqBYyT+y8wDQYJKoZIhvcNAQELBQADggIB -ACXGumvrh8vegjmWPfBEp2uEcwPenStPuiB/vHiyz5ewG5zz13ku9Ui20vsXiObT -ej/tUxPQ4i9qecsAIyjmHjdXNYmEwnZPNDatZ8POQQaIxffu2Bq41gt/UP+TqhdL -jOztUmCypAbqTuv0axn96/Ua4CUqmtzHQTb3yHQFhDmVOdYLO6Qn+gjYXB74BGBS -ESgoA//vU2YApUo0FmZ8/Qmkrp5nGm9BC2sGE5uPhnEFtC+NiWYzKXZUmhH4J/qy -P5Hgzg0b8zAarb8iXRvTvyUFTeGSGn+ZnzxEk8rUQElsgIfXBDrDMlI1Dlb4pd19 -xIsNER9Tyx6yF7Zod1rg1MvIB671Oi6ON7fQAUtDKXeMOZePglr4UeWJoBjnaH9d -Ci77o0cOPaYjesYBx4/IXr9tgFa+iiS6M+qf4TIRnvHST4D2G0CvOJ4RUHlzEhLN -5mydLIhyPDCBBpEi6lmt2hkuIsKNuYyH4Ga8cyNfIWRjgEj1oDwYPZTISEEdQLpe -/v5WOaHIz16eGWRGENoXkbcFgKyLmZJ956LYBws2J+dIeWCKw9cTXPhyQN9Ky8+Z -AAoACxGV2lZFA4gKn2fQ1XmxqI1AbQ3CekD6819kR5LLU7m7Wc5P/dAVUwHY3+vZ -5nbv0CO7O6l5s9UCKc2Jo5YPSjXnTkLAdc0Hz+Ys63su ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/CNNICROOT.crt b/test/rules/platform_certs/default/CNNICROOT.crt deleted file mode 100644 index 2f1be9a1cf9f..000000000000 --- a/test/rules/platform_certs/default/CNNICROOT.crt +++ /dev/null @@ -1,20 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDVTCCAj2gAwIBAgIESTMAATANBgkqhkiG9w0BAQUFADAyMQswCQYDVQQGEwJD -TjEOMAwGA1UEChMFQ05OSUMxEzARBgNVBAMTCkNOTklDIFJPT1QwHhcNMDcwNDE2 -MDcwOTE0WhcNMjcwNDE2MDcwOTE0WjAyMQswCQYDVQQGEwJDTjEOMAwGA1UEChMF -Q05OSUMxEzARBgNVBAMTCkNOTklDIFJPT1QwggEiMA0GCSqGSIb3DQEBAQUAA4IB -DwAwggEKAoIBAQDTNfc/c3et6FtzF8LRb+1VvG7q6KR5smzDo+/hn7E7SIX1mlwh -IhAsxYLO2uOabjfhhyzcuQxauohV3/2q2x8x6gHx3zkBwRP9SFIhxFXf2tizVHa6 -dLG3fdfA6PZZxU3Iva0fFNrfWEQlMhkqx35+jq44sDB7R3IJMfAw28Mbdim7aXZO -V/kbZKKTVrdvmW7bCgScEeOAH8tjlBAKqeFkgjH5jCftppkA9nCTGPihNIaj3XrC -GHn2emU1z5DrvTOTn1OrczvmmzQgLx3vqR1jGqCA2wMv+SYahtKNu6m+UjqHZ0gN -v7Sg2Ca+I19zN38m5pIEo3/PIKe38zrKy5nLAgMBAAGjczBxMBEGCWCGSAGG+EIB -AQQEAwIABzAfBgNVHSMEGDAWgBRl8jGtKvf33VKWCscCwQ7vptU7ETAPBgNVHRMB -Af8EBTADAQH/MAsGA1UdDwQEAwIB/jAdBgNVHQ4EFgQUZfIxrSr3991SlgrHAsEO -76bVOxEwDQYJKoZIhvcNAQEFBQADggEBAEs17szkrr/Dbq2flTtLP1se31cpolnK -OOK5Gv+e5m4y3R6u6jW39ZORTtpC4cMXYFDy0VwmuYK36m3knITnA3kXr5g9lNvH -ugDnuL8BV8F3RTIMO/G0HAiw/VGgod2aHRM2mm23xzy54cXZF/qD1T0VoDy7Hgvi -yJA/qIYM/PmLXoXLT1tLYhFHxUV8BS9BsZ4QaRuZluBVeftOhpm4lNqGOGqTo+fL -buXf6iFViZx9fX+Y9QCJ7uOEwFyWtcVG6kbghVW2G8kS1sHNzYDzAgE8yGnLRUhj -2JTQ7IUOO04RZfSCjKY9ri4ilAnIXOo8gV0WKgOXFlUJ24pBgp5mmxE= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/COMODOCertificationAuthority.crt b/test/rules/platform_certs/default/COMODOCertificationAuthority.crt deleted file mode 100644 index d21c7aaee05f..000000000000 --- a/test/rules/platform_certs/default/COMODOCertificationAuthority.crt +++ /dev/null @@ -1,25 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEHTCCAwWgAwIBAgIQToEtioJl4AsC7j41AkblPTANBgkqhkiG9w0BAQUFADCB -gTELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4G -A1UEBxMHU2FsZm9yZDEaMBgGA1UEChMRQ09NT0RPIENBIExpbWl0ZWQxJzAlBgNV -BAMTHkNPTU9ETyBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wNjEyMDEwMDAw -MDBaFw0yOTEyMzEyMzU5NTlaMIGBMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3Jl -YXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01P -RE8gQ0EgTGltaXRlZDEnMCUGA1UEAxMeQ09NT0RPIENlcnRpZmljYXRpb24gQXV0 -aG9yaXR5MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0ECLi3LjkRv3 -UcEbVASY06m/weaKXTuH+7uIzg3jLz8GlvCiKVCZrts7oVewdFFxze1CkU1B/qnI -2GqGd0S7WWaXUF601CxwRM/aN5VCaTwwxHGzUvAhTaHYujl8HJ6jJJ3ygxaYqhZ8 -Q5sVW7euNJH+1GImGEaaP+vB+fGQV+useg2L23IwambV4EajcNxo2f8ESIl33rXp -+2dtQem8Ob0y2WIC8bGoPW43nOIv4tOiJovGuFVDiOEjPqXSJDlqR6sA1KGzqSX+ -DT+nHbrTUcELpNqsOO9VUCQFZUaTNE8tja3G1CEZ0o7KBWFxB3NH5YoZEr0ETc5O -nKVIrLsm9wIDAQABo4GOMIGLMB0GA1UdDgQWBBQLWOWLxkwVN6RAqTCpIb5HNlpW -/zAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zBJBgNVHR8EQjBAMD6g -PKA6hjhodHRwOi8vY3JsLmNvbW9kb2NhLmNvbS9DT01PRE9DZXJ0aWZpY2F0aW9u -QXV0aG9yaXR5LmNybDANBgkqhkiG9w0BAQUFAAOCAQEAPpiem/Yb6dc5t3iuHXIY -SdOH5EOC6z/JqvWote9VfCFSZfnVDeFs9D6Mk3ORLgLETgdxb8CPOGEIqB6BCsAv -IC9Bi5HcSEW88cbeunZrM8gALTFGTO3nnc+IlP8zwFboJIYmuNg4ON8qa90SzMc/ -RxdMosIGlgnW2/4/PEZB31jiVg88O8EckzXZOFKs7sjsLjBOlDW0JB9LeGna8gI4 -zJVSk/BwJVmcIGfE7vmLV2H0knZ9P4SNVbfo5azV8fUZVqZa+5Acr5Pr5RzUZ5dd -BA6+C4OmF4O5MBKgxTMVBbkN+8cFduPYSo38NBejxiEovjBFMR7HeL5YYTisO+IB -ZQ== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/COMODOECCCertificationAuthority.crt b/test/rules/platform_certs/default/COMODOECCCertificationAuthority.crt deleted file mode 100644 index 566164795ef4..000000000000 --- a/test/rules/platform_certs/default/COMODOECCCertificationAuthority.crt +++ /dev/null @@ -1,16 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICiTCCAg+gAwIBAgIQH0evqmIAcFBUTAGem2OZKjAKBggqhkjOPQQDAzCBhTEL -MAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UE -BxMHU2FsZm9yZDEaMBgGA1UEChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMT -IkNPTU9ETyBFQ0MgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDgwMzA2MDAw -MDAwWhcNMzgwMTE4MjM1OTU5WjCBhTELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdy -ZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UEChMRQ09N -T0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBFQ0MgQ2VydGlmaWNhdGlv -biBBdXRob3JpdHkwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQDR3svdcmCFYX7deSR -FtSrYpn1PlILBs5BAH+X4QokPB0BBO490o0JlwzgdeT6+3eKKvUDYEs2ixYjFq0J -cfRK9ChQtP6IHG4/bC8vCVlbpVsLM5niwz2J+Wos77LTBumjQjBAMB0GA1UdDgQW -BBR1cacZSBm8nZ3qQUfflMRId5nTeTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/ -BAUwAwEB/zAKBggqhkjOPQQDAwNoADBlAjEA7wNbeqy3eApyt4jf/7VGFAkK+qDm -fQjGGoe9GKhzvSbKYAydzpmfz1wPMOG+FDHqAjAU9JM8SaczepBGR7NjfRObTrdv -GDeAU/7dIOA1mjbRxwG55tzd8/8dLDoWV9mSOdY= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/COMODORSACertificationAuthority.crt b/test/rules/platform_certs/default/COMODORSACertificationAuthority.crt deleted file mode 100644 index 1f6cf6122365..000000000000 --- a/test/rules/platform_certs/default/COMODORSACertificationAuthority.crt +++ /dev/null @@ -1,34 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIF2DCCA8CgAwIBAgIQTKr5yttjb+Af907YWwOGnTANBgkqhkiG9w0BAQwFADCB -hTELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4G -A1UEBxMHU2FsZm9yZDEaMBgGA1UEChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNV -BAMTIkNPTU9ETyBSU0EgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMTAwMTE5 -MDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBhTELMAkGA1UEBhMCR0IxGzAZBgNVBAgT -EkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UEChMR -Q09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBSU0EgQ2VydGlmaWNh -dGlvbiBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCR -6FSS0gpWsawNJN3Fz0RndJkrN6N9I3AAcbxT38T6KhKPS38QVr2fcHK3YX/JSw8X -pz3jsARh7v8Rl8f0hj4K+j5c+ZPmNHrZFGvnnLOFoIJ6dq9xkNfs/Q36nGz637CC -9BR++b7Epi9Pf5l/tfxnQ3K9DADWietrLNPtj5gcFKt+5eNu/Nio5JIk2kNrYrhV -/erBvGy2i/MOjZrkm2xpmfh4SDBF1a3hDTxFYPwyllEnvGfDyi62a+pGx8cgoLEf -Zd5ICLqkTqnyg0Y3hOvozIFIQ2dOciqbXL1MGyiKXCJ7tKuY2e7gUYPDCUZObT6Z -+pUX2nwzV0E8jVHtC7ZcryxjGt9XyD+86V3Em69FmeKjWiS0uqlWPc9vqv9JWL7w -qP/0uK3pN/u6uPQLOvnoQ0IeidiEyxPx2bvhiWC4jChWrBQdnArncevPDt09qZah -SL0896+1DSJMwBGB7FY79tOi4lu3sgQiUpWAk2nojkxl8ZEDLXB0AuqLZxUpaVIC -u9ffUGpVRr+goyhhf3DQw6KqLCGqR84onAZFdr+CGCe01a60y1Dma/RMhnEw6abf -Fobg2P9A3fvQQoh/ozM6LlweQRGBY84YcWsr7KaKtzFcOmpH4MN5WdYgGq/yapiq -crxXStJLnbsQ/LBMQeXtHT1eKJ2czL+zUdqnR+WEUwIDAQABo0IwQDAdBgNVHQ4E -FgQUu69+Aj36pvE8hI6t7jiY7NkyMtQwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB -/wQFMAMBAf8wDQYJKoZIhvcNAQEMBQADggIBAArx1UaEt65Ru2yyTUEUAJNMnMvl -wFTPoCWOAvn9sKIN9SCYPBMtrFaisNZ+EZLpLrqeLppysb0ZRGxhNaKatBYSaVqM -4dc+pBroLwP0rmEdEBsqpIt6xf4FpuHA1sj+nq6PK7o9mfjYcwlYRm6mnPTXJ9OV -2jeDchzTc+CiR5kDOF3VSXkAKRzH7JsgHAckaVd4sjn8OoSgtZx8jb8uk2Intzna -FxiuvTwJaP+EmzzV1gsD41eeFPfR60/IvYcjt7ZJQ3mFXLrrkguhxuhoqEwWsRqZ -CuhTLJK7oQkYdQxlqHvLI7cawiiFwxv/0Cti76R7CZGYZ4wUAc1oBmpjIXUDgIiK -boHGhfKppC3n9KUkEEeDys30jXlYsQab5xoq2Z0B15R97QNKyvDb6KkBPvVWmcke -jkk9u+UJueBPSZI9FoJAzMxZxuY67RIuaTxslbH9qh17f4a+Hg4yRvv7E491f0yL -S0Zj/gA0QHDBw7mh3aZw4gSzQbzpgJHqZJx64SIDqZxubw5lT2yHh17zbqD5daWb -QOhTsiedSrnAdyGN/4fy3ryM7xfft0kL0fJuMAsaDk527RH89elWsn2/x20Kk4yl -0MC2Hb46TpSi125sC8KKfPog88Tk5c0NqMuRkrF8hey1FGlmDoLnzc7ILaZRfyHB -NVOFBkpdn627G190 ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/CertificationAuthorityofWoSign.crt b/test/rules/platform_certs/default/CertificationAuthorityofWoSign.crt deleted file mode 100644 index a9e2b86ac0f4..000000000000 --- a/test/rules/platform_certs/default/CertificationAuthorityofWoSign.crt +++ /dev/null @@ -1,32 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFdjCCA16gAwIBAgIQXmjWEXGUY1BWAGjzPsnFkTANBgkqhkiG9w0BAQUFADBV -MQswCQYDVQQGEwJDTjEaMBgGA1UEChMRV29TaWduIENBIExpbWl0ZWQxKjAoBgNV -BAMTIUNlcnRpZmljYXRpb24gQXV0aG9yaXR5IG9mIFdvU2lnbjAeFw0wOTA4MDgw -MTAwMDFaFw0zOTA4MDgwMTAwMDFaMFUxCzAJBgNVBAYTAkNOMRowGAYDVQQKExFX -b1NpZ24gQ0EgTGltaXRlZDEqMCgGA1UEAxMhQ2VydGlmaWNhdGlvbiBBdXRob3Jp -dHkgb2YgV29TaWduMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvcqN -rLiRFVaXe2tcesLea9mhsMMQI/qnobLMMfo+2aYpbxY94Gv4uEBf2zmoAHqLoE1U -fcIiePyOCbiohdfMlZdLdNiefvAA5A6JrkkoRBoQmTIPJYhTpA2zDxIIFgsDcScc -f+Hb0v1naMQFXQoOXXDX2JegvFNBmpGN9J42Znp+VsGQX+axaCA2pIwkLCxHC1l2 -ZjC1vt7tj/id07sBMOby8w7gLJKA84X5KIq0VC6a7fd2/BVoFutKbOsuEo/Uz/4M -x1wdC34FMr5esAkqQtXJTpCzWQ27en7N1QhatH/YHGkR+ScPewavVIMYe+HdVHpR -aG53/Ma/UkpmRqGyZxq7o093oL5d//xWC0Nyd5DKnvnyOfUNqfTq1+ezEC8wQjch -zDBwyYaYD8xYTYO7feUapTeNtqwylwA6Y3EkHp43xP901DfA4v6IRmAR3Qg/UDar -uHqklWJqbrDKaiFaafPz+x1wOZXzp26mgYmhiMU7ccqjUu6Du/2gd/Tkb+dC221K -mYo0SLwX3OSACCK28jHAPwQ+658geda4BmRkAjHXqc1S+4RFaQkAKtxVi8QGRkvA -Sh0JWzko/amrzgD5LkhLJuYwTKVYyrREgk/nkR4zw7CT/xH8gdLKH3Ep3XZPkiWv -HYG3Dy+MwwbMLyejSuQOmbp8HkUff6oZRZb9/D0CAwEAAaNCMEAwDgYDVR0PAQH/ -BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFOFmzw7R8bNLtwYgFP6H -EtX2/vs+MA0GCSqGSIb3DQEBBQUAA4ICAQCoy3JAsnbBfnv8rWTjMnvMPLZdRtP1 -LOJwXcgu2AZ9mNELIaCJWSQBnfmvCX0KI4I01fx8cpm5o9dU9OpScA7F9dY74ToJ -MuYhOZO9sxXqT2r09Ys/L3yNWC7F4TmgPsc9SnOeQHrAK2GpZ8nzJLmzbVUsWh2e -JXLOC62qx1ViC777Y7NhRCOjy+EaDveaBk3e1CNOIZZbOVtXHS9dCF4Jef98l7VN -g64N1uajeeAz0JmWAjCnPv/So0M/BVoG6kQC2nz4SNAzqfkHx5Xh9T71XXG68pWp -dIhhWeO/yloTunK0jF02h+mmxTwTv97QRCbut+wucPrXnbes5cVAWubXbHssw1ab -R80LzvobtCHXt2a49CUwi1wNuepnsvRtrtWhnk/Yn+knArAdBtaP4/tIEp9/EaEQ -PkxROpaw0RPxx9gmrjrKkcRpnd8BKWRRb2jaFOwIQZeQjdCygPLPwj2/kWjFgGce -xGATVdVhmVd8upUPYUk6ynW8yQqTP2cOEvIo4jEbwFcW3wh8GcF+Dx+FHgo2fFt+ -J7x6v+Db9NpSvd4MVHAxkUOVyLzwPt0JfjBkUO1/AaQzZ01oT74V77D2AhGiGxMl -OtzCWfHjXEa7ZywCRuoeSKbmW9m1vFGikpbbqsY3Iqb+zCB0oy2pLmvLwIIRIbWT -ee5Ehr7XHuQe+w== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/CertificationAuthorityofWoSignG2.crt b/test/rules/platform_certs/default/CertificationAuthorityofWoSignG2.crt deleted file mode 100644 index d16f4e90bb38..000000000000 --- a/test/rules/platform_certs/default/CertificationAuthorityofWoSignG2.crt +++ /dev/null @@ -1,21 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDfDCCAmSgAwIBAgIQayXaioidfLwPBbOxemFFRDANBgkqhkiG9w0BAQsFADBY -MQswCQYDVQQGEwJDTjEaMBgGA1UEChMRV29TaWduIENBIExpbWl0ZWQxLTArBgNV -BAMTJENlcnRpZmljYXRpb24gQXV0aG9yaXR5IG9mIFdvU2lnbiBHMjAeFw0xNDEx -MDgwMDU4NThaFw00NDExMDgwMDU4NThaMFgxCzAJBgNVBAYTAkNOMRowGAYDVQQK -ExFXb1NpZ24gQ0EgTGltaXRlZDEtMCsGA1UEAxMkQ2VydGlmaWNhdGlvbiBBdXRo -b3JpdHkgb2YgV29TaWduIEcyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC -AQEAvsXEoCKASU+/2YcRxlPhuw+9YH+v9oIOH9ywjj2X4FA8jzrvZjtFB5sg+OPX -JYY1kBaiXW8wGQiHC38Gsp1ij96vkqVg1CuAmlI/9ZqD6TRay9nVYlzmDuDfBpgO -gHzKtB0TiGsOqCR3A9DuW/PKaZE1OVbFbeP3PU9ekzgkyhjpJMuSA93MHD0JcOQg -5PGurLtzaaNjOg9FD6FKmsLRY6zLEPg95k4ot+vElbGs/V6r+kHLXZ1L3PR8du9n -fwB6jdKgGlxNIuG12t12s9R23164i5jIFFTMaxeSt+BKv0mUYQs4kI9dJGwlezt5 -2eJ+na2fmKEG/HgUYFf47oB3sQIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYD -VR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQU+mCp62XF3RYUCE4MD42b4Pdkr2cwDQYJ -KoZIhvcNAQELBQADggEBAFfDejaCnI2Y4qtAqkePx6db7XznPWZaOzG73/MWM5H8 -fHulwqZm46qwtyeYP0nXYGdnPzZPSsvxFPpahygc7Y9BMsaV+X3avXtbwrAh449G -3CE4Q3RM+zD4F3LBMvzIkRfEzFg3TgvMWvchNSiDbGAtROtSjFA9tWwS1/oJu2yy -SrHFieT801LYYRf+epSEj3m2M1m6D8QL4nCgS3gu+sif/a+RZQp4OBXllxcU3fng -LDT4ONCEIgDAFFEYKwLcMFrw6AF8NTojrwjkr6qOKEJJLvD1mTS+7Q9LGOHSJDy7 -XUe3IfKN0QqZjuNuPq1w4I+5ysxugTH2e5x6eeRncRg= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/Certigna.crt b/test/rules/platform_certs/default/Certigna.crt deleted file mode 100644 index 2adee5705e34..000000000000 --- a/test/rules/platform_certs/default/Certigna.crt +++ /dev/null @@ -1,22 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDqDCCApCgAwIBAgIJAP7c4wEPyUj/MA0GCSqGSIb3DQEBBQUAMDQxCzAJBgNV -BAYTAkZSMRIwEAYDVQQKDAlEaGlteW90aXMxETAPBgNVBAMMCENlcnRpZ25hMB4X -DTA3MDYyOTE1MTMwNVoXDTI3MDYyOTE1MTMwNVowNDELMAkGA1UEBhMCRlIxEjAQ -BgNVBAoMCURoaW15b3RpczERMA8GA1UEAwwIQ2VydGlnbmEwggEiMA0GCSqGSIb3 -DQEBAQUAA4IBDwAwggEKAoIBAQDIaPHJ1tazNHUmgh7stL7qXOEm7RFHYeGifBZ4 -QCHkYJ5ayGPhxLGWkv8YbWkj4Sti993iNi+RB7lIzw7sebYs5zRLcAglozyHGxny -gQcPOJAZ0xH+hrTy0V4eHpbNgGzOOzGTtvKg0KmVEn2lmsxryIRWijOp5yIVUxbw -zBfsV1/pogqYCd7jX5xv3EjjhQsVWqa6n6xI4wmy9/Qy3l40vhx4XUJbzg4ij02Q -130yGLMLLGq/jj8UEYkgDncUtT2UCIf3JR7VsmAA7G8qKCVuKj4YYxclPz5EIBb2 -JsglrgVKtOdjLPOMFlN+XPsRGgjBRmKfIrjxwo1p3Po6WAbfAgMBAAGjgbwwgbkw -DwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUGu3+QTmQtCRZvgHyUtVF9lo53BEw -ZAYDVR0jBF0wW4AUGu3+QTmQtCRZvgHyUtVF9lo53BGhOKQ2MDQxCzAJBgNVBAYT -AkZSMRIwEAYDVQQKDAlEaGlteW90aXMxETAPBgNVBAMMCENlcnRpZ25hggkA/tzj -AQ/JSP8wDgYDVR0PAQH/BAQDAgEGMBEGCWCGSAGG+EIBAQQEAwIABzANBgkqhkiG -9w0BAQUFAAOCAQEAhQMeknH2Qq/ho2Ge6/PAD/Kl1NqV5ta+aDY9fm4fTIrv0Q8h -bV6lUmPOEvjvKtpv6zf+EwLHyzs+ImvaYS5/1HI93TDhHkxAGYwP15zRgzB7mFnc -fca5DClMoTOi62c6ZYTTluLtdkVwj7Ur3vkj1kluPBS1xp81HlDQwY9qcEQCYsuu -HWhBp6pX6FOqB9IG9tUUBguRA3UsbHK1YZWaDYu5Def131TN3ubY1gkIl2PlwS6w -t0QmwCbAr1UwnjvVNioZBPRcHv/PLLf/0P2HQBHVESO7SMAhqaQoLf0V+LBOK/Qw -WyH8EZE0vkHve52Xdf+XlcCWWC/qu0bXu+TZLg== ------END CERTIFICATE----- diff --git "a/test/rules/platform_certs/default/Certinomis-Autorit\303\251Racine.crt" "b/test/rules/platform_certs/default/Certinomis-Autorit\303\251Racine.crt" deleted file mode 100644 index 419df1041ee2..000000000000 --- "a/test/rules/platform_certs/default/Certinomis-Autorit\303\251Racine.crt" +++ /dev/null @@ -1,32 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFnDCCA4SgAwIBAgIBATANBgkqhkiG9w0BAQUFADBjMQswCQYDVQQGEwJGUjET -MBEGA1UEChMKQ2VydGlub21pczEXMBUGA1UECxMOMDAwMiA0MzM5OTg5MDMxJjAk -BgNVBAMMHUNlcnRpbm9taXMgLSBBdXRvcml0w6kgUmFjaW5lMB4XDTA4MDkxNzA4 -Mjg1OVoXDTI4MDkxNzA4Mjg1OVowYzELMAkGA1UEBhMCRlIxEzARBgNVBAoTCkNl -cnRpbm9taXMxFzAVBgNVBAsTDjAwMDIgNDMzOTk4OTAzMSYwJAYDVQQDDB1DZXJ0 -aW5vbWlzIC0gQXV0b3JpdMOpIFJhY2luZTCCAiIwDQYJKoZIhvcNAQEBBQADggIP -ADCCAgoCggIBAJ2Fn4bT46/HsmtuM+Cet0I0VZ35gb5j2CN2DpdUzZlMGvE5x4jY -F1AMnmHawE5V3udauHpOd4cN5bjr+p5eex7Ezyh0x5P1FMYiKAT5kcOrJ3NqDi5N -8y4oH3DfVS9O7cdxbwlyLu3VMpfQ8Vh30WC8Tl7bmoT2R2FFK/ZQpn9qcSdIhDWe -rP5pqZ56XjUl+rSnSTV3lqc2W+HN3yNw2F1MpQiD8aYkOBOo7C+ooWfHpi2GR+6K -/OybDnT0K0kCe5B1jPyZOQE51kqJ5Z52qz6WKDgmi92NjMD2AR5vpTESOH2VwnHu -7XSu5DaiQ3XV8QCb4uTXzEIDS3h65X27uK4uIJPT5GHfceF2Z5c/tt9qc1pkIuVC -28+BA5PY9OMQ4HL2AHCs8MF6DwV/zzRpRbWT5BnbUhYjBYkOjUjkJW+zeL9i9Qf6 -lSTClrLooyPCXQP8w9PlfMl1I9f09bze5N/NgL+RiH2nE7Q5uiy6vdFrzPOlKO1E -nn1So2+WLhl+HPNbxxaOu2B9d2ZHVIIAEWBsMsGoOBvrbpgT1u449fCfDu/+MYHB -0iSVL1N6aaLwD4ZFjliCK0wi1F6g530mJ0jfJUaNSih8hp75mxpZuWW/Bd22Ql09 -5gBIgl4g9xGC3srYn+Y3RyYe63j3YcNBZFgCQfna4NH4+ej9Uji29YnfAgMBAAGj -WzBZMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBQN -jLZh2kS40RR9w759XkjwzspqsDAXBgNVHSAEEDAOMAwGCiqBegFWAgIAAQEwDQYJ -KoZIhvcNAQEFBQADggIBACQ+YAZ+He86PtvqrxyaLAEL9MW12Ukx9F1BjYkMTv9s -ov3/4gbIOZ/xWqndIlgVqIrTseYyCYIDbNc/CMf4uboAbbnW/FIyXaR/pDGUu7ZM -OH8oMDX/nyNTt7buFHAAQCvaR6s0fl6nVjBhK4tDrP22iCj1a7Y+YEq6QpA0Z43q -619FVDsXrIvkxmUP7tCMXWY5zjKn2BCXwH40nJ+U8/aGH88bc62UeYdocMMzpXDn -2NU4lG9jeeu/Cg4I58UvD0KgKxRA/yHgBcUn4YQRE7rWhh1BCxMjidPJC+iKunqj -o3M3NYB9Ergzd0A4wPpeMNLytqOx1qKVl4GbUu1pTP+A5FPbVFsDbVRfsbjvJL1v -nxHDx2TCDyhihWZeGnuyt++uNckZM6i4J9szVb9o4XVIRFb7zdNIu0eJOqxp9YDG -5ERQL1TEqkPFMTFYvZbF6nVsmnWxTfj3l/+WFvKXTej28xH5On2KOG4Ey+HTRRWq -pdEdnV1j6CTmNhTih60bWfVEm/vXd3wfAXBioSAaosUaKPQhA+4u2cGA6rnZgtZb -dsLLO7XSAPCjDuGtbkD326C00EauFddEwk01+dIL8hf2rGbVJLJP0RyZwG71fet0 -BLj5TXcJ17TPBzAJ8bgAVtkXFhYKK4bfjwEZGuW7gmP/vgt2Fl43N+bYdJeimUV5 ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/Certinomis-RootCA.crt b/test/rules/platform_certs/default/Certinomis-RootCA.crt deleted file mode 100644 index 9fb14f640591..000000000000 --- a/test/rules/platform_certs/default/Certinomis-RootCA.crt +++ /dev/null @@ -1,32 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFkjCCA3qgAwIBAgIBATANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQGEwJGUjET -MBEGA1UEChMKQ2VydGlub21pczEXMBUGA1UECxMOMDAwMiA0MzM5OTg5MDMxHTAb -BgNVBAMTFENlcnRpbm9taXMgLSBSb290IENBMB4XDTEzMTAyMTA5MTcxOFoXDTMz -MTAyMTA5MTcxOFowWjELMAkGA1UEBhMCRlIxEzARBgNVBAoTCkNlcnRpbm9taXMx -FzAVBgNVBAsTDjAwMDIgNDMzOTk4OTAzMR0wGwYDVQQDExRDZXJ0aW5vbWlzIC0g -Um9vdCBDQTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBANTMCQosP5L2 -fxSeC5yaah1AMGT9qt8OHgZbn1CF6s2Nq0Nn3rD6foCWnoR4kkjW4znuzuRZWJfl -LieY6pOod5tK8O90gC3rMB+12ceAnGInkYjwSond3IjmFPnVAy//ldu9n+ws+hQV -WZUKxkd8aRi5pwP5ynapz8dvtF4F/u7BUrJ1Mofs7SlmO/NKFoL21prbcpjp3vDF -TKWrteoB4owuZH9kb/2jJZOLyKIOSY008B/sWEUuNKqEUL3nskoTuLAPrjhdsKkb -5nPJWqHZZkCqqU2mNAKthH6yI8H7KsZn9DS2sJVqM09xRLWtwHkziOC/7aOgFLSc -CbAK42C++PhmiM1b8XcF4LVzbsF9Ri6OSyemzTUK/eVNfaoqoynHWmgE6OXWk6Ri -wsXm9E/G+Z8ajYJJGYrKWUM66A0ywfRMEwNvbqY/kXPLynNvEiCL7sCCeN5LLsJJ -wx3tFvYk9CcbXFcx3FXuqB5vbKziRcxXV4p1VxngtViZSTYxPDMBbRZKzbgqg4SG -m/lg0h9tkQPTYKbVPZrdd5A9NaSfD171UkRpucC63M9933zZxKyGIjK8e2uR73r4 -F2iw4lNVYC2vPsKD2NkJK/DAZNuHi5HMkesE/Xa0lZrmFAYb1TQdvtj/dBxThZng -WVJKYe2InmtJiUZ+IFrZ50rlau7SZRFDAgMBAAGjYzBhMA4GA1UdDwEB/wQEAwIB -BjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBTvkUz1pcMw6C8I6tNxIqSSaHh0 -2TAfBgNVHSMEGDAWgBTvkUz1pcMw6C8I6tNxIqSSaHh02TANBgkqhkiG9w0BAQsF -AAOCAgEAfj1U2iJdGlg+O1QnurrMyOMaauo++RLrVl89UM7g6kgmJs95Vn6RHJk/ -0KGRHCwPT5iVWVO90CLYiF2cN/z7ZMF4jIuaYAnq1fohX9B0ZedQxb8uuQsLrbWw -F6YSjNRieOpWauwK0kDDPAUwPk2Ut59KA9N9J0u2/kTO+hkzGm2kQtHdzMjI1xZS -g081lLMSVX3l4kLr5JyTCcBMWwerx20RoFAXlCOotQqSD7J6wWAsOMwaplv/8gzj -qh8c3LigkyfeY+N/IZ865Z764BNqdeuWXGKRlI5nU7aJ+BIJy29SWwNyhlCVCNSN -h4YVH5Uk2KRvms6knZtt0rJ2BobGVgjF6wnaNsIbW0G+YSrjcOa4pvi2WsS9Iff/ -ql+hbHY5ZtbqTFXhADObE5hjyW/QASAJN1LnDE8+zbz1X5YnpyACleAu6AdBBR8V -btaw5BngDwKTACdyxYvRVB9dSsNAl35VpnzBMwQUAR1JIGkLGZOdblgi90AMRgwj -Y/M50n92Uaf0yKHxDHYiI0ZSKS3io0EHVmmY0gUJvGnHWmHNj4FgFU2A3ZDifcRQ -8ow7bkrHxuaAKzyBvBGAFhAn1/DNP3nMcyrDflOR1m749fPH0FFNjkulW+YZFzvW -gQncItzujrnEj1PhZ7szuIgVRs/taTX/dQ1G885x4cVrhkIGuUE= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/CertumCA.crt b/test/rules/platform_certs/default/CertumCA.crt deleted file mode 100644 index 5d522d111a9f..000000000000 --- a/test/rules/platform_certs/default/CertumCA.crt +++ /dev/null @@ -1,19 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDDDCCAfSgAwIBAgIDAQAgMA0GCSqGSIb3DQEBBQUAMD4xCzAJBgNVBAYTAlBM -MRswGQYDVQQKExJVbml6ZXRvIFNwLiB6IG8uby4xEjAQBgNVBAMTCUNlcnR1bSBD -QTAeFw0wMjA2MTExMDQ2MzlaFw0yNzA2MTExMDQ2MzlaMD4xCzAJBgNVBAYTAlBM -MRswGQYDVQQKExJVbml6ZXRvIFNwLiB6IG8uby4xEjAQBgNVBAMTCUNlcnR1bSBD -QTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM6xwS7TT3zNJc4YPk/E -jG+AanPIW1H4m9LcuwBcsaD8dQPugfCI7iNS6eYVM42sLQnFdvkrOYCJ5JdLkKWo -ePhzQ3ukYbDYWMzhbGZ+nPMJXlVjhNWo7/OxLjBos8Q82KxujZlakE403Daaj4GI -ULdtlkIJ89eVgw1BS7Bqa/j8D35in2fE7SZfECYPCE/wpFcozo+47UX2bu4lXapu -Ob7kky/ZR6By6/qmW6/KUz/iDsaWVhFu9+lmqSbYf5VT7QqFiLpPKaVCjF62/IUg -AKpoC6EahQGcxEZjgoi2IrHu/qpGWX7PNSzVttpd90gzFFS269lvzs2I1qsb2pY7 -HVkCAwEAAaMTMBEwDwYDVR0TAQH/BAUwAwEB/zANBgkqhkiG9w0BAQUFAAOCAQEA -uI3O7+cUus/usESSbLQ5PqKEbq24IXfS1HeCh+YgQYHu4vgRt2PRFze+GXYkHAQa -TOs9qmdvLdTN/mUxcMUbpgIKumB7bVjCmkn+YzILa+M6wKyrO7Do0wlRjBCDxjTg -xSvgGrZgFCdsMneMvLJymM/NzD+5yCRCFNZX/OYmQ6kd5YCQzgNUKD73P9P4Te1q -CjqTE5s7FCMTY5w/0YcneeVMUeMBrYVdGjux1XMQpNPyvG5k9VpWkKjHDkx0Dy5x -O/fIR/RpbxXyEV6DHpx8Uq79AtoSqFlnGNu8cN2bsWntgM6JQEhqDjXKKWYVIZQs -6GAqm4VKQPNriiTsBhYscw== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/CertumTrustedNetworkCA.crt b/test/rules/platform_certs/default/CertumTrustedNetworkCA.crt deleted file mode 100644 index b35b4a549a86..000000000000 --- a/test/rules/platform_certs/default/CertumTrustedNetworkCA.crt +++ /dev/null @@ -1,22 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDuzCCAqOgAwIBAgIDBETAMA0GCSqGSIb3DQEBBQUAMH4xCzAJBgNVBAYTAlBM -MSIwIAYDVQQKExlVbml6ZXRvIFRlY2hub2xvZ2llcyBTLkEuMScwJQYDVQQLEx5D -ZXJ0dW0gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxIjAgBgNVBAMTGUNlcnR1bSBU -cnVzdGVkIE5ldHdvcmsgQ0EwHhcNMDgxMDIyMTIwNzM3WhcNMjkxMjMxMTIwNzM3 -WjB+MQswCQYDVQQGEwJQTDEiMCAGA1UEChMZVW5pemV0byBUZWNobm9sb2dpZXMg -Uy5BLjEnMCUGA1UECxMeQ2VydHVtIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MSIw -IAYDVQQDExlDZXJ0dW0gVHJ1c3RlZCBOZXR3b3JrIENBMIIBIjANBgkqhkiG9w0B -AQEFAAOCAQ8AMIIBCgKCAQEA4/t9o3K6wvDJFIf1awFO4W5AB7ptJ11/91sts1rH -UV+rpDKmYYe2bg+G0jACl/jXaVehGDldamR5xgFZrDwxSjh80gTSSyjoIF87B6LM -TXPb865Px1bVWqeWifrzq2jUI4ZZJ88JJ7ysbnKDHDBy3+Ci6dLhdHUZvSqeexVU -BBvXQzmtVSjF4hq79MDkrjhJM8x2hZ85RdKknvISjFH4fOQtf/WsX+sWn7Et0brM -kUJ3TCXJkDhv2/DM+44el1k+1WBO5gUo7Ul5E0u6SNsv+XLTOcr+H9g0cvW0QM8x -AcPs3hEtF10fuFDRXhmnad4HMyjKUJX5p1TLVIZQRan5SQIDAQABo0IwQDAPBgNV -HRMBAf8EBTADAQH/MB0GA1UdDgQWBBQIds3LB/8k9sXN7buQvOKEN0Z19zAOBgNV -HQ8BAf8EBAMCAQYwDQYJKoZIhvcNAQEFBQADggEBAKaorSLOAT2mo/9i0Eidi15y -sHhE49wcrwn9I0j6vSrEuVUEtRCjjSfeC4Jj0O7eDDd5QVsisrCaQVymcODU0HfL -I9MA4GxWL+FpDQ3Zqr8hgVDZBqWo/5U30Kr+4rP1mS1FhIrlQgnXdAIv94nYmem8 -J9RHjboNRhx3zxSkHLmkMcScKHQDNP8zGSal6Q10tz6XxnboJ5ajZt3hrvJBW8qY -VoNzcOSGGtIxQbovvi0TWnZvTuhOgQ4/WwMioBK+ZlgRSssDxLQqKi2WF+A5VLxI -03YnnZotBqbJ7DnSq9ufmgsnAjUpsUCV5/nonFWIGUbWtzT1fs45mtk48VH3Tyw= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/CertumTrustedNetworkCA2.crt b/test/rules/platform_certs/default/CertumTrustedNetworkCA2.crt deleted file mode 100644 index ff9764c06e88..000000000000 --- a/test/rules/platform_certs/default/CertumTrustedNetworkCA2.crt +++ /dev/null @@ -1,34 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIF0jCCA7qgAwIBAgIQIdbQSk8lD8kyN/yqXhKN6TANBgkqhkiG9w0BAQ0FADCB -gDELMAkGA1UEBhMCUEwxIjAgBgNVBAoTGVVuaXpldG8gVGVjaG5vbG9naWVzIFMu -QS4xJzAlBgNVBAsTHkNlcnR1bSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTEkMCIG -A1UEAxMbQ2VydHVtIFRydXN0ZWQgTmV0d29yayBDQSAyMCIYDzIwMTExMDA2MDgz -OTU2WhgPMjA0NjEwMDYwODM5NTZaMIGAMQswCQYDVQQGEwJQTDEiMCAGA1UEChMZ -VW5pemV0byBUZWNobm9sb2dpZXMgUy5BLjEnMCUGA1UECxMeQ2VydHVtIENlcnRp -ZmljYXRpb24gQXV0aG9yaXR5MSQwIgYDVQQDExtDZXJ0dW0gVHJ1c3RlZCBOZXR3 -b3JrIENBIDIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC9+Xj45tWA -DGSdhhuWZGc/IjoedQF97/tcZ4zJzFxrqZHmuULlIEub2pt7uZld2ZuAS9eEQCsn -0+i6MLs+CRqnSZXvK0AkwpfHp+6bJe+oCgCXhVqqndwpyeI1B+twTUrWwbNWuKFB -OJvR+zF/j+Bf4bE/D44WSWDXBo0Y+aomEKsq09DRZ40bRr5HMNUuctHFY9rnY3lE -fktjJImGLjQ/KUxSiyqnwOKRKIm5wFv5HdnnJ63/mgKXwcZQkpsCLL2puTRZCr+E -Sv/f/rOf69me4Jgj7KZrdxYq28ytOxykh9xGc14ZYmhFV+SQgkK7QtbwYeDBoz1m -o130GO6IyY0XRSmZMnUCMe4pJshrAua1YkV/NxVaI2iJ1D7eTiew8EAMvE0Xy02i -sx7QBlrd9pPPV3WZ9fqGGmd4s7+W/jTcvedSVuWz5XV710GRBdxdaeOVDUO5/IOW -OZV7bIBaTxNyxtd9KXpEulKkKtVBRgkg/iKgtlswjbyJDNXXcPiHUv3a76xRLgez -Tv7QCdpw75j6VuZt27VXS9zlLCUVyJ4ueE742pyehizKV/Ma5ciSixqClnrDvFAS -adgOWkaLOusm+iPJtrCBvkIApPjW/jAux9JG9uWOdf3yzLnQh1vMBhBgu4M1t15n -3kfsmUjxpKEV/q2MYo45VU85FrmxY53/twIDAQABo0IwQDAPBgNVHRMBAf8EBTAD -AQH/MB0GA1UdDgQWBBS2oVQ5AsOgP46KvPrU+Bym0ToO/TAOBgNVHQ8BAf8EBAMC -AQYwDQYJKoZIhvcNAQENBQADggIBAHGlDs7k6b8/ONWJWsQCYftMxRQXLYtPU2sQ -F/xlhMcQSZDe28cmk4gmb3DWAl45oPePq5a1pRNcgRRtDoGCERuKTsZPpd1iHkTf -CVn0W3cLN+mLIMb4Ck4uWBzrM9DPhmDJ2vuAL55MYIR4PSFk1vtBHxgP58l1cb29 -XN40hz5BsA72udY/CROWFC/emh1auVbONTqwX3BNXuMp8SMoclm2q8KMZiYcdywm -djWLKKdpoPk79SPdhRB0yZADVpHnr7pH1BKXESLjokmUbOe3lEu6LaTaM4tMpkT/ -WjzGHWTYtTHkpjx6qFcL2+1hGsvxznN3Y6SHb0xRONbkX8eftoEq5IVIeVheO/jb -AoJnwTnbw3RLPTYe+SmTiGhbqEQZIfCn6IENLOiTNrQ3ssqwGyZ6miUfmpqAnksq -P/ujmv5zMnHCnsZy4YpoJ/HkD7TETKVhk/iXEAcqMCWpuchxuO9ozC1+9eB+D4Ko -b7a6bINDd82Kkhehnlt4Fj1F4jNy3eFmypnTycUm/Q1oBEauttmbjL4ZvrHG8hnj -XALKLNhvSgfZyTXaQHXyxKcZb55CEJh15pWLYLztxRLXis7VmFxWlgPF7ncGNf/P -5O4/E2Hu29othfDNrp2yGAlFw5Khchf8R7agCyzxxN5DaAhqXzvwdmP7zAYspsbi -DrW5viSP ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/ChambersofCommerceRoot-2008.crt b/test/rules/platform_certs/default/ChambersofCommerceRoot-2008.crt deleted file mode 100644 index 42e1e39c4ac5..000000000000 --- a/test/rules/platform_certs/default/ChambersofCommerceRoot-2008.crt +++ /dev/null @@ -1,42 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIHTzCCBTegAwIBAgIJAKPaQn6ksa7aMA0GCSqGSIb3DQEBBQUAMIGuMQswCQYD -VQQGEwJFVTFDMEEGA1UEBxM6TWFkcmlkIChzZWUgY3VycmVudCBhZGRyZXNzIGF0 -IHd3dy5jYW1lcmZpcm1hLmNvbS9hZGRyZXNzKTESMBAGA1UEBRMJQTgyNzQzMjg3 -MRswGQYDVQQKExJBQyBDYW1lcmZpcm1hIFMuQS4xKTAnBgNVBAMTIENoYW1iZXJz -IG9mIENvbW1lcmNlIFJvb3QgLSAyMDA4MB4XDTA4MDgwMTEyMjk1MFoXDTM4MDcz -MTEyMjk1MFowga4xCzAJBgNVBAYTAkVVMUMwQQYDVQQHEzpNYWRyaWQgKHNlZSBj -dXJyZW50IGFkZHJlc3MgYXQgd3d3LmNhbWVyZmlybWEuY29tL2FkZHJlc3MpMRIw -EAYDVQQFEwlBODI3NDMyODcxGzAZBgNVBAoTEkFDIENhbWVyZmlybWEgUy5BLjEp -MCcGA1UEAxMgQ2hhbWJlcnMgb2YgQ29tbWVyY2UgUm9vdCAtIDIwMDgwggIiMA0G -CSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCvAMtwNyuAWko6bHiUfaN/Gh/2NdW9 -28sNRHI+JrKQUrpjOyhYb6WzbZSm891kDFX29ufyIiKAXuFixrYp4YFs8r/lfTJq -VKAyGVn+H4vXPWCGhSRv4xGzdz4gljUha7MI2XAuZPeEklPWDrCQiorjh40G072Q -DuKZoRuGDtqaCrsLYVAGUvGef3bsyw/QHg3PmTA9HMRFEFis1tPo1+XqxQEHd9ZR -5gN/ikilTWh1uem8nk4ZcfUyS5xtYBkL+8ydddy/Js2Pk3g5eXNeJQ7KXOt3EgfL -ZEFHcpOrUMPrCXZkNNI5t3YRCQ12RcSprj1qr7V9ZS+UWBDsXHyvfuK2GNnQm05a -Sd+pZgvMPMZ4fKecHePOjlO+Bd5gD2vlGts/4+EhySnB8esHnFIbAURRPHsl18Tl -UlRdJQfKFiC4reRB7noI/plvg6aRArBsNlVq5331lubKgdaX8ZSD6e2wsWsSaR6s -+12pxZjptFtYer49okQ6Y1nUCyXeG0+95QGezdIp1Z8XGQpvvwyQ0wlf2eOKNcx5 -Wk0ZN5K3xMGtr/R5JJqyAQuxr1yW84Ay+1w9mPGgP0revq+ULtlVmhduYJ1jbLhj -ya6BXBg14JC7vjxPNyK5fuvPnnchpj04gftI2jE9K+OJ9dC1vX7gUMQSibMjmhAx -hduub+84Mxh2EQIDAQABo4IBbDCCAWgwEgYDVR0TAQH/BAgwBgEB/wIBDDAdBgNV -HQ4EFgQU+SSsD7K1+HnA+mCIG8TZTQKeFxkwgeMGA1UdIwSB2zCB2IAU+SSsD7K1 -+HnA+mCIG8TZTQKeFxmhgbSkgbEwga4xCzAJBgNVBAYTAkVVMUMwQQYDVQQHEzpN -YWRyaWQgKHNlZSBjdXJyZW50IGFkZHJlc3MgYXQgd3d3LmNhbWVyZmlybWEuY29t -L2FkZHJlc3MpMRIwEAYDVQQFEwlBODI3NDMyODcxGzAZBgNVBAoTEkFDIENhbWVy -ZmlybWEgUy5BLjEpMCcGA1UEAxMgQ2hhbWJlcnMgb2YgQ29tbWVyY2UgUm9vdCAt -IDIwMDiCCQCj2kJ+pLGu2jAOBgNVHQ8BAf8EBAMCAQYwPQYDVR0gBDYwNDAyBgRV -HSAAMCowKAYIKwYBBQUHAgEWHGh0dHA6Ly9wb2xpY3kuY2FtZXJmaXJtYS5jb20w -DQYJKoZIhvcNAQEFBQADggIBAJASryI1wqM58C7e6bXpeHxIvj99RZJe6dqxGfwW -PJ+0W2aeaufDuV2I6A+tzyMP3iU6XsxPpcG1Lawk0lgH3qLPaYRgM+gQDROpI9CF -5Y57pp49chNyM/WqfcZjHwj0/gF/JM8rLFQJ3uIrbZLGOU8W6jx+ekbURWpGqOt1 -glanq6B8aBMz9p0w8G8nOSQjKpD9kCk18pPfNKXG9/jvjA9iSnyu0/VU+I22mlaH -FoI6M6taIgj3grrqLuBHmrS1RaMFO9ncLkVAO+rcf+g769HsJtg1pDDFOqxXnrN2 -pSB7+R5KBWIBpih1YJeSDW4+TTdDDZIVnBgizVGZoCkaPF+KMjNbMMeJL0eYD6MD -xvbxrN8y8NmBGuScvfaAFPDRLLmF9dijscilIeUcE5fuDr3fKanvNFNb0+RqE4QG -tjICxFKuItLcsiFCGtpA8CnJ7AoMXOLQusxI0zcKzBIKinmwPQN/aUv0NCB9szTq -jktk9T79syNnFQ0EuPAtwQlRPLJsFfClI9eDdOTlLsn+mCdCxqvGnrDQWzilm1De -fhiYtUU79nm06PcaewaD+9CL2rvHvRirCG88gGtAPxkZumWK5r7VXNM21+9AUiRg -OGcEMeyP84LG3rlV8zsxkVrctQgVrXYlCg17LofiDKYGvCYQbTed7N14jHyAxfDZ -d0jQ ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/ChambersofCommerceRoot.crt b/test/rules/platform_certs/default/ChambersofCommerceRoot.crt deleted file mode 100644 index 36a51a1c0f99..000000000000 --- a/test/rules/platform_certs/default/ChambersofCommerceRoot.crt +++ /dev/null @@ -1,28 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEvTCCA6WgAwIBAgIBADANBgkqhkiG9w0BAQUFADB/MQswCQYDVQQGEwJFVTEn -MCUGA1UEChMeQUMgQ2FtZXJmaXJtYSBTQSBDSUYgQTgyNzQzMjg3MSMwIQYDVQQL -ExpodHRwOi8vd3d3LmNoYW1iZXJzaWduLm9yZzEiMCAGA1UEAxMZQ2hhbWJlcnMg -b2YgQ29tbWVyY2UgUm9vdDAeFw0wMzA5MzAxNjEzNDNaFw0zNzA5MzAxNjEzNDRa -MH8xCzAJBgNVBAYTAkVVMScwJQYDVQQKEx5BQyBDYW1lcmZpcm1hIFNBIENJRiBB -ODI3NDMyODcxIzAhBgNVBAsTGmh0dHA6Ly93d3cuY2hhbWJlcnNpZ24ub3JnMSIw -IAYDVQQDExlDaGFtYmVycyBvZiBDb21tZXJjZSBSb290MIIBIDANBgkqhkiG9w0B -AQEFAAOCAQ0AMIIBCAKCAQEAtzZV5aVdGDDg2olUkfzIx1L4L1DZ77F1c2VHfRtb -unXF/KGIJPov7coISjlUxFF6tdpg6jg8gbLL8bvZkSM/SAFwdakFKq0fcfPJVD0d -BmpAPrMMhe5cG3nCYsS4No41XQEMIwRHNaqbYE6gZj3LJgqcQKH0XZi/caulAGgq -7YN6D6IUtdQis4CwPAxaUWktWBiP7Zme8a7ileb2R6jWDA+wWFjbw2Y3npuRVDM3 -0pQcakjJyfKl2qUMI/cjDpwyVV5xnIQFUZot/eZOKjRa3spAN2cMVCFVd9oKDMyX -roDclDZK9D7ONhMeU+SsTjoF7Nuucpw4i9A5O4kKPnf+dQIBA6OCAUQwggFAMBIG -A1UdEwEB/wQIMAYBAf8CAQwwPAYDVR0fBDUwMzAxoC+gLYYraHR0cDovL2NybC5j -aGFtYmVyc2lnbi5vcmcvY2hhbWJlcnNyb290LmNybDAdBgNVHQ4EFgQU45T1sU3p -26EpW1eLTXYGduHRooowDgYDVR0PAQH/BAQDAgEGMBEGCWCGSAGG+EIBAQQEAwIA -BzAnBgNVHREEIDAegRxjaGFtYmVyc3Jvb3RAY2hhbWJlcnNpZ24ub3JnMCcGA1Ud -EgQgMB6BHGNoYW1iZXJzcm9vdEBjaGFtYmVyc2lnbi5vcmcwWAYDVR0gBFEwTzBN -BgsrBgEEAYGHLgoDATA+MDwGCCsGAQUFBwIBFjBodHRwOi8vY3BzLmNoYW1iZXJz -aWduLm9yZy9jcHMvY2hhbWJlcnNyb290Lmh0bWwwDQYJKoZIhvcNAQEFBQADggEB -AAxBl8IahsAifJ/7kPMa0QOx7xP5IV8EnNrJpY0nbJaHkb5BkAFyk+cefV/2icZd -p0AJPaxJRUXcLo0waLIJuvvDL8y6C98/d3tGfToSJI6WjzwFCm/SlCgdbQzALogi -1djPHRPH8EjX1wWnz8dHnjs8NMiAT9QUu/wNUPf6s+xCX6ndbcj0dc97wXImsQEc -XCz9ek60AcUFV7nnPKoF2YjpB0ZBzu9Bga5Y34OirsrXdx/nADydb47kMgkdTXg0 -eDQ8lJsm7U9xxhl6vSAiSFr+S30Dt+dYvsYyTnQeaN2oaFuzPu5ifdmA6Ap1erfu -tGWaIZDgqtCYvDi1czyL+Nw= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/ChinaInternetNetworkInformationCenterEVCertificatesRoot.crt b/test/rules/platform_certs/default/ChinaInternetNetworkInformationCenterEVCertificatesRoot.crt deleted file mode 100644 index 5ec4ff6fcd54..000000000000 --- a/test/rules/platform_certs/default/ChinaInternetNetworkInformationCenterEVCertificatesRoot.crt +++ /dev/null @@ -1,24 +0,0 @@ ------BEGIN CERTIFICATE----- -MIID9zCCAt+gAwIBAgIESJ8AATANBgkqhkiG9w0BAQUFADCBijELMAkGA1UEBhMC -Q04xMjAwBgNVBAoMKUNoaW5hIEludGVybmV0IE5ldHdvcmsgSW5mb3JtYXRpb24g -Q2VudGVyMUcwRQYDVQQDDD5DaGluYSBJbnRlcm5ldCBOZXR3b3JrIEluZm9ybWF0 -aW9uIENlbnRlciBFViBDZXJ0aWZpY2F0ZXMgUm9vdDAeFw0xMDA4MzEwNzExMjVa -Fw0zMDA4MzEwNzExMjVaMIGKMQswCQYDVQQGEwJDTjEyMDAGA1UECgwpQ2hpbmEg -SW50ZXJuZXQgTmV0d29yayBJbmZvcm1hdGlvbiBDZW50ZXIxRzBFBgNVBAMMPkNo -aW5hIEludGVybmV0IE5ldHdvcmsgSW5mb3JtYXRpb24gQ2VudGVyIEVWIENlcnRp -ZmljYXRlcyBSb290MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAm35z -7r07eKpkQ0H1UN+U8i6yjUqORlTSIRLIOTJCBumD1Z9S7eVnAztUwYyZmczpwA// -DdmEEbK40ctb3B75aDFk4Zv6dOtouSCV98YPjUesWgbdYavi7NifFy2cyjw1l1Vx -zUOFsUcW9SxTgHbP0wBkvUCZ3czY28Sf1hNfQYOL+Q2HklY0bBoQCxfVWhyXWIQ8 -hBouXJE0bhlffxdpxWXvayHG1VA6v2G5BY3vbzQ6sm8UY78WO5upKv23KzhmBsUs -4qpnHkWnjQRmQvaPK++IIGmPMowUc9orhpFjIpryp9vOiYurXccUwVswah+xt54u -gQEC7c+WXmPbqOY4twIDAQABo2MwYTAfBgNVHSMEGDAWgBR8cks5x8DbYqVPm6oY -NJKiyoOCWTAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4E -FgQUfHJLOcfA22KlT5uqGDSSosqDglkwDQYJKoZIhvcNAQEFBQADggEBACrDx0M3 -j92tpLIM7twUbY8opJhJywyA6vPtI2Z1fcXTIWd50XPFtQO3WKwMVC/GVhMPMdoG -52U7HW8228gd+f2ABsqjPWYWqJ1MFn3AlUa1UeTiH9fqBk1jjZaM7+czV0I664zB -echNdn3e9rG3geCg+aF4RhcaVpjwTj2rHO3sOdwHSPdj/gauwqRcalsyiMXHM4Ws -ZkJHwlgkmeHlPuV1LI5D1l08eB6olYIpUNHRFrrvwb562bTYzB5MRuF3sTGrvSrI -zo9uoV1/A3U05K2JRVRevq4opbs/eHnrc7MKDf2+yfdWrPa37S+bISnHOLaVxATy -wy39FCqQmbkHzJ8= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/Class2PrimaryCA.crt b/test/rules/platform_certs/default/Class2PrimaryCA.crt deleted file mode 100644 index 20d5dd59214c..000000000000 --- a/test/rules/platform_certs/default/Class2PrimaryCA.crt +++ /dev/null @@ -1,22 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDkjCCAnqgAwIBAgIRAIW9S/PY2uNp9pTXX8OlRCMwDQYJKoZIhvcNAQEFBQAw -PTELMAkGA1UEBhMCRlIxETAPBgNVBAoTCENlcnRwbHVzMRswGQYDVQQDExJDbGFz -cyAyIFByaW1hcnkgQ0EwHhcNOTkwNzA3MTcwNTAwWhcNMTkwNzA2MjM1OTU5WjA9 -MQswCQYDVQQGEwJGUjERMA8GA1UEChMIQ2VydHBsdXMxGzAZBgNVBAMTEkNsYXNz -IDIgUHJpbWFyeSBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANxQ -ltAS+DXSCHh6tlJw/W/uz7kRy1134ezpfgSN1sxvc0NXYKwzCkTsA18cgCSR5aiR -VhKC9+Ar9NuuYS6JEI1rbLqzAr3VNsVINyPi8Fo3UjMXEuLRYE2+L0ER4/YXJQyL -kcAbmXuZVg2v7tK8R1fjeUl7NIknJITesezpWE7+Tt9avkGtrAjFGA7v0lPubNCd -EgETjdyAYveVqUSISnFOYFWe2yMZeVYHDD9jC1yw4r5+FfyUM1hBOHTE4Y+L3yas -H7WLO7dDWWuwJKZtkIvEcupdM5i3y95ee++U8Rs+yskhwcWYAqqi9lt3m/V+llU0 -HGdpwPFC40es/CgcZlUCAwEAAaOBjDCBiTAPBgNVHRMECDAGAQH/AgEKMAsGA1Ud -DwQEAwIBBjAdBgNVHQ4EFgQU43Mt38sOKAze3bOkynm4jrvoMIkwEQYJYIZIAYb4 -QgEBBAQDAgEGMDcGA1UdHwQwMC4wLKAqoCiGJmh0dHA6Ly93d3cuY2VydHBsdXMu -Y29tL0NSTC9jbGFzczIuY3JsMA0GCSqGSIb3DQEBBQUAA4IBAQCnVM+IRBnL39R/ -AN9WM2K191EBkOvDP9GIROkkXe/nFL0gt5o8AP5tn9uQ3Nf0YtaLcF3n5QRIqWh8 -yfFC82x/xXp8HVGIutIKPidd3i1RTtMTZGnkLuPT55sJmabglZvOGtd/vjzOUrMR -FcEPF80Du5wlFbqidon8BvEY0JNLDnyCt6X09l/+7UCmnYR0ObncHoUW2ikbhiMA -ybuJfm6AiB4vFLQDJKgybwOaRywwvlbGp0ICcBvqQNi6BQNwB6SW//1IMwrh3KWB -kJtN3X3n57LNXMhqlfil9o3EXXgIvnsG1knPGTZQIy4I5p4FTUcY1Rbpsda2ENW7 -l7+ijrRU ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/ComSignCA.crt b/test/rules/platform_certs/default/ComSignCA.crt deleted file mode 100644 index 49a279eb7db7..000000000000 --- a/test/rules/platform_certs/default/ComSignCA.crt +++ /dev/null @@ -1,22 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDkzCCAnugAwIBAgIQFBOWgxRVjOp7Y+X8NId3RDANBgkqhkiG9w0BAQUFADA0 -MRMwEQYDVQQDEwpDb21TaWduIENBMRAwDgYDVQQKEwdDb21TaWduMQswCQYDVQQG -EwJJTDAeFw0wNDAzMjQxMTMyMThaFw0yOTAzMTkxNTAyMThaMDQxEzARBgNVBAMT -CkNvbVNpZ24gQ0ExEDAOBgNVBAoTB0NvbVNpZ24xCzAJBgNVBAYTAklMMIIBIjAN -BgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA8ORUaSvTx49qROR+WCf4C9DklBKK -8Rs4OC8fMZwG1Cyn3gsqrhqg455qv588x26i+YtkbDqthVVRVKU4VbirgwTyP2Q2 -98CNQ0NqZtH3FyrV7zb6MBBC11PN+fozc0yz6YQgitZBJzXkOPqUm7h65HkfM/sb -2CEJKHxNGGleZIp6GZPKfuzzcuc3B1hZKKxC+cX/zT/npfo4sdAMx9lSGlPWgcxC -ejVb7Us6eva1jsz/D3zkYDaHL63woSV9/9JLEYhwVKZBqGdTUkJe5DSe5L6j7Kpi -Xd3DTKaCQeQzC6zJMw9kglcq/QytNuEMrkvF7zuZ2SOzW120V+x0cAwqTwIDAQAB -o4GgMIGdMAwGA1UdEwQFMAMBAf8wPQYDVR0fBDYwNDAyoDCgLoYsaHR0cDovL2Zl -ZGlyLmNvbXNpZ24uY28uaWwvY3JsL0NvbVNpZ25DQS5jcmwwDgYDVR0PAQH/BAQD -AgGGMB8GA1UdIwQYMBaAFEsBmz5WGmU2dst7l6qSBe4y5ygxMB0GA1UdDgQWBBRL -AZs+VhplNnbLe5eqkgXuMucoMTANBgkqhkiG9w0BAQUFAAOCAQEA0Nmlfv4pYEWd -foPPbrxHbvUanlR2QnG0PFg/LUAlQvaBnPGJEMgOqnhPOAlXsDzACPw1jvFIUY0M -cXS6hMTXcpuEfDhOZAYnKuGntewImbQKDdSFc8gS4TXt8QUxHXOZDOuWyt3T5oWq -8Ir7dcHyCTxlZWTzTNity4hp8+SDtwy9F1qWF8pb/627HOkthIDYIb6FUtnUdLlp -hbpN7Sgy6/lhSuTENh4Z3G+EER+V9YMoGKgzkkMn3V0TBEVPh9VGzT2ouvDzuFYk -Res3x+F2T3I5GN9+dHLHcy056mDmrRGiVod7w2ia/viMcKjfZTL0pECMocJEAw6U -AGegcQCCSA== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/ComSignSecuredCA.crt b/test/rules/platform_certs/default/ComSignSecuredCA.crt deleted file mode 100644 index f5a7dbb50cb8..000000000000 --- a/test/rules/platform_certs/default/ComSignSecuredCA.crt +++ /dev/null @@ -1,22 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDqzCCApOgAwIBAgIRAMcoRwmzuGxFjB36JPU2TukwDQYJKoZIhvcNAQEFBQAw -PDEbMBkGA1UEAxMSQ29tU2lnbiBTZWN1cmVkIENBMRAwDgYDVQQKEwdDb21TaWdu -MQswCQYDVQQGEwJJTDAeFw0wNDAzMjQxMTM3MjBaFw0yOTAzMTYxNTA0NTZaMDwx -GzAZBgNVBAMTEkNvbVNpZ24gU2VjdXJlZCBDQTEQMA4GA1UEChMHQ29tU2lnbjEL -MAkGA1UEBhMCSUwwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDGtWhf -HZQVw6QIVS3joFd67+l0Kru5fFdJGhFeTymHDEjWaueP1H5XJLkGieQcPOqs49oh -gHMhCu95mGwfCP+hUH3ymBvJVG8+pSjsIQQPRbsHPaHA+iqYHU4Gk/v1iDurX8sW -v+bznkqH7Rnqwp9D5PGBpX8QTz7RSmKtUxvLg/8HZaWSLWapW7ha9B20IZFKF3ue -Mv5WJDmyVIRD9YTC2LxBkMyd1mja6YJQqTtoz7VdApRgFrFD2UNd3V2Hbuq7s8lr -9gOUCXDeFhF6K+h2j0kQmHe5Y1yLM5d19guMsqtb3nQgJT/j8xH5h2iGNXHDHYwt -6+UarA9z1YJZQIDTAgMBAAGjgacwgaQwDAYDVR0TBAUwAwEB/zBEBgNVHR8EPTA7 -MDmgN6A1hjNodHRwOi8vZmVkaXIuY29tc2lnbi5jby5pbC9jcmwvQ29tU2lnblNl -Y3VyZWRDQS5jcmwwDgYDVR0PAQH/BAQDAgGGMB8GA1UdIwQYMBaAFMFL7XC29z58 -ADsAj8c+DkWfHl3sMB0GA1UdDgQWBBTBS+1wtvc+fAA7AI/HPg5Fnx5d7DANBgkq -hkiG9w0BAQUFAAOCAQEAFs/ukhNQq3sUnjO2QiBq1BW9Cav8cujvR3qQrFHBZE7p -iL1DRYHjZiM/EoZNGeQFsOY3wo3aBijJD4mkU6l1P7CW+6tMM1X5eCZGbxs2mPtC -dsGCuY7e+0X5YxtiOzkGynd6qDwJz2w2PQ8KRUtpFhpFfTMDZflScZAmlaxMDPWL -kz/MdXSFmLr/YnpNH4n+rr2UAJm/EaXc4HnFFgt9AmEd6oX5AhVP51qJThRv4zdL -hfXBPGHg/QVBspJ/wx2g0K5SZGBrGMYmnNj1ZOQ2GmKfig8+/21OGVZOIJFsnzQz -OjRXUDpvgV4GxvU+fE6OK85lBi5d0ipTdF7Tbieejw== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/CybertrustGlobalRoot.crt b/test/rules/platform_certs/default/CybertrustGlobalRoot.crt deleted file mode 100644 index 40390e55a6b1..000000000000 --- a/test/rules/platform_certs/default/CybertrustGlobalRoot.crt +++ /dev/null @@ -1,22 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDoTCCAomgAwIBAgILBAAAAAABD4WqLUgwDQYJKoZIhvcNAQEFBQAwOzEYMBYG -A1UEChMPQ3liZXJ0cnVzdCwgSW5jMR8wHQYDVQQDExZDeWJlcnRydXN0IEdsb2Jh -bCBSb290MB4XDTA2MTIxNTA4MDAwMFoXDTIxMTIxNTA4MDAwMFowOzEYMBYGA1UE -ChMPQ3liZXJ0cnVzdCwgSW5jMR8wHQYDVQQDExZDeWJlcnRydXN0IEdsb2JhbCBS -b290MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA+Mi8vRRQZhP/8NN5 -7CPytxrHjoXxEnOmGaoQ25yiZXRadz5RfVb23CO21O1fWLE3TdVJDm71aofW0ozS -J8bi/zafmGWgE07GKmSb1ZASzxQG9Dvj1Ci+6A74q05IlG2OlTEQXO2iLb3VOm2y -HLtgwEZLAfVJrn5GitB0jaEMAs7u/OePuGtm839EAL9mJRQr3RAwHQeWP032a7iP -t3sMpTjr3kfb1V05/Iin89cqdPHoWqI7n1C6poxFNcJQZZXcY4Lv3b93TZxiyWNz -FtApD0mpSPCzqrdsxacwOUBdrsTiXSZT8M4cIwhhqJQZugRiQOwfOHB3EgZxpzAY -XSUnpQIDAQABo4GlMIGiMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/ -MB0GA1UdDgQWBBS2CHsNesysIEyGVjJez6tuhS1wVzA/BgNVHR8EODA2MDSgMqAw -hi5odHRwOi8vd3d3Mi5wdWJsaWMtdHJ1c3QuY29tL2NybC9jdC9jdHJvb3QuY3Js -MB8GA1UdIwQYMBaAFLYIew16zKwgTIZWMl7Pq26FLXBXMA0GCSqGSIb3DQEBBQUA -A4IBAQBW7wojoFROlZfJ+InaRcHUowAl9B8Tq7ejhVhpwjCt2BWKLePJzYFa+HMj -Wqd8BfP9IjsO0QbE2zZMcwSO5bAi5MXzLqXZI+O4Tkogp24CJJ8iYGd7ix1yCcUx -XOl5n4BHPa2hCwcUPUf/A2kaDAtE52Mlp3+yybh2hO0j9n0Hq0V+09+zv+mKts2o -omcrUtW3ZfA5TGOgkXmTUg9U3YO7n9GPp1Nzw8v/MOx8BLjYRB+TX3EJIrduPuoc -A06dGiBh+4E37F78CkWr1+cXVdCg6mCbpvbjjFspwgZgFJ0tl0ypkxWdYcQBX0jW -WL1WMRJOEcgh4LMRkWXbtKaIOM5V ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/D-TRUSTRootClass3CA22009.crt b/test/rules/platform_certs/default/D-TRUSTRootClass3CA22009.crt deleted file mode 100644 index d8e4fab3bc2f..000000000000 --- a/test/rules/platform_certs/default/D-TRUSTRootClass3CA22009.crt +++ /dev/null @@ -1,25 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEMzCCAxugAwIBAgIDCYPzMA0GCSqGSIb3DQEBCwUAME0xCzAJBgNVBAYTAkRF -MRUwEwYDVQQKDAxELVRydXN0IEdtYkgxJzAlBgNVBAMMHkQtVFJVU1QgUm9vdCBD -bGFzcyAzIENBIDIgMjAwOTAeFw0wOTExMDUwODM1NThaFw0yOTExMDUwODM1NTha -ME0xCzAJBgNVBAYTAkRFMRUwEwYDVQQKDAxELVRydXN0IEdtYkgxJzAlBgNVBAMM -HkQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgMjAwOTCCASIwDQYJKoZIhvcNAQEB -BQADggEPADCCAQoCggEBANOySs96R+91myP6Oi/WUEWJNTrGa9v+2wBoqOADER03 -UAifTUpolDWzU9GUY6cgVq/eUXjsKj3zSEhQPgrfRlWLJ23DEE0NkVJD2IfgXU42 -tSHKXzlABF9bfsyjxiupQB7ZNoTWSPOSHjRGICTBpFGOShrvUD9pXRl/RcPHAY9R -ySPocq60vFYJfxLLHLGvKZAKyVXMD9O0Gu1HNVpK7ZxzBCHQqr0ME7UAyiZsxGsM -lFqVlNpQmvH/pStmMaTJOKDfHR+4CS7zp+hnUquVH+BGPtikw8paxTGA6Eian5Rp -/hnd2HN8gcqW3o7tszIFZYQ05ub9VxC1X3a/L7AQDcUCAwEAAaOCARowggEWMA8G -A1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFP3aFMSfMN4hvR5COfyrYyNJ4PGEMA4G -A1UdDwEB/wQEAwIBBjCB0wYDVR0fBIHLMIHIMIGAoH6gfIZ6bGRhcDovL2RpcmVj -dG9yeS5kLXRydXN0Lm5ldC9DTj1ELVRSVVNUJTIwUm9vdCUyMENsYXNzJTIwMyUy -MENBJTIwMiUyMDIwMDksTz1ELVRydXN0JTIwR21iSCxDPURFP2NlcnRpZmljYXRl -cmV2b2NhdGlvbmxpc3QwQ6BBoD+GPWh0dHA6Ly93d3cuZC10cnVzdC5uZXQvY3Js -L2QtdHJ1c3Rfcm9vdF9jbGFzc18zX2NhXzJfMjAwOS5jcmwwDQYJKoZIhvcNAQEL -BQADggEBAH+X2zDI36ScfSF6gHDOFBJpiBSVYEQBrLLpME+bUMJm2H6NMLVwMeni -acfzcNsgFYbQDfC+rAF1hM5+n02/t2A7nPPKHeJeaNijnZflQGDSNiH+0LS4F9p0 -o3/U37CYAqxva2ssJSRyoWXuJVrl5jLn8t+rSfrzkGkj2wTZ51xY/GXUl77M/C4K -zCUqNQT4YJEVdT1B/yMfGchs64JTBKbkTCJNjYy6zltz7GRUUG3RnFX7acM2w4y8 -PIWmawomDeCTmGCufsYkl4phX5GOZpIJhzbNi5stPvZR1FDUWSi9g/LMKHtThm3Y -Johw1+qRzT65ysCQblrGXnRl11z+o+I= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/D-TRUSTRootClass3CA2EV2009.crt b/test/rules/platform_certs/default/D-TRUSTRootClass3CA2EV2009.crt deleted file mode 100644 index 95a7bff737b6..000000000000 --- a/test/rules/platform_certs/default/D-TRUSTRootClass3CA2EV2009.crt +++ /dev/null @@ -1,25 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEQzCCAyugAwIBAgIDCYP0MA0GCSqGSIb3DQEBCwUAMFAxCzAJBgNVBAYTAkRF -MRUwEwYDVQQKDAxELVRydXN0IEdtYkgxKjAoBgNVBAMMIUQtVFJVU1QgUm9vdCBD -bGFzcyAzIENBIDIgRVYgMjAwOTAeFw0wOTExMDUwODUwNDZaFw0yOTExMDUwODUw -NDZaMFAxCzAJBgNVBAYTAkRFMRUwEwYDVQQKDAxELVRydXN0IEdtYkgxKjAoBgNV -BAMMIUQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgRVYgMjAwOTCCASIwDQYJKoZI -hvcNAQEBBQADggEPADCCAQoCggEBAJnxhDRwui+3MKCOvXwEz75ivJn9gpfSegpn -ljgJ9hBOlSJzmY3aFS3nBfwZcyK3jpgAvDw9rKFs+9Z5JUut8Mxk2og+KbgPCdM0 -3TP1YtHhzRnp7hhPTFiu4h7WDFsVWtg6uMQYZB7jM7K1iXdODL/ZlGsTl28So/6Z -qQTMFexgaDbtCHu39b+T7WYxg4zGcTSHThfqr4uRjRxWQa4iN1438h3Z0S0NL2lR -p75mpoo6Kr3HGrHhFPC+Oh25z1uxav60sUYgovseO3Dvk5h9jHOW8sXvhXCtKSb8 -HgQ+HKDYD8tSg2J87otTlZCpV6LqYQXY+U3EJ/pure3511H3a6UCAwEAAaOCASQw -ggEgMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFNOUikxiEyoZLsyvcop9Ntea -HNxnMA4GA1UdDwEB/wQEAwIBBjCB3QYDVR0fBIHVMIHSMIGHoIGEoIGBhn9sZGFw -Oi8vZGlyZWN0b3J5LmQtdHJ1c3QubmV0L0NOPUQtVFJVU1QlMjBSb290JTIwQ2xh -c3MlMjAzJTIwQ0ElMjAyJTIwRVYlMjAyMDA5LE89RC1UcnVzdCUyMEdtYkgsQz1E -RT9jZXJ0aWZpY2F0ZXJldm9jYXRpb25saXN0MEagRKBChkBodHRwOi8vd3d3LmQt -dHJ1c3QubmV0L2NybC9kLXRydXN0X3Jvb3RfY2xhc3NfM19jYV8yX2V2XzIwMDku -Y3JsMA0GCSqGSIb3DQEBCwUAA4IBAQA07XtaPKSUiO8aEXUHL7P+PPoeUSbrh/Yp -3uDx1MYkCenBz1UbtDDZzhr+BlGmFaQt77JLvyAoJUnRpjZ3NOhk31KxEcdzes05 -nsKtjHEh8lprr988TlWvsoRlFIm5d8sqMb7Po23Pb0iUMkZv53GMoKaEGTcH8gNF -CSuGdXzfX2lXANtu2KZyIktQ1HWYVt+3GP9DQ1CuekR78HlR10M9p9OB0/DJT7na -xpeG0ILD5EJt/rDiZE4OJudANCa1CInXCGNjOCd1HjPqbqjdn5lPdE2BiYBL3ZqX -KVwvvoFBuYz/6n1gBp7N1z3TLqMVvKjmJuVvw9y4AyHqnxbxLFS1 ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/DSTACESCAX6.crt b/test/rules/platform_certs/default/DSTACESCAX6.crt deleted file mode 100644 index 6e13a319ef35..000000000000 --- a/test/rules/platform_certs/default/DSTACESCAX6.crt +++ /dev/null @@ -1,24 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIECTCCAvGgAwIBAgIQDV6ZCtadt3js2AdWO4YV2TANBgkqhkiG9w0BAQUFADBb -MQswCQYDVQQGEwJVUzEgMB4GA1UEChMXRGlnaXRhbCBTaWduYXR1cmUgVHJ1c3Qx -ETAPBgNVBAsTCERTVCBBQ0VTMRcwFQYDVQQDEw5EU1QgQUNFUyBDQSBYNjAeFw0w -MzExMjAyMTE5NThaFw0xNzExMjAyMTE5NThaMFsxCzAJBgNVBAYTAlVTMSAwHgYD -VQQKExdEaWdpdGFsIFNpZ25hdHVyZSBUcnVzdDERMA8GA1UECxMIRFNUIEFDRVMx -FzAVBgNVBAMTDkRTVCBBQ0VTIENBIFg2MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A -MIIBCgKCAQEAuT31LMmU3HWKlV1j6IR3dma5WZFcRt2SPp/5DgO0PWGSvSMmtWPu -ktKe1jzIDZBfZIGxqAgNTNj50wUoUrQBJcWVHAx+PhCEdc/BGZFjz+iokYi5Q1K7 -gLFViYsx+tC3dr5BPTCapCIlF3PoHuLTrCq9Wzgh1SpL11V94zpVvddtawJXa+ZH -fAjIgrrep4c9oW24MFbCswKBXy314powGCi4ZtPLAZZv6opFVdbgnf9nKxcCpk4a -ahELfrd755jWjHZvwTvbUJN+5dCOHze4vbrGn2zpfDPyMjwmR/onJALJfh1biEIT -ajV8fTXpLmaRcpPVMibEdPVTo7NdmvYJywIDAQABo4HIMIHFMA8GA1UdEwEB/wQF -MAMBAf8wDgYDVR0PAQH/BAQDAgHGMB8GA1UdEQQYMBaBFHBraS1vcHNAdHJ1c3Rk -c3QuY29tMGIGA1UdIARbMFkwVwYKYIZIAWUDAgEBATBJMEcGCCsGAQUFBwIBFjto -dHRwOi8vd3d3LnRydXN0ZHN0LmNvbS9jZXJ0aWZpY2F0ZXMvcG9saWN5L0FDRVMt -aW5kZXguaHRtbDAdBgNVHQ4EFgQUCXIGThhDD+XWzMNqizF7eI+og7gwDQYJKoZI -hvcNAQEFBQADggEBAKPYjtay284F5zLNAdMEA+V25FYrnJmQ6AgwbN99Pe7lv7Uk -QIRJ4dEorsTCOlMwiPH1d25Ryvr/ma8kXxug/fKshMrfqfBfBC6tFr8hlxCBPeP/ -h40y3JTlR4peahPJlJU90u7INJXQgNStMgiAVDzgvVJT11J8smk/f3rPanTK+gQq -nExaBqXpIK1FZg9p8d2/6eMyi/rgwYZNcjwu2JN4Cir42NInPRmJX1p7ijvMDNpR -rscL9yuwNwXsvFcj4jjSm2jzVhKIT0J8uDHEtdvkyCE06UgRNe76x5JXxZ805Mf2 -9w4LTJxoeHtxMcfrHuBnQfO3oKfN5XozNmr6mis= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/DSTRootCAX3.crt b/test/rules/platform_certs/default/DSTRootCAX3.crt deleted file mode 100644 index ea08d57a29af..000000000000 --- a/test/rules/platform_certs/default/DSTRootCAX3.crt +++ /dev/null @@ -1,20 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDSjCCAjKgAwIBAgIQRK+wgNajJ7qJMDmGLvhAazANBgkqhkiG9w0BAQUFADA/ -MSQwIgYDVQQKExtEaWdpdGFsIFNpZ25hdHVyZSBUcnVzdCBDby4xFzAVBgNVBAMT -DkRTVCBSb290IENBIFgzMB4XDTAwMDkzMDIxMTIxOVoXDTIxMDkzMDE0MDExNVow -PzEkMCIGA1UEChMbRGlnaXRhbCBTaWduYXR1cmUgVHJ1c3QgQ28uMRcwFQYDVQQD -Ew5EU1QgUm9vdCBDQSBYMzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB -AN+v6ZdQCINXtMxiZfaQguzH0yxrMMpb7NnDfcdAwRgUi+DoM3ZJKuM/IUmTrE4O -rz5Iy2Xu/NMhD2XSKtkyj4zl93ewEnu1lcCJo6m67XMuegwGMoOifooUMM0RoOEq -OLl5CjH9UL2AZd+3UWODyOKIYepLYYHsUmu5ouJLGiifSKOeDNoJjj4XLh7dIN9b -xiqKqy69cK3FCxolkHRyxXtqqzTWMIn/5WgTe1QLyNau7Fqckh49ZLOMxt+/yUFw -7BZy1SbsOFU5Q9D8/RhcQPGX69Wam40dutolucbY38EVAjqr2m7xPi71XAicPNaD -aeQQmxkqtilX4+U9m5/wAl0CAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNV -HQ8BAf8EBAMCAQYwHQYDVR0OBBYEFMSnsaR7LHH62+FLkHX/xBVghYkQMA0GCSqG -SIb3DQEBBQUAA4IBAQCjGiybFwBcqR7uKGY3Or+Dxz9LwwmglSBd49lZRNI+DT69 -ikugdB/OEIKcdBodfpga3csTS7MgROSR6cz8faXbauX+5v3gTt23ADq1cEmv8uXr -AvHRAosZy5Q6XkjEGB5YGV8eAlrwDPGxrancWYaLbumR9YbK+rlmM6pZW87ipxZz -R8srzJmwN0jP41ZL9c8PDHIyh8bwRLtTcm1D9SZImlJnt1ir/md2cXjbDaJWFBM5 -JDGFoqgCWjBH4d1QB7wCCZAA62RjYJsWvIjJEubSfZGL+T0yjWW06XyxV3bqxbYo -Ob8VZRzI9neWagqNdwvYkQsEjgfbKbYK7p2CNTUQ ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/DeutscheTelekomRootCA2.crt b/test/rules/platform_certs/default/DeutscheTelekomRootCA2.crt deleted file mode 100644 index b841079db36f..000000000000 --- a/test/rules/platform_certs/default/DeutscheTelekomRootCA2.crt +++ /dev/null @@ -1,22 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDnzCCAoegAwIBAgIBJjANBgkqhkiG9w0BAQUFADBxMQswCQYDVQQGEwJERTEc -MBoGA1UEChMTRGV1dHNjaGUgVGVsZWtvbSBBRzEfMB0GA1UECxMWVC1UZWxlU2Vj -IFRydXN0IENlbnRlcjEjMCEGA1UEAxMaRGV1dHNjaGUgVGVsZWtvbSBSb290IENB -IDIwHhcNOTkwNzA5MTIxMTAwWhcNMTkwNzA5MjM1OTAwWjBxMQswCQYDVQQGEwJE -RTEcMBoGA1UEChMTRGV1dHNjaGUgVGVsZWtvbSBBRzEfMB0GA1UECxMWVC1UZWxl -U2VjIFRydXN0IENlbnRlcjEjMCEGA1UEAxMaRGV1dHNjaGUgVGVsZWtvbSBSb290 -IENBIDIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCrC6M14IspFLEU -ha88EOQ5bzVdSq7d6mGNlUn0b2SjGmBmpKlAIoTZ1KXleJMOaAGtuU1cOs7TuKhC -QN/Po7qCWWqSG6wcmtoIKyUn+WkjR/Hg6yx6m/UTAtB+NHzCnjwAWav12gz1Mjwr -rFDa1sPeg5TKqAyZMg4ISFZbavva4VhYAUlfckE8FQYBjl2tqriTtM2e66foai1S -NNs671x1Udrb8zH57nGYMsRUFUQM+ZtV7a3fGAigo4aKSe5TBY8ZTNXeWHmb0moc -QqvF1afPaA+W5OFhmHZhyJF81j4A4pFQh+GdCuatl9Idxjp9y7zaAzTVjlsB9WoH -txa2bkp/AgMBAAGjQjBAMB0GA1UdDgQWBBQxw3kbuvVT1xfgiXotF2wKsyudMzAP -BgNVHRMECDAGAQH/AgEFMA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQUFAAOC -AQEAlGRZrTlk5ynrE/5aw4sTV8gEJPB0d8Bg42f76Ymmg7+Wgnxu1MM9756Abrsp -tJh6sTtU6zkXR34ajgv8HzFZMQSyzhfzLMdiNlXiItiJVbSYSKpk+tYcNthEeFpa -IzpXl/V6ME+un2pMSyuOoAPjPuCp1NJ70rOo4nI8rZ7/gFnkm0W09juwzTkZmDLl -6iFhkOQxIY40sfcvNUqFENrnijchvllj4PKFiDFT1FQUhXB59C4Gdyd1Lx+4ivn+ -xbrYNuSD7Odlt79jWvNGr4GUN9RBjNYj1h7P9WgbRGOiWrqnNVmh5XAFmw4jV5mU -Cm26OWMohpLzGITY+9HPBVZkVw== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/DigiCertAssuredIDRootCA.crt b/test/rules/platform_certs/default/DigiCertAssuredIDRootCA.crt deleted file mode 100644 index eb187336a1e0..000000000000 --- a/test/rules/platform_certs/default/DigiCertAssuredIDRootCA.crt +++ /dev/null @@ -1,22 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDtzCCAp+gAwIBAgIQDOfg5RfYRv6P5WD8G/AwOTANBgkqhkiG9w0BAQUFADBl -MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 -d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJv -b3QgQ0EwHhcNMDYxMTEwMDAwMDAwWhcNMzExMTEwMDAwMDAwWjBlMQswCQYDVQQG -EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNl -cnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgQ0EwggEi -MA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCtDhXO5EOAXLGH87dg+XESpa7c -JpSIqvTO9SA5KFhgDPiA2qkVlTJhPLWxKISKityfCgyDF3qPkKyK53lTXDGEKvYP -mDI2dsze3Tyoou9q+yHyUmHfnyDXH+Kx2f4YZNISW1/5WBg1vEfNoTb5a3/UsDg+ -wRvDjDPZ2C8Y/igPs6eD1sNuRMBhNZYW/lmci3Zt1/GiSw0r/wty2p5g0I6QNcZ4 -VYcgoc/lbQrISXwxmDNsIumH0DJaoroTghHtORedmTpyoeb6pNnVFzF1roV9Iq4/ -AUaG9ih5yLHa5FcXxH4cDrC0kqZWs72yl+2qp/C3xag/lRbQ/6GW6whfGHdPAgMB -AAGjYzBhMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQW -BBRF66Kv9JLLgjEtUYunpyGd823IDzAfBgNVHSMEGDAWgBRF66Kv9JLLgjEtUYun -pyGd823IDzANBgkqhkiG9w0BAQUFAAOCAQEAog683+Lt8ONyc3pklL/3cmbYMuRC -dWKuh+vy1dneVrOfzM4UKLkNl2BcEkxY5NM9g0lFWJc1aRqoR+pWxnmrEthngYTf -fwk8lOa4JiwgvT2zKIn3X/8i4peEH+ll74fg38FnSbNd67IJKusm7Xi+fT8r87cm -NW1fiQG2SVufAQWbqz0lwcy2f8Lxb4bG+mRo64EtlOtCt/qMHt1i8b5QZ7dsvfPx -H2sMNgcWfzd8qVttevESRmCD1ycEvkvOl77DZypoEd+A5wwzZr8TDRRu838fYxAe -+o0bJW1sj6W3YQGx0qMmoRBxna3iw/nDmVG3KwcIzi7mULKn+gpFL6Lw8g== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/DigiCertAssuredIDRootG2.crt b/test/rules/platform_certs/default/DigiCertAssuredIDRootG2.crt deleted file mode 100644 index ce440b875f4d..000000000000 --- a/test/rules/platform_certs/default/DigiCertAssuredIDRootG2.crt +++ /dev/null @@ -1,22 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDljCCAn6gAwIBAgIQC5McOtY5Z+pnI7/Dr5r0SzANBgkqhkiG9w0BAQsFADBl -MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 -d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJv -b3QgRzIwHhcNMTMwODAxMTIwMDAwWhcNMzgwMTE1MTIwMDAwWjBlMQswCQYDVQQG -EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNl -cnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzIwggEi -MA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDZ5ygvUj82ckmIkzTz+GoeMVSA -n61UQbVH35ao1K+ALbkKz3X9iaV9JPrjIgwrvJUXCzO/GU1BBpAAvQxNEP4Htecc -biJVMWWXvdMX0h5i89vqbFCMP4QMls+3ywPgym2hFEwbid3tALBSfK+RbLE4E9Hp -EgjAALAcKxHad3A2m67OeYfcgnDmCXRwVWmvo2ifv922ebPynXApVfSr/5Vh88lA -bx3RvpO704gqu52/clpWcTs/1PPRCv4o76Pu2ZmvA9OPYLfykqGxvYmJHzDNw6Yu -YjOuFgJ3RFrngQo8p0Quebg/BLxcoIfhG69Rjs3sLPr4/m3wOnyqi+RnlTGNAgMB -AAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQW -BBTOw0q5mVXyuNtgv6l+vVa1lzan1jANBgkqhkiG9w0BAQsFAAOCAQEAyqVVjOPI -QW5pJ6d1Ee88hjZv0p3GeDgdaZaikmkuOGybfQTUiaWxMTeKySHMq2zNixya1r9I -0jJmwYrA8y8678Dj1JGG0VDjA9tzd29KOVPt3ibHtX2vK0LRdWLjSisCx1BL4Gni -lmwORGYQRI+tBev4eaymG+g3NJ1TyWGqolKvSnAWhsI6yLETcDbYz+70CjTVW0z9 -B5yiutkBclzzTcHdDrEcDcRjvq30FPuJ7KJBDkzMyFdA0G4Dqs0MjomZmWzwPDCv -ON9vvKO+KSAnq3T/EyJ43pdSVR6DtVQgA+6uwE9W3jfMw3+qBCe703e4YtsXfJwo -IhNzbM8m9Yop5w== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/DigiCertAssuredIDRootG3.crt b/test/rules/platform_certs/default/DigiCertAssuredIDRootG3.crt deleted file mode 100644 index 77ef563f4660..000000000000 --- a/test/rules/platform_certs/default/DigiCertAssuredIDRootG3.crt +++ /dev/null @@ -1,15 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICRjCCAc2gAwIBAgIQC6Fa+h3foLVJRK/NJKBs7DAKBggqhkjOPQQDAzBlMQsw -CQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cu -ZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3Qg -RzMwHhcNMTMwODAxMTIwMDAwWhcNMzgwMTE1MTIwMDAwWjBlMQswCQYDVQQGEwJV -UzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQu -Y29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzMwdjAQBgcq -hkjOPQIBBgUrgQQAIgNiAAQZ57ysRGXtzbg/WPuNsVepRC0FFfLvC/8QdJ+1YlJf -Zn4f5dwbRXkLzMZTCp2NXQLZqVneAlr2lSoOjThKiknGvMYDOAdfVdp+CW7if17Q -RSAPWXYQ1qAk8C3eNvJsKTmjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/ -BAQDAgGGMB0GA1UdDgQWBBTL0L2p4ZgFUaFNN6KDec6NHSrkhDAKBggqhkjOPQQD -AwNnADBkAjAlpIFFAmsSS3V0T8gj43DydXLefInwz5FyYZ5eEJJZVrmDxxDnOOlY -JjZ91eQ0hjkCMHw2U/Aw5WJjOpnitqM7mzT6HtoQknFekROn3aRukswy1vUhZscv -6pZjamVFkpUBtA== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/DigiCertGlobalRootCA.crt b/test/rules/platform_certs/default/DigiCertGlobalRootCA.crt deleted file mode 100644 index 342ecfe41055..000000000000 --- a/test/rules/platform_certs/default/DigiCertGlobalRootCA.crt +++ /dev/null @@ -1,22 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDrzCCApegAwIBAgIQCDvgVpBCRrGhdWrJWZHHSjANBgkqhkiG9w0BAQUFADBh -MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 -d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBD -QTAeFw0wNjExMTAwMDAwMDBaFw0zMTExMTAwMDAwMDBaMGExCzAJBgNVBAYTAlVT -MRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5j -b20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IENBMIIBIjANBgkqhkiG -9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4jvhEXLeqKTTo1eqUKKPC3eQyaKl7hLOllsB -CSDMAZOnTjC3U/dDxGkAV53ijSLdhwZAAIEJzs4bg7/fzTtxRuLWZscFs3YnFo97 -nh6Vfe63SKMI2tavegw5BmV/Sl0fvBf4q77uKNd0f3p4mVmFaG5cIzJLv07A6Fpt -43C/dxC//AH2hdmoRBBYMql1GNXRor5H4idq9Joz+EkIYIvUX7Q6hL+hqkpMfT7P -T19sdl6gSzeRntwi5m3OFBqOasv+zbMUZBfHWymeMr/y7vrTC0LUq7dBMtoM1O/4 -gdW7jVg/tRvoSSiicNoxBN33shbyTApOB6jtSj1etX+jkMOvJwIDAQABo2MwYTAO -BgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUA95QNVbR -TLtm8KPiGxvDl7I90VUwHwYDVR0jBBgwFoAUA95QNVbRTLtm8KPiGxvDl7I90VUw -DQYJKoZIhvcNAQEFBQADggEBAMucN6pIExIK+t1EnE9SsPTfrgT1eXkIoyQY/Esr -hMAtudXH/vTBH1jLuG2cenTnmCmrEbXjcKChzUyImZOMkXDiqw8cvpOp/2PV5Adg -06O/nVsJ8dWO41P0jmP6P6fbtGbfYmbW0W5BjfIttep3Sp+dWOIrWcBAI+0tKIJF -PnlUkiaY4IBIqDfv8NZ5YBberOgOzW6sRBc4L0na4UU+Krk2U886UAb3LujEV0ls -YSEY1QSteDwsOoBrp+uvFRTp2InBuThs4pFsiv9kuXclVzDAGySj4dzp30d8tbQk -CAUw7C29C79Fv1C5qfPrmAESrciIxpg0X40KPMbp1ZWVbd4= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/DigiCertGlobalRootG2.crt b/test/rules/platform_certs/default/DigiCertGlobalRootG2.crt deleted file mode 100644 index 3188acc7d6ea..000000000000 --- a/test/rules/platform_certs/default/DigiCertGlobalRootG2.crt +++ /dev/null @@ -1,22 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDjjCCAnagAwIBAgIQAzrx5qcRqaC7KGSxHQn65TANBgkqhkiG9w0BAQsFADBh -MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 -d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH -MjAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAwMDBaMGExCzAJBgNVBAYTAlVT -MRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5j -b20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcyMIIBIjANBgkqhkiG -9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/RrohCgiN9RlUyfuI -2/Ou8jqJkTx65qsGGmvPrC3oXgkkRLpimn7Wo6h+4FR1IAWsULecYxpsMNzaHxmx -1x7e/dfgy5SDN67sH0NO3Xss0r0upS/kqbitOtSZpLYl6ZtrAGCSYP9PIUkY92eQ -q2EGnI/yuum06ZIya7XzV+hdG82MHauVBJVJ8zUtluNJbd134/tJS7SsVQepj5Wz -tCO7TG1F8PapspUwtP1MVYwnSlcUfIKdzXOS0xZKBgyMUNGPHgm+F6HmIcr9g+UQ -vIOlCsRnKPZzFBQ9RnbDhxSJITRNrw9FDKZJobq7nMWxM4MphQIDAQABo0IwQDAP -BgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUTiJUIBiV -5uNu5g/6+rkS7QYXjzkwDQYJKoZIhvcNAQELBQADggEBAGBnKJRvDkhj6zHd6mcY -1Yl9PMWLSn/pvtsrF9+wX3N3KjITOYFnQoQj8kVnNeyIv/iPsGEMNKSuIEyExtv4 -NeF22d+mQrvHRAiGfzZ0JFrabA0UWTW98kndth/Jsw1HKj2ZL7tcu7XUIOGZX1NG -Fdtom/DzMNU+MeKNhJ7jitralj41E6Vf8PlwUHBHQRFXGU7Aj64GxJUTFy8bJZ91 -8rGOmaFvE7FBcf6IKshPECBV1/MUReXgRPTqh5Uykw7+U0b6LJ3/iyK5S9kJRaTe -pLiaWN0bfVKfjllDiIGknibVb63dDcY3fe0Dkhvld1927jyNxF1WW6LZZm6zNTfl -MrY= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/DigiCertGlobalRootG3.crt b/test/rules/platform_certs/default/DigiCertGlobalRootG3.crt deleted file mode 100644 index 8b2ac1c4df72..000000000000 --- a/test/rules/platform_certs/default/DigiCertGlobalRootG3.crt +++ /dev/null @@ -1,15 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICPzCCAcWgAwIBAgIQBVVWvPJepDU1w6QP1atFcjAKBggqhkjOPQQDAzBhMQsw -CQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cu -ZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAe -Fw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAwMDBaMGExCzAJBgNVBAYTAlVTMRUw -EwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20x -IDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEczMHYwEAYHKoZIzj0CAQYF -K4EEACIDYgAE3afZu4q4C/sLfyHS8L6+c/MzXRq8NOrexpu80JX28MzQC7phW1FG -fp4tn+6OYwwX7Adw9c+ELkCDnOg/QW07rdOkFFk2eJ0DQ+4QE2xy3q6Ip6FrtUPO -Z9wj/wMco+I+o0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAd -BgNVHQ4EFgQUs9tIpPmhxdiuNkHMEWNpYim8S8YwCgYIKoZIzj0EAwMDaAAwZQIx -AK288mw/EkrRLTnDCgmXc/SINoyIJ7vmiI1Qhadj+Z4y3maTD/HMsQmP3Wyr+mt/ -oAIwOWZbwmSNuJ5Q3KjVSaLtx9zRSX8XAbjIho9OjIgrqJqpisXRAL34VOKa5Vt8 -sycX ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/DigiCertHighAssuranceEVRootCA.crt b/test/rules/platform_certs/default/DigiCertHighAssuranceEVRootCA.crt deleted file mode 100644 index 4b1bc66be0f7..000000000000 --- a/test/rules/platform_certs/default/DigiCertHighAssuranceEVRootCA.crt +++ /dev/null @@ -1,23 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDxTCCAq2gAwIBAgIQAqxcJmoLQJuPC3nyrkYldzANBgkqhkiG9w0BAQUFADBs -MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 -d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5j -ZSBFViBSb290IENBMB4XDTA2MTExMDAwMDAwMFoXDTMxMTExMDAwMDAwMFowbDEL -MAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3 -LmRpZ2ljZXJ0LmNvbTErMCkGA1UEAxMiRGlnaUNlcnQgSGlnaCBBc3N1cmFuY2Ug -RVYgUm9vdCBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMbM5XPm -+9S75S0tMqbf5YE/yc0lSbZxKsPVlDRnogocsF9ppkCxxLeyj9CYpKlBWTrT3JTW -PNt0OKRKzE0lgvdKpVMSOO7zSW1xkX5jtqumX8OkhPhPYlG++MXs2ziS4wblCJEM -xChBVfvLWokVfnHoNb9Ncgk9vjo4UFt3MRuNs8ckRZqnrG0AFFoEt7oT61EKmEFB -Ik5lYYeBQVCmeVyJ3hlKV9Uu5l0cUyx+mM0aBhakaHPQNAQTXKFx01p8VdteZOE3 -hzBWBOURtCmAEvF5OYiiAhF8J2a3iLd48soKqDirCmTCv2ZdlYTBoSUeh10aUAsg -EsxBu24LUTi4S8sCAwEAAaNjMGEwDgYDVR0PAQH/BAQDAgGGMA8GA1UdEwEB/wQF -MAMBAf8wHQYDVR0OBBYEFLE+w2kD+L9HAdSYJhoIAu9jZCvDMB8GA1UdIwQYMBaA -FLE+w2kD+L9HAdSYJhoIAu9jZCvDMA0GCSqGSIb3DQEBBQUAA4IBAQAcGgaX3Nec -nzyIZgYIVyHbIUf4KmeqvxgydkAQV8GK83rZEWWONfqe/EW1ntlMMUu4kehDLI6z -eM7b41N5cdblIZQB2lWHmiRk9opmzN6cN82oNLFpmyPInngiK3BD41VHMWEZ71jF -hS9OMPagMRYjyOfiZRYzy78aG6A9+MpeizGLYAiJLQwGXFK3xPkKmNEVX58Svnw2 -Yzi9RKR/5CYrCsSXaQ3pjOLAEFe4yHYSkVXySGnYvCoCWw9E1CAx2/S6cCZdkGCe -vEsXCS+0yx5DaMkHJ8HSXPfqIbloEpw8nL+e/IBcm2PN7EeqJSdnoDfzAIJ9VNep -+OkuE6N36B9K ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/DigiCertSHA2ExtendedValidationServerCA.crt b/test/rules/platform_certs/default/DigiCertSHA2ExtendedValidationServerCA.crt deleted file mode 100644 index b6013e6791fc..000000000000 --- a/test/rules/platform_certs/default/DigiCertSHA2ExtendedValidationServerCA.crt +++ /dev/null @@ -1,28 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEtjCCA56gAwIBAgIQDHmpRLCMEZUgkmFf4msdgzANBgkqhkiG9w0BAQsFADBs -MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 -d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5j -ZSBFViBSb290IENBMB4XDTEzMTAyMjEyMDAwMFoXDTI4MTAyMjEyMDAwMFowdTEL -MAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3 -LmRpZ2ljZXJ0LmNvbTE0MDIGA1UEAxMrRGlnaUNlcnQgU0hBMiBFeHRlbmRlZCBW -YWxpZGF0aW9uIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC -ggEBANdTpARR+JmmFkhLZyeqk0nQOe0MsLAAh/FnKIaFjI5j2ryxQDji0/XspQUY -uD0+xZkXMuwYjPrxDKZkIYXLBxA0sFKIKx9om9KxjxKws9LniB8f7zh3VFNfgHk/ -LhqqqB5LKw2rt2O5Nbd9FLxZS99RStKh4gzikIKHaq7q12TWmFXo/a8aUGxUvBHy -/Urynbt/DvTVvo4WiRJV2MBxNO723C3sxIclho3YIeSwTQyJ3DkmF93215SF2AQh -cJ1vb/9cuhnhRctWVyh+HA1BV6q3uCe7seT6Ku8hI3UarS2bhjWMnHe1c63YlC3k -8wyd7sFOYn4XwHGeLN7x+RAoGTMCAwEAAaOCAUkwggFFMBIGA1UdEwEB/wQIMAYB -Af8CAQAwDgYDVR0PAQH/BAQDAgGGMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEF -BQcDAjA0BggrBgEFBQcBAQQoMCYwJAYIKwYBBQUHMAGGGGh0dHA6Ly9vY3NwLmRp -Z2ljZXJ0LmNvbTBLBgNVHR8ERDBCMECgPqA8hjpodHRwOi8vY3JsNC5kaWdpY2Vy -dC5jb20vRGlnaUNlcnRIaWdoQXNzdXJhbmNlRVZSb290Q0EuY3JsMD0GA1UdIAQ2 -MDQwMgYEVR0gADAqMCgGCCsGAQUFBwIBFhxodHRwczovL3d3dy5kaWdpY2VydC5j -b20vQ1BTMB0GA1UdDgQWBBQ901Cl1qCt7vNKYApl0yHU+PjWDzAfBgNVHSMEGDAW -gBSxPsNpA/i/RwHUmCYaCALvY2QrwzANBgkqhkiG9w0BAQsFAAOCAQEAnbbQkIbh -hgLtxaDwNBx0wY12zIYKqPBKikLWP8ipTa18CK3mtlC4ohpNiAexKSHc59rGPCHg -4xFJcKx6HQGkyhE6V6t9VypAdP3THYUYUN9XR3WhfVUgLkc3UHKMf4Ib0mKPLQNa -2sPIoc4sUqIAY+tzunHISScjl2SFnjgOrWNoPLpSgVh5oywM395t6zHyuqB8bPEs -1OG9d4Q3A84ytciagRpKkk47RpqF/oOi+Z6Mo8wNXrM9zwR4jxQUezKcxwCmXMS1 -oVWNWlZopCJwqjyBcdmdqEU79OX2olHdx3ti6G8MdOu42vi/hw15UJGQmxg7kVkn -8TUoE6smftX3eg== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/DigiCertSHA2SecureServerCA.crt b/test/rules/platform_certs/default/DigiCertSHA2SecureServerCA.crt deleted file mode 100644 index 22be53bea4b5..000000000000 --- a/test/rules/platform_certs/default/DigiCertSHA2SecureServerCA.crt +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIElDCCA3ygAwIBAgIQAf2j627KdciIQ4tyS8+8kTANBgkqhkiG9w0BAQsFADBh -MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 -d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBD -QTAeFw0xMzAzMDgxMjAwMDBaFw0yMzAzMDgxMjAwMDBaME0xCzAJBgNVBAYTAlVT -MRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRpZ2lDZXJ0IFNIQTIg -U2VjdXJlIFNlcnZlciBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB -ANyuWJBNwcQwFZA1W248ghX1LFy949v/cUP6ZCWA1O4Yok3wZtAKc24RmDYXZK83 -nf36QYSvx6+M/hpzTc8zl5CilodTgyu5pnVILR1WN3vaMTIa16yrBvSqXUu3R0bd -KpPDkC55gIDvEwRqFDu1m5K+wgdlTvza/P96rtxcflUxDOg5B6TXvi/TC2rSsd9f -/ld0Uzs1gN2ujkSYs58O09rg1/RrKatEp0tYhG2SS4HD2nOLEpdIkARFdRrdNzGX -kujNVA075ME/OV4uuPNcfhCOhkEAjUVmR7ChZc6gqikJTvOX6+guqw9ypzAO+sf0 -/RR3w6RbKFfCs/mC/bdFWJsCAwEAAaOCAVowggFWMBIGA1UdEwEB/wQIMAYBAf8C -AQAwDgYDVR0PAQH/BAQDAgGGMDQGCCsGAQUFBwEBBCgwJjAkBggrBgEFBQcwAYYY -aHR0cDovL29jc3AuZGlnaWNlcnQuY29tMHsGA1UdHwR0MHIwN6A1oDOGMWh0dHA6 -Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RDQS5jcmwwN6A1 -oDOGMWh0dHA6Ly9jcmw0LmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydEdsb2JhbFJvb3RD -QS5jcmwwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYIKwYBBQUHAgEWHGh0dHBzOi8v -d3d3LmRpZ2ljZXJ0LmNvbS9DUFMwHQYDVR0OBBYEFA+AYRyCMWHVLyjnjUY4tCzh -xtniMB8GA1UdIwQYMBaAFAPeUDVW0Uy7ZvCj4hsbw5eyPdFVMA0GCSqGSIb3DQEB -CwUAA4IBAQAjPt9L0jFCpbZ+QlwaRMxp0Wi0XUvgBCFsS+JtzLHgl4+mUwnNqipl -5TlPHoOlblyYoiQm5vuh7ZPHLgLGTUq/sELfeNqzqPlt/yGFUzZgTHbO7Djc1lGA -8MXW5dRNJ2Srm8c+cftIl7gzbckTB+6WohsYFfZcTEDts8Ls/3HB40f/1LkAtDdC -2iDJ6m6K7hQGrn2iWZiIqBtvLfTyyRRfJs8sjX7tN8Cp1Tm5gr8ZDOo0rwAhaPit -c+LJMto4JQtV05od8GiG7S5BNO98pVAdvzr508EIDObtHopYJeS4d60tbvVS3bR0 -j6tJLp07kzQoH3jOlOrHvdPJbRzeXDLz ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/DigiCertTrustedRootG4.crt b/test/rules/platform_certs/default/DigiCertTrustedRootG4.crt deleted file mode 100644 index 1a1e4fbc801e..000000000000 --- a/test/rules/platform_certs/default/DigiCertTrustedRootG4.crt +++ /dev/null @@ -1,32 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFkDCCA3igAwIBAgIQBZsbV56OITLiOQe9p3d1XDANBgkqhkiG9w0BAQwFADBi -MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 -d3cuZGlnaWNlcnQuY29tMSEwHwYDVQQDExhEaWdpQ2VydCBUcnVzdGVkIFJvb3Qg -RzQwHhcNMTMwODAxMTIwMDAwWhcNMzgwMTE1MTIwMDAwWjBiMQswCQYDVQQGEwJV -UzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQu -Y29tMSEwHwYDVQQDExhEaWdpQ2VydCBUcnVzdGVkIFJvb3QgRzQwggIiMA0GCSqG -SIb3DQEBAQUAA4ICDwAwggIKAoICAQC/5pBzaN675F1KPDAiMGkz7MKnJS7JIT3y -ithZwuEppz1Yq3aaza57G4QNxDAf8xukOBbrVsaXbR2rsnnyyhHS5F/WBTxSD1If -xp4VpX6+n6lXFllVcq9ok3DCsrp1mWpzMpTREEQQLt+C8weE5nQ7bXHiLQwb7iDV -ySAdYyktzuxeTsiT+CFhmzTrBcZe7FsavOvJz82sNEBfsXpm7nfISKhmV1efVFiO -DCu3T6cw2Vbuyntd463JT17lNecxy9qTXtyOj4DatpGYQJB5w3jHtrHEtWoYOAMQ -jdjUN6QuBX2I9YI+EJFwq1WCQTLX2wRzKm6RAXwhTNS8rhsDdV14Ztk6MUSaM0C/ -CNdaSaTC5qmgZ92kJ7yhTzm1EVgX9yRcRo9k98FpiHaYdj1ZXUJ2h4mXaXpI8OCi -EhtmmnTK3kse5w5jrubU75KSOp493ADkRSWJtppEGSt+wJS00mFt6zPZxd9LBADM -fRyVw4/3IbKyEbe7f/LVjHAsQWCqsWMYRJUadmJ+9oCw++hkpjPRiQfhvbfmQ6QY -uKZ3AeEPlAwhHbJUKSWJbOUOUlFHdL4mrLZBdd56rF+NP8m800ERElvlEFDrMcXK -chYiCd98THU/Y+whX8QgUWtvsauGi0/C1kVfnSD8oR7FwI+isX4KJpn15GkvmB0t -9dmpsh3lGwIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIB -hjAdBgNVHQ4EFgQU7NfjgtJxXWRM3y5nP+e6mK4cD08wDQYJKoZIhvcNAQEMBQAD -ggIBALth2X2pbL4XxJEbw6GiAI3jZGgPVs93rnD5/ZpKmbnJeFwMDF/k5hQpVgs2 -SV1EY+CtnJYYZhsjDT156W1r1lT40jzBQ0CuHVD1UvyQO7uYmWlrx8GnqGikJ9yd -+SeuMIW59mdNOj6PWTkiU0TryF0Dyu1Qen1iIQqAyHNm0aAFYF/opbSnr6j3bTWc -fFqK1qI4mfN4i/RN0iAL3gTujJtHgXINwBQy7zBZLq7gcfJW5GqXb5JQbZaNaHqa -sjYUegbyJLkJEVDXCLG4iXqEI2FCKeWjzaIgQdfRnGTZ6iahixTXTBmyUEFxPT9N -cCOGDErcgdLMMpSEDQgJlxxPwO5rIHQw0uA5NBCFIRUBCOhVMt5xSdkoF1BN5r5N -0XWs0Mr7QbhDparTwwVETyw2m+L64kW4I1NsBm9nVX9GtUw/bihaeSbSpKhil9Ie -4u1Ki7wb/UdKDd9nZn6yW0HQO+T0O/QEY+nvwlQAUaCKKsnOeMzV6ocEGLPOr0mI -r/OSmbaz5mEP0oUA51Aa5BuVnRmhuZyxm7EAHu/QD09CbMkKvO5D+jpxpchNJqU1 -/YldvIViHTLSoCtU7ZpXwdv6EM8Zt4tKG48BtieVU+i2iW1bvGjUI+iLUaJW+fCm -gKDWHrO8Dw9TdSmq6hN35N6MgSGtBxBHEa2HPQfRdbzP82Z+ ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/E-TugraCertificationAuthority.crt b/test/rules/platform_certs/default/E-TugraCertificationAuthority.crt deleted file mode 100644 index 5696e22513bb..000000000000 --- a/test/rules/platform_certs/default/E-TugraCertificationAuthority.crt +++ /dev/null @@ -1,36 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIGSzCCBDOgAwIBAgIIamg+nFGby1MwDQYJKoZIhvcNAQELBQAwgbIxCzAJBgNV -BAYTAlRSMQ8wDQYDVQQHDAZBbmthcmExQDA+BgNVBAoMN0UtVHXEn3JhIEVCRyBC -aWxpxZ9pbSBUZWtub2xvamlsZXJpIHZlIEhpem1ldGxlcmkgQS7Fni4xJjAkBgNV -BAsMHUUtVHVncmEgU2VydGlmaWthc3lvbiBNZXJrZXppMSgwJgYDVQQDDB9FLVR1 -Z3JhIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTEzMDMwNTEyMDk0OFoXDTIz -MDMwMzEyMDk0OFowgbIxCzAJBgNVBAYTAlRSMQ8wDQYDVQQHDAZBbmthcmExQDA+ -BgNVBAoMN0UtVHXEn3JhIEVCRyBCaWxpxZ9pbSBUZWtub2xvamlsZXJpIHZlIEhp -em1ldGxlcmkgQS7Fni4xJjAkBgNVBAsMHUUtVHVncmEgU2VydGlmaWthc3lvbiBN -ZXJrZXppMSgwJgYDVQQDDB9FLVR1Z3JhIENlcnRpZmljYXRpb24gQXV0aG9yaXR5 -MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA4vU/kwVRHoViVF56C/UY -B4Oufq9899SKa6VjQzm5S/fDxmSJPZQuVIBSOTkHS0vdhQd2h8y/L5VMzH2nPbxH -D5hw+IyFHnSOkm0bQNGZDbt1bsipa5rAhDGvykPL6ys06I+XawGb1Q5KCKpbknSF -Q9OArqGIW66z6l7LFpp3RMih9lRozt6Plyu6W0ACDGQXwLWTzeHxE2bODHnv0ZEo -q1+gElIwcxmOj+GMB6LDu0rw6h8VqO4lzKRG+Bsi77MOQ7osJLjFLFzUHPhdZL3D -k14opz8n8Y4e0ypQBaNV2cvnOVPAmJ6MVGKLJrD3fY185MaeZkJVgkfnsliNZvcH -fC425lAcP9tDJMW/hkd5s3kc91r0E+xs+D/iWR+V7kI+ua2oMoVJl0b+SzGPWsut -dEcf6ZG33ygEIqDUD13ieU/qbIWGvaimzuT6w+Gzrt48Ue7LE3wBf4QOXVGUnhMM -ti6lTPk5cDZvlsouDERVxcr6XQKj39ZkjFqzAQqptQpHF//vkUAqjqFGOjGY5RH8 -zLtJVor8udBhmm9lbObDyz51Sf6Pp+KJxWfXnUYTTjF2OySznhFlhqt/7x3U+Lzn -rFpct1pHXFXOVbQicVtbC/DP3KBhZOqp12gKY6fgDT+gr9Oq0n7vUaDmUStVkhUX -U8u3Zg5mTPj5dUyQ5xJwx0UCAwEAAaNjMGEwHQYDVR0OBBYEFC7j27JJ0JxUeVz6 -Jyr+zE7S6E5UMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAULuPbsknQnFR5 -XPonKv7MTtLoTlQwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEBCwUAA4ICAQAF -Nzr0TbdF4kV1JI+2d1LoHNgQk2Xz8lkGpD4eKexd0dCrfOAKkEh47U6YA5n+KGCR -HTAduGN8qOY1tfrTYXbm1gdLymmasoR6d5NFFxWfJNCYExL/u6Au/U5Mh/jOXKqY -GwXgAEZKgoClM4so3O0409/lPun++1ndYYRP0lSWE2ETPo+Aab6TR7U1Q9Jauz1c -77NCR807VRMGsAnb/WP2OogKmW9+4c4bU2pEZiNRCHu8W1Ki/QY3OEBhj0qWuJA3 -+GbHeJAAFS6LrVE1Uweoa2iu+U48BybNCAVwzDk/dr2l02cmAYamU9JgO3xDf1WK -vJUawSg5TB9D0pH0clmKuVb8P7Sd2nCcdlqMQ1DujjByTd//SffGqWfZbawCEeI6 -FiWnWAjLb1NBnEg4R2gz0dfHj9R0IdTDBZB6/86WiLEVKV0jq9BgoRJP3vQXzTLl -yb/IQ639Lo7xr+L0mPoSHyDYwKcMhcWQ9DstliaxLL5Mq+ux0orJ23gTDx4JnW2P -AJ8C2sH6H3p6CcRK5ogql5+Ji/03X186zjhZhkuvcQu02PJwT58yE+Owp1fl2tpD -y4Q08ijE6m30Ku/Ba3ba+367hTzSU8JNvnHhRdH9I2cNE3X7z2VnIp2usAnRCf8d -NL/+I5c30jn6PQ0GC7TbO6Orb1wdtn7os4I07QZcJA== ------END CERTIFICATE----- diff --git "a/test/rules/platform_certs/default/EBGElektronikSertifikaHizmetSa\304\237lay\304\261c\304\261s\304\261.crt" "b/test/rules/platform_certs/default/EBGElektronikSertifikaHizmetSa\304\237lay\304\261c\304\261s\304\261.crt" deleted file mode 100644 index d0c5e43ef337..000000000000 --- "a/test/rules/platform_certs/default/EBGElektronikSertifikaHizmetSa\304\237lay\304\261c\304\261s\304\261.crt" +++ /dev/null @@ -1,34 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIF5zCCA8+gAwIBAgIITK9zQhyOdAIwDQYJKoZIhvcNAQEFBQAwgYAxODA2BgNV -BAMML0VCRyBFbGVrdHJvbmlrIFNlcnRpZmlrYSBIaXptZXQgU2HEn2xhecSxY8Sx -c8SxMTcwNQYDVQQKDC5FQkcgQmlsacWfaW0gVGVrbm9sb2ppbGVyaSB2ZSBIaXpt -ZXRsZXJpIEEuxZ4uMQswCQYDVQQGEwJUUjAeFw0wNjA4MTcwMDIxMDlaFw0xNjA4 -MTQwMDMxMDlaMIGAMTgwNgYDVQQDDC9FQkcgRWxla3Ryb25payBTZXJ0aWZpa2Eg -SGl6bWV0IFNhxJ9sYXnEsWPEsXPEsTE3MDUGA1UECgwuRUJHIEJpbGnFn2ltIFRl -a25vbG9qaWxlcmkgdmUgSGl6bWV0bGVyaSBBLsWeLjELMAkGA1UEBhMCVFIwggIi -MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDuoIRh0DpqZhAy2DE4f6en5f2h -4fuXd7hxlugTlkaDT7byX3JWbhNgpQGR4lvFzVcfd2NR/y8927k/qqk153nQ9dAk -tiHq6yOU/im/+4mRDGSaBUorzAzu8T2bgmmkTPiab+ci2hC6X5L8GCcKqKpE+i4s -tPtGmggDg3KriORqcsnlZR9uKg+ds+g75AxuetpX/dfreYteIAbTdgtsApWjluTL -dlHRKJ2hGvxEok3MenaoDT2/F08iiFD9rrbskFBKW5+VQarKD7JK/oCZTqNGFav4 -c0JqwmZ2sQomFd2TkuzbqV9UIlKRcF0T6kjsbgNs2d1s/OsNA/+mgxKb8amTD8Um -TDGyY5lhcucqZJnSuOl14nypqZoaqsNW2xCaPINStnuWt6yHd6i58mcLlEOzrz5z -+kI2sSXFCjEmN1ZnuqMLfdb3ic1nobc6HmZP9qBVFCVMLDMNpkGMvQQxahByCp0O -Lna9XvNRiYuoP1Vzv9s6xiQFlpJIqkuNKgPlV5EQ9GooFW5Hd4RcUXSfGenmHmMW -OeMRFeNYGkS9y8RsZteEBt8w9DeiQyJ50hBs37vmExH8nYQKE3vwO9D8owrXieqW -fo1IhR5kX9tUoqzVegJ5a9KK8GfaZXINFHDk6Y54jzJ0fFfy1tb0Nokb+Clsi7n2 -l9GkLqq+CxnCRelwXQIDAJ3Zo2MwYTAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB -/wQEAwIBBjAdBgNVHQ4EFgQU587GT/wWZ5b6SqMHwQSny2re2kcwHwYDVR0jBBgw -FoAU587GT/wWZ5b6SqMHwQSny2re2kcwDQYJKoZIhvcNAQEFBQADggIBAJuYml2+ -8ygjdsZs93/mQJ7ANtyVDR2tFcU22NU57/IeIl6zgrRdu0waypIN30ckHrMk2pGI -6YNw3ZPX6bqz3xZaPt7gyPvT/Wwp+BVGoGgmzJNSroIBk5DKd8pNSe/iWtkqvTDO -TLKBtjDOWU/aWR1qeqRFsIImgYZ29fUQALjuswnoT4cCB64kXPBfrAowzIpAoHME -wfuJJPaaHFy3PApnNgUIMbOv2AFoKuB4j3TeuFGkjGwgPaL7s9QJ/XvCgKqTbCmY -Iai7FvOpEl90tYeY8pUm3zTvilORiF0alKM/fCL414i6poyWqD1SNGKfAB5UVUJn -xk1Gj7sURT0KlhaOEKGXmdXTMIXM3rRyt7yKPBgpaP3ccQfuJDlq+u2lrDgv+R4Q -DgZxGhBM/nV+/x5XOULK1+EVoVZVWRvRo68R2E7DpSvvkL/A7IITW43WciyTTo9q -Kd+FPNMN4KIYEsxVL0e3p5sC/kH2iExt2qkBR4NkJ2IQgtYSe14DHzSpyZH+r11t -hie3I6p1GMog57AP14kOpmciY/SDQSsGS7tY1dHXt7kQY9iJSrSq3RZj9W6+YKH4 -7ejWkE8axsWgKdOnIaj1Wjz3x0miIZpKlVIglnKaZsv30oZDfCK+lvm9AahH3eU7 -QPl1K5srRmSGjR70j/sHd9DqSaIcjVIUpgqT ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/EC-ACC.crt b/test/rules/platform_certs/default/EC-ACC.crt deleted file mode 100644 index cc97a101161a..000000000000 --- a/test/rules/platform_certs/default/EC-ACC.crt +++ /dev/null @@ -1,31 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFVjCCBD6gAwIBAgIQ7is969Qh3hSoYqwE893EATANBgkqhkiG9w0BAQUFADCB -8zELMAkGA1UEBhMCRVMxOzA5BgNVBAoTMkFnZW5jaWEgQ2F0YWxhbmEgZGUgQ2Vy -dGlmaWNhY2lvIChOSUYgUS0wODAxMTc2LUkpMSgwJgYDVQQLEx9TZXJ2ZWlzIFB1 -YmxpY3MgZGUgQ2VydGlmaWNhY2lvMTUwMwYDVQQLEyxWZWdldSBodHRwczovL3d3 -dy5jYXRjZXJ0Lm5ldC92ZXJhcnJlbCAoYykwMzE1MDMGA1UECxMsSmVyYXJxdWlh -IEVudGl0YXRzIGRlIENlcnRpZmljYWNpbyBDYXRhbGFuZXMxDzANBgNVBAMTBkVD -LUFDQzAeFw0wMzAxMDcyMzAwMDBaFw0zMTAxMDcyMjU5NTlaMIHzMQswCQYDVQQG -EwJFUzE7MDkGA1UEChMyQWdlbmNpYSBDYXRhbGFuYSBkZSBDZXJ0aWZpY2FjaW8g -KE5JRiBRLTA4MDExNzYtSSkxKDAmBgNVBAsTH1NlcnZlaXMgUHVibGljcyBkZSBD -ZXJ0aWZpY2FjaW8xNTAzBgNVBAsTLFZlZ2V1IGh0dHBzOi8vd3d3LmNhdGNlcnQu -bmV0L3ZlcmFycmVsIChjKTAzMTUwMwYDVQQLEyxKZXJhcnF1aWEgRW50aXRhdHMg -ZGUgQ2VydGlmaWNhY2lvIENhdGFsYW5lczEPMA0GA1UEAxMGRUMtQUNDMIIBIjAN -BgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsyLHT+KXQpWIR4NA9h0X84NzJB5R -85iKw5K4/0CQBXCHYMkAqbWUZRkiFRfCQ2xmRJoNBD45b6VLeqpjt4pEndljkYRm -4CgPukLjbo73FCeTae6RDqNfDrHrZqJyTxIThmV6PttPB/SnCWDaOkKZx7J/sxaV -HMf5NLWUhdWZXqBIoH7nF2W4onW4HvPlQn2v7fOKSGRdghST2MDk/7NQcvJ29rNd -QlB50JQ+awwAvthrDk4q7D7SzIKiGGUzE3eeml0aE9jD2z3Il3rucO2n5nzbcc8t -lGLfbdb1OL4/pYUKGbio2Al1QnDE6u/LDsg0qBIimAy4E5S2S+zw0JDnJwIDAQAB -o4HjMIHgMB0GA1UdEQQWMBSBEmVjX2FjY0BjYXRjZXJ0Lm5ldDAPBgNVHRMBAf8E -BTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUoMOLRKo3pUW/l4Ba0fF4 -opvpXY0wfwYDVR0gBHgwdjB0BgsrBgEEAfV4AQMBCjBlMCwGCCsGAQUFBwIBFiBo -dHRwczovL3d3dy5jYXRjZXJ0Lm5ldC92ZXJhcnJlbDA1BggrBgEFBQcCAjApGidW -ZWdldSBodHRwczovL3d3dy5jYXRjZXJ0Lm5ldC92ZXJhcnJlbCAwDQYJKoZIhvcN -AQEFBQADggEBAKBIW4IB9k1IuDlVNZyAelOZ1Vr/sXE7zDkJlF7W2u++AVtd0x7Y -/X1PzaBB4DSTv8vihpw3kpBWHNzrKQXlxJ7HNd+KDM3FIUPpqojlNcAZQmNaAl6k -SBg6hW/cnbw/nZzBh7h6YQjpdwt/cKt63dmXLGQehb+8dJahw3oS7AwaboMMPOhy -Rp/7SNVel+axofjk70YllJyJ22k4vuxcDlbHZVHlUIiIv0LVKz3l+bqeLrPK9HOS -Agu+TGbrIP65y7WZf+a2E/rKS03Z7lNGBjvGTq2TWoF+bCpLagVFjPIhpDGQh2xl -nJ2lYJU6Un/10asIbvPuW/mIPX64b24D5EI= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/EECertificationCentreRootCA.crt b/test/rules/platform_certs/default/EECertificationCentreRootCA.crt deleted file mode 100644 index 5032e1db83bb..000000000000 --- a/test/rules/platform_certs/default/EECertificationCentreRootCA.crt +++ /dev/null @@ -1,24 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEAzCCAuugAwIBAgIQVID5oHPtPwBMyonY43HmSjANBgkqhkiG9w0BAQUFADB1 -MQswCQYDVQQGEwJFRTEiMCAGA1UECgwZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1 -czEoMCYGA1UEAwwfRUUgQ2VydGlmaWNhdGlvbiBDZW50cmUgUm9vdCBDQTEYMBYG -CSqGSIb3DQEJARYJcGtpQHNrLmVlMCIYDzIwMTAxMDMwMTAxMDMwWhgPMjAzMDEy -MTcyMzU5NTlaMHUxCzAJBgNVBAYTAkVFMSIwIAYDVQQKDBlBUyBTZXJ0aWZpdHNl -ZXJpbWlza2Vza3VzMSgwJgYDVQQDDB9FRSBDZXJ0aWZpY2F0aW9uIENlbnRyZSBS -b290IENBMRgwFgYJKoZIhvcNAQkBFglwa2lAc2suZWUwggEiMA0GCSqGSIb3DQEB -AQUAA4IBDwAwggEKAoIBAQDIIMDs4MVLqwd4lfNE7vsLDP90jmG7sWLqI9iroWUy -euuOF0+W2Ap7kaJjbMeMTC55v6kF/GlclY1i+blw7cNRfdCT5mzrMEvhvH2/UpvO -bntl8jixwKIy72KyaOBhU8E2lf/slLo2rpwcpzIP5Xy0xm90/XsY6KxX7QYgSzIw -WFv9zajmofxwvI6Sc9uXp3whrj3B9UiHbCe9nyV0gVWw93X2PaRka9ZP585ArQ/d -MtO8ihJTmMmJ+xAdTX7Nfh9WDSFwhfYggx/2uh8Ej+p3iDXE/+pOoYtNP2MbRMNE -1CV2yreN1x5KZmTNXMWcg+HCCIia7E6j8T4cLNlsHaFLAgMBAAGjgYowgYcwDwYD -VR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFBLyWj7qVhy/ -zQas8fElyalL1BSZMEUGA1UdJQQ+MDwGCCsGAQUFBwMCBggrBgEFBQcDAQYIKwYB -BQUHAwMGCCsGAQUFBwMEBggrBgEFBQcDCAYIKwYBBQUHAwkwDQYJKoZIhvcNAQEF -BQADggEBAHv25MANqhlHt01Xo/6tu7Fq1Q+e2+RjxY6hUFaTlrg4wCQiZrxTFGGV -v9DHKpY5P30osxBAIWrEr7BSdxjhlthWXePdNl4dp1BUoMUq5KqMlIpPnTX/dqQG -E5Gion0ARD9V04I8GtVbvFZMIi5GQ4okQC3zErg7cBqklrkar4dBGmoYDQZPxz5u -uSlNDUmJEYcyW+ZLBMjkXOZ0c5RdFpgTlf7727FE5TpwrDdr5rMzcijJs1eg9gIW -iAYLtqZLICjU3j2LrTcFU3T+bsy8QxdxXvnFzBqpYe73dgzzcvRyrc9yAjYHR8/v -GVCJYMzpJJUPwssd8m92kMfMdcGWxZ0= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/Entrust.netCertificationAuthority(2048).crt b/test/rules/platform_certs/default/Entrust.netCertificationAuthority(2048).crt deleted file mode 100644 index 064c12762748..000000000000 --- a/test/rules/platform_certs/default/Entrust.netCertificationAuthority(2048).crt +++ /dev/null @@ -1,25 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEKjCCAxKgAwIBAgIEOGPe+DANBgkqhkiG9w0BAQUFADCBtDEUMBIGA1UEChML -RW50cnVzdC5uZXQxQDA+BgNVBAsUN3d3dy5lbnRydXN0Lm5ldC9DUFNfMjA0OCBp -bmNvcnAuIGJ5IHJlZi4gKGxpbWl0cyBsaWFiLikxJTAjBgNVBAsTHChjKSAxOTk5 -IEVudHJ1c3QubmV0IExpbWl0ZWQxMzAxBgNVBAMTKkVudHJ1c3QubmV0IENlcnRp -ZmljYXRpb24gQXV0aG9yaXR5ICgyMDQ4KTAeFw05OTEyMjQxNzUwNTFaFw0yOTA3 -MjQxNDE1MTJaMIG0MRQwEgYDVQQKEwtFbnRydXN0Lm5ldDFAMD4GA1UECxQ3d3d3 -LmVudHJ1c3QubmV0L0NQU18yMDQ4IGluY29ycC4gYnkgcmVmLiAobGltaXRzIGxp -YWIuKTElMCMGA1UECxMcKGMpIDE5OTkgRW50cnVzdC5uZXQgTGltaXRlZDEzMDEG -A1UEAxMqRW50cnVzdC5uZXQgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgKDIwNDgp -MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArU1LqRKGsuqjIAcVFmQq -K0vRvwtKTY7tgHalZ7d4QMBzQshowNtTK91euHaYNZOLGp18EzoOH1u3Hs/lJBQe -sYGpjX24zGtLA/ECDNyrpUAkAH90lKGdCCmziAv1h3edVc3kw37XamSrhRSGlVuX -MlBvPci6Zgzj/L24ScF2iUkZ/cCovYmjZy/Gn7xxGWC4LeksyZB2ZnuU4q941mVT -XTzWnLLPKQP5L6RQstRIzgUyVYr9smRMDuSYB3Xbf9+5CFVghTAp+XtIpGmG4zU/ -HoZdenoVve8AjhUiVBcAkCaTvA5JaJG/+EfTnZVCwQ5N328mz8MYIWJmQ3DW1cAH -4QIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNV -HQ4EFgQUVeSB0RGAvtiJuQijMfmhJAkWuXAwDQYJKoZIhvcNAQEFBQADggEBADub -j1abMOdTmXx6eadNl9cZlZD7Bh/KM3xGY4+WZiT6QBshJ8rmcnPyT/4xmf3IDExo -U8aAghOY+rat2l098c5u9hURlIIM7j+VrxGrD9cv3h8Dj1csHsm7mhpElesYT6Yf -zX1XEC+bBAlahLVu2B064dae0Wx5XnkcFMXj0EyTO2U87d89vqbllRrDtRnDvV5b -u/8j72gZyxKTJ1wDLW8w0B62GqzeWvfRqqgnpv55gcR5mTNXuhKwqeBCbJPKVt7+ -bYQLCIt+jerXmCHG8+c8eS9enNFMFY3h7CI3zJpDC5fcgJCNs2ebb0gIFVbPv/Er -fF6adulZkMV8gzURZVE= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/EntrustRootCertificationAuthority-EC1.crt b/test/rules/platform_certs/default/EntrustRootCertificationAuthority-EC1.crt deleted file mode 100644 index 5721c403392b..000000000000 --- a/test/rules/platform_certs/default/EntrustRootCertificationAuthority-EC1.crt +++ /dev/null @@ -1,18 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIC+TCCAoCgAwIBAgINAKaLeSkAAAAAUNCR+TAKBggqhkjOPQQDAzCBvzELMAkG -A1UEBhMCVVMxFjAUBgNVBAoTDUVudHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3 -d3cuZW50cnVzdC5uZXQvbGVnYWwtdGVybXMxOTA3BgNVBAsTMChjKSAyMDEyIEVu -dHJ1c3QsIEluYy4gLSBmb3IgYXV0aG9yaXplZCB1c2Ugb25seTEzMDEGA1UEAxMq -RW50cnVzdCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRUMxMB4XDTEy -MTIxODE1MjUzNloXDTM3MTIxODE1NTUzNlowgb8xCzAJBgNVBAYTAlVTMRYwFAYD -VQQKEw1FbnRydXN0LCBJbmMuMSgwJgYDVQQLEx9TZWUgd3d3LmVudHJ1c3QubmV0 -L2xlZ2FsLXRlcm1zMTkwNwYDVQQLEzAoYykgMjAxMiBFbnRydXN0LCBJbmMuIC0g -Zm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxMzAxBgNVBAMTKkVudHJ1c3QgUm9vdCBD -ZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEVDMTB2MBAGByqGSM49AgEGBSuBBAAi -A2IABIQTydC6bUF74mzQ61VfZgIaJPRbiWlH47jCffHyAsWfoPZb1YsGGYZPUxBt -ByQnoaD41UcZYUx9ypMn6nQM72+WCf5j7HBdNq1nd67JnXxVRDqiY1Ef9eNi1KlH -Bz7MIKNCMEAwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0O -BBYEFLdj5xrdjekIplWDpOBqUEFlEUJJMAoGCCqGSM49BAMDA2cAMGQCMGF52OVC -R98crlOZF7ZvHH3hvxGU0QOIdeSNiaSKd0bebWHvAvX7td/M/k7//qnmpwIwW5nX -hTcGtXsI/esni0qU+eH6p44mCOh8kmhtc9hvJqwhAriZtyZBWyVgrtBIGu4G ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/EntrustRootCertificationAuthority-G2.crt b/test/rules/platform_certs/default/EntrustRootCertificationAuthority-G2.crt deleted file mode 100644 index b0846cdf3ed8..000000000000 --- a/test/rules/platform_certs/default/EntrustRootCertificationAuthority-G2.crt +++ /dev/null @@ -1,25 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEPjCCAyagAwIBAgIESlOMKDANBgkqhkiG9w0BAQsFADCBvjELMAkGA1UEBhMC -VVMxFjAUBgNVBAoTDUVudHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3d3cuZW50 -cnVzdC5uZXQvbGVnYWwtdGVybXMxOTA3BgNVBAsTMChjKSAyMDA5IEVudHJ1c3Qs -IEluYy4gLSBmb3IgYXV0aG9yaXplZCB1c2Ugb25seTEyMDAGA1UEAxMpRW50cnVz -dCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzIwHhcNMDkwNzA3MTcy -NTU0WhcNMzAxMjA3MTc1NTU0WjCBvjELMAkGA1UEBhMCVVMxFjAUBgNVBAoTDUVu -dHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3d3cuZW50cnVzdC5uZXQvbGVnYWwt -dGVybXMxOTA3BgNVBAsTMChjKSAyMDA5IEVudHJ1c3QsIEluYy4gLSBmb3IgYXV0 -aG9yaXplZCB1c2Ugb25seTEyMDAGA1UEAxMpRW50cnVzdCBSb290IENlcnRpZmlj -YXRpb24gQXV0aG9yaXR5IC0gRzIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEK -AoIBAQC6hLZy254Ma+KZ6TABp3bqMriVQRrJ2mFOWHLP/vaCeb9zYQYKpSfYs1/T -RU4cctZOMvJyig/3gxnQaoCAAEUesMfnmr8SVycco2gvCoe9amsOXmXzHHfV1IWN -cCG0szLni6LVhjkCsbjSR87kyUnEO6fe+1R9V77w6G7CebI6C1XiUJgWMhNcL3hW -wcKUs/Ja5CeanyTXxuzQmyWC48zCxEXFjJd6BmsqEZ+pCm5IO2/b1BEZQvePB7/1 -U1+cPvQXLOZprE4yTGJ36rfo5bs0vBmLrpxR57d+tVOxMyLlbc9wPBr64ptntoP0 -jaWvYkxN4FisZDQSA/i2jZRjJKRxAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAP -BgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRqciZ60B7vfec7aVHUbI2fkBJmqzAN -BgkqhkiG9w0BAQsFAAOCAQEAeZ8dlsa2eT8ijYfThwMEYGprmi5ZiXMRrEPR9RP/ -jTkrwPK9T3CMqS/qF8QLVJ7UG5aYMzyorWKiAHarWWluBh1+xLlEjZivEtRh2woZ -Rkfz6/djwUAFQKXSt/S1mja/qYh2iARVBCuch38aNzx+LaUa2NSJXsq9rD1s2G2v -1fN2D807iDginWyTmsQ9v4IbZT+mD12q/OWyFcq1rca8PdCE6OoGcrBNOTJ4vz4R -nAuknZoh8/CbCzB428Hch0P+vGOaysXCHMnHjf87ElgI5rY97HosTvuDls4MPGmH -VHOkc8KT/1EQrBVUAdj8BbGJoX90g5pJ19xOe4pIb4tF9g== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/EntrustRootCertificationAuthority.crt b/test/rules/platform_certs/default/EntrustRootCertificationAuthority.crt deleted file mode 100644 index 51ac4fd68a27..000000000000 --- a/test/rules/platform_certs/default/EntrustRootCertificationAuthority.crt +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEkTCCA3mgAwIBAgIERWtQVDANBgkqhkiG9w0BAQUFADCBsDELMAkGA1UEBhMC -VVMxFjAUBgNVBAoTDUVudHJ1c3QsIEluYy4xOTA3BgNVBAsTMHd3dy5lbnRydXN0 -Lm5ldC9DUFMgaXMgaW5jb3Jwb3JhdGVkIGJ5IHJlZmVyZW5jZTEfMB0GA1UECxMW -KGMpIDIwMDYgRW50cnVzdCwgSW5jLjEtMCsGA1UEAxMkRW50cnVzdCBSb290IENl -cnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTA2MTEyNzIwMjM0MloXDTI2MTEyNzIw -NTM0MlowgbAxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1FbnRydXN0LCBJbmMuMTkw -NwYDVQQLEzB3d3cuZW50cnVzdC5uZXQvQ1BTIGlzIGluY29ycG9yYXRlZCBieSBy -ZWZlcmVuY2UxHzAdBgNVBAsTFihjKSAyMDA2IEVudHJ1c3QsIEluYy4xLTArBgNV -BAMTJEVudHJ1c3QgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCASIwDQYJ -KoZIhvcNAQEBBQADggEPADCCAQoCggEBALaVtkNC+sZtKm9I35RMOVcF7sN5EUFo -Nu3s/poBj6E4KPz3EEZmLk0eGrEaTsbRwJWIsMn/MYszA9u3g3s+IIRe7bJWKKf4 -4LlAcTfFy0cOlypowCKVYhXbR9n10Cv/gkvJrT7eTNuQgFA/CYqEAOwwCj0Yzfv9 -KlmaI5UXLEWeH25DeW0MXJj+SKfFI0dcXv1u5x609mhF0YaDW6KKjbHjKYD+JXGI -rb68j6xSlkuqUY3kEzEZ6E5Nn9uss2rVvDlUccp6en+Q3X0dgNmBu1kmwhH+5pPi -94DkZfs0Nw4pgHBNrziGLp5/V6+eF67rHMsoIV+2HNjnogQi+dPa2MsCAwEAAaOB -sDCBrTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zArBgNVHRAEJDAi -gA8yMDA2MTEyNzIwMjM0MlqBDzIwMjYxMTI3MjA1MzQyWjAfBgNVHSMEGDAWgBRo -kORnpKZTgMeGZqTx90tD+4S9bTAdBgNVHQ4EFgQUaJDkZ6SmU4DHhmak8fdLQ/uE -vW0wHQYJKoZIhvZ9B0EABBAwDhsIVjcuMTo0LjADAgSQMA0GCSqGSIb3DQEBBQUA -A4IBAQCT1DCw1wMgKtD5Y+iRDAUgqV8ZyntyTtSx29CW+1RaGSwMCPeyvIWonX9t -O1KzKtvn1ISMY/YPyyYBkVBs9F8U4pN0wBOeMDpQ47RgxRzwIkSNcUesyBrJ6Zua -AGAT/3B+XxFNSRuzFVJ7yVTav52Vr2ua2J7p8eRDjeIRRDq/r72DQnNSi6q7pynP -9WQcCk3RvKqsnyrQ/39/2n3qse0wJcGE2jTSW3iDVuycNsMm4hH2Z0kdkquM++v/ -eu6FSqdQgPCnXEqULl8FmTxSQeDNtGPPAUO6nIPcj2A781q0tHuu2guQOHXvgR1m -0vdXcDazv/wor3ElhVsT/h5/WrQ8 ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/EquifaxSecureCA.crt b/test/rules/platform_certs/default/EquifaxSecureCA.crt deleted file mode 100644 index ed0bd764f851..000000000000 --- a/test/rules/platform_certs/default/EquifaxSecureCA.crt +++ /dev/null @@ -1,19 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDIDCCAomgAwIBAgIENd70zzANBgkqhkiG9w0BAQUFADBOMQswCQYDVQQGEwJV -UzEQMA4GA1UEChMHRXF1aWZheDEtMCsGA1UECxMkRXF1aWZheCBTZWN1cmUgQ2Vy -dGlmaWNhdGUgQXV0aG9yaXR5MB4XDTk4MDgyMjE2NDE1MVoXDTE4MDgyMjE2NDE1 -MVowTjELMAkGA1UEBhMCVVMxEDAOBgNVBAoTB0VxdWlmYXgxLTArBgNVBAsTJEVx -dWlmYXggU2VjdXJlIENlcnRpZmljYXRlIEF1dGhvcml0eTCBnzANBgkqhkiG9w0B -AQEFAAOBjQAwgYkCgYEAwV2xWGcIYu6gmi0fCG2RFGiYCh7+2gRvE4RiIcPRfM6f -BeC4AfBONOziipUEZKzxa1NfBbPLZ4C/QgKO/t0BCezhABRP/PvwDN1Dulsr4R+A -cJkVV5MW8Q+XarfCaCMczE1ZMKxRHjuvK9buY0V7xdlfUNLjUA86iOe/FP3gx7kC -AwEAAaOCAQkwggEFMHAGA1UdHwRpMGcwZaBjoGGkXzBdMQswCQYDVQQGEwJVUzEQ -MA4GA1UEChMHRXF1aWZheDEtMCsGA1UECxMkRXF1aWZheCBTZWN1cmUgQ2VydGlm -aWNhdGUgQXV0aG9yaXR5MQ0wCwYDVQQDEwRDUkwxMBoGA1UdEAQTMBGBDzIwMTgw -ODIyMTY0MTUxWjALBgNVHQ8EBAMCAQYwHwYDVR0jBBgwFoAUSOZo+SvSspXXR9gj -IBBPM5iQn9QwHQYDVR0OBBYEFEjmaPkr0rKV10fYIyAQTzOYkJ/UMAwGA1UdEwQF -MAMBAf8wGgYJKoZIhvZ9B0EABA0wCxsFVjMuMGMDAgbAMA0GCSqGSIb3DQEBBQUA -A4GBAFjOKer89961zgK5F7WF0bnj4JXMJTENAKaSbn+2kmOeUJXRmm/kEd5jhW6Y -7qj/WsjTVbJmcVfewCHrPSqnI0kBBIZCe/zuf6IWUrVnZ9NA2zsmWLIodz2uFHdh -1voqZiegDfqnc1zqcPGUIWVEX/r87yloqaKHee9570+sB3c4 ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/EquifaxSecureGlobaleBusinessCA-1.crt b/test/rules/platform_certs/default/EquifaxSecureGlobaleBusinessCA-1.crt deleted file mode 100644 index ce04aeb25db4..000000000000 --- a/test/rules/platform_certs/default/EquifaxSecureGlobaleBusinessCA-1.crt +++ /dev/null @@ -1,16 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICkDCCAfmgAwIBAgIBATANBgkqhkiG9w0BAQQFADBaMQswCQYDVQQGEwJVUzEc -MBoGA1UEChMTRXF1aWZheCBTZWN1cmUgSW5jLjEtMCsGA1UEAxMkRXF1aWZheCBT -ZWN1cmUgR2xvYmFsIGVCdXNpbmVzcyBDQS0xMB4XDTk5MDYyMTA0MDAwMFoXDTIw -MDYyMTA0MDAwMFowWjELMAkGA1UEBhMCVVMxHDAaBgNVBAoTE0VxdWlmYXggU2Vj -dXJlIEluYy4xLTArBgNVBAMTJEVxdWlmYXggU2VjdXJlIEdsb2JhbCBlQnVzaW5l -c3MgQ0EtMTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAuucXkAJlsTRVPEnC -UdXfp9E3j9HngXNBUmCbnaEXJnitx7HoJpQytd4zjTov2/KaelpzmKNc6fuKcxtc -58O/gGzNqfTWK8D3+ZmqY6KxRwIP1ORROhI8bIpaVIRw28HFkM9yRcuoWcDNM50/ -o5brhTMhHD4ePmBudpxnhcXIw2ECAwEAAaNmMGQwEQYJYIZIAYb4QgEBBAQDAgAH -MA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUvqigdHJQa0S3ySPY+6j/s1dr -aGwwHQYDVR0OBBYEFL6ooHRyUGtEt8kj2Puo/7NXa2hsMA0GCSqGSIb3DQEBBAUA -A4GBADDiAVGqx+pf2rnQZQ8w1j7aDRRJbpGTJxQx78T3LUX47Me/okENI7SS+RkA -Z70Br83gcfxaz2TE4JaY0KNA4gGK7ycH8WUBikQtBmV1UsCGECAhX2xrD2yuCRyv -8qIYNMR1pHMc8Y3c7635s3a0kr/clRAevsvIO1qEYBlWlKlV ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/EquifaxSecureeBusinessCA-1.crt b/test/rules/platform_certs/default/EquifaxSecureeBusinessCA-1.crt deleted file mode 100644 index 5e0d8c714fe7..000000000000 --- a/test/rules/platform_certs/default/EquifaxSecureeBusinessCA-1.crt +++ /dev/null @@ -1,16 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICgjCCAeugAwIBAgIBBDANBgkqhkiG9w0BAQQFADBTMQswCQYDVQQGEwJVUzEc -MBoGA1UEChMTRXF1aWZheCBTZWN1cmUgSW5jLjEmMCQGA1UEAxMdRXF1aWZheCBT -ZWN1cmUgZUJ1c2luZXNzIENBLTEwHhcNOTkwNjIxMDQwMDAwWhcNMjAwNjIxMDQw -MDAwWjBTMQswCQYDVQQGEwJVUzEcMBoGA1UEChMTRXF1aWZheCBTZWN1cmUgSW5j -LjEmMCQGA1UEAxMdRXF1aWZheCBTZWN1cmUgZUJ1c2luZXNzIENBLTEwgZ8wDQYJ -KoZIhvcNAQEBBQADgY0AMIGJAoGBAM4vGbwXt3fek6lfWg0XTzQaDJj0ItlZ1MRo -RvC0NcWFAyDGr0WlIVFFQesWWDYyb+JQYmT5/VGcqiTZ9J2DKocKIdMSODRsjQBu -WqDZQu4aIZX5UkxVWsUPOE9G+m34LjXWHXzr4vCwdYDIqROsvojvOm6rXyo4YgKw -Env+j6YDAgMBAAGjZjBkMBEGCWCGSAGG+EIBAQQEAwIABzAPBgNVHRMBAf8EBTAD -AQH/MB8GA1UdIwQYMBaAFEp4MlIR21kWNl7fwRQ2QGpHfEyhMB0GA1UdDgQWBBRK -eDJSEdtZFjZe38EUNkBqR3xMoTANBgkqhkiG9w0BAQQFAAOBgQB1W6ibAxHm6VZM -zfmpTMANmvPMZWnmJXbMWbfWVMMdzZmsGd20hdXgPfxiIKeES1hl8eL5lSE/9dR+ -WB5Hh1Q+WKG1tfgq73HnvMP2sUlG4tega+VWeponmHxGYhTnyfxuAxJ5gDgdSIKN -/Bf+KpYrtWKmpj29f5JZzVoqgrI3eQ== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/GeoTrustGlobalCA.crt b/test/rules/platform_certs/default/GeoTrustGlobalCA.crt deleted file mode 100644 index b69f0029b89b..000000000000 --- a/test/rules/platform_certs/default/GeoTrustGlobalCA.crt +++ /dev/null @@ -1,20 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDVDCCAjygAwIBAgIDAjRWMA0GCSqGSIb3DQEBBQUAMEIxCzAJBgNVBAYTAlVT -MRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMRswGQYDVQQDExJHZW9UcnVzdCBHbG9i -YWwgQ0EwHhcNMDIwNTIxMDQwMDAwWhcNMjIwNTIxMDQwMDAwWjBCMQswCQYDVQQG -EwJVUzEWMBQGA1UEChMNR2VvVHJ1c3QgSW5jLjEbMBkGA1UEAxMSR2VvVHJ1c3Qg -R2xvYmFsIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2swYYzD9 -9BcjGlZ+W988bDjkcbd4kdS8odhM+KhDtgPpTSEHCIjaWC9mOSm9BXiLnTjoBbdq -fnGk5sRgprDvgOSJKA+eJdbtg/OtppHHmMlCGDUUna2YRpIuT8rxh0PBFpVXLVDv -iS2Aelet8u5fa9IAjbkU+BQVNdnARqN7csiRv8lVK83Qlz6cJmTM386DGXHKTubU -1XupGc1V3sjs0l44U+VcT4wt/lAjNvxm5suOpDkZALeVAjmRCw7+OC7RHQWa9k0+ -bw8HHa8sHo9gOeL6NlMTOdReJivbPagUvTLrGAMoUgRx5aszPeE4uwc2hGKceeoW -MPRfwCvocWvk+QIDAQABo1MwUTAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBTA -ephojYn7qwVkDBF9qn1luMrMTjAfBgNVHSMEGDAWgBTAephojYn7qwVkDBF9qn1l -uMrMTjANBgkqhkiG9w0BAQUFAAOCAQEANeMpauUvXVSOKVCUn5kaFOSPeCpilKIn -Z57QzxpeR+nBsqTP3UEaBU6bS+5Kb1VSsyShNwrrZHYqLizz/Tt1kL/6cdjHPTfS -tQWVYrmm3ok9Nns4d0iXrKYgjy6myQzCsplFAMfOEVEiIuCl6rYVSAlk6l5PdPcF -PseKUgzbFbS9bZvlxrFUaKnjaZC2mqUPuLk/IH2uSrW4nOQdtqvmlKXBx4Ot2/Un -hw4EbNX/3aBd7YdStysVAq45pmp06drE57xNNB6pXE0zX5IJL4hmXXeXxx12E6nV -5fEWCRE11azbJHFwLJhWC9kXtNHjUStedejV0NxPNO3CBWaAocvmMw== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/GeoTrustGlobalCA2.crt b/test/rules/platform_certs/default/GeoTrustGlobalCA2.crt deleted file mode 100644 index 2fb960492e83..000000000000 --- a/test/rules/platform_certs/default/GeoTrustGlobalCA2.crt +++ /dev/null @@ -1,21 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDZjCCAk6gAwIBAgIBATANBgkqhkiG9w0BAQUFADBEMQswCQYDVQQGEwJVUzEW -MBQGA1UEChMNR2VvVHJ1c3QgSW5jLjEdMBsGA1UEAxMUR2VvVHJ1c3QgR2xvYmFs -IENBIDIwHhcNMDQwMzA0MDUwMDAwWhcNMTkwMzA0MDUwMDAwWjBEMQswCQYDVQQG -EwJVUzEWMBQGA1UEChMNR2VvVHJ1c3QgSW5jLjEdMBsGA1UEAxMUR2VvVHJ1c3Qg -R2xvYmFsIENBIDIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDvPE1A -PRDfO1MA4Wf+lGAVPoWI8YkNkMgoI5kF6CsgncbzYEbYwbLVjDHZ3CB5JIG/NTL8 -Y2nbsSpr7iFY8gjpeMtvy/wWUsiRxP89c96xPqfCfWbB9X5SJBri1WeR0IIQ13hL -TytCOb1kLUCgsBDTOEhGiKEMuzozKmKY+wCdE1l/bztyqu6mD4b5BWHqZ38MN5aL -5mkWRxHCJ1kDs6ZgwiFAVvqgx306E+PsV8ez1q6diYD3Aecs9pYrEw15LNnA5IZ7 -S4wMcoKK+xfNAGw6EzywhIdLFnopsk/bHdQL82Y3vdj2V7teJHq4PIu5+pIaGoSe -2HSPqht/XvT+RSIhAgMBAAGjYzBhMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYE -FHE4NvICMVNHK266ZUapEBVYIAUJMB8GA1UdIwQYMBaAFHE4NvICMVNHK266ZUap -EBVYIAUJMA4GA1UdDwEB/wQEAwIBhjANBgkqhkiG9w0BAQUFAAOCAQEAA/e1K6td -EPx7srJerJsOflN4WT5CBP51o62sgU7XAotexC3IUnbHLB/8gTKY0UvGkpMzNTEv -/NgdRN3ggX+d6YvhZJFiCzkIjKx0nVnZellSlxG5FntvRdOW2TF9AjYPnDtuzywN -A0ZF66D0f0hExghAzN4bcLUprbqLOzRldRtxIR0sFAqwlpW41uryZfspuk/qkZN0 -abby/+Ea0AzRdoXLiiW9l14sbxWZJue2Kf8i7MkCx1YAzUm5s2x7UwQa4qjJqhIF -I8LO57sEAszAR6LkxCkvW0VXiVHuPOtSCP8HNR6fNWpHSlaY0VqFH4z1Ir+rzoPz -4iIprn2DQKi6bA== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/GeoTrustPrimaryCertificationAuthority-G2.crt b/test/rules/platform_certs/default/GeoTrustPrimaryCertificationAuthority-G2.crt deleted file mode 100644 index 6c18b2fef357..000000000000 --- a/test/rules/platform_certs/default/GeoTrustPrimaryCertificationAuthority-G2.crt +++ /dev/null @@ -1,17 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICrjCCAjWgAwIBAgIQPLL0SAoA4v7rJDteYD7DazAKBggqhkjOPQQDAzCBmDEL -MAkGA1UEBhMCVVMxFjAUBgNVBAoTDUdlb1RydXN0IEluYy4xOTA3BgNVBAsTMChj -KSAyMDA3IEdlb1RydXN0IEluYy4gLSBGb3IgYXV0aG9yaXplZCB1c2Ugb25seTE2 -MDQGA1UEAxMtR2VvVHJ1c3QgUHJpbWFyeSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0 -eSAtIEcyMB4XDTA3MTEwNTAwMDAwMFoXDTM4MDExODIzNTk1OVowgZgxCzAJBgNV -BAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMTkwNwYDVQQLEzAoYykgMjAw -NyBHZW9UcnVzdCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxNjA0BgNV -BAMTLUdlb1RydXN0IFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgLSBH -MjB2MBAGByqGSM49AgEGBSuBBAAiA2IABBWx6P0DFUPlrOuHNxFi79KDNlJ9RVcL -So17VDs6bl8VAsBQps8lL33KSLjHUGMcKiEIfJo22Av+0SbFWDEwKCXzXV2juLal -tJLtbCyf691DiaI8S0iRHVDsJt/WYC69IaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAO -BgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFBVfNVdRVfslsq0DafwBo/q+EVXVMAoG -CCqGSM49BAMDA2cAMGQCMGSWWaboCd6LuvpaiIjwH5HTRqjySkwCY/tsXzjbLkGT -qQ7mndwxHLKgpxgceeHHNgIwOlavmnRs9vuD4DPTCF+hnMJbn0bWtsuRBmOiBucz -rD6ogRLQy7rQkgu2npaqBA+K ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/GeoTrustPrimaryCertificationAuthority-G3.crt b/test/rules/platform_certs/default/GeoTrustPrimaryCertificationAuthority-G3.crt deleted file mode 100644 index 243e48ba250f..000000000000 --- a/test/rules/platform_certs/default/GeoTrustPrimaryCertificationAuthority-G3.crt +++ /dev/null @@ -1,24 +0,0 @@ ------BEGIN CERTIFICATE----- -MIID/jCCAuagAwIBAgIQFaxulBmyeUtB9iepwxgPHzANBgkqhkiG9w0BAQsFADCB -mDELMAkGA1UEBhMCVVMxFjAUBgNVBAoTDUdlb1RydXN0IEluYy4xOTA3BgNVBAsT -MChjKSAyMDA4IEdlb1RydXN0IEluYy4gLSBGb3IgYXV0aG9yaXplZCB1c2Ugb25s -eTE2MDQGA1UEAxMtR2VvVHJ1c3QgUHJpbWFyeSBDZXJ0aWZpY2F0aW9uIEF1dGhv -cml0eSAtIEczMB4XDTA4MDQwMjAwMDAwMFoXDTM3MTIwMTIzNTk1OVowgZgxCzAJ -BgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMTkwNwYDVQQLEzAoYykg -MjAwOCBHZW9UcnVzdCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxNjA0 -BgNVBAMTLUdlb1RydXN0IFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkg -LSBHMzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANziXmJYHTNXOTIz -+uvLh4yn1ErdBojqZI4xmKU4kB6Yzy5jK/BGvESyiaHAKAxJcCGVn2TAppMSAmUm -hsalifD614SgcK9PGpc/BkTVyetyEH3kMSj7HGHmKAdEc5IiaacDiGydY8hS2pgn -5whMcD60yRLBxWeDXTPzAxHsatBT4tG6NmCUgLthY2xbF37fQJQeqw3CIShwiP/W -JmxsYAQlTlV+fe+/lEjetx3dcI0FX4ilm/LC7urRQEFtYjgdVgbFA0dRIBn8exAL -DmKudlW/X3e+PkkBUz2YJQN2JFodtNuJ6nnltrM7P7pMKEF/BqxqjsHQ9gUdfeZC -huOl1UcCAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYw -HQYDVR0OBBYEFMR5yo6hTgMdHNxr2zFblD4/MH8tMA0GCSqGSIb3DQEBCwUAA4IB -AQAtxRPPVoB7eni9n64smefv2t+UXglpp+duaIy9cr5HqQ6XErhK8WTTOd8lNNTB -zU6B8A8ExCSzNJbGpqow32hhc9f5joWJ7w5elShKKiePEI4ufIbEAp7aDHdlDkQN -kv39sxY2+hENHYwOB4lqKVb3cvTdFZx3NWZXqxNT2I7BQMXXExZacse3aQHEerGD -AWh9jUGhlBjBJVz88P6DAod8DQ3PLghcSkANPuyBYeYk28rgDi0Hsj5W3I31QYUH -SJsMC8tJP33st/3LjWeJGqvtux6jAAgIFyqCXDFdRootD4abdNlF+9RAsXqqaC2G -spki4cErx5z481+oghLrGREt ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/GeoTrustPrimaryCertificationAuthority.crt b/test/rules/platform_certs/default/GeoTrustPrimaryCertificationAuthority.crt deleted file mode 100644 index 41372438b0f6..000000000000 --- a/test/rules/platform_certs/default/GeoTrustPrimaryCertificationAuthority.crt +++ /dev/null @@ -1,21 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDfDCCAmSgAwIBAgIQGKy1av1pthU6Y2yv2vrEoTANBgkqhkiG9w0BAQUFADBY -MQswCQYDVQQGEwJVUzEWMBQGA1UEChMNR2VvVHJ1c3QgSW5jLjExMC8GA1UEAxMo -R2VvVHJ1c3QgUHJpbWFyeSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wNjEx -MjcwMDAwMDBaFw0zNjA3MTYyMzU5NTlaMFgxCzAJBgNVBAYTAlVTMRYwFAYDVQQK -Ew1HZW9UcnVzdCBJbmMuMTEwLwYDVQQDEyhHZW9UcnVzdCBQcmltYXJ5IENlcnRp -ZmljYXRpb24gQXV0aG9yaXR5MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC -AQEAvrgVe//UfH1nrYNke8hCUy3f9oQIIGHWAVlqnEQRr+92/ZV+zmEwu3qDXwK9 -AWbK7hWNb6EwnL2hhZ6UOvNWiAAxz9juapYC2e0DjPt1befquFUWBRaa9OBesYjA -ZIVcFU2Ix7e64HXprQU9nceJSOC7KMgD4TCTZF5SwFlwIjVXiIrxlQqD17wxcwE0 -7e9GceBrAqg1cmuXm2bgyxx5X9gaBGgeRwLmnWDiNpcB3841kt++Z8dtd1k7j53W -kBWUvEI0EME5+bEnPn7WinXFsq+W06Lem+SYvn3h6YGttm/81w7a4DSwDRp35+MI -mO9Y+pyEtzavwt+s0vQQBnBxNQIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4G -A1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQULNVQQZcVi/CPNmFbSvtr2ZnJM5IwDQYJ -KoZIhvcNAQEFBQADggEBAFpwfyzdtzRP9YZRqSa+S7iq8XEN3GHHoOo0Hnp3DwQ1 -6CePbJC/kRYkRj5KTs4rFtULUh38H2eiAkUxT87z+gOneZ1TatnaYzr4gNfTmeGl -4b7UVXGYNTq+k+qurUKykG/g/CFNNWMziUnWm07Kx+dOCQD32sfvmWKZd7aVIl6K -oKv0uHiYyjgZmclynnjNS6yvGaBzEi38wkG6gZHaFloxt/m0cYASSJlyc1pZU8Fj -UjPtp8nSOQJw+uCxQmYpqptR7TBUIhRf2asdweSU8Pj1K/fqynhG1riR/aYNKxoU -AT6A8EKglQdebc3MS6RFjasS6LPeWuWgfOgPIh1a6Vk= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/GeoTrustUniversalCA.crt b/test/rules/platform_certs/default/GeoTrustUniversalCA.crt deleted file mode 100644 index 3a61e49124cd..000000000000 --- a/test/rules/platform_certs/default/GeoTrustUniversalCA.crt +++ /dev/null @@ -1,31 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFaDCCA1CgAwIBAgIBATANBgkqhkiG9w0BAQUFADBFMQswCQYDVQQGEwJVUzEW -MBQGA1UEChMNR2VvVHJ1c3QgSW5jLjEeMBwGA1UEAxMVR2VvVHJ1c3QgVW5pdmVy -c2FsIENBMB4XDTA0MDMwNDA1MDAwMFoXDTI5MDMwNDA1MDAwMFowRTELMAkGA1UE -BhMCVVMxFjAUBgNVBAoTDUdlb1RydXN0IEluYy4xHjAcBgNVBAMTFUdlb1RydXN0 -IFVuaXZlcnNhbCBDQTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAKYV -VaCjxuAfjJ0hUNfBvitbtaSeodlyWL0AG0y/YckUHUWCq8YdgNY96xCcOq9tJPi8 -cQGeBvV8Xx7BDlXKg5pZMK4ZyzBIle0iN430SppyZj6tlcDgFgDgEB8rMQ7XlFTT -QjOgNB0eRXbdT8oYN+yFFXoZCPzVx5zw8qkuEKmS5j1YPakWaDwvdSEYfyh3peFh -F7em6fgemdtzbvQKoiFs7tqqhZJmr/Z6a4LauiIINQ/PQvE1+mrufislzDoR5G2v -c7J2Ha3QsnhnGqQ5HFELZ1aD/ThdDc7d8Lsrlh/eezJS/R27tQahsiFepdaVaH/w -mZ7cRQg+59IJDTWU3YBOU5fXtQlEIGQWFwMCTFMNaN7VqnJNk22CDtucvc+081xd -VHppCZbW2xHBjXWotM85yM48vCR85mLK4b19p71XZQvk/iXttmkQ3CgaRr0BHdCX -teGYO8A3ZNY9lO4L4fUorgtWv3GLIylBjobFS1J72HGrH4oVpjuDWtdYAVHGTEHZ -f9hBZ3KiKN9gg6meyHv8U3NyWfWTehd2Ds735VzZC1U0oqpbtWpU5xPKV+yXbfRe -Bi9Fi1jUIxaS5BZuKGNZMN9QAZxjiRqf2xeUgnA3wySemkfWWspOqGmJch+RbNt+ -nhutxx9z3SxPGWX9f5NAEC7S8O08ni4oPmkmM8V7AgMBAAGjYzBhMA8GA1UdEwEB -/wQFMAMBAf8wHQYDVR0OBBYEFNq7LqqwDLiIJlF0XG0D08DYj3rWMB8GA1UdIwQY -MBaAFNq7LqqwDLiIJlF0XG0D08DYj3rWMA4GA1UdDwEB/wQEAwIBhjANBgkqhkiG -9w0BAQUFAAOCAgEAMXjmx7XfuJRAyXHEqDXsRh3ChfMoWIawC/yOsjmPRFWrZIRc -aanQmjg8+uUfNeVE44B5lGiku8SfPeE0zTBGi1QrlaXv9z+ZhP015s8xxtxqv6fX -IwjhmF7DWgh2qaavdy+3YL1ERmrvl/9zlcGO6JP7/TG37FcREUWbMPEaiDnBTzyn -ANXH/KttgCJwpQzgXQQpAvvLoJHRfNbDflDVnVi+QTjruXU8FdmbyUqDWcDaU/0z -uzYYm4UPFd3uLax2k7nZAY1IEKj79TiG8dsKxr2EoyNB3tZ3b4XUhRxQ4K5RirqN -Pnbiucon8l+f725ZDQbYKxek0nxru18UGkiPGkzns0ccjkxFKyDuSN/n3QmOGKja -QI2SJhFTYXNd673nxE0pN2HrrDktZy4W1vUAg4WhzH92xH3kt0tm7wNFYGm2DFKW -koRepqO1pD4r2czYG0eq8kTaT/kD6PAUyz/zg97QwVTjt+gKN02LIFkDMBmhLMi9 -ER/frslKxfMnZmaGrGiR/9nmUxwPi1xpZQomyB40w11Re9epnAahNt3ViZS82eQt -DF4JbAiXfKM9fJP/P6EUp8+1Xevb2xzEdt+Iub1FBZUbrvxGakyvSOPOrg/Sfuvm -bJxPgWp6ZKy7PtXny3YuxadIwVyQD8vIP/rmMuGNG2+k5o7Y+SlIis5z/iw= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/GeoTrustUniversalCA2.crt b/test/rules/platform_certs/default/GeoTrustUniversalCA2.crt deleted file mode 100644 index 7ace610f9486..000000000000 --- a/test/rules/platform_certs/default/GeoTrustUniversalCA2.crt +++ /dev/null @@ -1,31 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFbDCCA1SgAwIBAgIBATANBgkqhkiG9w0BAQUFADBHMQswCQYDVQQGEwJVUzEW -MBQGA1UEChMNR2VvVHJ1c3QgSW5jLjEgMB4GA1UEAxMXR2VvVHJ1c3QgVW5pdmVy -c2FsIENBIDIwHhcNMDQwMzA0MDUwMDAwWhcNMjkwMzA0MDUwMDAwWjBHMQswCQYD -VQQGEwJVUzEWMBQGA1UEChMNR2VvVHJ1c3QgSW5jLjEgMB4GA1UEAxMXR2VvVHJ1 -c3QgVW5pdmVyc2FsIENBIDIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoIC -AQCzVFLByT7y2dyxUxpZKeexw0Uo5dfR7cXFS6GqdHtXr0om/Nj1XqduGdt0DE81 -WzILAePb63p3NeqqWuDW6KFXlPCQo3RWlEQwAx5cTiuFJnSCegx2oG9NzkEtoBUG -FF+3Qs17j1hhNNwqCPkuwwGmIkQcTAeC5lvO0Ep8BNMZcyfwqph/Lq9O64ceJHdq -XbboW0W63MOhBW9Wjo8QJqVJwy7XQYci4E+GymC16qFjwAGXEHm9ADwSbSsVsaxL -se4YuU6W3Nx2/zu+z18DwPw76L5GG//aQMJS9/7jOvdqdzXQ2o3rXhhqMcceujwb -KNZrVMaqW9eiLBsZzKIC9ptZvTdrhrVtgrrY6slWvKk2WP0+GfPtDCapkzj4T8Fd -IgbQl+rhrcZV4IErKIM6+vR7IVEAvlI4zs1meaj0gVbi0IMJR1FbUGrP20gaXT73 -y/Zl92zxlfgCOzJWgjl6W70viRu/obTo/3+NjN8D8WBOWBFM66M/ECuDmgFz2ZRt -hAAnZqzwcEAJQpKtT5MNYQlRJNiS1QuUYbKHsu3/mjX/hVTK7URDrBs8FmtISgoc -QIgfksILAAX/8sgCSqSqqcyZlpwvWOB94b67B9xfBHJcMTTD7F8t4D1kkCLm0ey4 -Lt1ZrtmhN79UNdxzMk+MBB4zsslG8dhcyFVQyWi9qLo2CQIDAQABo2MwYTAPBgNV -HRMBAf8EBTADAQH/MB0GA1UdDgQWBBR281Xh+qQ2+/CfXGJx7Tz0RzgQKzAfBgNV -HSMEGDAWgBR281Xh+qQ2+/CfXGJx7Tz0RzgQKzAOBgNVHQ8BAf8EBAMCAYYwDQYJ -KoZIhvcNAQEFBQADggIBAGbBxiPz2eAubl/oz66wsCVNK/g7WJtAJDday6sWSf+z -dXkzoS9tcBc0kf5nfo/sm+VegqlVHy/c1FEHEv6sFj4sNcZj/NwQ6w2jqtB8zNHQ -L1EuxBRa3ugZ4T7GzKQp5y6EqgYweHZUcyiYWTjgAA1i00J9IZ+uPTqM1fp3DRgr -Fg5fNuH8KrUwJM/gYwx7WBr+mbpCErGR9Hxo4sjoryzqyX6uuyo9DRXcNJW2GHSo -ag/HtPQTxORb7QrSpJdMKu0vbBKJPfEncKpqA1Ihn0CoZ1Dy81of398j9tx4TuaY -T1U6U+Pv8vSfx3zYWK8pIpe44L2RLrB27FcRz+8pRPPphXpgY+RdM4kX2TGq2tbz -GDVyz4crL2MjhF2EjD9XoIj8mZEoJmmZ1I+XRL6O1UixpCgp8RW04eWe3fiPpm8m -1wk8OhwRDqZsN/etRIcsKMfYdIKz0G9KV7s1KSegi+ghp4dkNl3M2Basx7InQJJV -OCiNUW7dFGdTbHFcJoRNdVq2fmBWqU2t+5sel/MN2dKXVHfaPRK34B7vCAas+YWH -6aLcr34YEoP9VhdBLtUpgn2Z9DH2canPLAEnpQW5qrJITirvn5NSUZU8UnOOVkwX -QMAJKOSLakhT2+zNVVXxxvjpoixMptEmX36vWkzaH6byHCx+rgIW0lbQL1dTR+iS ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/GlobalChambersignRoot-2008.crt b/test/rules/platform_certs/default/GlobalChambersignRoot-2008.crt deleted file mode 100644 index 4b2ff6235f49..000000000000 --- a/test/rules/platform_certs/default/GlobalChambersignRoot-2008.crt +++ /dev/null @@ -1,41 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIHSTCCBTGgAwIBAgIJAMnN0+nVfSPOMA0GCSqGSIb3DQEBBQUAMIGsMQswCQYD -VQQGEwJFVTFDMEEGA1UEBxM6TWFkcmlkIChzZWUgY3VycmVudCBhZGRyZXNzIGF0 -IHd3dy5jYW1lcmZpcm1hLmNvbS9hZGRyZXNzKTESMBAGA1UEBRMJQTgyNzQzMjg3 -MRswGQYDVQQKExJBQyBDYW1lcmZpcm1hIFMuQS4xJzAlBgNVBAMTHkdsb2JhbCBD -aGFtYmVyc2lnbiBSb290IC0gMjAwODAeFw0wODA4MDExMjMxNDBaFw0zODA3MzEx -MjMxNDBaMIGsMQswCQYDVQQGEwJFVTFDMEEGA1UEBxM6TWFkcmlkIChzZWUgY3Vy -cmVudCBhZGRyZXNzIGF0IHd3dy5jYW1lcmZpcm1hLmNvbS9hZGRyZXNzKTESMBAG -A1UEBRMJQTgyNzQzMjg3MRswGQYDVQQKExJBQyBDYW1lcmZpcm1hIFMuQS4xJzAl -BgNVBAMTHkdsb2JhbCBDaGFtYmVyc2lnbiBSb290IC0gMjAwODCCAiIwDQYJKoZI -hvcNAQEBBQADggIPADCCAgoCggIBAMDfVtPkOpt2RbQT2//BthmLN0EYlVJH6xed -KYiONWwGMi5HYvNJBL99RDaxccy9Wglz1dmFRP+RVyXfXjaOcNFccUMd2drvXNL7 -G706tcuto8xEpw2uIRU/uXpbknXYpBI4iRmKt4DS4jJvVpyR1ogQC7N0ZJJ0YPP2 -zxhPYLIj0Mc7zmFLmY/CDNBAspjcDahOo7kKrmCgrUVSY7pmvWjg+b4aqIG7HkF4 -ddPB/gBVsIdU6CeQNR1MM62X/JcumIS/LMmjv9GYERTtY/jKmIhYF5ntRQOXfjyG -HoiMvvKRhI9lNNgATH23MRdaKXoKGCQwoze1eqkBfSbW+Q6OWfH9GzO1KTsXO0G2 -Id3UwD2ln58fQ1DJu7xsepeY7s2MH/ucUa6LcL0nn3HAa6x9kGbo1106DbDVwo3V -yJ2dwW3Q0L9R5OP4wzg2rtandeavhENdk5IMagfeOx2YItaswTXbo6Al/3K1dh3e -beksZixShNBFks4c5eUzHdwHU1SjqoI7mjcv3N2gZOnm3b2u/GSFHTynyQbehP9r -6GsaPMWis0L7iwk+XwhSx2LE1AVxv8Rk5Pihg+g+EpuoHtQ2TS9x9o0o9oOpE9Jh -wZG7SMA0j0GMS0zbaRL/UJScIINZc+18ofLx/d33SdNDWKBWY8o9PeU1VlnpDsog -zCtLkykPAgMBAAGjggFqMIIBZjASBgNVHRMBAf8ECDAGAQH/AgEMMB0GA1UdDgQW -BBS5CcqcHtvTbDprru1U8VuTBjUuXjCB4QYDVR0jBIHZMIHWgBS5CcqcHtvTbDpr -ru1U8VuTBjUuXqGBsqSBrzCBrDELMAkGA1UEBhMCRVUxQzBBBgNVBAcTOk1hZHJp -ZCAoc2VlIGN1cnJlbnQgYWRkcmVzcyBhdCB3d3cuY2FtZXJmaXJtYS5jb20vYWRk -cmVzcykxEjAQBgNVBAUTCUE4Mjc0MzI4NzEbMBkGA1UEChMSQUMgQ2FtZXJmaXJt -YSBTLkEuMScwJQYDVQQDEx5HbG9iYWwgQ2hhbWJlcnNpZ24gUm9vdCAtIDIwMDiC -CQDJzdPp1X0jzjAOBgNVHQ8BAf8EBAMCAQYwPQYDVR0gBDYwNDAyBgRVHSAAMCow -KAYIKwYBBQUHAgEWHGh0dHA6Ly9wb2xpY3kuY2FtZXJmaXJtYS5jb20wDQYJKoZI -hvcNAQEFBQADggIBAICIf3DekijZBZRG/5BXqfEv3xoNa/p8DhxJJHkn2EaqbylZ -UohwEurdPfWbU1Rv4WCiqAm57OtZfMY18dwY6fFn5a+6ReAJ3spED8IXDneRRXoz -X1+WLGiLwUePmJs9wOzL9dWCkoQ10b42OFZyMVtHLaoXpGNR6woBrX/sdZ7LoR/x -fxKxueRkf2fWIyr0uDldmOghp+G9PUIadJpwr2hsUF1Jz//7Dl3mLEfXgTpZALVz -a2Mg9jFFCDkO9HB+QHBaP9BrQql0PSgvAm11cpUJjUhjxsYjV5KTXjXBjfkK9yyd -Yhz2rXzdpjEetrHHfoUm+qRqtdpjMNHvkzeyZi99Bffnt0uYlDXA2TopwZ2yUDMd -SqlapskD7+3056huirRXhOukP9DuqqqHW2Pok+JrqNS4cnhrG+055F3Lm6qH1U9O -AP7Zap88MQ8oAgF9mOinsKJknnn4SPIVqczmyETrP3iZ8ntxPjzxmKfFGBI/5rso -M0LpRQp8bfKGeS/Fghl9CYl8slR2iK7ewfPM4W7bMdaTrpmg7yVqc5iJWzouE4ge -v8CSlDQb4ye3ix5vQv/n6TebUB0tovkC7stYWDpxvGjjqsGvHCgfotwjZT+B6q6Z -09gwzxMNTxXJhLynSC34MCN32EZLeW32jO06f2ARePTpm67VVMB0gNELQp/B ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/GlobalChambersignRoot.crt b/test/rules/platform_certs/default/GlobalChambersignRoot.crt deleted file mode 100644 index 41d725abdcf3..000000000000 --- a/test/rules/platform_certs/default/GlobalChambersignRoot.crt +++ /dev/null @@ -1,28 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIExTCCA62gAwIBAgIBADANBgkqhkiG9w0BAQUFADB9MQswCQYDVQQGEwJFVTEn -MCUGA1UEChMeQUMgQ2FtZXJmaXJtYSBTQSBDSUYgQTgyNzQzMjg3MSMwIQYDVQQL -ExpodHRwOi8vd3d3LmNoYW1iZXJzaWduLm9yZzEgMB4GA1UEAxMXR2xvYmFsIENo -YW1iZXJzaWduIFJvb3QwHhcNMDMwOTMwMTYxNDE4WhcNMzcwOTMwMTYxNDE4WjB9 -MQswCQYDVQQGEwJFVTEnMCUGA1UEChMeQUMgQ2FtZXJmaXJtYSBTQSBDSUYgQTgy -NzQzMjg3MSMwIQYDVQQLExpodHRwOi8vd3d3LmNoYW1iZXJzaWduLm9yZzEgMB4G -A1UEAxMXR2xvYmFsIENoYW1iZXJzaWduIFJvb3QwggEgMA0GCSqGSIb3DQEBAQUA -A4IBDQAwggEIAoIBAQCicKLQn0KuWxfH2H3PFIP8T8mhtxOviteePgQKkotgVvq0 -Mi+ITaFgCPS3CU6gSS9J1tPfnZdan5QEcOw/Wdm3zGaLmFIoCQLfxS+EjXqXd7/s -QJ0lcqu1PzKY+7e3/HKE5TWH+VX6ox8Oby4o3Wmg2UIQxvi1RMLQQ3/bvOSiPGpV -eAp3qdjqGTK3L/5cPxvusZjsyq16aUXjlg9V9ubtdepl6DJWk0aJqCWKZQbua795 -B9Dxt6/tLE2Su8CoX6dnfQTyFQhwrJLWfQTSM/tMtgsL+xrJxI0DqX5c8lCrEqWh -z0hQpe/SyBoT+rB/sYIcd2oPX9wLlY/vQ37mRQklAgEDo4IBUDCCAUwwEgYDVR0T -AQH/BAgwBgEB/wIBDDA/BgNVHR8EODA2MDSgMqAwhi5odHRwOi8vY3JsLmNoYW1i -ZXJzaWduLm9yZy9jaGFtYmVyc2lnbnJvb3QuY3JsMB0GA1UdDgQWBBRDnDafsJ4w -TcbOX60Qq+UDpfqpFDAOBgNVHQ8BAf8EBAMCAQYwEQYJYIZIAYb4QgEBBAQDAgAH -MCoGA1UdEQQjMCGBH2NoYW1iZXJzaWducm9vdEBjaGFtYmVyc2lnbi5vcmcwKgYD -VR0SBCMwIYEfY2hhbWJlcnNpZ25yb290QGNoYW1iZXJzaWduLm9yZzBbBgNVHSAE -VDBSMFAGCysGAQQBgYcuCgEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly9jcHMuY2hh -bWJlcnNpZ24ub3JnL2Nwcy9jaGFtYmVyc2lnbnJvb3QuaHRtbDANBgkqhkiG9w0B -AQUFAAOCAQEAPDtwkfkEVCeR4e3t/mh/YV3lQWVPMvEYBZRqHN4fcNs+ezICNLUM -bKGKfKX0j//U2K0X1S0E0T9YgOKBWYi+wONGkyT+kL0mojAt6JcmVzWJdJYY9hXi -ryQZVgICsroPFOrGimbBhkVVi76SvpykBMdJPJ7oKXqJ1/6v/2j1pReQvayZzKWG -VwlnRtvWFsJG8eSpUPWP0ZIV018+xgBJOm5YstHRJw0lyDL4IBHNfTIzSJRUTN3c -ecQwn+uOuFW114hcxWokPbLTBQNRxgfvzBRydD1ucs4YKIxKoHflCStFREest2d/ -AYoFWpO+ocH/+OcOZ6RHSXZddZAa9SaP8A== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/GlobalSign.crt b/test/rules/platform_certs/default/GlobalSign.crt deleted file mode 100644 index 55ddeb02e261..000000000000 --- a/test/rules/platform_certs/default/GlobalSign.crt +++ /dev/null @@ -1,21 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDXzCCAkegAwIBAgILBAAAAAABIVhTCKIwDQYJKoZIhvcNAQELBQAwTDEgMB4G -A1UECxMXR2xvYmFsU2lnbiBSb290IENBIC0gUjMxEzARBgNVBAoTCkdsb2JhbFNp -Z24xEzARBgNVBAMTCkdsb2JhbFNpZ24wHhcNMDkwMzE4MTAwMDAwWhcNMjkwMzE4 -MTAwMDAwWjBMMSAwHgYDVQQLExdHbG9iYWxTaWduIFJvb3QgQ0EgLSBSMzETMBEG -A1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbjCCASIwDQYJKoZI -hvcNAQEBBQADggEPADCCAQoCggEBAMwldpB5BngiFvXAg7aEyiie/QV2EcWtiHL8 -RgJDx7KKnQRfJMsuS+FggkbhUqsMgUdwbN1k0ev1LKMPgj0MK66X17YUhhB5uzsT -gHeMCOFJ0mpiLx9e+pZo34knlTifBtc+ycsmWQ1z3rDI6SYOgxXG71uL0gRgykmm -KPZpO/bLyCiR5Z2KYVc3rHQU3HTgOu5yLy6c+9C7v/U9AOEGM+iCK65TpjoWc4zd -QQ4gOsC0p6Hpsk+QLjJg6VfLuQSSaGjlOCZgdbKfd/+RFO+uIEn8rUAVSNECMWEZ -XriX7613t2Saer9fwRPvm2L7DWzgVGkWqQPabumDk3F2xmmFghcCAwEAAaNCMEAw -DgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFI/wS3+o -LkUkrk1Q+mOai97i3Ru8MA0GCSqGSIb3DQEBCwUAA4IBAQBLQNvAUKr+yAzv95ZU -RUm7lgAJQayzE4aGKAczymvmdLm6AC2upArT9fHxD4q/c2dKg8dEe3jgr25sbwMp -jjM5RcOO5LlXbKr8EpbsU8Yt5CRsuZRj+9xTaGdWPoO4zzUhw8lo/s7awlOqzJCK -6fBdRoyV3XpYKBovHd7NADdBj+1EbddTKJd+82cEHhXXipa0095MJ6RMG3NzdvQX -mcIfeg7jLQitChws/zyrVQ4PkX4268NXSb7hLi18YIvDQVETI53O9zJrlAGomecs -Mx86OyXShkDOOyyGeMlhLxS67ttVb9+E7gUJTb0o2HLO02JQZR7rkpeDMdmztcpH -WD9f ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/GlobalSignRootCA.crt b/test/rules/platform_certs/default/GlobalSignRootCA.crt deleted file mode 100644 index 8523875624b5..000000000000 --- a/test/rules/platform_certs/default/GlobalSignRootCA.crt +++ /dev/null @@ -1,21 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDdTCCAl2gAwIBAgILBAAAAAABFUtaw5QwDQYJKoZIhvcNAQEFBQAwVzELMAkG -A1UEBhMCQkUxGTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYtc2ExEDAOBgNVBAsTB1Jv -b3QgQ0ExGzAZBgNVBAMTEkdsb2JhbFNpZ24gUm9vdCBDQTAeFw05ODA5MDExMjAw -MDBaFw0yODAxMjgxMjAwMDBaMFcxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9i -YWxTaWduIG52LXNhMRAwDgYDVQQLEwdSb290IENBMRswGQYDVQQDExJHbG9iYWxT -aWduIFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDaDuaZ -jc6j40+Kfvvxi4Mla+pIH/EqsLmVEQS98GPR4mdmzxzdzxtIK+6NiY6arymAZavp -xy0Sy6scTHAHoT0KMM0VjU/43dSMUBUc71DuxC73/OlS8pF94G3VNTCOXkNz8kHp -1Wrjsok6Vjk4bwY8iGlbKk3Fp1S4bInMm/k8yuX9ifUSPJJ4ltbcdG6TRGHRjcdG -snUOhugZitVtbNV4FpWi6cgKOOvyJBNPc1STE4U6G7weNLWLBYy5d4ux2x8gkasJ -U26Qzns3dLlwR5EiUWMWea6xrkEmCMgZK9FGqkjWZCrXgzT/LCrBbBlDSgeF59N8 -9iFo7+ryUp9/k5DPAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8E -BTADAQH/MB0GA1UdDgQWBBRge2YaRQ2XyolQL30EzTSo//z9SzANBgkqhkiG9w0B -AQUFAAOCAQEA1nPnfE920I2/7LqivjTFKDK1fPxsnCwrvQmeU79rXqoRSLblCKOz -yj1hTdNGCbM+w6DjY1Ub8rrvrTnhQ7k4o+YviiY776BQVvnGCv04zcQLcFGUl5gE -38NflNUVyRRBnMRddWQVDf9VMOyGj/8N7yy5Y0b2qvzfvGn9LhJIZJrglfCm7ymP -AbEVtQwdpf5pLGkkeB6zpxxxYu7KyJesF12KwvhHhm4qxFYxldBniYUr+WymXUad -DKqC5JlR3XC321Y9YeRq4VzW9v493kHMB65jUr9TU/Qr6cf9tveCX4XSQRjbgbME -HMUfpIBvFSDJ3gyICh3WZlXi/EjJKSZp4A== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/GlobalSign_2.crt b/test/rules/platform_certs/default/GlobalSign_2.crt deleted file mode 100644 index 6ebf7bec0eb9..000000000000 --- a/test/rules/platform_certs/default/GlobalSign_2.crt +++ /dev/null @@ -1,22 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDujCCAqKgAwIBAgILBAAAAAABD4Ym5g0wDQYJKoZIhvcNAQEFBQAwTDEgMB4G -A1UECxMXR2xvYmFsU2lnbiBSb290IENBIC0gUjIxEzARBgNVBAoTCkdsb2JhbFNp -Z24xEzARBgNVBAMTCkdsb2JhbFNpZ24wHhcNMDYxMjE1MDgwMDAwWhcNMjExMjE1 -MDgwMDAwWjBMMSAwHgYDVQQLExdHbG9iYWxTaWduIFJvb3QgQ0EgLSBSMjETMBEG -A1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbjCCASIwDQYJKoZI -hvcNAQEBBQADggEPADCCAQoCggEBAKbPJA6+Lm8omUVCxKs+IVSbC9N/hHD6ErPL -v4dfxn+G07IwXNb9rfF73OX4YJYJkhD10FPe+3t+c4isUoh7SqbKSaZeqKeMWhG8 -eoLrvozps6yWJQeXSpkqBy+0Hne/ig+1AnwblrjFuTosvNYSuetZfeLQBoZfXklq -tTleiDTsvHgMCJiEbKjNS7SgfQx5TfC4LcshytVsW33hoCmEofnTlEnLJGKRILzd -C9XZzPnqJworc5HGnRusyMvo4KD0L5CLTfuwNhv2GXqF4G3yYROIXJ/gkwpRl4pa -zq+r1feqCapgvdzZX99yqWATXgAByUr6P6TqBwMhAo6CygPCm48CAwEAAaOBnDCB -mTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUm+IH -V2ccHsBqBt5ZtJot39wZhi4wNgYDVR0fBC8wLTAroCmgJ4YlaHR0cDovL2NybC5n -bG9iYWxzaWduLm5ldC9yb290LXIyLmNybDAfBgNVHSMEGDAWgBSb4gdXZxwewGoG -3lm0mi3f3BmGLjANBgkqhkiG9w0BAQUFAAOCAQEAmYFThxxol4aR7OBKuEQLq4Gs -J0/WwbgcQ3izDJr86iw8bmEbTUsp9Z8FHSbBuOmDAGJFtqkIk7mpM0sYmsL4h4hO -291xNBrBVNpGP+DTKqttVCL1OmLNIG+6KYnX3ZHu01yiPqFbQfXf5WRDLenVOavS -ot+3i9DAgBkcRcAtjOj4LaR0VknFBbVPFd5uRHg5h6h+u/N5GJG79G+dwfCMNYxd -AfvDbbnvRG15RjF+Cv6pgsH/76tuIMRQyV+dTZsXjAzlAcmgQWpzU/qlULRuJQ/7 -TBj0/VLZjmmx6BEP3ojY+x1J96relc8geMJgEtslQIxq/H5COEBkEveegeGTLg== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/GlobalSign_3.crt b/test/rules/platform_certs/default/GlobalSign_3.crt deleted file mode 100644 index 6b4fa4c6321b..000000000000 --- a/test/rules/platform_certs/default/GlobalSign_3.crt +++ /dev/null @@ -1,14 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICHjCCAaSgAwIBAgIRYFlJ4CYuu1X5CneKcflK2GwwCgYIKoZIzj0EAwMwUDEk -MCIGA1UECxMbR2xvYmFsU2lnbiBFQ0MgUm9vdCBDQSAtIFI1MRMwEQYDVQQKEwpH -bG9iYWxTaWduMRMwEQYDVQQDEwpHbG9iYWxTaWduMB4XDTEyMTExMzAwMDAwMFoX -DTM4MDExOTAzMTQwN1owUDEkMCIGA1UECxMbR2xvYmFsU2lnbiBFQ0MgUm9vdCBD -QSAtIFI1MRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQDEwpHbG9iYWxTaWdu -MHYwEAYHKoZIzj0CAQYFK4EEACIDYgAER0UOlvt9Xb/pOdEh+J8LttV7HpI6SFkc -8GIxLcB6KP4ap1yztsyX50XUWPrRd21DosCHZTQKH3rd6zwzocWdTaRvQZU4f8ke -hOvRnkmSh5SHDDqFSmafnVmTTZdhBoZKo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYD -VR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUPeYpSJvqB8ohREom3m7e0oPQn1kwCgYI -KoZIzj0EAwMDaAAwZQIxAOVpEslu28YxuglB4Zf4+/2a4n0Sye18ZNPLBSWLVtmg -515dTguDnFt2KaAJJiFqYgIwcdK1j1zqO+F4CYWodZI7yFz9SO8NdCKoCOJuxUnO -xwy8p2Fp8fc74SrL+SvzZpA3 ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/GlobalSign_4.crt b/test/rules/platform_certs/default/GlobalSign_4.crt deleted file mode 100644 index 77ec580465c5..000000000000 --- a/test/rules/platform_certs/default/GlobalSign_4.crt +++ /dev/null @@ -1,13 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIB4TCCAYegAwIBAgIRKjikHJYKBN5CsiilC+g0mAIwCgYIKoZIzj0EAwIwUDEk -MCIGA1UECxMbR2xvYmFsU2lnbiBFQ0MgUm9vdCBDQSAtIFI0MRMwEQYDVQQKEwpH -bG9iYWxTaWduMRMwEQYDVQQDEwpHbG9iYWxTaWduMB4XDTEyMTExMzAwMDAwMFoX -DTM4MDExOTAzMTQwN1owUDEkMCIGA1UECxMbR2xvYmFsU2lnbiBFQ0MgUm9vdCBD -QSAtIFI0MRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQDEwpHbG9iYWxTaWdu -MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEuMZ5049sJQ6fLjkZHAOkrprlOQcJ -FspjsbmG+IpXwVfOQvpzofdlQv8ewQCybnMO/8ch5RikqtlxP6jUuc6MHaNCMEAw -DgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFFSwe61F -uOJAf/sKbvu+M8k8o4TVMAoGCCqGSM49BAMCA0gAMEUCIQDckqGgE6bPA7DmxCGX -kPoUVy0D7O48027KqGx2vKLeuwIgJ6iFJzWbVsaj8kfSt24bAgAXqmemFZHe+pTs -ewv4n4Q= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/GoDaddyClass2CA.crt b/test/rules/platform_certs/default/GoDaddyClass2CA.crt deleted file mode 100644 index 44d4e39200ea..000000000000 --- a/test/rules/platform_certs/default/GoDaddyClass2CA.crt +++ /dev/null @@ -1,24 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEADCCAuigAwIBAgIBADANBgkqhkiG9w0BAQUFADBjMQswCQYDVQQGEwJVUzEh -MB8GA1UEChMYVGhlIEdvIERhZGR5IEdyb3VwLCBJbmMuMTEwLwYDVQQLEyhHbyBE -YWRkeSBDbGFzcyAyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTA0MDYyOTE3 -MDYyMFoXDTM0MDYyOTE3MDYyMFowYzELMAkGA1UEBhMCVVMxITAfBgNVBAoTGFRo -ZSBHbyBEYWRkeSBHcm91cCwgSW5jLjExMC8GA1UECxMoR28gRGFkZHkgQ2xhc3Mg -MiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCASAwDQYJKoZIhvcNAQEBBQADggEN -ADCCAQgCggEBAN6d1+pXGEmhW+vXX0iG6r7d/+TvZxz0ZWizV3GgXne77ZtJ6XCA -PVYYYwhv2vLM0D9/AlQiVBDYsoHUwHU9S3/Hd8M+eKsaA7Ugay9qK7HFiH7Eux6w -wdhFJ2+qN1j3hybX2C32qRe3H3I2TqYXP2WYktsqbl2i/ojgC95/5Y0V4evLOtXi -EqITLdiOr18SPaAIBQi2XKVlOARFmR6jYGB0xUGlcmIbYsUfb18aQr4CUWWoriMY -avx4A6lNf4DD+qta/KFApMoZFv6yyO9ecw3ud72a9nmYvLEHZ6IVDd2gWMZEewo+ -YihfukEHU1jPEX44dMX4/7VpkI+EdOqXG68CAQOjgcAwgb0wHQYDVR0OBBYEFNLE -sNKR1EwRcbNhyz2h/t2oatTjMIGNBgNVHSMEgYUwgYKAFNLEsNKR1EwRcbNhyz2h -/t2oatTjoWekZTBjMQswCQYDVQQGEwJVUzEhMB8GA1UEChMYVGhlIEdvIERhZGR5 -IEdyb3VwLCBJbmMuMTEwLwYDVQQLEyhHbyBEYWRkeSBDbGFzcyAyIENlcnRpZmlj -YXRpb24gQXV0aG9yaXR5ggEAMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQEFBQAD -ggEBADJL87LKPpH8EsahB4yOd6AzBhRckB4Y9wimPQoZ+YeAEW5p5JYXMP80kWNy -OO7MHAGjHZQopDH2esRU1/blMVgDoszOYtuURXO1v0XJJLXVggKtI3lpjbi2Tc7P -TMozI+gciKqdi0FuFskg5YmezTvacPd+mSYgFFQlq25zheabIZ0KbIIOqPjCDPoQ -HmyW74cNxA9hi63ugyuV+I6ShHI56yDqg+2DzZduCLzrTia2cyvk0/ZM/iZx4mER -dEr/VxqHD3VILs9RaRegAhJhldXRQLIQTO7ErBBDpqWeCtWVYpoNz4iCxTIM5Cuf -ReYNnyicsbkqWletNw+vHX/bvZ8= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/GoDaddyRootCertificateAuthority-G2.crt b/test/rules/platform_certs/default/GoDaddyRootCertificateAuthority-G2.crt deleted file mode 100644 index b0fe8aa03cbc..000000000000 --- a/test/rules/platform_certs/default/GoDaddyRootCertificateAuthority-G2.crt +++ /dev/null @@ -1,23 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDxTCCAq2gAwIBAgIBADANBgkqhkiG9w0BAQsFADCBgzELMAkGA1UEBhMCVVMx -EDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxGjAYBgNVBAoT -EUdvRGFkZHkuY29tLCBJbmMuMTEwLwYDVQQDEyhHbyBEYWRkeSBSb290IENlcnRp -ZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTA5MDkwMTAwMDAwMFoXDTM3MTIzMTIz -NTk1OVowgYMxCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6b25hMRMwEQYDVQQH -EwpTY290dHNkYWxlMRowGAYDVQQKExFHb0RhZGR5LmNvbSwgSW5jLjExMC8GA1UE -AxMoR28gRGFkZHkgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgLSBHMjCCASIw -DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL9xYgjx+lk09xvJGKP3gElY6SKD -E6bFIEMBO4Tx5oVJnyfq9oQbTqC023CYxzIBsQU+B07u9PpPL1kwIuerGVZr4oAH -/PMWdYA5UXvl+TW2dE6pjYIT5LY/qQOD+qK+ihVqf94Lw7YZFAXK6sOoBJQ7Rnwy -DfMAZiLIjWltNowRGLfTshxgtDj6AozO091GB94KPutdfMh8+7ArU6SSYmlRJQVh -GkSBjCypQ5Yj36w6gZoOKcUcqeldHraenjAKOc7xiID7S13MMuyFYkMlNAJWJwGR -tDtwKj9useiciAF9n9T521NtYJ2/LOdYq7hfRvzOxBsDPAnrSTFcaUaz4EcCAwEA -AaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYE -FDqahQcQZyi27/a9BUFuIMGU2g/eMA0GCSqGSIb3DQEBCwUAA4IBAQCZ21151fmX -WWcDYfF+OwYxdS2hII5PZYe096acvNjpL9DbWu7PdIxztDhC2gV7+AJ1uP2lsdeu -9tfeE8tTEH6KRtGX+rcuKxGrkLAngPnon1rpN5+r5N9ss4UXnT3ZJE95kTXWXwTr -gIOrmgIttRD02JDHBHNA7XIloKmf7J6raBKZV8aPEjoJpL1E/QYVN8Gb5DKj7Tjo -2GTzLH4U/ALqn83/B2gX2yKQOC16jdFU8WnjXzPKej17CuPKf1855eJ1usV2GDPO -LPAvTK33sefOT6jEm0pUBsV/fdUID+Ic/n4XuKxe9tQWskMJDE32p2u0mYRlynqI -4uJEvlz36hz1 ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/GoogleInternetAuthorityG2.crt b/test/rules/platform_certs/default/GoogleInternetAuthorityG2.crt deleted file mode 100644 index 8e545ca70aa7..000000000000 --- a/test/rules/platform_certs/default/GoogleInternetAuthorityG2.crt +++ /dev/null @@ -1,24 +0,0 @@ ------BEGIN CERTIFICATE----- -MIID8DCCAtigAwIBAgIDAjqSMA0GCSqGSIb3DQEBCwUAMEIxCzAJBgNVBAYTAlVT -MRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMRswGQYDVQQDExJHZW9UcnVzdCBHbG9i -YWwgQ0EwHhcNMTUwNDAxMDAwMDAwWhcNMTcxMjMxMjM1OTU5WjBJMQswCQYDVQQG -EwJVUzETMBEGA1UEChMKR29vZ2xlIEluYzElMCMGA1UEAxMcR29vZ2xlIEludGVy -bmV0IEF1dGhvcml0eSBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB -AJwqBHdc2FCROgajguDYUEi8iT/xGXAaiEZ+4I/F8YnOIe5a/mENtzJEiaB0C1NP -VaTOgmKV7utZX8bhBYASxF6UP7xbSDj0U/ck5vuR6RXEz/RTDfRK/J9U3n2+oGtv -h8DQUB8oMANA2ghzUWx//zo8pzcGjr1LEQTrfSTe5vn8MXH7lNVg8y5Kr0LSy+rE -ahqyzFPdFUuLH8gZYR/Nnag+YyuENWllhMgZxUYi+FOVvuOAShDGKuy6lyARxzmZ -EASg8GF6lSWMTlJ14rbtCMoU/M4iarNOz0YDl5cDfsCx3nuvRTPPuj5xt970JSXC -DTWJnZ37DhF5iR43xa+OcmkCAwEAAaOB5zCB5DAfBgNVHSMEGDAWgBTAephojYn7 -qwVkDBF9qn1luMrMTjAdBgNVHQ4EFgQUSt0GFhu89mi1dvWBtrtiGrpagS8wDgYD -VR0PAQH/BAQDAgEGMC4GCCsGAQUFBwEBBCIwIDAeBggrBgEFBQcwAYYSaHR0cDov -L2cuc3ltY2QuY29tMBIGA1UdEwEB/wQIMAYBAf8CAQAwNQYDVR0fBC4wLDAqoCig -JoYkaHR0cDovL2cuc3ltY2IuY29tL2NybHMvZ3RnbG9iYWwuY3JsMBcGA1UdIAQQ -MA4wDAYKKwYBBAHWeQIFATANBgkqhkiG9w0BAQsFAAOCAQEACE4Ep4B/EBZDXgKt -10KA9LCO0q6z6xF9kIQYfeeQFftJf6iZBZG7esnWPDcYCZq2x5IgBzUzCeQoY3IN -tOAynIeYxBt2iWfBUFiwE6oTGhsypb7qEZVMSGNJ6ZldIDfM/ippURaVS6neSYLA -EHD0LPPsvCQk0E6spdleHm2SwaesSDWB+eXknGVpzYekQVA/LlelkVESWA6MCaGs -eqQSpSfzmhCXfVUDBvdmWF9fZOGrXW2lOUh1mEwpWjqN0yvKnFUEv/TmFNWArCbt -F4mmk2xcpMy48GaOZON9muIAs0nH5Aqq3VuDx3CQRk6+0NtZlmwu9RY23nHMAcIS -wSHGFg== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/HellenicAcademicandResearchInstitutionsRootCA2011.crt b/test/rules/platform_certs/default/HellenicAcademicandResearchInstitutionsRootCA2011.crt deleted file mode 100644 index 9c47dec4aa78..000000000000 --- a/test/rules/platform_certs/default/HellenicAcademicandResearchInstitutionsRootCA2011.crt +++ /dev/null @@ -1,25 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEMTCCAxmgAwIBAgIBADANBgkqhkiG9w0BAQUFADCBlTELMAkGA1UEBhMCR1Ix -RDBCBgNVBAoTO0hlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1 -dGlvbnMgQ2VydC4gQXV0aG9yaXR5MUAwPgYDVQQDEzdIZWxsZW5pYyBBY2FkZW1p -YyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIFJvb3RDQSAyMDExMB4XDTExMTIw -NjEzNDk1MloXDTMxMTIwMTEzNDk1MlowgZUxCzAJBgNVBAYTAkdSMUQwQgYDVQQK -EztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENl -cnQuIEF1dGhvcml0eTFAMD4GA1UEAxM3SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJl -c2VhcmNoIEluc3RpdHV0aW9ucyBSb290Q0EgMjAxMTCCASIwDQYJKoZIhvcNAQEB -BQADggEPADCCAQoCggEBAKlTAOMupvaO+mDYLZU++CwqVE7NuYRhlFhPjz2L5EPz -dYmNUeTDN9KKiE15HrcS3UN4SoqS5tdI1Q+kOilENbgH9mgdVc04UfCMJDGFr4PJ -fel3r+0ae50X+bOdOFAPplp5kYCvN66m0zH7tSYJnTxa71HFK9+WXesyHgLacEns -bgzImjeN9/E2YEsmLIKe0HjzDQ9jpFEw4fkrJxIH2Oq9GGKYsFk3fb7u8yBRQlqD -75O6aRXxYp2fmTmCobd0LovUxQt7L/DICto9eQqakxylKHJzkUOap9FNhYS5qXSP -FEDH3N6sQWRstBmbAmNtJGSPRLIl6s5ddAxjMlyNh+UCAwEAAaOBiTCBhjAPBgNV -HRMBAf8EBTADAQH/MAsGA1UdDwQEAwIBBjAdBgNVHQ4EFgQUppFC/RNhSiOeCKQp -5dgTBCPuQSUwRwYDVR0eBEAwPqA8MAWCAy5ncjAFggMuZXUwBoIELmVkdTAGggQu -b3JnMAWBAy5ncjAFgQMuZXUwBoEELmVkdTAGgQQub3JnMA0GCSqGSIb3DQEBBQUA -A4IBAQAf73lB4XtuP7KMhjdCSk4cNx6NZrokgclPEg8hwAOXhiVtXdMiKahsog2p -6z0GW5k6x8zDmjR/qw7IThzh+uTczQ2+vyT+bOdrwg3IBp5OjWEopmr95fZi6hg8 -TqBTnbI6nOulnJEWtk2C4AwFSKls9cz4y51JtPACpf1wA+2KIaWuE4ZJwzNzvoc7 -dIsXRSZMFpGD/md9zU1jZ/rzAxKWeAaNsWftjj++n08C9bMJL/NMh98qy5V8Acys -Nnq/onN694/BtZqhFLKPM58N7yLcZnuEvUUXBj08yrl3NI/K6s8/MT7jiOOASSXI -l7WdmplNsDz4SgCbZN2fOUvRJ9e4 ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/HongkongPostRootCA1.crt b/test/rules/platform_certs/default/HongkongPostRootCA1.crt deleted file mode 100644 index 810fbe95f84e..000000000000 --- a/test/rules/platform_certs/default/HongkongPostRootCA1.crt +++ /dev/null @@ -1,20 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDMDCCAhigAwIBAgICA+gwDQYJKoZIhvcNAQEFBQAwRzELMAkGA1UEBhMCSEsx -FjAUBgNVBAoTDUhvbmdrb25nIFBvc3QxIDAeBgNVBAMTF0hvbmdrb25nIFBvc3Qg -Um9vdCBDQSAxMB4XDTAzMDUxNTA1MTMxNFoXDTIzMDUxNTA0NTIyOVowRzELMAkG -A1UEBhMCSEsxFjAUBgNVBAoTDUhvbmdrb25nIFBvc3QxIDAeBgNVBAMTF0hvbmdr -b25nIFBvc3QgUm9vdCBDQSAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC -AQEArP84tulmAknjorThkPlAj3n54r15/gK97iSSHSL22oVyaf7XPwnU3ZG1ApzQ -jVrhVcNQhrkpJsLj2aDxaQMoIIBFIi1WpztUlVYiWR8o3x8gPW2iNr4joLFutbEn -PzlTCeqrauh0ssJlXI6/fMN4hM2eFvz1Lk8gKgifd/PFHsSaUmYeSF7jEAaPIpjh -ZY4bXSNmO7ilMlHIhqqhqZ5/dpTCpmy3QfDVyAY45tQM4vM7TG1QjMSDJ8EThFk9 -nnV0ttgCXjqQesBCNnLsak3c78QA3xMYV18meMjWCnl3v/evt3a5pQuEF10Q6m/h -q5URX208o1xNg1vysxmKgIsLhwIDAQABoyYwJDASBgNVHRMBAf8ECDAGAQH/AgED -MA4GA1UdDwEB/wQEAwIBxjANBgkqhkiG9w0BAQUFAAOCAQEADkbVPK7ih9legYsC -mEEIjEy82tvuJxuC52pF7BaLT4Wg87JwvVqWuspube5Gi27nKi6Wsxkz67SfqLI3 -7piol7Yutmcn1KZJ/RyTZXaeQi/cImyaT/JaFTmxcdcrUehtHJjA2Sr0oYJ71clB -oiMBdDhViw+5LmeiIAQ32pwL0xch4I+XeTRvhEgCIDMb5jREn5Fw9IBehEPCKdJs -EhTkYY2sEJCehFC78JZvRZ+K88psT/oROhUVRsPNH4NbLUES7VBnQRM9IauUiqpO -fMGx+6fWtScvl6tu4B3i0RwsH0Ti/L6RoZz71ilTc4afU9hDDl3WY4JxHYB0yvbi -AmvZWg== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/IGC_A.crt b/test/rules/platform_certs/default/IGC_A.crt deleted file mode 100644 index 4e4b86b1f679..000000000000 --- a/test/rules/platform_certs/default/IGC_A.crt +++ /dev/null @@ -1,24 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEAjCCAuqgAwIBAgIFORFFEJQwDQYJKoZIhvcNAQEFBQAwgYUxCzAJBgNVBAYT -AkZSMQ8wDQYDVQQIEwZGcmFuY2UxDjAMBgNVBAcTBVBhcmlzMRAwDgYDVQQKEwdQ -TS9TR0ROMQ4wDAYDVQQLEwVEQ1NTSTEOMAwGA1UEAxMFSUdDL0ExIzAhBgkqhkiG -9w0BCQEWFGlnY2FAc2dkbi5wbS5nb3V2LmZyMB4XDTAyMTIxMzE0MjkyM1oXDTIw -MTAxNzE0MjkyMlowgYUxCzAJBgNVBAYTAkZSMQ8wDQYDVQQIEwZGcmFuY2UxDjAM -BgNVBAcTBVBhcmlzMRAwDgYDVQQKEwdQTS9TR0ROMQ4wDAYDVQQLEwVEQ1NTSTEO -MAwGA1UEAxMFSUdDL0ExIzAhBgkqhkiG9w0BCQEWFGlnY2FAc2dkbi5wbS5nb3V2 -LmZyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsh/R0GLFMzvABIaI -s9z4iPf930Pfeo2aSVz2TqrMHLmh6yeJ8kbpO0px1R2OLc/mratjUMdUC24SyZA2 -xtgv2pGqaMVy/hcKshd+ebUyiHDKcMCWSo7kVc0dJ5S/znIq7Fz5cyD+vfcuiWe4 -u0dzEvfRNWk68gq5rv9GQkaiv6GFGvm/5P9JhfejcIYyHF2fYPepraX/z9E0+X1b -F8bc1g4oa8Ld8fUzaJ1O/Id8NhLWo4DoQw1VYZTqZDdH6nfK0LJYBcNdfrGoRpAx -Vs5wKpayMLh35nnAvSk7/ZR3TL0gzUEl4C7HG7vupARB0l2tEmqKm0f7yd1GQOGd -PDPQtQIDAQABo3cwdTAPBgNVHRMBAf8EBTADAQH/MAsGA1UdDwQEAwIBRjAVBgNV -HSAEDjAMMAoGCCqBegF5AQEBMB0GA1UdDgQWBBSjBS8YYFDCiQrdKyFP/45OqDAx -NjAfBgNVHSMEGDAWgBSjBS8YYFDCiQrdKyFP/45OqDAxNjANBgkqhkiG9w0BAQUF -AAOCAQEABdwm2Pp3FURo/C9mOnTgXeQp/wYHE4RKq89toB9RlPhJy3Q2FLwV3duJ -L92PoF189RLrn544pEfMs5bZvpwlqwN+Mw+VgQ39FuCIvjfwbF3QMZsyK10XZZOY -YLxuj7GoPB7ZHPOpJkL5ZB3C55L29B5aqhlSXa/oovdgoPaN8In1buAKBQGVyYsg -Crpa/JosPL3Dt8ldeCUFP1YUmwza+zpI/pdpXsoQhvdOlgQITeywvl3cO45Pwf2a -NjSaTFR+FwNIlQgRHAdvhQh+XU3Endv7rs6y0bO4g2wdsrN58dhwmX7wEwLOXt1R -0982gaEbeC9xs/FZTEYYKKuF0mBWWg== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/IdenTrustCommercialRootCA1.crt b/test/rules/platform_certs/default/IdenTrustCommercialRootCA1.crt deleted file mode 100644 index f173772ed037..000000000000 --- a/test/rules/platform_certs/default/IdenTrustCommercialRootCA1.crt +++ /dev/null @@ -1,31 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFYDCCA0igAwIBAgIQCgFCgAAAAUUjyES1AAAAAjANBgkqhkiG9w0BAQsFADBK -MQswCQYDVQQGEwJVUzESMBAGA1UEChMJSWRlblRydXN0MScwJQYDVQQDEx5JZGVu -VHJ1c3QgQ29tbWVyY2lhbCBSb290IENBIDEwHhcNMTQwMTE2MTgxMjIzWhcNMzQw -MTE2MTgxMjIzWjBKMQswCQYDVQQGEwJVUzESMBAGA1UEChMJSWRlblRydXN0MScw -JQYDVQQDEx5JZGVuVHJ1c3QgQ29tbWVyY2lhbCBSb290IENBIDEwggIiMA0GCSqG -SIb3DQEBAQUAA4ICDwAwggIKAoICAQCnUBneP5k91DNG8W9RYYKyqU+PZ4ldhNlT -3Qwo2dfw/66VQ3KZ+bVdfIrBQuExUHTRgQ18zZshq0PirK1ehm7zCYofWjK9ouuU -+ehcCuz/mNKvcbO0U59Oh++SvL3sTzIwiEsXXlfEU8L2ApeN2WIrvyQfYo3fw7gp -S0l4PJNgiCL8mdo2yMKi1CxUAGc1bnO/AljwpN3lsKImesrgNqUZFvX9t++uP0D1 -bVoE/c40yiTcdCMbXTMTEl3EASX2MN0CXZ/g1Ue9tOsbobtJSdifWwLziuQkkORi -T0/Br4sOdBeo0XKIanoBScy0RnnGF7HamB4HWfp1IYVl3ZBWzvurpWCdxJ35UrCL -vYf5jysjCiN2O/cz4ckA82n5S6LgTrx+kzmEB/dEcH7+B1rlsazRGMzyNeVJSQjK -Vsk9+w8YfYs7wRPCTY/JTw436R+hDmrfYi7LNQZReSzIJTj0+kuniVyc0uMNOYZK -dHzVWYfCP04MXFL0PfdSgvHqo6z9STQaKPNBiDoT7uje/5kdX7rL6B7yuVBgwDHT -c+XvvqDtMwt0viAgxGds8AgDelWAf0ZOlqf0Hj7h9tgJ4TNkK2PXMl6f+cB7D3hv -l7yTmvmcEpB4eoCHFddydJxVdHixuuFucAS6T6C6aMN7/zHwcz09lCqxC0EOoP5N -iGVreTO01wIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB -/zAdBgNVHQ4EFgQU7UQZwNPwBovupHu+QucmVMiONnYwDQYJKoZIhvcNAQELBQAD -ggIBAA2ukDL2pkt8RHYZYR4nKM1eVO8lvOMIkPkp165oCOGUAFjvLi5+U1KMtlwH -6oi6mYtQlNeCgN9hCQCTrQ0U5s7B8jeUeLBfnLOic7iPBZM4zY0+sLj7wM+x8uwt -LRvM7Kqas6pgghstO8OEPVeKlh6cdbjTMM1gCIOQ045U8U1mwF10A0Cj7oV+wh93 -nAbowacYXVKV7cndJZ5t+qntozo00Fl72u1Q8zW/7esUTTHHYPTa8Yec4kjixsU3 -+wYQ+nVZZjFHKdp2mhzpgq7vmrlR94gjmmmVYjzlVYA211QC//G5Xc7UI2/YRYRK -W2XviQzdFKcgyxilJbQN+QHwotL0AMh0jqEqSI5l2xPE4iUXfeu+h1sXIFRRk0pT -AwvsXcoz7WL9RccvW9xYoIA55vrX/hMUpu09lEpCdNTDd1lzzY9GvlU47/rokTLq -l1gEIt44w8y8bckzOmoKaT+gyOpyj4xjhiO9bTyWnpXgSUyqorkqG5w2gXjtw+hG -4iZZRHUe2XWJUc0QhJ1hYMtd+ZciTY6Y5uN/9lu7rs3KSoFrXgvzUeF0K+l+J6fZ -mUlO+KWA2yUPHGNiiskzZ2s8EIPGrd6ozRaOjfAHN3Gf8qv8QfXBi+wAN10J5U6A -7/qxXDgGpRtK4dw4LTzcqx+QGtVKnO7RcGzM7vRX+Bi6hG6H ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/IdenTrustPublicSectorRootCA1.crt b/test/rules/platform_certs/default/IdenTrustPublicSectorRootCA1.crt deleted file mode 100644 index bc54d38b7997..000000000000 --- a/test/rules/platform_certs/default/IdenTrustPublicSectorRootCA1.crt +++ /dev/null @@ -1,31 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFZjCCA06gAwIBAgIQCgFCgAAAAUUjz0Z8AAAAAjANBgkqhkiG9w0BAQsFADBN -MQswCQYDVQQGEwJVUzESMBAGA1UEChMJSWRlblRydXN0MSowKAYDVQQDEyFJZGVu -VHJ1c3QgUHVibGljIFNlY3RvciBSb290IENBIDEwHhcNMTQwMTE2MTc1MzMyWhcN -MzQwMTE2MTc1MzMyWjBNMQswCQYDVQQGEwJVUzESMBAGA1UEChMJSWRlblRydXN0 -MSowKAYDVQQDEyFJZGVuVHJ1c3QgUHVibGljIFNlY3RvciBSb290IENBIDEwggIi -MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC2IpT8pEiv6EdrCvsnduTyP4o7 -ekosMSqMjbCpwzFrqHd2hCa2rIFCDQjrVVi7evi8ZX3yoG2LqEfpYnYeEe4IFNGy -RBb06tD6Hi9e28tzQa68ALBKK0CyrOE7S8ItneShm+waOh7wCLPQ5CQ1B5+ctMlS -bdsHyo+1W/CD80/HLaXIrcuVIKQxKFdYWuSNG5qrng0M8gozOSI5Cpcu81N3uURF -/YTLNiCBWS2ab21ISGHKTN9T0a9SvESfqy9rg3LvdYDaBjMbXcjaY8ZNzaxmMc3R -3j6HEDbhuaR672BQssvKplbgN6+rNBM5Jeg5ZuSYeqoSmJxZZoY+rfGwyj4GD3vw -EUs3oERte8uojHH01bWRNszwFcYr3lEXsZdMUD2xlVl8BX0tIdUAvwFnol57plzy -9yLxkA2T26pEUWbMfXYD62qoKjgZl3YNa4ph+bz27nb9cCvdKTz4Ch5bQhyLVi9V -GxyhLrXHFub4qjySjmm2AcG1hp2JDws4lFTo6tyePSW8Uybt1as5qsVATFSrsrTZ -2fjXctscvG29ZV/viDUqZi/u9rNl8DONfJhBaUYPQxxp+pu10GFqzcpL2UyQRqsV -WaFHVCkugyhfHMKiq3IXAAaOReyL4jM9f9oZRORicsPfIsbyVtTdX5Vy7W1f90gD -W/3FKqD2cyOEEBsB5wIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/ -BAUwAwEB/zAdBgNVHQ4EFgQU43HgntinQtnbcZFrlJPrw6PRFKMwDQYJKoZIhvcN -AQELBQADggIBAEf63QqwEZE4rU1d9+UOl1QZgkiHVIyqZJnYWv6IAcVYpZmxI1Qj -t2odIFflAWJBF9MJ23XLblSQdf4an4EKwt3X9wnQW3IV5B4Jaj0z8yGa5hV+rVHV -DRDtfULAj+7AmgjVQdZcDiFpboBhDhXAuM/FSRJSzL46zNQuOAXeNf0fb7iAaJg9 -TaDKQGXSc3z1i9kKlT/YPyNtGtEqJBnZhbMX73huqVjRI9PHE+1yJX9dsXNw0H8G -lwmEKYBhHfpe/3OsoOOJuBxxFcbeMX8S3OFtm6/n6J91eEyrRjuazr8FGF1NFTwW -mhlQBJqymm9li1JfPFgEKCXAZmExfrngdbkaqIHWchezxQMxNRF4eKLg6TCMf4Df -WN88uieW4oA0beOY02QnrEh+KHdcxiVhJfiFDGX6xDIvpZgF5PgLZxYWxoK4Mhn5 -+bl53B/N66+rDt0b20XkeucC4pVd/GnwU2lhlXV5C15V5jgclKlZM57IcXR5f1GJ -tshquDDIajjDbp7hNxbqBWJMWxJH7ae0s1hWx0nzfxJoCTFx8G34Tkf71oXuxVhA -GaQdp/lLQzfcaFpPz+vCZHTetBXZ9FRUGi8c15dxVJCO2SCdUyt/q4/i6jC8UDfv -8Ue1fXwsBOxonbRJRBD0ckscZOf85muQ3Wl9af0AVqW3rLatt8o+Ae+c ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/Izenpe.com.crt b/test/rules/platform_certs/default/Izenpe.com.crt deleted file mode 100644 index 25f6f360dd28..000000000000 --- a/test/rules/platform_certs/default/Izenpe.com.crt +++ /dev/null @@ -1,34 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIF8TCCA9mgAwIBAgIQALC3WhZIX7/hy/WL1xnmfTANBgkqhkiG9w0BAQsFADA4 -MQswCQYDVQQGEwJFUzEUMBIGA1UECgwLSVpFTlBFIFMuQS4xEzARBgNVBAMMCkl6 -ZW5wZS5jb20wHhcNMDcxMjEzMTMwODI4WhcNMzcxMjEzMDgyNzI1WjA4MQswCQYD -VQQGEwJFUzEUMBIGA1UECgwLSVpFTlBFIFMuQS4xEzARBgNVBAMMCkl6ZW5wZS5j -b20wggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDJ03rKDx6sp4boFmVq -scIbRTJxldn+EFvMr+eleQGPicPK8lVx93e+d5TzcqQsRNiekpsUOqHnJJAKClaO -xdgmlOHZSOEtPtoKct2jmRXagaKH9HtuJneJWK3W6wyyQXpzbm3benhB6QiIEn6H -LmYRY2xU+zydcsC8Lv/Ct90NduM61/e0aL6i9eOBbsFGb12N4E3GVFWJGjMxCrFX -uaOKmMPsOzTFlUFpfnXCPCDFYbpRR6AgkJOhkEvzTnyFRVSa0QUmQbC1TR0zvsQD -yCV8wXDbO/QJLVQnSKwv4cSsPsjLkkxTOTcj7NMB+eAJRE1NZMDhDVqHIrytG6P+ -JrUV86f8hBnp7KGItERphIPzidF0BqnMC9bC3ieFUCbKF7jJeodWLBoBHmy+E60Q -rLUk9TiRodZL2vG70t5HtfG8gfZZa88ZU+mNFctKy6lvROUbQc/hhqfK0GqfvEyN -BjNaooXlkDWgYlwWTvDjovoDGrQscbNYLN57C9saD+veIR8GdwYDsMnvmfzAuU8L -hij+0rnq49qlw0dpEuDb8PYZi+17cNcC1u2HGCgsBCRMd+RIihrGO5rUD8r6ddIB -QFqNeb+Lz0vPqhbBleStTIo+F5HUsWLlguWABKQDfo2/2n+iD5dPDNMN+9fR5XJ+ -HMh3/1uaD7euBUbl8agW7EekFwIDAQABo4H2MIHzMIGwBgNVHREEgagwgaWBD2lu -Zm9AaXplbnBlLmNvbaSBkTCBjjFHMEUGA1UECgw+SVpFTlBFIFMuQS4gLSBDSUYg -QTAxMzM3MjYwLVJNZXJjLlZpdG9yaWEtR2FzdGVpeiBUMTA1NSBGNjIgUzgxQzBB -BgNVBAkMOkF2ZGEgZGVsIE1lZGl0ZXJyYW5lbyBFdG9yYmlkZWEgMTQgLSAwMTAx -MCBWaXRvcmlhLUdhc3RlaXowDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC -AQYwHQYDVR0OBBYEFB0cZQ6o8iV7tJHP5LGx5r1VdGwFMA0GCSqGSIb3DQEBCwUA -A4ICAQB4pgwWSp9MiDrAyw6lFn2fuUhfGI8NYjb2zRlrrKvV9pF9rnHzP7MOeIWb -laQnIUdCSnxIOvVFfLMMjlF4rJUT3sb9fbgakEyrkgPH7UIBzg/YsfqikuFgba56 -awmqxinuaElnMIAkejEWOVt+8Rwu3WwJrfIxwYJOubv5vr8qhT/AQKM6WfxZSzwo -JNu0FXWuDYi6LnPAvViH5ULy617uHjAimcs30cQhbIHsvm0m5hzkQiCeR7Csg1lw -LDXWrzY0tM07+DKo7+N4ifuNRSzanLh+QBxh5z6ikixL8s36mLYp//Pye6kfLqCT -VyvehQP5aTfLnnhqBbTFMXiJ7HqnheG5ezzevh55hM6fcA5ZwjUukCox2eRFekGk -LhObNA5me0mrZJfQRsN5nXJQY6aYWwa9SG3YOYNw6DXwBdGqvOPbyALqfP2C2sJb -UjWumDqtujWTI6cfSN01RpiyEGjkpTHCClguGYEQyVB1/OpaFs4R1+7vUIgtYf8/ -QnMFlEPVjjxOAToZpR9GTnfQXeWBIiGH/pR9hNiTrdZoQ0iy2+tzJOeRf1SktoA+ -naM8THLCV8Sg1Mw4J87VBp6iSNnpn86CcDaTmjvfliHjWbcM2pE38P1ZWrOZyGls -QyYBNWNgVYkDOnXYukrZVP/u3oDYLdE41V4tC5h9Pmzb/CaIxw== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/Juur-SK.crt b/test/rules/platform_certs/default/Juur-SK.crt deleted file mode 100644 index 4fb7be1a334d..000000000000 --- a/test/rules/platform_certs/default/Juur-SK.crt +++ /dev/null @@ -1,29 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIE5jCCA86gAwIBAgIEO45L/DANBgkqhkiG9w0BAQUFADBdMRgwFgYJKoZIhvcN -AQkBFglwa2lAc2suZWUxCzAJBgNVBAYTAkVFMSIwIAYDVQQKExlBUyBTZXJ0aWZp -dHNlZXJpbWlza2Vza3VzMRAwDgYDVQQDEwdKdXVyLVNLMB4XDTAxMDgzMDE0MjMw -MVoXDTE2MDgyNjE0MjMwMVowXTEYMBYGCSqGSIb3DQEJARYJcGtpQHNrLmVlMQsw -CQYDVQQGEwJFRTEiMCAGA1UEChMZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czEQ -MA4GA1UEAxMHSnV1ci1TSzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB -AIFxNj4zB9bjMI0TfncyRsvPGbJgMUaXhvSYRqTCZUXP00B841oiqBB4M8yIsdOB -SvZiF3tfTQou0M+LI+5PAk676w7KvRhj6IAcjeEcjT3g/1tf6mTll+g/mX8MCgkz -ABpTpyHhOEvWgxutr2TC+Rx6jGZITWYfGAriPrsfB2WThbkasLnE+w0R9vXW+RvH -LCu3GFH+4Hv2qEivbDtPL+/40UceJlfwUR0zlv/vWT3aTdEVNMfqPxZIe5EcgEMP -PbgFPtGzlc3Yyg/CQ2fbt5PgIoIuvvVoKIO5wTtpeyDaTpxt4brNj3pssAki14sL -2xzVWiZbDcDq5WDQn/413z8CAwEAAaOCAawwggGoMA8GA1UdEwEB/wQFMAMBAf8w -ggEWBgNVHSAEggENMIIBCTCCAQUGCisGAQQBzh8BAQEwgfYwgdAGCCsGAQUFBwIC -MIHDHoHAAFMAZQBlACAAcwBlAHIAdABpAGYAaQBrAGEAYQB0ACAAbwBuACAAdgDk -AGwAagBhAHMAdABhAHQAdQBkACAAQQBTAC0AaQBzACAAUwBlAHIAdABpAGYAaQB0 -AHMAZQBlAHIAaQBtAGkAcwBrAGUAcwBrAHUAcwAgAGEAbABhAG0ALQBTAEsAIABz -AGUAcgB0AGkAZgBpAGsAYQBhAHQAaQBkAGUAIABrAGkAbgBuAGkAdABhAG0AaQBz -AGUAawBzMCEGCCsGAQUFBwIBFhVodHRwOi8vd3d3LnNrLmVlL2Nwcy8wKwYDVR0f -BCQwIjAgoB6gHIYaaHR0cDovL3d3dy5zay5lZS9qdXVyL2NybC8wHQYDVR0OBBYE -FASqekej5ImvGs8KQKcYP2/v6X2+MB8GA1UdIwQYMBaAFASqekej5ImvGs8KQKcY -P2/v6X2+MA4GA1UdDwEB/wQEAwIB5jANBgkqhkiG9w0BAQUFAAOCAQEAe8EYlFOi -CfP+JmeaUOTDBS8rNXiRTHyoERF5TElZrMj3hWVcRrs7EKACr81Ptcw2Kuxd/u+g -kcm2k298gFTsxwhwDY77guwqYHhpNjbRxZyLabVAyJRld/JXIWY7zoVAtjNjGr95 -HvxcHdMdkxuLDF2FvZkwMhgJkVLpfKG6/2SSmuz+Ne6ML678IIbsSt4beDI3poHS -na9aEhbKmVv8b20OxaAehsmR0FyYgl9jDIpaq9iVpszLita/ZEuOyoqysOkhMp6q -qIWYNIE5ITuoOlIyPfZrN4YGWhWY3PARZv40ILcD9EEQfTmEeZZyY7aWAuVrua0Z -TbvGRNs2yyqcjg== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/Microsece-SzignoRootCA.crt b/test/rules/platform_certs/default/Microsece-SzignoRootCA.crt deleted file mode 100644 index 5d2cbe78655c..000000000000 --- a/test/rules/platform_certs/default/Microsece-SzignoRootCA.crt +++ /dev/null @@ -1,43 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIHqDCCBpCgAwIBAgIRAMy4579OKRr9otxmpRwsDxEwDQYJKoZIhvcNAQEFBQAw -cjELMAkGA1UEBhMCSFUxETAPBgNVBAcTCEJ1ZGFwZXN0MRYwFAYDVQQKEw1NaWNy -b3NlYyBMdGQuMRQwEgYDVQQLEwtlLVN6aWdubyBDQTEiMCAGA1UEAxMZTWljcm9z -ZWMgZS1Temlnbm8gUm9vdCBDQTAeFw0wNTA0MDYxMjI4NDRaFw0xNzA0MDYxMjI4 -NDRaMHIxCzAJBgNVBAYTAkhVMREwDwYDVQQHEwhCdWRhcGVzdDEWMBQGA1UEChMN -TWljcm9zZWMgTHRkLjEUMBIGA1UECxMLZS1Temlnbm8gQ0ExIjAgBgNVBAMTGU1p -Y3Jvc2VjIGUtU3ppZ25vIFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAw -ggEKAoIBAQDtyADVgXvNOABHzNuEwSFpLHSQDCHZU4ftPkNEU6+r+ICbPHiN1I2u -uO/TEdyB5s87lozWbxXGd36hL+BfkrYn13aaHUM86tnsL+4582pnS4uCzyL4ZVX+ -LMsvfUh6PXX5qqAnu3jCBspRwn5mS6/NoqdNAoI/gqyFxuEPkEeZlApxcpMqyabA -vjxWTHOSJ/FrtfX9/DAFYJLG65Z+AZHCabEeHXtTRbjcQR/Ji3HWVBTji1R4P770 -Yjtb9aPs1ZJ04nQw7wHb4dSrmZsqa/i9phyGI0Jf7Enemotb9HI6QMVJPqW+jqpx -62z69Rrkav17fVVA71hu5tnVvCSrwe+3AgMBAAGjggQ3MIIEMzBnBggrBgEFBQcB -AQRbMFkwKAYIKwYBBQUHMAGGHGh0dHBzOi8vcmNhLmUtc3ppZ25vLmh1L29jc3Aw -LQYIKwYBBQUHMAKGIWh0dHA6Ly93d3cuZS1zemlnbm8uaHUvUm9vdENBLmNydDAP -BgNVHRMBAf8EBTADAQH/MIIBcwYDVR0gBIIBajCCAWYwggFiBgwrBgEEAYGoGAIB -AQEwggFQMCgGCCsGAQUFBwIBFhxodHRwOi8vd3d3LmUtc3ppZ25vLmh1L1NaU1ov -MIIBIgYIKwYBBQUHAgIwggEUHoIBEABBACAAdABhAG4A+gBzAO0AdAB2AOEAbgB5 -ACAA6QByAHQAZQBsAG0AZQB6AOkAcwDpAGgAZQB6ACAA6QBzACAAZQBsAGYAbwBn -AGEAZADhAHMA4QBoAG8AegAgAGEAIABTAHoAbwBsAGcA4QBsAHQAYQB0APMAIABT -AHoAbwBsAGcA4QBsAHQAYQB0AOEAcwBpACAAUwB6AGEAYgDhAGwAeQB6AGEAdABh -ACAAcwB6AGUAcgBpAG4AdAAgAGsAZQBsAGwAIABlAGwAagDhAHIAbgBpADoAIABo -AHQAdABwADoALwAvAHcAdwB3AC4AZQAtAHMAegBpAGcAbgBvAC4AaAB1AC8AUwBa -AFMAWgAvMIHIBgNVHR8EgcAwgb0wgbqggbeggbSGIWh0dHA6Ly93d3cuZS1zemln -bm8uaHUvUm9vdENBLmNybIaBjmxkYXA6Ly9sZGFwLmUtc3ppZ25vLmh1L0NOPU1p -Y3Jvc2VjJTIwZS1Temlnbm8lMjBSb290JTIwQ0EsT1U9ZS1Temlnbm8lMjBDQSxP -PU1pY3Jvc2VjJTIwTHRkLixMPUJ1ZGFwZXN0LEM9SFU/Y2VydGlmaWNhdGVSZXZv -Y2F0aW9uTGlzdDtiaW5hcnkwDgYDVR0PAQH/BAQDAgEGMIGWBgNVHREEgY4wgYuB -EGluZm9AZS1zemlnbm8uaHWkdzB1MSMwIQYDVQQDDBpNaWNyb3NlYyBlLVN6aWdu -w7MgUm9vdCBDQTEWMBQGA1UECwwNZS1TemlnbsOzIEhTWjEWMBQGA1UEChMNTWlj -cm9zZWMgS2Z0LjERMA8GA1UEBxMIQnVkYXBlc3QxCzAJBgNVBAYTAkhVMIGsBgNV -HSMEgaQwgaGAFMegSXUWYYTbMUuE0vE3QJDvTtz3oXakdDByMQswCQYDVQQGEwJI -VTERMA8GA1UEBxMIQnVkYXBlc3QxFjAUBgNVBAoTDU1pY3Jvc2VjIEx0ZC4xFDAS -BgNVBAsTC2UtU3ppZ25vIENBMSIwIAYDVQQDExlNaWNyb3NlYyBlLVN6aWdubyBS -b290IENBghEAzLjnv04pGv2i3GalHCwPETAdBgNVHQ4EFgQUx6BJdRZhhNsxS4TS -8TdAkO9O3PcwDQYJKoZIhvcNAQEFBQADggEBANMTnGZjWS7KXHAM/IO8VbH0jgds -ZifOwTsgqRy7RlRw7lrMoHfqaEQn6/Ip3Xep1fvj1KcExJW4C+FEaGAHQzAxQmHl -7tnlJNUb3+FKG6qfx1/4ehHqE5MAyopYse7tDk2016g2JnzgOsHVV4Lxdbb9iV/a -86g4nzUGCM4ilb7N1fy+W955a9x6qWVmvrElWl/tftOsRm1M9DKHtCAE4Gx4sHfR -hUZLphK3dehKyVZs15KrnfVJONJPU+NVkBHbmJbGSfI+9J8b4PeI3CVimUTYc78/ -MPMMNz7UwiiAc7EBt51alhQBS6kRnSlqLtBdgcDPsiBDxwPgN05dCtxZICU= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/Microsece-SzignoRootCA2009.crt b/test/rules/platform_certs/default/Microsece-SzignoRootCA2009.crt deleted file mode 100644 index 6bada5131106..000000000000 --- a/test/rules/platform_certs/default/Microsece-SzignoRootCA2009.crt +++ /dev/null @@ -1,24 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIECjCCAvKgAwIBAgIJAMJ+QwRORz8ZMA0GCSqGSIb3DQEBCwUAMIGCMQswCQYD -VQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0 -ZC4xJzAlBgNVBAMMHk1pY3Jvc2VjIGUtU3ppZ25vIFJvb3QgQ0EgMjAwOTEfMB0G -CSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5odTAeFw0wOTA2MTYxMTMwMThaFw0y -OTEyMzAxMTMwMThaMIGCMQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3Qx -FjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xJzAlBgNVBAMMHk1pY3Jvc2VjIGUtU3pp -Z25vIFJvb3QgQ0EgMjAwOTEfMB0GCSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5o -dTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOn4j/NjrdqG2KfgQvvP -kd6mJviZpWNwrZuuyjNAfW2WbqEORO7hE52UQlKavXWFdCyoDh2Tthi3jCyoz/tc -cbna7P7ofo/kLx2yqHWH2Leh5TvPmUpG0IMZfcChEhyVbUr02MelTTMuhTlAdX4U -fIASmFDHQWe4oIBhVKZsTh/gnQ4H6cm6M+f+wFUoLAKApxn1ntxVUwOXewdI/5n7 -N4okxFnMUBBjjqqpGrCEGob5X7uxUG6k0QrM1XF+H6cbfPVTbiJfyyvm1HxdrtbC -xkzlBQHZ7Vf8wSN5/PrIJIOV87VqUQHQd9bpEqH5GoP7ghu5sJf0dgYzQ0mg/wu1 -+rUCAwEAAaOBgDB+MA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0G -A1UdDgQWBBTLD8bfQkPMPcu1SCOhGnqmKrs0aDAfBgNVHSMEGDAWgBTLD8bfQkPM -Pcu1SCOhGnqmKrs0aDAbBgNVHREEFDASgRBpbmZvQGUtc3ppZ25vLmh1MA0GCSqG -SIb3DQEBCwUAA4IBAQDJ0Q5eLtXMs3w+y/w9/w0olZMEyL/azXm4Q5DwpL7v8u8h -mLzU1F0G9u5C7DBsoKqpyvGvivo/C3NqPuouQH4frlRheesuCDfXI/OMn74dseGk -ddug4lQUsbocKaQY9hK6ohQU4zE1yED/t+AFdlfBHFny+L/k7SViXITwfn4fs775 -tyERzAMBVnCnEJIeGzSBHq2cGsMEPO0CYdYeBvNfOofyK/FFh+U9rNHHV4S9a67c -2Pm2G2JwCz02yULyMtd6YebS2z3PyKnJm9zbWETXbzivf3jTo60adbocwTZ8jx5t -HMN1Rq41Bab2XD0h7lbwyYIiLXpUq3DDfSJlgnCW ------END CERTIFICATE----- diff --git "a/test/rules/platform_certs/default/NetLockArany(ClassGold)F\305\221tan\303\272s\303\255tv\303\241ny.crt" "b/test/rules/platform_certs/default/NetLockArany(ClassGold)F\305\221tan\303\272s\303\255tv\303\241ny.crt" deleted file mode 100644 index 691bb2420c35..000000000000 --- "a/test/rules/platform_certs/default/NetLockArany(ClassGold)F\305\221tan\303\272s\303\255tv\303\241ny.crt" +++ /dev/null @@ -1,24 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEFTCCAv2gAwIBAgIGSUEs5AAQMA0GCSqGSIb3DQEBCwUAMIGnMQswCQYDVQQG -EwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFTATBgNVBAoMDE5ldExvY2sgS2Z0LjE3 -MDUGA1UECwwuVGFuw7pzw610dsOhbnlraWFkw7NrIChDZXJ0aWZpY2F0aW9uIFNl -cnZpY2VzKTE1MDMGA1UEAwwsTmV0TG9jayBBcmFueSAoQ2xhc3MgR29sZCkgRsWR -dGFuw7pzw610dsOhbnkwHhcNMDgxMjExMTUwODIxWhcNMjgxMjA2MTUwODIxWjCB -pzELMAkGA1UEBhMCSFUxETAPBgNVBAcMCEJ1ZGFwZXN0MRUwEwYDVQQKDAxOZXRM -b2NrIEtmdC4xNzA1BgNVBAsMLlRhbsO6c8OtdHbDoW55a2lhZMOzayAoQ2VydGlm -aWNhdGlvbiBTZXJ2aWNlcykxNTAzBgNVBAMMLE5ldExvY2sgQXJhbnkgKENsYXNz -IEdvbGQpIEbFkXRhbsO6c8OtdHbDoW55MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A -MIIBCgKCAQEAxCRec75LbRTDofTjl5Bu0jBFHjzuZ9lk4BqKf8owyoPjIMHj9DrT -lF8afFttvzBPhCf2nx9JvMaZCpDyD/V/Q4Q3Y1GLeqVw/HpYzY6b7cNGbIRwXdrz -AZAj/E4wqX7hJ2Pn7WQ8oLjJM2P+FpD/sLj916jAwJRDC7bVWaaeVtAkH3B5r9s5 -VA1lddkVQZQBr17s9o3x/61k/iCa11zr/qYfCGSji3ZVrR47KGAuhyXoqq8fxmRG -ILdwfzzeSNuWU7c5d+Qa4scWhHaXWy+7GRWF+GmF9ZmnqfI0p6m2pgP8b4Y9VHx2 -BJtr+UBdADTHLpl1neWIA6pN+APSQnbAGwIDAKiLo0UwQzASBgNVHRMBAf8ECDAG -AQH/AgEEMA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUzPpnk/C2uNClwB7zU/2M -U9+D15YwDQYJKoZIhvcNAQELBQADggEBAKt/7hwWqZw8UQCgwBEIBaeZ5m8BiFRh -bvG5GK1Krf6BQCOUL/t1fC8oS2IkgYIL9WHxHG64YTjrgfpioTtaYtOUZcTh5m2C -+C8lcLIhJsFyUR+MLMOEkMNaj7rP9KdlpeuY0fsFskZ1FSNqb4VjMIDw1Z4fKRzC -bLBQWV2QWzuoDTDPv31/zvGdg73JRm4gpvlhUbohL3u+pRVjodSVh/GeufOJ8z2F -uLjbvrW5KfnaNwUASZQDhETnv0Mxz3WLJdH0pmT1kvarBes96aULNmLazAZfNou2 -XjG4Kvte9nHfRCaexOYNkbQudZWAUWpLMKawYqGT8ZvYzsRjdT9ZR7E= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/NetworkSolutionsCertificateAuthority.crt b/test/rules/platform_certs/default/NetworkSolutionsCertificateAuthority.crt deleted file mode 100644 index 4a28bfac8d3e..000000000000 --- a/test/rules/platform_certs/default/NetworkSolutionsCertificateAuthority.crt +++ /dev/null @@ -1,23 +0,0 @@ ------BEGIN CERTIFICATE----- -MIID5jCCAs6gAwIBAgIQV8szb8JcFuZHFhfjkDFo4DANBgkqhkiG9w0BAQUFADBi -MQswCQYDVQQGEwJVUzEhMB8GA1UEChMYTmV0d29yayBTb2x1dGlvbnMgTC5MLkMu -MTAwLgYDVQQDEydOZXR3b3JrIFNvbHV0aW9ucyBDZXJ0aWZpY2F0ZSBBdXRob3Jp -dHkwHhcNMDYxMjAxMDAwMDAwWhcNMjkxMjMxMjM1OTU5WjBiMQswCQYDVQQGEwJV -UzEhMB8GA1UEChMYTmV0d29yayBTb2x1dGlvbnMgTC5MLkMuMTAwLgYDVQQDEydO -ZXR3b3JrIFNvbHV0aW9ucyBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwggEiMA0GCSqG -SIb3DQEBAQUAA4IBDwAwggEKAoIBAQDkvH6SMG3G2I4rC7xGzuAnlt7e+foS0zwz -c7MEL7xxjOWftiJgPl9dzgn/ggwbmlFQGiaJ3dVhXRncEg8tCqJDXRfQNJIg6nPP -OCwGJgl6cvf6UDL4wpPTaaIjzkGxzOTVHzbRijr4jGPiFFlp7Q3Tf2vouAPlT2rl -mGNpSAW+Lv8ztumXWWn4Zxmuk2GWRBXTcrA/vGp97Eh/jcOrqnErU2lBUzS1sLnF -BgrEsEX1QV1uiUV7PTsmjHTC5dLRfbIR1PtYMiKagMnc/Qzpf14Dl847ABSHJ3A4 -qY5usyd2mFHgBeMhqxrVhSI8KbWaFsWAqPS7azCPL0YCorEMIuDTAgMBAAGjgZcw -gZQwHQYDVR0OBBYEFCEwyfsA106Y2oeqKtCnLrFAMadMMA4GA1UdDwEB/wQEAwIB -BjAPBgNVHRMBAf8EBTADAQH/MFIGA1UdHwRLMEkwR6BFoEOGQWh0dHA6Ly9jcmwu -bmV0c29sc3NsLmNvbS9OZXR3b3JrU29sdXRpb25zQ2VydGlmaWNhdGVBdXRob3Jp -dHkuY3JsMA0GCSqGSIb3DQEBBQUAA4IBAQC7rkvnt1frf6ott3NHhWrB5KUd5Oc8 -6fRZZXe1eltajSU24HqXLjjAV2CDmAaDn7l2em5Q4LqILPxFzBiwmZVRDuwduIj/ -h1AcgsLj4DKAv6ALR8jDMe+ZZzKATxcheQxpXN5eNK4CtSbqUN9/GGUsyfJj4akH -/nxxH2szJGoeBfcFaMBqEssuXmHLrijTfsK0ZpEmXzwuJF/LWA/rKOyvEZbz3Htv -wKeI8lN3s2Berq4o2jUsbzRF0ybh3uxbTydrFny9RAQYgrOJeRcQcT16ohZO9QHN -pGxlaKFJdlxDydi8NmdspZS11My5vWo1ViHe2MPr+8ukYEywVaCge1ey ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/OISTEWISeKeyGlobalRootGACA.crt b/test/rules/platform_certs/default/OISTEWISeKeyGlobalRootGACA.crt deleted file mode 100644 index df2f73c51173..000000000000 --- a/test/rules/platform_certs/default/OISTEWISeKeyGlobalRootGACA.crt +++ /dev/null @@ -1,24 +0,0 @@ ------BEGIN CERTIFICATE----- -MIID8TCCAtmgAwIBAgIQQT1yx/RrH4FDffHSKFTfmjANBgkqhkiG9w0BAQUFADCB -ijELMAkGA1UEBhMCQ0gxEDAOBgNVBAoTB1dJU2VLZXkxGzAZBgNVBAsTEkNvcHly -aWdodCAoYykgMjAwNTEiMCAGA1UECxMZT0lTVEUgRm91bmRhdGlvbiBFbmRvcnNl -ZDEoMCYGA1UEAxMfT0lTVEUgV0lTZUtleSBHbG9iYWwgUm9vdCBHQSBDQTAeFw0w -NTEyMTExNjAzNDRaFw0zNzEyMTExNjA5NTFaMIGKMQswCQYDVQQGEwJDSDEQMA4G -A1UEChMHV0lTZUtleTEbMBkGA1UECxMSQ29weXJpZ2h0IChjKSAyMDA1MSIwIAYD -VQQLExlPSVNURSBGb3VuZGF0aW9uIEVuZG9yc2VkMSgwJgYDVQQDEx9PSVNURSBX -SVNlS2V5IEdsb2JhbCBSb290IEdBIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A -MIIBCgKCAQEAy0+zAJs9Nt350UlqaxBJH+zYK7LG+DKBKUOVTJoZIyEVRd7jyBxR -VVuuk+g3/ytr6dTqvirdqFEr12bDYVxgAsj1znJ7O7jyTmUIms2kahnBAbtzptf2 -w93NvKSLtZlhuAGio9RN1AU9ka34tAhxZK9w8RxrfvbDd50kc3vkDIzh2TbhmYsF -mQvtRTEJysIA2/dyoJaqlYfQjse2YXMNdmaM3Bu0Y6Kff5MTMPGhJ9vZ/yxViJGg -4E8HsChWjBgbl0SOid3gF27nKu+POQoxhILYQBRJLnpB5Kf+42TMwVlxSywhp1t9 -4B3RLoGbw9ho972WG6xwsRYUC9tguSYBBQIDAQABo1EwTzALBgNVHQ8EBAMCAYYw -DwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUswN+rja8sHnR3JQmthG+IbJphpQw -EAYJKwYBBAGCNxUBBAMCAQAwDQYJKoZIhvcNAQEFBQADggEBAEuh/wuHbrP5wUOx -SPMowB0uyQlB+pQAHKSkq0lPjz0e701vvbyk9vImMMkQyh2I+3QZH4VFvbBsUfk2 -ftv1TDI6QU9bR8/oCy22xBmddMVHxjtqD6wU2zz0c5ypBd8A3HR4+vg1YFkCExh8 -vPtNsCBtQ7tgMHpnM1zFmdH4LTlSc/uMqpclXHLZCB6rTjzjgTGfA6b7wP4piFXa -hNVQA7bihKOmNqoROgHhGEvWRGizPflTdISzRpFGlgC3gCy24eMQ4tui5yiPAZZi -Fj4A4xylNoEYokxSdsARo27mHbrjWr42U8U+dY+GaSlYU7Wcu2+fXMUY7N0v4ZjJ -/L7fCg0= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/OISTEWISeKeyGlobalRootGBCA.crt b/test/rules/platform_certs/default/OISTEWISeKeyGlobalRootGBCA.crt deleted file mode 100644 index 7d7ff0387bfb..000000000000 --- a/test/rules/platform_certs/default/OISTEWISeKeyGlobalRootGBCA.crt +++ /dev/null @@ -1,22 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDtTCCAp2gAwIBAgIQdrEgUnTwhYdGs/gjGvbCwDANBgkqhkiG9w0BAQsFADBt -MQswCQYDVQQGEwJDSDEQMA4GA1UEChMHV0lTZUtleTEiMCAGA1UECxMZT0lTVEUg -Rm91bmRhdGlvbiBFbmRvcnNlZDEoMCYGA1UEAxMfT0lTVEUgV0lTZUtleSBHbG9i -YWwgUm9vdCBHQiBDQTAeFw0xNDEyMDExNTAwMzJaFw0zOTEyMDExNTEwMzFaMG0x -CzAJBgNVBAYTAkNIMRAwDgYDVQQKEwdXSVNlS2V5MSIwIAYDVQQLExlPSVNURSBG -b3VuZGF0aW9uIEVuZG9yc2VkMSgwJgYDVQQDEx9PSVNURSBXSVNlS2V5IEdsb2Jh -bCBSb290IEdCIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2Be3 -HEokKtaXscriHvt9OO+Y9bI5mE4nuBFde9IllIiCFSZqGzG7qFshISvYD06fWvGx -WuR51jIjK+FTzJlFXHtPrby/h0oLS5daqPZI7H17Dc0hBt+eFf1Biki3IPShehtX -1F1Q/7pn2COZH8g/497/b1t3sWtuuMlk9+HKQUYOKXHQuSP8yYFfTvdv37+ErXNk -u7dCjmn21HYdfp2nuFeKUWdy19SouJVUQHMD9ur06/4oQnc/nSMbsrY9gBQHTC5P -99UKFg29ZkM3fiNDecNAhvVMKdqOmq0NpQSHiB6F4+lT1ZvIiwNjeOvgGUpuuy9r -M2RYk61pv48b74JIxwIDAQABo1EwTzALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUw -AwEB/zAdBgNVHQ4EFgQUNQ/INmNe4qPs+TtmFc5RUuORmj0wEAYJKwYBBAGCNxUB -BAMCAQAwDQYJKoZIhvcNAQELBQADggEBAEBM+4eymYGQfp3FsLAmzYh7KzKNbrgh -cViXfa43FK8+5/ea4n32cZiZBKpDdHij40lhPnOMTZTg+XHEthYOU3gf1qKHLwI5 -gSk8rxWYITD+KJAAjNHhy/peyP34EEY7onhCkRd0VQreUGdNZtGn//3ZwLWoo4rO -ZvUPQ82nK1d7Y0Zqqi5S2PTt4W2tKZB4SLrhI6qjiey1q5bAtEuiHZeeevJuQHHf -aPFlTc58Bd9TZaml8LGXBHAVRgOY1NK/VLSgWH1Sb9pWJmLU2NuJMW8c8CLC02Ic -Nc1MaRVUGpCY3useX8p3x8uOPUNpnJpY0CQ73xtAln41rYHHTnG6iBM= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/PSCProcert.crt b/test/rules/platform_certs/default/PSCProcert.crt deleted file mode 100644 index 3ed7c0525ba0..000000000000 --- a/test/rules/platform_certs/default/PSCProcert.crt +++ /dev/null @@ -1,53 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIJhjCCB26gAwIBAgIBCzANBgkqhkiG9w0BAQsFADCCAR4xPjA8BgNVBAMTNUF1 -dG9yaWRhZCBkZSBDZXJ0aWZpY2FjaW9uIFJhaXogZGVsIEVzdGFkbyBWZW5lem9s -YW5vMQswCQYDVQQGEwJWRTEQMA4GA1UEBxMHQ2FyYWNhczEZMBcGA1UECBMQRGlz -dHJpdG8gQ2FwaXRhbDE2MDQGA1UEChMtU2lzdGVtYSBOYWNpb25hbCBkZSBDZXJ0 -aWZpY2FjaW9uIEVsZWN0cm9uaWNhMUMwQQYDVQQLEzpTdXBlcmludGVuZGVuY2lh -IGRlIFNlcnZpY2lvcyBkZSBDZXJ0aWZpY2FjaW9uIEVsZWN0cm9uaWNhMSUwIwYJ -KoZIhvcNAQkBFhZhY3JhaXpAc3VzY2VydGUuZ29iLnZlMB4XDTEwMTIyODE2NTEw -MFoXDTIwMTIyNTIzNTk1OVowgdExJjAkBgkqhkiG9w0BCQEWF2NvbnRhY3RvQHBy -b2NlcnQubmV0LnZlMQ8wDQYDVQQHEwZDaGFjYW8xEDAOBgNVBAgTB01pcmFuZGEx -KjAoBgNVBAsTIVByb3ZlZWRvciBkZSBDZXJ0aWZpY2Fkb3MgUFJPQ0VSVDE2MDQG -A1UEChMtU2lzdGVtYSBOYWNpb25hbCBkZSBDZXJ0aWZpY2FjaW9uIEVsZWN0cm9u -aWNhMQswCQYDVQQGEwJWRTETMBEGA1UEAxMKUFNDUHJvY2VydDCCAiIwDQYJKoZI -hvcNAQEBBQADggIPADCCAgoCggIBANW39KOUM6FGqVVhSQ2oh3NekS1wwQYalNo9 -7BVCwfWMrmoX8Yqt/ICV6oNEolt6Vc5Pp6XVurgfoCfAUFM+jbnADrgV3NZs+J74 -BCXfgI8Qhd19L3uA3VcAZCP4bsm+lU/hdezgfl6VzbHvvnpC2Mks0+saGiKLt38G -ieU89RLAu9MLmV+QfI4tL3czkkohRqipCKzx9hEC2ZUWno0vluYC3XXCFCpa1sl9 -JcLB/KpnheLsvtF8PPqv1W7/U0HU9TI4seJfxPmOEO8GqQKJ/+MMbpfg353bIdD0 -PghpbNjU5Db4g7ayNo+c7zo3Fn2/omnXO1ty0K+qP1xmk6wKImG20qCZyFSTXai2 -0b1dCl53lKItwIKOvMoDKjSuc/HUtQy9vmebVOvh+qBa7Dh+PsHMosdEMXXqP+UH -0quhJZb25uSgXTcYOWEAM11G1ADEtMo88aKjPvM6/2kwLkDd9p+cJsmWN63nOaK/ -6mnbVSKVUyqUtd+tFjiBdWbjxywbk5yqjKPK2Ww8F22c3HxT4CAnQzb5EuE8XL1m -v6JpIzi4mWCZDlZTOpx+FIywBm/xhnaQr/2v/pDGj59/i5IjnOcVdo/Vi5QTcmn7 -K2FjiO/mpF7moxdqWEfLcU8UC17IAggmosvpr2uKGcfLFFb14dq12fy/czja+eev -bqQ34gcnAgMBAAGjggMXMIIDEzASBgNVHRMBAf8ECDAGAQH/AgEBMDcGA1UdEgQw -MC6CD3N1c2NlcnRlLmdvYi52ZaAbBgVghl4CAqASDBBSSUYtRy0yMDAwNDAzNi0w -MB0GA1UdDgQWBBRBDxk4qpl/Qguk1yeYVKIXTC1RVDCCAVAGA1UdIwSCAUcwggFD -gBStuyIdxuDSAaj9dlBSk+2YwU2u06GCASakggEiMIIBHjE+MDwGA1UEAxM1QXV0 -b3JpZGFkIGRlIENlcnRpZmljYWNpb24gUmFpeiBkZWwgRXN0YWRvIFZlbmV6b2xh -bm8xCzAJBgNVBAYTAlZFMRAwDgYDVQQHEwdDYXJhY2FzMRkwFwYDVQQIExBEaXN0 -cml0byBDYXBpdGFsMTYwNAYDVQQKEy1TaXN0ZW1hIE5hY2lvbmFsIGRlIENlcnRp -ZmljYWNpb24gRWxlY3Ryb25pY2ExQzBBBgNVBAsTOlN1cGVyaW50ZW5kZW5jaWEg -ZGUgU2VydmljaW9zIGRlIENlcnRpZmljYWNpb24gRWxlY3Ryb25pY2ExJTAjBgkq -hkiG9w0BCQEWFmFjcmFpekBzdXNjZXJ0ZS5nb2IudmWCAQowDgYDVR0PAQH/BAQD -AgEGME0GA1UdEQRGMESCDnByb2NlcnQubmV0LnZloBUGBWCGXgIBoAwMClBTQy0w -MDAwMDKgGwYFYIZeAgKgEgwQUklGLUotMzE2MzUzNzMtNzB2BgNVHR8EbzBtMEag -RKBChkBodHRwOi8vd3d3LnN1c2NlcnRlLmdvYi52ZS9sY3IvQ0VSVElGSUNBRE8t -UkFJWi1TSEEzODRDUkxERVIuY3JsMCOgIaAfhh1sZGFwOi8vYWNyYWl6LnN1c2Nl -cnRlLmdvYi52ZTA3BggrBgEFBQcBAQQrMCkwJwYIKwYBBQUHMAGGG2h0dHA6Ly9v -Y3NwLnN1c2NlcnRlLmdvYi52ZTBBBgNVHSAEOjA4MDYGBmCGXgMBAjAsMCoGCCsG -AQUFBwIBFh5odHRwOi8vd3d3LnN1c2NlcnRlLmdvYi52ZS9kcGMwDQYJKoZIhvcN -AQELBQADggIBACtZ6yKZu4SqT96QxtGGcSOeSwORR3C7wJJg7ODU523G0+1ng3dS -1fLld6c2suNUvtm7CpsR72H0xpkzmfWvADmNg7+mvTV+LFwxNG9s2/NkAZiqlCxB -3RWGymspThbASfzXg0gTB1GEMVKIu4YXx2sviiCtxQuPcD4quxtxj7mkoP3Yldmv -Wb8lK5jpY5MvYB7Eqvh39YtsL+1+LrVPQA3uvFd359m21D+VJzog1eWuq2w1n8Gh -HVnchIHuTQfiSLaeS5UtQbHh6N5+LwUeaO6/u5BlOsju6rEYNxxik6SgMexxbJHm -pHmJWhSnFFAFTKQAVzAswbVhltw+HoSvOULP5dAssSS830DD7X9jSr3hTxJkhpXz -sOfIt+FTvZLm8wyWuevo5pLtp4EJFAv8lXrPj9Y0TzYS3F7RNHXGRoAvlQSMx4bE -qCaJqD8Zm4G7UaRKhqsLEQ+xrmNTbSjq3TNWOByyrYDT13K9mmyZY+gAu0F2Bbdb -mRiKw7gSXFbPVgx96OLP7bx0R/vu0xdOIk9W/1DzLuY5poLWccret9W6aAjtmcz9 -opLLabid+Qqkpj5PkygqYWwHJgD/ll9ohri4zspV4KuxPX+Y1zMOWj3YeMLEYC/H -YvBhkdI4sPaeVdtAgAUSM84dkpvRabP/v/GSCmE1P93+hvS84Bpxs2Km ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/QuoVadisRootCA1G3.crt b/test/rules/platform_certs/default/QuoVadisRootCA1G3.crt deleted file mode 100644 index a06de458e4a3..000000000000 --- a/test/rules/platform_certs/default/QuoVadisRootCA1G3.crt +++ /dev/null @@ -1,31 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFYDCCA0igAwIBAgIUeFhfLq0sGUvjNwc1NBMotZbUZZMwDQYJKoZIhvcNAQEL -BQAwSDELMAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAc -BgNVBAMTFVF1b1ZhZGlzIFJvb3QgQ0EgMSBHMzAeFw0xMjAxMTIxNzI3NDRaFw00 -MjAxMTIxNzI3NDRaMEgxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBM -aW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDEgRzMwggIiMA0GCSqG -SIb3DQEBAQUAA4ICDwAwggIKAoICAQCgvlAQjunybEC0BJyFuTHK3C3kEakEPBtV -wedYMB0ktMPvhd6MLOHBPd+C5k+tR4ds7FtJwUrVu4/sh6x/gpqG7D0DmVIB0jWe -rNrwU8lmPNSsAgHaJNM7qAJGr6Qc4/hzWHa39g6QDbXwz8z6+cZM5cOGMAqNF341 -68Xfuw6cwI2H44g4hWf6Pser4BOcBRiYz5P1sZK0/CPTz9XEJ0ngnjybCKOLXSoh -4Pw5qlPafX7PGglTvF0FBM+hSo+LdoINofjSxxR3W5A2B4GbPgb6Ul5jxaYA/qXp -UhtStZI5cgMJYr2wYBZupt0lwgNm3fME0UDiTouG9G/lg6AnhF4EwfWQvTA9xO+o -abw4m6SkltFi2mnAAZauy8RRNOoMqv8hjlmPSlzkYZqn0ukqeI1RPToV7qJZjqlc -3sX5kCLliEVx3ZGZbHqfPT2YfF72vhZooF6uCyP8Wg+qInYtyaEQHeTTRCOQiJ/G -KubX9ZqzWB4vMIkIG1SitZgj7Ah3HJVdYdHLiZxfokqRmu8hqkkWCKi9YSgxyXSt -hfbZxbGL0eUQMk1fiyA6PEkfM4VZDdvLCXVDaXP7a3F98N/ETH3Goy7IlXnLc6KO -Tk0k+17kBL5yG6YnLUlamXrXXAkgt3+UuU/xDRxeiEIbEbfnkduebPRq34wGmAOt -zCjvpUfzUwIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIB -BjAdBgNVHQ4EFgQUo5fW816iEOGrRZ88F2Q87gFwnMwwDQYJKoZIhvcNAQELBQAD -ggIBABj6W3X8PnrHX3fHyt/PX8MSxEBd1DKquGrX1RUVRpgjpeaQWxiZTOOtQqOC -MTaIzen7xASWSIsBx40Bz1szBpZGZnQdT+3Btrm0DWHMY37XLneMlhwqI2hrhVd2 -cDMT/uFPpiN3GPoajOi9ZcnPP/TJF9zrx7zABC4tRi9pZsMbj/7sPtPKlL92CiUN -qXsCHKnQO18LwIE6PWThv6ctTr1NxNgpxiIY0MWscgKCP6o6ojoilzHdCGPDdRS5 -YCgtW2jgFqlmgiNR9etT2DGbe+m3nUvriBbP+V04ikkwj+3x6xn0dxoxGE1nVGwv -b2X52z3sIexe9PSLymBlVNFxZPT5pqOBMzYzcfCkeF9OrYMh3jRJjehZrJ3ydlo2 -8hP0r+AJx2EqbPfgna67hkooby7utHnNkDPDs3b69fBsnQGQ+p6Q9pxyz0fawx/k -NSBT8lTR32GDpgLiJTjehTItXnOQUl1CxM49S+H5GYQd1aJQzEH7QRTDvdbJWqNj -ZgKAvQU6O0ec7AAmTPWIUb+oI38YB7AL7YsmoWTTYUrrXJ/es69nA7Mf3W1daWhp -q1467HxpvMc7hU6eFbm0FU/DlXpY18ls6Wy58yljXrQs8C097Vpl4KlbQMJImYFt -nh8GKjwStIsPm6Ik8KaN1nrgS7ZklmOVhMJKzRwuJIczYOXD ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/QuoVadisRootCA2.crt b/test/rules/platform_certs/default/QuoVadisRootCA2.crt deleted file mode 100644 index 0ad44ffcd69c..000000000000 --- a/test/rules/platform_certs/default/QuoVadisRootCA2.crt +++ /dev/null @@ -1,33 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFtzCCA5+gAwIBAgICBQkwDQYJKoZIhvcNAQEFBQAwRTELMAkGA1UEBhMCQk0x -GTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMTElF1b1ZhZGlzIFJv -b3QgQ0EgMjAeFw0wNjExMjQxODI3MDBaFw0zMTExMjQxODIzMzNaMEUxCzAJBgNV -BAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMRswGQYDVQQDExJRdW9W -YWRpcyBSb290IENBIDIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCa -GMpLlA0ALa8DKYrwD4HIrkwZhR0In6spRIXzL4GtMh6QRr+jhiYaHv5+HBg6XJxg -Fyo6dIMzMH1hVBHL7avg5tKifvVrbxi3Cgst/ek+7wrGsxDp3MJGF/hd/aTa/55J -WpzmM+Yklvc/ulsrHHo1wtZn/qtmUIttKGAr79dgw8eTvI02kfN/+NsRE8Scd3bB -rrcCaoF6qUWD4gXmuVbBlDePSHFjIuwXZQeVikvfj8ZaCuWw419eaxGrDPmF60Tp -+ARz8un+XJiM9XOva7R+zdRcAitMOeGylZUtQofX1bOQQ7dsE/He3fbE+Ik/0XX1 -ksOR1YqI0JDs3G3eicJlcZaLDQP9nL9bFqyS2+r+eXyt66/3FsvbzSUr5R/7mp/i -Ucw6UwxI5g69ybR2BlLmEROFcmMDBOAENisgGQLodKcftslWZvB1JdxnwQ5hYIiz -PtGo/KPaHbDRsSNU30R2be1B2MGyIrZTHN81Hdyhdyox5C315eXbyOD/5YDXC2Og -/zOhD7osFRXql7PSorW+8oyWHhqPHWykYTe5hnMz15eWniN9gqRMgeKh0bpnX5UH -oycR7hYQe7xFSkyyBNKr79X9DFHOUGoIMfmR2gyPZFwDwzqLID9ujWc9Otb+fVuI -yV77zGHcizN300QyNQliBJIWENieJ0f7OyHj+OsdWwIDAQABo4GwMIGtMA8GA1Ud -EwEB/wQFMAMBAf8wCwYDVR0PBAQDAgEGMB0GA1UdDgQWBBQahGK8SEwzJQTU7tD2 -A8QZRtGUazBuBgNVHSMEZzBlgBQahGK8SEwzJQTU7tD2A8QZRtGUa6FJpEcwRTEL -MAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMT -ElF1b1ZhZGlzIFJvb3QgQ0EgMoICBQkwDQYJKoZIhvcNAQEFBQADggIBAD4KFk2f -BluornFdLwUvZ+YTRYPENvbzwCYMDbVHZF34tHLJRqUDGCdViXh9duqWNIAXINzn -g/iN/Ae42l9NLmeyhP3ZRPx3UIHmfLTJDQtyU/h2BwdBR5YM++CCJpNVjP4iH2Bl -fF/nJrP3MpCYUNQ3cVX2kiF495V5+vgtJodmVjB3pjd4M1IQWK4/YY7yarHvGH5K -WWPKjaJW1acvvFYfzznB4vsKqBUsfU16Y8Zsl0Q80m/DShcK+JDSV6IZUaUtl0Ha -B0+pUNqQjZRG4T7wlP0QADj1O+hA4bRuVhogzG9Yje0uRY/W6ZM/57Es3zrWIozc -hLsib9D45MY56QSIPMO661V6bYCZJPVsAfv4l7CUW+v90m/xd2gNNWQjrLhVoQPR -TUIZ3Ph1WVaj+ahJefivDrkRoHy3au000LYmYjgahwz46P0u05B/B5EqHdZ+XIWD -mbA4CD/pXvk1B+TJYm5Xf6dQlfe6yJvmjqIBxdZmv3lh8zwc4bmCXF2gw+nYSL0Z -ohEUGW6yhhtoPkg3Goi3XZZenMfvJ2II4pEZXNLxId26F0KCl3GBUzGpn/Z9Yr9y -4aOTHcyKJloJONDO1w2AFrR4pTqHTI2KpdVGl/IsELm8VCLAAVBpQ570su9t+Oza -8eOx79+Rj1QqCyXBJhnEUhAFZdWCEOrCMc0u ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/QuoVadisRootCA2G3.crt b/test/rules/platform_certs/default/QuoVadisRootCA2G3.crt deleted file mode 100644 index d30f409aafd7..000000000000 --- a/test/rules/platform_certs/default/QuoVadisRootCA2G3.crt +++ /dev/null @@ -1,31 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFYDCCA0igAwIBAgIURFc0JFuBiZs18s64KztbpybwdSgwDQYJKoZIhvcNAQEL -BQAwSDELMAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAc -BgNVBAMTFVF1b1ZhZGlzIFJvb3QgQ0EgMiBHMzAeFw0xMjAxMTIxODU5MzJaFw00 -MjAxMTIxODU5MzJaMEgxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBM -aW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDIgRzMwggIiMA0GCSqG -SIb3DQEBAQUAA4ICDwAwggIKAoICAQChriWyARjcV4g/Ruv5r+LrI3HimtFhZiFf -qq8nUeVuGxbULX1QsFN3vXg6YOJkApt8hpvWGo6t/x8Vf9WVHhLL5hSEBMHfNrMW -n4rjyduYNM7YMxcoRvynyfDStNVNCXJJ+fKH46nafaF9a7I6JaltUkSs+L5u+9ym -c5GQYaYDFCDy54ejiK2toIz/pgslUiXnFgHVy7g1gQyjO/Dh4fxaXc6AcW34Sas+ -O7q414AB+6XrW7PFXmAqMaCvN+ggOp+oMiwMzAkd056OXbxMmO7FGmh77FOm6RQ1 -o9/NgJ8MSPsc9PG/Srj61YxxSscfrf5BmrODXfKEVu+lV0POKa2Mq1W/xPtbAd0j -IaFYAI7D0GoT7RPjEiuA3GfmlbLNHiJuKvhB1PLKFAeNilUSxmn1uIZoL1NesNKq -IcGY5jDjZ1XHm26sGahVpkUG0CM62+tlXSoREfA7T8pt9DTEceT/AFr2XK4jYIVz -8eQQsSWu1ZK7E8EM4DnatDlXtas1qnIhO4M15zHfeiFuuDIIfR0ykRVKYnLP43eh -vNURG3YBZwjgQQvD6xVu+KQZ2aKrr+InUlYrAoosFCT5v0ICvybIxo/gbjh9Uy3l -7ZizlWNof/k19N+IxWA1ksB8aRxhlRbQ694Lrz4EEEVlWFA4r0jyWbYW8jwNkALG -cC4BrTwV1wIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIB -BjAdBgNVHQ4EFgQU7edvdlq/YOxJW8ald7tyFnGbxD0wDQYJKoZIhvcNAQELBQAD -ggIBAJHfgD9DCX5xwvfrs4iP4VGyvD11+ShdyLyZm3tdquXK4Qr36LLTn91nMX66 -AarHakE7kNQIXLJgapDwyM4DYvmL7ftuKtwGTTwpD4kWilhMSA/ohGHqPHKmd+RC -roijQ1h5fq7KpVMNqT1wvSAZYaRsOPxDMuHBR//47PERIjKWnML2W2mWeyAMQ0Ga -W/ZZGYjeVYg3UQt4XAoeo0L9x52ID8DyeAIkVJOviYeIyUqAHerQbj5hLja7NQ4n -lv1mNDthcnPxFlxHBlRJAHpYErAK74X9sbgzdWqTHBLmYF5vHX/JHyPLhGGfHoJE -+V+tYlUkmlKY7VHnoX6XOuYvHxHaU4AshZ6rNRDbIl9qxV6XU/IyAgkwo1jwDQHV -csaxfGl7w/U2Rcxhbl5MlMVerugOXou/983g7aEOGzPuVBj+D77vfoRrQ+NwmNtd -dbINWQeFFSM51vHfqSYP1kjHs6Yi9TM3WpVHn3u6GBVv/9YUZINJ0gpnIdsPNWNg -KCLjsZWDzYWm3S8P52dSbrsvhXz1SnPnxT7AvSESBT/8twNJAlvIJebiVDj1eYeM -HVOyToV7BjjHLPj4sHKNJeV3UvQDHEimUF+IIDBu8oJDqz2XhOdT+yHBTw8imoa4 -WSr2Rz0ZiC3oheGe7IUIarFsNMkd7EgrO3jtZsSOeWmD3n+M ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/QuoVadisRootCA3.crt b/test/rules/platform_certs/default/QuoVadisRootCA3.crt deleted file mode 100644 index 969322b95e13..000000000000 --- a/test/rules/platform_certs/default/QuoVadisRootCA3.crt +++ /dev/null @@ -1,38 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIGnTCCBIWgAwIBAgICBcYwDQYJKoZIhvcNAQEFBQAwRTELMAkGA1UEBhMCQk0x -GTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMTElF1b1ZhZGlzIFJv -b3QgQ0EgMzAeFw0wNjExMjQxOTExMjNaFw0zMTExMjQxOTA2NDRaMEUxCzAJBgNV -BAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMRswGQYDVQQDExJRdW9W -YWRpcyBSb290IENBIDMwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDM -V0IWVJzmmNPTTe7+7cefQzlKZbPoFog02w1ZkXTPkrgEQK0CSzGrvI2RaNggDhoB -4hp7Thdd4oq3P5kazethq8Jlph+3t723j/z9cI8LoGe+AaJZz3HmDyl2/7FWeUUr -H556VOijKTVopAFPD6QuN+8bv+OPEKhyq1hX51SGyMnzW9os2l2ObjyjPtr7guXd -8lyyBTNvijbO0BNO/79KDDRMpsMhvVAEVeuxu537RR5kFd5VAYwCdrXLoT9Cabwv -vWhDFlaJKjdhkf2mrk7AyxRllDdLkgbvBNDInIjbC3uBr7E9KsRlOni27tyAsdLT -mZw67mtaa7ONt9XOnMK+pUsvFrGeaDsGb659n/je7Mwpp5ijJUMv7/FfJuGITfhe -btfZFG4ZM2mnO4SJk8RTVROhUXhA+LjJou57ulJCg54U7QVSWllWp5f8nT8KKdjc -T5EOE7zelaTfi5m+rJsziO+1ga8bxiJTyPbH7pcUsMV8eFLI8M5ud2CEpukqdiDt -WAEXMJPpGovgc2PZapKUSU60rUqFxKMiMPwJ7Wgic6aIDFUhWMXhOp8q3crhkODZ -c6tsgLjoC2SToJyMGf+z0gzskSaHirOi4XCPLArlzW1oUevaPwV/izLmE1xr/l9A -4iLItLRkT9a6fUg+qGkM17uGcclzuD87nSVL2v9A6wIDAQABo4IBlTCCAZEwDwYD -VR0TAQH/BAUwAwEB/zCB4QYDVR0gBIHZMIHWMIHTBgkrBgEEAb5YAAMwgcUwgZMG -CCsGAQUFBwICMIGGGoGDQW55IHVzZSBvZiB0aGlzIENlcnRpZmljYXRlIGNvbnN0 -aXR1dGVzIGFjY2VwdGFuY2Ugb2YgdGhlIFF1b1ZhZGlzIFJvb3QgQ0EgMyBDZXJ0 -aWZpY2F0ZSBQb2xpY3kgLyBDZXJ0aWZpY2F0aW9uIFByYWN0aWNlIFN0YXRlbWVu -dC4wLQYIKwYBBQUHAgEWIWh0dHA6Ly93d3cucXVvdmFkaXNnbG9iYWwuY29tL2Nw -czALBgNVHQ8EBAMCAQYwHQYDVR0OBBYEFPLAE+CCQz777i9nMpY1XNu4ywLQMG4G -A1UdIwRnMGWAFPLAE+CCQz777i9nMpY1XNu4ywLQoUmkRzBFMQswCQYDVQQGEwJC -TTEZMBcGA1UEChMQUXVvVmFkaXMgTGltaXRlZDEbMBkGA1UEAxMSUXVvVmFkaXMg -Um9vdCBDQSAzggIFxjANBgkqhkiG9w0BAQUFAAOCAgEAT62gLEz6wPJv92ZVqyM0 -7ucp2sNbtrCD2dDQ4iH782CnO11gUyeim/YIIirnv6By5ZwkajGxkHon24QRiSem -d1o417+shvzuXYO8BsbRd2sPbSQvS3pspweWyuOEn62Iix2rFo1bZhfZFvSLgNLd -+LJ2w/w4E6oM3kJpK27zPOuAJ9v1pkQNn1pVWQvVDVJIxa6f8i+AxeoyUDUSly7B -4f/xI4hROJ/yZlZ25w9Rl6VSDE1JUZU2Pb+iSwwQHYaZTKrzchGT5Or2m9qoXadN -t54CrnMAyNojA+j56hl0YgCUyyIgvpSnWbWCar6ZeXqp8kokUvd0/bpO5qgdAm6x -DYBEwa7TIzdfu4V8K5Iu6H6li92Z4b8nby1dqnuH/grdS/yO9SbkbnBCbjPsMZ57 -k8HkyWkaPcBrTiJt7qtYTcbQQcEr6k8Sh17rRdhs9ZgC06DYVYoGmRmioHfRMJ6s -zHXug/WwYjnPbFfiTNKRCw51KBuav/0aQ/HKd/s7j2G4aSgWQgRecCocIdiP4b0j -Wy10QJLZYxkNc91pvGJHvOB0K7Lrfb5BG7XARsWhIstfTsEokt4YutUqKLsRixeT -mJlglFwjz1onl14LBQaTNx47aTbrqZ5hHY8y2o4M1nQ+ewkk2gF3R8Q7zTSMmfXK -4SVhM7JZG+Ju1zdXtg2pEto= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/QuoVadisRootCA3G3.crt b/test/rules/platform_certs/default/QuoVadisRootCA3G3.crt deleted file mode 100644 index 279a719c1ca9..000000000000 --- a/test/rules/platform_certs/default/QuoVadisRootCA3G3.crt +++ /dev/null @@ -1,31 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFYDCCA0igAwIBAgIULvWbAiin23r/1aOp7r0DoM8Sah0wDQYJKoZIhvcNAQEL -BQAwSDELMAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAc -BgNVBAMTFVF1b1ZhZGlzIFJvb3QgQ0EgMyBHMzAeFw0xMjAxMTIyMDI2MzJaFw00 -MjAxMTIyMDI2MzJaMEgxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBM -aW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDMgRzMwggIiMA0GCSqG -SIb3DQEBAQUAA4ICDwAwggIKAoICAQCzyw4QZ47qFJenMioKVjZ/aEzHs286IxSR -/xl/pcqs7rN2nXrpixurazHb+gtTTK/FpRp5PIpM/6zfJd5O2YIyC0TeytuMrKNu -FoM7pmRLMon7FhY4futD4tN0SsJiCnMK3UmzV9KwCoWdcTzeo8vAMvMBOSBDGzXR -U7Ox7sWTaYI+FrUoRqHe6okJ7UO4BUaKhvVZR74bbwEhELn9qdIoyhA5CcoTNs+c -ra1AdHkrAj80//ogaX3T7mH1urPnMNA3I4ZyYUUpSFlob3emLoG+B01vr87ERROR -FHAGjx+f+IdpsQ7vw4kZ6+ocYfx6bIrc1gMLnia6Et3UVDmrJqMz6nWB2i3ND0/k -A9HvFZcba5DFApCTZgIhsUfei5pKgLlVj7WiL8DWM2fafsSntARE60f75li59wzw -eyuxwHApw0BiLTtIadwjPEjrewl5qW3aqDCYz4ByA4imW0aucnl8CAMhZa634Ryl -sSqiMd5mBPfAdOhx3v89WcyWJhKLhZVXGqtrdQtEPREoPHtht+KPZ0/l7DxMYIBp -VzgeAVuNVejH38DMdyM0SXV89pgR6y3e7UEuFAUCf+D+IOs15xGsIs5XPd7JMG0Q -A4XN8f+MFrXBsj6IbGB/kE+V9/YtrQE5BwT6dYB9v0lQ7e/JxHwc64B+27bQ3RP+ -ydOc17KXqQIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIB -BjAdBgNVHQ4EFgQUxhfQvKjqAkPyGwaZXSuQILnXnOQwDQYJKoZIhvcNAQELBQAD -ggIBADRh2Va1EodVTd2jNTFGu6QHcrxfYWLopfsLN7E8trP6KZ1/AvWkyaiTt3px -KGmPc+FSkNrVvjrlt3ZqVoAh313m6Tqe5T72omnHKgqwGEfcIHB9UqM+WXzBusnI -FUBhynLWcKzSt/Ac5IYp8M7vaGPQtSCKFWGafoaYtMnCdvvMujAWzKNhxnQT5Wvv -oxXqA/4Ti2Tk08HS6IT7SdEQTXlm66r99I0xHnAUrdzeZxNMgRVhvLfZkXdxGYFg -u/BYpbWcC/ePIlUnwEsBbTuZDdQdm2NnL9DuDcpmvJRPpq3t/O5jrFc/ZSXPsoaP -0Aj/uHYUbt7lJ+yreLVTubY/6CD50qi+YUbKh4yE8/nxoGibIh6BJpsQBJFxwAYf -3KDTuVan45gtf4Od34wrnDKOMpTwATwiKp9Dwi7DmDkHOHv8XgBCH/MyJnmDhPbl -8MFREsALHgQjDFSlTC9JxUrRtm5gDWv8a4uFJGS3iQ6rJUdbPM9+Sb3H6QrG2vd+ -DhcI00iX0HGS8A85PjRqHH3Y8iKuu2n0M7SmSFXRDw4m6Oy2Cy2nhTXN/VnIn9HN -PlopNLk9hM6xZdRZkZFWdSHBd575euFgndOtBBj0fOtek49TSiIp+EgrPk2GrFt/ -ywaZWWDYWGWVjUTR939+J399roD1B0y2PpxxVJkES/1Y+Zj0 ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/QuoVadisRootCertificationAuthority.crt b/test/rules/platform_certs/default/QuoVadisRootCertificationAuthority.crt deleted file mode 100644 index ea68f8876e1b..000000000000 --- a/test/rules/platform_certs/default/QuoVadisRootCertificationAuthority.crt +++ /dev/null @@ -1,34 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIF0DCCBLigAwIBAgIEOrZQizANBgkqhkiG9w0BAQUFADB/MQswCQYDVQQGEwJC -TTEZMBcGA1UEChMQUXVvVmFkaXMgTGltaXRlZDElMCMGA1UECxMcUm9vdCBDZXJ0 -aWZpY2F0aW9uIEF1dGhvcml0eTEuMCwGA1UEAxMlUXVvVmFkaXMgUm9vdCBDZXJ0 -aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wMTAzMTkxODMzMzNaFw0yMTAzMTcxODMz -MzNaMH8xCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMSUw -IwYDVQQLExxSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MS4wLAYDVQQDEyVR -dW9WYWRpcyBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIIBIjANBgkqhkiG -9w0BAQEFAAOCAQ8AMIIBCgKCAQEAv2G1lVO6V/z68mcLOhrfEYBklbTRvM16z/Yp -li4kVEAkOPcahdxYTMukJ0KX0J+DisPkBgNbAKVRHnAEdOLB1Dqr1607BxgFjv2D -rOpm2RgbaIr1VxqYuvXtdj182d6UajtLF8HVj71lODqV0D1VNk7feVcxKh7YWWVJ -WCCYfqtffp/p1k3sg3Spx2zY7ilKhSoGFPlU5tPaZQeLYzcS19Dsw3sgQUSj7cug -F+FxZc4dZjH3dgEZyH0DWLaVSR2mEiboxgx24ONmy+pdpibu5cxfvWenAScOospU -xbF6lR1xHkopigPcakXBpBlebzbNw6Kwt/5cOOJSvPhEQ+aQuwIDAQABo4ICUjCC -Ak4wPQYIKwYBBQUHAQEEMTAvMC0GCCsGAQUFBzABhiFodHRwczovL29jc3AucXVv -dmFkaXNvZmZzaG9yZS5jb20wDwYDVR0TAQH/BAUwAwEB/zCCARoGA1UdIASCAREw -ggENMIIBCQYJKwYBBAG+WAABMIH7MIHUBggrBgEFBQcCAjCBxxqBxFJlbGlhbmNl -IG9uIHRoZSBRdW9WYWRpcyBSb290IENlcnRpZmljYXRlIGJ5IGFueSBwYXJ0eSBh -c3N1bWVzIGFjY2VwdGFuY2Ugb2YgdGhlIHRoZW4gYXBwbGljYWJsZSBzdGFuZGFy -ZCB0ZXJtcyBhbmQgY29uZGl0aW9ucyBvZiB1c2UsIGNlcnRpZmljYXRpb24gcHJh -Y3RpY2VzLCBhbmQgdGhlIFF1b1ZhZGlzIENlcnRpZmljYXRlIFBvbGljeS4wIgYI -KwYBBQUHAgEWFmh0dHA6Ly93d3cucXVvdmFkaXMuYm0wHQYDVR0OBBYEFItLbe3T -KbkGGew5Oanwl4Rqy+/fMIGuBgNVHSMEgaYwgaOAFItLbe3TKbkGGew5Oanwl4Rq -y+/foYGEpIGBMH8xCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1p -dGVkMSUwIwYDVQQLExxSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MS4wLAYD -VQQDEyVRdW9WYWRpcyBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5ggQ6tlCL -MA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQUFAAOCAQEAitQUtf70mpKnGdSk -fnIYj9lofFIk3WdvOXrEql494liwTXCYhGHoG+NpGA7O+0dQoE7/8CQfvbLO9Sf8 -7C9TqnN7Az10buYWnuulLsS/VidQK2K6vkscPFVcQR0kvoIgR13VRH56FmjffU1R -cHhXHTMe/QKZnAzNCgVPx7uOpHX6Sm2xgI4JVrmcGmD+XcHXetwReNDWXcG31a0y -mQM6isxUJTkxgXsTIlG6Rmyhu576BGxJJnSP0nPrzDCi5upZIof4l/UO/erMkqQW -xFIY6iHOsfHmhIHluqmGKPJDWl0Snawe2ajlCmqnf6CHKc/yiU3U7MXi5nrQNiOK -SnQ2+Q== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/RSASecurity2048v3.crt b/test/rules/platform_certs/default/RSASecurity2048v3.crt deleted file mode 100644 index 634521d4c638..000000000000 --- a/test/rules/platform_certs/default/RSASecurity2048v3.crt +++ /dev/null @@ -1,21 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDYTCCAkmgAwIBAgIQCgEBAQAAAnwAAAAKAAAAAjANBgkqhkiG9w0BAQUFADA6 -MRkwFwYDVQQKExBSU0EgU2VjdXJpdHkgSW5jMR0wGwYDVQQLExRSU0EgU2VjdXJp -dHkgMjA0OCBWMzAeFw0wMTAyMjIyMDM5MjNaFw0yNjAyMjIyMDM5MjNaMDoxGTAX -BgNVBAoTEFJTQSBTZWN1cml0eSBJbmMxHTAbBgNVBAsTFFJTQSBTZWN1cml0eSAy -MDQ4IFYzMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAt49VcdKA3Xtp -eafwGFAyPGJn9gqVB93mG/Oe2dJBVGutn3y+Gc37RqtBaB4Y6lXIL5F4iSj7Jylg -/9+PjDvJSZu1pJTOAeo+tWN7fyb9Gd3AIb2E0S1PRsNO3Ng3OTsor8udGuorryGl -wSMiuLgbWhOHV4PR8CDn6E8jQrAApX2J6elhc5SYcSa8LWrg903w8bYqODGBDSnh -AMFRD0xS+ARaqn1y07iHKrtjEAMqs6FPDVpeRrc9DvV07Jmf+T0kgYim3WBU6JU2 -PcYJk5qjEoAAVZkZR73QpXzDuvsf9/UP+Ky5tfQ3mBMY3oVbtwyCO4dvlTlYMNpu -AWgXIszACwIDAQABo2MwYTAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIB -BjAfBgNVHSMEGDAWgBQHw1EwpKrpRa41JPr/JCwz0LGdjDAdBgNVHQ4EFgQUB8NR -MKSq6UWuNST6/yQsM9CxnYwwDQYJKoZIhvcNAQEFBQADggEBAF8+hnZuuDU8TjYc -HnmYv/3VEhF5Ug7uMYm83X/50cYVIeiKAVQNOvtUudZj1LGqlk2iQk3UUx+LEN5/ -Zb5gEydxiKRz44Rj0aRV4VCT5hsOedBnvEbIvz8XDZXmxpBp3ue0L96VfdASPz0+ -f00/FGj1EVDVwfSQpQgdMWD/YIwjVAqv/qFuxdF6Kmh4zx6CCiC0H63lhbJqaHVO -rSU3lIW+vaHU6rcMSzyd6BIA8F+sDeGscGNz9395nzIlQnQFgCi/vcEkllgVsRch -6YlL2weIZ/QVrXA+L02FO8K32/6YaCOJ4XQP3vTFhGMpG8zLB8kApKnXwiJPZ9d3 -7CAFYd4= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/RootCAGeneralitatValenciana.crt b/test/rules/platform_certs/default/RootCAGeneralitatValenciana.crt deleted file mode 100644 index 999dff65a647..000000000000 --- a/test/rules/platform_certs/default/RootCAGeneralitatValenciana.crt +++ /dev/null @@ -1,37 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIGizCCBXOgAwIBAgIEO0XlaDANBgkqhkiG9w0BAQUFADBoMQswCQYDVQQGEwJF -UzEfMB0GA1UEChMWR2VuZXJhbGl0YXQgVmFsZW5jaWFuYTEPMA0GA1UECxMGUEtJ -R1ZBMScwJQYDVQQDEx5Sb290IENBIEdlbmVyYWxpdGF0IFZhbGVuY2lhbmEwHhcN -MDEwNzA2MTYyMjQ3WhcNMjEwNzAxMTUyMjQ3WjBoMQswCQYDVQQGEwJFUzEfMB0G -A1UEChMWR2VuZXJhbGl0YXQgVmFsZW5jaWFuYTEPMA0GA1UECxMGUEtJR1ZBMScw -JQYDVQQDEx5Sb290IENBIEdlbmVyYWxpdGF0IFZhbGVuY2lhbmEwggEiMA0GCSqG -SIb3DQEBAQUAA4IBDwAwggEKAoIBAQDGKqtXETcvIorKA3Qdyu0togu8M1JAJke+ -WmmmO3I2F0zo37i7L3bhQEZ0ZQKQUgi0/6iMweDHiVYQOTPvaLRfX9ptI6GJXiKj -SgbwJ/BXufjpTjJ3Cj9BZPPrZe52/lSqfR0grvPXdMIKX/UIKFIIzFVd0g/bmoGl -u6GzwZTNVOAydTGRGmKy3nXiz0+J2ZGQD0EbtFpKd71ng+CT516nDOeB0/RSrFOy -A8dEJvt55cs0YFAQexvba9dHq198aMpunUEDEO5rmXteJajCq+TA81yc477OMUxk -Hl6AovWDfgzWyoxVjr7gvkkHD6MkQXpYHYTqWBLI4bft75PelAgxAgMBAAGjggM7 -MIIDNzAyBggrBgEFBQcBAQQmMCQwIgYIKwYBBQUHMAGGFmh0dHA6Ly9vY3NwLnBr -aS5ndmEuZXMwEgYDVR0TAQH/BAgwBgEB/wIBAjCCAjQGA1UdIASCAiswggInMIIC -IwYKKwYBBAG/VQIBADCCAhMwggHoBggrBgEFBQcCAjCCAdoeggHWAEEAdQB0AG8A -cgBpAGQAYQBkACAAZABlACAAQwBlAHIAdABpAGYAaQBjAGEAYwBpAPMAbgAgAFIA -YQDtAHoAIABkAGUAIABsAGEAIABHAGUAbgBlAHIAYQBsAGkAdABhAHQAIABWAGEA -bABlAG4AYwBpAGEAbgBhAC4ADQAKAEwAYQAgAEQAZQBjAGwAYQByAGEAYwBpAPMA -bgAgAGQAZQAgAFAAcgDhAGMAdABpAGMAYQBzACAAZABlACAAQwBlAHIAdABpAGYA -aQBjAGEAYwBpAPMAbgAgAHEAdQBlACAAcgBpAGcAZQAgAGUAbAAgAGYAdQBuAGMA -aQBvAG4AYQBtAGkAZQBuAHQAbwAgAGQAZQAgAGwAYQAgAHAAcgBlAHMAZQBuAHQA -ZQAgAEEAdQB0AG8AcgBpAGQAYQBkACAAZABlACAAQwBlAHIAdABpAGYAaQBjAGEA -YwBpAPMAbgAgAHMAZQAgAGUAbgBjAHUAZQBuAHQAcgBhACAAZQBuACAAbABhACAA -ZABpAHIAZQBjAGMAaQDzAG4AIAB3AGUAYgAgAGgAdAB0AHAAOgAvAC8AdwB3AHcA -LgBwAGsAaQAuAGcAdgBhAC4AZQBzAC8AYwBwAHMwJQYIKwYBBQUHAgEWGWh0dHA6 -Ly93d3cucGtpLmd2YS5lcy9jcHMwHQYDVR0OBBYEFHs100DSHHgZZu90ECjcPk+y -eAT8MIGVBgNVHSMEgY0wgYqAFHs100DSHHgZZu90ECjcPk+yeAT8oWykajBoMQsw -CQYDVQQGEwJFUzEfMB0GA1UEChMWR2VuZXJhbGl0YXQgVmFsZW5jaWFuYTEPMA0G -A1UECxMGUEtJR1ZBMScwJQYDVQQDEx5Sb290IENBIEdlbmVyYWxpdGF0IFZhbGVu -Y2lhbmGCBDtF5WgwDQYJKoZIhvcNAQEFBQADggEBACRhTvW1yEICKrNcda3Fbcrn -lD+laJWIwVTAEGmiEi8YPyVQqHxK6sYJ2fR1xkDar1CdPaUWu20xxsdzCkj+IHLt -b8zog2EWRpABlUt9jppSCS/2bxzkoXHPjCpaF3ODR00PNvsETUlR4hTJZGH71BTg -9J63NI8KJr2XXPR5OkowGcytT6CYirQxlyric21+eLj4iIlPsSKRZEv1UN4D2+XF -ducTZnV+ZfsBn5OHiJ35Rld8TWCvmHMTI6QgkYH60GFmuH3Rr9ZvHmw96RH9qfmC -IoaZM3Fa6hlXPZHNqcCjbgcTpsnt+GijnsNacgmHKNHEc8RzGF9QdRYxn7fofMM= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/S-TRUSTAuthenticationandEncryptionRootCA2005.crt b/test/rules/platform_certs/default/S-TRUSTAuthenticationandEncryptionRootCA2005.crt deleted file mode 100644 index ef5e4b89719d..000000000000 --- a/test/rules/platform_certs/default/S-TRUSTAuthenticationandEncryptionRootCA2005.crt +++ /dev/null @@ -1,26 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEezCCA2OgAwIBAgIQNxkY5lNUfBq1uMtZWts1tzANBgkqhkiG9w0BAQUFADCB -rjELMAkGA1UEBhMCREUxIDAeBgNVBAgTF0JhZGVuLVd1ZXJ0dGVtYmVyZyAoQlcp -MRIwEAYDVQQHEwlTdHV0dGdhcnQxKTAnBgNVBAoTIERldXRzY2hlciBTcGFya2Fz -c2VuIFZlcmxhZyBHbWJIMT4wPAYDVQQDEzVTLVRSVVNUIEF1dGhlbnRpY2F0aW9u -IGFuZCBFbmNyeXB0aW9uIFJvb3QgQ0EgMjAwNTpQTjAeFw0wNTA2MjIwMDAwMDBa -Fw0zMDA2MjEyMzU5NTlaMIGuMQswCQYDVQQGEwJERTEgMB4GA1UECBMXQmFkZW4t -V3VlcnR0ZW1iZXJnIChCVykxEjAQBgNVBAcTCVN0dXR0Z2FydDEpMCcGA1UEChMg -RGV1dHNjaGVyIFNwYXJrYXNzZW4gVmVybGFnIEdtYkgxPjA8BgNVBAMTNVMtVFJV -U1QgQXV0aGVudGljYXRpb24gYW5kIEVuY3J5cHRpb24gUm9vdCBDQSAyMDA1OlBO -MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2bVKwdMz6tNGs9HiTNL1 -toPQb9UY6ZOvJ44TzbUlNlA0EmQpoVXhOmCTnijJ4/Ob4QSwI7+Vio5bG0F/WsPo -TUzVJBY+h0jUJ67m91MduwwA7z5hca2/OnpYH5Q9XIHV1W/fuJvS9eXLg3KSwlOy -ggLrra1fFi2SU3bxibYs9cEv4KdKb6AwajLrmnQDaHgTncovmwsdvs91DSaXm8f1 -XgqfeN+zvOyauu9VjxuapgdjKRdZYgkqeQd3peDRF2npW932kKvimAoA0SVtnteF -hy+S8dF2g08LOlk3KC8zpxdQ1iALCvQm+Z845y2kuJuJja2tyWp9iRe79n+Ag3rm -7QIDAQABo4GSMIGPMBIGA1UdEwEB/wQIMAYBAf8CAQAwDgYDVR0PAQH/BAQDAgEG -MCkGA1UdEQQiMCCkHjAcMRowGAYDVQQDExFTVFJvbmxpbmUxLTIwNDgtNTAdBgNV -HQ4EFgQUD8oeXHngovMpttKFswtKtWXsa1IwHwYDVR0jBBgwFoAUD8oeXHngovMp -ttKFswtKtWXsa1IwDQYJKoZIhvcNAQEFBQADggEBAK8B8O0ZPCjoTVy7pWMciDMD -pwCHpB8gq9Yc4wYfl35UvbfRssnV2oDsF9eK9XvCAPbpEW+EoFolMeKJ+aQAPzFo -LtU96G7m1R08P7K9n3frndOMusDXtk3sU5wPBG7qNWdX4wple5A64U8+wwCSersF -iXOMy6ZNwPv2AtawB6MDwidAnwzkhYItr5pCHdDHjfhA7p0GVxzZotiAFP7hYy0y -h9WUUpY6RsZxlj33mA6ykaqP2vROJAA5VeitF7nTNCtKqUDMFypVZUF0Qn71wK/I -k63yGFs9iQzbRzkk+OBM8h+wPQrKBU6JIRrjKpms/H+h8Q8bHz2eBIPdltkdOpQ= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/S-TRUSTUniversalRootCA.crt b/test/rules/platform_certs/default/S-TRUSTUniversalRootCA.crt deleted file mode 100644 index b2510a981650..000000000000 --- a/test/rules/platform_certs/default/S-TRUSTUniversalRootCA.crt +++ /dev/null @@ -1,23 +0,0 @@ ------BEGIN CERTIFICATE----- -MIID2DCCAsCgAwIBAgIQYFbFSyNAW2TU7SXa2dYeHjANBgkqhkiG9w0BAQsFADCB -hTELMAkGA1UEBhMCREUxKTAnBgNVBAoTIERldXRzY2hlciBTcGFya2Fzc2VuIFZl -cmxhZyBHbWJIMScwJQYDVQQLEx5TLVRSVVNUIENlcnRpZmljYXRpb24gU2Vydmlj -ZXMxIjAgBgNVBAMTGVMtVFJVU1QgVW5pdmVyc2FsIFJvb3QgQ0EwHhcNMTMxMDIy -MDAwMDAwWhcNMzgxMDIxMjM1OTU5WjCBhTELMAkGA1UEBhMCREUxKTAnBgNVBAoT -IERldXRzY2hlciBTcGFya2Fzc2VuIFZlcmxhZyBHbWJIMScwJQYDVQQLEx5TLVRS -VVNUIENlcnRpZmljYXRpb24gU2VydmljZXMxIjAgBgNVBAMTGVMtVFJVU1QgVW5p -dmVyc2FsIFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCo -4wvfETeFgpq1bGZ8YT/ARxodRuOwVWTluII5KAd+F//0m4rwkYHqOD8heGxI7Gsv -otOKcrKn19nqf7TASWswJYmM67fVQGGY4tw8IJLNZUpynxqOjPolFb/zIYMoDYuv -WRGCQ1ybTSVRf1gYY2A7s7WKi1hjN0hIkETCQN1d90NpKZhcEmVeq5CSS2bf1XUS -U1QYpt6K1rtXAzlZmRgFDPn9FcaQZEYXgtfCSkE9/QC+V3IYlHcbU1qJAfYzcg6T -OtzoHv0FBda8c+CI3KtP7LUYhk95hA5IKmYq3TLIeGXIC51YAQVx7YH1aBduyw20 -S9ih7K446xxYL6FlAzQvAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0P -AQH/BAQDAgEGMB0GA1UdDgQWBBSafdfr639UmEUptCCrbQuWIxmkwjANBgkqhkiG -9w0BAQsFAAOCAQEATpYS2353XpInniEXGIJ22D+8pQkEZoiJrdtVszNqxmXEj03z -MjbceQSWqXcy0Zf1GGuMuu3OEdBEx5LxtESO7YhSSJ7V/Vn4ox5R+wFS5V/let2q -JE8ii912RvaloA812MoPmLkwXSBvwoEevb3A/hXTOCoJk5gnG5N70Cs0XmilFU/R -UsOgyqCDRR319bdZc11ZAY+qwkcvFHHVKeMQtUeTJcwjKdq3ctiR1OwbSIoi5MEq -9zpok59FGW5Dt8z+uJGaYRo2aWNkkijzb2GShROfyQcsi1fc65551cLeCNVUsldO -KjKNoeI60RAgIjl9NEVvcTvDHfz/sk+o4vYwHg== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/SZAFIRROOTCA2.crt b/test/rules/platform_certs/default/SZAFIRROOTCA2.crt deleted file mode 100644 index 7dd0e73ca876..000000000000 --- a/test/rules/platform_certs/default/SZAFIRROOTCA2.crt +++ /dev/null @@ -1,21 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDcjCCAlqgAwIBAgIUPopdB+xV0jLVt+O2XwHrLdzk1uQwDQYJKoZIhvcNAQEL -BQAwUTELMAkGA1UEBhMCUEwxKDAmBgNVBAoMH0tyYWpvd2EgSXpiYSBSb3psaWN6 -ZW5pb3dhIFMuQS4xGDAWBgNVBAMMD1NaQUZJUiBST09UIENBMjAeFw0xNTEwMTkw -NzQzMzBaFw0zNTEwMTkwNzQzMzBaMFExCzAJBgNVBAYTAlBMMSgwJgYDVQQKDB9L -cmFqb3dhIEl6YmEgUm96bGljemVuaW93YSBTLkEuMRgwFgYDVQQDDA9TWkFGSVIg -Uk9PVCBDQTIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC3vD5QqEvN -QLXOYeeWyrSh2gwisPq1e3YAd4wLz32ohswmUeQgPYUM1ljj5/QqGJ3a0a4m7utT -3PSQ1hNKDJA8w/Ta0o4NkjrcsbH/ON7Dui1fgLkCvUqdGw+0w8LBZwPd3BucPbOw -3gAeqDRHu5rr/gsUvTaE2g0gv/pby6kWIK05YO4vdbbnl5z5Pv1+TW9NL++IDWr6 -3fE9biCloBK0TXC5ztdyO4mTp4CEHCdJckm1/zuVnsHMyAHs6A6KCpbns6aH5db5 -BSsNl0BwPLqsdVqc1U2dAgrSS5tmS0YHF2Wtn2yIANwiieDhZNRnvDF5YTy7ykHN -XGoAyDw4jlivAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQD -AgEGMB0GA1UdDgQWBBQuFqlKGLXLzPVvUPMjX/hd56zwyDANBgkqhkiG9w0BAQsF -AAOCAQEAtXP4A9xZWx126aMqe5Aosk3AM0+qmrHUuOQn/6mWmc5G4G18TKI4pAZw -8PRBEew/R40/cof5O/2kbytTAOD/OblqBw7rHRz2onKQy4I9EYKL0rufKq8h5mOG -nXkZ7/e7DDWQw4rtTw/1zBLZpD67oPwglV9PJi8RI4NOdQcPv5vRtB3pEAT+ymCP -oky4rc/hkA/NrgrHXXu3UNLUYfrVFdvXn4dRVOul4+vJhaAlIDf7js4MNIThPIGy -d05DpYhfhmehPea0XGG2Ptv+tyjFogeutcrKjSoS75ftwjCkySp6+/NNIxuZMzSg -LvWpCz/UXeHPhJ/iGcJfitYgHuNztw== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/SecureCertificateServices.crt b/test/rules/platform_certs/default/SecureCertificateServices.crt deleted file mode 100644 index a996968e093d..000000000000 --- a/test/rules/platform_certs/default/SecureCertificateServices.crt +++ /dev/null @@ -1,25 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEPzCCAyegAwIBAgIBATANBgkqhkiG9w0BAQUFADB+MQswCQYDVQQGEwJHQjEb -MBkGA1UECAwSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHDAdTYWxmb3JkMRow -GAYDVQQKDBFDb21vZG8gQ0EgTGltaXRlZDEkMCIGA1UEAwwbU2VjdXJlIENlcnRp -ZmljYXRlIFNlcnZpY2VzMB4XDTA0MDEwMTAwMDAwMFoXDTI4MTIzMTIzNTk1OVow -fjELMAkGA1UEBhMCR0IxGzAZBgNVBAgMEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4G -A1UEBwwHU2FsZm9yZDEaMBgGA1UECgwRQ29tb2RvIENBIExpbWl0ZWQxJDAiBgNV -BAMMG1NlY3VyZSBDZXJ0aWZpY2F0ZSBTZXJ2aWNlczCCASIwDQYJKoZIhvcNAQEB -BQADggEPADCCAQoCggEBAMBxM4KK0HDrc4eCQNUd5MvJDkKQ+d40uaG6EfQlhfPM -cm3ye5drswfxdySRXyWP9nQ95IDC+DwN879A6vfIUtFyb+/Iq0G4bi4XKpVpDM3S -HpR7LZQdqnXXs5jLrLxkU0C8j6ysNstcrbvd4JQX7NFc0L/vpZXJkMWwrPsbQ996 -CF23uPJAGysnnlDOXmWCiIxe004MeuoIkbY2qitC++rCoznl2yY4rYsK7hljxxwk -3wN42ubqwUcaCwtGCd0C/N7Lh1/XMGNooa7cMqG6vv5Eq2i2pRcV/b3Vp6ea5EQz -6YiO/O1R65NxTq0B50SOqy3LqP4BSUjwwN3HaNiS/j0CAwEAAaOBxzCBxDAdBgNV -HQ4EFgQUPNiTiMLAggnMAZkGkyDpnnAJY08wDgYDVR0PAQH/BAQDAgEGMA8GA1Ud -EwEB/wQFMAMBAf8wgYEGA1UdHwR6MHgwO6A5oDeGNWh0dHA6Ly9jcmwuY29tb2Rv -Y2EuY29tL1NlY3VyZUNlcnRpZmljYXRlU2VydmljZXMuY3JsMDmgN6A1hjNodHRw -Oi8vY3JsLmNvbW9kby5uZXQvU2VjdXJlQ2VydGlmaWNhdGVTZXJ2aWNlcy5jcmww -DQYJKoZIhvcNAQEFBQADggEBAIcBbSMdflsXfcFhMs+P5/OKlFlm4J4oqF7Tt/Q0 -5qo5spcWxYJvMqTpjOev/e/C6LlLqqP05tqNZSH7uoDrJiiFGv45jN5bBAS0VPmj -Z55B+glSzAVIqMk/IQQezkhr/IXownuvf7fM+F86/TXGDe+X3EyrEeFryzHRbPtI -gKvcnDe4IRRLDXE97IMzbtFuMhbsmMcWi1mmNKsFVy2T96oTy9IT4rcuO81rUBcJ -aD61JlfutuC23bkpgHl9j6PwpCikFcSF9CfUa7/lXORlAnZUtOM3ZiTTGWHIUhDl -izeauan5Hb/qmZJhlv8BzaFfDbxxvA6sCx1HRR3B7Hzs/Sk= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/SecureGlobalCA.crt b/test/rules/platform_certs/default/SecureGlobalCA.crt deleted file mode 100644 index f1572d26e650..000000000000 --- a/test/rules/platform_certs/default/SecureGlobalCA.crt +++ /dev/null @@ -1,22 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDvDCCAqSgAwIBAgIQB1YipOjUiolN9BPI8PjqpTANBgkqhkiG9w0BAQUFADBK -MQswCQYDVQQGEwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3QgQ29ycG9yYXRpb24x -GTAXBgNVBAMTEFNlY3VyZSBHbG9iYWwgQ0EwHhcNMDYxMTA3MTk0MjI4WhcNMjkx -MjMxMTk1MjA2WjBKMQswCQYDVQQGEwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3Qg -Q29ycG9yYXRpb24xGTAXBgNVBAMTEFNlY3VyZSBHbG9iYWwgQ0EwggEiMA0GCSqG -SIb3DQEBAQUAA4IBDwAwggEKAoIBAQCvNS7YrGxVaQZx5RNoJLNP2MwhR/jxYDiJ -iQPpvepeRlMJ3Fz1Wuj3RSoC6zFh1ykzTM7HfAo3fg+6MpjhHZevj8fcyTiW89sa -/FHtaMbQbqR8JNGuQsiWUGMu4P51/pinX0kuleM5M2SOHqRfkNJnPLLZ/kG5VacJ -jnIFHovdRIWCQtBJwB1g8NEXLJXr9qXBkqPFwqcIYA1gBBCWeZ4WNOaptvolRTnI -HmX5k/Wq8VLcmZg9pYYaDDUz+kulBAYVHDGA76oYa8J719rO+TMg1fW9ajMtgQT7 -sFzUnKPiXB3jqUJ1XnvUd+85VLrJChgbEplJL4hL/VBi0XPnj3pDAgMBAAGjgZ0w -gZowEwYJKwYBBAGCNxQCBAYeBABDAEEwCwYDVR0PBAQDAgGGMA8GA1UdEwEB/wQF -MAMBAf8wHQYDVR0OBBYEFK9EBMJBfkiD2045AuzshHrmzsmkMDQGA1UdHwQtMCsw -KaAnoCWGI2h0dHA6Ly9jcmwuc2VjdXJldHJ1c3QuY29tL1NHQ0EuY3JsMBAGCSsG -AQQBgjcVAQQDAgEAMA0GCSqGSIb3DQEBBQUAA4IBAQBjGghAfaReUw132HquHw0L -URYD7xh8yOOvaliTFGCRsoTciE6+OYo68+aCiV0BN7OrJKQVDpI1WkpEXk5X+nXO -H0jOZvQ8QCaSmGwb7iRGDBezUqXbpZGRzzfTb+cnCDpOGR86p1hcF895P4vkp9Mm -I50mD1hp/Ed+stCNi5O/KU9DaXR2Z0vPB4zmAve14bRDtUstFJ/53CYNv6ZHdAbY -iNE6KTCEztI5gGIbqMdXSbxqVVFnFUq+NQfk1XWYN3kwFNspnWzFacxHVaIw98xc -f8LDmBxrThaA63p4ZUWiABqvDA1VZDRIuJK58bRQKfJPIx/abKwfROHdI3hRW8cW ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/SecureSignRootCA11.crt b/test/rules/platform_certs/default/SecureSignRootCA11.crt deleted file mode 100644 index 33e6d539fd3c..000000000000 --- a/test/rules/platform_certs/default/SecureSignRootCA11.crt +++ /dev/null @@ -1,21 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDbTCCAlWgAwIBAgIBATANBgkqhkiG9w0BAQUFADBYMQswCQYDVQQGEwJKUDEr -MCkGA1UEChMiSmFwYW4gQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcywgSW5jLjEcMBoG -A1UEAxMTU2VjdXJlU2lnbiBSb290Q0ExMTAeFw0wOTA0MDgwNDU2NDdaFw0yOTA0 -MDgwNDU2NDdaMFgxCzAJBgNVBAYTAkpQMSswKQYDVQQKEyJKYXBhbiBDZXJ0aWZp -Y2F0aW9uIFNlcnZpY2VzLCBJbmMuMRwwGgYDVQQDExNTZWN1cmVTaWduIFJvb3RD -QTExMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA/XeqpRyQBTvLTJsz -i1oURaTnkBbR31fSIRCkF/3frNYfp+TbfPfs37gD2pRY/V1yfIw/XwFndBWW4wI8 -h9uuywGOwvNmxoVF9ALGOrVisq/6nL+k5tSAMJjzDbaTj6nU2DbysPyKyiyhFTOV -MdrAG/LuYpmGYz+/3ZMqg6h2uRMft85OQoWPIucuGvKVCbIFtUROd6EgvanyTgp9 -UK31BQ1FT0Zx/Sg+U/sE2C3XZR1KG/rPO7AxmjVuyIsG0wCR8pQIZUyxNAYAeoni -8McDWc/V1uinMrPmmECGxc0nEovMe863ETxiYAcjPitAbpSACW22s293bzUIUPsC -h8U+iQIDAQABo0IwQDAdBgNVHQ4EFgQUW/hNT7KlhtQ60vFjmqC+CfZXt94wDgYD -VR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEB -AKChOBZmLqdWHyGcBvod7bkixTgm2E5P7KN/ed5GIaGHd48HCJqypMWvDzKYC3xm -KbabfSVSSUOrTC4rbnpwrxYO4wJs+0LmGJ1F2FXI6Dvd5+H0LgscNFxsWEr7jIhQ -X5Ucv+2rIrVls4W6ng+4reV6G4pQOh29Dbx7VFALuUKvVaAYga1lme++5Jy/xIWr -QbJUb9wlze144o4MjQlJ3WN7WmmWAiGovVJZ6X01y8hSyn+B/tlr0/cR7SXf+Of5 -pPpyl4RTDaXQMhhRdlkUbA/r7F+AjHVDg8OFmP9Mni0N5HeDk061lgeLKBObjBmN -QSdJQO7e5iNEOdyhIta6A/I= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/SecureTrustCA.crt b/test/rules/platform_certs/default/SecureTrustCA.crt deleted file mode 100644 index e5156e36ad7d..000000000000 --- a/test/rules/platform_certs/default/SecureTrustCA.crt +++ /dev/null @@ -1,22 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDuDCCAqCgAwIBAgIQDPCOXAgWpa1Cf/DrJxhZ0DANBgkqhkiG9w0BAQUFADBI -MQswCQYDVQQGEwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3QgQ29ycG9yYXRpb24x -FzAVBgNVBAMTDlNlY3VyZVRydXN0IENBMB4XDTA2MTEwNzE5MzExOFoXDTI5MTIz -MTE5NDA1NVowSDELMAkGA1UEBhMCVVMxIDAeBgNVBAoTF1NlY3VyZVRydXN0IENv -cnBvcmF0aW9uMRcwFQYDVQQDEw5TZWN1cmVUcnVzdCBDQTCCASIwDQYJKoZIhvcN -AQEBBQADggEPADCCAQoCggEBAKukgeWVzfX2FI7CT8rU4niVWJxB4Q2ZQCQXOZEz -Zum+4YOvYlyJ0fwkW2Gz4BERQRwdbvC4u/jep4G6pkjGnx29vo6pQT64lO0pGtSO -0gMdA+9tDWccV9cGrcrI9f4Or2YlSASWC12juhbDCE/RRvgUXPLIXgGZbf2IzIao -wW8xQmxSPmjL8xk037uHGFaAJsTQ3MBv396gwpEWoGQRS0S8Hvbn+mPeZqx2pHGj -7DaUaHp3pLHnDi+BeuK1cobvomuL8A/b01k/unK8RCSc43Oz969XL0Imnal0ugBS -8kvNU3xHCzaFDmapCJcWNFfBZveA4+1wVMeT4C4oFVmHursCAwEAAaOBnTCBmjAT -BgkrBgEEAYI3FAIEBh4EAEMAQTALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB -/zAdBgNVHQ4EFgQUQjK2FvoE/f5dS3rD/fdMQB1aQ68wNAYDVR0fBC0wKzApoCeg -JYYjaHR0cDovL2NybC5zZWN1cmV0cnVzdC5jb20vU1RDQS5jcmwwEAYJKwYBBAGC -NxUBBAMCAQAwDQYJKoZIhvcNAQEFBQADggEBADDtT0rhWDpSclu1pqNlGKa7UTt3 -6Z3q059c4EVlew3KW+JwULKUBRSuSceNQQcSc5R+DCMh/bwQf2AQWnL1mA6s7Ll/ -3XpvXdMc9P+IBWlCqQVxyLesJugutIxq/3HcuLHfmbx8IVQr5Fiiu1cprp6poxkm -D5kuCLDv/WnPmRoJjeOnnyvJNjR7JLN4TJUXpAYmHrZkUjZfYGfZnMUFdAvnZyPS -CPyI6a6Lf+Ew9Dd+/cYy2i2eRDAwbO4H3tI0/NL/QPZL9GZGBlSm8jIKYyYwa5vR -3ItHuuG51WLQoqD0ZwV4KWMabwTW+MZMo5qxN7SN5ShLHZ4swrhovO0C7jE= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/SecurityCommunicationEVRootCA1.crt b/test/rules/platform_certs/default/SecurityCommunicationEVRootCA1.crt deleted file mode 100644 index c30e5bc5060b..000000000000 --- a/test/rules/platform_certs/default/SecurityCommunicationEVRootCA1.crt +++ /dev/null @@ -1,21 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDfTCCAmWgAwIBAgIBADANBgkqhkiG9w0BAQUFADBgMQswCQYDVQQGEwJKUDEl -MCMGA1UEChMcU0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEqMCgGA1UECxMh -U2VjdXJpdHkgQ29tbXVuaWNhdGlvbiBFViBSb290Q0ExMB4XDTA3MDYwNjAyMTIz -MloXDTM3MDYwNjAyMTIzMlowYDELMAkGA1UEBhMCSlAxJTAjBgNVBAoTHFNFQ09N -IFRydXN0IFN5c3RlbXMgQ08uLExURC4xKjAoBgNVBAsTIVNlY3VyaXR5IENvbW11 -bmljYXRpb24gRVYgUm9vdENBMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC -ggEBALx/7FebJOD+nLpCeamIivqA4PUHKUPqjgo0No0c+qe1OXj/l3X3L+SqawSE -RMqm4miO/VVQYg+kcQ7OBzgtQoVQrTyWb4vVog7P3kmJPdZkLjjlHmy1V4qe70gO -zXppFodEtZDkBp2uoQSXWHnvIEqCa4wiv+wfD+mEce3xDuS4GBPMVjZd0ZoeUWs5 -bmB2iDQL87PRsJ3KYeJkHcFGB7hj3R4zZbOOCVVSPbW9/wfrrWFVGCypaZhKqkDF -MxRldAD5kd6vA0jFQFTcD4SQaCDFkpbcLuUCRarAX1T4bepJz11sS6/vmsJWXMY1 -VkJqMF/Cq/biPT+zyRGPMUzXn0kCAwEAAaNCMEAwHQYDVR0OBBYEFDVK9U2vP9eC -OKyrcWUXdYydVZPmMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MA0G -CSqGSIb3DQEBBQUAA4IBAQCoh+ns+EBnXcPBZsdAS5f8hxOQWsTvoMpfi7ent/HW -tWS3irO4G8za+6xmiEHO6Pzk2x6Ipu0nUBsCMCRGef4Eh3CXQHPRwMFXGZpppSeZ -q51ihPZRwSzJIxXYKLerJRO1RuGGAv8mjMSIkh1W/hln8lXkgKNrnKt34VFxDSDb -EJrbvXZ5B3eZKK2aXtqxT0QsNY6llsf9g/BYxnnWmHyojf6GPgcWkuF75x3sM3Z+ -Qi5KhfmRiWiEA4Glm5q+4zfFVKtWOxgtQaQM+ELbmaDgcm+7XeEWT1MKZPlO9L9O -VL14bIjqv5wTJMJwaaJ/D8g8rQjJsJhAoyrniIPtd490 ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/SecurityCommunicationRootCA.crt b/test/rules/platform_certs/default/SecurityCommunicationRootCA.crt deleted file mode 100644 index 1b78732e1c85..000000000000 --- a/test/rules/platform_certs/default/SecurityCommunicationRootCA.crt +++ /dev/null @@ -1,20 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDWjCCAkKgAwIBAgIBADANBgkqhkiG9w0BAQUFADBQMQswCQYDVQQGEwJKUDEY -MBYGA1UEChMPU0VDT00gVHJ1c3QubmV0MScwJQYDVQQLEx5TZWN1cml0eSBDb21t -dW5pY2F0aW9uIFJvb3RDQTEwHhcNMDMwOTMwMDQyMDQ5WhcNMjMwOTMwMDQyMDQ5 -WjBQMQswCQYDVQQGEwJKUDEYMBYGA1UEChMPU0VDT00gVHJ1c3QubmV0MScwJQYD -VQQLEx5TZWN1cml0eSBDb21tdW5pY2F0aW9uIFJvb3RDQTEwggEiMA0GCSqGSIb3 -DQEBAQUAA4IBDwAwggEKAoIBAQCzs/5/022x7xZ8V6UMbXaKL0u/ZPtM7orw8yl8 -9f/uKuDp6bpbZCKamm8sOiZpUQWZJtzVHGpxxpp9Hp3dfGzGjGdnSj74cbAZJ6kJ -DKaVv0uMDPpVmDvY6CKhS3E4eayXkmmziX7qIWgGmBSWh9JhNrxtJ1aeV+7AwFb9 -Ms+k2Y7CI9eNqPPYJayX5HA49LY6tJ07lyZDo6G8SVlyTCMwhwFY9k6+HGhWZq/N -QV3Is00qVUarH9oe4kA92819uZKAnDfdDJZkndwi92SL32HeFZRSFaB9UslLqCHJ -xrHty8OVYNEP8Ktw+N/LTX7s1vqr2b1/VPKl6Xn62dZ2JChzAgMBAAGjPzA9MB0G -A1UdDgQWBBSgc0mZaNyFW2XjmygvV5+9M7wHSDALBgNVHQ8EBAMCAQYwDwYDVR0T -AQH/BAUwAwEB/zANBgkqhkiG9w0BAQUFAAOCAQEAaECpqLvkT115swW1F7NgE+vG -kl3g0dNq/vu+m22/xwVtWSDEHPC32oRYAmP6SBbvT6UL90qY8j+eG61Ha2POCEfr -Uj94nK9NrvjVT8+amCoQQTlSxN3Zmw7vkwGusi7KaEIkQmywszo+zenaSMQVy+n5 -Bw+SUEmK3TGXX8npN6o7WWWXlDLJs58+OmJYxUmtYg5xpTKqL8aJdkNAExNnPaJU -JRDL8Try2frbSVa7pv6nQTXD4IhhyYjH3zYQIphZ6rBK+1YWc26sTfcioU+tHXot -RSflMMFe8toTyyVCUZVHA4xsIcx0Qu1T/zOLjw9XARYvz6buyXAiFL39vmwLAw== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/SecurityCommunicationRootCA2.crt b/test/rules/platform_certs/default/SecurityCommunicationRootCA2.crt deleted file mode 100644 index e1111838698b..000000000000 --- a/test/rules/platform_certs/default/SecurityCommunicationRootCA2.crt +++ /dev/null @@ -1,21 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDdzCCAl+gAwIBAgIBADANBgkqhkiG9w0BAQsFADBdMQswCQYDVQQGEwJKUDEl -MCMGA1UEChMcU0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEnMCUGA1UECxMe -U2VjdXJpdHkgQ29tbXVuaWNhdGlvbiBSb290Q0EyMB4XDTA5MDUyOTA1MDAzOVoX -DTI5MDUyOTA1MDAzOVowXTELMAkGA1UEBhMCSlAxJTAjBgNVBAoTHFNFQ09NIFRy -dXN0IFN5c3RlbXMgQ08uLExURC4xJzAlBgNVBAsTHlNlY3VyaXR5IENvbW11bmlj -YXRpb24gUm9vdENBMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANAV -OVKxUrO6xVmCxF1SrjpDZYBLx/KWvNs2l9amZIyoXvDjChz335c9S672XewhtUGr -zbl+dp+++T42NKA7wfYxEUV0kz1XgMX5iZnK5atq1LXaQZAQwdbWQonCv/Q4EpVM -VAX3NuRFg3sUZdbcDE3R3n4MqzvEFb46VqZab3ZpUql6ucjrappdUtAtCms1FgkQ -hNBqyjoGADdH5H5XTz+L62e4iKrFvlNVspHEfbmwhRkGeC7bYRr6hfVKkaHnFtWO -ojnflLhwHyg/i/xAXmODPIMqGplrz95Zajv8bxbXH/1KEOtOghY6rCcMU/Gt1SSw -awNQwS08Ft1ENCcadfsCAwEAAaNCMEAwHQYDVR0OBBYEFAqFqXdlBZh8QIH4D5cs -OPEK7DzPMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3 -DQEBCwUAA4IBAQBMOqNErLlFsceTfsgLCkLfZOoc7llsCLqJX2rKSpWeeo8HxdpF -coJxDjrSzG+ntKEju/Ykn8sX/oymzsLS28yN/HH8AynBbF0zX2S2ZTuJbxh2ePXc -okgfGT+Ok+vx+hfuzU7jBBJV1uXk3fs+BXziHV7Gp7yXT2g69ekuCkO2r1dcYmh8 -t/2jioSgrGK+KwmHNPBqAbubKVY8/gA3zyNs8U6qtnRGEmyR7jTV7JqR50S+kDFy -1UkC9gLl9B/rfNmWVan/7Ir5mUf/NVoCqgTLiluHcSmRvaS0eg29mvVXIwAHIRc/ -SjnRBUkLp7Y3gaVdjKozXoEofKd9J+sAro03 ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/SoneraClass1CA.crt b/test/rules/platform_certs/default/SoneraClass1CA.crt deleted file mode 100644 index a3dd6dec4966..000000000000 --- a/test/rules/platform_certs/default/SoneraClass1CA.crt +++ /dev/null @@ -1,19 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDIDCCAgigAwIBAgIBJDANBgkqhkiG9w0BAQUFADA5MQswCQYDVQQGEwJGSTEP -MA0GA1UEChMGU29uZXJhMRkwFwYDVQQDExBTb25lcmEgQ2xhc3MxIENBMB4XDTAx -MDQwNjEwNDkxM1oXDTIxMDQwNjEwNDkxM1owOTELMAkGA1UEBhMCRkkxDzANBgNV -BAoTBlNvbmVyYTEZMBcGA1UEAxMQU29uZXJhIENsYXNzMSBDQTCCASIwDQYJKoZI -hvcNAQEBBQADggEPADCCAQoCggEBALWJHytPZwp5/8Ue+H887dF+2rDNbS82rDTG -29lkFwhjMDMiikzujrsPDUJVyZ0upe/3p4zDq7mXy47vPxVnqIJyY1MPQYx9EJUk -oVqlBvqSV536pQHydekfvFYmUk54GWVYVQNYwBSujHxVX3BbdyMGNpfzJLWaRpXk -3w0LBUXl0fIdgrvGE+D+qnr9aTCU89JFhfzyMlsy3uhsXR/LpCJ0sICOXZT3BgBL -qdReLjVQCfOAl/QMF6452F/NM8EcyonCIvdFEu1eEpOdY6uCLrnrQkFEy0oaAIIN -nvmLVz5MxxftLItyM19yejhW1ebZrgUaHXVFsculJRwSVzb9IjcCAwEAAaMzMDEw -DwYDVR0TAQH/BAUwAwEB/zARBgNVHQ4ECgQIR+IMi/ZTiFIwCwYDVR0PBAQDAgEG -MA0GCSqGSIb3DQEBBQUAA4IBAQCLGrLJXWG04bkruVPRsoWdd44W7hE928Jj2VuX -ZfsSZ9gqXLar5V7DtxYvyOirHYr9qxp81V9jz9yw3Xe5qObSIjiHBxTZ/75Wtf0H -DjxVyhbMp6Z3N/vbXB9OWQaHowND9Rart4S9Tu+fMTfwRvFAttEMpWT4Y14h21VO -TzF2nBBhjrZTOqMRvq9tfB69ri3iDGnHhVNoomG6xT60eVR4ngrHAr5i0RGCS2Uv -kVrCqIexVmiUefkl98HVrhq4uz2PqYo4Ffdz0Fpg0YCw8NzVUM1O7pJIae2yIx4w -zMiUyLb1O4Z/P6Yun/Y+LLWSlj7fLJOK/4GMDw9ZIRlXvVWa ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/SoneraClass2CA.crt b/test/rules/platform_certs/default/SoneraClass2CA.crt deleted file mode 100644 index 56b0aed4565f..000000000000 --- a/test/rules/platform_certs/default/SoneraClass2CA.crt +++ /dev/null @@ -1,19 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDIDCCAgigAwIBAgIBHTANBgkqhkiG9w0BAQUFADA5MQswCQYDVQQGEwJGSTEP -MA0GA1UEChMGU29uZXJhMRkwFwYDVQQDExBTb25lcmEgQ2xhc3MyIENBMB4XDTAx -MDQwNjA3Mjk0MFoXDTIxMDQwNjA3Mjk0MFowOTELMAkGA1UEBhMCRkkxDzANBgNV -BAoTBlNvbmVyYTEZMBcGA1UEAxMQU29uZXJhIENsYXNzMiBDQTCCASIwDQYJKoZI -hvcNAQEBBQADggEPADCCAQoCggEBAJAXSjWdyvANlsdE+hY3/Ei9vX+ALTU74W+o -Z6m/AxxNjG8yR9VBaKQTBME1DJqEQ/xcHf+Js+gXGM2RX/uJ4+q/Tl18GybTdXnt -5oTjV+WtKcT0OijnpXuENmmz/V52vaMtmdOQTiMofRhj8VQ7Jp12W5dCsv+u8E7s -3TmVToMGf+dJQMjFAbJUWmYdPfz56TwKnoG4cPABi+QjVHzIrviQHgCWctRUz2Ej -vOr7nQKV0ba5cTppCD8PtOFCx4j1P5iop7oc4HFx71hXgVB6XGt0Rg6DA5jDjqhu -8nYybieDwnPz3BjotJPqdURrBGAgcVeHnfO+oJAjPYok4doh28MCAwEAAaMzMDEw -DwYDVR0TAQH/BAUwAwEB/zARBgNVHQ4ECgQISqCqWITTXjwwCwYDVR0PBAQDAgEG -MA0GCSqGSIb3DQEBBQUAA4IBAQBazof5FnIVV0sd2ZvnoiYw7JNn39Yt0jSv9zil -zqsWuasvfDXLrNAPtEwr/IDva4yRXzZ299uzGxnq9LIR/WFxRL8oszodv7ND6J+/ -3DEIcbCdjdY0RzKQxmUk96BKfARzjzlvF4xytb1LyHr4e4PDKE6cCepnP7JnBBvD -FNr450kkkdAdavphOe9r5yF1BgfYErQhIHBCcYHaPJo2vqZbDWpsmh+Re/n570K6 -Tk6ezAyNlNzZRZxe7EJQY670XcSxEtzKO6gunRRaBXW37Ndj4ro1tgQIkejanZz2 -ZrUYrAqmVCY0M9IbwdR/GjqOC6oybtv8TyWf2TLHllpwrN9M ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/StaatderNederlandenEVRootCA.crt b/test/rules/platform_certs/default/StaatderNederlandenEVRootCA.crt deleted file mode 100644 index b60741c225c1..000000000000 --- a/test/rules/platform_certs/default/StaatderNederlandenEVRootCA.crt +++ /dev/null @@ -1,32 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFcDCCA1igAwIBAgIEAJiWjTANBgkqhkiG9w0BAQsFADBYMQswCQYDVQQGEwJO -TDEeMBwGA1UECgwVU3RhYXQgZGVyIE5lZGVybGFuZGVuMSkwJwYDVQQDDCBTdGFh -dCBkZXIgTmVkZXJsYW5kZW4gRVYgUm9vdCBDQTAeFw0xMDEyMDgxMTE5MjlaFw0y -MjEyMDgxMTEwMjhaMFgxCzAJBgNVBAYTAk5MMR4wHAYDVQQKDBVTdGFhdCBkZXIg -TmVkZXJsYW5kZW4xKTAnBgNVBAMMIFN0YWF0IGRlciBOZWRlcmxhbmRlbiBFViBS -b290IENBMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA48d+ifkkSzrS -M4M1LGns3Amk41GoJSt5uAg94JG6hIXGhaTK5skuU6TJJB79VWZxXSzFYGgEt9nC -UiY4iKTWO0Cmws0/zZiTs1QUWJZV1VD+hq2kY39ch/aO5ieSZxeSAgMs3NZmdO3d -Z//BYY1jTw+bbRcwJu+r0h8QoPnFfxZpgQNH7R5ojXKhTbImxrpsX23Wr9GxE46p -rfNeaXUmGD5BKyF/7otdBwadQ8QpCiv8Kj6GyzyDOvnJDdrFmeK8eEEzduG/L13l -pJhQDBXd4Pqcfzho0LKmeqfRMb1+ilgnQ7O6M5HTp5gVXJrm0w912fxBmJc+qiXb -j5IusHsMX/FjqTf5m3VpTCgmJdrV8hJwRVXj33NeN/UhbJCONVrJ0yPr08C+eKxC -KFhmpUZtcALXEPlLVPxdhkqHz3/KRawRWrUgUY0viEeXOcDPusBCAUCZSCELa6fS -/ZbV0b5GnUngC6agIk440ME8MLxwjyx1zNDFjFE7PZQIZCZhfbnDZY8UnCHQqv0X -cgOPvZuM5l5Tnrmd74K74bzickFbIZTTRTeU0d8JOV3nI6qaHcptqAqGhYqCvkIH -1vI4gnPah1vlPNOePqc7nvQDs/nxfRN0Av+7oeX6AHkcpmZBiFxgV6YuCcS6/ZrP -px9Aw7vMWgpVSzs4dlG4Y4uElBbmVvMCAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB -/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFP6rAJCYniT8qcwaivsnuL8wbqg7 -MA0GCSqGSIb3DQEBCwUAA4ICAQDPdyxuVr5Os7aEAJSrR8kN0nbHhp8dB9O2tLsI -eK9p0gtJ3jPFrK3CiAJ9Brc1AsFgyb/E6JTe1NOpEyVa/m6irn0F3H3zbPB+po3u -2dfOWBfoqSmuc0iH55vKbimhZF8ZE/euBhD/UcabTVUlT5OZEAFTdfETzsemQUHS -v4ilf0X8rLiltTMMgsT7B/Zq5SWEXwbKwYY5EdtYzXc7LMJMD16a4/CrPmEbUCTC -wPTxGfARKbalGAKb12NMcIxHowNDXLldRqANb/9Zjr7dn3LDWyvfjFvO5QxGbJKy -CqNMVEIYFRIYvdr8unRu/8G2oGTYqV9Vrp9canaW2HNnh/tNf1zuacpzEPuKqf2e -vTY4SUmH9A4U8OmHuD+nT3pajnnUk+S7aFKErGzp85hwVXIy+TSrK0m1zSBi5Dp6 -Z2Orltxtrpfs/J92VoguZs9btsmksNcFuuEnL5O7Jiqik7Ab846+HUCjuTaPPoIa -Gl6I6lD4WeKDRikL40Rc4ZW2aZCaFG+XroHPaO+Zmr615+F/+PoTRxZMzG0IQOeL -eG9QgkRQP2YGiqtDhFZKDyAthg710tvSeopLzaXoTvFeJiUBWSOgftL2fiFX1ye8 -FVdMpEbB4IMeDExNH08GGeL5qPQ6gqGyeUN51q1veieQA6TqJIc/2b3Z6fJfUEkc -7uzXLg== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/StaatderNederlandenRootCA-G2.crt b/test/rules/platform_certs/default/StaatderNederlandenRootCA-G2.crt deleted file mode 100644 index ec1d8f7c2941..000000000000 --- a/test/rules/platform_certs/default/StaatderNederlandenRootCA-G2.crt +++ /dev/null @@ -1,33 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFyjCCA7KgAwIBAgIEAJiWjDANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQGEwJO -TDEeMBwGA1UECgwVU3RhYXQgZGVyIE5lZGVybGFuZGVuMSswKQYDVQQDDCJTdGFh -dCBkZXIgTmVkZXJsYW5kZW4gUm9vdCBDQSAtIEcyMB4XDTA4MDMyNjExMTgxN1oX -DTIwMDMyNTExMDMxMFowWjELMAkGA1UEBhMCTkwxHjAcBgNVBAoMFVN0YWF0IGRl -ciBOZWRlcmxhbmRlbjErMCkGA1UEAwwiU3RhYXQgZGVyIE5lZGVybGFuZGVuIFJv -b3QgQ0EgLSBHMjCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMVZ5291 -qj5LnLW4rJ4L5PnZyqtdj7U5EILXr1HgO+EASGrP2uEGQxGZqhQlEq0i6ABtQ8Sp -uOUfiUtnvWFI7/3S4GCI5bkYYCjDdyutsDeqN95kWSpGV+RLufg3fNU254DBtvPU -Z5uW6M7XxgpT0GtJlvOjCwV3SPcl5XCsMBQgJeN/dVrlSPhOewMHBPqCYYdu8DvE -pMfQ9XQ+pV0aCPKbJdL2rAQmPlU6Yiile7Iwr/g3wtG61jj99O9JMDeZJiFIhQGp -5Rbn3JBV3w/oOM2ZNyFPXfUib2rFEhZgF1XyZWampzCROME4HYYEhLoaJXhena/M -UGDWE4dS7WMfbWV9whUYdMrhfmQpjHLYFhN9C0lK8SgbIHRrxT3dsKpICT0ugpTN -GmXZK4iambwYfp/ufWZ8Pr2UuIHOzZgweMFvZ9C+X+Bo7d7iscksWXiSqt8rYGPy -5V6548r6f1CGPqI0GAwJaCgRHOThuVw+R7oyPxjMW4T182t0xHJ04eOLoEq9jWYv -6q012iDTiIJh8BIitrzQ1aTsr1SIJSQ8p22xcik/Plemf1WvbibG/ufMQFxRRIEK -eN5KzlW/HdXZt1bv8Hb/C3m1r737qWmRRpdogBQ2HbN/uymYNqUg+oJgYjOk7Na6 -B6duxc8UpufWkjTYgfX8HV2qXB72o007uPc5AgMBAAGjgZcwgZQwDwYDVR0TAQH/ -BAUwAwEB/zBSBgNVHSAESzBJMEcGBFUdIAAwPzA9BggrBgEFBQcCARYxaHR0cDov -L3d3dy5wa2lvdmVyaGVpZC5ubC9wb2xpY2llcy9yb290LXBvbGljeS1HMjAOBgNV -HQ8BAf8EBAMCAQYwHQYDVR0OBBYEFJFoMocVHYnitfGsNig0jQt8YojrMA0GCSqG -SIb3DQEBCwUAA4ICAQCoQUpnKpKBglBu4dfYszk78wIVCVBR7y29JHuIhjv5tLyS -CZa59sCrI2AGeYwRTlHSeYAz+51IvuxBQ4EffkdAHOV6CMqqi3WtFMTC6GY8ggen -5ieCWxjmD27ZUD6KQhgpxrRW/FYQoAUXvQwjf/ST7ZwaUb7dRUG/kSS0H4zpX897 -IZmflZ85OkYcbPnNe5yQzSipx6lVu6xiNGI1E0sUOlWDuYaNkqbG9AclVMwWVxJK -gnjIFNkXgiYtXSAfea7+1HAWFpWD2DU5/1JddRwWxRNVz0fMdWVSSt7wsKfkCpYL -+63C4iWEst3kvX5ZbJvw8NjnyvLplzh+ib7M+zkXYT9y2zqR2GUBGR2tUKRXCnxL -vJxxcypFURmFzI79R6d0lR2o0a9OF7FpJsKqeFdbxU2n5Z4FF5TKsl+gSRiNNOkm -bEgeqmiSBeGCc1qb3AdbCG19ndeNIdn8FCCqwkXfP+cAslHkwvgFuXkajDTznlvk -N1trSt8sV4pAWja63XVECDdCcAz+3F4hoKOKwJCcaNpQ5kUQR3i2TtJlycM33+FC -Y7BXN0Ute4qcvwXqZVUz9zkQxSgqIXobisQk+T8VyJoVIPVVYpbtbZNQvOSqeK3Z -ywplh6ZmwcSBo3c6WB4L7oOLnR7SUqTMHW+wmG2UMbX4cQrcufx9MmDm66+KAQ== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/StaatderNederlandenRootCA-G3.crt b/test/rules/platform_certs/default/StaatderNederlandenRootCA-G3.crt deleted file mode 100644 index 9f3d25093082..000000000000 --- a/test/rules/platform_certs/default/StaatderNederlandenRootCA-G3.crt +++ /dev/null @@ -1,32 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFdDCCA1ygAwIBAgIEAJiiOTANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQGEwJO -TDEeMBwGA1UECgwVU3RhYXQgZGVyIE5lZGVybGFuZGVuMSswKQYDVQQDDCJTdGFh -dCBkZXIgTmVkZXJsYW5kZW4gUm9vdCBDQSAtIEczMB4XDTEzMTExNDExMjg0MloX -DTI4MTExMzIzMDAwMFowWjELMAkGA1UEBhMCTkwxHjAcBgNVBAoMFVN0YWF0IGRl -ciBOZWRlcmxhbmRlbjErMCkGA1UEAwwiU3RhYXQgZGVyIE5lZGVybGFuZGVuIFJv -b3QgQ0EgLSBHMzCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAL4yolQP -cPssXFnrbMSkUeiFKrPMSjTysF/zDsccPVMeiAho2G89rcKezIJnByeHaHE6n3WW -IkYFsO2tx1ueKt6c/DrGlaf1F2cY5y9JCAxcz+bMNO14+1Cx3Gsy8KL+tjzk7FqX -xz8ecAgwoNzFs21v0IJyEavSgWhZghe3eJJg+szeP4TrjTgzkApyI/o1zCZxMdFy -KJLZWyNtZrVtB0LrpjPOktvA9mxjeM3KTj215VKb8b475lRgsGYeCasH/lSJEULR -9yS6YHgamPfJEf0WwTUaVHXvQ9Plrk7O53vDxk5hUUurmkVLoR9BvUhTFXFkC4az -5S6+zqQbwSmEorXLCCN2QyIkHxcE1G6cxvx/K2Ya7Irl1s9N9WMJtxU51nus6+N8 -6U78dULI7ViVDAZCopz35HCz33JvWjdAidiFpNfxC95DGdRKWCyMijmev4SH8RY7 -Ngzp07TKbBlBUgmhHbBqv4LvcFEhMtwFdozL92TkA1CvjJFnq8Xy7ljY3r735zHP -bMk7ccHViLVlvMDoFxcHErVc0qsgk7TmgoNwNsXNo42ti+yjwUOH5kPiNL6VizXt -BznaqB16nzaeErAMZRKQFWDZJkBE41ZgpRDUajz9QdwOWke275dhdU/Z/seyHdTt -XUmzqWrLZoQT1Vyg3N9udwbRcXXIV2+vD3dbAgMBAAGjQjBAMA8GA1UdEwEB/wQF -MAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBRUrfrHkleuyjWcLhL75Lpd -INyUVzANBgkqhkiG9w0BAQsFAAOCAgEAMJmdBTLIXg47mAE6iqTnB/d6+Oea31BD -U5cqPco8R5gu4RV78ZLzYdqQJRZlwJ9UXQ4DO1t3ApyEtg2YXzTdO2PCwyiBwpwp -LiniyMMB8jPqKqrMCQj3ZWfGzd/TtiunvczRDnBfuCPRy5FOCvTIeuXZYzbB1N/8 -Ipf3YF3qKS9Ysr1YvY2WTxB1v0h7PVGHoTx0IsL8B3+A3MSs/mrBcDCw6Y5p4ixp -gZQJut3+TcCDjJRYwEYgr5wfAvg1VUkvRtTA8KCWAg8zxXHzniN9lLf9OtMJgwYh -/WA9rjLA0u6NpvDntIJ8CsxwyXmA+P5M9zWEGYox+wrZ13+b8KKaa8MFSu1BYBQw -0aoRQm7TIwIEC8Zl3d1Sd9qBa7Ko+gE4uZbqKmxnl4mUnrzhVNXkanjvSr0rmj1A -fsbAddJu+2gw7OyLnflJNZoaLNmzlTnVHpL3prllL+U9bTpITAjc5CgSKL59NVzq -4BZ+Extq1z7XnvwtdbLBFNUjA9tbbws+eC8N3jONFrdI54OagQ97wUNNVQQXOEpR -1VmiiXTTn74eS9fGbbeIJG9gkaSChVtWQbzQRKtqE77RLFi3EjNYsjdj3BP1lB0/ -QFH1T/U67cjF68IeHRaVesd+QnGTbksVtzDfqu1XhUisHWrdOWnk4Xl4vs4Fv6EM -94B7IWcnMFk= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/StarfieldClass2CA.crt b/test/rules/platform_certs/default/StarfieldClass2CA.crt deleted file mode 100644 index 84905b337dee..000000000000 --- a/test/rules/platform_certs/default/StarfieldClass2CA.crt +++ /dev/null @@ -1,24 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEDzCCAvegAwIBAgIBADANBgkqhkiG9w0BAQUFADBoMQswCQYDVQQGEwJVUzEl -MCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjEyMDAGA1UECxMp -U3RhcmZpZWxkIENsYXNzIDIgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDQw -NjI5MTczOTE2WhcNMzQwNjI5MTczOTE2WjBoMQswCQYDVQQGEwJVUzElMCMGA1UE -ChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjEyMDAGA1UECxMpU3RhcmZp -ZWxkIENsYXNzIDIgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwggEgMA0GCSqGSIb3 -DQEBAQUAA4IBDQAwggEIAoIBAQC3Msj+6XGmBIWtDBFk385N78gDGIc/oav7PKaf -8MOh2tTYbitTkPskpD6E8J7oX+zlJ0T1KKY/e97gKvDIr1MvnsoFAZMej2YcOadN -+lq2cwQlZut3f+dZxkqZJRRU6ybH838Z1TBwj6+wRir/resp7defqgSHo9T5iaU0 -X9tDkYI22WY8sbi5gv2cOj4QyDvvBmVmepsZGD3/cVE8MC5fvj13c7JdBmzDI1aa -K4UmkhynArPkPw2vCHmCuDY96pzTNbO8acr1zJ3o/WSNF4Azbl5KXZnJHoe0nRrA -1W4TNSNe35tfPe/W93bC6j67eA0cQmdrBNj41tpvi/JEoAGrAgEDo4HFMIHCMB0G -A1UdDgQWBBS/X7fRzt0fhvRbVazc1xDCDqmI5zCBkgYDVR0jBIGKMIGHgBS/X7fR -zt0fhvRbVazc1xDCDqmI56FspGowaDELMAkGA1UEBhMCVVMxJTAjBgNVBAoTHFN0 -YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xMjAwBgNVBAsTKVN0YXJmaWVsZCBD -bGFzcyAyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5ggEAMAwGA1UdEwQFMAMBAf8w -DQYJKoZIhvcNAQEFBQADggEBAAWdP4id0ckaVaGsafPzWdqbAYcaT1epoXkJKtv3 -L7IezMdeatiDh6GX70k1PncGQVhiv45YuApnP+yz3SFmH8lU+nLMPUxA2IGvd56D -eruix/U0F47ZEUD0/CwqTRV/p2JdLiXTAAsgGh1o+Re49L2L7ShZ3U0WixeDyLJl -xy16paq8U4Zt3VekyvggQQto8PT7dL5WXXp59fkdheMtlb71cZBDzI0fmgAKhynp -VSJYACPq4xJDKVtHCN2MQWplBqjlIapBtJUhlbl90TSrE9atvNziPTnNvT51cKEY -WQPJIrSPnNVeKtelttQKbfi3QBFGmh95DmK/D5fs4C8fF5Q= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/StarfieldRootCertificateAuthority-G2.crt b/test/rules/platform_certs/default/StarfieldRootCertificateAuthority-G2.crt deleted file mode 100644 index cdab763e535f..000000000000 --- a/test/rules/platform_certs/default/StarfieldRootCertificateAuthority-G2.crt +++ /dev/null @@ -1,23 +0,0 @@ ------BEGIN CERTIFICATE----- -MIID3TCCAsWgAwIBAgIBADANBgkqhkiG9w0BAQsFADCBjzELMAkGA1UEBhMCVVMx -EDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoT -HFN0YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xMjAwBgNVBAMTKVN0YXJmaWVs -ZCBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTA5MDkwMTAwMDAw -MFoXDTM3MTIzMTIzNTk1OVowgY8xCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6 -b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMSUwIwYDVQQKExxTdGFyZmllbGQgVGVj -aG5vbG9naWVzLCBJbmMuMTIwMAYDVQQDEylTdGFyZmllbGQgUm9vdCBDZXJ0aWZp -Y2F0ZSBBdXRob3JpdHkgLSBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC -ggEBAL3twQP89o/8ArFvW59I2Z154qK3A2FWGMNHttfKPTUuiUP3oWmb3ooa/RMg -nLRJdzIpVv257IzdIvpy3Cdhl+72WoTsbhm5iSzchFvVdPtrX8WJpRBSiUZV9Lh1 -HOZ/5FSuS/hVclcCGfgXcVnrHigHdMWdSL5stPSksPNkN3mSwOxGXn/hbVNMYq/N -Hwtjuzqd+/x5AJhhdM8mgkBj87JyahkNmcrUDnXMN/uLicFZ8WJ/X7NfZTD4p7dN -dloedl40wOiWVpmKs/B/pM293DIxfJHP4F8R+GuqSVzRmZTRouNjWwl2tVZi4Ut0 -HZbUJtQIBFnQmA4O5t78w+wfkPECAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAO -BgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFHwMMh+n2TB/xH1oo2Kooc6rB1snMA0G -CSqGSIb3DQEBCwUAA4IBAQARWfolTwNvlJk7mh+ChTnUdgWUXuEok21iXQnCoKjU -sHU48TRqneSfioYmUeYs0cYtbpUgSpIB7LiKZ3sx4mcujJUDJi5DnUox9g61DLu3 -4jd/IroAow57UvtruzvE03lRTs2Q9GcHGcg8RnoNAX3FWOdt5oUwF5okxBDgBPfg -8n/Uqgr/Qh037ZTlZFkSIHc40zI+OIF1lnP6aI+xy84fxez6nH7PfrHxBy22/L/K -pL/QlwVKvOoYKAKQvVR4CSFx09F9HdkWsKlhPdAKACL8x3vLCWRFCztAgfd9fDL1 -mMpYjn0q7pBZc2T5NnReJaH1ZgUufzkVqSr7UIuOhWn0 ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/StarfieldServicesRootCertificateAuthority-G2.crt b/test/rules/platform_certs/default/StarfieldServicesRootCertificateAuthority-G2.crt deleted file mode 100644 index 7ef6022c1cee..000000000000 --- a/test/rules/platform_certs/default/StarfieldServicesRootCertificateAuthority-G2.crt +++ /dev/null @@ -1,24 +0,0 @@ ------BEGIN CERTIFICATE----- -MIID7zCCAtegAwIBAgIBADANBgkqhkiG9w0BAQsFADCBmDELMAkGA1UEBhMCVVMx -EDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoT -HFN0YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xOzA5BgNVBAMTMlN0YXJmaWVs -ZCBTZXJ2aWNlcyBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTA5 -MDkwMTAwMDAwMFoXDTM3MTIzMTIzNTk1OVowgZgxCzAJBgNVBAYTAlVTMRAwDgYD -VQQIEwdBcml6b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMSUwIwYDVQQKExxTdGFy -ZmllbGQgVGVjaG5vbG9naWVzLCBJbmMuMTswOQYDVQQDEzJTdGFyZmllbGQgU2Vy -dmljZXMgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgLSBHMjCCASIwDQYJKoZI -hvcNAQEBBQADggEPADCCAQoCggEBANUMOsQq+U7i9b4Zl1+OiFOxHz/Lz58gE20p -OsgPfTz3a3Y4Y9k2YKibXlwAgLIvWX/2h/klQ4bnaRtSmpDhcePYLQ1Ob/bISdm2 -8xpWriu2dBTrz/sm4xq6HZYuajtYlIlHVv8loJNwU4PahHQUw2eeBGg6345AWh1K -Ts9DkTvnVtYAcMtS7nt9rjrnvDH5RfbCYM8TWQIrgMw0R9+53pBlbQLPLJGmpufe -hRhJfGZOozptqbXuNC66DQO4M99H67FrjSXZm86B0UVGMpZwh94CDklDhbZsc7tk -6mFBrMnUVN+HL8cisibMn1lUaJ/8viovxFUcdUBgF4UCVTmLfwUCAwEAAaNCMEAw -DwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFJxfAN+q -AdcwKziIorhtSpzyEZGDMA0GCSqGSIb3DQEBCwUAA4IBAQBLNqaEd2ndOxmfZyMI -bw5hyf2E3F/YNoHN2BtBLZ9g3ccaaNnRbobhiCPPE95Dz+I0swSdHynVv/heyNXB -ve6SbzJ08pGCL72CQnqtKrcgfU28elUSwhXqvfdqlS5sdJ/PHLTyxQGjhdByPq1z -qwubdQxtRbeOlKyWN7Wg0I8VRw7j6IPdj/3vQQF3zCepYoUz8jcI73HPdwbeyBkd -iEDPfUYd/x7H4c7/I9vG+o1VTqkC50cRRj70/b17KSa7qWFiNyi2LSr2EIZkyXCn -0q23KXB56jzaYyWf/Wi3MOxw+3WKt21gZ7IeyLnp2KhvAotnDU0mV3HaIPzBSlCN -sSi6 ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/StartComCertificationAuthority.crt b/test/rules/platform_certs/default/StartComCertificationAuthority.crt deleted file mode 100644 index cf5abe631c8e..000000000000 --- a/test/rules/platform_certs/default/StartComCertificationAuthority.crt +++ /dev/null @@ -1,44 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIHyTCCBbGgAwIBAgIBATANBgkqhkiG9w0BAQUFADB9MQswCQYDVQQGEwJJTDEW -MBQGA1UEChMNU3RhcnRDb20gTHRkLjErMCkGA1UECxMiU2VjdXJlIERpZ2l0YWwg -Q2VydGlmaWNhdGUgU2lnbmluZzEpMCcGA1UEAxMgU3RhcnRDb20gQ2VydGlmaWNh -dGlvbiBBdXRob3JpdHkwHhcNMDYwOTE3MTk0NjM2WhcNMzYwOTE3MTk0NjM2WjB9 -MQswCQYDVQQGEwJJTDEWMBQGA1UEChMNU3RhcnRDb20gTHRkLjErMCkGA1UECxMi -U2VjdXJlIERpZ2l0YWwgQ2VydGlmaWNhdGUgU2lnbmluZzEpMCcGA1UEAxMgU3Rh -cnRDb20gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUA -A4ICDwAwggIKAoICAQDBiNsJvGxGfHiflXu1M5DycmLWwTYgIiRezul38kMKogZk -pMyONvg45iPwbm2xPN1yo4UcodM9tDMr0y+v/uqwQVlntsQGfQqedIXWeUyAN3rf -OQVSWff0G0ZDpNKFhdLDcfN1YjS6LIp/Ho/u7TTQEceWzVI9ujPW3U3eCztKS5/C -Ji/6tRYccjV3yjxd5srhJosaNnZcAdt0FCX+7bWgiA/deMotHweXMAEtcnn6RtYT -Kqi5pquDSR3l8u/d5AGOGAqPY1MWhWKpDhk6zLVmpsJrdAfkK+F2PrRt2PZE4XNi -HzvEvqBTViVsUQn3qqvKv3b9bZvzndu/PWa8DFaqr5hIlTpL36dYUNk4dalb6kMM -Av+Z6+hsTXBbKWWc3apdzK8BMewM69KN6Oqce+Zu9ydmDBpI125C4z/eIT574Q1w -+2OqqGwaVLRcJXrJosmLFqa7LH4XXgVNWG4SHQHuEhANxjJ/GP/89PrNbpHoNkm+ -Gkhpi8KWTRoSsmkXwQqQ1vp5Iki/untp+HDH+no32NgN0nZPV/+Qt+OR0t3vwmC3 -Zzrd/qqc8NSLf3Iizsafl7b4r4qgEKjZ+xjGtrVcUjyJthkqcwEKDwOzEmDyei+B -26Nu/yYwl/WL3YlXtq09s68rxbd2AvCl1iuahhQqcvbjM4xdCUsT37uMdBNSSwID -AQABo4ICUjCCAk4wDAYDVR0TBAUwAwEB/zALBgNVHQ8EBAMCAa4wHQYDVR0OBBYE -FE4L7xqkQFulF2mHMMo0aEPQQa7yMGQGA1UdHwRdMFswLKAqoCiGJmh0dHA6Ly9j -ZXJ0LnN0YXJ0Y29tLm9yZy9zZnNjYS1jcmwuY3JsMCugKaAnhiVodHRwOi8vY3Js -LnN0YXJ0Y29tLm9yZy9zZnNjYS1jcmwuY3JsMIIBXQYDVR0gBIIBVDCCAVAwggFM -BgsrBgEEAYG1NwEBATCCATswLwYIKwYBBQUHAgEWI2h0dHA6Ly9jZXJ0LnN0YXJ0 -Y29tLm9yZy9wb2xpY3kucGRmMDUGCCsGAQUFBwIBFilodHRwOi8vY2VydC5zdGFy -dGNvbS5vcmcvaW50ZXJtZWRpYXRlLnBkZjCB0AYIKwYBBQUHAgIwgcMwJxYgU3Rh -cnQgQ29tbWVyY2lhbCAoU3RhcnRDb20pIEx0ZC4wAwIBARqBl0xpbWl0ZWQgTGlh -YmlsaXR5LCByZWFkIHRoZSBzZWN0aW9uICpMZWdhbCBMaW1pdGF0aW9ucyogb2Yg -dGhlIFN0YXJ0Q29tIENlcnRpZmljYXRpb24gQXV0aG9yaXR5IFBvbGljeSBhdmFp -bGFibGUgYXQgaHR0cDovL2NlcnQuc3RhcnRjb20ub3JnL3BvbGljeS5wZGYwEQYJ -YIZIAYb4QgEBBAQDAgAHMDgGCWCGSAGG+EIBDQQrFilTdGFydENvbSBGcmVlIFNT -TCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTANBgkqhkiG9w0BAQUFAAOCAgEAFmyZ -9GYMNPXQhV59CuzaEE44HF7fpiUFS5Eyweg78T3dRAlbB0mKKctmArexmvclmAk8 -jhvh3TaHK0u7aNM5Zj2gJsfyOZEdUauCe37Vzlrk4gNXcGmXCPleWKYK34wGmkUW -FjgKXlf2Ysd6AgXmvB618p70qSmD+LIU424oh0TDkBreOKk8rENNZEXO3SipXPJz -ewT4F+irsfMuXGRuczE6Eri8sxHkfY+BUZo7jYn0TZNmezwD7dOaHZrzZVD1oNB1 -ny+v8OqCQ5j4aZyJecRDjkZy42Q2Eq/3JR44iZB3fsNrarnDy0RLrHiQi+fHLB5L -EUTINFInzQpdn4XBidUaePKVEFMy3YCEZnXZtWgo+2EuvoSoOMCZEoalHmdkrQYu -L6lwhceWD3yJZfWOQ1QOq92lgDmUYMA0yZZwLKMS9R9Ie70cfmu3nZD0Ijuu+Pwq -yvqCUqDvr0tVk+vBtfAii6w0TiYiBKGHLHVKt+V9E9e4DGTANtLJL4YSjCMJwRuC -O3NJo2pXh5Tl1njFmUNj403gdy3hZZlyaQQaRwnmDwFWJPsfvw55qVguucQJAX6V -um0ABj6y6koQOdjQK/W/7HW/lwLFCRsI3FU34oH7N4RDYiDK51ZLZer+bMEkkySh -NOsF/5oirpt9P/FlUQqmMGqz9IgcgA38corog14= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/StartComCertificationAuthorityG2.crt b/test/rules/platform_certs/default/StartComCertificationAuthorityG2.crt deleted file mode 100644 index cdb854e2c774..000000000000 --- a/test/rules/platform_certs/default/StartComCertificationAuthorityG2.crt +++ /dev/null @@ -1,31 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFYzCCA0ugAwIBAgIBOzANBgkqhkiG9w0BAQsFADBTMQswCQYDVQQGEwJJTDEW -MBQGA1UEChMNU3RhcnRDb20gTHRkLjEsMCoGA1UEAxMjU3RhcnRDb20gQ2VydGlm -aWNhdGlvbiBBdXRob3JpdHkgRzIwHhcNMTAwMTAxMDEwMDAxWhcNMzkxMjMxMjM1 -OTAxWjBTMQswCQYDVQQGEwJJTDEWMBQGA1UEChMNU3RhcnRDb20gTHRkLjEsMCoG -A1UEAxMjU3RhcnRDb20gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgRzIwggIiMA0G -CSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC2iTZbB7cgNr2Cu+EWIAOVeq8Oo1XJ -JZlKxdBWQYeQTSFgpBSHO839sj60ZwNq7eEPS8CRhXBF4EKe3ikj1AENoBB5uNsD -vfOpL9HG4A/LnooUCri99lZi8cVytjIl2bLzvWXFDSxu1ZJvGIsAQRSCb0AgJnoo -D/Uefyf3lLE3PbfHkffiAez9lInhzG7TNtYKGXmu1zSCZf98Qru23QumNK9LYP5/ -Q0kGi4xDuFby2X8hQxfqp0iVAXV16iulQ5XqFYSdCI0mblWbq9zSOdIxHWDirMxW -RST1HFSr7obdljKF+ExP6JV2tgXdNiNnvP8V4so75qbsO+wmETRIjfaAKxojAuuK -HDp2KntWFhxyKrOq42ClAJ8Em+JvHhRYW6Vsi1g8w7pOOlz34ZYrPu8HvKTlXcxN -nw3h3Kq74W4a7I/htkxNeXJdFzULHdfBR9qWJODQcqhaX2YtENwvKhOuJv4KHBnM -0D4LnMgJLvlblnpHnOl68wVQdJVznjAJ85eCXuaPOQgeWeU1FEIT/wCc976qUM/i -UUjXuG+v+E5+M5iSFGI6dWPPe/regjupuznixL0sAA7IF6wT700ljtizkC+p2il9 -Ha90OrInwMEePnWjFqmveiJdnxMaz6eg6+OGCtP95paV1yPIN93EfKo2rJgaErHg -TuixO/XWb/Ew1wIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQE -AwIBBjAdBgNVHQ4EFgQUS8W0QGutHLOlHGVuRjaJhwUMDrYwDQYJKoZIhvcNAQEL -BQADggIBAHNXPyzVlTJ+N9uWkusZXn5T50HsEbZH77Xe7XRcxfGOSeD8bpkTzZ+K -2s06Ctg6Wgk/XzTQLwPSZh0avZyQN8gMjgdalEVGKua+etqhqaRpEpKwfTbURIfX -UfEpY9Z1zRbkJ4kd+MIySP3bmdCPX1R0zKxnNBFi2QwKN4fRoxdIjtIXHfbX/dtl -6/2o1PXWT6RbdejF0mCy2wl+JYt7ulKSnj7oxXehPOBKc2thz4bcQ///If4jXSRK -9dNtD2IEBVeC2m6kMyV5Sy5UGYvMLD0w6dEG/+gyRr61M3Z3qAFdlsHB1b6uJcDJ -HgoJIIihDsnzb02CVAAgp9KP5DlUFy6NHrgbuxu9mk47EDTcnIhT76IxW1hPkWLI -wpqazRVdOKnWvvgTtZ8SafJQYqz7Fzf07rh1Z2AQ+4NQ+US1dZxAF7L+/XldblhY -XzD8AK6vM8EOTmy6p6ahfzLbOOCxchcKK5HsamMm7YnUeMx0HgX4a/6ManY5Ka5l -IxKVCCIcl85bBu4M4ru8H0ST9tg4RQUh7eStqxK2A6RCLi3ECToDZ2mEmuFZkIoo -hdVddLHRDiBYmxOlsGOm7XtH/UVVMKTumtTm4ofvmMkyghEpIrwACjFeLQ/Ajulr -so8uBtjRkcfGEvRM/TAXw8HaOFvjqermobp573PYtlNXLfbQ4ddI ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/StartComCertificationAuthority_2.crt b/test/rules/platform_certs/default/StartComCertificationAuthority_2.crt deleted file mode 100644 index 7317e09e07f3..000000000000 --- a/test/rules/platform_certs/default/StartComCertificationAuthority_2.crt +++ /dev/null @@ -1,43 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIHhzCCBW+gAwIBAgIBLTANBgkqhkiG9w0BAQsFADB9MQswCQYDVQQGEwJJTDEW -MBQGA1UEChMNU3RhcnRDb20gTHRkLjErMCkGA1UECxMiU2VjdXJlIERpZ2l0YWwg -Q2VydGlmaWNhdGUgU2lnbmluZzEpMCcGA1UEAxMgU3RhcnRDb20gQ2VydGlmaWNh -dGlvbiBBdXRob3JpdHkwHhcNMDYwOTE3MTk0NjM3WhcNMzYwOTE3MTk0NjM2WjB9 -MQswCQYDVQQGEwJJTDEWMBQGA1UEChMNU3RhcnRDb20gTHRkLjErMCkGA1UECxMi -U2VjdXJlIERpZ2l0YWwgQ2VydGlmaWNhdGUgU2lnbmluZzEpMCcGA1UEAxMgU3Rh -cnRDb20gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUA -A4ICDwAwggIKAoICAQDBiNsJvGxGfHiflXu1M5DycmLWwTYgIiRezul38kMKogZk -pMyONvg45iPwbm2xPN1yo4UcodM9tDMr0y+v/uqwQVlntsQGfQqedIXWeUyAN3rf -OQVSWff0G0ZDpNKFhdLDcfN1YjS6LIp/Ho/u7TTQEceWzVI9ujPW3U3eCztKS5/C -Ji/6tRYccjV3yjxd5srhJosaNnZcAdt0FCX+7bWgiA/deMotHweXMAEtcnn6RtYT -Kqi5pquDSR3l8u/d5AGOGAqPY1MWhWKpDhk6zLVmpsJrdAfkK+F2PrRt2PZE4XNi -HzvEvqBTViVsUQn3qqvKv3b9bZvzndu/PWa8DFaqr5hIlTpL36dYUNk4dalb6kMM -Av+Z6+hsTXBbKWWc3apdzK8BMewM69KN6Oqce+Zu9ydmDBpI125C4z/eIT574Q1w -+2OqqGwaVLRcJXrJosmLFqa7LH4XXgVNWG4SHQHuEhANxjJ/GP/89PrNbpHoNkm+ -Gkhpi8KWTRoSsmkXwQqQ1vp5Iki/untp+HDH+no32NgN0nZPV/+Qt+OR0t3vwmC3 -Zzrd/qqc8NSLf3Iizsafl7b4r4qgEKjZ+xjGtrVcUjyJthkqcwEKDwOzEmDyei+B -26Nu/yYwl/WL3YlXtq09s68rxbd2AvCl1iuahhQqcvbjM4xdCUsT37uMdBNSSwID -AQABo4ICEDCCAgwwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYD -VR0OBBYEFE4L7xqkQFulF2mHMMo0aEPQQa7yMB8GA1UdIwQYMBaAFE4L7xqkQFul -F2mHMMo0aEPQQa7yMIIBWgYDVR0gBIIBUTCCAU0wggFJBgsrBgEEAYG1NwEBATCC -ATgwLgYIKwYBBQUHAgEWImh0dHA6Ly93d3cuc3RhcnRzc2wuY29tL3BvbGljeS5w -ZGYwNAYIKwYBBQUHAgEWKGh0dHA6Ly93d3cuc3RhcnRzc2wuY29tL2ludGVybWVk -aWF0ZS5wZGYwgc8GCCsGAQUFBwICMIHCMCcWIFN0YXJ0IENvbW1lcmNpYWwgKFN0 -YXJ0Q29tKSBMdGQuMAMCAQEagZZMaW1pdGVkIExpYWJpbGl0eSwgcmVhZCB0aGUg -c2VjdGlvbiAqTGVnYWwgTGltaXRhdGlvbnMqIG9mIHRoZSBTdGFydENvbSBDZXJ0 -aWZpY2F0aW9uIEF1dGhvcml0eSBQb2xpY3kgYXZhaWxhYmxlIGF0IGh0dHA6Ly93 -d3cuc3RhcnRzc2wuY29tL3BvbGljeS5wZGYwEQYJYIZIAYb4QgEBBAQDAgAHMDgG -CWCGSAGG+EIBDQQrFilTdGFydENvbSBGcmVlIFNTTCBDZXJ0aWZpY2F0aW9uIEF1 -dGhvcml0eTANBgkqhkiG9w0BAQsFAAOCAgEAjo/n3JR5fPGFf59Jb2vKXfuM/gTF -wWLRfUKKvFO3lANmMD+x5wqnUCBVJX92ehQN6wQOQOY+2IirByeDqXWmN3PH/UvS -Ta0XQMhGvjt/UfzDtgUx3M2FIk5xt/JxXrAaxrqTi3iSSoX4eA+D/i+tLPfkpLst -0OcNOrg+zvZ49q5HJMqjNTbOx8aHmNrs++myziebiMMEofYLWWivydsQD032ZGNc -pRJvkrKTlMeIFw6Ttn5ii5B/q06f/ON1FE8qMt9bDeD1e5MNq6HPh+GlBEXoPBKl -CcWw0bdT82AUuoVpaiF8H3VhFyAXe2w7QSlc4axa0c2Mm+tgHRns9+Ww2vl5GKVF -P0lDV9LdJNUso/2RjSe15esUBppMeyG7Oq0wBhjA2MFrLH9ZXF2RsXAiV+uKa0hK -1Q8p7MZAwC+ITGgBF3f0JBlPvfrhsiAhS90a2Cl9qrjeVOwhVYBsHvUwyKMQ5bLm -KhQxw4UtjJixhlpPiVktucf3HMiKf8CdBUrmQk9io20ppB+Fq9vlgcitKj1MXVuE -JnHEhV5xJMqlG2zYYdMa4FTbzrqpMrUi9nNBCV24F10OD5mQ1kfabwo6YigUZ4LZ -8dCAWZvLMdibD4x3TrVoivJs9iQOLWxwxXPR3hTQcY+203sC9uO41Alua551hDnm -fyWl8kgAwKQB2j8= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/SwissSignGoldCA-G2.crt b/test/rules/platform_certs/default/SwissSignGoldCA-G2.crt deleted file mode 100644 index a0b5f261a6a2..000000000000 --- a/test/rules/platform_certs/default/SwissSignGoldCA-G2.crt +++ /dev/null @@ -1,33 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFujCCA6KgAwIBAgIJALtAHEP1Xk+wMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNV -BAYTAkNIMRUwEwYDVQQKEwxTd2lzc1NpZ24gQUcxHzAdBgNVBAMTFlN3aXNzU2ln -biBHb2xkIENBIC0gRzIwHhcNMDYxMDI1MDgzMDM1WhcNMzYxMDI1MDgzMDM1WjBF -MQswCQYDVQQGEwJDSDEVMBMGA1UEChMMU3dpc3NTaWduIEFHMR8wHQYDVQQDExZT -d2lzc1NpZ24gR29sZCBDQSAtIEcyMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC -CgKCAgEAr+TufoskDhJuqVAtFkQ7kpJcyrhdhJJCEyq8ZVeCQD5XJM1QiyUqt2/8 -76LQwB8CJEoTlo8jE+YoWACjR8cGp4QjK7u9lit/VcyLwVcfDmJlD909Vopz2q5+ -bbqBHH5CjCA12UNNhPqE21Is8w4ndwtrvxEvcnifLtg+5hg3Wipy+dpikJKVyh+c -6bM8K8vzARO/Ws/BtQpgvd21mWRTuKCWs2/iJneRjOBiEAKfNA+k1ZIzUd6+jbqE -emA8atufK+ze3gE/bk3lUIbLtK/tREDFylqM2tIrfKjuvqblCqoOpd8FUrdVxyJd -MmqXl2MT28nbeTZ7hTpKxVKJ+STnnXepgv9VHKVxaSvRAiTysybUa9oEVeXBCsdt -MDeQKuSeFDNeFhdVxVu1yzSJkvGdJo+hB9TGsnhQ2wwMC3wLjEHXuendjIj3o02y -MszYF9rNt85mndT9Xv+9lz4pded+p2JYryU0pUHHPbwNUMoDAw8IWh+Vc3hiv69y -FGkOpeUDDniOJihC8AcLYiAQZzlG+qkDzAQ4embvIIO1jEpWjpEA/I5cgt6IoMPi -aG59je883WX0XaxR7ySArqpWl2/5rX3aYT+YdzylkbYcjCbaZaIJbcHiVOO5ykxM -gI93e2CaHt+28kgeDrpOVG2Y4OGiGqJ3UM/EY5LsRxmd6+ZrzsECAwEAAaOBrDCB -qTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUWyV7 -lqRlUX64OfPAeGZe6Drn8O4wHwYDVR0jBBgwFoAUWyV7lqRlUX64OfPAeGZe6Drn -8O4wRgYDVR0gBD8wPTA7BglghXQBWQECAQEwLjAsBggrBgEFBQcCARYgaHR0cDov -L3JlcG9zaXRvcnkuc3dpc3NzaWduLmNvbS8wDQYJKoZIhvcNAQEFBQADggIBACe6 -45R88a7A3hfm5djV9VSwg/S7zV4Fe0+fdWavPOhWfvxyeDgD2StiGwC5+OlgzczO -UYrHUDFu4Up+GC9pWbY9ZIEr44OE5iKHjn3g7gKZYbge9LgriBIWhMIxkziWMaa5 -O1M/wySTVltpkuzFwbs4AOPsF6m43Md8AYOfMke6UiI0HTJ6CVanfCU2qT1L2sCC -bwq7EsiHSycR+R4tx5M/nttfJmtS2S6K8RTGRI0Vqbe/vd6mGu6uLftIdxf+u+yv -GPUqUfA5hJeVbG4bwyvEdGB5JbAKJ9/fXtI5z0V9QkvfsywexcZdylU6oJxpmo/a -77KwPJ+HbBIrZXAVUjEaJM9vMSNQH4xPjyPDdEFjHFWoFN0+4FFQz/EbMFYOkrCC -hdiDyyJkvC24JdVUorgG6q2SpCSgwYa1ShNqR88uC1aVVMvOmttqtKay20EIhid3 -92qgQmwLOM7XdVAyksLfKzAiSNDVQTglXaTpXZ/GlHXQRf0wl0OPkKsKx4ZzYEpp -Ld6leNcG2mqeSz53OiATIgHQv2ieY2BrNU0LbbqhPcCT4H8js1WtciVORvnSFu+w -ZMEBnunKoGqYDs/YYPIvSbjkQuE4NRb0yG5P94FW6LqjviOvrv1vA+ACOzB2+htt -Qc8Bsem4yWb02ybzOqR08kkkW8mw0FfB+j564ZfJ ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/SwissSignPlatinumCA-G2.crt b/test/rules/platform_certs/default/SwissSignPlatinumCA-G2.crt deleted file mode 100644 index c2a02010e334..000000000000 --- a/test/rules/platform_certs/default/SwissSignPlatinumCA-G2.crt +++ /dev/null @@ -1,33 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFwTCCA6mgAwIBAgIITrIAZwwDXU8wDQYJKoZIhvcNAQEFBQAwSTELMAkGA1UE -BhMCQ0gxFTATBgNVBAoTDFN3aXNzU2lnbiBBRzEjMCEGA1UEAxMaU3dpc3NTaWdu -IFBsYXRpbnVtIENBIC0gRzIwHhcNMDYxMDI1MDgzNjAwWhcNMzYxMDI1MDgzNjAw -WjBJMQswCQYDVQQGEwJDSDEVMBMGA1UEChMMU3dpc3NTaWduIEFHMSMwIQYDVQQD -ExpTd2lzc1NpZ24gUGxhdGludW0gQ0EgLSBHMjCCAiIwDQYJKoZIhvcNAQEBBQAD -ggIPADCCAgoCggIBAMrfogLi2vj8Bxax3mCq3pZcZB/HL37PZ/pEQtZ2Y5Wu669y -IIpFR4ZieIbWIDkm9K6j/SPnpZy1IiEZtzeTIsBQnIJ71NUERFzLtMKfkr4k2Htn -IuJpX+UFeNSH2XFwMyVTtIc7KZAoNppVRDBopIOXfw0enHb/FZ1glwCNioUD7IC+ -6ixuEFGSzH7VozPY1kneWCqv9hbrS3uQMpe5up1Y8fhXSQQeol0GcN1x2/ndi5ob -jM89o03Oy3z2u5yg+gnOI2Ky6Q0f4nIoj5+saCB9bzuohTEJfwvH6GXp43gOCWcw -izSC+13gzJ2BbWLuCB4ELE6b7P6pT1/9aXjvCR+htL/68++QHkwFix7qepF6w9fl -+zC8bBsQWJj3Gl/QKTIDE0ZNYWqFTFJ0LwYfexHihJfGmfNtf9dng34TaNhxKFrY -zt3oEBSa/m0jh26OWnA81Y0JAKeqvLAxN23IhBQeW71FYyBrS3SMvds6DsHPWhaP -pZjydomyExI7C3d3rLvlPClKknLKYRorXkzig3R3+jVIeoVNjZpTxN94ypeRSCtF -KwH3HBqi7Ri6Cr2D+m+8jVeTO9TUps4e8aCxzqv9KyiaTxvXw3LbpMS/XUz13XuW -ae5ogObnmLo2t/5u7Su9IPhlGdpVCX4l3P5hYnL5fhgC72O00Puv5TtjjGePAgMB -AAGjgawwgakwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0O -BBYEFFCvzAeHFUdvOMW0ZdHelarp35zMMB8GA1UdIwQYMBaAFFCvzAeHFUdvOMW0 -ZdHelarp35zMMEYGA1UdIAQ/MD0wOwYJYIV0AVkBAQEBMC4wLAYIKwYBBQUHAgEW -IGh0dHA6Ly9yZXBvc2l0b3J5LnN3aXNzc2lnbi5jb20vMA0GCSqGSIb3DQEBBQUA -A4ICAQAIhab1Fgz8RBrBY+D5VUYI/HAcQiiWjrfFwUF1TglxeeVtlspLpYhg0DB0 -uMoI3LQwnkAHFmtllXcBrqS3NQuB2nEVqXQXOHtYyvkv+8Bldo1bAbl93oI9ZLi+ -FHSjClTTLJUYFzX1UWs/j6KWYTl4a0vlpqD4U99REJNi54Av4tHgvI42Rncz7Lj7 -jposiU0xEQ8mngS7twSNC/K5/FqdOxa3L8iYq/6KUFkuozv8KV2LwUvJ4ooTHbG/ -u0IdUt1O2BReEMYxB+9xJ/cbOQncguqLs5WGXv312l0xpuAxtpTmREl0xRbl9x8D -YSjFyMsSoEJL+WuICI20MhjzdZ/EfwBPBZWcoxcCw7NTm6ogOSkrZvqdr16zktK1 -puEa+S1BaYEUtLS17Yk9zvupnTVCRLEcFHOBzyoBNZox1S2PbYTfgE1X4z/FhHXa -icYwu+uPyyIIoK6q8QNsOktNCaUOcsZWayFCTiMlFGiudgp8DAdwZPmaL/YFOSbG -DI8Zf0NebvRbFS/bYV3mZy8/CJT5YLSYMdp08YSTcU1f+2BY0fvEwW2JorsgH51x -kcsymxM9Pn2SUjWskpSi0xjCfMfqr3YFFt1nJ8J+HAciIfNAChs0B0QTwoRqjt8Z -Wr9/6x3iGjjRXK9HkmuAtTClyY3YqzGBH9/CZjfTk6mFhnll0g== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/SwissSignSilverCA-G2.crt b/test/rules/platform_certs/default/SwissSignSilverCA-G2.crt deleted file mode 100644 index 7ef7c8bc9c0d..000000000000 --- a/test/rules/platform_certs/default/SwissSignSilverCA-G2.crt +++ /dev/null @@ -1,33 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFvTCCA6WgAwIBAgIITxvUL1S7L0swDQYJKoZIhvcNAQEFBQAwRzELMAkGA1UE -BhMCQ0gxFTATBgNVBAoTDFN3aXNzU2lnbiBBRzEhMB8GA1UEAxMYU3dpc3NTaWdu -IFNpbHZlciBDQSAtIEcyMB4XDTA2MTAyNTA4MzI0NloXDTM2MTAyNTA4MzI0Nlow -RzELMAkGA1UEBhMCQ0gxFTATBgNVBAoTDFN3aXNzU2lnbiBBRzEhMB8GA1UEAxMY -U3dpc3NTaWduIFNpbHZlciBDQSAtIEcyMIICIjANBgkqhkiG9w0BAQEFAAOCAg8A -MIICCgKCAgEAxPGHf9N4Mfc4yfjDmUO8x/e8N+dOcbpLj6VzHVxumK4DV644N0Mv -Fz0fyM5oEMF4rhkDKxD6LHmD9ui5aLlV8gREpzn5/ASLHvGiTSf5YXu6t+WiE7br -YT7QbNHm+/pe7R20nqA1W6GSy/BJkv6FCgU+5tkL4k+73JU3/JHpMjUi0R86TieF -nbAVlDLaYQ1HTWBCrpJH6INaUFjpiou5XaHc3ZlKHzZnu0jkg7Y360g6rw9njxcH -6ATK72oxh9TAtvmUcXtnZLi2kUpCe2UuMGoM9ZDulebyzYLs2aFK7PayS+VFheZt -eJMELpyCbTapxDFkH4aDCyr0NQp4yVXPQbBH6TCfmb5hqAaEuSh6XzjZG6k4sIN/ -c8HDO0gqgg8hm7jMqDXDhBuDsz6+pJVpATqJAHgE2cn0mRmrVn5bi4Y5FZGkECwJ -MoBgs5PAKrYYC51+jUnyEEp/+dVGLxmSo5mnJqy7jDzmDrxHB9xzUfFwZC8I+bRH -HTBsROopN4WSaGa8gzj+ezku01DwH/teYLappvonQfGbGHLy9YR0SslnxFSuSGTf -jNFusB3hB48IHpmccelM2KX3RxIfdNFRnobzwqIjQAtz20um53MGjMGg6cFZrEb6 -5i/4z3GcRm25xBWNOHkDRUjvxF3XCO6HOSKGsg0PWEP3calILv3q1h8CAwEAAaOB -rDCBqTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQU -F6DNweRBtjpbO8tFnb0cwpj6hlgwHwYDVR0jBBgwFoAUF6DNweRBtjpbO8tFnb0c -wpj6hlgwRgYDVR0gBD8wPTA7BglghXQBWQEDAQEwLjAsBggrBgEFBQcCARYgaHR0 -cDovL3JlcG9zaXRvcnkuc3dpc3NzaWduLmNvbS8wDQYJKoZIhvcNAQEFBQADggIB -AHPGgeAn0i0P4JUw4ppBf1AsX19iYamGamkYDHRJ1l2E6kFSGG9YrVBWIGrGvShp -WJHckRE1qTodvBqlYJ7YH39FkWnZfrt4csEGDyrOj4VwYaygzQu4OSlWhDJOhrs9 -xCrZ1x9y7v5RoSJBsXECYxqCsGKrXlcSH9/L3XWgwF15kIwb4FDm3jH+mHtwX6WQ -2K34ArZv02DdQEsixT2tOnqfGhpHkXkzuoLcMmkDlm4fS/Bx/uNncqCxv1yL5PqZ -IseEuRuNI5c/7SXgz2W79WEE790eslpBIlqhn10s6FvJbakMDHiqYMZWjwFaDGi8 -aRl5xB9+lwW/xekkUV7U1UtT7dkjWjYDZaPBA61BMPNGG4WQr2W11bHkFlt4dR2X -em1ZqSqPe97Dh4kQmUlzeMg9vVE1dCrV8X5pGyq7O70luJpaPXJhkGaH7gzWTdQR -dAtq/gsD/KNVV4n+SsuuWxcFyPKNIzFTONItaj+CuY0IavdeQXRuwxF+B6wpYJE/ -OMpXEA29MC/HpeZBoNquBYeaoKRlbEwJDIm6uNO5wJOKMPqN5ZprFQFOZ6raYlY+ -hAhm0sQ2fac+EPyI4NSA5QC9qvNOBqN6avlicuMJT+ubDgEj8Z+7fNzcbBGXJbLy -tGMU0gYqZ4yD9c7qB9iaah7s5Aq7KkzrCWA5zspi2C5u ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/SwisscomRootCA1.crt b/test/rules/platform_certs/default/SwisscomRootCA1.crt deleted file mode 100644 index f1414ffdf4f7..000000000000 --- a/test/rules/platform_certs/default/SwisscomRootCA1.crt +++ /dev/null @@ -1,34 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIF2TCCA8GgAwIBAgIQXAuFXAvnWUHfV8w/f52oNjANBgkqhkiG9w0BAQUFADBk -MQswCQYDVQQGEwJjaDERMA8GA1UEChMIU3dpc3Njb20xJTAjBgNVBAsTHERpZ2l0 -YWwgQ2VydGlmaWNhdGUgU2VydmljZXMxGzAZBgNVBAMTElN3aXNzY29tIFJvb3Qg -Q0EgMTAeFw0wNTA4MTgxMjA2MjBaFw0yNTA4MTgyMjA2MjBaMGQxCzAJBgNVBAYT -AmNoMREwDwYDVQQKEwhTd2lzc2NvbTElMCMGA1UECxMcRGlnaXRhbCBDZXJ0aWZp -Y2F0ZSBTZXJ2aWNlczEbMBkGA1UEAxMSU3dpc3Njb20gUm9vdCBDQSAxMIICIjAN -BgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA0LmwqAzZuz8h+BvVM5OAFmUgdbI9 -m2BtRsiMMW8Xw/qabFbtPMWRV8PNq5ZJkCoZSx6jbVfd8StiKHVFXqrWW/oLJdih -FvkcxC7mlSpnzNApbjyFNDhhSbEAn9Y6cV9Nbc5fuankiX9qUvrKm/LcqfmdmUc/ -TilftKaNXXsLmREDA/7n29uj/x2lzZAeAR81sH8A25Bvxn570e56eqeqDFdvpG3F -EzuwpdntMhy0XmeLVNxzh+XTF3xmUHJd1BpYwdnP2IkCb6dJtDZd0KTeByy2dbco -kdaXvij1mB7qWybJvbCXc9qukSbraMH5ORXWZ0sKbU/Lz7DkQnGMU3nn7uHbHaBu -HYwadzVcFh4rUx80i9Fs/PJnB3r1re3WmquhsUvhzDdf/X/NTa64H5xD+SpYVUNF -vJbNcA78yeNmuk6NO4HLFWR7uZToXTNShXEuT46iBhFRyePLoW4xCGQMwtI89Tbo -19AOeCMgkckkKmUpWyL3Ic6DXqTz3kvTaI9GdVyDCW4pa8RwjPWd1yAv/0bSKzjC -L3UcPX7ape8eYIVpQtPM+GP+HkM5haa2Y0EQs3MevNP6yn0WR+Kn1dCjigoIlmJW -bjTb2QK5MHXjBNLnj8KwEUAKrNVxAmKLMb7dxiNYMUJDLXT5xp6mig/p/r+D5kNX -JLrvRjSq1xIBOO0CAwEAAaOBhjCBgzAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0hBBYw -FDASBgdghXQBUwABBgdghXQBUwABMBIGA1UdEwEB/wQIMAYBAf8CAQcwHwYDVR0j -BBgwFoAUAyUv3m+CATpcLNwroWm1Z9SM0/0wHQYDVR0OBBYEFAMlL95vggE6XCzc -K6FptWfUjNP9MA0GCSqGSIb3DQEBBQUAA4ICAQA1EMvspgQNDQ/NwNurqPKIlwzf -ky9NfEBWMXrrpA9gzXrzvsMnjgM+pN0S734edAY8PzHyHHuRMSG08NBsl9Tpl7Ik -Vh5WwzW9iAUPWxAaZOHHgjD5Mq2eUCzneAXQMbFamIp1TpBcahQq4FJHgmDmHtqB -sfsUC1rxn9KVuj7QG9YVHaO+htXbD8BJZLsuUBlL0iT43R4HVtA4oJVwIHaM190e -3p9xxCPvgxNcoyQVTSlAPGrEqdi3pkSlDfTgnXceQHAm/NrZNuR55LU/vJtlvrsR -ls/bxig5OgjOR1tTWsWZ/l2p3e9M1MalrQLmjAcSHm8D0W+go/MpvRLHUKKwf4ip -mXeascClOS5cfGniLLDqN2qk4Vrh9VDlg++luyqI54zb/W1elxmofmZ1a3Hqv7HH -b6D0jqTsNFFbjCYDcKF31QESVwA12yPeDooomf2xEG9L/zgtYE4snOtnta1J7ksf -rK/7DZBaZmBwXarNeNQk7shBoJMBkpxqnvy5JMWzFYJ+vq6VK+uxwNrjAWALXmms -hFZhvnEX/h0TD/7Gh0Xp/jKgGg0TpJRVcaUWi7rKibCyx/yP2FS1k2Kdzs9Z+z0Y -zirLNRWCXf9UIltxUvu3yf5gmwBBZPCqKuy2QkPOiWaByIufOVQDJdMWNY6E0F/6 -MBr1mmz0DlP5OlvRHA== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/SwisscomRootCA2.crt b/test/rules/platform_certs/default/SwisscomRootCA2.crt deleted file mode 100644 index 96860feb3094..000000000000 --- a/test/rules/platform_certs/default/SwisscomRootCA2.crt +++ /dev/null @@ -1,34 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIF2TCCA8GgAwIBAgIQHp4o6Ejy5e/DfEoeWhhntjANBgkqhkiG9w0BAQsFADBk -MQswCQYDVQQGEwJjaDERMA8GA1UEChMIU3dpc3Njb20xJTAjBgNVBAsTHERpZ2l0 -YWwgQ2VydGlmaWNhdGUgU2VydmljZXMxGzAZBgNVBAMTElN3aXNzY29tIFJvb3Qg -Q0EgMjAeFw0xMTA2MjQwODM4MTRaFw0zMTA2MjUwNzM4MTRaMGQxCzAJBgNVBAYT -AmNoMREwDwYDVQQKEwhTd2lzc2NvbTElMCMGA1UECxMcRGlnaXRhbCBDZXJ0aWZp -Y2F0ZSBTZXJ2aWNlczEbMBkGA1UEAxMSU3dpc3Njb20gUm9vdCBDQSAyMIICIjAN -BgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAlUJOhJ1R5tMJ6HJaI2nbeHCOFvEr -jw0DzpPMLgAIe6szjPTpQOYXTKueuEcUMncy3SgM3hhLX3af+Dk7/E6J2HzFZ++r -0rk0X2s682Q2zsKwzxNoysjL67XiPS4h3+os1OD5cJZM/2pYmLcX5BtS5X4HAB1f -2uY+lQS3aYg5oUFgJWFLlTloYhyxCwWJwDaCFCE/rtuh/bxvHGCGtlOUSbkrRsVP -ACu/obvLP+DHVxxX6NZp+MEkUp2IVd3Chy50I9AU/SpHWrumnf2U5NGKpV+GY3aF -y6//SSj8gO1MedK75MDvAe5QQQg1I3ArqRa0jG6F6bYRzzHdUyYb3y1aSgJA/MTA -tukxGggo5WDDH8SQjhBiYEQN7Aq+VRhxLKX0srwVYv8c474d2h5Xszx+zYIdkeNL -6yxSNLCK/RJOlrDrcH+eOfdmQrGrrFLadkBXeyq96G4DsguAhYidDMfCd7Camlf0 -uPoTXGiTOmekl9AbmbeGMktg2M7v0Ax/lZ9vh0+Hio5fCHyqW/xavqGRn1V9TrAL -acywlKinh/LTSlDcX3KwFnUey7QYYpqwpzmqm59m2I2mbJYV4+by+PGDYmy7Velh -k6M99bFXi08jsJvllGov34zflVEpYKELKeRcVVi3qPyZ7iVNTA6z00yPhOgpD/0Q -VAKFyPnlw4vP5w8CAwEAAaOBhjCBgzAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0hBBYw -FDASBgdghXQBUwIBBgdghXQBUwIBMBIGA1UdEwEB/wQIMAYBAf8CAQcwHQYDVR0O -BBYEFE0mICKJS9PVpAqhb97iEoHF8TwuMB8GA1UdIwQYMBaAFE0mICKJS9PVpAqh -b97iEoHF8TwuMA0GCSqGSIb3DQEBCwUAA4ICAQAyCrKkG8t9voJXiblqf/P0wS4R -fbgZPnm3qKhyN2abGu2sEzsOv2LwnN+ee6FTSA5BesogpxcbtnjsQJHzQq0Qw1zv -/2BZf82Fo4s9SBwlAjxnffUy6S8w5X2lejjQ82YqZh6NM4OKb3xuqFp1mrjX2lhI -REeoTPpMSQpKwhI3qEAMw8jh0FcNlzKVxzqfl9NX+Ave5XLzo9v/tdhZsnPdTSpx -srpJ9csc1fV5yJmz/MFMdOO0vSk3FQQoHt5FRnDsr7p4DooqzgB53MBfGWcsa0vv -aGgLQ+OswWIJ76bdZWGgr4RVSJFSHMYlkSrQwSIjYVmvRRGFHQEkNI/Ps/8XciAT -woCqISxxOQ7Qj1zB09GOInJGTB2Wrk9xseEFKZZZ9LuedT3PDTcNYtsmjGOpI99n -Bjx8Oto0QuFmtEYE3saWmA9LSHokMnWRn6z3aOkquVVlzl1h0ydw2Df+n7mvoC5W -t6NlUe07qxS/TFED6F+KBZvuim6c779o+sjaC+NCydAXFJy3SuCvkychVSa1ZC+N -8f+mQAWFBVzKBxlcCxMoTFh/wqXvRdpg065lYZ1Tg3TCrvJcwhbtkj6EPnNgiLx2 -9CzP0H1907he0ZESEOnN3col49XtmS++dYFLJPlFRpTJKSFTnCZFqhMX5OfNeOI5 -wSsSnqaeG8XmDtkx2Q== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/SwisscomRootEVCA2.crt b/test/rules/platform_certs/default/SwisscomRootEVCA2.crt deleted file mode 100644 index 7575d46f42d8..000000000000 --- a/test/rules/platform_certs/default/SwisscomRootEVCA2.crt +++ /dev/null @@ -1,34 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIF4DCCA8igAwIBAgIRAPL6ZOJ0Y9ON/RAdBB92ylgwDQYJKoZIhvcNAQELBQAw -ZzELMAkGA1UEBhMCY2gxETAPBgNVBAoTCFN3aXNzY29tMSUwIwYDVQQLExxEaWdp -dGFsIENlcnRpZmljYXRlIFNlcnZpY2VzMR4wHAYDVQQDExVTd2lzc2NvbSBSb290 -IEVWIENBIDIwHhcNMTEwNjI0MDk0NTA4WhcNMzEwNjI1MDg0NTA4WjBnMQswCQYD -VQQGEwJjaDERMA8GA1UEChMIU3dpc3Njb20xJTAjBgNVBAsTHERpZ2l0YWwgQ2Vy -dGlmaWNhdGUgU2VydmljZXMxHjAcBgNVBAMTFVN3aXNzY29tIFJvb3QgRVYgQ0Eg -MjCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMT3HS9X6lds93BdY7Bx -UglgRCgzo3pOCvrY6myLURYaVa5UJsTMRQdBTxB5f3HSek4/OE6zAMaVylvNwSqD -1ycfMQ4jFrclyxy0uYAyXhqdk/HoPGAsp15XGVhRXrwsVgu42O+LgrQ8uMIkqBPH -oCE2G3pXKSinLr9xJZDzRINpUKTk4RtiGZQJo/PDvO/0vezbE53PnUgJUmfANykR -HvvSEaeFGHR55E+FFOtSN+KxRdjMDUN/rhPSays/p8LiqG12W0OfvrSdsyaGOx9/ -5fLoZigWJdBLlzin5M8J0TbDC77aO0RYjb7xnglrPvMyxyuHxuxenPaHZa0zKcQv -idm5y8kDnftslFGXEBuGCxobP/YCfnvUxVFkKJ3106yDgYjTdLRZncHrYTNaRdHL -OdAGalNgHa/2+2m8atwBz735j9m9W8E6X47aD0upm50qKGsaCnw8qyIL5XctcfaC -NYGu+HuB5ur+rPQam3Rc6I8k9l2dRsQs0h4rIWqDJ2dVSqTjyDKXZpBy2uPUZC5f -46Fq9mDU5zXNysRojddxyNMkM3OxbPlq4SjbX8Y96L5V5jcb7STZDxmPX2MYWFCB -UWVv8p9+agTnNCRxunZLWB4ZvRVgRaoMEkABnRDixzgHcgplwLa7JSnaFp6LNYth -7eVxV4O1PHGf40+/fh6Bn0GXAgMBAAGjgYYwgYMwDgYDVR0PAQH/BAQDAgGGMB0G -A1UdIQQWMBQwEgYHYIV0AVMCAgYHYIV0AVMCAjASBgNVHRMBAf8ECDAGAQH/AgED -MB0GA1UdDgQWBBRF2aWBbj2ITY1x0kbBbkUe88SAnTAfBgNVHSMEGDAWgBRF2aWB -bj2ITY1x0kbBbkUe88SAnTANBgkqhkiG9w0BAQsFAAOCAgEAlDpzBp9SSzBc1P6x -XCX5145v9Ydkn+0UjrgEjihLj6p7jjm02Vj2e6E1CqGdivdj5eu9OYLU43otb98T -PLr+flaYC/NUn81ETm484T4VvwYmneTwkLbUwp4wLh/vx3rEUMfqe9pQy3omywC0 -Wqu1kx+AiYQElY2NfwmTv9SoqORjbdlk5LgpWgi/UOGED1V7XwgiG/W9mR4U9s70 -WBCCswo9GcG/W6uqmdjyMb3lOGbcWAXH7WMaLgqXfIeTK7KK4/HsGOV1timH59yL -Gn602MnTihdsfSlEvoqq9X46Lmgxk7lq2prg2+kupYTNHAq4Sgj5nPFhJpiTt3tm -7JFe3VE/23MPrQRYCd0EApUKPtN236YQHoA96M2kZNEzx5LH4k5E4wnJTsJdhw4S -nr8PyQUQ3nqjsTzyP6WqJ3mtMX0f/fwZacXduT98zca0wjAefm6S139hdlqP65VN -vBFuIXxZN5nQBrz5Bm0yFqXZaajh3DyAHmBR3NdUIR7KYndP+tiPsys6DXhyyWhB -WkdKwqPrGtcKqzwyVcgKEZzfdNbwQBUdyLmPtTbFr/giuMod89a2GQ+fYWVq6nTI -fI/DT11lgh/ZDYnadXL77/FHZxOzyNEZiCcmmpl5fx7kLD977vHeTYuWl8PVP3wb -I+2ksx0WckNLIOFZfsLorSa/ovc= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/SymantecClass3SecureServerCA-G4.crt b/test/rules/platform_certs/default/SymantecClass3SecureServerCA-G4.crt deleted file mode 100644 index bc1667940847..000000000000 --- a/test/rules/platform_certs/default/SymantecClass3SecureServerCA-G4.crt +++ /dev/null @@ -1,30 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFODCCBCCgAwIBAgIQUT+5dDhwtzRAQY0wkwaZ/zANBgkqhkiG9w0BAQsFADCB -yjELMAkGA1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQL -ExZWZXJpU2lnbiBUcnVzdCBOZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwNiBWZXJp -U2lnbiwgSW5jLiAtIEZvciBhdXRob3JpemVkIHVzZSBvbmx5MUUwQwYDVQQDEzxW -ZXJpU2lnbiBDbGFzcyAzIFB1YmxpYyBQcmltYXJ5IENlcnRpZmljYXRpb24gQXV0 -aG9yaXR5IC0gRzUwHhcNMTMxMDMxMDAwMDAwWhcNMjMxMDMwMjM1OTU5WjB+MQsw -CQYDVQQGEwJVUzEdMBsGA1UEChMUU3ltYW50ZWMgQ29ycG9yYXRpb24xHzAdBgNV -BAsTFlN5bWFudGVjIFRydXN0IE5ldHdvcmsxLzAtBgNVBAMTJlN5bWFudGVjIENs -YXNzIDMgU2VjdXJlIFNlcnZlciBDQSAtIEc0MIIBIjANBgkqhkiG9w0BAQEFAAOC -AQ8AMIIBCgKCAQEAstgFyhx0LbUXVjnFSlIJluhL2AzxaJ+aQihiw6UwU35VEYJb -A3oNL+F5BMm0lncZgQGUWfm893qZJ4Itt4PdWid/sgN6nFMl6UgfRk/InSn4vnlW -9vf92Tpo2otLgjNBEsPIPMzWlnqEIRoiBAMnF4scaGGTDw5RgDMdtLXO637QYqzu -s3sBdO9pNevK1T2p7peYyo2qRA4lmUoVlqTObQJUHypqJuIGOmNIrLRM0XWTUP8T -L9ba4cYY9Z/JJV3zADreJk20KQnNDz0jbxZKgRb78oMQw7jW2FUyPfG9D72MUpVK -Fpd6UiFjdS8W+cRmvvW1Cdj/JwDNRHxvSz+w9wIDAQABo4IBYzCCAV8wEgYDVR0T -AQH/BAgwBgEB/wIBADAwBgNVHR8EKTAnMCWgI6Ahhh9odHRwOi8vczEuc3ltY2Iu -Y29tL3BjYTMtZzUuY3JsMA4GA1UdDwEB/wQEAwIBBjAvBggrBgEFBQcBAQQjMCEw -HwYIKwYBBQUHMAGGE2h0dHA6Ly9zMi5zeW1jYi5jb20wawYDVR0gBGQwYjBgBgpg -hkgBhvhFAQc2MFIwJgYIKwYBBQUHAgEWGmh0dHA6Ly93d3cuc3ltYXV0aC5jb20v -Y3BzMCgGCCsGAQUFBwICMBwaGmh0dHA6Ly93d3cuc3ltYXV0aC5jb20vcnBhMCkG -A1UdEQQiMCCkHjAcMRowGAYDVQQDExFTeW1hbnRlY1BLSS0xLTUzNDAdBgNVHQ4E -FgQUX2DPYZBV34RDFIpgKrL1evRDGO8wHwYDVR0jBBgwFoAUf9Nlp8Ld7LvwMAnz -Qzn6Aq8zMTMwDQYJKoZIhvcNAQELBQADggEBAF6UVkndji1l9cE2UbYD49qecxny -H1mrWH5sJgUs+oHXXCMXIiw3k/eG7IXmsKP9H+IyqEVv4dn7ua/ScKAyQmW/hP4W -Ko8/xabWo5N9Q+l0IZE1KPRj6S7t9/Vcf0uatSDpCr3gRRAMFJSaXaXjS5HoJJtG -QGX0InLNmfiIEfXzf+YzguaoxX7+0AjiJVgIcWjmzaLmFN5OUiQt/eV5E1PnXi8t -TRttQBVSK/eHiXgSgW7ZTaoteNTCLD0IX4eRnh8OsN4wUmSGiaqdZpwOdgyA8nTY -Kvi4Os7X1g8RvmurFPW9QaAiY4nxug9vKWNmLT+sjHLF+8fk1A/yO0+MKcc= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/T-TeleSecGlobalRootClass2.crt b/test/rules/platform_certs/default/T-TeleSecGlobalRootClass2.crt deleted file mode 100644 index 374b05018228..000000000000 --- a/test/rules/platform_certs/default/T-TeleSecGlobalRootClass2.crt +++ /dev/null @@ -1,23 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDwzCCAqugAwIBAgIBATANBgkqhkiG9w0BAQsFADCBgjELMAkGA1UEBhMCREUx -KzApBgNVBAoMIlQtU3lzdGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAd -BgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBDZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNl -YyBHbG9iYWxSb290IENsYXNzIDIwHhcNMDgxMDAxMTA0MDE0WhcNMzMxMDAxMjM1 -OTU5WjCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoMIlQtU3lzdGVtcyBFbnRlcnBy -aXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBDZW50 -ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDIwggEiMA0G -CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCqX9obX+hzkeXaXPSi5kfl82hVYAUd -AqSzm1nzHoqvNK38DcLZSBnuaY/JIPwhqgcZ7bBcrGXHX+0CfHt8LRvWurmAwhiC -FoT6ZrAIxlQjgeTNuUk/9k9uN0goOA/FvudocP05l03Sx5iRUKrERLMjfTlH6VJi -1hKTXrcxlkIF+3anHqP1wvzpesVsqXFP6st4vGCvx9702cu+fjOlbpSD8DT6Iavq -jnKgP6TeMFvvhk1qlVtDRKgQFRzlAVfFmPHmBiiRqiDFt1MmUUOyCxGVWOHAD3bZ -wI18gfNycJ5v/hqO2V81xrJvNHy+SE/iWjnX2J14np+GPgNeGYtEotXHAgMBAAGj -QjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBS/ -WSA2AHmgoCJrjNXyYdK4LMuCSjANBgkqhkiG9w0BAQsFAAOCAQEAMQOiYQsfdOhy -NsZt+U2e+iKo4YFWz827n+qrkRk4r6p8FU3ztqONpfSO9kSpp+ghla0+AGIWiPAC -uvxhI+YzmzB6azZie60EI4RYZeLbK4rnJVM3YlNfvNoBYimipidx5joifsFvHZVw -IEoHNN/q/xWA5brXethbdXwFeilHfkCoMRN3zUA7tFFHei4R40cR3p1m0IvVVGb6 -g1XqfMIpiRvpb7PO4gWEyS8+eIVibslfwXhjdFjASBgMmTnrpMwatXlajRWc2BQN -9noHV8cigwUtPJslJj0Ys6lDfMjIq2SPDqO/nBudMNva0Bkuqjzx+zOAduTNrRlP -BSeOE6Fuwg== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/T-TeleSecGlobalRootClass3.crt b/test/rules/platform_certs/default/T-TeleSecGlobalRootClass3.crt deleted file mode 100644 index 0e35fc2864cf..000000000000 --- a/test/rules/platform_certs/default/T-TeleSecGlobalRootClass3.crt +++ /dev/null @@ -1,23 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDwzCCAqugAwIBAgIBATANBgkqhkiG9w0BAQsFADCBgjELMAkGA1UEBhMCREUx -KzApBgNVBAoMIlQtU3lzdGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAd -BgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBDZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNl -YyBHbG9iYWxSb290IENsYXNzIDMwHhcNMDgxMDAxMTAyOTU2WhcNMzMxMDAxMjM1 -OTU5WjCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoMIlQtU3lzdGVtcyBFbnRlcnBy -aXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBDZW50 -ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDMwggEiMA0G -CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC9dZPwYiJvJK7genasfb3ZJNW4t/zN -8ELg63iIVl6bmlQdTQyK9tPPcPRStdiTBONGhnFBSivwKixVA9ZIw+A5OO3yXDw/ -RLyTPWGrTs0NvvAgJ1gORH8EGoel15YUNpDQSXuhdfsaa3Ox+M6pCSzyU9XDFES4 -hqX2iys52qMzVNn6chr3IhUciJFrf2blw2qAsCTz34ZFiP0Zf3WHHx+xGwpzJFu5 -ZeAsVMhg02YXP+HMVDNzkQI6pn97djmiH5a2OK61yJN0HZ65tOVgnS9W0eDrXltM -EnAMbEQgqxHY9Bn20pxSN+f6tsIxO0rUFJmtxxr1XV/6B7h8DR/Wgx6zAgMBAAGj -QjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBS1 -A/d2O2GCahKqGFPrAyGUv/7OyjANBgkqhkiG9w0BAQsFAAOCAQEAVj3vlNW92nOy -WL6ukK2YJ5f+AbGwUgC4TeQbIXQbfsDuXmkqJa9c1h3a0nnJ85cp4IaH3gRZD/FZ -1GSFS5mvJQQeyUapl96Cshtwn5z2r3Ex3XsFpSzTucpH9sry9uetuUg/vBa3wW30 -6gmv7PO15wWeph6KU1HWk4HMdJP2udqmJQV0eVp+QD6CSyYRMG7hP0HHRwA11fXT -91Q+gT3aSWqas+8QPebrb9HIIkfLzM8BMZLZGOMivgkeGj5asuRrDFR6fUNOuIml -e9eiPZaGzPImNC1qkp2aGtAw4l1OBLBfiyB+d8E9lYLRRpo7PHi4b6HQDWSieB4p -TpPDpFQUWw== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/TCTrustCenterClass3CAII.crt b/test/rules/platform_certs/default/TCTrustCenterClass3CAII.crt deleted file mode 100644 index f4e3c9a45b04..000000000000 --- a/test/rules/platform_certs/default/TCTrustCenterClass3CAII.crt +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEqjCCA5KgAwIBAgIOSkcAAQAC5aBd1j8AUb8wDQYJKoZIhvcNAQEFBQAwdjEL -MAkGA1UEBhMCREUxHDAaBgNVBAoTE1RDIFRydXN0Q2VudGVyIEdtYkgxIjAgBgNV -BAsTGVRDIFRydXN0Q2VudGVyIENsYXNzIDMgQ0ExJTAjBgNVBAMTHFRDIFRydXN0 -Q2VudGVyIENsYXNzIDMgQ0EgSUkwHhcNMDYwMTEyMTQ0MTU3WhcNMjUxMjMxMjI1 -OTU5WjB2MQswCQYDVQQGEwJERTEcMBoGA1UEChMTVEMgVHJ1c3RDZW50ZXIgR21i -SDEiMCAGA1UECxMZVEMgVHJ1c3RDZW50ZXIgQ2xhc3MgMyBDQTElMCMGA1UEAxMc -VEMgVHJ1c3RDZW50ZXIgQ2xhc3MgMyBDQSBJSTCCASIwDQYJKoZIhvcNAQEBBQAD -ggEPADCCAQoCggEBALTgu1G7OVyLBMVMeRwjhjEQY0NVJz/GRcekPewJDRoeIMJW -Ht4bNwcwIi9v8Qbxq63WyKthoy9DxLCyLfzDlml7forkzMA5EpBCYMnMNWju2l+Q -Vl/NHE1bWEnrDgFPZPosPIlY2C8u4rBo6SI7dYnWRBpl8huXJh0obazovVkdKyT2 -1oQDZogkAHhg8fir/gKya/si+zXmFtGt9i4S5Po1auUZuV3bOx4a+9P/FRQI2Alq -ukWdFHlgfa9Aigdzs5OW03Q0jTo3Kd5c7PXuLjHCINy+8U9/I1LZW+Jk2ZyqBwi1 -Rb3R0DHBq1SfqdLDYmAD8bs5SpJKPQq5ncWg/jcCAwEAAaOCATQwggEwMA8GA1Ud -EwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBTUovyfs8PYA9NX -XAek0CSnwPIA1DCB7QYDVR0fBIHlMIHiMIHfoIHcoIHZhjVodHRwOi8vd3d3LnRy -dXN0Y2VudGVyLmRlL2NybC92Mi90Y19jbGFzc18zX2NhX0lJLmNybIaBn2xkYXA6 -Ly93d3cudHJ1c3RjZW50ZXIuZGUvQ049VEMlMjBUcnVzdENlbnRlciUyMENsYXNz -JTIwMyUyMENBJTIwSUksTz1UQyUyMFRydXN0Q2VudGVyJTIwR21iSCxPVT1yb290 -Y2VydHMsREM9dHJ1c3RjZW50ZXIsREM9ZGU/Y2VydGlmaWNhdGVSZXZvY2F0aW9u -TGlzdD9iYXNlPzANBgkqhkiG9w0BAQUFAAOCAQEANmDkcPcGIEPZIxpC8vijsrlN -irTzwppVMXzEO2eatN9NDoqTSheLG43KieHPOh6sHfGcMrSOWXaiQYUlN6AT0PV8 -TtXqluJucsG7Kv5sbviRmEb8yRtXW+rIGjs/sFGYPAfaLFkB2otE6OF0/ado3VS6 -g0bsyEa1+K+XwDsJHI/OcpY9M1ZwvJbL2NV9IJqDnxrcOfHFcqMRA/07QlIp2+gB -95tejNaNhk4Z+rwcvsUhpYeeeC422wlxo3I0+GzjBgnyXlal092Y+tTmBvTwtiBj -S+opvaqCZh77gaqnN60TGOaSw4HBM7uIHqHn4rS9MWwOUT1v+5ZWgOI2F9Hc5A== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/TWCAGlobalRootCA.crt b/test/rules/platform_certs/default/TWCAGlobalRootCA.crt deleted file mode 100644 index caed317a7208..000000000000 --- a/test/rules/platform_certs/default/TWCAGlobalRootCA.crt +++ /dev/null @@ -1,31 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFQTCCAymgAwIBAgICDL4wDQYJKoZIhvcNAQELBQAwUTELMAkGA1UEBhMCVFcx -EjAQBgNVBAoTCVRBSVdBTi1DQTEQMA4GA1UECxMHUm9vdCBDQTEcMBoGA1UEAxMT -VFdDQSBHbG9iYWwgUm9vdCBDQTAeFw0xMjA2MjcwNjI4MzNaFw0zMDEyMzExNTU5 -NTlaMFExCzAJBgNVBAYTAlRXMRIwEAYDVQQKEwlUQUlXQU4tQ0ExEDAOBgNVBAsT -B1Jvb3QgQ0ExHDAaBgNVBAMTE1RXQ0EgR2xvYmFsIFJvb3QgQ0EwggIiMA0GCSqG -SIb3DQEBAQUAA4ICDwAwggIKAoICAQCwBdvI64zEbooh745NnHEKH1Jw7W2CnJfF -10xORUnLQEK1EjRsGcJ0pDFfhQKX7EMzClPSnIyOt7h52yvVavKOZsTuKwEHktSz -0ALfUPZVr2YOy+BHYC8rMjk1Ujoog/h7FsYYuGLWRyWRzvAZEk2tY/XTP3VfKfCh -MBwqoJimFb3u/Rk28OKRQ4/6ytYQJ0lM793B8YVwm8rqqFpD/G2Gb3PpN0Wp8DbH -zIh1HrtsBv+baz4X7GGqcXzGHaL3SekVtTzWoWH1EfcFbx39Eb7QMAfCKbAJTibc -46KokWofwpFFiFzlmLhxpRUZyXx1EcxwdE8tmx2RRP1WKKD+u4ZqyPpcC1jcxkt2 -yKsi2XMPpfRaAok/T54igu6idFMqPVMnaR1sjjIsZAAmY2E2TqNGtz99sy2sbZCi -laLOz9qC5wc0GZbpuCGqKX6mOL6OKUohZnkfs8O1CWfe1tQHRvMq2uYiN2DLgbYP -oA/pyJV/v1WRBXrPPRXAb94JlAGD1zQbzECl8LibZ9WYkTunhHiVJqRaCPgrdLQA -BDzfuBSO6N+pjWxnkjMdwLfS7JLIvgm/LCkFbwJrnu+8vyq8W8BQj0FwcYeyTbcE -qYSjMq+u7msXi7Kx/mzhkIyIqJdIzshNy/MGz19qCkKxHh53L46g5pIOBvwFItIm -4TFRfTLcDwIDAQABoyMwITAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB -/zANBgkqhkiG9w0BAQsFAAOCAgEAXzSBdu+WHdXltdkCY4QWwa6gcFGn90xHNcgL -1yg9iXHZqjNB6hQbbCEAwGxCGX6faVsgQt+i0trEfJdLjbDorMjupWkEmQqSpqsn -LhpNgb+E1HAerUf+/UqdM+DyucRFCCEK2mlpc3INvjT+lIutwx4116KD7+U4x6WF -H6vPNOw/KP4M8VeGTslV9xzU2KV9Bnpv1d8Q34FOIWWxtuEXeZVFBs5fzNxGiWNo -RI2T9GRwoD2dKAXDOXC4Ynsg/eTb6QihuJ49CcdP+yz4k3ZB3lLg4VfSnQO8d57+ -nile98FRYB/e2guyLXW3Q0iT5/Z5xoRdgFlglPx4mI88k1HtQJAH32RjJMtOcQWh -15QaiDLxInQirqWm2BJpTGCjAu4r7NRjkgtevi92a6O2JryPA9gK8kxkRr05YuWW -6zRjESjMlfGt7+/cgFhI6Uu46mWs6fyAtbXIRfmswZ/ZuepiiI7E8UuDEq3mi4TW -nsLrgxifarsbJGAzcMzs9zLzXNl5fe+epP7JI8Mk7hWSsT2RTyaGvWZzJBPqpK5j -wa19hAM8EHiGG3njxPPyBJUgriOCxLM6AGK/5jYk4Ve6xx6QddVfP5VhK8E7zeWz -aGHQRiapIVJpLesux+t3zqY6tQMzT3bR51xUAV3LePTJDL/PEo4XLSNolOer/qmy -KwbQBM0= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/TWCARootCertificationAuthority.crt b/test/rules/platform_certs/default/TWCARootCertificationAuthority.crt deleted file mode 100644 index fb7778e65955..000000000000 --- a/test/rules/platform_certs/default/TWCARootCertificationAuthority.crt +++ /dev/null @@ -1,21 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDezCCAmOgAwIBAgIBATANBgkqhkiG9w0BAQUFADBfMQswCQYDVQQGEwJUVzES -MBAGA1UECgwJVEFJV0FOLUNBMRAwDgYDVQQLDAdSb290IENBMSowKAYDVQQDDCFU -V0NBIFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDgwODI4MDcyNDMz -WhcNMzAxMjMxMTU1OTU5WjBfMQswCQYDVQQGEwJUVzESMBAGA1UECgwJVEFJV0FO -LUNBMRAwDgYDVQQLDAdSb290IENBMSowKAYDVQQDDCFUV0NBIFJvb3QgQ2VydGlm -aWNhdGlvbiBBdXRob3JpdHkwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB -AQCwfnK4pAOU5qfeCTiRShFAh6d8WWQUe7UREN3+v9XAu1bihSX0NXIP+FPQQeFE -AcK0HMMxQhZHhTMidrIKbw/lJVBPhYa+v5guEGcevhEFhgWQxFnQfHgQsIBct+HH -K3XLfJ+utdGdIzdjp9xCoi2SBBtQwXu4PhvJVgSLL1KbralW6cH/ralYhzC2gfeX -RfwZVzsrb+RH9JlF/h3x+JejiB03HFyP4HYlmlD4oFT/RJB2I9IyxsOrBr/8+7/z -rX2SYgJbKdM1o5OaQ2RgXbL6Mv87BK9NQGr5x+PvI/1ry+UPizgN7gr8/g+YnzAx -3WxSZfmLgb4i4RxYA7qRG4kHAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNV -HRMBAf8EBTADAQH/MB0GA1UdDgQWBBRqOFsmjd6LWvJPelSDGRjjCDWmujANBgkq -hkiG9w0BAQUFAAOCAQEAPNV3PdrfibqHDAhUaiBQkr6wQT25JmSDCi/oQMCXKCeC -MErJk/9q56YAf4lCmtYR5VPOL8zy2gXE/uJQxDqGfczafhAJO5I1KlOy/usrBdls -XebQ79NqZp4VKIV66IIArB6nCWlWQtNoURi+VJq/REG6Sb4gumlc7rh3zc5sH62D -lhh9DrUUOYTxKOkto557HnpyWoOzeW/vtPzQCqVYT0bf+215WfKEIlKuD8z7fDvn -aspHYcN6+NOSBB+4IIThNlQWx0DeO4pz3N/GCUzf7Nr/1FNCocnyYh0igzyXxfkZ -YiesZSLX0zzG5Y6yU8xJzrww/nsOM5D77dIUkR8Hrw== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/TaiwanGRCA.crt b/test/rules/platform_certs/default/TaiwanGRCA.crt deleted file mode 100644 index 3d3fe76392f7..000000000000 --- a/test/rules/platform_certs/default/TaiwanGRCA.crt +++ /dev/null @@ -1,32 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFcjCCA1qgAwIBAgIQH51ZWtcvwgZEpYAIaeNe9jANBgkqhkiG9w0BAQUFADA/ -MQswCQYDVQQGEwJUVzEwMC4GA1UECgwnR292ZXJubWVudCBSb290IENlcnRpZmlj -YXRpb24gQXV0aG9yaXR5MB4XDTAyMTIwNTEzMjMzM1oXDTMyMTIwNTEzMjMzM1ow -PzELMAkGA1UEBhMCVFcxMDAuBgNVBAoMJ0dvdmVybm1lbnQgUm9vdCBDZXJ0aWZp -Y2F0aW9uIEF1dGhvcml0eTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIB -AJoluOzMonWoe/fOW1mKydGGEghU7Jzy50b2iPN86aXfTEc2pBsBHH8eV4qNw8XR -IePaJD9IK/ufLqGU5ywck9G/GwGHU5nOp/UKIXZ3/6m3xnOUT0b3EEk3+qhZSV1q -gQdW8or5BtD3cCJNtLdBuTK4sfCxw5w/cP1T3YGq2GN49thTbqGsaoQkclSGxtKy -yhwOeYHWtXBiCAEuTk8O1RGvqa/lmr/czIdtJuTJV6L7lvnM4T9TjGxMfptTCAts -F/tnyMKtsc2AtJfcdgEWFelq16TheEfOhtX7MfP6Mb40qij7cEwdScevLJ1tZqa2 -jWR+tSBqnTuBto9AAGdLiYa4zGX+FVPpBMHWXx1E1wovJ5pGfaENda1UhhXcSTvx -ls4Pm6Dso3pdvtUqdULle96ltqqvKKyskKw4t9VoNSZ63Pc78/1Fm9G7Q3hub/FC -VGqY8A2tl+lSXunVanLeavcbYBT0peS2cWeqH+riTcFCQP5nRhc4L0c/cZyu5SHK -YS1tB6iEfC3uUSXxY5Ce/eFXiGvviiNtsea9P63RPZYLhY3Naye7twWb7LuRqQoH -EgKXTiCQ8P8NHuJBO9NAOueNXdpm5AKwB1KYXA6OM5zCppX7VRluTI6uSw+9wThN -Xo+EHWbNxWCWtFJaBYmOlXqYwZE8lSOyDvR5tMl8wUohAgMBAAGjajBoMB0GA1Ud -DgQWBBTMzO/MKWCkO7GStjz6MmKPrCUVOzAMBgNVHRMEBTADAQH/MDkGBGcqBwAE -MTAvMC0CAQAwCQYFKw4DAhoFADAHBgVnKgMAAAQUA5vwIhP/lSg209yewDL7MTqK -UWUwDQYJKoZIhvcNAQEFBQADggIBAECASvomyc5eMN1PhnR2WPWus4MzeKR6dBcZ -TulStbngCnRiqmjKeKBMmo4sIy7VahIkv9Ro04rQ2JyftB8M3jh+Vzj8jeJPXgyf -qzvS/3WXy6TjZwj/5cAWtUgBfen5Cv8b5Wppv3ghqMKnI6mGq3ZW6A4M9hPdKmaK -ZEk9GhiHkASfQlK3T8v+R0F2Ne//AHY2RTKbxkaFXeIksB7jSJaYV0eUVXoPQbFE -JPPB/hprv4j9wabak2BegUqZIJxIZhm1AHlUD7gsL0u8qV1bYH+Mh6XgUmMqvtg7 -hUAV/h62ZT/FS9p+tXo1KaMuephgIqP0fSdOLeq0dDzpD6QzDxARvBMB1uUO07+1 -EqLhRSPAzAhuYbeJq4PjJB7mXQfnHyA+z2fI56wwbSdLaG5LKlwCCDTb+HbkZ6Mm -nD+iMsJKxYEYMRBWqoTvLQr/uB930r+lWKBi5NdLkXWNiYCYfm3LU05er/ayl4WX -udpVBrkk7tfGOB5jGxI7leFYrPLfhNVfmS8NVVvmONsuP3LpSIXLuykTjx44Vbnz -ssQwmSNOXfJIoRIM3BKQCZBUkQM8R+XVyWXgt0t97EfTsws+rZ7QdAAO671RrcDe -LMDDav7v3Aun+kbfYNucpllQdSNpc5Oy+fwC00fmcc4QAu4njIT/rEUNE1yDMuAl -pYYsfPQS ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/TeliaSoneraRootCAv1.crt b/test/rules/platform_certs/default/TeliaSoneraRootCAv1.crt deleted file mode 100644 index 0decd4be031e..000000000000 --- a/test/rules/platform_certs/default/TeliaSoneraRootCAv1.crt +++ /dev/null @@ -1,30 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFODCCAyCgAwIBAgIRAJW+FqD3LkbxezmCcvqLzZYwDQYJKoZIhvcNAQEFBQAw -NzEUMBIGA1UECgwLVGVsaWFTb25lcmExHzAdBgNVBAMMFlRlbGlhU29uZXJhIFJv -b3QgQ0EgdjEwHhcNMDcxMDE4MTIwMDUwWhcNMzIxMDE4MTIwMDUwWjA3MRQwEgYD -VQQKDAtUZWxpYVNvbmVyYTEfMB0GA1UEAwwWVGVsaWFTb25lcmEgUm9vdCBDQSB2 -MTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMK+6yfwIaPzaSZVfp3F -VRaRXP3vIb9TgHot0pGMYzHw7CTww6XScnwQbfQ3t+XmfHnqjLWCi65ItqwA3GV1 -7CpNX8GH9SBlK4GoRz6JI5UwFpB/6FcHSOcZrr9FZ7E3GwYq/t75rH2D+1665I+X -Z75Ljo1kB1c4VWk0Nj0TSO9P4tNmHqTPGrdeNjPUtAa9GAH9d4RQAEX1jF3oI7x+ -/jXh7VB7qTCNGdMJjmhnXb88lxhTuylixcpecsHHltTbLaC0H2kD7OriUPEMPPCs -81Mt8Bz17Ww5OXOAFshSsCPN4D7c3TxHoLs1iuKYaIu+5b9y7tL6pe0S7fyYGKkm -dtwoSxAgHNN/Fnct7W+A90m7UwW7XWjH1Mh1Fj+JWov3F0fUTPHSiXk+TT2YqGHe -Oh7S+F4D4MHJHIzTjU3TlTazN19jY5szFPAtJmtTfImMMsJu7D0hADnJoWjiUIMu -sDor8zagrC/kb2HCUQk5PotTubtn2txTuXZZNp1D5SDgPTJghSJRt8czu90VL6R4 -pgd7gUY2BIbdeTXHlSw7sKMXNeVzH7RcWe/a6hBle3rQf5+ztCo3O3CLm1u5K7fs -slESl1MpWtTwEhDcTwK7EpIvYtQ/aUN8Ddb8WHUBiJ1YFkveupD/RwGJBmr2X7KQ -arMCpgKIv7NHfirZ1fpoeDVNAgMBAAGjPzA9MA8GA1UdEwEB/wQFMAMBAf8wCwYD -VR0PBAQDAgEGMB0GA1UdDgQWBBTwj1k4ALP1j5qWDNXr+nuqF+gTEjANBgkqhkiG -9w0BAQUFAAOCAgEAvuRcYk4k9AwI//DTDGjkk0kiP0Qnb7tt3oNmzqjMDfz1mgbl -dxSR651Be5kqhOX//CHBXfDkH1e3damhXwIm/9fH907eT/j3HEbAek9ALCI18Bmx -0GtnLLCo4MBANzX2hFxc469CeP6nyQ1Q6g2EdvZR74NTxnr/DlZJLo961gzmJ1Tj -TQpgcmLNkQfWpb/ImWvtxBnmq0wROMVvMeJuScg/doAmAyYp4Db29iBT4xdwNBed -Y2gea+zDTYa4EzAvXUYNR0PVG6pZDrlcjQZIrXSHX8f8MVRBE+LHIQ6e4B4N4cB7 -Q4WQxYpYxmUKeFfyxiMPAdkgS94P+5KFdSpcc41teyWRyu5FrgZLAMzTsVlQ2jqI -OylDRl6XK1TOU2+NSueW+r9xDkKLfP0ooNBIytrEgUy7onOTJsjrDNYmiLbAJM+7 -vVvrdX3pCI6GMyx5dwlppYn8s3CQh3aP0yK7Qs69cwsgJirQmz1wHiRszYd2qReW -t88NkvuOGKmYSdGe/mBEciG5Ge3C9THxOUiIkCR1VBatzvT4aRRkOfujuLpwQMcn -HL/EVlP6Y2XQ8xwOFvVrhlhNGNTkDY6lnVuR3HYkUD/GKvvZt5y11ubQ2egZixVx -SK236thZiNSQvxaz2emsWWFUyBy6ysHK4bkgTI86k4mloMy/0/Z1pHWWbVY= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/TrustedCertificateServices.crt b/test/rules/platform_certs/default/TrustedCertificateServices.crt deleted file mode 100644 index 883a9b8991b7..000000000000 --- a/test/rules/platform_certs/default/TrustedCertificateServices.crt +++ /dev/null @@ -1,25 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEQzCCAyugAwIBAgIBATANBgkqhkiG9w0BAQUFADB/MQswCQYDVQQGEwJHQjEb -MBkGA1UECAwSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHDAdTYWxmb3JkMRow -GAYDVQQKDBFDb21vZG8gQ0EgTGltaXRlZDElMCMGA1UEAwwcVHJ1c3RlZCBDZXJ0 -aWZpY2F0ZSBTZXJ2aWNlczAeFw0wNDAxMDEwMDAwMDBaFw0yODEyMzEyMzU5NTla -MH8xCzAJBgNVBAYTAkdCMRswGQYDVQQIDBJHcmVhdGVyIE1hbmNoZXN0ZXIxEDAO -BgNVBAcMB1NhbGZvcmQxGjAYBgNVBAoMEUNvbW9kbyBDQSBMaW1pdGVkMSUwIwYD -VQQDDBxUcnVzdGVkIENlcnRpZmljYXRlIFNlcnZpY2VzMIIBIjANBgkqhkiG9w0B -AQEFAAOCAQ8AMIIBCgKCAQEA33FvNlhTWvI2VFeAxHQIIO0Yfyod5jWaHiWsnOWW -fnJSoBVC21ndZHoa0Lh73TkVvFVIxO06AOoxEbrycXQaZ7jPM8yoMa+j49d/vzMt -TGo87IvDktJTdyR0nAducPy9C1t2ul/y/9c3S0pgePfw+spwtOpZqqPOSC+pw7IL -fhdyFgymBwwbOM/JYrc/oJOlh0Hyt3BAd9i+FHzjqMB6juljatEPmsbS9Is6FARW -1O24zG71++IsWL1/T2sr92AkWCTOJu80kTrV44HQsvAEAtdbtz6SrGsSivnkBbA7 -kUlcsutT6vifR4buv5XAwAaf0lteERv0xwQ1KdJVXOTt6wIDAQABo4HJMIHGMB0G -A1UdDgQWBBTFe1i97doladL3WRaoszLAeydb9DAOBgNVHQ8BAf8EBAMCAQYwDwYD -VR0TAQH/BAUwAwEB/zCBgwYDVR0fBHwwejA8oDqgOIY2aHR0cDovL2NybC5jb21v -ZG9jYS5jb20vVHJ1c3RlZENlcnRpZmljYXRlU2VydmljZXMuY3JsMDqgOKA2hjRo -dHRwOi8vY3JsLmNvbW9kby5uZXQvVHJ1c3RlZENlcnRpZmljYXRlU2VydmljZXMu -Y3JsMA0GCSqGSIb3DQEBBQUAA4IBAQDIk4E7ibSvuIQSTI3S8NtwuleGFTQQuS9/ -HrCoiWChisJ3DFBKmwCL2Iv0QeLQg4pKHBQGsKNoBXAxMKdTmw7pSqBYaWcOrp32 -pSxBvzwGa+RZzG0Q8ZZvH9/0BAKkn0U+yNj6NkZEUD+Cl5EfKNsYEYwq5GWDVxIS -jBc/lDb+XbDABHcTuPQV1T84zJQ6VdCsmPW6AF/ghhmBeC8owH7TzEIK9a5QoNE+ -xqFx7D+gIIxmOom0jtTYsU0lR+4viMi14QVFwL4Ucd56/Y57fU0IlqUSc/Atyjcn -dBInTMu2l+nZrghtWjlA3QVHdWpaIbOjGM9O9y5Xt5hwXsjEeLBi ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/TrustisFPSRootCA.crt b/test/rules/platform_certs/default/TrustisFPSRootCA.crt deleted file mode 100644 index d7155dd31232..000000000000 --- a/test/rules/platform_certs/default/TrustisFPSRootCA.crt +++ /dev/null @@ -1,21 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDZzCCAk+gAwIBAgIQGx+ttiD5JNM2a/fH8YygWTANBgkqhkiG9w0BAQUFADBF -MQswCQYDVQQGEwJHQjEYMBYGA1UEChMPVHJ1c3RpcyBMaW1pdGVkMRwwGgYDVQQL -ExNUcnVzdGlzIEZQUyBSb290IENBMB4XDTAzMTIyMzEyMTQwNloXDTI0MDEyMTEx -MzY1NFowRTELMAkGA1UEBhMCR0IxGDAWBgNVBAoTD1RydXN0aXMgTGltaXRlZDEc -MBoGA1UECxMTVHJ1c3RpcyBGUFMgUm9vdCBDQTCCASIwDQYJKoZIhvcNAQEBBQAD -ggEPADCCAQoCggEBAMVQe547NdDfxIzNjpvto8A2mfRC6qc+gIMPpqdZh8mQRUN+ -AOqGeSoDvT03mYlmt+WKVoaTnGhLaASMk5MCPjDSNzoiYYkchU59j9WvezX2fihH -iTHcDnlkH5nSW7r+f2C/revnPDgpai/lkQtV/+xvWNUtyd5MZnGPDNcE2gfmHhjj -vSkCqPoc4Vu5g6hBSLwacY3nYuUtsuvffM/bq1rKMfFMIvMFE/eC+XN5DL7XSxzA -0RU8k0Fk0ea+IxciAIleH2ulrG6nS4zto3Lmr2NNL4XSFDWaLk6M6jKYKIahkQlB -OrTh4/L68MkKokHdqeMDx4gVOxzUGpTXn2RZEm0CAwEAAaNTMFEwDwYDVR0TAQH/ -BAUwAwEB/zAfBgNVHSMEGDAWgBS6+nEleYtXQSUhhgtx67JkDoshZzAdBgNVHQ4E -FgQUuvpxJXmLV0ElIYYLceuyZA6LIWcwDQYJKoZIhvcNAQEFBQADggEBAH5Y//01 -GX2cGE+esCu8jowU/yyg2kdbw++BLa8F6nRIW/M+TgfHbcWzk88iNVy2P3UnXwmW -zaD+vkAMXBJV+JOCyinpXj9WV4s4NvdFGkwozZ5BuO1WTISkQMi4sKUraXAEasP4 -1BIy+Q7DsdwyhEQsb8tGD+pmQQ9P8Vilpg0ND2HepZ5dfWWhPBfnqFVO76DH7cZE -f1T1o+CP8HxVIo8ptoGj4W1OLBuAZ+ytIJ8MYmHVl/9D7S3B2l0pKoU/rGXuhg8F -jZBf3+6f9L/uHfuY5H+QK4R4EA5sSVPvFVtlRkpdr7r7OnIdzfYliB6XzCGcKQEN -ZetX2fNXlrtIzYE= ------END CERTIFICATE----- diff --git "a/test/rules/platform_certs/default/T\303\234B\304\260TAKUEKAEK\303\266kSertifikaHizmetSa\304\237lay\304\261c\304\261s\304\261-S\303\274r\303\274m3.crt" "b/test/rules/platform_certs/default/T\303\234B\304\260TAKUEKAEK\303\266kSertifikaHizmetSa\304\237lay\304\261c\304\261s\304\261-S\303\274r\303\274m3.crt" deleted file mode 100644 index 3e08348c1806..000000000000 --- "a/test/rules/platform_certs/default/T\303\234B\304\260TAKUEKAEK\303\266kSertifikaHizmetSa\304\237lay\304\261c\304\261s\304\261-S\303\274r\303\274m3.crt" +++ /dev/null @@ -1,30 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFFzCCA/+gAwIBAgIBETANBgkqhkiG9w0BAQUFADCCASsxCzAJBgNVBAYTAlRS -MRgwFgYDVQQHDA9HZWJ6ZSAtIEtvY2FlbGkxRzBFBgNVBAoMPlTDvHJraXllIEJp -bGltc2VsIHZlIFRla25vbG9qaWsgQXJhxZ90xLFybWEgS3VydW11IC0gVMOcQsSw -VEFLMUgwRgYDVQQLDD9VbHVzYWwgRWxla3Ryb25payB2ZSBLcmlwdG9sb2ppIEFy -YcWfdMSxcm1hIEVuc3RpdMO8c8O8IC0gVUVLQUUxIzAhBgNVBAsMGkthbXUgU2Vy -dGlmaWthc3lvbiBNZXJrZXppMUowSAYDVQQDDEFUw5xCxLBUQUsgVUVLQUUgS8O2 -ayBTZXJ0aWZpa2EgSGl6bWV0IFNhxJ9sYXnEsWPEsXPEsSAtIFPDvHLDvG0gMzAe -Fw0wNzA4MjQxMTM3MDdaFw0xNzA4MjExMTM3MDdaMIIBKzELMAkGA1UEBhMCVFIx -GDAWBgNVBAcMD0dlYnplIC0gS29jYWVsaTFHMEUGA1UECgw+VMO8cmtpeWUgQmls -aW1zZWwgdmUgVGVrbm9sb2ppayBBcmHFn3TEsXJtYSBLdXJ1bXUgLSBUw5xCxLBU -QUsxSDBGBgNVBAsMP1VsdXNhbCBFbGVrdHJvbmlrIHZlIEtyaXB0b2xvamkgQXJh -xZ90xLFybWEgRW5zdGl0w7xzw7wgLSBVRUtBRTEjMCEGA1UECwwaS2FtdSBTZXJ0 -aWZpa2FzeW9uIE1lcmtlemkxSjBIBgNVBAMMQVTDnELEsFRBSyBVRUtBRSBLw7Zr -IFNlcnRpZmlrYSBIaXptZXQgU2HEn2xhecSxY8Sxc8SxIC0gU8O8csO8bSAzMIIB -IjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAim1L/xCIOsP2fpTo6iBkcK4h -gb46ezzb8R1Sf1n68yJMlaCQvEhOEav7t7WNeoMojCZG2E6VQIdhn8WebYGHV2yK -O7Rm6sxA/OOqbLLLAdsyv9Lrhc+hDVXDWzhXcLh1xnnRFDDtG1hba+818qEhTsXO -fJlfbLm4IpNQp81McGq+agV/E5wrHur+R84EpW+sky58K5+eeROR6Oqeyjh1jmKw -lZMq5d/pXpduIF9fhHpEORlAHLpVK/swsoHvhOPc7Jg4OQOFCKlUAwUp8MmPi+oL -hmUZEdPpCSPeaJMDyTYcIW7OjGbxmTDY17PDHfiBLqi9ggtm/oLL4eAagsNAgQID -AQABo0IwQDAdBgNVHQ4EFgQUvYiHyY/2pAoLquvF/pEjnatKijIwDgYDVR0PAQH/ -BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBAB18+kmP -NOm3JpIWmgV050vQbTlswyb2zrgxvMTfvCr4N5EY3ATIZJkrGG2AA1nJrvhY0D7t -wyOfaTyGOBye79oneNGEN3GKPEs5z35FBtYt2IpNeBLWrcLTy9LQQfMmNkqblWwM -7uXRQydmwYj3erMgbOqwaSvHIOgMA8RBBZniP+Rr+KCGgceExh/VS4ESshYhLBOh -gLJeDEoTniDYYkCrkOpkSi+sDQESeUWoL4cZaMjihccwsnX5OD+ywJO0a+IDRM5n -oN+J1q2MdqMTw5RhK2vZbMEHCiIHhWyFJEapvj+LeISCfiQMnf2BN+MlqO02TpUs -yZyQ2uypQjyttgI= ------END CERTIFICATE----- diff --git "a/test/rules/platform_certs/default/T\303\234RKTRUSTElektronikSertifikaHizmetSa\304\237lay\304\261c\304\261s\304\261.crt" "b/test/rules/platform_certs/default/T\303\234RKTRUSTElektronikSertifikaHizmetSa\304\237lay\304\261c\304\261s\304\261.crt" deleted file mode 100644 index 3ae8c07ca4ee..000000000000 --- "a/test/rules/platform_certs/default/T\303\234RKTRUSTElektronikSertifikaHizmetSa\304\237lay\304\261c\304\261s\304\261.crt" +++ /dev/null @@ -1,25 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEPTCCAyWgAwIBAgIBATANBgkqhkiG9w0BAQUFADCBvzE/MD0GA1UEAww2VMOc -UktUUlVTVCBFbGVrdHJvbmlrIFNlcnRpZmlrYSBIaXptZXQgU2HEn2xhecSxY8Sx -c8SxMQswCQYDVQQGEwJUUjEPMA0GA1UEBwwGQW5rYXJhMV4wXAYDVQQKDFVUw5xS -S1RSVVNUIEJpbGdpIMSwbGV0acWfaW0gdmUgQmlsacWfaW0gR8O8dmVubGnEn2kg -SGl6bWV0bGVyaSBBLsWeLiAoYykgQXJhbMSxayAyMDA3MB4XDTA3MTIyNTE4Mzcx -OVoXDTE3MTIyMjE4MzcxOVowgb8xPzA9BgNVBAMMNlTDnFJLVFJVU1QgRWxla3Ry -b25payBTZXJ0aWZpa2EgSGl6bWV0IFNhxJ9sYXnEsWPEsXPEsTELMAkGA1UEBhMC -VFIxDzANBgNVBAcMBkFua2FyYTFeMFwGA1UECgxVVMOcUktUUlVTVCBCaWxnaSDE -sGxldGnFn2ltIHZlIEJpbGnFn2ltIEfDvHZlbmxpxJ9pIEhpem1ldGxlcmkgQS7F -ni4gKGMpIEFyYWzEsWsgMjAwNzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC -ggEBAKu3PgqMyKVYFeaK7yc9SrToJdPNM8Ig3BnuiD9NYvDdE3ePYakqtdTyuTFY -KTsvP2qcb3N2Je40IIDu6rfwxArNK4aUyeNgsURSsloptJGXg9i3phQvKUmi8wUG -+7RP2qFsmmaf8EMJyupyj+sA1zU511YXRxcw9L6/P8JorzZAwan0qafoEGsIiveG -HtyaKhUG9qPw9ODHFNRRf8+0222vR5YXm3dx2KdxnSQM9pQ/hTEST7ruToK4uT6P -IzdezKKqdfcYbwnTrqdUKDT74eA7YH2gvnmJhsifLfkKS8RQouf9eRbHegsYz85M -733WB2+Y8a+xwXrXgTW4qhe04MsCAwEAAaNCMEAwHQYDVR0OBBYEFCnFkKslrxHk -Yb+j/4hhkeYO/pyBMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MA0G -CSqGSIb3DQEBBQUAA4IBAQAQDdr4Ouwo0RSVgrESLFF6QSU2TJ/sPx+EnWVUXKgW -AkD6bho3hO9ynYYKVZ1WKKxmLNA6VpM0ByWtCLCPyA8JWcqdmBzlVPi5RX9ql2+I -aE1KBiY3iAIOtsbWcpnOa3faYjGkVh+uX4132l32iPwa2Z61gfAyuOOI0JzzaqC5 -mxRZNTZPz/OOXl0XrRWV2N2y1RVuAE6zS89mlOTgzbUF2mNXi+WzqtvALhyQRNsa -XRik7r4EW5nVcV9VZWRi1aKbBFmGyGJ353yCRWo9F7/snXUMrqNvWtMvmDb08PUZ -qxFdyKbjKlhqQgnDvZImZjINXQhVdP+MmNAKpoRq0Tl9 ------END CERTIFICATE----- diff --git "a/test/rules/platform_certs/default/T\303\234RKTRUSTElektronikSertifikaHizmetSa\304\237lay\304\261c\304\261s\304\261H5.crt" "b/test/rules/platform_certs/default/T\303\234RKTRUSTElektronikSertifikaHizmetSa\304\237lay\304\261c\304\261s\304\261H5.crt" deleted file mode 100644 index 3e9cb75eac4d..000000000000 --- "a/test/rules/platform_certs/default/T\303\234RKTRUSTElektronikSertifikaHizmetSa\304\237lay\304\261c\304\261s\304\261H5.crt" +++ /dev/null @@ -1,25 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEJzCCAw+gAwIBAgIHAI4X/iQggTANBgkqhkiG9w0BAQsFADCBsTELMAkGA1UE -BhMCVFIxDzANBgNVBAcMBkFua2FyYTFNMEsGA1UECgxEVMOcUktUUlVTVCBCaWxn -aSDEsGxldGnFn2ltIHZlIEJpbGnFn2ltIEfDvHZlbmxpxJ9pIEhpem1ldGxlcmkg -QS7Fni4xQjBABgNVBAMMOVTDnFJLVFJVU1QgRWxla3Ryb25payBTZXJ0aWZpa2Eg -SGl6bWV0IFNhxJ9sYXnEsWPEsXPEsSBINTAeFw0xMzA0MzAwODA3MDFaFw0yMzA0 -MjgwODA3MDFaMIGxMQswCQYDVQQGEwJUUjEPMA0GA1UEBwwGQW5rYXJhMU0wSwYD -VQQKDERUw5xSS1RSVVNUIEJpbGdpIMSwbGV0acWfaW0gdmUgQmlsacWfaW0gR8O8 -dmVubGnEn2kgSGl6bWV0bGVyaSBBLsWeLjFCMEAGA1UEAww5VMOcUktUUlVTVCBF -bGVrdHJvbmlrIFNlcnRpZmlrYSBIaXptZXQgU2HEn2xhecSxY8Sxc8SxIEg1MIIB -IjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApCUZ4WWe60ghUEoI5RHwWrom -/4NZzkQqL/7hzmAD/I0Dpe3/a6i6zDQGn1k19uwsu537jVJp45wnEFPzpALFp/kR -Gml1bsMdi9GYjZOHp3GXDSHHmflS0yxjXVW86B8BSLlg/kJK9siArs1mep5Fimh3 -4khon6La8eHBEJ/rPCmBp+EyCNSgBbGM+42WAA4+Jd9ThiI7/PS98wl+d+yG6w8z -5UNP9FR1bSmZLmZaQ9/LXMrI5Tjxfjs1nQ/0xVqhzPMggCTTV+wVunUlm+hkS7M0 -hO8EuPbJbKoCPrZV4jI3X/xml1/N1p7HIL9Nxqw/dV8c7TKcfGkAaZHjIxhT6QID -AQABo0IwQDAdBgNVHQ4EFgQUVpkHHtOsDGlktAxQR95DLL4gwPswDgYDVR0PAQH/ -BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQELBQADggEBAJ5FdnsX -SDLyOIspve6WSk6BGLFRRyDN0GSxDsnZAdkJzsiZ3GglE9Rc8qPoBP5yCccLqh0l -VX6Wmle3usURehnmp349hQ71+S4pL+f5bFgWV1Al9j4uPqrtd3GqqpmWRgqujuwq -URawXs3qZwQcWDD1YIq9pr1N5Za0/EKJAWv2cMhQOQwt1WbZyNKzMrcbGW3LM/nf -peYVhDfwwvJllpKQd/Ct9JDpEXjXk4nAPQu6KfTomZ1yju2dL+6SfaHx/126M2CF -Yv4HAqGEVka+lgqaE9chTLd8B59OTj+RdPsnnRHM3eaxynFNExc5JsUpISuTKWqW -+qtB4Uu2NQvAmxU= ------END CERTIFICATE----- diff --git "a/test/rules/platform_certs/default/T\303\234RKTRUSTElektronikSertifikaHizmetSa\304\237lay\304\261c\304\261s\304\261H6.crt" "b/test/rules/platform_certs/default/T\303\234RKTRUSTElektronikSertifikaHizmetSa\304\237lay\304\261c\304\261s\304\261H6.crt" deleted file mode 100644 index bbba14f8006d..000000000000 --- "a/test/rules/platform_certs/default/T\303\234RKTRUSTElektronikSertifikaHizmetSa\304\237lay\304\261c\304\261s\304\261H6.crt" +++ /dev/null @@ -1,25 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEJjCCAw6gAwIBAgIGfaHyZeyKMA0GCSqGSIb3DQEBCwUAMIGxMQswCQYDVQQG -EwJUUjEPMA0GA1UEBwwGQW5rYXJhMU0wSwYDVQQKDERUw5xSS1RSVVNUIEJpbGdp -IMSwbGV0acWfaW0gdmUgQmlsacWfaW0gR8O8dmVubGnEn2kgSGl6bWV0bGVyaSBB -LsWeLjFCMEAGA1UEAww5VMOcUktUUlVTVCBFbGVrdHJvbmlrIFNlcnRpZmlrYSBI -aXptZXQgU2HEn2xhecSxY8Sxc8SxIEg2MB4XDTEzMTIxODA5MDQxMFoXDTIzMTIx -NjA5MDQxMFowgbExCzAJBgNVBAYTAlRSMQ8wDQYDVQQHDAZBbmthcmExTTBLBgNV -BAoMRFTDnFJLVFJVU1QgQmlsZ2kgxLBsZXRpxZ9pbSB2ZSBCaWxpxZ9pbSBHw7x2 -ZW5sacSfaSBIaXptZXRsZXJpIEEuxZ4uMUIwQAYDVQQDDDlUw5xSS1RSVVNUIEVs -ZWt0cm9uaWsgU2VydGlmaWthIEhpem1ldCBTYcSfbGF5xLFjxLFzxLEgSDYwggEi -MA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCdsGjW6L0UlqMACprx9MfMkU1x -eHe59yEmFXNRFpQJRwXiM/VomjX/3EsvMsew7eKC5W/a2uqsxgbPJQ1BgfbBOCK9 -+bGlprMBvD9QFyv26WZV1DOzXPhDIHiTVRZwGTLmiddk671IUP320EEDwnS3/faA -z1vFq6TWlRKb55cTMgPp1KtDWxbtMyJkKbbSk60vbNg9tvYdDjTu0n2pVQ8g9P0p -u5FbHH3GQjhtQiht1AH7zYiXSX6484P4tZgvsycLSF5W506jM7NE1qXyGJTtHB6p -lVxiSvgNZ1GpryHV+DKdeboaX+UEVU0TRv/yz3THGmNtwx8XEsMeED5gCLMxAgMB -AAGjQjBAMB0GA1UdDgQWBBTdVRcT9qzoSCHK77Wv0QAy7Z6MtTAOBgNVHQ8BAf8E -BAMCAQYwDwYDVR0TAQH/BAUwAwEB/zANBgkqhkiG9w0BAQsFAAOCAQEAb1gNl0Oq -FlQ+v6nfkkU/hQu7VtMMUszIv3ZnXuaqs6fvuay0EBQNdH49ba3RfdCaqaXKGDsC -QC4qnFAUi/5XfldcEQlLNkVS9z2sFP1E34uXI9TDwe7UU5X+LEr+DXCqu4svLcsy -o4LyVN/Y8t3XSHLuSqMplsNEzm61kod2pLv0kmzOLBQJZo6NrRa1xxsJYTvjIKID -gI6tflEATseWhvtDmHd9KMeP2Cpu54Rvl0EpABZeTeIT6lnAY2c6RPuY/ATTMHKm -9ocJV612ph1jmv3XZch4gyt1O6VbuA1df74jrlZVlFjvH4GMKrLN5ptjnhi85WsG -tAuYSyher4hYyw== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/USERTrustECCCertificationAuthority.crt b/test/rules/platform_certs/default/USERTrustECCCertificationAuthority.crt deleted file mode 100644 index 8c9cecd586e2..000000000000 --- a/test/rules/platform_certs/default/USERTrustECCCertificationAuthority.crt +++ /dev/null @@ -1,16 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICjzCCAhWgAwIBAgIQXIuZxVqUxdJxVt7NiYDMJjAKBggqhkjOPQQDAzCBiDEL -MAkGA1UEBhMCVVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNl -eSBDaXR5MR4wHAYDVQQKExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMT -JVVTRVJUcnVzdCBFQ0MgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMTAwMjAx -MDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBiDELMAkGA1UEBhMCVVMxEzARBgNVBAgT -Ck5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQKExVUaGUg -VVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBFQ0MgQ2VydGlm -aWNhdGlvbiBBdXRob3JpdHkwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQarFRaqflo -I+d61SRvU8Za2EurxtW20eZzca7dnNYMYf3boIkDuAUU7FfO7l0/4iGzzvfUinng -o4N+LZfQYcTxmdwlkWOrfzCjtHDix6EznPO/LlxTsV+zfTJ/ijTjeXmjQjBAMB0G -A1UdDgQWBBQ64QmG1M8ZwpZ2dEl23OA1xmNjmjAOBgNVHQ8BAf8EBAMCAQYwDwYD -VR0TAQH/BAUwAwEB/zAKBggqhkjOPQQDAwNoADBlAjA2Z6EWCNzklwBBHU6+4WMB -zzuqQhFkoJ2UOQIReVx7Hfpkue4WQrO/isIJxOzksU0CMQDpKmFHjFJKS04YcPbW -RNZu9YO6bVi9JNlWSOrvxKJGgYhqOkbRqZtNyWHa0V1Xahg= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/USERTrustRSACertificationAuthority.crt b/test/rules/platform_certs/default/USERTrustRSACertificationAuthority.crt deleted file mode 100644 index d193f4821d96..000000000000 --- a/test/rules/platform_certs/default/USERTrustRSACertificationAuthority.crt +++ /dev/null @@ -1,34 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIF3jCCA8agAwIBAgIQAf1tMPyjylGoG7xkDjUDLTANBgkqhkiG9w0BAQwFADCB -iDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0pl -cnNleSBDaXR5MR4wHAYDVQQKExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNV -BAMTJVVTRVJUcnVzdCBSU0EgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMTAw -MjAxMDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBiDELMAkGA1UEBhMCVVMxEzARBgNV -BAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQKExVU -aGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBSU0EgQ2Vy -dGlmaWNhdGlvbiBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIK -AoICAQCAEmUXNg7D2wiz0KxXDXbtzSfTTK1Qg2HiqiBNCS1kCdzOiZ/MPans9s/B -3PHTsdZ7NygRK0faOca8Ohm0X6a9fZ2jY0K2dvKpOyuR+OJv0OwWIJAJPuLodMkY -tJHUYmTbf6MG8YgYapAiPLz+E/CHFHv25B+O1ORRxhFnRghRy4YUVD+8M/5+bJz/ -Fp0YvVGONaanZshyZ9shZrHUm3gDwFA66Mzw3LyeTP6vBZY1H1dat//O+T23LLb2 -VN3I5xI6Ta5MirdcmrS3ID3KfyI0rn47aGYBROcBTkZTmzNg95S+UzeQc0PzMsNT -79uq/nROacdrjGCT3sTHDN/hMq7MkztReJVni+49Vv4M0GkPGw/zJSZrM233bkf6 -c0Plfg6lZrEpfDKEY1WJxA3Bk1QwGROs0303p+tdOmw1XNtB1xLaqUkL39iAigmT -Yo61Zs8liM2EuLE/pDkP2QKe6xJMlXzzawWpXhaDzLhn4ugTncxbgtNMs+1b/97l -c6wjOy0AvzVVdAlJ2ElYGn+SNuZRkg7zJn0cTRe8yexDJtC/QV9AqURE9JnnV4ee -UB9XVKg+/XRjL7FQZQnmWEIuQxpMtPAlR1n6BB6T1CZGSlCBst6+eLf8ZxXhyVeE -Hg9j1uliutZfVS7qXMYoCAQlObgOK6nyTJccBz8NUvXt7y+CDwIDAQABo0IwQDAd -BgNVHQ4EFgQUU3m/WqorSs9UgOHYm8Cd8rIDZsswDgYDVR0PAQH/BAQDAgEGMA8G -A1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEMBQADggIBAFzUfA3P9wF9QZllDHPF -Up/L+M+ZBn8b2kMVn54CVVeWFPFSPCeHlCjtHzoBN6J2/FNQwISbxmtOuowhT6KO -VWKR82kV2LyI48SqC/3vqOlLVSoGIG1VeCkZ7l8wXEskEVX/JJpuXior7gtNn3/3 -ATiUFJVDBwn7YKnuHKsSjKCaXqeYalltiz8I+8jRRa8YFWSQEg9zKC7F4iRO/Fjs -8PRF/iKz6y+O0tlFYQXBl2+odnKPi4w2r78NBc5xjeambx9spnFixdjQg3IM8WcR -iQycE0xyNN+81XHfqnHd4blsjDwSXWXavVcStkNr/+XeTWYRUc+ZruwXtuhxkYze -Sf7dNXGiFSeUHM9h4ya7b6NnJSFd5t0dCy5oGzuCr+yDZ4XUmFF0sbmZgIn/f3gZ -XHlKYC6SQK5MNyosycdiyA5d9zZbyuAlJQG03RoHnHcAP9Dc1ew91Pq7P8yF1m9/ -qS3fuQL39ZeatTXaw2ewh0qpKJ4jjv9cJ2vhsE/zB+4ALtRZh8tSQZXq9EfX7mRB -VXyNWQKV3WKdwrnuWih0hKWbt5DHDAff9Yk2dDLWKMGwsAvgnEzDHNb842m1R0aB -L6KCq9NjRHDEjf8tM7qtj3u1cIiuPhnPQCjY/MiQu12ZIvVS5ljFH4gxQ+6IHdfG -jjxDah2nGN59PRbxYvnKkKj9 ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/UTN-USERFirst-ClientAuthenticationandEmail.crt b/test/rules/platform_certs/default/UTN-USERFirst-ClientAuthenticationandEmail.crt deleted file mode 100644 index c883fe325926..000000000000 --- a/test/rules/platform_certs/default/UTN-USERFirst-ClientAuthenticationandEmail.crt +++ /dev/null @@ -1,27 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEojCCA4qgAwIBAgIQRL4Mi1AAJLQR0zYlJWfJiTANBgkqhkiG9w0BAQUFADCB -rjELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAlVUMRcwFQYDVQQHEw5TYWx0IExha2Ug -Q2l0eTEeMBwGA1UEChMVVGhlIFVTRVJUUlVTVCBOZXR3b3JrMSEwHwYDVQQLExho -dHRwOi8vd3d3LnVzZXJ0cnVzdC5jb20xNjA0BgNVBAMTLVVUTi1VU0VSRmlyc3Qt -Q2xpZW50IEF1dGhlbnRpY2F0aW9uIGFuZCBFbWFpbDAeFw05OTA3MDkxNzI4NTBa -Fw0xOTA3MDkxNzM2NThaMIGuMQswCQYDVQQGEwJVUzELMAkGA1UECBMCVVQxFzAV -BgNVBAcTDlNhbHQgTGFrZSBDaXR5MR4wHAYDVQQKExVUaGUgVVNFUlRSVVNUIE5l -dHdvcmsxITAfBgNVBAsTGGh0dHA6Ly93d3cudXNlcnRydXN0LmNvbTE2MDQGA1UE -AxMtVVROLVVTRVJGaXJzdC1DbGllbnQgQXV0aGVudGljYXRpb24gYW5kIEVtYWls -MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsjmFpPJ9q0E7YkY3rs3B -YHW8OWX5ShpHornMSMxqmNVNNRm5pELlzkniii8efNIxB8dOtINknS4p1aJkxIW9 -hVE1eaROaJB7HHqkkqgX8pgV8pPMyaQylbsMTzC9mKALi+VuG6JG+ni8om+rWV6l -L8/K2m2qL+usobNqqrcuZzWLeeEeaYji5kbNoKXqvgvOdjp6Dpvq/NonWz1zHyLm -SGHGTPNpsaguG7bUMSAsvIKKjqQOpdeJQ/wWWq8dcdcRWdq6hw2v+vPhwvCkxWeM -1tZUOt4KpLoDd7NlyP0e03RiqhjKaJMeoYV+9Udly/hNVyh00jT/MLbu9mIwFIws -6wIDAQABo4G5MIG2MAsGA1UdDwQEAwIBxjAPBgNVHRMBAf8EBTADAQH/MB0GA1Ud -DgQWBBSJgmd9xJ0mcABLtFBIfN49rgRufTBYBgNVHR8EUTBPME2gS6BJhkdodHRw -Oi8vY3JsLnVzZXJ0cnVzdC5jb20vVVROLVVTRVJGaXJzdC1DbGllbnRBdXRoZW50 -aWNhdGlvbmFuZEVtYWlsLmNybDAdBgNVHSUEFjAUBggrBgEFBQcDAgYIKwYBBQUH -AwQwDQYJKoZIhvcNAQEFBQADggEBALFtYV2mGn98q0rkMPxTbyUkxsrt4jFcKw7u -7mFVbwQ+zznexRtJlOTrIEy05p5QLnLZjfWqo7NK2lYcYJeA3IKirUq9iiv/Cwm0 -xtcgBEXkzYABurorbs6q15L+5K/r9CYdFip/bDCVNy8zEqx/3cfREYxRmLLQo5HQ -rfafnoOTHh1CuEava2bwm3/q4wMC5QJRwarVNZ1yQAOJujEdxRBoUp7fooXFXAim -eOZTT7Hot9MUnpOmw2TjrH5xzbyf6QMbzPvprDHBr3wVdAKZw7JHpsIyYdfHb0gk -USeh1YdV8nuPmD0Wnu51tvjQjvLzxq4oW6fw8zYX/MMF08oDSlQ= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/UTN-USERFirst-Hardware.crt b/test/rules/platform_certs/default/UTN-USERFirst-Hardware.crt deleted file mode 100644 index 3bbbe4d42a51..000000000000 --- a/test/rules/platform_certs/default/UTN-USERFirst-Hardware.crt +++ /dev/null @@ -1,26 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEdDCCA1ygAwIBAgIQRL4Mi1AAJLQR0zYq/mUK/TANBgkqhkiG9w0BAQUFADCB -lzELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAlVUMRcwFQYDVQQHEw5TYWx0IExha2Ug -Q2l0eTEeMBwGA1UEChMVVGhlIFVTRVJUUlVTVCBOZXR3b3JrMSEwHwYDVQQLExho -dHRwOi8vd3d3LnVzZXJ0cnVzdC5jb20xHzAdBgNVBAMTFlVUTi1VU0VSRmlyc3Qt -SGFyZHdhcmUwHhcNOTkwNzA5MTgxMDQyWhcNMTkwNzA5MTgxOTIyWjCBlzELMAkG -A1UEBhMCVVMxCzAJBgNVBAgTAlVUMRcwFQYDVQQHEw5TYWx0IExha2UgQ2l0eTEe -MBwGA1UEChMVVGhlIFVTRVJUUlVTVCBOZXR3b3JrMSEwHwYDVQQLExhodHRwOi8v -d3d3LnVzZXJ0cnVzdC5jb20xHzAdBgNVBAMTFlVUTi1VU0VSRmlyc3QtSGFyZHdh -cmUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCx98M4P7Sof885glFn -0G2f0v9Y8+efK+wNiVSZuTiZFvfgIXlIwrthdBKWHTxqctU8EGc6Oe0rE81m65UJ -M6Rsl7HoxuzBdXmcRl6Nq9Bq/bkqVRcQVLMZ8Jr28bFdtqdt++BxF2uiiPsA3/4a -MXcMmgF6sTLjKwEHOG7DpV4jvEWbe1DByTCP2+UretNb+zNAHqDVmBe8i4fDidNd -oI6yqqr2jmmIBsX6iSHzCJ1pLgkzmykNRg+MzEk0sGlRvfkGzWitZky8PqxhvQqI -DsjfPe58BEydCl5rkdbux+0ojatNh4lz0G6k0B4WixThdkQDf2Os5M1JnMWS9Ksy -oUhbAgMBAAGjgbkwgbYwCwYDVR0PBAQDAgHGMA8GA1UdEwEB/wQFMAMBAf8wHQYD -VR0OBBYEFKFyXyYbKJhDlV0HN9WFlp1L0sNFMEQGA1UdHwQ9MDswOaA3oDWGM2h0 -dHA6Ly9jcmwudXNlcnRydXN0LmNvbS9VVE4tVVNFUkZpcnN0LUhhcmR3YXJlLmNy -bDAxBgNVHSUEKjAoBggrBgEFBQcDAQYIKwYBBQUHAwUGCCsGAQUFBwMGBggrBgEF -BQcDBzANBgkqhkiG9w0BAQUFAAOCAQEARxkP3nTGmZev/K0oXnWO6y1n7k57K9cM -//bey1WiCuFMVGWTYGufEpytXoMs61quwOQt9ABjHbjAbPLPSbtNk28Gpgoiskli -CE7/yMgUsogWXecB5BKV5UU0s4tpvc+0hY91UZ59Ojg6FEgSxvunOxqNDYJAB+gE -CJChicsZUN/KHAG8HQQZexB2lzvukJDKxA4fFm517zP4029bHpbj4HR3dHuKom4t -3XbWOTCC8KucUvIqx69JXn7HaOWCgchqJ/kniCrVWFCVH/A7HFe7fRQ5YiuayZSS -KqMiDP+JJn1fIytH1xUdqWqeUQ0qUZ6B+dQ7XnASfxAynB67nfhmqA== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/UTN-USERFirst-Object.crt b/test/rules/platform_certs/default/UTN-USERFirst-Object.crt deleted file mode 100644 index dcd10ba51564..000000000000 --- a/test/rules/platform_certs/default/UTN-USERFirst-Object.crt +++ /dev/null @@ -1,26 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEZjCCA06gAwIBAgIQRL4Mi1AAJLQR0zYt4LNfGzANBgkqhkiG9w0BAQUFADCB -lTELMAkGA1UEBhMCVVMxCzAJBgNVBAgTAlVUMRcwFQYDVQQHEw5TYWx0IExha2Ug -Q2l0eTEeMBwGA1UEChMVVGhlIFVTRVJUUlVTVCBOZXR3b3JrMSEwHwYDVQQLExho -dHRwOi8vd3d3LnVzZXJ0cnVzdC5jb20xHTAbBgNVBAMTFFVUTi1VU0VSRmlyc3Qt -T2JqZWN0MB4XDTk5MDcwOTE4MzEyMFoXDTE5MDcwOTE4NDAzNlowgZUxCzAJBgNV -BAYTAlVTMQswCQYDVQQIEwJVVDEXMBUGA1UEBxMOU2FsdCBMYWtlIENpdHkxHjAc -BgNVBAoTFVRoZSBVU0VSVFJVU1QgTmV0d29yazEhMB8GA1UECxMYaHR0cDovL3d3 -dy51c2VydHJ1c3QuY29tMR0wGwYDVQQDExRVVE4tVVNFUkZpcnN0LU9iamVjdDCC -ASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM6qgT+jo2F4qjEAVZURnicP -HxzfOpuCaDDASmEd8S8O+r5596Uj71VRloTN2+O5bj4x2AogZ8f02b+U60cEPgLO -KqJdhwQJ9jCdGIqXsqoc/EHSoTbL+z2RuufZcDX65OeQw5ujm9M89RKZd7G3CeBo -5hy485RjiGpq/gt2yb70IuRnuasaXnfBhQfdDWy/7gbHd2pBnqcP1/vulBe3/IW+ -pKvEHDHd17bR5PDv3xaPslKT16HUiaEHLr/hARJCHhrh2JU022R5KP+6LhHC5ehb -kkj7RwvCbNqtMoNB86XlQXD9ZZBt+vpRxPm9lisZBCzTbafc8H9vg2XiaquHhnUC -AwEAAaOBrzCBrDALBgNVHQ8EBAMCAcYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4E -FgQU2u1kdBScFDyr3ZmpvVsoTYs8ydgwQgYDVR0fBDswOTA3oDWgM4YxaHR0cDov -L2NybC51c2VydHJ1c3QuY29tL1VUTi1VU0VSRmlyc3QtT2JqZWN0LmNybDApBgNV -HSUEIjAgBggrBgEFBQcDAwYIKwYBBQUHAwgGCisGAQQBgjcKAwQwDQYJKoZIhvcN -AQEFBQADggEBAAgfUrE3RHjb/c652pWWmKpVZIC1WkDdIaXFwfNfLEzIR1pp6ujw -NTX00CXzyKakh0q9G7FzCL3Uw8q2NbtZhncxzaeAFK4T7/yxSPlrJSUtUbYsbUXB -mMiKVl0+7kNOPmsnjtA6S4ULX9Ptaqd1y9Fahy85dRNacrACgZ++8A+EVCBibGnU -4U3GDZlDAQ0Slox4nb9QorFEqmrPF3rPbw/U+CRVX/A0FklmPlBGyWNxODFiuGK5 -81OtbLUrohKqGU8J2l7nk8aOFAj+8DCAGKCGhU3IfdeLA/5u1fedFqySLKAj5ZyR -Uh+U3xeUc8OzwcFxBSAAeL0TUh2oPs0AH8g= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/VeriSignClass1PublicPrimaryCertificationAuthority-G3.crt b/test/rules/platform_certs/default/VeriSignClass1PublicPrimaryCertificationAuthority-G3.crt deleted file mode 100644 index a0466629878f..000000000000 --- a/test/rules/platform_certs/default/VeriSignClass1PublicPrimaryCertificationAuthority-G3.crt +++ /dev/null @@ -1,24 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEGjCCAwICEQCLW3VWhFSFCwDPrzhIzrGkMA0GCSqGSIb3DQEBBQUAMIHKMQsw -CQYDVQQGEwJVUzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZl -cmlTaWduIFRydXN0IE5ldHdvcmsxOjA4BgNVBAsTMShjKSAxOTk5IFZlcmlTaWdu -LCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxRTBDBgNVBAMTPFZlcmlT -aWduIENsYXNzIDEgUHVibGljIFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3Jp -dHkgLSBHMzAeFw05OTEwMDEwMDAwMDBaFw0zNjA3MTYyMzU5NTlaMIHKMQswCQYD -VQQGEwJVUzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlT -aWduIFRydXN0IE5ldHdvcmsxOjA4BgNVBAsTMShjKSAxOTk5IFZlcmlTaWduLCBJ -bmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxRTBDBgNVBAMTPFZlcmlTaWdu -IENsYXNzIDEgUHVibGljIFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkg -LSBHMzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAN2E1Lm0+afY8wR4 -nN493GwTFtl63SRRZsDHJlkNrAYIwpTRMx/wgzUfbhvI3qpuFU5UJ+/EbRrsC+MO -8ESlV8dAWB6jRx9x7GD2bZTIGDnt/kIYVt/kTEkQeE4BdjVjEjbdZrwBBDajVWjV -ojYJrKshJlQGrT/KFOCsyq0GHZXi+J3x4GD/wn91K0zM2v6HmSHquv4+VNfSWXjb -PG7PoBMAGrgnoeS+Z5bKoMWznN3JdZ7rMJpfo83ZrngZPyPpXNspva1VyBtUjGP2 -6KbqxzcSXKMpHgLZ2x87tNcPVkeBFQRKr4Mn0cVYiMHd9qqnoxjaaKptEVHhv2Vr -n5Z20T0CAwEAATANBgkqhkiG9w0BAQUFAAOCAQEAq2aN17O6x5q25lXQBfGfMY1a -qtmqRiYPce2lrVNWYgFHKkTp/j90CxObufRNG7LRX7K20ohcs5/Ny9Sn2WCVhDr4 -wTcdYcrnsMXlkdpUpqwxga6X3s0IrLjAl4B/bnKk52kTlWUfxJM8/XmPBNQ+T+r3 -ns7NZ3xPZQL/kYVUc8f/NveGLezQXk//EZ9yBta4GvFMDSZl4kSAHsef493oCtrs -pSCAaWihT37ha88HQfqDjrw43bAuEbFrskLMmrz5SCJ5ShkPshw+IHTZasO+8ih4 -E1Z5T21Q6huwtVexN2ZYI/PcD98Kh8TvhgXVOBRgmaNL3gaWcSzy27YfpO8/7g== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/VeriSignClass2PublicPrimaryCertificationAuthority-G3.crt b/test/rules/platform_certs/default/VeriSignClass2PublicPrimaryCertificationAuthority-G3.crt deleted file mode 100644 index cd160ca6c747..000000000000 --- a/test/rules/platform_certs/default/VeriSignClass2PublicPrimaryCertificationAuthority-G3.crt +++ /dev/null @@ -1,24 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEGTCCAwECEGFwy0mMX5hFKeewptlQW3owDQYJKoZIhvcNAQEFBQAwgcoxCzAJ -BgNVBAYTAlVTMRcwFQYDVQQKEw5WZXJpU2lnbiwgSW5jLjEfMB0GA1UECxMWVmVy -aVNpZ24gVHJ1c3QgTmV0d29yazE6MDgGA1UECxMxKGMpIDE5OTkgVmVyaVNpZ24s -IEluYy4gLSBGb3IgYXV0aG9yaXplZCB1c2Ugb25seTFFMEMGA1UEAxM8VmVyaVNp -Z24gQ2xhc3MgMiBQdWJsaWMgUHJpbWFyeSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0 -eSAtIEczMB4XDTk5MTAwMTAwMDAwMFoXDTM2MDcxNjIzNTk1OVowgcoxCzAJBgNV -BAYTAlVTMRcwFQYDVQQKEw5WZXJpU2lnbiwgSW5jLjEfMB0GA1UECxMWVmVyaVNp -Z24gVHJ1c3QgTmV0d29yazE6MDgGA1UECxMxKGMpIDE5OTkgVmVyaVNpZ24sIElu -Yy4gLSBGb3IgYXV0aG9yaXplZCB1c2Ugb25seTFFMEMGA1UEAxM8VmVyaVNpZ24g -Q2xhc3MgMiBQdWJsaWMgUHJpbWFyeSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAt -IEczMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArwoNwtUs22e5LeWU -J92lvuCwTY+zYVY81nzD9M0+hsuiiOLh2KRpxbXiv8GmR1BeRjmL1Za6tW8UvxDO -JxOeBUebMXoT2B/Z0wI3i60sR/COgQanDTAM6/c8DyAd3HJG7qUCyFvDyVZpTMUY -wZF7C9UTAJu878NIPkZgIIUq1ZC2zYugzDLdt/1AVbJQHFauzI13TccgTacxdu9o -koqQHgiBVrKtaaNS0MscxCM9H5n+TOgWY47GCI72MfbS+uV23bUckqNJzc0BzWjN -qWm6o+sdDZykIKbBoMXRRkwXbdKsZj+WjOCE1Db/IlnF+RFgqF8EffIa9iVCYQ/E -Srg+iQIDAQABMA0GCSqGSIb3DQEBBQUAA4IBAQA0JhU8wI1NQ0kdvekhktdmnLfe -xbjQ5F1fdiLAJvmEOjr5jLX77GDx6M4EsMjdpwOPMPOY36TmpDHf0xwLRtxyID+u -7gU8pDM/CzmscHhzS5kr3zDCVLCoO1Wh/hYozUK9dG6A2ydEp85EXdQbkJgNHkKU -sQAsBNB0owIFImNjzYO1+8FtYmtpdf1dcEG59b98377BMnMiIYtYgXsVkXq642RI -sH/7NiXaldDxJBQX3RiAa0YjOVT1jmIJBB2UkKab5iXiQkWquJCtvgiPqQtCGJTP -cjnhsUPgKM+351psE2tJs//jGHyJizNdrDPXp/naOlXJWBD5qu9ats9LS98q ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/VeriSignClass3PublicPrimaryCertificationAuthority-G3.crt b/test/rules/platform_certs/default/VeriSignClass3PublicPrimaryCertificationAuthority-G3.crt deleted file mode 100644 index ecca55bf4a7e..000000000000 --- a/test/rules/platform_certs/default/VeriSignClass3PublicPrimaryCertificationAuthority-G3.crt +++ /dev/null @@ -1,24 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEGjCCAwICEQCbfgZJoz5iudXukEhxKe9XMA0GCSqGSIb3DQEBBQUAMIHKMQsw -CQYDVQQGEwJVUzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZl -cmlTaWduIFRydXN0IE5ldHdvcmsxOjA4BgNVBAsTMShjKSAxOTk5IFZlcmlTaWdu -LCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxRTBDBgNVBAMTPFZlcmlT -aWduIENsYXNzIDMgUHVibGljIFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3Jp -dHkgLSBHMzAeFw05OTEwMDEwMDAwMDBaFw0zNjA3MTYyMzU5NTlaMIHKMQswCQYD -VQQGEwJVUzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlT -aWduIFRydXN0IE5ldHdvcmsxOjA4BgNVBAsTMShjKSAxOTk5IFZlcmlTaWduLCBJ -bmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxRTBDBgNVBAMTPFZlcmlTaWdu -IENsYXNzIDMgUHVibGljIFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkg -LSBHMzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMu6nFL8eB8aHm8b -N3O9+MlrlBIwT/A2R/XQkQr1F8ilYcEWQE37imGQ5XYgwREGfassbqb1EUGO+i2t -KmFZpGcmTNDovFJbcCAEWNF6yaRpvIMXZK0Fi7zQWM6NjPXr8EJJC52XJ2cybuGu -kxUccLwgTS8Y3pKI6GyFVxEa6X7jJhFUokWWVYPKMIno3Nij7SqAP395ZVc+FSBm -CC+Vk7+qRy+oRpfwEuL+wgorUeZ25rdGt+INpsyow0xZVYnm6FNcHOqd8GIWC6fJ -Xwzw3sJ2zq/3avL6QaaiMxTJ5Xpj055iN9WFZZ4O5lMkdBteHRJTW8cs54NJOxWu -imi5V5cCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEAERSWwauSCPc/L8my/uRan2Te -2yFPhpk0djZX3dAVL8WtfxUfN2JzPtTnX84XA9s1+ivbrmAJXx5fj267Cz3qWhMe -DGBvtcC1IyIuBwvLqXTLR7sdwdela8wv0kL9Sd2nic9TutoAWii/gt/4uhMdUIaC -/Y4wjylGsB49Ndo4YhYYSq3mtlFs3q9i6wHQHiT+eo8SGhJouPtmmRQURVyu565p -F4ErWjfJXir0xuKhXFSbplQAz/DxwceYMBo7Nhbbo27q/a2ywtrvAkcTisDxszGt -TxzhT5yvDwyd93gN2PQ1VoDat20Xj50egWTh/sVFuq1ruQp6Tk9LhO5L8X3dEQ== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/VeriSignClass3PublicPrimaryCertificationAuthority-G4.crt b/test/rules/platform_certs/default/VeriSignClass3PublicPrimaryCertificationAuthority-G4.crt deleted file mode 100644 index 4667705c6a2b..000000000000 --- a/test/rules/platform_certs/default/VeriSignClass3PublicPrimaryCertificationAuthority-G4.crt +++ /dev/null @@ -1,21 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDhDCCAwqgAwIBAgIQL4D+I4wOIg9IZxIokYesszAKBggqhkjOPQQDAzCByjEL -MAkGA1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZW -ZXJpU2lnbiBUcnVzdCBOZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwNyBWZXJpU2ln -biwgSW5jLiAtIEZvciBhdXRob3JpemVkIHVzZSBvbmx5MUUwQwYDVQQDEzxWZXJp -U2lnbiBDbGFzcyAzIFB1YmxpYyBQcmltYXJ5IENlcnRpZmljYXRpb24gQXV0aG9y -aXR5IC0gRzQwHhcNMDcxMTA1MDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCByjELMAkG -A1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZWZXJp -U2lnbiBUcnVzdCBOZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwNyBWZXJpU2lnbiwg -SW5jLiAtIEZvciBhdXRob3JpemVkIHVzZSBvbmx5MUUwQwYDVQQDEzxWZXJpU2ln -biBDbGFzcyAzIFB1YmxpYyBQcmltYXJ5IENlcnRpZmljYXRpb24gQXV0aG9yaXR5 -IC0gRzQwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAASnVnp8Utpkmw4tXNherJI9/gHm -GUo9FANL+mAnINmDiWn6VMaaGF5VKmTeBvaNSjutEDxlPZCIBIngMGGzrl0Bp3ve -fLK+ymVhAIau2o970ImtTR1ZmkGxvEeA3J5iw/mjgbIwga8wDwYDVR0TAQH/BAUw -AwEB/zAOBgNVHQ8BAf8EBAMCAQYwbQYIKwYBBQUHAQwEYTBfoV2gWzBZMFcwVRYJ -aW1hZ2UvZ2lmMCEwHzAHBgUrDgMCGgQUj+XTGoasjY5rw8+AatRIGCx7GS4wJRYj -aHR0cDovL2xvZ28udmVyaXNpZ24uY29tL3ZzbG9nby5naWYwHQYDVR0OBBYEFLMW -kf3upm7ktS5Jj4d4gYDs5bG1MAoGCCqGSM49BAMDA2gAMGUCMGYhDBgmYFo4e1ZC -4Kf8NoRRkSAsdk1DPcQdhCPQrNZ8NQbOzWm9kA3bbEhCHQ6qQgIxAJw9SDkjOVga -FRJZap7v1VmyHVIsmXHNxynfGyphe3HR3vPA5Q06Sqotp9iGKt0uEA== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/VeriSignClass3PublicPrimaryCertificationAuthority-G5.crt b/test/rules/platform_certs/default/VeriSignClass3PublicPrimaryCertificationAuthority-G5.crt deleted file mode 100644 index b041f4a51d3e..000000000000 --- a/test/rules/platform_certs/default/VeriSignClass3PublicPrimaryCertificationAuthority-G5.crt +++ /dev/null @@ -1,28 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIE0zCCA7ugAwIBAgIQGNrRniZ96LtKIVjNzGs7SjANBgkqhkiG9w0BAQUFADCB -yjELMAkGA1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQL -ExZWZXJpU2lnbiBUcnVzdCBOZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwNiBWZXJp -U2lnbiwgSW5jLiAtIEZvciBhdXRob3JpemVkIHVzZSBvbmx5MUUwQwYDVQQDEzxW -ZXJpU2lnbiBDbGFzcyAzIFB1YmxpYyBQcmltYXJ5IENlcnRpZmljYXRpb24gQXV0 -aG9yaXR5IC0gRzUwHhcNMDYxMTA4MDAwMDAwWhcNMzYwNzE2MjM1OTU5WjCByjEL -MAkGA1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZW -ZXJpU2lnbiBUcnVzdCBOZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwNiBWZXJpU2ln -biwgSW5jLiAtIEZvciBhdXRob3JpemVkIHVzZSBvbmx5MUUwQwYDVQQDEzxWZXJp -U2lnbiBDbGFzcyAzIFB1YmxpYyBQcmltYXJ5IENlcnRpZmljYXRpb24gQXV0aG9y -aXR5IC0gRzUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCvJAgIKXo1 -nmAMqudLO07cfLw8RRy7K+D+KQL5VwijZIUVJ/XxrcgxiV0i6CqqpkKzj/i5Vbex -t0uz/o9+B1fs70PbZmIVYc9gDaTY3vjgw2IIPVQT60nKWVSFJuUrjxuf6/WhkcIz -SdhDY2pSS9KP6HBRTdGJaXvHcPaz3BJ023tdS1bTlr8Vd6Gw9KIl8q8ckmcY5fQG -BO+QueQA5N06tRn/Arr0PO7gi+s3i+z016zy9vA9r911kTMZHRxAy3QkGSGT2RT+ -rCpSx4/VBEnkjWNHiDxpg8v+R70rfk/Fla4OndTRQ8Bnc+MUCH7lP59zuDMKz10/ -NIeWiu5T6CUVAgMBAAGjgbIwga8wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8E -BAMCAQYwbQYIKwYBBQUHAQwEYTBfoV2gWzBZMFcwVRYJaW1hZ2UvZ2lmMCEwHzAH -BgUrDgMCGgQUj+XTGoasjY5rw8+AatRIGCx7GS4wJRYjaHR0cDovL2xvZ28udmVy -aXNpZ24uY29tL3ZzbG9nby5naWYwHQYDVR0OBBYEFH/TZafC3ey78DAJ80M5+gKv -MzEzMA0GCSqGSIb3DQEBBQUAA4IBAQCTJEowX2LP2BqYLz3q3JktvXf2pXkiOOzE -p6B4Eq1iDkVwZMXnl2YtmAl+X6/WzChl8gGqCBpH3vn5fJJaCGkgDdk+bW48DW7Y -5gaRQBi5+MHt39tBquCWIMnNZBU4gcmU7qKEKQsTb47bDN0lAtukixlE0kF6BWlK -WE9gyn6CagsCqiUXObXbf+eEZSqVir2G3l6BFoMtEMze/aiCKm0oHw0LxOXnGiYZ -4fQRbxC1lfznQgUy286dUV4otp6F01vvpX1FQHKOtw5rDgb7MzVIcbidJ4vEZV8N -hnacRHr2lVz2XTIIM6RUthg/aFzyQkqFOFSDX9HoLPKsEdao7WNq ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/VeriSignClass3SecureServerCA-G2.crt b/test/rules/platform_certs/default/VeriSignClass3SecureServerCA-G2.crt deleted file mode 100644 index 402e30d6231d..000000000000 --- a/test/rules/platform_certs/default/VeriSignClass3SecureServerCA-G2.crt +++ /dev/null @@ -1,30 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFOTCCBCGgAwIBAgIQLwBuzRdwZudfo4IKeR8FrjANBgkqhkiG9w0BAQUFADCB -yjELMAkGA1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQL -ExZWZXJpU2lnbiBUcnVzdCBOZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwNiBWZXJp -U2lnbiwgSW5jLiAtIEZvciBhdXRob3JpemVkIHVzZSBvbmx5MUUwQwYDVQQDEzxW -ZXJpU2lnbiBDbGFzcyAzIFB1YmxpYyBQcmltYXJ5IENlcnRpZmljYXRpb24gQXV0 -aG9yaXR5IC0gRzUwHhcNMDkwMzI2MDAwMDAwWhcNMTkwMzI0MjM1OTU5WjCBtTEL -MAkGA1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZW -ZXJpU2lnbiBUcnVzdCBOZXR3b3JrMTswOQYDVQQLEzJUZXJtcyBvZiB1c2UgYXQg -aHR0cHM6Ly93d3cudmVyaXNpZ24uY29tL3JwYSAoYykwOTEvMC0GA1UEAxMmVmVy -aVNpZ24gQ2xhc3MgMyBTZWN1cmUgU2VydmVyIENBIC0gRzIwggEiMA0GCSqGSIb3 -DQEBAQUAA4IBDwAwggEKAoIBAQDUVo9XOzcopkBj0pXVBXTatRlqltZxVy/iwDSM -oJWzjOE3JPMu7UNFBY6J1/raSrX4Po1Ox/lJUEU3QJ90qqBRVWHxYISJpZ6AjS+w -IapFgsTPtBR/RxUgKIKwaBLArlwH1/ZZzMtiVlxNSf8miKtUUTovStoOmOKJcrn8 -92g8xB85essXgfMMrQ/cYWIbEAsEHikYcV5iy0PevjG6cQIZTiapUdqMZGkD3pz9 -ff17Ybz8hHyIXLTDe+1fK0YS8f0AAZqLW+mjBS6PLlve8xt4+GaRCMBeztWwNsrU -qHugffkwer/43RlRKyC6/qfPoU6wZ/WAqiuDLtKOVImOHikLAgMBAAGjggEsMIIB -KDASBgNVHRMBAf8ECDAGAQH/AgEAMA4GA1UdDwEB/wQEAwIBBjApBgNVHREEIjAg -pB4wHDEaMBgGA1UEAxMRQ2xhc3MzQ0EyMDQ4LTEtNTIwHQYDVR0OBBYEFKXvCxHO -wEEDo0plkEiyHOBXLX1HMGYGA1UdIARfMF0wWwYLYIZIAYb4RQEHFwMwTDAjBggr -BgEFBQcCARYXaHR0cHM6Ly9kLnN5bWNiLmNvbS9jcHMwJQYIKwYBBQUHAgIwGRoX -aHR0cHM6Ly9kLnN5bWNiLmNvbS9ycGEwLwYDVR0fBCgwJjAkoCKgIIYeaHR0cDov -L3Muc3ltY2IuY29tL3BjYTMtZzUuY3JsMB8GA1UdIwQYMBaAFH/TZafC3ey78DAJ -80M5+gKvMzEzMA0GCSqGSIb3DQEBBQUAA4IBAQArjhTM7IYIYDeLbGWJJSHeL1Ki -B55Y07MWeAGZUZW0E3fMd90LXIE31r72YtYENwsYc5rT9sGiHm2cu4wR5j4SXgdf -C4NcdALgUPSxJhttxujpv025ARUZ7FCa+RHwgVhDLE0RQLNaRgimXnOhiBI1jP8D -Or3Wnfrn3Ja5GmQ+xP3ZCrZlnrqlqFj8OyLwolfuildHnHfHJeGsNAVN84J+QSO6 -tFfz58YBZddNiZkcaU1eePbrcnE9ssSVAZ9dDLcvJaZceUHvnsRnPKGdf3E60JWX -7HhCdJhuvj5oTFc8qJNBhwvkua+R+1BMDLrAJCfRFdtlSCEKL9fcfqDMZX55 ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/VeriSignUniversalRootCertificationAuthority.crt b/test/rules/platform_certs/default/VeriSignUniversalRootCertificationAuthority.crt deleted file mode 100644 index 2d48f0b52cb6..000000000000 --- a/test/rules/platform_certs/default/VeriSignUniversalRootCertificationAuthority.crt +++ /dev/null @@ -1,28 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEuTCCA6GgAwIBAgIQQBrEZCGzEyEDDrvkEhrFHTANBgkqhkiG9w0BAQsFADCB -vTELMAkGA1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQL -ExZWZXJpU2lnbiBUcnVzdCBOZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwOCBWZXJp -U2lnbiwgSW5jLiAtIEZvciBhdXRob3JpemVkIHVzZSBvbmx5MTgwNgYDVQQDEy9W -ZXJpU2lnbiBVbml2ZXJzYWwgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAe -Fw0wODA0MDIwMDAwMDBaFw0zNzEyMDEyMzU5NTlaMIG9MQswCQYDVQQGEwJVUzEX -MBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlTaWduIFRydXN0 -IE5ldHdvcmsxOjA4BgNVBAsTMShjKSAyMDA4IFZlcmlTaWduLCBJbmMuIC0gRm9y -IGF1dGhvcml6ZWQgdXNlIG9ubHkxODA2BgNVBAMTL1ZlcmlTaWduIFVuaXZlcnNh -bCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIIBIjANBgkqhkiG9w0BAQEF -AAOCAQ8AMIIBCgKCAQEAx2E3XrEBNNti1xWb/1hajCMj1mCOkdeQmIN65lgZOIzF -9uVkhbSicfvtvbnazU0AtMgtc6XHaXGVHzk8skQHnOgO+k1KxCHfKWGPMiJhgsWH -H26MfF8WIFFE0XBPV+rjHOPMee5Y2A7Cs0WTwCznmhcrewA3ekEzeOEz4vMQGn+H -LL729fdC4uW/h2KJXwBL38Xd5HVEMkE6HnFuacsLdUYI0crSK5XQz/u5QGtkjFdN -/BMReYTtXlT2NJ8IAfMQJQYXStrxHXpma5hgZqTZ79IugvHw7wnqRMkVauIDbjPT -rJ9VAMf2CGqUuV/c4DPxhGD5WycRtPwW8rtWaoAljQIDAQABo4GyMIGvMA8GA1Ud -EwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMG0GCCsGAQUFBwEMBGEwX6FdoFsw -WTBXMFUWCWltYWdlL2dpZjAhMB8wBwYFKw4DAhoEFI/l0xqGrI2Oa8PPgGrUSBgs -exkuMCUWI2h0dHA6Ly9sb2dvLnZlcmlzaWduLmNvbS92c2xvZ28uZ2lmMB0GA1Ud -DgQWBBS2d/ppSEefUxLVwuoHMnYH0ZcHGTANBgkqhkiG9w0BAQsFAAOCAQEASvj4 -sAPmLGd75JR3Y8xuTPl9Dg3cyLk1uXBPY/ok+myDjEedO2Pzmvl2MpWRsXe8rJq+ -seQxIcaBlVZaDrHC1LGmWazxY8u4TB1ZkErvkBYoH1quEPuBUDgMbMzxPcP1Y+Oz -4yHJJDnp/RVmRvQbEdBNc6N9Rvk97ahfYtTxP/jgdFcrGJ2BtMQo2pSXpXDrrB2+ -BxHw1dvd5Yzw1TKwg+ZX4o+/vqGqvz0dtdQ46tewXDpPaj+PwGZsY6rp2aQW9IHR -lRQOfc2VNNnSj3BzgXucfr2YYdhFh5iQxeuGMMY1v/D/w1WIg0vvBZIGcfK4mJO3 -7M2CYfE45k+XmCpajQ== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/VerisignClass1PublicPrimaryCertificationAuthority.crt b/test/rules/platform_certs/default/VerisignClass1PublicPrimaryCertificationAuthority.crt deleted file mode 100644 index e0102dfe67ff..000000000000 --- a/test/rules/platform_certs/default/VerisignClass1PublicPrimaryCertificationAuthority.crt +++ /dev/null @@ -1,14 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICPDCCAaUCED9pHoGc8JpK83P/uUii5N0wDQYJKoZIhvcNAQEFBQAwXzELMAkG -A1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMTcwNQYDVQQLEy5DbGFz -cyAxIFB1YmxpYyBQcmltYXJ5IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTk2 -MDEyOTAwMDAwMFoXDTI4MDgwMjIzNTk1OVowXzELMAkGA1UEBhMCVVMxFzAVBgNV -BAoTDlZlcmlTaWduLCBJbmMuMTcwNQYDVQQLEy5DbGFzcyAxIFB1YmxpYyBQcmlt -YXJ5IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIGfMA0GCSqGSIb3DQEBAQUAA4GN -ADCBiQKBgQDlGb9to1ZhLZlIcfZn3rmN67eehoAKkQ76OCWvRoiC5XOooJskXQ0f -zGVuDLDQVoQYh5oGmxChc9+0WDlrbsH2FdWoqD+qEgaNMax/sDTXjzRniAnNFBHi -TkVWaR94AoDa3EeRKbs2yWNcxeDXLYd7obcysHswuiovMaruo2fa2wIDAQABMA0G -CSqGSIb3DQEBBQUAA4GBAFgVKTk8d6PaXCUDfGD67gmZPCcQcMgMCeazh88K4hiW -NWLMv5sneYlfycQJ9M61Hd8qveXbhpxoJeUwfLaJFf5n0a3hUKw8fGJLj7qE1xIV -Gx/KXQ/BUpQqEZnae88MNhPVNdwQGVnqlMEAv3WP2fr9dgTbYruQagPZRjXZ+Hxb ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/VerisignClass2PublicPrimaryCertificationAuthority-G2.crt b/test/rules/platform_certs/default/VerisignClass2PublicPrimaryCertificationAuthority-G2.crt deleted file mode 100644 index db8effe0e832..000000000000 --- a/test/rules/platform_certs/default/VerisignClass2PublicPrimaryCertificationAuthority-G2.crt +++ /dev/null @@ -1,19 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDAzCCAmwCEQC5L2DMiJ+hekYJuFtwbIqvMA0GCSqGSIb3DQEBBQUAMIHBMQsw -CQYDVQQGEwJVUzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xPDA6BgNVBAsTM0Ns -YXNzIDIgUHVibGljIFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgLSBH -MjE6MDgGA1UECxMxKGMpIDE5OTggVmVyaVNpZ24sIEluYy4gLSBGb3IgYXV0aG9y -aXplZCB1c2Ugb25seTEfMB0GA1UECxMWVmVyaVNpZ24gVHJ1c3QgTmV0d29yazAe -Fw05ODA1MTgwMDAwMDBaFw0yODA4MDEyMzU5NTlaMIHBMQswCQYDVQQGEwJVUzEX -MBUGA1UEChMOVmVyaVNpZ24sIEluYy4xPDA6BgNVBAsTM0NsYXNzIDIgUHVibGlj -IFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgLSBHMjE6MDgGA1UECxMx -KGMpIDE5OTggVmVyaVNpZ24sIEluYy4gLSBGb3IgYXV0aG9yaXplZCB1c2Ugb25s -eTEfMB0GA1UECxMWVmVyaVNpZ24gVHJ1c3QgTmV0d29yazCBnzANBgkqhkiG9w0B -AQEFAAOBjQAwgYkCgYEAp4gBIXQs5xoD8JjhlzwPIQjxnNuX6Zr8wgQGE75fUsjM -HiwSViy4AWkszJkfrbCWrnkE8hM5wXuYuggs6MKEEyyqaekJ9MepAqRCwiNPStjw -DqL7MWzJ5m+ZJwf15vRMeJ5t60aG+rmGyVTyssSv1EYcWskVMP8NbPUtDm3Of3cC -AwEAATANBgkqhkiG9w0BAQUFAAOBgQByLvl/0fFx+8Se9sVeUYpAmLho+Jscg9ji -nb3/7aHmZuovCfTK1+qlK5X2JGCGTUQug6XELaDTrnhpb3LabK4I8GOSN+a7xDAX -rXfMSTWqz9iP0b63GJZHc2pUIjRkLbYWm1lbtFFZOrMLFPQS32eg9K0yZF6xRnIn -jBJ7xUS0rg== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/VerisignClass3PublicPrimaryCertificationAuthority.crt b/test/rules/platform_certs/default/VerisignClass3PublicPrimaryCertificationAuthority.crt deleted file mode 100644 index fd7867877f84..000000000000 --- a/test/rules/platform_certs/default/VerisignClass3PublicPrimaryCertificationAuthority.crt +++ /dev/null @@ -1,14 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICPDCCAaUCEHC65B0Q2Sk0tjjKewPMur8wDQYJKoZIhvcNAQECBQAwXzELMAkG -A1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMTcwNQYDVQQLEy5DbGFz -cyAzIFB1YmxpYyBQcmltYXJ5IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTk2 -MDEyOTAwMDAwMFoXDTI4MDgwMTIzNTk1OVowXzELMAkGA1UEBhMCVVMxFzAVBgNV -BAoTDlZlcmlTaWduLCBJbmMuMTcwNQYDVQQLEy5DbGFzcyAzIFB1YmxpYyBQcmlt -YXJ5IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIGfMA0GCSqGSIb3DQEBAQUAA4GN -ADCBiQKBgQDJXFme8huKARS0EN8EQNvjV69qRUCPhAwL0TPZ2RHP7gJYHyX3KqhE -BarsAx94f56TuZoAqiN91qyFomNFx3InzPRMxnVx0jnvT0Lwdd8KkMaOIG+YD/is -I19wKTakyYbnsZogy1Olhec9vn2a/iRFM9x2Fe0PonFkTGUugWhFpwIDAQABMA0G -CSqGSIb3DQEBAgUAA4GBALtMEivPLCYATxQT3ab7/AoRhIzzKBxnki98tsX63/Do -lbwdj2wsqFHMc9ikwFPwTtYmwHYBV4GSXiHx0bH/59AhWM1pF+NEHJwZRDmJXNyc -AA9WjQKZ7aKQRUzkuxCkPfAyAw7xzvjoyVGM5mKf5p/AfbdynMk2OmufTqj/ZA1k ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/VisaeCommerceRoot.crt b/test/rules/platform_certs/default/VisaeCommerceRoot.crt deleted file mode 100644 index 2b591aaba376..000000000000 --- a/test/rules/platform_certs/default/VisaeCommerceRoot.crt +++ /dev/null @@ -1,22 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDojCCAoqgAwIBAgIQE4Y1TR0/BvLB+WUF1ZAcYjANBgkqhkiG9w0BAQUFADBr -MQswCQYDVQQGEwJVUzENMAsGA1UEChMEVklTQTEvMC0GA1UECxMmVmlzYSBJbnRl -cm5hdGlvbmFsIFNlcnZpY2UgQXNzb2NpYXRpb24xHDAaBgNVBAMTE1Zpc2EgZUNv -bW1lcmNlIFJvb3QwHhcNMDIwNjI2MDIxODM2WhcNMjIwNjI0MDAxNjEyWjBrMQsw -CQYDVQQGEwJVUzENMAsGA1UEChMEVklTQTEvMC0GA1UECxMmVmlzYSBJbnRlcm5h -dGlvbmFsIFNlcnZpY2UgQXNzb2NpYXRpb24xHDAaBgNVBAMTE1Zpc2EgZUNvbW1l -cmNlIFJvb3QwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCvV95WHm6h -2mCxlCfLF9sHP4CFT8icttD0b0/Pmdjh28JIXDqsOTPHH2qLJj0rNfVIsZHBAk4E -lpF7sDPwsRROEW+1QK8bRaVK7362rPKgH1g/EkZgPI2h4H3PVz4zHvtH8aoVlwdV -ZqW1LS7YgFmypw23RuwhY/81q6UCzyr0TP579ZRdhE2o8mCP2w4lPJ9zcc+U30rq -299yOIzzlr3xF7zSujtFWsan9sYXiwGd/BmoKoMWuDpI/k4+oKsGGelT84ATB+0t -vz8KPFUgOSwsAGl0lUq8ILKpeeUYiZGo3BxN77t+Nwtd/jmliFKMAGzsGHxBvfaL -dXe6YJ2E5/4tAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQD -AgEGMB0GA1UdDgQWBBQVOIMPPyw/cDMezUb+B4wg4NfDtzANBgkqhkiG9w0BAQUF -AAOCAQEAX/FBfXxcCLkr4NWSR/pnXKUTwwMhmytMiUbPWU3J/qVAtmPN3XEolWcR -zCSs00Rsca4BIGsDoo8Ytyk6feUWYFN4PMCvFYP3j1IzJL1kk5fui/fbGKhtcbP3 -LBfQdCVp9/5rPJS+TUtBjE7ic9DjkCJzQ83z7+pzzkWKsKZJ/0x9nXGIxHYdkFsd -7v3M9+79YKWxehZx0RbQfBI8bGmX265fOZpwLwU8GUYEmSA20GBuYQa7FkKMcPcw -++DbZqMAAb3mLNqRX6BGi01qnD093QVG/na/oAo85ADmJ7f/hC3euiInlhBx6yLt -398znM/jra6O1I7mT1GvFpLgXPYHDw== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/WellsSecurePublicRootCertificateAuthority.crt b/test/rules/platform_certs/default/WellsSecurePublicRootCertificateAuthority.crt deleted file mode 100644 index b2bd715f7562..000000000000 --- a/test/rules/platform_certs/default/WellsSecurePublicRootCertificateAuthority.crt +++ /dev/null @@ -1,28 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEvTCCA6WgAwIBAgIBATANBgkqhkiG9w0BAQUFADCBhTELMAkGA1UEBhMCVVMx -IDAeBgNVBAoMF1dlbGxzIEZhcmdvIFdlbGxzU2VjdXJlMRwwGgYDVQQLDBNXZWxs -cyBGYXJnbyBCYW5rIE5BMTYwNAYDVQQDDC1XZWxsc1NlY3VyZSBQdWJsaWMgUm9v -dCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwHhcNMDcxMjEzMTcwNzU0WhcNMjIxMjE0 -MDAwNzU0WjCBhTELMAkGA1UEBhMCVVMxIDAeBgNVBAoMF1dlbGxzIEZhcmdvIFdl -bGxzU2VjdXJlMRwwGgYDVQQLDBNXZWxscyBGYXJnbyBCYW5rIE5BMTYwNAYDVQQD -DC1XZWxsc1NlY3VyZSBQdWJsaWMgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkw -ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDub7S9eeKPCCGeOARBJe+r -WxxTkqxtnt3CxC5FlAM1iGd0V+PfjLindo8796jE2yljDpFoNoqXjopxaAkH5OjU -Dk/41itMpBb570OYj7OeUt9tkTmPOL13i0Nj67eT/DBMHAGTthP796EfvyXhdDcs -HqRePGj4S78NuR4uNuip5Kf4D8uCdXw1LSLWwr8L87T8bJVhHlfXBIEyg1J55oNj -z7fLY4sR4r1e6/aN7ZVyKLSsEmLpSjPmgzKuBXWVvYSV2ypcm44uDLiBK0HmOFaf -SZtsdvqKXfcBeYF8wYNABf5x/Qw/zE5gCQ5lRxAvAcAFP4/4s0HvWkJ+We/Slwxl -AgMBAAGjggE0MIIBMDAPBgNVHRMBAf8EBTADAQH/MDkGA1UdHwQyMDAwLqAsoCqG -KGh0dHA6Ly9jcmwucGtpLndlbGxzZmFyZ28uY29tL3dzcHJjYS5jcmwwDgYDVR0P -AQH/BAQDAgHGMB0GA1UdDgQWBBQmlRkQ2eihl5H/3BnZtQQ+0nMKajCBsgYDVR0j -BIGqMIGngBQmlRkQ2eihl5H/3BnZtQQ+0nMKaqGBi6SBiDCBhTELMAkGA1UEBhMC -VVMxIDAeBgNVBAoMF1dlbGxzIEZhcmdvIFdlbGxzU2VjdXJlMRwwGgYDVQQLDBNX -ZWxscyBGYXJnbyBCYW5rIE5BMTYwNAYDVQQDDC1XZWxsc1NlY3VyZSBQdWJsaWMg -Um9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHmCAQEwDQYJKoZIhvcNAQEFBQADggEB -ALkVsUSRzCPIK0134/iaeycNzXK7mQDKfGYZUMbVmO2rvwNa5U3lHshPcZeG1eMd -/ZDJPHV3V3p9+N701NX3leZ0bh08rnyd2wIDBSxxSyU+B+NemvVmFymIGjifz6pB -A4SXa5M4esowRBskRDPQ5NHcKDj0E0M1NSljqHyita04pO2t/caaH/+Xc/77szWn -k4bGdpEA5qxRFsQnMlzbc9qlk1eOPm01JghZ1edE13YgY+esE2fDbbFwRnzVlhE9 -iW9dqKHrjQrawx0zbKPqZxmamX9LPYNRKh3KL4YMon4QLSvUFpULB6ouFJJJtylv -2G0xffX8oRAHh84vWdw+WNs= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/XRampGlobalCertificationAuthority.crt b/test/rules/platform_certs/default/XRampGlobalCertificationAuthority.crt deleted file mode 100644 index 537a44e1eb68..000000000000 --- a/test/rules/platform_certs/default/XRampGlobalCertificationAuthority.crt +++ /dev/null @@ -1,25 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEMDCCAxigAwIBAgIQUJRs7Bjq1ZxN1ZfvdY+grTANBgkqhkiG9w0BAQUFADCB -gjELMAkGA1UEBhMCVVMxHjAcBgNVBAsTFXd3dy54cmFtcHNlY3VyaXR5LmNvbTEk -MCIGA1UEChMbWFJhbXAgU2VjdXJpdHkgU2VydmljZXMgSW5jMS0wKwYDVQQDEyRY -UmFtcCBHbG9iYWwgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDQxMTAxMTcx -NDA0WhcNMzUwMTAxMDUzNzE5WjCBgjELMAkGA1UEBhMCVVMxHjAcBgNVBAsTFXd3 -dy54cmFtcHNlY3VyaXR5LmNvbTEkMCIGA1UEChMbWFJhbXAgU2VjdXJpdHkgU2Vy -dmljZXMgSW5jMS0wKwYDVQQDEyRYUmFtcCBHbG9iYWwgQ2VydGlmaWNhdGlvbiBB -dXRob3JpdHkwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCYJB69FbS6 -38eMpSe2OAtp87ZOqCwuIR1cRN8hXX4jdP5efrRKt6atH67gBhbim1vZZ3RrXYCP -KZ2GG9mcDZhtdhAoWORlsH9KmHmf4MMxfoArtYzAQDsRhtDLooY2YKTVMIJt2W7Q -DxIEM5dfT2Fa8OT5kavnHTu86M/0ay00fOJIYRyO82FEzG+gSqmUsE3a56k0enI4 -qEHMPJQRfevIpoy3hsvKMzvZPTeL+3o+hiznc9cKV6xkmxnr9A8ECIqsAxcZZPRa -JSKNNCyy9mgdEm3Tih4U2sSPpuIjhdV6Db1q4Ons7Be7QhtnqiXtRYMh/MHJfNVi -PvryxS3T/dRlAgMBAAGjgZ8wgZwwEwYJKwYBBAGCNxQCBAYeBABDAEEwCwYDVR0P -BAQDAgGGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFMZPoj0GY4QJnM5i5ASs -jVy16bYbMDYGA1UdHwQvMC0wK6ApoCeGJWh0dHA6Ly9jcmwueHJhbXBzZWN1cml0 -eS5jb20vWEdDQS5jcmwwEAYJKwYBBAGCNxUBBAMCAQEwDQYJKoZIhvcNAQEFBQAD -ggEBAJEVOQMBG2f7Shz5CmBbodpNl2L5JFMn14JkTpAuw0kbK5rc/Kh4ZzXxHfAR -vbdI4xD2Dd8/0sm2qlWkSLoC295ZLhVbO50WfUfXN+pfTXYSNrsf16GBBEYgoyxt -qZ4Bfj8pzgCT3/3JknOJiWSe5yvkHJEs0rnOfc5vMZnT5r7SHpDwCRR5XCOrTdLa -IR9NmXmd4c8nnxCbHIgNsIpkQTG4DmyQJKSbXHGPurt+HBvbaoAPIbzp26a3QPSy -i6mx5O+aGtA9aZnuqCij4Tyz8LIRnM98QObd50N9otg6tamN8jSZxNQQ4Qb9CYQQ -O+7ETPTsJ3xCwnR8gooJybQDJbw= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/a2c66da8.0 b/test/rules/platform_certs/default/a2c66da8.0 new file mode 120000 index 000000000000..5d5f80e33054 --- /dev/null +++ b/test/rules/platform_certs/default/a2c66da8.0 @@ -0,0 +1 @@ +cert090.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/a3418fda.0 b/test/rules/platform_certs/default/a3418fda.0 new file mode 120000 index 000000000000..b293d2f9656d --- /dev/null +++ b/test/rules/platform_certs/default/a3418fda.0 @@ -0,0 +1 @@ +cert129.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/a3896b44.0 b/test/rules/platform_certs/default/a3896b44.0 new file mode 120000 index 000000000000..6b9e3cee1364 --- /dev/null +++ b/test/rules/platform_certs/default/a3896b44.0 @@ -0,0 +1 @@ +cert015.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/a7605362.0 b/test/rules/platform_certs/default/a7605362.0 new file mode 120000 index 000000000000..80f821db43c6 --- /dev/null +++ b/test/rules/platform_certs/default/a7605362.0 @@ -0,0 +1 @@ +cert016.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/a7d2cf64.0 b/test/rules/platform_certs/default/a7d2cf64.0 new file mode 120000 index 000000000000..2f975bd5f8dc --- /dev/null +++ b/test/rules/platform_certs/default/a7d2cf64.0 @@ -0,0 +1 @@ +cert041.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/a81e292b.0 b/test/rules/platform_certs/default/a81e292b.0 new file mode 120000 index 000000000000..d59e7b0ac35d --- /dev/null +++ b/test/rules/platform_certs/default/a81e292b.0 @@ -0,0 +1 @@ +cert104.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/a94d09e5.0 b/test/rules/platform_certs/default/a94d09e5.0 new file mode 120000 index 000000000000..31b630c7c1ed --- /dev/null +++ b/test/rules/platform_certs/default/a94d09e5.0 @@ -0,0 +1 @@ +cert077.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/ab5346f4.0 b/test/rules/platform_certs/default/ab5346f4.0 new file mode 120000 index 000000000000..a569193e45b9 --- /dev/null +++ b/test/rules/platform_certs/default/ab5346f4.0 @@ -0,0 +1 @@ +cert049.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/ab59055e.0 b/test/rules/platform_certs/default/ab59055e.0 new file mode 120000 index 000000000000..dc215b21fff3 --- /dev/null +++ b/test/rules/platform_certs/default/ab59055e.0 @@ -0,0 +1 @@ +cert116.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/ad088e1d.0 b/test/rules/platform_certs/default/ad088e1d.0 new file mode 120000 index 000000000000..bc0f98e93038 --- /dev/null +++ b/test/rules/platform_certs/default/ad088e1d.0 @@ -0,0 +1 @@ +cert009.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/aeb67534.0 b/test/rules/platform_certs/default/aeb67534.0 new file mode 120000 index 000000000000..5b97615af165 --- /dev/null +++ b/test/rules/platform_certs/default/aeb67534.0 @@ -0,0 +1 @@ +cert066.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/aee5f10d.0 b/test/rules/platform_certs/default/aee5f10d.0 new file mode 120000 index 000000000000..b7bed8af659f --- /dev/null +++ b/test/rules/platform_certs/default/aee5f10d.0 @@ -0,0 +1 @@ +cert004.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/b0e59380.0 b/test/rules/platform_certs/default/b0e59380.0 new file mode 120000 index 000000000000..6d6bdec5e46b --- /dev/null +++ b/test/rules/platform_certs/default/b0e59380.0 @@ -0,0 +1 @@ +cert094.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/b0ed035a.0 b/test/rules/platform_certs/default/b0ed035a.0 new file mode 120000 index 000000000000..6c367fd21202 --- /dev/null +++ b/test/rules/platform_certs/default/b0ed035a.0 @@ -0,0 +1 @@ +cert078.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/b0f3e76e.0 b/test/rules/platform_certs/default/b0f3e76e.0 new file mode 120000 index 000000000000..bbd07385c8a6 --- /dev/null +++ b/test/rules/platform_certs/default/b0f3e76e.0 @@ -0,0 +1 @@ +cert001.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/b1159c4c.0 b/test/rules/platform_certs/default/b1159c4c.0 new file mode 120000 index 000000000000..1a4e06971594 --- /dev/null +++ b/test/rules/platform_certs/default/b1159c4c.0 @@ -0,0 +1 @@ +cert021.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/b1b8a7f3.0 b/test/rules/platform_certs/default/b1b8a7f3.0 new file mode 120000 index 000000000000..dfc09b96e7a1 --- /dev/null +++ b/test/rules/platform_certs/default/b1b8a7f3.0 @@ -0,0 +1 @@ +cert035.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/b204d74a.0 b/test/rules/platform_certs/default/b204d74a.0 new file mode 120000 index 000000000000..b71513fe981a --- /dev/null +++ b/test/rules/platform_certs/default/b204d74a.0 @@ -0,0 +1 @@ +cert029.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/b3fb433b.0 b/test/rules/platform_certs/default/b3fb433b.0 new file mode 120000 index 000000000000..ecbee746f069 --- /dev/null +++ b/test/rules/platform_certs/default/b3fb433b.0 @@ -0,0 +1 @@ +cert101.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/b66938e9.0 b/test/rules/platform_certs/default/b66938e9.0 new file mode 120000 index 000000000000..98e1e5456f37 --- /dev/null +++ b/test/rules/platform_certs/default/b66938e9.0 @@ -0,0 +1 @@ +cert031.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/b727005e.0 b/test/rules/platform_certs/default/b727005e.0 new file mode 120000 index 000000000000..78c8c289bffe --- /dev/null +++ b/test/rules/platform_certs/default/b727005e.0 @@ -0,0 +1 @@ +cert061.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/b74d2bd5.0 b/test/rules/platform_certs/default/b74d2bd5.0 new file mode 120000 index 000000000000..ac3fdcd6aae6 --- /dev/null +++ b/test/rules/platform_certs/default/b74d2bd5.0 @@ -0,0 +1 @@ +cert134.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/b7a5b843.0 b/test/rules/platform_certs/default/b7a5b843.0 new file mode 120000 index 000000000000..3c31427efb37 --- /dev/null +++ b/test/rules/platform_certs/default/b7a5b843.0 @@ -0,0 +1 @@ +cert064.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/b7db1890.0 b/test/rules/platform_certs/default/b7db1890.0 new file mode 120000 index 000000000000..3c31427efb37 --- /dev/null +++ b/test/rules/platform_certs/default/b7db1890.0 @@ -0,0 +1 @@ +cert064.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/b872f2b4.0 b/test/rules/platform_certs/default/b872f2b4.0 new file mode 120000 index 000000000000..ff9922e53b2d --- /dev/null +++ b/test/rules/platform_certs/default/b872f2b4.0 @@ -0,0 +1 @@ +cert082.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/b936d1c6.0 b/test/rules/platform_certs/default/b936d1c6.0 new file mode 120000 index 000000000000..b87664a35dce --- /dev/null +++ b/test/rules/platform_certs/default/b936d1c6.0 @@ -0,0 +1 @@ +cert109.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/ba89ed3b.0 b/test/rules/platform_certs/default/ba89ed3b.0 new file mode 120000 index 000000000000..214c9452624b --- /dev/null +++ b/test/rules/platform_certs/default/ba89ed3b.0 @@ -0,0 +1 @@ +cert042.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/bc3f2570.0 b/test/rules/platform_certs/default/bc3f2570.0 new file mode 120000 index 000000000000..04e7d30f51b2 --- /dev/null +++ b/test/rules/platform_certs/default/bc3f2570.0 @@ -0,0 +1 @@ +cert056.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/bd43e1dd.0 b/test/rules/platform_certs/default/bd43e1dd.0 new file mode 120000 index 000000000000..2a40c649daa9 --- /dev/null +++ b/test/rules/platform_certs/default/bd43e1dd.0 @@ -0,0 +1 @@ +cert137.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/bdacca6f.0 b/test/rules/platform_certs/default/bdacca6f.0 new file mode 120000 index 000000000000..98e1e5456f37 --- /dev/null +++ b/test/rules/platform_certs/default/bdacca6f.0 @@ -0,0 +1 @@ +cert031.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/bf64f35b.0 b/test/rules/platform_certs/default/bf64f35b.0 new file mode 120000 index 000000000000..b7c6ac77893d --- /dev/null +++ b/test/rules/platform_certs/default/bf64f35b.0 @@ -0,0 +1 @@ +cert007.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/c01cdfa2.0 b/test/rules/platform_certs/default/c01cdfa2.0 new file mode 120000 index 000000000000..f70c743200ef --- /dev/null +++ b/test/rules/platform_certs/default/c01cdfa2.0 @@ -0,0 +1 @@ +cert044.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/c01eb047.0 b/test/rules/platform_certs/default/c01eb047.0 new file mode 120000 index 000000000000..3b86526d9425 --- /dev/null +++ b/test/rules/platform_certs/default/c01eb047.0 @@ -0,0 +1 @@ +cert130.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/c089bbbd.0 b/test/rules/platform_certs/default/c089bbbd.0 new file mode 120000 index 000000000000..2f975bd5f8dc --- /dev/null +++ b/test/rules/platform_certs/default/c089bbbd.0 @@ -0,0 +1 @@ +cert041.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/c0ff1f52.0 b/test/rules/platform_certs/default/c0ff1f52.0 new file mode 120000 index 000000000000..48fb898242bc --- /dev/null +++ b/test/rules/platform_certs/default/c0ff1f52.0 @@ -0,0 +1 @@ +cert003.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/c28a8a30.0 b/test/rules/platform_certs/default/c28a8a30.0 new file mode 120000 index 000000000000..924725c67632 --- /dev/null +++ b/test/rules/platform_certs/default/c28a8a30.0 @@ -0,0 +1 @@ +cert074.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/c2c1704e.0 b/test/rules/platform_certs/default/c2c1704e.0 new file mode 120000 index 000000000000..5b20fc4c4385 --- /dev/null +++ b/test/rules/platform_certs/default/c2c1704e.0 @@ -0,0 +1 @@ +cert119.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/c47d9980.0 b/test/rules/platform_certs/default/c47d9980.0 new file mode 120000 index 000000000000..14745ca2234d --- /dev/null +++ b/test/rules/platform_certs/default/c47d9980.0 @@ -0,0 +1 @@ +cert054.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/c491639e.0 b/test/rules/platform_certs/default/c491639e.0 new file mode 120000 index 000000000000..f43f71de09a2 --- /dev/null +++ b/test/rules/platform_certs/default/c491639e.0 @@ -0,0 +1 @@ +cert087.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/c51c224c.0 b/test/rules/platform_certs/default/c51c224c.0 new file mode 120000 index 000000000000..077461e29492 --- /dev/null +++ b/test/rules/platform_certs/default/c51c224c.0 @@ -0,0 +1 @@ +cert069.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/c559d742.0 b/test/rules/platform_certs/default/c559d742.0 new file mode 120000 index 000000000000..d5f16f42cfce --- /dev/null +++ b/test/rules/platform_certs/default/c559d742.0 @@ -0,0 +1 @@ +cert127.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/c7e2a638.0 b/test/rules/platform_certs/default/c7e2a638.0 new file mode 120000 index 000000000000..ae5698946b79 --- /dev/null +++ b/test/rules/platform_certs/default/c7e2a638.0 @@ -0,0 +1 @@ +cert040.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/c907e29b.0 b/test/rules/platform_certs/default/c907e29b.0 new file mode 120000 index 000000000000..8270bf0a9083 --- /dev/null +++ b/test/rules/platform_certs/default/c907e29b.0 @@ -0,0 +1 @@ +cert114.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/c90bc37d.0 b/test/rules/platform_certs/default/c90bc37d.0 new file mode 120000 index 000000000000..20b6b56b9c5f --- /dev/null +++ b/test/rules/platform_certs/default/c90bc37d.0 @@ -0,0 +1 @@ +cert088.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/ca6e4ad9.0 b/test/rules/platform_certs/default/ca6e4ad9.0 new file mode 120000 index 000000000000..00871c6d7da0 --- /dev/null +++ b/test/rules/platform_certs/default/ca6e4ad9.0 @@ -0,0 +1 @@ +cert038.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/cb156124.0 b/test/rules/platform_certs/default/cb156124.0 new file mode 120000 index 000000000000..62897b262628 --- /dev/null +++ b/test/rules/platform_certs/default/cb156124.0 @@ -0,0 +1 @@ +cert080.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/cb1c3204.0 b/test/rules/platform_certs/default/cb1c3204.0 new file mode 120000 index 000000000000..2d41f6757f8c --- /dev/null +++ b/test/rules/platform_certs/default/cb1c3204.0 @@ -0,0 +1 @@ +cert105.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/cbf06781.0 b/test/rules/platform_certs/default/cbf06781.0 new file mode 120000 index 000000000000..04e7d30f51b2 --- /dev/null +++ b/test/rules/platform_certs/default/cbf06781.0 @@ -0,0 +1 @@ +cert056.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/cc450945.0 b/test/rules/platform_certs/default/cc450945.0 new file mode 120000 index 000000000000..4509178e43b6 --- /dev/null +++ b/test/rules/platform_certs/default/cc450945.0 @@ -0,0 +1 @@ +cert053.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/ccc52f49.0 b/test/rules/platform_certs/default/ccc52f49.0 new file mode 120000 index 000000000000..089e357b6505 --- /dev/null +++ b/test/rules/platform_certs/default/ccc52f49.0 @@ -0,0 +1 @@ +cert062.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/cd58d51e.0 b/test/rules/platform_certs/default/cd58d51e.0 new file mode 120000 index 000000000000..90c574c79ffc --- /dev/null +++ b/test/rules/platform_certs/default/cd58d51e.0 @@ -0,0 +1 @@ +cert065.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/cd8c0d63.0 b/test/rules/platform_certs/default/cd8c0d63.0 new file mode 120000 index 000000000000..b87664a35dce --- /dev/null +++ b/test/rules/platform_certs/default/cd8c0d63.0 @@ -0,0 +1 @@ +cert109.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/ce5e74ef.0 b/test/rules/platform_certs/default/ce5e74ef.0 new file mode 120000 index 000000000000..819e00043983 --- /dev/null +++ b/test/rules/platform_certs/default/ce5e74ef.0 @@ -0,0 +1 @@ +cert110.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/cert001.pem b/test/rules/platform_certs/default/cert001.pem new file mode 100644 index 000000000000..f6713f2a26f7 --- /dev/null +++ b/test/rules/platform_certs/default/cert001.pem @@ -0,0 +1,19 @@ +GlobalSign Root CA +-----BEGIN CERTIFICATE----- +MIIDdTCCAl2gAwIBAgILBAAAAAABFUtaw5QwDQYJKoZIhvcNAQEFBQAwVzELMAkGA1UEBhMCQkUx +GTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYtc2ExEDAOBgNVBAsTB1Jvb3QgQ0ExGzAZBgNVBAMTEkds +b2JhbFNpZ24gUm9vdCBDQTAeFw05ODA5MDExMjAwMDBaFw0yODAxMjgxMjAwMDBaMFcxCzAJBgNV +BAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMRAwDgYDVQQLEwdSb290IENBMRswGQYD +VQQDExJHbG9iYWxTaWduIFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDa +DuaZjc6j40+Kfvvxi4Mla+pIH/EqsLmVEQS98GPR4mdmzxzdzxtIK+6NiY6arymAZavpxy0Sy6sc +THAHoT0KMM0VjU/43dSMUBUc71DuxC73/OlS8pF94G3VNTCOXkNz8kHp1Wrjsok6Vjk4bwY8iGlb +Kk3Fp1S4bInMm/k8yuX9ifUSPJJ4ltbcdG6TRGHRjcdGsnUOhugZitVtbNV4FpWi6cgKOOvyJBNP +c1STE4U6G7weNLWLBYy5d4ux2x8gkasJU26Qzns3dLlwR5EiUWMWea6xrkEmCMgZK9FGqkjWZCrX +gzT/LCrBbBlDSgeF59N89iFo7+ryUp9/k5DPAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNV +HRMBAf8EBTADAQH/MB0GA1UdDgQWBBRge2YaRQ2XyolQL30EzTSo//z9SzANBgkqhkiG9w0BAQUF +AAOCAQEA1nPnfE920I2/7LqivjTFKDK1fPxsnCwrvQmeU79rXqoRSLblCKOzyj1hTdNGCbM+w6Dj +Y1Ub8rrvrTnhQ7k4o+YviiY776BQVvnGCv04zcQLcFGUl5gE38NflNUVyRRBnMRddWQVDf9VMOyG +j/8N7yy5Y0b2qvzfvGn9LhJIZJrglfCm7ymPAbEVtQwdpf5pLGkkeB6zpxxxYu7KyJesF12KwvhH +hm4qxFYxldBniYUr+WymXUadDKqC5JlR3XC321Y9YeRq4VzW9v493kHMB65jUr9TU/Qr6cf9tveC +X4XSQRjbgbMEHMUfpIBvFSDJ3gyICh3WZlXi/EjJKSZp4A== +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert002.pem b/test/rules/platform_certs/default/cert002.pem new file mode 100644 index 000000000000..546ef773ef6c --- /dev/null +++ b/test/rules/platform_certs/default/cert002.pem @@ -0,0 +1,20 @@ +GlobalSign Root CA - R2 +-----BEGIN CERTIFICATE----- +MIIDujCCAqKgAwIBAgILBAAAAAABD4Ym5g0wDQYJKoZIhvcNAQEFBQAwTDEgMB4GA1UECxMXR2xv +YmFsU2lnbiBSb290IENBIC0gUjIxEzARBgNVBAoTCkdsb2JhbFNpZ24xEzARBgNVBAMTCkdsb2Jh +bFNpZ24wHhcNMDYxMjE1MDgwMDAwWhcNMjExMjE1MDgwMDAwWjBMMSAwHgYDVQQLExdHbG9iYWxT +aWduIFJvb3QgQ0EgLSBSMjETMBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2ln +bjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKbPJA6+Lm8omUVCxKs+IVSbC9N/hHD6 +ErPLv4dfxn+G07IwXNb9rfF73OX4YJYJkhD10FPe+3t+c4isUoh7SqbKSaZeqKeMWhG8eoLrvozp +s6yWJQeXSpkqBy+0Hne/ig+1AnwblrjFuTosvNYSuetZfeLQBoZfXklqtTleiDTsvHgMCJiEbKjN +S7SgfQx5TfC4LcshytVsW33hoCmEofnTlEnLJGKRILzdC9XZzPnqJworc5HGnRusyMvo4KD0L5CL +TfuwNhv2GXqF4G3yYROIXJ/gkwpRl4pazq+r1feqCapgvdzZX99yqWATXgAByUr6P6TqBwMhAo6C +ygPCm48CAwEAAaOBnDCBmTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4E +FgQUm+IHV2ccHsBqBt5ZtJot39wZhi4wNgYDVR0fBC8wLTAroCmgJ4YlaHR0cDovL2NybC5nbG9i +YWxzaWduLm5ldC9yb290LXIyLmNybDAfBgNVHSMEGDAWgBSb4gdXZxwewGoG3lm0mi3f3BmGLjAN +BgkqhkiG9w0BAQUFAAOCAQEAmYFThxxol4aR7OBKuEQLq4GsJ0/WwbgcQ3izDJr86iw8bmEbTUsp +9Z8FHSbBuOmDAGJFtqkIk7mpM0sYmsL4h4hO291xNBrBVNpGP+DTKqttVCL1OmLNIG+6KYnX3ZHu +01yiPqFbQfXf5WRDLenVOavSot+3i9DAgBkcRcAtjOj4LaR0VknFBbVPFd5uRHg5h6h+u/N5GJG7 +9G+dwfCMNYxdAfvDbbnvRG15RjF+Cv6pgsH/76tuIMRQyV+dTZsXjAzlAcmgQWpzU/qlULRuJQ/7 +TBj0/VLZjmmx6BEP3ojY+x1J96relc8geMJgEtslQIxq/H5COEBkEveegeGTLg== +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert003.pem b/test/rules/platform_certs/default/cert003.pem new file mode 100644 index 000000000000..a0efb64ca419 --- /dev/null +++ b/test/rules/platform_certs/default/cert003.pem @@ -0,0 +1,22 @@ +Verisign Class 3 Public Primary Certification Authority - G3 +-----BEGIN CERTIFICATE----- +MIIEGjCCAwICEQCbfgZJoz5iudXukEhxKe9XMA0GCSqGSIb3DQEBBQUAMIHKMQswCQYDVQQGEwJV +UzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlTaWduIFRydXN0IE5ldHdv +cmsxOjA4BgNVBAsTMShjKSAxOTk5IFZlcmlTaWduLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNl +IG9ubHkxRTBDBgNVBAMTPFZlcmlTaWduIENsYXNzIDMgUHVibGljIFByaW1hcnkgQ2VydGlmaWNh +dGlvbiBBdXRob3JpdHkgLSBHMzAeFw05OTEwMDEwMDAwMDBaFw0zNjA3MTYyMzU5NTlaMIHKMQsw +CQYDVQQGEwJVUzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlTaWduIFRy +dXN0IE5ldHdvcmsxOjA4BgNVBAsTMShjKSAxOTk5IFZlcmlTaWduLCBJbmMuIC0gRm9yIGF1dGhv +cml6ZWQgdXNlIG9ubHkxRTBDBgNVBAMTPFZlcmlTaWduIENsYXNzIDMgUHVibGljIFByaW1hcnkg +Q2VydGlmaWNhdGlvbiBBdXRob3JpdHkgLSBHMzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC +ggEBAMu6nFL8eB8aHm8bN3O9+MlrlBIwT/A2R/XQkQr1F8ilYcEWQE37imGQ5XYgwREGfassbqb1 +EUGO+i2tKmFZpGcmTNDovFJbcCAEWNF6yaRpvIMXZK0Fi7zQWM6NjPXr8EJJC52XJ2cybuGukxUc +cLwgTS8Y3pKI6GyFVxEa6X7jJhFUokWWVYPKMIno3Nij7SqAP395ZVc+FSBmCC+Vk7+qRy+oRpfw +EuL+wgorUeZ25rdGt+INpsyow0xZVYnm6FNcHOqd8GIWC6fJXwzw3sJ2zq/3avL6QaaiMxTJ5Xpj +055iN9WFZZ4O5lMkdBteHRJTW8cs54NJOxWuimi5V5cCAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA +ERSWwauSCPc/L8my/uRan2Te2yFPhpk0djZX3dAVL8WtfxUfN2JzPtTnX84XA9s1+ivbrmAJXx5f +j267Cz3qWhMeDGBvtcC1IyIuBwvLqXTLR7sdwdela8wv0kL9Sd2nic9TutoAWii/gt/4uhMdUIaC +/Y4wjylGsB49Ndo4YhYYSq3mtlFs3q9i6wHQHiT+eo8SGhJouPtmmRQURVyu565pF4ErWjfJXir0 +xuKhXFSbplQAz/DxwceYMBo7Nhbbo27q/a2ywtrvAkcTisDxszGtTxzhT5yvDwyd93gN2PQ1VoDa +t20Xj50egWTh/sVFuq1ruQp6Tk9LhO5L8X3dEQ== +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert004.pem b/test/rules/platform_certs/default/cert004.pem new file mode 100644 index 000000000000..f06211fe06db --- /dev/null +++ b/test/rules/platform_certs/default/cert004.pem @@ -0,0 +1,22 @@ +Entrust.net Premium 2048 Secure Server CA +-----BEGIN CERTIFICATE----- +MIIEKjCCAxKgAwIBAgIEOGPe+DANBgkqhkiG9w0BAQUFADCBtDEUMBIGA1UEChMLRW50cnVzdC5u +ZXQxQDA+BgNVBAsUN3d3dy5lbnRydXN0Lm5ldC9DUFNfMjA0OCBpbmNvcnAuIGJ5IHJlZi4gKGxp +bWl0cyBsaWFiLikxJTAjBgNVBAsTHChjKSAxOTk5IEVudHJ1c3QubmV0IExpbWl0ZWQxMzAxBgNV +BAMTKkVudHJ1c3QubmV0IENlcnRpZmljYXRpb24gQXV0aG9yaXR5ICgyMDQ4KTAeFw05OTEyMjQx +NzUwNTFaFw0yOTA3MjQxNDE1MTJaMIG0MRQwEgYDVQQKEwtFbnRydXN0Lm5ldDFAMD4GA1UECxQ3 +d3d3LmVudHJ1c3QubmV0L0NQU18yMDQ4IGluY29ycC4gYnkgcmVmLiAobGltaXRzIGxpYWIuKTEl +MCMGA1UECxMcKGMpIDE5OTkgRW50cnVzdC5uZXQgTGltaXRlZDEzMDEGA1UEAxMqRW50cnVzdC5u +ZXQgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgKDIwNDgpMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A +MIIBCgKCAQEArU1LqRKGsuqjIAcVFmQqK0vRvwtKTY7tgHalZ7d4QMBzQshowNtTK91euHaYNZOL +Gp18EzoOH1u3Hs/lJBQesYGpjX24zGtLA/ECDNyrpUAkAH90lKGdCCmziAv1h3edVc3kw37XamSr +hRSGlVuXMlBvPci6Zgzj/L24ScF2iUkZ/cCovYmjZy/Gn7xxGWC4LeksyZB2ZnuU4q941mVTXTzW +nLLPKQP5L6RQstRIzgUyVYr9smRMDuSYB3Xbf9+5CFVghTAp+XtIpGmG4zU/HoZdenoVve8AjhUi +VBcAkCaTvA5JaJG/+EfTnZVCwQ5N328mz8MYIWJmQ3DW1cAH4QIDAQABo0IwQDAOBgNVHQ8BAf8E +BAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUVeSB0RGAvtiJuQijMfmhJAkWuXAwDQYJ +KoZIhvcNAQEFBQADggEBADubj1abMOdTmXx6eadNl9cZlZD7Bh/KM3xGY4+WZiT6QBshJ8rmcnPy +T/4xmf3IDExoU8aAghOY+rat2l098c5u9hURlIIM7j+VrxGrD9cv3h8Dj1csHsm7mhpElesYT6Yf +zX1XEC+bBAlahLVu2B064dae0Wx5XnkcFMXj0EyTO2U87d89vqbllRrDtRnDvV5bu/8j72gZyxKT +J1wDLW8w0B62GqzeWvfRqqgnpv55gcR5mTNXuhKwqeBCbJPKVt7+bYQLCIt+jerXmCHG8+c8eS9e +nNFMFY3h7CI3zJpDC5fcgJCNs2ebb0gIFVbPv/ErfF6adulZkMV8gzURZVE= +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert005.pem b/test/rules/platform_certs/default/cert005.pem new file mode 100644 index 000000000000..a9e4bcdd8c67 --- /dev/null +++ b/test/rules/platform_certs/default/cert005.pem @@ -0,0 +1,19 @@ +Baltimore CyberTrust Root +-----BEGIN CERTIFICATE----- +MIIDdzCCAl+gAwIBAgIEAgAAuTANBgkqhkiG9w0BAQUFADBaMQswCQYDVQQGEwJJRTESMBAGA1UE +ChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlCYWx0aW1vcmUgQ3li +ZXJUcnVzdCBSb290MB4XDTAwMDUxMjE4NDYwMFoXDTI1MDUxMjIzNTkwMFowWjELMAkGA1UEBhMC +SUUxEjAQBgNVBAoTCUJhbHRpbW9yZTETMBEGA1UECxMKQ3liZXJUcnVzdDEiMCAGA1UEAxMZQmFs +dGltb3JlIEN5YmVyVHJ1c3QgUm9vdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKME +uyKrmD1X6CZymrV51Cni4eiVgLGw41uOKymaZN+hXe2wCQVt2yguzmKiYv60iNoS6zjrIZ3AQSsB +UnuId9Mcj8e6uYi1agnnc+gRQKfRzMpijS3ljwumUNKoUMMo6vWrJYeKmpYcqWe4PwzV9/lSEy/C +G9VwcPCPwBLKBsua4dnKM3p31vjsufFoREJIE9LAwqSuXmD+tqYF/LTdB1kC1FkYmGP1pWPgkAx9 +XbIGevOF6uvUA65ehD5f/xXtabz5OTZydc93Uk3zyZAsuT3lySNTPx8kmCFcB5kpvcY67Oduhjpr +l3RjM71oGDHweI12v/yejl0qhqdNkNwnGjkCAwEAAaNFMEMwHQYDVR0OBBYEFOWdWTCCR1jMrPoI +VDaGezq1BE3wMBIGA1UdEwEB/wQIMAYBAf8CAQMwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEB +BQUAA4IBAQCFDF2O5G9RaEIFoN27TyclhAO992T9Ldcw46QQF+vaKSm2eT929hkTI7gQCvlYpNRh +cL0EYWoSihfVCr3FvDB81ukMJY2GQE/szKN+OMY3EU/t3WgxjkzSswF07r51XgdIGn9w/xZchMB5 +hbgF/X++ZRGjD8ACtPhSNzkE1akxehi/oCr0Epn3o0WC4zxe9Z2etciefC7IpJ5OCBRLbf1wbWsa +Y71k5h+3zvDyny67G7fyUIhzksLi4xaNmjICq44Y3ekQEe5+NauQrz4wlHrQMz2nZQ/1/I6eYs9H +RCwBXbsdtTLSR9I4LtD+gdwyah617jzV/OeBHRnDJELqYzmp +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert006.pem b/test/rules/platform_certs/default/cert006.pem new file mode 100644 index 000000000000..a8387e86a2f2 --- /dev/null +++ b/test/rules/platform_certs/default/cert006.pem @@ -0,0 +1,22 @@ +AddTrust External Root +-----BEGIN CERTIFICATE----- +MIIENjCCAx6gAwIBAgIBATANBgkqhkiG9w0BAQUFADBvMQswCQYDVQQGEwJTRTEUMBIGA1UEChML +QWRkVHJ1c3QgQUIxJjAkBgNVBAsTHUFkZFRydXN0IEV4dGVybmFsIFRUUCBOZXR3b3JrMSIwIAYD +VQQDExlBZGRUcnVzdCBFeHRlcm5hbCBDQSBSb290MB4XDTAwMDUzMDEwNDgzOFoXDTIwMDUzMDEw +NDgzOFowbzELMAkGA1UEBhMCU0UxFDASBgNVBAoTC0FkZFRydXN0IEFCMSYwJAYDVQQLEx1BZGRU +cnVzdCBFeHRlcm5hbCBUVFAgTmV0d29yazEiMCAGA1UEAxMZQWRkVHJ1c3QgRXh0ZXJuYWwgQ0Eg +Um9vdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALf3GjPm8gAELTngTlvtH7xsD821 ++iO2zt6bETOXpClMfZOfvUq8k+0DGuOPz+VtUFrWlymUWoCwSXrbLpX9uMq/NzgtHj6RQa1wVsfw +Tz/oMp50ysiQVOnGXw94nZpAPA6sYapeFI+eh6FqUNzXmk6vBbOmcZSccbNQYArHE504B4YCqOmo +aSYYkKtMsE8jqzpPhNjfzp/haW+710LXa0Tkx63ubUFfclpxCDezeWWkWaCUN/cALw3CknLa0Dhy +2xSoRcRdKn23tNbE7qzNE0S3ySvdQwAl+mG5aWpYIxG3pzOPVnVZ9c0p10a3CitlttNCbxWyuHv7 +7+ldU9U0WicCAwEAAaOB3DCB2TAdBgNVHQ4EFgQUrb2YejS0Jvf6xCZU7wO94CTLVBowCwYDVR0P +BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wgZkGA1UdIwSBkTCBjoAUrb2YejS0Jvf6xCZU7wO94CTL +VBqhc6RxMG8xCzAJBgNVBAYTAlNFMRQwEgYDVQQKEwtBZGRUcnVzdCBBQjEmMCQGA1UECxMdQWRk +VHJ1c3QgRXh0ZXJuYWwgVFRQIE5ldHdvcmsxIjAgBgNVBAMTGUFkZFRydXN0IEV4dGVybmFsIENB +IFJvb3SCAQEwDQYJKoZIhvcNAQEFBQADggEBALCb4IUlwtYj4g+WBpKdQZic2YR5gdkeWxQHIzZl +j7DYd7usQWxHYINRsPkyPef89iYTx4AWpb9a/IfPeHmJIZriTAcKhjW88t5RxNKWt9x+Tu5w/Rw5 +6wwCURQtjr0W4MHfRnXnJK3s9EK0hZNwEGe6nQY1ShjTK3rMUUKhemPR5ruhxSvCNr4TDea9Y355 +e6cJDUCrat2PisP29owaQgVR1EX1n6diIWgVIEM8med8vSTYqZEXc4g/VhsxOBi0cQ+azcgOno4u +G+GMmIPLHzHxREzGBHNJdmAPx/i9F4BrLunMTA5amnkPIAou1Z5jJh5VkpTYghdae9C8x49OhgQ= +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert007.pem b/test/rules/platform_certs/default/cert007.pem new file mode 100644 index 000000000000..fe45da183c92 --- /dev/null +++ b/test/rules/platform_certs/default/cert007.pem @@ -0,0 +1,24 @@ +Entrust Root Certification Authority +-----BEGIN CERTIFICATE----- +MIIEkTCCA3mgAwIBAgIERWtQVDANBgkqhkiG9w0BAQUFADCBsDELMAkGA1UEBhMCVVMxFjAUBgNV +BAoTDUVudHJ1c3QsIEluYy4xOTA3BgNVBAsTMHd3dy5lbnRydXN0Lm5ldC9DUFMgaXMgaW5jb3Jw +b3JhdGVkIGJ5IHJlZmVyZW5jZTEfMB0GA1UECxMWKGMpIDIwMDYgRW50cnVzdCwgSW5jLjEtMCsG +A1UEAxMkRW50cnVzdCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTA2MTEyNzIwMjM0 +MloXDTI2MTEyNzIwNTM0MlowgbAxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1FbnRydXN0LCBJbmMu +MTkwNwYDVQQLEzB3d3cuZW50cnVzdC5uZXQvQ1BTIGlzIGluY29ycG9yYXRlZCBieSByZWZlcmVu +Y2UxHzAdBgNVBAsTFihjKSAyMDA2IEVudHJ1c3QsIEluYy4xLTArBgNVBAMTJEVudHJ1c3QgUm9v +dCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB +ALaVtkNC+sZtKm9I35RMOVcF7sN5EUFoNu3s/poBj6E4KPz3EEZmLk0eGrEaTsbRwJWIsMn/MYsz +A9u3g3s+IIRe7bJWKKf44LlAcTfFy0cOlypowCKVYhXbR9n10Cv/gkvJrT7eTNuQgFA/CYqEAOww +Cj0Yzfv9KlmaI5UXLEWeH25DeW0MXJj+SKfFI0dcXv1u5x609mhF0YaDW6KKjbHjKYD+JXGIrb68 +j6xSlkuqUY3kEzEZ6E5Nn9uss2rVvDlUccp6en+Q3X0dgNmBu1kmwhH+5pPi94DkZfs0Nw4pgHBN +rziGLp5/V6+eF67rHMsoIV+2HNjnogQi+dPa2MsCAwEAAaOBsDCBrTAOBgNVHQ8BAf8EBAMCAQYw +DwYDVR0TAQH/BAUwAwEB/zArBgNVHRAEJDAigA8yMDA2MTEyNzIwMjM0MlqBDzIwMjYxMTI3MjA1 +MzQyWjAfBgNVHSMEGDAWgBRokORnpKZTgMeGZqTx90tD+4S9bTAdBgNVHQ4EFgQUaJDkZ6SmU4DH +hmak8fdLQ/uEvW0wHQYJKoZIhvZ9B0EABBAwDhsIVjcuMTo0LjADAgSQMA0GCSqGSIb3DQEBBQUA +A4IBAQCT1DCw1wMgKtD5Y+iRDAUgqV8ZyntyTtSx29CW+1RaGSwMCPeyvIWonX9tO1KzKtvn1ISM +Y/YPyyYBkVBs9F8U4pN0wBOeMDpQ47RgxRzwIkSNcUesyBrJ6ZuaAGAT/3B+XxFNSRuzFVJ7yVTa +v52Vr2ua2J7p8eRDjeIRRDq/r72DQnNSi6q7pynP9WQcCk3RvKqsnyrQ/39/2n3qse0wJcGE2jTS +W3iDVuycNsMm4hH2Z0kdkquM++v/eu6FSqdQgPCnXEqULl8FmTxSQeDNtGPPAUO6nIPcj2A781q0 +tHuu2guQOHXvgR1m0vdXcDazv/wor3ElhVsT/h5/WrQ8 +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert008.pem b/test/rules/platform_certs/default/cert008.pem new file mode 100644 index 000000000000..f3d39d9e1421 --- /dev/null +++ b/test/rules/platform_certs/default/cert008.pem @@ -0,0 +1,19 @@ +GeoTrust Global CA +-----BEGIN CERTIFICATE----- +MIIDVDCCAjygAwIBAgIDAjRWMA0GCSqGSIb3DQEBBQUAMEIxCzAJBgNVBAYTAlVTMRYwFAYDVQQK +Ew1HZW9UcnVzdCBJbmMuMRswGQYDVQQDExJHZW9UcnVzdCBHbG9iYWwgQ0EwHhcNMDIwNTIxMDQw +MDAwWhcNMjIwNTIxMDQwMDAwWjBCMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNR2VvVHJ1c3QgSW5j +LjEbMBkGA1UEAxMSR2VvVHJ1c3QgR2xvYmFsIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB +CgKCAQEA2swYYzD99BcjGlZ+W988bDjkcbd4kdS8odhM+KhDtgPpTSEHCIjaWC9mOSm9BXiLnTjo +BbdqfnGk5sRgprDvgOSJKA+eJdbtg/OtppHHmMlCGDUUna2YRpIuT8rxh0PBFpVXLVDviS2Aelet +8u5fa9IAjbkU+BQVNdnARqN7csiRv8lVK83Qlz6cJmTM386DGXHKTubU1XupGc1V3sjs0l44U+Vc +T4wt/lAjNvxm5suOpDkZALeVAjmRCw7+OC7RHQWa9k0+bw8HHa8sHo9gOeL6NlMTOdReJivbPagU +vTLrGAMoUgRx5aszPeE4uwc2hGKceeoWMPRfwCvocWvk+QIDAQABo1MwUTAPBgNVHRMBAf8EBTAD +AQH/MB0GA1UdDgQWBBTAephojYn7qwVkDBF9qn1luMrMTjAfBgNVHSMEGDAWgBTAephojYn7qwVk +DBF9qn1luMrMTjANBgkqhkiG9w0BAQUFAAOCAQEANeMpauUvXVSOKVCUn5kaFOSPeCpilKInZ57Q +zxpeR+nBsqTP3UEaBU6bS+5Kb1VSsyShNwrrZHYqLizz/Tt1kL/6cdjHPTfStQWVYrmm3ok9Nns4 +d0iXrKYgjy6myQzCsplFAMfOEVEiIuCl6rYVSAlk6l5PdPcFPseKUgzbFbS9bZvlxrFUaKnjaZC2 +mqUPuLk/IH2uSrW4nOQdtqvmlKXBx4Ot2/Unhw4EbNX/3aBd7YdStysVAq45pmp06drE57xNNB6p +XE0zX5IJL4hmXXeXxx12E6nV5fEWCRE11azbJHFwLJhWC9kXtNHjUStedejV0NxPNO3CBWaAocvm +Mw== +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert009.pem b/test/rules/platform_certs/default/cert009.pem new file mode 100644 index 000000000000..199c0cc31e49 --- /dev/null +++ b/test/rules/platform_certs/default/cert009.pem @@ -0,0 +1,28 @@ +GeoTrust Universal CA +-----BEGIN CERTIFICATE----- +MIIFaDCCA1CgAwIBAgIBATANBgkqhkiG9w0BAQUFADBFMQswCQYDVQQGEwJVUzEWMBQGA1UEChMN +R2VvVHJ1c3QgSW5jLjEeMBwGA1UEAxMVR2VvVHJ1c3QgVW5pdmVyc2FsIENBMB4XDTA0MDMwNDA1 +MDAwMFoXDTI5MDMwNDA1MDAwMFowRTELMAkGA1UEBhMCVVMxFjAUBgNVBAoTDUdlb1RydXN0IElu +Yy4xHjAcBgNVBAMTFUdlb1RydXN0IFVuaXZlcnNhbCBDQTCCAiIwDQYJKoZIhvcNAQEBBQADggIP +ADCCAgoCggIBAKYVVaCjxuAfjJ0hUNfBvitbtaSeodlyWL0AG0y/YckUHUWCq8YdgNY96xCcOq9t +JPi8cQGeBvV8Xx7BDlXKg5pZMK4ZyzBIle0iN430SppyZj6tlcDgFgDgEB8rMQ7XlFTTQjOgNB0e +RXbdT8oYN+yFFXoZCPzVx5zw8qkuEKmS5j1YPakWaDwvdSEYfyh3peFhF7em6fgemdtzbvQKoiFs +7tqqhZJmr/Z6a4LauiIINQ/PQvE1+mrufislzDoR5G2vc7J2Ha3QsnhnGqQ5HFELZ1aD/ThdDc7d +8Lsrlh/eezJS/R27tQahsiFepdaVaH/wmZ7cRQg+59IJDTWU3YBOU5fXtQlEIGQWFwMCTFMNaN7V +qnJNk22CDtucvc+081xdVHppCZbW2xHBjXWotM85yM48vCR85mLK4b19p71XZQvk/iXttmkQ3Cga +Rr0BHdCXteGYO8A3ZNY9lO4L4fUorgtWv3GLIylBjobFS1J72HGrH4oVpjuDWtdYAVHGTEHZf9hB +Z3KiKN9gg6meyHv8U3NyWfWTehd2Ds735VzZC1U0oqpbtWpU5xPKV+yXbfReBi9Fi1jUIxaS5BZu +KGNZMN9QAZxjiRqf2xeUgnA3wySemkfWWspOqGmJch+RbNt+nhutxx9z3SxPGWX9f5NAEC7S8O08 +ni4oPmkmM8V7AgMBAAGjYzBhMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFNq7LqqwDLiIJlF0 +XG0D08DYj3rWMB8GA1UdIwQYMBaAFNq7LqqwDLiIJlF0XG0D08DYj3rWMA4GA1UdDwEB/wQEAwIB +hjANBgkqhkiG9w0BAQUFAAOCAgEAMXjmx7XfuJRAyXHEqDXsRh3ChfMoWIawC/yOsjmPRFWrZIRc +aanQmjg8+uUfNeVE44B5lGiku8SfPeE0zTBGi1QrlaXv9z+ZhP015s8xxtxqv6fXIwjhmF7DWgh2 +qaavdy+3YL1ERmrvl/9zlcGO6JP7/TG37FcREUWbMPEaiDnBTzynANXH/KttgCJwpQzgXQQpAvvL +oJHRfNbDflDVnVi+QTjruXU8FdmbyUqDWcDaU/0zuzYYm4UPFd3uLax2k7nZAY1IEKj79TiG8dsK +xr2EoyNB3tZ3b4XUhRxQ4K5RirqNPnbiucon8l+f725ZDQbYKxek0nxru18UGkiPGkzns0ccjkxF +KyDuSN/n3QmOGKjaQI2SJhFTYXNd673nxE0pN2HrrDktZy4W1vUAg4WhzH92xH3kt0tm7wNFYGm2 +DFKWkoRepqO1pD4r2czYG0eq8kTaT/kD6PAUyz/zg97QwVTjt+gKN02LIFkDMBmhLMi9ER/frslK +xfMnZmaGrGiR/9nmUxwPi1xpZQomyB40w11Re9epnAahNt3ViZS82eQtDF4JbAiXfKM9fJP/P6EU +p8+1Xevb2xzEdt+Iub1FBZUbrvxGakyvSOPOrg/SfuvmbJxPgWp6ZKy7PtXny3YuxadIwVyQD8vI +P/rmMuGNG2+k5o7Y+SlIis5z/iw= +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert010.pem b/test/rules/platform_certs/default/cert010.pem new file mode 100644 index 000000000000..38210db06c9b --- /dev/null +++ b/test/rules/platform_certs/default/cert010.pem @@ -0,0 +1,28 @@ +GeoTrust Universal CA 2 +-----BEGIN CERTIFICATE----- +MIIFbDCCA1SgAwIBAgIBATANBgkqhkiG9w0BAQUFADBHMQswCQYDVQQGEwJVUzEWMBQGA1UEChMN +R2VvVHJ1c3QgSW5jLjEgMB4GA1UEAxMXR2VvVHJ1c3QgVW5pdmVyc2FsIENBIDIwHhcNMDQwMzA0 +MDUwMDAwWhcNMjkwMzA0MDUwMDAwWjBHMQswCQYDVQQGEwJVUzEWMBQGA1UEChMNR2VvVHJ1c3Qg +SW5jLjEgMB4GA1UEAxMXR2VvVHJ1c3QgVW5pdmVyc2FsIENBIDIwggIiMA0GCSqGSIb3DQEBAQUA +A4ICDwAwggIKAoICAQCzVFLByT7y2dyxUxpZKeexw0Uo5dfR7cXFS6GqdHtXr0om/Nj1XqduGdt0 +DE81WzILAePb63p3NeqqWuDW6KFXlPCQo3RWlEQwAx5cTiuFJnSCegx2oG9NzkEtoBUGFF+3Qs17 +j1hhNNwqCPkuwwGmIkQcTAeC5lvO0Ep8BNMZcyfwqph/Lq9O64ceJHdqXbboW0W63MOhBW9Wjo8Q +JqVJwy7XQYci4E+GymC16qFjwAGXEHm9ADwSbSsVsaxLse4YuU6W3Nx2/zu+z18DwPw76L5GG//a +QMJS9/7jOvdqdzXQ2o3rXhhqMcceujwbKNZrVMaqW9eiLBsZzKIC9ptZvTdrhrVtgrrY6slWvKk2 +WP0+GfPtDCapkzj4T8FdIgbQl+rhrcZV4IErKIM6+vR7IVEAvlI4zs1meaj0gVbi0IMJR1FbUGrP +20gaXT73y/Zl92zxlfgCOzJWgjl6W70viRu/obTo/3+NjN8D8WBOWBFM66M/ECuDmgFz2ZRthAAn +ZqzwcEAJQpKtT5MNYQlRJNiS1QuUYbKHsu3/mjX/hVTK7URDrBs8FmtISgocQIgfksILAAX/8sgC +SqSqqcyZlpwvWOB94b67B9xfBHJcMTTD7F8t4D1kkCLm0ey4Lt1ZrtmhN79UNdxzMk+MBB4zsslG +8dhcyFVQyWi9qLo2CQIDAQABo2MwYTAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBR281Xh+qQ2 ++/CfXGJx7Tz0RzgQKzAfBgNVHSMEGDAWgBR281Xh+qQ2+/CfXGJx7Tz0RzgQKzAOBgNVHQ8BAf8E +BAMCAYYwDQYJKoZIhvcNAQEFBQADggIBAGbBxiPz2eAubl/oz66wsCVNK/g7WJtAJDday6sWSf+z +dXkzoS9tcBc0kf5nfo/sm+VegqlVHy/c1FEHEv6sFj4sNcZj/NwQ6w2jqtB8zNHQL1EuxBRa3ugZ +4T7GzKQp5y6EqgYweHZUcyiYWTjgAA1i00J9IZ+uPTqM1fp3DRgrFg5fNuH8KrUwJM/gYwx7WBr+ +mbpCErGR9Hxo4sjoryzqyX6uuyo9DRXcNJW2GHSoag/HtPQTxORb7QrSpJdMKu0vbBKJPfEncKpq +A1Ihn0CoZ1Dy81of398j9tx4TuaYT1U6U+Pv8vSfx3zYWK8pIpe44L2RLrB27FcRz+8pRPPphXpg +Y+RdM4kX2TGq2tbzGDVyz4crL2MjhF2EjD9XoIj8mZEoJmmZ1I+XRL6O1UixpCgp8RW04eWe3fiP +pm8m1wk8OhwRDqZsN/etRIcsKMfYdIKz0G9KV7s1KSegi+ghp4dkNl3M2Basx7InQJJVOCiNUW7d +FGdTbHFcJoRNdVq2fmBWqU2t+5sel/MN2dKXVHfaPRK34B7vCAas+YWH6aLcr34YEoP9VhdBLtUp +gn2Z9DH2canPLAEnpQW5qrJITirvn5NSUZU8UnOOVkwXQMAJKOSLakhT2+zNVVXxxvjpoixMptEm +X36vWkzaH6byHCx+rgIW0lbQL1dTR+iS +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert011.pem b/test/rules/platform_certs/default/cert011.pem new file mode 100644 index 000000000000..4bf6108424c9 --- /dev/null +++ b/test/rules/platform_certs/default/cert011.pem @@ -0,0 +1,22 @@ +Comodo AAA Services root +-----BEGIN CERTIFICATE----- +MIIEMjCCAxqgAwIBAgIBATANBgkqhkiG9w0BAQUFADB7MQswCQYDVQQGEwJHQjEbMBkGA1UECAwS +R3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHDAdTYWxmb3JkMRowGAYDVQQKDBFDb21vZG8gQ0Eg +TGltaXRlZDEhMB8GA1UEAwwYQUFBIENlcnRpZmljYXRlIFNlcnZpY2VzMB4XDTA0MDEwMTAwMDAw +MFoXDTI4MTIzMTIzNTk1OVowezELMAkGA1UEBhMCR0IxGzAZBgNVBAgMEkdyZWF0ZXIgTWFuY2hl +c3RlcjEQMA4GA1UEBwwHU2FsZm9yZDEaMBgGA1UECgwRQ29tb2RvIENBIExpbWl0ZWQxITAfBgNV +BAMMGEFBQSBDZXJ0aWZpY2F0ZSBTZXJ2aWNlczCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC +ggEBAL5AnfRu4ep2hxxNRUSOvkbIgwadwSr+GB+O5AL686tdUIoWMQuaBtDFcCLNSS1UY8y2bmhG +C1Pqy0wkwLxyTurxFa70VJoSCsN6sjNg4tqJVfMiWPPe3M/vg4aijJRPn2jymJBGhCfHdr/jzDUs +i14HZGWCwEiwqJH5YZ92IFCokcdmtet4YgNW8IoaE+oxox6gmf049vYnMlhvB/VruPsUK6+3qszW +Y19zjNoFmag4qMsXeDZRrOme9Hg6jc8P2ULimAyrL58OAd7vn5lJ8S3frHRNG5i1R8XlKdH5kBjH +Ypy+g8cmez6KJcfA3Z3mNWgQIJ2P2N7Sw4ScDV7oL8kCAwEAAaOBwDCBvTAdBgNVHQ4EFgQUoBEK +Iz6W8Qfs4q8p74Klf9AwpLQwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wewYDVR0f +BHQwcjA4oDagNIYyaHR0cDovL2NybC5jb21vZG9jYS5jb20vQUFBQ2VydGlmaWNhdGVTZXJ2aWNl +cy5jcmwwNqA0oDKGMGh0dHA6Ly9jcmwuY29tb2RvLm5ldC9BQUFDZXJ0aWZpY2F0ZVNlcnZpY2Vz +LmNybDANBgkqhkiG9w0BAQUFAAOCAQEACFb8AvCb6P+k+tZ7xkSAzk/ExfYAWMymtrwUSWgEdujm +7l3sAg9g1o1QGE8mTgHj5rCl7r+8dFRBv/38ErjHT1r0iWAFf2C3BUrz9vHCv8S5dIa2LX1rzNLz +Rt0vxuBqw8M0Ayx9lt1awg6nCpnBBYurDC/zXDrPbDdVCYfeU0BsWO/8tqtlbgT2G9w84FoVxp7Z +8VlIMCFlA2zs6SFz7JsDoeA3raAVGI/6ugLOpyypEBMs1OUIJqsil2D4kF501KKaU73yqWjgom7C +12yxow+ev+to51byrvLjKzg6CYG1a4XXvi3tPxq3smPi9WIsgtRqAEFQ8TmDn5XpNpaYbg== +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert012.pem b/test/rules/platform_certs/default/cert012.pem new file mode 100644 index 000000000000..80203eb2fe06 --- /dev/null +++ b/test/rules/platform_certs/default/cert012.pem @@ -0,0 +1,30 @@ +QuoVadis Root CA +-----BEGIN CERTIFICATE----- +MIIF0DCCBLigAwIBAgIEOrZQizANBgkqhkiG9w0BAQUFADB/MQswCQYDVQQGEwJCTTEZMBcGA1UE +ChMQUXVvVmFkaXMgTGltaXRlZDElMCMGA1UECxMcUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0 +eTEuMCwGA1UEAxMlUXVvVmFkaXMgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wMTAz +MTkxODMzMzNaFw0yMTAzMTcxODMzMzNaMH8xCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRp +cyBMaW1pdGVkMSUwIwYDVQQLExxSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MS4wLAYDVQQD +EyVRdW9WYWRpcyBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIIBIjANBgkqhkiG9w0BAQEF +AAOCAQ8AMIIBCgKCAQEAv2G1lVO6V/z68mcLOhrfEYBklbTRvM16z/Ypli4kVEAkOPcahdxYTMuk +J0KX0J+DisPkBgNbAKVRHnAEdOLB1Dqr1607BxgFjv2DrOpm2RgbaIr1VxqYuvXtdj182d6UajtL +F8HVj71lODqV0D1VNk7feVcxKh7YWWVJWCCYfqtffp/p1k3sg3Spx2zY7ilKhSoGFPlU5tPaZQeL +YzcS19Dsw3sgQUSj7cugF+FxZc4dZjH3dgEZyH0DWLaVSR2mEiboxgx24ONmy+pdpibu5cxfvWen +AScOospUxbF6lR1xHkopigPcakXBpBlebzbNw6Kwt/5cOOJSvPhEQ+aQuwIDAQABo4ICUjCCAk4w +PQYIKwYBBQUHAQEEMTAvMC0GCCsGAQUFBzABhiFodHRwczovL29jc3AucXVvdmFkaXNvZmZzaG9y +ZS5jb20wDwYDVR0TAQH/BAUwAwEB/zCCARoGA1UdIASCAREwggENMIIBCQYJKwYBBAG+WAABMIH7 +MIHUBggrBgEFBQcCAjCBxxqBxFJlbGlhbmNlIG9uIHRoZSBRdW9WYWRpcyBSb290IENlcnRpZmlj +YXRlIGJ5IGFueSBwYXJ0eSBhc3N1bWVzIGFjY2VwdGFuY2Ugb2YgdGhlIHRoZW4gYXBwbGljYWJs +ZSBzdGFuZGFyZCB0ZXJtcyBhbmQgY29uZGl0aW9ucyBvZiB1c2UsIGNlcnRpZmljYXRpb24gcHJh +Y3RpY2VzLCBhbmQgdGhlIFF1b1ZhZGlzIENlcnRpZmljYXRlIFBvbGljeS4wIgYIKwYBBQUHAgEW +Fmh0dHA6Ly93d3cucXVvdmFkaXMuYm0wHQYDVR0OBBYEFItLbe3TKbkGGew5Oanwl4Rqy+/fMIGu +BgNVHSMEgaYwgaOAFItLbe3TKbkGGew5Oanwl4Rqy+/foYGEpIGBMH8xCzAJBgNVBAYTAkJNMRkw +FwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMSUwIwYDVQQLExxSb290IENlcnRpZmljYXRpb24gQXV0 +aG9yaXR5MS4wLAYDVQQDEyVRdW9WYWRpcyBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5ggQ6 +tlCLMA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQUFAAOCAQEAitQUtf70mpKnGdSkfnIYj9lo +fFIk3WdvOXrEql494liwTXCYhGHoG+NpGA7O+0dQoE7/8CQfvbLO9Sf87C9TqnN7Az10buYWnuul +LsS/VidQK2K6vkscPFVcQR0kvoIgR13VRH56FmjffU1RcHhXHTMe/QKZnAzNCgVPx7uOpHX6Sm2x +gI4JVrmcGmD+XcHXetwReNDWXcG31a0ymQM6isxUJTkxgXsTIlG6Rmyhu576BGxJJnSP0nPrzDCi +5upZIof4l/UO/erMkqQWxFIY6iHOsfHmhIHluqmGKPJDWl0Snawe2ajlCmqnf6CHKc/yiU3U7MXi +5nrQNiOKSnQ2+Q== +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert013.pem b/test/rules/platform_certs/default/cert013.pem new file mode 100644 index 000000000000..47f65009b98c --- /dev/null +++ b/test/rules/platform_certs/default/cert013.pem @@ -0,0 +1,29 @@ +QuoVadis Root CA 2 +-----BEGIN CERTIFICATE----- +MIIFtzCCA5+gAwIBAgICBQkwDQYJKoZIhvcNAQEFBQAwRTELMAkGA1UEBhMCQk0xGTAXBgNVBAoT +EFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMTElF1b1ZhZGlzIFJvb3QgQ0EgMjAeFw0wNjExMjQx +ODI3MDBaFw0zMTExMjQxODIzMzNaMEUxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBM +aW1pdGVkMRswGQYDVQQDExJRdW9WYWRpcyBSb290IENBIDIwggIiMA0GCSqGSIb3DQEBAQUAA4IC +DwAwggIKAoICAQCaGMpLlA0ALa8DKYrwD4HIrkwZhR0In6spRIXzL4GtMh6QRr+jhiYaHv5+HBg6 +XJxgFyo6dIMzMH1hVBHL7avg5tKifvVrbxi3Cgst/ek+7wrGsxDp3MJGF/hd/aTa/55JWpzmM+Yk +lvc/ulsrHHo1wtZn/qtmUIttKGAr79dgw8eTvI02kfN/+NsRE8Scd3bBrrcCaoF6qUWD4gXmuVbB +lDePSHFjIuwXZQeVikvfj8ZaCuWw419eaxGrDPmF60Tp+ARz8un+XJiM9XOva7R+zdRcAitMOeGy +lZUtQofX1bOQQ7dsE/He3fbE+Ik/0XX1ksOR1YqI0JDs3G3eicJlcZaLDQP9nL9bFqyS2+r+eXyt +66/3FsvbzSUr5R/7mp/iUcw6UwxI5g69ybR2BlLmEROFcmMDBOAENisgGQLodKcftslWZvB1Jdxn +wQ5hYIizPtGo/KPaHbDRsSNU30R2be1B2MGyIrZTHN81Hdyhdyox5C315eXbyOD/5YDXC2Og/zOh +D7osFRXql7PSorW+8oyWHhqPHWykYTe5hnMz15eWniN9gqRMgeKh0bpnX5UHoycR7hYQe7xFSkyy +BNKr79X9DFHOUGoIMfmR2gyPZFwDwzqLID9ujWc9Otb+fVuIyV77zGHcizN300QyNQliBJIWENie +J0f7OyHj+OsdWwIDAQABo4GwMIGtMA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0PBAQDAgEGMB0GA1Ud +DgQWBBQahGK8SEwzJQTU7tD2A8QZRtGUazBuBgNVHSMEZzBlgBQahGK8SEwzJQTU7tD2A8QZRtGU +a6FJpEcwRTELMAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMT +ElF1b1ZhZGlzIFJvb3QgQ0EgMoICBQkwDQYJKoZIhvcNAQEFBQADggIBAD4KFk2fBluornFdLwUv +Z+YTRYPENvbzwCYMDbVHZF34tHLJRqUDGCdViXh9duqWNIAXINzng/iN/Ae42l9NLmeyhP3ZRPx3 +UIHmfLTJDQtyU/h2BwdBR5YM++CCJpNVjP4iH2BlfF/nJrP3MpCYUNQ3cVX2kiF495V5+vgtJodm +VjB3pjd4M1IQWK4/YY7yarHvGH5KWWPKjaJW1acvvFYfzznB4vsKqBUsfU16Y8Zsl0Q80m/DShcK ++JDSV6IZUaUtl0HaB0+pUNqQjZRG4T7wlP0QADj1O+hA4bRuVhogzG9Yje0uRY/W6ZM/57Es3zrW +IozchLsib9D45MY56QSIPMO661V6bYCZJPVsAfv4l7CUW+v90m/xd2gNNWQjrLhVoQPRTUIZ3Ph1 +WVaj+ahJefivDrkRoHy3au000LYmYjgahwz46P0u05B/B5EqHdZ+XIWDmbA4CD/pXvk1B+TJYm5X +f6dQlfe6yJvmjqIBxdZmv3lh8zwc4bmCXF2gw+nYSL0ZohEUGW6yhhtoPkg3Goi3XZZenMfvJ2II +4pEZXNLxId26F0KCl3GBUzGpn/Z9Yr9y4aOTHcyKJloJONDO1w2AFrR4pTqHTI2KpdVGl/IsELm8 +VCLAAVBpQ570su9t+Oza8eOx79+Rj1QqCyXBJhnEUhAFZdWCEOrCMc0u +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert014.pem b/test/rules/platform_certs/default/cert014.pem new file mode 100644 index 000000000000..e5e47cf8150e --- /dev/null +++ b/test/rules/platform_certs/default/cert014.pem @@ -0,0 +1,33 @@ +QuoVadis Root CA 3 +-----BEGIN CERTIFICATE----- +MIIGnTCCBIWgAwIBAgICBcYwDQYJKoZIhvcNAQEFBQAwRTELMAkGA1UEBhMCQk0xGTAXBgNVBAoT +EFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMTElF1b1ZhZGlzIFJvb3QgQ0EgMzAeFw0wNjExMjQx +OTExMjNaFw0zMTExMjQxOTA2NDRaMEUxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBM +aW1pdGVkMRswGQYDVQQDExJRdW9WYWRpcyBSb290IENBIDMwggIiMA0GCSqGSIb3DQEBAQUAA4IC +DwAwggIKAoICAQDMV0IWVJzmmNPTTe7+7cefQzlKZbPoFog02w1ZkXTPkrgEQK0CSzGrvI2RaNgg +DhoB4hp7Thdd4oq3P5kazethq8Jlph+3t723j/z9cI8LoGe+AaJZz3HmDyl2/7FWeUUrH556VOij +KTVopAFPD6QuN+8bv+OPEKhyq1hX51SGyMnzW9os2l2ObjyjPtr7guXd8lyyBTNvijbO0BNO/79K +DDRMpsMhvVAEVeuxu537RR5kFd5VAYwCdrXLoT9CabwvvWhDFlaJKjdhkf2mrk7AyxRllDdLkgbv +BNDInIjbC3uBr7E9KsRlOni27tyAsdLTmZw67mtaa7ONt9XOnMK+pUsvFrGeaDsGb659n/je7Mwp +p5ijJUMv7/FfJuGITfhebtfZFG4ZM2mnO4SJk8RTVROhUXhA+LjJou57ulJCg54U7QVSWllWp5f8 +nT8KKdjcT5EOE7zelaTfi5m+rJsziO+1ga8bxiJTyPbH7pcUsMV8eFLI8M5ud2CEpukqdiDtWAEX +MJPpGovgc2PZapKUSU60rUqFxKMiMPwJ7Wgic6aIDFUhWMXhOp8q3crhkODZc6tsgLjoC2SToJyM +Gf+z0gzskSaHirOi4XCPLArlzW1oUevaPwV/izLmE1xr/l9A4iLItLRkT9a6fUg+qGkM17uGcclz +uD87nSVL2v9A6wIDAQABo4IBlTCCAZEwDwYDVR0TAQH/BAUwAwEB/zCB4QYDVR0gBIHZMIHWMIHT +BgkrBgEEAb5YAAMwgcUwgZMGCCsGAQUFBwICMIGGGoGDQW55IHVzZSBvZiB0aGlzIENlcnRpZmlj +YXRlIGNvbnN0aXR1dGVzIGFjY2VwdGFuY2Ugb2YgdGhlIFF1b1ZhZGlzIFJvb3QgQ0EgMyBDZXJ0 +aWZpY2F0ZSBQb2xpY3kgLyBDZXJ0aWZpY2F0aW9uIFByYWN0aWNlIFN0YXRlbWVudC4wLQYIKwYB +BQUHAgEWIWh0dHA6Ly93d3cucXVvdmFkaXNnbG9iYWwuY29tL2NwczALBgNVHQ8EBAMCAQYwHQYD +VR0OBBYEFPLAE+CCQz777i9nMpY1XNu4ywLQMG4GA1UdIwRnMGWAFPLAE+CCQz777i9nMpY1XNu4 +ywLQoUmkRzBFMQswCQYDVQQGEwJCTTEZMBcGA1UEChMQUXVvVmFkaXMgTGltaXRlZDEbMBkGA1UE +AxMSUXVvVmFkaXMgUm9vdCBDQSAzggIFxjANBgkqhkiG9w0BAQUFAAOCAgEAT62gLEz6wPJv92ZV +qyM07ucp2sNbtrCD2dDQ4iH782CnO11gUyeim/YIIirnv6By5ZwkajGxkHon24QRiSemd1o417+s +hvzuXYO8BsbRd2sPbSQvS3pspweWyuOEn62Iix2rFo1bZhfZFvSLgNLd+LJ2w/w4E6oM3kJpK27z +POuAJ9v1pkQNn1pVWQvVDVJIxa6f8i+AxeoyUDUSly7B4f/xI4hROJ/yZlZ25w9Rl6VSDE1JUZU2 +Pb+iSwwQHYaZTKrzchGT5Or2m9qoXadNt54CrnMAyNojA+j56hl0YgCUyyIgvpSnWbWCar6ZeXqp +8kokUvd0/bpO5qgdAm6xDYBEwa7TIzdfu4V8K5Iu6H6li92Z4b8nby1dqnuH/grdS/yO9SbkbnBC +bjPsMZ57k8HkyWkaPcBrTiJt7qtYTcbQQcEr6k8Sh17rRdhs9ZgC06DYVYoGmRmioHfRMJ6szHXu +g/WwYjnPbFfiTNKRCw51KBuav/0aQ/HKd/s7j2G4aSgWQgRecCocIdiP4b0jWy10QJLZYxkNc91p +vGJHvOB0K7Lrfb5BG7XARsWhIstfTsEokt4YutUqKLsRixeTmJlglFwjz1onl14LBQaTNx47aTbr +qZ5hHY8y2o4M1nQ+ewkk2gF3R8Q7zTSMmfXK4SVhM7JZG+Ju1zdXtg2pEto= +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert015.pem b/test/rules/platform_certs/default/cert015.pem new file mode 100644 index 000000000000..15b78a463515 --- /dev/null +++ b/test/rules/platform_certs/default/cert015.pem @@ -0,0 +1,19 @@ +Security Communication Root CA +-----BEGIN CERTIFICATE----- +MIIDWjCCAkKgAwIBAgIBADANBgkqhkiG9w0BAQUFADBQMQswCQYDVQQGEwJKUDEYMBYGA1UEChMP +U0VDT00gVHJ1c3QubmV0MScwJQYDVQQLEx5TZWN1cml0eSBDb21tdW5pY2F0aW9uIFJvb3RDQTEw +HhcNMDMwOTMwMDQyMDQ5WhcNMjMwOTMwMDQyMDQ5WjBQMQswCQYDVQQGEwJKUDEYMBYGA1UEChMP +U0VDT00gVHJ1c3QubmV0MScwJQYDVQQLEx5TZWN1cml0eSBDb21tdW5pY2F0aW9uIFJvb3RDQTEw +ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCzs/5/022x7xZ8V6UMbXaKL0u/ZPtM7orw +8yl89f/uKuDp6bpbZCKamm8sOiZpUQWZJtzVHGpxxpp9Hp3dfGzGjGdnSj74cbAZJ6kJDKaVv0uM +DPpVmDvY6CKhS3E4eayXkmmziX7qIWgGmBSWh9JhNrxtJ1aeV+7AwFb9Ms+k2Y7CI9eNqPPYJayX +5HA49LY6tJ07lyZDo6G8SVlyTCMwhwFY9k6+HGhWZq/NQV3Is00qVUarH9oe4kA92819uZKAnDfd +DJZkndwi92SL32HeFZRSFaB9UslLqCHJxrHty8OVYNEP8Ktw+N/LTX7s1vqr2b1/VPKl6Xn62dZ2 +JChzAgMBAAGjPzA9MB0GA1UdDgQWBBSgc0mZaNyFW2XjmygvV5+9M7wHSDALBgNVHQ8EBAMCAQYw +DwYDVR0TAQH/BAUwAwEB/zANBgkqhkiG9w0BAQUFAAOCAQEAaECpqLvkT115swW1F7NgE+vGkl3g +0dNq/vu+m22/xwVtWSDEHPC32oRYAmP6SBbvT6UL90qY8j+eG61Ha2POCEfrUj94nK9NrvjVT8+a +mCoQQTlSxN3Zmw7vkwGusi7KaEIkQmywszo+zenaSMQVy+n5Bw+SUEmK3TGXX8npN6o7WWWXlDLJ +s58+OmJYxUmtYg5xpTKqL8aJdkNAExNnPaJUJRDL8Try2frbSVa7pv6nQTXD4IhhyYjH3zYQIphZ +6rBK+1YWc26sTfcioU+tHXotRSflMMFe8toTyyVCUZVHA4xsIcx0Qu1T/zOLjw9XARYvz6buyXAi +FL39vmwLAw== +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert016.pem b/test/rules/platform_certs/default/cert016.pem new file mode 100644 index 000000000000..141e435e5842 --- /dev/null +++ b/test/rules/platform_certs/default/cert016.pem @@ -0,0 +1,18 @@ +Sonera Class 2 Root CA +-----BEGIN CERTIFICATE----- +MIIDIDCCAgigAwIBAgIBHTANBgkqhkiG9w0BAQUFADA5MQswCQYDVQQGEwJGSTEPMA0GA1UEChMG +U29uZXJhMRkwFwYDVQQDExBTb25lcmEgQ2xhc3MyIENBMB4XDTAxMDQwNjA3Mjk0MFoXDTIxMDQw +NjA3Mjk0MFowOTELMAkGA1UEBhMCRkkxDzANBgNVBAoTBlNvbmVyYTEZMBcGA1UEAxMQU29uZXJh +IENsYXNzMiBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJAXSjWdyvANlsdE+hY3 +/Ei9vX+ALTU74W+oZ6m/AxxNjG8yR9VBaKQTBME1DJqEQ/xcHf+Js+gXGM2RX/uJ4+q/Tl18GybT +dXnt5oTjV+WtKcT0OijnpXuENmmz/V52vaMtmdOQTiMofRhj8VQ7Jp12W5dCsv+u8E7s3TmVToMG +f+dJQMjFAbJUWmYdPfz56TwKnoG4cPABi+QjVHzIrviQHgCWctRUz2EjvOr7nQKV0ba5cTppCD8P +tOFCx4j1P5iop7oc4HFx71hXgVB6XGt0Rg6DA5jDjqhu8nYybieDwnPz3BjotJPqdURrBGAgcVeH +nfO+oJAjPYok4doh28MCAwEAAaMzMDEwDwYDVR0TAQH/BAUwAwEB/zARBgNVHQ4ECgQISqCqWITT +XjwwCwYDVR0PBAQDAgEGMA0GCSqGSIb3DQEBBQUAA4IBAQBazof5FnIVV0sd2ZvnoiYw7JNn39Yt +0jSv9zilzqsWuasvfDXLrNAPtEwr/IDva4yRXzZ299uzGxnq9LIR/WFxRL8oszodv7ND6J+/3DEI +cbCdjdY0RzKQxmUk96BKfARzjzlvF4xytb1LyHr4e4PDKE6cCepnP7JnBBvDFNr450kkkdAdavph +Oe9r5yF1BgfYErQhIHBCcYHaPJo2vqZbDWpsmh+Re/n570K6Tk6ezAyNlNzZRZxe7EJQY670XcSx +EtzKO6gunRRaBXW37Ndj4ro1tgQIkejanZz2ZrUYrAqmVCY0M9IbwdR/GjqOC6oybtv8TyWf2TLH +llpwrN9M +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert017.pem b/test/rules/platform_certs/default/cert017.pem new file mode 100644 index 000000000000..16d5486f7ec9 --- /dev/null +++ b/test/rules/platform_certs/default/cert017.pem @@ -0,0 +1,22 @@ +XRamp Global CA Root +-----BEGIN CERTIFICATE----- +MIIEMDCCAxigAwIBAgIQUJRs7Bjq1ZxN1ZfvdY+grTANBgkqhkiG9w0BAQUFADCBgjELMAkGA1UE +BhMCVVMxHjAcBgNVBAsTFXd3dy54cmFtcHNlY3VyaXR5LmNvbTEkMCIGA1UEChMbWFJhbXAgU2Vj +dXJpdHkgU2VydmljZXMgSW5jMS0wKwYDVQQDEyRYUmFtcCBHbG9iYWwgQ2VydGlmaWNhdGlvbiBB +dXRob3JpdHkwHhcNMDQxMTAxMTcxNDA0WhcNMzUwMTAxMDUzNzE5WjCBgjELMAkGA1UEBhMCVVMx +HjAcBgNVBAsTFXd3dy54cmFtcHNlY3VyaXR5LmNvbTEkMCIGA1UEChMbWFJhbXAgU2VjdXJpdHkg +U2VydmljZXMgSW5jMS0wKwYDVQQDEyRYUmFtcCBHbG9iYWwgQ2VydGlmaWNhdGlvbiBBdXRob3Jp +dHkwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCYJB69FbS638eMpSe2OAtp87ZOqCwu +IR1cRN8hXX4jdP5efrRKt6atH67gBhbim1vZZ3RrXYCPKZ2GG9mcDZhtdhAoWORlsH9KmHmf4MMx +foArtYzAQDsRhtDLooY2YKTVMIJt2W7QDxIEM5dfT2Fa8OT5kavnHTu86M/0ay00fOJIYRyO82FE +zG+gSqmUsE3a56k0enI4qEHMPJQRfevIpoy3hsvKMzvZPTeL+3o+hiznc9cKV6xkmxnr9A8ECIqs +AxcZZPRaJSKNNCyy9mgdEm3Tih4U2sSPpuIjhdV6Db1q4Ons7Be7QhtnqiXtRYMh/MHJfNViPvry +xS3T/dRlAgMBAAGjgZ8wgZwwEwYJKwYBBAGCNxQCBAYeBABDAEEwCwYDVR0PBAQDAgGGMA8GA1Ud +EwEB/wQFMAMBAf8wHQYDVR0OBBYEFMZPoj0GY4QJnM5i5ASsjVy16bYbMDYGA1UdHwQvMC0wK6Ap +oCeGJWh0dHA6Ly9jcmwueHJhbXBzZWN1cml0eS5jb20vWEdDQS5jcmwwEAYJKwYBBAGCNxUBBAMC +AQEwDQYJKoZIhvcNAQEFBQADggEBAJEVOQMBG2f7Shz5CmBbodpNl2L5JFMn14JkTpAuw0kbK5rc +/Kh4ZzXxHfARvbdI4xD2Dd8/0sm2qlWkSLoC295ZLhVbO50WfUfXN+pfTXYSNrsf16GBBEYgoyxt +qZ4Bfj8pzgCT3/3JknOJiWSe5yvkHJEs0rnOfc5vMZnT5r7SHpDwCRR5XCOrTdLaIR9NmXmd4c8n +nxCbHIgNsIpkQTG4DmyQJKSbXHGPurt+HBvbaoAPIbzp26a3QPSyi6mx5O+aGtA9aZnuqCij4Tyz +8LIRnM98QObd50N9otg6tamN8jSZxNQQ4Qb9CYQQO+7ETPTsJ3xCwnR8gooJybQDJbw= +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert018.pem b/test/rules/platform_certs/default/cert018.pem new file mode 100644 index 000000000000..7adada8b3ffd --- /dev/null +++ b/test/rules/platform_certs/default/cert018.pem @@ -0,0 +1,22 @@ +Go Daddy Class 2 CA +-----BEGIN CERTIFICATE----- +MIIEADCCAuigAwIBAgIBADANBgkqhkiG9w0BAQUFADBjMQswCQYDVQQGEwJVUzEhMB8GA1UEChMY +VGhlIEdvIERhZGR5IEdyb3VwLCBJbmMuMTEwLwYDVQQLEyhHbyBEYWRkeSBDbGFzcyAyIENlcnRp +ZmljYXRpb24gQXV0aG9yaXR5MB4XDTA0MDYyOTE3MDYyMFoXDTM0MDYyOTE3MDYyMFowYzELMAkG +A1UEBhMCVVMxITAfBgNVBAoTGFRoZSBHbyBEYWRkeSBHcm91cCwgSW5jLjExMC8GA1UECxMoR28g +RGFkZHkgQ2xhc3MgMiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCASAwDQYJKoZIhvcNAQEBBQAD +ggENADCCAQgCggEBAN6d1+pXGEmhW+vXX0iG6r7d/+TvZxz0ZWizV3GgXne77ZtJ6XCAPVYYYwhv +2vLM0D9/AlQiVBDYsoHUwHU9S3/Hd8M+eKsaA7Ugay9qK7HFiH7Eux6wwdhFJ2+qN1j3hybX2C32 +qRe3H3I2TqYXP2WYktsqbl2i/ojgC95/5Y0V4evLOtXiEqITLdiOr18SPaAIBQi2XKVlOARFmR6j +YGB0xUGlcmIbYsUfb18aQr4CUWWoriMYavx4A6lNf4DD+qta/KFApMoZFv6yyO9ecw3ud72a9nmY +vLEHZ6IVDd2gWMZEewo+YihfukEHU1jPEX44dMX4/7VpkI+EdOqXG68CAQOjgcAwgb0wHQYDVR0O +BBYEFNLEsNKR1EwRcbNhyz2h/t2oatTjMIGNBgNVHSMEgYUwgYKAFNLEsNKR1EwRcbNhyz2h/t2o +atTjoWekZTBjMQswCQYDVQQGEwJVUzEhMB8GA1UEChMYVGhlIEdvIERhZGR5IEdyb3VwLCBJbmMu +MTEwLwYDVQQLEyhHbyBEYWRkeSBDbGFzcyAyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5ggEAMAwG +A1UdEwQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBADJL87LKPpH8EsahB4yOd6AzBhRckB4Y9wim +PQoZ+YeAEW5p5JYXMP80kWNyOO7MHAGjHZQopDH2esRU1/blMVgDoszOYtuURXO1v0XJJLXVggKt +I3lpjbi2Tc7PTMozI+gciKqdi0FuFskg5YmezTvacPd+mSYgFFQlq25zheabIZ0KbIIOqPjCDPoQ +HmyW74cNxA9hi63ugyuV+I6ShHI56yDqg+2DzZduCLzrTia2cyvk0/ZM/iZx4mERdEr/VxqHD3VI +Ls9RaRegAhJhldXRQLIQTO7ErBBDpqWeCtWVYpoNz4iCxTIM5CufReYNnyicsbkqWletNw+vHX/b +vZ8= +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert019.pem b/test/rules/platform_certs/default/cert019.pem new file mode 100644 index 000000000000..52679e74119b --- /dev/null +++ b/test/rules/platform_certs/default/cert019.pem @@ -0,0 +1,22 @@ +Starfield Class 2 CA +-----BEGIN CERTIFICATE----- +MIIEDzCCAvegAwIBAgIBADANBgkqhkiG9w0BAQUFADBoMQswCQYDVQQGEwJVUzElMCMGA1UEChMc +U3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjEyMDAGA1UECxMpU3RhcmZpZWxkIENsYXNzIDIg +Q2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDQwNjI5MTczOTE2WhcNMzQwNjI5MTczOTE2WjBo +MQswCQYDVQQGEwJVUzElMCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjEyMDAG +A1UECxMpU3RhcmZpZWxkIENsYXNzIDIgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwggEgMA0GCSqG +SIb3DQEBAQUAA4IBDQAwggEIAoIBAQC3Msj+6XGmBIWtDBFk385N78gDGIc/oav7PKaf8MOh2tTY +bitTkPskpD6E8J7oX+zlJ0T1KKY/e97gKvDIr1MvnsoFAZMej2YcOadN+lq2cwQlZut3f+dZxkqZ +JRRU6ybH838Z1TBwj6+wRir/resp7defqgSHo9T5iaU0X9tDkYI22WY8sbi5gv2cOj4QyDvvBmVm +epsZGD3/cVE8MC5fvj13c7JdBmzDI1aaK4UmkhynArPkPw2vCHmCuDY96pzTNbO8acr1zJ3o/WSN +F4Azbl5KXZnJHoe0nRrA1W4TNSNe35tfPe/W93bC6j67eA0cQmdrBNj41tpvi/JEoAGrAgEDo4HF +MIHCMB0GA1UdDgQWBBS/X7fRzt0fhvRbVazc1xDCDqmI5zCBkgYDVR0jBIGKMIGHgBS/X7fRzt0f +hvRbVazc1xDCDqmI56FspGowaDELMAkGA1UEBhMCVVMxJTAjBgNVBAoTHFN0YXJmaWVsZCBUZWNo +bm9sb2dpZXMsIEluYy4xMjAwBgNVBAsTKVN0YXJmaWVsZCBDbGFzcyAyIENlcnRpZmljYXRpb24g +QXV0aG9yaXR5ggEAMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBAAWdP4id0ckaVaGs +afPzWdqbAYcaT1epoXkJKtv3L7IezMdeatiDh6GX70k1PncGQVhiv45YuApnP+yz3SFmH8lU+nLM +PUxA2IGvd56Deruix/U0F47ZEUD0/CwqTRV/p2JdLiXTAAsgGh1o+Re49L2L7ShZ3U0WixeDyLJl +xy16paq8U4Zt3VekyvggQQto8PT7dL5WXXp59fkdheMtlb71cZBDzI0fmgAKhynpVSJYACPq4xJD +KVtHCN2MQWplBqjlIapBtJUhlbl90TSrE9atvNziPTnNvT51cKEYWQPJIrSPnNVeKtelttQKbfi3 +QBFGmh95DmK/D5fs4C8fF5Q= +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert020.pem b/test/rules/platform_certs/default/cert020.pem new file mode 100644 index 000000000000..b81665fff7f8 --- /dev/null +++ b/test/rules/platform_certs/default/cert020.pem @@ -0,0 +1,28 @@ +Taiwan GRCA +-----BEGIN CERTIFICATE----- +MIIFcjCCA1qgAwIBAgIQH51ZWtcvwgZEpYAIaeNe9jANBgkqhkiG9w0BAQUFADA/MQswCQYDVQQG +EwJUVzEwMC4GA1UECgwnR292ZXJubWVudCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4X +DTAyMTIwNTEzMjMzM1oXDTMyMTIwNTEzMjMzM1owPzELMAkGA1UEBhMCVFcxMDAuBgNVBAoMJ0dv +dmVybm1lbnQgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCAiIwDQYJKoZIhvcNAQEBBQAD +ggIPADCCAgoCggIBAJoluOzMonWoe/fOW1mKydGGEghU7Jzy50b2iPN86aXfTEc2pBsBHH8eV4qN +w8XRIePaJD9IK/ufLqGU5ywck9G/GwGHU5nOp/UKIXZ3/6m3xnOUT0b3EEk3+qhZSV1qgQdW8or5 +BtD3cCJNtLdBuTK4sfCxw5w/cP1T3YGq2GN49thTbqGsaoQkclSGxtKyyhwOeYHWtXBiCAEuTk8O +1RGvqa/lmr/czIdtJuTJV6L7lvnM4T9TjGxMfptTCAtsF/tnyMKtsc2AtJfcdgEWFelq16TheEfO +htX7MfP6Mb40qij7cEwdScevLJ1tZqa2jWR+tSBqnTuBto9AAGdLiYa4zGX+FVPpBMHWXx1E1wov +J5pGfaENda1UhhXcSTvxls4Pm6Dso3pdvtUqdULle96ltqqvKKyskKw4t9VoNSZ63Pc78/1Fm9G7 +Q3hub/FCVGqY8A2tl+lSXunVanLeavcbYBT0peS2cWeqH+riTcFCQP5nRhc4L0c/cZyu5SHKYS1t +B6iEfC3uUSXxY5Ce/eFXiGvviiNtsea9P63RPZYLhY3Naye7twWb7LuRqQoHEgKXTiCQ8P8NHuJB +O9NAOueNXdpm5AKwB1KYXA6OM5zCppX7VRluTI6uSw+9wThNXo+EHWbNxWCWtFJaBYmOlXqYwZE8 +lSOyDvR5tMl8wUohAgMBAAGjajBoMB0GA1UdDgQWBBTMzO/MKWCkO7GStjz6MmKPrCUVOzAMBgNV +HRMEBTADAQH/MDkGBGcqBwAEMTAvMC0CAQAwCQYFKw4DAhoFADAHBgVnKgMAAAQUA5vwIhP/lSg2 +09yewDL7MTqKUWUwDQYJKoZIhvcNAQEFBQADggIBAECASvomyc5eMN1PhnR2WPWus4MzeKR6dBcZ +TulStbngCnRiqmjKeKBMmo4sIy7VahIkv9Ro04rQ2JyftB8M3jh+Vzj8jeJPXgyfqzvS/3WXy6Tj +Zwj/5cAWtUgBfen5Cv8b5Wppv3ghqMKnI6mGq3ZW6A4M9hPdKmaKZEk9GhiHkASfQlK3T8v+R0F2 +Ne//AHY2RTKbxkaFXeIksB7jSJaYV0eUVXoPQbFEJPPB/hprv4j9wabak2BegUqZIJxIZhm1AHlU +D7gsL0u8qV1bYH+Mh6XgUmMqvtg7hUAV/h62ZT/FS9p+tXo1KaMuephgIqP0fSdOLeq0dDzpD6Qz +DxARvBMB1uUO07+1EqLhRSPAzAhuYbeJq4PjJB7mXQfnHyA+z2fI56wwbSdLaG5LKlwCCDTb+Hbk +Z6MmnD+iMsJKxYEYMRBWqoTvLQr/uB930r+lWKBi5NdLkXWNiYCYfm3LU05er/ayl4WXudpVBrkk +7tfGOB5jGxI7leFYrPLfhNVfmS8NVVvmONsuP3LpSIXLuykTjx44VbnzssQwmSNOXfJIoRIM3BKQ +CZBUkQM8R+XVyWXgt0t97EfTsws+rZ7QdAAO671RrcDeLMDDav7v3Aun+kbfYNucpllQdSNpc5Oy ++fwC00fmcc4QAu4njIT/rEUNE1yDMuAlpYYsfPQS +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert021.pem b/test/rules/platform_certs/default/cert021.pem new file mode 100644 index 000000000000..95f5124c7c93 --- /dev/null +++ b/test/rules/platform_certs/default/cert021.pem @@ -0,0 +1,20 @@ +DigiCert Assured ID Root CA +-----BEGIN CERTIFICATE----- +MIIDtzCCAp+gAwIBAgIQDOfg5RfYRv6P5WD8G/AwOTANBgkqhkiG9w0BAQUFADBlMQswCQYDVQQG +EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSQw +IgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgQ0EwHhcNMDYxMTEwMDAwMDAwWhcNMzEx +MTEwMDAwMDAwWjBlMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQL +ExB3d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgQ0Ew +ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCtDhXO5EOAXLGH87dg+XESpa7cJpSIqvTO +9SA5KFhgDPiA2qkVlTJhPLWxKISKityfCgyDF3qPkKyK53lTXDGEKvYPmDI2dsze3Tyoou9q+yHy +UmHfnyDXH+Kx2f4YZNISW1/5WBg1vEfNoTb5a3/UsDg+wRvDjDPZ2C8Y/igPs6eD1sNuRMBhNZYW +/lmci3Zt1/GiSw0r/wty2p5g0I6QNcZ4VYcgoc/lbQrISXwxmDNsIumH0DJaoroTghHtORedmTpy +oeb6pNnVFzF1roV9Iq4/AUaG9ih5yLHa5FcXxH4cDrC0kqZWs72yl+2qp/C3xag/lRbQ/6GW6whf +GHdPAgMBAAGjYzBhMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRF +66Kv9JLLgjEtUYunpyGd823IDzAfBgNVHSMEGDAWgBRF66Kv9JLLgjEtUYunpyGd823IDzANBgkq +hkiG9w0BAQUFAAOCAQEAog683+Lt8ONyc3pklL/3cmbYMuRCdWKuh+vy1dneVrOfzM4UKLkNl2Bc +EkxY5NM9g0lFWJc1aRqoR+pWxnmrEthngYTffwk8lOa4JiwgvT2zKIn3X/8i4peEH+ll74fg38Fn +SbNd67IJKusm7Xi+fT8r87cmNW1fiQG2SVufAQWbqz0lwcy2f8Lxb4bG+mRo64EtlOtCt/qMHt1i +8b5QZ7dsvfPxH2sMNgcWfzd8qVttevESRmCD1ycEvkvOl77DZypoEd+A5wwzZr8TDRRu838fYxAe ++o0bJW1sj6W3YQGx0qMmoRBxna3iw/nDmVG3KwcIzi7mULKn+gpFL6Lw8g== +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert022.pem b/test/rules/platform_certs/default/cert022.pem new file mode 100644 index 000000000000..838107962066 --- /dev/null +++ b/test/rules/platform_certs/default/cert022.pem @@ -0,0 +1,20 @@ +DigiCert Global Root CA +-----BEGIN CERTIFICATE----- +MIIDrzCCApegAwIBAgIQCDvgVpBCRrGhdWrJWZHHSjANBgkqhkiG9w0BAQUFADBhMQswCQYDVQQG +EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw +HgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBDQTAeFw0wNjExMTAwMDAwMDBaFw0zMTExMTAw +MDAwMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3 +dy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IENBMIIBIjANBgkq +hkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4jvhEXLeqKTTo1eqUKKPC3eQyaKl7hLOllsBCSDMAZOn +TjC3U/dDxGkAV53ijSLdhwZAAIEJzs4bg7/fzTtxRuLWZscFs3YnFo97nh6Vfe63SKMI2tavegw5 +BmV/Sl0fvBf4q77uKNd0f3p4mVmFaG5cIzJLv07A6Fpt43C/dxC//AH2hdmoRBBYMql1GNXRor5H +4idq9Joz+EkIYIvUX7Q6hL+hqkpMfT7PT19sdl6gSzeRntwi5m3OFBqOasv+zbMUZBfHWymeMr/y +7vrTC0LUq7dBMtoM1O/4gdW7jVg/tRvoSSiicNoxBN33shbyTApOB6jtSj1etX+jkMOvJwIDAQAB +o2MwYTAOBgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUA95QNVbRTLtm +8KPiGxvDl7I90VUwHwYDVR0jBBgwFoAUA95QNVbRTLtm8KPiGxvDl7I90VUwDQYJKoZIhvcNAQEF +BQADggEBAMucN6pIExIK+t1EnE9SsPTfrgT1eXkIoyQY/EsrhMAtudXH/vTBH1jLuG2cenTnmCmr +EbXjcKChzUyImZOMkXDiqw8cvpOp/2PV5Adg06O/nVsJ8dWO41P0jmP6P6fbtGbfYmbW0W5BjfIt +tep3Sp+dWOIrWcBAI+0tKIJFPnlUkiaY4IBIqDfv8NZ5YBberOgOzW6sRBc4L0na4UU+Krk2U886 +UAb3LujEV0lsYSEY1QSteDwsOoBrp+uvFRTp2InBuThs4pFsiv9kuXclVzDAGySj4dzp30d8tbQk +CAUw7C29C79Fv1C5qfPrmAESrciIxpg0X40KPMbp1ZWVbd4= +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert023.pem b/test/rules/platform_certs/default/cert023.pem new file mode 100644 index 000000000000..f3b42554e677 --- /dev/null +++ b/test/rules/platform_certs/default/cert023.pem @@ -0,0 +1,20 @@ +DigiCert High Assurance EV Root CA +-----BEGIN CERTIFICATE----- +MIIDxTCCAq2gAwIBAgIQAqxcJmoLQJuPC3nyrkYldzANBgkqhkiG9w0BAQUFADBsMQswCQYDVQQG +EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSsw +KQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5jZSBFViBSb290IENBMB4XDTA2MTExMDAwMDAw +MFoXDTMxMTExMDAwMDAwMFowbDELMAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZ +MBcGA1UECxMQd3d3LmRpZ2ljZXJ0LmNvbTErMCkGA1UEAxMiRGlnaUNlcnQgSGlnaCBBc3N1cmFu +Y2UgRVYgUm9vdCBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMbM5XPm+9S75S0t +Mqbf5YE/yc0lSbZxKsPVlDRnogocsF9ppkCxxLeyj9CYpKlBWTrT3JTWPNt0OKRKzE0lgvdKpVMS +OO7zSW1xkX5jtqumX8OkhPhPYlG++MXs2ziS4wblCJEMxChBVfvLWokVfnHoNb9Ncgk9vjo4UFt3 +MRuNs8ckRZqnrG0AFFoEt7oT61EKmEFBIk5lYYeBQVCmeVyJ3hlKV9Uu5l0cUyx+mM0aBhakaHPQ +NAQTXKFx01p8VdteZOE3hzBWBOURtCmAEvF5OYiiAhF8J2a3iLd48soKqDirCmTCv2ZdlYTBoSUe +h10aUAsgEsxBu24LUTi4S8sCAwEAAaNjMGEwDgYDVR0PAQH/BAQDAgGGMA8GA1UdEwEB/wQFMAMB +Af8wHQYDVR0OBBYEFLE+w2kD+L9HAdSYJhoIAu9jZCvDMB8GA1UdIwQYMBaAFLE+w2kD+L9HAdSY +JhoIAu9jZCvDMA0GCSqGSIb3DQEBBQUAA4IBAQAcGgaX3NecnzyIZgYIVyHbIUf4KmeqvxgydkAQ +V8GK83rZEWWONfqe/EW1ntlMMUu4kehDLI6zeM7b41N5cdblIZQB2lWHmiRk9opmzN6cN82oNLFp +myPInngiK3BD41VHMWEZ71jFhS9OMPagMRYjyOfiZRYzy78aG6A9+MpeizGLYAiJLQwGXFK3xPkK +mNEVX58Svnw2Yzi9RKR/5CYrCsSXaQ3pjOLAEFe4yHYSkVXySGnYvCoCWw9E1CAx2/S6cCZdkGCe +vEsXCS+0yx5DaMkHJ8HSXPfqIbloEpw8nL+e/IBcm2PN7EeqJSdnoDfzAIJ9VNep+OkuE6N36B9K +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert024.pem b/test/rules/platform_certs/default/cert024.pem new file mode 100644 index 000000000000..1063f5be6ac1 --- /dev/null +++ b/test/rules/platform_certs/default/cert024.pem @@ -0,0 +1,18 @@ +DST Root CA X3 +-----BEGIN CERTIFICATE----- +MIIDSjCCAjKgAwIBAgIQRK+wgNajJ7qJMDmGLvhAazANBgkqhkiG9w0BAQUFADA/MSQwIgYDVQQK +ExtEaWdpdGFsIFNpZ25hdHVyZSBUcnVzdCBDby4xFzAVBgNVBAMTDkRTVCBSb290IENBIFgzMB4X +DTAwMDkzMDIxMTIxOVoXDTIxMDkzMDE0MDExNVowPzEkMCIGA1UEChMbRGlnaXRhbCBTaWduYXR1 +cmUgVHJ1c3QgQ28uMRcwFQYDVQQDEw5EU1QgUm9vdCBDQSBYMzCCASIwDQYJKoZIhvcNAQEBBQAD +ggEPADCCAQoCggEBAN+v6ZdQCINXtMxiZfaQguzH0yxrMMpb7NnDfcdAwRgUi+DoM3ZJKuM/IUmT +rE4Orz5Iy2Xu/NMhD2XSKtkyj4zl93ewEnu1lcCJo6m67XMuegwGMoOifooUMM0RoOEqOLl5CjH9 +UL2AZd+3UWODyOKIYepLYYHsUmu5ouJLGiifSKOeDNoJjj4XLh7dIN9bxiqKqy69cK3FCxolkHRy +xXtqqzTWMIn/5WgTe1QLyNau7Fqckh49ZLOMxt+/yUFw7BZy1SbsOFU5Q9D8/RhcQPGX69Wam40d +utolucbY38EVAjqr2m7xPi71XAicPNaDaeQQmxkqtilX4+U9m5/wAl0CAwEAAaNCMEAwDwYDVR0T +AQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFMSnsaR7LHH62+FLkHX/xBVghYkQ +MA0GCSqGSIb3DQEBBQUAA4IBAQCjGiybFwBcqR7uKGY3Or+Dxz9LwwmglSBd49lZRNI+DT69ikug +dB/OEIKcdBodfpga3csTS7MgROSR6cz8faXbauX+5v3gTt23ADq1cEmv8uXrAvHRAosZy5Q6XkjE +GB5YGV8eAlrwDPGxrancWYaLbumR9YbK+rlmM6pZW87ipxZzR8srzJmwN0jP41ZL9c8PDHIyh8bw +RLtTcm1D9SZImlJnt1ir/md2cXjbDaJWFBM5JDGFoqgCWjBH4d1QB7wCCZAA62RjYJsWvIjJEubS +fZGL+T0yjWW06XyxV3bqxbYoOb8VZRzI9neWagqNdwvYkQsEjgfbKbYK7p2CNTUQ +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert025.pem b/test/rules/platform_certs/default/cert025.pem new file mode 100644 index 000000000000..4bd1dc0739c4 --- /dev/null +++ b/test/rules/platform_certs/default/cert025.pem @@ -0,0 +1,29 @@ +SwissSign Gold CA - G2 +-----BEGIN CERTIFICATE----- +MIIFujCCA6KgAwIBAgIJALtAHEP1Xk+wMA0GCSqGSIb3DQEBBQUAMEUxCzAJBgNVBAYTAkNIMRUw +EwYDVQQKEwxTd2lzc1NpZ24gQUcxHzAdBgNVBAMTFlN3aXNzU2lnbiBHb2xkIENBIC0gRzIwHhcN +MDYxMDI1MDgzMDM1WhcNMzYxMDI1MDgzMDM1WjBFMQswCQYDVQQGEwJDSDEVMBMGA1UEChMMU3dp +c3NTaWduIEFHMR8wHQYDVQQDExZTd2lzc1NpZ24gR29sZCBDQSAtIEcyMIICIjANBgkqhkiG9w0B +AQEFAAOCAg8AMIICCgKCAgEAr+TufoskDhJuqVAtFkQ7kpJcyrhdhJJCEyq8ZVeCQD5XJM1QiyUq +t2/876LQwB8CJEoTlo8jE+YoWACjR8cGp4QjK7u9lit/VcyLwVcfDmJlD909Vopz2q5+bbqBHH5C +jCA12UNNhPqE21Is8w4ndwtrvxEvcnifLtg+5hg3Wipy+dpikJKVyh+c6bM8K8vzARO/Ws/BtQpg +vd21mWRTuKCWs2/iJneRjOBiEAKfNA+k1ZIzUd6+jbqEemA8atufK+ze3gE/bk3lUIbLtK/tREDF +ylqM2tIrfKjuvqblCqoOpd8FUrdVxyJdMmqXl2MT28nbeTZ7hTpKxVKJ+STnnXepgv9VHKVxaSvR +AiTysybUa9oEVeXBCsdtMDeQKuSeFDNeFhdVxVu1yzSJkvGdJo+hB9TGsnhQ2wwMC3wLjEHXuend +jIj3o02yMszYF9rNt85mndT9Xv+9lz4pded+p2JYryU0pUHHPbwNUMoDAw8IWh+Vc3hiv69yFGkO +peUDDniOJihC8AcLYiAQZzlG+qkDzAQ4embvIIO1jEpWjpEA/I5cgt6IoMPiaG59je883WX0XaxR +7ySArqpWl2/5rX3aYT+YdzylkbYcjCbaZaIJbcHiVOO5ykxMgI93e2CaHt+28kgeDrpOVG2Y4OGi +GqJ3UM/EY5LsRxmd6+ZrzsECAwEAAaOBrDCBqTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUw +AwEB/zAdBgNVHQ4EFgQUWyV7lqRlUX64OfPAeGZe6Drn8O4wHwYDVR0jBBgwFoAUWyV7lqRlUX64 +OfPAeGZe6Drn8O4wRgYDVR0gBD8wPTA7BglghXQBWQECAQEwLjAsBggrBgEFBQcCARYgaHR0cDov +L3JlcG9zaXRvcnkuc3dpc3NzaWduLmNvbS8wDQYJKoZIhvcNAQEFBQADggIBACe645R88a7A3hfm +5djV9VSwg/S7zV4Fe0+fdWavPOhWfvxyeDgD2StiGwC5+OlgzczOUYrHUDFu4Up+GC9pWbY9ZIEr +44OE5iKHjn3g7gKZYbge9LgriBIWhMIxkziWMaa5O1M/wySTVltpkuzFwbs4AOPsF6m43Md8AYOf +Mke6UiI0HTJ6CVanfCU2qT1L2sCCbwq7EsiHSycR+R4tx5M/nttfJmtS2S6K8RTGRI0Vqbe/vd6m +Gu6uLftIdxf+u+yvGPUqUfA5hJeVbG4bwyvEdGB5JbAKJ9/fXtI5z0V9QkvfsywexcZdylU6oJxp +mo/a77KwPJ+HbBIrZXAVUjEaJM9vMSNQH4xPjyPDdEFjHFWoFN0+4FFQz/EbMFYOkrCChdiDyyJk +vC24JdVUorgG6q2SpCSgwYa1ShNqR88uC1aVVMvOmttqtKay20EIhid392qgQmwLOM7XdVAyksLf +KzAiSNDVQTglXaTpXZ/GlHXQRf0wl0OPkKsKx4ZzYEppLd6leNcG2mqeSz53OiATIgHQv2ieY2Br +NU0LbbqhPcCT4H8js1WtciVORvnSFu+wZMEBnunKoGqYDs/YYPIvSbjkQuE4NRb0yG5P94FW6Lqj +viOvrv1vA+ACOzB2+httQc8Bsem4yWb02ybzOqR08kkkW8mw0FfB+j564ZfJ +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert026.pem b/test/rules/platform_certs/default/cert026.pem new file mode 100644 index 000000000000..62ab3c87b99b --- /dev/null +++ b/test/rules/platform_certs/default/cert026.pem @@ -0,0 +1,29 @@ +SwissSign Silver CA - G2 +-----BEGIN CERTIFICATE----- +MIIFvTCCA6WgAwIBAgIITxvUL1S7L0swDQYJKoZIhvcNAQEFBQAwRzELMAkGA1UEBhMCQ0gxFTAT +BgNVBAoTDFN3aXNzU2lnbiBBRzEhMB8GA1UEAxMYU3dpc3NTaWduIFNpbHZlciBDQSAtIEcyMB4X +DTA2MTAyNTA4MzI0NloXDTM2MTAyNTA4MzI0NlowRzELMAkGA1UEBhMCQ0gxFTATBgNVBAoTDFN3 +aXNzU2lnbiBBRzEhMB8GA1UEAxMYU3dpc3NTaWduIFNpbHZlciBDQSAtIEcyMIICIjANBgkqhkiG +9w0BAQEFAAOCAg8AMIICCgKCAgEAxPGHf9N4Mfc4yfjDmUO8x/e8N+dOcbpLj6VzHVxumK4DV644 +N0MvFz0fyM5oEMF4rhkDKxD6LHmD9ui5aLlV8gREpzn5/ASLHvGiTSf5YXu6t+WiE7brYT7QbNHm ++/pe7R20nqA1W6GSy/BJkv6FCgU+5tkL4k+73JU3/JHpMjUi0R86TieFnbAVlDLaYQ1HTWBCrpJH +6INaUFjpiou5XaHc3ZlKHzZnu0jkg7Y360g6rw9njxcH6ATK72oxh9TAtvmUcXtnZLi2kUpCe2Uu +MGoM9ZDulebyzYLs2aFK7PayS+VFheZteJMELpyCbTapxDFkH4aDCyr0NQp4yVXPQbBH6TCfmb5h +qAaEuSh6XzjZG6k4sIN/c8HDO0gqgg8hm7jMqDXDhBuDsz6+pJVpATqJAHgE2cn0mRmrVn5bi4Y5 +FZGkECwJMoBgs5PAKrYYC51+jUnyEEp/+dVGLxmSo5mnJqy7jDzmDrxHB9xzUfFwZC8I+bRHHTBs +ROopN4WSaGa8gzj+ezku01DwH/teYLappvonQfGbGHLy9YR0SslnxFSuSGTfjNFusB3hB48IHpmc +celM2KX3RxIfdNFRnobzwqIjQAtz20um53MGjMGg6cFZrEb65i/4z3GcRm25xBWNOHkDRUjvxF3X +CO6HOSKGsg0PWEP3calILv3q1h8CAwEAAaOBrDCBqTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/ +BAUwAwEB/zAdBgNVHQ4EFgQUF6DNweRBtjpbO8tFnb0cwpj6hlgwHwYDVR0jBBgwFoAUF6DNweRB +tjpbO8tFnb0cwpj6hlgwRgYDVR0gBD8wPTA7BglghXQBWQEDAQEwLjAsBggrBgEFBQcCARYgaHR0 +cDovL3JlcG9zaXRvcnkuc3dpc3NzaWduLmNvbS8wDQYJKoZIhvcNAQEFBQADggIBAHPGgeAn0i0P +4JUw4ppBf1AsX19iYamGamkYDHRJ1l2E6kFSGG9YrVBWIGrGvShpWJHckRE1qTodvBqlYJ7YH39F +kWnZfrt4csEGDyrOj4VwYaygzQu4OSlWhDJOhrs9xCrZ1x9y7v5RoSJBsXECYxqCsGKrXlcSH9/L +3XWgwF15kIwb4FDm3jH+mHtwX6WQ2K34ArZv02DdQEsixT2tOnqfGhpHkXkzuoLcMmkDlm4fS/Bx +/uNncqCxv1yL5PqZIseEuRuNI5c/7SXgz2W79WEE790eslpBIlqhn10s6FvJbakMDHiqYMZWjwFa +DGi8aRl5xB9+lwW/xekkUV7U1UtT7dkjWjYDZaPBA61BMPNGG4WQr2W11bHkFlt4dR2Xem1ZqSqP +e97Dh4kQmUlzeMg9vVE1dCrV8X5pGyq7O70luJpaPXJhkGaH7gzWTdQRdAtq/gsD/KNVV4n+Ssuu +WxcFyPKNIzFTONItaj+CuY0IavdeQXRuwxF+B6wpYJE/OMpXEA29MC/HpeZBoNquBYeaoKRlbEwJ +DIm6uNO5wJOKMPqN5ZprFQFOZ6raYlY+hAhm0sQ2fac+EPyI4NSA5QC9qvNOBqN6avlicuMJT+ub +DgEj8Z+7fNzcbBGXJbLytGMU0gYqZ4yD9c7qB9iaah7s5Aq7KkzrCWA5zspi2C5u +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert027.pem b/test/rules/platform_certs/default/cert027.pem new file mode 100644 index 000000000000..c9bb1af7e170 --- /dev/null +++ b/test/rules/platform_certs/default/cert027.pem @@ -0,0 +1,19 @@ +GeoTrust Primary Certification Authority +-----BEGIN CERTIFICATE----- +MIIDfDCCAmSgAwIBAgIQGKy1av1pthU6Y2yv2vrEoTANBgkqhkiG9w0BAQUFADBYMQswCQYDVQQG +EwJVUzEWMBQGA1UEChMNR2VvVHJ1c3QgSW5jLjExMC8GA1UEAxMoR2VvVHJ1c3QgUHJpbWFyeSBD +ZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wNjExMjcwMDAwMDBaFw0zNjA3MTYyMzU5NTlaMFgx +CzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMTEwLwYDVQQDEyhHZW9UcnVzdCBQ +cmltYXJ5IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB +CgKCAQEAvrgVe//UfH1nrYNke8hCUy3f9oQIIGHWAVlqnEQRr+92/ZV+zmEwu3qDXwK9AWbK7hWN +b6EwnL2hhZ6UOvNWiAAxz9juapYC2e0DjPt1befquFUWBRaa9OBesYjAZIVcFU2Ix7e64HXprQU9 +nceJSOC7KMgD4TCTZF5SwFlwIjVXiIrxlQqD17wxcwE07e9GceBrAqg1cmuXm2bgyxx5X9gaBGge +RwLmnWDiNpcB3841kt++Z8dtd1k7j53WkBWUvEI0EME5+bEnPn7WinXFsq+W06Lem+SYvn3h6YGt +tm/81w7a4DSwDRp35+MImO9Y+pyEtzavwt+s0vQQBnBxNQIDAQABo0IwQDAPBgNVHRMBAf8EBTAD +AQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQULNVQQZcVi/CPNmFbSvtr2ZnJM5IwDQYJKoZI +hvcNAQEFBQADggEBAFpwfyzdtzRP9YZRqSa+S7iq8XEN3GHHoOo0Hnp3DwQ16CePbJC/kRYkRj5K +Ts4rFtULUh38H2eiAkUxT87z+gOneZ1TatnaYzr4gNfTmeGl4b7UVXGYNTq+k+qurUKykG/g/CFN +NWMziUnWm07Kx+dOCQD32sfvmWKZd7aVIl6KoKv0uHiYyjgZmclynnjNS6yvGaBzEi38wkG6gZHa +Floxt/m0cYASSJlyc1pZU8FjUjPtp8nSOQJw+uCxQmYpqptR7TBUIhRf2asdweSU8Pj1K/fqynhG +1riR/aYNKxoUAT6A8EKglQdebc3MS6RFjasS6LPeWuWgfOgPIh1a6Vk= +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert028.pem b/test/rules/platform_certs/default/cert028.pem new file mode 100644 index 000000000000..6549fc986a66 --- /dev/null +++ b/test/rules/platform_certs/default/cert028.pem @@ -0,0 +1,22 @@ +thawte Primary Root CA +-----BEGIN CERTIFICATE----- +MIIEIDCCAwigAwIBAgIQNE7VVyDV7exJ9C/ON9srbTANBgkqhkiG9w0BAQUFADCBqTELMAkGA1UE +BhMCVVMxFTATBgNVBAoTDHRoYXd0ZSwgSW5jLjEoMCYGA1UECxMfQ2VydGlmaWNhdGlvbiBTZXJ2 +aWNlcyBEaXZpc2lvbjE4MDYGA1UECxMvKGMpIDIwMDYgdGhhd3RlLCBJbmMuIC0gRm9yIGF1dGhv +cml6ZWQgdXNlIG9ubHkxHzAdBgNVBAMTFnRoYXd0ZSBQcmltYXJ5IFJvb3QgQ0EwHhcNMDYxMTE3 +MDAwMDAwWhcNMzYwNzE2MjM1OTU5WjCBqTELMAkGA1UEBhMCVVMxFTATBgNVBAoTDHRoYXd0ZSwg +SW5jLjEoMCYGA1UECxMfQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjE4MDYGA1UECxMv +KGMpIDIwMDYgdGhhd3RlLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxHzAdBgNVBAMT +FnRoYXd0ZSBQcmltYXJ5IFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCs +oPD7gFnUnMekz52hWXMJEEUMDSxuaPFsW0hoSVk3/AszGcJ3f8wQLZU0HObrTQmnHNK4yZc2AreJ +1CRfBsDMRJSUjQJib+ta3RGNKJpchJAQeg29dGYvajig4tVUROsdB58Hum/u6f1OCyn1PoSgAfGc +q/gcfomk6KHYcWUNo1F77rzSImANuVud37r8UVsLr5iy6S7pBOhih94ryNdOwUxkHt3Ph1i6Sk/K +aAcdHJ1KxtUvkcx8cXIcxcBn6zL9yZJclNqFwJu/U30rCfSMnZEfl2pSy94JNqR32HuHUETVPm4p +afs5SSYeCaWAe0At6+gnhcn+Yf1+5nyXHdWdAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYD +VR0PAQH/BAQDAgEGMB0GA1UdDgQWBBR7W0XPr87Lev0xkhpqtvNG61dIUDANBgkqhkiG9w0BAQUF +AAOCAQEAeRHAS7ORtvzw6WfUDW5FvlXok9LOAz/t2iWwHVfLHjp2oEzsUHboZHIMpKnxuIvW1oeE +uzLlQRHAd9mzYJ3rG9XRbkREqaYB7FViHXe4XI5ISXycO1cRrK1zN44veFyQaEfZYGDm/Ac9IiAX +xPcW6cTYcvnIc3zfFi8VqT79aie2oetaupgf1eNNZAqdE8hhuvU5HIe6uL17In/2/qxAeeWsEG89 +jxt5dovEN7MhGITlNgDrYyCZuen+MwS7QcjBAvlEYyCegc5C09Y/LHbTY5xZ3Y+m4Q6gLkH3LpVH +z7z9M/P2C2F+fpErgUfCJzDupxBdN49cOSvkBPB7jVaMaA== +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert029.pem b/test/rules/platform_certs/default/cert029.pem new file mode 100644 index 000000000000..dab832fb884d --- /dev/null +++ b/test/rules/platform_certs/default/cert029.pem @@ -0,0 +1,25 @@ +VeriSign Class 3 Public Primary Certification Authority - G5 +-----BEGIN CERTIFICATE----- +MIIE0zCCA7ugAwIBAgIQGNrRniZ96LtKIVjNzGs7SjANBgkqhkiG9w0BAQUFADCByjELMAkGA1UE +BhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZWZXJpU2lnbiBUcnVzdCBO +ZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwNiBWZXJpU2lnbiwgSW5jLiAtIEZvciBhdXRob3JpemVk +IHVzZSBvbmx5MUUwQwYDVQQDEzxWZXJpU2lnbiBDbGFzcyAzIFB1YmxpYyBQcmltYXJ5IENlcnRp +ZmljYXRpb24gQXV0aG9yaXR5IC0gRzUwHhcNMDYxMTA4MDAwMDAwWhcNMzYwNzE2MjM1OTU5WjCB +yjELMAkGA1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZWZXJpU2ln +biBUcnVzdCBOZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwNiBWZXJpU2lnbiwgSW5jLiAtIEZvciBh +dXRob3JpemVkIHVzZSBvbmx5MUUwQwYDVQQDEzxWZXJpU2lnbiBDbGFzcyAzIFB1YmxpYyBQcmlt +YXJ5IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAw +ggEKAoIBAQCvJAgIKXo1nmAMqudLO07cfLw8RRy7K+D+KQL5VwijZIUVJ/XxrcgxiV0i6CqqpkKz +j/i5Vbext0uz/o9+B1fs70PbZmIVYc9gDaTY3vjgw2IIPVQT60nKWVSFJuUrjxuf6/WhkcIzSdhD +Y2pSS9KP6HBRTdGJaXvHcPaz3BJ023tdS1bTlr8Vd6Gw9KIl8q8ckmcY5fQGBO+QueQA5N06tRn/ +Arr0PO7gi+s3i+z016zy9vA9r911kTMZHRxAy3QkGSGT2RT+rCpSx4/VBEnkjWNHiDxpg8v+R70r +fk/Fla4OndTRQ8Bnc+MUCH7lP59zuDMKz10/NIeWiu5T6CUVAgMBAAGjgbIwga8wDwYDVR0TAQH/ +BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwbQYIKwYBBQUHAQwEYTBfoV2gWzBZMFcwVRYJaW1hZ2Uv +Z2lmMCEwHzAHBgUrDgMCGgQUj+XTGoasjY5rw8+AatRIGCx7GS4wJRYjaHR0cDovL2xvZ28udmVy +aXNpZ24uY29tL3ZzbG9nby5naWYwHQYDVR0OBBYEFH/TZafC3ey78DAJ80M5+gKvMzEzMA0GCSqG +SIb3DQEBBQUAA4IBAQCTJEowX2LP2BqYLz3q3JktvXf2pXkiOOzEp6B4Eq1iDkVwZMXnl2YtmAl+ +X6/WzChl8gGqCBpH3vn5fJJaCGkgDdk+bW48DW7Y5gaRQBi5+MHt39tBquCWIMnNZBU4gcmU7qKE +KQsTb47bDN0lAtukixlE0kF6BWlKWE9gyn6CagsCqiUXObXbf+eEZSqVir2G3l6BFoMtEMze/aiC +Km0oHw0LxOXnGiYZ4fQRbxC1lfznQgUy286dUV4otp6F01vvpX1FQHKOtw5rDgb7MzVIcbidJ4vE +ZV8NhnacRHr2lVz2XTIIM6RUthg/aFzyQkqFOFSDX9HoLPKsEdao7WNq +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert030.pem b/test/rules/platform_certs/default/cert030.pem new file mode 100644 index 000000000000..eebada208adf --- /dev/null +++ b/test/rules/platform_certs/default/cert030.pem @@ -0,0 +1,20 @@ +SecureTrust CA +-----BEGIN CERTIFICATE----- +MIIDuDCCAqCgAwIBAgIQDPCOXAgWpa1Cf/DrJxhZ0DANBgkqhkiG9w0BAQUFADBIMQswCQYDVQQG +EwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3QgQ29ycG9yYXRpb24xFzAVBgNVBAMTDlNlY3VyZVRy +dXN0IENBMB4XDTA2MTEwNzE5MzExOFoXDTI5MTIzMTE5NDA1NVowSDELMAkGA1UEBhMCVVMxIDAe +BgNVBAoTF1NlY3VyZVRydXN0IENvcnBvcmF0aW9uMRcwFQYDVQQDEw5TZWN1cmVUcnVzdCBDQTCC +ASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKukgeWVzfX2FI7CT8rU4niVWJxB4Q2ZQCQX +OZEzZum+4YOvYlyJ0fwkW2Gz4BERQRwdbvC4u/jep4G6pkjGnx29vo6pQT64lO0pGtSO0gMdA+9t +DWccV9cGrcrI9f4Or2YlSASWC12juhbDCE/RRvgUXPLIXgGZbf2IzIaowW8xQmxSPmjL8xk037uH +GFaAJsTQ3MBv396gwpEWoGQRS0S8Hvbn+mPeZqx2pHGj7DaUaHp3pLHnDi+BeuK1cobvomuL8A/b +01k/unK8RCSc43Oz969XL0Imnal0ugBS8kvNU3xHCzaFDmapCJcWNFfBZveA4+1wVMeT4C4oFVmH +ursCAwEAAaOBnTCBmjATBgkrBgEEAYI3FAIEBh4EAEMAQTALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/ +BAUwAwEB/zAdBgNVHQ4EFgQUQjK2FvoE/f5dS3rD/fdMQB1aQ68wNAYDVR0fBC0wKzApoCegJYYj +aHR0cDovL2NybC5zZWN1cmV0cnVzdC5jb20vU1RDQS5jcmwwEAYJKwYBBAGCNxUBBAMCAQAwDQYJ +KoZIhvcNAQEFBQADggEBADDtT0rhWDpSclu1pqNlGKa7UTt36Z3q059c4EVlew3KW+JwULKUBRSu +SceNQQcSc5R+DCMh/bwQf2AQWnL1mA6s7Ll/3XpvXdMc9P+IBWlCqQVxyLesJugutIxq/3HcuLHf +mbx8IVQr5Fiiu1cprp6poxkmD5kuCLDv/WnPmRoJjeOnnyvJNjR7JLN4TJUXpAYmHrZkUjZfYGfZ +nMUFdAvnZyPSCPyI6a6Lf+Ew9Dd+/cYy2i2eRDAwbO4H3tI0/NL/QPZL9GZGBlSm8jIKYyYwa5vR +3ItHuuG51WLQoqD0ZwV4KWMabwTW+MZMo5qxN7SN5ShLHZ4swrhovO0C7jE= +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert031.pem b/test/rules/platform_certs/default/cert031.pem new file mode 100644 index 000000000000..5d24e1f3b233 --- /dev/null +++ b/test/rules/platform_certs/default/cert031.pem @@ -0,0 +1,20 @@ +Secure Global CA +-----BEGIN CERTIFICATE----- +MIIDvDCCAqSgAwIBAgIQB1YipOjUiolN9BPI8PjqpTANBgkqhkiG9w0BAQUFADBKMQswCQYDVQQG +EwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3QgQ29ycG9yYXRpb24xGTAXBgNVBAMTEFNlY3VyZSBH +bG9iYWwgQ0EwHhcNMDYxMTA3MTk0MjI4WhcNMjkxMjMxMTk1MjA2WjBKMQswCQYDVQQGEwJVUzEg +MB4GA1UEChMXU2VjdXJlVHJ1c3QgQ29ycG9yYXRpb24xGTAXBgNVBAMTEFNlY3VyZSBHbG9iYWwg +Q0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCvNS7YrGxVaQZx5RNoJLNP2MwhR/jx +YDiJiQPpvepeRlMJ3Fz1Wuj3RSoC6zFh1ykzTM7HfAo3fg+6MpjhHZevj8fcyTiW89sa/FHtaMbQ +bqR8JNGuQsiWUGMu4P51/pinX0kuleM5M2SOHqRfkNJnPLLZ/kG5VacJjnIFHovdRIWCQtBJwB1g +8NEXLJXr9qXBkqPFwqcIYA1gBBCWeZ4WNOaptvolRTnIHmX5k/Wq8VLcmZg9pYYaDDUz+kulBAYV +HDGA76oYa8J719rO+TMg1fW9ajMtgQT7sFzUnKPiXB3jqUJ1XnvUd+85VLrJChgbEplJL4hL/VBi +0XPnj3pDAgMBAAGjgZ0wgZowEwYJKwYBBAGCNxQCBAYeBABDAEEwCwYDVR0PBAQDAgGGMA8GA1Ud +EwEB/wQFMAMBAf8wHQYDVR0OBBYEFK9EBMJBfkiD2045AuzshHrmzsmkMDQGA1UdHwQtMCswKaAn +oCWGI2h0dHA6Ly9jcmwuc2VjdXJldHJ1c3QuY29tL1NHQ0EuY3JsMBAGCSsGAQQBgjcVAQQDAgEA +MA0GCSqGSIb3DQEBBQUAA4IBAQBjGghAfaReUw132HquHw0LURYD7xh8yOOvaliTFGCRsoTciE6+ +OYo68+aCiV0BN7OrJKQVDpI1WkpEXk5X+nXOH0jOZvQ8QCaSmGwb7iRGDBezUqXbpZGRzzfTb+cn +CDpOGR86p1hcF895P4vkp9MmI50mD1hp/Ed+stCNi5O/KU9DaXR2Z0vPB4zmAve14bRDtUstFJ/5 +3CYNv6ZHdAbYiNE6KTCEztI5gGIbqMdXSbxqVVFnFUq+NQfk1XWYN3kwFNspnWzFacxHVaIw98xc +f8LDmBxrThaA63p4ZUWiABqvDA1VZDRIuJK58bRQKfJPIx/abKwfROHdI3hRW8cW +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert032.pem b/test/rules/platform_certs/default/cert032.pem new file mode 100644 index 000000000000..993c2b76ecae --- /dev/null +++ b/test/rules/platform_certs/default/cert032.pem @@ -0,0 +1,22 @@ +COMODO Certification Authority +-----BEGIN CERTIFICATE----- +MIIEHTCCAwWgAwIBAgIQToEtioJl4AsC7j41AkblPTANBgkqhkiG9w0BAQUFADCBgTELMAkGA1UE +BhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgG +A1UEChMRQ09NT0RPIENBIExpbWl0ZWQxJzAlBgNVBAMTHkNPTU9ETyBDZXJ0aWZpY2F0aW9uIEF1 +dGhvcml0eTAeFw0wNjEyMDEwMDAwMDBaFw0yOTEyMzEyMzU5NTlaMIGBMQswCQYDVQQGEwJHQjEb +MBkGA1UECBMSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFD +T01PRE8gQ0EgTGltaXRlZDEnMCUGA1UEAxMeQ09NT0RPIENlcnRpZmljYXRpb24gQXV0aG9yaXR5 +MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0ECLi3LjkRv3UcEbVASY06m/weaKXTuH ++7uIzg3jLz8GlvCiKVCZrts7oVewdFFxze1CkU1B/qnI2GqGd0S7WWaXUF601CxwRM/aN5VCaTww +xHGzUvAhTaHYujl8HJ6jJJ3ygxaYqhZ8Q5sVW7euNJH+1GImGEaaP+vB+fGQV+useg2L23IwambV +4EajcNxo2f8ESIl33rXp+2dtQem8Ob0y2WIC8bGoPW43nOIv4tOiJovGuFVDiOEjPqXSJDlqR6sA +1KGzqSX+DT+nHbrTUcELpNqsOO9VUCQFZUaTNE8tja3G1CEZ0o7KBWFxB3NH5YoZEr0ETc5OnKVI +rLsm9wIDAQABo4GOMIGLMB0GA1UdDgQWBBQLWOWLxkwVN6RAqTCpIb5HNlpW/zAOBgNVHQ8BAf8E +BAMCAQYwDwYDVR0TAQH/BAUwAwEB/zBJBgNVHR8EQjBAMD6gPKA6hjhodHRwOi8vY3JsLmNvbW9k +b2NhLmNvbS9DT01PRE9DZXJ0aWZpY2F0aW9uQXV0aG9yaXR5LmNybDANBgkqhkiG9w0BAQUFAAOC +AQEAPpiem/Yb6dc5t3iuHXIYSdOH5EOC6z/JqvWote9VfCFSZfnVDeFs9D6Mk3ORLgLETgdxb8CP +OGEIqB6BCsAvIC9Bi5HcSEW88cbeunZrM8gALTFGTO3nnc+IlP8zwFboJIYmuNg4ON8qa90SzMc/ +RxdMosIGlgnW2/4/PEZB31jiVg88O8EckzXZOFKs7sjsLjBOlDW0JB9LeGna8gI4zJVSk/BwJVmc +IGfE7vmLV2H0knZ9P4SNVbfo5azV8fUZVqZa+5Acr5Pr5RzUZ5ddBA6+C4OmF4O5MBKgxTMVBbkN ++8cFduPYSo38NBejxiEovjBFMR7HeL5YYTisO+IBZQ== +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert033.pem b/test/rules/platform_certs/default/cert033.pem new file mode 100644 index 000000000000..632f1e71301d --- /dev/null +++ b/test/rules/platform_certs/default/cert033.pem @@ -0,0 +1,21 @@ +Network Solutions Certificate Authority +-----BEGIN CERTIFICATE----- +MIID5jCCAs6gAwIBAgIQV8szb8JcFuZHFhfjkDFo4DANBgkqhkiG9w0BAQUFADBiMQswCQYDVQQG +EwJVUzEhMB8GA1UEChMYTmV0d29yayBTb2x1dGlvbnMgTC5MLkMuMTAwLgYDVQQDEydOZXR3b3Jr +IFNvbHV0aW9ucyBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwHhcNMDYxMjAxMDAwMDAwWhcNMjkxMjMx +MjM1OTU5WjBiMQswCQYDVQQGEwJVUzEhMB8GA1UEChMYTmV0d29yayBTb2x1dGlvbnMgTC5MLkMu +MTAwLgYDVQQDEydOZXR3b3JrIFNvbHV0aW9ucyBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwggEiMA0G +CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDkvH6SMG3G2I4rC7xGzuAnlt7e+foS0zwzc7MEL7xx +jOWftiJgPl9dzgn/ggwbmlFQGiaJ3dVhXRncEg8tCqJDXRfQNJIg6nPPOCwGJgl6cvf6UDL4wpPT +aaIjzkGxzOTVHzbRijr4jGPiFFlp7Q3Tf2vouAPlT2rlmGNpSAW+Lv8ztumXWWn4Zxmuk2GWRBXT +crA/vGp97Eh/jcOrqnErU2lBUzS1sLnFBgrEsEX1QV1uiUV7PTsmjHTC5dLRfbIR1PtYMiKagMnc +/Qzpf14Dl847ABSHJ3A4qY5usyd2mFHgBeMhqxrVhSI8KbWaFsWAqPS7azCPL0YCorEMIuDTAgMB +AAGjgZcwgZQwHQYDVR0OBBYEFCEwyfsA106Y2oeqKtCnLrFAMadMMA4GA1UdDwEB/wQEAwIBBjAP +BgNVHRMBAf8EBTADAQH/MFIGA1UdHwRLMEkwR6BFoEOGQWh0dHA6Ly9jcmwubmV0c29sc3NsLmNv +bS9OZXR3b3JrU29sdXRpb25zQ2VydGlmaWNhdGVBdXRob3JpdHkuY3JsMA0GCSqGSIb3DQEBBQUA +A4IBAQC7rkvnt1frf6ott3NHhWrB5KUd5Oc86fRZZXe1eltajSU24HqXLjjAV2CDmAaDn7l2em5Q +4LqILPxFzBiwmZVRDuwduIj/h1AcgsLj4DKAv6ALR8jDMe+ZZzKATxcheQxpXN5eNK4CtSbqUN9/ +GGUsyfJj4akH/nxxH2szJGoeBfcFaMBqEssuXmHLrijTfsK0ZpEmXzwuJF/LWA/rKOyvEZbz3Htv +wKeI8lN3s2Berq4o2jUsbzRF0ybh3uxbTydrFny9RAQYgrOJeRcQcT16ohZO9QHNpGxlaKFJdlxD +ydi8NmdspZS11My5vWo1ViHe2MPr+8ukYEywVaCge1ey +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert034.pem b/test/rules/platform_certs/default/cert034.pem new file mode 100644 index 000000000000..32011efbc364 --- /dev/null +++ b/test/rules/platform_certs/default/cert034.pem @@ -0,0 +1,15 @@ +COMODO ECC Certification Authority +-----BEGIN CERTIFICATE----- +MIICiTCCAg+gAwIBAgIQH0evqmIAcFBUTAGem2OZKjAKBggqhkjOPQQDAzCBhTELMAkGA1UEBhMC +R0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UE +ChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBFQ0MgQ2VydGlmaWNhdGlvbiBB +dXRob3JpdHkwHhcNMDgwMzA2MDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBhTELMAkGA1UEBhMCR0Ix +GzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UEChMR +Q09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBFQ0MgQ2VydGlmaWNhdGlvbiBBdXRo +b3JpdHkwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQDR3svdcmCFYX7deSRFtSrYpn1PlILBs5BAH+X +4QokPB0BBO490o0JlwzgdeT6+3eKKvUDYEs2ixYjFq0JcfRK9ChQtP6IHG4/bC8vCVlbpVsLM5ni +wz2J+Wos77LTBumjQjBAMB0GA1UdDgQWBBR1cacZSBm8nZ3qQUfflMRId5nTeTAOBgNVHQ8BAf8E +BAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAKBggqhkjOPQQDAwNoADBlAjEA7wNbeqy3eApyt4jf/7VG +FAkK+qDmfQjGGoe9GKhzvSbKYAydzpmfz1wPMOG+FDHqAjAU9JM8SaczepBGR7NjfRObTrdvGDeA +U/7dIOA1mjbRxwG55tzd8/8dLDoWV9mSOdY= +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert035.pem b/test/rules/platform_certs/default/cert035.pem new file mode 100644 index 000000000000..9ba70f2b4b50 --- /dev/null +++ b/test/rules/platform_certs/default/cert035.pem @@ -0,0 +1,21 @@ +OISTE WISeKey Global Root GA CA +-----BEGIN CERTIFICATE----- +MIID8TCCAtmgAwIBAgIQQT1yx/RrH4FDffHSKFTfmjANBgkqhkiG9w0BAQUFADCBijELMAkGA1UE +BhMCQ0gxEDAOBgNVBAoTB1dJU2VLZXkxGzAZBgNVBAsTEkNvcHlyaWdodCAoYykgMjAwNTEiMCAG +A1UECxMZT0lTVEUgRm91bmRhdGlvbiBFbmRvcnNlZDEoMCYGA1UEAxMfT0lTVEUgV0lTZUtleSBH +bG9iYWwgUm9vdCBHQSBDQTAeFw0wNTEyMTExNjAzNDRaFw0zNzEyMTExNjA5NTFaMIGKMQswCQYD +VQQGEwJDSDEQMA4GA1UEChMHV0lTZUtleTEbMBkGA1UECxMSQ29weXJpZ2h0IChjKSAyMDA1MSIw +IAYDVQQLExlPSVNURSBGb3VuZGF0aW9uIEVuZG9yc2VkMSgwJgYDVQQDEx9PSVNURSBXSVNlS2V5 +IEdsb2JhbCBSb290IEdBIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAy0+zAJs9 +Nt350UlqaxBJH+zYK7LG+DKBKUOVTJoZIyEVRd7jyBxRVVuuk+g3/ytr6dTqvirdqFEr12bDYVxg +Asj1znJ7O7jyTmUIms2kahnBAbtzptf2w93NvKSLtZlhuAGio9RN1AU9ka34tAhxZK9w8RxrfvbD +d50kc3vkDIzh2TbhmYsFmQvtRTEJysIA2/dyoJaqlYfQjse2YXMNdmaM3Bu0Y6Kff5MTMPGhJ9vZ +/yxViJGg4E8HsChWjBgbl0SOid3gF27nKu+POQoxhILYQBRJLnpB5Kf+42TMwVlxSywhp1t94B3R +LoGbw9ho972WG6xwsRYUC9tguSYBBQIDAQABo1EwTzALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUw +AwEB/zAdBgNVHQ4EFgQUswN+rja8sHnR3JQmthG+IbJphpQwEAYJKwYBBAGCNxUBBAMCAQAwDQYJ +KoZIhvcNAQEFBQADggEBAEuh/wuHbrP5wUOxSPMowB0uyQlB+pQAHKSkq0lPjz0e701vvbyk9vIm +MMkQyh2I+3QZH4VFvbBsUfk2ftv1TDI6QU9bR8/oCy22xBmddMVHxjtqD6wU2zz0c5ypBd8A3HR4 ++vg1YFkCExh8vPtNsCBtQ7tgMHpnM1zFmdH4LTlSc/uMqpclXHLZCB6rTjzjgTGfA6b7wP4piFXa +hNVQA7bihKOmNqoROgHhGEvWRGizPflTdISzRpFGlgC3gCy24eMQ4tui5yiPAZZiFj4A4xylNoEY +okxSdsARo27mHbrjWr42U8U+dY+GaSlYU7Wcu2+fXMUY7N0v4ZjJ/L7fCg0= +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert036.pem b/test/rules/platform_certs/default/cert036.pem new file mode 100644 index 000000000000..0a6a0cd53972 --- /dev/null +++ b/test/rules/platform_certs/default/cert036.pem @@ -0,0 +1,20 @@ +Certigna +-----BEGIN CERTIFICATE----- +MIIDqDCCApCgAwIBAgIJAP7c4wEPyUj/MA0GCSqGSIb3DQEBBQUAMDQxCzAJBgNVBAYTAkZSMRIw +EAYDVQQKDAlEaGlteW90aXMxETAPBgNVBAMMCENlcnRpZ25hMB4XDTA3MDYyOTE1MTMwNVoXDTI3 +MDYyOTE1MTMwNVowNDELMAkGA1UEBhMCRlIxEjAQBgNVBAoMCURoaW15b3RpczERMA8GA1UEAwwI +Q2VydGlnbmEwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDIaPHJ1tazNHUmgh7stL7q +XOEm7RFHYeGifBZ4QCHkYJ5ayGPhxLGWkv8YbWkj4Sti993iNi+RB7lIzw7sebYs5zRLcAglozyH +GxnygQcPOJAZ0xH+hrTy0V4eHpbNgGzOOzGTtvKg0KmVEn2lmsxryIRWijOp5yIVUxbwzBfsV1/p +ogqYCd7jX5xv3EjjhQsVWqa6n6xI4wmy9/Qy3l40vhx4XUJbzg4ij02Q130yGLMLLGq/jj8UEYkg +DncUtT2UCIf3JR7VsmAA7G8qKCVuKj4YYxclPz5EIBb2JsglrgVKtOdjLPOMFlN+XPsRGgjBRmKf +Irjxwo1p3Po6WAbfAgMBAAGjgbwwgbkwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUGu3+QTmQ +tCRZvgHyUtVF9lo53BEwZAYDVR0jBF0wW4AUGu3+QTmQtCRZvgHyUtVF9lo53BGhOKQ2MDQxCzAJ +BgNVBAYTAkZSMRIwEAYDVQQKDAlEaGlteW90aXMxETAPBgNVBAMMCENlcnRpZ25hggkA/tzjAQ/J +SP8wDgYDVR0PAQH/BAQDAgEGMBEGCWCGSAGG+EIBAQQEAwIABzANBgkqhkiG9w0BAQUFAAOCAQEA +hQMeknH2Qq/ho2Ge6/PAD/Kl1NqV5ta+aDY9fm4fTIrv0Q8hbV6lUmPOEvjvKtpv6zf+EwLHyzs+ +ImvaYS5/1HI93TDhHkxAGYwP15zRgzB7mFncfca5DClMoTOi62c6ZYTTluLtdkVwj7Ur3vkj1klu +PBS1xp81HlDQwY9qcEQCYsuuHWhBp6pX6FOqB9IG9tUUBguRA3UsbHK1YZWaDYu5Def131TN3ubY +1gkIl2PlwS6wt0QmwCbAr1UwnjvVNioZBPRcHv/PLLf/0P2HQBHVESO7SMAhqaQoLf0V+LBOK/Qw +WyH8EZE0vkHve52Xdf+XlcCWWC/qu0bXu+TZLg== +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert037.pem b/test/rules/platform_certs/default/cert037.pem new file mode 100644 index 000000000000..d14681661ead --- /dev/null +++ b/test/rules/platform_certs/default/cert037.pem @@ -0,0 +1,20 @@ +Cybertrust Global Root +-----BEGIN CERTIFICATE----- +MIIDoTCCAomgAwIBAgILBAAAAAABD4WqLUgwDQYJKoZIhvcNAQEFBQAwOzEYMBYGA1UEChMPQ3li +ZXJ0cnVzdCwgSW5jMR8wHQYDVQQDExZDeWJlcnRydXN0IEdsb2JhbCBSb290MB4XDTA2MTIxNTA4 +MDAwMFoXDTIxMTIxNTA4MDAwMFowOzEYMBYGA1UEChMPQ3liZXJ0cnVzdCwgSW5jMR8wHQYDVQQD +ExZDeWJlcnRydXN0IEdsb2JhbCBSb290MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA ++Mi8vRRQZhP/8NN57CPytxrHjoXxEnOmGaoQ25yiZXRadz5RfVb23CO21O1fWLE3TdVJDm71aofW +0ozSJ8bi/zafmGWgE07GKmSb1ZASzxQG9Dvj1Ci+6A74q05IlG2OlTEQXO2iLb3VOm2yHLtgwEZL +AfVJrn5GitB0jaEMAs7u/OePuGtm839EAL9mJRQr3RAwHQeWP032a7iPt3sMpTjr3kfb1V05/Iin +89cqdPHoWqI7n1C6poxFNcJQZZXcY4Lv3b93TZxiyWNzFtApD0mpSPCzqrdsxacwOUBdrsTiXSZT +8M4cIwhhqJQZugRiQOwfOHB3EgZxpzAYXSUnpQIDAQABo4GlMIGiMA4GA1UdDwEB/wQEAwIBBjAP +BgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBS2CHsNesysIEyGVjJez6tuhS1wVzA/BgNVHR8EODA2 +MDSgMqAwhi5odHRwOi8vd3d3Mi5wdWJsaWMtdHJ1c3QuY29tL2NybC9jdC9jdHJvb3QuY3JsMB8G +A1UdIwQYMBaAFLYIew16zKwgTIZWMl7Pq26FLXBXMA0GCSqGSIb3DQEBBQUAA4IBAQBW7wojoFRO +lZfJ+InaRcHUowAl9B8Tq7ejhVhpwjCt2BWKLePJzYFa+HMjWqd8BfP9IjsO0QbE2zZMcwSO5bAi +5MXzLqXZI+O4Tkogp24CJJ8iYGd7ix1yCcUxXOl5n4BHPa2hCwcUPUf/A2kaDAtE52Mlp3+yybh2 +hO0j9n0Hq0V+09+zv+mKts2oomcrUtW3ZfA5TGOgkXmTUg9U3YO7n9GPp1Nzw8v/MOx8BLjYRB+T +X3EJIrduPuocA06dGiBh+4E37F78CkWr1+cXVdCg6mCbpvbjjFspwgZgFJ0tl0ypkxWdYcQBX0jW +WL1WMRJOEcgh4LMRkWXbtKaIOM5V +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert038.pem b/test/rules/platform_certs/default/cert038.pem new file mode 100644 index 000000000000..cf2d1496d727 --- /dev/null +++ b/test/rules/platform_certs/default/cert038.pem @@ -0,0 +1,29 @@ +ePKI Root Certification Authority +-----BEGIN CERTIFICATE----- +MIIFsDCCA5igAwIBAgIQFci9ZUdcr7iXAF7kBtK8nTANBgkqhkiG9w0BAQUFADBeMQswCQYDVQQG +EwJUVzEjMCEGA1UECgwaQ2h1bmdod2EgVGVsZWNvbSBDby4sIEx0ZC4xKjAoBgNVBAsMIWVQS0kg +Um9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wNDEyMjAwMjMxMjdaFw0zNDEyMjAwMjMx +MjdaMF4xCzAJBgNVBAYTAlRXMSMwIQYDVQQKDBpDaHVuZ2h3YSBUZWxlY29tIENvLiwgTHRkLjEq +MCgGA1UECwwhZVBLSSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIICIjANBgkqhkiG9w0B +AQEFAAOCAg8AMIICCgKCAgEA4SUP7o3biDN1Z82tH306Tm2d0y8U82N0ywEhajfqhFAHSyZbCUNs +IZ5qyNUD9WBpj8zwIuQf5/dqIjG3LBXy4P4AakP/h2XGtRrBp0xtInAhijHyl3SJCRImHJ7K2RKi +lTza6We/CKBk49ZCt0Xvl/T29de1ShUCWH2YWEtgvM3XDZoTM1PRYfl61dd4s5oz9wCGzh1NlDiv +qOx4UXCKXBCDUSH3ET00hl7lSM2XgYI1TBnsZfZrxQWh7kcT1rMhJ5QQCtkkO7q+RBNGMD+XPNjX +12ruOzjjK9SXDrkb5wdJfzcq+Xd4z1TtW0ado4AOkUPB1ltfFLqfpo0kR0BZv3I4sjZsN/+Z0V0O +WQqraffAsgRFelQArr5T9rXn4fg8ozHSqf4hUmTFpmfwdQcGlBSBVcYn5AGPF8Fqcde+S/uUWH1+ +ETOxQvdibBjWzwloPn9s9h6PYq2lY9sJpx8iQkEeb5mKPtf5P0B6ebClAZLSnT0IFaUQAS2zMnao +lQ2zepr7BxB4EW/hj8e6DyUadCrlHJhBmd8hh+iVBmoKs2pHdmX2Os+PYhcZewoozRrSgx4hxyy/ +vv9haLdnG7t4TY3OZ+XkwY63I2binZB1NJipNiuKmpS5nezMirH4JYlcWrYvjB9teSSnUmjDhDXi +Zo1jDiVN1Rmy5nk3pyKdVDECAwEAAaNqMGgwHQYDVR0OBBYEFB4M97Zn8uGSJglFwFU5Lnc/Qkqi +MAwGA1UdEwQFMAMBAf8wOQYEZyoHAAQxMC8wLQIBADAJBgUrDgMCGgUAMAcGBWcqAwAABBRFsMLH +ClZ87lt4DJX5GFPBphzYEDANBgkqhkiG9w0BAQUFAAOCAgEACbODU1kBPpVJufGBuvl2ICO1J2B0 +1GqZNF5sAFPZn/KmsSQHRGoqxqWOeBLoR9lYGxMqXnmbnwoqZ6YlPwZpVnPDimZI+ymBV3QGypzq +KOg4ZyYr8dW1P2WT+DZdjo2NQCCHGervJ8A9tDkPJXtoUHRVnAxZfVo9QZQlUgjgRywVMRnVvwdV +xrsStZf0X4OFunHB2WyBEXYKCrC/gpf36j36+uwtqSiUO1bd0lEursC9CBWMd1I0ltabrNMdjmEP +NXubrjlpC2JgQCA2j6/7Nu4tCEoduL+bXPjqpRugc6bY+G7gMwRfaKonh+3ZwZCc7b3jajWvY9+r +GNm65ulK6lCKD2GTHuItGeIwlDWSXQ62B68ZgI9HkFFLLk3dheLSClIKF5r8GrBQAuUBo2M3IUxE +xJtRmREOc5wGj1QupyheRDmHVi03vYVElOEMSyycw5KFNGHLD7ibSkNS/jQ6fbjpKdx2qcgw+BRx +gMYeNkh0IkFch4LoGHGLQYlE535YW6i4jRPpp2zDR+2zGp1iro2C6pSe3VkQw63d4k3jMdXH7Ojy +sP6SHhYKGvzZ8/gntsm+HbRsZJB/9OTEW9c3rkIO3aQab3yIVMUWbuF6aC74Or8NpDyJO3inTmOD +BCEIZ43ygknQW/2xzQ+DhNQ+IIX3Sj0rnP0qCglN6oH4EZw= +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert039.pem b/test/rules/platform_certs/default/cert039.pem new file mode 100644 index 000000000000..3f3078052e62 --- /dev/null +++ b/test/rules/platform_certs/default/cert039.pem @@ -0,0 +1,18 @@ +certSIGN ROOT CA +-----BEGIN CERTIFICATE----- +MIIDODCCAiCgAwIBAgIGIAYFFnACMA0GCSqGSIb3DQEBBQUAMDsxCzAJBgNVBAYTAlJPMREwDwYD +VQQKEwhjZXJ0U0lHTjEZMBcGA1UECxMQY2VydFNJR04gUk9PVCBDQTAeFw0wNjA3MDQxNzIwMDRa +Fw0zMTA3MDQxNzIwMDRaMDsxCzAJBgNVBAYTAlJPMREwDwYDVQQKEwhjZXJ0U0lHTjEZMBcGA1UE +CxMQY2VydFNJR04gUk9PVCBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALczuX7I +JUqOtdu0KBuqV5Do0SLTZLrTk+jUrIZhQGpgV2hUhE28alQCBf/fm5oqrl0Hj0rDKH/v+yv6efHH +rfAQUySQi2bJqIirr1qjAOm+ukbuW3N7LBeCgV5iLKECZbO9xSsAfsT8AzNXDe3i+s5dRdY4zTW2 +ssHQnIFKquSyAVwdj1+ZxLGt24gh65AIgoDzMKND5pCCrlUoSe1b16kQOA7+j0xbm0bqQfWwCHTD +0IgztnzXdN/chNFDDnU5oSVAKOp4yw4sLjmdjItuFhwvJoIQ4uNllAoEwF73XVv4EOLQunpL+943 +AAAaWyjj0pxzPjKHmKHJUS/X3qwzs08CAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8B +Af8EBAMCAcYwHQYDVR0OBBYEFOCMm9slSbPxfIbWskKHC9BroNnkMA0GCSqGSIb3DQEBBQUAA4IB +AQA+0hyJLjX8+HXd5n9liPRyTMks1zJO890ZeUe9jjtbkw9QSSQTaxQGcu8J06Gh40CEyecYMnQ8 +SG4Pn0vU9x7Tk4ZkVJdjclDVVc/6IJMCopvDI5NOFlV2oHB5bc0hH88vLbwZ44gx+FkagQnIl6Z0 +x2DEW8xXjrJ1/RsCCdtZb3KTafcxQdaIOL+Hsr0Wefmq5L6IJd1hJyMctTEHBDa0GpC9oHRxUIlt +vBTjD4au8as+x6AJzKNI0eDbZOeStc+vckNwi/nDhDwTqn6Sm1dTk/pwwpEOMfmbZ13pljheX7Nz +TogVZ96edhBiIL5VaZVDADlN9u6wWk5JRFRYX0KD +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert040.pem b/test/rules/platform_certs/default/cert040.pem new file mode 100644 index 000000000000..1c0ff0054c29 --- /dev/null +++ b/test/rules/platform_certs/default/cert040.pem @@ -0,0 +1,21 @@ +GeoTrust Primary Certification Authority - G3 +-----BEGIN CERTIFICATE----- +MIID/jCCAuagAwIBAgIQFaxulBmyeUtB9iepwxgPHzANBgkqhkiG9w0BAQsFADCBmDELMAkGA1UE +BhMCVVMxFjAUBgNVBAoTDUdlb1RydXN0IEluYy4xOTA3BgNVBAsTMChjKSAyMDA4IEdlb1RydXN0 +IEluYy4gLSBGb3IgYXV0aG9yaXplZCB1c2Ugb25seTE2MDQGA1UEAxMtR2VvVHJ1c3QgUHJpbWFy +eSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEczMB4XDTA4MDQwMjAwMDAwMFoXDTM3MTIwMTIz +NTk1OVowgZgxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMTkwNwYDVQQLEzAo +YykgMjAwOCBHZW9UcnVzdCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxNjA0BgNVBAMT +LUdlb1RydXN0IFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgLSBHMzCCASIwDQYJKoZI +hvcNAQEBBQADggEPADCCAQoCggEBANziXmJYHTNXOTIz+uvLh4yn1ErdBojqZI4xmKU4kB6Yzy5j +K/BGvESyiaHAKAxJcCGVn2TAppMSAmUmhsalifD614SgcK9PGpc/BkTVyetyEH3kMSj7HGHmKAdE +c5IiaacDiGydY8hS2pgn5whMcD60yRLBxWeDXTPzAxHsatBT4tG6NmCUgLthY2xbF37fQJQeqw3C +IShwiP/WJmxsYAQlTlV+fe+/lEjetx3dcI0FX4ilm/LC7urRQEFtYjgdVgbFA0dRIBn8exALDmKu +dlW/X3e+PkkBUz2YJQN2JFodtNuJ6nnltrM7P7pMKEF/BqxqjsHQ9gUdfeZChuOl1UcCAwEAAaNC +MEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFMR5yo6hTgMdHNxr +2zFblD4/MH8tMA0GCSqGSIb3DQEBCwUAA4IBAQAtxRPPVoB7eni9n64smefv2t+UXglpp+duaIy9 +cr5HqQ6XErhK8WTTOd8lNNTBzU6B8A8ExCSzNJbGpqow32hhc9f5joWJ7w5elShKKiePEI4ufIbE +Ap7aDHdlDkQNkv39sxY2+hENHYwOB4lqKVb3cvTdFZx3NWZXqxNT2I7BQMXXExZacse3aQHEerGD +AWh9jUGhlBjBJVz88P6DAod8DQ3PLghcSkANPuyBYeYk28rgDi0Hsj5W3I31QYUHSJsMC8tJP33s +t/3LjWeJGqvtux6jAAgIFyqCXDFdRootD4abdNlF+9RAsXqqaC2Gspki4cErx5z481+oghLrGREt +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert041.pem b/test/rules/platform_certs/default/cert041.pem new file mode 100644 index 000000000000..35274749ac64 --- /dev/null +++ b/test/rules/platform_certs/default/cert041.pem @@ -0,0 +1,15 @@ +thawte Primary Root CA - G2 +-----BEGIN CERTIFICATE----- +MIICiDCCAg2gAwIBAgIQNfwmXNmET8k9Jj1Xm67XVjAKBggqhkjOPQQDAzCBhDELMAkGA1UEBhMC +VVMxFTATBgNVBAoTDHRoYXd0ZSwgSW5jLjE4MDYGA1UECxMvKGMpIDIwMDcgdGhhd3RlLCBJbmMu +IC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxJDAiBgNVBAMTG3RoYXd0ZSBQcmltYXJ5IFJvb3Qg +Q0EgLSBHMjAeFw0wNzExMDUwMDAwMDBaFw0zODAxMTgyMzU5NTlaMIGEMQswCQYDVQQGEwJVUzEV +MBMGA1UEChMMdGhhd3RlLCBJbmMuMTgwNgYDVQQLEy8oYykgMjAwNyB0aGF3dGUsIEluYy4gLSBG +b3IgYXV0aG9yaXplZCB1c2Ugb25seTEkMCIGA1UEAxMbdGhhd3RlIFByaW1hcnkgUm9vdCBDQSAt +IEcyMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAEotWcgnuVnfFSeIf+iha/BebfowJPDQfGAFG6DAJS +LSKkQjnE/o/qycG+1E3/n3qe4rF8mq2nhglzh9HnmuN6papu+7qzcMBniKI11KOasf2twu8x+qi5 +8/sIxpHR+ymVo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQU +mtgAMADna3+FGO6Lts6KDPgR4bswCgYIKoZIzj0EAwMDaQAwZgIxAN344FdHW6fmCsO99YCKlzUN +G4k8VIZ3KMqh9HneteY4sPBlcIx/AlTCv//YoT7ZzwIxAMSNlPzcU9LcnXgWHxUzI1NS41oxXZ3K +rr0TKUQNJ1uo52icEvdYPy5yAlejj6EULg== +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert042.pem b/test/rules/platform_certs/default/cert042.pem new file mode 100644 index 000000000000..c47e14ae28ea --- /dev/null +++ b/test/rules/platform_certs/default/cert042.pem @@ -0,0 +1,22 @@ +thawte Primary Root CA - G3 +-----BEGIN CERTIFICATE----- +MIIEKjCCAxKgAwIBAgIQYAGXt0an6rS0mtZLL/eQ+zANBgkqhkiG9w0BAQsFADCBrjELMAkGA1UE +BhMCVVMxFTATBgNVBAoTDHRoYXd0ZSwgSW5jLjEoMCYGA1UECxMfQ2VydGlmaWNhdGlvbiBTZXJ2 +aWNlcyBEaXZpc2lvbjE4MDYGA1UECxMvKGMpIDIwMDggdGhhd3RlLCBJbmMuIC0gRm9yIGF1dGhv +cml6ZWQgdXNlIG9ubHkxJDAiBgNVBAMTG3RoYXd0ZSBQcmltYXJ5IFJvb3QgQ0EgLSBHMzAeFw0w +ODA0MDIwMDAwMDBaFw0zNzEyMDEyMzU5NTlaMIGuMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMdGhh +d3RlLCBJbmMuMSgwJgYDVQQLEx9DZXJ0aWZpY2F0aW9uIFNlcnZpY2VzIERpdmlzaW9uMTgwNgYD +VQQLEy8oYykgMjAwOCB0aGF3dGUsIEluYy4gLSBGb3IgYXV0aG9yaXplZCB1c2Ugb25seTEkMCIG +A1UEAxMbdGhhd3RlIFByaW1hcnkgUm9vdCBDQSAtIEczMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A +MIIBCgKCAQEAsr8nLPvb2FvdeHsbnndmgcs+vHyu86YnmjSjaDFxODNi5PNxZnmxqWWjpYvVj2At +P0LMqmsywCPLLEHd5N/8YZzic7IilRFDGF/Eth9XbAoFWCLINkw6fKXRz4aviKdEAhN0cXMKQlkC ++BsUa0Lfb1+6a4KinVvnSr0eAXLbS3ToO39/fR8EtCab4LRarEc9VbjXsCZSKAExQGbY2SS99irY +7CFJXJv2eul/VTV+lmuNk5Mny5K76qxAwJ/C+IDPXfRa3M50hqY+bAtTyr2SzhkGcuYMXDhpxwTW +vGzOW/b3aJzcJRVIiKHpqfiYnODz1TEoYRFsZ5aNOZnLwkUkOQIDAQABo0IwQDAPBgNVHRMBAf8E +BTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUrWyqlGCc7eT/+j4KdCtjA/e2Wb8wDQYJ +KoZIhvcNAQELBQADggEBABpA2JVlrAmSicY59BDlqQ5mU1143vokkbvnRFHfxhY0Cu9qRFHqKweK +A3rD6z8KLFIWoCtDuSWQP3CpMyVtRRooOyfPqsMpQhvfO0zAMzRbQYi/aytlryjvsvXDqmbOe1bu +t8jLZ8HJnBoYuMTDSQPxYA5QzUbF83d597YV4Djbxy8ooAw/dyZ02SUS2jHaGh7cKUGRIjxpp7sC +8rZcJwOJ9Abqm+RyguOhCcHpABnTPtRwa7pxpqpYrvS76Wy274fMm7v/OeZWYdMKp8RcTGB7BXcm +er/YB1IsYvdwY9k5vG8cwnncdimvzsUsZAReiDZuMdRAGmI0Nj81Aa6sY6A= +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert043.pem b/test/rules/platform_certs/default/cert043.pem new file mode 100644 index 000000000000..15754c10f138 --- /dev/null +++ b/test/rules/platform_certs/default/cert043.pem @@ -0,0 +1,16 @@ +GeoTrust Primary Certification Authority - G2 +-----BEGIN CERTIFICATE----- +MIICrjCCAjWgAwIBAgIQPLL0SAoA4v7rJDteYD7DazAKBggqhkjOPQQDAzCBmDELMAkGA1UEBhMC +VVMxFjAUBgNVBAoTDUdlb1RydXN0IEluYy4xOTA3BgNVBAsTMChjKSAyMDA3IEdlb1RydXN0IElu +Yy4gLSBGb3IgYXV0aG9yaXplZCB1c2Ugb25seTE2MDQGA1UEAxMtR2VvVHJ1c3QgUHJpbWFyeSBD +ZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEcyMB4XDTA3MTEwNTAwMDAwMFoXDTM4MDExODIzNTk1 +OVowgZgxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMTkwNwYDVQQLEzAoYykg +MjAwNyBHZW9UcnVzdCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxNjA0BgNVBAMTLUdl +b1RydXN0IFByaW1hcnkgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgLSBHMjB2MBAGByqGSM49AgEG +BSuBBAAiA2IABBWx6P0DFUPlrOuHNxFi79KDNlJ9RVcLSo17VDs6bl8VAsBQps8lL33KSLjHUGMc +KiEIfJo22Av+0SbFWDEwKCXzXV2juLaltJLtbCyf691DiaI8S0iRHVDsJt/WYC69IaNCMEAwDwYD +VR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFBVfNVdRVfslsq0DafwBo/q+ +EVXVMAoGCCqGSM49BAMDA2cAMGQCMGSWWaboCd6LuvpaiIjwH5HTRqjySkwCY/tsXzjbLkGTqQ7m +ndwxHLKgpxgceeHHNgIwOlavmnRs9vuD4DPTCF+hnMJbn0bWtsuRBmOiBuczrD6ogRLQy7rQkgu2 +npaqBA+K +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert044.pem b/test/rules/platform_certs/default/cert044.pem new file mode 100644 index 000000000000..570338d6a7ba --- /dev/null +++ b/test/rules/platform_certs/default/cert044.pem @@ -0,0 +1,25 @@ +VeriSign Universal Root Certification Authority +-----BEGIN CERTIFICATE----- +MIIEuTCCA6GgAwIBAgIQQBrEZCGzEyEDDrvkEhrFHTANBgkqhkiG9w0BAQsFADCBvTELMAkGA1UE +BhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZWZXJpU2lnbiBUcnVzdCBO +ZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwOCBWZXJpU2lnbiwgSW5jLiAtIEZvciBhdXRob3JpemVk +IHVzZSBvbmx5MTgwNgYDVQQDEy9WZXJpU2lnbiBVbml2ZXJzYWwgUm9vdCBDZXJ0aWZpY2F0aW9u +IEF1dGhvcml0eTAeFw0wODA0MDIwMDAwMDBaFw0zNzEyMDEyMzU5NTlaMIG9MQswCQYDVQQGEwJV +UzEXMBUGA1UEChMOVmVyaVNpZ24sIEluYy4xHzAdBgNVBAsTFlZlcmlTaWduIFRydXN0IE5ldHdv +cmsxOjA4BgNVBAsTMShjKSAyMDA4IFZlcmlTaWduLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNl +IG9ubHkxODA2BgNVBAMTL1ZlcmlTaWduIFVuaXZlcnNhbCBSb290IENlcnRpZmljYXRpb24gQXV0 +aG9yaXR5MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAx2E3XrEBNNti1xWb/1hajCMj +1mCOkdeQmIN65lgZOIzF9uVkhbSicfvtvbnazU0AtMgtc6XHaXGVHzk8skQHnOgO+k1KxCHfKWGP +MiJhgsWHH26MfF8WIFFE0XBPV+rjHOPMee5Y2A7Cs0WTwCznmhcrewA3ekEzeOEz4vMQGn+HLL72 +9fdC4uW/h2KJXwBL38Xd5HVEMkE6HnFuacsLdUYI0crSK5XQz/u5QGtkjFdN/BMReYTtXlT2NJ8I +AfMQJQYXStrxHXpma5hgZqTZ79IugvHw7wnqRMkVauIDbjPTrJ9VAMf2CGqUuV/c4DPxhGD5WycR +tPwW8rtWaoAljQIDAQABo4GyMIGvMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMG0G +CCsGAQUFBwEMBGEwX6FdoFswWTBXMFUWCWltYWdlL2dpZjAhMB8wBwYFKw4DAhoEFI/l0xqGrI2O +a8PPgGrUSBgsexkuMCUWI2h0dHA6Ly9sb2dvLnZlcmlzaWduLmNvbS92c2xvZ28uZ2lmMB0GA1Ud +DgQWBBS2d/ppSEefUxLVwuoHMnYH0ZcHGTANBgkqhkiG9w0BAQsFAAOCAQEASvj4sAPmLGd75JR3 +Y8xuTPl9Dg3cyLk1uXBPY/ok+myDjEedO2Pzmvl2MpWRsXe8rJq+seQxIcaBlVZaDrHC1LGmWazx +Y8u4TB1ZkErvkBYoH1quEPuBUDgMbMzxPcP1Y+Oz4yHJJDnp/RVmRvQbEdBNc6N9Rvk97ahfYtTx +P/jgdFcrGJ2BtMQo2pSXpXDrrB2+BxHw1dvd5Yzw1TKwg+ZX4o+/vqGqvz0dtdQ46tewXDpPaj+P +wGZsY6rp2aQW9IHRlRQOfc2VNNnSj3BzgXucfr2YYdhFh5iQxeuGMMY1v/D/w1WIg0vvBZIGcfK4 +mJO37M2CYfE45k+XmCpajQ== +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert045.pem b/test/rules/platform_certs/default/cert045.pem new file mode 100644 index 000000000000..426a600f809d --- /dev/null +++ b/test/rules/platform_certs/default/cert045.pem @@ -0,0 +1,19 @@ +VeriSign Class 3 Public Primary Certification Authority - G4 +-----BEGIN CERTIFICATE----- +MIIDhDCCAwqgAwIBAgIQL4D+I4wOIg9IZxIokYesszAKBggqhkjOPQQDAzCByjELMAkGA1UEBhMC +VVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZWZXJpU2lnbiBUcnVzdCBOZXR3 +b3JrMTowOAYDVQQLEzEoYykgMjAwNyBWZXJpU2lnbiwgSW5jLiAtIEZvciBhdXRob3JpemVkIHVz +ZSBvbmx5MUUwQwYDVQQDEzxWZXJpU2lnbiBDbGFzcyAzIFB1YmxpYyBQcmltYXJ5IENlcnRpZmlj +YXRpb24gQXV0aG9yaXR5IC0gRzQwHhcNMDcxMTA1MDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCByjEL +MAkGA1UEBhMCVVMxFzAVBgNVBAoTDlZlcmlTaWduLCBJbmMuMR8wHQYDVQQLExZWZXJpU2lnbiBU +cnVzdCBOZXR3b3JrMTowOAYDVQQLEzEoYykgMjAwNyBWZXJpU2lnbiwgSW5jLiAtIEZvciBhdXRo +b3JpemVkIHVzZSBvbmx5MUUwQwYDVQQDEzxWZXJpU2lnbiBDbGFzcyAzIFB1YmxpYyBQcmltYXJ5 +IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzQwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAASnVnp8 +Utpkmw4tXNherJI9/gHmGUo9FANL+mAnINmDiWn6VMaaGF5VKmTeBvaNSjutEDxlPZCIBIngMGGz +rl0Bp3vefLK+ymVhAIau2o970ImtTR1ZmkGxvEeA3J5iw/mjgbIwga8wDwYDVR0TAQH/BAUwAwEB +/zAOBgNVHQ8BAf8EBAMCAQYwbQYIKwYBBQUHAQwEYTBfoV2gWzBZMFcwVRYJaW1hZ2UvZ2lmMCEw +HzAHBgUrDgMCGgQUj+XTGoasjY5rw8+AatRIGCx7GS4wJRYjaHR0cDovL2xvZ28udmVyaXNpZ24u +Y29tL3ZzbG9nby5naWYwHQYDVR0OBBYEFLMWkf3upm7ktS5Jj4d4gYDs5bG1MAoGCCqGSM49BAMD +A2gAMGUCMGYhDBgmYFo4e1ZC4Kf8NoRRkSAsdk1DPcQdhCPQrNZ8NQbOzWm9kA3bbEhCHQ6qQgIx +AJw9SDkjOVgaFRJZap7v1VmyHVIsmXHNxynfGyphe3HR3vPA5Q06Sqotp9iGKt0uEA== +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert046.pem b/test/rules/platform_certs/default/cert046.pem new file mode 100644 index 000000000000..6333238ed5d0 --- /dev/null +++ b/test/rules/platform_certs/default/cert046.pem @@ -0,0 +1,22 @@ +NetLock Arany (Class Gold) Főtanúsítvány +-----BEGIN CERTIFICATE----- +MIIEFTCCAv2gAwIBAgIGSUEs5AAQMA0GCSqGSIb3DQEBCwUAMIGnMQswCQYDVQQGEwJIVTERMA8G +A1UEBwwIQnVkYXBlc3QxFTATBgNVBAoMDE5ldExvY2sgS2Z0LjE3MDUGA1UECwwuVGFuw7pzw610 +dsOhbnlraWFkw7NrIChDZXJ0aWZpY2F0aW9uIFNlcnZpY2VzKTE1MDMGA1UEAwwsTmV0TG9jayBB +cmFueSAoQ2xhc3MgR29sZCkgRsWRdGFuw7pzw610dsOhbnkwHhcNMDgxMjExMTUwODIxWhcNMjgx +MjA2MTUwODIxWjCBpzELMAkGA1UEBhMCSFUxETAPBgNVBAcMCEJ1ZGFwZXN0MRUwEwYDVQQKDAxO +ZXRMb2NrIEtmdC4xNzA1BgNVBAsMLlRhbsO6c8OtdHbDoW55a2lhZMOzayAoQ2VydGlmaWNhdGlv +biBTZXJ2aWNlcykxNTAzBgNVBAMMLE5ldExvY2sgQXJhbnkgKENsYXNzIEdvbGQpIEbFkXRhbsO6 +c8OtdHbDoW55MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxCRec75LbRTDofTjl5Bu +0jBFHjzuZ9lk4BqKf8owyoPjIMHj9DrTlF8afFttvzBPhCf2nx9JvMaZCpDyD/V/Q4Q3Y1GLeqVw +/HpYzY6b7cNGbIRwXdrzAZAj/E4wqX7hJ2Pn7WQ8oLjJM2P+FpD/sLj916jAwJRDC7bVWaaeVtAk +H3B5r9s5VA1lddkVQZQBr17s9o3x/61k/iCa11zr/qYfCGSji3ZVrR47KGAuhyXoqq8fxmRGILdw +fzzeSNuWU7c5d+Qa4scWhHaXWy+7GRWF+GmF9ZmnqfI0p6m2pgP8b4Y9VHx2BJtr+UBdADTHLpl1 +neWIA6pN+APSQnbAGwIDAKiLo0UwQzASBgNVHRMBAf8ECDAGAQH/AgEEMA4GA1UdDwEB/wQEAwIB +BjAdBgNVHQ4EFgQUzPpnk/C2uNClwB7zU/2MU9+D15YwDQYJKoZIhvcNAQELBQADggEBAKt/7hwW +qZw8UQCgwBEIBaeZ5m8BiFRhbvG5GK1Krf6BQCOUL/t1fC8oS2IkgYIL9WHxHG64YTjrgfpioTta +YtOUZcTh5m2C+C8lcLIhJsFyUR+MLMOEkMNaj7rP9KdlpeuY0fsFskZ1FSNqb4VjMIDw1Z4fKRzC +bLBQWV2QWzuoDTDPv31/zvGdg73JRm4gpvlhUbohL3u+pRVjodSVh/GeufOJ8z2FuLjbvrW5Kfna +NwUASZQDhETnv0Mxz3WLJdH0pmT1kvarBes96aULNmLazAZfNou2XjG4Kvte9nHfRCaexOYNkbQu +dZWAUWpLMKawYqGT8ZvYzsRjdT9ZR7E= +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert047.pem b/test/rules/platform_certs/default/cert047.pem new file mode 100644 index 000000000000..a87baf6a45c8 --- /dev/null +++ b/test/rules/platform_certs/default/cert047.pem @@ -0,0 +1,30 @@ +Staat der Nederlanden Root CA - G2 +-----BEGIN CERTIFICATE----- +MIIFyjCCA7KgAwIBAgIEAJiWjDANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQGEwJOTDEeMBwGA1UE +CgwVU3RhYXQgZGVyIE5lZGVybGFuZGVuMSswKQYDVQQDDCJTdGFhdCBkZXIgTmVkZXJsYW5kZW4g +Um9vdCBDQSAtIEcyMB4XDTA4MDMyNjExMTgxN1oXDTIwMDMyNTExMDMxMFowWjELMAkGA1UEBhMC +TkwxHjAcBgNVBAoMFVN0YWF0IGRlciBOZWRlcmxhbmRlbjErMCkGA1UEAwwiU3RhYXQgZGVyIE5l +ZGVybGFuZGVuIFJvb3QgQ0EgLSBHMjCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMVZ +5291qj5LnLW4rJ4L5PnZyqtdj7U5EILXr1HgO+EASGrP2uEGQxGZqhQlEq0i6ABtQ8SpuOUfiUtn +vWFI7/3S4GCI5bkYYCjDdyutsDeqN95kWSpGV+RLufg3fNU254DBtvPUZ5uW6M7XxgpT0GtJlvOj +CwV3SPcl5XCsMBQgJeN/dVrlSPhOewMHBPqCYYdu8DvEpMfQ9XQ+pV0aCPKbJdL2rAQmPlU6Yiil +e7Iwr/g3wtG61jj99O9JMDeZJiFIhQGp5Rbn3JBV3w/oOM2ZNyFPXfUib2rFEhZgF1XyZWampzCR +OME4HYYEhLoaJXhena/MUGDWE4dS7WMfbWV9whUYdMrhfmQpjHLYFhN9C0lK8SgbIHRrxT3dsKpI +CT0ugpTNGmXZK4iambwYfp/ufWZ8Pr2UuIHOzZgweMFvZ9C+X+Bo7d7iscksWXiSqt8rYGPy5V65 +48r6f1CGPqI0GAwJaCgRHOThuVw+R7oyPxjMW4T182t0xHJ04eOLoEq9jWYv6q012iDTiIJh8BIi +trzQ1aTsr1SIJSQ8p22xcik/Plemf1WvbibG/ufMQFxRRIEKeN5KzlW/HdXZt1bv8Hb/C3m1r737 +qWmRRpdogBQ2HbN/uymYNqUg+oJgYjOk7Na6B6duxc8UpufWkjTYgfX8HV2qXB72o007uPc5AgMB +AAGjgZcwgZQwDwYDVR0TAQH/BAUwAwEB/zBSBgNVHSAESzBJMEcGBFUdIAAwPzA9BggrBgEFBQcC +ARYxaHR0cDovL3d3dy5wa2lvdmVyaGVpZC5ubC9wb2xpY2llcy9yb290LXBvbGljeS1HMjAOBgNV +HQ8BAf8EBAMCAQYwHQYDVR0OBBYEFJFoMocVHYnitfGsNig0jQt8YojrMA0GCSqGSIb3DQEBCwUA +A4ICAQCoQUpnKpKBglBu4dfYszk78wIVCVBR7y29JHuIhjv5tLySCZa59sCrI2AGeYwRTlHSeYAz ++51IvuxBQ4EffkdAHOV6CMqqi3WtFMTC6GY8ggen5ieCWxjmD27ZUD6KQhgpxrRW/FYQoAUXvQwj +f/ST7ZwaUb7dRUG/kSS0H4zpX897IZmflZ85OkYcbPnNe5yQzSipx6lVu6xiNGI1E0sUOlWDuYaN +kqbG9AclVMwWVxJKgnjIFNkXgiYtXSAfea7+1HAWFpWD2DU5/1JddRwWxRNVz0fMdWVSSt7wsKfk +CpYL+63C4iWEst3kvX5ZbJvw8NjnyvLplzh+ib7M+zkXYT9y2zqR2GUBGR2tUKRXCnxLvJxxcypF +URmFzI79R6d0lR2o0a9OF7FpJsKqeFdbxU2n5Z4FF5TKsl+gSRiNNOkmbEgeqmiSBeGCc1qb3Adb +CG19ndeNIdn8FCCqwkXfP+cAslHkwvgFuXkajDTznlvkN1trSt8sV4pAWja63XVECDdCcAz+3F4h +oKOKwJCcaNpQ5kUQR3i2TtJlycM33+FCY7BXN0Ute4qcvwXqZVUz9zkQxSgqIXobisQk+T8VyJoV +IPVVYpbtbZNQvOSqeK3Zywplh6ZmwcSBo3c6WB4L7oOLnR7SUqTMHW+wmG2UMbX4cQrcufx9MmDm +66+KAQ== +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert048.pem b/test/rules/platform_certs/default/cert048.pem new file mode 100644 index 000000000000..7e3c8df25c1a --- /dev/null +++ b/test/rules/platform_certs/default/cert048.pem @@ -0,0 +1,18 @@ +Hongkong Post Root CA 1 +-----BEGIN CERTIFICATE----- +MIIDMDCCAhigAwIBAgICA+gwDQYJKoZIhvcNAQEFBQAwRzELMAkGA1UEBhMCSEsxFjAUBgNVBAoT +DUhvbmdrb25nIFBvc3QxIDAeBgNVBAMTF0hvbmdrb25nIFBvc3QgUm9vdCBDQSAxMB4XDTAzMDUx +NTA1MTMxNFoXDTIzMDUxNTA0NTIyOVowRzELMAkGA1UEBhMCSEsxFjAUBgNVBAoTDUhvbmdrb25n +IFBvc3QxIDAeBgNVBAMTF0hvbmdrb25nIFBvc3QgUm9vdCBDQSAxMIIBIjANBgkqhkiG9w0BAQEF +AAOCAQ8AMIIBCgKCAQEArP84tulmAknjorThkPlAj3n54r15/gK97iSSHSL22oVyaf7XPwnU3ZG1 +ApzQjVrhVcNQhrkpJsLj2aDxaQMoIIBFIi1WpztUlVYiWR8o3x8gPW2iNr4joLFutbEnPzlTCeqr +auh0ssJlXI6/fMN4hM2eFvz1Lk8gKgifd/PFHsSaUmYeSF7jEAaPIpjhZY4bXSNmO7ilMlHIhqqh +qZ5/dpTCpmy3QfDVyAY45tQM4vM7TG1QjMSDJ8EThFk9nnV0ttgCXjqQesBCNnLsak3c78QA3xMY +V18meMjWCnl3v/evt3a5pQuEF10Q6m/hq5URX208o1xNg1vysxmKgIsLhwIDAQABoyYwJDASBgNV +HRMBAf8ECDAGAQH/AgEDMA4GA1UdDwEB/wQEAwIBxjANBgkqhkiG9w0BAQUFAAOCAQEADkbVPK7i +h9legYsCmEEIjEy82tvuJxuC52pF7BaLT4Wg87JwvVqWuspube5Gi27nKi6Wsxkz67SfqLI37pio +l7Yutmcn1KZJ/RyTZXaeQi/cImyaT/JaFTmxcdcrUehtHJjA2Sr0oYJ71clBoiMBdDhViw+5Lmei +IAQ32pwL0xch4I+XeTRvhEgCIDMb5jREn5Fw9IBehEPCKdJsEhTkYY2sEJCehFC78JZvRZ+K88ps +T/oROhUVRsPNH4NbLUES7VBnQRM9IauUiqpOfMGx+6fWtScvl6tu4B3i0RwsH0Ti/L6RoZz71ilT +c4afU9hDDl3WY4JxHYB0yvbiAmvZWg== +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert049.pem b/test/rules/platform_certs/default/cert049.pem new file mode 100644 index 000000000000..6bea4b13da3d --- /dev/null +++ b/test/rules/platform_certs/default/cert049.pem @@ -0,0 +1,19 @@ +SecureSign RootCA11 +-----BEGIN CERTIFICATE----- +MIIDbTCCAlWgAwIBAgIBATANBgkqhkiG9w0BAQUFADBYMQswCQYDVQQGEwJKUDErMCkGA1UEChMi +SmFwYW4gQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcywgSW5jLjEcMBoGA1UEAxMTU2VjdXJlU2lnbiBS +b290Q0ExMTAeFw0wOTA0MDgwNDU2NDdaFw0yOTA0MDgwNDU2NDdaMFgxCzAJBgNVBAYTAkpQMSsw +KQYDVQQKEyJKYXBhbiBDZXJ0aWZpY2F0aW9uIFNlcnZpY2VzLCBJbmMuMRwwGgYDVQQDExNTZWN1 +cmVTaWduIFJvb3RDQTExMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA/XeqpRyQBTvL +TJszi1oURaTnkBbR31fSIRCkF/3frNYfp+TbfPfs37gD2pRY/V1yfIw/XwFndBWW4wI8h9uuywGO +wvNmxoVF9ALGOrVisq/6nL+k5tSAMJjzDbaTj6nU2DbysPyKyiyhFTOVMdrAG/LuYpmGYz+/3ZMq +g6h2uRMft85OQoWPIucuGvKVCbIFtUROd6EgvanyTgp9UK31BQ1FT0Zx/Sg+U/sE2C3XZR1KG/rP +O7AxmjVuyIsG0wCR8pQIZUyxNAYAeoni8McDWc/V1uinMrPmmECGxc0nEovMe863ETxiYAcjPitA +bpSACW22s293bzUIUPsCh8U+iQIDAQABo0IwQDAdBgNVHQ4EFgQUW/hNT7KlhtQ60vFjmqC+CfZX +t94wDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEBAKCh +OBZmLqdWHyGcBvod7bkixTgm2E5P7KN/ed5GIaGHd48HCJqypMWvDzKYC3xmKbabfSVSSUOrTC4r +bnpwrxYO4wJs+0LmGJ1F2FXI6Dvd5+H0LgscNFxsWEr7jIhQX5Ucv+2rIrVls4W6ng+4reV6G4pQ +Oh29Dbx7VFALuUKvVaAYga1lme++5Jy/xIWrQbJUb9wlze144o4MjQlJ3WN7WmmWAiGovVJZ6X01 +y8hSyn+B/tlr0/cR7SXf+Of5pPpyl4RTDaXQMhhRdlkUbA/r7F+AjHVDg8OFmP9Mni0N5HeDk061 +lgeLKBObjBmNQSdJQO7e5iNEOdyhIta6A/I= +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert050.pem b/test/rules/platform_certs/default/cert050.pem new file mode 100644 index 000000000000..23de03568974 --- /dev/null +++ b/test/rules/platform_certs/default/cert050.pem @@ -0,0 +1,22 @@ +Microsec e-Szigno Root CA 2009 +-----BEGIN CERTIFICATE----- +MIIECjCCAvKgAwIBAgIJAMJ+QwRORz8ZMA0GCSqGSIb3DQEBCwUAMIGCMQswCQYDVQQGEwJIVTER +MA8GA1UEBwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xJzAlBgNVBAMMHk1pY3Jv +c2VjIGUtU3ppZ25vIFJvb3QgQ0EgMjAwOTEfMB0GCSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5o +dTAeFw0wOTA2MTYxMTMwMThaFw0yOTEyMzAxMTMwMThaMIGCMQswCQYDVQQGEwJIVTERMA8GA1UE +BwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xJzAlBgNVBAMMHk1pY3Jvc2VjIGUt +U3ppZ25vIFJvb3QgQ0EgMjAwOTEfMB0GCSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5odTCCASIw +DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOn4j/NjrdqG2KfgQvvPkd6mJviZpWNwrZuuyjNA +fW2WbqEORO7hE52UQlKavXWFdCyoDh2Tthi3jCyoz/tccbna7P7ofo/kLx2yqHWH2Leh5TvPmUpG +0IMZfcChEhyVbUr02MelTTMuhTlAdX4UfIASmFDHQWe4oIBhVKZsTh/gnQ4H6cm6M+f+wFUoLAKA +pxn1ntxVUwOXewdI/5n7N4okxFnMUBBjjqqpGrCEGob5X7uxUG6k0QrM1XF+H6cbfPVTbiJfyyvm +1HxdrtbCxkzlBQHZ7Vf8wSN5/PrIJIOV87VqUQHQd9bpEqH5GoP7ghu5sJf0dgYzQ0mg/wu1+rUC +AwEAAaOBgDB+MA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBTLD8bf +QkPMPcu1SCOhGnqmKrs0aDAfBgNVHSMEGDAWgBTLD8bfQkPMPcu1SCOhGnqmKrs0aDAbBgNVHREE +FDASgRBpbmZvQGUtc3ppZ25vLmh1MA0GCSqGSIb3DQEBCwUAA4IBAQDJ0Q5eLtXMs3w+y/w9/w0o +lZMEyL/azXm4Q5DwpL7v8u8hmLzU1F0G9u5C7DBsoKqpyvGvivo/C3NqPuouQH4frlRheesuCDfX +I/OMn74dseGkddug4lQUsbocKaQY9hK6ohQU4zE1yED/t+AFdlfBHFny+L/k7SViXITwfn4fs775 +tyERzAMBVnCnEJIeGzSBHq2cGsMEPO0CYdYeBvNfOofyK/FFh+U9rNHHV4S9a67c2Pm2G2JwCz02 +yULyMtd6YebS2z3PyKnJm9zbWETXbzivf3jTo60adbocwTZ8jx5tHMN1Rq41Bab2XD0h7lbwyYIi +LXpUq3DDfSJlgnCW +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert051.pem b/test/rules/platform_certs/default/cert051.pem new file mode 100644 index 000000000000..7917400e8383 --- /dev/null +++ b/test/rules/platform_certs/default/cert051.pem @@ -0,0 +1,19 @@ +GlobalSign Root CA - R3 +-----BEGIN CERTIFICATE----- +MIIDXzCCAkegAwIBAgILBAAAAAABIVhTCKIwDQYJKoZIhvcNAQELBQAwTDEgMB4GA1UECxMXR2xv +YmFsU2lnbiBSb290IENBIC0gUjMxEzARBgNVBAoTCkdsb2JhbFNpZ24xEzARBgNVBAMTCkdsb2Jh +bFNpZ24wHhcNMDkwMzE4MTAwMDAwWhcNMjkwMzE4MTAwMDAwWjBMMSAwHgYDVQQLExdHbG9iYWxT +aWduIFJvb3QgQ0EgLSBSMzETMBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2ln +bjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMwldpB5BngiFvXAg7aEyiie/QV2EcWt +iHL8RgJDx7KKnQRfJMsuS+FggkbhUqsMgUdwbN1k0ev1LKMPgj0MK66X17YUhhB5uzsTgHeMCOFJ +0mpiLx9e+pZo34knlTifBtc+ycsmWQ1z3rDI6SYOgxXG71uL0gRgykmmKPZpO/bLyCiR5Z2KYVc3 +rHQU3HTgOu5yLy6c+9C7v/U9AOEGM+iCK65TpjoWc4zdQQ4gOsC0p6Hpsk+QLjJg6VfLuQSSaGjl +OCZgdbKfd/+RFO+uIEn8rUAVSNECMWEZXriX7613t2Saer9fwRPvm2L7DWzgVGkWqQPabumDk3F2 +xmmFghcCAwEAAaNCMEAwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYE +FI/wS3+oLkUkrk1Q+mOai97i3Ru8MA0GCSqGSIb3DQEBCwUAA4IBAQBLQNvAUKr+yAzv95ZURUm7 +lgAJQayzE4aGKAczymvmdLm6AC2upArT9fHxD4q/c2dKg8dEe3jgr25sbwMpjjM5RcOO5LlXbKr8 +EpbsU8Yt5CRsuZRj+9xTaGdWPoO4zzUhw8lo/s7awlOqzJCK6fBdRoyV3XpYKBovHd7NADdBj+1E +bddTKJd+82cEHhXXipa0095MJ6RMG3NzdvQXmcIfeg7jLQitChws/zyrVQ4PkX4268NXSb7hLi18 +YIvDQVETI53O9zJrlAGomecsMx86OyXShkDOOyyGeMlhLxS67ttVb9+E7gUJTb0o2HLO02JQZR7r +kpeDMdmztcpHWD9f +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert052.pem b/test/rules/platform_certs/default/cert052.pem new file mode 100644 index 000000000000..751d1d493329 --- /dev/null +++ b/test/rules/platform_certs/default/cert052.pem @@ -0,0 +1,31 @@ +Autoridad de Certificacion Firmaprofesional CIF A62634068 +-----BEGIN CERTIFICATE----- +MIIGFDCCA/ygAwIBAgIIU+w77vuySF8wDQYJKoZIhvcNAQEFBQAwUTELMAkGA1UEBhMCRVMxQjBA +BgNVBAMMOUF1dG9yaWRhZCBkZSBDZXJ0aWZpY2FjaW9uIEZpcm1hcHJvZmVzaW9uYWwgQ0lGIEE2 +MjYzNDA2ODAeFw0wOTA1MjAwODM4MTVaFw0zMDEyMzEwODM4MTVaMFExCzAJBgNVBAYTAkVTMUIw +QAYDVQQDDDlBdXRvcmlkYWQgZGUgQ2VydGlmaWNhY2lvbiBGaXJtYXByb2Zlc2lvbmFsIENJRiBB +NjI2MzQwNjgwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDKlmuO6vj78aI14H9M2uDD +Utd9thDIAl6zQyrET2qyyhxdKJp4ERppWVevtSBC5IsP5t9bpgOSL/UR5GLXMnE42QQMcas9UX4P +B99jBVzpv5RvwSmCwLTaUbDBPLutN0pcyvFLNg4kq7/DhHf9qFD0sefGL9ItWY16Ck6WaVICqjaY +7Pz6FIMMNx/Jkjd/14Et5cS54D40/mf0PmbR0/RAz15iNA9wBj4gGFrO93IbJWyTdBSTo3OxDqqH +ECNZXyAFGUftaI6SEspd/NYrspI8IM/hX68gvqB2f3bl7BqGYTM+53u0P6APjqK5am+5hyZvQWyI +plD9amML9ZMWGxmPsu2bm8mQ9QEM3xk9Dz44I8kvjwzRAv4bVdZO0I08r0+k8/6vKtMFnXkIoctX +MbScyJCyZ/QYFpM6/EfY0XiWMR+6KwxfXZmtY4laJCB22N/9q06mIqqdXuYnin1oKaPnirjaEbsX +LZmdEyRG98Xi2J+Of8ePdG1asuhy9azuJBCtLxTa/y2aRnFHvkLfuwHb9H/TKI8xWVvTyQKmtFLK +bpf7Q8UIJm+K9Lv9nyiqDdVF8xM6HdjAeI9BZzwelGSuewvF6NkBiDkal4ZkQdU7hwxu+g/GvUgU +vzlN1J5Bto+WHWOWk9mVBngxaJ43BjuAiUVhOSPHG0SjFeUc+JIwuwIDAQABo4HvMIHsMBIGA1Ud +EwEB/wQIMAYBAf8CAQEwDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBRlzeurNR4APn7VdMActHNH +DhpkLzCBpgYDVR0gBIGeMIGbMIGYBgRVHSAAMIGPMC8GCCsGAQUFBwIBFiNodHRwOi8vd3d3LmZp +cm1hcHJvZmVzaW9uYWwuY29tL2NwczBcBggrBgEFBQcCAjBQHk4AUABhAHMAZQBvACAAZABlACAA +bABhACAAQgBvAG4AYQBuAG8AdgBhACAANAA3ACAAQgBhAHIAYwBlAGwAbwBuAGEAIAAwADgAMAAx +ADcwDQYJKoZIhvcNAQEFBQADggIBABd9oPm03cXF661LJLWhAqvdpYhKsg9VSytXjDvlMd3+xDLx +51tkljYyGOylMnfX40S2wBEqgLk9am58m9Ot/MPWo+ZkKXzR4Tgegiv/J2Wv+xYVxC5xhOW1//qk +R71kMrv2JYSiJ0L1ILDCExARzRAVukKQKtJE4ZYm6zFIEv0q2skGz3QeqUvVhyj5eTSSPi5E6PaP +T481PyWzOdxjKpBrIF/EUhJOlywqrJ2X3kjyo2bbwtKDlaZmp54lD+kLM5FlClrD2VQS3a/DTg4f +Jl4N3LON7NWBcN7STyQF82xO9UxJZo3R/9ILJUFI/lGExkKvgATP0H5kSeTy36LssUzAKh3ntLFl +osS88Zj0qnAHY7S42jtM+kAiMFsRpvAFDsYCA0irhpuF3dvd6qJ2gHN99ZwExEWN57kci57q13XR +crHedUTnQn3iV2t93Jm8PYMo6oCTjcVMZcFwgbg4/EMxsvYDNEeyrPsiBsse3RdHHF9mudMaotoR +saS8I8nkvof/uZS2+F0gStRf571oe2XyFR7SOqkt6dhrJKyXWERHrVkY8SFlcN7ONGCoQPHzPKTD +KCOM/iczQ0CgFzzr6juwcqajuUpLXhZI9LK8yIySxZ2frHI2vDSANGupi5LAuBft7HZT9SQBjLMi +6Et8Vcad+qMUu2WFbm5PEn4KPJ2V +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert053.pem b/test/rules/platform_certs/default/cert053.pem new file mode 100644 index 000000000000..52e7459c17f3 --- /dev/null +++ b/test/rules/platform_certs/default/cert053.pem @@ -0,0 +1,30 @@ +Izenpe.com +-----BEGIN CERTIFICATE----- +MIIF8TCCA9mgAwIBAgIQALC3WhZIX7/hy/WL1xnmfTANBgkqhkiG9w0BAQsFADA4MQswCQYDVQQG +EwJFUzEUMBIGA1UECgwLSVpFTlBFIFMuQS4xEzARBgNVBAMMCkl6ZW5wZS5jb20wHhcNMDcxMjEz +MTMwODI4WhcNMzcxMjEzMDgyNzI1WjA4MQswCQYDVQQGEwJFUzEUMBIGA1UECgwLSVpFTlBFIFMu +QS4xEzARBgNVBAMMCkl6ZW5wZS5jb20wggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDJ +03rKDx6sp4boFmVqscIbRTJxldn+EFvMr+eleQGPicPK8lVx93e+d5TzcqQsRNiekpsUOqHnJJAK +ClaOxdgmlOHZSOEtPtoKct2jmRXagaKH9HtuJneJWK3W6wyyQXpzbm3benhB6QiIEn6HLmYRY2xU ++zydcsC8Lv/Ct90NduM61/e0aL6i9eOBbsFGb12N4E3GVFWJGjMxCrFXuaOKmMPsOzTFlUFpfnXC +PCDFYbpRR6AgkJOhkEvzTnyFRVSa0QUmQbC1TR0zvsQDyCV8wXDbO/QJLVQnSKwv4cSsPsjLkkxT +OTcj7NMB+eAJRE1NZMDhDVqHIrytG6P+JrUV86f8hBnp7KGItERphIPzidF0BqnMC9bC3ieFUCbK +F7jJeodWLBoBHmy+E60QrLUk9TiRodZL2vG70t5HtfG8gfZZa88ZU+mNFctKy6lvROUbQc/hhqfK +0GqfvEyNBjNaooXlkDWgYlwWTvDjovoDGrQscbNYLN57C9saD+veIR8GdwYDsMnvmfzAuU8Lhij+ +0rnq49qlw0dpEuDb8PYZi+17cNcC1u2HGCgsBCRMd+RIihrGO5rUD8r6ddIBQFqNeb+Lz0vPqhbB +leStTIo+F5HUsWLlguWABKQDfo2/2n+iD5dPDNMN+9fR5XJ+HMh3/1uaD7euBUbl8agW7EekFwID +AQABo4H2MIHzMIGwBgNVHREEgagwgaWBD2luZm9AaXplbnBlLmNvbaSBkTCBjjFHMEUGA1UECgw+ +SVpFTlBFIFMuQS4gLSBDSUYgQTAxMzM3MjYwLVJNZXJjLlZpdG9yaWEtR2FzdGVpeiBUMTA1NSBG +NjIgUzgxQzBBBgNVBAkMOkF2ZGEgZGVsIE1lZGl0ZXJyYW5lbyBFdG9yYmlkZWEgMTQgLSAwMTAx +MCBWaXRvcmlhLUdhc3RlaXowDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0O +BBYEFB0cZQ6o8iV7tJHP5LGx5r1VdGwFMA0GCSqGSIb3DQEBCwUAA4ICAQB4pgwWSp9MiDrAyw6l +Fn2fuUhfGI8NYjb2zRlrrKvV9pF9rnHzP7MOeIWblaQnIUdCSnxIOvVFfLMMjlF4rJUT3sb9fbga +kEyrkgPH7UIBzg/YsfqikuFgba56awmqxinuaElnMIAkejEWOVt+8Rwu3WwJrfIxwYJOubv5vr8q +hT/AQKM6WfxZSzwoJNu0FXWuDYi6LnPAvViH5ULy617uHjAimcs30cQhbIHsvm0m5hzkQiCeR7Cs +g1lwLDXWrzY0tM07+DKo7+N4ifuNRSzanLh+QBxh5z6ikixL8s36mLYp//Pye6kfLqCTVyvehQP5 +aTfLnnhqBbTFMXiJ7HqnheG5ezzevh55hM6fcA5ZwjUukCox2eRFekGkLhObNA5me0mrZJfQRsN5 +nXJQY6aYWwa9SG3YOYNw6DXwBdGqvOPbyALqfP2C2sJbUjWumDqtujWTI6cfSN01RpiyEGjkpTHC +ClguGYEQyVB1/OpaFs4R1+7vUIgtYf8/QnMFlEPVjjxOAToZpR9GTnfQXeWBIiGH/pR9hNiTrdZo +Q0iy2+tzJOeRf1SktoA+naM8THLCV8Sg1Mw4J87VBp6iSNnpn86CcDaTmjvfliHjWbcM2pE38P1Z +WrOZyGlsQyYBNWNgVYkDOnXYukrZVP/u3oDYLdE41V4tC5h9Pmzb/CaIxw== +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert054.pem b/test/rules/platform_certs/default/cert054.pem new file mode 100644 index 000000000000..ba9343141530 --- /dev/null +++ b/test/rules/platform_certs/default/cert054.pem @@ -0,0 +1,36 @@ +Chambers of Commerce Root - 2008 +-----BEGIN CERTIFICATE----- +MIIHTzCCBTegAwIBAgIJAKPaQn6ksa7aMA0GCSqGSIb3DQEBBQUAMIGuMQswCQYDVQQGEwJFVTFD +MEEGA1UEBxM6TWFkcmlkIChzZWUgY3VycmVudCBhZGRyZXNzIGF0IHd3dy5jYW1lcmZpcm1hLmNv +bS9hZGRyZXNzKTESMBAGA1UEBRMJQTgyNzQzMjg3MRswGQYDVQQKExJBQyBDYW1lcmZpcm1hIFMu +QS4xKTAnBgNVBAMTIENoYW1iZXJzIG9mIENvbW1lcmNlIFJvb3QgLSAyMDA4MB4XDTA4MDgwMTEy +Mjk1MFoXDTM4MDczMTEyMjk1MFowga4xCzAJBgNVBAYTAkVVMUMwQQYDVQQHEzpNYWRyaWQgKHNl +ZSBjdXJyZW50IGFkZHJlc3MgYXQgd3d3LmNhbWVyZmlybWEuY29tL2FkZHJlc3MpMRIwEAYDVQQF +EwlBODI3NDMyODcxGzAZBgNVBAoTEkFDIENhbWVyZmlybWEgUy5BLjEpMCcGA1UEAxMgQ2hhbWJl +cnMgb2YgQ29tbWVyY2UgUm9vdCAtIDIwMDgwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoIC +AQCvAMtwNyuAWko6bHiUfaN/Gh/2NdW928sNRHI+JrKQUrpjOyhYb6WzbZSm891kDFX29ufyIiKA +XuFixrYp4YFs8r/lfTJqVKAyGVn+H4vXPWCGhSRv4xGzdz4gljUha7MI2XAuZPeEklPWDrCQiorj +h40G072QDuKZoRuGDtqaCrsLYVAGUvGef3bsyw/QHg3PmTA9HMRFEFis1tPo1+XqxQEHd9ZR5gN/ +ikilTWh1uem8nk4ZcfUyS5xtYBkL+8ydddy/Js2Pk3g5eXNeJQ7KXOt3EgfLZEFHcpOrUMPrCXZk +NNI5t3YRCQ12RcSprj1qr7V9ZS+UWBDsXHyvfuK2GNnQm05aSd+pZgvMPMZ4fKecHePOjlO+Bd5g +D2vlGts/4+EhySnB8esHnFIbAURRPHsl18TlUlRdJQfKFiC4reRB7noI/plvg6aRArBsNlVq5331 +lubKgdaX8ZSD6e2wsWsSaR6s+12pxZjptFtYer49okQ6Y1nUCyXeG0+95QGezdIp1Z8XGQpvvwyQ +0wlf2eOKNcx5Wk0ZN5K3xMGtr/R5JJqyAQuxr1yW84Ay+1w9mPGgP0revq+ULtlVmhduYJ1jbLhj +ya6BXBg14JC7vjxPNyK5fuvPnnchpj04gftI2jE9K+OJ9dC1vX7gUMQSibMjmhAxhduub+84Mxh2 +EQIDAQABo4IBbDCCAWgwEgYDVR0TAQH/BAgwBgEB/wIBDDAdBgNVHQ4EFgQU+SSsD7K1+HnA+mCI +G8TZTQKeFxkwgeMGA1UdIwSB2zCB2IAU+SSsD7K1+HnA+mCIG8TZTQKeFxmhgbSkgbEwga4xCzAJ +BgNVBAYTAkVVMUMwQQYDVQQHEzpNYWRyaWQgKHNlZSBjdXJyZW50IGFkZHJlc3MgYXQgd3d3LmNh +bWVyZmlybWEuY29tL2FkZHJlc3MpMRIwEAYDVQQFEwlBODI3NDMyODcxGzAZBgNVBAoTEkFDIENh +bWVyZmlybWEgUy5BLjEpMCcGA1UEAxMgQ2hhbWJlcnMgb2YgQ29tbWVyY2UgUm9vdCAtIDIwMDiC +CQCj2kJ+pLGu2jAOBgNVHQ8BAf8EBAMCAQYwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYIKwYBBQUH +AgEWHGh0dHA6Ly9wb2xpY3kuY2FtZXJmaXJtYS5jb20wDQYJKoZIhvcNAQEFBQADggIBAJASryI1 +wqM58C7e6bXpeHxIvj99RZJe6dqxGfwWPJ+0W2aeaufDuV2I6A+tzyMP3iU6XsxPpcG1Lawk0lgH +3qLPaYRgM+gQDROpI9CF5Y57pp49chNyM/WqfcZjHwj0/gF/JM8rLFQJ3uIrbZLGOU8W6jx+ekbU +RWpGqOt1glanq6B8aBMz9p0w8G8nOSQjKpD9kCk18pPfNKXG9/jvjA9iSnyu0/VU+I22mlaHFoI6 +M6taIgj3grrqLuBHmrS1RaMFO9ncLkVAO+rcf+g769HsJtg1pDDFOqxXnrN2pSB7+R5KBWIBpih1 +YJeSDW4+TTdDDZIVnBgizVGZoCkaPF+KMjNbMMeJL0eYD6MDxvbxrN8y8NmBGuScvfaAFPDRLLmF +9dijscilIeUcE5fuDr3fKanvNFNb0+RqE4QGtjICxFKuItLcsiFCGtpA8CnJ7AoMXOLQusxI0zcK +zBIKinmwPQN/aUv0NCB9szTqjktk9T79syNnFQ0EuPAtwQlRPLJsFfClI9eDdOTlLsn+mCdCxqvG +nrDQWzilm1DefhiYtUU79nm06PcaewaD+9CL2rvHvRirCG88gGtAPxkZumWK5r7VXNM21+9AUiRg +OGcEMeyP84LG3rlV8zsxkVrctQgVrXYlCg17LofiDKYGvCYQbTed7N14jHyAxfDZd0jQ +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert055.pem b/test/rules/platform_certs/default/cert055.pem new file mode 100644 index 000000000000..45aa496004c0 --- /dev/null +++ b/test/rules/platform_certs/default/cert055.pem @@ -0,0 +1,36 @@ +Global Chambersign Root - 2008 +-----BEGIN CERTIFICATE----- +MIIHSTCCBTGgAwIBAgIJAMnN0+nVfSPOMA0GCSqGSIb3DQEBBQUAMIGsMQswCQYDVQQGEwJFVTFD +MEEGA1UEBxM6TWFkcmlkIChzZWUgY3VycmVudCBhZGRyZXNzIGF0IHd3dy5jYW1lcmZpcm1hLmNv +bS9hZGRyZXNzKTESMBAGA1UEBRMJQTgyNzQzMjg3MRswGQYDVQQKExJBQyBDYW1lcmZpcm1hIFMu +QS4xJzAlBgNVBAMTHkdsb2JhbCBDaGFtYmVyc2lnbiBSb290IC0gMjAwODAeFw0wODA4MDExMjMx +NDBaFw0zODA3MzExMjMxNDBaMIGsMQswCQYDVQQGEwJFVTFDMEEGA1UEBxM6TWFkcmlkIChzZWUg +Y3VycmVudCBhZGRyZXNzIGF0IHd3dy5jYW1lcmZpcm1hLmNvbS9hZGRyZXNzKTESMBAGA1UEBRMJ +QTgyNzQzMjg3MRswGQYDVQQKExJBQyBDYW1lcmZpcm1hIFMuQS4xJzAlBgNVBAMTHkdsb2JhbCBD +aGFtYmVyc2lnbiBSb290IC0gMjAwODCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMDf +VtPkOpt2RbQT2//BthmLN0EYlVJH6xedKYiONWwGMi5HYvNJBL99RDaxccy9Wglz1dmFRP+RVyXf +XjaOcNFccUMd2drvXNL7G706tcuto8xEpw2uIRU/uXpbknXYpBI4iRmKt4DS4jJvVpyR1ogQC7N0 +ZJJ0YPP2zxhPYLIj0Mc7zmFLmY/CDNBAspjcDahOo7kKrmCgrUVSY7pmvWjg+b4aqIG7HkF4ddPB +/gBVsIdU6CeQNR1MM62X/JcumIS/LMmjv9GYERTtY/jKmIhYF5ntRQOXfjyGHoiMvvKRhI9lNNgA +TH23MRdaKXoKGCQwoze1eqkBfSbW+Q6OWfH9GzO1KTsXO0G2Id3UwD2ln58fQ1DJu7xsepeY7s2M +H/ucUa6LcL0nn3HAa6x9kGbo1106DbDVwo3VyJ2dwW3Q0L9R5OP4wzg2rtandeavhENdk5IMagfe +Ox2YItaswTXbo6Al/3K1dh3ebeksZixShNBFks4c5eUzHdwHU1SjqoI7mjcv3N2gZOnm3b2u/GSF +HTynyQbehP9r6GsaPMWis0L7iwk+XwhSx2LE1AVxv8Rk5Pihg+g+EpuoHtQ2TS9x9o0o9oOpE9Jh +wZG7SMA0j0GMS0zbaRL/UJScIINZc+18ofLx/d33SdNDWKBWY8o9PeU1VlnpDsogzCtLkykPAgMB +AAGjggFqMIIBZjASBgNVHRMBAf8ECDAGAQH/AgEMMB0GA1UdDgQWBBS5CcqcHtvTbDprru1U8VuT +BjUuXjCB4QYDVR0jBIHZMIHWgBS5CcqcHtvTbDprru1U8VuTBjUuXqGBsqSBrzCBrDELMAkGA1UE +BhMCRVUxQzBBBgNVBAcTOk1hZHJpZCAoc2VlIGN1cnJlbnQgYWRkcmVzcyBhdCB3d3cuY2FtZXJm +aXJtYS5jb20vYWRkcmVzcykxEjAQBgNVBAUTCUE4Mjc0MzI4NzEbMBkGA1UEChMSQUMgQ2FtZXJm +aXJtYSBTLkEuMScwJQYDVQQDEx5HbG9iYWwgQ2hhbWJlcnNpZ24gUm9vdCAtIDIwMDiCCQDJzdPp +1X0jzjAOBgNVHQ8BAf8EBAMCAQYwPQYDVR0gBDYwNDAyBgRVHSAAMCowKAYIKwYBBQUHAgEWHGh0 +dHA6Ly9wb2xpY3kuY2FtZXJmaXJtYS5jb20wDQYJKoZIhvcNAQEFBQADggIBAICIf3DekijZBZRG +/5BXqfEv3xoNa/p8DhxJJHkn2EaqbylZUohwEurdPfWbU1Rv4WCiqAm57OtZfMY18dwY6fFn5a+6 +ReAJ3spED8IXDneRRXozX1+WLGiLwUePmJs9wOzL9dWCkoQ10b42OFZyMVtHLaoXpGNR6woBrX/s +dZ7LoR/xfxKxueRkf2fWIyr0uDldmOghp+G9PUIadJpwr2hsUF1Jz//7Dl3mLEfXgTpZALVza2Mg +9jFFCDkO9HB+QHBaP9BrQql0PSgvAm11cpUJjUhjxsYjV5KTXjXBjfkK9yydYhz2rXzdpjEetrHH +foUm+qRqtdpjMNHvkzeyZi99Bffnt0uYlDXA2TopwZ2yUDMdSqlapskD7+3056huirRXhOukP9Du +qqqHW2Pok+JrqNS4cnhrG+055F3Lm6qH1U9OAP7Zap88MQ8oAgF9mOinsKJknnn4SPIVqczmyETr +P3iZ8ntxPjzxmKfFGBI/5rsoM0LpRQp8bfKGeS/Fghl9CYl8slR2iK7ewfPM4W7bMdaTrpmg7yVq +c5iJWzouE4gev8CSlDQb4ye3ix5vQv/n6TebUB0tovkC7stYWDpxvGjjqsGvHCgfotwjZT+B6q6Z +09gwzxMNTxXJhLynSC34MCN32EZLeW32jO06f2ARePTpm67VVMB0gNELQp/B +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert056.pem b/test/rules/platform_certs/default/cert056.pem new file mode 100644 index 000000000000..f95b11bf2c15 --- /dev/null +++ b/test/rules/platform_certs/default/cert056.pem @@ -0,0 +1,20 @@ +Go Daddy Root Certificate Authority - G2 +-----BEGIN CERTIFICATE----- +MIIDxTCCAq2gAwIBAgIBADANBgkqhkiG9w0BAQsFADCBgzELMAkGA1UEBhMCVVMxEDAOBgNVBAgT +B0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxGjAYBgNVBAoTEUdvRGFkZHkuY29tLCBJbmMu +MTEwLwYDVQQDEyhHbyBEYWRkeSBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTA5 +MDkwMTAwMDAwMFoXDTM3MTIzMTIzNTk1OVowgYMxCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6 +b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMRowGAYDVQQKExFHb0RhZGR5LmNvbSwgSW5jLjExMC8G +A1UEAxMoR28gRGFkZHkgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgLSBHMjCCASIwDQYJKoZI +hvcNAQEBBQADggEPADCCAQoCggEBAL9xYgjx+lk09xvJGKP3gElY6SKDE6bFIEMBO4Tx5oVJnyfq +9oQbTqC023CYxzIBsQU+B07u9PpPL1kwIuerGVZr4oAH/PMWdYA5UXvl+TW2dE6pjYIT5LY/qQOD ++qK+ihVqf94Lw7YZFAXK6sOoBJQ7RnwyDfMAZiLIjWltNowRGLfTshxgtDj6AozO091GB94KPutd +fMh8+7ArU6SSYmlRJQVhGkSBjCypQ5Yj36w6gZoOKcUcqeldHraenjAKOc7xiID7S13MMuyFYkMl +NAJWJwGRtDtwKj9useiciAF9n9T521NtYJ2/LOdYq7hfRvzOxBsDPAnrSTFcaUaz4EcCAwEAAaNC +MEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFDqahQcQZyi27/a9 +BUFuIMGU2g/eMA0GCSqGSIb3DQEBCwUAA4IBAQCZ21151fmXWWcDYfF+OwYxdS2hII5PZYe096ac +vNjpL9DbWu7PdIxztDhC2gV7+AJ1uP2lsdeu9tfeE8tTEH6KRtGX+rcuKxGrkLAngPnon1rpN5+r +5N9ss4UXnT3ZJE95kTXWXwTrgIOrmgIttRD02JDHBHNA7XIloKmf7J6raBKZV8aPEjoJpL1E/QYV +N8Gb5DKj7Tjo2GTzLH4U/ALqn83/B2gX2yKQOC16jdFU8WnjXzPKej17CuPKf1855eJ1usV2GDPO +LPAvTK33sefOT6jEm0pUBsV/fdUID+Ic/n4XuKxe9tQWskMJDE32p2u0mYRlynqI4uJEvlz36hz1 +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert057.pem b/test/rules/platform_certs/default/cert057.pem new file mode 100644 index 000000000000..7d2fb3afa6a5 --- /dev/null +++ b/test/rules/platform_certs/default/cert057.pem @@ -0,0 +1,21 @@ +Starfield Root Certificate Authority - G2 +-----BEGIN CERTIFICATE----- +MIID3TCCAsWgAwIBAgIBADANBgkqhkiG9w0BAQsFADCBjzELMAkGA1UEBhMCVVMxEDAOBgNVBAgT +B0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoTHFN0YXJmaWVsZCBUZWNobm9s +b2dpZXMsIEluYy4xMjAwBgNVBAMTKVN0YXJmaWVsZCBSb290IENlcnRpZmljYXRlIEF1dGhvcml0 +eSAtIEcyMB4XDTA5MDkwMTAwMDAwMFoXDTM3MTIzMTIzNTk1OVowgY8xCzAJBgNVBAYTAlVTMRAw +DgYDVQQIEwdBcml6b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMSUwIwYDVQQKExxTdGFyZmllbGQg +VGVjaG5vbG9naWVzLCBJbmMuMTIwMAYDVQQDEylTdGFyZmllbGQgUm9vdCBDZXJ0aWZpY2F0ZSBB +dXRob3JpdHkgLSBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL3twQP89o/8ArFv +W59I2Z154qK3A2FWGMNHttfKPTUuiUP3oWmb3ooa/RMgnLRJdzIpVv257IzdIvpy3Cdhl+72WoTs +bhm5iSzchFvVdPtrX8WJpRBSiUZV9Lh1HOZ/5FSuS/hVclcCGfgXcVnrHigHdMWdSL5stPSksPNk +N3mSwOxGXn/hbVNMYq/NHwtjuzqd+/x5AJhhdM8mgkBj87JyahkNmcrUDnXMN/uLicFZ8WJ/X7Nf +ZTD4p7dNdloedl40wOiWVpmKs/B/pM293DIxfJHP4F8R+GuqSVzRmZTRouNjWwl2tVZi4Ut0HZbU +JtQIBFnQmA4O5t78w+wfkPECAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC +AQYwHQYDVR0OBBYEFHwMMh+n2TB/xH1oo2Kooc6rB1snMA0GCSqGSIb3DQEBCwUAA4IBAQARWfol +TwNvlJk7mh+ChTnUdgWUXuEok21iXQnCoKjUsHU48TRqneSfioYmUeYs0cYtbpUgSpIB7LiKZ3sx +4mcujJUDJi5DnUox9g61DLu34jd/IroAow57UvtruzvE03lRTs2Q9GcHGcg8RnoNAX3FWOdt5oUw +F5okxBDgBPfg8n/Uqgr/Qh037ZTlZFkSIHc40zI+OIF1lnP6aI+xy84fxez6nH7PfrHxBy22/L/K +pL/QlwVKvOoYKAKQvVR4CSFx09F9HdkWsKlhPdAKACL8x3vLCWRFCztAgfd9fDL1mMpYjn0q7pBZ +c2T5NnReJaH1ZgUufzkVqSr7UIuOhWn0 +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert058.pem b/test/rules/platform_certs/default/cert058.pem new file mode 100644 index 000000000000..a575ff262332 --- /dev/null +++ b/test/rules/platform_certs/default/cert058.pem @@ -0,0 +1,21 @@ +Starfield Services Root Certificate Authority - G2 +-----BEGIN CERTIFICATE----- +MIID7zCCAtegAwIBAgIBADANBgkqhkiG9w0BAQsFADCBmDELMAkGA1UEBhMCVVMxEDAOBgNVBAgT +B0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoTHFN0YXJmaWVsZCBUZWNobm9s +b2dpZXMsIEluYy4xOzA5BgNVBAMTMlN0YXJmaWVsZCBTZXJ2aWNlcyBSb290IENlcnRpZmljYXRl +IEF1dGhvcml0eSAtIEcyMB4XDTA5MDkwMTAwMDAwMFoXDTM3MTIzMTIzNTk1OVowgZgxCzAJBgNV +BAYTAlVTMRAwDgYDVQQIEwdBcml6b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMSUwIwYDVQQKExxT +dGFyZmllbGQgVGVjaG5vbG9naWVzLCBJbmMuMTswOQYDVQQDEzJTdGFyZmllbGQgU2VydmljZXMg +Um9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgLSBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC +AQoCggEBANUMOsQq+U7i9b4Zl1+OiFOxHz/Lz58gE20pOsgPfTz3a3Y4Y9k2YKibXlwAgLIvWX/2 +h/klQ4bnaRtSmpDhcePYLQ1Ob/bISdm28xpWriu2dBTrz/sm4xq6HZYuajtYlIlHVv8loJNwU4Pa +hHQUw2eeBGg6345AWh1KTs9DkTvnVtYAcMtS7nt9rjrnvDH5RfbCYM8TWQIrgMw0R9+53pBlbQLP +LJGmpufehRhJfGZOozptqbXuNC66DQO4M99H67FrjSXZm86B0UVGMpZwh94CDklDhbZsc7tk6mFB +rMnUVN+HL8cisibMn1lUaJ/8viovxFUcdUBgF4UCVTmLfwUCAwEAAaNCMEAwDwYDVR0TAQH/BAUw +AwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFJxfAN+qAdcwKziIorhtSpzyEZGDMA0GCSqG +SIb3DQEBCwUAA4IBAQBLNqaEd2ndOxmfZyMIbw5hyf2E3F/YNoHN2BtBLZ9g3ccaaNnRbobhiCPP +E95Dz+I0swSdHynVv/heyNXBve6SbzJ08pGCL72CQnqtKrcgfU28elUSwhXqvfdqlS5sdJ/PHLTy +xQGjhdByPq1zqwubdQxtRbeOlKyWN7Wg0I8VRw7j6IPdj/3vQQF3zCepYoUz8jcI73HPdwbeyBkd +iEDPfUYd/x7H4c7/I9vG+o1VTqkC50cRRj70/b17KSa7qWFiNyi2LSr2EIZkyXCn0q23KXB56jza +YyWf/Wi3MOxw+3WKt21gZ7IeyLnp2KhvAotnDU0mV3HaIPzBSlCNsSi6 +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert059.pem b/test/rules/platform_certs/default/cert059.pem new file mode 100644 index 000000000000..0ea335ce36a7 --- /dev/null +++ b/test/rules/platform_certs/default/cert059.pem @@ -0,0 +1,18 @@ +AffirmTrust Commercial +-----BEGIN CERTIFICATE----- +MIIDTDCCAjSgAwIBAgIId3cGJyapsXwwDQYJKoZIhvcNAQELBQAwRDELMAkGA1UEBhMCVVMxFDAS +BgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVzdCBDb21tZXJjaWFsMB4XDTEw +MDEyOTE0MDYwNloXDTMwMTIzMTE0MDYwNlowRDELMAkGA1UEBhMCVVMxFDASBgNVBAoMC0FmZmly +bVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVzdCBDb21tZXJjaWFsMIIBIjANBgkqhkiG9w0BAQEF +AAOCAQ8AMIIBCgKCAQEA9htPZwcroRX1BiLLHwGy43NFBkRJLLtJJRTWzsO3qyxPxkEylFf6Eqdb +DuKPHx6GGaeqtS25Xw2Kwq+FNXkyLbscYjfysVtKPcrNcV/pQr6U6Mje+SJIZMblq8Yrba0F8PrV +C8+a5fBQpIs7R6UjW3p6+DM/uO+Zl+MgwdYoic+U+7lF7eNAFxHUdPALMeIrJmqbTFeurCA+ukV6 +BfO9m2kVrn1OIGPENXY6BwLJN/3HR+7o8XYdcxXyl6S1yHp52UKqK39c/s4mT6NmgTWvRLpUHhww +MmWd5jyTXlBOeuM61G7MGvv50jeuJCqrVwMiKA1JdX+3KNp1v47j3A55MQIDAQABo0IwQDAdBgNV +HQ4EFgQUnZPGU4teyq8/nx4P5ZmVvCT2lI8wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC +AQYwDQYJKoZIhvcNAQELBQADggEBAFis9AQOzcAN/wr91LoWXym9e2iZWEnStB03TX8nfUYGXUPG +hi4+c7ImfU+TqbbEKpqrIZcUsd6M06uJFdhrJNTxFq7YpFzUf1GO7RgBsZNjvbz4YYCanrHOQnDi +qX0GJX0nof5v7LMeJNrjS1UaADs1tDvZ110w/YETifLCBivtZ8SOyUOyXGsViQK8YvxO8rUzqrJv +0wqiUOP2O+guRMLbZjipM1ZI8W0bM40NjD9gN53Tym1+NH4Nn3J2ixufcv1SNUFFApYvHLKac0kh +sUlHRUe072o0EclNmsxZt9YCnlpOZbWUrhvfKbAW8b8Angc6F2S1BLUjIZkKlTuXfO8= +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert060.pem b/test/rules/platform_certs/default/cert060.pem new file mode 100644 index 000000000000..d19d4d329d30 --- /dev/null +++ b/test/rules/platform_certs/default/cert060.pem @@ -0,0 +1,18 @@ +AffirmTrust Networking +-----BEGIN CERTIFICATE----- +MIIDTDCCAjSgAwIBAgIIfE8EORzUmS0wDQYJKoZIhvcNAQEFBQAwRDELMAkGA1UEBhMCVVMxFDAS +BgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVzdCBOZXR3b3JraW5nMB4XDTEw +MDEyOTE0MDgyNFoXDTMwMTIzMTE0MDgyNFowRDELMAkGA1UEBhMCVVMxFDASBgNVBAoMC0FmZmly +bVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVzdCBOZXR3b3JraW5nMIIBIjANBgkqhkiG9w0BAQEF +AAOCAQ8AMIIBCgKCAQEAtITMMxcua5Rsa2FSoOujz3mUTOWUgJnLVWREZY9nZOIG41w3SfYvm4SE +Hi3yYJ0wTsyEheIszx6e/jarM3c1RNg1lho9Nuh6DtjVR6FqaYvZ/Ls6rnla1fTWcbuakCNrmreI +dIcMHl+5ni36q1Mr3Lt2PpNMCAiMHqIjHNRqrSK6mQEubWXLviRmVSRLQESxG9fhwoXA3hA/Pe24 +/PHxI1Pcv2WXb9n5QHGNfb2V1M6+oF4nI979ptAmDgAp6zxG8D1gvz9Q0twmQVGeFDdCBKNwV6gb +h+0t+nvujArjqWaJGctB+d1ENmHP4ndGyH329JKBNv3bNPFyfvMMFr20FQIDAQABo0IwQDAdBgNV +HQ4EFgQUBx/S55zawm6iQLSwelAQUHTEyL0wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC +AQYwDQYJKoZIhvcNAQEFBQADggEBAIlXshZ6qML91tmbmzTCnLQyFE2npN/svqe++EPbkTfOtDIu +UFUaNU52Q3Eg75N3ThVwLofDwR1t3Mu1J9QsVtFSUzpE0nPIxBsFZVpikpzuQY0x2+c06lkh1QF6 +12S4ZDnNye2v7UsDSKegmQGA3GWjNq5lWUhPgkvIZfFXHeVZLgo/bNjR9eUJtGxUAArgFU2HdW23 +WJZa3W3SAKD0m0i+wzekujbgfIeFlxoVot4uolu9rxj5kFDNcFn4J2dHy8egBzp90SxdbBk6ZrV9 +/ZFvgrG+CJPbFEfxojfHRZ48x3evZKiT3/Zpg4Jg8klCNO1aAFSFHBY2kgxc+qatv9s= +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert061.pem b/test/rules/platform_certs/default/cert061.pem new file mode 100644 index 000000000000..be39ab5951bd --- /dev/null +++ b/test/rules/platform_certs/default/cert061.pem @@ -0,0 +1,27 @@ +AffirmTrust Premium +-----BEGIN CERTIFICATE----- +MIIFRjCCAy6gAwIBAgIIbYwURrGmCu4wDQYJKoZIhvcNAQEMBQAwQTELMAkGA1UEBhMCVVMxFDAS +BgNVBAoMC0FmZmlybVRydXN0MRwwGgYDVQQDDBNBZmZpcm1UcnVzdCBQcmVtaXVtMB4XDTEwMDEy +OTE0MTAzNloXDTQwMTIzMTE0MTAzNlowQTELMAkGA1UEBhMCVVMxFDASBgNVBAoMC0FmZmlybVRy +dXN0MRwwGgYDVQQDDBNBZmZpcm1UcnVzdCBQcmVtaXVtMIICIjANBgkqhkiG9w0BAQEFAAOCAg8A +MIICCgKCAgEAxBLfqV/+Qd3d9Z+K4/as4Tx4mrzY8H96oDMq3I0gW64tb+eT2TZwamjPjlGjhVtn +BKAQJG9dKILBl1fYSCkTtuG+kU3fhQxTGJoeJKJPj/CihQvL9Cl/0qRY7iZNyaqoe5rZ+jjeRFcV +5fiMyNlI4g0WJx0eyIOFJbe6qlVBzAMiSy2RjYvmia9mx+n/K+k8rNrSs8PhaJyJ+HoAVt70VZVs ++7pk3WKL3wt3MutizCaam7uqYoNMtAZ6MMgpv+0GTZe5HMQxK9VfvFMSF5yZVylmd2EhMQcuJUmd +GPLu8ytxjLW6OQdJd/zvLpKQBY0tL3d770O/Nbua2Plzpyzy0FfuKE4mX4+QaAkvuPjcBukumj5R +p9EixAqnOEhss/n/fauGV+O61oV4d7pD6kh/9ti+I20ev9E2bFhc8e6kGVQa9QPSdubhjL08s9NI +S+LI+H+SqHZGnEJlPqQewQcDWkYtuJfzt9WyVSHvutxMAJf7FJUnM7/oQ0dG0giZFmA7mn7S5u04 +6uwBHjxIVkkJx0w3AJ6IDsBz4W9m6XJHMD4Q5QsDyZpCAGzFlH5hxIrff4IaC1nEWTJ3s7xgaVY5 +/bQGeyzWZDbZvUjthB9+pSKPKrhC9IK31FOQeE4tGv2Bb0TXOwF0lkLgAOIua+rF7nKsu7/+6qqo ++Nz2snmKtmcCAwEAAaNCMEAwHQYDVR0OBBYEFJ3AZ6YMItkm9UWrpmVSESfYRaxjMA8GA1UdEwEB +/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEBDAUAA4ICAQCzV00QYk465KzquByv +MiPIs0laUZx2KI15qldGF9X1Uva3ROgIRL8YhNILgM3FEv0AVQVhh0HctSSePMTYyPtwni94loMg +Nt58D2kTiKV1NpgIpsbfrM7jWNa3Pt668+s0QNiigfV4Py/VpfzZotReBA4Xrf5B8OWycvpEgjNC +6C1Y91aMYj+6QrCcDFx+LmUmXFNPALJ4fqENmS2NuB2OosSw/WDQMKSOyARiqcTtNd56l+0OOF6S +L5Nwpamcb6d9Ex1+xghIsV5n61EIJenmJWtSKZGc0jlzCFfemQa0W50QBuHCAKi4HEoCChTQwUHK ++4w1IX2COPKpVJEZNZOUbWo6xbLQu4mGk+ibyQ86p3q4ofB4Rvr8Ny/lioTz3/4E2aFooC8k4gmV +BtWVyuEklut89pMFu+1z6S3RdTnX5yTb2E5fQ4+e0BQ5v1VwSJlXMbSc7kqYA5YwH2AG7hsj/oFg +IxpHYoWlzBk0gG+zrBrjn/B7SK3VAdlntqlyk+otZrWyuOQ9PLLvTIzq6we/qzWaVYa8GKa1qF60 +g2xraUDTn9zxw2lrueFtCfTxqlB2Cnp9ehehVZZCmTEJ3WARjQUwfuaORtGdFNrHF+QFlozEJLUb +zxQHskD4o55BhrwE0GuWyCqANP2/7waj3VjFhT0+j/6eKeC2uAloGRwYQw== +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert062.pem b/test/rules/platform_certs/default/cert062.pem new file mode 100644 index 000000000000..10562b05e1e0 --- /dev/null +++ b/test/rules/platform_certs/default/cert062.pem @@ -0,0 +1,13 @@ +AffirmTrust Premium ECC +-----BEGIN CERTIFICATE----- +MIIB/jCCAYWgAwIBAgIIdJclisc/elQwCgYIKoZIzj0EAwMwRTELMAkGA1UEBhMCVVMxFDASBgNV +BAoMC0FmZmlybVRydXN0MSAwHgYDVQQDDBdBZmZpcm1UcnVzdCBQcmVtaXVtIEVDQzAeFw0xMDAx +MjkxNDIwMjRaFw00MDEyMzExNDIwMjRaMEUxCzAJBgNVBAYTAlVTMRQwEgYDVQQKDAtBZmZpcm1U +cnVzdDEgMB4GA1UEAwwXQWZmaXJtVHJ1c3QgUHJlbWl1bSBFQ0MwdjAQBgcqhkjOPQIBBgUrgQQA +IgNiAAQNMF4bFZ0D0KF5Nbc6PJJ6yhUczWLznCZcBz3lVPqj1swS6vQUX+iOGasvLkjmrBhDeKzQ +N8O9ss0s5kfiGuZjuD0uL3jET9v0D6RoTFVya5UdThhClXjMNzyR4ptlKymjQjBAMB0GA1UdDgQW +BBSaryl6wBE1NSZRMADDav5A1a7WPDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAK +BggqhkjOPQQDAwNnADBkAjAXCfOHiFBar8jAQr9HX/VsaobgxCd05DhT1wV/GzTjxi+zygk8N53X +57hG8f2h4nECMEJZh0PUUd+60wkyWs6Iflc9nF9Ca/UHLbXwgpP5WW+uZPpY5Yse42O+tYHNbwKM +eQ== +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert063.pem b/test/rules/platform_certs/default/cert063.pem new file mode 100644 index 000000000000..35cdfeebd2f9 --- /dev/null +++ b/test/rules/platform_certs/default/cert063.pem @@ -0,0 +1,20 @@ +Certum Trusted Network CA +-----BEGIN CERTIFICATE----- +MIIDuzCCAqOgAwIBAgIDBETAMA0GCSqGSIb3DQEBBQUAMH4xCzAJBgNVBAYTAlBMMSIwIAYDVQQK +ExlVbml6ZXRvIFRlY2hub2xvZ2llcyBTLkEuMScwJQYDVQQLEx5DZXJ0dW0gQ2VydGlmaWNhdGlv +biBBdXRob3JpdHkxIjAgBgNVBAMTGUNlcnR1bSBUcnVzdGVkIE5ldHdvcmsgQ0EwHhcNMDgxMDIy +MTIwNzM3WhcNMjkxMjMxMTIwNzM3WjB+MQswCQYDVQQGEwJQTDEiMCAGA1UEChMZVW5pemV0byBU +ZWNobm9sb2dpZXMgUy5BLjEnMCUGA1UECxMeQ2VydHVtIENlcnRpZmljYXRpb24gQXV0aG9yaXR5 +MSIwIAYDVQQDExlDZXJ0dW0gVHJ1c3RlZCBOZXR3b3JrIENBMIIBIjANBgkqhkiG9w0BAQEFAAOC +AQ8AMIIBCgKCAQEA4/t9o3K6wvDJFIf1awFO4W5AB7ptJ11/91sts1rHUV+rpDKmYYe2bg+G0jAC +l/jXaVehGDldamR5xgFZrDwxSjh80gTSSyjoIF87B6LMTXPb865Px1bVWqeWifrzq2jUI4ZZJ88J +J7ysbnKDHDBy3+Ci6dLhdHUZvSqeexVUBBvXQzmtVSjF4hq79MDkrjhJM8x2hZ85RdKknvISjFH4 +fOQtf/WsX+sWn7Et0brMkUJ3TCXJkDhv2/DM+44el1k+1WBO5gUo7Ul5E0u6SNsv+XLTOcr+H9g0 +cvW0QM8xAcPs3hEtF10fuFDRXhmnad4HMyjKUJX5p1TLVIZQRan5SQIDAQABo0IwQDAPBgNVHRMB +Af8EBTADAQH/MB0GA1UdDgQWBBQIds3LB/8k9sXN7buQvOKEN0Z19zAOBgNVHQ8BAf8EBAMCAQYw +DQYJKoZIhvcNAQEFBQADggEBAKaorSLOAT2mo/9i0Eidi15ysHhE49wcrwn9I0j6vSrEuVUEtRCj +jSfeC4Jj0O7eDDd5QVsisrCaQVymcODU0HfLI9MA4GxWL+FpDQ3Zqr8hgVDZBqWo/5U30Kr+4rP1 +mS1FhIrlQgnXdAIv94nYmem8J9RHjboNRhx3zxSkHLmkMcScKHQDNP8zGSal6Q10tz6XxnboJ5aj +Zt3hrvJBW8qYVoNzcOSGGtIxQbovvi0TWnZvTuhOgQ4/WwMioBK+ZlgRSssDxLQqKi2WF+A5VLxI +03YnnZotBqbJ7DnSq9ufmgsnAjUpsUCV5/nonFWIGUbWtzT1fs45mtk48VH3Tyw= +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert064.pem b/test/rules/platform_certs/default/cert064.pem new file mode 100644 index 000000000000..cc44be1d013d --- /dev/null +++ b/test/rules/platform_certs/default/cert064.pem @@ -0,0 +1,19 @@ +TWCA Root Certification Authority +-----BEGIN CERTIFICATE----- +MIIDezCCAmOgAwIBAgIBATANBgkqhkiG9w0BAQUFADBfMQswCQYDVQQGEwJUVzESMBAGA1UECgwJ +VEFJV0FOLUNBMRAwDgYDVQQLDAdSb290IENBMSowKAYDVQQDDCFUV0NBIFJvb3QgQ2VydGlmaWNh +dGlvbiBBdXRob3JpdHkwHhcNMDgwODI4MDcyNDMzWhcNMzAxMjMxMTU1OTU5WjBfMQswCQYDVQQG +EwJUVzESMBAGA1UECgwJVEFJV0FOLUNBMRAwDgYDVQQLDAdSb290IENBMSowKAYDVQQDDCFUV0NB +IFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEK +AoIBAQCwfnK4pAOU5qfeCTiRShFAh6d8WWQUe7UREN3+v9XAu1bihSX0NXIP+FPQQeFEAcK0HMMx +QhZHhTMidrIKbw/lJVBPhYa+v5guEGcevhEFhgWQxFnQfHgQsIBct+HHK3XLfJ+utdGdIzdjp9xC +oi2SBBtQwXu4PhvJVgSLL1KbralW6cH/ralYhzC2gfeXRfwZVzsrb+RH9JlF/h3x+JejiB03HFyP +4HYlmlD4oFT/RJB2I9IyxsOrBr/8+7/zrX2SYgJbKdM1o5OaQ2RgXbL6Mv87BK9NQGr5x+PvI/1r +y+UPizgN7gr8/g+YnzAx3WxSZfmLgb4i4RxYA7qRG4kHAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIB +BjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRqOFsmjd6LWvJPelSDGRjjCDWmujANBgkqhkiG +9w0BAQUFAAOCAQEAPNV3PdrfibqHDAhUaiBQkr6wQT25JmSDCi/oQMCXKCeCMErJk/9q56YAf4lC +mtYR5VPOL8zy2gXE/uJQxDqGfczafhAJO5I1KlOy/usrBdlsXebQ79NqZp4VKIV66IIArB6nCWlW +QtNoURi+VJq/REG6Sb4gumlc7rh3zc5sH62Dlhh9DrUUOYTxKOkto557HnpyWoOzeW/vtPzQCqVY +T0bf+215WfKEIlKuD8z7fDvnaspHYcN6+NOSBB+4IIThNlQWx0DeO4pz3N/GCUzf7Nr/1FNCocny +Yh0igzyXxfkZYiesZSLX0zzG5Y6yU8xJzrww/nsOM5D77dIUkR8Hrw== +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert065.pem b/test/rules/platform_certs/default/cert065.pem new file mode 100644 index 000000000000..b2a190c2cd1a --- /dev/null +++ b/test/rules/platform_certs/default/cert065.pem @@ -0,0 +1,19 @@ +Security Communication RootCA2 +-----BEGIN CERTIFICATE----- +MIIDdzCCAl+gAwIBAgIBADANBgkqhkiG9w0BAQsFADBdMQswCQYDVQQGEwJKUDElMCMGA1UEChMc +U0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEnMCUGA1UECxMeU2VjdXJpdHkgQ29tbXVuaWNh +dGlvbiBSb290Q0EyMB4XDTA5MDUyOTA1MDAzOVoXDTI5MDUyOTA1MDAzOVowXTELMAkGA1UEBhMC +SlAxJTAjBgNVBAoTHFNFQ09NIFRydXN0IFN5c3RlbXMgQ08uLExURC4xJzAlBgNVBAsTHlNlY3Vy +aXR5IENvbW11bmljYXRpb24gUm9vdENBMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB +ANAVOVKxUrO6xVmCxF1SrjpDZYBLx/KWvNs2l9amZIyoXvDjChz335c9S672XewhtUGrzbl+dp++ ++T42NKA7wfYxEUV0kz1XgMX5iZnK5atq1LXaQZAQwdbWQonCv/Q4EpVMVAX3NuRFg3sUZdbcDE3R +3n4MqzvEFb46VqZab3ZpUql6ucjrappdUtAtCms1FgkQhNBqyjoGADdH5H5XTz+L62e4iKrFvlNV +spHEfbmwhRkGeC7bYRr6hfVKkaHnFtWOojnflLhwHyg/i/xAXmODPIMqGplrz95Zajv8bxbXH/1K +EOtOghY6rCcMU/Gt1SSwawNQwS08Ft1ENCcadfsCAwEAAaNCMEAwHQYDVR0OBBYEFAqFqXdlBZh8 +QIH4D5csOPEK7DzPMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3DQEB +CwUAA4IBAQBMOqNErLlFsceTfsgLCkLfZOoc7llsCLqJX2rKSpWeeo8HxdpFcoJxDjrSzG+ntKEj +u/Ykn8sX/oymzsLS28yN/HH8AynBbF0zX2S2ZTuJbxh2ePXcokgfGT+Ok+vx+hfuzU7jBBJV1uXk +3fs+BXziHV7Gp7yXT2g69ekuCkO2r1dcYmh8t/2jioSgrGK+KwmHNPBqAbubKVY8/gA3zyNs8U6q +tnRGEmyR7jTV7JqR50S+kDFy1UkC9gLl9B/rfNmWVan/7Ir5mUf/NVoCqgTLiluHcSmRvaS0eg29 +mvVXIwAHIRc/SjnRBUkLp7Y3gaVdjKozXoEofKd9J+sAro03 +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert066.pem b/test/rules/platform_certs/default/cert066.pem new file mode 100644 index 000000000000..3b91dfb65701 --- /dev/null +++ b/test/rules/platform_certs/default/cert066.pem @@ -0,0 +1,28 @@ +EC-ACC +-----BEGIN CERTIFICATE----- +MIIFVjCCBD6gAwIBAgIQ7is969Qh3hSoYqwE893EATANBgkqhkiG9w0BAQUFADCB8zELMAkGA1UE +BhMCRVMxOzA5BgNVBAoTMkFnZW5jaWEgQ2F0YWxhbmEgZGUgQ2VydGlmaWNhY2lvIChOSUYgUS0w +ODAxMTc2LUkpMSgwJgYDVQQLEx9TZXJ2ZWlzIFB1YmxpY3MgZGUgQ2VydGlmaWNhY2lvMTUwMwYD +VQQLEyxWZWdldSBodHRwczovL3d3dy5jYXRjZXJ0Lm5ldC92ZXJhcnJlbCAoYykwMzE1MDMGA1UE +CxMsSmVyYXJxdWlhIEVudGl0YXRzIGRlIENlcnRpZmljYWNpbyBDYXRhbGFuZXMxDzANBgNVBAMT +BkVDLUFDQzAeFw0wMzAxMDcyMzAwMDBaFw0zMTAxMDcyMjU5NTlaMIHzMQswCQYDVQQGEwJFUzE7 +MDkGA1UEChMyQWdlbmNpYSBDYXRhbGFuYSBkZSBDZXJ0aWZpY2FjaW8gKE5JRiBRLTA4MDExNzYt +SSkxKDAmBgNVBAsTH1NlcnZlaXMgUHVibGljcyBkZSBDZXJ0aWZpY2FjaW8xNTAzBgNVBAsTLFZl +Z2V1IGh0dHBzOi8vd3d3LmNhdGNlcnQubmV0L3ZlcmFycmVsIChjKTAzMTUwMwYDVQQLEyxKZXJh +cnF1aWEgRW50aXRhdHMgZGUgQ2VydGlmaWNhY2lvIENhdGFsYW5lczEPMA0GA1UEAxMGRUMtQUND +MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsyLHT+KXQpWIR4NA9h0X84NzJB5R85iK +w5K4/0CQBXCHYMkAqbWUZRkiFRfCQ2xmRJoNBD45b6VLeqpjt4pEndljkYRm4CgPukLjbo73FCeT +ae6RDqNfDrHrZqJyTxIThmV6PttPB/SnCWDaOkKZx7J/sxaVHMf5NLWUhdWZXqBIoH7nF2W4onW4 +HvPlQn2v7fOKSGRdghST2MDk/7NQcvJ29rNdQlB50JQ+awwAvthrDk4q7D7SzIKiGGUzE3eeml0a +E9jD2z3Il3rucO2n5nzbcc8tlGLfbdb1OL4/pYUKGbio2Al1QnDE6u/LDsg0qBIimAy4E5S2S+zw +0JDnJwIDAQABo4HjMIHgMB0GA1UdEQQWMBSBEmVjX2FjY0BjYXRjZXJ0Lm5ldDAPBgNVHRMBAf8E +BTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUoMOLRKo3pUW/l4Ba0fF4opvpXY0wfwYD +VR0gBHgwdjB0BgsrBgEEAfV4AQMBCjBlMCwGCCsGAQUFBwIBFiBodHRwczovL3d3dy5jYXRjZXJ0 +Lm5ldC92ZXJhcnJlbDA1BggrBgEFBQcCAjApGidWZWdldSBodHRwczovL3d3dy5jYXRjZXJ0Lm5l +dC92ZXJhcnJlbCAwDQYJKoZIhvcNAQEFBQADggEBAKBIW4IB9k1IuDlVNZyAelOZ1Vr/sXE7zDkJ +lF7W2u++AVtd0x7Y/X1PzaBB4DSTv8vihpw3kpBWHNzrKQXlxJ7HNd+KDM3FIUPpqojlNcAZQmNa +Al6kSBg6hW/cnbw/nZzBh7h6YQjpdwt/cKt63dmXLGQehb+8dJahw3oS7AwaboMMPOhyRp/7SNVe +l+axofjk70YllJyJ22k4vuxcDlbHZVHlUIiIv0LVKz3l+bqeLrPK9HOSAgu+TGbrIP65y7WZf+a2 +E/rKS03Z7lNGBjvGTq2TWoF+bCpLagVFjPIhpDGQh2xlnJ2lYJU6Un/10asIbvPuW/mIPX64b24D +5EI= +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert067.pem b/test/rules/platform_certs/default/cert067.pem new file mode 100644 index 000000000000..2ac1e6674f16 --- /dev/null +++ b/test/rules/platform_certs/default/cert067.pem @@ -0,0 +1,22 @@ +Hellenic Academic and Research Institutions RootCA 2011 +-----BEGIN CERTIFICATE----- +MIIEMTCCAxmgAwIBAgIBADANBgkqhkiG9w0BAQUFADCBlTELMAkGA1UEBhMCR1IxRDBCBgNVBAoT +O0hlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgQ2VydC4gQXV0aG9y +aXR5MUAwPgYDVQQDEzdIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25z +IFJvb3RDQSAyMDExMB4XDTExMTIwNjEzNDk1MloXDTMxMTIwMTEzNDk1MlowgZUxCzAJBgNVBAYT +AkdSMUQwQgYDVQQKEztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25z +IENlcnQuIEF1dGhvcml0eTFAMD4GA1UEAxM3SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNo +IEluc3RpdHV0aW9ucyBSb290Q0EgMjAxMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB +AKlTAOMupvaO+mDYLZU++CwqVE7NuYRhlFhPjz2L5EPzdYmNUeTDN9KKiE15HrcS3UN4SoqS5tdI +1Q+kOilENbgH9mgdVc04UfCMJDGFr4PJfel3r+0ae50X+bOdOFAPplp5kYCvN66m0zH7tSYJnTxa +71HFK9+WXesyHgLacEnsbgzImjeN9/E2YEsmLIKe0HjzDQ9jpFEw4fkrJxIH2Oq9GGKYsFk3fb7u +8yBRQlqD75O6aRXxYp2fmTmCobd0LovUxQt7L/DICto9eQqakxylKHJzkUOap9FNhYS5qXSPFEDH +3N6sQWRstBmbAmNtJGSPRLIl6s5ddAxjMlyNh+UCAwEAAaOBiTCBhjAPBgNVHRMBAf8EBTADAQH/ +MAsGA1UdDwQEAwIBBjAdBgNVHQ4EFgQUppFC/RNhSiOeCKQp5dgTBCPuQSUwRwYDVR0eBEAwPqA8 +MAWCAy5ncjAFggMuZXUwBoIELmVkdTAGggQub3JnMAWBAy5ncjAFgQMuZXUwBoEELmVkdTAGgQQu +b3JnMA0GCSqGSIb3DQEBBQUAA4IBAQAf73lB4XtuP7KMhjdCSk4cNx6NZrokgclPEg8hwAOXhiVt +XdMiKahsog2p6z0GW5k6x8zDmjR/qw7IThzh+uTczQ2+vyT+bOdrwg3IBp5OjWEopmr95fZi6hg8 +TqBTnbI6nOulnJEWtk2C4AwFSKls9cz4y51JtPACpf1wA+2KIaWuE4ZJwzNzvoc7dIsXRSZMFpGD +/md9zU1jZ/rzAxKWeAaNsWftjj++n08C9bMJL/NMh98qy5V8AcysNnq/onN694/BtZqhFLKPM58N +7yLcZnuEvUUXBj08yrl3NI/K6s8/MT7jiOOASSXIl7WdmplNsDz4SgCbZN2fOUvRJ9e4 +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert068.pem b/test/rules/platform_certs/default/cert068.pem new file mode 100644 index 000000000000..c3f1c959e3f4 --- /dev/null +++ b/test/rules/platform_certs/default/cert068.pem @@ -0,0 +1,29 @@ +Actalis Authentication Root CA +-----BEGIN CERTIFICATE----- +MIIFuzCCA6OgAwIBAgIIVwoRl0LE48wwDQYJKoZIhvcNAQELBQAwazELMAkGA1UEBhMCSVQxDjAM +BgNVBAcMBU1pbGFuMSMwIQYDVQQKDBpBY3RhbGlzIFMucC5BLi8wMzM1ODUyMDk2NzEnMCUGA1UE +AwweQWN0YWxpcyBBdXRoZW50aWNhdGlvbiBSb290IENBMB4XDTExMDkyMjExMjIwMloXDTMwMDky +MjExMjIwMlowazELMAkGA1UEBhMCSVQxDjAMBgNVBAcMBU1pbGFuMSMwIQYDVQQKDBpBY3RhbGlz +IFMucC5BLi8wMzM1ODUyMDk2NzEnMCUGA1UEAwweQWN0YWxpcyBBdXRoZW50aWNhdGlvbiBSb290 +IENBMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAp8bEpSmkLO/lGMWwUKNvUTufClrJ +wkg4CsIcoBh/kbWHuUA/3R1oHwiD1S0eiKD4j1aPbZkCkpAW1V8IbInX4ay8IMKx4INRimlNAJZa +by/ARH6jDuSRzVju3PvHHkVH3Se5CAGfpiEd9UEtL0z9KK3giq0itFZljoZUj5NDKd45RnijMCO6 +zfB9E1fAXdKDa0hMxKufgFpbOr3JpyI/gCczWw63igxdBzcIy2zSekciRDXFzMwujt0q7bd9Zg1f +YVEiVRvjRuPjPdA1YprbrxTIW6HMiRvhMCb8oJsfgadHHwTrozmSBp+Z07/T6k9QnBn+locePGX2 +oxgkg4YQ51Q+qDp2JE+BIcXjDwL4k5RHILv+1A7TaLndxHqEguNTVHnd25zS8gebLra8Pu2Fbe8l +EfKXGkJh90qX6IuxEAf6ZYGyojnP9zz/GPvG8VqLWeICrHuS0E4UT1lF9gxeKF+w6D9Fz8+vm2/7 +hNN3WpVvrJSEnu68wEqPSpP4RCHiMUVhUE4Q2OM1fEwZtN4Fv6MGn8i1zeQf1xcGDXqVdFUNaBr8 +EBtiZJ1t4JWgw5QHVw0U5r0F+7if5t+L4sbnfpb2U8WANFAoWPASUHEXMLrmeGO89LKtmyuy/uE5 +jF66CyCU3nuDuP/jVo23Eek7jPKxwV2dpAtMK9myGPW1n0sCAwEAAaNjMGEwHQYDVR0OBBYEFFLY +iDrIn3hm7YnzezhwlMkCAjbQMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUUtiIOsifeGbt +ifN7OHCUyQICNtAwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEBCwUAA4ICAQALe3KHwGCmSUyI +WOYdiPcUZEim2FgKDk8TNd81HdTtBjHIgT5q1d07GjLukD0R0i70jsNjLiNmsGe+b7bAEzlgqqI0 +JZN1Ut6nna0Oh4lScWoWPBkdg/iaKWW+9D+a2fDzWochcYBNy+A4mz+7+uAwTc+G02UQGRjRlwKx +K3JCaKygvU5a2hi/a5iB0P2avl4VSM0RFbnAKVy06Ij3Pjaut2L9HmLecHgQHEhb2rykOLpn7VU+ +Xlff1ANATIGk0k9jpwlCCRT8AKnCgHNPLsBA2RF7SOp6AsDT6ygBJlh0wcBzIm2Tlf05fbsq4/aC +4yyXX04fkZT6/iyj2HYauE2yOE+b+h1IYHkm4vP9qdCa6HCPSXrW5b0KDtst842/6+OkfcvHlXHo +2qN8xcL4dJIEG4aspCJTQLas/kx2z/uUMsA1n3Y/buWQbqCmJqK4LL7RK4X9p2jIugErsWx0Hbhz +lefut8cl8ABMALJ+tguLHPPAUJ4lueAI3jZm/zel0btUZCzJJ7VLkn5l/9Mt4blOvH+kQSGQQXem +OR/qnuOf0GZvBeyqdn6/axag67XH/JJULysRJyU3eExRarDzzFhdFPFqSBX/wge2sY0PjlxQRrM9 +vwGYT7JZVEc+NHt4bVaTLnPqZih4zR0Uv6CPLy64Lo7yFIrM6bV8+2ydDKXhlg== +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert069.pem b/test/rules/platform_certs/default/cert069.pem new file mode 100644 index 000000000000..9c0aaeb7709f --- /dev/null +++ b/test/rules/platform_certs/default/cert069.pem @@ -0,0 +1,19 @@ +Trustis FPS Root CA +-----BEGIN CERTIFICATE----- +MIIDZzCCAk+gAwIBAgIQGx+ttiD5JNM2a/fH8YygWTANBgkqhkiG9w0BAQUFADBFMQswCQYDVQQG +EwJHQjEYMBYGA1UEChMPVHJ1c3RpcyBMaW1pdGVkMRwwGgYDVQQLExNUcnVzdGlzIEZQUyBSb290 +IENBMB4XDTAzMTIyMzEyMTQwNloXDTI0MDEyMTExMzY1NFowRTELMAkGA1UEBhMCR0IxGDAWBgNV +BAoTD1RydXN0aXMgTGltaXRlZDEcMBoGA1UECxMTVHJ1c3RpcyBGUFMgUm9vdCBDQTCCASIwDQYJ +KoZIhvcNAQEBBQADggEPADCCAQoCggEBAMVQe547NdDfxIzNjpvto8A2mfRC6qc+gIMPpqdZh8mQ +RUN+AOqGeSoDvT03mYlmt+WKVoaTnGhLaASMk5MCPjDSNzoiYYkchU59j9WvezX2fihHiTHcDnlk +H5nSW7r+f2C/revnPDgpai/lkQtV/+xvWNUtyd5MZnGPDNcE2gfmHhjjvSkCqPoc4Vu5g6hBSLwa +cY3nYuUtsuvffM/bq1rKMfFMIvMFE/eC+XN5DL7XSxzA0RU8k0Fk0ea+IxciAIleH2ulrG6nS4zt +o3Lmr2NNL4XSFDWaLk6M6jKYKIahkQlBOrTh4/L68MkKokHdqeMDx4gVOxzUGpTXn2RZEm0CAwEA +AaNTMFEwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBS6+nEleYtXQSUhhgtx67JkDoshZzAd +BgNVHQ4EFgQUuvpxJXmLV0ElIYYLceuyZA6LIWcwDQYJKoZIhvcNAQEFBQADggEBAH5Y//01GX2c +GE+esCu8jowU/yyg2kdbw++BLa8F6nRIW/M+TgfHbcWzk88iNVy2P3UnXwmWzaD+vkAMXBJV+JOC +yinpXj9WV4s4NvdFGkwozZ5BuO1WTISkQMi4sKUraXAEasP41BIy+Q7DsdwyhEQsb8tGD+pmQQ9P +8Vilpg0ND2HepZ5dfWWhPBfnqFVO76DH7cZEf1T1o+CP8HxVIo8ptoGj4W1OLBuAZ+ytIJ8MYmHV +l/9D7S3B2l0pKoU/rGXuhg8FjZBf3+6f9L/uHfuY5H+QK4R4EA5sSVPvFVtlRkpdr7r7OnIdzfYl +iB6XzCGcKQENZetX2fNXlrtIzYE= +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert070.pem b/test/rules/platform_certs/default/cert070.pem new file mode 100644 index 000000000000..2edc96f284d6 --- /dev/null +++ b/test/rules/platform_certs/default/cert070.pem @@ -0,0 +1,28 @@ +Buypass Class 2 Root CA +-----BEGIN CERTIFICATE----- +MIIFWTCCA0GgAwIBAgIBAjANBgkqhkiG9w0BAQsFADBOMQswCQYDVQQGEwJOTzEdMBsGA1UECgwU +QnV5cGFzcyBBUy05ODMxNjMzMjcxIDAeBgNVBAMMF0J1eXBhc3MgQ2xhc3MgMiBSb290IENBMB4X +DTEwMTAyNjA4MzgwM1oXDTQwMTAyNjA4MzgwM1owTjELMAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1 +eXBhc3MgQVMtOTgzMTYzMzI3MSAwHgYDVQQDDBdCdXlwYXNzIENsYXNzIDIgUm9vdCBDQTCCAiIw +DQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBANfHXvfBB9R3+0Mh9PT1aeTuMgHbo4Yf5FkNuud1 +g1Lr6hxhFUi7HQfKjK6w3Jad6sNgkoaCKHOcVgb/S2TwDCo3SbXlzwx87vFKu3MwZfPVL4O2fuPn +9Z6rYPnT8Z2SdIrkHJasW4DptfQxh6NR/Md+oW+OU3fUl8FVM5I+GC911K2GScuVr1QGbNgGE41b +/+EmGVnAJLqBcXmQRFBoJJRfuLMR8SlBYaNByyM21cHxMlAQTn/0hpPshNOOvEu/XAFOBz3cFIqU +CqTqc/sLUegTBxj6DvEr0VQVfTzh97QZQmdiXnfgolXsttlpF9U6r0TtSsWe5HonfOV116rLJeff +awrbD02TTqigzXsu8lkBarcNuAeBfos4GzjmCleZPe4h6KP1DBbdi+w0jpwqHAAVF41og9JwnxgI +zRFo1clrUs3ERo/ctfPYV3Me6ZQ5BL/T3jjetFPsaRyifsSP5BtwrfKi+fv3FmRmaZ9JUaLiFRhn +Bkp/1Wy1TbMz4GHrXb7pmA8y1x1LPC5aAVKRCfLf6o3YBkBjqhHk/sM3nhRSP/TizPJhk9H9Z2vX +Uq6/aKtAQ6BXNVN48FP4YUIHZMbXb5tMOA1jrGKvNouicwoN9SG9dKpN6nIDSdvHXx1iY8f93ZHs +M+71bbRuMGjeyNYmsHVee7QHIJihdjK4TWxPAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYD +VR0OBBYEFMmAd+BikoL1RpzzuvdMw964o605MA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsF +AAOCAgEAU18h9bqwOlI5LJKwbADJ784g7wbylp7ppHR/ehb8t/W2+xUbP6umwHJdELFx7rxP462s +A20ucS6vxOOto70MEae0/0qyexAQH6dXQbLArvQsWdZHEIjzIVEpMMpghq9Gqx3tOluwlN5E40EI +osHsHdb9T7bWR9AUC8rmyrV7d35BH16Dx7aMOZawP5aBQW9gkOLo+fsicdl9sz1Gv7SEr5AcD48S +aq/v7h56rgJKihcrdv6sVIkkLE8/trKnToyokZf7KcZ7XC25y2a2t6hbElGFtQl+Ynhw/qlqYLYd +DnkM/crqJIByw5c/8nerQyIKx+u2DISCLIBrQYoIwOula9+ZEsuK1V6ADJHgJgg2SMX6OBE1/yWD +LfJ6v9r9jv6ly0UsH8SIU653DtmadsWOLB2jutXsMq7Aqqz30XpN69QH4kj3Io6wpJ9qzo6ysmD0 +oyLQI+uUWnpp3Q+/QFesa1lQ2aOZ4W7+jQF5JyMV3pKdewlNWudLSDBaGOYKbeaP4NK75t98biGC +wWg5TbSYWGZizEqQXsP6JwSxeRV0mcy+rSDeJmAc61ZRpqPq5KM/p/9h3PFaTWwyI0PurKju7koS +CTxdccK+efrCh2gdC/1cacwG0Jp9VJkqyTkaGa9LKkPzY11aWOIv4x3kqdbQCtCev9eBCfHJxyYN +rJgWVqA= +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert071.pem b/test/rules/platform_certs/default/cert071.pem new file mode 100644 index 000000000000..694db28238e0 --- /dev/null +++ b/test/rules/platform_certs/default/cert071.pem @@ -0,0 +1,28 @@ +Buypass Class 3 Root CA +-----BEGIN CERTIFICATE----- +MIIFWTCCA0GgAwIBAgIBAjANBgkqhkiG9w0BAQsFADBOMQswCQYDVQQGEwJOTzEdMBsGA1UECgwU +QnV5cGFzcyBBUy05ODMxNjMzMjcxIDAeBgNVBAMMF0J1eXBhc3MgQ2xhc3MgMyBSb290IENBMB4X +DTEwMTAyNjA4Mjg1OFoXDTQwMTAyNjA4Mjg1OFowTjELMAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1 +eXBhc3MgQVMtOTgzMTYzMzI3MSAwHgYDVQQDDBdCdXlwYXNzIENsYXNzIDMgUm9vdCBDQTCCAiIw +DQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAKXaCpUWUOOV8l6ddjEGMnqb8RB2uACatVI2zSRH +sJ8YZLya9vrVediQYkwiL944PdbgqOkcLNt4EemOaFEVcsfzM4fkoF0LXOBXByow9c3EN3coTRiR +5r/VUv1xLXA+58bEiuPwKAv0dpihi4dVsjoT/Lc+JzeOIuOoTyrvYLs9tznDDgFHmV0ST9tD+leh +7fmdvhFHJlsTmKtdFoqwNxxXnUX/iJY2v7vKB3tvh2PX0DJq1l1sDPGzbjniazEuOQAnFN44wOwZ +ZoYS6J1yFhNkUsepNxz9gjDthBgd9K5c/3ATAOux9TN6S9ZV+AWNS2mw9bMoNlwUxFFzTWsL8TQH +2xc519woe2v1n/MuwU8XKhDzzMro6/1rqy6any2CbgTUUgGTLT2G/H783+9CHaZr77kgxve9oKeV +/afmiSTYzIw0bOIjL9kSGiG5VZFvC5F5GQytQIgLcOJ60g7YaEi7ghM5EFjp2CoHxhLbWNvSO1UQ +RwUVZ2J+GGOmRj8JDlQyXr8NYnon74Do29lLBlo3WiXQCBJ31G8JUJc9yB3D34xFMFbG02SrZvPA +Xpacw8Tvw3xrizp5f7NJzz3iiZ+gMEuFuZyUJHmPfWupRWgPK9Dx2hzLabjKSWJtyNBjYt1gD1iq +j6G8BaVmos8bdrKEZLFMOVLAMLrwjEsCsLa3AgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYD +VR0OBBYEFEe4zf/lb+74suwvTg75JbCOPGvDMA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsF +AAOCAgEAACAjQTUEkMJAYmDv4jVM1z+s4jSQuKFvdvoWFqRINyzpkMLyPPgKn9iB5btb2iUspKdV +cSQy9sgL8rxq+JOssgfCX5/bzMiKqr5qb+FJEMwx14C7u8jYog5kV+qi9cKpMRXSIGrs/CIBKM+G +uIAeqcwRpTzyFrNHnfzSgCHEy9BHcEGhyoMZCCxt8l13nIoUE9Q2HJLw5QY33KbmkJs4j1xrG0aG +Q0JfPgEHU1RdZX33inOhmlRaHylDFCfChQ+1iHsaO5S3HWCntZznKWlXWpuTekMwGwPXYshApqr8 +ZORK15FTAaggiG6cX0S5y2CBNOxv033aSF/rtJC8LakcC6wc1aJoIIAE1vyxjy+7SjENSoYc6+I2 +KSb12tjE8nVhz36udmNKekBlk4f4HoCMhuWG1o8O/FMsYOgWYRqiPkN7zTlgVGr18okmAWiDSKIz +6MkEkbIRNBE+6tBDGR8Dk5AM/1E9V/RBbuHLoL7ryWPNbczk+DaqaJ3tvV2XcEQNtg413OEMXbug +UZTLfhbrES+jkkXITHHZvMmZUldGL1DPvTVp9D0VzgalLA8+9oG6lLvDu79leNKGef9JOxqDDPDe +eOzI8k1MGt6CKfjBWtrt7uYnXuhF0J0cUahoq0Tj0Itq4/g7u9xN12TyUb7mqqta6THuBrxzvxNi +Cp/HuZc= +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert072.pem b/test/rules/platform_certs/default/cert072.pem new file mode 100644 index 000000000000..e2232c988acd --- /dev/null +++ b/test/rules/platform_certs/default/cert072.pem @@ -0,0 +1,20 @@ +T-TeleSec GlobalRoot Class 3 +-----BEGIN CERTIFICATE----- +MIIDwzCCAqugAwIBAgIBATANBgkqhkiG9w0BAQsFADCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoM +IlQtU3lzdGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBU +cnVzdCBDZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDMwHhcNMDgx +MDAxMTAyOTU2WhcNMzMxMDAxMjM1OTU5WjCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoMIlQtU3lz +dGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBD +ZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDMwggEiMA0GCSqGSIb3 +DQEBAQUAA4IBDwAwggEKAoIBAQC9dZPwYiJvJK7genasfb3ZJNW4t/zN8ELg63iIVl6bmlQdTQyK +9tPPcPRStdiTBONGhnFBSivwKixVA9ZIw+A5OO3yXDw/RLyTPWGrTs0NvvAgJ1gORH8EGoel15YU +NpDQSXuhdfsaa3Ox+M6pCSzyU9XDFES4hqX2iys52qMzVNn6chr3IhUciJFrf2blw2qAsCTz34ZF +iP0Zf3WHHx+xGwpzJFu5ZeAsVMhg02YXP+HMVDNzkQI6pn97djmiH5a2OK61yJN0HZ65tOVgnS9W +0eDrXltMEnAMbEQgqxHY9Bn20pxSN+f6tsIxO0rUFJmtxxr1XV/6B7h8DR/Wgx6zAgMBAAGjQjBA +MA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBS1A/d2O2GCahKqGFPr +AyGUv/7OyjANBgkqhkiG9w0BAQsFAAOCAQEAVj3vlNW92nOyWL6ukK2YJ5f+AbGwUgC4TeQbIXQb +fsDuXmkqJa9c1h3a0nnJ85cp4IaH3gRZD/FZ1GSFS5mvJQQeyUapl96Cshtwn5z2r3Ex3XsFpSzT +ucpH9sry9uetuUg/vBa3wW306gmv7PO15wWeph6KU1HWk4HMdJP2udqmJQV0eVp+QD6CSyYRMG7h +P0HHRwA11fXT91Q+gT3aSWqas+8QPebrb9HIIkfLzM8BMZLZGOMivgkeGj5asuRrDFR6fUNOuIml +e9eiPZaGzPImNC1qkp2aGtAw4l1OBLBfiyB+d8E9lYLRRpo7PHi4b6HQDWSieB4pTpPDpFQUWw== +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert073.pem b/test/rules/platform_certs/default/cert073.pem new file mode 100644 index 000000000000..b8f77e06a077 --- /dev/null +++ b/test/rules/platform_certs/default/cert073.pem @@ -0,0 +1,22 @@ +EE Certification Centre Root CA +-----BEGIN CERTIFICATE----- +MIIEAzCCAuugAwIBAgIQVID5oHPtPwBMyonY43HmSjANBgkqhkiG9w0BAQUFADB1MQswCQYDVQQG +EwJFRTEiMCAGA1UECgwZQVMgU2VydGlmaXRzZWVyaW1pc2tlc2t1czEoMCYGA1UEAwwfRUUgQ2Vy +dGlmaWNhdGlvbiBDZW50cmUgUm9vdCBDQTEYMBYGCSqGSIb3DQEJARYJcGtpQHNrLmVlMCIYDzIw +MTAxMDMwMTAxMDMwWhgPMjAzMDEyMTcyMzU5NTlaMHUxCzAJBgNVBAYTAkVFMSIwIAYDVQQKDBlB +UyBTZXJ0aWZpdHNlZXJpbWlza2Vza3VzMSgwJgYDVQQDDB9FRSBDZXJ0aWZpY2F0aW9uIENlbnRy +ZSBSb290IENBMRgwFgYJKoZIhvcNAQkBFglwa2lAc2suZWUwggEiMA0GCSqGSIb3DQEBAQUAA4IB +DwAwggEKAoIBAQDIIMDs4MVLqwd4lfNE7vsLDP90jmG7sWLqI9iroWUyeuuOF0+W2Ap7kaJjbMeM +TC55v6kF/GlclY1i+blw7cNRfdCT5mzrMEvhvH2/UpvObntl8jixwKIy72KyaOBhU8E2lf/slLo2 +rpwcpzIP5Xy0xm90/XsY6KxX7QYgSzIwWFv9zajmofxwvI6Sc9uXp3whrj3B9UiHbCe9nyV0gVWw +93X2PaRka9ZP585ArQ/dMtO8ihJTmMmJ+xAdTX7Nfh9WDSFwhfYggx/2uh8Ej+p3iDXE/+pOoYtN +P2MbRMNE1CV2yreN1x5KZmTNXMWcg+HCCIia7E6j8T4cLNlsHaFLAgMBAAGjgYowgYcwDwYDVR0T +AQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFBLyWj7qVhy/zQas8fElyalL1BSZ +MEUGA1UdJQQ+MDwGCCsGAQUFBwMCBggrBgEFBQcDAQYIKwYBBQUHAwMGCCsGAQUFBwMEBggrBgEF +BQcDCAYIKwYBBQUHAwkwDQYJKoZIhvcNAQEFBQADggEBAHv25MANqhlHt01Xo/6tu7Fq1Q+e2+Rj +xY6hUFaTlrg4wCQiZrxTFGGVv9DHKpY5P30osxBAIWrEr7BSdxjhlthWXePdNl4dp1BUoMUq5KqM +lIpPnTX/dqQGE5Gion0ARD9V04I8GtVbvFZMIi5GQ4okQC3zErg7cBqklrkar4dBGmoYDQZPxz5u +uSlNDUmJEYcyW+ZLBMjkXOZ0c5RdFpgTlf7727FE5TpwrDdr5rMzcijJs1eg9gIWiAYLtqZLICjU +3j2LrTcFU3T+bsy8QxdxXvnFzBqpYe73dgzzcvRyrc9yAjYHR8/vGVCJYMzpJJUPwssd8m92kMfM +dcGWxZ0= +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert074.pem b/test/rules/platform_certs/default/cert074.pem new file mode 100644 index 000000000000..90d38315809e --- /dev/null +++ b/test/rules/platform_certs/default/cert074.pem @@ -0,0 +1,22 @@ +D-TRUST Root Class 3 CA 2 2009 +-----BEGIN CERTIFICATE----- +MIIEMzCCAxugAwIBAgIDCYPzMA0GCSqGSIb3DQEBCwUAME0xCzAJBgNVBAYTAkRFMRUwEwYDVQQK +DAxELVRydXN0IEdtYkgxJzAlBgNVBAMMHkQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgMjAwOTAe +Fw0wOTExMDUwODM1NThaFw0yOTExMDUwODM1NThaME0xCzAJBgNVBAYTAkRFMRUwEwYDVQQKDAxE +LVRydXN0IEdtYkgxJzAlBgNVBAMMHkQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgMjAwOTCCASIw +DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANOySs96R+91myP6Oi/WUEWJNTrGa9v+2wBoqOAD +ER03UAifTUpolDWzU9GUY6cgVq/eUXjsKj3zSEhQPgrfRlWLJ23DEE0NkVJD2IfgXU42tSHKXzlA +BF9bfsyjxiupQB7ZNoTWSPOSHjRGICTBpFGOShrvUD9pXRl/RcPHAY9RySPocq60vFYJfxLLHLGv +KZAKyVXMD9O0Gu1HNVpK7ZxzBCHQqr0ME7UAyiZsxGsMlFqVlNpQmvH/pStmMaTJOKDfHR+4CS7z +p+hnUquVH+BGPtikw8paxTGA6Eian5Rp/hnd2HN8gcqW3o7tszIFZYQ05ub9VxC1X3a/L7AQDcUC +AwEAAaOCARowggEWMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFP3aFMSfMN4hvR5COfyrYyNJ +4PGEMA4GA1UdDwEB/wQEAwIBBjCB0wYDVR0fBIHLMIHIMIGAoH6gfIZ6bGRhcDovL2RpcmVjdG9y +eS5kLXRydXN0Lm5ldC9DTj1ELVRSVVNUJTIwUm9vdCUyMENsYXNzJTIwMyUyMENBJTIwMiUyMDIw +MDksTz1ELVRydXN0JTIwR21iSCxDPURFP2NlcnRpZmljYXRlcmV2b2NhdGlvbmxpc3QwQ6BBoD+G +PWh0dHA6Ly93d3cuZC10cnVzdC5uZXQvY3JsL2QtdHJ1c3Rfcm9vdF9jbGFzc18zX2NhXzJfMjAw +OS5jcmwwDQYJKoZIhvcNAQELBQADggEBAH+X2zDI36ScfSF6gHDOFBJpiBSVYEQBrLLpME+bUMJm +2H6NMLVwMeniacfzcNsgFYbQDfC+rAF1hM5+n02/t2A7nPPKHeJeaNijnZflQGDSNiH+0LS4F9p0 +o3/U37CYAqxva2ssJSRyoWXuJVrl5jLn8t+rSfrzkGkj2wTZ51xY/GXUl77M/C4KzCUqNQT4YJEV +dT1B/yMfGchs64JTBKbkTCJNjYy6zltz7GRUUG3RnFX7acM2w4y8PIWmawomDeCTmGCufsYkl4ph +X5GOZpIJhzbNi5stPvZR1FDUWSi9g/LMKHtThm3YJohw1+qRzT65ysCQblrGXnRl11z+o+I= +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert075.pem b/test/rules/platform_certs/default/cert075.pem new file mode 100644 index 000000000000..cd874b93b2b9 --- /dev/null +++ b/test/rules/platform_certs/default/cert075.pem @@ -0,0 +1,23 @@ +D-TRUST Root Class 3 CA 2 EV 2009 +-----BEGIN CERTIFICATE----- +MIIEQzCCAyugAwIBAgIDCYP0MA0GCSqGSIb3DQEBCwUAMFAxCzAJBgNVBAYTAkRFMRUwEwYDVQQK +DAxELVRydXN0IEdtYkgxKjAoBgNVBAMMIUQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgRVYgMjAw +OTAeFw0wOTExMDUwODUwNDZaFw0yOTExMDUwODUwNDZaMFAxCzAJBgNVBAYTAkRFMRUwEwYDVQQK +DAxELVRydXN0IEdtYkgxKjAoBgNVBAMMIUQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgRVYgMjAw +OTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAJnxhDRwui+3MKCOvXwEz75ivJn9gpfS +egpnljgJ9hBOlSJzmY3aFS3nBfwZcyK3jpgAvDw9rKFs+9Z5JUut8Mxk2og+KbgPCdM03TP1YtHh +zRnp7hhPTFiu4h7WDFsVWtg6uMQYZB7jM7K1iXdODL/ZlGsTl28So/6ZqQTMFexgaDbtCHu39b+T +7WYxg4zGcTSHThfqr4uRjRxWQa4iN1438h3Z0S0NL2lRp75mpoo6Kr3HGrHhFPC+Oh25z1uxav60 +sUYgovseO3Dvk5h9jHOW8sXvhXCtKSb8HgQ+HKDYD8tSg2J87otTlZCpV6LqYQXY+U3EJ/pure35 +11H3a6UCAwEAAaOCASQwggEgMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFNOUikxiEyoZLsyv +cop9NteaHNxnMA4GA1UdDwEB/wQEAwIBBjCB3QYDVR0fBIHVMIHSMIGHoIGEoIGBhn9sZGFwOi8v +ZGlyZWN0b3J5LmQtdHJ1c3QubmV0L0NOPUQtVFJVU1QlMjBSb290JTIwQ2xhc3MlMjAzJTIwQ0El +MjAyJTIwRVYlMjAyMDA5LE89RC1UcnVzdCUyMEdtYkgsQz1ERT9jZXJ0aWZpY2F0ZXJldm9jYXRp +b25saXN0MEagRKBChkBodHRwOi8vd3d3LmQtdHJ1c3QubmV0L2NybC9kLXRydXN0X3Jvb3RfY2xh +c3NfM19jYV8yX2V2XzIwMDkuY3JsMA0GCSqGSIb3DQEBCwUAA4IBAQA07XtaPKSUiO8aEXUHL7P+ +PPoeUSbrh/Yp3uDx1MYkCenBz1UbtDDZzhr+BlGmFaQt77JLvyAoJUnRpjZ3NOhk31KxEcdzes05 +nsKtjHEh8lprr988TlWvsoRlFIm5d8sqMb7Po23Pb0iUMkZv53GMoKaEGTcH8gNFCSuGdXzfX2lX +ANtu2KZyIktQ1HWYVt+3GP9DQ1CuekR78HlR10M9p9OB0/DJT7naxpeG0ILD5EJt/rDiZE4OJudA +NCa1CInXCGNjOCd1HjPqbqjdn5lPdE2BiYBL3ZqXKVwvvoFBuYz/6n1gBp7N1z3TLqMVvKjmJuVv +w9y4AyHqnxbxLFS1 +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert076.pem b/test/rules/platform_certs/default/cert076.pem new file mode 100644 index 000000000000..e1336960f501 --- /dev/null +++ b/test/rules/platform_certs/default/cert076.pem @@ -0,0 +1,28 @@ +CA Disig Root R2 +-----BEGIN CERTIFICATE----- +MIIFaTCCA1GgAwIBAgIJAJK4iNuwisFjMA0GCSqGSIb3DQEBCwUAMFIxCzAJBgNVBAYTAlNLMRMw +EQYDVQQHEwpCcmF0aXNsYXZhMRMwEQYDVQQKEwpEaXNpZyBhLnMuMRkwFwYDVQQDExBDQSBEaXNp +ZyBSb290IFIyMB4XDTEyMDcxOTA5MTUzMFoXDTQyMDcxOTA5MTUzMFowUjELMAkGA1UEBhMCU0sx +EzARBgNVBAcTCkJyYXRpc2xhdmExEzARBgNVBAoTCkRpc2lnIGEucy4xGTAXBgNVBAMTEENBIERp +c2lnIFJvb3QgUjIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCio8QACdaFXS1tFPbC +w3OeNcJxVX6B+6tGUODBfEl45qt5WDza/3wcn9iXAng+a0EE6UG9vgMsRfYvZNSrXaNHPWSb6Wia +xswbP7q+sos0Ai6YVRn8jG+qX9pMzk0DIaPY0jSTVpbLTAwAFjxfGs3Ix2ymrdMxp7zo5eFm1tL7 +A7RBZckQrg4FY8aAamkw/dLukO8NJ9+flXP04SXabBbeQTg06ov80egEFGEtQX6sx3dOy1FU+16S +GBsEWmjGycT6txOgmLcRK7fWV8x8nhfRyyX+hk4kLlYMeE2eARKmK6cBZW58Yh2EhN/qwGu1pSqV +g8NTEQxzHQuyRpDRQjrOQG6Vrf/GlK1ul4SOfW+eioANSW1z4nuSHsPzwfPrLgVv2RvPN3YEyLRa +5Beny912H9AZdugsBbPWnDTYltxhh5EF5EQIM8HauQhl1K6yNg3ruji6DOWbnuuNZt2Zz9aJQfYE +koopKW1rOhzndX0CcQ7zwOe9yxndnWCywmZgtrEE7snmhrmaZkCo5xHtgUUDi/ZnWejBBhG93c+A +Ak9lQHhcR1DIm+YfgXvkRKhbhZri3lrVx/k6RGZL5DJUfORsnLMOPReisjQS1n6yqEm70XooQL6i +Fh/f5DcfEXP7kAplQ6INfPgGAVUzfbANuPT1rqVCV3w2EYx7XsQDnYx5nQIDAQABo0IwQDAPBgNV +HRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUtZn4r7CU9eMg1gqtzk5WpC5u +Qu0wDQYJKoZIhvcNAQELBQADggIBACYGXnDnZTPIgm7ZnBc6G3pmsgH2eDtpXi/q/075KMOYKmFM +tCQSin1tERT3nLXK5ryeJ45MGcipvXrA1zYObYVybqjGom32+nNjf7xueQgcnYqfGopTpti72TVV +sRHFqQOzVju5hJMiXn7B9hJSi+osZ7z+Nkz1uM/Rs0mSO9MpDpkblvdhuDvEK7Z4bLQjb/D907Je +dR+Zlais9trhxTF7+9FGs9K8Z7RiVLoJ92Owk6Ka+elSLotgEqv89WBW7xBci8QaQtyDW2QOy7W8 +1k/BfDxujRNt+3vrMNDcTa/F1balTFtxyegxvug4BkihGuLq0t4SOVga/4AOgnXmt8kHbA7v/zjx +mHHEt38OFdAlab0inSvtBfZGR6ztwPDUO+Ls7pZbkBNOHlY667DvlruWIxG68kOGdGSVyCh13x01 +utI3gzhTODY7z2zp+WsO0PsE6E9312UBeIYMej4hYvF/Y3EMyZ9E26gnonW+boE+18DrG5gPcFw0 +sorMwIUY6256s/daoQe/qUKS82Ail+QUoQebTnbAjn39pCXHR+3/H3OszMOl6W8KjptlwlCFtaOg +UxLMVYdh84GuEEZhvUQhuMI9dM9+JDX6HAcOmz0iyu8xL4ysEr3vQCj8KWefshNPZiTEUxnpHikV +7+ZtsH8tZ/3zbBt1RqPlShfppNcL +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert077.pem b/test/rules/platform_certs/default/cert077.pem new file mode 100644 index 000000000000..b261207dbfe6 --- /dev/null +++ b/test/rules/platform_certs/default/cert077.pem @@ -0,0 +1,39 @@ +ACCVRAIZ1 +-----BEGIN CERTIFICATE----- +MIIH0zCCBbugAwIBAgIIXsO3pkN/pOAwDQYJKoZIhvcNAQEFBQAwQjESMBAGA1UEAwwJQUNDVlJB +SVoxMRAwDgYDVQQLDAdQS0lBQ0NWMQ0wCwYDVQQKDARBQ0NWMQswCQYDVQQGEwJFUzAeFw0xMTA1 +MDUwOTM3MzdaFw0zMDEyMzEwOTM3MzdaMEIxEjAQBgNVBAMMCUFDQ1ZSQUlaMTEQMA4GA1UECwwH +UEtJQUNDVjENMAsGA1UECgwEQUNDVjELMAkGA1UEBhMCRVMwggIiMA0GCSqGSIb3DQEBAQUAA4IC +DwAwggIKAoICAQCbqau/YUqXry+XZpp0X9DZlv3P4uRm7x8fRzPCRKPfmt4ftVTdFXxpNRFvu8gM +jmoYHtiP2Ra8EEg2XPBjs5BaXCQ316PWywlxufEBcoSwfdtNgM3802/J+Nq2DoLSRYWoG2ioPej0 +RGy9ocLLA76MPhMAhN9KSMDjIgro6TenGEyxCQ0jVn8ETdkXhBilyNpAlHPrzg5XPAOBOp0KoVdD +aaxXbXmQeOW1tDvYvEyNKKGno6e6Ak4l0Squ7a4DIrhrIA8wKFSVf+DuzgpmndFALW4ir50awQUZ +0m/A8p/4e7MCQvtQqR0tkw8jq8bBD5L/0KIV9VMJcRz/RROE5iZe+OCIHAr8Fraocwa48GOEAqDG +WuzndN9wrqODJerWx5eHk6fGioozl2A3ED6XPm4pFdahD9GILBKfb6qkxkLrQaLjlUPTAYVtjrs7 +8yM2x/474KElB0iryYl0/wiPgL/AlmXz7uxLaL2diMMxs0Dx6M/2OLuc5NF/1OVYm3z61PMOm3WR +5LpSLhl+0fXNWhn8ugb2+1KoS5kE3fj5tItQo05iifCHJPqDQsGH+tUtKSpacXpkatcnYGMN285J +9Y0fkIkyF/hzQ7jSWpOGYdbhdQrqeWZ2iE9x6wQl1gpaepPluUsXQA+xtrn13k/c4LOsOxFwYIRK +Q26ZIMApcQrAZQIDAQABo4ICyzCCAscwfQYIKwYBBQUHAQEEcTBvMEwGCCsGAQUFBzAChkBodHRw +Oi8vd3d3LmFjY3YuZXMvZmlsZWFkbWluL0FyY2hpdm9zL2NlcnRpZmljYWRvcy9yYWl6YWNjdjEu +Y3J0MB8GCCsGAQUFBzABhhNodHRwOi8vb2NzcC5hY2N2LmVzMB0GA1UdDgQWBBTSh7Tj3zcnk1X2 +VuqB5TbMjB4/vTAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFNKHtOPfNyeTVfZW6oHlNsyM +Hj+9MIIBcwYDVR0gBIIBajCCAWYwggFiBgRVHSAAMIIBWDCCASIGCCsGAQUFBwICMIIBFB6CARAA +QQB1AHQAbwByAGkAZABhAGQAIABkAGUAIABDAGUAcgB0AGkAZgBpAGMAYQBjAGkA8wBuACAAUgBh +AO0AegAgAGQAZQAgAGwAYQAgAEEAQwBDAFYAIAAoAEEAZwBlAG4AYwBpAGEAIABkAGUAIABUAGUA +YwBuAG8AbABvAGcA7QBhACAAeQAgAEMAZQByAHQAaQBmAGkAYwBhAGMAaQDzAG4AIABFAGwAZQBj +AHQAcgDzAG4AaQBjAGEALAAgAEMASQBGACAAUQA0ADYAMAAxADEANQA2AEUAKQAuACAAQwBQAFMA +IABlAG4AIABoAHQAdABwADoALwAvAHcAdwB3AC4AYQBjAGMAdgAuAGUAczAwBggrBgEFBQcCARYk +aHR0cDovL3d3dy5hY2N2LmVzL2xlZ2lzbGFjaW9uX2MuaHRtMFUGA1UdHwROMEwwSqBIoEaGRGh0 +dHA6Ly93d3cuYWNjdi5lcy9maWxlYWRtaW4vQXJjaGl2b3MvY2VydGlmaWNhZG9zL3JhaXphY2N2 +MV9kZXIuY3JsMA4GA1UdDwEB/wQEAwIBBjAXBgNVHREEEDAOgQxhY2N2QGFjY3YuZXMwDQYJKoZI +hvcNAQEFBQADggIBAJcxAp/n/UNnSEQU5CmH7UwoZtCPNdpNYbdKl02125DgBS4OxnnQ8pdpD70E +R9m+27Up2pvZrqmZ1dM8MJP1jaGo/AaNRPTKFpV8M9xii6g3+CfYCS0b78gUJyCpZET/LtZ1qmxN +YEAZSUNUY9rizLpm5U9EelvZaoErQNV/+QEnWCzI7UiRfD+mAM/EKXMRNt6GGT6d7hmKG9Ww7Y49 +nCrADdg9ZuM8Db3VlFzi4qc1GwQA9j9ajepDvV+JHanBsMyZ4k0ACtrJJ1vnE5Bc5PUzolVt3OAJ +TS+xJlsndQAJxGJ3KQhfnlmstn6tn1QwIgPBHnFk/vk4CpYY3QIUrCPLBhwepH2NDd4nQeit2hW3 +sCPdK6jT2iWH7ehVRE2I9DZ+hJp4rPcOVkkO1jMl1oRQQmwgEh0q1b688nCBpHBgvgW1m54ERL5h +I6zppSSMEYCUWqKiuUnSwdzRp+0xESyeGabu4VXhwOrPDYTkF7eifKXeVSUG7szAh1xA2syVP1Xg +Nce4hL60Xc16gwFy7ofmXx2utYXGJt/mwZrpHgJHnyqobalbz+xFd3+YJ5oyXSrjhO7FmGYvliAd +3djDJ9ew+f7Zfc3Qn48LFFhRny+Lwzgt3uiP1o2HpPVWQxaZLPSkVrQ0uGE3ycJYgBugl6H8WY3p +EfbRD0tVNEYqi4Y7 +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert078.pem b/test/rules/platform_certs/default/cert078.pem new file mode 100644 index 000000000000..7c69ef53587c --- /dev/null +++ b/test/rules/platform_certs/default/cert078.pem @@ -0,0 +1,27 @@ +TWCA Global Root CA +-----BEGIN CERTIFICATE----- +MIIFQTCCAymgAwIBAgICDL4wDQYJKoZIhvcNAQELBQAwUTELMAkGA1UEBhMCVFcxEjAQBgNVBAoT +CVRBSVdBTi1DQTEQMA4GA1UECxMHUm9vdCBDQTEcMBoGA1UEAxMTVFdDQSBHbG9iYWwgUm9vdCBD +QTAeFw0xMjA2MjcwNjI4MzNaFw0zMDEyMzExNTU5NTlaMFExCzAJBgNVBAYTAlRXMRIwEAYDVQQK +EwlUQUlXQU4tQ0ExEDAOBgNVBAsTB1Jvb3QgQ0ExHDAaBgNVBAMTE1RXQ0EgR2xvYmFsIFJvb3Qg +Q0EwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCwBdvI64zEbooh745NnHEKH1Jw7W2C +nJfF10xORUnLQEK1EjRsGcJ0pDFfhQKX7EMzClPSnIyOt7h52yvVavKOZsTuKwEHktSz0ALfUPZV +r2YOy+BHYC8rMjk1Ujoog/h7FsYYuGLWRyWRzvAZEk2tY/XTP3VfKfChMBwqoJimFb3u/Rk28OKR +Q4/6ytYQJ0lM793B8YVwm8rqqFpD/G2Gb3PpN0Wp8DbHzIh1HrtsBv+baz4X7GGqcXzGHaL3SekV +tTzWoWH1EfcFbx39Eb7QMAfCKbAJTibc46KokWofwpFFiFzlmLhxpRUZyXx1EcxwdE8tmx2RRP1W +KKD+u4ZqyPpcC1jcxkt2yKsi2XMPpfRaAok/T54igu6idFMqPVMnaR1sjjIsZAAmY2E2TqNGtz99 +sy2sbZCilaLOz9qC5wc0GZbpuCGqKX6mOL6OKUohZnkfs8O1CWfe1tQHRvMq2uYiN2DLgbYPoA/p +yJV/v1WRBXrPPRXAb94JlAGD1zQbzECl8LibZ9WYkTunhHiVJqRaCPgrdLQABDzfuBSO6N+pjWxn +kjMdwLfS7JLIvgm/LCkFbwJrnu+8vyq8W8BQj0FwcYeyTbcEqYSjMq+u7msXi7Kx/mzhkIyIqJdI +zshNy/MGz19qCkKxHh53L46g5pIOBvwFItIm4TFRfTLcDwIDAQABoyMwITAOBgNVHQ8BAf8EBAMC +AQYwDwYDVR0TAQH/BAUwAwEB/zANBgkqhkiG9w0BAQsFAAOCAgEAXzSBdu+WHdXltdkCY4QWwa6g +cFGn90xHNcgL1yg9iXHZqjNB6hQbbCEAwGxCGX6faVsgQt+i0trEfJdLjbDorMjupWkEmQqSpqsn +LhpNgb+E1HAerUf+/UqdM+DyucRFCCEK2mlpc3INvjT+lIutwx4116KD7+U4x6WFH6vPNOw/KP4M +8VeGTslV9xzU2KV9Bnpv1d8Q34FOIWWxtuEXeZVFBs5fzNxGiWNoRI2T9GRwoD2dKAXDOXC4Ynsg +/eTb6QihuJ49CcdP+yz4k3ZB3lLg4VfSnQO8d57+nile98FRYB/e2guyLXW3Q0iT5/Z5xoRdgFlg +lPx4mI88k1HtQJAH32RjJMtOcQWh15QaiDLxInQirqWm2BJpTGCjAu4r7NRjkgtevi92a6O2JryP +A9gK8kxkRr05YuWW6zRjESjMlfGt7+/cgFhI6Uu46mWs6fyAtbXIRfmswZ/ZuepiiI7E8UuDEq3m +i4TWnsLrgxifarsbJGAzcMzs9zLzXNl5fe+epP7JI8Mk7hWSsT2RTyaGvWZzJBPqpK5jwa19hAM8 +EHiGG3njxPPyBJUgriOCxLM6AGK/5jYk4Ve6xx6QddVfP5VhK8E7zeWzaGHQRiapIVJpLesux+t3 +zqY6tQMzT3bR51xUAV3LePTJDL/PEo4XLSNolOer/qmyKwbQBM0= +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert079.pem b/test/rules/platform_certs/default/cert079.pem new file mode 100644 index 000000000000..f5bd27acb7c2 --- /dev/null +++ b/test/rules/platform_certs/default/cert079.pem @@ -0,0 +1,27 @@ +TeliaSonera Root CA v1 +-----BEGIN CERTIFICATE----- +MIIFODCCAyCgAwIBAgIRAJW+FqD3LkbxezmCcvqLzZYwDQYJKoZIhvcNAQEFBQAwNzEUMBIGA1UE +CgwLVGVsaWFTb25lcmExHzAdBgNVBAMMFlRlbGlhU29uZXJhIFJvb3QgQ0EgdjEwHhcNMDcxMDE4 +MTIwMDUwWhcNMzIxMDE4MTIwMDUwWjA3MRQwEgYDVQQKDAtUZWxpYVNvbmVyYTEfMB0GA1UEAwwW +VGVsaWFTb25lcmEgUm9vdCBDQSB2MTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMK+ +6yfwIaPzaSZVfp3FVRaRXP3vIb9TgHot0pGMYzHw7CTww6XScnwQbfQ3t+XmfHnqjLWCi65ItqwA +3GV17CpNX8GH9SBlK4GoRz6JI5UwFpB/6FcHSOcZrr9FZ7E3GwYq/t75rH2D+1665I+XZ75Ljo1k +B1c4VWk0Nj0TSO9P4tNmHqTPGrdeNjPUtAa9GAH9d4RQAEX1jF3oI7x+/jXh7VB7qTCNGdMJjmhn +Xb88lxhTuylixcpecsHHltTbLaC0H2kD7OriUPEMPPCs81Mt8Bz17Ww5OXOAFshSsCPN4D7c3TxH +oLs1iuKYaIu+5b9y7tL6pe0S7fyYGKkmdtwoSxAgHNN/Fnct7W+A90m7UwW7XWjH1Mh1Fj+JWov3 +F0fUTPHSiXk+TT2YqGHeOh7S+F4D4MHJHIzTjU3TlTazN19jY5szFPAtJmtTfImMMsJu7D0hADnJ +oWjiUIMusDor8zagrC/kb2HCUQk5PotTubtn2txTuXZZNp1D5SDgPTJghSJRt8czu90VL6R4pgd7 +gUY2BIbdeTXHlSw7sKMXNeVzH7RcWe/a6hBle3rQf5+ztCo3O3CLm1u5K7fsslESl1MpWtTwEhDc +TwK7EpIvYtQ/aUN8Ddb8WHUBiJ1YFkveupD/RwGJBmr2X7KQarMCpgKIv7NHfirZ1fpoeDVNAgMB +AAGjPzA9MA8GA1UdEwEB/wQFMAMBAf8wCwYDVR0PBAQDAgEGMB0GA1UdDgQWBBTwj1k4ALP1j5qW +DNXr+nuqF+gTEjANBgkqhkiG9w0BAQUFAAOCAgEAvuRcYk4k9AwI//DTDGjkk0kiP0Qnb7tt3oNm +zqjMDfz1mgbldxSR651Be5kqhOX//CHBXfDkH1e3damhXwIm/9fH907eT/j3HEbAek9ALCI18Bmx +0GtnLLCo4MBANzX2hFxc469CeP6nyQ1Q6g2EdvZR74NTxnr/DlZJLo961gzmJ1TjTQpgcmLNkQfW +pb/ImWvtxBnmq0wROMVvMeJuScg/doAmAyYp4Db29iBT4xdwNBedY2gea+zDTYa4EzAvXUYNR0PV +G6pZDrlcjQZIrXSHX8f8MVRBE+LHIQ6e4B4N4cB7Q4WQxYpYxmUKeFfyxiMPAdkgS94P+5KFdSpc +c41teyWRyu5FrgZLAMzTsVlQ2jqIOylDRl6XK1TOU2+NSueW+r9xDkKLfP0ooNBIytrEgUy7onOT +JsjrDNYmiLbAJM+7vVvrdX3pCI6GMyx5dwlppYn8s3CQh3aP0yK7Qs69cwsgJirQmz1wHiRszYd2 +qReWt88NkvuOGKmYSdGe/mBEciG5Ge3C9THxOUiIkCR1VBatzvT4aRRkOfujuLpwQMcnHL/EVlP6 +Y2XQ8xwOFvVrhlhNGNTkDY6lnVuR3HYkUD/GKvvZt5y11ubQ2egZixVxSK236thZiNSQvxaz2ems +WWFUyBy6ysHK4bkgTI86k4mloMy/0/Z1pHWWbVY= +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert080.pem b/test/rules/platform_certs/default/cert080.pem new file mode 100644 index 000000000000..d2dbf23e5cde --- /dev/null +++ b/test/rules/platform_certs/default/cert080.pem @@ -0,0 +1,32 @@ +E-Tugra Certification Authority +-----BEGIN CERTIFICATE----- +MIIGSzCCBDOgAwIBAgIIamg+nFGby1MwDQYJKoZIhvcNAQELBQAwgbIxCzAJBgNVBAYTAlRSMQ8w +DQYDVQQHDAZBbmthcmExQDA+BgNVBAoMN0UtVHXEn3JhIEVCRyBCaWxpxZ9pbSBUZWtub2xvamls +ZXJpIHZlIEhpem1ldGxlcmkgQS7Fni4xJjAkBgNVBAsMHUUtVHVncmEgU2VydGlmaWthc3lvbiBN +ZXJrZXppMSgwJgYDVQQDDB9FLVR1Z3JhIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTEzMDMw +NTEyMDk0OFoXDTIzMDMwMzEyMDk0OFowgbIxCzAJBgNVBAYTAlRSMQ8wDQYDVQQHDAZBbmthcmEx +QDA+BgNVBAoMN0UtVHXEn3JhIEVCRyBCaWxpxZ9pbSBUZWtub2xvamlsZXJpIHZlIEhpem1ldGxl +cmkgQS7Fni4xJjAkBgNVBAsMHUUtVHVncmEgU2VydGlmaWthc3lvbiBNZXJrZXppMSgwJgYDVQQD +DB9FLVR1Z3JhIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIICIjANBgkqhkiG9w0BAQEFAAOCAg8A +MIICCgKCAgEA4vU/kwVRHoViVF56C/UYB4Oufq9899SKa6VjQzm5S/fDxmSJPZQuVIBSOTkHS0vd +hQd2h8y/L5VMzH2nPbxHD5hw+IyFHnSOkm0bQNGZDbt1bsipa5rAhDGvykPL6ys06I+XawGb1Q5K +CKpbknSFQ9OArqGIW66z6l7LFpp3RMih9lRozt6Plyu6W0ACDGQXwLWTzeHxE2bODHnv0ZEoq1+g +ElIwcxmOj+GMB6LDu0rw6h8VqO4lzKRG+Bsi77MOQ7osJLjFLFzUHPhdZL3Dk14opz8n8Y4e0ypQ +BaNV2cvnOVPAmJ6MVGKLJrD3fY185MaeZkJVgkfnsliNZvcHfC425lAcP9tDJMW/hkd5s3kc91r0 +E+xs+D/iWR+V7kI+ua2oMoVJl0b+SzGPWsutdEcf6ZG33ygEIqDUD13ieU/qbIWGvaimzuT6w+Gz +rt48Ue7LE3wBf4QOXVGUnhMMti6lTPk5cDZvlsouDERVxcr6XQKj39ZkjFqzAQqptQpHF//vkUAq +jqFGOjGY5RH8zLtJVor8udBhmm9lbObDyz51Sf6Pp+KJxWfXnUYTTjF2OySznhFlhqt/7x3U+Lzn +rFpct1pHXFXOVbQicVtbC/DP3KBhZOqp12gKY6fgDT+gr9Oq0n7vUaDmUStVkhUXU8u3Zg5mTPj5 +dUyQ5xJwx0UCAwEAAaNjMGEwHQYDVR0OBBYEFC7j27JJ0JxUeVz6Jyr+zE7S6E5UMA8GA1UdEwEB +/wQFMAMBAf8wHwYDVR0jBBgwFoAULuPbsknQnFR5XPonKv7MTtLoTlQwDgYDVR0PAQH/BAQDAgEG +MA0GCSqGSIb3DQEBCwUAA4ICAQAFNzr0TbdF4kV1JI+2d1LoHNgQk2Xz8lkGpD4eKexd0dCrfOAK +kEh47U6YA5n+KGCRHTAduGN8qOY1tfrTYXbm1gdLymmasoR6d5NFFxWfJNCYExL/u6Au/U5Mh/jO +XKqYGwXgAEZKgoClM4so3O0409/lPun++1ndYYRP0lSWE2ETPo+Aab6TR7U1Q9Jauz1c77NCR807 +VRMGsAnb/WP2OogKmW9+4c4bU2pEZiNRCHu8W1Ki/QY3OEBhj0qWuJA3+GbHeJAAFS6LrVE1Uweo +a2iu+U48BybNCAVwzDk/dr2l02cmAYamU9JgO3xDf1WKvJUawSg5TB9D0pH0clmKuVb8P7Sd2nCc +dlqMQ1DujjByTd//SffGqWfZbawCEeI6FiWnWAjLb1NBnEg4R2gz0dfHj9R0IdTDBZB6/86WiLEV +KV0jq9BgoRJP3vQXzTLlyb/IQ639Lo7xr+L0mPoSHyDYwKcMhcWQ9DstliaxLL5Mq+ux0orJ23gT +Dx4JnW2PAJ8C2sH6H3p6CcRK5ogql5+Ji/03X186zjhZhkuvcQu02PJwT58yE+Owp1fl2tpDy4Q0 +8ijE6m30Ku/Ba3ba+367hTzSU8JNvnHhRdH9I2cNE3X7z2VnIp2usAnRCf8dNL/+I5c30jn6PQ0G +C7TbO6Orb1wdtn7os4I07QZcJA== +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert081.pem b/test/rules/platform_certs/default/cert081.pem new file mode 100644 index 000000000000..71499a1bed01 --- /dev/null +++ b/test/rules/platform_certs/default/cert081.pem @@ -0,0 +1,20 @@ +T-TeleSec GlobalRoot Class 2 +-----BEGIN CERTIFICATE----- +MIIDwzCCAqugAwIBAgIBATANBgkqhkiG9w0BAQsFADCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoM +IlQtU3lzdGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBU +cnVzdCBDZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDIwHhcNMDgx +MDAxMTA0MDE0WhcNMzMxMDAxMjM1OTU5WjCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoMIlQtU3lz +dGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBD +ZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDIwggEiMA0GCSqGSIb3 +DQEBAQUAA4IBDwAwggEKAoIBAQCqX9obX+hzkeXaXPSi5kfl82hVYAUdAqSzm1nzHoqvNK38DcLZ +SBnuaY/JIPwhqgcZ7bBcrGXHX+0CfHt8LRvWurmAwhiCFoT6ZrAIxlQjgeTNuUk/9k9uN0goOA/F +vudocP05l03Sx5iRUKrERLMjfTlH6VJi1hKTXrcxlkIF+3anHqP1wvzpesVsqXFP6st4vGCvx970 +2cu+fjOlbpSD8DT6IavqjnKgP6TeMFvvhk1qlVtDRKgQFRzlAVfFmPHmBiiRqiDFt1MmUUOyCxGV +WOHAD3bZwI18gfNycJ5v/hqO2V81xrJvNHy+SE/iWjnX2J14np+GPgNeGYtEotXHAgMBAAGjQjBA +MA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBS/WSA2AHmgoCJrjNXy +YdK4LMuCSjANBgkqhkiG9w0BAQsFAAOCAQEAMQOiYQsfdOhyNsZt+U2e+iKo4YFWz827n+qrkRk4 +r6p8FU3ztqONpfSO9kSpp+ghla0+AGIWiPACuvxhI+YzmzB6azZie60EI4RYZeLbK4rnJVM3YlNf +vNoBYimipidx5joifsFvHZVwIEoHNN/q/xWA5brXethbdXwFeilHfkCoMRN3zUA7tFFHei4R40cR +3p1m0IvVVGb6g1XqfMIpiRvpb7PO4gWEyS8+eIVibslfwXhjdFjASBgMmTnrpMwatXlajRWc2BQN +9noHV8cigwUtPJslJj0Ys6lDfMjIq2SPDqO/nBudMNva0Bkuqjzx+zOAduTNrRlPBSeOE6Fuwg== +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert082.pem b/test/rules/platform_certs/default/cert082.pem new file mode 100644 index 000000000000..2a9b5689940f --- /dev/null +++ b/test/rules/platform_certs/default/cert082.pem @@ -0,0 +1,19 @@ +Atos TrustedRoot 2011 +-----BEGIN CERTIFICATE----- +MIIDdzCCAl+gAwIBAgIIXDPLYixfszIwDQYJKoZIhvcNAQELBQAwPDEeMBwGA1UEAwwVQXRvcyBU +cnVzdGVkUm9vdCAyMDExMQ0wCwYDVQQKDARBdG9zMQswCQYDVQQGEwJERTAeFw0xMTA3MDcxNDU4 +MzBaFw0zMDEyMzEyMzU5NTlaMDwxHjAcBgNVBAMMFUF0b3MgVHJ1c3RlZFJvb3QgMjAxMTENMAsG +A1UECgwEQXRvczELMAkGA1UEBhMCREUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCV +hTuXbyo7LjvPpvMpNb7PGKw+qtn4TaA+Gke5vJrf8v7MPkfoepbCJI419KkM/IL9bcFyYie96mvr +54rMVD6QUM+A1JX76LWC1BTFtqlVJVfbsVD2sGBkWXppzwO3bw2+yj5vdHLqqjAqc2K+SZFhyBH+ +DgMq92og3AIVDV4VavzjgsG1xZ1kCWyjWZgHJ8cblithdHFsQ/H3NYkQ4J7sVaE3IqKHBAUsR320 +HLliKWYoyrfhk/WklAOZuXCFteZI6o1Q/NnezG8HDt0Lcp2AMBYHlT8oDv3FdU9T1nSatCQujgKR +z3bFmx5VdJx4IbHwLfELn8LVlhgf8FQieowHAgMBAAGjfTB7MB0GA1UdDgQWBBSnpQaxLKYJYO7R +l+lwrrw7GWzbITAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFKelBrEspglg7tGX6XCuvDsZ +bNshMBgGA1UdIAQRMA8wDQYLKwYBBAGwLQMEAQEwDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3DQEB +CwUAA4IBAQAmdzTblEiGKkGdLD4GkGDEjKwLVLgfuXvTBznk+j57sj1O7Z8jvZfza1zv7v1Apt+h +k6EKhqzvINB5Ab149xnYJDE0BAGmuhWawyfc2E8PzBhj/5kPDpFrdRbhIfzYJsdHt6bPWHJxfrrh +TZVHO8mvbaG0weyJ9rQPOLXiZNwlz6bb65pcmaHFCN795trV1lpFDMS3wrUU77QR/w4VtfX128a9 +61qn8FYiqTxlVMYVqL2Gns2Dlmh6cYGJ4Qvh6hEbaAjMaZ7snkGeRDImeuKHCnE96+RapNLbxc3G +3mB/ufNPRJLvKrcYPqcZ2Qt9sTdBQrC6YB3y/gkRsPCHe6ed +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert083.pem b/test/rules/platform_certs/default/cert083.pem new file mode 100644 index 000000000000..dd4d451ac717 --- /dev/null +++ b/test/rules/platform_certs/default/cert083.pem @@ -0,0 +1,28 @@ +QuoVadis Root CA 1 G3 +-----BEGIN CERTIFICATE----- +MIIFYDCCA0igAwIBAgIUeFhfLq0sGUvjNwc1NBMotZbUZZMwDQYJKoZIhvcNAQELBQAwSDELMAkG +A1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAcBgNVBAMTFVF1b1ZhZGlzIFJv +b3QgQ0EgMSBHMzAeFw0xMjAxMTIxNzI3NDRaFw00MjAxMTIxNzI3NDRaMEgxCzAJBgNVBAYTAkJN +MRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDEg +RzMwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCgvlAQjunybEC0BJyFuTHK3C3kEakE +PBtVwedYMB0ktMPvhd6MLOHBPd+C5k+tR4ds7FtJwUrVu4/sh6x/gpqG7D0DmVIB0jWerNrwU8lm +PNSsAgHaJNM7qAJGr6Qc4/hzWHa39g6QDbXwz8z6+cZM5cOGMAqNF34168Xfuw6cwI2H44g4hWf6 +Pser4BOcBRiYz5P1sZK0/CPTz9XEJ0ngnjybCKOLXSoh4Pw5qlPafX7PGglTvF0FBM+hSo+LdoIN +ofjSxxR3W5A2B4GbPgb6Ul5jxaYA/qXpUhtStZI5cgMJYr2wYBZupt0lwgNm3fME0UDiTouG9G/l +g6AnhF4EwfWQvTA9xO+oabw4m6SkltFi2mnAAZauy8RRNOoMqv8hjlmPSlzkYZqn0ukqeI1RPToV +7qJZjqlc3sX5kCLliEVx3ZGZbHqfPT2YfF72vhZooF6uCyP8Wg+qInYtyaEQHeTTRCOQiJ/GKubX +9ZqzWB4vMIkIG1SitZgj7Ah3HJVdYdHLiZxfokqRmu8hqkkWCKi9YSgxyXSthfbZxbGL0eUQMk1f +iyA6PEkfM4VZDdvLCXVDaXP7a3F98N/ETH3Goy7IlXnLc6KOTk0k+17kBL5yG6YnLUlamXrXXAkg +t3+UuU/xDRxeiEIbEbfnkduebPRq34wGmAOtzCjvpUfzUwIDAQABo0IwQDAPBgNVHRMBAf8EBTAD +AQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUo5fW816iEOGrRZ88F2Q87gFwnMwwDQYJKoZI +hvcNAQELBQADggIBABj6W3X8PnrHX3fHyt/PX8MSxEBd1DKquGrX1RUVRpgjpeaQWxiZTOOtQqOC +MTaIzen7xASWSIsBx40Bz1szBpZGZnQdT+3Btrm0DWHMY37XLneMlhwqI2hrhVd2cDMT/uFPpiN3 +GPoajOi9ZcnPP/TJF9zrx7zABC4tRi9pZsMbj/7sPtPKlL92CiUNqXsCHKnQO18LwIE6PWThv6ct +Tr1NxNgpxiIY0MWscgKCP6o6ojoilzHdCGPDdRS5YCgtW2jgFqlmgiNR9etT2DGbe+m3nUvriBbP ++V04ikkwj+3x6xn0dxoxGE1nVGwvb2X52z3sIexe9PSLymBlVNFxZPT5pqOBMzYzcfCkeF9OrYMh +3jRJjehZrJ3ydlo28hP0r+AJx2EqbPfgna67hkooby7utHnNkDPDs3b69fBsnQGQ+p6Q9pxyz0fa +wx/kNSBT8lTR32GDpgLiJTjehTItXnOQUl1CxM49S+H5GYQd1aJQzEH7QRTDvdbJWqNjZgKAvQU6 +O0ec7AAmTPWIUb+oI38YB7AL7YsmoWTTYUrrXJ/es69nA7Mf3W1daWhpq1467HxpvMc7hU6eFbm0 +FU/DlXpY18ls6Wy58yljXrQs8C097Vpl4KlbQMJImYFtnh8GKjwStIsPm6Ik8KaN1nrgS7ZklmOV +hMJKzRwuJIczYOXD +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert084.pem b/test/rules/platform_certs/default/cert084.pem new file mode 100644 index 000000000000..95a5c8c60e12 --- /dev/null +++ b/test/rules/platform_certs/default/cert084.pem @@ -0,0 +1,28 @@ +QuoVadis Root CA 2 G3 +-----BEGIN CERTIFICATE----- +MIIFYDCCA0igAwIBAgIURFc0JFuBiZs18s64KztbpybwdSgwDQYJKoZIhvcNAQELBQAwSDELMAkG +A1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAcBgNVBAMTFVF1b1ZhZGlzIFJv +b3QgQ0EgMiBHMzAeFw0xMjAxMTIxODU5MzJaFw00MjAxMTIxODU5MzJaMEgxCzAJBgNVBAYTAkJN +MRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDIg +RzMwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQChriWyARjcV4g/Ruv5r+LrI3HimtFh +ZiFfqq8nUeVuGxbULX1QsFN3vXg6YOJkApt8hpvWGo6t/x8Vf9WVHhLL5hSEBMHfNrMWn4rjyduY +NM7YMxcoRvynyfDStNVNCXJJ+fKH46nafaF9a7I6JaltUkSs+L5u+9ymc5GQYaYDFCDy54ejiK2t +oIz/pgslUiXnFgHVy7g1gQyjO/Dh4fxaXc6AcW34Sas+O7q414AB+6XrW7PFXmAqMaCvN+ggOp+o +MiwMzAkd056OXbxMmO7FGmh77FOm6RQ1o9/NgJ8MSPsc9PG/Srj61YxxSscfrf5BmrODXfKEVu+l +V0POKa2Mq1W/xPtbAd0jIaFYAI7D0GoT7RPjEiuA3GfmlbLNHiJuKvhB1PLKFAeNilUSxmn1uIZo +L1NesNKqIcGY5jDjZ1XHm26sGahVpkUG0CM62+tlXSoREfA7T8pt9DTEceT/AFr2XK4jYIVz8eQQ +sSWu1ZK7E8EM4DnatDlXtas1qnIhO4M15zHfeiFuuDIIfR0ykRVKYnLP43ehvNURG3YBZwjgQQvD +6xVu+KQZ2aKrr+InUlYrAoosFCT5v0ICvybIxo/gbjh9Uy3l7ZizlWNof/k19N+IxWA1ksB8aRxh +lRbQ694Lrz4EEEVlWFA4r0jyWbYW8jwNkALGcC4BrTwV1wIDAQABo0IwQDAPBgNVHRMBAf8EBTAD +AQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQU7edvdlq/YOxJW8ald7tyFnGbxD0wDQYJKoZI +hvcNAQELBQADggIBAJHfgD9DCX5xwvfrs4iP4VGyvD11+ShdyLyZm3tdquXK4Qr36LLTn91nMX66 +AarHakE7kNQIXLJgapDwyM4DYvmL7ftuKtwGTTwpD4kWilhMSA/ohGHqPHKmd+RCroijQ1h5fq7K +pVMNqT1wvSAZYaRsOPxDMuHBR//47PERIjKWnML2W2mWeyAMQ0GaW/ZZGYjeVYg3UQt4XAoeo0L9 +x52ID8DyeAIkVJOviYeIyUqAHerQbj5hLja7NQ4nlv1mNDthcnPxFlxHBlRJAHpYErAK74X9sbgz +dWqTHBLmYF5vHX/JHyPLhGGfHoJE+V+tYlUkmlKY7VHnoX6XOuYvHxHaU4AshZ6rNRDbIl9qxV6X +U/IyAgkwo1jwDQHVcsaxfGl7w/U2Rcxhbl5MlMVerugOXou/983g7aEOGzPuVBj+D77vfoRrQ+Nw +mNtddbINWQeFFSM51vHfqSYP1kjHs6Yi9TM3WpVHn3u6GBVv/9YUZINJ0gpnIdsPNWNgKCLjsZWD +zYWm3S8P52dSbrsvhXz1SnPnxT7AvSESBT/8twNJAlvIJebiVDj1eYeMHVOyToV7BjjHLPj4sHKN +JeV3UvQDHEimUF+IIDBu8oJDqz2XhOdT+yHBTw8imoa4WSr2Rz0ZiC3oheGe7IUIarFsNMkd7Egr +O3jtZsSOeWmD3n+M +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert085.pem b/test/rules/platform_certs/default/cert085.pem new file mode 100644 index 000000000000..cd999ae3da64 --- /dev/null +++ b/test/rules/platform_certs/default/cert085.pem @@ -0,0 +1,28 @@ +QuoVadis Root CA 3 G3 +-----BEGIN CERTIFICATE----- +MIIFYDCCA0igAwIBAgIULvWbAiin23r/1aOp7r0DoM8Sah0wDQYJKoZIhvcNAQELBQAwSDELMAkG +A1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAcBgNVBAMTFVF1b1ZhZGlzIFJv +b3QgQ0EgMyBHMzAeFw0xMjAxMTIyMDI2MzJaFw00MjAxMTIyMDI2MzJaMEgxCzAJBgNVBAYTAkJN +MRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDMg +RzMwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCzyw4QZ47qFJenMioKVjZ/aEzHs286 +IxSR/xl/pcqs7rN2nXrpixurazHb+gtTTK/FpRp5PIpM/6zfJd5O2YIyC0TeytuMrKNuFoM7pmRL +Mon7FhY4futD4tN0SsJiCnMK3UmzV9KwCoWdcTzeo8vAMvMBOSBDGzXRU7Ox7sWTaYI+FrUoRqHe +6okJ7UO4BUaKhvVZR74bbwEhELn9qdIoyhA5CcoTNs+cra1AdHkrAj80//ogaX3T7mH1urPnMNA3 +I4ZyYUUpSFlob3emLoG+B01vr87ERRORFHAGjx+f+IdpsQ7vw4kZ6+ocYfx6bIrc1gMLnia6Et3U +VDmrJqMz6nWB2i3ND0/kA9HvFZcba5DFApCTZgIhsUfei5pKgLlVj7WiL8DWM2fafsSntARE60f7 +5li59wzweyuxwHApw0BiLTtIadwjPEjrewl5qW3aqDCYz4ByA4imW0aucnl8CAMhZa634RylsSqi +Md5mBPfAdOhx3v89WcyWJhKLhZVXGqtrdQtEPREoPHtht+KPZ0/l7DxMYIBpVzgeAVuNVejH38DM +dyM0SXV89pgR6y3e7UEuFAUCf+D+IOs15xGsIs5XPd7JMG0QA4XN8f+MFrXBsj6IbGB/kE+V9/Yt +rQE5BwT6dYB9v0lQ7e/JxHwc64B+27bQ3RP+ydOc17KXqQIDAQABo0IwQDAPBgNVHRMBAf8EBTAD +AQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUxhfQvKjqAkPyGwaZXSuQILnXnOQwDQYJKoZI +hvcNAQELBQADggIBADRh2Va1EodVTd2jNTFGu6QHcrxfYWLopfsLN7E8trP6KZ1/AvWkyaiTt3px +KGmPc+FSkNrVvjrlt3ZqVoAh313m6Tqe5T72omnHKgqwGEfcIHB9UqM+WXzBusnIFUBhynLWcKzS +t/Ac5IYp8M7vaGPQtSCKFWGafoaYtMnCdvvMujAWzKNhxnQT5WvvoxXqA/4Ti2Tk08HS6IT7SdEQ +TXlm66r99I0xHnAUrdzeZxNMgRVhvLfZkXdxGYFgu/BYpbWcC/ePIlUnwEsBbTuZDdQdm2NnL9Du +DcpmvJRPpq3t/O5jrFc/ZSXPsoaP0Aj/uHYUbt7lJ+yreLVTubY/6CD50qi+YUbKh4yE8/nxoGib +Ih6BJpsQBJFxwAYf3KDTuVan45gtf4Od34wrnDKOMpTwATwiKp9Dwi7DmDkHOHv8XgBCH/MyJnmD +hPbl8MFREsALHgQjDFSlTC9JxUrRtm5gDWv8a4uFJGS3iQ6rJUdbPM9+Sb3H6QrG2vd+DhcI00iX +0HGS8A85PjRqHH3Y8iKuu2n0M7SmSFXRDw4m6Oy2Cy2nhTXN/VnIn9HNPlopNLk9hM6xZdRZkZFW +dSHBd575euFgndOtBBj0fOtek49TSiIp+EgrPk2GrFt/ywaZWWDYWGWVjUTR939+J399roD1B0y2 +PpxxVJkES/1Y+Zj0 +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert086.pem b/test/rules/platform_certs/default/cert086.pem new file mode 100644 index 000000000000..0ed774566a19 --- /dev/null +++ b/test/rules/platform_certs/default/cert086.pem @@ -0,0 +1,20 @@ +DigiCert Assured ID Root G2 +-----BEGIN CERTIFICATE----- +MIIDljCCAn6gAwIBAgIQC5McOtY5Z+pnI7/Dr5r0SzANBgkqhkiG9w0BAQsFADBlMQswCQYDVQQG +EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSQw +IgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzIwHhcNMTMwODAxMTIwMDAwWhcNMzgw +MTE1MTIwMDAwWjBlMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQL +ExB3d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzIw +ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDZ5ygvUj82ckmIkzTz+GoeMVSAn61UQbVH +35ao1K+ALbkKz3X9iaV9JPrjIgwrvJUXCzO/GU1BBpAAvQxNEP4HteccbiJVMWWXvdMX0h5i89vq +bFCMP4QMls+3ywPgym2hFEwbid3tALBSfK+RbLE4E9HpEgjAALAcKxHad3A2m67OeYfcgnDmCXRw +VWmvo2ifv922ebPynXApVfSr/5Vh88lAbx3RvpO704gqu52/clpWcTs/1PPRCv4o76Pu2ZmvA9OP +YLfykqGxvYmJHzDNw6YuYjOuFgJ3RFrngQo8p0Quebg/BLxcoIfhG69Rjs3sLPr4/m3wOnyqi+Rn +lTGNAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBTO +w0q5mVXyuNtgv6l+vVa1lzan1jANBgkqhkiG9w0BAQsFAAOCAQEAyqVVjOPIQW5pJ6d1Ee88hjZv +0p3GeDgdaZaikmkuOGybfQTUiaWxMTeKySHMq2zNixya1r9I0jJmwYrA8y8678Dj1JGG0VDjA9tz +d29KOVPt3ibHtX2vK0LRdWLjSisCx1BL4GnilmwORGYQRI+tBev4eaymG+g3NJ1TyWGqolKvSnAW +hsI6yLETcDbYz+70CjTVW0z9B5yiutkBclzzTcHdDrEcDcRjvq30FPuJ7KJBDkzMyFdA0G4Dqs0M +jomZmWzwPDCvON9vvKO+KSAnq3T/EyJ43pdSVR6DtVQgA+6uwE9W3jfMw3+qBCe703e4YtsXfJwo +IhNzbM8m9Yop5w== +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert087.pem b/test/rules/platform_certs/default/cert087.pem new file mode 100644 index 000000000000..5f893978490b --- /dev/null +++ b/test/rules/platform_certs/default/cert087.pem @@ -0,0 +1,14 @@ +DigiCert Assured ID Root G3 +-----BEGIN CERTIFICATE----- +MIICRjCCAc2gAwIBAgIQC6Fa+h3foLVJRK/NJKBs7DAKBggqhkjOPQQDAzBlMQswCQYDVQQGEwJV +UzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSQwIgYD +VQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzMwHhcNMTMwODAxMTIwMDAwWhcNMzgwMTE1 +MTIwMDAwWjBlMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzMwdjAQ +BgcqhkjOPQIBBgUrgQQAIgNiAAQZ57ysRGXtzbg/WPuNsVepRC0FFfLvC/8QdJ+1YlJfZn4f5dwb +RXkLzMZTCp2NXQLZqVneAlr2lSoOjThKiknGvMYDOAdfVdp+CW7if17QRSAPWXYQ1qAk8C3eNvJs +KTmjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBTL0L2p4ZgF +UaFNN6KDec6NHSrkhDAKBggqhkjOPQQDAwNnADBkAjAlpIFFAmsSS3V0T8gj43DydXLefInwz5Fy +YZ5eEJJZVrmDxxDnOOlYJjZ91eQ0hjkCMHw2U/Aw5WJjOpnitqM7mzT6HtoQknFekROn3aRukswy +1vUhZscv6pZjamVFkpUBtA== +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert088.pem b/test/rules/platform_certs/default/cert088.pem new file mode 100644 index 000000000000..4715cc06e81b --- /dev/null +++ b/test/rules/platform_certs/default/cert088.pem @@ -0,0 +1,20 @@ +DigiCert Global Root G2 +-----BEGIN CERTIFICATE----- +MIIDjjCCAnagAwIBAgIQAzrx5qcRqaC7KGSxHQn65TANBgkqhkiG9w0BAQsFADBhMQswCQYDVQQG +EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAw +HgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMjAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUx +MjAwMDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3 +dy5kaWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcyMIIBIjANBgkq +hkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/RrohCgiN9RlUyfuI2/Ou8jqJ +kTx65qsGGmvPrC3oXgkkRLpimn7Wo6h+4FR1IAWsULecYxpsMNzaHxmx1x7e/dfgy5SDN67sH0NO +3Xss0r0upS/kqbitOtSZpLYl6ZtrAGCSYP9PIUkY92eQq2EGnI/yuum06ZIya7XzV+hdG82MHauV +BJVJ8zUtluNJbd134/tJS7SsVQepj5WztCO7TG1F8PapspUwtP1MVYwnSlcUfIKdzXOS0xZKBgyM +UNGPHgm+F6HmIcr9g+UQvIOlCsRnKPZzFBQ9RnbDhxSJITRNrw9FDKZJobq7nMWxM4MphQIDAQAB +o0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUTiJUIBiV5uNu +5g/6+rkS7QYXjzkwDQYJKoZIhvcNAQELBQADggEBAGBnKJRvDkhj6zHd6mcY1Yl9PMWLSn/pvtsr +F9+wX3N3KjITOYFnQoQj8kVnNeyIv/iPsGEMNKSuIEyExtv4NeF22d+mQrvHRAiGfzZ0JFrabA0U +WTW98kndth/Jsw1HKj2ZL7tcu7XUIOGZX1NGFdtom/DzMNU+MeKNhJ7jitralj41E6Vf8PlwUHBH +QRFXGU7Aj64GxJUTFy8bJZ918rGOmaFvE7FBcf6IKshPECBV1/MUReXgRPTqh5Uykw7+U0b6LJ3/ +iyK5S9kJRaTepLiaWN0bfVKfjllDiIGknibVb63dDcY3fe0Dkhvld1927jyNxF1WW6LZZm6zNTfl +MrY= +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert089.pem b/test/rules/platform_certs/default/cert089.pem new file mode 100644 index 000000000000..a01d9ffcf46a --- /dev/null +++ b/test/rules/platform_certs/default/cert089.pem @@ -0,0 +1,14 @@ +DigiCert Global Root G3 +-----BEGIN CERTIFICATE----- +MIICPzCCAcWgAwIBAgIQBVVWvPJepDU1w6QP1atFcjAKBggqhkjOPQQDAzBhMQswCQYDVQQGEwJV +UzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSAwHgYD +VQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAw +MDBaMGExCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5k +aWdpY2VydC5jb20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEczMHYwEAYHKoZIzj0C +AQYFK4EEACIDYgAE3afZu4q4C/sLfyHS8L6+c/MzXRq8NOrexpu80JX28MzQC7phW1FGfp4tn+6O +YwwX7Adw9c+ELkCDnOg/QW07rdOkFFk2eJ0DQ+4QE2xy3q6Ip6FrtUPOZ9wj/wMco+I+o0IwQDAP +BgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUs9tIpPmhxdiuNkHMEWNp +Yim8S8YwCgYIKoZIzj0EAwMDaAAwZQIxAK288mw/EkrRLTnDCgmXc/SINoyIJ7vmiI1Qhadj+Z4y +3maTD/HMsQmP3Wyr+mt/oAIwOWZbwmSNuJ5Q3KjVSaLtx9zRSX8XAbjIho9OjIgrqJqpisXRAL34 +VOKa5Vt8sycX +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert090.pem b/test/rules/platform_certs/default/cert090.pem new file mode 100644 index 000000000000..4b7b355f12ee --- /dev/null +++ b/test/rules/platform_certs/default/cert090.pem @@ -0,0 +1,29 @@ +DigiCert Trusted Root G4 +-----BEGIN CERTIFICATE----- +MIIFkDCCA3igAwIBAgIQBZsbV56OITLiOQe9p3d1XDANBgkqhkiG9w0BAQwFADBiMQswCQYDVQQG +EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQuY29tMSEw +HwYDVQQDExhEaWdpQ2VydCBUcnVzdGVkIFJvb3QgRzQwHhcNMTMwODAxMTIwMDAwWhcNMzgwMTE1 +MTIwMDAwWjBiMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSEwHwYDVQQDExhEaWdpQ2VydCBUcnVzdGVkIFJvb3QgRzQwggIiMA0G +CSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC/5pBzaN675F1KPDAiMGkz7MKnJS7JIT3yithZwuEp +pz1Yq3aaza57G4QNxDAf8xukOBbrVsaXbR2rsnnyyhHS5F/WBTxSD1Ifxp4VpX6+n6lXFllVcq9o +k3DCsrp1mWpzMpTREEQQLt+C8weE5nQ7bXHiLQwb7iDVySAdYyktzuxeTsiT+CFhmzTrBcZe7Fsa +vOvJz82sNEBfsXpm7nfISKhmV1efVFiODCu3T6cw2Vbuyntd463JT17lNecxy9qTXtyOj4DatpGY +QJB5w3jHtrHEtWoYOAMQjdjUN6QuBX2I9YI+EJFwq1WCQTLX2wRzKm6RAXwhTNS8rhsDdV14Ztk6 +MUSaM0C/CNdaSaTC5qmgZ92kJ7yhTzm1EVgX9yRcRo9k98FpiHaYdj1ZXUJ2h4mXaXpI8OCiEhtm +mnTK3kse5w5jrubU75KSOp493ADkRSWJtppEGSt+wJS00mFt6zPZxd9LBADMfRyVw4/3IbKyEbe7 +f/LVjHAsQWCqsWMYRJUadmJ+9oCw++hkpjPRiQfhvbfmQ6QYuKZ3AeEPlAwhHbJUKSWJbOUOUlFH +dL4mrLZBdd56rF+NP8m800ERElvlEFDrMcXKchYiCd98THU/Y+whX8QgUWtvsauGi0/C1kVfnSD8 +oR7FwI+isX4KJpn15GkvmB0t9dmpsh3lGwIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1Ud +DwEB/wQEAwIBhjAdBgNVHQ4EFgQU7NfjgtJxXWRM3y5nP+e6mK4cD08wDQYJKoZIhvcNAQEMBQAD +ggIBALth2X2pbL4XxJEbw6GiAI3jZGgPVs93rnD5/ZpKmbnJeFwMDF/k5hQpVgs2SV1EY+CtnJYY +ZhsjDT156W1r1lT40jzBQ0CuHVD1UvyQO7uYmWlrx8GnqGikJ9yd+SeuMIW59mdNOj6PWTkiU0Tr +yF0Dyu1Qen1iIQqAyHNm0aAFYF/opbSnr6j3bTWcfFqK1qI4mfN4i/RN0iAL3gTujJtHgXINwBQy +7zBZLq7gcfJW5GqXb5JQbZaNaHqasjYUegbyJLkJEVDXCLG4iXqEI2FCKeWjzaIgQdfRnGTZ6iah +ixTXTBmyUEFxPT9NcCOGDErcgdLMMpSEDQgJlxxPwO5rIHQw0uA5NBCFIRUBCOhVMt5xSdkoF1BN +5r5N0XWs0Mr7QbhDparTwwVETyw2m+L64kW4I1NsBm9nVX9GtUw/bihaeSbSpKhil9Ie4u1Ki7wb +/UdKDd9nZn6yW0HQO+T0O/QEY+nvwlQAUaCKKsnOeMzV6ocEGLPOr0mIr/OSmbaz5mEP0oUA51Aa +5BuVnRmhuZyxm7EAHu/QD09CbMkKvO5D+jpxpchNJqU1/YldvIViHTLSoCtU7ZpXwdv6EM8Zt4tK +G48BtieVU+i2iW1bvGjUI+iLUaJW+fCmgKDWHrO8Dw9TdSmq6hN35N6MgSGtBxBHEa2HPQfRdbzP +82Z+ +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert091.pem b/test/rules/platform_certs/default/cert091.pem new file mode 100644 index 000000000000..88b9cd8335db --- /dev/null +++ b/test/rules/platform_certs/default/cert091.pem @@ -0,0 +1,30 @@ +COMODO RSA Certification Authority +-----BEGIN CERTIFICATE----- +MIIF2DCCA8CgAwIBAgIQTKr5yttjb+Af907YWwOGnTANBgkqhkiG9w0BAQwFADCBhTELMAkGA1UE +BhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgG +A1UEChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBSU0EgQ2VydGlmaWNhdGlv +biBBdXRob3JpdHkwHhcNMTAwMTE5MDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBhTELMAkGA1UEBhMC +R0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UE +ChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBSU0EgQ2VydGlmaWNhdGlvbiBB +dXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCR6FSS0gpWsawNJN3Fz0Rn +dJkrN6N9I3AAcbxT38T6KhKPS38QVr2fcHK3YX/JSw8Xpz3jsARh7v8Rl8f0hj4K+j5c+ZPmNHrZ +FGvnnLOFoIJ6dq9xkNfs/Q36nGz637CC9BR++b7Epi9Pf5l/tfxnQ3K9DADWietrLNPtj5gcFKt+ +5eNu/Nio5JIk2kNrYrhV/erBvGy2i/MOjZrkm2xpmfh4SDBF1a3hDTxFYPwyllEnvGfDyi62a+pG +x8cgoLEfZd5ICLqkTqnyg0Y3hOvozIFIQ2dOciqbXL1MGyiKXCJ7tKuY2e7gUYPDCUZObT6Z+pUX +2nwzV0E8jVHtC7ZcryxjGt9XyD+86V3Em69FmeKjWiS0uqlWPc9vqv9JWL7wqP/0uK3pN/u6uPQL +OvnoQ0IeidiEyxPx2bvhiWC4jChWrBQdnArncevPDt09qZahSL0896+1DSJMwBGB7FY79tOi4lu3 +sgQiUpWAk2nojkxl8ZEDLXB0AuqLZxUpaVICu9ffUGpVRr+goyhhf3DQw6KqLCGqR84onAZFdr+C +GCe01a60y1Dma/RMhnEw6abfFobg2P9A3fvQQoh/ozM6LlweQRGBY84YcWsr7KaKtzFcOmpH4MN5 +WdYgGq/yapiqcrxXStJLnbsQ/LBMQeXtHT1eKJ2czL+zUdqnR+WEUwIDAQABo0IwQDAdBgNVHQ4E +FgQUu69+Aj36pvE8hI6t7jiY7NkyMtQwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8w +DQYJKoZIhvcNAQEMBQADggIBAArx1UaEt65Ru2yyTUEUAJNMnMvlwFTPoCWOAvn9sKIN9SCYPBMt +rFaisNZ+EZLpLrqeLppysb0ZRGxhNaKatBYSaVqM4dc+pBroLwP0rmEdEBsqpIt6xf4FpuHA1sj+ +nq6PK7o9mfjYcwlYRm6mnPTXJ9OV2jeDchzTc+CiR5kDOF3VSXkAKRzH7JsgHAckaVd4sjn8OoSg +tZx8jb8uk2IntznaFxiuvTwJaP+EmzzV1gsD41eeFPfR60/IvYcjt7ZJQ3mFXLrrkguhxuhoqEwW +sRqZCuhTLJK7oQkYdQxlqHvLI7cawiiFwxv/0Cti76R7CZGYZ4wUAc1oBmpjIXUDgIiKboHGhfKp +pC3n9KUkEEeDys30jXlYsQab5xoq2Z0B15R97QNKyvDb6KkBPvVWmckejkk9u+UJueBPSZI9FoJA +zMxZxuY67RIuaTxslbH9qh17f4a+Hg4yRvv7E491f0yLS0Zj/gA0QHDBw7mh3aZw4gSzQbzpgJHq +ZJx64SIDqZxubw5lT2yHh17zbqD5daWbQOhTsiedSrnAdyGN/4fy3ryM7xfft0kL0fJuMAsaDk52 +7RH89elWsn2/x20Kk4yl0MC2Hb46TpSi125sC8KKfPog88Tk5c0NqMuRkrF8hey1FGlmDoLnzc7I +LaZRfyHBNVOFBkpdn627G190 +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert092.pem b/test/rules/platform_certs/default/cert092.pem new file mode 100644 index 000000000000..f3ebdf4ee8e3 --- /dev/null +++ b/test/rules/platform_certs/default/cert092.pem @@ -0,0 +1,30 @@ +USERTrust RSA Certification Authority +-----BEGIN CERTIFICATE----- +MIIF3jCCA8agAwIBAgIQAf1tMPyjylGoG7xkDjUDLTANBgkqhkiG9w0BAQwFADCBiDELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQK +ExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBSU0EgQ2VydGlmaWNh +dGlvbiBBdXRob3JpdHkwHhcNMTAwMjAxMDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBiDELMAkGA1UE +BhMCVVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQK +ExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBSU0EgQ2VydGlmaWNh +dGlvbiBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCAEmUXNg7D2wiz +0KxXDXbtzSfTTK1Qg2HiqiBNCS1kCdzOiZ/MPans9s/B3PHTsdZ7NygRK0faOca8Ohm0X6a9fZ2j +Y0K2dvKpOyuR+OJv0OwWIJAJPuLodMkYtJHUYmTbf6MG8YgYapAiPLz+E/CHFHv25B+O1ORRxhFn +RghRy4YUVD+8M/5+bJz/Fp0YvVGONaanZshyZ9shZrHUm3gDwFA66Mzw3LyeTP6vBZY1H1dat//O ++T23LLb2VN3I5xI6Ta5MirdcmrS3ID3KfyI0rn47aGYBROcBTkZTmzNg95S+UzeQc0PzMsNT79uq +/nROacdrjGCT3sTHDN/hMq7MkztReJVni+49Vv4M0GkPGw/zJSZrM233bkf6c0Plfg6lZrEpfDKE +Y1WJxA3Bk1QwGROs0303p+tdOmw1XNtB1xLaqUkL39iAigmTYo61Zs8liM2EuLE/pDkP2QKe6xJM +lXzzawWpXhaDzLhn4ugTncxbgtNMs+1b/97lc6wjOy0AvzVVdAlJ2ElYGn+SNuZRkg7zJn0cTRe8 +yexDJtC/QV9AqURE9JnnV4eeUB9XVKg+/XRjL7FQZQnmWEIuQxpMtPAlR1n6BB6T1CZGSlCBst6+ +eLf8ZxXhyVeEHg9j1uliutZfVS7qXMYoCAQlObgOK6nyTJccBz8NUvXt7y+CDwIDAQABo0IwQDAd +BgNVHQ4EFgQUU3m/WqorSs9UgOHYm8Cd8rIDZsswDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQF +MAMBAf8wDQYJKoZIhvcNAQEMBQADggIBAFzUfA3P9wF9QZllDHPFUp/L+M+ZBn8b2kMVn54CVVeW +FPFSPCeHlCjtHzoBN6J2/FNQwISbxmtOuowhT6KOVWKR82kV2LyI48SqC/3vqOlLVSoGIG1VeCkZ +7l8wXEskEVX/JJpuXior7gtNn3/3ATiUFJVDBwn7YKnuHKsSjKCaXqeYalltiz8I+8jRRa8YFWSQ +Eg9zKC7F4iRO/Fjs8PRF/iKz6y+O0tlFYQXBl2+odnKPi4w2r78NBc5xjeambx9spnFixdjQg3IM +8WcRiQycE0xyNN+81XHfqnHd4blsjDwSXWXavVcStkNr/+XeTWYRUc+ZruwXtuhxkYzeSf7dNXGi +FSeUHM9h4ya7b6NnJSFd5t0dCy5oGzuCr+yDZ4XUmFF0sbmZgIn/f3gZXHlKYC6SQK5MNyosycdi +yA5d9zZbyuAlJQG03RoHnHcAP9Dc1ew91Pq7P8yF1m9/qS3fuQL39ZeatTXaw2ewh0qpKJ4jjv9c +J2vhsE/zB+4ALtRZh8tSQZXq9EfX7mRBVXyNWQKV3WKdwrnuWih0hKWbt5DHDAff9Yk2dDLWKMGw +sAvgnEzDHNb842m1R0aBL6KCq9NjRHDEjf8tM7qtj3u1cIiuPhnPQCjY/MiQu12ZIvVS5ljFH4gx +Q+6IHdfGjjxDah2nGN59PRbxYvnKkKj9 +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert093.pem b/test/rules/platform_certs/default/cert093.pem new file mode 100644 index 000000000000..ce0daaec8095 --- /dev/null +++ b/test/rules/platform_certs/default/cert093.pem @@ -0,0 +1,15 @@ +USERTrust ECC Certification Authority +-----BEGIN CERTIFICATE----- +MIICjzCCAhWgAwIBAgIQXIuZxVqUxdJxVt7NiYDMJjAKBggqhkjOPQQDAzCBiDELMAkGA1UEBhMC +VVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQKExVU +aGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBFQ0MgQ2VydGlmaWNhdGlv +biBBdXRob3JpdHkwHhcNMTAwMjAxMDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBiDELMAkGA1UEBhMC +VVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQKExVU +aGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBFQ0MgQ2VydGlmaWNhdGlv +biBBdXRob3JpdHkwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQarFRaqfloI+d61SRvU8Za2EurxtW2 +0eZzca7dnNYMYf3boIkDuAUU7FfO7l0/4iGzzvfUinngo4N+LZfQYcTxmdwlkWOrfzCjtHDix6Ez +nPO/LlxTsV+zfTJ/ijTjeXmjQjBAMB0GA1UdDgQWBBQ64QmG1M8ZwpZ2dEl23OA1xmNjmjAOBgNV +HQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAKBggqhkjOPQQDAwNoADBlAjA2Z6EWCNzklwBB +HU6+4WMBzzuqQhFkoJ2UOQIReVx7Hfpkue4WQrO/isIJxOzksU0CMQDpKmFHjFJKS04YcPbWRNZu +9YO6bVi9JNlWSOrvxKJGgYhqOkbRqZtNyWHa0V1Xahg= +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert094.pem b/test/rules/platform_certs/default/cert094.pem new file mode 100644 index 000000000000..b05ff11c8649 --- /dev/null +++ b/test/rules/platform_certs/default/cert094.pem @@ -0,0 +1,12 @@ +GlobalSign ECC Root CA - R4 +-----BEGIN CERTIFICATE----- +MIIB4TCCAYegAwIBAgIRKjikHJYKBN5CsiilC+g0mAIwCgYIKoZIzj0EAwIwUDEkMCIGA1UECxMb +R2xvYmFsU2lnbiBFQ0MgUm9vdCBDQSAtIFI0MRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQD +EwpHbG9iYWxTaWduMB4XDTEyMTExMzAwMDAwMFoXDTM4MDExOTAzMTQwN1owUDEkMCIGA1UECxMb +R2xvYmFsU2lnbiBFQ0MgUm9vdCBDQSAtIFI0MRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQD +EwpHbG9iYWxTaWduMFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEuMZ5049sJQ6fLjkZHAOkrprl +OQcJFspjsbmG+IpXwVfOQvpzofdlQv8ewQCybnMO/8ch5RikqtlxP6jUuc6MHaNCMEAwDgYDVR0P +AQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFFSwe61FuOJAf/sKbvu+M8k8o4TV +MAoGCCqGSM49BAMCA0gAMEUCIQDckqGgE6bPA7DmxCGXkPoUVy0D7O48027KqGx2vKLeuwIgJ6iF +JzWbVsaj8kfSt24bAgAXqmemFZHe+pTsewv4n4Q= +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert095.pem b/test/rules/platform_certs/default/cert095.pem new file mode 100644 index 000000000000..d6cef1e9cb2c --- /dev/null +++ b/test/rules/platform_certs/default/cert095.pem @@ -0,0 +1,13 @@ +GlobalSign ECC Root CA - R5 +-----BEGIN CERTIFICATE----- +MIICHjCCAaSgAwIBAgIRYFlJ4CYuu1X5CneKcflK2GwwCgYIKoZIzj0EAwMwUDEkMCIGA1UECxMb +R2xvYmFsU2lnbiBFQ0MgUm9vdCBDQSAtIFI1MRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQD +EwpHbG9iYWxTaWduMB4XDTEyMTExMzAwMDAwMFoXDTM4MDExOTAzMTQwN1owUDEkMCIGA1UECxMb +R2xvYmFsU2lnbiBFQ0MgUm9vdCBDQSAtIFI1MRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQD +EwpHbG9iYWxTaWduMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAER0UOlvt9Xb/pOdEh+J8LttV7HpI6 +SFkc8GIxLcB6KP4ap1yztsyX50XUWPrRd21DosCHZTQKH3rd6zwzocWdTaRvQZU4f8kehOvRnkmS +h5SHDDqFSmafnVmTTZdhBoZKo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAd +BgNVHQ4EFgQUPeYpSJvqB8ohREom3m7e0oPQn1kwCgYIKoZIzj0EAwMDaAAwZQIxAOVpEslu28Yx +uglB4Zf4+/2a4n0Sye18ZNPLBSWLVtmg515dTguDnFt2KaAJJiFqYgIwcdK1j1zqO+F4CYWodZI7 +yFz9SO8NdCKoCOJuxUnOxwy8p2Fp8fc74SrL+SvzZpA3 +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert096.pem b/test/rules/platform_certs/default/cert096.pem new file mode 100644 index 000000000000..34e8c0665ecb --- /dev/null +++ b/test/rules/platform_certs/default/cert096.pem @@ -0,0 +1,28 @@ +Staat der Nederlanden Root CA - G3 +-----BEGIN CERTIFICATE----- +MIIFdDCCA1ygAwIBAgIEAJiiOTANBgkqhkiG9w0BAQsFADBaMQswCQYDVQQGEwJOTDEeMBwGA1UE +CgwVU3RhYXQgZGVyIE5lZGVybGFuZGVuMSswKQYDVQQDDCJTdGFhdCBkZXIgTmVkZXJsYW5kZW4g +Um9vdCBDQSAtIEczMB4XDTEzMTExNDExMjg0MloXDTI4MTExMzIzMDAwMFowWjELMAkGA1UEBhMC +TkwxHjAcBgNVBAoMFVN0YWF0IGRlciBOZWRlcmxhbmRlbjErMCkGA1UEAwwiU3RhYXQgZGVyIE5l +ZGVybGFuZGVuIFJvb3QgQ0EgLSBHMzCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAL4y +olQPcPssXFnrbMSkUeiFKrPMSjTysF/zDsccPVMeiAho2G89rcKezIJnByeHaHE6n3WWIkYFsO2t +x1ueKt6c/DrGlaf1F2cY5y9JCAxcz+bMNO14+1Cx3Gsy8KL+tjzk7FqXxz8ecAgwoNzFs21v0IJy +EavSgWhZghe3eJJg+szeP4TrjTgzkApyI/o1zCZxMdFyKJLZWyNtZrVtB0LrpjPOktvA9mxjeM3K +Tj215VKb8b475lRgsGYeCasH/lSJEULR9yS6YHgamPfJEf0WwTUaVHXvQ9Plrk7O53vDxk5hUUur +mkVLoR9BvUhTFXFkC4az5S6+zqQbwSmEorXLCCN2QyIkHxcE1G6cxvx/K2Ya7Irl1s9N9WMJtxU5 +1nus6+N86U78dULI7ViVDAZCopz35HCz33JvWjdAidiFpNfxC95DGdRKWCyMijmev4SH8RY7Ngzp +07TKbBlBUgmhHbBqv4LvcFEhMtwFdozL92TkA1CvjJFnq8Xy7ljY3r735zHPbMk7ccHViLVlvMDo +FxcHErVc0qsgk7TmgoNwNsXNo42ti+yjwUOH5kPiNL6VizXtBznaqB16nzaeErAMZRKQFWDZJkBE +41ZgpRDUajz9QdwOWke275dhdU/Z/seyHdTtXUmzqWrLZoQT1Vyg3N9udwbRcXXIV2+vD3dbAgMB +AAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBRUrfrHkleu +yjWcLhL75LpdINyUVzANBgkqhkiG9w0BAQsFAAOCAgEAMJmdBTLIXg47mAE6iqTnB/d6+Oea31BD +U5cqPco8R5gu4RV78ZLzYdqQJRZlwJ9UXQ4DO1t3ApyEtg2YXzTdO2PCwyiBwpwpLiniyMMB8jPq +KqrMCQj3ZWfGzd/TtiunvczRDnBfuCPRy5FOCvTIeuXZYzbB1N/8Ipf3YF3qKS9Ysr1YvY2WTxB1 +v0h7PVGHoTx0IsL8B3+A3MSs/mrBcDCw6Y5p4ixpgZQJut3+TcCDjJRYwEYgr5wfAvg1VUkvRtTA +8KCWAg8zxXHzniN9lLf9OtMJgwYh/WA9rjLA0u6NpvDntIJ8CsxwyXmA+P5M9zWEGYox+wrZ13+b +8KKaa8MFSu1BYBQw0aoRQm7TIwIEC8Zl3d1Sd9qBa7Ko+gE4uZbqKmxnl4mUnrzhVNXkanjvSr0r +mj1AfsbAddJu+2gw7OyLnflJNZoaLNmzlTnVHpL3prllL+U9bTpITAjc5CgSKL59NVzq4BZ+Extq +1z7XnvwtdbLBFNUjA9tbbws+eC8N3jONFrdI54OagQ97wUNNVQQXOEpR1VmiiXTTn74eS9fGbbeI +JG9gkaSChVtWQbzQRKtqE77RLFi3EjNYsjdj3BP1lB0/QFH1T/U67cjF68IeHRaVesd+QnGTbksV +tzDfqu1XhUisHWrdOWnk4Xl4vs4Fv6EM94B7IWcnMFk= +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert097.pem b/test/rules/platform_certs/default/cert097.pem new file mode 100644 index 000000000000..32293c551d92 --- /dev/null +++ b/test/rules/platform_certs/default/cert097.pem @@ -0,0 +1,28 @@ +Staat der Nederlanden EV Root CA +-----BEGIN CERTIFICATE----- +MIIFcDCCA1igAwIBAgIEAJiWjTANBgkqhkiG9w0BAQsFADBYMQswCQYDVQQGEwJOTDEeMBwGA1UE +CgwVU3RhYXQgZGVyIE5lZGVybGFuZGVuMSkwJwYDVQQDDCBTdGFhdCBkZXIgTmVkZXJsYW5kZW4g +RVYgUm9vdCBDQTAeFw0xMDEyMDgxMTE5MjlaFw0yMjEyMDgxMTEwMjhaMFgxCzAJBgNVBAYTAk5M +MR4wHAYDVQQKDBVTdGFhdCBkZXIgTmVkZXJsYW5kZW4xKTAnBgNVBAMMIFN0YWF0IGRlciBOZWRl +cmxhbmRlbiBFViBSb290IENBMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA48d+ifkk +SzrSM4M1LGns3Amk41GoJSt5uAg94JG6hIXGhaTK5skuU6TJJB79VWZxXSzFYGgEt9nCUiY4iKTW +O0Cmws0/zZiTs1QUWJZV1VD+hq2kY39ch/aO5ieSZxeSAgMs3NZmdO3dZ//BYY1jTw+bbRcwJu+r +0h8QoPnFfxZpgQNH7R5ojXKhTbImxrpsX23Wr9GxE46prfNeaXUmGD5BKyF/7otdBwadQ8QpCiv8 +Kj6GyzyDOvnJDdrFmeK8eEEzduG/L13lpJhQDBXd4Pqcfzho0LKmeqfRMb1+ilgnQ7O6M5HTp5gV +XJrm0w912fxBmJc+qiXbj5IusHsMX/FjqTf5m3VpTCgmJdrV8hJwRVXj33NeN/UhbJCONVrJ0yPr +08C+eKxCKFhmpUZtcALXEPlLVPxdhkqHz3/KRawRWrUgUY0viEeXOcDPusBCAUCZSCELa6fS/ZbV +0b5GnUngC6agIk440ME8MLxwjyx1zNDFjFE7PZQIZCZhfbnDZY8UnCHQqv0XcgOPvZuM5l5Tnrmd +74K74bzickFbIZTTRTeU0d8JOV3nI6qaHcptqAqGhYqCvkIH1vI4gnPah1vlPNOePqc7nvQDs/nx +fRN0Av+7oeX6AHkcpmZBiFxgV6YuCcS6/ZrPpx9Aw7vMWgpVSzs4dlG4Y4uElBbmVvMCAwEAAaNC +MEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFP6rAJCYniT8qcwa +ivsnuL8wbqg7MA0GCSqGSIb3DQEBCwUAA4ICAQDPdyxuVr5Os7aEAJSrR8kN0nbHhp8dB9O2tLsI +eK9p0gtJ3jPFrK3CiAJ9Brc1AsFgyb/E6JTe1NOpEyVa/m6irn0F3H3zbPB+po3u2dfOWBfoqSmu +c0iH55vKbimhZF8ZE/euBhD/UcabTVUlT5OZEAFTdfETzsemQUHSv4ilf0X8rLiltTMMgsT7B/Zq +5SWEXwbKwYY5EdtYzXc7LMJMD16a4/CrPmEbUCTCwPTxGfARKbalGAKb12NMcIxHowNDXLldRqAN +b/9Zjr7dn3LDWyvfjFvO5QxGbJKyCqNMVEIYFRIYvdr8unRu/8G2oGTYqV9Vrp9canaW2HNnh/tN +f1zuacpzEPuKqf2evTY4SUmH9A4U8OmHuD+nT3pajnnUk+S7aFKErGzp85hwVXIy+TSrK0m1zSBi +5Dp6Z2Orltxtrpfs/J92VoguZs9btsmksNcFuuEnL5O7Jiqik7Ab846+HUCjuTaPPoIaGl6I6lD4 +WeKDRikL40Rc4ZW2aZCaFG+XroHPaO+Zmr615+F/+PoTRxZMzG0IQOeLeG9QgkRQP2YGiqtDhFZK +DyAthg710tvSeopLzaXoTvFeJiUBWSOgftL2fiFX1ye8FVdMpEbB4IMeDExNH08GGeL5qPQ6gqGy +eUN51q1veieQA6TqJIc/2b3Z6fJfUEkc7uzXLg== +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert098.pem b/test/rules/platform_certs/default/cert098.pem new file mode 100644 index 000000000000..d14ca1f12bc8 --- /dev/null +++ b/test/rules/platform_certs/default/cert098.pem @@ -0,0 +1,28 @@ +IdenTrust Commercial Root CA 1 +-----BEGIN CERTIFICATE----- +MIIFYDCCA0igAwIBAgIQCgFCgAAAAUUjyES1AAAAAjANBgkqhkiG9w0BAQsFADBKMQswCQYDVQQG +EwJVUzESMBAGA1UEChMJSWRlblRydXN0MScwJQYDVQQDEx5JZGVuVHJ1c3QgQ29tbWVyY2lhbCBS +b290IENBIDEwHhcNMTQwMTE2MTgxMjIzWhcNMzQwMTE2MTgxMjIzWjBKMQswCQYDVQQGEwJVUzES +MBAGA1UEChMJSWRlblRydXN0MScwJQYDVQQDEx5JZGVuVHJ1c3QgQ29tbWVyY2lhbCBSb290IENB +IDEwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCnUBneP5k91DNG8W9RYYKyqU+PZ4ld +hNlT3Qwo2dfw/66VQ3KZ+bVdfIrBQuExUHTRgQ18zZshq0PirK1ehm7zCYofWjK9ouuU+ehcCuz/ +mNKvcbO0U59Oh++SvL3sTzIwiEsXXlfEU8L2ApeN2WIrvyQfYo3fw7gpS0l4PJNgiCL8mdo2yMKi +1CxUAGc1bnO/AljwpN3lsKImesrgNqUZFvX9t++uP0D1bVoE/c40yiTcdCMbXTMTEl3EASX2MN0C +XZ/g1Ue9tOsbobtJSdifWwLziuQkkORiT0/Br4sOdBeo0XKIanoBScy0RnnGF7HamB4HWfp1IYVl +3ZBWzvurpWCdxJ35UrCLvYf5jysjCiN2O/cz4ckA82n5S6LgTrx+kzmEB/dEcH7+B1rlsazRGMzy +NeVJSQjKVsk9+w8YfYs7wRPCTY/JTw436R+hDmrfYi7LNQZReSzIJTj0+kuniVyc0uMNOYZKdHzV +WYfCP04MXFL0PfdSgvHqo6z9STQaKPNBiDoT7uje/5kdX7rL6B7yuVBgwDHTc+XvvqDtMwt0viAg +xGds8AgDelWAf0ZOlqf0Hj7h9tgJ4TNkK2PXMl6f+cB7D3hvl7yTmvmcEpB4eoCHFddydJxVdHix +uuFucAS6T6C6aMN7/zHwcz09lCqxC0EOoP5NiGVreTO01wIDAQABo0IwQDAOBgNVHQ8BAf8EBAMC +AQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQU7UQZwNPwBovupHu+QucmVMiONnYwDQYJKoZI +hvcNAQELBQADggIBAA2ukDL2pkt8RHYZYR4nKM1eVO8lvOMIkPkp165oCOGUAFjvLi5+U1KMtlwH +6oi6mYtQlNeCgN9hCQCTrQ0U5s7B8jeUeLBfnLOic7iPBZM4zY0+sLj7wM+x8uwtLRvM7Kqas6pg +ghstO8OEPVeKlh6cdbjTMM1gCIOQ045U8U1mwF10A0Cj7oV+wh93nAbowacYXVKV7cndJZ5t+qnt +ozo00Fl72u1Q8zW/7esUTTHHYPTa8Yec4kjixsU3+wYQ+nVZZjFHKdp2mhzpgq7vmrlR94gjmmmV +YjzlVYA211QC//G5Xc7UI2/YRYRKW2XviQzdFKcgyxilJbQN+QHwotL0AMh0jqEqSI5l2xPE4iUX +feu+h1sXIFRRk0pTAwvsXcoz7WL9RccvW9xYoIA55vrX/hMUpu09lEpCdNTDd1lzzY9GvlU47/ro +kTLql1gEIt44w8y8bckzOmoKaT+gyOpyj4xjhiO9bTyWnpXgSUyqorkqG5w2gXjtw+hG4iZZRHUe +2XWJUc0QhJ1hYMtd+ZciTY6Y5uN/9lu7rs3KSoFrXgvzUeF0K+l+J6fZmUlO+KWA2yUPHGNiiskz +Z2s8EIPGrd6ozRaOjfAHN3Gf8qv8QfXBi+wAN10J5U6A7/qxXDgGpRtK4dw4LTzcqx+QGtVKnO7R +cGzM7vRX+Bi6hG6H +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert099.pem b/test/rules/platform_certs/default/cert099.pem new file mode 100644 index 000000000000..294e36711366 --- /dev/null +++ b/test/rules/platform_certs/default/cert099.pem @@ -0,0 +1,28 @@ +IdenTrust Public Sector Root CA 1 +-----BEGIN CERTIFICATE----- +MIIFZjCCA06gAwIBAgIQCgFCgAAAAUUjz0Z8AAAAAjANBgkqhkiG9w0BAQsFADBNMQswCQYDVQQG +EwJVUzESMBAGA1UEChMJSWRlblRydXN0MSowKAYDVQQDEyFJZGVuVHJ1c3QgUHVibGljIFNlY3Rv +ciBSb290IENBIDEwHhcNMTQwMTE2MTc1MzMyWhcNMzQwMTE2MTc1MzMyWjBNMQswCQYDVQQGEwJV +UzESMBAGA1UEChMJSWRlblRydXN0MSowKAYDVQQDEyFJZGVuVHJ1c3QgUHVibGljIFNlY3RvciBS +b290IENBIDEwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC2IpT8pEiv6EdrCvsnduTy +P4o7ekosMSqMjbCpwzFrqHd2hCa2rIFCDQjrVVi7evi8ZX3yoG2LqEfpYnYeEe4IFNGyRBb06tD6 +Hi9e28tzQa68ALBKK0CyrOE7S8ItneShm+waOh7wCLPQ5CQ1B5+ctMlSbdsHyo+1W/CD80/HLaXI +rcuVIKQxKFdYWuSNG5qrng0M8gozOSI5Cpcu81N3uURF/YTLNiCBWS2ab21ISGHKTN9T0a9SvESf +qy9rg3LvdYDaBjMbXcjaY8ZNzaxmMc3R3j6HEDbhuaR672BQssvKplbgN6+rNBM5Jeg5ZuSYeqoS +mJxZZoY+rfGwyj4GD3vwEUs3oERte8uojHH01bWRNszwFcYr3lEXsZdMUD2xlVl8BX0tIdUAvwFn +ol57plzy9yLxkA2T26pEUWbMfXYD62qoKjgZl3YNa4ph+bz27nb9cCvdKTz4Ch5bQhyLVi9VGxyh +LrXHFub4qjySjmm2AcG1hp2JDws4lFTo6tyePSW8Uybt1as5qsVATFSrsrTZ2fjXctscvG29ZV/v +iDUqZi/u9rNl8DONfJhBaUYPQxxp+pu10GFqzcpL2UyQRqsVWaFHVCkugyhfHMKiq3IXAAaOReyL +4jM9f9oZRORicsPfIsbyVtTdX5Vy7W1f90gDW/3FKqD2cyOEEBsB5wIDAQABo0IwQDAOBgNVHQ8B +Af8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQU43HgntinQtnbcZFrlJPrw6PRFKMw +DQYJKoZIhvcNAQELBQADggIBAEf63QqwEZE4rU1d9+UOl1QZgkiHVIyqZJnYWv6IAcVYpZmxI1Qj +t2odIFflAWJBF9MJ23XLblSQdf4an4EKwt3X9wnQW3IV5B4Jaj0z8yGa5hV+rVHVDRDtfULAj+7A +mgjVQdZcDiFpboBhDhXAuM/FSRJSzL46zNQuOAXeNf0fb7iAaJg9TaDKQGXSc3z1i9kKlT/YPyNt +GtEqJBnZhbMX73huqVjRI9PHE+1yJX9dsXNw0H8GlwmEKYBhHfpe/3OsoOOJuBxxFcbeMX8S3OFt +m6/n6J91eEyrRjuazr8FGF1NFTwWmhlQBJqymm9li1JfPFgEKCXAZmExfrngdbkaqIHWchezxQMx +NRF4eKLg6TCMf4DfWN88uieW4oA0beOY02QnrEh+KHdcxiVhJfiFDGX6xDIvpZgF5PgLZxYWxoK4 +Mhn5+bl53B/N66+rDt0b20XkeucC4pVd/GnwU2lhlXV5C15V5jgclKlZM57IcXR5f1GJtshquDDI +ajjDbp7hNxbqBWJMWxJH7ae0s1hWx0nzfxJoCTFx8G34Tkf71oXuxVhAGaQdp/lLQzfcaFpPz+vC +ZHTetBXZ9FRUGi8c15dxVJCO2SCdUyt/q4/i6jC8UDfv8Ue1fXwsBOxonbRJRBD0ckscZOf85muQ +3Wl9af0AVqW3rLatt8o+Ae+c +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert100.pem b/test/rules/platform_certs/default/cert100.pem new file mode 100644 index 000000000000..af749d22d793 --- /dev/null +++ b/test/rules/platform_certs/default/cert100.pem @@ -0,0 +1,23 @@ +Entrust Root Certification Authority - G2 +-----BEGIN CERTIFICATE----- +MIIEPjCCAyagAwIBAgIESlOMKDANBgkqhkiG9w0BAQsFADCBvjELMAkGA1UEBhMCVVMxFjAUBgNV +BAoTDUVudHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3d3cuZW50cnVzdC5uZXQvbGVnYWwtdGVy +bXMxOTA3BgNVBAsTMChjKSAyMDA5IEVudHJ1c3QsIEluYy4gLSBmb3IgYXV0aG9yaXplZCB1c2Ug +b25seTEyMDAGA1UEAxMpRW50cnVzdCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzIw +HhcNMDkwNzA3MTcyNTU0WhcNMzAxMjA3MTc1NTU0WjCBvjELMAkGA1UEBhMCVVMxFjAUBgNVBAoT +DUVudHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3d3cuZW50cnVzdC5uZXQvbGVnYWwtdGVybXMx +OTA3BgNVBAsTMChjKSAyMDA5IEVudHJ1c3QsIEluYy4gLSBmb3IgYXV0aG9yaXplZCB1c2Ugb25s +eTEyMDAGA1UEAxMpRW50cnVzdCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzIwggEi +MA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6hLZy254Ma+KZ6TABp3bqMriVQRrJ2mFOWHLP +/vaCeb9zYQYKpSfYs1/TRU4cctZOMvJyig/3gxnQaoCAAEUesMfnmr8SVycco2gvCoe9amsOXmXz +HHfV1IWNcCG0szLni6LVhjkCsbjSR87kyUnEO6fe+1R9V77w6G7CebI6C1XiUJgWMhNcL3hWwcKU +s/Ja5CeanyTXxuzQmyWC48zCxEXFjJd6BmsqEZ+pCm5IO2/b1BEZQvePB7/1U1+cPvQXLOZprE4y +TGJ36rfo5bs0vBmLrpxR57d+tVOxMyLlbc9wPBr64ptntoP0jaWvYkxN4FisZDQSA/i2jZRjJKRx +AgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRqciZ6 +0B7vfec7aVHUbI2fkBJmqzANBgkqhkiG9w0BAQsFAAOCAQEAeZ8dlsa2eT8ijYfThwMEYGprmi5Z +iXMRrEPR9RP/jTkrwPK9T3CMqS/qF8QLVJ7UG5aYMzyorWKiAHarWWluBh1+xLlEjZivEtRh2woZ +Rkfz6/djwUAFQKXSt/S1mja/qYh2iARVBCuch38aNzx+LaUa2NSJXsq9rD1s2G2v1fN2D807iDgi +nWyTmsQ9v4IbZT+mD12q/OWyFcq1rca8PdCE6OoGcrBNOTJ4vz4RnAuknZoh8/CbCzB428Hch0P+ +vGOaysXCHMnHjf87ElgI5rY97HosTvuDls4MPGmHVHOkc8KT/1EQrBVUAdj8BbGJoX90g5pJ19xO +e4pIb4tF9g== +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert101.pem b/test/rules/platform_certs/default/cert101.pem new file mode 100644 index 000000000000..706aa90b130e --- /dev/null +++ b/test/rules/platform_certs/default/cert101.pem @@ -0,0 +1,17 @@ +Entrust Root Certification Authority - EC1 +-----BEGIN CERTIFICATE----- +MIIC+TCCAoCgAwIBAgINAKaLeSkAAAAAUNCR+TAKBggqhkjOPQQDAzCBvzELMAkGA1UEBhMCVVMx +FjAUBgNVBAoTDUVudHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3d3cuZW50cnVzdC5uZXQvbGVn +YWwtdGVybXMxOTA3BgNVBAsTMChjKSAyMDEyIEVudHJ1c3QsIEluYy4gLSBmb3IgYXV0aG9yaXpl +ZCB1c2Ugb25seTEzMDEGA1UEAxMqRW50cnVzdCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5 +IC0gRUMxMB4XDTEyMTIxODE1MjUzNloXDTM3MTIxODE1NTUzNlowgb8xCzAJBgNVBAYTAlVTMRYw +FAYDVQQKEw1FbnRydXN0LCBJbmMuMSgwJgYDVQQLEx9TZWUgd3d3LmVudHJ1c3QubmV0L2xlZ2Fs +LXRlcm1zMTkwNwYDVQQLEzAoYykgMjAxMiBFbnRydXN0LCBJbmMuIC0gZm9yIGF1dGhvcml6ZWQg +dXNlIG9ubHkxMzAxBgNVBAMTKkVudHJ1c3QgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAt +IEVDMTB2MBAGByqGSM49AgEGBSuBBAAiA2IABIQTydC6bUF74mzQ61VfZgIaJPRbiWlH47jCffHy +AsWfoPZb1YsGGYZPUxBtByQnoaD41UcZYUx9ypMn6nQM72+WCf5j7HBdNq1nd67JnXxVRDqiY1Ef +9eNi1KlHBz7MIKNCMEAwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYE +FLdj5xrdjekIplWDpOBqUEFlEUJJMAoGCCqGSM49BAMDA2cAMGQCMGF52OVCR98crlOZF7ZvHH3h +vxGU0QOIdeSNiaSKd0bebWHvAvX7td/M/k7//qnmpwIwW5nXhTcGtXsI/esni0qU+eH6p44mCOh8 +kmhtc9hvJqwhAriZtyZBWyVgrtBIGu4G +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert102.pem b/test/rules/platform_certs/default/cert102.pem new file mode 100644 index 000000000000..b3a47b9738e2 --- /dev/null +++ b/test/rules/platform_certs/default/cert102.pem @@ -0,0 +1,28 @@ +CFCA EV ROOT +-----BEGIN CERTIFICATE----- +MIIFjTCCA3WgAwIBAgIEGErM1jANBgkqhkiG9w0BAQsFADBWMQswCQYDVQQGEwJDTjEwMC4GA1UE +CgwnQ2hpbmEgRmluYW5jaWFsIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MRUwEwYDVQQDDAxDRkNB +IEVWIFJPT1QwHhcNMTIwODA4MDMwNzAxWhcNMjkxMjMxMDMwNzAxWjBWMQswCQYDVQQGEwJDTjEw +MC4GA1UECgwnQ2hpbmEgRmluYW5jaWFsIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MRUwEwYDVQQD +DAxDRkNBIEVWIFJPT1QwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDXXWvNED8fBVnV +BU03sQ7smCuOFR36k0sXgiFxEFLXUWRwFsJVaU2OFW2fvwwbwuCjZ9YMrM8irq93VCpLTIpTUnrD +7i7es3ElweldPe6hL6P3KjzJIx1qqx2hp/Hz7KDVRM8Vz3IvHWOX6Jn5/ZOkVIBMUtRSqy5J35DN +uF++P96hyk0g1CXohClTt7GIH//62pCfCqktQT+x8Rgp7hZZLDRJGqgG16iI0gNyejLi6mhNbiyW +ZXvKWfry4t3uMCz7zEasxGPrb382KzRzEpR/38wmnvFyXVBlWY9ps4deMm/DGIq1lY+wejfeWkU7 +xzbh72fROdOXW3NiGUgthxwG+3SYIElz8AXSG7Ggo7cbcNOIabla1jj0Ytwli3i/+Oh+uFzJlU9f +py25IGvPa931DfSCt/SyZi4QKPaXWnuWFo8BGS1sbn85WAZkgwGDg8NNkt0yxoekN+kWzqotaK8K +gWU6cMGbrU1tVMoqLUuFG7OA5nBFDWteNfB/O7ic5ARwiRIlk9oKmSJgamNgTnYGmE69g60dWIol +hdLHZR4tjsbftsbhf4oEIRUpdPA+nJCdDC7xij5aqgwJHsfVPKPtl8MeNPo4+QgO48BdK4PRVmrJ +tqhUUy54Mmc9gn900PvhtgVguXDbjgv5E1hvcWAQUhC5wUEJ73IfZzF4/5YFjQIDAQABo2MwYTAf +BgNVHSMEGDAWgBTj/i39KNALtbq2osS/BqoFjJP7LzAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB +/wQEAwIBBjAdBgNVHQ4EFgQU4/4t/SjQC7W6tqLEvwaqBYyT+y8wDQYJKoZIhvcNAQELBQADggIB +ACXGumvrh8vegjmWPfBEp2uEcwPenStPuiB/vHiyz5ewG5zz13ku9Ui20vsXiObTej/tUxPQ4i9q +ecsAIyjmHjdXNYmEwnZPNDatZ8POQQaIxffu2Bq41gt/UP+TqhdLjOztUmCypAbqTuv0axn96/Ua +4CUqmtzHQTb3yHQFhDmVOdYLO6Qn+gjYXB74BGBSESgoA//vU2YApUo0FmZ8/Qmkrp5nGm9BC2sG +E5uPhnEFtC+NiWYzKXZUmhH4J/qyP5Hgzg0b8zAarb8iXRvTvyUFTeGSGn+ZnzxEk8rUQElsgIfX +BDrDMlI1Dlb4pd19xIsNER9Tyx6yF7Zod1rg1MvIB671Oi6ON7fQAUtDKXeMOZePglr4UeWJoBjn +aH9dCi77o0cOPaYjesYBx4/IXr9tgFa+iiS6M+qf4TIRnvHST4D2G0CvOJ4RUHlzEhLN5mydLIhy +PDCBBpEi6lmt2hkuIsKNuYyH4Ga8cyNfIWRjgEj1oDwYPZTISEEdQLpe/v5WOaHIz16eGWRGENoX +kbcFgKyLmZJ956LYBws2J+dIeWCKw9cTXPhyQN9Ky8+ZAAoACxGV2lZFA4gKn2fQ1XmxqI1AbQ3C +ekD6819kR5LLU7m7Wc5P/dAVUwHY3+vZ5nbv0CO7O6l5s9UCKc2Jo5YPSjXnTkLAdc0Hz+Ys63su +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert103.pem b/test/rules/platform_certs/default/cert103.pem new file mode 100644 index 000000000000..8bd0e06bfcad --- /dev/null +++ b/test/rules/platform_certs/default/cert103.pem @@ -0,0 +1,20 @@ +OISTE WISeKey Global Root GB CA +-----BEGIN CERTIFICATE----- +MIIDtTCCAp2gAwIBAgIQdrEgUnTwhYdGs/gjGvbCwDANBgkqhkiG9w0BAQsFADBtMQswCQYDVQQG +EwJDSDEQMA4GA1UEChMHV0lTZUtleTEiMCAGA1UECxMZT0lTVEUgRm91bmRhdGlvbiBFbmRvcnNl +ZDEoMCYGA1UEAxMfT0lTVEUgV0lTZUtleSBHbG9iYWwgUm9vdCBHQiBDQTAeFw0xNDEyMDExNTAw +MzJaFw0zOTEyMDExNTEwMzFaMG0xCzAJBgNVBAYTAkNIMRAwDgYDVQQKEwdXSVNlS2V5MSIwIAYD +VQQLExlPSVNURSBGb3VuZGF0aW9uIEVuZG9yc2VkMSgwJgYDVQQDEx9PSVNURSBXSVNlS2V5IEds +b2JhbCBSb290IEdCIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2Be3HEokKtaX +scriHvt9OO+Y9bI5mE4nuBFde9IllIiCFSZqGzG7qFshISvYD06fWvGxWuR51jIjK+FTzJlFXHtP +rby/h0oLS5daqPZI7H17Dc0hBt+eFf1Biki3IPShehtX1F1Q/7pn2COZH8g/497/b1t3sWtuuMlk +9+HKQUYOKXHQuSP8yYFfTvdv37+ErXNku7dCjmn21HYdfp2nuFeKUWdy19SouJVUQHMD9ur06/4o +Qnc/nSMbsrY9gBQHTC5P99UKFg29ZkM3fiNDecNAhvVMKdqOmq0NpQSHiB6F4+lT1ZvIiwNjeOvg +GUpuuy9rM2RYk61pv48b74JIxwIDAQABo1EwTzALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB +/zAdBgNVHQ4EFgQUNQ/INmNe4qPs+TtmFc5RUuORmj0wEAYJKwYBBAGCNxUBBAMCAQAwDQYJKoZI +hvcNAQELBQADggEBAEBM+4eymYGQfp3FsLAmzYh7KzKNbrghcViXfa43FK8+5/ea4n32cZiZBKpD +dHij40lhPnOMTZTg+XHEthYOU3gf1qKHLwI5gSk8rxWYITD+KJAAjNHhy/peyP34EEY7onhCkRd0 +VQreUGdNZtGn//3ZwLWoo4rOZvUPQ82nK1d7Y0Zqqi5S2PTt4W2tKZB4SLrhI6qjiey1q5bAtEui +HZeeevJuQHHfaPFlTc58Bd9TZaml8LGXBHAVRgOY1NK/VLSgWH1Sb9pWJmLU2NuJMW8c8CLC02Ic +Nc1MaRVUGpCY3useX8p3x8uOPUNpnJpY0CQ73xtAln41rYHHTnG6iBM= +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert104.pem b/test/rules/platform_certs/default/cert104.pem new file mode 100644 index 000000000000..e6857a0e56b5 --- /dev/null +++ b/test/rules/platform_certs/default/cert104.pem @@ -0,0 +1,19 @@ +SZAFIR ROOT CA2 +-----BEGIN CERTIFICATE----- +MIIDcjCCAlqgAwIBAgIUPopdB+xV0jLVt+O2XwHrLdzk1uQwDQYJKoZIhvcNAQELBQAwUTELMAkG +A1UEBhMCUEwxKDAmBgNVBAoMH0tyYWpvd2EgSXpiYSBSb3psaWN6ZW5pb3dhIFMuQS4xGDAWBgNV +BAMMD1NaQUZJUiBST09UIENBMjAeFw0xNTEwMTkwNzQzMzBaFw0zNTEwMTkwNzQzMzBaMFExCzAJ +BgNVBAYTAlBMMSgwJgYDVQQKDB9LcmFqb3dhIEl6YmEgUm96bGljemVuaW93YSBTLkEuMRgwFgYD +VQQDDA9TWkFGSVIgUk9PVCBDQTIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC3vD5Q +qEvNQLXOYeeWyrSh2gwisPq1e3YAd4wLz32ohswmUeQgPYUM1ljj5/QqGJ3a0a4m7utT3PSQ1hNK +DJA8w/Ta0o4NkjrcsbH/ON7Dui1fgLkCvUqdGw+0w8LBZwPd3BucPbOw3gAeqDRHu5rr/gsUvTaE +2g0gv/pby6kWIK05YO4vdbbnl5z5Pv1+TW9NL++IDWr63fE9biCloBK0TXC5ztdyO4mTp4CEHCdJ +ckm1/zuVnsHMyAHs6A6KCpbns6aH5db5BSsNl0BwPLqsdVqc1U2dAgrSS5tmS0YHF2Wtn2yIANwi +ieDhZNRnvDF5YTy7ykHNXGoAyDw4jlivAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0P +AQH/BAQDAgEGMB0GA1UdDgQWBBQuFqlKGLXLzPVvUPMjX/hd56zwyDANBgkqhkiG9w0BAQsFAAOC +AQEAtXP4A9xZWx126aMqe5Aosk3AM0+qmrHUuOQn/6mWmc5G4G18TKI4pAZw8PRBEew/R40/cof5 +O/2kbytTAOD/OblqBw7rHRz2onKQy4I9EYKL0rufKq8h5mOGnXkZ7/e7DDWQw4rtTw/1zBLZpD67 +oPwglV9PJi8RI4NOdQcPv5vRtB3pEAT+ymCPoky4rc/hkA/NrgrHXXu3UNLUYfrVFdvXn4dRVOul +4+vJhaAlIDf7js4MNIThPIGyd05DpYhfhmehPea0XGG2Ptv+tyjFogeutcrKjSoS75ftwjCkySp6 ++/NNIxuZMzSgLvWpCz/UXeHPhJ/iGcJfitYgHuNztw== +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert105.pem b/test/rules/platform_certs/default/cert105.pem new file mode 100644 index 000000000000..7634cab47ebd --- /dev/null +++ b/test/rules/platform_certs/default/cert105.pem @@ -0,0 +1,30 @@ +Certum Trusted Network CA 2 +-----BEGIN CERTIFICATE----- +MIIF0jCCA7qgAwIBAgIQIdbQSk8lD8kyN/yqXhKN6TANBgkqhkiG9w0BAQ0FADCBgDELMAkGA1UE +BhMCUEwxIjAgBgNVBAoTGVVuaXpldG8gVGVjaG5vbG9naWVzIFMuQS4xJzAlBgNVBAsTHkNlcnR1 +bSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTEkMCIGA1UEAxMbQ2VydHVtIFRydXN0ZWQgTmV0d29y +ayBDQSAyMCIYDzIwMTExMDA2MDgzOTU2WhgPMjA0NjEwMDYwODM5NTZaMIGAMQswCQYDVQQGEwJQ +TDEiMCAGA1UEChMZVW5pemV0byBUZWNobm9sb2dpZXMgUy5BLjEnMCUGA1UECxMeQ2VydHVtIENl +cnRpZmljYXRpb24gQXV0aG9yaXR5MSQwIgYDVQQDExtDZXJ0dW0gVHJ1c3RlZCBOZXR3b3JrIENB +IDIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC9+Xj45tWADGSdhhuWZGc/IjoedQF9 +7/tcZ4zJzFxrqZHmuULlIEub2pt7uZld2ZuAS9eEQCsn0+i6MLs+CRqnSZXvK0AkwpfHp+6bJe+o +CgCXhVqqndwpyeI1B+twTUrWwbNWuKFBOJvR+zF/j+Bf4bE/D44WSWDXBo0Y+aomEKsq09DRZ40b +Rr5HMNUuctHFY9rnY3lEfktjJImGLjQ/KUxSiyqnwOKRKIm5wFv5HdnnJ63/mgKXwcZQkpsCLL2p +uTRZCr+ESv/f/rOf69me4Jgj7KZrdxYq28ytOxykh9xGc14ZYmhFV+SQgkK7QtbwYeDBoz1mo130 +GO6IyY0XRSmZMnUCMe4pJshrAua1YkV/NxVaI2iJ1D7eTiew8EAMvE0Xy02isx7QBlrd9pPPV3WZ +9fqGGmd4s7+W/jTcvedSVuWz5XV710GRBdxdaeOVDUO5/IOWOZV7bIBaTxNyxtd9KXpEulKkKtVB +Rgkg/iKgtlswjbyJDNXXcPiHUv3a76xRLgezTv7QCdpw75j6VuZt27VXS9zlLCUVyJ4ueE742pye +hizKV/Ma5ciSixqClnrDvFASadgOWkaLOusm+iPJtrCBvkIApPjW/jAux9JG9uWOdf3yzLnQh1vM +BhBgu4M1t15n3kfsmUjxpKEV/q2MYo45VU85FrmxY53/twIDAQABo0IwQDAPBgNVHRMBAf8EBTAD +AQH/MB0GA1UdDgQWBBS2oVQ5AsOgP46KvPrU+Bym0ToO/TAOBgNVHQ8BAf8EBAMCAQYwDQYJKoZI +hvcNAQENBQADggIBAHGlDs7k6b8/ONWJWsQCYftMxRQXLYtPU2sQF/xlhMcQSZDe28cmk4gmb3DW +Al45oPePq5a1pRNcgRRtDoGCERuKTsZPpd1iHkTfCVn0W3cLN+mLIMb4Ck4uWBzrM9DPhmDJ2vuA +L55MYIR4PSFk1vtBHxgP58l1cb29XN40hz5BsA72udY/CROWFC/emh1auVbONTqwX3BNXuMp8SMo +clm2q8KMZiYcdywmdjWLKKdpoPk79SPdhRB0yZADVpHnr7pH1BKXESLjokmUbOe3lEu6LaTaM4tM +pkT/WjzGHWTYtTHkpjx6qFcL2+1hGsvxznN3Y6SHb0xRONbkX8eftoEq5IVIeVheO/jbAoJnwTnb +w3RLPTYe+SmTiGhbqEQZIfCn6IENLOiTNrQ3ssqwGyZ6miUfmpqAnksqP/ujmv5zMnHCnsZy4Ypo +J/HkD7TETKVhk/iXEAcqMCWpuchxuO9ozC1+9eB+D4Kob7a6bINDd82Kkhehnlt4Fj1F4jNy3eFm +ypnTycUm/Q1oBEauttmbjL4ZvrHG8hnjXALKLNhvSgfZyTXaQHXyxKcZb55CEJh15pWLYLztxRLX +is7VmFxWlgPF7ncGNf/P5O4/E2Hu29othfDNrp2yGAlFw5Khchf8R7agCyzxxN5DaAhqXzvwdmP7 +zAYspsbiDrW5viSP +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert106.pem b/test/rules/platform_certs/default/cert106.pem new file mode 100644 index 000000000000..d982ddd9c97c --- /dev/null +++ b/test/rules/platform_certs/default/cert106.pem @@ -0,0 +1,31 @@ +Hellenic Academic and Research Institutions RootCA 2015 +-----BEGIN CERTIFICATE----- +MIIGCzCCA/OgAwIBAgIBADANBgkqhkiG9w0BAQsFADCBpjELMAkGA1UEBhMCR1IxDzANBgNVBAcT +BkF0aGVuczFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0 +aW9ucyBDZXJ0LiBBdXRob3JpdHkxQDA+BgNVBAMTN0hlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNl +YXJjaCBJbnN0aXR1dGlvbnMgUm9vdENBIDIwMTUwHhcNMTUwNzA3MTAxMTIxWhcNNDAwNjMwMTAx +MTIxWjCBpjELMAkGA1UEBhMCR1IxDzANBgNVBAcTBkF0aGVuczFEMEIGA1UEChM7SGVsbGVuaWMg +QWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxQDA+BgNV +BAMTN0hlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgUm9vdENBIDIw +MTUwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDC+Kk/G4n8PDwEXT2QNrCROnk8Zlrv +bTkBSRq0t89/TSNTt5AA4xMqKKYx8ZEA4yjsriFBzh/a/X0SWwGDD7mwX5nh8hKDgE0GPt+sr+eh +iGsxr/CL0BgzuNtFajT0AoAkKAoCFZVedioNmToUW/bLy1O8E00BiDeUJRtCvCLYjqOWXjrZMts+ +6PAQZe104S+nfK8nNLspfZu2zwnI5dMK/IhlZXQK3HMcXM1AsRzUtoSMTFDPaI6oWa7CJ06CojXd +FPQf/7J31Ycvqm59JCfnxssm5uX+Zwdj2EUN3TpZZTlYepKZcj2chF6IIbjV9Cz82XBST3i4vTwr +i5WY9bPRaM8gFH5MXF/ni+X1NYEZN9cRCLdmvtNKzoNXADrDgfgXy5I2XdGj2HUb4Ysn6npIQf1F +GQatJ5lOwXBH3bWfgVMS5bGMSF0xQxfjjMZ6Y5ZLKTBOhE5iGV48zpeQpX8B653g+IuJ3SWYPZK2 +fu/Z8VFRfS0myGlZYeCsargqNhEEelC9MoS+L9xy1dcdFkfkR2YgP/SWxa+OAXqlD3pk9Q0Yh9mu +iNX6hME6wGkoLfINaFGq46V3xqSQDqE3izEjR8EJCOtu93ib14L8hCCZSRm2Ekax+0VVFqmjZayc +Bw/qa9wfLgZy7IaIEuQt218FL+TwA9MmM+eAws1CoRc0CwIDAQABo0IwQDAPBgNVHRMBAf8EBTAD +AQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUcRVnyMjJvXVdctA4GGqd83EkVAswDQYJKoZI +hvcNAQELBQADggIBAHW7bVRLqhBYRjTyYtcWNl0IXtVsyIe9tC5G8jH4fOpCtZMWVdyhDBKg2mF+ +D1hYc2Ryx+hFjtyp8iY/xnmMsVMIM4GwVhO+5lFc2JsKT0ucVlMC6U/2DWDqTUJV6HwbISHTGzrM +d/K4kPFox/la/vot9L/J9UUbzjgQKjeKeaO04wlshYaT/4mWJ3iBj2fjRnRUjtkNaeJK9E10A/+y +d+2VZ5fkscWrv2oj6NSU4kQoYsRL4vDY4ilrGnB+JGGTe08DMiUNRSQrlrRGar9KC/eaj8GsGsVn +82800vpzY4zvFrCopEYq+OsS7HK07/grfoxSwIuEVPkvPuNVqNxmsdnhX9izjFk0WaSrT2y7Hxjb +davYy5LNlDhhDgcGH0tGEPEVvo2FXDtKK4F5D7Rpn0lQl033DlZdwJVqwjbDG2jJ9SrcR5q+ss7F +Jej6A7na+RZukYT1HCjI/CbM1xyQVqdfbzoEvM14iQuODy+jqk+iGxI9FghAD/FGTNeqewjBCvVt +J94Cj8rDtSvK6evIIVM4pcw72Hc3MKJP2W/R8kCtQXoXxdZKNYm3QdV8hn9VTYNKpXMgwDqvkPGa +JI7ZjnHKe7iG2rKPmT4dEw0SEe7Uq/DpFXYC5ODfqiAeW2GFZECpkJcNrVPSWh2HagCXZWK0vm9q +p/UsQu0yrbYhnr68 +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert107.pem b/test/rules/platform_certs/default/cert107.pem new file mode 100644 index 000000000000..d0602cca4eea --- /dev/null +++ b/test/rules/platform_certs/default/cert107.pem @@ -0,0 +1,16 @@ +Hellenic Academic and Research Institutions ECC RootCA 2015 +-----BEGIN CERTIFICATE----- +MIICwzCCAkqgAwIBAgIBADAKBggqhkjOPQQDAjCBqjELMAkGA1UEBhMCR1IxDzANBgNVBAcTBkF0 +aGVuczFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9u +cyBDZXJ0LiBBdXRob3JpdHkxRDBCBgNVBAMTO0hlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJj +aCBJbnN0aXR1dGlvbnMgRUNDIFJvb3RDQSAyMDE1MB4XDTE1MDcwNzEwMzcxMloXDTQwMDYzMDEw +MzcxMlowgaoxCzAJBgNVBAYTAkdSMQ8wDQYDVQQHEwZBdGhlbnMxRDBCBgNVBAoTO0hlbGxlbmlj +IEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgQ2VydC4gQXV0aG9yaXR5MUQwQgYD +VQQDEztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIEVDQyBSb290 +Q0EgMjAxNTB2MBAGByqGSM49AgEGBSuBBAAiA2IABJKgQehLgoRc4vgxEZmGZE4JJS+dQS8KrjVP +dJWyUWRrjWvmP3CV8AVER6ZyOFB2lQJajq4onvktTpnvLEhvTCUp6NFxW98dwXU3tNf6e3pCnGoK +Vlp8aQuqgAkkbH7BRqNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0O +BBYEFLQiC4KZJAEOnLvkDv2/+5cgk5kqMAoGCCqGSM49BAMCA2cAMGQCMGfOFmI4oqxiRaeplSTA +GiecMjvAwNW6qef4BENThe5SId6d9SWDPp5YSy/XZxMOIQIwBeF1Ad5o7SofTUwJCA3sS61kFyjn +dc5FZXIhF8siQQ6ME5g4mlRtm8rifOoCWCKR +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert108.pem b/test/rules/platform_certs/default/cert108.pem new file mode 100644 index 000000000000..1ce7bf748394 --- /dev/null +++ b/test/rules/platform_certs/default/cert108.pem @@ -0,0 +1,28 @@ +ISRG Root X1 +-----BEGIN CERTIFICATE----- +MIIFazCCA1OgAwIBAgIRAIIQz7DSQONZRGPgu2OCiwAwDQYJKoZIhvcNAQELBQAwTzELMAkGA1UE +BhMCVVMxKTAnBgNVBAoTIEludGVybmV0IFNlY3VyaXR5IFJlc2VhcmNoIEdyb3VwMRUwEwYDVQQD +EwxJU1JHIFJvb3QgWDEwHhcNMTUwNjA0MTEwNDM4WhcNMzUwNjA0MTEwNDM4WjBPMQswCQYDVQQG +EwJVUzEpMCcGA1UEChMgSW50ZXJuZXQgU2VjdXJpdHkgUmVzZWFyY2ggR3JvdXAxFTATBgNVBAMT +DElTUkcgUm9vdCBYMTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAK3oJHP0FDfzm54r +Vygch77ct984kIxuPOZXoHj3dcKi/vVqbvYATyjb3miGbESTtrFj/RQSa78f0uoxmyF+0TM8ukj1 +3Xnfs7j/EvEhmkvBioZxaUpmZmyPfjxwv60pIgbz5MDmgK7iS4+3mX6UA5/TR5d8mUgjU+g4rk8K +b4Mu0UlXjIB0ttov0DiNewNwIRt18jA8+o+u3dpjq+sWT8KOEUt+zwvo/7V3LvSye0rgTBIlDHCN +Aymg4VMk7BPZ7hm/ELNKjD+Jo2FR3qyHB5T0Y3HsLuJvW5iB4YlcNHlsdu87kGJ55tukmi8mxdAQ +4Q7e2RCOFvu396j3x+UCB5iPNgiV5+I3lg02dZ77DnKxHZu8A/lJBdiB3QW0KtZB6awBdpUKD9jf +1b0SHzUvKBds0pjBqAlkd25HN7rOrFleaJ1/ctaJxQZBKT5ZPt0m9STJEadao0xAH0ahmbWnOlFu +hjuefXKnEgV4We0+UXgVCwOPjdAvBbI+e0ocS3MFEvzG6uBQE3xDk3SzynTnjh8BCNAw1FtxNrQH +usEwMFxIt4I7mKZ9YIqioymCzLq9gwQbooMDQaHWBfEbwrbwqHyGO0aoSCqI3Haadr8faqU9GY/r +OPNk3sgrDQoo//fb4hVC1CLQJ13hef4Y53CIrU7m2Ys6xt0nUW7/vGT1M0NPAgMBAAGjQjBAMA4G +A1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBR5tFnme7bl5AFzgAiIyBpY +9umbbjANBgkqhkiG9w0BAQsFAAOCAgEAVR9YqbyyqFDQDLHYGmkgJykIrGF1XIpu+ILlaS/V9lZL +ubhzEFnTIZd+50xx+7LSYK05qAvqFyFWhfFQDlnrzuBZ6brJFe+GnY+EgPbk6ZGQ3BebYhtF8GaV +0nxvwuo77x/Py9auJ/GpsMiu/X1+mvoiBOv/2X/qkSsisRcOj/KKNFtY2PwByVS5uCbMiogziUwt +hDyC3+6WVwW6LLv3xLfHTjuCvjHIInNzktHCgKQ5ORAzI4JMPJ+GslWYHb4phowim57iaztXOoJw +TdwJx4nLCgdNbOhdjsnvzqvHu7UrTkXWStAmzOVyyghqpZXjFaH3pO3JLF+l+/+sKAIuvtd7u+Nx +e5AW0wdeRlN8NwdCjNPElpzVmbUq4JUagEiuTDkHzsxHpFKVK7q4+63SM1N95R1NbdWhscdCb+ZA +JzVcoyi3B43njTOQ5yOf+1CceWxG1bQVs5ZufpsMljq4Ui0/1lvh+wjChP4kqKOJ2qxq4RgqsahD +YVvTH9w7jXbyLeiNdd8XM2w9U/t7y0Ff/9yi0GE44Za4rF2LN9d11TPAmRGunUHBcnWEvgJBQl9n +JEiU0Zsnvgc/ubhPgXRR4Xq37Z0j4r7g1SgEEzwxA57demyPxgcYxn/eR44/KJ4EBs+lVDR3veyJ +m+kXQ99b21/+jh5Xos1AnX5iItreGCc= +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert109.pem b/test/rules/platform_certs/default/cert109.pem new file mode 100644 index 000000000000..a0a7df1fbdc5 --- /dev/null +++ b/test/rules/platform_certs/default/cert109.pem @@ -0,0 +1,28 @@ +AC RAIZ FNMT-RCM +-----BEGIN CERTIFICATE----- +MIIFgzCCA2ugAwIBAgIPXZONMGc2yAYdGsdUhGkHMA0GCSqGSIb3DQEBCwUAMDsxCzAJBgNVBAYT +AkVTMREwDwYDVQQKDAhGTk1ULVJDTTEZMBcGA1UECwwQQUMgUkFJWiBGTk1ULVJDTTAeFw0wODEw +MjkxNTU5NTZaFw0zMDAxMDEwMDAwMDBaMDsxCzAJBgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJD +TTEZMBcGA1UECwwQQUMgUkFJWiBGTk1ULVJDTTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoC +ggIBALpxgHpMhm5/yBNtwMZ9HACXjywMI7sQmkCpGreHiPibVmr75nuOi5KOpyVdWRHbNi63URcf +qQgfBBckWKo3Shjf5TnUV/3XwSyRAZHiItQDwFj8d0fsjz50Q7qsNI1NOHZnjrDIbzAzWHFctPVr +btQBULgTfmxKo0nRIBnuvMApGGWn3v7v3QqQIecaZ5JCEJhfTzC8PhxFtBDXaEAUwED653cXeuYL +j2VbPNmaUtu1vZ5Gzz3rkQUCwJaydkxNEJY7kvqcfw+Z374jNUUeAlz+taibmSXaXvMiwzn15Cou +08YfxGyqxRxqAQVKL9LFwag0Jl1mpdICIfkYtwb1TplvqKtMUejPUBjFd8g5CSxJkjKZqLsXF3mw +WsXmo8RZZUc1g16p6DULmbvkzSDGm0oGObVo/CK67lWMK07q87Hj/LaZmtVC+nFNCM+HHmpxffnT +tOmlcYF7wk5HlqX2doWjKI/pgG6BU6VtX7hI+cL5NqYuSf+4lsKMB7ObiFj86xsc3i1w4peSMKGJ +47xVqCfWS+2QrYv6YyVZLag13cqXM7zlzced0ezvXg5KkAYmY6252TUtB7p2ZSysV4999AeU14EC +ll2jB0nVetBX+RvnU0Z1qrB5QstocQjpYL05ac70r8NWQMetUqIJ5G+GR4of6ygnXYMgrwTJbFaa +i0b1AgMBAAGjgYMwgYAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYE +FPd9xf3E6Jobd2Sn9R2gzL+HYJptMD4GA1UdIAQ3MDUwMwYEVR0gADArMCkGCCsGAQUFBwIBFh1o +dHRwOi8vd3d3LmNlcnQuZm5tdC5lcy9kcGNzLzANBgkqhkiG9w0BAQsFAAOCAgEAB5BK3/MjTvDD +nFFlm5wioooMhfNzKWtN/gHiqQxjAb8EZ6WdmF/9ARP67Jpi6Yb+tmLSbkyU+8B1RXxlDPiyN8+s +D8+Nb/kZ94/sHvJwnvDKuO+3/3Y3dlv2bojzr2IyIpMNOmqOFGYMLVN0V2Ue1bLdI4E7pWYjJ2cJ +j+F3qkPNZVEI7VFY/uY5+ctHhKQV8Xa7pO6kO8Rf77IzlhEYt8llvhjho6Tc+hj507wTmzl6NLrT +Qfv6MooqtyuGC2mDOL7Nii4LcK2NJpLuHvUBKwrZ1pebbuCoGRw6IYsMHkCtA+fdZn71uSANA+iW ++YJF1DngoABd15jmfZ5nc8OaKveri6E6FO80vFIOiZiaBECEHX5FaZNXzuvO+FB8TxxuBEOb+dY7 +Ixjp6o7RTUaN8Tvkasq6+yO3m/qZASlaWFot4/nUbQ4mrcFuNLwy+AwF+mWj2zs3gyLp1txyM/1d +8iC9djwj2ij3+RvrWWTV3F9yfiD8zYm1kGdNYno/Tq0dwzn+evQoFt9B9kiABdcPUXmsEKvU7ANm +5mqwujGSQkBqvjrTcuFqN1W8rB2Vt2lh8kORdOag0wokRqEIr9baRRmW1FMdW4R58MD3R++Lj8UG +rp1MYp3/RgT408m2ECVAdf4WqslKYIYvuu8wd+RU4riEmViAqhOLUTpPSPaLtrM= +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert110.pem b/test/rules/platform_certs/default/cert110.pem new file mode 100644 index 000000000000..1a2778910e94 --- /dev/null +++ b/test/rules/platform_certs/default/cert110.pem @@ -0,0 +1,18 @@ +Amazon Root CA 1 +-----BEGIN CERTIFICATE----- +MIIDQTCCAimgAwIBAgITBmyfz5m/jAo54vB4ikPmljZbyjANBgkqhkiG9w0BAQsFADA5MQswCQYD +VQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24gUm9vdCBDQSAxMB4XDTE1 +MDUyNjAwMDAwMFoXDTM4MDExNzAwMDAwMFowOTELMAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpv +bjEZMBcGA1UEAxMQQW1hem9uIFJvb3QgQ0EgMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC +ggEBALJ4gHHKeNXjca9HgFB0fW7Y14h29Jlo91ghYPl0hAEvrAIthtOgQ3pOsqTQNroBvo3bSMgH +FzZM9O6II8c+6zf1tRn4SWiw3te5djgdYZ6k/oI2peVKVuRF4fn9tBb6dNqcmzU5L/qwIFAGbHrQ +gLKm+a/sRxmPUDgH3KKHOVj4utWp+UhnMJbulHheb4mjUcAwhmahRWa6VOujw5H5SNz/0egwLX0t +dHA114gk957EWW67c4cX8jJGKLhD+rcdqsq08p8kDi1L93FcXmn/6pUCyziKrlA4b9v7LWIbxcce +VOF34GfID5yHI9Y/QCB/IIDEgEw+OyQmjgSubJrIqg0CAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB +/zAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0OBBYEFIQYzIU07LwMlJQuCFmcx7IQTgoIMA0GCSqGSIb3 +DQEBCwUAA4IBAQCY8jdaQZChGsV2USggNiMOruYou6r4lK5IpDB/G/wkjUu0yKGX9rbxenDIU5PM +CCjjmCXPI6T53iHTfIUJrU6adTrCC2qJeHZERxhlbI1Bjjt/msv0tadQ1wUsN+gDS63pYaACbvXy +8MWy7Vu33PqUXHeeE6V/Uq2V8viTO96LXFvKWlJbYK8U90vvo/ufQJVtMVT8QtPHRh8jrdkPSHCa +2XV4cdFyQzR1bldZwgJcJmApzyMZFo6IQ6XU5MsI+yMRQ+hDKXJioaldXgjUkK642M4UwtBV8ob2 +xJNDd2ZhwLnoQdeXeGADbkpyrqXRfboQnoZsG4q5WTP468SQvvG5 +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert111.pem b/test/rules/platform_certs/default/cert111.pem new file mode 100644 index 000000000000..449d424d86b1 --- /dev/null +++ b/test/rules/platform_certs/default/cert111.pem @@ -0,0 +1,27 @@ +Amazon Root CA 2 +-----BEGIN CERTIFICATE----- +MIIFQTCCAymgAwIBAgITBmyf0pY1hp8KD+WGePhbJruKNzANBgkqhkiG9w0BAQwFADA5MQswCQYD +VQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24gUm9vdCBDQSAyMB4XDTE1 +MDUyNjAwMDAwMFoXDTQwMDUyNjAwMDAwMFowOTELMAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpv +bjEZMBcGA1UEAxMQQW1hem9uIFJvb3QgQ0EgMjCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoC +ggIBAK2Wny2cSkxKgXlRmeyKy2tgURO8TW0G/LAIjd0ZEGrHJgw12MBvIITplLGbhQPDW9tK6Mj4 +kHbZW0/jTOgGNk3Mmqw9DJArktQGGWCsN0R5hYGCrVo34A3MnaZMUnbqQ523BNFQ9lXg1dKmSYXp +N+nKfq5clU1Imj+uIFptiJXZNLhSGkOQsL9sBbm2eLfq0OQ6PBJTYv9K8nu+NQWpEjTj82R0Yiw9 +AElaKP4yRLuH3WUnAnE72kr3H9rN9yFVkE8P7K6C4Z9r2UXTu/Bfh+08LDmG2j/e7HJV63mjrdvd +fLC6HM783k81ds8P+HgfajZRRidhW+mez/CiVX18JYpvL7TFz4QuK/0NURBs+18bvBt+xa47mAEx +kv8LV/SasrlX6avvDXbR8O70zoan4G7ptGmh32n2M8ZpLpcTnqWHsFcQgTfJU7O7f/aS0ZzQGPSS +btqDT6ZjmUyl+17vIWR6IF9sZIUVyzfpYgwLKhbcAS4y2j5L9Z469hdAlO+ekQiG+r5jqFoz7Mt0 +Q5X5bGlSNscpb/xVA1wf+5+9R+vnSUeVC06JIglJ4PVhHvG/LopyboBZ/1c6+XUyo05f7O0oYtlN +c/LMgRdg7c3r3NunysV+Ar3yVAhU/bQtCSwXVEqY0VThUWcI0u1ufm8/0i2BWSlmy5A5lREedCf+ +3euvAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBSw +DPBMMPQFWAJI/TPlUq9LhONmUjANBgkqhkiG9w0BAQwFAAOCAgEAqqiAjw54o+Ci1M3m9Zh6O+oA +A7CXDpO8Wqj2LIxyh6mx/H9z/WNxeKWHWc8w4Q0QshNabYL1auaAn6AFC2jkR2vHat+2/XcycuUY ++gn0oJMsXdKMdYV2ZZAMA3m3MSNjrXiDCYZohMr/+c8mmpJ5581LxedhpxfL86kSk5Nrp+gvU5LE +YFiwzAJRGFuFjWJZY7attN6a+yb3ACfAXVU3dJnJUH/jWS5E4ywl7uxMMne0nxrpS10gxdr9HIcW +xkPo1LsmmkVwXqkLN1PiRnsn/eBG8om3zEK2yygmbtmlyTrIQRNg91CMFa6ybRoVGld45pIq2WWQ +gj9sAq+uEjonljYE1x2igGOpm/HlurR8FLBOybEfdF849lHqm/osohHUqS0nGkWxr7JOcQ3AWEbW +aQbLU8uz/mtBzUF+fUwPfHJ5elnNXkoOrJupmHN5fLT0zLm4BwyydFy4x2+IoZCn9Kr5v2c69BoV +Yh63n749sSmvZ6ES8lgQGVMDMBu4Gon2nL2XA46jCfMdiyHxtN/kHNGfZQIG6lzWE7OE76KlXIx3 +KadowGuuQNKotOrN8I1LOJwZmhsoVLiJkO/KdYE+HvJkJMcYr07/R54H9jVlpNMKVv/1F2Rs76gi +JUmTtt8AF9pYfl3uxRuw0dFfIRDH+fO6AgonB8Xx1sfT4PsJYGw= +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert112.pem b/test/rules/platform_certs/default/cert112.pem new file mode 100644 index 000000000000..1254c66d4b3a --- /dev/null +++ b/test/rules/platform_certs/default/cert112.pem @@ -0,0 +1,11 @@ +Amazon Root CA 3 +-----BEGIN CERTIFICATE----- +MIIBtjCCAVugAwIBAgITBmyf1XSXNmY/Owua2eiedgPySjAKBggqhkjOPQQDAjA5MQswCQYDVQQG +EwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24gUm9vdCBDQSAzMB4XDTE1MDUy +NjAwMDAwMFoXDTQwMDUyNjAwMDAwMFowOTELMAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZ +MBcGA1UEAxMQQW1hem9uIFJvb3QgQ0EgMzBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCmXp8ZB +f8ANm+gBG1bG8lKlui2yEujSLtf6ycXYqm0fc4E7O5hrOXwzpcVOho6AF2hiRVd9RFgdszflZwjr +Zt6jQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBSrttvXBp43 +rDCGB5Fwx5zEGbF4wDAKBggqhkjOPQQDAgNJADBGAiEA4IWSoxe3jfkrBqWTrBqYaGFy+uGh0Psc +eGCmQ5nFuMQCIQCcAu/xlJyzlvnrxir4tiz+OpAUFteMYyRIHN8wfdVoOw== +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert113.pem b/test/rules/platform_certs/default/cert113.pem new file mode 100644 index 000000000000..5473fcd441b4 --- /dev/null +++ b/test/rules/platform_certs/default/cert113.pem @@ -0,0 +1,12 @@ +Amazon Root CA 4 +-----BEGIN CERTIFICATE----- +MIIB8jCCAXigAwIBAgITBmyf18G7EEwpQ+Vxe3ssyBrBDjAKBggqhkjOPQQDAzA5MQswCQYDVQQG +EwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24gUm9vdCBDQSA0MB4XDTE1MDUy +NjAwMDAwMFoXDTQwMDUyNjAwMDAwMFowOTELMAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZ +MBcGA1UEAxMQQW1hem9uIFJvb3QgQ0EgNDB2MBAGByqGSM49AgEGBSuBBAAiA2IABNKrijdPo1MN +/sGKe0uoe0ZLY7Bi9i0b2whxIdIA6GO9mif78DluXeo9pcmBqqNbIJhFXRbb/egQbeOc4OO9X4Ri +83BkM6DLJC9wuoihKqB1+IGuYgbEgds5bimwHvouXKNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNV +HQ8BAf8EBAMCAYYwHQYDVR0OBBYEFNPsxzplbszh2naaVvuc84ZtV+WBMAoGCCqGSM49BAMDA2gA +MGUCMDqLIfG9fhGt0O9Yli/W651+kI0rz2ZVwyzjKKlwCkcO8DdZEv8tmZQoTipPNU0zWgIxAOp1 +AE47xDqUEpHJWEadIRNyp4iciuRMStuW1KyLa2tJElMzrdfkviT8tQp21KW8EA== +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert114.pem b/test/rules/platform_certs/default/cert114.pem new file mode 100644 index 000000000000..95096f8043a7 --- /dev/null +++ b/test/rules/platform_certs/default/cert114.pem @@ -0,0 +1,29 @@ +LuxTrust Global Root 2 +-----BEGIN CERTIFICATE----- +MIIFwzCCA6ugAwIBAgIUCn6m30tEntpqJIWe5rgV0xZ/u7EwDQYJKoZIhvcNAQELBQAwRjELMAkG +A1UEBhMCTFUxFjAUBgNVBAoMDUx1eFRydXN0IFMuQS4xHzAdBgNVBAMMFkx1eFRydXN0IEdsb2Jh +bCBSb290IDIwHhcNMTUwMzA1MTMyMTU3WhcNMzUwMzA1MTMyMTU3WjBGMQswCQYDVQQGEwJMVTEW +MBQGA1UECgwNTHV4VHJ1c3QgUy5BLjEfMB0GA1UEAwwWTHV4VHJ1c3QgR2xvYmFsIFJvb3QgMjCC +AiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBANeFl78RmOnwYoNMPIf5U2o3C/IPPIfOb9wm +Kb3FibrJgz337spbxm1Jc7TJRqMbNBM/wYlFV/TZsfs2ZUv7COJIcRHIbjuend+JZTemhfY7RBi2 +xjcwYkSSl2l9QjAk5A0MiWtj3sXh306pFGxT4GHO9hcvHTy95iJMHZP1EMShduxq3sVs35a0VkBC +wGKSMKEtFZSg0iAGCW5qbeXrt77U8PEVfIvmTroTzEsnXpk8F12PgX8zPU/TPxvsXD/wPEx1bvKm +1Z3aLQdjAsZy6ZS8TEmVT4hSyNvoaYL4zDRbIvCGp4m9SAptZoFtyMhk+wHh9OHe2Z7d21vUKpkm +FRseTJIpgp7VkoGSQXAZ96Tlk0u8d2cx3Rz9MXANF5kM+Qw5GSoXtTBxVdUPrljhPS80m8+f9niF +wpN6cj5mj5wWEWCPnolvZ77gR1o7DJpni89Gxq44o/KnvObWhWszJHAiS8sIm7vI+AIpHb4gDEa/ +a4ebsypmQjVGbKq6rfmYe+lQVRQxv7HaLe2ArWgk+2mr2HETMOZns4dA/Yl+8kPREd8vZS9kzl8U +ubG/Mb2HeFpZZYiq/FkySIbWTLkpS5XTdvN3JW1CHDiDTf2jX5t/Lax5Gw5CMZdjpPuKadUiDTSQ +MC6otOBttpSsvItO13D8xTiOZCXhTTmQzsmHhFhxAgMBAAGjgagwgaUwDwYDVR0TAQH/BAUwAwEB +/zBCBgNVHSAEOzA5MDcGByuBKwEBAQowLDAqBggrBgEFBQcCARYeaHR0cHM6Ly9yZXBvc2l0b3J5 +Lmx1eHRydXN0Lmx1MA4GA1UdDwEB/wQEAwIBBjAfBgNVHSMEGDAWgBT/GCh2+UgFLKGu8SsbK7JT ++Et8szAdBgNVHQ4EFgQU/xgodvlIBSyhrvErGyuyU/hLfLMwDQYJKoZIhvcNAQELBQADggIBAGoZ +FO1uecEsh9QNcH7X9njJCwROxLHOk3D+sFTAMs2ZMGQXvw/l4jP9BzZAcg4atmpZ1gDlaCDdLnIN +H2pkMSCEfUmmWjfrRcmF9dTHF5kH5ptV5AzoqbTOjFu1EVzPig4N1qx3gf4ynCSecs5U89BvolbW +7MM3LGVYvlcAGvI1+ut7MV3CwRI9loGIlonBWVx65n9wNOeD4rHh4bhY79SV5GCc8JaXcozrhAIu +ZY+kt9J/Z93I055cqqmkoCUUBpvsT34tC38ddfEz2O3OuHVtPlu5mB0xDVbYQw8wkbIEa91WvpWA +VWe+2M2D2RjuLg+GLZKecBPs3lHJQ3gCpU3I+V/EkVhGFndadKpAvAefMLmx9xIX3eP/JEAdemrR +TxgKqpAd60Ae36EeRJIQmvKN4dFLRp7oRUKX6kWZ8+xm1QL68qZKJKrezrnK+T+Tb/mjuuqlPpmt +/f97mfVl7vBZKGfXkJWkE4SphMHozs51k2MavDzq1WQfLSoSOcbDWjLtR5EWDrw4wVDej8oqkDQc +7kGUnF4ZLvhFSZl0kbAEb+MEWrGrKqv+x9CWttrhSmQGbmBNvUJO/3jaJMobtNeWOWyu8Q6qp31I +iyBMz2TWuJdGsE7RKlY6oJO9r4Ak4Ap+58rVyuiFVdw2KuGUaJPHZnJED4AhMmwlxyOAgwrr +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert115.pem b/test/rules/platform_certs/default/cert115.pem new file mode 100644 index 000000000000..94a5b2da68f3 --- /dev/null +++ b/test/rules/platform_certs/default/cert115.pem @@ -0,0 +1,23 @@ +TUBITAK Kamu SM SSL Kok Sertifikasi - Surum 1 +-----BEGIN CERTIFICATE----- +MIIEYzCCA0ugAwIBAgIBATANBgkqhkiG9w0BAQsFADCB0jELMAkGA1UEBhMCVFIxGDAWBgNVBAcT +D0dlYnplIC0gS29jYWVsaTFCMEAGA1UEChM5VHVya2l5ZSBCaWxpbXNlbCB2ZSBUZWtub2xvamlr +IEFyYXN0aXJtYSBLdXJ1bXUgLSBUVUJJVEFLMS0wKwYDVQQLEyRLYW11IFNlcnRpZmlrYXN5b24g +TWVya2V6aSAtIEthbXUgU00xNjA0BgNVBAMTLVRVQklUQUsgS2FtdSBTTSBTU0wgS29rIFNlcnRp +ZmlrYXNpIC0gU3VydW0gMTAeFw0xMzExMjUwODI1NTVaFw00MzEwMjUwODI1NTVaMIHSMQswCQYD +VQQGEwJUUjEYMBYGA1UEBxMPR2ViemUgLSBLb2NhZWxpMUIwQAYDVQQKEzlUdXJraXllIEJpbGlt +c2VsIHZlIFRla25vbG9qaWsgQXJhc3Rpcm1hIEt1cnVtdSAtIFRVQklUQUsxLTArBgNVBAsTJEth +bXUgU2VydGlmaWthc3lvbiBNZXJrZXppIC0gS2FtdSBTTTE2MDQGA1UEAxMtVFVCSVRBSyBLYW11 +IFNNIFNTTCBLb2sgU2VydGlmaWthc2kgLSBTdXJ1bSAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A +MIIBCgKCAQEAr3UwM6q7a9OZLBI3hNmNe5eA027n/5tQlT6QlVZC1xl8JoSNkvoBHToP4mQ4t4y8 +6Ij5iySrLqP1N+RAjhgleYN1Hzv/bKjFxlb4tO2KRKOrbEz8HdDc72i9z+SqzvBV96I01INrN3wc +wv61A+xXzry0tcXtAA9TNypN9E8Mg/uGz8v+jE69h/mniyFXnHrfA2eJLJ2XYacQuFWQfw4tJzh0 +3+f92k4S400VIgLI4OD8D62K18lUUMw7D8oWgITQUVbDjlZ/iSIzL+aFCr2lqBs23tPcLG07xxO9 +WSMs5uWk99gL7eqQQESolbuT1dCANLZGeA4fAJNG4e7p+exPFwIDAQABo0IwQDAdBgNVHQ4EFgQU +ZT/HiobGPN08VFw1+DrtUgxHV8gwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJ +KoZIhvcNAQELBQADggEBACo/4fEyjq7hmFxLXs9rHmoJ0iKpEsdeV31zVmSAhHqT5Am5EM2fKifh +AHe+SMg1qIGf5LgsyX8OsNJLN13qudULXjS99HMpw+0mFZx+CFOKWI3QSyjfwbPfIPP54+M638yc +lNhOT8NrF7f3cuitZjO1JVOr4PhMqZ398g26rrnZqsZr+ZO7rqu4lzwDGrpDxpa5RXI4s6ehlj2R +e37AIVNMh+3yC1SVUZPVIqUNivGTDj5UDrDYyU7c8jEyVupk+eq1nRZmQnLzf9OxMUP8pI4X8W0j +q5Rm+K37DwhuJi1/FwcJsoz7UMCflo3Ptv0AnVoUmr8CRPXBwp8iXqIPoeM= +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert116.pem b/test/rules/platform_certs/default/cert116.pem new file mode 100644 index 000000000000..ecb51c9a3077 --- /dev/null +++ b/test/rules/platform_certs/default/cert116.pem @@ -0,0 +1,28 @@ +GDCA TrustAUTH R5 ROOT +-----BEGIN CERTIFICATE----- +MIIFiDCCA3CgAwIBAgIIfQmX/vBH6nowDQYJKoZIhvcNAQELBQAwYjELMAkGA1UEBhMCQ04xMjAw +BgNVBAoMKUdVQU5HIERPTkcgQ0VSVElGSUNBVEUgQVVUSE9SSVRZIENPLixMVEQuMR8wHQYDVQQD +DBZHRENBIFRydXN0QVVUSCBSNSBST09UMB4XDTE0MTEyNjA1MTMxNVoXDTQwMTIzMTE1NTk1OVow +YjELMAkGA1UEBhMCQ04xMjAwBgNVBAoMKUdVQU5HIERPTkcgQ0VSVElGSUNBVEUgQVVUSE9SSVRZ +IENPLixMVEQuMR8wHQYDVQQDDBZHRENBIFRydXN0QVVUSCBSNSBST09UMIICIjANBgkqhkiG9w0B +AQEFAAOCAg8AMIICCgKCAgEA2aMW8Mh0dHeb7zMNOwZ+Vfy1YI92hhJCfVZmPoiC7XJjDp6L3TQs +AlFRwxn9WVSEyfFrs0yw6ehGXTjGoqcuEVe6ghWinI9tsJlKCvLriXBjTnnEt1u9ol2x8kECK62p +OqPseQrsXzrj/e+APK00mxqriCZ7VqKChh/rNYmDf1+uKU49tm7srsHwJ5uu4/Ts765/94Y9cnrr +pftZTqfrlYwiOXnhLQiPzLyRuEH3FMEjqcOtmkVEs7LXLM3GKeJQEK5cy4KOFxg2fZfmiJqwTTQJ +9Cy5WmYqsBebnh52nUpmMUHfP/vFBu8btn4aRjb3ZGM74zkYI+dndRTVdVeSN72+ahsmUPI2JgaQ +xXABZG12ZuGR224HwGGALrIuL4xwp9E7PLOR5G62xDtw8mySlwnNR30YwPO7ng/Wi64HtloPzgsM +R6flPri9fcebNaBhlzpBdRfMK5Z3KpIhHtmVdiBnaM8Nvd/WHwlqmuLMc3GkL30SgLdTMEZeS1SZ +D2fJpcjyIMGC7J0R38IC+xo70e0gmu9lZJIQDSri3nDxGGeCjGHeuLzRL5z7D9Ar7Rt2ueQ5Vfj4 +oR24qoAATILnsn8JuLwwoC8N9VKejveSswoAHQBUlwbgsQfZxw9cZX08bVlX5O2ljelAU58VS6Bx +9hoh49pwBiFYFIeFd3mqgnkCAwEAAaNCMEAwHQYDVR0OBBYEFOLJQJ9NzuiaoXzPDj9lxSmIahlR +MA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3DQEBCwUAA4ICAQDRSVfg +p8xoWLoBDysZzY2wYUWsEe1jUGn4H3++Fo/9nesLqjJHdtJnJO29fDMylyrHBYZmDRd9FBUb1Ov9 +H5r2XpdptxolpAqzkT9fNqyL7FeoPueBihhXOYV0GkLH6VsTX4/5COmSdI31R9KrO9b7eGZONn35 +6ZLpBN79SWP8bfsUcZNnL0dKt7n/HipzcEYwv1ryL3ml4Y0M2fmyYzeMN2WFcGpcWwlyua1jPLHd ++PwyvzeG5LuOmCd+uh8W4XAR8gPfJWIyJyYYMoSf/wA6E7qaTfRPuBRwIrHKK5DOKcFw9C+df/KQ +HtZa37dG/OaG+svgIHZ6uqbL9XzeYqWxi+7egmaKTjowHz+Ay60nugxe19CxVsp3cbK1daFQqUBD +F8Io2c9Si1vIY9RCPqAzekYu9wogRlR+ak8x8YF+QnQ4ZXMn7sZ8uI7XpTrXmKGcjBBV09tL7ECQ +8s1uV9JiDnxXk7Gnbc2dg7sq5+W2O3FYrf3RRbxake5TFW/TRQl1brqQXR4EzzffHqhmsYzmIGrv +/EhOdJhCrylvLmrH+33RZjEizIYAfmaDDEL0vTSSwxrqT8p+ck0LcIymSLumoRT2+1hEmRSuqguT +aaApJUqlyyvdimYHFngVV3Eb7PVHhPOeMTd61X8kreS8/f3MboPoDKi3QWwH3b08hpcv0g== +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert117.pem b/test/rules/platform_certs/default/cert117.pem new file mode 100644 index 000000000000..20b597bbe847 --- /dev/null +++ b/test/rules/platform_certs/default/cert117.pem @@ -0,0 +1,22 @@ +TrustCor RootCert CA-1 +-----BEGIN CERTIFICATE----- +MIIEMDCCAxigAwIBAgIJANqb7HHzA7AZMA0GCSqGSIb3DQEBCwUAMIGkMQswCQYDVQQGEwJQQTEP +MA0GA1UECAwGUGFuYW1hMRQwEgYDVQQHDAtQYW5hbWEgQ2l0eTEkMCIGA1UECgwbVHJ1c3RDb3Ig +U3lzdGVtcyBTLiBkZSBSLkwuMScwJQYDVQQLDB5UcnVzdENvciBDZXJ0aWZpY2F0ZSBBdXRob3Jp +dHkxHzAdBgNVBAMMFlRydXN0Q29yIFJvb3RDZXJ0IENBLTEwHhcNMTYwMjA0MTIzMjE2WhcNMjkx +MjMxMTcyMzE2WjCBpDELMAkGA1UEBhMCUEExDzANBgNVBAgMBlBhbmFtYTEUMBIGA1UEBwwLUGFu +YW1hIENpdHkxJDAiBgNVBAoMG1RydXN0Q29yIFN5c3RlbXMgUy4gZGUgUi5MLjEnMCUGA1UECwwe +VHJ1c3RDb3IgQ2VydGlmaWNhdGUgQXV0aG9yaXR5MR8wHQYDVQQDDBZUcnVzdENvciBSb290Q2Vy +dCBDQS0xMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAv463leLCJhJrMxnHQFgKq1mq +jQCj/IDHUHuO1CAmujIS2CNUSSUQIpidRtLByZ5OGy4sDjjzGiVoHKZaBeYei0i/mJZ0PmnK6bV4 +pQa81QBeCQryJ3pS/C3Vseq0iWEk8xoT26nPUu0MJLq5nux+AHT6k61sKZKuUbS701e/s/OojZz0 +JEsq1pme9J7+wH5COucLlVPat2gOkEz7cD+PSiyU8ybdY2mplNgQTsVHCJCZGxdNuWxu72CVEY4h +gLW9oHPY0LJ3xEXqWib7ZnZ2+AYfYW0PVcWDtxBWcgYHpfOxGgMFZA6dWorWhnAbJN7+KIor0Gqw +/Hqi3LJ5DotlDwIDAQABo2MwYTAdBgNVHQ4EFgQU7mtJPHo/DeOxCbeKyKsZn3MzUOcwHwYDVR0j +BBgwFoAU7mtJPHo/DeOxCbeKyKsZn3MzUOcwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC +AYYwDQYJKoZIhvcNAQELBQADggEBACUY1JGPE+6PHh0RU9otRCkZoB5rMZ5NDp6tPVxBb5UrJKF5 +mDo4Nvu7Zp5I/5CQ7z3UuJu0h3U/IJvOcs+hVcFNZKIZBqEHMwwLKeXx6quj7LUKdJDHfXLy11yf +ke+Ri7fc7Waiz45mO7yfOgLgJ90WmMCV1Aqk5IGadZQ1nJBfiDcGrVmVCrDRZ9MZyonnMlo2HD6C +qFqTvsbQZJG2z9m2GM/bftJlo6bEjhcxwft+dtvTheNYsnd6djtsL1Ac59v2Z3kf9YKVmgenFK+P +3CghZwnS1k1aHBkcjndcw5QkPTJrS37UeJSDvjdNzl/HHk484IkzlQsPpTLWPFp5LBk= +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert118.pem b/test/rules/platform_certs/default/cert118.pem new file mode 100644 index 000000000000..8bf6d29369df --- /dev/null +++ b/test/rules/platform_certs/default/cert118.pem @@ -0,0 +1,31 @@ +TrustCor RootCert CA-2 +-----BEGIN CERTIFICATE----- +MIIGLzCCBBegAwIBAgIIJaHfyjPLWQIwDQYJKoZIhvcNAQELBQAwgaQxCzAJBgNVBAYTAlBBMQ8w +DQYDVQQIDAZQYW5hbWExFDASBgNVBAcMC1BhbmFtYSBDaXR5MSQwIgYDVQQKDBtUcnVzdENvciBT +eXN0ZW1zIFMuIGRlIFIuTC4xJzAlBgNVBAsMHlRydXN0Q29yIENlcnRpZmljYXRlIEF1dGhvcml0 +eTEfMB0GA1UEAwwWVHJ1c3RDb3IgUm9vdENlcnQgQ0EtMjAeFw0xNjAyMDQxMjMyMjNaFw0zNDEy +MzExNzI2MzlaMIGkMQswCQYDVQQGEwJQQTEPMA0GA1UECAwGUGFuYW1hMRQwEgYDVQQHDAtQYW5h +bWEgQ2l0eTEkMCIGA1UECgwbVHJ1c3RDb3IgU3lzdGVtcyBTLiBkZSBSLkwuMScwJQYDVQQLDB5U +cnVzdENvciBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkxHzAdBgNVBAMMFlRydXN0Q29yIFJvb3RDZXJ0 +IENBLTIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCnIG7CKqJiJJWQdsg4foDSq8Gb +ZQWU9MEKENUCrO2fk8eHyLAnK0IMPQo+QVqedd2NyuCb7GgypGmSaIwLgQ5WoD4a3SwlFIIvl9Nk +RvRUqdw6VC0xK5mC8tkq1+9xALgxpL56JAfDQiDyitSSBBtlVkxs1Pu2YVpHI7TYabS3OtB0PAx1 +oYxOdqHp2yqlO/rOsP9+aij9JxzIsekp8VduZLTQwRVtDr4uDkbIXvRR/u8OYzo7cbrPb1nKDOOb +XUm4TOJXsZiKQlecdu/vvdFoqNL0Cbt3Nb4lggjEFixEIFapRBF37120Hapeaz6LMvYHL1cEksr1 +/p3C6eizjkxLAjHZ5DxIgif3GIJ2SDpxsROhOdUuxTTCHWKF3wP+TfSvPd9cW436cOGlfifHhi5q +jxLGhF5DUVCcGZt45vz27Ud+ez1m7xMTiF88oWP7+ayHNZ/zgp6kPwqcMWmLmaSISo5uZk3vFsQP +eSghYA2FFn3XVDjxklb9tTNMg9zXEJ9L/cb4Qr26fHMC4P99zVvh1Kxhe1fVSntb1IVYJ12/+Ctg +rKAmrhQhJ8Z3mjOAPF5GP/fDsaOGM8boXg25NSyqRsGFAnWAoOsk+xWq5Gd/bnc/9ASKL3x74xdh +8N0JqSDIvgmk0H5Ew7IwSjiqqewYmgeCK9u4nBit2uBGF6zPXQIDAQABo2MwYTAdBgNVHQ4EFgQU +2f4hQG6UnrybPZx9mCAZ5YwwYrIwHwYDVR0jBBgwFoAU2f4hQG6UnrybPZx9mCAZ5YwwYrIwDwYD +VR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAYYwDQYJKoZIhvcNAQELBQADggIBAJ5Fngw7tu/h +Osh80QA9z+LqBrWyOrsGS2h60COXdKcs8AjYeVrXWoSK2BKaG9l9XE1wxaX5q+WjiYndAfrs3fnp +kpfbsEZC89NiqpX+MWcUaViQCqoL7jcjx1BRtPV+nuN79+TMQjItSQzL/0kMmx40/W5ulop5A7Zv +2wnL/V9lFDfhOPXzYRZY5LVtDQsEGz9QLX+zx3oaFoBg+Iof6Rsqxvm6ARppv9JYx1RXCI/hOWB3 +S6xZhBqI8d3LT3jX5+EzLfzuQfogsL7L9ziUwOHQhQ+77Sxzq+3+knYaZH9bDTMJBzN7Bj8RpFxw +PIXAz+OQqIN3+tvmxYxoZxBnpVIt8MSZj3+/0WvitUfW2dCFmU2Umw9Lje4AWkcdEQOsQRivh7dv +DDqPys/cA8GiCcjl/YBeyGBCARsaU1q7N6a3vLqE6R5sGtRk2tRD/pOLS/IseRYQ1JMLiI+h2IYU +RpFHmygk71dSTlxCnKr3Sewn6EAes6aJInKc9Q0ztFijMDvd1GpUk74aTfOTlPf8hAs/hCBcNANE +xdqtvArBAs8e5ZTZ845b2EzwnexhF7sUMlQMAimTHpKG9n/v55IFDlndmQguLvqcAFLTxWYp5KeX +RKQOKIETNcX2b2TmQcTVL8w0RSXPQQCWPUouwpaYT05KnJe32x+SMsj/D1Fu1uwJ +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert119.pem b/test/rules/platform_certs/default/cert119.pem new file mode 100644 index 000000000000..ca5310bb3093 --- /dev/null +++ b/test/rules/platform_certs/default/cert119.pem @@ -0,0 +1,22 @@ +TrustCor ECA-1 +-----BEGIN CERTIFICATE----- +MIIEIDCCAwigAwIBAgIJAISCLF8cYtBAMA0GCSqGSIb3DQEBCwUAMIGcMQswCQYDVQQGEwJQQTEP +MA0GA1UECAwGUGFuYW1hMRQwEgYDVQQHDAtQYW5hbWEgQ2l0eTEkMCIGA1UECgwbVHJ1c3RDb3Ig +U3lzdGVtcyBTLiBkZSBSLkwuMScwJQYDVQQLDB5UcnVzdENvciBDZXJ0aWZpY2F0ZSBBdXRob3Jp +dHkxFzAVBgNVBAMMDlRydXN0Q29yIEVDQS0xMB4XDTE2MDIwNDEyMzIzM1oXDTI5MTIzMTE3Mjgw +N1owgZwxCzAJBgNVBAYTAlBBMQ8wDQYDVQQIDAZQYW5hbWExFDASBgNVBAcMC1BhbmFtYSBDaXR5 +MSQwIgYDVQQKDBtUcnVzdENvciBTeXN0ZW1zIFMuIGRlIFIuTC4xJzAlBgNVBAsMHlRydXN0Q29y +IENlcnRpZmljYXRlIEF1dGhvcml0eTEXMBUGA1UEAwwOVHJ1c3RDb3IgRUNBLTEwggEiMA0GCSqG +SIb3DQEBAQUAA4IBDwAwggEKAoIBAQDPj+ARtZ+odnbb3w9U73NjKYKtR8aja+3+XzP4Q1HpGjOR +MRegdMTUpwHmspI+ap3tDvl0mEDTPwOABoJA6LHip1GnHYMma6ve+heRK9jGrB6xnhkB1Zem6g23 +xFUfJ3zSCNV2HykVh0A53ThFEXXQmqc04L/NyFIduUd+Dbi7xgz2c1cWWn5DkR9VOsZtRASqnKmc +p0yJF4OuowReUoCLHhIlERnXDH19MURB6tuvsBzvgdAsxZohmz3tQjtQJvLsznFhBmIhVE5/wZ0+ +fyCMgMsq2JdiyIMzkX2woloPV+g7zPIlstR8L+xNxqE6FXrntl019fZISjZFZtS6mFjBAgMBAAGj +YzBhMB0GA1UdDgQWBBREnkj1zG1I1KBLf/5ZJC+Dl5mahjAfBgNVHSMEGDAWgBREnkj1zG1I1KBL +f/5ZJC+Dl5mahjAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjANBgkqhkiG9w0BAQsF +AAOCAQEABT41XBVwm8nHc2FvcivUwo/yQ10CzsSUuZQRg2dd4mdsdXa/uwyqNsatR5Nj3B5+1t4u +/ukZMjgDfxT2AHMsWbEhBuH7rBiVDKP/mZb3Kyeb1STMHd3BOuCYRLDE5D53sXOpZCz2HAF8P11F +hcCF5yWPldwX8zyfGm6wyuMdKulMY/okYWLW2n62HGz1Ah3UKt1VkOsqEUc8Ll50soIipX1TH0Xs +J5F95yIW6MBoNtjG8U+ARDL54dHRHareqKucBK+tIA5kmE2la8BIWJZpTdwHjFGTot+fDz2LYLSC +jaoITmJF4PkL0uDgPFveXHEnJcLmA4GLEFPjx1WitJ/X5g== +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert120.pem b/test/rules/platform_certs/default/cert120.pem new file mode 100644 index 000000000000..333c225c5d8e --- /dev/null +++ b/test/rules/platform_certs/default/cert120.pem @@ -0,0 +1,30 @@ +SSL.com Root Certification Authority RSA +-----BEGIN CERTIFICATE----- +MIIF3TCCA8WgAwIBAgIIeyyb0xaAMpkwDQYJKoZIhvcNAQELBQAwfDELMAkGA1UEBhMCVVMxDjAM +BgNVBAgMBVRleGFzMRAwDgYDVQQHDAdIb3VzdG9uMRgwFgYDVQQKDA9TU0wgQ29ycG9yYXRpb24x +MTAvBgNVBAMMKFNTTC5jb20gUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSBSU0EwHhcNMTYw +MjEyMTczOTM5WhcNNDEwMjEyMTczOTM5WjB8MQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMx +EDAOBgNVBAcMB0hvdXN0b24xGDAWBgNVBAoMD1NTTCBDb3Jwb3JhdGlvbjExMC8GA1UEAwwoU1NM +LmNvbSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IFJTQTCCAiIwDQYJKoZIhvcNAQEBBQAD +ggIPADCCAgoCggIBAPkP3aMrfcvQKv7sZ4Wm5y4bunfh4/WvpOz6Sl2RxFdHaxh3a3by/ZPkPQ/C +Fp4LZsNWlJ4Xg4XOVu/yFv0AYvUiCVToZRdOQbngT0aXqhvIuG5iXmmxX9sqAn78bMrzQdjt0Oj8 +P2FI7bADFB0QDksZ4LtO7IZl/zbzXmcCC52GVWH9ejjt/uIZALdvoVBidXQ8oPrIJZK0bnoix/ge +oeOy3ZExqysdBP+lSgQ36YWkMyv94tZVNHwZpEpox7Ko07fKoZOI68GXvIz5HdkihCR0xwQ9aqkp +k8zruFvh/l8lqjRYyMEjVJ0bmBHDOJx+PYZspQ9AhnwC9FwCTyjLrnGfDzrIM/4RJTXq/LrFYD3Z +fBjVsqnTdXgDciLKOsMf7yzlLqn6niy2UUb9rwPW6mBo6oUWNmuF6R7As93EJNyAKoFBbZQ+yODJ +gUEAnl6/f8UImKIYLEJAs/lvOCdLToD0PYFH4Ih86hzOtXVcUS4cK38acijnALXRdMbX5J+tB5O2 +UzU1/Dfkw/ZdFr4hc96SCvigY2q8lpJqPvi8ZVWb3vUNiSYE/CUapiVpy8JtynziWV+XrOvvLsi8 +1xtZPCvM8hnIk2snYxnP/Okm+Mpxm3+T/jRnhE6Z6/yzeAkzcLpmpnbtG3PrGqUNxCITIJRWCk4s +bE6x/c+cCbqiM+2HAgMBAAGjYzBhMB0GA1UdDgQWBBTdBAkHovV6fVJTEpKV7jiAJQ2mWTAPBgNV +HRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFN0ECQei9Xp9UlMSkpXuOIAlDaZZMA4GA1UdDwEB/wQE +AwIBhjANBgkqhkiG9w0BAQsFAAOCAgEAIBgRlCn7Jp0cHh5wYfGVcpNxJK1ok1iOMq8bs3AD/CUr +dIWQPXhq9LmLpZc7tRiRux6n+UBbkflVma8eEdBcHadm47GUBwwyOabqG7B52B2ccETjit3E+ZUf +ijhDPwGFpUenPUayvOUiaPd7nNgsPgohyC0zrL/FgZkxdMF1ccW+sfAjRfSda/wZY52jvATGGAsl +u1OJD7OAUN5F7kR/q5R4ZJjT9ijdh9hwZXT7DrkT66cPYakylszeu+1jTBi7qUD3oFRuIIhxdRjq +erQ0cuAjJ3dctpDqhiVAq+8zD8ufgr6iIPv2tS0a5sKFsXQP+8hlAqRSAUfdSSLBv9jra6x+3uxj +MxW3IwiPxg+NQVrdjsW5j+VFP3jbutIbQLH+cU0/4IGiul607BXgk90IH37hVZkLId6Tngr75qNJ +vTYw/ud3sqB1l7UtgYgXZSD32pAAn8lSzDLKNXz1PQ/YK9f1JmzJBjSWFupwWRoyeXkLtoh/D1JI +Pb9s2KJELtFOt3JY04kTlf5Eq/jXixtunLwsoFvVagCvXzfh1foQC5ichucmj87w7G6KVwuA406y +wKBjYZC6VWg3dGq2ktufoYYitmUnDuy2n0Jg5GfCtdpBC8TTi2EbvPofkSvXRAdeuims2cXp71NI +WuuA8ShYIc2wBlX7Jz9TkHCpBB5XJ7k= +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert121.pem b/test/rules/platform_certs/default/cert121.pem new file mode 100644 index 000000000000..682d48f6dca1 --- /dev/null +++ b/test/rules/platform_certs/default/cert121.pem @@ -0,0 +1,15 @@ +SSL.com Root Certification Authority ECC +-----BEGIN CERTIFICATE----- +MIICjTCCAhSgAwIBAgIIdebfy8FoW6gwCgYIKoZIzj0EAwIwfDELMAkGA1UEBhMCVVMxDjAMBgNV +BAgMBVRleGFzMRAwDgYDVQQHDAdIb3VzdG9uMRgwFgYDVQQKDA9TU0wgQ29ycG9yYXRpb24xMTAv +BgNVBAMMKFNTTC5jb20gUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSBFQ0MwHhcNMTYwMjEy +MTgxNDAzWhcNNDEwMjEyMTgxNDAzWjB8MQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMxEDAO +BgNVBAcMB0hvdXN0b24xGDAWBgNVBAoMD1NTTCBDb3Jwb3JhdGlvbjExMC8GA1UEAwwoU1NMLmNv +bSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IEVDQzB2MBAGByqGSM49AgEGBSuBBAAiA2IA +BEVuqVDEpiM2nl8ojRfLliJkP9x6jh3MCLOicSS6jkm5BBtHllirLZXI7Z4INcgn64mMU1jrYor+ +8FsPazFSY0E7ic3s7LaNGdM0B9y7xgZ/wkWV7Mt/qCPgCemB+vNH06NjMGEwHQYDVR0OBBYEFILR +hXMw5zUE044CkvvlpNHEIejNMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUgtGFczDnNQTT +jgKS++Wk0cQh6M0wDgYDVR0PAQH/BAQDAgGGMAoGCCqGSM49BAMCA2cAMGQCMG/n61kRpGDPYbCW +e+0F+S8Tkdzt5fxQaxFGRrMcIQBiu77D5+jNB5n5DQtdcj7EqgIwH7y6C+IwJPt8bYBVCpk+gA0z +5Wajs6O7pdWLjwkspl1+4vAHCGht0nxpbl/f5Wpl +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert122.pem b/test/rules/platform_certs/default/cert122.pem new file mode 100644 index 000000000000..7ca1878bdb7e --- /dev/null +++ b/test/rules/platform_certs/default/cert122.pem @@ -0,0 +1,30 @@ +SSL.com EV Root Certification Authority RSA R2 +-----BEGIN CERTIFICATE----- +MIIF6zCCA9OgAwIBAgIIVrYpzTS8ePYwDQYJKoZIhvcNAQELBQAwgYIxCzAJBgNVBAYTAlVTMQ4w +DAYDVQQIDAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjEYMBYGA1UECgwPU1NMIENvcnBvcmF0aW9u +MTcwNQYDVQQDDC5TU0wuY29tIEVWIFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgUlNBIFIy +MB4XDTE3MDUzMTE4MTQzN1oXDTQyMDUzMDE4MTQzN1owgYIxCzAJBgNVBAYTAlVTMQ4wDAYDVQQI +DAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjEYMBYGA1UECgwPU1NMIENvcnBvcmF0aW9uMTcwNQYD +VQQDDC5TU0wuY29tIEVWIFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgUlNBIFIyMIICIjAN +BgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAjzZlQOHWTcDXtOlG2mvqM0fNTPl9fb69LT3w23jh +hqXZuglXaO1XPqDQCEGD5yhBJB/jchXQARr7XnAjssufOePPxU7Gkm0mxnu7s9onnQqG6YE3Bf7w +cXHswxzpY6IXFJ3vG2fThVUCAtZJycxa4bH3bzKfydQ7iEGonL3Lq9ttewkfokxykNorCPzPPFTO +Zw+oz12WGQvE43LrrdF9HSfvkusQv1vrO6/PgN3B0pYEW3p+pKk8OHakYo6gOV7qd89dAFmPZiw+ +B6KjBSYRaZfqhbcPlgtLyEDhULouisv3D5oi53+aNxPN8k0TayHRwMwi8qFG9kRpnMphNQcAb9Zh +CBHqurj26bNg5U257J8UZslXWNvNh2n4ioYSA0e/ZhN2rHd9NCSFg83XqpyQGp8hLH94t2S42Oim +9HizVcuE0jLEeK6jj2HdzghTreyI/BXkmg3mnxp3zkyPuBQVPWKchjgGAGYS5Fl2WlPAApiiECto +RHuOec4zSnaqW4EWG7WK2NAAe15itAnWhmMOpgWVSbooi4iTsjQc2KRVbrcc0N6ZVTsj9CLg+Slm +JuwgUHfbSguPvuUCYHBBXtSuUDkiFCbLsjtzdFVHB3mBOagwE0TlBIqulhMlQg+5U8Sb/M3kHN48 ++qvWBkofZ6aYMBzdLNvcGJVXZsb/XItW9XcCAwEAAaNjMGEwDwYDVR0TAQH/BAUwAwEB/zAfBgNV +HSMEGDAWgBT5YLvU49U09rj1BoAlp3PbRmmonjAdBgNVHQ4EFgQU+WC71OPVNPa49QaAJadz20Zp +qJ4wDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3DQEBCwUAA4ICAQBWs47LCp1Jjr+kxJG7ZhcFUZh1 +++VQLHqe8RT6q9OKPv+RKY9ji9i0qVQBDb6Thi/5Sm3HXvVX+cpVHBK+Rw82xd9qt9t1wkclf7nx +Y/hoLVUE0fKNsKTPvDxeH3jnpaAgcLAExbf3cqfeIg29MyVGjGSSJuM+LmOW2puMPfgYCdcDzH2G +guDKBAdRUNf/ktUM79qGn5nX67evaOI5JpS6aLe/g9Pqemc9YmeuJeVy6OLk7K4S9ksrPJ/psEDz +OFSz/bdoyNrGj1E8svuR3Bznm53htw1yj+KkxKl4+esUrMZDBcJlOSgYAsOCsp0FvmXtll9ldDz7 +CTUue5wT/RsPXcdtgTpWD8w74a8CLyKsRspGPKAcTNZEtF4uXBVmCeEmKf7GUmG6sXP/wwyc5Wxq +lD8UykAWlYTzWamsX0xhk23RO8yilQwipmdnRC652dKKQbNmC1r7fSOl8hqw/96bg5Qu0T/fkreR +rwU7ZcegbLHNYhLDkBvjJc40vG93drEQw/cFGsDWr3RiSBd3kmmQYRzelYB0VI8YHMPzA9C/pEN1 +hlMYegouCRw2n5H9gooiS9EOUCXdywMMF8mDAAhONU2Ki+3wApRmLER/y5UnlhetCTCstnEXbosX +9hwJ1C07mKVx01QT2WDz9UtmT/rx7iASjbSsV7FFY6GsdqnC+w== +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert123.pem b/test/rules/platform_certs/default/cert123.pem new file mode 100644 index 000000000000..d6148cd711c0 --- /dev/null +++ b/test/rules/platform_certs/default/cert123.pem @@ -0,0 +1,15 @@ +SSL.com EV Root Certification Authority ECC +-----BEGIN CERTIFICATE----- +MIIClDCCAhqgAwIBAgIILCmcWxbtBZUwCgYIKoZIzj0EAwIwfzELMAkGA1UEBhMCVVMxDjAMBgNV +BAgMBVRleGFzMRAwDgYDVQQHDAdIb3VzdG9uMRgwFgYDVQQKDA9TU0wgQ29ycG9yYXRpb24xNDAy +BgNVBAMMK1NTTC5jb20gRVYgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSBFQ0MwHhcNMTYw +MjEyMTgxNTIzWhcNNDEwMjEyMTgxNTIzWjB/MQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMx +EDAOBgNVBAcMB0hvdXN0b24xGDAWBgNVBAoMD1NTTCBDb3Jwb3JhdGlvbjE0MDIGA1UEAwwrU1NM +LmNvbSBFViBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IEVDQzB2MBAGByqGSM49AgEGBSuB +BAAiA2IABKoSR5CYG/vvw0AHgyBO8TCCogbR8pKGYfL2IWjKAMTH6kMAVIbc/R/fALhBYlzccBYy +3h+Z1MzFB8gIH2EWB1E9fVwHU+M1OIzfzZ/ZLg1KthkuWnBaBu2+8KGwytAJKaNjMGEwHQYDVR0O +BBYEFFvKXuXe0oGqzagtZFG22XKbl+ZPMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUW8pe +5d7SgarNqC1kUbbZcpuX5k8wDgYDVR0PAQH/BAQDAgGGMAoGCCqGSM49BAMCA2gAMGUCMQCK5kCJ +N+vp1RPZytRrJPOwPYdGWBrssd9v+1a6cGvHOMzosYxPD/fxZ3YOg9AeUY8CMD32IygmTMZgh5Mm +m7I1HrrW9zzRHM76JTymGoEVW/MSD2zuZYrJh6j5B+BimoxcSg== +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert124.pem b/test/rules/platform_certs/default/cert124.pem new file mode 100644 index 000000000000..d35f07211e31 --- /dev/null +++ b/test/rules/platform_certs/default/cert124.pem @@ -0,0 +1,28 @@ +GlobalSign Root CA - R6 +-----BEGIN CERTIFICATE----- +MIIFgzCCA2ugAwIBAgIORea7A4Mzw4VlSOb/RVEwDQYJKoZIhvcNAQEMBQAwTDEgMB4GA1UECxMX +R2xvYmFsU2lnbiBSb290IENBIC0gUjYxEzARBgNVBAoTCkdsb2JhbFNpZ24xEzARBgNVBAMTCkds +b2JhbFNpZ24wHhcNMTQxMjEwMDAwMDAwWhcNMzQxMjEwMDAwMDAwWjBMMSAwHgYDVQQLExdHbG9i +YWxTaWduIFJvb3QgQ0EgLSBSNjETMBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFs +U2lnbjCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAJUH6HPKZvnsFMp7PPcNCPG0RQss +grRIxutbPK6DuEGSMxSkb3/pKszGsIhrxbaJ0cay/xTOURQh7ErdG1rG1ofuTToVBu1kZguSgMpE +3nOUTvOniX9PeGMIyBJQbUJmL025eShNUhqKGoC3GYEOfsSKvGRMIRxDaNc9PIrFsmbVkJq3MQbF +vuJtMgamHvm566qjuL++gmNQ0PAYid/kD3n16qIfKtJwLnvnvJO7bVPiSHyMEAc4/2ayd2F+4OqM +PKq0pPbzlUoSB239jLKJz9CgYXfIWHSw1CM69106yqLbnQneXUQtkPGBzVeS+n68UARjNN9rkxi+ +azayOeSsJDa38O+2HBNXk7besvjihbdzorg1qkXy4J02oW9UivFyVm4uiMVRQkQVlO6jxTiWm05O +WgtH8wY2SXcwvHE35absIQh1/OZhFj931dmRl4QKbNQCTXTAFO39OfuD8l4UoQSwC+n+7o/hbguy +CLNhZglqsQY6ZZZZwPA1/cnaKI0aEYdwgQqomnUdnjqGBQCe24DWJfncBZ4nWUx2OVvq+aWh2IMP +0f/fMBH5hc8zSPXKbWQULHpYT9NLCEnFlWQaYw55PfWzjMpYrZxCRXluDocZXFSxZba/jJvcE+kN +b7gu3GduyYsRtYQUigAZcIN5kZeR1BonvzceMgfYFGM8KEyvAgMBAAGjYzBhMA4GA1UdDwEB/wQE +AwIBBjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBSubAWjkxPioufi1xzWx/B/yGdToDAfBgNV +HSMEGDAWgBSubAWjkxPioufi1xzWx/B/yGdToDANBgkqhkiG9w0BAQwFAAOCAgEAgyXt6NH9lVLN +nsAEoJFp5lzQhN7craJP6Ed41mWYqVuoPId8AorRbrcWc+ZfwFSY1XS+wc3iEZGtIxg93eFyRJa0 +lV7Ae46ZeBZDE1ZXs6KzO7V33EByrKPrmzU+sQghoefEQzd5Mr6155wsTLxDKZmOMNOsIeDjHfrY +BzN2VAAiKrlNIC5waNrlU/yDXNOd8v9EDERm8tLjvUYAGm0CuiVdjaExUd1URhxN25mW7xocBFym +Fe944Hn+Xds+qkxV/ZoVqW/hpvvfcDDpw+5CRu3CkwWJ+n1jez/QcYF8AOiYrg54NMMl+68KnyBr +3TsTjxKM4kEaSHpzoHdpx7Zcf4LIHv5YGygrqGytXm3ABdJ7t+uA/iU3/gKbaKxCXcPu9czc8FB1 +0jZpnOZ7BN9uBmm23goJSFmH63sUYHpkqmlD75HHTOwY3WzvUy2MmeFe8nI+z1TIvWfspA9MRf/T +uTAjB0yPEL+GltmZWrSZVxykzLsViVO6LAUP5MSeGbEYNNVMnbrt9x+vJJUEeKgDu+6B5dpffItK +oZB0JaezPkvILFa9x8jvOOJckvB595yEunQtYQEgfn7R8k8HWV+LLUNS60YMlOH1Zkd5d9VUWx+t +JDfLRVpOoERIyNiwmcUVhAn21klJwGW45hpxbqCo8YLoRT5s1gLXCmeDBVrJpBA= +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert125.pem b/test/rules/platform_certs/default/cert125.pem new file mode 100644 index 000000000000..53e930be20ca --- /dev/null +++ b/test/rules/platform_certs/default/cert125.pem @@ -0,0 +1,14 @@ +OISTE WISeKey Global Root GC CA +-----BEGIN CERTIFICATE----- +MIICaTCCAe+gAwIBAgIQISpWDK7aDKtARb8roi066jAKBggqhkjOPQQDAzBtMQswCQYDVQQGEwJD +SDEQMA4GA1UEChMHV0lTZUtleTEiMCAGA1UECxMZT0lTVEUgRm91bmRhdGlvbiBFbmRvcnNlZDEo +MCYGA1UEAxMfT0lTVEUgV0lTZUtleSBHbG9iYWwgUm9vdCBHQyBDQTAeFw0xNzA1MDkwOTQ4MzRa +Fw00MjA1MDkwOTU4MzNaMG0xCzAJBgNVBAYTAkNIMRAwDgYDVQQKEwdXSVNlS2V5MSIwIAYDVQQL +ExlPSVNURSBGb3VuZGF0aW9uIEVuZG9yc2VkMSgwJgYDVQQDEx9PSVNURSBXSVNlS2V5IEdsb2Jh +bCBSb290IEdDIENBMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAETOlQwMYPchi82PG6s4nieUqjFqdr +VCTbUf/q9Akkwwsin8tqJ4KBDdLArzHkdIJuyiXZjHWd8dvQmqJLIX4Wp2OQ0jnUsYd4XxiWD1Ab +NTcPasbc2RNNpI6QN+a9WzGRo1QwUjAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAd +BgNVHQ4EFgQUSIcUrOPDnpBgOtfKie7TrYy0UGYwEAYJKwYBBAGCNxUBBAMCAQAwCgYIKoZIzj0E +AwMDaAAwZQIwJsdpW9zV57LnyAyMjMPdeYwbY9XJUpROTYJKcx6ygISpJcBMWm1JKWB4E+J+SOtk +AjEA2zQgMgj/mkkCtojeFK9dbJlxjRo/i9fgojaGHAeCOnZT/cKi7e97sIBPWA9LUzm9 +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert126.pem b/test/rules/platform_certs/default/cert126.pem new file mode 100644 index 000000000000..e3bdabc17ee2 --- /dev/null +++ b/test/rules/platform_certs/default/cert126.pem @@ -0,0 +1,28 @@ +GTS Root R1 +-----BEGIN CERTIFICATE----- +MIIFWjCCA0KgAwIBAgIQbkepxUtHDA3sM9CJuRz04TANBgkqhkiG9w0BAQwFADBHMQswCQYDVQQG +EwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEUMBIGA1UEAxMLR1RTIFJv +b3QgUjEwHhcNMTYwNjIyMDAwMDAwWhcNMzYwNjIyMDAwMDAwWjBHMQswCQYDVQQGEwJVUzEiMCAG +A1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEUMBIGA1UEAxMLR1RTIFJvb3QgUjEwggIi +MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC2EQKLHuOhd5s73L+UPreVp0A8of2C+X0yBoJx +9vaMf/vo27xqLpeXo4xL+Sv2sfnOhB2x+cWX3u+58qPpvBKJXqeqUqv4IyfLpLGcY9vXmX7wCl7r +aKb0xlpHDU0QM+NOsROjyBhsS+z8CZDfnWQpJSMHobTSPS5g4M/SCYe7zUjwTcLCeoiKu7rPWRnW +r4+wB7CeMfGCwcDfLqZtbBkOtdh+JhpFAz2weaSUKK0PfyblqAj+lug8aJRT7oM6iCsVlgmy4HqM +LnXWnOunVmSPlk9orj2XwoSPwLxAwAtcvfaHszVsrBhQf4TgTM2S0yDpM7xSma8ytSmzJSq0SPly +4cpk9+aCEI3oncKKiPo4Zor8Y/kB+Xj9e1x3+naH+uzfsQ55lVe0vSbv1gHR6xYKu44LtcXFilWr +06zqkUspzBmkMiVOKvFlRNACzqrOSbTqn3yDsEB750Orp2yjj32JgfpMpf/VjsPOS+C12LOORc92 +wO1AK/1TD7Cn1TsNsYqiA94xrcx36m97PtbfkSIS5r762DL8EGMUUXLeXdYWk70paDPvOmbsB4om +3xPXV2V4J95eSRQAogB/mqghtqmxlbCluQ0WEdrHbEg8QOB+DVrNVjzRlwW5y0vtOUucxD/SVRNu +JLDWcfr0wbrM7Rv1/oFB2ACYPTrIrnqYNxgFlQIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYD +VR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQU5K8rJnEaK0gnhS9SZizv8IkTcT4wDQYJKoZIhvcNAQEM +BQADggIBADiWCu49tJYeX++dnAsznyvgyv3SjgofQXSlfKqE1OXyHuY3UjKcC9FhHb8owbZEKTV1 +d5iyfNm9dKyKaOOpMQkpAWBz40d8U6iQSifvS9efk+eCNs6aaAyC58/UEBZvXw6ZXPYfcX3v73sv +fuo21pdwCxXu11xWajOl40k4DLh9+42FpLFZXvRq4d2h9mREruZRgyFmxhE+885H7pwoHyXa/6xm +ld01D1zvICxi/ZG6qcz8WpyTgYMpl0p8WnK0OdC3d8t5/Wk6kjftbjhlRn7pYL15iJdfOBL07q9b +gsiG1eGZbYwE8na6SfZu6W0eX6DvJ4J2QPim01hcDyxC2kLGe4g0x8HYRZvBPsVhHdljUEn2NIVq +4BjFbkerQUIpm/ZgDdIx02OYI5NaAIFItO/Nis3Jz5nu2Z6qNuFoS3FJFDYoOj0dzpqPJeaAcWEr +tXvM+SUWgeExX6GjfhaknBZqlxi9dnKlC54dNuYvoS++cJEPqOba+MSSQGwlfnuzCdyyF62ARPBo +pY+Udf90WuioAnwMCeKpSwughQtiue+hMZL77/ZRBIls6Kl0obsXs7X9SQ98POyDGCBDTtWTurQ0 +sR8WNh8M5mQ5Fkzc4P4dyKliPUDqysU0ArSuiYgzNdwsE3PYJ/HQcu51OyLemGhmW/HGY0dVHLql +CFF1pkgl +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert127.pem b/test/rules/platform_certs/default/cert127.pem new file mode 100644 index 000000000000..ee03650a975a --- /dev/null +++ b/test/rules/platform_certs/default/cert127.pem @@ -0,0 +1,28 @@ +GTS Root R2 +-----BEGIN CERTIFICATE----- +MIIFWjCCA0KgAwIBAgIQbkepxlqz5yDFMJo/aFLybzANBgkqhkiG9w0BAQwFADBHMQswCQYDVQQG +EwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEUMBIGA1UEAxMLR1RTIFJv +b3QgUjIwHhcNMTYwNjIyMDAwMDAwWhcNMzYwNjIyMDAwMDAwWjBHMQswCQYDVQQGEwJVUzEiMCAG +A1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEUMBIGA1UEAxMLR1RTIFJvb3QgUjIwggIi +MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDO3v2m++zsFDQ8BwZabFn3GTXd98GdVarTzTuk +k3LvCvptnfbwhYBboUhSnznFt+4orO/LdmgUud+tAWyZH8QiHZ/+cnfgLFuv5AS/T3KgGjSY6Dlo +7JUle3ah5mm5hRm9iYz+re026nO8/4Piy33B0s5Ks40FnotJk9/BW9BuXvAuMC6C/Pq8tBcKSOWI +m8Wba96wyrQD8Nr0kLhlZPdcTK3ofmZemde4wj7I0BOdre7kRXuJVfeKH2JShBKzwkCX44ofR5Gm +dFrS+LFjKBC4swm4VndAoiaYecb+3yXuPuWgf9RhD1FLPD+M2uFwdNjCaKH5wQzpoeJ/u1U8dgbu +ak7MkogwTZq9TwtImoS1mKPV+3PBV2HdKFZ1E66HjucMUQkQdYhMvI35ezzUIkgfKtzra7tEscsz +cTJGr61K8YzodDqs5xoic4DSMPclQsciOzsSrZYuxsN2B6ogtzVJV+mSSeh2FnIxZyuWfoqjx5RW +Ir9qS34BIbIjMt/kmkRtWVtd9QCgHJvGeJeNkP+byKq0rxFROV7Z+2et1VsRnTKaG73Vululycsl +aVNVJ1zgyjbLiGH7HrfQy+4W+9OmTN6SpdTi3/UGVN4unUu0kzCqgc7dGtxRcw1PcOnlthYhGXmy +5okLdWTK1au8CcEYof/UVKGFPP0UJAOyh9OktwIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYD +VR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUu//KjiOfT5nK2+JopqUVJxce2Q4wDQYJKoZIhvcNAQEM +BQADggIBALZp8KZ3/p7uC4Gt4cCpx/k1HUCCq+YEtN/L9x0Pg/B+E02NjO7jMyLDOfxA325BS0JT +vhaI8dI4XsRomRyYUpOM52jtG2pzegVATX9lO9ZY8c6DR2Dj/5epnGB3GFW1fgiTz9D2PGcDFWEJ ++YF59exTpJ/JjwGLc8R3dtyDovUMSRqodt6Sm2T4syzFJ9MHwAiApJiS4wGWAqoC7o87xdFtCjMw +c3i5T1QWvwsHoaRc5svJXISPD+AVdyx+Jn7axEvbpxZ3B7DNdehyQtaVhJ2Gg/LkkM0JR9SLA3Da +WsYDQvTtN6LwG1BUSw7YhN4ZKJmBR64JGz9I0cNv4rBgF/XuIwKl2gBbbZCr7qLpGzvpx0QnRY5r +n/WkhLx3+WuXrD5RRaIRpsyF7gpo8j5QOHokYh4XIDdtak23CZvJ/KRY9bb7nE4Yu5UC56Gtmwfu +Nmsk0jmGwZODUNKBRqhfYlcsu2xkiAhu7xNUX90txGdj08+JN7+dIPT7eoOboB6BAFDC5AwiWVIQ +7UNWhwD4FFKnHYuTjKJNRn8nxnGbJN7k2oaLDX5rIMHAnuFl2GqjpuiFizoHCBy69Y9Vmhh1fuXs +gWbRIXOhNUQLgD1bnF5vKheW0YMjiGZt5obicDIvUiLnyOd/xCxgXS/Dr55FBcOEArf9LAhST4Ld +o/DUhgkC +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert128.pem b/test/rules/platform_certs/default/cert128.pem new file mode 100644 index 000000000000..41e3202bf72c --- /dev/null +++ b/test/rules/platform_certs/default/cert128.pem @@ -0,0 +1,13 @@ +GTS Root R3 +-----BEGIN CERTIFICATE----- +MIICDDCCAZGgAwIBAgIQbkepx2ypcyRAiQ8DVd2NHTAKBggqhkjOPQQDAzBHMQswCQYDVQQGEwJV +UzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEUMBIGA1UEAxMLR1RTIFJvb3Qg +UjMwHhcNMTYwNjIyMDAwMDAwWhcNMzYwNjIyMDAwMDAwWjBHMQswCQYDVQQGEwJVUzEiMCAGA1UE +ChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEUMBIGA1UEAxMLR1RTIFJvb3QgUjMwdjAQBgcq +hkjOPQIBBgUrgQQAIgNiAAQfTzOHMymKoYTey8chWEGJ6ladK0uFxh1MJ7x/JlFyb+Kf1qPKzEUU +Rout736GjOyxfi//qXGdGIRFBEFVbivqJn+7kAHjSxm65FSWRQmx1WyRRK2EE46ajA2ADDL24Cej +QjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBTB8Sa6oC2uhYHP +0/EqEr24Cmf9vDAKBggqhkjOPQQDAwNpADBmAjEAgFukfCPAlaUs3L6JbyO5o91lAFJekazInXJ0 +glMLfalAvWhgxeG4VDvBNhcl2MG9AjEAnjWSdIUlUfUk7GRSJFClH9voy8l27OyCbvWFGFPouOOa +KaqW04MjyaR7YbPMAuhd +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert129.pem b/test/rules/platform_certs/default/cert129.pem new file mode 100644 index 000000000000..18d2d1950a27 --- /dev/null +++ b/test/rules/platform_certs/default/cert129.pem @@ -0,0 +1,13 @@ +GTS Root R4 +-----BEGIN CERTIFICATE----- +MIICCjCCAZGgAwIBAgIQbkepyIuUtui7OyrYorLBmTAKBggqhkjOPQQDAzBHMQswCQYDVQQGEwJV +UzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEUMBIGA1UEAxMLR1RTIFJvb3Qg +UjQwHhcNMTYwNjIyMDAwMDAwWhcNMzYwNjIyMDAwMDAwWjBHMQswCQYDVQQGEwJVUzEiMCAGA1UE +ChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEUMBIGA1UEAxMLR1RTIFJvb3QgUjQwdjAQBgcq +hkjOPQIBBgUrgQQAIgNiAATzdHOnaItgrkO4NcWBMHtLSZ37wWHO5t5GvWvVYRg1rkDdc/eJkTBa +6zzuhXyiQHY7qca4R9gq55KRanPpsXI5nymfopjTX15YhmUPoYRlBtHci8nHc8iMai/lxKvRHYqj +QjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBSATNbrdP9JNqPV +2Py1PsVq8JQdjDAKBggqhkjOPQQDAwNnADBkAjBqUFJ0CMRw3J5QdCHojXohw0+WbhXRIjVhLfoI +N+4Zba3bssx9BzT1YBkstTTZbyACMANxsbqjYAuG7ZoIapVon+Kz4ZNkfF6Tpt95LY2F45TPI11x +zPKwTdb+mciUqXWi4w== +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert130.pem b/test/rules/platform_certs/default/cert130.pem new file mode 100644 index 000000000000..0dacc520e53a --- /dev/null +++ b/test/rules/platform_certs/default/cert130.pem @@ -0,0 +1,27 @@ +UCA Global G2 Root +-----BEGIN CERTIFICATE----- +MIIFRjCCAy6gAwIBAgIQXd+x2lqj7V2+WmUgZQOQ7zANBgkqhkiG9w0BAQsFADA9MQswCQYDVQQG +EwJDTjERMA8GA1UECgwIVW5pVHJ1c3QxGzAZBgNVBAMMElVDQSBHbG9iYWwgRzIgUm9vdDAeFw0x +NjAzMTEwMDAwMDBaFw00MDEyMzEwMDAwMDBaMD0xCzAJBgNVBAYTAkNOMREwDwYDVQQKDAhVbmlU +cnVzdDEbMBkGA1UEAwwSVUNBIEdsb2JhbCBHMiBSb290MIICIjANBgkqhkiG9w0BAQEFAAOCAg8A +MIICCgKCAgEAxeYrb3zvJgUno4Ek2m/LAfmZmqkywiKHYUGRO8vDaBsGxUypK8FnFyIdK+35KYmT +oni9kmugow2ifsqTs6bRjDXVdfkX9s9FxeV67HeToI8jrg4aA3++1NDtLnurRiNb/yzmVHqUwCoV +8MmNsHo7JOHXaOIxPAYzRrZUEaalLyJUKlgNAQLx+hVRZ2zA+te2G3/RVogvGjqNO7uCEeBHANBS +h6v7hn4PJGtAnTRnvI3HLYZveT6OqTwXS3+wmeOwcWDcC/Vkw85DvG1xudLeJ1uK6NjGruFZfc8o +LTW4lVYa8bJYS7cSN8h8s+1LgOGN+jIjtm+3SJUIsUROhYw6AlQgL9+/V087OpAh18EmNVQg7Mc/ +R+zvWr9LesGtOxdQXGLYD0tK3Cv6brxzks3sx1DoQZbXqX5t2Okdj4q1uViSukqSKwxW/YDrCPBe +KW4bHAyvj5OJrdu9o54hyokZ7N+1wxrrFv54NkzWbtA+FxyQF2smuvt6L78RHBgOLXMDj6DlNaBa +4kx1HXHhOThTeEDMg5PXCp6dW4+K5OXgSORIskfNTip1KnvyIvbJvgmRlld6iIis7nCs+dwp4wwc +OxJORNanTrAmyPPZGpeRaOrvjUYG0lZFWJo8DA+DuAUlwznPO6Q0ibd5Ei9Hxeepl2n8pndntd97 +8XplFeRhVmUCAwEAAaNCMEAwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0O +BBYEFIHEjMz15DD/pQwIX4wVZyF0Ad/fMA0GCSqGSIb3DQEBCwUAA4ICAQATZSL1jiutROTL/7lo +5sOASD0Ee/ojL3rtNtqyzm325p7lX1iPyzcyochltq44PTUbPrw7tgTQvPlJ9Zv3hcU2tsu8+Mg5 +1eRfB70VVJd0ysrtT7q6ZHafgbiERUlMjW+i67HM0cOU2kTC5uLqGOiiHycFutfl1qnN3e92mI0A +Ds0b+gO3joBYDic/UvuUospeZcnWhNq5NXHzJsBPd+aBJ9J3O5oUb3n09tDh05S60FdRvScFDcH9 +yBIw7m+NESsIndTUv4BFFJqIRNow6rSn4+7vW4LVPtateJLbXDzz2K36uGt/xDYotgIVilQsnLAX +c47QN6MUPJiVAAwpBVueSUmxX8fjy88nZY41F7dXyDDZQVu5FLbowg+UMaeUmMxq67XhJ/UQqAHo +jhJi6IjMtX9Gl8CbEGY4GjZGXyJoPd/JxhMnq1MGrKI8hgZlb7F+sSlEmqO6SWkoaY/X5V+tBIZk +bxqgDMUIYs6Ao9Dz7GjevjPHF1t/gMRMTLGmhIrDO7gJzRSBuhjjVFc2/tsvfEehOjPI+Vg7RE+x +ygKJBJYoaMVLuCaJu9YzL1DV/pqJuhgyklTGW+Cd+V7lDSKb9triyCGyYiGqhkCyLmTTX8jjfhFn +RR8F/uOi77Oos/N9j/gMHyIfLXC0uAE0djAA5SN4p1bXUB+K+wb1whnw0A== +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert131.pem b/test/rules/platform_certs/default/cert131.pem new file mode 100644 index 000000000000..b9ffb5d67f20 --- /dev/null +++ b/test/rules/platform_certs/default/cert131.pem @@ -0,0 +1,28 @@ +UCA Extended Validation Root +-----BEGIN CERTIFICATE----- +MIIFWjCCA0KgAwIBAgIQT9Irj/VkyDOeTzRYZiNwYDANBgkqhkiG9w0BAQsFADBHMQswCQYDVQQG +EwJDTjERMA8GA1UECgwIVW5pVHJ1c3QxJTAjBgNVBAMMHFVDQSBFeHRlbmRlZCBWYWxpZGF0aW9u +IFJvb3QwHhcNMTUwMzEzMDAwMDAwWhcNMzgxMjMxMDAwMDAwWjBHMQswCQYDVQQGEwJDTjERMA8G +A1UECgwIVW5pVHJ1c3QxJTAjBgNVBAMMHFVDQSBFeHRlbmRlZCBWYWxpZGF0aW9uIFJvb3QwggIi +MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCpCQcoEwKwmeBkqh5DFnpzsZGgdT6o+uM4AHrs +iWogD4vFsJszA1qGxliG1cGFu0/GnEBNyr7uaZa4rYEwmnySBesFK5pI0Lh2PpbIILvSsPGP2KxF +Rv+qZ2C0d35qHzwaUnoEPQc8hQ2E0B92CvdqFN9y4zR8V05WAT558aopO2z6+I9tTcg1367r3CTu +eUWnhbYFiN6IXSV8l2RnCdm/WhUFhvMJHuxYMjMR83dksHYf5BA1FxvyDrFspCqjc/wJHx4yGVMR +59mzLC52LqGj3n5qiAno8geK+LLNEOfic0CTuwjRP+H8C5SzJe98ptfRr5//lpr1kXuYC3fUfugH +0mK1lTnj8/FtDw5lhIpjVMWAtuCeS31HJqcBCF3RiJ7XwzJE+oJKCmhUfzhTA8ykADNkUVkLo4KR +el7sFsLzKuZi2irbWWIQJUoqgQtHB0MGcIfS+pMRKXpITeuUx3BNr2fVUbGAIAEBtHoIppB/TuDv +B0GHr2qlXov7z1CymlSvw4m6WC31MJixNnI5fkkE/SmnTHnkBVfblLkWU41Gsx2VYVdWf6/wFlth +WG82UBEL2KwrlRYaDh8IzTY0ZRBiZtWAXxQgXy0MoHgKaNYs1+lvK9JKBZP8nm9rZ/+I8U6laUpS +NwXqxhaN0sSZ0YIrO7o1dfdRUVjzyAfd5LQDfwIDAQABo0IwQDAdBgNVHQ4EFgQU2XQ65DA9DfcS +3H5aBZ8eNJr34RQwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAYYwDQYJKoZIhvcNAQEL +BQADggIBADaNl8xCFWQpN5smLNb7rhVpLGsaGvdftvkHTFnq88nIua7Mui563MD1sC3AO6+fcAUR +ap8lTwEpcOPlDOHqWnzcSbvBHiqB9RZLcpHIojG5qtr8nR/zXUACE/xOHAbKsxSQVBcZEhrxH9cM +aVr2cXj0lH2RC47skFSOvG+hTKv8dGT9cZr4QQehzZHkPJrgmzI5c6sq1WnIeJEmMX3ixzDx/BR4 +dxIOE/TdFpS/S2d7cFOFyrC78zhNLJA5wA3CXWvp4uXViI3WLL+rG761KIcSF3Ru/H38j9CHJrAb ++7lsq+KePRXBOy5nAliRn+/4Qh8st2j1da3Ptfb/EX3C8CSlrdP6oDyp+l3cpaDvRKS+1ujl5BOW +F3sGPjLtx7dCvHaj2GU4Kzg1USEODm8uNBNA4StnDG1KQTAYI1oyVZnJF+A83vbsea0rWBmirSwi +GpWOvpaQXUJXxPkUAzUrHC1RVwinOt4/5Mi0A3PCwSaAuwtCH60NryZy2sy+s6ODWA2CxR9GUeOc +GMyNm43sSet1UNWMKFnKdDTajAshqx7qG+XH/RU+wBeq+yNuJkbL+vmxcmtpzyKEC2IPrNkZAJSi +djzULZrtBJ4tBmIQN1IchXIbJ+XMxjHsN+xjWZsLHXbMfjKaiJUINlK73nZfdklJrX+9ZSCyycEr +dhh2n1ax +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert132.pem b/test/rules/platform_certs/default/cert132.pem new file mode 100644 index 000000000000..fcfc4e9327b0 --- /dev/null +++ b/test/rules/platform_certs/default/cert132.pem @@ -0,0 +1,32 @@ +Certigna Root CA +-----BEGIN CERTIFICATE----- +MIIGWzCCBEOgAwIBAgIRAMrpG4nxVQMNo+ZBbcTjpuEwDQYJKoZIhvcNAQELBQAwWjELMAkGA1UE +BhMCRlIxEjAQBgNVBAoMCURoaW15b3RpczEcMBoGA1UECwwTMDAwMiA0ODE0NjMwODEwMDAzNjEZ +MBcGA1UEAwwQQ2VydGlnbmEgUm9vdCBDQTAeFw0xMzEwMDEwODMyMjdaFw0zMzEwMDEwODMyMjda +MFoxCzAJBgNVBAYTAkZSMRIwEAYDVQQKDAlEaGlteW90aXMxHDAaBgNVBAsMEzAwMDIgNDgxNDYz +MDgxMDAwMzYxGTAXBgNVBAMMEENlcnRpZ25hIFJvb3QgQ0EwggIiMA0GCSqGSIb3DQEBAQUAA4IC +DwAwggIKAoICAQDNGDllGlmx6mQWDoyUJJV8g9PFOSbcDO8WV43X2KyjQn+Cyu3NW9sOty3tRQgX +stmzy9YXUnIo245Onoq2C/mehJpNdt4iKVzSs9IGPjA5qXSjklYcoW9MCiBtnyN6tMbaLOQdLNyz +KNAT8kxOAkmhVECe5uUFoC2EyP+YbNDrihqECB63aCPuI9Vwzm1RaRDuoXrC0SIxwoKF0vJVdlB8 +JXrJhFwLrN1CTivngqIkicuQstDuI7pmTLtipPlTWmR7fJj6o0ieD5Wupxj0auwuA0Wv8HT4Ks16 +XdG+RCYyKfHx9WzMfgIhC59vpD++nVPiz32pLHxYGpfhPTc3GGYo0kDFUYqMwy3OU4gkWGQwFsWq +4NYKpkDfePb1BHxpE4S80dGnBs8B92jAqFe7OmGtBIyT46388NtEbVncSVmurJqZNjBBe3YzIoej +wpKGbvlw7q6Hh5UbxHq9MfPU0uWZ/75I7HX1eBYdpnDBfzwboZL7z8g81sWTCo/1VTp2lc5ZmIoJ +lXcymoO6LAQ6l73UL77XbJuiyn1tJslV1c/DeVIICZkHJC1kJWumIWmbat10TWuXekG9qxf5kBdI +jzb5LdXF2+6qhUVB+s06RbFo5jZMm5BX7CO5hwjCxAnxl4YqKE3idMDaxIzb3+KhF1nOJFl0Mdp/ +/TBt2dzhauH8XwIDAQABo4IBGjCCARYwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYw +HQYDVR0OBBYEFBiHVuBud+4kNTxOc5of1uHieX4rMB8GA1UdIwQYMBaAFBiHVuBud+4kNTxOc5of +1uHieX4rMEQGA1UdIAQ9MDswOQYEVR0gADAxMC8GCCsGAQUFBwIBFiNodHRwczovL3d3d3cuY2Vy +dGlnbmEuZnIvYXV0b3JpdGVzLzBtBgNVHR8EZjBkMC+gLaArhilodHRwOi8vY3JsLmNlcnRpZ25h +LmZyL2NlcnRpZ25hcm9vdGNhLmNybDAxoC+gLYYraHR0cDovL2NybC5kaGlteW90aXMuY29tL2Nl +cnRpZ25hcm9vdGNhLmNybDANBgkqhkiG9w0BAQsFAAOCAgEAlLieT/DjlQgi581oQfccVdV8AOIt +OoldaDgvUSILSo3L6btdPrtcPbEo/uRTVRPPoZAbAh1fZkYJMyjhDSSXcNMQH+pkV5a7XdrnxIxP +TGRGHVyH41neQtGbqH6mid2PHMkwgu07nM3A6RngatgCdTer9zQoKJHyBApPNeNgJgH60BGM+RFq +7q89w1DTj18zeTyGqHNFkIwgtnJzFyO+B2XleJINugHA64wcZr+shncBlA2c5uk5jR+mUYyZDDl3 +4bSb+hxnV29qao6pK0xXeXpXIs/NX2NGjVxZOob4Mkdio2cNGJHc+6Zr9UhhcyNZjgKnvETq9Emd +8VRY+WCv2hikLyhF3HqgiIZd8zvn/yk1gPxkQ5Tm4xxvvq0OKmOZK8l+hfZx6AYDlf7ej0gcWtSS +6Cvu5zHbugRqh5jnxV/vfaci9wHYTfmJ0A6aBVmknpjZbyvKcL5kwlWj9Omvw5Ip3IgWJJk8jSaY +tlu3zM63Nwf9JtmYhST/WSMDmu2dnajkXjjO11INb9I/bbEFa0nOipFGc/T2L/Coc3cOZayhjWZS +aX5LaAzHHjcng6WMxwLkFM1JAbBzs/3GkDpv0mztO+7skb6iQ12LAEpmJURw3kAP+HwV96LOPNde +E4yBFxgX0b3xdxA61GU5wSesVywlVP+i2k+KYTlerj1KjL0= +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert133.pem b/test/rules/platform_certs/default/cert133.pem new file mode 100644 index 000000000000..056b4b067423 --- /dev/null +++ b/test/rules/platform_certs/default/cert133.pem @@ -0,0 +1,20 @@ +emSign Root CA - G1 +-----BEGIN CERTIFICATE----- +MIIDlDCCAnygAwIBAgIKMfXkYgxsWO3W2DANBgkqhkiG9w0BAQsFADBnMQswCQYDVQQGEwJJTjET +MBEGA1UECxMKZW1TaWduIFBLSTElMCMGA1UEChMcZU11ZGhyYSBUZWNobm9sb2dpZXMgTGltaXRl +ZDEcMBoGA1UEAxMTZW1TaWduIFJvb3QgQ0EgLSBHMTAeFw0xODAyMTgxODMwMDBaFw00MzAyMTgx +ODMwMDBaMGcxCzAJBgNVBAYTAklOMRMwEQYDVQQLEwplbVNpZ24gUEtJMSUwIwYDVQQKExxlTXVk +aHJhIFRlY2hub2xvZ2llcyBMaW1pdGVkMRwwGgYDVQQDExNlbVNpZ24gUm9vdCBDQSAtIEcxMIIB +IjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAk0u76WaK7p1b1TST0Bsew+eeuGQzf2N4aLTN +LnF115sgxk0pvLZoYIr3IZpWNVrzdr3YzZr/k1ZLpVkGoZM0Kd0WNHVO8oG0x5ZOrRkVUkr+PHB1 +cM2vK6sVmjM8qrOLqs1D/fXqcP/tzxE7lM5OMhbTI0Aqd7OvPAEsbO2ZLIvZTmmYsvePQbAyeGHW +DV/D+qJAkh1cF+ZwPjXnorfCYuKrpDhMtTk1b+oDafo6VGiFbdbyL0NVHpENDtjVaqSW0RM8LHhQ +6DqS0hdW5TUaQBw+jSztOd9C4INBdN+jzcKGYEho42kLVACL5HZpIQ15TjQIXhTCzLG3rdd8cIrH +hQIDAQABo0IwQDAdBgNVHQ4EFgQU++8Nhp6w492pufEhF38+/PB3KxowDgYDVR0PAQH/BAQDAgEG +MA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQELBQADggEBAFn/8oz1h31xPaOfG1vR2vjTnGs2 +vZupYeveFix0PZ7mddrXuqe8QhfnPZHr5X3dPpzxz5KsbEjMwiI/aTvFthUvozXGaCocV685743Q +NcMYDHsAVhzNixl03r4PEuDQqqE/AjSxcM6dGNYIAwlG7mDgfrbESQRRfXBgvKqy/3lyeqYdPV8q ++Mri/Tm3R7nrft8EI6/6nAYH6ftjk4BAtcZsCjEozgyfz7MjNYBBjWzEN3uBL4ChQEKF6dk4jeih +U80Bv2noWgbyRQuQ+q7hv53yrlc8pa6yVvSLZUDp/TGBLPQ5Cdjua6e0ph0VpZj3AYHYhX3zUVxx +iN66zB+Afko= +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert134.pem b/test/rules/platform_certs/default/cert134.pem new file mode 100644 index 000000000000..c43a67b50c25 --- /dev/null +++ b/test/rules/platform_certs/default/cert134.pem @@ -0,0 +1,14 @@ +emSign ECC Root CA - G3 +-----BEGIN CERTIFICATE----- +MIICTjCCAdOgAwIBAgIKPPYHqWhwDtqLhDAKBggqhkjOPQQDAzBrMQswCQYDVQQGEwJJTjETMBEG +A1UECxMKZW1TaWduIFBLSTElMCMGA1UEChMcZU11ZGhyYSBUZWNobm9sb2dpZXMgTGltaXRlZDEg +MB4GA1UEAxMXZW1TaWduIEVDQyBSb290IENBIC0gRzMwHhcNMTgwMjE4MTgzMDAwWhcNNDMwMjE4 +MTgzMDAwWjBrMQswCQYDVQQGEwJJTjETMBEGA1UECxMKZW1TaWduIFBLSTElMCMGA1UEChMcZU11 +ZGhyYSBUZWNobm9sb2dpZXMgTGltaXRlZDEgMB4GA1UEAxMXZW1TaWduIEVDQyBSb290IENBIC0g +RzMwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQjpQy4LRL1KPOxst3iAhKAnjlfSU2fySU0WXTsuwYc +58Byr+iuL+FBVIcUqEqy6HyC5ltqtdyzdc6LBtCGI79G1Y4PPwT01xySfvalY8L1X44uT6EYGQIr +MgqCZH0Wk9GjQjBAMB0GA1UdDgQWBBR8XQKEE9TMipuBzhccLikenEhjQjAOBgNVHQ8BAf8EBAMC +AQYwDwYDVR0TAQH/BAUwAwEB/zAKBggqhkjOPQQDAwNpADBmAjEAvvNhzwIQHWSVB7gYboiFBS+D +CBeQyh+KTOgNG3qxrdWBCUfvO6wIBHxcmbHtRwfSAjEAnbpV/KlK6O3t5nYBQnvI+GDZjVGLVTv7 +jHvrZQnD+JbNR6iC8hZVdyR+EhCVBCyj +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert135.pem b/test/rules/platform_certs/default/cert135.pem new file mode 100644 index 000000000000..04179a44bf1f --- /dev/null +++ b/test/rules/platform_certs/default/cert135.pem @@ -0,0 +1,19 @@ +emSign Root CA - C1 +-----BEGIN CERTIFICATE----- +MIIDczCCAlugAwIBAgILAK7PALrEzzL4Q7IwDQYJKoZIhvcNAQELBQAwVjELMAkGA1UEBhMCVVMx +EzARBgNVBAsTCmVtU2lnbiBQS0kxFDASBgNVBAoTC2VNdWRocmEgSW5jMRwwGgYDVQQDExNlbVNp +Z24gUm9vdCBDQSAtIEMxMB4XDTE4MDIxODE4MzAwMFoXDTQzMDIxODE4MzAwMFowVjELMAkGA1UE +BhMCVVMxEzARBgNVBAsTCmVtU2lnbiBQS0kxFDASBgNVBAoTC2VNdWRocmEgSW5jMRwwGgYDVQQD +ExNlbVNpZ24gUm9vdCBDQSAtIEMxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAz+up +ufGZBczYKCFK83M0UYRWEPWgTywS4/oTmifQz/l5GnRfHXk5/Fv4cI7gklL35CX5VIPZHdPIWoU/ +Xse2B+4+wM6ar6xWQio5JXDWv7V7Nq2s9nPczdcdioOl+yuQFTdrHCZH3DspVpNqs8FqOp099cGX +OFgFixwR4+S0uF2FHYP+eF8LRWgYSKVGczQ7/g/IdrvHGPMF0Ybzhe3nudkyrVWIzqa2kbBPrH4V +I5b2P/AgNBbeCsbEBEV5f6f9vtKppa+cxSMq9zwhbL2vj07FOrLzNBL834AaSaTUqZX3noleooms +lMuoaJuvimUnzYnu3Yy1aylwQ6BpC+S5DwIDAQABo0IwQDAdBgNVHQ4EFgQU/qHgcB4qAzlSWkK+ +XJGFehiqTbUwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQELBQAD +ggEBAMJKVvoVIXsoounlHfv4LcQ5lkFMOycsxGwYFYDGrK9HWS8mC+M2sO87/kOXSTKZEhVb3xEp +/6tT+LvBeA+snFOvV71ojD1pM/CjoCNjO2RnIkSt1XHLVip4kqNPEjE2NuLe/gDEo2APJ62gsIq1 +NnpSob0n9CAnYuhNlCQT5AoE6TyrLshDCUrGYQTlSTR+08TI9Q/Aqum6VF7zYytPT1DU/rl7mYw9 +wC68AivTxEDkigcxHpvOJpkT+xHqmiIMERnHXhuBUDDIlhJu58tBf5E7oke3VIAb3ADMmpDqw8NQ +BmIMMMAVSKeoWXzhriKi4gp6D/piq1JM4fHfyr6DDUI= +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert136.pem b/test/rules/platform_certs/default/cert136.pem new file mode 100644 index 000000000000..5d185a78a22c --- /dev/null +++ b/test/rules/platform_certs/default/cert136.pem @@ -0,0 +1,13 @@ +emSign ECC Root CA - C3 +-----BEGIN CERTIFICATE----- +MIICKzCCAbGgAwIBAgIKe3G2gla4EnycqDAKBggqhkjOPQQDAzBaMQswCQYDVQQGEwJVUzETMBEG +A1UECxMKZW1TaWduIFBLSTEUMBIGA1UEChMLZU11ZGhyYSBJbmMxIDAeBgNVBAMTF2VtU2lnbiBF +Q0MgUm9vdCBDQSAtIEMzMB4XDTE4MDIxODE4MzAwMFoXDTQzMDIxODE4MzAwMFowWjELMAkGA1UE +BhMCVVMxEzARBgNVBAsTCmVtU2lnbiBQS0kxFDASBgNVBAoTC2VNdWRocmEgSW5jMSAwHgYDVQQD +ExdlbVNpZ24gRUNDIFJvb3QgQ0EgLSBDMzB2MBAGByqGSM49AgEGBSuBBAAiA2IABP2lYa57JhAd +6bciMK4G9IGzsUJxlTm801Ljr6/58pc1kjZGDoeVjbk5Wum739D+yAdBPLtVb4OjavtisIGJAnB9 +SMVK4+kiVCJNk7tCDK93nCOmfddhEc5lx/h//vXyqaNCMEAwHQYDVR0OBBYEFPtaSNCAIEDyqOkA +B2kZd6fmw/TPMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MAoGCCqGSM49BAMDA2gA +MGUCMQC02C8Cif22TGK6Q04ThHK1rt0c3ta13FaPWEBaLd4gTCKDypOofu4SQMfWh0/434UCMBwU +ZOR8loMRnLDRWmFLpg9J0wD8ofzkpf9/rdcw0Md3f76BB1UwUCAU9Vc4CqgxUQ== +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert137.pem b/test/rules/platform_certs/default/cert137.pem new file mode 100644 index 000000000000..e2132d1d4b14 --- /dev/null +++ b/test/rules/platform_certs/default/cert137.pem @@ -0,0 +1,30 @@ +Hongkong Post Root CA 3 +-----BEGIN CERTIFICATE----- +MIIFzzCCA7egAwIBAgIUCBZfikyl7ADJk0DfxMauI7gcWqQwDQYJKoZIhvcNAQELBQAwbzELMAkG +A1UEBhMCSEsxEjAQBgNVBAgTCUhvbmcgS29uZzESMBAGA1UEBxMJSG9uZyBLb25nMRYwFAYDVQQK +Ew1Ib25na29uZyBQb3N0MSAwHgYDVQQDExdIb25na29uZyBQb3N0IFJvb3QgQ0EgMzAeFw0xNzA2 +MDMwMjI5NDZaFw00MjA2MDMwMjI5NDZaMG8xCzAJBgNVBAYTAkhLMRIwEAYDVQQIEwlIb25nIEtv +bmcxEjAQBgNVBAcTCUhvbmcgS29uZzEWMBQGA1UEChMNSG9uZ2tvbmcgUG9zdDEgMB4GA1UEAxMX +SG9uZ2tvbmcgUG9zdCBSb290IENBIDMwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCz +iNfqzg8gTr7m1gNt7ln8wlffKWihgw4+aMdoWJwcYEuJQwy51BWy7sFOdem1p+/l6TWZ5Mwc50tf +jTMwIDNT2aa71T4Tjukfh0mtUC1Qyhi+AViiE3CWu4mIVoBc+L0sPOFMV4i707mV78vH9toxdCim +5lSJ9UExyuUmGs2C4HDaOym71QP1mbpV9WTRYA6ziUm4ii8F0oRFKHyPaFASePwLtVPLwpgchKOe +sL4jpNrcyCse2m5FHomY2vkALgbpDDtw1VAliJnLzXNg99X/NWfFobxeq81KuEXryGgeDQ0URhLj +0mRiikKYvLTGCAj4/ahMZJx2Ab0vqWwzD9g/KLg8aQFChn5pwckGyuV6RmXpwtZQQS4/t+TtbNe/ +JgERohYpSms0BpDsE9K2+2p20jzt8NYt3eEV7KObLyzJPivkaTv/ciWxNoZbx39ri1UbSsUgYT2u +y1DhCDq+sI9jQVMwCFk8mB13umOResoQUGC/8Ne8lYePl8X+l2oBlKN8W4UdKjk60FSh0Tlxnf0h ++bV78OLgAo9uliQlLKAeLKjEiafv7ZkGL7YKTE/bosw3Gq9HhS2KX8Q0NEwA/RiTZxPRN+ZItIsG +xVd7GYYKecsAyVKvQv83j+GjHno9UKtjBucVtT+2RTeUN7F+8kjDf8V1/peNRY8apxpyKBpADwID +AQABo2MwYTAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAfBgNVHSMEGDAWgBQXnc0e +i9Y5K3DTXNSguB+wAPzFYTAdBgNVHQ4EFgQUF53NHovWOStw01zUoLgfsAD8xWEwDQYJKoZIhvcN +AQELBQADggIBAFbVe27mIgHSQpsY1Q7XZiNc4/6gx5LS6ZStS6LG7BJ8dNVI0lkUmcDrudHr9Egw +W62nV3OZqdPlt9EuWSRY3GguLmLYauRwCy0gUCCkMpXRAJi70/33MvJJrsZ64Ee+bs7Lo3I6LWld +y8joRTnU+kLBEUx3XZL7av9YROXrgZ6voJmtvqkBZss4HTzfQx/0TW60uhdG/H39h4F5ag0zD/ov ++BS5gLNdTaqX4fnkGMX41TiMJjz98iji7lpJiCzfeT2OnpA8vUFKOt1b9pq0zj8lMH8yfaIDlNDc +eqFS3m6TjRgm/VWsvY+b0s+v54Ysyx8Jb6NvqYTUc79NoXQbTiNg8swOqn+knEwlqLJmOzj/2ZQw +9nKEvmhVEA/GcywWaZMH/rFF7buiVWqw2rVKAiUnhde3t4ZEFolsgCs+l6mc1X5VTMbeRRAc6uk7 +nwNT7u56AQIWeNTowr5GdogTPyK7SBIdUgC0An4hGh6cJfTzPV4e0hz5sy229zdcxsshTrD3mUcY +hcErulWuBurQB7Lcq9CClnXO0lD+mefPL5/ndtFhKvshuzHQqp9HpLIiyhY6UFfEW0NnxWViA0kB +60PZ2Pierc+xYw5F9KBaLJstxabArahH9CdMOA0uG0k7UvToiIMrVCjU8jVStDKDYmlkDJGcn5fq +dBb9HxEGmpv0 +-----END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cert138.pem b/test/rules/platform_certs/default/cert138.pem new file mode 100644 index 000000000000..85ace10ff735 --- /dev/null +++ b/test/rules/platform_certs/default/cert138.pem @@ -0,0 +1,33 @@ +Entrust Root Certification Authority - G4 +-----BEGIN CERTIFICATE----- +MIIGSzCCBDOgAwIBAgIRANm1Q3+vqTkPAAAAAFVlrVgwDQYJKoZIhvcNAQELBQAwgb4xCzAJBgNV +BAYTAlVTMRYwFAYDVQQKEw1FbnRydXN0LCBJbmMuMSgwJgYDVQQLEx9TZWUgd3d3LmVudHJ1c3Qu +bmV0L2xlZ2FsLXRlcm1zMTkwNwYDVQQLEzAoYykgMjAxNSBFbnRydXN0LCBJbmMuIC0gZm9yIGF1 +dGhvcml6ZWQgdXNlIG9ubHkxMjAwBgNVBAMTKUVudHJ1c3QgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1 +dGhvcml0eSAtIEc0MB4XDTE1MDUyNzExMTExNloXDTM3MTIyNzExNDExNlowgb4xCzAJBgNVBAYT +AlVTMRYwFAYDVQQKEw1FbnRydXN0LCBJbmMuMSgwJgYDVQQLEx9TZWUgd3d3LmVudHJ1c3QubmV0 +L2xlZ2FsLXRlcm1zMTkwNwYDVQQLEzAoYykgMjAxNSBFbnRydXN0LCBJbmMuIC0gZm9yIGF1dGhv +cml6ZWQgdXNlIG9ubHkxMjAwBgNVBAMTKUVudHJ1c3QgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhv +cml0eSAtIEc0MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAsewsQu7i0TD/pZJH4i3D +umSXbcr3DbVZwbPLqGgZ2K+EbTBwXX7zLtJTmeH+H17ZSK9dE43b/2MzTdMAArzE+NEGCJR5WIoV +3imz/f3ET+iq4qA7ec2/a0My3dl0ELn39GjUu9CH1apLiipvKgS1sqbHoHrmSKvS0VnM1n4j5pds +8ELl3FFLFUHtSUrJ3hCX1nbB76W1NhSXNdh4IjVS70O92yfbYVaCNNzLiGAMC1rlLAHGVK/XqsEQ +e9IFWrhAnoanw5CGAlZSCXqc0ieCU0plUmr1POeo8pyvi73TDtTUXm6Hnmo9RR3RXRv06QqsYJn7 +ibT/mCzPfB3pAqoEmh643IhuJbNsZvc8kPNXwbMv9W3y+8qh+CmdRouzavbmZwe+LGcKKh9asj5X +xNMhIWNlUpEbsZmOeX7m640A2Vqq6nPopIICR5b+W45UYaPrL0swsIsjdXJ8ITzI9vF01Bx7owVV +7rtNOzK+mndmnqxpkCIHH2E6lr7lmk/MBTwoWdPBDFSoWWG9yHJM6Nyfh3+9nEg2XpWjDrk4JFX8 +dWbrAuMINClKxuMrLzOg2qOGpRKX/YAr2hRC45K9PvJdXmd0LhyIRyk0X+IyqJwlN4y6mACXi0mW +Hv0liqzc2thddG5msP9E36EYxr5ILzeUePiVSj9/E15dWf10hkNjc0kCAwEAAaNCMEAwDwYDVR0T +AQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFJ84xFYjwznooHFs6FRM5Og6sb9n +MA0GCSqGSIb3DQEBCwUAA4ICAQAS5UKme4sPDORGpbZgQIeMJX6tuGguW8ZAdjwD+MlZ9POrYs4Q +jbRaZIxowLByQzTSGwv2LFPSypBLhmb8qoMi9IsabyZIrHZ3CL/FmFz0Jomee8O5ZDIBf9PD3Vht +7LGrhFV0d4QEJ1JrhkzO3bll/9bGXp+aEJlLdWr+aumXIOTkdnrG0CSqkM0gkLpHZPt/B7NTeLUK +YvJzQ85BK4FqLoUWlFPUa19yIqtRLULVAJyZv967lDtX/Zr1hstWO1uIAeV8KEsD+UmDfLJ/fOPt +jqF/YFOOVZ1QNBIPt5d7bIdKROf1beyAN/BYGW5KaHbwH5Lk6rWS02FREAutp9lfx1/cH6NcjKF+ +m7ee01ZvZl4HliDtC3T7Zk6LERXpgUl+b7DUUH8i119lAg2m9IUe2K4GS0qn0jFmwvjO5QimpAKW +RGhXxNUzzxkvFMSUHHuk2fCfDrGA4tGeEWSpiBE6doLlYsKA2KSD7ZPvfC+QsDJMlhVoSFLUmQjA +JOgc47OlIQ6SwJAfzyBfyjs4x7dtOvPmRLgOMWuIjnDrnBdSqEGULoe256YSxXXfW8AKbnuk5F6G ++TaU33fD6Q3AOfF5u0aOq0NZJ7cguyPpVkAh7DE9ZapD8j3fcEThuk0mEDuYn/PIjhs4ViFqUZPT +kcpG2om3PVODLAgfi49T3f+sHw== +-----END CERTIFICATE----- + diff --git a/test/rules/platform_certs/default/certSIGNROOTCA.crt b/test/rules/platform_certs/default/certSIGNROOTCA.crt deleted file mode 100644 index d77443cc89d7..000000000000 --- a/test/rules/platform_certs/default/certSIGNROOTCA.crt +++ /dev/null @@ -1,20 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIDODCCAiCgAwIBAgIGIAYFFnACMA0GCSqGSIb3DQEBBQUAMDsxCzAJBgNVBAYT -AlJPMREwDwYDVQQKEwhjZXJ0U0lHTjEZMBcGA1UECxMQY2VydFNJR04gUk9PVCBD -QTAeFw0wNjA3MDQxNzIwMDRaFw0zMTA3MDQxNzIwMDRaMDsxCzAJBgNVBAYTAlJP -MREwDwYDVQQKEwhjZXJ0U0lHTjEZMBcGA1UECxMQY2VydFNJR04gUk9PVCBDQTCC -ASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALczuX7IJUqOtdu0KBuqV5Do -0SLTZLrTk+jUrIZhQGpgV2hUhE28alQCBf/fm5oqrl0Hj0rDKH/v+yv6efHHrfAQ -UySQi2bJqIirr1qjAOm+ukbuW3N7LBeCgV5iLKECZbO9xSsAfsT8AzNXDe3i+s5d -RdY4zTW2ssHQnIFKquSyAVwdj1+ZxLGt24gh65AIgoDzMKND5pCCrlUoSe1b16kQ -OA7+j0xbm0bqQfWwCHTD0IgztnzXdN/chNFDDnU5oSVAKOp4yw4sLjmdjItuFhwv -JoIQ4uNllAoEwF73XVv4EOLQunpL+943AAAaWyjj0pxzPjKHmKHJUS/X3qwzs08C -AwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAcYwHQYDVR0O -BBYEFOCMm9slSbPxfIbWskKHC9BroNnkMA0GCSqGSIb3DQEBBQUAA4IBAQA+0hyJ -LjX8+HXd5n9liPRyTMks1zJO890ZeUe9jjtbkw9QSSQTaxQGcu8J06Gh40CEyecY -MnQ8SG4Pn0vU9x7Tk4ZkVJdjclDVVc/6IJMCopvDI5NOFlV2oHB5bc0hH88vLbwZ -44gx+FkagQnIl6Z0x2DEW8xXjrJ1/RsCCdtZb3KTafcxQdaIOL+Hsr0Wefmq5L6I -Jd1hJyMctTEHBDa0GpC9oHRxUIltvBTjD4au8as+x6AJzKNI0eDbZOeStc+vckNw -i/nDhDwTqn6Sm1dTk/pwwpEOMfmbZ13pljheX7NzTogVZ96edhBiIL5VaZVDADlN -9u6wWk5JRFRYX0KD ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/cf701eeb.0 b/test/rules/platform_certs/default/cf701eeb.0 new file mode 120000 index 000000000000..997960c9a6fd --- /dev/null +++ b/test/rules/platform_certs/default/cf701eeb.0 @@ -0,0 +1 @@ +cert030.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/d06393bb.0 b/test/rules/platform_certs/default/d06393bb.0 new file mode 120000 index 000000000000..68c876e8ea1b --- /dev/null +++ b/test/rules/platform_certs/default/d06393bb.0 @@ -0,0 +1 @@ +cert081.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/d0cddf45.0 b/test/rules/platform_certs/default/d0cddf45.0 new file mode 120000 index 000000000000..09d377c2dbdf --- /dev/null +++ b/test/rules/platform_certs/default/d0cddf45.0 @@ -0,0 +1 @@ +cert118.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/d16a5865.0 b/test/rules/platform_certs/default/d16a5865.0 new file mode 120000 index 000000000000..caeacfb82a92 --- /dev/null +++ b/test/rules/platform_certs/default/d16a5865.0 @@ -0,0 +1 @@ +cert052.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/d18e9066.0 b/test/rules/platform_certs/default/d18e9066.0 new file mode 120000 index 000000000000..d30fd61516a0 --- /dev/null +++ b/test/rules/platform_certs/default/d18e9066.0 @@ -0,0 +1 @@ +cert098.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/d41b5e2a.0 b/test/rules/platform_certs/default/d41b5e2a.0 new file mode 120000 index 000000000000..e6f2f7d1094b --- /dev/null +++ b/test/rules/platform_certs/default/d41b5e2a.0 @@ -0,0 +1 @@ +cert113.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/d4c339cb.0 b/test/rules/platform_certs/default/d4c339cb.0 new file mode 120000 index 000000000000..3f93be5f29e1 --- /dev/null +++ b/test/rules/platform_certs/default/d4c339cb.0 @@ -0,0 +1 @@ +cert091.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/d4dae3dd.0 b/test/rules/platform_certs/default/d4dae3dd.0 new file mode 120000 index 000000000000..b6fe338c1eae --- /dev/null +++ b/test/rules/platform_certs/default/d4dae3dd.0 @@ -0,0 +1 @@ +cert075.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/d59297b8.0 b/test/rules/platform_certs/default/d59297b8.0 new file mode 120000 index 000000000000..90c574c79ffc --- /dev/null +++ b/test/rules/platform_certs/default/d59297b8.0 @@ -0,0 +1 @@ +cert065.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/d6325660.0 b/test/rules/platform_certs/default/d6325660.0 new file mode 120000 index 000000000000..3f93be5f29e1 --- /dev/null +++ b/test/rules/platform_certs/default/d6325660.0 @@ -0,0 +1 @@ +cert091.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/d7746a63.0 b/test/rules/platform_certs/default/d7746a63.0 new file mode 120000 index 000000000000..b6fe338c1eae --- /dev/null +++ b/test/rules/platform_certs/default/d7746a63.0 @@ -0,0 +1 @@ +cert075.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/d7e8dc79.0 b/test/rules/platform_certs/default/d7e8dc79.0 new file mode 120000 index 000000000000..9d25f0e60cb0 --- /dev/null +++ b/test/rules/platform_certs/default/d7e8dc79.0 @@ -0,0 +1 @@ +cert013.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/d853d49e.0 b/test/rules/platform_certs/default/d853d49e.0 new file mode 120000 index 000000000000..077461e29492 --- /dev/null +++ b/test/rules/platform_certs/default/d853d49e.0 @@ -0,0 +1 @@ +cert069.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/da7377f6.0 b/test/rules/platform_certs/default/da7377f6.0 new file mode 120000 index 000000000000..68fd619a62a8 --- /dev/null +++ b/test/rules/platform_certs/default/da7377f6.0 @@ -0,0 +1 @@ +cert131.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/dbc54cab.0 b/test/rules/platform_certs/default/dbc54cab.0 new file mode 120000 index 000000000000..78c8c289bffe --- /dev/null +++ b/test/rules/platform_certs/default/dbc54cab.0 @@ -0,0 +1 @@ +cert061.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/dbff3a01.0 b/test/rules/platform_certs/default/dbff3a01.0 new file mode 120000 index 000000000000..c64998b14fa3 --- /dev/null +++ b/test/rules/platform_certs/default/dbff3a01.0 @@ -0,0 +1 @@ +cert135.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/dc4d6a89.0 b/test/rules/platform_certs/default/dc4d6a89.0 new file mode 120000 index 000000000000..4d3818fc7c3e --- /dev/null +++ b/test/rules/platform_certs/default/dc4d6a89.0 @@ -0,0 +1 @@ +cert124.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/dc99f41e.0 b/test/rules/platform_certs/default/dc99f41e.0 new file mode 120000 index 000000000000..ad1a2c9e4e96 --- /dev/null +++ b/test/rules/platform_certs/default/dc99f41e.0 @@ -0,0 +1 @@ +cert106.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/dd8e9d41.0 b/test/rules/platform_certs/default/dd8e9d41.0 new file mode 120000 index 000000000000..125e20d7689f --- /dev/null +++ b/test/rules/platform_certs/default/dd8e9d41.0 @@ -0,0 +1 @@ +cert089.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/de6d66f3.0 b/test/rules/platform_certs/default/de6d66f3.0 new file mode 120000 index 000000000000..e6f2f7d1094b --- /dev/null +++ b/test/rules/platform_certs/default/de6d66f3.0 @@ -0,0 +1 @@ +cert113.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/def36a68.0 b/test/rules/platform_certs/default/def36a68.0 new file mode 120000 index 000000000000..8270bf0a9083 --- /dev/null +++ b/test/rules/platform_certs/default/def36a68.0 @@ -0,0 +1 @@ +cert114.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/dfc0fe80.0 b/test/rules/platform_certs/default/dfc0fe80.0 new file mode 120000 index 000000000000..412847d766b1 --- /dev/null +++ b/test/rules/platform_certs/default/dfc0fe80.0 @@ -0,0 +1 @@ +cert103.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/e113c810.0 b/test/rules/platform_certs/default/e113c810.0 new file mode 120000 index 000000000000..80aa69139189 --- /dev/null +++ b/test/rules/platform_certs/default/e113c810.0 @@ -0,0 +1 @@ +cert036.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/e18bfb83.0 b/test/rules/platform_certs/default/e18bfb83.0 new file mode 120000 index 000000000000..b03c490c2905 --- /dev/null +++ b/test/rules/platform_certs/default/e18bfb83.0 @@ -0,0 +1 @@ +cert085.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/e2799e36.0 b/test/rules/platform_certs/default/e2799e36.0 new file mode 120000 index 000000000000..ae5698946b79 --- /dev/null +++ b/test/rules/platform_certs/default/e2799e36.0 @@ -0,0 +1 @@ +cert040.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/e36a6752.0 b/test/rules/platform_certs/default/e36a6752.0 new file mode 120000 index 000000000000..ff9922e53b2d --- /dev/null +++ b/test/rules/platform_certs/default/e36a6752.0 @@ -0,0 +1 @@ +cert082.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/e442e424.0 b/test/rules/platform_certs/default/e442e424.0 new file mode 120000 index 000000000000..b03c490c2905 --- /dev/null +++ b/test/rules/platform_certs/default/e442e424.0 @@ -0,0 +1 @@ +cert085.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/e48193cf.0 b/test/rules/platform_certs/default/e48193cf.0 new file mode 120000 index 000000000000..fa7fca3f2ea3 --- /dev/null +++ b/test/rules/platform_certs/default/e48193cf.0 @@ -0,0 +1 @@ +cert059.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/e73d606e.0 b/test/rules/platform_certs/default/e73d606e.0 new file mode 120000 index 000000000000..412847d766b1 --- /dev/null +++ b/test/rules/platform_certs/default/e73d606e.0 @@ -0,0 +1 @@ +cert103.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/e775ed2d.0 b/test/rules/platform_certs/default/e775ed2d.0 new file mode 120000 index 000000000000..bc0f98e93038 --- /dev/null +++ b/test/rules/platform_certs/default/e775ed2d.0 @@ -0,0 +1 @@ +cert009.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/e8651083.0 b/test/rules/platform_certs/default/e8651083.0 new file mode 120000 index 000000000000..f8a471e0b6e2 --- /dev/null +++ b/test/rules/platform_certs/default/e8651083.0 @@ -0,0 +1 @@ +cert050.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/e8de2f56.0 b/test/rules/platform_certs/default/e8de2f56.0 new file mode 120000 index 000000000000..234aa2b2c2cc --- /dev/null +++ b/test/rules/platform_certs/default/e8de2f56.0 @@ -0,0 +1 @@ +cert071.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/ePKIRootCertificationAuthority.crt b/test/rules/platform_certs/default/ePKIRootCertificationAuthority.crt deleted file mode 100644 index ebfb5451c342..000000000000 --- a/test/rules/platform_certs/default/ePKIRootCertificationAuthority.crt +++ /dev/null @@ -1,33 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIFsDCCA5igAwIBAgIQFci9ZUdcr7iXAF7kBtK8nTANBgkqhkiG9w0BAQUFADBe -MQswCQYDVQQGEwJUVzEjMCEGA1UECgwaQ2h1bmdod2EgVGVsZWNvbSBDby4sIEx0 -ZC4xKjAoBgNVBAsMIWVQS0kgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAe -Fw0wNDEyMjAwMjMxMjdaFw0zNDEyMjAwMjMxMjdaMF4xCzAJBgNVBAYTAlRXMSMw -IQYDVQQKDBpDaHVuZ2h3YSBUZWxlY29tIENvLiwgTHRkLjEqMCgGA1UECwwhZVBL -SSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIICIjANBgkqhkiG9w0BAQEF -AAOCAg8AMIICCgKCAgEA4SUP7o3biDN1Z82tH306Tm2d0y8U82N0ywEhajfqhFAH -SyZbCUNsIZ5qyNUD9WBpj8zwIuQf5/dqIjG3LBXy4P4AakP/h2XGtRrBp0xtInAh -ijHyl3SJCRImHJ7K2RKilTza6We/CKBk49ZCt0Xvl/T29de1ShUCWH2YWEtgvM3X -DZoTM1PRYfl61dd4s5oz9wCGzh1NlDivqOx4UXCKXBCDUSH3ET00hl7lSM2XgYI1 -TBnsZfZrxQWh7kcT1rMhJ5QQCtkkO7q+RBNGMD+XPNjX12ruOzjjK9SXDrkb5wdJ -fzcq+Xd4z1TtW0ado4AOkUPB1ltfFLqfpo0kR0BZv3I4sjZsN/+Z0V0OWQqraffA -sgRFelQArr5T9rXn4fg8ozHSqf4hUmTFpmfwdQcGlBSBVcYn5AGPF8Fqcde+S/uU -WH1+ETOxQvdibBjWzwloPn9s9h6PYq2lY9sJpx8iQkEeb5mKPtf5P0B6ebClAZLS -nT0IFaUQAS2zMnaolQ2zepr7BxB4EW/hj8e6DyUadCrlHJhBmd8hh+iVBmoKs2pH -dmX2Os+PYhcZewoozRrSgx4hxyy/vv9haLdnG7t4TY3OZ+XkwY63I2binZB1NJip -NiuKmpS5nezMirH4JYlcWrYvjB9teSSnUmjDhDXiZo1jDiVN1Rmy5nk3pyKdVDEC -AwEAAaNqMGgwHQYDVR0OBBYEFB4M97Zn8uGSJglFwFU5Lnc/QkqiMAwGA1UdEwQF -MAMBAf8wOQYEZyoHAAQxMC8wLQIBADAJBgUrDgMCGgUAMAcGBWcqAwAABBRFsMLH -ClZ87lt4DJX5GFPBphzYEDANBgkqhkiG9w0BAQUFAAOCAgEACbODU1kBPpVJufGB -uvl2ICO1J2B01GqZNF5sAFPZn/KmsSQHRGoqxqWOeBLoR9lYGxMqXnmbnwoqZ6Yl -PwZpVnPDimZI+ymBV3QGypzqKOg4ZyYr8dW1P2WT+DZdjo2NQCCHGervJ8A9tDkP -JXtoUHRVnAxZfVo9QZQlUgjgRywVMRnVvwdVxrsStZf0X4OFunHB2WyBEXYKCrC/ -gpf36j36+uwtqSiUO1bd0lEursC9CBWMd1I0ltabrNMdjmEPNXubrjlpC2JgQCA2 -j6/7Nu4tCEoduL+bXPjqpRugc6bY+G7gMwRfaKonh+3ZwZCc7b3jajWvY9+rGNm6 -5ulK6lCKD2GTHuItGeIwlDWSXQ62B68ZgI9HkFFLLk3dheLSClIKF5r8GrBQAuUB -o2M3IUxExJtRmREOc5wGj1QupyheRDmHVi03vYVElOEMSyycw5KFNGHLD7ibSkNS -/jQ6fbjpKdx2qcgw+BRxgMYeNkh0IkFch4LoGHGLQYlE535YW6i4jRPpp2zDR+2z -Gp1iro2C6pSe3VkQw63d4k3jMdXH7OjysP6SHhYKGvzZ8/gntsm+HbRsZJB/9OTE -W9c3rkIO3aQab3yIVMUWbuF6aC74Or8NpDyJO3inTmODBCEIZ43ygknQW/2xzQ+D -hNQ+IIX3Sj0rnP0qCglN6oH4EZw= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/ed39abd0.0 b/test/rules/platform_certs/default/ed39abd0.0 new file mode 120000 index 000000000000..125e20d7689f --- /dev/null +++ b/test/rules/platform_certs/default/ed39abd0.0 @@ -0,0 +1 @@ +cert089.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/ee64a828.0 b/test/rules/platform_certs/default/ee64a828.0 new file mode 120000 index 000000000000..f3d65f9515d0 --- /dev/null +++ b/test/rules/platform_certs/default/ee64a828.0 @@ -0,0 +1 @@ +cert011.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/eed8c118.0 b/test/rules/platform_certs/default/eed8c118.0 new file mode 120000 index 000000000000..cc53c2682802 --- /dev/null +++ b/test/rules/platform_certs/default/eed8c118.0 @@ -0,0 +1 @@ +cert034.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/ef954a4e.0 b/test/rules/platform_certs/default/ef954a4e.0 new file mode 120000 index 000000000000..d30fd61516a0 --- /dev/null +++ b/test/rules/platform_certs/default/ef954a4e.0 @@ -0,0 +1 @@ +cert098.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/f013ecaf.0 b/test/rules/platform_certs/default/f013ecaf.0 new file mode 120000 index 000000000000..4cb45c9ec0e0 --- /dev/null +++ b/test/rules/platform_certs/default/f013ecaf.0 @@ -0,0 +1 @@ +cert126.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/f081611a.0 b/test/rules/platform_certs/default/f081611a.0 new file mode 120000 index 000000000000..a5914a9ae27a --- /dev/null +++ b/test/rules/platform_certs/default/f081611a.0 @@ -0,0 +1 @@ +cert018.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/f0c70a8d.0 b/test/rules/platform_certs/default/f0c70a8d.0 new file mode 120000 index 000000000000..8e03fa2ac01b --- /dev/null +++ b/test/rules/platform_certs/default/f0c70a8d.0 @@ -0,0 +1 @@ +cert123.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/f0cd152c.0 b/test/rules/platform_certs/default/f0cd152c.0 new file mode 120000 index 000000000000..b02322a14ba4 --- /dev/null +++ b/test/rules/platform_certs/default/f0cd152c.0 @@ -0,0 +1 @@ +cert138.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/f30dd6ad.0 b/test/rules/platform_certs/default/f30dd6ad.0 new file mode 120000 index 000000000000..fe8b7f684bf0 --- /dev/null +++ b/test/rules/platform_certs/default/f30dd6ad.0 @@ -0,0 +1 @@ +cert093.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/f3377b1b.0 b/test/rules/platform_certs/default/f3377b1b.0 new file mode 120000 index 000000000000..6b9e3cee1364 --- /dev/null +++ b/test/rules/platform_certs/default/f3377b1b.0 @@ -0,0 +1 @@ +cert015.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/f387163d.0 b/test/rules/platform_certs/default/f387163d.0 new file mode 120000 index 000000000000..6d3afc9f7b75 --- /dev/null +++ b/test/rules/platform_certs/default/f387163d.0 @@ -0,0 +1 @@ +cert019.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/f39fc864.0 b/test/rules/platform_certs/default/f39fc864.0 new file mode 120000 index 000000000000..997960c9a6fd --- /dev/null +++ b/test/rules/platform_certs/default/f39fc864.0 @@ -0,0 +1 @@ +cert030.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/f459871d.0 b/test/rules/platform_certs/default/f459871d.0 new file mode 120000 index 000000000000..fe08ce674247 --- /dev/null +++ b/test/rules/platform_certs/default/f459871d.0 @@ -0,0 +1 @@ +cert133.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/f51bb24c.0 b/test/rules/platform_certs/default/f51bb24c.0 new file mode 120000 index 000000000000..bbce6c435741 --- /dev/null +++ b/test/rules/platform_certs/default/f51bb24c.0 @@ -0,0 +1 @@ +cert132.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/facacbc6.0 b/test/rules/platform_certs/default/facacbc6.0 new file mode 120000 index 000000000000..b71513fe981a --- /dev/null +++ b/test/rules/platform_certs/default/facacbc6.0 @@ -0,0 +1 @@ +cert029.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/fb5fa911.0 b/test/rules/platform_certs/default/fb5fa911.0 new file mode 120000 index 000000000000..f79cc53a1883 --- /dev/null +++ b/test/rules/platform_certs/default/fb5fa911.0 @@ -0,0 +1 @@ +cert111.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/fc5a8f99.0 b/test/rules/platform_certs/default/fc5a8f99.0 new file mode 120000 index 000000000000..4d799e74ef9e --- /dev/null +++ b/test/rules/platform_certs/default/fc5a8f99.0 @@ -0,0 +1 @@ +cert092.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/fd08c599.0 b/test/rules/platform_certs/default/fd08c599.0 new file mode 120000 index 000000000000..819e00043983 --- /dev/null +++ b/test/rules/platform_certs/default/fd08c599.0 @@ -0,0 +1 @@ +cert110.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/fde84897.0 b/test/rules/platform_certs/default/fde84897.0 new file mode 120000 index 000000000000..80aa69139189 --- /dev/null +++ b/test/rules/platform_certs/default/fde84897.0 @@ -0,0 +1 @@ +cert036.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/fe8a2cd8.0 b/test/rules/platform_certs/default/fe8a2cd8.0 new file mode 120000 index 000000000000..d59e7b0ac35d --- /dev/null +++ b/test/rules/platform_certs/default/fe8a2cd8.0 @@ -0,0 +1 @@ +cert104.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/ff34af3f.0 b/test/rules/platform_certs/default/ff34af3f.0 new file mode 120000 index 000000000000..d3d34182b0b4 --- /dev/null +++ b/test/rules/platform_certs/default/ff34af3f.0 @@ -0,0 +1 @@ +cert115.pem \ No newline at end of file diff --git a/test/rules/platform_certs/default/thawtePrimaryRootCA-G2.crt b/test/rules/platform_certs/default/thawtePrimaryRootCA-G2.crt deleted file mode 100644 index 027ce1c8b4cc..000000000000 --- a/test/rules/platform_certs/default/thawtePrimaryRootCA-G2.crt +++ /dev/null @@ -1,16 +0,0 @@ ------BEGIN CERTIFICATE----- -MIICiDCCAg2gAwIBAgIQNfwmXNmET8k9Jj1Xm67XVjAKBggqhkjOPQQDAzCBhDEL -MAkGA1UEBhMCVVMxFTATBgNVBAoTDHRoYXd0ZSwgSW5jLjE4MDYGA1UECxMvKGMp -IDIwMDcgdGhhd3RlLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxJDAi -BgNVBAMTG3RoYXd0ZSBQcmltYXJ5IFJvb3QgQ0EgLSBHMjAeFw0wNzExMDUwMDAw -MDBaFw0zODAxMTgyMzU5NTlaMIGEMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMdGhh -d3RlLCBJbmMuMTgwNgYDVQQLEy8oYykgMjAwNyB0aGF3dGUsIEluYy4gLSBGb3Ig -YXV0aG9yaXplZCB1c2Ugb25seTEkMCIGA1UEAxMbdGhhd3RlIFByaW1hcnkgUm9v -dCBDQSAtIEcyMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAEotWcgnuVnfFSeIf+iha/ -BebfowJPDQfGAFG6DAJSLSKkQjnE/o/qycG+1E3/n3qe4rF8mq2nhglzh9HnmuN6 -papu+7qzcMBniKI11KOasf2twu8x+qi58/sIxpHR+ymVo0IwQDAPBgNVHRMBAf8E -BTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUmtgAMADna3+FGO6Lts6K -DPgR4bswCgYIKoZIzj0EAwMDaQAwZgIxAN344FdHW6fmCsO99YCKlzUNG4k8VIZ3 -KMqh9HneteY4sPBlcIx/AlTCv//YoT7ZzwIxAMSNlPzcU9LcnXgWHxUzI1NS41ox -XZ3Krr0TKUQNJ1uo52icEvdYPy5yAlejj6EULg== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/thawtePrimaryRootCA-G3.crt b/test/rules/platform_certs/default/thawtePrimaryRootCA-G3.crt deleted file mode 100644 index 34af29e3ccd9..000000000000 --- a/test/rules/platform_certs/default/thawtePrimaryRootCA-G3.crt +++ /dev/null @@ -1,25 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEKjCCAxKgAwIBAgIQYAGXt0an6rS0mtZLL/eQ+zANBgkqhkiG9w0BAQsFADCB -rjELMAkGA1UEBhMCVVMxFTATBgNVBAoTDHRoYXd0ZSwgSW5jLjEoMCYGA1UECxMf -Q2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjE4MDYGA1UECxMvKGMpIDIw -MDggdGhhd3RlLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxJDAiBgNV -BAMTG3RoYXd0ZSBQcmltYXJ5IFJvb3QgQ0EgLSBHMzAeFw0wODA0MDIwMDAwMDBa -Fw0zNzEyMDEyMzU5NTlaMIGuMQswCQYDVQQGEwJVUzEVMBMGA1UEChMMdGhhd3Rl -LCBJbmMuMSgwJgYDVQQLEx9DZXJ0aWZpY2F0aW9uIFNlcnZpY2VzIERpdmlzaW9u -MTgwNgYDVQQLEy8oYykgMjAwOCB0aGF3dGUsIEluYy4gLSBGb3IgYXV0aG9yaXpl -ZCB1c2Ugb25seTEkMCIGA1UEAxMbdGhhd3RlIFByaW1hcnkgUm9vdCBDQSAtIEcz -MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsr8nLPvb2FvdeHsbnndm -gcs+vHyu86YnmjSjaDFxODNi5PNxZnmxqWWjpYvVj2AtP0LMqmsywCPLLEHd5N/8 -YZzic7IilRFDGF/Eth9XbAoFWCLINkw6fKXRz4aviKdEAhN0cXMKQlkC+BsUa0Lf -b1+6a4KinVvnSr0eAXLbS3ToO39/fR8EtCab4LRarEc9VbjXsCZSKAExQGbY2SS9 -9irY7CFJXJv2eul/VTV+lmuNk5Mny5K76qxAwJ/C+IDPXfRa3M50hqY+bAtTyr2S -zhkGcuYMXDhpxwTWvGzOW/b3aJzcJRVIiKHpqfiYnODz1TEoYRFsZ5aNOZnLwkUk -OQIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNV -HQ4EFgQUrWyqlGCc7eT/+j4KdCtjA/e2Wb8wDQYJKoZIhvcNAQELBQADggEBABpA -2JVlrAmSicY59BDlqQ5mU1143vokkbvnRFHfxhY0Cu9qRFHqKweKA3rD6z8KLFIW -oCtDuSWQP3CpMyVtRRooOyfPqsMpQhvfO0zAMzRbQYi/aytlryjvsvXDqmbOe1bu -t8jLZ8HJnBoYuMTDSQPxYA5QzUbF83d597YV4Djbxy8ooAw/dyZ02SUS2jHaGh7c -KUGRIjxpp7sC8rZcJwOJ9Abqm+RyguOhCcHpABnTPtRwa7pxpqpYrvS76Wy274fM -m7v/OeZWYdMKp8RcTGB7BXcmer/YB1IsYvdwY9k5vG8cwnncdimvzsUsZAReiDZu -MdRAGmI0Nj81Aa6sY6A= ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/default/thawtePrimaryRootCA.crt b/test/rules/platform_certs/default/thawtePrimaryRootCA.crt deleted file mode 100644 index b8e9895ab5b0..000000000000 --- a/test/rules/platform_certs/default/thawtePrimaryRootCA.crt +++ /dev/null @@ -1,25 +0,0 @@ ------BEGIN CERTIFICATE----- -MIIEIDCCAwigAwIBAgIQNE7VVyDV7exJ9C/ON9srbTANBgkqhkiG9w0BAQUFADCB -qTELMAkGA1UEBhMCVVMxFTATBgNVBAoTDHRoYXd0ZSwgSW5jLjEoMCYGA1UECxMf -Q2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjE4MDYGA1UECxMvKGMpIDIw -MDYgdGhhd3RlLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxHzAdBgNV -BAMTFnRoYXd0ZSBQcmltYXJ5IFJvb3QgQ0EwHhcNMDYxMTE3MDAwMDAwWhcNMzYw -NzE2MjM1OTU5WjCBqTELMAkGA1UEBhMCVVMxFTATBgNVBAoTDHRoYXd0ZSwgSW5j -LjEoMCYGA1UECxMfQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcyBEaXZpc2lvbjE4MDYG -A1UECxMvKGMpIDIwMDYgdGhhd3RlLCBJbmMuIC0gRm9yIGF1dGhvcml6ZWQgdXNl -IG9ubHkxHzAdBgNVBAMTFnRoYXd0ZSBQcmltYXJ5IFJvb3QgQ0EwggEiMA0GCSqG -SIb3DQEBAQUAA4IBDwAwggEKAoIBAQCsoPD7gFnUnMekz52hWXMJEEUMDSxuaPFs -W0hoSVk3/AszGcJ3f8wQLZU0HObrTQmnHNK4yZc2AreJ1CRfBsDMRJSUjQJib+ta -3RGNKJpchJAQeg29dGYvajig4tVUROsdB58Hum/u6f1OCyn1PoSgAfGcq/gcfomk -6KHYcWUNo1F77rzSImANuVud37r8UVsLr5iy6S7pBOhih94ryNdOwUxkHt3Ph1i6 -Sk/KaAcdHJ1KxtUvkcx8cXIcxcBn6zL9yZJclNqFwJu/U30rCfSMnZEfl2pSy94J -NqR32HuHUETVPm4pafs5SSYeCaWAe0At6+gnhcn+Yf1+5nyXHdWdAgMBAAGjQjBA -MA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBR7W0XP -r87Lev0xkhpqtvNG61dIUDANBgkqhkiG9w0BAQUFAAOCAQEAeRHAS7ORtvzw6WfU -DW5FvlXok9LOAz/t2iWwHVfLHjp2oEzsUHboZHIMpKnxuIvW1oeEuzLlQRHAd9mz -YJ3rG9XRbkREqaYB7FViHXe4XI5ISXycO1cRrK1zN44veFyQaEfZYGDm/Ac9IiAX -xPcW6cTYcvnIc3zfFi8VqT79aie2oetaupgf1eNNZAqdE8hhuvU5HIe6uL17In/2 -/qxAeeWsEG89jxt5dovEN7MhGITlNgDrYyCZuen+MwS7QcjBAvlEYyCegc5C09Y/ -LHbTY5xZ3Y+m4Q6gLkH3LpVHz7z9M/P2C2F+fpErgUfCJzDupxBdN49cOSvkBPB7 -jVaMaA== ------END CERTIFICATE----- diff --git a/test/rules/platform_certs/firefox b/test/rules/platform_certs/firefox deleted file mode 120000 index 331d858ce9b1..000000000000 --- a/test/rules/platform_certs/firefox +++ /dev/null @@ -1 +0,0 @@ -default \ No newline at end of file diff --git a/test/rules/platform_certs/get-issuer.sh b/test/rules/platform_certs/get-issuer.sh deleted file mode 100755 index 1299d9931d2a..000000000000 --- a/test/rules/platform_certs/get-issuer.sh +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/bash -x -# Usage: get_issuer.sh example.com -# -# If the checker fails with a complaint about a local issuer cert, but Firefox -# successfully fetches a domain, it's likely because the site left out the -# intermediate cert, but Firefox included it. This script tries to simplify the -# process of adding the intermediate so the checker can validate properly. -cd $(dirname $0)/default -DOMAIN="${1}" -ISSUER_URL=$(openssl s_client -connect "${DOMAIN}:443" -servername "${DOMAIN}" -showcerts "${NAME}.pem" -if openssl verify -CApath . ${NAME}.pem ; then -# c_rehash . - curl --capath . "https://${DOMAIN}" >/dev/null - echo "Succesfully fetched and verified ${NAME}.pem. Now git add . and commit." -else - echo "Failed to verify ${NAME}.pem, maybe not a proper intermediate?" -fi diff --git a/test/rules/requirements.txt b/test/rules/requirements.txt index 144287114bb8..0057c226a169 100644 --- a/test/rules/requirements.txt +++ b/test/rules/requirements.txt @@ -1,4 +1,6 @@ +lxml>=3.3.3 pycurl regex bsdiff4 python-Levenshtein +tldextract diff --git a/test/rules/setup.py b/test/rules/setup.py deleted file mode 100644 index 3d22a9dce6ef..000000000000 --- a/test/rules/setup.py +++ /dev/null @@ -1,37 +0,0 @@ -#!/usr/bin/env python - -import os -import sys - - -from setuptools import setup, find_packages - -readme = open('README.rst').read() -history = open('HISTORY.rst').read().replace('.. :changelog:', '') - -setup( - name='https-everywhere-checker', - version='0.1.0', - description='Rule checker for HTTPS Everywhere', - long_description=readme + '\n\n' + history, - author='Ondrej Mikle', - author_email='ondrej.mikle@nic.cz', - url='https://github.com/hiviah/https-everywhere-checker', - packages=find_packages('src', exclude=('tests',)), - package_dir={'': 'src'}, - include_package_data=True, - install_requires=[ - "pycurl>=7.19.0", - "lxml>=2.2.3", - "bsdiff4>=1.1.4", - "python-levenshtein>=0.10.2", - "regex>=0.1.20120613", - ], - license="GPL3", - keywords='https https-everywhere http security', - entry_points={ - 'console_scripts': [ - 'check-https-rules = https_everywhere_checker.check_rules:cli' - ], - } -) diff --git a/test/rules/src/https_everywhere_checker/__init__.py b/test/rules/src/https_everywhere_checker/__init__.py deleted file mode 100644 index e69de29bb2d1..000000000000 diff --git a/test/rules/src/https_everywhere_checker/check_rules.py b/test/rules/src/https_everywhere_checker/check_rules.py index bf78a22c3382..f3d5baf00152 100644 --- a/test/rules/src/https_everywhere_checker/check_rules.py +++ b/test/rules/src/https_everywhere_checker/check_rules.py @@ -1,457 +1,504 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 import binascii -import collections import argparse +import copy import json import glob import hashlib import logging import os -import Queue +import queue import re import sys import threading import time -from ConfigParser import SafeConfigParser +from configparser import ConfigParser from lxml import etree import http_client import metrics +import urllib.parse from rules import Ruleset from rule_trie import RuleTrie +from datetime import datetime + +timestamp = datetime.now().replace(microsecond=0) def convertLoglevel(levelString): - """Converts string 'debug', 'info', etc. into corresponding - logging.XXX value which is returned. - - @raises ValueError if the level is undefined - """ - try: - return getattr(logging, levelString.upper()) - except AttributeError: - raise ValueError("No such loglevel - %s" % levelString) + """Converts string 'debug', 'info', etc. into corresponding + logging.XXX value which is returned. + + @raises ValueError if the level is undefined + """ + try: + return getattr(logging, levelString.upper()) + except AttributeError: + raise ValueError("No such loglevel - {}".format(levelString)) + def getMetricClass(metricType): - """Get class for metric type from config file. - - @raises ValueError if the metric type is unknown - """ - metricMap = { - "markup": metrics.MarkupMetric, - "bsdiff": metrics.BSDiffMetric, - } - - if metricType not in metricMap: - raise ValueError("Metric type '%s' is not known" % metricType) - - return metricMap[metricType] + """Get class for metric type from config file. + + @raises ValueError if the metric type is unknown + """ + metricMap = { + "markup": metrics.MarkupMetric, + "bsdiff": metrics.BSDiffMetric, + } + + if metricType not in metricMap: + raise ValueError("Metric type '{}' is not known".format(metricType)) + + return metricMap[metricType] class ComparisonTask(object): - """Container for objects necessary for several plain/rewritten URL comparison - associated with a single ruleset. - """ - - def __init__(self, urls, fetcherPlain, fetcherRewriting, ruleset): - self.urls = urls - self.fetcherPlain = fetcherPlain - self.fetcherRewriting = fetcherRewriting - self.ruleset = ruleset - self.ruleFname = ruleset.filename - + """Container for objects necessary for several plain/rewritten URL comparison + associated with a single ruleset. + """ + + def __init__(self, urls, fetcherPlain, fetchersRewriting, ruleset): + self.urls = urls + self.fetcherPlain = fetcherPlain + self.fetchersRewriting = fetchersRewriting + self.ruleset = ruleset + self.ruleFname = ruleset.filename + + class UrlComparisonThread(threading.Thread): - """Thread worker for comparing plain and rewritten URLs. - """ - - def __init__(self, taskQueue, metric, thresholdDistance, autoDisable, resQueue): - """ - Comparison thread running HTTP/HTTPS scans. - - @param taskQueue: Queue.Queue filled with ComparisonTask objects - @param metric: metric.Metric instance - @param threshold: min distance that is reported as "too big" - @param resQueue: Result Queue, results are added there - """ - self.taskQueue = taskQueue - self.resQueue = resQueue - self.metric = metric - self.thresholdDistance = thresholdDistance - self.autoDisable = autoDisable - threading.Thread.__init__(self) - - def run(self): - while True: - try: - self.processTask(self.taskQueue.get()) - self.taskQueue.task_done() - except Exception, e: - logging.exception(e) - if self.taskQueue.empty(): - break - - def processTask(self, task): - problems = [] - for url in task.urls: - result = self.processUrl(url, task) - if result: - problems.append(result) - if problems: - for problem in problems: - logging.error("%s: %s" % (task.ruleFname, problem)) - if self.autoDisable: - disableRuleset(task.ruleset, problems) - - def queue_result(self, result, details, fname, url, https_url=None): - """ - Add results to result Queue - - @param result: Result of the test. "error" or "success" - @param details: More detailed results (in case of error) - @param fname: rule file name - @param url: base url of the test (http) - @param https_url: re-written https url - """ - - res = {"result": result, - "details": details, - "fname": fname, - "url": url} - if https_url: - res["https_url"] = https_url - self.resQueue.put(res) - - def fetchUrl(self, plainUrl, transformedUrl, fetcherPlain, fetcherRewriting, ruleFname): - logging.debug("=**= Start %s => %s ****", plainUrl, transformedUrl) - logging.debug("Fetching transformed page %s", transformedUrl) - transformedRcode, transformedPage = fetcherRewriting.fetchHtml(transformedUrl) - logging.debug("Fetching plain page %s", plainUrl) - # If we get an exception (e.g. connection refused, - # connection timeout) on the plain page, don't treat - # that as a failure. - plainRcode, plainPage = None, None - try: - plainRcode, plainPage = fetcherPlain.fetchHtml(plainUrl) - except Exception, e: - logging.debug("Non-fatal fetch error for plain page %s: %s" % (plainUrl, e)) - - # Compare HTTP return codes - if original page returned 2xx, - # but the transformed didn't, consider it an error in ruleset - # (note this is not symmetric, we don't care if orig page is broken). - # We don't handle 1xx codes for now. - if plainRcode and plainRcode//100 == 2 and transformedRcode//100 != 2: - message = "Non-2xx HTTP code: %s (%d) => %s (%d)" % ( - plainUrl, plainRcode, transformedUrl, transformedRcode) - self.queue_result("error", "non-2xx http code", ruleFname, plainUrl, https_url=transformedUrl) - logging.debug(message) - return message - - # If the plain page fetch got an exception, we don't - # need to do the distance comparison. Intuitively, if a - # plain page is fetchable people expect it to have the - # same content as the HTTPS page. But if the plain page - # is unreachable, there's nothing to compare to. - if plainPage: - distance = self.metric.distanceNormed(plainPage, transformedPage) - - logging.debug("==== D: %0.4f; %s (%d) -> %s (%d) =====", - distance, plainUrl, len(plainPage), transformedUrl, len(transformedPage)) - if distance >= self.thresholdDistance: - logging.info("Big distance %0.4f: %s (%d) -> %s (%d). Rulefile: %s =====", - distance, plainUrl, len(plainPage), transformedUrl, len(transformedPage), ruleFname) - - self.queue_result("success", "", ruleFname, plainUrl) - - def processUrl(self, plainUrl, task): - fetcherPlain = task.fetcherPlain - fetcherRewriting = task.fetcherRewriting - ruleFname = task.ruleFname - - try: - transformedUrl = task.ruleset.apply(plainUrl) - except Exception, e: - self.queue_result("regex_error", str(e), ruleFname, plainUrl) - logging.error("%s: Regex Error %s" % (ruleFname, str(e))) - return - - try: - message = self.fetchUrl(plainUrl, transformedUrl, fetcherPlain, fetcherRewriting, ruleFname) - - except: - # Try once more before sending an error result - try: - message = self.fetchUrl(plainUrl, transformedUrl, fetcherPlain, fetcherRewriting, ruleFname) - except Exception, e: - message = "Fetch error: %s => %s: %s" % ( - plainUrl, transformedUrl, e) - self.queue_result("error", "fetch-error %s"% e, ruleFname, plainUrl, https_url=transformedUrl) - logging.debug(message) - - finally: - logging.info("Finished comparing %s -> %s. Rulefile: %s.", - plainUrl, transformedUrl, ruleFname) - - return message - -def disableRuleset(ruleset, problems): - logging.info("Disabling ruleset %s", ruleset.filename) - contents = open(ruleset.filename).read() - # Don't bother to disable rulesets that are already disabled - if re.search("\bdefault_off=", contents): - return - contents = re.sub("(]*)>", - "\\1 default_off='failed ruleset test'>", contents) - - # Since the problems are going to be inserted into an XML comment, they cannot - # contain "--", or they will generate a parse error. Split up all "--" with a - # space in the middle. - safeProblems = [re.sub('--', '- -', p) for p in problems] - # If there's not already a comment section at the beginning, add one. - if not re.search("^\n" + contents - problemStatement = (""" + """Thread worker for comparing plain and rewritten URLs. + """ + + def __init__(self, taskQueue, metric, thresholdDistance, autoDisable, resQueue): + """ + Comparison thread running HTTP/HTTPS scans. + + @param taskQueue: Queue.Queue filled with ComparisonTask objects + @param metric: metric.Metric instance + @param threshold: min distance that is reported as "too big" + @param resQueue: Result Queue, results are added there + """ + self.taskQueue = taskQueue + self.resQueue = resQueue + self.metric = metric + self.thresholdDistance = thresholdDistance + self.autoDisable = autoDisable + threading.Thread.__init__(self) + + def run(self): + while True: + try: + self.processTask(self.taskQueue.get()) + self.taskQueue.task_done() + except Exception as e: + logging.exception(e) + if self.taskQueue.empty(): + break + + def processTask(self, task): + problems = [] + for url in task.urls: + result = self.processUrl(url, task) + if result[0]: + problems.append(result) + if problems: + for problem in problems: + logging.error("{}: {}".format(task.ruleFname, problem[0])) + if self.autoDisable: + urlCount = len(task.urls) + disableRuleset(task.ruleset, problems, urlCount) + + def queue_result(self, result, details, fname, url, https_url=None): + """ + Add results to result Queue + + @param result: Result of the test. "error" or "success" + @param details: More detailed results (in case of error) + @param fname: rule file name + @param url: base url of the test (http) + @param https_url: re-written https url + """ + + res = {"result": result, + "details": details, + "fname": fname, + "url": url} + if https_url: + res["https_url"] = https_url + self.resQueue.put(res) + + def fetchUrl(self, plainUrl, transformedUrl, fetcherPlain, fetcherRewriting, ruleFname): + logging.debug("=**= Start {} => {} ****".format(plainUrl, transformedUrl)) + logging.debug("Fetching transformed page {}".format(transformedUrl)) + transformedRcode, transformedPage = fetcherRewriting.fetchHtml( + transformedUrl) + logging.debug("Fetching plain page {}".format(plainUrl)) + # If we get an exception (e.g. connection refused, + # connection timeout) on the plain page, don't treat + # that as a failure (except DNS resolution errors) + plainRcode, plainPage = None, None + try: + plainRcode, plainPage = fetcherPlain.fetchHtml(plainUrl) + except Exception as e: + errno, message = e.args + if errno == 6: + message = "Time: {}\n Fetch error: {} => {}: {}".format(timestamp, + plainUrl, transformedUrl, e) + self.queue_result("error", "fetch-error {}".format(e), + ruleFname, plainUrl, https_url=transformedUrl) + return message + + logging.debug( + "Non-fatal fetch error for plain page {}: {}".format(plainUrl, e)) + + # Compare HTTP return codes - if original page returned 2xx, + # but the transformed didn't, consider it an error in ruleset + # (note this is not symmetric, we don't care if orig page is broken). + # We don't handle 1xx codes for now. + if plainRcode and plainRcode//100 == 2 and transformedRcode//100 != 2: + message = "Non-2xx HTTP code: {} ({}) => {} ({})".format( + plainUrl, plainRcode, transformedUrl, transformedRcode) + self.queue_result("error", "non-2xx http code", + ruleFname, plainUrl, https_url=transformedUrl) + logging.debug(message) + return message + + # If the plain page fetch got an exception, we don't + # need to do the distance comparison. Intuitively, if a + # plain page is fetchable people expect it to have the + # same content as the HTTPS page. But if the plain page + # is unreachable, there's nothing to compare to. + if plainPage: + distance = self.metric.distanceNormed(plainPage, transformedPage) + + logging.debug("==== D: {:.4f}; {} ({}) -> {} ({}) =====".format( + distance, plainUrl, len(plainPage), transformedUrl, len(transformedPage))) + if distance >= self.thresholdDistance: + logging.info("Big distance {:.4f}: {} ({}) -> {} ({}). Rulefile: {} =====".format( + distance, plainUrl, len(plainPage), transformedUrl, len(transformedPage), ruleFname)) + + self.queue_result("success", "", ruleFname, plainUrl) + + def processUrl(self, plainUrl, task): + fetcherPlain = task.fetcherPlain + fetchersRewriting = task.fetchersRewriting + ruleFname = task.ruleFname + + try: + transformedUrl = task.ruleset.apply(plainUrl) + except Exception as e: + self.queue_result("regex_error", str(e), ruleFname, plainUrl) + logging.error("{}: Regex Error {}".format(ruleFname, str(e))) + return + + fetchersFailed = 0 + for fetcherRewriting in fetchersRewriting: + try: + message = self.fetchUrl( + plainUrl, transformedUrl, fetcherPlain, fetcherRewriting, ruleFname) + break + + except Exception as e: + fetchersFailed += 1 + if fetchersFailed == len(fetchersRewriting): + message = "Fetch error: {} => {}: {}".format( + plainUrl, transformedUrl, e) + self.queue_result("error", "fetch-error {}".format(e), + ruleFname, plainUrl, https_url=transformedUrl) + logging.debug(message) + + logging.info("Finished comparing {} -> {}. Rulefile: {}.".format( + plainUrl, transformedUrl, ruleFname)) + + return [message, plainUrl] + + +def disableRuleset(ruleset, problemRules, urlCount): + problems = [problem[0] for problem in problemRules] + rules = [problem[1] for problem in problemRules] + contents = open(ruleset.filename).read() + + # Don't bother to disable rulesets that are already disabled + if re.search("\bdefault_off=", contents): + return + + # Go ahead and disable rulset if all targets are problematic + if urlCount == len(problemRules): + logging.info("Disabling ruleset {}".format(ruleset.filename)) + disableMessage = "Entire ruleset disabled at {}\n".format(timestamp) + contents = re.sub("(]*)>", + "\\1 default_off=\"failed ruleset test\">", contents); + # If not all targets, just the target + else: + for rule in rules: + disableMessage = "The following targets have been disabled at {}:\n".format(timestamp) + host = urllib.parse.urlparse(rule) + logging.info("Disabling target {}".format(host.netloc)) + contents = re.sub('<[ \n]*target[ \n]+host[ \n]*=[ \n]*"{}"[ \n]*/?[ \n]*>'.format(host.netloc), + ''.format(host.netloc), contents); + + # Since the problems are going to be inserted into an XML comment, they cannot + # contain "--", or they will generate a parse error. Split up all "--" with a + # space in the middle. + safeProblems = [re.sub('--', '- -', p) for p in problems] + # If there's not already a comment section at the beginning, add one. + if not re.search("^\n" + contents + problemStatement = (""" + (\^http://.*/.*|\^http:) + + + + + + (https://[^ \\]*/[^ \\]*|https:) + + + + + + + + diff --git a/test/validations/securecookie/run.py b/test/validations/securecookie/run.py new file mode 100644 index 000000000000..76738dea8b31 --- /dev/null +++ b/test/validations/securecookie/run.py @@ -0,0 +1,58 @@ +#!/usr/bin/env python3 + +# This python utility check for wildcard securecookies which +# can be normalized, warn and exit with non-zero when such +# rulesets exist. + +# This is create in attempt to fix the issues on +# https://github.com/EFForg/https-everywhere/pull/13840 +# https://github.com/EFForg/https-everywhere/pull/12493 + +import argparse +import glob +import os +import unicodedata +import xml.etree.ElementTree + +def normalize_fn(fn): + """ + OSX and Linux filesystems encode composite characters differently in + filenames. We should normalize to NFC: https://unicode.org/reports/tr15/ + """ + fn = unicodedata.normalize("NFC", fn) + return fn + +def should_normalize_securecookie(host, name): + wildcards = [ ".", ".*" ] + return True if host in wildcards or name in wildcards else False + +# commandline arguments parsing (nobody use it, though) +parser = argparse.ArgumentParser(description="Normalize wildcard securecookies") +parser.add_argument("--source_dir", default="src/chrome/content/rules") + +args = parser.parse_args() + +# Exit code +exit_with_non_zero = False + +# XML ruleset files +filenames = map(normalize_fn, glob.glob(os.path.join(args.source_dir, "*.xml"))) + +for filename in filenames: + tree = xml.etree.ElementTree.parse(filename) + root = tree.getroot() + + for branch in root: + if branch.tag != "securecookie": + continue + + host = branch.attrib["host"] + name = branch.attrib["name"] + + if should_normalize_securecookie(host, name): + print ("ERROR {}: contains wildcard securecookies "\ + "which can be normalized.".format(filename)) + exit_with_non_zero = True + break + +exit(0) if not exit_with_non_zero else exit(1) diff --git a/test/validations/special/duplicate-allowlist-cleanup.sh b/test/validations/special/duplicate-allowlist-cleanup.sh new file mode 100755 index 000000000000..38f58c759b5d --- /dev/null +++ b/test/validations/special/duplicate-allowlist-cleanup.sh @@ -0,0 +1,14 @@ +#!/bin/sh + +TMPFILE=`mktemp /tmp/buffer.XXXXXXXX` +trap 'rm "$TMPFILE"' EXIT + +for host in `cat test/validations/special/duplicate-allowlist.txt`; do + REGEX_ESCAPED_HOST=`python3 -c "import re; print(re.escape('$host'))"` + REPEATS=`egrep -l "" src/chrome/content/rules/*.xml | wc -l` + if [ $REPEATS -gt 1 ]; then + echo $host + fi +done > $TMPFILE + +cp --force $TMPFILE test/validations/special/duplicate-allowlist.txt diff --git a/test/validations/special/duplicate-allowlist.txt b/test/validations/special/duplicate-allowlist.txt new file mode 100644 index 000000000000..7d3a62a9b3fc --- /dev/null +++ b/test/validations/special/duplicate-allowlist.txt @@ -0,0 +1,113 @@ +mailing.channel4.com +training.citrix.com +drownedinsound.com +now.eloqua.com +foxydeal.com +foxydeal.de +www.gfi.com +forum.girlsoutwest.com +forums.girlsoutwest.com +gsu.edu +hostoople.com +ieeexplore.ieee.org +infinet.com.au +ivegotkids.com +ideas.joomla.org +jrrt.org.uk +esat.kuleuven.be +www.esat.kuleuven.be +latimes.com +liberalamerica.org +liftdna.com +fundusze-emerytalne.money.pl +fundusze-inwestycyjne.money.pl +karty-kredytowe.money.pl +kredyty-gotowkowe.money.pl +kredyty-mieszkaniowe.money.pl +kredyty-samochodowe.money.pl +lokaty-bankowe.money.pl +npmawesome.com +webmail.nyi.net +nykeurope.com +careers.peopleclick.com +www.rackspace.com +redbullmobile.at +reddpics.com +www.cits.ruhr-uni-bochum.de +www.ruhr-uni-bochum.de +www2.scribblelive.com +sparxtrading.com +thompsonhotels.com +togevi.com +blog.trendmicro.com +countermeasures.trendmicro.eu +flow.typo3.org +ul.ie +businessforums.verizon.net +digitalcommons.wustl.edu +openscholarship.wustl.edu +tpsnews.ca +www.tpsnews.ca +pygmyboats.com +www.pygmyboats.com +petitions.moveon.org +email.bild.de +direct.asda.com +info.mheducation.com +www.wiltshire.police.uk +www.coochey.net +www.zdv.uni-mainz.de +go.sirsidynix.com +amazingcareers.firstdirect.com +www.amazingcareers.firstdirect.com +info.unit4.com +licensing.ofcom.org.uk +styles.ofcom.org.uk +www.autotrader.co.uk +autotrader.co.uk +nitroflare.com +www.nitroflare.com +www.scotland.police.uk +councilmeetings.lewisham.gov.uk +files.conferencemanager.dk +huuto.net +salattu.huuto.net +www.huuto.net +www.thebureauinvestigates.com +www.upi.com +blog.sigfig.com +www.pumo.com.tw +www.hkyantoyan.com +www.888173.net +www.ratfishoil.com +www.tum.de +www.filmlinc.com +shop.look.co.uk +blog.vungle.com +www.vungle.com +www.jeffnabers.com +www.suppliesfordreams.org +www.sparxtrading.com +landing.lyris.com +www.ebuyer.com +blog.ebuyer.com +wiki.sequanux.org +www.opensrs.com +www.redbullmobile.at +k.ilius.net +stda.ilius.net +wp-poc.details.com +www.jrrt.org.uk +www.ul.ie +www.hostoople.com +hostooplecms.hostooplecom.netdna-cdn.com +www.gsu.edu +thumbs.dreamstime.com +support.arpnetworks.com +jobs.datacenterknowledge.com +cdn.nejm.org +guides.thenextweb.com +jobs.thenextweb.com +www.liberalamerica.org +www.latimes.com +www.thompsonhotels.com diff --git a/test/validations/special/run.py b/test/validations/special/run.py new file mode 100755 index 000000000000..14b0ed6ff9ec --- /dev/null +++ b/test/validations/special/run.py @@ -0,0 +1,205 @@ +#!/usr/bin/env python3 + +import glob +import argparse +import os +import re +import sys + +from lxml import etree +from collections import Counter + +parser = argparse.ArgumentParser( + formatter_class=argparse.RawDescriptionHelpFormatter, + description="Ruleset validation script.") +parser.add_argument('--quiet', action="store_true", + default=False, help="Suppress debug output." + ) + +args = parser.parse_args() + +quiet = args.quiet + +def warn(s): + if not quiet: + sys.stdout.write("warning: %s\n" % s) + +def fail(s): + sys.stdout.write("failure: %s\n" % s) + +# Precompile xpath expressions that get run repeatedly. +xpath_exclusion_pattern = etree.XPath("/ruleset/exclusion/@pattern") +xpath_cookie_host_pattern = etree.XPath("/ruleset/securecookie/@host") +xpath_cookie_name_pattern = etree.XPath("/ruleset/securecookie/@name") + +# Load lists of ruleset names allowlisted for duplicate rules +thispath = os.path.dirname(os.path.realpath(__file__)) +with open(thispath + '/duplicate-allowlist.txt') as duplicate_fh: + duplicate_allowed_list = [x.rstrip('\n') for x in duplicate_fh.readlines()] + +filenames = glob.glob(thispath + '/../../../src/chrome/content/rules/*') + +def test_bad_regexp(tree, rulename, from_attrib, to): + # Rules with invalid regular expressions. + """The rule contains an invalid extended regular expression.""" + patterns = (from_attrib + xpath_exclusion_pattern(tree) + + xpath_cookie_host_pattern(tree) + xpath_cookie_name_pattern(tree)) + for pat in patterns: + try: + re.compile(pat) + except: + return False + return True + +def unescaped_dot(s): + escaped = False + bracketed = False + for c in s: + if c == "\\": + escaped = not escaped + elif not escaped and c == "[": + bracketed = True + elif not escaped and c == "]": + bracketed = False + elif not escaped and not bracketed and c == ".": + return True + elif not bracketed and c == "/": + break + else: + escaped = False + return False + +def test_unescaped_dots(tree, rulename, from_attrib, to): + # Rules containing unescaped dots outside of brackets and before slash. + # Note: this is meant to require example\.com instead of example.com, + # but it also forbids things like .* which usually ought to be replaced + # with something like ([^/:@\.]+) + """The 'from' rule contains unescaped period in regular expression. Try escaping it with a backslash.""" + for f in from_attrib: + s = re.sub("^\^https?://", "", f) + if unescaped_dot(s): + return False + return True + +def test_unescaped_dots_in_exclusion(tree, rulename, from_attrib, to): + """The 'exclusion' tag contains unescaped period in regular expression. Try escaping it with a backslash.""" + pattern_attrib = etree.XPath("/ruleset/exclusion/@pattern")(tree) + for f in pattern_attrib: + if unescaped_dot(f): + return False + return True + +xpath_rule = etree.XPath("/ruleset/rule") +def test_unencrypted_to(tree, rulename, from_attrib, to): + # Rules that redirect to something other than https or http. + # This used to test for http: but testing for lack of https: will + # catch more kinds of mistakes. + """Rule redirects to something other than https.""" + for rule in xpath_rule(tree): + to = rule.get("to") + if to[:6] != "https:": + return False + return True + +printable_characters = set(map(chr, list(range(32, 127)))) + +def test_non_ascii(tree, rulename, from_attrib, to): + # Rules containing non-printable characters. + """Rule contains non-printable character in 'to' pattern.""" + for t in to: + for c in t: + if c not in printable_characters: + return False + return True + +def is_valid_target_host(host): + # Rules where a target host contains multiple wildcards or a slash. + """The target host must be a hostname, not URL, and must use at most one wildcard.""" + if "/" in host: + return False + if host.count("*") > 1: + return False + return True + +def nomes_all(where=sys.argv[1:]): + """Returns generator to extract all files from a list of files/dirs""" + if not where: where=['.'] + for i in where: + if os.path.isfile(i): + yield i + elif os.path.isdir(i): + for r, d, f in os.walk(i): + for filename in f: + yield os.path.join(r, filename) + +tests = [ + test_bad_regexp, + test_unescaped_dots, + test_unescaped_dots_in_exclusion, + test_unencrypted_to, + test_non_ascii +] + +failure = 0 +seen_file = False + +xpath_ruleset = etree.XPath("/ruleset") +xpath_ruleset_name = etree.XPath("/ruleset/@name") +xpath_ruleset_platform = etree.XPath("/ruleset/@platform") +xpath_host = etree.XPath("/ruleset/target/@host") +xpath_from = etree.XPath("/ruleset/rule/@from") +xpath_to = etree.XPath("/ruleset/rule/@to") + +print("Complex validations & assertions of rulesets using test/validations/special/run.py begins...") + +host_counter = Counter() +for filename in filenames: + xml_parser = etree.XMLParser(remove_blank_text=True) + + basename = filename.split(os.path.sep)[-1] + if basename == '00README' or basename == 'make-trivial-rule' or basename == 'default.rulesets' or basename == 'default.rulesets.json': + continue + + try: + tree = etree.parse(filename, xml_parser) + except Exception as oops: + print("{} failed XML validity: {}\n".format(filename, oops)) + sys.exit(1) + + if not xpath_ruleset(tree): + continue + rn = xpath_ruleset_name(tree)[0] + if not rn: + failure = 1 + fail("unnamed ruleset") + continue + from_attrib = xpath_from(tree) + to = xpath_to(tree) + for test in tests: + if not test(tree, rn, from_attrib=from_attrib, to=to): + failure = 1 + fail("%s failed test: %s" % (filename, test.__doc__)) + + targets = xpath_host(tree) + for target in targets: + host_counter.update([target]) + + +for host, count in host_counter.most_common(): + if count > 1: + if host in duplicate_allowed_list: + warn("Allowlisted hostname %s shows up in %d different rulesets." % (host, count)) + else: + failure = 1 + fail("Hostname %s shows up in %d different rulesets." % (host, count)) + if not is_valid_target_host(host): + failure = 1 + fail("%s failed: %s" % (host, is_valid_target_host.__doc__)) + +if failure > 0: + print("Complex validations & assertions of rulesets using test/validations/special/run.py failed.") +else: + print("Complex validations & assertions of rulesets using test/validations/special/run.py succeeded.") + + +sys.exit(failure) diff --git a/test/validations/test-coverage/run.sh b/test/validations/test-coverage/run.sh new file mode 100755 index 000000000000..953f6008da77 --- /dev/null +++ b/test/validations/test-coverage/run.sh @@ -0,0 +1,45 @@ +#!/bin/bash -e +# +# Test that all rulesets modified after a certain date have sufficient test +# coverage, according to the ruleset checker. +# + +# Get to the repo root directory, even when we're symlinked as a hook. +if [ -n "$GIT_DIR" ] +then + # $GIT_DIR is set, so we're running as a hook. + cd $GIT_DIR +else + # Git command exists? Cool, let's CD to the right place. + git rev-parse && cd "$(git rev-parse --show-toplevel)" +fi + +source utils/mktemp.sh + +TMP="$(mktemp)" +trap 'rm "$TMP"' EXIT +if ! [ -d test/rules ] ; then + echo "Submodule https-everywhere-checker is missing. Run" + echo "./install-dev-dependencies.sh" + exit 1 +fi +if [ $# -gt 0 ] ; then + exec python3 test/rules/src/https_everywhere_checker/check_rules.py \ + test/rules/coverage.checker.config "$@" +fi +if ! python3 test/rules/src/https_everywhere_checker/check_rules.py \ + test/rules/coverage.checker.config; then + echo ' +Ruleset test coverage was insufficient. + +Under the new ruleset testing rules (February 2015), any modified ruleset +must have sufficient test coverage. You can often improve test coverage by +adding tags, or by restructuring the rule to avoid +wildcard tags. See these documents: +https://github.com/EFForg/https-everywhere/blob/master/ruleset-testing.md +https://github.com/EFForg/https-everywhere/blob/master/CONTRIBUTING.md#ruleset-style-guide +' + exit 1 +else + exit 0 +fi diff --git a/translations b/translations index a80dd0ef9cc3..5885a200bb15 160000 --- a/translations +++ b/translations @@ -1 +1 @@ -Subproject commit a80dd0ef9cc339ca59affb91bc91fd2a12a14f35 +Subproject commit 5885a200bb15b5d7320e8f53293ff067a9943629 diff --git a/utils/alexa-logs/07042014.log b/utils/alexa-logs/07042014.log deleted file mode 100644 index e7168a5dbf74..000000000000 --- a/utils/alexa-logs/07042014.log +++ /dev/null @@ -1,269 +0,0 @@ -On branch 3.5 -Changes to be committed: - (use "git reset HEAD ..." to unstage) - - new file: src/chrome/content/rules/123RF.xml - modified: src/chrome/content/rules/1and1-Internet.xml - new file: src/chrome/content/rules/1und1.de.xml - modified: src/chrome/content/rules/4Shared.xml - modified: src/chrome/content/rules/9gag.xml - new file: src/chrome/content/rules/ABC_News-falsemixed.xml - new file: src/chrome/content/rules/ABC_News.xml - modified: src/chrome/content/rules/AOL.xml - new file: src/chrome/content/rules/ATandT.xml - modified: src/chrome/content/rules/AWeber.xml - modified: src/chrome/content/rules/AdF.ly.xml - new file: src/chrome/content/rules/Adcash.xml - modified: src/chrome/content/rules/AddThis.xml - modified: src/chrome/content/rules/Adobe.xml - new file: src/chrome/content/rules/Adscale.xml - new file: src/chrome/content/rules/Adult-FriendFinder.xml - new file: src/chrome/content/rules/Aftonbladet.xml - new file: src/chrome/content/rules/Alipay.com.xml - modified: src/chrome/content/rules/Amazon.xml - new file: src/chrome/content/rules/Amazon_EU.xml - new file: src/chrome/content/rules/Amazon_JP.xml - modified: src/chrome/content/rules/Ameba.xml - new file: src/chrome/content/rules/Anyoption.com.xml - modified: src/chrome/content/rules/AppNexus.xml - modified: src/chrome/content/rules/Apple.xml - new file: src/chrome/content/rules/BBC.com.xml - modified: src/chrome/content/rules/BBC.xml - new file: src/chrome/content/rules/Battle.net.xml - modified: src/chrome/content/rules/Behance.xml - modified: src/chrome/content/rules/Bing.xml - modified: src/chrome/content/rules/Bitly.xml - modified: src/chrome/content/rules/Blogger.xml - modified: src/chrome/content/rules/Bluehost.xml - new file: src/chrome/content/rules/Box.xml - new file: src/chrome/content/rules/BrainyQuote.com.xml - modified: src/chrome/content/rules/BusinessInsider.xml - new file: src/chrome/content/rules/BuzzFeed.xml - new file: src/chrome/content/rules/CBS.xml - new file: src/chrome/content/rules/CNBC.xml - modified: src/chrome/content/rules/CareerBuilder.xml - modified: src/chrome/content/rules/Citibank.xml - modified: src/chrome/content/rules/Citrix.xml - modified: src/chrome/content/rules/ClickBank.xml - new file: src/chrome/content/rules/Clkads.com.xml - modified: src/chrome/content/rules/Comcast.xml - new file: src/chrome/content/rules/Commission_Junction.xml - new file: src/chrome/content/rules/Conduit.xml - modified: src/chrome/content/rules/Constant-Contact.xml - modified: src/chrome/content/rules/Dafont.com.xml - modified: src/chrome/content/rules/Dailymotion.xml - new file: src/chrome/content/rules/Deezer.xml - new file: src/chrome/content/rules/Dell.com-falsemixed.xml - modified: src/chrome/content/rules/Dell.xml - modified: src/chrome/content/rules/Deviantart.xml - new file: src/chrome/content/rules/Digg.xml - new file: src/chrome/content/rules/Digital_Point_Solutions.xml - modified: src/chrome/content/rules/Disqus.com.xml - modified: src/chrome/content/rules/Doubleclick.net.xml - new file: src/chrome/content/rules/Dreamstime.xml - modified: src/chrome/content/rules/Dropbox.xml - modified: src/chrome/content/rules/DuckDuckGo.xml - modified: src/chrome/content/rules/EZTV.xml - modified: src/chrome/content/rules/Etsy.xml - modified: src/chrome/content/rules/Eventbrite.xml - modified: src/chrome/content/rules/Evernote.xml - modified: src/chrome/content/rules/Examiner.com.xml - new file: src/chrome/content/rules/Exoclick.xml - new file: src/chrome/content/rules/Expedia.xml - modified: src/chrome/content/rules/EzineArticles.xml - new file: src/chrome/content/rules/FedEx.com.xml - new file: src/chrome/content/rules/Feedly.com.xml - new file: src/chrome/content/rules/Fhserve.com.xml - modified: src/chrome/content/rules/Flickr.xml - modified: src/chrome/content/rules/Focus.de.xml - modified: src/chrome/content/rules/Foursquare.com.xml - modified: src/chrome/content/rules/Freelancer.xml - modified: src/chrome/content/rules/Gawker.xml - modified: src/chrome/content/rules/Github.xml - new file: src/chrome/content/rules/Gizmodo.com.xml - new file: src/chrome/content/rules/Glassdoor.xml - modified: src/chrome/content/rules/GoDaddy.xml - modified: src/chrome/content/rules/Goodreads.xml - modified: src/chrome/content/rules/GoogleAPIs.xml - modified: src/chrome/content/rules/GoogleImages.xml - modified: src/chrome/content/rules/GoogleMainSearch.xml - modified: src/chrome/content/rules/GoogleSearch.xml - modified: src/chrome/content/rules/GoogleServices.xml - modified: src/chrome/content/rules/GoogleVideos.xml - modified: src/chrome/content/rules/HM.com.xml - new file: src/chrome/content/rules/Hatena.xml - modified: src/chrome/content/rules/Hewlett-Packard.xml - new file: src/chrome/content/rules/Home_Depot.com.xml - new file: src/chrome/content/rules/HootSuite.xml - new file: src/chrome/content/rules/HostGator.xml - new file: src/chrome/content/rules/Hotels.com.xml - new file: src/chrome/content/rules/HubSpot.xml - new file: src/chrome/content/rules/Huffington-Post.xml - new file: src/chrome/content/rules/Hulu.xml - modified: src/chrome/content/rules/IBM.xml - new file: src/chrome/content/rules/IGN-problematic.xml - modified: src/chrome/content/rules/IMDB.xml - modified: src/chrome/content/rules/Ikea.com.xml - modified: src/chrome/content/rules/Imgur.xml - modified: src/chrome/content/rules/Instagram.xml - new file: src/chrome/content/rules/Instructables.xml - modified: src/chrome/content/rules/Internet-Archive.xml - modified: src/chrome/content/rules/JQuery.xml - new file: src/chrome/content/rules/Justin.tv.xml - modified: src/chrome/content/rules/Kayak.xml - modified: src/chrome/content/rules/KickassTorrents.xml - modified: src/chrome/content/rules/Kickstarter.xml - modified: src/chrome/content/rules/Kohls.xml - new file: src/chrome/content/rules/LaPatilla.com.xml - modified: src/chrome/content/rules/Lenovo.xml - new file: src/chrome/content/rules/Leo.org.xml - new file: src/chrome/content/rules/Lifehacker.com.xml - new file: src/chrome/content/rules/Likes.xml - new file: src/chrome/content/rules/Linkbucks.xml - modified: src/chrome/content/rules/LinkedIn.xml - modified: src/chrome/content/rules/Live.xml - new file: src/chrome/content/rules/LiveInternet-falsemixed.xml - modified: src/chrome/content/rules/LiveJournal.xml - new file: src/chrome/content/rules/Los_Angeles_Times.xml - new file: src/chrome/content/rules/Lowes.com.xml - new file: src/chrome/content/rules/MGID.com.xml - modified: src/chrome/content/rules/Magento.xml - modified: src/chrome/content/rules/MailChimp.xml - new file: src/chrome/content/rules/Manta.xml - modified: src/chrome/content/rules/Marketwatch.com.xml - modified: src/chrome/content/rules/Mashable.com.xml - modified: src/chrome/content/rules/MediaFire.xml - new file: src/chrome/content/rules/Mega.xml - modified: src/chrome/content/rules/Microsoft.xml - modified: src/chrome/content/rules/Motherless.xml - modified: src/chrome/content/rules/Mozilla.xml - new file: src/chrome/content/rules/MyFitnessPal.xml - modified: src/chrome/content/rules/Myspace.xml - new file: src/chrome/content/rules/NBC-News.xml - modified: src/chrome/content/rules/NIFTY.xml - modified: src/chrome/content/rules/NPR.org.xml - modified: src/chrome/content/rules/NYDailyNews.xml - modified: src/chrome/content/rules/NYTimes.xml - modified: src/chrome/content/rules/NameCheap.xml - modified: src/chrome/content/rules/Netflix.xml - new file: src/chrome/content/rules/Nike.com.xml - modified: src/chrome/content/rules/Ning.xml - modified: src/chrome/content/rules/OkCupid.xml - new file: src/chrome/content/rules/Onclickads.net.xml - modified: src/chrome/content/rules/Oracle.xml - new file: src/chrome/content/rules/Outbrain.xml - new file: src/chrome/content/rules/Outlook_Live.xml - new file: src/chrome/content/rules/Overstock.com.xml - modified: src/chrome/content/rules/Ovh.xml - modified: src/chrome/content/rules/Pandora.xml - modified: src/chrome/content/rules/PayPal.xml - modified: src/chrome/content/rules/Pingdom.xml - modified: src/chrome/content/rules/Pinterest.xml - new file: src/chrome/content/rules/PlugRush.com.xml - new file: src/chrome/content/rules/PopAds.xml - new file: src/chrome/content/rules/PornHub.xml - modified: src/chrome/content/rules/Quora.xml - new file: src/chrome/content/rules/Rapidgator.net.xml - modified: src/chrome/content/rules/Reddit.xml - modified: src/chrome/content/rules/Reddit_via_pay.xml - new file: src/chrome/content/rules/RetailMeNot.com.xml - new file: src/chrome/content/rules/Reuters.com.xml - modified: src/chrome/content/rules/RightNow.xml - modified: src/chrome/content/rules/RottenTomatoes.xml - modified: src/chrome/content/rules/Salesforce.com.xml - new file: src/chrome/content/rules/Samsung.xml - new file: src/chrome/content/rules/Sape.xml - modified: src/chrome/content/rules/Sapo.pt.xml - new file: src/chrome/content/rules/Scoop.it.xml - modified: src/chrome/content/rules/Scribd.com.xml - new file: src/chrome/content/rules/ShareASale.com.xml - modified: src/chrome/content/rules/Shopify.xml - new file: src/chrome/content/rules/Shutterstock.xml - new file: src/chrome/content/rules/SiteAdvisor.com.xml - new file: src/chrome/content/rules/SitePoint.xml - new file: src/chrome/content/rules/Skype.xml - new file: src/chrome/content/rules/Slickdeals.xml - modified: src/chrome/content/rules/SlideShare.xml - new file: src/chrome/content/rules/Soundcloud.xml - modified: src/chrome/content/rules/SourceForge.xml - new file: src/chrome/content/rules/Speedtest.net.xml - new file: src/chrome/content/rules/Spiegel.xml - new file: src/chrome/content/rules/Spotify.xml - modified: src/chrome/content/rules/Squarespace.xml - modified: src/chrome/content/rules/Stack-Exchange-mixedcontent.xml - modified: src/chrome/content/rules/Stack-Exchange.xml - modified: src/chrome/content/rules/Statcounter.xml - new file: src/chrome/content/rules/Steam.xml - new file: src/chrome/content/rules/Steam_Community.com.xml - modified: src/chrome/content/rules/StumbleUpon.xml - new file: src/chrome/content/rules/Suddeutsche_Zeitung.xml - modified: src/chrome/content/rules/SurveyMonkey.xml - modified: src/chrome/content/rules/TED.xml - new file: src/chrome/content/rules/TMZ.com.xml - new file: src/chrome/content/rules/Taboola.xml - modified: src/chrome/content/rules/Taleo.xml - new file: src/chrome/content/rules/Taringa.xml - modified: src/chrome/content/rules/Telegraph-Media-Group.xml - new file: src/chrome/content/rules/Template_Monster.com.xml - new file: src/chrome/content/rules/The-Verge.xml - modified: src/chrome/content/rules/ThePirateBay.xml - modified: src/chrome/content/rules/Torrentz.xml - new file: src/chrome/content/rules/Tribune-mismatches.xml - new file: src/chrome/content/rules/TripAdvisor.xml - modified: src/chrome/content/rules/Tumblr.xml - new file: src/chrome/content/rules/TutsPlus.com.xml - modified: src/chrome/content/rules/Twitter.xml - new file: src/chrome/content/rules/Typepad.xml - new file: src/chrome/content/rules/UPS.com.xml - new file: src/chrome/content/rules/USA_Today.xml - modified: src/chrome/content/rules/USPS.xml - new file: src/chrome/content/rules/Uploaded.net.xml - new file: src/chrome/content/rules/Upworthy.com.xml - new file: src/chrome/content/rules/Urban-Dictionary.xml - new file: src/chrome/content/rules/VK-old.xml - modified: src/chrome/content/rules/VK.xml - modified: src/chrome/content/rules/Verizon.xml - new file: src/chrome/content/rules/Verizon_Wireless.xml - modified: src/chrome/content/rules/Vimeo.xml - modified: src/chrome/content/rules/W3C.xml - new file: src/chrome/content/rules/Walmart.com.xml - new file: src/chrome/content/rules/We-Heart-It.xml - new file: src/chrome/content/rules/WeTransfer.xml - modified: src/chrome/content/rules/Weather-Underground.xml - new file: src/chrome/content/rules/Web-Hosting-Talk.xml - modified: src/chrome/content/rules/Web.de.xml - new file: src/chrome/content/rules/Weebly-mixed.xml - new file: src/chrome/content/rules/Weebly.xml - new file: src/chrome/content/rules/WikiHow.com.xml - new file: src/chrome/content/rules/Wikia.xml - modified: src/chrome/content/rules/Wired.xml - new file: src/chrome/content/rules/Wix.xml - new file: src/chrome/content/rules/WooThemes.xml - new file: src/chrome/content/rules/WordPress-blogs.xml - modified: src/chrome/content/rules/WordPress.xml - new file: src/chrome/content/rules/XDA-Developers.com-falsemixed.xml - modified: src/chrome/content/rules/XDA-Developers.xml - new file: src/chrome/content/rules/XE.xml - new file: src/chrome/content/rules/XHamster.com.xml - modified: src/chrome/content/rules/Xing.xml - new file: src/chrome/content/rules/Xtube.com.xml - modified: src/chrome/content/rules/Yahoo.xml - modified: src/chrome/content/rules/Yandex.xml - new file: src/chrome/content/rules/Yelp.xml - modified: src/chrome/content/rules/YouTube.xml - new file: src/chrome/content/rules/Youm7.com-falsemixed.xml - new file: src/chrome/content/rules/Youm7.com.xml - new file: src/chrome/content/rules/Zanox.xml - new file: src/chrome/content/rules/Zappos.xml - modified: src/chrome/content/rules/Zendesk.com.xml - modified: src/chrome/content/rules/Zillow.xml - modified: src/chrome/content/rules/Zoho.xml - modified: src/chrome/content/rules/eHow.xml - new file: src/chrome/content/rules/leo.xml - -Untracked files: - (use "git add ..." to include in what will be committed) - - status.log - utils/alexa07042014.txt - diff --git a/utils/alexa-ruleset-checker.py b/utils/alexa-ruleset-checker.py deleted file mode 100755 index 30318eb266fd..000000000000 --- a/utils/alexa-ruleset-checker.py +++ /dev/null @@ -1,178 +0,0 @@ -#! /usr/bin/env python3.3 - -# Copyright 2014 Claudio Moretti -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. - -# -# This little piece of software works by downloading the Alexa Top 1M website list, which freely available, -# then it uses `git diff` to generate a list of XML ruleset files that are in the master branch but not in stable. -# Finally, it compares the two and prints the file name and path of every ruleset file that -# a) is in master but not in stable and -# b) has a target in the Alexa Top1M list -# - -import sys -import csv -import xml.etree.ElementTree as etree -import subprocess -import random -import urllib.request -import urllib.error -import zipfile -import os -import time - -# Variables and constants -sitesList = [] - -# Temporary file containing the `git diff` between master and stable -tmpRulesFileName = "/tmp/rulesDiff-" + format(random.randrange(1,65535)) # Feel free to enlarge if needed - -# URL of the Alexa Top1M -alexaTop1MURL = "http://s3.amazonaws.com/alexa-static/top-1m.csv.zip" -# alexaTop1MURL = "http://127.0.0.1/top-1m.csv.zip" - -# Temporary file name, to avoid conflicts -tmpAlexaFileName = "/tmp/alexa-top1M-" + format(random.randrange(1,65535)) + ".csv" - -# Logfile. Records the same output as the script -logFileName = "/tmp/alexa-ruleset-log-" + format(random.randrange(1,65535)) + ".log" - -# Filename of the CSV file contained in the Alexa zipfile -tmpAlexaZipFileContents = 'top-1m.csv' - -# Absolute path of the git repo (the folder containing src/) -# Remember to change this accordingly to your system, if you ever move the script -# -# By default, it refers to the parent directory of the one containing the script -# because the script was put in utils/ -# -# __NEEDS A TRAILING SLASH__ -# -# gitRepositoryPath = os.path.abspath(os.path.join(os.curdir, os.pardir)) -gitRepositoryPath = os.path.abspath(os.path.join(os.curdir, os.pardir)) + "/" - -# Maximum number of websites to use in the Alexa Top 1M (i.e. it's no longer 1M but maxSitesNumber) -# Set to -1 for 'unlimited' -maxSitesNumber = 1000 - -# Functions -def ruleLookup(target): - try: # list.index(value) throus an exception for a "not found", so if it throws it, it's not found - sitesList.index(target) - return 1 - except: - return 0 - -# Fetch the Alexa Top 1M - http://stackoverflow.com/questions/1517616/stream-large-binary-files-with-urllib2-to-file -try: - print("Retrieving Alexa Top1M from", alexaTop1MURL) - tmpAlexaZipFileName, headers = urllib.request.urlretrieve(alexaTop1MURL) - print("File downloaded and stored in %s" % tmpAlexaZipFileName) -except urllib.error.URLError as e: - print("Failed to download Alexa Top 1M") - sys.exit('Error message: %s' % e) - -# Now unzip it -try: - # Extract in /tmp/ - print("Start extracting %s" % tmpAlexaZipFileName) - tmpAlexaZipFile = zipfile.ZipFile(tmpAlexaZipFileName,'r') - tmpAlexaZipFile.extractall('/tmp/') -except zipfile.BadZipfile: - sys.exit("The zip file %s is corrupted.",tmpAlexaZipFileName) - -try: - # Rename the file to match the file with the random in it - os.rename('/tmp/' + tmpAlexaZipFileContents,tmpAlexaFileName) - print("Alexa Top1M retrieved and stored in %s" % tmpAlexaFileName) -except OSError as e: - print("Failed to rename /tmp/top-1M.csv to %s." % (tmpAlexaFileName)) - sys.exit('Error message: %s' % (e)) - -# Handles reading the Alexa Top 1M and pushing all sites in a list -sitesReader = csv.reader(open(tmpAlexaFileName), delimiter=',', quotechar='"') -for row in sitesReader: - try: - # Since some Alexa sites are not FQDNs, split where there's a "/" and keep ony the first part - siteFQDN = sitesList.append(row[1].split("/",1)[0]) - # print("Line %s: %s" % (sitesReader.line_num, sitesList[len(sitesList) - 1])) # Outputs the current line - if sitesReader.line_num == maxSitesNumber: - break - except csv.Error as e: - sys.exit('file %s, line %d: %s' % (tmpAlexaFileName, sitesReader.line_num, e)) - -# `git diff` the master revision against stable, rules folder only -try: - print("Create git diff between master and stable in %s" % tmpRulesFileName) - tmpRulesFile = open(tmpRulesFileName,"w") - #subprocess.call(['git', 'diff', '--name-status', 'master..remotes/origin/stable', '../src/chrome/content/rules'], stdout=tmpRulesFile) - subprocess.call(['git', 'diff', '--name-status', 'remotes/origin/stable..master', '../src/chrome/content/rules'], stdout=tmpRulesFile) - tmpRulesFile.close() -except OSError as e: - sys.exit('An OSError exception was raised: %s' % (e)) - -rulesList = open(tmpRulesFileName, 'r') -logFile = open(logFileName,'w') -logFile.write("Log file generated on %s.\nPaths are relative to the root directory of the git repo.\n\n" % time.strftime("%Y-%m-%d %H:%M:%S")) - -# Let's keep track of how many rules were added and how many were modified -# Must be declared here or won't be available at the end of the loop -countAddedRules = 0 -countEditedRules = 0 - -# Start parsing the list -for line in rulesList: - try: - # Split into "file mode in commit + file path" - ruleFile = line.split() - found = 0 - # If file mode is "A" (add) or "M" (edited) - if ruleFile[0] == "A" or ruleFile[0] == "M": # If file was added or edited between stable and master, parse - ruleFileObject= open(gitRepositoryPath + ruleFile[1]) - ruleText = etree.parse(ruleFileObject) # ADJUST FILE PATH (here is '../') IF YOU MOVE THE SCRIPT - XXX: Obsolete warning? - for target in ruleText.findall('target'): - FQDN = target.get('host') # URL of the website - if ruleLookup(FQDN) == 1: # Look it up in the sitesList - # Message different according to file mode - if ruleFile[0] == "A": # New - found = "NEW" - countAddedRules = countAddedRules + 1 - break - elif ruleFile[0] == "M": # Edited - found = "EDITED" - countEditedRules = countEditedRules + 1 - break - - # If found, print it TABULATED - if found != 0: - print("%s:\t%s" % (found, ruleFile[1])) - logFile.write("%s:\t%s" % (found, ruleFile[1])) - - # else ignore - # There are some problems with file name encoding. So, for now, just print an error and pass - except FileNotFoundError as e: # Won't happen before line.split() is invoked - print("File not found:", ruleFile[1]) -# logFile.write ("File not found: %s\n" % ruleFile[1]) - logFile.write("%s\n" % e) - pass - except IOError as ioe: #Treated same as FileNotFoundError - print("File not found:", ruleFile[1]) -# logFile.write ("File not found: %s\n" % ruleFile[1]) - logFile.write("%s\n" % e) - pass - - - -# Print our simple statistics -print("\n\nStatistics:\nParsed rules: %s\nNewly added rules: %s\nEdited rules: %d" % (maxSitesNumber, countAddedRules, countEditedRules)) -logFile.write("\n\nStatistics:\nParsed rules: %s\nNewly added rules: %s\nEdited rules: %d" % (maxSitesNumber, countAddedRules, countEditedRules)) -print("\n\nLog file can be found at %s" % logFileName) - -# Close the rules file -rulesList.close() -# And the log file -logFile.close() diff --git a/utils/android-push.sh b/utils/android-push.sh index 5a0421326a35..6e09b50c70c4 100755 --- a/utils/android-push.sh +++ b/utils/android-push.sh @@ -11,15 +11,32 @@ fi # Push to Android Firefox if device is connected # XXX on some systems, adb may require sudo... -if type adb > /dev/null 2>/dev/null && adb devices >/dev/null 2>/dev/null ; then - ADB_FOUND=`adb devices | grep -v 'offline$' | tail -2 | head -1 | cut -f 1 | sed 's/ *$//g'` - if [ "$ADB_FOUND" != "List of devices attached" ]; then - echo Pushing "$XPI_NAME" to /sdcard/"$XPI_NAME" - adb push "../$XPI_NAME" /sdcard/"$XPI_NAME" - adb shell am start -a android.intent.action.VIEW \ - -c android.intent.category.DEFAULT \ - -d file:///mnt/sdcard/pkg/ \ - -n $ANDROID_APP_ID/.App +if type adb > /dev/null 2>/dev/null ; then + #running `adb devices` below will start adb server/daemon if it wasn't running already + #we start it and make note if it's us that started it or not, so we can stop it afterwards + if adb start-server 2>&1 |grep -qF 'daemon not running' ; then + we_started_adb_daemon=1 + else + we_started_adb_daemon=0 + fi + on_exit() { + if test "$we_started_adb_daemon" == "1"; then + #if we started it we kill it, to avoid constant dmesg PME# spam, see issue 18103 + adb kill-server + fi + } + trap on_exit EXIT SIGINT + + if adb devices >/dev/null 2>/dev/null ; then + ADB_FOUND=`adb devices | grep -v 'offline$' | tail -2 | head -1 | cut -f 1 | sed 's/ *$//g'` + if [ "$ADB_FOUND" != "List of devices attached" ]; then + echo Pushing "$XPI_NAME" to /sdcard/"$XPI_NAME" + adb push "../$XPI_NAME" /sdcard/"$XPI_NAME" + adb shell am start -a android.intent.action.VIEW \ + -c android.intent.category.DEFAULT \ + -d file:///mnt/sdcard/pkg/ \ + -n $ANDROID_APP_ID/.App + fi fi fi diff --git a/utils/check_certs.py b/utils/check_certs.py deleted file mode 100755 index e9548706f341..000000000000 --- a/utils/check_certs.py +++ /dev/null @@ -1,40 +0,0 @@ -#!/usr/bin/env python2.7 - -import sys -import re -from subprocess import Popen, PIPE -from glob import glob - -host_targets = re.compile(r' in " + fname) - continue - successes = [] - failures = [] - for h in hosts: - h2 = h.replace("*", "www") - cmd = Popen(wget_cmd(h2), stdout=PIPE, stderr=PIPE) - out, err = cmd.communicate() - for l in err.split("\n"): - if "certificate" in l: - failures.append(l) - break - else: - successes.append(h) - if successes and not failures: - print(fname + " no cert warnings") - elif failures and not successes: - print(fname + " categorical failure:") - for f in failures: - print(" " + f) - else: - print(fname + " mixed results:") - for s in successes: - print(" " + s + " is OK") - for f in failures: - print(" " + f) - diff --git a/utils/chromium-translations.py b/utils/chromium-translations.py index 2efcb5644c7e..a9d7318efc13 100644 --- a/utils/chromium-translations.py +++ b/utils/chromium-translations.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python2.7 +#!/usr/bin/env python3 """ Given two directories, copy Firefox-style https-everywhere.dtd translations from the first directory into appropriately-named Chromium-style messages.json @@ -15,23 +15,25 @@ message_regex = re.compile("") def convert(locale): - target_messages = {} - with open(os.path.join(source_dir, locale, "https-everywhere.dtd")) as f: - for line in f: - m = message_regex.search(line) - if m: - message_name = m.group(1) - message_value = m.group(2) - message_name = re.sub("[.-]", "_", message_name) - target_messages[message_name] = { - "message": message_value - } - target_dir = os.path.join(dest_dir, locale) - if not os.path.isdir(target_dir): - os.mkdir(target_dir) - with open(os.path.join(target_dir, "messages.json"), "w") as out_file: - out_file.write(json.dumps(target_messages, sort_keys=True, indent=4)) + translation_file = os.path.join(source_dir, locale, "https-everywhere.dtd") + if os.path.isfile(translation_file): + target_messages = {} + with open(translation_file, 'r', encoding='utf-8') as f: + for line in f: + m = message_regex.search(line) + if m: + message_name = m.group(1) + message_value = m.group(2) + message_name = re.sub("[.-]", "_", message_name) + target_messages[message_name] = { + "message": message_value + } + target_dir = os.path.join(dest_dir, locale) + if not os.path.isdir(target_dir): + os.mkdir(target_dir) + with open(os.path.join(target_dir, "messages.json"), "w") as out_file: + out_file.write(json.dumps(target_messages, sort_keys=True, indent=4)) for locale in os.listdir(source_dir): if not "." in locale: - convert(locale) + convert(locale) diff --git a/utils/compare-locales.sh b/utils/compare-locales.sh deleted file mode 100755 index dfcc6986fa78..000000000000 --- a/utils/compare-locales.sh +++ /dev/null @@ -1,30 +0,0 @@ -#!/bin/sh -set -eu; - -# For an XPI passed on the command line, check whether all locale directories -# listed in the manifest include every entity defined in the English locale DTDs. -# (Missing an entity is a fatal error.) - -status=0; - -TMPDIR="`mktemp -d -t helocalesXXXX`" -trap 'rm -r "${TMPDIR}"' EXIT -unzip -qd "${TMPDIR}" "$1" chrome/locale/* chrome.manifest -cd ${TMPDIR}/chrome/locale/; - -LANGS="`sed -n 's,^locale https-everywhere .* chrome/locale/\(.*\)/$,\1,p' ${TMPDIR}/chrome.manifest`" -grep '^ ${TMPDIR}/en_entities; - -lang_entities_list() { - grep '^ { push(null, _.nil); }); }) -.flatMap(_) -.pipe(_.pipeline( - base64.decode(), - _.split(), - _.filter(line => !/^\s*\/\//.test(line)), - JSONStream.parse('entries.*') -)) -.reduce({ - xml: xmlBuilder.create('rulesetlibrary'), - rulesets: new Map(), - greedyInclusions: '(?!)', - potentialExclusions: new Map() -}, (acc, { name, mode = '', include_subdomains = false }) => { - if (mode === 'force-https') { - const ruleset = acc.xml.ele('ruleset', { name }); - acc.rulesets.set(name, ruleset); - ruleset.ele('target', { - host: name - }); - if (include_subdomains) { - acc.greedyInclusions += `|${hostToRegex(name)}`; + .flatMap(_) + .pipe(_.pipeline( + base64.decode(), + _.split(), + _.filter(line => !/^\s*\/\//.test(line)), + JSONStream.parse('entries.*') + )) + .reduce({ + xml: xmlBuilder.create('rulesetlibrary'), + rulesets: new Map(), + greedyInclusions: '(?!)', + potentialExclusions: new Map() + }, (acc, { name, mode = '', include_subdomains = false }) => { + if (mode === 'force-https') { + const ruleset = acc.xml.ele('ruleset', { name }); + acc.rulesets.set(name, ruleset); ruleset.ele('target', { - host: `*.${name}` - }); - } - ruleset.ele('rule', { - from: '^http:', - to: 'https:' - }); - } else { - acc.potentialExclusions.set(name, include_subdomains); - } - return acc; -}) -.map(acc => { - const regexp = new RegExp(`\.(${acc.greedyInclusions})$`); - for (const [ name, include_subdomains ] of acc.potentialExclusions) { - const match = name.match(regexp); - if (match) { - const ruleset = acc.rulesets.get(match[1]); - ruleset.ele('exclusion', { - pattern: `^http://${include_subdomains ? '(?:[\\w-]+\\.)*' : ''}${hostToRegex(name)}/` - }); - ruleset.ele('test', { - url: `http://${name}/` + host: name }); if (include_subdomains) { + acc.greedyInclusions += `|${hostToRegex(name)}`; + ruleset.ele('target', { + host: `*.${name}` + }); + } + ruleset.ele('rule', { + from: '^http:', + to: 'https:' + }); + } else { + acc.potentialExclusions.set(name, include_subdomains); + } + return acc; + }) + .map(acc => { + const regexp = new RegExp(`\.(${acc.greedyInclusions})$`); + for (const [ name, include_subdomains ] of acc.potentialExclusions) { + const match = name.match(regexp); + if (match) { + const ruleset = acc.rulesets.get(match[1]); + ruleset.ele('exclusion', { + pattern: `^http://${include_subdomains ? '(?:[\\w-]+\\.)*' : ''}${hostToRegex(name)}/` + }); ruleset.ele('test', { - url: `http://host-part.${name}/` + url: `http://${name}/` }); + if (include_subdomains) { + ruleset.ele('test', { + url: `http://host-part.${name}/` + }); + } } } - } - return acc.xml.end({ pretty: true }); -}) -.pipe(fs.createWriteStream(`${__dirname}/hsts.xml`)); + return acc.xml.end({ pretty: true }); + }) + .pipe(fs.createWriteStream(`${__dirname}/hsts.xml`)); diff --git a/utils/create-platform-certs/.gitignore b/utils/create-platform-certs/.gitignore new file mode 100644 index 000000000000..45b7a69b29ba --- /dev/null +++ b/utils/create-platform-certs/.gitignore @@ -0,0 +1,2 @@ +certdata.txt +mk-ca-bundle.pl diff --git a/utils/create-platform-certs/README.md b/utils/create-platform-certs/README.md new file mode 100644 index 000000000000..35986902d079 --- /dev/null +++ b/utils/create-platform-certs/README.md @@ -0,0 +1,17 @@ +# create-platform-certs + +This repository creates and fills `test/rules/platform_certs/default/`. + +## Setup + +Download `certdata.txt` and `mk-ca-bundle.pl` and put them in this directory. +You can find the download locations in `SHA256SUMS`. + +## Run + +You can repopulate the certificates with `create_platform_certs.sh`. The +certificates should be bit-for-bit identical if you use the same `certdata.txt` +and `mk-ca-bundle.pl`. + +You can update the certificates by using a new `certdata.txt` and +`mk-ca-bundle.pl`. Be sure to also update `SHA256SUMS`. diff --git a/utils/create-platform-certs/SHA256SUMS b/utils/create-platform-certs/SHA256SUMS new file mode 100644 index 000000000000..59c7f8083fe0 --- /dev/null +++ b/utils/create-platform-certs/SHA256SUMS @@ -0,0 +1,5 @@ +# Use `curl -I 'https://download.mozilla.org/?product=firefox-latest&os=linux64&lang=en_US'` to determine the latest stable version, and replace the tag in the URL below. +# https://hg.mozilla.org/releases/mozilla-release/raw-file/FIREFOX_73_0_1_RELEASE/security/nss/lib/ckfw/builtins/certdata.txt +f3bdcd74612952da8476a9d4147f50b29ad0710b7dd95b4c8690500209986d70 certdata.txt +# https://raw.githubusercontent.com/curl/curl/curl-7_69_0/lib/mk-ca-bundle.pl +9d828d97053868907ce6229d132132f0f26772393405dadd037b6f85a5c5b219 mk-ca-bundle.pl diff --git a/utils/create-platform-certs/create_platform_certs.sh b/utils/create-platform-certs/create_platform_certs.sh new file mode 100755 index 000000000000..8b2b1739c668 --- /dev/null +++ b/utils/create-platform-certs/create_platform_certs.sh @@ -0,0 +1,26 @@ +#!/usr/bin/env bash +set -xe + +GIT_REPO_TOP_LEVEL="$(git rev-parse --show-toplevel)" + +cd "${GIT_REPO_TOP_LEVEL}"/utils/create-platform-certs + +COMBINED_CERT_FILE=./ca-bundle.crt +HASH_FILE=./SHA256SUMS +MK_CA_BUNDLE_PL_EXEC=./mk-ca-bundle.pl +SPLIT_CERT_DIR="${GIT_REPO_TOP_LEVEL}"/test/rules/platform_certs/default/ +SPLIT_COMBINED_CERT_FILE_EXEC=./split_combined_cert_file.py + +sha256sum -c "${HASH_FILE}" + +git rm -r -f -q "${SPLIT_CERT_DIR}" + +perl "${MK_CA_BUNDLE_PL_EXEC}" -n "${COMBINED_CERT_FILE}" + +python3 "${SPLIT_COMBINED_CERT_FILE_EXEC}" "${COMBINED_CERT_FILE}" "${SPLIT_CERT_DIR}" + +c_rehash "${SPLIT_CERT_DIR}" > /dev/null + +rm "${COMBINED_CERT_FILE}" + +git add "${SPLIT_CERT_DIR}" diff --git a/utils/create-platform-certs/split_combined_cert_file.py b/utils/create-platform-certs/split_combined_cert_file.py new file mode 100755 index 000000000000..783d54ebf105 --- /dev/null +++ b/utils/create-platform-certs/split_combined_cert_file.py @@ -0,0 +1,37 @@ +#!/usr/bin/env python3 +import argparse +import codecs +import os +import pathlib +import re + +if __name__ == '__main__': + parser = argparse.ArgumentParser() + parser.add_argument( + 'cert_file', + help='combined crt/pem file to split', + ) + parser.add_argument( + 'output_dir', + help='output directory for split files', + ) + args = parser.parse_args() + with codecs.open(args.cert_file, 'r', encoding='utf-8') as cert_file: + bundle = cert_file.read() + certs = re.compile('\n{2,}').split(bundle) + + # First element of certs is a comment + certs = certs[1:] + cert_filename_num_width = len(str(len(certs))) + pathlib.Path(args.output_dir).mkdir(parents=True, exist_ok=True) + for index, cert in enumerate(certs): + cert_name, cert_content = re.compile("\n=+\n").split(cert) + cert_filename = os.path.join( + args.output_dir, + "cert{}.pem".format(str(index+1).zfill(cert_filename_num_width)) + ) + with codecs.open( + cert_filename, 'w', encoding='utf-8') as cert_file: + cert_file.write("%s\n" % cert_name) + cert_file.write(cert_content) + cert_file.write('\n') diff --git a/utils/create_xpi.py b/utils/create_xpi.py deleted file mode 100755 index 6670775685da..000000000000 --- a/utils/create_xpi.py +++ /dev/null @@ -1,40 +0,0 @@ -#!/usr/bin/env python2.7 - -# Uses the Python zip implementation to create deterministic XPI's -# Author: Yan Zhu, yan@mit.edu - -""" -Usage: python create_xpi.py -x -n -""" - -import argparse -import glob -import os -import sys -import zipfile_deterministic as zipfile - -parser = argparse.ArgumentParser( - description="Deterministic XPI file creator.") -parser.add_argument("-x", type=str, nargs="?", - dest="exclusions", metavar="File with file pattern exclusions", - default=".build_exclusions", help="Excluded file patterns.") -parser.add_argument("-n", type=str, - dest="xpiname", help="Name of target XPI file.") -parser.add_argument("directory", type=str, - help="Directory to compress.") - -args = parser.parse_args() - -exclusions = [] -with open(args.exclusions) as f: - for line in f: - exclusions.extend(glob.glob(line.strip())) -exclusions = map(lambda x: './'+x, exclusions) - -compress = zipfile.ZIP_DEFLATED - -xpiFile = zipfile.ZipFile(args.xpiname, mode='w', compression=compress) - -os.chdir(args.directory) -xpiFile.write_from_directory(".", exclusions, compress_type=compress) -xpiFile.close() diff --git a/utils/create_zip.py b/utils/create_zip.py new file mode 100755 index 000000000000..d8af693fa17b --- /dev/null +++ b/utils/create_zip.py @@ -0,0 +1,41 @@ +#!/usr/bin/env python3 + +# Uses the Python zip implementation to create deterministic zip's +# Author: Yan Zhu, yan@mit.edu + +""" +Usage: python3 create_zip.py -x -n +""" + +import argparse +import glob +import os +import zipfile_deterministic as zipfile + +parser = argparse.ArgumentParser( + description="Deterministic zip file creator.") +parser.add_argument("-x", type=str, nargs="?", + dest="exclusions", metavar="File with file pattern exclusions", + default=".build_exclusions", help="Excluded file patterns.") +parser.add_argument("-n", type=str, + dest="zipname", help="Name of target zip file.") +parser.add_argument("directory", type=str, + help="Directory to compress.") + +args = parser.parse_args() + +compress = zipfile.ZIP_DEFLATED + +createdZipFile = zipfile.ZipFile(args.zipname, mode='w', compression=compress) + +f = open(args.exclusions) + +os.chdir(args.directory) + +exclusions = [] +for line in f: + exclusions.extend(glob.glob(line.strip())) +exclusions = list(map(lambda x: './'+x, exclusions)) + +createdZipFile.write_from_directory(".", exclusions, compress_type=compress) +createdZipFile.close() diff --git a/utils/dbconnect.py b/utils/dbconnect.py deleted file mode 100644 index df93da56c547..000000000000 --- a/utils/dbconnect.py +++ /dev/null @@ -1,24 +0,0 @@ -#!/usr/bin/env python2.7 -import MySQLdb - -try: from db_private import DB_USER -except: DB_USER = "root" # customise for your install - -try: from db_private import DB_PASS -except: DB_PASS = "root" # customise - -try: from db_private import DB_NAME -except: DB_NAME = "observatory_api" - -TEST_DB_NAME = "tmp_TESTDB1" - -def dbconnect(): - db = MySQLdb.connect(user=DB_USER, passwd=DB_PASS, db=DB_NAME) - dbc = db.cursor() - return db,dbc - -def dbconnecttest(): - db = MySQLdb.connect(user=DB_USER, passwd=DB_PASS, db=TEST_DB_NAME) - dbc = db.cursor() - return db,dbc - diff --git a/utils/duplicate-whitelist-cleanup.sh b/utils/duplicate-whitelist-cleanup.sh deleted file mode 100755 index 837ca5792460..000000000000 --- a/utils/duplicate-whitelist-cleanup.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh - -TMPFILE=`mktemp /tmp/buffer.XXXXXXXX` -trap 'rm "$TMPFILE"' EXIT - -for host in `cat utils/duplicate-whitelist.txt`; do - REPEATS=`grep -F "target host=\"$host\"" src/chrome/content/rules/*.xml | wc -l` - if [ $REPEATS -gt 1 ]; then - echo $host - fi -done > $TMPFILE - -cp --force $TMPFILE utils/duplicate-whitelist.txt diff --git a/utils/duplicate-whitelist.txt b/utils/duplicate-whitelist.txt deleted file mode 100644 index 488f77a5e864..000000000000 --- a/utils/duplicate-whitelist.txt +++ /dev/null @@ -1,205 +0,0 @@ -portuguese.101domain.com -spanish.101domain.com -a.abcnews.com -abcnews.go.com -acm.org -feedback.adroll.com -addons.videolan.org -adyadvantage.com -aftenposten.no -arch-stuff.org -articulate.com -www1.arun.gov.uk -rog.asus.com -*.bcvs.ch -bcvs.ch -beryl-themes.org -*.bethsoft.com -bethsoft.com -box-look.org -bt.no -www.wolfson.cam.ac.uk -cccure.training -mailing.channel4.com -training.citrix.com -cli-apps.org -consumerreports.org -controllermax.com -creativeskills.be -crunchboard.com -c-spanvideo.org -danblah.com -davidsontutoring.com -debian-art.org -dell.com -www.dell.com -investors.demandware.com -dice.com -www.dice.com -www.downthemall.net -drownedinsound.com -e17-stuff.org -*.ebaystatic.com -ede-look.org -now.eloqua.com -emergingthreats.net -*.eveonline.com -eveonline.com -eyeos-apps.org -fishwrapper.com -www.fonts.com -foxydeal.com -foxydeal.de -freeporngif.com -www.freeporngif.com -frugalware-art.org -g33kinfo.com -www.g33kinfo.com -genivi.org -gentoo-art.org -geocaching.com -www.geocaching.com -www.gfi.com -forum.girlsoutwest.com -forums.girlsoutwest.com -gnomefiles.org -gnome-help.org -gnome-look.org -a.abcnews.go.com -google.* -google.co.* -*.google.com -google.com -google.com.* -gsu.edu -gtk-apps.org -gymglish.* -gymglish.com.br -gymglish.co.uk -hak5.org -www.hak5.org -code.highcharts.com -hollywoodoutlaws.com -hometheaterreview.com -hostoople.com -ieeexplore.ieee.org -inc.com -inductionsolutions.com -infinet.com.au -newsroom.intel.com -ionicframework.com -www.ionicframework.com -ivegotkids.com -java-apps.org -ideas.joomla.org -jrrt.org.uk -developer.kaazing.com -kde-apps.org -kde-files.org -kde-help.org -kde-look.org -www.kinfolk.com -esat.kuleuven.be -www.esat.kuleuven.be -latimes.com -liberalamerica.org -liftdna.com -linbit.com -jobs.linux.com -linux42.org -linuxdaily.com -wiki.linuxlovers.at -linuxmint-art.org -livejournal.com -server.iad.liveperson.net -maemo-apps.org -mandiant.com -mediciglobal.com -megaglest.org -mirrorbingo.com -misadventureswithandi.com -fundusze-emerytalne.money.pl -fundusze-inwestycyjne.money.pl -karty-kredytowe.money.pl -kredyty-gotowkowe.money.pl -kredyty-mieszkaniowe.money.pl -kredyty-samochodowe.money.pl -lokaty-bankowe.money.pl -nelonen.fi -www.nelonen.fi -netnow.co -www.netnow.co -npmawesome.com -nydailynews.com -webmail.nyi.net -nykeurope.com -oag.com -opendesktop.org -open-pc.com -blog.openhub.net -openskillz.com -opentemplate.org -orange.jobs -osdv.org -passmark.com -careers.peopleclick.com -pdu.edu -plusme.net -qt-apps.org -www.rackspace.com -redbullmobile.at -reddpics.com -www.retriever-info.com -www.cits.ruhr-uni-bochum.de -www.ruhr-uni-bochum.de -sandsmedia.com -savethechildren.org.uk -www2.scribblelive.com -scribusstuff.org -sharideangelo.com -*.shopping.com -snapengage.com -sparxtrading.com -suppliesfordreams.org -suse-art.org -www.techrepublic.com -elearn.tenable.com -tesco.com -test-ipv6.cz -thedilbertstore.com -thefederalistpapers.org -thompsonhotels.com -ti.com -www.ti.com -togevi.com -www.toplist.cz -blog.trendmicro.com -countermeasures.trendmicro.eu -tripwire.com -www.tripwire.com -flow.typo3.org -ubuntu-art.org -ul.ie -unm.edu -businessforums.verizon.net -vlc-addons.org -help.walmart.com -members.webs.com -weebly.com -digitalcommons.wustl.edu -openscholarship.wustl.edu -wine-apps.org -winzip.com -www.blogsmithmedia.com -www.cccure.training -www.google.* -www.google.co.* -www.google.com.* -www.gymglish.* -www.hostingcatalog.com -www.squarefree.com -xfce-help.org -xfce-look.org -eromang.zataz.com -zylon.net -www.zylon.net diff --git a/utils/eff-pubkey.der b/utils/eff-pubkey.der deleted file mode 100644 index b7e2669ec8ad..000000000000 Binary files a/utils/eff-pubkey.der and /dev/null differ diff --git a/utils/eslint/package-lock.json b/utils/eslint/package-lock.json new file mode 100644 index 000000000000..066503c6a00e --- /dev/null +++ b/utils/eslint/package-lock.json @@ -0,0 +1,897 @@ +{ + "requires": true, + "lockfileVersion": 1, + "dependencies": { + "@babel/code-frame": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", + "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", + "dev": true, + "requires": { + "@babel/highlight": "^7.10.4" + } + }, + "@babel/helper-validator-identifier": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz", + "integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==", + "dev": true + }, + "@babel/highlight": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz", + "integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==", + "dev": true, + "requires": { + "@babel/helper-validator-identifier": "^7.10.4", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "dependencies": { + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + } + } + }, + "@eslint/eslintrc": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.1.0.tgz", + "integrity": "sha512-bfL5365QSCmH6cPeFT7Ywclj8C7LiF7sO6mUGzZhtAMV7iID1Euq6740u/SRi4C80NOnVz/CEfK8/HO+nCAPJg==", + "dev": true, + "requires": { + "ajv": "^6.12.4", + "debug": "^4.1.1", + "import-fresh": "^3.2.1", + "strip-json-comments": "^3.1.1" + } + }, + "@types/color-name": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz", + "integrity": "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==", + "dev": true + }, + "acorn": { + "version": "7.4.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.0.tgz", + "integrity": "sha512-+G7P8jJmCHr+S+cLfQxygbWhXy+8YTVGzAkpEbcLo2mLoL7tij/VG41QSHACSf5QgYRhMZYHuNc6drJaO0Da+w==", + "dev": true + }, + "acorn-jsx": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.2.0.tgz", + "integrity": "sha512-HiUX/+K2YpkpJ+SzBffkM/AQ2YE03S0U1kjTLVpoJdhZMOWy8qvXVN9JdLqv2QsaQ6MPYQIuNmwD8zOiYUofLQ==", + "dev": true + }, + "ajv": { + "version": "6.12.4", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.4.tgz", + "integrity": "sha512-eienB2c9qVQs2KWexhkrdMLVDoIQCz5KSeLxwg9Lzk4DOfBtIK9PQwwufcsn1jjGuf9WZmqPMbGxOzfcuphJCQ==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ansi-colors": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", + "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==", + "dev": true + }, + "ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "requires": { + "sprintf-js": "~1.0.2" + } + }, + "astral-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz", + "integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==", + "dev": true + }, + "balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", + "dev": true + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true + }, + "chalk": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", + "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz", + "integrity": "sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==", + "dev": true, + "requires": { + "@types/color-name": "^1.1.1", + "color-convert": "^2.0.1" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + }, + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + } + }, + "debug": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", + "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", + "dev": true, + "requires": { + "ms": "^2.1.1" + } + }, + "deep-is": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", + "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=", + "dev": true + }, + "doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "requires": { + "esutils": "^2.0.2" + } + }, + "emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "dev": true + }, + "enquirer": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", + "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", + "dev": true, + "requires": { + "ansi-colors": "^4.1.1" + } + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "dev": true + }, + "eslint": { + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.8.0.tgz", + "integrity": "sha512-qgtVyLZqKd2ZXWnLQA4NtVbOyH56zivOAdBFWE54RFkSZjokzNrcP4Z0eVWsZ+84ByXv+jL9k/wE1ENYe8xRFw==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.0.0", + "@eslint/eslintrc": "^0.1.0", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.0.1", + "doctrine": "^3.0.0", + "enquirer": "^2.3.5", + "eslint-scope": "^5.1.0", + "eslint-utils": "^2.1.0", + "eslint-visitor-keys": "^1.3.0", + "espree": "^7.3.0", + "esquery": "^1.2.0", + "esutils": "^2.0.2", + "file-entry-cache": "^5.0.1", + "functional-red-black-tree": "^1.0.1", + "glob-parent": "^5.0.0", + "globals": "^12.1.0", + "ignore": "^4.0.6", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "js-yaml": "^3.13.1", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash": "^4.17.19", + "minimatch": "^3.0.4", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "progress": "^2.0.0", + "regexpp": "^3.1.0", + "semver": "^7.2.1", + "strip-ansi": "^6.0.0", + "strip-json-comments": "^3.1.0", + "table": "^5.2.3", + "text-table": "^0.2.0", + "v8-compile-cache": "^2.0.3" + } + }, + "eslint-scope": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.0.tgz", + "integrity": "sha512-iiGRvtxWqgtx5m8EyQUJihBloE4EnYeGE/bz1wSPwJE6tZuJUtHlhqDM4Xj2ukE8Dyy1+HCZ4hE0fzIVMzb58w==", + "dev": true, + "requires": { + "esrecurse": "^4.1.0", + "estraverse": "^4.1.1" + } + }, + "eslint-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", + "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", + "dev": true, + "requires": { + "eslint-visitor-keys": "^1.1.0" + } + }, + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true + }, + "espree": { + "version": "7.3.0", + "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.0.tgz", + "integrity": "sha512-dksIWsvKCixn1yrEXO8UosNSxaDoSYpq9reEjZSbHLpT5hpaCAKTLBwq0RHtLrIr+c0ByiYzWT8KTMRzoRCNlw==", + "dev": true, + "requires": { + "acorn": "^7.4.0", + "acorn-jsx": "^5.2.0", + "eslint-visitor-keys": "^1.3.0" + } + }, + "esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true + }, + "esquery": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.3.1.tgz", + "integrity": "sha512-olpvt9QG0vniUBZspVRN6lwB7hOZoTRtT+jzR+tS4ffYx2mzbw+z0XCOk44aaLYKApNX5nMm+E+P6o25ip/DHQ==", + "dev": true, + "requires": { + "estraverse": "^5.1.0" + }, + "dependencies": { + "estraverse": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", + "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", + "dev": true + } + } + }, + "esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "requires": { + "estraverse": "^5.2.0" + }, + "dependencies": { + "estraverse": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", + "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", + "dev": true + } + } + }, + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true + }, + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", + "dev": true + }, + "file-entry-cache": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-5.0.1.tgz", + "integrity": "sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g==", + "dev": true, + "requires": { + "flat-cache": "^2.0.1" + } + }, + "flat-cache": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-2.0.1.tgz", + "integrity": "sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA==", + "dev": true, + "requires": { + "flatted": "^2.0.0", + "rimraf": "2.6.3", + "write": "1.0.3" + } + }, + "flatted": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-2.0.2.tgz", + "integrity": "sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA==", + "dev": true + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true + }, + "functional-red-black-tree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", + "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=", + "dev": true + }, + "glob": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", + "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "requires": { + "is-glob": "^4.0.1" + } + }, + "globals": { + "version": "12.4.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz", + "integrity": "sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==", + "dev": true, + "requires": { + "type-fest": "^0.8.1" + } + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "dev": true + }, + "import-fresh": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.2.1.tgz", + "integrity": "sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ==", + "dev": true, + "requires": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + } + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", + "dev": true + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true + }, + "is-glob": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", + "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", + "dev": true, + "requires": { + "is-extglob": "^2.1.1" + } + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", + "dev": true + }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true + }, + "js-yaml": { + "version": "3.14.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.0.tgz", + "integrity": "sha512-/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A==", + "dev": true, + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", + "dev": true + }, + "levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "requires": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + } + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", + "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==", + "dev": true + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", + "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", + "dev": true, + "requires": { + "minimist": "^1.2.5" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", + "dev": true + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "requires": { + "wrappy": "1" + } + }, + "optionator": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", + "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", + "dev": true, + "requires": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.3" + } + }, + "parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "requires": { + "callsites": "^3.0.0" + } + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true + }, + "prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true + }, + "progress": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "dev": true + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "dev": true + }, + "regexpp": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.1.0.tgz", + "integrity": "sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q==", + "dev": true + }, + "resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true + }, + "rimraf": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", + "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, + "semver": { + "version": "7.3.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.2.tgz", + "integrity": "sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==", + "dev": true + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true + }, + "slice-ansi": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz", + "integrity": "sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.0", + "astral-regex": "^1.0.0", + "is-fullwidth-code-point": "^2.0.0" + } + }, + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", + "dev": true + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "dev": true, + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz", + "integrity": "sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g==", + "dev": true + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", + "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.0" + } + }, + "strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + }, + "table": { + "version": "5.4.6", + "resolved": "https://registry.npmjs.org/table/-/table-5.4.6.tgz", + "integrity": "sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug==", + "dev": true, + "requires": { + "ajv": "^6.10.2", + "lodash": "^4.17.14", + "slice-ansi": "^2.1.0", + "string-width": "^3.0.0" + } + }, + "text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", + "dev": true + }, + "type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "requires": { + "prelude-ls": "^1.2.1" + } + }, + "type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "dev": true + }, + "uri-js": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.0.tgz", + "integrity": "sha512-B0yRTzYdUCCn9n+F4+Gh4yIDtMQcaJsmYBDsTSG8g/OejKBodLQ2IHfN3bM7jUsRXndopT7OIXWdYqc1fjmV6g==", + "dev": true, + "requires": { + "punycode": "^2.1.0" + } + }, + "v8-compile-cache": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.1.1.tgz", + "integrity": "sha512-8OQ9CL+VWyt3JStj7HX7/ciTL2V3Rl1Wf5OL+SNTm0yK1KvtReVulksyeRnCANHHuUxHlQig+JJDlUhBt1NQDQ==", + "dev": true + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "word-wrap": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", + "dev": true + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + }, + "write": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/write/-/write-1.0.3.tgz", + "integrity": "sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig==", + "dev": true, + "requires": { + "mkdirp": "^0.5.1" + } + } + } +} diff --git a/utils/eslint/package.json b/utils/eslint/package.json index 8533c5c3b1db..918b95da0ea8 100644 --- a/utils/eslint/package.json +++ b/utils/eslint/package.json @@ -1,5 +1,5 @@ { "devDependencies": { - "eslint": "^4.1.1" + "eslint": "^7.8.0" } } diff --git a/utils/find_rules.py b/utils/find_rules.py deleted file mode 100644 index d82133a6f04c..000000000000 --- a/utils/find_rules.py +++ /dev/null @@ -1,112 +0,0 @@ -#!/usr/bin/env python2.7 -""" -Copyleft 2013 Osama Khalid. - -This program is free software: you can redistribute it and/or modify -it under the terms of the GNU Affero General Public License as -published by the Free Software Foundation, either version 3 of the -License, or (at your option) any later version. - -This tool extracts HTTPSEverywhere rulesets and converts any given URL -to the secure version if it exists, or it returns None. Here is a -sample: - - >>> import find_rules - >>> replacer = find_rules.FindRules("/path/to/default.rulesets") - >>> replacer.find("http://en.wikipedia.org/") - 'https://en.wikipedia.org/' - >>> replacer.find("http://en.wikipedi.org/") # With a typo - >>> -""" - -import re -import xml.etree.ElementTree as ET - -class FindRules: - def __init__(self, filename): - self.extract_rulesets(filename) - - def verify_target(self, target, host): - matching_target = target.strip("*.") - matching_target = matching_target.strip(".*") - if target.startswith("*."): - if host.endswith(matching_target): - #print target, "matches", host - return True - elif target.endswith(".*"): - if host.startswith(matching_target): - #print target, "matches", host - return True - else: - if host == matching_target: - #print target, "matches", host - return True - - def convert_to_python(self, matching, replacement): - """Instead of $1 that is used by Javascript, - Python uses \1.""" - new_matching = matching.replace(")?", "|)") # to avoid "unmatched group" error - new_replacement = re.sub(r"\$(\d)", r"\\g<\1>", replacement) - return new_matching, new_replacement - - def extract_rulesets(self, filename): - tree = ET.parse(filename) - root = tree.getroot() - - self.dict = {} - for child in root: - if child.tag == "ruleset": - if "default_off" in child.attrib: - continue - ruleset_name = child.attrib['name'] - ruleset = child.getchildren() - self.dict[ruleset_name] = {} - self.dict[ruleset_name]['targets'] = [] - self.dict[ruleset_name]['rules'] = [] - self.dict[ruleset_name]['exclusions'] = [] - for rule in ruleset: - if rule.tag == "target": - self.dict[ruleset_name]['targets'].append(rule.attrib['host']) - if rule.tag == "rule": - self.dict[ruleset_name]['rules'].append((rule.attrib['from'], rule.attrib['to'])) - if rule.tag == "exclusion": - self.dict[ruleset_name]['exclusions'].append(rule.attrib['pattern']) - - def find(self, url): - hostname_regex = r"https?://([^/]+)" - try: #Remove - host = re.findall(hostname_regex, url)[0] - except IndexError, e: - print url - raise IndexError, e - - # In HTTPSEverywhere, URLs must contain a '/'. - if url.replace("http://", "").find("/") == -1: - url += "/" - - for ruleset in self.dict: - for target in self.dict[ruleset]['targets']: - if self.verify_target(target, host): - for exclusion in self.dict[ruleset]['exclusions']: - if re.findall(exclusion, url): - return None - for rule in self.dict[ruleset]['rules']: - matching_regex = rule[0] # "from" - replacement_regex = rule[1] # "to" - new_matching, new_replacement = self.convert_to_python(matching_regex, replacement_regex) - try: - replace_url = re.sub(new_matching, new_replacement, url) - except re.error, e: - print new_matching, new_replacement, url - raise re.error, e - if url != replace_url: - return replace_url - return None - -if __name__ == "__main__": - import sys - filename = sys.argv[1] - url = sys.argv[2] - script = FindRules(filename) - replaced_url = script.find(url) - print replaced_url diff --git a/utils/hsts-prune/index.js b/utils/hsts-prune/index.js index 661f8c697c94..882aa05c43e6 100644 --- a/utils/hsts-prune/index.js +++ b/utils/hsts-prune/index.js @@ -41,7 +41,7 @@ const firefox_version_fetch = version_url => { return cb => { https.get(version_url, res => { cb(null, res.headers.location - .match(/firefox-(.*).tar.*/)[1].replace(/\./g, "_")); + .match(/firefox-(.*).tar.*/)[1].replace(/\./g, "_")); }); }; }; @@ -71,6 +71,9 @@ const parse_include = include_url => { }) .pipe(split()) .on('data', line => { + line = line.replace(new RegExp('^([^,]+), 1'), ' \"$1\", true '); + line = line.replace(new RegExp('^([^,]+), 0'), ' \"$1\", false '); + let regex_res = line.match(regex) if(regex_res){ hsts[regex_res[1]] = Boolean(regex_res[2]) @@ -142,7 +145,7 @@ const check_header_directives = (check_domain, cb) => { max_age = Number(max_age_match[1]); } cb(null, - preload && include_subdomains && max_age >= 10886400); + preload && include_subdomains && max_age >= 31536000); sent_callback = true; } else { cb(null, false); @@ -179,7 +182,6 @@ const check_https_redirection_and_header_directives = (check_domain, cb) => { // Here we begin parsing the XML files and modifying the targets function remove_target_from_xml(source, target) { - let pos; // escape the regexp for targets that have a * target = escape_string_regexp(target); @@ -193,38 +195,38 @@ function remove_target_from_xml(source, target) { const files = read_dir(rules_dir) - .tap(rules => { - bar = new ProgressBar(':bar', { total: rules.length, stream: process.stdout }); - }) - .sequence() - .filter(name => { - if(rulesets_changed){ - return ~rulesets_changed.indexOf(name); - } else { - return name.endsWith('.xml'); - } - }); + .tap(rules => { + bar = new ProgressBar(':bar', { total: rules.length, stream: process.stdout }); + }) + .sequence() + .filter(name => { + if(rulesets_changed){ + return ~rulesets_changed.indexOf(name); + } else { + return name.endsWith('.xml'); + } + }); const sources = files.fork() - .map(name => read_file(`${rules_dir}/${name}`, 'utf-8')) - .parallel(10); + .map(name => read_file(`${rules_dir}/${name}`, 'utf-8')) + .parallel(10); const rules = sources.fork() - .flatMap(parse_xml) - .errors((err, push) => { - push(null, { err }); - }) - .zip(files.fork()) - .map(([ { ruleset, err }, name ]) => { - if (err) { - err.message += ` (${name})`; - this.emit('error', err); - } else { - return ruleset; - } - }); + .flatMap(parse_xml) + .errors((err, push) => { + push(null, { err }); + }) + .zip(files.fork()) + .map(([ { ruleset, err }, name ]) => { + if (err) { + err.message += ` (${name})`; + this.emit('error', err); + } else { + return ruleset; + } + }); // This async call determines the current versions of the supported browsers @@ -236,7 +238,7 @@ async.parallel({ versions.esr_major = versions.esr.replace(/_.*/, ""); let stable_url = `https://hg.mozilla.org/releases/mozilla-release/raw-file/FIREFOX_${versions.stable}_RELEASE/security/manager/ssl/nsSTSPreloadList.inc`; - let dev_url = `https://hg.mozilla.org/releases/mozilla-aurora/raw-file/tip/security/manager/ssl/nsSTSPreloadList.inc`; + let dev_url = `https://hg.mozilla.org/releases/mozilla-beta/raw-file/tip/security/manager/ssl/nsSTSPreloadList.inc`; let esr_url = `https://hg.mozilla.org/releases/mozilla-esr${versions.esr_major}/raw-file/FIREFOX_${versions.esr}_RELEASE/security/manager/ssl/nsSTSPreloadList.inc`; let chromium_url = `https://chromium.googlesource.com/chromium/src.git/+/${versions.chromium}/net/http/transport_security_state_static.json?format=TEXT`; @@ -246,7 +248,7 @@ async.parallel({ async.parallel({ esr: parse_include(esr_url), dev: parse_include(dev_url), - stable: parse_include(esr_url), + stable: parse_include(stable_url), chromium: parse_json(chromium_url) }, (err, structs) => { @@ -311,7 +313,7 @@ async.parallel({ }); } - // After building the additonal checks in the form of the + // After building the additional checks in the form of the // checks array of functions, run the checks in parallel and // perform the appropriate actions based on the results. diff --git a/utils/hsts-prune/package-lock.json b/utils/hsts-prune/package-lock.json new file mode 100644 index 000000000000..d9a47270e0e6 --- /dev/null +++ b/utils/hsts-prune/package-lock.json @@ -0,0 +1,502 @@ +{ + "name": "hsts-prune", + "version": "1.0.0", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "JSONStream": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.4.tgz", + "integrity": "sha512-Y7vfi3I5oMOYIr+WxV8NZxDSwcbNgzdKYsTNInmycOq9bUYwGg9ryu57Wg5NLmCjqdFPNUmpMBo3kSJN9tCbXg==", + "requires": { + "jsonparse": "^1.2.0", + "through": ">=2.2.7 <3" + } + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "dependencies": { + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + } + } + }, + "asn1": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", + "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", + "requires": { + "safer-buffer": "~2.1.0" + } + }, + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" + }, + "async": { + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.4.tgz", + "integrity": "sha512-mzo5dfJYwAn29PeiJ0zvwTo04zj8HDJj0Mn8TD7sno7q12prdbnasKJHhkm2c1LgrhlJ0teaea8860oxi51mGA==", + "requires": { + "lodash": "^4.17.14" + } + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" + }, + "aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=" + }, + "aws4": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.8.0.tgz", + "integrity": "sha512-ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ==" + }, + "base64-stream": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/base64-stream/-/base64-stream-0.1.3.tgz", + "integrity": "sha1-drA3C3ebuBbRL9QXZKa4Vz61/sM=", + "requires": { + "readable-stream": "^2.0.2" + } + }, + "bcrypt-pbkdf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", + "optional": true, + "requires": { + "tweetnacl": "^0.14.3" + } + }, + "caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" + }, + "combined-stream": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.6.tgz", + "integrity": "sha1-cj599ugBrFYTETp+RFqbactjKBg=", + "requires": { + "delayed-stream": "~1.0.0" + } + }, + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + }, + "dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", + "requires": { + "assert-plus": "^1.0.0" + } + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" + }, + "ecc-jsbn": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", + "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", + "optional": true, + "requires": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + } + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" + }, + "extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + }, + "extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=" + }, + "fast-json-stable-stringify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz", + "integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I=" + }, + "forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=" + }, + "form-data": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.2.tgz", + "integrity": "sha1-SXBJi+YEwgwAXU9cI67NIda0kJk=", + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "1.0.6", + "mime-types": "^2.1.12" + } + }, + "getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", + "requires": { + "assert-plus": "^1.0.0" + } + }, + "har-schema": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=" + }, + "har-validator": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", + "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", + "requires": { + "ajv": "^6.12.3", + "har-schema": "^2.0.0" + } + }, + "highland": { + "version": "2.13.0", + "resolved": "https://registry.npmjs.org/highland/-/highland-2.13.0.tgz", + "integrity": "sha512-zGZBcgAHPY2Zf9VG9S5IrlcC7CH9ELioXVtp9T5bU2a4fP2zIsA+Y8pV/n/h2lMwbWMHTX0I0xN0ODJ3Pd3aBQ==", + "requires": { + "util-deprecate": "^1.0.2" + } + }, + "http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", + "requires": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + }, + "is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" + }, + "jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", + "optional": true + }, + "json-schema": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", + "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" + }, + "json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" + }, + "jsonparse": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz", + "integrity": "sha1-P02uSpH6wxX3EGL4UhzCOfE2YoA=" + }, + "jsprim": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", + "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", + "requires": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.2.3", + "verror": "1.10.0" + } + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "mime-db": { + "version": "1.35.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.35.0.tgz", + "integrity": "sha512-JWT/IcCTsB0Io3AhWUMjRqucrHSPsSf2xKLaRldJVULioggvkJvggZ3VXNNSRkCddE6D+BUI4HEIZIA2OjwIvg==" + }, + "mime-types": { + "version": "2.1.19", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.19.tgz", + "integrity": "sha512-P1tKYHVSZ6uFo26mtnve4HQFE3koh1UWVkp8YUC+ESBHe945xWSoXuHHiGarDqcEZ+whpCDnlNw5LON0kLo+sw==", + "requires": { + "mime-db": "~1.35.0" + } + }, + "oauth-sign": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", + "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==" + }, + "performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" + }, + "process-nextick-args": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz", + "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==" + }, + "progress": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/progress/-/progress-1.1.8.tgz", + "integrity": "sha1-4mDHj2Fhzdmw5WzD4Khd4Xx6V74=" + }, + "psl": { + "version": "1.1.29", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.1.29.tgz", + "integrity": "sha512-AeUmQ0oLN02flVHXWh9sSJF7mcdFq0ppid/JkErufc3hGIV/AMa8Fo9VgDo/cT2jFdOWoFvHp90qqBH54W+gjQ==" + }, + "punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=" + }, + "qs": { + "version": "6.5.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", + "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==" + }, + "readable-stream": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", + "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "request": { + "version": "2.88.0", + "resolved": "https://registry.npmjs.org/request/-/request-2.88.0.tgz", + "integrity": "sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg==", + "requires": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.0", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.4.3", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "sax": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" + }, + "split": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/split/-/split-1.0.1.tgz", + "integrity": "sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg==", + "requires": { + "through": "2" + } + }, + "sshpk": { + "version": "1.14.2", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.14.2.tgz", + "integrity": "sha1-xvxhZIo9nE52T9P8306hBeSSupg=", + "requires": { + "asn1": "~0.2.3", + "assert-plus": "^1.0.0", + "bcrypt-pbkdf": "^1.0.0", + "dashdash": "^1.12.0", + "ecc-jsbn": "~0.1.1", + "getpass": "^0.1.1", + "jsbn": "~0.1.0", + "safer-buffer": "^2.0.2", + "tweetnacl": "~0.14.0" + } + }, + "stream-filter": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/stream-filter/-/stream-filter-2.1.0.tgz", + "integrity": "sha1-vf9O7jzeTBUl4Ct43ek9gh/lKb0=", + "requires": { + "through2": "^2.0.1", + "xtend": "^4.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=" + }, + "through2": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.3.tgz", + "integrity": "sha1-AARWmzfHx0ujnEPzzteNGtlBQL4=", + "requires": { + "readable-stream": "^2.1.5", + "xtend": "~4.0.1" + } + }, + "tough-cookie": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.3.tgz", + "integrity": "sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ==", + "requires": { + "psl": "^1.1.24", + "punycode": "^1.4.1" + } + }, + "tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", + "requires": { + "safe-buffer": "^5.0.1" + } + }, + "tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=", + "optional": true + }, + "uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "requires": { + "punycode": "^2.1.0" + }, + "dependencies": { + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" + } + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" + }, + "uuid": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz", + "integrity": "sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==" + }, + "verror": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", + "requires": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + } + }, + "xml2js": { + "version": "0.4.19", + "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.4.19.tgz", + "integrity": "sha512-esZnJZJOiJR9wWKMyuvSE1y6Dq5LCuJanqhxslH2bxM6duahNZ+HMpCLhBQGZkbX6xRf8x1Y2eJlgt2q3qo49Q==", + "requires": { + "sax": ">=0.6.0", + "xmlbuilder": "~9.0.1" + } + }, + "xmlbuilder": { + "version": "9.0.7", + "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-9.0.7.tgz", + "integrity": "sha1-Ey7mPS7FVlxVfiD0wi35rKaGsQ0=" + }, + "xtend": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", + "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=" + } + } +} diff --git a/utils/hsts-prune/package.json b/utils/hsts-prune/package.json index fb8efdf32678..fcd6741cb985 100644 --- a/utils/hsts-prune/package.json +++ b/utils/hsts-prune/package.json @@ -10,7 +10,7 @@ "license": "GPL-3.0", "dependencies": { "JSONStream": "^1.3.0", - "async": "^2.1.4", + "async": "^2.6.4", "base64-stream": "^0.1.3", "escape-string-regexp": "^1.0.5", "highland": "^2.10.1", diff --git a/utils/labeller/.gitignore b/utils/labeller/.gitignore deleted file mode 100644 index cd13ae6717b9..000000000000 --- a/utils/labeller/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -config.json -node_modules -*.swp diff --git a/utils/labeller/Dockerfile b/utils/labeller/Dockerfile deleted file mode 100644 index 138b73e12480..000000000000 --- a/utils/labeller/Dockerfile +++ /dev/null @@ -1,12 +0,0 @@ -FROM node -MAINTAINER William Budington - -WORKDIR /opt - -COPY package.json . -RUN npm install -COPY index.js . -COPY config.json.example . -RUN mv config.json.example config.json - -CMD ["node", "index.js"] diff --git a/utils/labeller/README.md b/utils/labeller/README.md deleted file mode 100644 index 4d979e3ecb08..000000000000 --- a/utils/labeller/README.md +++ /dev/null @@ -1,38 +0,0 @@ -# HTTPS Everywhere Labeller - -This compares the open PR requests that have ruleset changes to the Alexa top 1M sites, and adds labels corresponding to how they place within Alexa. Current labels are: - -1. `top-100` -2. `top-1k` -3. `top-10k` -4. `top-100k` -5. `top-1m` - -This will work for admins of HTTPS Everywhere that generate a [GitHub token](https://github.com/settings/tokens). - -## Setup - -### With Docker - - docker build -t labeller . - -### Without Docker - -Download and install `node` and `npm`, then - - npm install - cp config.json.example config.json - -Enter your GitHub token info into `config.json`. - -## Running - -### With Docker - -Set your `$GITHUB_TOKEN`, and run - - docker run -it -v $(pwd)/state_dir:/opt/state_dir -e GITHUB_TOKEN=$GITHUB_TOKEN labeller - -### Without Docker - - node index.js diff --git a/utils/labeller/config.json.example b/utils/labeller/config.json.example deleted file mode 100644 index 8cad030bc425..000000000000 --- a/utils/labeller/config.json.example +++ /dev/null @@ -1,6 +0,0 @@ -{ - "github_token": "", - "github_user": "efforg", - "github_repo": "https-everywhere", - "state_file": "state_dir/most_recent_pr_checked.state" -} diff --git a/utils/labeller/index.js b/utils/labeller/index.js deleted file mode 100644 index 6d5f9306abd8..000000000000 --- a/utils/labeller/index.js +++ /dev/null @@ -1,216 +0,0 @@ -"use strict"; - -var fs = require('fs'); -var readline = require('readline'); - -var GitHubApi = require('github'); -var _ = require('lodash'); -var parseXML = require('xml2js').parseString; -var async = require('async'); -var request = require('request'); -var unzip = require('unzip'); -var ProgressBar = require('progress'); - -var config = require('./config'); - -// Fetch the Alexa top 1M sites and push it to an array `alexa` via streams -function get_alexa(alexa_cb){ - - var alexa = [] - var csv_regex = /^[0-9]+,(.+)/ - - request.get('https://s3.amazonaws.com/alexa-static/top-1m.csv.zip') - .on('error', function(err) { - alexa_cb(err); - }) - .pipe(unzip.Parse()) - .on('entry', function (entry) { - - var bar = new ProgressBar('Processing Alexa Top 1M [:bar] :percent :etas', { - total: 100 - }); - - var lineReader = require('readline').createInterface({ - input: entry - }); - - var x = 0; - lineReader.on('line', function (line) { - var domain = line.match(csv_regex)[1] - alexa.push(domain); - - if(x % 10000 == 0) bar.tick(); - x++; - }); - - lineReader.on('close', function(){ - alexa_cb(null, alexa); - }); - - }); -}; - -function get_most_recent_pr(alexa, recent_cb){ - fs.readFile(config.state_file, function(err, data){ - if(err){ - fs.writeFile(config.state_file, '0', function(err){ - if(err) return recent_cb(err); - recent_cb(null, [alexa, 0]); - }); - } else { - recent_cb(null, [alexa, Number(data)]); - } - }); -} - -function github_process_prs(res, pr_cb){ - var alexa = res[0], - most_recent_pr_checked = res[1]; - - var github = new GitHubApi(); - var wildcard_www_regex = /^(www|\*)\.(.+)/ - - var httpse = { - user: config.github_user, - repo: config.github_repo - } - - github.authenticate({ - type: "oauth", - token: config.github_token || process.env.GITHUB_TOKEN - }) - - // Label all PRs which meet the criteria for labelling - function github_process_pr_page(first_page){ - return function(err, pull_requests){ - if(first_page){ - fs.writeFile(config.state_file, pull_requests[0].number, function(err){ - if(err) return pr_cb(err); - }); - } - - _.each(pull_requests, function(pull_request){ - - if(pull_request.number > most_recent_pr_checked){ - github.pullRequests.getFiles(_.extend(httpse, { - number: pull_request.number - }), function(err, files){ - if(err) return pr_cb(err); - - // Rank a list of target hosts, returning the minimum alexa placing - function rank_targets(targets){ - var minimum_placing = 9999999; - - _.each(targets, function(host){ - if(host.match(wildcard_www_regex)){ - host = host.match(wildcard_www_regex)[2]; - } - - var alexa_placing = alexa.indexOf(host); - if(~alexa_placing && alexa_placing < minimum_placing){ - minimum_placing = alexa_placing; - } - }); - - if(minimum_placing != 9999999){ - return minimum_placing; - } - } - - // Given the url of an HTTPSE ruleset, return a list of targets to fetch_cb - function fetch_url_and_parse_targets(url, fetch_cb){ - request({url: url}, function(err, res, body){ - if(err) return fetch_cb(err); - - parseXML(body, function(err, root){ - if(err) return fetch_cb(err); - - fetch_cb(null, _.map(root.ruleset.target, function(target){ - return target.$.host; - })); - }); - }); - } - - var file_fetches = []; - - // Out of the list of files for this PR, figure out the minimum Alexa ranking for each - _.each(files, function(file){ - if(file.filename.match(/^src\/chrome\/content\/rules\//)){ - file_fetches.push(function(file_cb){ - fetch_url_and_parse_targets(file.raw_url, function(err, targets){ - if(err) return file_cb(err); - - console.log("Processing PR: " + pull_request.number + ", file: " + file.filename); - - var ranking = rank_targets(targets); - if(ranking){ - return file_cb(null, { - alexa_placing: ranking, - pr_number: pull_request.number - }); - } else { - return file_cb(); - } - }); - }); - } - }); - - async.parallel(file_fetches, function(err, res){ - if(err) pr_cb(err); - - var reduced_pr_ranking = _.reduce(_.filter(res), - function(minimum_file_res, file_res){ - if(file_res.alexa_placing < minimum_file_res.alexa_placing){ - return file_res; - } - return minimum_file_res; - }); - - if(reduced_pr_ranking){ - let label; - if(reduced_pr_ranking.alexa_placing < 100){ - label = "top-100"; - } else if(reduced_pr_ranking.alexa_placing < 1000){ - label = "top-1k"; - } else if(reduced_pr_ranking.alexa_placing < 10000){ - label = "top-10k"; - } else if(reduced_pr_ranking.alexa_placing < 100000){ - label = "top-100k"; - } else { - label = "top-1m"; - } - console.log("Applying label `" + label + "` to PR: " + reduced_pr_ranking.pr_number); - - github.issues.addLabels(_.extend(httpse, { - number: reduced_pr_ranking.pr_number, - body: [label] - }), function(err, res){ - if(err) console.log(err); - }); - } - }); - }); - } - }); - - if(github.hasNextPage(pull_requests)){ - github.getNextPage(pull_requests, github_process_pr_page(false)); - } - } - } - - github.pullRequests.getAll(_.extend(httpse, { - state: "open", - per_page: 100 - }), github_process_pr_page(true)); -} - -async.waterfall([ - get_alexa, - get_most_recent_pr, - github_process_prs -], function(err, result){ - if(err) console.log(err); -}); diff --git a/utils/labeller/package.json b/utils/labeller/package.json deleted file mode 100644 index 98e9ca416c5a..000000000000 --- a/utils/labeller/package.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "name": "https-everywhere-labeller", - "version": "1.0.0", - "description": "", - "main": "index.js", - "scripts": { - "test": "echo \"Error: no test specified\" && exit 1" - }, - "author": "William Budington", - "license": "GPL-3.0", - "dependencies": { - "async": "^2.0.1", - "github": "^2.5.1", - "lodash": "^4.15.0", - "progress": "^1.1.8", - "request": "^2.74.0", - "unzip": "^0.1.11", - "xml2js": "^0.4.17" - } -} diff --git a/utils/labeller/state_dir/.gitignore b/utils/labeller/state_dir/.gitignore deleted file mode 100644 index 12a93b415c3e..000000000000 --- a/utils/labeller/state_dir/.gitignore +++ /dev/null @@ -1 +0,0 @@ -most_recent_pr_checked.state diff --git a/utils/make-json.py b/utils/make-json.py deleted file mode 100755 index 3ec834d6f466..000000000000 --- a/utils/make-json.py +++ /dev/null @@ -1,69 +0,0 @@ -#!/usr/bin/env python2.7 -# -# Builds a JSON DB containing all the rulesets, indexed by target. -# The JSON DB is used by the Firefox addon. -# - -import locale -import json -import os -import sys - -import collections -from lxml import etree - -from ruleset_filenames_validate import validate_filenames - -# Explicitly set locale so sorting order for filenames is consistent. -# This is important for deterministic builds. -# https://trac.torproject.org/projects/tor/ticket/11630#comment:20 -# It's also helpful to ensure consistency for the lowercase check below. -locale.setlocale(locale.LC_ALL, 'C') - -json_path = os.path.join(os.path.dirname(__file__), '../pkg/rulesets.json') - -json_output = { - "rulesetStrings": [], - "targets": collections.defaultdict(list) -} - -parser = etree.XMLParser(remove_blank_text=True) - -# Precompile xpath expressions that get run repeatedly. -xpath_host = etree.XPath("/ruleset/target/@host") -xpath_ruleset = etree.XPath("/ruleset") - -for fi in validate_filenames(): - - try: - tree = etree.parse(fi, parser) - except Exception as oops: - print("%s failed XML validity: %s\n" % (fi, oops)) - sys.exit(1) - - # Remove comments to save space. - etree.strip_tags(tree, etree.Comment) - - targets = xpath_host(tree) - if not targets: - print('File %s has no targets' % fi) - sys.exit(1) - - # Strip out the target tags. These aren't necessary in the DB because - # targets are looked up in the target table, which has a foreign key - # pointing into the ruleset table. - etree.strip_tags(tree, 'target') - etree.strip_tags(tree, 'test') - - # Store the filename in the `f' attribute so "view source XML" for rules in - # FF version can find it. - xpath_ruleset(tree)[0].attrib["f"] = os.path.basename(fi).decode(encoding="UTF-8") - - for target in targets: - # id is the current length of the rules list - i.e. the offset at which - # this rule will be added in the list. - json_output["targets"][target].append(len(json_output["rulesetStrings"])) - json_output["rulesetStrings"].append(etree.tostring(tree)) - -with open(json_path, 'w') as f: - f.write(json.dumps(json_output)) diff --git a/utils/memusage.js b/utils/memusage.js new file mode 100644 index 000000000000..7db7faaa1189 --- /dev/null +++ b/utils/memusage.js @@ -0,0 +1,50 @@ +/* eslint-env es6, node */ +/* globals gc */ + +'use strict'; + +if (typeof gc !== 'function') { + throw new Error('Please re-run with `node --expose-gc utils/memusage.js`'); +} + +const { RuleSets } = require('../chromium/background-scripts/rules'); +const { readFileSync } = require('fs'); +const json = JSON.parse(readFileSync(`${__dirname}/../rules/default.rulesets`, 'utf-8')); + +function memUsage() { + gc(); // don't measure garbage + return process.memoryUsage().heapUsed; +} + +function memToString(before, after) { + return (Math.round((after - before) / (1 << 20) * 10) / 10).toLocaleString() + ' MB'; +} + +const start = memUsage(); +let middle, end; + +{ + const ruleSets = new RuleSets(Object.create(null)); + ruleSets.addFromJson(json); + middle = memUsage(); +} + +{ + const oldRegExp = RegExp; + + global.RegExp = function (...args) { + let r = new oldRegExp(...args); + r.test(''); // force engine to compile RegExp + return r; + }; + + const ruleSets = new RuleSets(Object.create(null)); + ruleSets.addFromJson(json); + end = memUsage(); +} + +// rulesets loaded but regexps are not compiled +console.log('Initial usage:', memToString(start, middle)); + +// with all regexps compiled +console.log('Maximum usage:', memToString(middle, end)); diff --git a/utils/merge-rulesets.js b/utils/merge-rulesets.js deleted file mode 100644 index 7cc96abe2fe2..000000000000 --- a/utils/merge-rulesets.js +++ /dev/null @@ -1,99 +0,0 @@ -// Merge all the .xml rulesets into a single "default.rulesets" file -- this -// prevents inodes from wasting disk space, but more importantly, works around -// the fact that zip does not perform well on a pile of small files. - -// it is a translation of merge-rulesets.py (without linting, backups, git support, unicode normalisation and --fast option), but it doesn't require Python (only WSH) - - -var fs = new ActiveXObject("Scripting.FileSystemObject"), -shell = new ActiveXObject("WScript.Shell"), -args = WScript.Arguments, -scriptFullPath = WScript.ScriptFullName, -sourceDir = args[0], -targetFile = args[1]; - -var msg=""; - -//console or gui? -var enginefile=WScript.FullName; -var stdout=null; -if(enginefile.toLowerCase().indexOf("cscript.exe")>-1){ - stdout=WScript.StdOut; -} -function getDir(a) { - return a.substring(0, a.lastIndexOf("\\") || a.lastIndexOf("/")) -} - -//checking input - -var scriptPath = getDir(WScript.ScriptFullName.toString()); -if (!sourceDir) { - sourceDir = sourceDir || (getDir(scriptPath) + "\\src\\chrome\\content\\rules"); -} -var defaultFileName="default.rulesets"; -if (!targetFile) { - targetFile = sourceDir + "\\" + defaultFileName; -} - -//shell.Popup(sourceDir, 0, "HTTPS Everywhere Rules Merger",64); -//shell.Popup(targetFile, 0, "HTTPS Everywhere Rules Merger",64); - - -if(stdout) - stdout.WriteLine("Merging rulesets... and removing whitespaces and comments..."); -var infldr = fs.GetFolder(sourceDir); -var res,fileI; - -targetFile=fs.CreateTextFile(targetFile); - -function clean_up(rulefile){ - //Remove extra whitespace and comments from a rulesets - rulefile = rulefile.replace(//ig,''); - rulefile = rulefile.replace(/\s+/ig,' '); - //rulefile = rulefile.replace(/\s*(to=|from=)/ig," $1"); - rulefile = rulefile.replace(/>\s*<"); - //rulefile = rulefile.replace(/<\/ruleset>\s*/ig, "\n"); - rulefile = rulefile.replace(/\s*(\/>|'); -else - targetFile.Write(''); - -var fileNameRx=/\.xml$/i; -for(fileI = new Enumerator(infldr.Files); !fileI.atEnd(); fileI.moveNext()){ - if (file = fileI.item()) { - var name = file.Name; - if(!fileNameRx.test(name))continue; - if(stdout)stdout.WriteLine("Processing file "+name+"..."); - var currentFileStream=file.OpenAsTextStream(1); - var ruleset = currentFileStream.ReadAll(); - currentFileStream.Close(); - delete currentFileStream; - ruleset = ruleset.replace("\n"); -targetFile.Close(); -delete targetFile; - -var currentStageMsg="Merging has been FINISHED!"; - -if(stdout){ - stdout.WriteLine(currentStageMsg); -}else{ - msg+="\n"+currentStageMsg; - shell.Popup(msg, 1, "HTTPS Everywhere Rules Merger", 64); -} - - -/*function normalize(f){ - //OSX and Linux filesystems encode composite characters differently in filenames. - //We should normalize to NFC: http://unicode.org/reports/tr15/. - f = unicodedata.normalize('NFC', unicode(f, 'utf-8')).encode('utf-8') - return f -}*/ diff --git a/utils/merge-rulesets.py b/utils/merge-rulesets.py index 7b2b08ace284..efd62cbaf8d8 100644 --- a/utils/merge-rulesets.py +++ b/utils/merge-rulesets.py @@ -1,105 +1,114 @@ -#!/usr/bin/env python2.7 +#!/usr/bin/env python3 # Merge all the .xml rulesets into a single "default.rulesets" file -- this -# prevents inodes from wasting disk space, but more importantly, works around -# the fact that zip does not perform well on a pile of small files. +# prevents inodes from wasting disk space, but more importantly, this works +# around the fact that zip does not perform well on a pile of small files. -# currently a very literal translation of merge-rulesets.sh, but about five -# times faster -from __future__ import print_function -pass +# Currently, it merges rulesets into a JSON Object for minimal overhead, +# in both storage and parsing speed. + +import argparse +import glob +import json import os -from glob import glob -from subprocess import call -import sys -import traceback -import re import unicodedata -import argparse - -parser = argparse.ArgumentParser(description='Merge rulesets.') -parser.add_argument('--source_dir', default='src/chrome/content/rules', help='source directory') -parser.add_argument('--fast', help='fast merge', action='store_true') -args = parser.parse_args() +import xml.etree.ElementTree def normalize(f): """ - OSX and Linux filesystems encode composite characters differently in filenames. - We should normalize to NFC: http://unicode.org/reports/tr15/. + OSX and Linux filesystems encode composite characters differently in + filenames. We should normalize to NFC: http://unicode.org/reports/tr15/ """ - f = unicodedata.normalize('NFC', unicode(f, 'utf-8')).encode('utf-8') + f = unicodedata.normalize("NFC", f) return f -rulesets_fn= args.source_dir + "/default.rulesets" -xml_ruleset_files = map(normalize, glob(args.source_dir + "/*.xml")) - -# cleanup after bugs :/ -misfile = rulesets_fn + "r" -if os.path.exists(misfile): - print("Cleaning up malformed rulesets file...") - os.unlink(misfile) - -if args.fast: - library_compiled_time = os.path.getmtime(rulesets_fn) - newest_xml = max([os.path.getmtime(f) for f in xml_ruleset_files]) - if library_compiled_time >= newest_xml: - print("Library is newer that all rulesets, skipping rebuild...") - sys.exit(0) - -print("Creating ruleset library...") - -# Under git bash, sed -i issues errors and sets the file "read only". Thanks. -if os.path.isfile(rulesets_fn): - os.system("chmod u+w " + rulesets_fn) - -def rulesize(): - return len(open(rulesets_fn).read()) - -def clean_up(rulefile): - """Remove extra whitespace, comments and tests from a ruleset""" - comment_and_newline_pattern = re.compile(r"|\n|\r", flags=re.DOTALL) - rulefile = comment_and_newline_pattern.sub('', rulefile) - to_and_from_pattern = re.compile(r'\s*(from=)') - rulefile = to_and_from_pattern.sub(r' \1', rulefile) - rulefile = re.sub(r'"\s*(to=)', r'" \1', rulefile) - rulefile = re.sub(r">\s*<", r"><", rulefile) - rulefile = re.sub(r"\s*", r"\n", rulefile) - rulefile = re.sub(r"\s*(/>|", r"", rulefile) - return rulefile - -library = open(rulesets_fn,"w") - -try: - commit_id = os.environ["GIT_COMMIT_ID"] - library.write('' % commit_id) -except: - # Chromium - library.write('') - -# Include the filename.xml as the "f" attribute -print("Removing whitespaces and comments...") - -for rfile in sorted(xml_ruleset_files): - ruleset = open(rfile).read() - fn = os.path.basename(rfile) - ruleset = ruleset.replace("\n") -library.close() - -try: - if 0 == call(["xmllint", "--noout", rulesets_fn]): - print(rulesets_fn, "passed XML validity test.") - else: - print("ERROR:", rulesets_fn, "failed XML validity test!") - sys.exit(1) -except OSError as e: - if "No such file or directory" not in traceback.format_exc(): - raise - print("WARNING: xmllint not present; validation of", rulesets_fn, " skipped.") - -# We make default.rulesets at build time, but it shouldn't have a variable -# timestamp -call(["touch", "-r", "src/install.rdf", rulesets_fn]) +# commandline arguments parsing (nobody use it, though) +parser = argparse.ArgumentParser(description="Merge rulesets") +parser.add_argument("--source_dir", default="src/chrome/content/rules") + +args = parser.parse_args() +# output filename, pointed to the merged ruleset +ofn = os.path.join(args.source_dir, "default.rulesets") +ojson = os.path.join(args.source_dir, "default.rulesets.json") + +# XML Ruleset Files +files = map(normalize, glob.glob(os.path.join(args.source_dir, "*.xml"))) + +# Under git bash, sed -i issues errors and sets the file "read-only". +if os.path.isfile(ofn): + os.system("chmod u+w " + ofn) +if os.path.isfile(ojson): + os.system("chmod u+w " + ojson) + +# Library (JSON Object) +library = [] + +# Parse XML ruleset and construct JSON library +print(" * Parsing XML ruleset and constructing JSON library...") +for filename in sorted(files): + tree = xml.etree.ElementTree.parse(filename) + root = tree.getroot() + + ruleset = {} + trivialNameSecureCookie = None + + for attr in root.attrib: + ruleset[attr] = root.attrib[attr] + + for child in root: + if child.tag in ["target", "rule", "securecookie", "exclusion"]: + if child.tag not in ruleset: + ruleset[child.tag] = [] + else: + continue + + if child.tag == "target": + ruleset["target"].append(child.attrib["host"]) + + elif child.tag == "rule": + ru = {} + ru["from"] = child.attrib["from"] + ru["to"] = child.attrib["to"] + + ruleset["rule"].append(ru) + + elif child.tag == "securecookie": + if child.attrib["name"] == ".+": + if not trivialNameSecureCookie: + trivialNameSecureCookie = {} + trivialNameSecureCookie["host"] = child.attrib["host"] + trivialNameSecureCookie["name"] = ".+" + else: + trivialNameSecureCookie["host"] = (trivialNameSecureCookie["host"] + "|" + child.attrib["host"]) + else: + sc = {} + sc["host"] = child.attrib["host"] + sc["name"] = child.attrib["name"] + + ruleset["securecookie"].append(sc) + + elif child.tag == "exclusion": + if len(ruleset["exclusion"]) == 0: + ruleset["exclusion"].append(child.attrib["pattern"]) + else: + ruleset["exclusion"][0] = (ruleset["exclusion"][0] + "|" + child.attrib["pattern"]) + + if trivialNameSecureCookie: + ruleset["securecookie"].insert(0, trivialNameSecureCookie) + + library.append(ruleset); + +# Write to default.rulesets +print(" * Writing JSON library to %s and %s"% (ofn, ojson) ) +outfile = open(ofn, "w") +jsonout = open(ojson, "w") + +outfile.write(json.dumps(library, separators=(",", ":"))) +jsonout.write(json.dumps(library, separators=(",", ":"))) + +outfile.close() +jsonout.close() + +# Everything is okay. +print(" * Everything is okay.") diff --git a/utils/merge-rulesets.sh b/utils/merge-rulesets.sh deleted file mode 100644 index 180306a2ee8c..000000000000 --- a/utils/merge-rulesets.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/sh - -# Merge all the .xml rulesets into a single "default.rulesets" file -- this -# prevents inodes from wasting disk space, but more importantly, works around -# the fact that zip does not perform well on a pile of small files. - -python2.7 ./utils/merge-rulesets.py - -RULESETS=chrome/content/rules/default.rulesets diff --git a/utils/mk_client_whitelist.py b/utils/mk_client_whitelist.py deleted file mode 100755 index d4fb89d60956..000000000000 --- a/utils/mk_client_whitelist.py +++ /dev/null @@ -1,51 +0,0 @@ -#!/usr/bin/env python2.7 - -# Make a list of the current top 1,000 certs to whitelist from the -# Decentralized SSL Observatory's client submissions, to live in -# https-everywhere/src/chrome/content/code/X509ChainWhitelist.js - -import dbconnect -import sys - -db, dbc = dbconnect.dbconnect() - -import time -few_days_ago = time.gmtime(time.time() - 3600 * 24 * 3) -cutoff = time.strftime("%Y-%m-%d", few_days_ago) - -# This currently runs on the decentralized observatory server, but will also -# run on the published datasets and read-only SQL servers too... - -q = """ -SELECT hex(reports.chain_fp), count, `Validity:Not After`, Subject -FROM reports JOIN chains ON reports.chain_fp = chains.chain_fp - JOIN new_parsed_certs ON reports.cert_fp = new_parsed_certs.cert_fp -WHERE count > 1000 AND - `Validity:Not After` > "%s" -GROUP BY reports.chain_fp -ORDER BY count DESC -LIMIT 1000 -""" % (cutoff,) - -dbc.execute(q) -results = dbc.fetchmany(1000) - -sys.stderr.write("TOP 1000:\n") -for n in range(1000): - sys.stderr.write(repr(results[n][1:4]) + results[n][0][:4]+ '\n') - -header = """ -// These are SHA256 fingerprints for the most common chains observed by the -// Decentralized SSL Observatory. These should not be resubmitted. -// This file is automatically generated by utils/mk_client_whitelist.py - -const X509ChainWhitelist = {""" - -print(header) -for chain_fp in sorted([row[0] for row in results]): - print(" '%s' : true," % chain_fp) - -footer = "} ;" -print(footer) - - diff --git a/utils/relaxng.xml b/utils/relaxng.xml deleted file mode 100644 index 181d021d76e8..000000000000 --- a/utils/relaxng.xml +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - - - - - - - - - (firefox|chromium|cacert|ipsca|mixedcontent)( (firefox|chromium|cacert|ipsca|mixedcontent))* - - - - - - - - - - - http[^\\]+ - - - - - - - - - - (([A-Za-z0-9äö_-]+|\*)\.)*([A-Za-z0-9äö-]+|\*) - - - - - - - - - - - - - - - - [^/]* - - - - - - - - - - - (\^.*//.*/.*|\^http:) - - - - - - (https?://[^ \\]*/[^ \\]*|https:) - - - - - - - - diff --git a/utils/remove-obsolete-references.sh b/utils/remove-obsolete-references.sh new file mode 100755 index 000000000000..04dba095c2c3 --- /dev/null +++ b/utils/remove-obsolete-references.sh @@ -0,0 +1,39 @@ +#!/bin/bash +# Remove obsolete references to child rulesets which +# has been renamed/ deleted + + +# Change directory to git root; taken from ../test/test.sh +if [ -n "$GIT_DIR" ] +then + # $GIT_DIR is set, so we're running as a hook. + cd $GIT_DIR +else + # Git command exists? Cool, let's CD to the right place. + git rev-parse && cd "$(git rev-parse --show-toplevel)" +fi + +# Run from ruleset folder to simplify the output +cd src/chrome/content/rules + +# Default exit status +EXIT_CODE=0 + +# List of file(s) which contain at least one reference +FILES=`egrep -l '^\s*[-|+]\s*([^ ]*\.xml)\s*$' *.xml` + +while read FILE; do + # List of referenced rulesets + REFS=`sed -n 's/^\s*[-|+]\s*\([^ ]*\.xml\)\s*$/\1/gp' "$FILE"` + + while read REF; do + if [ ! -f "$REF" ]; then + echo >&2 "ERROR src/chrome/content/rules/$FILE: Dangling reference to $REF" + sed -i "/^\s*[-|+]\s*$REF$/d" "$FILE" + EXIT_CODE=1 + fi + done <<< "$REFS" +done <<< "$FILES" + +# Exit with errors, if any +exit "$EXIT_CODE" diff --git a/rewriter/.gitignore b/utils/rewriter/.gitignore similarity index 100% rename from rewriter/.gitignore rename to utils/rewriter/.gitignore diff --git a/rewriter/README.md b/utils/rewriter/README.md similarity index 100% rename from rewriter/README.md rename to utils/rewriter/README.md diff --git a/utils/rewriter/package.json b/utils/rewriter/package.json new file mode 100644 index 000000000000..a62493ad2762 --- /dev/null +++ b/utils/rewriter/package.json @@ -0,0 +1,10 @@ +{ + "name": "https-everywhere-rewriter", + "version": "1.0.0", + "dependencies": { + "event-stream": "3.0.20", + "readdirp": "2.0.1", + "urijs": "^1.19.1", + "xmldom": "0.1.17" + } +} diff --git a/utils/rewriter/rewriter.js b/utils/rewriter/rewriter.js new file mode 100644 index 000000000000..5a25d5cdfafe --- /dev/null +++ b/utils/rewriter/rewriter.js @@ -0,0 +1,128 @@ +// HTTPS Rewriter. +// +// Uses the rulesets from HTTPS to recursively rewrite URL references in a +// given directory to HTTPS. Uses protocol-relative URLs wherever possible. +// Makes a copy of each file at filename.bak. +// +// Usage: +// cd https-everywhere +// ./make.sh # to build default.rulesets +// cd rewriter +// (install node and npm) +// npm install +// node rewriter.js ~/path/to/my/webapp +// cd ~/path/to/my/webapp +// git diff + +global.self = global; +require("../../lib-wasm/pkg/https_everywhere_lib_wasm.js"); + +var path = require("path"), + fs = require("fs"), + DOMParser = require('xmldom').DOMParser, + readdirp = require('readdirp'), + es = require('event-stream'), + + rules = require("../../chromium/background-scripts/rules"), + + URI = require("urijs"); + +var ruleSets = null; + +/** + * For a given directory, recursively edit all files in it that match a filename + * pattern representing source code. Replace URLs in those files with rewritten + * ones if possible. + */ +function processDir(dir) { + var stream = readdirp({ + root: dir, + fileFilter: ['*.html', '*.js', '*.rb', '*.erb', '*.mustache', + '*.scala', '*.c', '*.cc', '*.cpp', '*.cxx', + '*.java', '*.go', '*.php', '*.css', '*.pl', '*.py', + '*.rhtml', '*.sh', '*.yaml'] + }); + + stream + .on('warn', function (err) { + console.error('non-fatal error', err); + // Optionally call stream.destroy() here in order to abort and cause 'close' to be emitted + }) + .on('error', function (err) { console.error('fatal error', err); }) + .pipe(es.mapSync(function (entry) { + var filename = path.join(dir, entry.path); + console.log("Rewriting " + filename); + try { + processFile(filename); + } catch(e) { + console.log(filename, e); + } + })); +} + +/** + * Overwrite the default URI find_uri_expression with a modified one that + * mitigates a catastrophic backtracking issue common in CSS. + * The workaround was to insist that URLs start with http, since those are the + * only ones we want to rewrite anyhow. Note that this may still go exponential + * on certain inputs. http://www.regular-expressions.info/catastrophic.html + * Example string that blows up URI.withinString: + * image:url(http://img.youtube.com/vi/x7f + */ +URI.find_uri_expression = /\b((?:http:(?:\/{1,3}|[a-z0-9%])|www\d{0,3}[.]|[a-z0-9.\-]+[.][a-z]{2,4}\/)(?:[^\s()<>]+)+(?:\(([^\s()<>]+|(\([^\s()<>]+\)))*\)|[^\s`!()\[\]{};:'".,<>?«»“”‘’]))/ig; + +function processFile(filename) { + var contents = fs.readFileSync(filename, 'utf8'); + var rewrittenFile = URI.withinString(contents, function(url) { + console.log("Found ", url); + var uri = new URI(url); + if (uri.protocol() != 'http') return url; + + uri.normalize(); + var rewritten = ruleSets.rewriteURI(uri.toString(), uri.host()); + if (rewritten) { + return rewritten; + } else { + return url; + } + }); + + fs.writeFileSync(filename + ".new", rewrittenFile); + fs.renameSync(filename, filename + ".bak"); + fs.renameSync(filename + ".new", filename); +} + +/** + * Load all rulesets for rewriting. + */ +function loadRuleSets() { + console.log("Loading rules..."); + var fileContents = fs.readFileSync(path.join(__dirname, '../../pkg/crx-eff/rules/default.rulesets'), 'utf8'); + ruleSets = new rules.RuleSets({}); + ruleSets.addFromJson(JSON.parse(fileContents)); +} + +function usage() { + console.log("Usage: \n nodejs rewriter.js /path/to/my/webapp \n"); + process.exit(1); +} + +if (process.argv.length <= 2) { + usage(); +} + +for (var i = 2; i < process.argv.length; i++) { + var rewritePath = process.argv[i]; + if (rewritePath.indexOf('-') == 0) { + usage(); + } + if (!fs.existsSync(rewritePath)) { + console.log("Path doesn't exist: " + rewritePath); + process.exit(1); + } +} + +loadRuleSets(); +for (var i = 2; i < process.argv.length; i++) { + processDir(process.argv[i]); +} diff --git a/utils/rule-sample.py b/utils/rule-sample.py deleted file mode 100755 index 571f8dc13718..000000000000 --- a/utils/rule-sample.py +++ /dev/null @@ -1,19 +0,0 @@ -#!/usr/bin/env python - -import glob -import random -rulefiles = glob.glob("src/chrome/content/rules/*.xml") -rulefiles.sort() # determinism -random.seed(0) -count = 0 - -while count < 20: - f = random.choice(rulefiles) - ruleset = open(f).read() - if "default_off" in ruleset or 'platform="mixedcontent' in ruleset: - print "skipping", f - continue - count += 1 - print "-----------------------------------------------" - print ruleset - diff --git a/utils/ruleset-allowlist-cleanup.sh b/utils/ruleset-allowlist-cleanup.sh new file mode 100755 index 000000000000..1975665b41bf --- /dev/null +++ b/utils/ruleset-allowlist-cleanup.sh @@ -0,0 +1,42 @@ +#!/bin/bash +# Remove from ruleset allowlist the filenames of files that +# no longer exist or have no matching hash sums. + +# Change directory to git root; taken from ../test/test.sh +if [ -n "$GIT_DIR" ] +then + # $GIT_DIR is set, so we're running as a hook. + cd $GIT_DIR +else + # Git command exists? Cool, let's CD to the right place. + git rev-parse && cd "$(git rev-parse --show-toplevel)" +fi + +# Run from ruleset folder to simplify sha256sum output +cd src/chrome/content/rules +WLIST=../../../../utils/ruleset-allowlist.csv +DELIM="," + +(read; while IFS=$DELIM read listed_hash coverage_flag fetch_flag file; do + display_hash=$(echo $listed_hash | cut -c-7) + # Remove those that no longer exist + if [ ! -f $file ]; then + sed -i "/$listed_hash$DELIM$coverage_flag$DELIM$fetch_flag$DELIM$file/d" $WLIST + echo >&2 "Removed $file ($display_hash): file no longer exists" + elif [ "$coverage_flag" == "0" -a "$fetch_flag" == "0" ]; then + sed -i "/$listed_hash$DELIM$coverage_flag$DELIM$fetch_flag$DELIM$file/d" $WLIST + echo >&2 "Removed $file ($display_hash): obsolete, all flags set to false" + else + actual_hash=$(sha256sum $file | cut -c-64) + # Remove those whose hashes do not match + if [ "$listed_hash" != "$actual_hash" ]; then + sed -i "/$listed_hash$DELIM$coverage_flag$DELIM$fetch_flag$DELIM$file/d" $WLIST + echo >&2 "Removed $file ($display_hash): listed hash does not match actual hash" + fi + fi +done) < "$WLIST" + +# Sorting by the 4th column (ruleset name) +TMPFILE=`mktemp` +(head -n1 "$WLIST" && tail -n +2 "$WLIST" | LC_ALL=C sort -t"," -b -u -k4) > "$TMPFILE" +mv "$TMPFILE" "$WLIST" diff --git a/utils/ruleset-allowlist.csv b/utils/ruleset-allowlist.csv new file mode 100644 index 000000000000..2e3e1c481b91 --- /dev/null +++ b/utils/ruleset-allowlist.csv @@ -0,0 +1,2222 @@ +hash,auto-pass coverage test,auto-pass fetch test,filename +fbb2d56d33f886b53c314eac3446eed8bad7916660ad0709367936fe8335d987,0,1,112_Cafe.com.xml +5b650e2b6084539440a1b66b5b45f5825a2d61db7812c7521e1a1e0860c4b6a3,1,1,16163.com.xml +b5c96ae391a5b0971fb2438e3afd37ec7ce439e7dbb271276cf7bbeb0eb61450,1,1,16personalities.com.xml +55b1ea082e1da07a13ef7bca833f779a23335658d345294a35e4944b90c5c136,0,1,1TW.org.xml +4d7ea51ecce8ef52d7f14fe3d2196e7647c347ae491a8c51ff84555426f4c05b,0,1,1phads.com.xml +4209813635498e7b1f9c944d648173507b41e0e3260e16b3fdb6f3f945ffc28a,1,1,24-7-Media.xml +feb478f3b2f281637dc660c70688a7002af3e4c8643f49bc2a45dc451a2fe450,1,0,2K.com.xml +106d40535445ceb77ef877d7cd43e68522ee15426bb20391be72da7ee7ed0319,1,0,33Across.xml +2754710db32540a9e4fc610476d2da4ced0e742af02f5db582aacc553436a822,0,1,37Signals.xml +0b112de7f3114b9432277ced9283996b39d7d7a9f5f3471fb98545630f674d8f,1,1,3M.com.xml +3cd9cc0b3921f83d5bea3d5e948e0b95223f24dde3afa2bea2c346aba084eeb7,1,1,3dglassesfree.com.xml +41753915c41cfe07253511c84b34de0e41983d64ca36ca0dac6922c325573249,0,1,3g2upl4pq6kufc4m.onion.xml +c82fc176343c2425fb39f152c4819a3c68802a973835817b8fc2ab9cf2462db2,1,1,4gamer.net.xml +8223ab030d3a507686a55a6d13875fea38888ee6e1aefcb086e0ff99d83116f4,1,1,888173.net.xml +53ad3f31c9603c3fa9ef4e1737d60c314a2033b5646398e64986f1952d11bb2a,1,1,972mag.com.xml +7a25ea9f7d589947b91e6c4d54f91fadb6727107093a0154936119eac027ff8b,1,1,A1WebStats.com.xml +471b1cb8ca62bde3a1c77076ded432fee9ad7a31911abbdb70d99bd5a6c22f0f,0,1,AA.net.uk.xml +a77b292e0258a8a9a81a8e05fa342741e226a1e024978fe7c6677c7c65150ae3,0,1,AAMC.org.xml +f97657791892c8df7bdc53f8d0207d699859a190444fbf975e98861d4cf53650,0,1,ABIS-studien.se.xml +b46e53a6f571bb484c20bd6d6506fdd6616e344cbd8c4ee987994878ba6f28b7,0,1,ACLU-of-Louisiana.xml +ebb612af087df8278b2f48f19db43fb3cac73d6a4e9b4e1e58e37e1738164c7e,0,1,ACLU-of-Texas.xml +9dd2d07280b679205432600769a989ace5a9feebe2ab2e5288b509719325be90,0,1,ADP_Screening_and_Selection_Services.xml +276a2773697e1f02e05064c9caafa4958b2dbab8110457e719a14e3d15db499b,0,1,AEUP.eu.xml +bde27e017263a64c388195a0091c24f9dffb1c23ce90deb3c63919c75bb5598f,0,1,AFCEA.xml +9fcb7423caa4b2db65448eea1b798f7a4fa939e5f50cf55d934f37a8a5ea67e7,1,1,AGU.org.xml +f8154916d6f3d0255e6589d3f054caa5644cf7a8a744c2aae37522463d78d7f0,0,1,ALSOActebis.xml +a4e558ea2da104b30ed669a14016d712364b596f25b49a9cefc3a339622acd46,0,1,AMMEC.de.xml +fdb40ffd6a457474b8b7ce3e12667c6fde61187460b7ad9e4cc2f1dc04b89205,1,1,AMetSoc.org.xml +e0a596183d10f82f7039179e8031bf5d27f2afb43efc173da4c38862d7827142,0,1,AOptix.xml +264085253948aa5b59a18c70206b9eece60a5099a73c6f8db8cb7fd6ac0c9c99,1,0,APO_Box.com.xml +1d1610c5c021fe4971a3c73f2a7a718989786ce202bb464ba5e9b226436fd59a,1,0,ARPNetworks.com.xml +12a54fdd75f8a200b6da25d78514f8ed3e3a3bc516307e3729b9220792921514,1,1,ARRL.xml +dec3921e5bb388e22d0ecde04515a7263b9df10ecf6107700c79cc618d3a88cc,0,1,ATNAME.xml +2b730c5435e15989ce7cd5f714b20fe9bc36f3ca56b78c1e4d85b4ba01bd3222,0,1,ATrpms.net.xml +3e632fd55a29b917584ac35e60d0bdba0adc9d707aba3d7c541c79db1bd81da8,1,1,AVG.com.xml +406d709a4fd37483cfbd763d8d6a17a98f3ecfede0fcee4a9a7405093b5dce6b,1,1,AXA_Winterthur.xml +a60c7c65acc781e40afc32649894a7aff53c245970ca91c85743ae9df637539e,1,1,Aart_de_Vos.xml +0010505a729eaac27f576a7f3f1b3648a21f0847103d8c00d9aa511b4758eae9,0,1,Abercrombie.xml +dfde2866b7ef90b4edd3ff9e03fa9f1d4ba62b14864a901eecb7e8246de39024,1,1,Academy-of-Model-Aeronautics.xml +3ace3b65a3c533db55345e50ccdb151b967e0d65a029286b8a9951fa9273646f,1,1,Accessorize.xml +e870aa56bf0a79c94302665c8deb5aaf19aef59a030513d4bcfcb2741be474ad,1,0,Accordance_Bible.com.xml +e3a863c01dd5fdfa2b204b371f9a16ce8fcc136e0a65241a9bf0f41ac3454b60,1,1,Account_Online.com.xml +c058b6077ff1338a785e3e7bfd003eaaf0eda151b28e81cb76e4bacd3d25e116,1,1,Accountservergroup.com.xml +299017a21aa2f2d62f8a3e289cb80398b46a3a649ccdad3b34b2c0660e68c3ac,1,1,Ace_Hotel.com.xml +b3dfd66a48d1e541fee3ed314b832e2b039e191c04e5563fce8ee3ab71054925,1,1,Acenet.xml +f377ffea5847776bd076e6e8fa38cd0e4153de88f0e331ed9836465441efb0f1,1,0,Acessoseguro.net.xml +5306a00bbba97f3edf93cd3bfe9f2231ba896ddf81fda180d35b3d7d44ebcd89,1,1,Acro-Media.xml +456fd4d09e6c35ce998d9bc48a14678c06ca3daeb0c273e23232d8736b734e18,1,0,Act-On-Software.xml +15a0856f0603c5730add28e9a2e6a36acc432c7704a7bb007517f496cd35fc65,1,1,ActionKit.com.xml +7d7739709de4be107d5f32d7bb0c84ece7761f864e6d9b434b3c239db0b247c9,1,0,Active-Events.xml +c60221ccd829ab0724101819b906f5c4ccd5b873d62b7bcdd15c5bd0003d6ef1,1,0,Active.com.xml +8f3e75367b17bc3d389eacda994ed6cd57fd7334cb2c82a30d58d44c2051710e,1,0,Active_Melody.xml +d35917ccc23128fe80d44bcd2ad4bdddf8487d216e51525f54e75977ec52e1d2,1,1,Active_Network.com.xml +fc7c90d849f4bb81243211a9562b2c2b9a56cd5bbbdfe376a1c891c0c3fce0e2,1,1,Activision_Blizzard.com.xml +e87c8a23db52372be00ffa86181ccc6e32cea7ff5f646f884a452187c543f2d3,0,1,AdJuggler-problematic.xml +5dffa6059f25b1934cbcb4b3c3cadfc7f0c45711cf7a3940141fe366c1dc632a,1,1,AdJuggler.xml +c781e81a341599aecb674a36f114512b59f5f7930fc309097a456c71e28db902,1,1,Adaptavist.com.xml +41cb473fd48fd1426473a4b354e411f72cbd21f785e70587407d0d76eb4b1439,1,0,Adbooth.net.xml +92c3d1535f321874ed0ae5dc36c44342c32dbe4fd19e1d86d8bc5b1c9887204e,1,1,Addison.com.hk.xml +fb4bb543e6864dac40ac3c6bd5bd334eafeb53da00be2cd0100eb00f4cded31b,1,0,Addison_Lee.xml +e0ff242fb2ed135c25e1a448a2daca9cf95a16e57c989bfdfeed1bd97b32667e,0,1,Adelaide.edu.au.xml +a739830eca763ae9a818d8ab8919a0fc8c20a857877dab194e0424ee0644cc1b,0,1,Adestra.xml +f5baecc41e25a8692ba863429d14c3bf84e8dc68684d8ca4c4fde749996e3c31,0,1,Adkontekst.pl-problematic.xml +ce56c65406df4436852f26458e9264c88c627758762ab195945b3e30a19353d4,1,1,Adobe_login.com.xml +55617aacb1813b061771e4f721507b7bd5b63d25478c1725256e12085e03b36a,1,0,Adpay.com.xml +f914b14018606153a7c24280dff27d29e752c1d4219f548fda58fb25becd3a77,1,0,Adult_Webmaster_Empire.xml +7cb2786a2b879652734cbb50bbd97b194bdb20a9ee61e7bcad4f2c8f4e0e081f,1,1,AdvertServe.com.xml +00bc0f8d49ed0c18f7f093f5a131fd8a2c0272abc61fadf67390f165850902e3,1,1,Adverticum.xml +2e68f7aa2b6c7621049ae1fdb584c4a851715e61e1756605f9fef462365e1e9f,1,1,Adverts.ie.xml +d739ae917fa93939b84610ee6f929652200a550db28565e5ab38e60f7e82163a,0,1,Advisor_Mailout.com.xml +94cd248d16402173c247f14ae927f72c16737f5d59fdbe8e789a543bc9c92dac,1,0,AeXp-static.com.xml +448b66df63589e61859860a7af43ec4fdc1f5e80ef85755b137b966cec8df262,0,1,Aereo.com-problematic.xml +004141042389a227021f73c7e33b69086d8202034e4e2b387670f82769d6a411,1,1,Affili.net.xml +d7080434a9f73a06d758696e4ec5e7b3c60968c0c1a4271e70e32cdf4ac1a170,0,1,Afford.com.xml +0d3d535b12985b71c14e04ad635d3ae2ae6c5b1a869f3b9a2a664dae9492767a,1,0,Agari.xml +1893f4cc7fcce53078404d3fc8962e0012bf30b9788af805942b6f07a2fb36c4,1,1,Agri_Supply.com.xml +af6ba8f96429ea0d649275a6cada17a2d691e8d3fb35f37f498f9a11ce1f91f0,1,0,Ahm.com.au.xml +7cc75135ed0cd3b81ef62e24de4ca2da433caeb54b12aca1bd0d4efdc01f31db,1,0,Akamai.xml +5e1cdb7d9af34842a8c2b7c7f414caa8b84bafe4072bb7d883f7084dd5edcdfb,0,1,Akban.org.xml +eb52feaec70c7afe2368ad23be6728e6828280b983a39991d2e31fe51ae6ec17,0,1,Akinator.com.xml +699895da3cfb27a96f1d6a46ed31aaa29c34653a511057a9ead4861a3722db7f,1,0,Aktion-Deutschland-Hilft.de.xml +187e9c128e4b4237887a14de2f1efeb6fdf647e2549b0abb4f2fc09112879a59,1,1,Alcatel-Lucent.com.xml +1a75f296456093e211748b9d5dc4f8c2460d36d5ea29f0a72872e00ccaa93a94,1,1,Aleavia.xml +a275d12398d9e55d91c2b48ac3733fcbdb64251ff7098b39fc28c2996de573f4,1,1,Alert_Investor_Relations.xml +691e2338225111a1b09f19c600acdbeb09e900d0ef7595d6a5588fb54c3e37eb,0,1,Alibaba.xml +e5c67d653dde583fa8a8f5e0afcdbde59247ccdaac71972115bd27b769e469dd,0,1,Allianz_fur_Cyber-Sicherheit.xml +32f4695b029c352f7dff4eb59d4b5e19a648e8feb3b737878b772bc2a9609176,1,0,AlliedMods.xml +3ceec0f2763c711f5f4b5b43c4dcb2c58e4e94ddea1fdca51018d4f5b03b4d4f,0,1,Ally_Financial-problematic.xml +51262d5e1bb4a313c8ac7a866f4b31d429585df60e66a630771066099d190716,1,1,Altera.com.xml +5d30fe7992767abd2f1648d0508b16d78a0333eda4a987917db02ef25941175e,1,1,Alticore.xml +50a3d1c2bc7e498fe0d89321f53d144e668803742d1c19b0e3e4d2007621ef6f,1,1,AlumFX.com.xml +83aae8644fbd60dda604ede8c58cd14dc739f87281bba346cead0c5989ab41df,1,1,Alzforum.org.xml +4127fbcd8c7aebf2b075ae24d003bd16ecda40badc5e10a43692c51ae9902fdd,1,1,Alzheimers_Association.xml +b026e083c80c6f98518189b67d38b2e7bddf53fd115db0e144e8bc3ed2c8e933,1,0,Alzheimers_Society.xml +fd44fb9d85d3ea27ebcf317f6c0529d2dc6862604f82f1f48a03fac77bad06e8,1,1,Amber_Swann_Publishing.xml +70ac36559fc444a01a91bb411bcbd38d4418bda22a84084bf81b316c42aad7b7,1,0,Amd.co.at.xml +65f0082277fdcc1873158996ca405d0fb8f7db9a4633b2142ae014a826066f9f,0,1,American-Postal-Workers-Union.xml +5365603eba6a90d384eef5b01bf8985b659093cca2ddba066b78d06d87ea0ca8,1,0,American_Academy_of_Neurology.xml +f58f2cd4524af0b47bee314b416ba5ef4be1213d7db98f2a18fdac91492c6e48,1,1,American_Ancestors.org.xml +92e9a46b0c218161a6977d43f3ad0e2c2e175caa825d293044f5a8f2b00cb13d,1,1,American_Bar_Association.xml +df85d394f005f959e805ee526de3801708f5c61a2379604202d22c6dcd4742e9,1,0,American_College_of_Radiology.xml +79271c5ed9f153da84ab9914b1e98622bc8d3b51c30fba7bf0f7047863831247,1,1,American_Heart.org.xml +f2c64f5833815703ac02cbd11efd4c4e48132a3c81a6196692fb4734580c20b8,1,1,Amiando.xml +dd70debfd991bb22af84defbd2e2e138ffcb6833abc14c2306ca8a74884adc69,1,1,Analytics.edgesuite.net.xml +b5ae6c5519ee1727036dbfbaed594fec60654b0e534350c2799ddde2b1259472,0,1,Anders.com.xml +0d5ae660c24c66e5c6521950658bbf3130fd5b3803ef7caf0523b80519580e58,1,1,Animoto.com.xml +97a0818a118c603fb45f76723e857af28aeabe0b668b7ec35e4c554ff9660975,1,0,AnnualCreditReport.com.xml +160285b816e182481868f37c9b2bc23013ad94a5749227eb6e34be710ec7c57d,0,1,Anonymizer.xml +af2eac7a517c666c869e80a72d8e077915069bce3435d7d465b60393ed94b4f1,0,1,Antifa.cz.xml +187ce6d87d040f1cf02412e81bf7864a3981614318d9b91a8b59c39828772b37,0,1,AppThemes.com.xml +9f93c63514ef6ca29521cf00a0a3c8504c12c8be7dbdaffe3d19a7a837fb28a6,0,1,Applebees.xml +f6df9862c3d4f316ad29a953c74defc81d73ddcedeb0d88f48ced3d45e7910b6,0,1,Applicom.xml +d4c84528d88d91dd63d1f67c6fb47e38fbaf8e5a22c2b1c362ffd68c52d449e2,1,0,Aquent.xml +df29ec4c06bdc5c8adf99c1ac94e4c583a09c800aa6a5befde1dbba03a92694b,1,0,Aquiss.xml +1b55285393adb6253ffe5d1b8eae0e7ec7a2f09dcc0a10f18cf2c2beb489784b,0,1,Architects_Journal.xml +420a2671c39d5d7ef278de619e17ed6f0f9530656d2200e35186d8050337e0d0,0,1,Archomedia.xml +a2afbfa23bd03a416c6835d25abaa56f08f1b958f49b1af5f539d1d805929c98,1,0,Argonne-National-Laboratory.xml +b7da8eb71bac9196944afa62279d4f6c1143b87a1ba2090b301c1f760164bead,0,1,Arizona_State_University-problematic.xml +35b8bcb9a8c7ca87094f12b24aba2343a5087db4abc52cf267ca2303b36c2af8,0,1,ArmyTimes.com.xml +cda60d257787e7061e709192d5cf0a94a4984b46985afa9f3b0cfd0dcef90cee,0,1,Armyoutlet.de.xml +deaf1f8eefa9c210569f9f4f765b65abc1dfdae41d569ce26661ecc62329ab26,0,1,ArtChristina.xml +7a27bf5aa36474cdb4f6be7c8acba249c5f15b44c4343b8dbafa8733792b587f,1,1,Art_Lebedev.ru.xml +9ab5584b55ec935924daf83d9f2ede2f2cebc76604d5465536225d1cd3db786b,1,0,Asahi_Shimbun.xml +f9990d6c03425415964794d370821ab71b241c42ecb3ca3470f4f68a91c6b753,1,1,Ashford.com.xml +9df71aa013165efa180c520096902f74771dc83d900cb04ed8c7cb5b82025b8b,0,1,Ask_a_Patient.xml +c7a5b3c8f14fc542deadaa515a2c62cd7837363313997853f1bcca5c8841ddd9,0,1,Asknet.xml +ee30c86b81fee828b7b66094087dad1ceada6a09b8846c76e1323017614a41ae,0,1,Asmc.de.xml +d262fbf653e06eae187698c0fde725bd7227fb6ae69b0f8ed0a579d28ec582d9,0,1,Asnetworks.com.xml +a1a402d40a355131bf1e37b4c0a6b8c8e084191cd61fe56af0ed34936e72e61b,1,0,Aspen.com.xml +1d869ec0561b6315e5a76adb6647f320420368539419435c266a2d5fcea3e1e2,1,0,Aspsys.com.xml +757f6d69b3b210524c02e9568327d146094fea887b981abd5cde8bfc0be27fe9,1,1,Assayassured.co.uk.xml +ac0e2ffaed6bfd83b89d6afbfc399d307ed3cec22127daf150363ebf87bd19b8,0,1,Assembla-mismatches.xml +59ed37f0dd3e4eccecd52a1d9870385931f4232c8c206bf38fd5be09ac71c69b,1,0,Assembla.xml +a5863f348dec427d596329290881cb9c98ae69b9750e221c6671f4d8f71db317,1,1,Association_for_Learning_Technology.xml +69d39068d71ebbbe56a4f4c895624727b18fd4078a9ca49b5fa171faadbc243a,1,1,Asterisk_Exchange.xml +3d5ed7f1111c25632f3b7292512a4a9e264500c02ceba089033607e8885f5a87,1,0,Atlantic.net.xml +895e39745fbfc4d380f4420f1cf25cf081d509a3769b92d74b51ecf096f88d3f,1,0,Atrativa.com.br.xml +cd59b21753dc080061d890781f4f8b140208a2cbccfbab0f050eb31dbcfc6a21,1,0,Attracta.xml +a5fdb3bb0c29355ff44f0bf35678043d85d2c9fe07316744efb753c2ceb955a6,1,0,Audible.de.xml +95bb51781fa963035cd1a58058b9bfdfc9abfbc3ffb4f8d7e21ac08f3339e504,1,1,Audience_IQ.com.xml +e93b07e0b6cc742be0b8402e08c42fad688a33ab622fc34541ff95d78ab98c84,0,1,AutoTrack.nl.xml +5c3a3f5275c8e00d18aa36f50a1e4feaf8fe8e703eabc2bb2110c803b7004207,0,1,Automotive-Industries.xml +8faac2dc54797656378a0a9ae829bb67ee8a653695ad946842dc0e80a9879779,1,0,Avangate.xml +7f5b9cdfe9276bf67d2a4bbbd009f9f3d2fad527198a2e5f8ce1b8cdc2d3235d,1,0,Avaya.xml +7e32f6880a2dee58ee25136d1d36244edae86abaa00015db534b174ac543d77f,1,0,Avinc.com.xml +08bbac27f594c550b305154cc02cc5988b7cc1c6976c6bd6ffddb0fac17bb590,0,1,Avtrade.xml +9b72647c715ae4fef53f22ce772e79a5dc5853ab6e8dec175bbcdebd769e5c07,0,1,Avue_Digital_Services.xml +74d92b32d3809a7a7971171faadf4515df67bb8a33af80353a53826a45326e82,1,1,Axantum.com.xml +aa3e6486761566210c9bfa7fbe3d495a5d7273bfe0632ac3efe0a1793a585671,1,1,Axel-Springer.xml +f6468f106fec675cba71920bfd2243936771900e9d15bc40349e5d5bbcf0e3c9,1,1,BASE.xml +bbbfd3e4a82e15d4d89dad020b350321c0fca4e5e8b89075201cc8861f1a7fdc,1,0,BCGolf.com-mismatches.xml +5a01a4ef9e0b0e572a6d075091320139a3748bb339b996271e71fde911ab68d1,0,1,BHosting.ru.xml +6844b64d58c80eff8e30edee7d55d176d295fe2294b5220be007c536f929eda7,0,1,BIKT.xml +a5c928606e0d561e5d440f462785ac080a8573075ecb058ca61d7467dbe1118f,1,1,BLOX.xml +2f97c8acb30a49ebee76c6baffea70625f0fe101f79860965816b3416940f04e,1,0,BMC.com.xml +f220626aac6f6f1da031f3bd445bef227d59da713beb06685215af440614d8aa,0,1,BTH.se.xml +f02719e41dfc1e6cf086314cb5d1b4fdf6495ca9e012de645a3e62bb9fafae95,0,1,BTR_CDN.com.xml +1f8a223fef58d2230c7688901cd5a2b66dfce9d34b6ebff320e54fa2ca1e9482,0,1,BTR_static.com.xml +d6eb4f47bb565d059dbdf0ab826d37a817a8e460b4311d411a870bfe8a1d1fa6,1,1,BabyMed.com.xml +5227426403d71b31d56748097f18c23e1d5a998e3affb1392b16594c57fc9126,1,0,Backcountry.com.xml +35c9ec0e0c41b6699ae89b448b17ccd757f53a3fcc28c44258f2ac512f44a3b4,0,1,Bahn-BKK.xml +afe0cb9f879460f9754e11ead8b76e9e36684548dc1f3ba9721da1806ba94ae3,1,0,BalaBit.com.xml +193bdef49c71f93c783fcc8600a835156cfe321b00943b81cc1c9f4dc048c87d,0,1,Balkongshoppen.se.xml +ffe89a541e79d166ab51bb9585db0ccad767e29203521e306764c7f0b80cf5e2,1,1,Balsamiq.xml +4d64f5fbdeb952a226359e530e592e1675a9b5447cf754cb586c11dfffd2611d,0,1,Bangor-University-self-signed.xml +c0572421747129369f8219d06a95b1e5ba601619dc79095bb4b459458f30850d,1,1,BankofScotland.de.xml +811e7555f76a87ebeded357e918a1fd67d34f72bd9b7d3dfd6b61f6cc97ae335,1,0,Banque_CIC.xml +3cfecf241423076e62d74a2ea4fe98ac038526a14652dc28d053e64390218d5f,1,1,Bardwil_Home.xml +b60d916c30d712566b0fd5b697b4a754a4d7fb05597485109a1c9d92f721dbd4,1,1,BarnesandNoble.xml +3671a9a071ce22b0d7ebffd007a6164eb32681c72692e4ae734895f4e3592691,0,1,Bartleby.com.xml +06d7ddc36e464c176e85127f3364705691b70fec942e9163fb78fe4dca6e6ccc,1,1,Battelle.xml +e53b66541d1bc87544993925566d303fcf2dc85f6fdb84a831b5e548ab65ad22,1,0,Battle.net.xml +7cf5aadbcf3f8af1e874d034d45865b41f7dd57449aa653220901edcfd4880c7,1,0,Bauhaus-University_Weimar.xml +8c5c56a3ae46e7b0e0dff2f9c0109cdea46cb5aa1332746944a2fee27c8f993d,0,1,Bayan.ir-expired.xml +1ca67dd8c8e778bde03249a0ef9d97a48259a2d8261222df72e54d3ad1c63d21,1,1,Bbsey.es.xml +c34685ecb3fb87f6100e138ac70635fe33ece2a7d6a636ece3d702a2494a45c6,1,1,BeCoquin.com.xml +2c3ef75bae006356ec0462053c32b3dd70e0486cdb889243746fcd64074d3a3c,1,0,BeNaughty.com.xml +12129b04f6dd2125cfb4b15ef93ff8bd2d6224ed9430565825912e54a0522176,0,1,BeastNode-problematic.xml +f538f44371178d2f1c7c9b2956fb6fcf9c453aa7a05700f9c63cd56caf09e196,1,0,Beaverbrooks.co.uk.xml +72f0100b35813d1d23dd13e8cd8a9b707db6323a37c5528fbba66ac557f3077b,1,0,BeenVerified.xml +d69ef30208a20afc98cca9bcc5fc6af1b67a7328f3773ddb9f47665539183228,1,1,Belkin.xml +774ce0054a322ac1ac0ec628ac8fd5905f72750d3c618790d14aff98474fd3f1,0,1,Belly_Button_Biodiversity.xml +4fa3697cf81af513b6a90b5cedbb048caebd70f8035f36ac80b193d040e0f173,1,1,Belnet.be.xml +d1cc057906222afeaad9143a7a19f12da584f2301f648e424e38c19394bf0705,1,0,Bennetts.xml +f8a9517520b6042b8d0106a36de5e62b23ca5f353a9e02558cf495d86b466bb9,1,1,Benzinga.com.xml +0dc9ce63ba5308df05d72ddd5e472216806bb7c13248cf3ffdaa9c4b66b331b7,0,1,Berliner-Energietisch.xml +2809c2e484297fa0bc3ec2c02d1e646b272d8f2b9db0af829e6bdac955efc1c2,1,0,Bestcovery.com.xml +10862e3c350ba15fe9258295149a8f688c3a6669527ba1ddc003efd50b0db2d5,0,1,Better_Sales.se.xml +85369d0cd3eaa85d5426e92adefe7af4f9f814d1e0e15576cb81373454683ca3,0,1,Biciperros.org.xml +d68ee3cc47157f440dacfb19f654c89b597cfb31cc7bde24504adfe61ee50c05,1,1,BigCommerce.xml +ed5df40362cb3e1124a4a48ac5a4c876987e58beeea367a46a912ac59c7288c8,1,1,Big_Concerts.xml +bc1dce36b45b3964aa4ad44bac9f4f21f9ae6c58f7c538f56ac592aec5e9c56c,0,1,Bild.de-mixed.xml +dc5adf6c19510d6c30641e13b570ae53d2b027a52bf710efcb332650b99b11b7,1,0,Billiger.de.xml +66039ca34034afbc98fb093623ea40b2ba4f8fe8f733763a593ba204f4731453,0,1,Binary-Biz.xml +113777f338466bc6512680297e9af75a0ec7d94855ec4e652710551dfa5be09a,1,1,Binero.se.xml +59d72a6ec8f9c18c9d47abbb9999d6dba95204101d8492d4d921599bfda7a9fc,1,0,Biotrim_Labs.com.xml +a0134fe6daf1357222392652186d939db2bff2d536c66f04be36c9cc4d40d016,1,1,Birthday_in_a_Box.xml +573cba521c4d30634c5a52f669401e6fa01062c2ac6862f3a084d43b566d34e7,1,1,Bishop_Interactive.xml +0e7aa1032567406b6d90062e0aea70739d396e8df454174215feffc75583274c,0,1,Bitcoin_Plus.xml +d8ee4c87b0620b6042c91603f08487127062a0a139d668e8c750d02a08fb2a77,0,1,Bitsontherun.com.xml +08fef6e8d57b0a993adafca479dc40f171557bd674f61c1de7347fe97871ea63,0,1,BlackDiamondEquipment.com.xml +6601feab3dbc022ef37296d161f15fa92f5d1235d8aebfe882f0e6e447e18775,1,1,BlackTonic.com.xml +0e454d16adbcb95ee565d998a6275a57e98d6f89d3e261a31ef9b7a006a9f692,1,0,BlackVPN.xml +488fd6c9aaf93eddc2eb9d2bda98d612269a42d022db8d847eb51910ab0a1595,0,1,Black_Box.co.uk.xml +3b4d5afa29fc1c08ba4f9bba3efa9c6864ef88073269865673fa63074e5a6ec5,1,0,Black_Duck_Software.com.xml +26d68e684c4b831a43fedd18972f20da578d54bcd88cefa69adab09d570ffcaa,1,0,Blau.de.xml +8197a554073f79c50efa6b58339f3d3908a786c5041c7e446e3f94d2e41fe190,0,1,Blaze.com.xml +d081389526c163f91d221dc4e3f6581207b863cd53970e1880ce0c72f335f5bd,1,0,Blazonco.com.xml +878916341a96e0461e4eaa31ff855f8bcdcfe3df38c204200f5a4ee26c0ed2c1,0,1,BlimpMe.com.xml +c532f455966d1864042489e42a050a7d2f7c59dcb18deb69de94d6a18599565b,0,1,BlockScript.xml +5f627234aca463926eac998ef133407e322eb94921136ef0dcd5acb73423d1c0,0,1,BlockitPocket.com.xml +f74faa732db51e1226ecbb603ed1bcea00ddb67a6d5ffe2e1b922471ea33a107,0,1,Blog.ir.xml +1f133fbee8bcb5a78a7b039865a38c14c1e6435f48d93a61a9125ccc4d83f90c,1,1,BlogTalkRadio.xml +0345c0f4ef1e2c9b07dd7af1ef177809cb3437ca02fe2d6e4eeff5bc45d8c2b9,1,1,Blogg.se.xml +3958f7571262401df5596dc64eb26c150ccc8e8cb412301000e4c13d5561b13e,0,1,Blottr.xml +b3fa84409abf942170fa0a73032e4a05a134968155340466e8a776a7b0a7cc77,1,0,BlueSSL.xml +35530c1de082fe8c03754f797d1dfc1696c62ccde7587877e11be615397e8f50,0,1,BlueZ.xml +fec60c661c82f9e6973e837a53a3604a7bd2dd503dd1d31b7a6802a84f4db6ca,0,1,Bluegiga.com.xml +3a9ea6977bb0bec960b933eb5fe45b15527fd66b114e2fcc16db7aac0b0fe105,1,1,Bluehosting.pl.xml +a9a5d4fddac6d697f375624eaf93768c3830b8f4a02ab875bef448a248632fec,1,0,Bluemix.net.xml +049d52950b84b0ad4a13c8d019b8a1c0431dcb8134a602dce2de09747b89fed4,0,1,Blutmagie.de.xml +c9a373826a1033dcb91fe698e08565a239407f4dbe6b4b9e665763369fcf482d,1,1,Boerse_Frankfurt.xml +42244265357ba444d6ae9d1307d6e2e52b442206eabe091dd84d109cab1c04b9,0,1,Bolagsverket.se.xml +a553123cfce927b1c373d5ce2380bf609f9d6dca9a8e61d51ecffcc5edece1d3,1,1,Booking.com.xml +7a7a503d185e2edfd16ea359cf98ccab897c35723e5fabef91c8e3ad9f62ee26,1,0,Boots.com.xml +45421bcab88efc09f590ba1deb06a30f8ebbfa1178d7061f2c06def617407790,0,1,Boots.ie.xml +33fdd006644fc9144ab8e95658080cc6a7a02dbd974d3ef819a370534b3af584,1,1,Bosch-Sensortec.com.xml +cd5d99534f588512306421c08f2731bd2e8f7bf28d34a8ff58ccc0ce90db9d0c,0,1,Bosch.com.xml +82bd19dea8f72137448543133b8f92a4d5a51ba51ffa09ebb42ff5bbfac4a787,1,1,BoxOffice.xml +7c899ec80cc19d4ae8e2999849a3624f6891c104df4058edd230652897815e28,0,1,BrainBench.xml +8d94c07043530873917a955ddc49f56d1004c0fb4c1ff72b6f9d94eca9aa5b03,1,0,Brainshark.xml +fbf85e04eab9c52f529decf30cd53a57da2d70650241c0116447e78e3f8077ad,1,0,Brainsonic.xml +3fbe3fba810c1999458523eb42e7066bcacb7f5f134e0b86ea220ab111fc5a73,1,1,Brainstorage.me.xml +bb99bc99df1c831b11f24c7b67956dc23df65fd60e912ffdcc34ae62d34b5845,0,1,BreNet-mismatches.xml +c868592f7203fe56cfaf6f91a4c8982cd132e3e09617de3c7d4134a85eb39568,1,1,Breuninger.xml +0e2a8dc117d3acd6fb19e37f88bfe2027d3f5b253b3a1c1331fcb8a4058db82a,1,1,Briggs_and_Riley.xml +5fe89f289d284cd7126a18158e7c3fa5d2a7a288112d158836291a8383e0886a,0,1,BrightTag-problematic.xml +9fbbf43514333a5a4dc5cc25f26f3687485fd24d043af068d148f808a76a894f,1,0,Brightcove.xml +9450fdcdde9f469e30ea3b62c725b33adc64bd353f99ff52a38c70e42e8cb58f,1,0,Brighton.xml +07b6e7331097c6a623202e7c864131d2bf7a686411c6f6435e350f50d7ddd29c,0,1,BriteObjects.xml +087639bc23c5c1d881eb705e36827a4dcaa30a6009a986b030a7b2cae0183aff,1,1,British_National_Formulary.xml +a511d6d05a4c679cf818c0eb369fd0038cce2736bee09f45e8a018948a3a8b73,1,0,British_Red_Cross.xml +32b9248b21536ba2f3543da40e005493be51e230f39f5728920e45a5d5afa9f5,1,1,Bronto_Software.xml +b8a7549d679696fcac931a3b47b361c08b2c57690fa83635ea9ab16907a4c895,1,1,Brown-Paper-Tickets.xml +4325d39e0e10a221fef89c4c06e91596114b3a730107e98de7d66f473cc3a759,0,1,Browser_Addon.com.xml +08ccc26490b9f326c737e8ebb878ce2f46f8131fc47bebf0b68051adfc09fbb7,0,1,BruCON.org.xml +15045b256d3c25cb833b608efdb944f2dbe76c4e7dd2e666e3fe975ca5534e04,0,1,Bruno-Postle.xml +51249e771817637e82f106f9105c78ae51b0d4f9ea6690ecfccdad8d997f1619,0,1,Bruteforce.gr.xml +cdfc30bffe359836ae3497140988a0e232b84ec88b89e1173bc7cb0bb0b3bcd4,1,1,BucketListly.com.xml +8e7f67c2c91f31f555d547b8c28b2fda823f60ac8cbf7343bcf63b2b3279db12,1,1,BuddyPress.org.xml +dd371551522c75ec9295ca5f17700e00b4ce5487edc6512957a9e66a5329a476,1,1,Budgetkredit.ch.xml +42207f5a81e9c20cfeffbda745d6b910f88f06740f8d21e3252abfb9ce7fac35,1,1,Bulletproof_Exec.com.xml +b868f832ff3636c59aa9c3c764058525b955fd7160f2885afa2e1a2a4ab4d1af,1,1,Bundeskanzlerin.xml +4a993016b9d3017b227427c90e48cd8373fd6134897945f279849307d9f40a77,1,1,Bundespolizei.xml +729e6bac190e385ebcdcaff9a55511b012dc9487b95fb2db92126227a459d14a,0,1,Bundesverband_IT-Mittelstand.xml +7a65a358848726715fb7e1ff742b7dc41fd1078f94ffdc4a4963ceae9abbf330,0,1,Burstnet.com.xml +a7275bcfe771b298e64447d2124dc4b1025079638ada3663ff20283d3e264bb3,1,1,Business_2_Community.xml +1828776117613179b01abfeeb5c873f8198051e1a751002ee4bc516169072d90,0,1,Business_Catalyst.com.xml +f84dc3b861bdd8e0606b938940f1acc036781645b2abf5db29d86a81897ba279,1,0,BuySellAds.xml +7a7763a7ff5ea2984706824337edf735a0b89de74fc26db49e859ecbc4ff0661,1,1,Buy_Veteran.xml +b538310cfbe7f06f481c733d23a8b41facd488c3a91f0613142b44155369e6db,0,1,BuzzFocus.xml +97d0a30dada7f04c8cb3429a1048b8ac805bfd37e57920737e76e97124366f38,1,1,Byteark.com.xml +59445b251d79594d7aa1407e55b9567d488c9dfaf69a539fc55557e142a84ffb,1,0,CAREpackage.xml +815b13c84f20fa674c550256fd7f0faff27092abe79bb7f6994d68604d6219d3,0,1,CARI.net-self-signed.xml +cb89627369982908c0f26a2057bfc12a61b87dc3859a7524a6fb20f638d07db2,1,0,CBSIstatic.net.xml +a753690fd77b86bf61011ed27f054c2415145c25276bde90dfc628846af112d8,0,1,CDN77.com-problematic.xml +91cd42e26c618a6f255052b9e8f5e45427b3b9a22e5f9fafd9ac51369f9bdf3e,1,1,CDN77.com.xml +cf5327ce99f02ed18d5249e6578f78a7584c6f43c05d2cd4ddf8a1aef16a1223,0,1,CDWG.xml +4e62d9366810238d6a5c6c158302001663b2614a37f9ab6051adb058057f5264,1,0,CD_Universe.xml +d6a8f71386d93781c880b1b2a5745306b956ce7a6e9054a32c8180e1d5882de3,0,1,CED-Magazine.xml +3ed7d88f741d017d81079b08092a0b75a1bd408adac37b7fb215109394c72deb,1,0,CERT-Bund.xml +e0bc56896fb53e6613aa9a3f3763ad2d52d4e33cd6df56902ec986f73533f469,1,0,CERT-Verbund.xml +93dc55d6a222b5dd2fd74e0f6ab9461b388709001769611fda746eaf6cee2f87,1,0,CERT.at.xml +ba6674337fbbf9905f5cb4804d367cae792ece098bf42cc5d6b97c311edc4ccb,1,1,CEntrance.xml +fe1cb1da747d4c59487f8561bd5d048a746a615428080805d68bd12f5a45d764,1,0,CHIP-Kiosk.de.xml +fc08fadbc356c1c170c2e48c51fd76cf1e6238e5c6d1eb71e76f0b9c4def968d,0,1,CHIP-Online-mismatches.xml +ceec987f3e67e3e7b1f4cec6c706fc9e0dcf3bb51ef908f6a7122b195a9f3e13,0,1,CHL.it.xml +dbc46881deffd783f88ddcd087523d767b4fbbe2c73a1266479dd4e46670b5d2,1,1,CIBC.xml +4a3251f6ef0a80747dc6d59dd8975adb0d07942f4babd0fc8ea79048f2be6f24,0,1,CICLOPS.xml +bbeac73bb5a9ae8cbe2b25f35490c13cabf5cc706ebcd3c7cc334c852bc754b7,1,0,CIO.com.xml +dac42200d1d949890405596afc238f175edbeaf06a39176b40e16234f5b8ebe9,0,1,CLIC-study.xml +96a1e4d8a7a151bf30f2ce5bdbcb762f5322add6297e6a17c1d26ede3953146a,1,1,COSMOS_magazine.xml +7ad4d3c27fac03a257936dd9c380abec312479338110714cb22eb95085035d35,0,1,CTOvision.com.xml +df7e93723ac3330c2859e73e2c28a08791e41be17d4586f5bb3a610ece41c7a9,1,1,Cabal_WS.xml +496e7c05fe03d3ef39378a01c47ab48dd3cce74f05ee486588bc569e1a230c29,0,1,CableTV.com.xml +0cf99299088ed1e5c7b0392b22233d2fae9545c038c78270c6fb8def0df55c32,1,1,CacheFly.xml +2b9ec7a31a1ef2ecfd802b57c36056e193b665f99ff11b3e612cd7adbd47e056,1,1,Cadence-Design-Systems.xml +04a9f7119bd93b943ec37555c866274a2f8af7239be84e78388b0ec6fa56eb0c,1,1,Cadw.xml +e55fdb3ed55be22fc13d061d3ad8574dcb11a1f33a5cbd00f06e08919a187b10,1,1,CainTV.xml +12623ec61a5d5503db22f3e44b0593f77e1d37e42a5b7223da9649fc4c43a26a,1,0,Calendars.com.xml +54b9ec4e58489329294ea814503b75b685a861fa36329912f7c5508107aad516,1,1,Caller.com.xml +213b44c9505b03054a9590a41dd3995d718801ddc16553e2c3e35596e3f301f2,0,1,Campina-mismatches.xml +528b6476090e1c81a1576d377aa8826d779a297d92403f52bafb36a1b943a5cc,1,1,CanadaHelps.xml +7361432018d08c1eb212a2c9d1cdb6901fad4a8a2486a3bbc5985dc410d0fcb4,1,1,CanadaPost.xml +5d08dda7d1b74303183590208bbf76c0a0ea1df76df2b3497beaad6d8f332054,1,1,Canadian_Press.xml +aa84ff00fbeb0f753bb8fe1414ccdf017caf54f3df9c4ed98bd4c51b34974fd2,1,1,CandH_Lures.com.xml +90eff7965a6d548ff46af2a7b4047fc367be453a1c2570c6bd022de54509c796,0,1,Capistrano.xml +8d34adc4fc479c3b59361d7f5e438717feca76f7dca3490ecf92af5dcc75ded1,1,0,Cargo.xml +b0646f0d9bf56655517ee0319fa8db5608f3c1ef08469771ee6578cf4184709e,1,0,Carl_Zeiss.xml +3852082463af19e77d7399ccbdb262aadec30307485ede3196168b1ab6c8c05c,1,0,Carleton.ca.xml +c047260fe241591aff0d21678c993c268a8e8e26a0a9a2bed56c4fc93d6a9d2d,0,1,CarltonBale.com.xml +141ea88067d92c50d1a74818556a91d19f24ee41f0104520f795975cd83391af,1,0,Carnegie-Mellon-University.xml +cb7405d2c2753f150dbe71bc0859cfbfabaff2a13093a8408e93bc1c5f5770e2,0,1,Caseking.biz.xml +8d20c6d30851429f971fef3d1209f0352f9b1bcd5fbe6e3d9c17ab4b4f5b5115,1,1,Cases_Ladder.xml +811c33d7ad9dde56ad15954e3460969dab20d0f9fa930584443266e21feff865,1,1,Casro.xml +f20f66759481152d644ac6d66b0beb2c0c6294a7f5c3931b3ddab5c43aa95551,0,1,Cdngeek.net.xml +e3d1fbf663250b13e6cec1485aa7fe068e14180f6883b42fa9681f007004852f,1,1,Cdnme.se.xml +b09ee57848b20dc5f0edde7dff31b6dd704d171d7494f0b4e566b62c8587cded,1,1,CeBIT.de.xml +ff8d40bf74ef03e97bb141833608fd1af15eadf315b3d4375b2f343a6ffe8043,0,1,Center-for-Documentation-of-Violations-in-Syria.xml +7d22b530e3d76f27ad05eb2b78c570d62bcaf8ae57582777e110f1a5d5c58ae3,1,0,Centre_for_the_Protection_of_National_Infrastructure.xml +5bd8e0e2fd30fc0a28fd33d451a35b60e7275837c4fd405dfce8bc81af27ead1,1,0,Cfapps.io.xml +657c3fc76a95e653075c9146e79384f35deb6602ff616d54387921bbab2c83a3,1,1,Chakas_Mmm.com.xml +a9462ddd5256f9df0f92ac9e68dee69860bc04afeda1ad4ca62d125ba046e723,1,0,ChampionCasino.net.xml +5af512985fa4e71798ebbb40592cb7de443d76a65e66ac2b270853590d4ec0f0,1,0,Change.org.xml +b59e3733248b31c4fb739059009c4ecc1cebbaa907e505f9999e0f23b0207b05,0,1,Chapman.edu.xml +749013b2fc545464572701ed1335b9f6a5592b6a0af3474d9703994874179830,1,0,Chartbeat.net.xml +f1432b9c958b7d77317856b509738eea679ae9483f0bd86a27b70c5c9b644313,1,1,ChatMe.im.xml +ae8377ac78832a22be16f277f28a52ef84b854bea59e84c67a206835a35b5b11,1,1,Check24.de.xml +a661d52f01a655aca11ad14b59ebd2b1dc43fe4ec22803909f5cc80f9f2c7972,1,1,Checkmarx.com.xml +c35f7c9558325a1c388b1a71d37aa032cbbd2189084eb366243641ba716a9ebc,0,1,Cheema.com.xml +10fa5a17c9fc13e685fe8cf8b8a631768e81152d63045308597137c3d5f44be0,1,1,ChessBase-shop.com.xml +a486b3a9a8fdfb5af7161460ce10f22575e2dfbbc388f9e39473a09f526f89f0,1,1,ChipIn.xml +a55226a41482b55b64ea5dd690a09fe19d0999ccb8131b436b690784d6cf4e0e,1,1,Chlomo.org.xml +69576d9694982fc30c67473122078602be85d16838123c7ced7cc7bba8715f83,0,1,Christian_Heilmann.xml +635611ba0802ed40b2ee5b905ce99d4880a24e557dac0278a893e36ff9b3f88a,0,1,Chtah.net.xml +cfdfa99b1e7ddec951fc52f57172762a09c9666866168b24a750f1f232debd3c,0,1,Church-of-the-SubGenius.xml +636172dcc21bd3193f15e29b0748bdb46eb069477d946d5c6ff640509c270093,1,1,Church_Hill_Classics.xml +90dc83350ae58f9b37967bfe33406f3cfbbd9de47f797d5691ae0c64b9dd573a,1,1,Ciao.xml +47e5ba3bdc841cea4d8839bd57ece724b8fa99abd3d3100bc1f64d9d978b3b18,0,1,CinCHouse.com.xml +de19403594b073d50fc83ab38402f494cbbbf9920f2d6281eb1865d7096f1e12,0,1,CinemaCon.com.xml +887f6dedc09d6436d8cb9aebc7ab7f71603ab89ee3a25784273b275fb8f81a60,1,1,Citadium.com.xml +22f77342cf73bf250f617eef28d1de55cc9d90afa8f099f88ad62444121ca5f5,0,1,Citi_Alumni_Network.xml +324aa263ab69f494cbd37fe69d6716c07bcd7b46853ae25a5f7377722146afd2,1,1,City-of-Sedona.xml +f0fdee87d984d3e109fd469af66fea523facd0c39bee4db87ab1bea1f8131570,0,1,City_University_of_New_York-problematic.xml +88da9400d16c491db6e3d8ec956cc78ecb20de9aae1521da6cc70af4b3918ab6,0,1,Ciuvo.com.xml +e249278f416d20f664c2601ce481854bc0181db54ee5ec4fc35e1f647bc2cacb,1,0,CivicScience.xml +b3158d31c71457363975019cab7d54e2a1df3c4704e8ec39284edb1a7599ed71,0,1,Ckom.xml +e239c746877388cbb5e8bdda31133b3d1bbf51631ba8974d6c07ced5016a01f0,0,1,Clasohlson.se.xml +11f8b0f6e4735f79afb373f2c312f8f38c01cedf75703145b65f1d4d0ee82933,1,1,Clear-link.com.xml +3bb97c7edc6c521bfb2d37b3110814bf4e8c754e494817f319fbe8276e46aad3,1,1,ClickBank.xml +62783dfa5b3b4bddfd71f4d15fcdf1fc88f23205c834446cdb3c76b15d78ffa5,1,0,CloudSwitch.xml +18667621076275ec475015222a4a65bb0ecd59b5d07234cacc92d5d2e1c2fa89,0,1,CloudWorks.nu.xml +c954c0e37df82e9c356ad3611313c5aebca46fe4c2ad4291b1fff6ff2c90d3e4,1,1,Cloudforce.com.xml +5ffb20d9923257da6e73e1909a6d8cf7d68be914c8e160458e60e2914bd758c6,1,1,Cloudimage.io.xml +299cb39fec29918dea7265b547b0b58d83d9b27c9a8ccf46f35e15369acbf137,0,1,Cloudset.net.xml +ebe8861f8b01a594f2009032190e254730320f03a4381474c1f43796ab9fe25d,1,1,Cluster_Connection.com.xml +5df01438ac79becb6644b3dec650a57c8c40b84ecf6939e91896504548a7ccfc,1,0,Codecoop.org.xml +42ca47ccb9e98d900b89def6bfeae2fcdd7866441c42f053afae64e4885a17c3,1,0,CollabNet.xml +0338333878edb6a0f6c006f0fc18d49805899c908f920c7e612ac5496c034271,1,1,College-of-Nurses-of-Ontario.xml +01e3cce2c68b60c53bd29c022fab016da33cfea386c371fe6bd47a6eef0ae66c,0,1,CollegeHumor-mismatches.xml +339bc36fa7e42abc1eeed143a5bc24c08ce6bcb11d33db4313da65d6eaa08007,0,1,CollegeHumor.xml +6347c91fce42e33944bf4e68147dded6b142f3f8ab49dd7f90c014502fc0704e,1,1,Colorado_College.edu.xml +5d2d4e55901909af90f1fd161eee4af4421326bcba3a564b60140a27d843ebc3,1,1,Columbia_University.xml +ed1a6a91ec23f12636e85fcab140be7b53ce9ead8bcd48f7173655f06843308a,1,1,CommLink.org.xml +3af3263a9dff6b5035200ebb25481b147aff9690c0599db533b199790dda6708,1,1,CommScope.com.xml +f4dff27943c317c1cb2a502eff51cf6436170f4688ea0d3a554d16895ded6cf5,1,0,Commission_Junction.xml +5259790909abd7c2980520d48f3f158799be1f5cc478b835cdb44ad1d6b0e970,1,1,Common-Short-Code-Administration.xml +0beb4f7db8e69085f900b08bd02e29436a366662c70152be72eb205ae61ab9ee,1,0,Common_Criteria_Portal.xml +99330baf93c8ae708130f47714837655c0c21bc656cd4d61a4c8ac61f1a60956,0,1,Communicator_Corporation.xml +a0270496346c1a4d130f64cbf829e15e696d488001d9ead97bb1be95707f088d,1,0,Comparis.xml +2312684f5e6a7b373e8dc2893216c8f9eade472012cfd4bbca6d9e5e990bd08e,0,1,Competitive_Enterprise_Institute-problematic.xml +bb4335a9690793a7035cbbb5025258304be703efbb97fb0071f617996808fcdc,0,1,Computer-Steroids.xml +36639069762c5623cb782a792b17088694f3242fa84db5e8686b431d36d74f07,0,1,Computer_Lab_Solutions.xml +53750f61d79098ab338a56cff7ac2567092601c8d9861be25e79cebacc73d197,1,1,Computeruniverse.xml +4f25e864b2b2c8023c72a18c4645f2bc659b9f3efdad9b5a8623fd3becf08780,0,1,Comviq.se.xml +a718eb8d43a995d416edb0bcdc23ab00e6d92287e72954db9ce67d642b0f9247,0,1,Conde_Nast_Traveler-problematic.xml +2f7e378568ff6f03f3cc9b31fd1f9528ab7cae735de71354eaebb079bcd85cff,1,1,Conduit-data.com.xml +02b3153c54aaade0387d2be93976bcd83cec356da2217dfd19b1d5f5bce58703,1,1,Confused.com.xml +4e4afd9324120965f69988b05d3a414e70fc93ae07c352cd628b10921a166680,0,1,Confuzzled.xml +c77f628b580660dfba342b2bbfa4a0e22744a48321539828dee5403c32470e4e,0,1,ConnectMyPhone.com.xml +a79534ae1059876bc76c072c81fee31b3ee5572980bfbe2f87943f023829d2c3,1,1,ConsCallHome.com.xml +2ceb9721bb2044c6d2d9ec83baea99106fee843c6eda1b90e5d0971dd569593c,0,1,Construx.xml +436c49a3cd92b2d701c90db91f96cf8ebf3a3bdccf609537f23d6cad31bdd6be,1,1,ContactUs.com.xml +710d5a714c74db826cade92c25b332038409f800ef616a03360634fac19fbc1c,0,1,Conversions_Box.com.xml +07aec2b14f80428ac276fa287ea846bfba851a6d46b0f39e4640e6fddbc10a65,0,1,Coochey.net-falsemixed.xml +650b5d9a73344bcff3834fd3851ffa14e7f810949a518eb27ce679bd4a5704eb,1,1,Coochey.net.xml +97b344fb4914430115bd4efd7606438c43a7c6370726da90bd5a01f0192d836b,0,1,CoreCommerce.xml +ff29267634f306a1256ce5fa90a5ad9d7a1f7999b38e535f04492bea224057c6,1,0,Corporate-ir.net.xml +d1698155b22b3b7f5f0ca643cea078451d79ab6779f6f261d8ca54805b3db3e9,0,1,Costco.xml +e0c331c927da606cf727ad4d21bdd9cee77632ae77ca1ad11e1f9114b27745be,1,0,Cotera.xml +80eef43f077304055293c67afa215fccefe31871fe3a6712dd42fcc35c20857e,1,0,Couchbase.xml +f69f84b0ca4c5b78ea0d15e83d62fd911beacd537eaa929fdf3780ed4b690a7e,1,0,Council_on_Foreign_Relations.xml +491a52cea147014a5240c15914dfd2ef4040c6038f0b415df00c1a685841dcf3,1,1,CounterPunch.org.xml +84384d174882086aa3fe03231d81ff90fcf806ea661d48da1c021a02f5c26bfa,0,1,Cox-Digital-Solutions-problematic.xml +2a5aff5228b1ed8caf97f860b986a5e857043e46610b15cb1dd48f07d1a2a4df,1,0,Cox_Communications.xml +c22b52fab2d5c0ae1ffb9f2f497672b1680a2a71c5abac5b9e3b11282594d51c,1,1,Cpaptalk.com.xml +8a95bf245a528fdecd67ee9b2d3703a129581211501d34fa29afaef005287aad,1,0,Craigslist.ca.xml +08f3749268ecd600f52dc3ed7ee35741b72088fc2b84ff1dcd24aae5d8609410,1,0,Craigslist.co.uk.xml +7cab090cc110a6382eb16a0807adf568b1fa09d7ddb12325302a3e9480a7c978,0,1,Crain-Communications-mismatches.xml +45b4b172795ddb3831140e93fc9a820127db515609f13cffb67557d53048f1e2,0,1,Crakpass.xml +04f0d43bd1ab894b64d8ca6fb5e81b0213a4905c1bbd19bf92700ccada4fc0e4,1,1,Criminal_Justice_Inspectorates.xml +1cd80467b55158721959b770308681c9e59a37977c7a4581996bb359e14bcd8d,1,1,Croscill.com.xml +530481264817641a16714b2a38e392549ba9310d3689d7c8b7eaa494b1c73761,0,1,Cross-Pixel-Media-problematic.xml +e82ff9c3312c6fc9f6904252577429fb985c41637c71dd8f33d25bbce57ebbeb,1,0,Crowd-Science.xml +cb23a1bd35b86d242a4028ed7f0d6fa55a1b01d620b22f552c54ab3e8aa64562,0,1,CrySyS-Lab.xml +80ff66109e0038eecb6e67362f210c6d389b69ab1044cf621d1ea28f7b624f19,1,1,Cryout_Creations.eu.xml +734c847c64dd4746922d7dfd8874f2de5aeb8db469d6165352965bfc43a7d564,1,0,Cryptomonkeys.com.xml +4c82fb71dd76ecce008a283a688f468dc95758a8b164fd4daac98b747eb1a7a8,0,1,Ctt.xml +1458bcaba2c8a2abacdb39524deb5de8016181e03ae8030d8933478fb054ee1b,0,1,Cultura.no.xml +8619973ac3fe5c8a8e4ddd2d2ba0c23acc05568d7ddb6921b33a04ee6cd05cdc,1,1,Cumulus_Networks.xml +be67733780d14d90de81e3278a87fb4860cb0bbc38b58855980b323a8871b7c2,1,0,Cupid.xml +a1375ad5b72a20bf94ccf118cc4d2386590687196810774dbd35f29de8b058fd,1,0,Curbed.com.xml +dccfba7ca231bf88053a8a2e1064bb4d20db77854e80e0bbb0493d4523476062,1,1,CustomWheelConnection.com.xml +ecb6609b54104e170eccfb8b213b46ef8571ed159691b69cd4e38ef28887120b,1,1,Cyando.xml +c5f1993198ebf0755d6d2b884f09cca076a78cd635c91810e60e6d0c36938638,1,1,Cyber-Security-Challenge.xml +62f9443ccedff68a2edfe57cbd28c734eaaa8a90177ec3ef972c51a0a7441715,0,1,CyberAgent.xml +5c228b42ff2de9fd9ebea0fb810d2775625238e119a70c142cc80385c2aa2e54,1,0,CyberGhost.xml +760cd650faf849e6b19245755eefd6460eb401ad4e174983e7dc5a28a50cffef,0,1,Cybermill.xml +1562d48551eb9a11540bf840e1d6029b7332c0b7cfd7f423d305aeecd6f28fef,1,0,Cyberstreetwise.xml +bc5f40825e2152d2725cd095f0af778875bc307c14701f874a651b3572adab65,0,1,Cybertip.ca.xml +94ad8baa2a8b8607e45229fe2d5c8c43fdc7b53965d519bf47e075878096f230,0,1,Cyberwar.nl.xml +514030beaf41176db4804a7febd2de28af67e58ed8bdee64ab5ba3214fa5b9c2,0,1,Cykloteket.se.xml +33d4a5f51d4ac7bcd520f05e294995d9968d6b68bc8401289bcc9ecb0a94ab5f,0,1,Cyphdbyhiddenbhs.onion.xml +9beab50432900f8782d6720032b6262671d1a04f960e530d7906e866ee798365,1,1,DE-CIX.xml +5a3b022a658985b87a1a497348ecdca4dc3c29499681e1371f2793b0ab58bafa,1,1,DFiles.eu.xml +d014e7330debe4f838f895d1ad269f9f67bf5691aa460a86e070c72357b87e82,1,1,DKB.de.xml +cab182473bd2a1f12288fbf267de9e6bd6d249ba3f7d561186cc3b9eaca719e3,0,1,DMX-Austria.xml +fbbe70181d1fe5c14edeb58820cc187697663b7ff1d6330318b52242cad50df7,1,1,DVIDS_Hub.net.xml +4cd351e987026f37e854bf3ecbfc84ad5838db73d9b06f59ad58d07dac65ce85,1,0,DaWanda.xml +0b1a6de4023a402b4d79c12a9d2b45c4c7d2d309203536bef8ae9dddb5113e19,1,1,Dabs.xml +39a0ec5f2284937cc5b8e0cf5d1199fcdc3738146fc296224a8d14e20e4f5a33,0,1,Daft_Media.xml +48068ffeea3bac8f6607d8b7ef042097a830f1ed5141b71a6b03fd73e2322076,0,1,Daily.xml +73d5451a0140fc08b3eff45aa5ca92daf2bc964b24eb1e130d457035e85ca92b,0,1,Daily_Mail_and_General_Trust.xml +607ae42d3906148f643091e3d42025c9ffc9997b3064de7de892580adfbee5dc,0,1,Dakko.us.xml +0d3faf3da32111974235f26aaa4eb8ddc0f33c008708c891bc5cd95e29172e8c,0,1,Damn_Small_Linux.org.xml +3d69ae3ebb3046ad3f64e32725de287e186478ede815092da1f5d3b7f43c04a0,1,1,DandB.xml +9a3a5a84f0e2705bf60fb61037f6fa1f0fb38060008cf271575487aba5f4731f,1,1,Darmstadt_University_of_Applied_Sciences.xml +2d7db66046578cb426ac52ffa00a0fc9091ea3c478a40f085fbfb2105f24d2ae,1,1,Dartmouth_College.xml +3403f1624cd1350a9d7db9ccc20fe13619099815c6c6641ef55f4d3160338c78,0,1,Dasource.xml +1cbda5f0a6ccf9c3000588ec54f6b1df0ba73b6ec3dd96caa6cb03da743d0b54,1,1,Dassault_Systemes.xml +3313bd09107db392a871be91a9de6944cb93895ae79e67fef855166adef81c96,1,1,DatStat.xml +1e3a6e9548c4695e497f2c70b8e140a688d130c1aa832f6ee57dc3d40db76f01,0,1,DataSphere.com.xml +8cc5ce1e1d308f17e685fdf197fad2de85a59a1392d4e9b9097857cc31171c56,1,1,Data_Center_World.com.xml +949b15687d157c91c170a0b91d4f0e1026caa5c7ddb979926a0464885157d9d7,0,1,Data_Informed.xml +887c98b7b9913c7fdb123653bfb86245f5c77fe664dcbfbeb5dfe31e1cefd6c8,0,1,Database.com-problematic.xml +a7d3313bd27112e3b58470d617fa23e5c45dad2250b0d024125b68fba7a5dd36,0,1,Database.com.xml +1708197efa6250816a0daa89684b23abd5b6ec10424c0e588c4f79759269be34,1,1,Datamonitor.xml +3c5b4f63385fe6f06d57c28f8318249835ea86a015594291a1208657c8cb87dc,0,1,Datamonitor_Healthcare.xml +2f44a28ecb1cf5909c3f35c13216ebc02c9e1a66ebf5a48c970e1c3c6f9f4f69,0,1,David_Gold.xml +a9f30668ad595cffb3d3b98571ccc614175c6c2863828db49ff61c5a35f3a07e,1,0,Davis_Instruments.xml +a57ae2eea0e68d85ded9207e3de25e2e19bb21187e9ffa2ef3c0c4e1f2e95727,1,1,Davpack.co.uk.xml +78c92cd9b90932227687233bc92ad00e35daf7021423f88e5d6c6fbf686d3666,0,1,Deater.Net.xml +a00fc19e2917a733c02ce54c7121d6762fafe902c4501f07bda904ba1f5bcf95,1,0,Debuggable.xml +99448264eb68a506c083d15fcfeb1d01c1649f8ac86e0631a3f79bea64e530de,0,1,DecisionKey.xml +8e2fb9b334a1504d2a79b1d59bb0b8aac0c51bb9088960524a6f42af8dbe24ae,0,1,Delaware_Technical_Community_College.xml +45795b36ce0a095278fa9b311648ccb7f94051ed1f755235fb6e378a766c5e26,1,1,Delaware_Today.com.xml +4686fb4dd00fdb9a389a6b9da295ceeb432f9c119fd2a14f2f1f327d2d41fafd,0,1,Delico.se.xml +d29e0712614544a2551a71e3e838262562f66639c28b491deebcda8f0c9e9c1f,1,0,Demdex.net.xml +4a1ace170db113bed5a1c50a465a331a6a6f0d81e62327e320bc2372d55dc5e3,0,1,DepartmentofEmployment.xml +df8c580f3fa4016df06bc402e23ba34c57171ad3b4b029d327115effc7be03b3,0,1,Dephormation.org.uk.xml +ce07c0999500f19ce748e5038f1d502022455155d53ba17d506c6a71c6200f38,1,0,Deposit-Files.xml +481a8ee74a06cd3978b3bfa1638b10f1a2798dcec48f905fd713f25e2cf5d884,1,0,Details.xml +27f638b7d6ed66f2545782839032081245ea4c84a2cae5f79c7140249165b200,1,1,DevZing.com.xml +d3ac7da52f675d22b7fc910eb3ed3c950ac43a8ada57c767bdf2ff42bfac8ce4,1,0,Devever.net.xml +86a1f9c349c7266714c5d4a26bf9e6674443fae524e040bad4cdf0951f73a988,0,1,DevsBuild.It.xml +24e1a5389bc35d553f48e0b8f0fecc7168ff63096b9115f3e48184e62f22072b,0,1,Dgl.cx.xml +8f2ff5fe50e0b8edbb175166a44e2877df47e5951510d8650d18960527196904,0,1,DiaGrid.xml +450f88fd960579ffa22b42f6e3ce2348be724fb59ce00353d742d078e4996bac,1,0,Dial_Direct.xml +f58a0d9c1c02012ca40bc00fc4a07a08702af0924e7d8e5055551b57c16e4908,0,1,Digilinux.ru.xml +3449a7d7da46522205fec252bc4bd787e9dfac2f15e635750d9cfafcc825f3a0,1,1,Digital_Photography_Review.xml +1ae5023d7b4801aa93edc7b86c769faba82f98f393f917df3f9175b5bc594855,1,0,Digital_River_content.net.xml +6db802e9310e1d721b92abde951d806fb9c9a2e99182795213ea3e4432e495d5,1,0,Digium.xml +8f24d6a49faf7ac63a5a48b5dfea5d55a076865183dd5319b9cee2f6e6de8cfb,1,1,DigiumEnterprise.com.xml +ca8710d2eb4a66d458863fcf716191ef82ed5a669710d97cf69c8573e7893be5,1,1,Dignity_in_Dying.org.uk.xml +05a99eccf708bca913786f423daaca68b711001bffc0af52e173b0f31a38af30,0,1,Direct123.fi.xml +65f1777abf53781ec3bebfc418b72e91032db63fd973a751ae810e04d7297016,0,1,Discover.com.xml +ec9525132f84415de401293436c276fa6cdf29948edde5416665e10270bd8456,0,1,Discover_Card.com.xml +3344bcc1244a1a002611a746364efee114e9347a0a7303600b89410b381b2475,0,1,Discover_Network.com.xml +cbdb894eb5bae94156db1210de8033c32d42a877330b14af87c4d2abe5f58e81,1,1,Discshop.se.xml +283b1ea012e127b576f1a2c847cd342c0e984455f87c5b7811f7c5cc2e8a1dc2,1,0,Divide.xml +f0ac70f0936b229f6b6748635f259cc1ebb6bbd0c924baf792a792af86295fe3,0,1,DjangoEurope.com-problematic.xml +ced8f070eeb91948e919fc5b49e98b171ead833df49b97ace89db1a5fa124a1a,1,1,Dmri-library.com.xml +0c2d0599f841a470c303b8f4bcfffe014c25e51080b8ffa4c794350144ab4fd9,0,1,Docusign.net.xml +50cdc237ad687503006bdeb50c714cccdf0d0f4d2a710d278a51be0a2a94bd84,1,1,Dolimg.com.xml +76266350e22043e4d07c4a1389165d1f888e7034121235b75d208d58bfd9a8d3,0,1,DomainTools.xml +cd9c9d875b77202d9bb64e526dd1ae2ad6b5bafc9d4d6ec0806d6be463f5f53a,1,1,Domaintank.xml +b24f4ad17b97e8bfa9b40fe9399e2f5623d687f5c9c427b312c206b3c2f17031,0,1,Dominios.xml +93ede45e0e0378015e32bf7e031f23b7a69174c9fe0023fe462549284e8362e0,1,1,Doncaster_College.xml +555b32877b269226bbd508537205e4891362f82953796a44980ce54fd36b7dfb,1,0,DotCOM-host.xml +bf7cc0c7b23f6d7fe047d15bd73388dd41815f6f1f4a922e46ab388b96552af7,1,0,DotMailer.xml +d51edb2655670ea1a910c1f79a85696274ce6f066ae67700baa6207d60727448,1,1,Dotster.xml +4c32fb438443d2547b3a3347d3b59eaabcbc53f9250ca6735be7dc6b22b47cf8,1,0,Dozuki.xml +948fe6c1816bb404b4f3fbc4e1d21dd253cdaf065726cc41a7173f1055edb520,0,1,Dr-qubit.org.xml +d6f6539911e50377e9ea5612c191b82977ea7723730c19d45293b3769b10abb0,0,1,Dream_News.jp.xml +1699a3fbc0f1c9f54d828666cdb17e2eb6256e59bb3d752cad54207b3c16fef8,0,1,Dreamstime-problematic.xml +f85cc97315b7e1d8d7cd5a8df8c238edd9e9303ebeb0f84f0dd57da3be87cf87,1,0,Dreamstime.xml +4b67855f68d07aa5dd62c7b1470af02d953732516e530646752c5aae632d9baf,1,0,Drinkaware.xml +6dce143c0bfb94e705a21f78d14dd5898868d1a649224c096ededd8910616adb,0,1,Drowned_In_Sound.com-problematic.xml +c729946041e980450f9238a1177dbd53bd2d7f6d904444a27ff14817e5a8916b,1,1,Drowned_In_Sound.com.xml +45c19d94eb666e445b664135d6c6c309c77f37517894e24684d63191cb22669b,0,1,Drug_Forum-problematic.xml +916ea616d827dc5553528be9b879ed28d91007337b9fccfb593c4e624574feac,1,0,Drugstore.com.xml +cb19a58271da26e0eb7c687c7d6a412de76bccd82dab5ea43c1adf2d4e9a790e,0,1,Dueling_Aanalogs.com.xml +d4ed3a03f0dcc445f49c298bded76f72b676629578a5a01bc25d3743aea9c8c6,1,0,Dundee_City.gov.uk.xml +4b6114f50a7b63eaca3c4072be4f8c98e013bb9e4fe8108b47dbda9a99ce8bad,0,1,Duodecim.fi.xml +d1d3e7884fb59f03c02efe683d1ab6cd77b8d2fb507b4dca01645071c995b359,1,1,DuraSpace.org.xml +8496afee88e5b9a35c67bf855d5aa960d9557295c3de825652c49d7666beb252,1,1,Dutch_Data_Protection_Authority.xml +c97bcab9e6309fdd7047f8506ee40280dca5163ddd1e7e7eafa6ac4d2318360a,1,1,Dwarf_Fortress_Wiki.org.xml +d0699296c13b7423272e4ae5ee1491a8449e6c95b7e1a769008f06d46fc7586f,0,1,E-Plus-problematic.xml +80532b82c72bbe46287e9506f392e5378023e6766326380c5f276182502af47e,1,0,E-boks.dk.xml +30b6cd8e0fb7a044f69d7f54ddc8c2c0739afe862e58f483fcf9e61211c4b27a,1,0,E-prawnik.pl.xml +a236b2041b6696a94edf8eb10f21f2c384c1fdd022e6f93a2a6e97e0cb1d4bff,1,1,EBSCOhost.xml +5d9191656ca3651a591a01916031d3f755252d09d09a846ac962918f14ee370a,1,0,EBlastEngine.com.xml +27d5271339b66f984ea5bca4be574e9faed8825be522c825f5ee4a20e4d74d77,0,1,ECrime_Research.org.xml +38acc77f3a1684db15405c335ffc2053bbb6959ebded1e53a76102e3972473d1,1,1,EMC.xml +b82763e9cf1ccf4bfcf7ce931d4971bbd5f5d767431cbe015043bdf2e307f181,0,1,EPA.ie.xml +21af6451e5293d3c590dba9f14d347d022d8ce5d7a06b8d1960a2d7dffbf76b6,0,1,ERNW.de.xml +771c90d6313b15fb4d41a8c89ac03ef0029394521c105655c3d1aed1a8f44db4,1,1,EReceptionist.co.uk.xml +1d0cf4aab6228ae65f34ff4ac5313082087f547d0b773e9403eb9ec40c19e30e,1,0,ESET_static.com.xml +71d7ddf2c70bffe2c22311b10ac6ccbbcb82d057f298a71285e6e14da667b3c5,0,1,ESF-Works.com.xml +e14997fcd1b49623692ba6542a019182b6f66628abd718680fbe20fec3725e7b,0,1,ETegro.xml +9cb060c5bd472740cb08ecfa934b189e19567c4dbd35002501a01ec373dda1e7,1,0,EUKhosting.xml +88f84319acd57ece012e2e66cc7447a8db701037146b74a839c89a1ddd685432,1,0,EUserv.de.xml +97898e32a15c85d1f70bb1b15f7201cc03c1ebe0b624949fcd4e27ef48619c89,1,1,EVoice.co.uk.xml +480256c07545a3dd139fde94d8b794e8f8c8374a48c9f8c02d00b2c6aa5efaf8,0,1,EXiled.xml +c52705978d36a80cea351d25f4b1131be10c653ee5f7aef9fe661b0de448924c,0,1,Eagle_Rock_Reservation.xml +f81ba5e26253661e9cd0406b4b538625b6cd39bfd2ce8977a526b67b44b908b8,0,1,Eastbay-problematic.xml +1c87354f2f51c188db3313c9c68460147571ed92296962e148563e5def8ed4e3,1,1,Eastmon.com.au.xml +332200909ab116588d0483ac47e1877ead9fcceb221724a8d3fa50251bcf1694,1,1,Easy2coach.net.xml +0b8829a889f400ac3171d5602ff812f5bbd6559db9d6a3d3b835ed6694ef3e60,0,1,Easyspace-expired.xml +9248288366ee2fc081c11be98b63d9d79069a3f8000c284e6ece22c53fa383de,1,0,Easyspace.xml +421ade575e2e1e0e75d6c7bc746c9615bd7fe023bac2e3a21401cc6c61c2ee3e,1,1,Ebi.ac.uk.xml +3d7ebd12328dce8238e333e2d00f53f314ea41fc6cb532d5f48682229e8ee622,1,1,Ebuyer.com-falsemixed.xml +9a88de16ac51e357ce386b479d2c3a0d2b1e18a1df431478f16e01acdb1b90f0,0,1,Eclipso.ch.xml +e831540685d0eb166dbf1cc602fd28389713d447549b60997066e3b2a125203e,1,0,Economic-Policy-Institute.xml +f9f75c9eeb2e7da3b367c19fc86af398fb052e94c251bc9a22a3d3b8f565b39f,1,0,EdWeek.org.xml +792f8df60f756ad2505db27b3aedb9034fffc3b05cf532fa9474de3284aa16d5,1,1,Eddie_Izzard.xml +20aa540654afe4e46d8706423b1bc4b2cae3c3498e1ff6cc63ca93ca6957d59f,1,0,Editmysite.com.xml +772fc66915c575b5e3c2b9330453da903a06e156fcb452206f0b0db4330ee367,1,1,Efax.co.uk.xml +9346d6aa681d8272cbe2d56d6ba227156205d162fe3aa1ec83db7cd50ea1a8f3,1,0,Egnyte.xml +0231502d992426f6dc6c8b6488cfb220c50aa5d5a624b854e956ca7f66269366,1,1,Ehosting.ca.xml +d3812b45da73e759d3fd7d65bc13e9fc5f75d97bb15dbb0a53c4e9e11e9c7f97,1,1,Eimg.com.tw.xml +822984ee7464450befd847ba351e2609b8b6b34ce8116ab38c54ddcffede5b5b,1,1,Electronic-Arts-Intermix.xml +33d19feabaf5d7650acfd2dea5a837a763a632626c755caed1bceeb42ffbb6e9,0,1,Elijah-Laboratories.xml +8c4ce2e6485d6a92b35ebdf64cfb826516669a9ca8b3ec20c32ea7f2ef0bd679,1,0,Elite_Casting_Network.com.xml +92b5a0f2765dc0209ee35f20bfbab7f44970126ff686c803d592213acac588f8,0,1,Elitepartner.de.xml +2ccd031d0b13fdad6fb4ab25d9dec34593ab18cc5f62208dfdb64c6152f654a3,1,1,Elizabeth_Smart_Foundation.xml +03f6035a0d5cd3824fbc733aee7c1dd0d9a48cca2e3b612a7c2dccbd7920b6f7,1,1,Elle.com.xml +995c937ddd871c8b758697457a5b14ca6c04d0911197fadd29b617391e49a16a,1,1,Emailsrvr.com.xml +1d5f53d890008891065d1172327c971c2aac7a7e965e9ffdc3feabbe2d037492,0,1,Emily.St.xml +13abe2167fec64e991b8e89e9efedca61be565e9d4f3b9802f500be922b9cf08,0,1,Emory_University.xml +661bd6f53d1accd50024f22541da44cd49f15b58aab9e52418aeadd2bb3b2a22,1,0,Emsisoft.com.xml +db21ed9907ecd72397a925f1a47e5c99e3d84024370ffb30b87b1b5142880bdb,0,1,Encyclopedia-Astronautica.xml +431fedb9cd9b68a915890080f1eb4996aa3a6edd00e91b6cbcd6749178cf26cf,0,1,Enecto.com.xml +6418b8410785f9fade87c96494372065791223e8bc6dbf60a3a6db6717d827fa,1,1,Eniro.xml +80ef1d15e2f1ed5a951dd080ea0f482e68dbdf69d2d26f37c4db7508e5a6f2ec,1,1,EntroPay.xml +09a7159cbece935f73ae3747c2c83a12d6852f1820ba99d791f6d6a97515c6ce,1,1,Envato-static.com.xml +2ca4fd68486c7ed9b2229b029b17f898ba1c99c23e7132da7c15e5d62b8de32a,0,1,Envato.com-problematic.xml +03342be1f13fcbbb19d8de98a172c33e0ef92b8322766df0743b05820413d7dd,1,1,Envato.com.xml +d6bcf352b17998cd3dd749252c04696198281490324bcf4223fda56d223960e2,0,1,Eole-Water.xml +1f7601e66f03a3d82babd1dc7a1d477eb37a567383073864f89ed39a28d0639b,1,1,Epartnershub.com.xml +52a6b9dc4e013008f58b53424d04e899dbf6110a1d6ce7b5d8eef35a8a399a5f,1,0,Epic_Games.xml +6b9e08f376753aad2163601f78b5051a819c4f2c54c54be0c231f0d44d20cb26,1,0,Equip.org.xml +5acbeae1638df64a1e8ab2a261d2b3f810300c376824e2865970d0a1932cf595,0,1,Ergon.ch.xml +40d2bb3f9270e7cf99f2bf2a446888d4c7162b079f5a196e0fd306ca7ae6c810,1,1,Erowid.xml +b4ebbea0286d44564b7e8984bfe2fe38ce080b1390a0d6d37315d0993dbedd5d,1,0,Etarget_net.com.xml +8d9add38a1725f7660e8bc03f9f6181886dfce418c3a726cef21f6672eee6955,0,1,Etipos.sk.xml +4db319b5a12d2ba768b16e2ffcb6405c1ac8960c7f052decd7ff5c547a334c2c,0,1,Etrade.com.xml +ae016ec38dd372b50f679c03442479c2df1eee65fa59a7173a1548e4b289409d,1,1,Ettus.com.xml +b91a2bb082396988a0d23bf4de0e9e620d647828cd7b1abf9ad5d1d522d8fbba,1,0,Eurex_Repo.com.xml +dd2ca763bc144f188f0dc08bff984e6c5f950860d9fa64ad3840af10bcb40832,1,0,EuroFlorist.no.xml +eb2c414ae4ec2c034261b3cd828b87ba62ea8fdf6208052149c7cf7fe882bbbf,0,1,EuroPriSe.xml +c3ce6b72a929adc8d7e227f86884c300979feb2a571c85cc44db4262eaa6881a,0,1,EuroSmartz.xml +6d3e2a1d8568935ff376e011fa835b0a9c78a06c40eeaf5b9732abbdf0a27808,1,1,Eurodiet.xml +2469df0235c8a578f6a3574825d70473517e612574f5e517174cd8ef453c46d1,0,1,Euroforum-problematic.xml +9f07a1cd07e17aaef37455a8e6927200da4633d51836089d790ca00caa2a16a3,1,1,European-Southern-Observatory.xml +c7d1a78c0d09e8db961d0d711d81b4967193f1692e7a23198a996e9dc8dbfd29,1,0,Eventbrite.co.uk.xml +1213b9bcc58aef69599cda534a1140050ba6a542bafdadd27e62d1e88b6e3b56,1,0,Everest_Technology.xml +de69b2a8fe3a9790c9aa7ce6435db3ad238567356e1a46ca1d374aa7944cbe31,0,1,Everyone_is_Gay.com.xml +946a4fc3e8ca86971f8824a4576d947fc40b7fb4d50852f9604278a3d0f97ec1,1,1,Evo.com.xml +bb9a0e1c85c28f8f09687aad733547dc640569557197fdb9be79b85d9ce4931c,1,1,Ex_Libris.xml +83bc5eb214726e5221f5161cde0d085ac4d9c225d08c4611b6b6adebe8ca3c9a,0,1,Exaccess.ru.xml +6841328fb4f2cbf6061dad6d4e8891fe0cbc9ff71db8155d4a10e3cb15ce1195,0,1,Executive_Interviews.biz.xml +b164ef892520be08098945612a434b74349844dba5c7fe618b2e9e0b06fe70ca,1,0,Exinda.xml +53d157231d09238b4b86f5d623b23cafe9e649f542c15ca65c93e4c03da3198d,0,1,ExploitHub.com.xml +03b6227bca68fc7f7a99a9500fedf38d07361ea41dbf5e823158eda5e600f00f,0,1,Extract_Widget.com.xml +d08eb1b730ce427a740e4b6366d314802a3b25eaa1ce165588d8df0cbf21fc80,1,0,EzineArticles.xml +76e1a443721c7c57e7976241d045defbd2218dee42cbdef6a13472e13d9ff63b,1,1,F-CDN.com.xml +dbcecf1c78f18bfa326267e0ca37f8f94debb98236913d73092883b39df4f204,1,1,F3images.com.xml +03aee00629e0916b9627f907484ae885e2b9e783dd789c7b928dff3dee8da925,0,1,F9-Distribution.xml +6635f4155c42dd8f694a85079f66436a3cdd466391b4814ff640259a9a9bd698,0,1,FAPMC.xml +15e11d918a3d88dbfdd81e7faba1cfa99c5aea57b821c35cf269744465990066,0,1,FC2.com.xml +b18bfe335ab271a0aa72bbe6836acf7b4a9fa299cf03b54bdca37aa90842ef16,0,1,FIFE.xml +32dbe7b9807abb304f2779ad2ca7e6d939200e54e61607df80c8cf553ded77a4,1,0,FIGUE.com.xml +4def65d5306408980eddf9267615a711b000ad48c4e177c6cea446ec6f822a41,0,1,FLOSSManuals.xml +ea855265939a7763f890048183a4e9b27a37379adaca4db01df723287905e954,0,1,FOM_Networks.com.xml +d78b9c027b108b40f4020703d1bc5b49e10ad84b7d1feaaa88e6a33d76666cb3,1,1,FORA.tv.xml +64d7895f2f69cc720e9d958fb3a212eeb0ca68716d33b408daa6721f8ffafcaa,0,1,FOSS.IN.xml +acf8d20b89b6d86853af14f1e154f2250fea106c13de2229bc831a897513f402,1,0,FOSSBazaar.org.xml +2becbcde3ded8d4be896e314ef4d27afeb6d4db55cc8e8e2fda9625f47f64d78,0,1,FSU.edu.xml +b2085754d0d68fe106aebadb88e72508f4e20b666d9e0ce2cdf408ca9e9b2609,0,1,FacebookCoreWWWi.onion.xml +8767c03d704f5c34d0add741e10a7faca4c8f782e4c1c4e56f154acfc6b1b745,1,1,Faith_in_Motion.com.au.xml +ab23648bd49cfe3cd9e3192b309fb18e60a64b3e908ea3299ba56583f0f52834,0,1,Falcon-UAV.com.xml +6e006939a395f81dc649d4340231a869144a3720162e9fb3fadcefe86cbb3509,1,0,Fanatics.xml +9c51c5f3685da502281c46d976f7ae3bb8b9b2ac9799e41eaf7253c170fecc15,0,1,FastSoft.xml +e4333c0ffe626bd8aa67b64f9330a2857ad0392362849823d2804fb736b8c1d6,0,1,Fast_and_the_Furious.xml +cba56bcb5b38b490a1ab63f0244c457a86793a8794c5e7ae60aaf2782c302334,1,0,FatCow-Web-Hosting.xml +3b9a47db267c9a3cdcbd5b4e803ceac9d44fc713e99b99169b6876e8a5ccb0af,1,1,Fdworlds.net.xml +1fe4b4c61b741995024b05158f8b082a8da905b3578624c82154a54ec6f692db,1,1,Federal_Emergency_Management_Agency.xml +8dd2fc317fa4af0eb6299a4d9fa1ae2d4349e162258277903e16e5ccfac8d571,1,0,Federation-of-Small-Businesses.xml +19c52d9111010e02b10a06aa009124959357ae9508639bb225e3a73989600d3a,1,1,Feedjit.xml +120bf2c17ec6d85fee4a5bc1857fbe29f7d40ec9243c4da31c47bdcb59d9e96c,0,1,Feefo.xml +274d8250863f1353526859ae21132138f2b7c29652d8c7e6c2b698a2504ad9f4,0,1,Fenland.gov.uk.xml +e86d5e3ca3a837e961b2ca3031e5cdf8d15a4297ea12fda82280db4205b00c67,1,0,Feral_Hosting.com.xml +1b5920ef6d56c0c4eb59282a72ded66e32afb565efe04e5f417a2b3c1acacad9,0,1,Ferris_State_University-problematic.xml +7000307b3415118c4d10f8b5a68d875b64b0ba75042bc1cdba066376be025eee,1,0,Ferris_State_University.xml +b415e81d1a66aef7b49d2569612f1ca6eb70cf80ed84d2dfb6137889d95d5a5e,1,1,Fibank.xml +6c5fc7be0086b16f85edf4e13d77f5bb86d0ff940e14524e7cda87bfd30a7bbd,0,1,FiercePharma.xml +03cac8045c0788bdb20a69714ad5af1627ecb48ba8e82a9d67ca83e7c1a3fa85,0,1,FilesCrunch.xml +db02c441a91bd19ec19af65177aa0b1ecc68cecd2b6d10c8c362c6a335ffa284,1,0,FilmTrack.xml +4b11026e46676ad595688a56f829cd5c7a1c4c1d167d542a02e48452246f919f,1,1,Filmdates.co.uk.xml +d07188d89e618288aca51dcaffc90b6ed1630596512f0def5d73cf3049bae44c,1,1,Filter.xml +20ade5eec380ab16ee4861c6086b39ec5beee7c33575e8f1978e5d9e3e8090ce,1,1,Financial_Post.com.xml +85bcf7d5f5b5493ceae0271fe97f22164c904a463c4f10935274615544b5e4aa,0,1,Financialtrans.com.xml +efcb4402229ed43863e8ac8eefcfcc9f73cfea6ae53352269795b1760d0e0a90,0,1,Financnahitparada.sk.xml +e74290fbd951caf49445188e6d7d3d1a5e4f0880f0355ebb3f5461266fcaed5a,1,1,Find-a-Babysitter.xml +ea59a590e5d74dc8cbc7c6a92cc0ae74cf6e0f509ed0b458580792958410e339,1,1,Finka.pl.xml +552bd8ab83e0e59b4196d9ae48bbc364136198778d83a89bbc07c068d58618a0,1,1,Finn.xml +c2a6e87647595dd9487c3959ff5cc3b598bcf08ccbd358f24f90b988c478d8be,1,1,Firedrive.com.xml +265ad3eacbfd50c7c49f935afb3673fa55071a44114e1ee782e21f8f25a29f84,1,0,First-Central-State-Bank.xml +711d4855340b3dcaad02671121099aa096bea856730eebec67c4231c89ed2a2f,0,1,Firstfloor-Electronix.xml +c365305889b7baee90f2f7e899440b24b8c5b3cb994b44c00530cfc22ed52468,1,1,Fitness_Market.xml +d2e39a36b53ec8c0d0923f33bc1d08dd2c530cb5f8c44ea496ba54c78580dd6b,1,0,Flightglobal.xml +6522d1c1e1b9929b26a29d9b2ee2d1640b7e2a95d7a1e651e00904212a929095,1,0,Flinto.com.xml +8ea7a8f22b03f1b163013b35d0ec7061ecf92eeddcaea9df4196738906859924,0,1,Floating_Hospital.org.xml +b2b785c62c6cc9f4ed815d08e4e8d92e9349e72d303e9ffdcca16b74b380b0ac,1,0,FlokiNET.is.xml +cb0a3d716d8f22654d96a8efeb32590ddd38adcd3ba9ae62bed7491c5e5486af,1,1,Fluctis_Hosting.com.xml +3962fca2fa36bc16a4000801f7f7abd4d2ab6f5445da67e238a58fcbe23801b4,1,1,Fluendo.xml +daa09a73d487052e243c63b74efb4e69273117f17917c6c7c15b8797d2cac930,1,1,Fnac.xml +67380bbdadbe0ceb6daba1a7b93df6aaf590634e21be8c6162c07e2ce6ba834f,1,1,FoeBuD.xml +7558cde03eaf45908c8378ed2f8ee64f34b9c3b69f267f128f75cf7e54be4c56,1,1,FogBugz.com.xml +2c86bb4df074f731101dc6d4c65a35e0e26f30484aa4ade5a0645eb4b3c98715,0,1,Fomori.org.xml +b50cb36cfc409474b96f6198d97d5229a1392b250965bd62553b174ae393b555,1,1,Fontspring.xml +8def6206ee5b7f9f38db5c672cf6a64ad53a1217101909377e2fccaff4fc3d61,1,1,Food_Protection_Task_Force.com.xml +bdeb72219338c7525ff16255af8d59fe4b6e246b5c8f2fce08f927a1b3d343a9,1,1,Football_Fanatics.xml +a8ef5c027115c72025f427f939fa975f347e05e75001dcebe886fb8e76a5771b,1,1,Footholds.net.xml +2656476357b57487509d522bdea0c4ad5d18edd3c9c9f2009be8b7e59e5b15c7,0,1,Forbes.com.xml +ff3b2c2c74f4bae0b08249a9f3f0ba9ef3f45145f13adee065b179af0c366185,1,1,Ford.xml +983c37c96f4294151ce45eb1842e69f2bf77a7ac3bd869db4c8c5d5983fe673f,1,0,Forensic_Institute.nl.xml +7e195fc75d5b0faaf7a9fdfa19d0098ca2480cfd7716e492fe87b693279250a1,1,0,ForexCT.xml +c67682b0fcfb5b328722d84fe8c192e393451f15d3deac0324c37c193edfe68e,1,1,Forgifs.com.xml +5e8fc987828220c55b34c788b14e05218dd72014343d7d968aa77361601bc7b5,1,1,Forocoches.com.xml +b6fc958980c2540d31f01eb6ede8ecf78e1430e81c407db0f84972ba310630d3,1,1,Forrester.xml +863eb0975b9e8a5f88d3c76f5e7a371f31da838afaa684d1ec341add947060df,1,0,Fotki.xml +1a248675d605c04901e6a2e6ba54332eeacca5a8eadb46a6d405d4a0ea1dadb2,1,1,Fotocommunity.de.xml +f0fcfab8df8d22bc08e6ee92df4f201538ace2bf944be743223cf251d26c3c46,0,1,Founding_Fathers.xml +23338597645b4a3ab4ff7b8841fc3efea480fe8444de694630a0462795c8f746,0,1,Fraternal-Order-of-Locksport.xml +1a364af118ce9c0abcfbaa7635c1e0fba64baeea937b98e2cd06c80447faf42a,0,1,Free_TV_Online.com.xml +0d48c14e2a05d9f90f4134baff79e48ca1778868b0491e7c7dc3043585d73ae7,1,1,Freedom-from-Religion-Foundation.xml +dfec799168fd8446708a1540518f2829c0d71890a380ae775ed4b73ef262b88d,0,1,Freedom-to-Connect.xml +d12551660a3ca3f4980666deff3758cc065dcfd4afa22807e598ead97a27a859,1,0,Freelancer.xml +d0da63b8cfb124503218f5d2fc8e2f6de394eec88e65d7f44dc5b9e346f235ae,1,1,Freelansim.ru.xml +5eb2f3c83b0135ef3f3022b665f265cc4c63b9d243d992fb4de5320a1c4a3026,0,1,Freestyle-Capital.xml +1bc4e86cbfde644d76b06a2d42e53d2d3ad77aa44357b51fc3cda52cc13398f2,0,1,FriBID.se.xml +74573855013be34cb1230aa388418d4134921cd8cff3db47111c1ec2fd3a386a,1,1,Frontiers.xml +2ddf3d7696afa689b74e12c2dfa48ef10271c57cf8b52696ee584a5bdb09f03a,0,1,Fukuchi.org.xml +b21f0fb6b215d5268425723bc75a19b326df831ea863d5a922c93c2edb08f1b8,1,1,FullTraffic.xml +13a95ea4410e4b787d109639ceb3da60ebe59216893d7531fc6b6d35f2d1e1e1,1,0,FundRazr.com.xml +0bf864d504b62b444ba798f46ae53acd1fe189b12bffc4c4a3bd9e4d144fb61b,1,1,FundaGeek.xml +362fe4f58f36e45d49519cf808a46332a95af9c4cc9dd53a40054fe7989e92a6,1,1,Fused.xml +f8a0422cad5ad0b4a9f2a4836d9b2354bfb7edc7aee9bbdaeda92dc36db5a6c0,0,1,Future-Publishing-mismatches.xml +f30174c08a98d016d113a5730a45f4bb74099691dd3ef1d1d209d4f6fb7012b9,1,1,Fwdcdn.com.xml +8426250d81f5cf4ac0d7d28b3c6506aae55186217010e055b523c7dc48639353,0,1,GAME.se.xml +2da66d8b6b9143da5aa3de021865c3a1bd02324eab8038002e48a2ab8af86185,1,1,GCM_Asia.com.xml +f7bdaf4a797376040d08fb18652d7cf0eedb8ba7906904146eb43b8a358aa5d5,0,1,GIMP-foo.xml +8ece7b9a55dcc63fa7784890ada48016392aca3f34f12086284dc2dbbdd0e50f,0,1,GND-Tech.com.xml +ab1451b0683e0014737f9f57f3e9f414f215dbff35b08fa8cf126e8d83c836c8,1,1,GNOME.xml +9f9228d01a61c6c36749f43229b861d54f380cbfbf025469bced8cbdc2e08e55,1,0,GOV.UK.xml +b1eb04822cc82a87c012a5b68622ca2804ddfa57f90165ab739d30d11afae09c,1,1,GO_Transit.xml +6637d47a74a578146d45ff4f7aa375670d1aea3d1e41ed9a5e90284da437812d,0,1,GSU.edu-falsemixed.xml +ca4b0f161ae75041c459ce29e5d2966ec73c220edf13d44cd43105509be11b84,1,0,GSU.edu.xml +2658ea2070b54f5a51b5fed1141337e3b434ac2f1565884145c41b83c8ac6d15,1,1,GUADEC.org.xml +943674e305df6b496953a700700d1e3301602f43f60cc1cc5c4b75f3d68d4ac3,1,1,GVNTube.com.xml +37d6faf5ddc13f30dcaddab73cf89f5ade20495ba8ccabacd2a5f421c21a5990,1,1,Gallup.xml +fbd7a51b3a90aa1e07e2061cece575928087594dbc159fb455b21f690775cd49,1,0,Game-Link.xml +5d2394c351034dbe321e2c1fc675bd412c945a96aaf98744da20df4db5da97b3,0,1,Game.co.uk.xml +34f8f5a92ee97baf0e3c14603fa42b65b89edb99a8e71c61877a933811035f4b,1,1,GameDev.net.xml +51b99e7a6ab7cb4d9587ef4dcc9fd043d88924f3ea6dfc4268711dac06786606,1,0,Gameological_Society.xml +5e479c67a14059e5d1d97d5c0dfa59efd46a91a731b7fa156731be0b1f9b06ab,0,1,Gamersfirst.com.xml +3d51538a88733634e8692d273367853c40373ff980e6e63d35b98f1711854c5f,0,1,Gamestar.de.xml +086c57cd99754d4786c53464fb9d076de23fc5af2127c7c9d534aa9f364b8635,0,1,Gameswelt.de.xml +e031196f8fb6b2a3483248b387d37371ac587bfa8bf365a6f13ec2aa7c0b0732,1,1,Gamezebo.xml +f639c545ed1cf318fe0e2bb27a8fff4e7253d59e9f83b06a8364ce5eee77abaf,0,1,Gamona.de.xml +7a776fb081a9777f2314af66dfdeb753ac52a3124f9c46b7a400de6683ecc2a6,1,1,Gandi.xml +035809e9f5bd95475a0a9b411c7401dc0cb02d0343ae1da2b72635a1f64ff652,1,0,Garcinia_Cambogia_VitalMend.com.xml +cb1de2017a67592099d5d9c954c7c56e2e98bf32c7f265b9be519fbf869d98d5,0,1,Garfield.com.xml +380a8d1eb10fe5a945578e4b2e76ca99abe4e00fde55ff1ba6937f8936dd35ef,1,1,Gasngrills.com.xml +d282173eebd744c9e5761a975e9b6b5086e86ea8cf51c7803bc78ce8eec8f0c2,0,1,Gate-Crashing-Org.xml +932651701c5fd6b9c5b272299aac182c260f3d005d9cdd624538ac5055bcd8af,1,0,Gateway-State-Bank.xml +77d0072c08ac8a2b284de4354a9d9da5d9e3fbd2dd97532fa85c51680c813d5c,1,1,Gatwick_Airport.xml +c325bbe3f25bde17054d2c65f66528221f834628788ba7c6f8275260b5294347,0,1,Gearhog.xml +080439aaba8674d999ddba8845e23fa69c525446f11c7005c2bee848774cacc1,0,1,Gearman.xml +9257553ea02a0d51787652f8f4144143fa4bf995632caca3a620f37e8f422552,0,1,Geekheim.de.xml +6b70c3919be0ccfa44e991ff4e084fc38f51e4de86c8ce7e70d4e2007089f087,1,0,Gemius.xml +82a575bfdd7c91f460c75b2c61c90f9b145af743bb17a462df5388d6ff93a9d9,0,1,Gentooexperimental.org.xml +96c69b44fb2a6ff797e5ee08ae801303f2b36ab16fbd93f5d64a97f4162bde59,1,0,George-Washington-University.xml +055d3a6e5f8d3e036c6c9f0a2e52b87fb76fdaded2e6768467e5a12f346eacd3,1,1,GetHarvest.com.xml +10a621bf9199c08e61706800651e79887f7d9ab2eff080fe2c6cb96b6f18d664,1,1,GetResponse.com.xml +ab59869864ab49f92b5999cf790130235959fe09824d4eb99e217acf4d93c856,1,0,Get_Safe_Online.xml +682fb5bd1da5ede92efb99ab0044896bfdeed95c4a03ad363f48344f6c992f52,0,1,Gif_Gratis.net.xml +fd005c94136bf38d49cb6c2e54e2d1eb3a1dcc47b14839e428c31a4e8fee16ad,1,1,Giganews.xml +1d63e25cc0439afe39fbd853309091e58c612ef16c19421df703557c98780207,1,0,Gigaserver.xml +f5298b32c824990297a18e92474c36a5d1b344ce7951b529a48dd0d6c2a9e620,0,1,GigeNET_Cloud.com.xml +51e006dcc0faf9e3d034d633d244bbf7fb278b7f49388c9303bebb5d64d206b5,1,1,Givex.xml +1d543c058797c2143e84af0016b439cef391b95b81a938a27400534400e3fc5e,0,1,GivingComfort.org.xml +ed076293b391e63d4e03d8e9d6de8bc45e2e968273c10131468eacee40f1d08e,1,1,Glerups.xml +745c86661e057217d3f6d9001632956d24085b474525744996044b02aaecade4,1,1,GlitterBank.xml +9ca0b92729a85ee245177e7a30e4ab554cf09245017b322eb486667b90d30d2a,0,1,Global-Footprint-Network.xml +bbf4d95e8b1cc5c2a5b862ff0bcae50fd87a7f055d1a085ee68a9f9196b445b3,1,0,Global_Human_Rights.org.xml +28d1e935698d7bf9cdb4828b3fd4e933daa8cdf6934fe4e06bfc2820be0e81be,0,1,Global_Promote.xml +2048765e5d20395f03f87f9fab3ec0691426edc106b94970fe052f1a7cb74e9a,1,1,Globaloneteam.com.xml +5ddfa3a482674b780d4e0cd81e3ba0264703fe2b42c797a132127a132df0f974,0,1,Gnumeric.org.xml +a274061c2d10fe93f56a7434e7f541897c64f1749bf842bb7d167eed03b32155,1,0,GoGetSSL.com.xml +b4741f899272079753bb0118f166d0130bbedf31d16434e9b8127821fcc41f50,1,0,GoWork.pl.xml +8035e4afba24967890b6a797e732159e2a135c28742d91b63f4ee5760fc980dc,1,1,GogoTraining.com.xml +1857fb8f5f73fff134e4fdda43db8c16d0c9c22dcf0ac20fcf3ee2a846a022b5,1,1,Golden_Charter.xml +9224e11b4b259be1d60b4d65c3903a9b2fe7403753ce0b1a540bc526cdb8e21c,0,1,Golf_Course_Industry.xml +7fc9cf927c9b92789e3d57fde87b70aaf938b68e6b71adf4319411e2af1c67f5,1,1,Goodsearch.xml +29c9afd965ed16539ae8450e714cef305ac462c4e59e30c4d12d85e63ca058f8,1,0,Google.tld_Subdomains.xml +25c3f0f876658542a6ba1aa3b085d847ca547e3f03f0ece8b6b11ae4e08dcffa,1,0,Google_App_Engine.xml +fc2c55f71e70b59c18712e3ce183d824f45432bc691882aa9a2990d64c8c0f92,1,1,Gotmerchant.com.xml +8c2e217fca6c4f32665fceb124225f04edc9b8c01a403aedafd871a33c9d79ce,1,1,Gotraffic.net.xml +2e29082cb5f6eac2d4995011751e0bef076bd568f46b022684a05e13edd48c7c,1,0,GourmetGiftBaskets.com.xml +38ea979b7f650765d00622f7919e2589f093c8f0df62b005e1ee37f97e821289,1,1,Government-Security-News.xml +adce25fe2ad3aaf12d9c15ea4ea6d9cdc060c1c52203c24c4a119f5c27e8c1f7,1,1,Gran-Turismo.com.xml +7acff386a3f3713706f4533875c469e978d785fa9a072b750d010fe74ee2279f,1,1,Grand_Haven_Tribune.xml +a86f4c61b5cbb47cfeaf651f2afd0fa4ea39f82dd2e73c927622cedad59f86a8,0,1,Gravatar.xml +b7d75abaa69773098bd0b108a48aa4cbde2c00a211bacca52b107728f4230fcd,1,1,Grays-of-Westminster.xml +6320c8a92fc89f7e04d91bd84a2570081ff7ac69ed87e0b5d3ce0055c3361b3c,0,1,Greasy_Fork.org.xml +e4b6f7597186eff47f30a38f678dfc3d78db9dc04515fd3ee31e8831e0a743d5,1,0,GreenSky_Credit.com.xml +054ef9c8b5459c29b97998aba9220474e3af78bb8af72316267560fea5174ef3,1,1,Greenmangaming.com.xml +4988b2fe799481ffac172ac384a3951b46cf89ceda1461bf82522f468dcf566e,1,1,Grenet.fr.xml +fc54f1280cad1fec94aa76e4bb91b14123e5f45ee89eacc58b0036334fd2d4cc,1,0,Griffith-University.xml +c7a62209b05fc531978d48bfc38e9e0957dba51b78426f846743ecfe403723cd,0,1,Grok.org.uk.xml +9fa1fec5b01de3f893162bb05593529fc9b9f40bdf02f4b00b6ffaf7a0d385dc,0,1,Groupon.com.xml +bd99858b4f66b9655911910da919d75513c6be1606c9164b386c4df7e29819e6,1,1,Growery.xml +7478de441d512f4f0f07602b17efda7bc4badbf0eee160a17e12c0492e1d6f10,0,1,Gsfn.us.xml +a7f7e0bd7f195a558edb2fd3065eca2849c73dd757bbbf4f840482bc19781fc3,1,0,GumGum.xml +f10393a60f224ac6a9127c33276d931066f78669a28786c577f068ac64b77b0c,1,1,Gust.xml +4b4b09de35ac29ae3cb87642e66c4ae08593682c7847394a93c8d378766b5b41,1,0,Gustavus.edu.xml +0ecd9594e7b04bdb9476ff3489d64735901f9230617b1d0bc8cbf0b0743ae62c,0,1,HH.se.xml +6a011c27d3d1eaa622e81bac1766aefa2ef91699ef6e2c335df418719e2b168b,0,1,HIS.se.xml +b7c742427b63875bf405b4617943b5e508ccf8ff4761279452ce909a2aad22cb,0,1,HKK.de.xml +d09bb4ef7ae7ddb86f27ef0523b00a1e399bdc19cdaea4c3cb0dd86c6e6afdce,1,1,HK_Yanto_Yan.com.xml +b1b43be7076c4ec828a14a45a16b5d0ac9427622b8899a87870920e1758b6532,1,0,HMV_Japan.xml +805072ec20886e155a2c5688d1ed727a1f3f331fb607c2af876e2a5a0950821c,0,1,HSLDA.xml +335c9d1e25fa8c3299bc8c25a3b21214cee62a69f8d1427fe405ffaaef5e8e90,0,1,HTWG-Konstanz.xml +160cf059aeeb642add9c979040f1b60282a01c9ee49234f64bd25ed4611583aa,0,1,HUK.de.xml +d97fb94656263a08627931829f3707297aaad16a2780d7efbc08d9a0e240af5f,0,1,Habbo.fi.xml +2861461aaf5d9e64c74085dd5b9d240404207f44222cb49f8ba2cb1f0e3c5789,1,0,Hackerschool.xml +922b403278bc9ae839f646bd231dd9ab11950ec5744da127a5e185b3eb1c20c6,1,1,Hackpad.xml +51b17752c74062183224769643033cc2727e3263c0af2d83072f8f4fe3d30d51,1,0,Hafner-ips.com.xml +36f8eada3ef9157fd9135fb2507307fc0a40d90e3f2b9727e1e483301180b35f,1,0,Hammacher-Schlemmer.xml +c4c6765b82c3995fe1018d07d514748b3b1dc77463bd7f9745d4f81c89729b7f,1,1,Handmade_Kultur.de.xml +a8183b3aee9c2ef8f331f6d2b4a65f99819fec523ff1df7d10cb69ed6fd7c746,0,1,Handsome_Code.com.xml +0b7c9ea36c20bcc97958b4e3d5f6937282a35e3029bea14e6dc4fb95b3c17e25,0,1,Hardcore_Teen_Girls.xml +e6f358268ccbfa9123abd3a38088ea30874f0fc2f7d577d6729117981c403c3b,0,1,Hardwarebug.xml +33be37ec857b9b80c74e0ee3a9ad566bba7cdf793e076c4103427d1e5413f761,0,1,Hartware.de.xml +1fcec52d0a6f3e89d64966ba878969749e4df9718a6500d911f5d86169e3beab,1,0,Harvard-University.xml +db16d5037c30da9f3b7dcdc63eae06752d0a06a2f0cb2d1c16100e634db2a5b7,1,1,HasGeek.xml +60daf8c2e3d24d7c737cd3ce182129c92f83bb25df7a66564b97abd5e2bced90,1,0,Hatena.xml +8f3ad2dc6d52fe31fa281ff5c01e682f9275987572f2843458b7fc5dcb0979a2,1,0,Hawaii.gov.xml +d23e1458e9cf3368a9340b486e4ed69d17fc5adce0d9d1839e7894ca3e5350e7,0,1,Hawk_Host.com.xml +591930da4df33140beeaa02531b0b95e5f5dd8dd20879f314626f0eb2b187eae,1,1,Healths.Biz.xml +04b1d51b64b57d6f1e5e899277205f72008d30b2db3cb6e69d40f7e334496bf0,0,1,Healthy_for_Kids.xml +3edc0a640e42edae30c61c2af5a8e5b77455186e1d04c99b01235e248e320a5a,1,0,Heanet.ie.xml +e6bd96b0e0f28e843af136c5fcfe7c0242778ff4aebe391eb57b29f2058a4511,0,1,Hearst-Corporation-self-signed.xml +5a7c989104fae6ba6f4ee2a80242fab2e700357e5136b4e2f3bb235c6455faf5,0,1,Heartbleed.com.xml +96303816b6d137a8ff22001e5a124d294fca5f073d184f8765d5fdb83f751f1e,0,1,Heimdal_Security.com.xml +580d999997747a4097f5114244ceb0ed663803d141aa434b26b978c932efd3a1,1,0,Helpdocsonline.com.xml +d242b4846eb0d61eb9e9d0e22ccb607616353391445d8f19e729ba9fe142a20e,1,1,Helsingin-Sanomat.xml +820014421008b3ca657f912ac23f3adbdad002254ff6c94d5004483405ae083f,1,1,Hemmingway-Marketing.xml +8291b5a137d3ec0d772b70f8d45a726e19b73dcc871494c813b61d0440886a7e,1,1,Herdict.xml +25d4cb3f8b97c04d2b175c9f3d8e42df52bfc92fce67e743f57b5fdb37e86471,0,1,Heritage.org.xml +69c3d0cdb2cedd4d13e8e4147bf4659509c178c0939ff2d6e9f41f621b55433b,1,0,Hesecure.com.xml +95365d0076da114c98b41049f775b4e36a52bf8297842da9d533802ef3317761,1,1,Heteml.jp.xml +93a85fe7954fb1d3f5226dd1ff4a98ba918d5a5f028d76ad0b519796e19ec8fe,1,0,Hetzner-Online.xml +f335a4751adf7c6786b7521e5a699c6670cc3af8848778a442c82d764f118c7f,1,1,Hexonet.xml +406fd610e2e705adefb26d72ada5b00607b27dfe683c2256efecea7ba1ed2e21,0,1,Hi-eg.xml +7d15b6ecaf6ddcc637969553f0be451889bf2e45df35bfcca50aa3be43afc63e,1,1,Hi.nl.xml +4307221f40a691dd191221761ecca21f6ef5956badce47258674d0cc030e453a,0,1,HideMe.ru.xml +bc67427308208352d8a5a1fd4410b16fa545f7b9a6925155b05c146708a143b2,1,0,Hidemyass.xml +f7af86a5eca73af32fc8ee59537226bf655617bc2db7bddc234ec7f3cae47254,1,0,Higher_Education_Academy.xml +137fdd1f35698ccd261aec56e9aff59539e25dbb1d19b78819c3cc899097468a,0,1,Himediadx.com.xml +1654debbc84e77392addfff21481c7d0908bb592c819a281a1d59b242d618e9b,0,1,Hitfarm.xml +9adfaca1c0c2fa22166e4ac6749d4cfa121293e9945cc576b4530ea2d11a6578,1,1,Hobsons-EMT.xml +8b5a732d5ccf78d73a0256acb161bf426b82ece7d1c75d77cd7b162db7eaedd9,1,1,HomeBello.xml +2490e07912567101b6b4e07fe81d9ef66dc72ca97e1a8d3653f0cf32e43bf667,0,1,Home_Depot.com-problematic.xml +7b460dff8a2b02d81df02b9d9ed829deb2dbd3d850c4536babea038ef2968ec4,1,1,Home_Depot.com.xml +ac2f39b160910dfceaec540d188711e609245b31953c4a7740b9ddc2e7e7bc46,0,1,Home_Depot_Foundation.org.xml +2d8e92f61fa2c3db92ca33b37933c4c6d7c9f3deaf712dbd4a9a31c4c4a94f51,1,0,Hosting2GO.nl.xml +f9324749f745dd11d192d3e1b9664f2ca11636d60a9fc0ec77e1f821f39b432b,1,1,Hostmonster.xml +caa78015c31b2b090cfbf9889caeb1402166faa48b75fd458874a52dbc06fbbd,0,1,Hostname.sk.xml +d92eaeca0ceba278ae0843bb88be513630b35575dbfca641218c1115fc4651b7,1,0,Hostoople.com.xml +95fa1eedf4dd91a07eff39c19a55e9ee97fd25a7b0fffb216c4508df91750aa5,1,1,Hotspot_Shield.xml +e981fb89c3532e8d634681500de73da305cf7da937febc2a2346ce347fe14167,1,1,HousingWire.com.xml +6c4a837e76f1df70409a02545ca923c1bef94e7a594fbdbb2a7e417e30d97426,1,0,Houston_Chronicle.xml +79b67385e5095c34090fccb7de8b28850d1a081a776f5aa319318bd9a7c52d7d,1,1,Howard-Hughes-Medical-Institute.xml +51a4120fc58d65fb2592da7322ae24629f9de9d2f7296ba2492771e06f062f8c,1,1,Hudson_Valley_Host.xml +ffa9a50df3e8b93b0681cd903f99fceba361d148f82059e0368c5a98a688dad8,1,1,Human_Rights_First.org.xml +7c965cb2a413ccd64e7ed9dd9044fe709db367844c8a60a4068a5051f7d5f684,0,1,HumanityPlus.xml +cdf1b44b1b634ef96a8047c2c063237f457522acc532d4512d652ab469e52f32,1,0,Hush-Hush.xml +0698b9892d4f3615f359bd0de6822c313b88a06ce3e15723d9e213eaf203ce73,1,0,Hwcdn.net.xml +dbb782ebee6eff8bdb35faa1bf5ed396d62ff117785f233ff4f9a43fe8e82f93,1,1,Hyperspin.xml +18c086c4defd26a9dd8a3fabcc666503c4ea63b34e95dfae104088cfc9a46347,0,1,I-kiz.de.xml +5c03066e85c3aaf26417fe02f012ace3c4a4a650cd9c2463a4adad11f3f22f50,1,1,IAmplify.xml +efe61764f8dfb9aaa617c1e56fcfef173f66aa12328bb32d162bef6d65f12348,0,1,IAnonym.com.xml +b7cc4fc999d2a76591c5022d7bd3eec8ccb5425dc9312584de2f5cf1f5b4caf8,0,1,ICANN.org-falsemixed.xml +eed3b45ec6eaadfb8fb4cbac10ee2dd946026c1bb45ab6e9fcc561c11ac565f8,1,0,ICANN.xml +e158dbc2b1b6f24c03e24e1418e3c388738c260ff02efc428b534caf1185fae1,1,1,ICIMS.com.xml +f18922a305bc3be951a93339bd0045ab5ca5b9741009636154eea681291cfcee,1,1,ICommons.xml +211f626e770a4edd6e49ffa0449a7a34f3013a28e2da645b7297e471ff22460d,1,0,IET.xml +5d1b07df986b4173849427f9c2d1e6a733f7027140bf3b9aaf4696115b704d50,1,0,IGrasp.xml +eb4940331c51de8d5bea8ff74cf37cb4eed6371c5c5145dc58deb822690e151e,1,1,IHG_PLC.com.xml +80113e93b37b37a4b5677a3b5f4468ab96198f2e4f1bb6fe82350d086e21e554,1,1,IJReview.com.xml +612862cba9dcba8f259b40677fbb0dc0c970577a2ec8248d7b4b264723701570,0,1,IKK-Suedwest.xml +756deaa5ee5b4d4c35a91db9c5e5f8173617434b69dac01f1017b5f33e5e4f74,1,1,ING.xml +cf27f352065312c50689b9ef199fdaed72ec399f015a5a27984aae4f6eff48dc,1,1,IPCdigital.co.uk.xml +4cac21996f65a1e7193902b0a88dcce06b2eca129343e5110933dc22fbd12066,1,1,IPXE.org.xml +a87eccdb4a57249445db1771438e401dbc678d346083aaf5987566f384e5c05d,1,1,IP_check.xml +8a66c900d13231321bea6872c759548b1dca37b059c7a1e729c7d15613ab0b82,1,1,IPage.xml +4cab7ad0efb9a81786846b6c973ea525e4bd99e95bca78435ffa6eccac0f3fec,0,1,IRF.se.xml +533d5759cfdb30ab6272db8f425bf1d563926f1eb157ae717742dc441b3b3d88,0,1,IT-Cube_Systems.xml +48ea9aa1ebbed6fb580546fdae5f7641f1f6a3694f028f742631ea1213f166da,1,0,ITPC.xml +3e4b1b3df1d0421acc6e09a8e2535e9d06a2ad1396cc753bb7d868acc64d439f,1,0,ITU.xml +024f274cd2fb232792acb65a2c2c2b67fe893b6eebefec9da21f017262033102,1,1,ITV.com.xml +3b48a035ae7e50023f531d8a79f7f41f7b3289b9a214d72ad9191edc5d596e02,1,1,IUPUI.edu.xml +dfc01c229e85fc0afad8f20207e8aa59ce2ebc362cccd9258859d4c40e7dd75d,1,0,Ibiza-Rocks.xml +047c2947f163b74bcfa7c71e4cbaf7b19e2c4fb951dc2bf975446720dd35fb3d,0,1,Ideas_on_board.com.xml +06fa0e873e4bdea3ae9ca0d8ac78f1b8ee1c7785206d7b4cbe4f2b1dabd47abb,1,1,Ignite_Realtime.org.xml +19a10f5af3e7219c9888aaa8159acd278ec023e7570d6369264dd4ac99b05bcc,0,1,Igolder.com.xml +df7acefc4fc64903e803b27bb4d75cb6e9923d329711a4f14e2251e82b85f57d,0,1,Ihug.xml +d3f0a875d56edbc43be1a9550784c2d199a6809baf1ce23c663030c246aa7419,1,0,Imag.fr.xml +ded349d0e0b6957b6ecb94f4e85ab1dfe7fa03b1a0ed16ba7531ff3b9cda9322,0,1,ImgDino.xml +f8f1473f26523608f91aefa8d1b68855201582099478a6177deedd9f2fc8bf44,0,1,ImpAct.xml +2c56a55203e19f8757d1bd3ac5758338c21eb571a322466ddd48a27f99d3ab30,0,1,Improper-Bostonian.xml +8e6cf93eeb46bce877ab9685359feeb109ad022109bbbf91a21b941519a3006f,1,1,Independent_News.xml +08fdfcc35d415a8993d8bcba68b0216bb1343e148d736fbedbf61d6de08ff781,1,1,Independent_Voter_Network.xml +0e11558aa800c2b2eaf87fff2fcaa7801f5bcf2b287180b9ddb86cc5df6cd7c9,0,1,Indian_Express.com.xml +76196600f67cde4e2a5a69869eae23ded468e8c8ad6837e111b44ce8104cbff1,1,1,Indiegogo.xml +69f67c7a6a357cbe15b8e565e6d2afc6b8fc2ba6cd3cfd393c4491b3861fa503,1,1,Infinet.com.au-falsemixed.xml +d885a05161cc68f32429419ba4b53b0936456a6743206734896c8345467193ef,1,0,Infinet.com.au.xml +3c43448b0f0cb113e11bd417ce99292ae25d977fd5191687aed8be931bb3550e,0,1,Infinity_Tracking.xml +ff0dd4bb477d5c2b96ce3ca9edc86f4f449b5ad0688c3961ec8fe048f4c7f832,1,1,InfoQ.xml +39b2c70087da6a223a686f168f6ce3703d48a89dd0d877c4bb175b5facfe0660,1,0,Infolinks.xml +f4c83a13d0fd8f8e1248e83706d7426b8d5d39543fc0bab2f054bee91240fe66,1,1,Infomaniak-Network.xml +9872dc9d2e174cbd02c79c23eb0c9c872c10ae2265835cd1cd6f3ab05a8a77f4,1,1,Infosec-Island.xml +e8686224d76f240dfa05d6cec4525948de3ddbef03b1d39f83908e935f9ada69,0,1,Infused-Systems-mismatches.xml +c45efd084b0b44e025939e768470d1ad22530fe4be95fd21e94fb53257671f41,1,0,Infused-Systems.xml +f17275b6e9f48b06e9f1db362a27de41baf0eec5fe34f484f7c141e9266baae2,1,1,Ingentaconnect.xml +54e572fdfcc270309db864e7098ba422d1eeb909daa2fc7237d77649dfc4f057,0,1,InkFrog.com-problematic.xml +abf2bf8030eb7da4165548443a622f0f8504acc1c1e6c06821be88d9889ef1b1,1,1,Innovate_UK.org.xml +f10ba13a6c5177bddaa25ef0a0bd9520f21fe2985c58603ad6938b5350d5ee37,1,1,Innovation-Interactive.xml +c241d995f6e6793b43f3ae50cc1832289b1de058e929249ac5b3a8418806f8e7,0,1,Innovative_Food_Concepts.xml +8f7914e006046e349b25fb919f40317c87fdd9ce249931917c24e48ab12247fb,0,1,InsideUniversal.xml +449ba10b60382b828cd2a22be490c649e442925595d8081dc5f4affb480d3a1e,1,1,Insight.xml +4858b9af0edd798ddc138ce6c02ddf6674e9be1574cc775864f1eb2da92fc85a,0,1,Institut_fur_Internet-Sicherheit.xml +340838024acfc70d6deabe9ee17b085b055d4bc9a80120afc800318808c7fe29,1,1,Int_Gov_Forum.org.xml +b19c12335d9ab9d9597fbd0f61c3445320de83618fd982a461ef2e42400286c9,1,1,Intelli-direct.com.xml +f8ccce593fb95122a95fe00918c297e77ce818f5d344510362a3a99417f8141a,0,1,Intelligence.org.xml +405674d9b11e8e289b645154f2352a4401d377c62570898515365300f4a3208a,0,1,Intense_School.xml +424764bfede4c1ea62a389e05ba765b1a4e36dd7efd03cc193cb8010cc22ffaa,1,0,Interactive_Data_Corporation.xml +5564ccb4d32a36d5d2c879378d9f261947d8dda7515702dd761615f6fb399fee,1,0,International-Business-Times.xml +84e7f285a45629181dd08c4280bfa1293bfa38c3565b837ff7fd262a45c3bd35,0,1,International-Finance-Corporation-mismatches.xml +127ddf485368851d2dc1f1eb1f64bb100f9397b2fbc05b401f2c53bbb0bce88d,0,1,International-Free-and-Open-Source-Software-Law-Review.xml +0992d1e0fc55d6fe819499e798e99207e0ce9aeecab77981087ba963581e8149,1,0,International_SOS.xml +7266fc84a1e6e39f0b812bf791d0b4c8f3705a3070bf41196385d46762dc2ca6,1,0,Internet-Archive.xml +81b3be4036e221a597bf01d58395099db4a6791814c05bfdb666f9dcc2a8088e,0,1,Internet-Governance-Project.xml +cab358f32e9a489eaa69ccfdefe364cb36fcb5ba3346874889de9fc875050d59,0,1,Internet_Coup.org.xml +dc6ff49076759df04ad979467bf83cbb0678098f8162268e128a4a1f9b4a93f2,0,1,Internet_Week.jp.xml +733c0f0956527491bf6a01d35e097c6df6b84c46e102332096a4fb81973f7f9e,1,1,Introversion-Software.xml +b00472fc653c5118dcba1528fa24b826ac7a3c90f1724d7966bb4c34b237f936,1,1,Introweb.xml +463310fdb182747ebb4fc15ab8c38a5f573b10b276ab7c3775acd3708408caca,1,1,Intuitiv.xml +b8b926a42cd2792106cbee833c76f516fe15c33d7b2af468e29ef66a8694a465,1,1,InvestSMART.xml +4f8f87e94bf9f3220dbf10f449349fcd2b1eb3a5dfcefcf4c64bf1b7fbae73bd,1,0,Invincea.com.xml +6b83c7249532eaa85681d638f079f8c090c10b2e099714e498d70930e3a2f867,1,1,Invoca.com.xml +b2ece42a9c773d4376618d1d3848eb747deba70a2de12185f51e1dc9136dbf93,1,0,Invodo.xml +848e94d75fdc0df47147da78e0fd4d4c6ac21cbd9c9299ad3114f7944d655505,1,0,IoMTT.com.xml +7e80592d8efa073fe201542cef44704110abe65a2b0132e1a7bbece9e8936f22,1,0,Iplay.com.xml +333e71526ec644126315f77e20029f262ecd0746c68ff9a2cfbdfcc16b003066,0,1,Ironwhale.com.xml +d3976d61894e1f8464f930466936d18aac9056ca9b23f7fc23d97382692b81b9,1,1,Isle.jp.xml +1661e0be935e93fe17283133e908f52a3d73a05c2110ebb4a95d56343122a1ee,1,1,IsyVmon.xml +36d12ffb1d7bfed62d6ccd2358a9ab1b004782d42a70f8e76255497e56e1ae48,1,1,Iv.lt.xml +c94cc0f445874d3f294be079e1c4775fefad5e6bb8d6dec007efbfd060276163,1,0,Ivacy.xml +dc52614b3a33ffebbf5763c7c2a25158699d866af7ceb86ec83fe1750ba742d4,1,1,Ive_Got_Kids.com-falsemixed.xml +ef2b06228e963b94bc9c0848ac490cd4516d52f2c525f74812dcfdcac93acefe,1,1,Ive_Got_Kids.com.xml +370755dacb3bb54bef963a118b65067bb321e839d51f337bdbf0448944708cd5,1,1,Ivwbox.de.xml +2058d895da75a404225168a25a20ed36618333427509d7252de4bb28563c3b70,0,1,Izquierda-unida.es.xml +20df0251075e227bd026718d531f83021987ee9c14a1438f3cd7e6f9ac12014c,0,1,JF-Shea-Co.xml +ce1f1dfa4ffbe1de9185c4d5bf81e07ffa6afd0c0b3c16bceaadaa8194659a77,0,1,JSConf.us.xml +ea862774de9cabd815710f212b32d626a515601e3bcabab24545c2cc190d1650,1,1,Jacobin_Mag.com.xml +443e8c4948a9bd307012a1b725a0bc64e97ee68ec77972dec6bb036cf4700856,0,1,Jacqueline_Gold.xml +d2130738c6e895702f300033327d5e273f6564c43c7f71006f8c288f83cc1b9b,0,1,Jansbrug.xml +62d30f32c383b9005b247851e85115fd358c8ee752b97edc0d020b0ee1bcec88,1,1,Jarian_Gibson.com-falsemixed.xml +7d850c502197ea8b2e13688d1f2b34c9b7a44ba657c92faa3b3ed2030dfaca66,0,1,Java.xml +f895874ee61887214f675b5344b3a35cbe34590a6d27c4c9e33b348f590aa2ce,1,0,JavaScriptMVC.xml +ba3e53a6684fe796317caf126f87f3e326812dbd09a838bade611ee313da196b,1,0,Jawbone.com.xml +26c1c6b5233bfe9bcaafb3505cc40fe716ffac3309ff08136944f0608c825d1e,0,1,Jba.io.xml +b77b4b9c609e0f61ab406d1aa62c5d046514aa6581f420374ef0fc4b7a112def,1,1,Jeff_Nabers.com.xml +c1df2d5758953f29c992ec2598c94e7e73d5aa6c91d2f8eb4d62e0fdf0322a07,1,1,Jinx.com.xml +aababc62c4dfc22dc8a9e12adc4364b9a0befe9ec0939060924b587747b8bc7b,0,1,Jitscale.com.xml +80eed726a6c96bd4f97361b7ee9d2fe2e954fb74437a4e800500399676778e61,1,1,JobMatch.xml +f1a84ec3b3e0e934ce0ee5517ea0b31cb7ba152de5278eb0895bb07023c6628d,1,1,Jobbik.xml +33d8bda4d79682eae0ad704c6f834650e7054ab4a71d1b64cf62becfabdf42e9,1,0,Jobsgopublic.com.xml +ff5eb876669cf155eb33966d0cdda8a88942ccf55c814b14addbe51e52db761d,0,1,Jobware.de.xml +5d2c47c29c532a62ebdc816bdc6dfcbe1e573c4b5e2ad7a35f2288ee3d58c3ae,0,1,JodoHost.xml +c13076995d5856791ee7814d103be8fb0afc12db160318575e4e35097fe599ba,1,0,JoomlArt.com.xml +49e14eb4dbfb8cdd922261721b0b57280076bda7b75b59396dcd0a4b67914955,0,1,JoomlaCode.org.xml +c979cb8a361e3ed2bf5032f85b8aea715a1bcaea1a278635048ec26d4e59240e,1,1,Joseph-Rowntree-Reform-Trust.xml +101fd87908eecba0acf9700f26880592677e52c7d8edc8638dabd72dc06476c2,0,1,Journal-News.net.xml +c621d4ba25d54b2ac74584129f4234f43b52d2bb00a11b49ef04dc15848169d7,1,1,Journal-of-Neurosurgery.xml +878f0efcd4fda30f3821e5362986a41446a368b644fffa970eaadde331595bfa,0,1,Jubii.dk-problematic.xml +139643e1ab4ac096871a49767ed0ea197a72a6dad80556b93ff55de39a577bf4,1,0,Jubii.dk.xml +fa67059e40c7d86b9f448f529446594ec9f24e9293365e478a6a9e4a18c0cd29,0,1,Jugendschutzprogramm.de.xml +21937f0fd2a36647290096e83c0db7202e391611c11760e4cd68edb237a4f7b5,1,1,Jumptap.xml +4b35e98b981f9df97de267679053b07d243573d98a3b6c6ccb0cd6398c50fd35,0,1,Jusek.se.xml +4f66a213e609f141d907611e755bf0e4379e737428775635060e8cb0bd91ef8c,0,1,Jussieu.fr-problematic.xml +fb593e8ddf88bcb1d1508da06196adc76706e4a163a0e8ceabace9e8a5bbf42c,0,1,K2s.cc.xml +a6a776e8e5901bd6be4af8ae581f0f74106f78b5b05b1b4e1521ff7df28c7fd5,1,1,KAU.se.xml +7e5171a47befa926139743e6067915bae25cc403dbf0f588f7864ab606739b62,0,1,KKH.se.xml +a6450ff330b90c225cc405c8f5c623dca8d7a80a0c16a3e58be546feb7ae886f,0,1,KMH.se.xml +c998b1cafdda9cf06478f163ec72ba97ce710090b671180ceed391173d43a574,0,1,KOP11.com.xml +c862e0e1a6711961135955912f1b1644c5e9dc31eb2966415367ebd39f434774,0,1,KPN-expired.xml +18bd1f18f953302be45bf882bd9b3b8f6a738d8f6e1f844dab416d95b018b248,0,1,Kable_Packaging_and_Fulfillment_Services.xml +f021b6ae3956e22e93e03da6a5ac8de94048821b7a588bde2b55940c9a8e5d17,1,1,Kaiser_Systeme.xml +6fa233a4df630fb7dcb886a508843290392db8506e73a1a7da94954db2affa58,1,1,Kampyle.xml +911f9f57dd80af37a918d5c5029a1b4d156298e48a029e7aa9497beeda774ccd,1,1,Kaneva.xml +0d020e8196630cf58db7acdcfaf794b8eaed3ff489057148c718c3937d8fe03f,0,1,Kantar-Worldpanel.xml +4d40f0740ed2f847fd8c22c07325ae9fc4a83b1a17668dd707ca61a2bb37af8f,0,1,Kaos.theory.xml +aa9386df75242bb212ece0a1276439722214b066f3a533f48cd1c9ef722f5f7d,0,1,Kapsobor.de.xml +cf193dd0623511229492237f7c7a1d06bb27fe241d5bb641cae8994407a54668,1,0,Kariera.gr.xml +6ad5cc64325504eb05b4d56be62b0a8a17f98847e7f12784b18b75a2326b2393,0,1,Kasimp3.xml +2533dd6d42cb718667d11a29e50393d300b659dac2e9c62a5954b17aeb915c71,0,1,Kathrein.xml +8c3308c7790fec725f31e846d418fb1fda636beb525f9631be1cf2c9261f4672,0,1,KatzPorn.xml +2086ed81e93368551d121b0508a0ae28a1d71f294f1ec7b58fb5d1d21b9380c6,0,1,Kayak.xml +679dd719d00e4edf268f1937eca8d034fdaeaa5c0a744882e2435f342656a19a,1,0,Kayako-clients.xml +a18f5ebe00ba0edd8322f6c5bfcb1b9db11fc1a04fa28ef93e2c91fd12bb04cb,1,0,Kayako.xml +68709a34f51a5fd997ec08d97e2c0aa2330b4ea1134bcc5e11326893c82c9913,0,1,Kdoes.nl.xml +acd59b926980f2e6a1edc1bd896e12121eb5ddbb7b91328e6ab7dec96b887c3b,1,1,Kei.pl.xml +b67160a2bcb46424224f756e56dfb804323c2446e2161554d1d1015b64ab32d9,1,1,Kenai.com.xml +cc4ede67cbb2b5809ac7bb84b1a3e4364ad98f9f3fc139ac38683c67256750a5,1,0,KernelOrg.xml +911d17e381f38a6bc6ef545f5ca260fc0954922ed63bf05e2f7ca0e6035f4535,1,1,Keymile.com.xml +5fb3e2cc1c993880a2f59cf36840a623d0d7f329e31b725c711619d78031845b,1,1,Khronos.xml +12ae40cfc95aaaae2573664fd2fea40b4aa90e5adb75d013953225121bd38361,1,1,King.com.xml +4b71dc7dbecc49f2b48f869a78b2cea026dc9eab9ee6627a49581d58bbf936a4,1,1,KingHost.xml +22da148d8b0d0314b3d843781fd3c72bd14fbfa68fe38c808faa9e57f7a56aa3,1,0,Kirjoitusalusta.xml +c945235a8c454c4c16e6974e30e93b93424b69da591daa36bb76e7fe25157cb5,1,0,Kirkus_Reviews.com.xml +aac83590b0080a78a0b254d8cef88f132b0d609d2be69b2744903b627e000951,1,1,Kite_Packaging.co.uk.xml +bd7d290a024a52feeea17c0687d34ed0412dd25138985aeb137ee451ff253b44,1,1,Kmart.com.xml +8d12f9d79c207c30d5319a01f740f4a73681b5c5b5973fc74c6817ae87f76534,0,1,Knopper.net.xml +52d6def38db07b96638bcde23b5b25c7872a170f91e482c676b5fd95d92be4ea,1,1,Kobo.xml +60795a9ecf4a07f3a1a334fb06b698d5019c69bb24c1f395932ba5c6322ff747,1,0,Koding.xml +900b42c2f9d1ce487f4de696a98cea74e452b7f9cf848de6eb9c8d8254784e64,0,1,Kommunal.se.xml +7b7771e336e05a84d249ba6c7a5693e82edd32524986654d9f221d8813f93ac1,0,1,Komplett.xml +796f232394138ee9298ed061fe587c009ab2a399f9d4db5fb77a07baa51c390e,0,1,Konami.com.xml +d417f481fdbe9c2100592bf164c92feed9e2a9f8c989a8267012fb2bb4a294a1,0,1,Konstfack.se.xml +c61197b469d6020a7cf8f4aacf5ff2c2af8a4903f35207fdae2fe0f81a370d85,0,1,Kraxel.org.xml +70ea6a47d4bc8e3031576360df6556486307c552f6262b899f7f5b57dec7fa27,0,1,Kryo.se.xml +3896c91714231d5364509bb35080579f7e57d4e79635b73e98987a83c0130e0e,1,0,Kryptronic.xml +318a844861fe3efe2d779a4ebe1fa76f5dd22aa13aa7593b4ca05cd381f4d258,1,0,Kununu.xml +53f972ce676848f11352f5c892d485ce971910da0814445e0a42662963eff652,0,1,Kuther.net.xml +a62b1619581ed52ae2af7e41fa9207f1f557d26dad30077504608f30962785eb,0,1,Kvack.org.xml +885092e6b3fa8f6489a89df450f876ad0eea51159c22f216e787e31b9e8a9ec5,1,1,Kyani.net.xml +1e8699cf15dba86d69e26fb49441767a96265e2bc93408c5e0a5807e788ddb46,1,0,LF_Hair.com.xml +c6af0bb28a0493ce2106970a3acdeadfcf1dba65e1f56a3244cc30daa5093c50,1,0,LG.com.xml +e4115499b76cbc58fd655c147fc8ac7d5f4df58d2d83d0b9e754f04bcae2cc31,0,1,LKD.org.tr.xml +f180daf50f99e6d294efe3cfa3782b3038ec3c34a48667dc72884554e2d2011a,1,1,LONAP.xml +6e1614a42fb6bf41f161fb271e2cf441359eefea66a5de92ae60039337adf443,1,1,LPO.org.uk.xml +7fd1c24a4f4664d94bd4dcbb1b3adf923768304192d282339008431d1e86d086,1,1,LSE.ac.uk.xml +48d0e26e10e9650974898fbaee4e55861b58e585a8791e91472fc1733ee15d15,1,0,LTER.xml +d83b6ba8eb9854f82349c1cb570e50cba577fb736a3ac89ef55868ee18f76463,0,1,LTRADIO.com.xml +d3689ecf97752c8573fd559c68beae3b96bf66cc7a7e045a03f0d1050e6d3b48,1,1,LU.se.xml +cebe40f289abe5d6a7ba31addbc3a99eee1003e22b2431d7ecaa4a7f2290f151,1,0,LaCaixa.xml +440e3c3ec61a216fd7754eb08d64a06e73366ddb91e20c952543667a86473e31,1,1,Labels_by_the_Sheet.com.xml +9cfd769231672625b8576733968b9cdccd500feac77f6f1510f30ed7f70959f2,0,1,Lagen.nu.xml +82729f42964fb00d0a64961bed6138a79ae1222b15d76cebfc875163b1dee39a,1,1,Language_Perfect.xml +8fbfb34c2994d782ce1ade635b78401d5a869fce79d309a6a5993640f8e2d552,1,1,Lanistaads.com.xml +c01f9d5e0f0ef9ec2db156bf19729febd55117a48db33e144075f98a9e96debe,0,1,Lantmateriet.se.xml +dd011e0f5fe4e3c951182b87f42d4c8da475b71bda1266177397782766a60a3e,1,1,LastPass.com.xml +1fae5026b085ff0376c53284b2b7536230bd781b79f4be08506d04bdc7ef1286,1,1,LaunchRock.xml +91ce0132d8fa941a30990cd98fd6a038a48e77a6a0c39d678bcf3823361f9625,1,0,Launchpad.xml +bf3030ded18c245aa1d051c849660ef9807cbd9259da24dbbd0a5c12cefa65a9,1,1,Lautre.net.xml +88c874136115bab5c0c463dc21b28c2aec420648b71c12ba9af82c4f86919cb2,1,0,Law_School_Admission_Council.xml +329b80614b84565bba78c4cf3ebd40f2caf60cf648372f1deda76b93564693c8,0,1,Lawn_and_Landscape.xml +f649aae090d1c7cb5e6329286ca40bc52e4085fd4d43d022ac986523a689f268,1,1,LboroAcUk.xml +a6a354b175f07f96a7c2cd4ce4a00e26cde800c6f6176f660a59ae918cb56d91,1,1,LeadLander.xml +e300d073903c53373ec3c3a839d324681cb79d4032894084c81bc40644863fbf,1,1,Leadwerks.com.xml +acab086b0a34bf5d315b8292d4bdc886c9c30f77f9009c19417f85feb96438b3,0,1,League_of_Legends.com-problematic.xml +e6045aab54c1eac855a6ffb4d28436677e5ce1f20039adcfac9475984867a8a8,0,1,LearnShare.com.xml +e400c587a600d3ea1d156ae3063bc8aba863be12423441d42d9f56bc1c2b0516,0,1,Least_Fixed.com.xml +9f95173fc7274e64f6258a7fb7e27acc4cf781d5f78efd28ae81ce97465672a6,0,1,Leia_Jung.org.xml +44da4c65f5edbb2ed09326db6bbfe7bb0dd769545bf2f34f7eb8071d0d78ba3a,1,0,Leiden_Univ.nl.xml +a3ef9c0d822a74a1fff679e554ac079db0976b0c53fd85a2362de2cf6012812d,1,0,Lelo.com.xml +eedbe4c1b73b659f65c1b47b6b0a0b08e5e4ce32c8c96b82fa8b6e4ad2f5ead5,1,0,LibCal.com.xml +6496d6df922c6b28f13e369f2925655f9c927c171bf09ecf6ab284ab28690b75,1,0,Libdems.org.uk.xml +82d91c9bfd424f34898c9435240f08ba68083edf2a2f14eeaab224ebf245a606,0,1,Libdrc.org.xml +4da6941625e8c737ccf9de80aadd671b78aab17d09bb0830557256dd8f3a6ca3,1,1,Liberal_America.org.xml +e4ee080f90c4502d02852289bf7ba13986f2a06816f581dee48cc61cd03a4724,0,1,Libre_Graphics_World.org.xml +993b07ba4b30101d7b4d133239b7a03ddc0d914cde338040b53d7871bedf04b1,1,1,Life-in-the-Fast-Lane.xml +ec89dad60d6ad5181f1516398c0f565bca357a82f3e05270eb1f43dfd8283c11,0,1,Liftdna.com-problematic.xml +91fc0e64deed78bdc5e964c46ad97765ae536dfc279fd42b8828f66653a1157b,1,1,Liftdna.com.xml +3ff02692d6dee89e9579eee5d73a0e4cdad3e9e7a75ad9d0509b8abcd2fe9f5c,1,1,Limited_2_Art.com.xml +a8f163ff8c42d612e5f6246df52033522d0264a77b677f2cf6c94219e5822f8c,0,1,Lindy.com.xml +3058c9207313b250a6cd06db40b80815b52ba3ce969915bf1d4d19e70a5e84d6,1,1,Linn_Records.com.xml +abed76a1e5201dde504d6396473b2961c66f1362ed13dd21c4805178430d208e,0,1,Linux-Counter-Trac.xml +7aa31325bf3afc674fef9ff7fd6a022945a077e10cdb903ca73ca0227b01861c,1,1,Linux-Magazine.xml +8704f5a37ed8b963c85260397289542d0d55eefbe1bf6855bfadf0aef5db1c16,0,1,Linux-New-Media.xml +b116fbda85f0cb005d48ce4950f6f1c0cf9d1bc136bcc23d488a308c70e6737b,0,1,Linuxpl.com.xml +ec41d249213aad2809c091e338ddb5eb2d3b97b335598082e618aa5814ce168d,1,0,List.ru.xml +22ac503a66245c7042a817c200fc8c2a4e63d9e3287eb6d050fcda8623e65eb5,1,0,Listonic.xml +935c7b3c73fefb6f6980cbfdbc828f2d89cfd8c8f8a51e1de48fcf78822e1316,1,0,ListrakBI.com.xml +3558ab8db745d3b527d28ab5fc0dce1559dbe191d449b27d09223519354bc135,1,1,LiteSpeed-Technologies.xml +9797c1484a96176ae9397050a435c54f9d0409368785d4355f14e6d506fe144f,1,1,Litter.com.xml +36f0e15f0557defe9ac96dfe9ea3853af828688300ff6c438228f0ef4554b97d,0,1,Little_CMS.com.xml +fe52803da1f703cfe9990e08d740aaba64f6d59c459653376356b5ecce922a7e,0,1,Littlesvr.ca.xml +9c64457952ecd791e6df609d14cbd6861f04be1850e16fc064b86eb5042d8a75,1,0,Liv.ac.uk.xml +0d6cb0837aabdd3ca8fbc4de6d3c8b1e60092939708186f1ecc9ca3e38ea0acf,1,0,Live.xml +fbeaf8dbd06fc62fb6217d020e5d4401df8539e62b29c3d1af073ff07d52ae00,1,0,LiveAgent.xml +e3d7781eb8af6d39d6b9ce237e46688f6615aec94f65cb2a54a87e167b0c2236,1,0,LiveJasmin.xml +b39a16b01956252b32328acfd50d93cd04a0a33ea761eec5d5fb9df24a7d56fe,1,0,LivePerson.net.xml +4df0e6a98068a7e8df85af4cb7248c048fbe6b5fd0bcbffadc7d155d8ce52610,1,0,Live_filestore.com.xml +627f36782b5c58008a53cd2d0a4161d517705f45ecf809ebcca7aa06a6510fca,1,0,Livestream.xml +6cf957e7613bc938177a082c0f9ce6b5773892518127b119b3444955c853d542,0,1,Liwenhaosuper.com.xml +b250fbb7e12444692db8db24a0d8e51c9c16147a0bc0aa62599c05e6730f2c9e,0,1,LockerDome.com.xml +44259251bea98f85ceb968382de8eca6ae98b9b9f6e42624d084cc06eb06af5b,0,1,Logilab.fr.xml +097184d64f94a5c2eab91aeafdfc13f46bf7ccfc9d08f93e2524e20cd27bcfe2,1,0,Logitech.com.xml +fd7e40226e930ab0f0ca06b65135ae1934840ed6077517bc1e3500503d680c78,0,1,Lokus.no.xml +310690f227575180b1c3d8106079e906ac8c7d09b3301ef20de06c6ef723dde5,1,1,London-School-of-Economics.xml +e47e410bcc64b4fbf107fcbac795a208e8fef9de4bbb8cfba3021b6a48e973e2,1,0,London_City_Airport.xml +d7be9fab34a3d4a4aa00274545cedba1d569fd9344b46ecc8c5becb72d65d510,1,1,London_Hackspace.xml +1952a95014630e2577fe966477723b32b1fe9004fd5ef2614f3717e5f6e5acc9,1,0,London_Review_of_Books.xml +fdf67ed29757f0b2cc46d0c5beb73423f370f575c3a0192f8521e304f515750a,1,0,Londonist.com.xml +3a16eb66437b66ca8fcc39076fa6f076e16ac3cb266af78debf75821a00aae3f,1,1,Long_Now.org.xml +b2995ca65fcee921a0ec6e98a46d58772ef94f15817612627be142ecfd955c22,1,0,Look.co.uk.xml +57516f8bb0c3c1af21b87b8b56b90f73ba952233ebf84d7dc5b4c697c21d1441,0,1,Look_Dumbass.xml +eb71a3d0e0dcdf8f11f913ea38de4dbabe6924867384a0e08880c7466ba719da,1,0,Loopia.xml +050bdb8522be2fed28033b318f7565def40681e0fa6de20d5175f41beaedf4ad,1,1,Loopia_secure.com.xml +371f6fceb21caebfec3db3964b27141b5e00853315f431211d364301a45318df,0,1,Lords-of-the-Blog.xml +62696a22e184c3f9a00d284aae7b2d249d58924957d0e8530041d66e0663bdea,1,1,Louhi.net.xml +b9cf422f24dbcf3ce37fd654d260225348718ebf0ccc95d5060c4548e78e53af,1,0,Louisiana_State_University.xml +d9d7001e11d2f9b2efc903ec39a8e0f0305f92a906c8f14db83627553e2fd718,1,0,Lovemoney.xml +eddfa38063cb367bac3f2aebb2046bf5da400a0aef9cabedb9f7c6a4efdece8c,0,1,Lucky2u.net.xml +fd8b6a9765c43949419ebab9dd91b8ba4dd6e350e7d4e1630edb8fae846fee26,1,0,Lulea_University_of_Technology.xml +341fdca4778460bf1d7065884806c47c687fa52cc1c0e340eb3e0a53a3a6350c,1,0,Lulu.xml +2d76724c1ff69dc9e9991ed1fdad701efd342e25431e0ab1689ecf981c350c35,1,1,Lumension.com.xml +ad8ea5a90b1261249a8fa2448c3ff8165a8f13d73c357d610f16b2887e1df7fc,1,1,LuminoWorld.com.xml +14531f584541639ca40d261d437c4659136bdb5772123a2527153919ace57ca7,1,0,Lumosity.xml +bc8d53a934a8e46ead8ace467acdf5066d86d92d2f6f96c50f4cf4fae6d08f0e,0,1,LxCenter.xml +a1db82defa904faec2c657e6ea22941e1b148f1e81cf35a58c40803424b6b01a,0,1,Lyft.xml +551b122a2c152e388af55527367654016d5ba842ab144283c167b58436adb58e,0,1,Lynxtech.xml +a111d5e3f1ad0f13c289431dcfe0282e42a9c88407cacdeca47577730a6a52dc,1,0,M-pathy.xml +0543d58e7108adf6fe77cb43048db92c7284bed3903d22b30f3eac8c0654bcb4,0,1,M86security.xml +c3e5082c4e57ed4c21107f5c05ef72a1fb33337c52b189b8360e41d57a8d268c,1,0,MAGIX-Online.com.xml +377b1c7c98eb1ce1620a59edc315979347cc122ae5db49eaad58682c75f05edd,1,0,MAGIX.xml +d46b3cb7383190722524604ced70583d6f4b42eaa79759186178b801e97cd05c,0,1,MAH.se.xml +5cc8e9306a41a8e604a989ddfe777d9a560def287d8d4bd52b66df140610b5e5,1,1,MAPS.xml +37dcf422788ed62d64197cc94af1c3d370c5936012db3caaee096c660a13bf93,0,1,MASSPIRG.xml +3735faea1cb252d9a861985d3e2bd384e966b23f262e35d71175a878eac75593,0,1,MASSPIRG_Education_Fund.xml +f2397e312d6ca68064f4b41df875ac7b7d1119332b020b4dacb6b8791a31bbb4,0,1,MASSPIRG_Students.xml +a06c502a3fcac95756c576331f195baec2aec53014846bc08ca6f371eabf4d3c,1,0,MAXROAM.xml +fd45d0e8767e26313781989617a3a068a35913d046a20ae46d47bae9cf5e4078,1,1,MCM_Electronics.com.xml +e18e7618918c0fbc433386a096fad69825d0d259adb9acccba7661d5214b5221,0,1,MDGx.com.xml +4ad79cf1cfd79bc4125c5cb83523560dc2c807adc28c3c6eeeae02a263f336a8,0,1,MDH.se.xml +598f57a1cb07bb40a706984bcd19a35251f2df3b353a3c959d16c5eccd2f043d,1,1,MDNX.xml +68d5134dd8eead364ed06ef6cc93d0b5177554f68d434f5fc628a3940454bb00,1,0,MGID.com.xml +09cb67edc92fabdfd6ce3ad9ed0a50a6fe0176b9a963ac378e71b5e28c8eba71,1,1,MIRC.xml +29fcdaf098e9079dbf7d1962edc0c29be9fcb714083e40a5019e7e6aaaec6320,1,1,MIT_Press_Journals.org.xml +c4c92a7376681ef0c76224dce112d5b4aa7f3e765e1d94c5065839d75e7066a6,0,1,MIUN.se.xml +ddc3203f686051186b20b88e459820135eaaf3aa50e5c4816c456d6445eb152a,1,1,MLP_Forums.xml +03b6f29831d19024dee4e4cb3ac615574e779fae1b58a1c6d24acb91fbe4a850,1,1,MLive.com.xml +3f5c7ddd043ad508aac3e6159c76e8bd41fcd37abdaa141cda95d8a685e20cbb,1,1,MND_CDN.com.xml +976d52fd450f842cd7b01a773c0dc0cbfdfccc344170c16f62e8b06fd60b6dc9,1,1,MODX.xml +16b17f054165cde5317da14eabc04cf40ed40f40f187a46a39a7107e46877ffb,1,1,MOOC-List.com-falsemixed.xml +d5fd944719061d5c68cad846b8b479a3010bdd26ea072f677c0e77b09ce61746,1,1,MOOC-List.com.xml +a142071929daf836814bbd8993688ea5e23a307b416df19553b09cf2c0a605b2,1,1,MPI_web.org.xml +444b4dffc566a507319f9943d574f27c301f9d5a6af47ee6b85c9907886188d7,0,1,MPNewMedia.xml +9f8863196cae74202e26c3d6ab1e50b57571f3c2ff4c6f8e5f82638ffce63007,1,0,MSN.xml +15819092534ea0d06610f93be60d08860f430b49dba04ba701dd2ae56358a227,0,1,MTNA.xml +7378e66420ddee33fe3189f9e9a7d611bc9e15edca5d8ca05c615a4cec99c992,1,1,MXGuarddog.xml +9d231e863545aa6ab658902eec4a64ef6340e10f2fb03959c1108aab863f0d3f,1,1,MaaS360.com.xml +342172ba363f805e1ff97d22dbd3b19a94fb46633f0d119ed9c353b5d2c9ebb4,0,1,Mach_Comedy_Fest.co.uk.xml +c3367a69fe543bb4508508bf1032147b95bfad9809cbacb6f3ad3230024336b5,0,1,Macmillan_Dictionary.com.xml +5a5895594dc8b6a1eb3ffb163f2949bbf5dd4e4a4608ed0b3fe343888ace6b58,0,1,Madstein.at.xml +2853bd2dc0ad3ee1682f673571e0f9858829a8503f84673355950412524eb295,1,1,Magento_Go_images.xml +60989fd88c2086073515182374adc54df5468d6e52b9a4074d0a5458e64b8c1a,0,1,Magictouch.com.xml +2a0aafbaf384dd862dac3ddd0a7d9f0556cbdf5d5d9261a4a1c2edf12cdddf6d,1,1,Mahomet_Citizen.xml +a7211ec19cd45b14cc36786884e3f5be9868dd63c1f1d9f2939c44d9a989e4a0,1,1,Mail.ru.xml +0632beb9d9a8352ccf4e5abf6f4d129079e6be6a8fd030b89b240b9e3e5002ca,1,0,MailChimp.xml +0574f873d084aeaadad6583735edea0b218b81a37d5205d2139a44ceacb21554,1,1,Majestic-12.xml +eeb77187de3efc6c07b20bfb15ea4ffb65e95a906590f64bb4e2d85d3841a52d,1,1,Makerble.xml +b7aef7f65c4126ab478fcc112a410721f9b52c70411e7e3ae239e275a22bc45c,0,1,Malcontents_Gambit.com.xml +9e5f0fe1c8a73005f1bd9cfe7afa55e8e26908217555a15258c7ee8b389029ef,0,1,ManISec.xml +3b2860a4494f8922f5b894c16b5c4fb0117cd9d79a785e836ec6683c02e08a93,1,0,Man_Group.xml +f39f688438cd966643bab96109eb5b3e9d09649cd2913114ddef762b8caa9acf,0,1,Manasource.org.xml +78acea4433a1367a7a99b78a26aabffb4433a766249b1eb32980e00566bd349a,1,1,Manhattanville_College.xml +c8f65ca4abddc8b724b21e1aebb0d86f05aafd81c069e4cd368b3742d6b2a59b,1,1,ManuFrog-Webbhotell.xml +68b4aec318e2003b40efb7bb11ac3dc92a9863d0c3b69a951d7f539a04ade8b2,0,1,MapQuest.xml +bb36e083bd6761afcf4680ae0c9732d527f76a56e4845282ab8ae582a4024632,1,1,Mapraider.com.xml +9f234dcd1e04c8b71b11dbfde4ff22c7ddf2e6eaabc3246bea8fc88403c4f1ad,0,1,Marcan.st.xml +1e46e7c62c3c77d880aee1ddca06b25ec74c1c254f6e60c859a775829b679c50,1,1,Marie-Stopes-Intl-Australia.xml +ae8efb072ebb5512ceb7e10c26d0b77612b368f5e20fddc50e59b8981fe10fcd,1,1,Marie_Claire.co.uk.xml +f4c7dfe45cb0e35365300ce654feec069c5f0d57bc74d8f9b3d1941deb81bb17,0,1,Marin_Software-problematic.xml +38c0e8fefcb929a1f8d50056c8ed0f84d7d885ef51529ad3af864bd78dc50935,1,0,Marine_Depot.com.xml +72758fe8adfba1c718c27136cec21c089ac97a42aeb402bf9c53299668c72bb7,0,1,MarkMail.xml +f8d9d668bf042c8eb63d92d924fa41f1b32d844414fdcecaa99a4e1c32fcff2c,1,0,MarkRuler.xml +122a211832b9a5584f9367eb69489c8ee7323ba094af5a6a9b180971aabe7869,0,1,Mars_One.xml +1eb3974a972e513bc37156dcd2d9c7e1a5605e957b196e753b5d58125896018c,1,0,Martha-Stewart.xml +9774fbbc10a1e454d34b8dd2ad71ce16e15b489aae9472cf7c3330bdeb2ad483,1,1,Matalan.co.uk.xml +4d52d23f40bd3606c43a447009e70e8cc92fb90e447f90988b9e742cbc4eaf62,0,1,Mathias-Kettner.de.xml +886fdf64e35fbd1865f527901a8f71de87deb8bbfad48644c941b0faeeef73e2,1,1,Matrix_Group.xml +def0843b236e6cbb3c41ce1e965479cf0c047278de38066a0ddb521e2e0d9490,1,1,Matrox.xml +3956202a31b39b54bb350eb7c1c8fb2fe4421fa8e9fba93086c592e3727fba26,1,1,Matthews_Marking.com.xml +2f36b825e79c48a62ca8b028588f001db53ea1c7e5bdeecf33846d6250fd8db0,1,1,MauivaAirCruise.com.xml +9ebc3ea0b4f8a11d654190593216f2dbc2c849d75bd5d8769ce94ccb904b8032,1,0,McAfee-MX-Logic.xml +21a0b0ab411510fb0d7f258ff953a606ab9b6cc190ec220254d0093d01a774e2,0,1,McGrhill-Warez.xml +9f22004e6f050351ce543abd73bf9db38c4bcb4f3f691bc452d9f56362db44f4,0,1,McWhirter.com.au.xml +54c5176a7393706ba64638cd6640cd03d970cdfe886fb1c292ab5567f5e01372,1,0,Mci.edu.xml +0a2c162bca04cffbbb71b72948bdf6ea13d25f94c711e7cd851e3e743632476d,1,0,Mci4me.at.xml +169f5d7a71d2a565c3db9bf616e59ab2c87ba135adcfe1617afdd6ba70db5c26,1,1,Mdgms.com.xml +5c3f9e9594fd2136e76be06b682e4dcf281c5b4153eaab76026fd527212be1b5,0,1,Mechon-Mamre.org.xml +cea6114526cc90715d8174513f29d6b7ea23c8a4787b35af2e4b59e41684b60c,0,1,Media-Proweb.de.xml +2206b712d3da7e0b72ae87eaa7ca8e2c011c0285df551334334b6e6748c9f533,1,1,MediaHub.xml +b35ab67041d795e2260b394b27c747f3226fe8c571e5a75f32526834f5f63620,1,1,Medialinx-Academy.de.xml +dfb0575cda4b5cb197cc01897e864d2ed67d34dec1b9289895e7769ca3aacce8,0,1,MeetMe_Corp.xml +a4aed7603a88fc03be501913cbf43136d92eee09e05a11b14cefe17e6172b515,1,0,Meetrics.xml +d3b4dcb6411b0768f63f82ae89e15b07f5884e72f0b49398318e885b1bda1c38,0,1,Mega.com-problematic.xml +0660211f8fcb506370363c91068a9a402402d4b809bd2c2bc61bf456b31c9469,1,0,Mega.xml +e7034b4d62408593651f88f6fea5b58f9d7ac86cf01b03f8e56adf9ca757a9dc,1,1,MegaFon.xml +4821002c2dbbe557f459c6cc0cee428616bd727f65f5a071002405e2cb370d7e,0,1,MeinVZ.xml +b5541e596d343de6ac7f39223a9fc7c06ce47c438d9defe9116ba674062af063,1,1,Mellanox.xml +eaef01e50024132334d995f459f0f3fcc9e56637833c501e91dcbd8dfec3073b,1,1,MemberClicks.net.xml +8e0ca904341babe60e7080dd25ed1505f401f65f411e3d2092ff224e89cbeaaf,1,0,Memset.xml +2271075dae8c3cde242f9bd187beb4e3874b1e3ed1ba167c70316ea7c881ae43,0,1,Mephi.ru.xml +e036d076a66acf5d8e573b652b5e6ff6639d9ae0972240aae7676cf90e06181b,1,1,Merchant_City_Music.xml +3e01012f7f40ac9c65f818ec9b1b3436bdaa18caa6c035be148c0630fa78a7ef,1,0,Merchantquest.net.xml +30a1773b432db408705a3a3b1a5aec86d29006d7dfe739785beecee7b32a5c55,1,0,Merlinbreaks.co.uk.xml +09478a2ec96acd68be1fe48e5dab2a4efe07075bc2415135c6b53cf64490c562,1,0,MetaPress.com.xml +fc7e04f2a722f87b5dba20f6a548c1d26df7facfa98be2e09962d0b86506f34b,0,1,Metrotransit.org.xml +02d77df85e09523445e0e86b04f0bb16c67bf3362b2e30bc29cba2af23ce2a0c,1,1,Miamire.com.xml +7a9bc6518b843c943c645a850b84955939e8526e622f417732e751f6a6b50edf,0,1,Michigan_Campus_Compact.xml +7b100b62a23d14a4e21a5f4775ce4f523326901c2464aeb6299fde517c42e32e,0,1,MicroSTER.pl.xml +2c0230f2cff2ab22e873fccddd77ef7eb067a5af8b1ea6ead19eb11a7fe17e11,0,1,Microchip.com.xml +575e8ecdacdfef4516413c432243e7a300b6cd70ed2a28fb17cdc28178946f92,1,1,Microchip_Direct.com.xml +b195c75b64f391be38bc74da007cb9a59fd8a1049291c5f949b5847b16097641,1,1,Micron.xml +206bb3a607259fe71f807da8d8d846aef174f1b18c220ac4871c6cf75022c4d2,1,1,Microsec.xml +cc116d939b4a7d55452b99fb630fc82b7551bdea86eb7af4489a004738e16383,1,1,Microtech.xml +b8f227cec9b319b4ebcc533515996788f2c7b780d487555edc3ac4e0433110b2,1,1,Microtronix.xml +581745a360a493ced8c8bfa3a0c7a254f8849914d044284b63dd6400ed6f1e53,1,1,Miles-and-more.xml +ea215ed16accf736366b380b06667a98ae300a6624277cc4c0b00ef82b87d316,0,1,MilkAndMore.xml +6028c542090a205e31ad2cc71d109b7fa9f689e1d15064565afffa289860de6d,0,1,Millward-Brown.xml +835ad6f02f0eea1e5a30f1bee9bd82f033b98f98c3e00dccae023635bc45ec84,1,1,Milonic.xml +add16d917823cae95cb8fd37fa16fc8a30fb8abcb40d7d20317ef40115edaf2a,1,0,Minnesota-Public-Radio.xml +9a6e79f0a137ef90758d5c9a6f4895963394f6841aee72f9b07fc458f89af5a9,1,0,Minted.xml +aefdba42206c35b8b4c727e5174beca2cc9054e71405dc1fb04e58935e610c22,1,0,Miranda-IM.xml +1c912cdd8a192d284723cd6aa022312be9af7d9d0f153ebd9332012212f7edd0,0,1,Miretail.com.xml +05bdaa40888fb732b2dc4381eaec841becaa28c3a7ce521d309e31d46a5fe535,1,1,Mirror_Image_Internet.xml +2fab3b5ae13f2fa84cac1b55ad4db417d235bb8c5b29182ba71fed019e20fe3e,0,1,Mirror_Reader_Offers.co.uk.xml +b9b028b50744e726c2e0c1bba9b6d802bee0564067ab79a12f9f78db5a228efc,1,0,Misco.co.uk.xml +e554b7787400fbb24420ffbaf18e8720e2711d0d7d5b01d57a6bc870d734678e,1,1,Mises.org.xml +ef78bc469ee9ca1c5c6b5b7c55101de1b9f2e9bc5cb7635f55f72600da08a9c4,0,1,Mitsubishi.com.xml +1083e6774f86f72f52db8ee1e5af98ac18d3badfa29f14c9210828dcaac4ffdc,1,0,Mixi.xml +9445dcde76ee2f34507e683a0d830c835f5bdfa09605a3aa3acb4c5fb20e03eb,1,0,Mktoresp.com.xml +e275fb63878dce4b9c0f53f39a068de38150abe580c9a232dcd84ead64a5e7f5,1,1,Moana_Surfrider.xml +8f55bcfefb95327bb770495d7ed62175cffdf74e0a3f0ccd94b4dd42a1f64cdc,1,0,Moat_ads.com.xml +0fc2d07c9cf4aa5580639fcc5ee5036b64df0422493aec017902367b6f7e10a7,1,0,MobStac.xml +c7d6720b5f52ce6dbe90284cc5959d66c703a8db5ca33b998dd5821c131ca0c2,0,1,Mobile_Asia_Expo.xml +089e42772722545c5013f3a48f05429db2991825eadaf29c1b80ccd769f4621a,1,1,Mochimedia.xml +2aeed5b7608ed2cd5fbf95b9d233412e2b384dcb179cd0cd0b4be180f3a7b1c4,1,1,ModCloth.com.xml +b0345c7f91042137a6196fc88f878d90cbc0e0621cb180f170e4b740d0230d82,0,1,Model_Mayhem-problematic.xml +4148c9b370612b0072de8612e1795ff902efa5b5df42e1210c2f55bb0cd1d1f1,0,1,Modernus.xml +b1e394fc6288df5f9d71a5795a3cfa2d868caf9a2d390259efb4f9a10aaa9e55,1,1,Moevideo.xml +ffbf6ec6cfeef71b445211a87e4abe5ef1794e3d4fadb7d684ac90ac68533790,1,1,Money_Advice_Service_UK.xml +4bdaf1c97ff84b0efb5970546093f4f4db2eff4b179667e41f78c050ee8a7f8e,1,1,Money_Saving_Expert.com.xml +6c048760a7ae095bfd1d6f9fc51c634fb1a957e74f12f507135657c892090544,1,1,Mongabay.com.xml +5480c8f1066022ccbd76c4cb65300e8f17f92e78c9468941e602eefc9911049f,1,0,Monsoon.xml +238ba4857662f3a517f6702615d82e0a1789818c3f8e46200e18fbcb940206a9,1,1,Moon-ray.com.xml +4098104d988c1e099f8131293582ffa74b214c84a0a6993f0dcb47dfdc166957,1,1,Morningstar.co.uk.xml +06558325d916258454668fd676d1b26c4d0fd1de1413eb5256ef48a1956982bf,0,1,Morrisons-Corporate.com.xml +e53b3dc48c8ebd8f953aa97db6e25331e51bb2781deac42f66180111e86274c9,1,1,Mosaic_Science.com.xml +9ff01f7451d40691041ce184f700a74a77d67f31caafb8c3ca51d2afb9c7dc34,0,1,Motherless-media.xml +6b4d8b8bbca99cd49c35ed81feea4d6f9d114213c670b2fbe7a947c8a7402dcd,1,1,Motherless.xml +28a1b8fece126fb6620710ba56206bdeaffaa183d651c6c1c73a01a905de9059,0,1,Motigo.xml +9a396c4dfe639ec6a63950420ebc1efeea0db0b034a9aba8c17a1af27b398352,0,1,Mount_Sinai.org.xml +a1fa4d3ec8a62b93ed15cb141d7695f212f3dea2ddf0d4bce8654007987fd390,0,1,Mountain_Reservations.xml +ad4b1e8c1f59d04a31d7c7b38de53205afb93bd575bee9e5353faf1e50cbcbc0,1,0,Mozdev-mismatches.xml +743d8a5b68767e40138a06b7b5c3a1818337da7cea2ac37a282648b50974d04d,0,1,Mpx.xml +ec70fa255895ba360493d2626c45911c22b80a49c5df9cb2f8f137846ceb0423,1,1,Msecnd.net.xml +7976850527330f739448b947975b090d96b2bd01231b0376850a91033b941263,0,1,Muenchen.de.xml +92c56ceb1370a552004ddf10ce50549f1d2099bbb296a6a414b2c9189cb1628d,0,1,MujBiz.cz.xml +24a9a73f549eac48c4bd59bf8b2073bbba79cca79d84e3f8740e92c12e109413,0,1,Mullet.se.xml +d2739263216b14436f55796854cf692ca03d4a305dc16dbe076a0ab077025e27,1,1,MultiSoft.xml +5bef5c96def6636cfa60ba4bf92f25f9c182090f32130652dc0cbdc42fd505f3,1,1,Muni.cz.xml +1a7511feb844171b7d853bc0273709cdf66649de2c2534ab1da21d6f5edf4cae,0,1,Museter.com-problematic.xml +595e5a64455b0b23e67eb68b4e2cea4a6dbf424a07ab0fdb0231ded129adf7c0,1,0,Musicmetric.xml +f42b8995cf8e8f8bed79d16d7155dea2522c8ba86dbdf63d5d82f88dd55fd614,0,1,Musikerforbundet.se.xml +58a0fe0af15bd31fe5ec464807b08e208942049af861bb5440dfbba113271ccd,0,1,Mutantbrains.com.xml +f89912846dc35b7b76c3ffce935c027fc0cfc569f75fd3c46270c260be6c5257,1,0,MyBuys.xml +858230326c95e8f2e929b75459cc15aa2c7835928ed9db020e30f8f098bff621,1,1,MyTextGraphics.com.xml +24d8bde990098ee1fed9b972e657433a4c1bf758a46d4063a668d58a2195abe2,1,1,My_Sullivan_News.com.xml +4b89388d8b0e5f2c3f1114e50a5448bf371c53ea1a0b3bffcc968537df955ee0,0,1,Myhappyoffice.com.xml +3102bccb45e89458c7d87c9004dd4a8f72ae88d3b01cd06a4ea6180a55036e9d,1,0,Myjobscotland.gov.uk.xml +6524177cc322ec5eb14b8d9f5dcb0533874470422c2eb6160bbce281b3389fe3,1,0,Myregisteredsite.com.xml +d9d037ffaa0d96eadc704dcfe9933c34961a4f1df39c800f496cba49c7174775,0,1,Mythical_Creatures_List.xml +5fe0e1985e02f37e759a7388016c1343216120569d7254393d814adaa23d4f56,0,1,NAB.org.xml +6b3df5ce283c7db4d6befd6a3c453a717cc7afd37a8737143325fce125e7ce59,1,0,NASA.gov.xml +c30973dec56755f1de9304259af19b8145a0a571d6f7310a3b11195da023277f,0,1,NAVTEQ-problematic.xml +83764b0e29046566cd51a6bcb9db58f8f7f8ceb45c59aed3e06e0367402fa2de,1,1,NCRIC.xml +ef7d0c3649a77dde9f58d11fb9e77a0bce840e89177a6d853a3a50f37d138e78,0,1,NCTA.com.xml +7f9b052555e00b4547eba435df9b0ada941b3b92146ea4bf7c4f8327179ef236,1,0,NEC_Display.com.xml +4af8504478403141e13018b68dda2ca244cb990aac167268c0b51b3cbaaf649d,0,1,NIC.ad.jp.xml +265295ed36d711a85ed56ee0a9984023a73ed3eb8bf449e3b270eda766fc56df,0,1,NIC.br.xml +4aacfd1dff2d8f973a210019ccddd21d8e41afee921f582573ec8bdece14f27e,0,1,NICTA.xml +98d863aa4168e437d6e0789f3b254cf5ce81c7bcbfc8df10581a03b33aa934b0,1,1,NJIT.edu.xml +aeb084ed7d88d7b9e5f5adb3e28ef7b99206c53f4492d6d1b2cfbbd434e8657a,0,1,NJ_Edge.Net.xml +b8a8048fa9d78e8f49ad9eb38a05c4dd88ad22df91e48f65496580938fde7370,1,1,NPO.nl.xml +99a479c07d49448c6cd8f8e92d29c3c6ffaef57c428719b97c5fb1abe9ae4e16,1,1,NRAO.edu.xml +f3161aaef5e1b8c8ff003407b46075792e538cba3c966cb04eae44220d606e5c,1,1,NTI.org.xml +82b8c6fdce49f6cfec8a5af5a439ab933d6db04d1a96dd8bd79b398fde7ed662,0,1,NTU.xml +6d5cbfcc8c9be0f7aed82f53f645a4a1aa507fd4bbe1e200a57f541ed33f5951,1,1,NYK_Europe.com.xml +e839742e70b958a9ba7c9c64e2c25a3ea8b5a8d2acac5ede9eebf815505261dc,0,1,NZ_Herald.co.nz-problematic.xml +e567c9f23505545a46c3f2094019189ec0bb0753d4042e09b9c3e4e4305ab2fe,1,1,Nandos.com.xml +87d7cec32a9c98d029b8a7748f45f03a4c405f4b10af0c7dbf63a655a2f2501e,1,1,Nasuni.com.xml +2025891cb707c5cb4bca8f7cfda7411a3b7c03084986c794c01d9966646ce307,1,1,National-Defense-Industrial-Association.xml +b403cfeb4dba33d69d8496bb0afcb0815d8c611efce1f202f48a522aa6a258ad,1,0,National-Express.xml +89e0c10cfdb60707da37a41b1bf06aa0f9db7c9ff759a4cbb8e94d772ca0bf75,1,0,National-Rail-Enquiries.xml +77df8cd849c8f7755860365c3cb10c51ed391f95ad21327a88546086eb5a29f9,1,0,National-Science-Foundation.xml +12eaba9bec7055b45b10dbdc36cfee93e480124f3cec55814ebc49fad23ff395,0,1,National-University-of-Ireland-mismatches.xml +1fdbf03f38170dbf7fcc2e857edff149d2fc104f1cfe992e3346a6eaea3d9801,0,1,National_Priorities.org.xml +0faca68701fed7d481ef2d407adb2988bb09737e4256fc13d94de4d50be29dcb,0,1,Nationale-IT-Security-Monitor.nl.xml +c7a70c28854efe3443f37272478b64dc380b698ed063523ca0ae1afb3f3e9e1f,1,1,Nature_Shop.xml +5fa991b9e337ffa71bfe80e49dcb48b46deac649f5bc33ea192903e0b44e7ca5,0,1,Naturvardsverket.se.xml +1ce6aeb3e8c850b840ca30e2cc528f96fecf148fcdfcbbf4a0f6a633bb80c139,1,1,Navigant_Research.com.xml +f1f93c4e6980e6ab9b58509fc5d1798975dc15bbeca4e33e5b90b19b304b8eb2,0,1,NeedMoreHits.com.xml +53753f70998bf7ad4a70d4bca054a29485a0287e724015af709a44c638f36a3e,1,1,Nelonenmedia.fi.xml +076624231a6913176a0296ea2fe8a98784d1331620d5cf7ec74230ce6d0ef229,1,1,Neobits.xml +fe9a3b6a1ac58f6ed1d45edd7cd8aeb302d6a2f11d4db3d7b093b0e24c90c586,1,1,Neobookings.xml +fb32bb1ec593963f579fc3218ced702def3c8820d295959e6791c1bb63837079,1,1,Nestle.xml +58abadc12a0456ae8c4b9aed73cc326c59a0deb6cc9149476a1e44258cf308ff,1,1,Nestle_Scholler.xml +dfb0e98c4fb750595bab6bc5a906c3f761003182e48d125371b2abb097d7377e,1,0,Net-Applications.xml +3c93eb0d86d7235cf74032dd20892ef50387432c6d0a04bc0c5b2638efbf55d6,0,1,Net-Results.xml +06a292203f1fb162f9eb6f48a60f5c5cf2fd82e2141c3be9b382da5a1a9580f2,1,1,NetLock.xml +1d82d222efef097970af2ddde784abc4a54e9f0d7c72273efdd5a365eaadb215,1,1,Netcraft.com.xml +424e493955331bd50889c4502677e64c6740246f98a855d6c499e2b8a576bd47,0,1,Netdialog.se.xml +8da4a8d34c363318d78948b6d198a61b8b371b1eceb28751a2abe6a12904f4f0,1,0,Netflix.xml +5bc65fba1edbd23a2c1127a5c66a01bc20ffc899e4abb0e6f1b4d05a639dd9c1,0,1,NetflixCanada.xml +a27dc054f220c4e805fa21edb4a88bacd93be2033e19e33559d95a33df0ad418,1,1,Netguava.xml +9479b1110a9b8792a5adf6e615bf3163bb867be0b95702bc1750af4ea2d6612b,0,1,Netswarm.net.xml +090825ece5ea8c028837cbad251e6d80c0ab2612a3c5d4a6fdd4e651e24d4e17,1,0,Network-Depot.xml +856a5e62ba2039659dfd6a0c341644c7cc94edbfcda039c0bbf2934c2fa6e490,0,1,Network-Redux.xml +e39fb5c2ac9f1e495df9e58f17d8a4d761fe13825842ce000695d72bd0fec453,1,1,Network-Solutions.xml +f1fcbae55c19d23c37bb4aede7c4f4beb0e2679890986b4e27ff088629f72bb1,1,0,NetworkedBlogs.xml +dacbd937f1ec4f670a6b0f8e96831e58a65d461d22e0af250d92f241aac97059,1,0,New-York-University.xml +f1fe546e322fc153e0c39bed532de0adde5d347f9b0785bdbb0212f60735af1d,0,1,New-nations.net.xml +d47c31823f5affb8112f9b876508ea8cbe9c5c8888dd62fce6e94a49fc97ae7a,0,1,New_England_Journal_of_Medicine-problematic.xml +f6af7fa84ba50b9a6fa5f194ca8b7eef1d4daeaf336129c15e63e126e516d9bb,1,0,New_England_Journal_of_Medicine.xml +c726927c171b0ef46e22776ef84b862d65b67640d6bf0c04236116037f7f4658,1,1,New_Look.xml +0460e9ed532d3f86f91064c6351cdf3910283bf26129ff8b9c0058ff5158759e,1,0,NewsCred.com.xml +46cd5693a88f0c256c5ac5c5a02a6c0132b2f41f9997f6d98819d7d273b86c10,1,1,News_Funnel.xml +a441436f47337705595460deaf9fcc0940b86b7e36ebda3cf9d947e0034c458e,1,1,Newsnet5.com.xml +062c7a379d68a9a26d9445a86c7445b28d7f0c6d37a00280e9a6227855935654,1,1,Next-Update.xml +3c57c2411ec4710cf0f5d9cf22ba0ce485a6a937aef4636b2fc5d60952aeb49b,0,1,NextRegister.com.xml +ba5164f38a24d39d86f53ca602a4f7dd6588321e91dd31f3a41900e8235bfd1a,1,1,Nextgen-Gallery.com.xml +3827f1f331ee1cfd087a75708156fe6dd1d78bf73689aa0e3f05e769f9ae7599,1,1,Nextgen_Auto_Parts.com.xml +e4c1681bae2ceccfdfaaaffc32bdbedc097bd0b4ce9e484269bc7a8205ac5077,0,1,NiKec_Solutions.xml +f97765db8ea0f75e2d5ce711e6454cd9b692e372e5e1ef99be2d15f2e44ec290,0,1,Nic.ir.xml +346f439850c55caca5a78b5fc94710c205fbfdb3058553be31a46f6d12cf57aa,1,1,NiceKicks.com.xml +5204e3581002355bd1567fa463b03daf14441600b888f345e1bd90bc0bd6644b,1,0,Niden.net.xml +18ea11350b57bb0d7255c935b1f98fd8e0d7cad093cc814332920b14bd6e26da,0,1,Nightmarish-Dream.ru.xml +ec01a5ee8630f2b83f7cd7bad3f4f4facf7fc17e717948751dbbf3e5563d3aa5,1,0,Nimbus_Hosting.xml +a0f578f005779d8470ae10f1de0613020df1cbc8fe7fc5e8631a9fbf80512b1a,1,0,Nimenhuuto.com.xml +19783adc449fb3c8149fc04770bab48e746409509239b2b416df034b4c5ec8a6,1,0,No_Starch_Press.xml +debf94c52eec0428247d415d13cd14dbe048783d7ade4dd8ec829dcebbf97b47,0,1,Node_Security.io.xml +8696b3d48a2371a343e0d10fb94f0310dd4d3e7884a7709d44843cf989d1bb15,1,0,Nokia_Siemens_Networks.xml +d293276c96add15789fd139b6fb190bd50daf5959c426ddd1f65683c3fddec70,1,1,Non_Profit_Soapbox.com.xml +8e7d3d54f3b3fcec404bce21849e00674a9584c262546e559d5a5844e6e3e82e,0,1,NordicHardware-mismatches.xml +aa1619c02d07a8ad0e6e70d89453c9a7ad9b584cbe9f8ddfaea876ab46a59e44,0,1,Nordnet.se.xml +fa6721f746512e5e4a8c64511e6726f1f815515a40851600355c0cf2cf4d41a7,0,1,Nordu.net.xml +9c28e75e4e9e205b0480ab3255a05302a1faa57199f1541fe977bb077adb5b45,1,0,Northern_Tool.com.xml +3c50d2e792ad7f86dfda1549fd4439d310b29f24094476e31666decfe77d9246,1,0,Northwestern_University.xml +ea5981b9239016c61c8e430bc78234472035d90d5a111c75b5e9c19673d0684d,1,1,Norwalk_Reflector.xml +ad056a6b989f162bc636a3de58b8064b41555bd6822b91bc47c0fde6a77dd24d,0,1,Novartisart.com.xml +005d6ae4ecf390a96f0cabfa24bf3542de3358ed187c7d3fb6a9ceae451436c0,1,1,Npmawesome.com.xml +86f390fef8e11c744e2b29a3ece207146ab8aa3d7d9520bbf034b9eccda38b7e,1,1,Npower.xml +968ecdfba1b77f1e7d9ad0883bea2141a1bed5e8e66cc17f596f494904f959bc,0,1,Nttxstore.xml +4389ff81399428de5835dcde6360c9355bd8bb30deca633fdcb442ed80e8279a,1,1,Ntwk45.xml +8709dffade12885b49fe17396188fea66efa63feec67b4bd6450471210bcf54c,1,1,Nu_Image_Medical.xml +74ee38c39c1732564c41660c16c36683c46aafc6785922df598dbf2c7d57057c,1,1,Nuclear-Blast.xml +d16090d0d492da8b08cbedeef767e7654cdd46ac59ea36e79ec69d96672d33c5,1,1,Numato.com.xml +cc50a9830d7a6ff8d19a2bb287d16061d1c06460547e7751ce3e44db8e3ca24a,0,1,Numergy.com.xml +3549eafd309d3b4297a5c35cf3a6d5c49609a2369e6b86ec8329e62e9d7e5c18,0,1,Numsys.eu.xml +d58912467627d4166913d3dcc6dbc6cdeff23bc192ddcde160f7284bc486fc57,0,1,OECD_iLibrary.xml +604247fbc7405879ce5a0826368eef0b4799ac85361c5fa7ee0f10f961746b8f,1,1,ONEhelp.xml +9a26195dc6d04b530cd64200f8298b482310e35b4a3186da8fe3b9ec6da3e510,0,1,ONEnews.xml +c72d15ad574f5ad66d6458b440ecc89bf91f2004f4cc1452e2ebad2cc88ebde0,0,1,ONEweb.xml +728de152c63f2b49cb0589754e38e8b4871fa8e61d9a6c3232d79574ca4c7241,0,1,OODA.com.xml +f3b1426c891d64e2e32774be6acd55bc97c1a05d82b1ae8cdb4dfe2100275db0,0,1,OODA_Loop.com.xml +4d183bce74e88eaa5bb7c8d5a64c015ccb1e76ea1a6737c03f209017aba39a13,1,0,OVPN.xml +e79232198ecd818d2c8984bcb40357ff099f8916aee9743b4ab5cd29856f0b30,0,1,Obermassing.at.xml +7a6389ef271a9d5a4dd6cc58ca95d36ee4fd49f8166edb672462ea728bee070d,0,1,Object_Security.xml +74bd810666ffdb4fb2893f61b6ec93bac1fb8d2bdad9562cde970cece038f8e6,0,1,Ocron_USA.net.xml +9f666a13d6dedffd0bd201d9a652bbea8f91f6d041de1302d6ebecc12e39cee9,0,1,Odevzdej.cz.xml +ee9c9295fb3a208cc0b9796284238ad0f8fe79bde323ddb10029757a43887bf2,1,0,Odnoklassniki.ru.xml +9ee2f486b20494ec87d2a1a4d7a436cb9c9fa66a792615927db08fc465e66923,0,1,Oe24.xml +df2add100cd65ade870829bb1bca5dc06439fe3f15a4175bf92dc91418442725,1,0,Ofcom.org.uk.xml +f1b954f78d24f7feeb7e04dac5fcdc774536df6891966380a0a1b2b497f95a92,1,0,Office.net.xml +513d049368e3e03cb55f62920d316fd1658ff0886d1c98e27d0827055945a5dd,1,1,Office_Depot.xml +a5b1318588cdcee1f4bdc1f20f342fb7e1e35521d34cd932f1176a1f188e6412,1,0,Officer_Down_Memorial_Page.xml +5b55ee39e40189e984150ee57a844755de14b0927b9db79c61141d9fd9b1b574,0,1,Officersforbundet.se.xml +eace07c9f40c8d1d737e1b1bf7ed811a6b93db64bcf35173c0db7463c02177a8,1,1,OmNovia-Technologies.xml +543885653524b4a430d6bc05d5f0a915f8d2044b4a68210f400556475b617177,0,1,Omar_and_Will.com.xml +497e4ef7981352ec9ab7c69c941e8dc50397ea32e225ad167258f3394047074d,1,1,Omaze.com.xml +337868f3fa4ea5f7e775c58846ee41725e2bd31593b02a28804608ae479f4b32,1,1,Omaze.info.xml +8eb315d424c1f4c13d69aef362350cc4f875291e6999d20d681ff77897022afb,1,0,Omeda.xml +1d30f88270fece51ca75bad3af5f518d43b171b14e21ccd1166091b75c32bc12,0,1,Omniture.com.xml +a75d4a62d470552e6ef9bcfecdd60e98f64930d84abca3e881cb3bc45e3f4518,1,0,Omtrdc.net.xml +b4c5be316c8e413132d05640a58ba95e417021edfc0d625ac68ab4ca83c980bf,1,1,On-web.fr.xml +1aa14c17aa4ef45659e1c0074208010389305aa5082249d6a70e108b55eb6bce,1,1,OnSugar.xml +b62ddde7fe33d20f642cf8c4e03631afd45115f0cb94b9cbb7fa935c6cdf7d0e,1,1,One2Buy.xml +fd71abc09391e0ebe4bbddd07f0e125e4e7d5fa442699c8180d350a0f04f4369,1,0,OneExchange.xml +6dc92cee48556d89af4e82ce71e74ac9f797208689b7f351b93f2925f1a6529c,1,1,OneTaste.us.xml +9d8246d0d33f52be5c89b398480ebadc3dc02f64e777daa066468c90a3906f84,1,0,One_Eyed_Man.net.xml +0fc75f45ec3cbe2a8aae5bfd4d8f7fed37c17715033f2e9fbb3313fa8cfc2dce,0,1,One_in_3_Campaign.xml +85ec8a42fc22df80efb738d7412c23f20c4270050280b12b13bb675eadedd42c,1,1,Onepager.xml +02db8653ddfd7b04c789b65fadb6a8f65a56512f0e66a17925d9fc123bdf1c45,0,1,Onion.to.xml +9200b7fda3c5624a030596856bac74a8aec47aa637d3c572738e3d7cca4556db,1,1,Online-convert.com.xml +090726845bf1a7336dcf4b17cc5fd367393dc83cd61cb47480c05e9443fa6053,0,1,Onlinecreditcenter6.com.xml +3ab0f58022ec25cfb953faee2bc9221c0a8440f250efc15d461033ccff06e042,0,1,Onlychange.com.xml +78bac39af92a9662e70e310bac91bd8199e6836d0d1525f6030ca955bff3b38b,0,1,Onlyoffice.com.xml +4451bf75cf6c947ca73f64b8deffb43eeea5f8f6bad4de32b40947b6acb816ed,1,1,Onstream_secure.com.xml +dd51b1a05bce8252c471fe1e9ccc7ad3d295ab21d3f59485bfd45fb9392e1510,0,1,Ontario-Lung-Assoc.xml +acafd275568454c22d4e6503b39246589eaabbfee280841d01b981a06e280fd6,1,1,Ooshirts.com.xml +01ebddd2e42156535f850bd17d2855ea4d5cfcee2ac2d2c578e72385980f0182,1,1,OpenAdultDirectory.com.xml +1dab5d9a056a6da15ef84d7a1cca305a4983a764da763c16c5f100c698f58c95,1,0,OpenCCC.xml +cde322a388021fd678242253e1553602e42ca30238c48f4c0ae454c292fbe92e,0,1,OpenDZ.xml +cfb20b50100cb3882d14da48ac922d0c7676fa21a9fa253934642b5cdfe0993d,1,0,OpenSRS.com.xml +844a36d59938c66a965aa67a15d31a2376a10ff96420716e5c17b03e344822fa,1,1,OpenText.xml +79b6f8f68eb3378456d604d32e2e10715d3aadf7e63bc6aed8bfe10533de3ff5,1,0,Open_Badges.xml +52350bbf1f39b4f68721565615079a474494c0e285de5cc9ea08d414c11e3ea0,1,1,Openbaar_Ministerie.xml +2013ceb768b7fb2e6ae7f5b25d5367595d6e665101205f208b092c0d4280b715,0,1,Opscode.com.xml +2219f813d8e5729e90465151e21fec4c4983e78603af8a034b308bd1202643c1,0,1,Opsmate.xml +e679e81cba89cfa6fe912e2750e9b2d63c212e8cfca50d110cad41576febf413,1,0,Optimizely.xml +0d4d289bd08afe7cf3746463b1583ecbe548148093efba3b9d0c6b284b3d7adf,1,1,Oracle_outsourcing.com.xml +056eb34319c7780b742ac8b8d770b2d059abdb70c2426b70a7ef35036d71b50b,1,1,Oregon_Live.com.xml +295f868cf31e0503aa4895b15b142c28ec12e8b41a43dcbc4d22748af91def7a,1,0,Osmo.xml +9a1ed180ddfce3019a6fe50d73e329c7ea2b0e3496ee5d9970aaae538c11ef17,0,1,Our_Tesco.com.xml +71e57056b2bb6b821f6d15d459b9e1dab4127b457ef251b5c5e90aa39c09a533,1,1,Out-Law.com.xml +c50eaa29c08c79598b85124d8472c939cbb08abcd36df7a21512bb92606cb600,1,1,Outernet.is.xml +ff199168eef28407f5f4ec85c4a28f7c4bb363a2b1902a775788789754cde2e4,0,1,Oversee-mismatches.xml +54aacde8fa49999c42572bac76d792ea3b489037f2d5b39d010dcad5a198eed1,1,0,Overstock.com.xml +5e7c404505b85db849540392423e02d918afac5c262a77d56b9c54455c5d3020,0,1,Ovh-mismatches.xml +b41b819bf65541edbc0cb4992fbf183ebe9a74e28d2eace3e0b7597b9b782dc5,0,1,Ovid.xml +a2a23af5c2ae4a75d2bc089e535640eeeecc2dc198cd238a388b41feb8da12bb,0,1,Oyunhizmetleri.com.xml +933469a7c612ed85c345b6b85e40ddc0869c4af696fe8fd142568624b55d602b,0,1,P-tano.com.xml +ab6e11c74e0a8ed13d35553f3c8de56b8f5d9e134ddf5e600c9d9ccf29d202fc,1,1,PAL_cdn.com.xml +3754825b11533fbebbb1f5555b448bad53f94dbb64c192d50d991717e48e4f1e,0,1,PANGAEA.xml +04aa3907bd8de99537bde8f2f79aeb002ba7887efaebee3f1f3a615d4893b320,1,0,PBworks.xml +57852e0864d16be6b308ff132e6c5d7a81b60be2ce25eefbe8daf25f7b33a7c7,0,1,PET-Portal.eu.xml +dbd90f2c99bc31ae808344a6087f970e33788e1c8cde66d1768711db380133ff,1,1,PGi.xml +2801efe212e1b86bd6c0f60c0b6aa71a13e10b92d1b1b35d41c24c8de8bc4fec,1,1,PHP_magazin.xml +a64aadfc5703638d06d42fb40b03ed571d3553b67c5b8ef1c2ccbb3ca41ed3fc,1,1,PIERS.xml +e003a3a5770e69050c1accb50e3688d18332e9afc5709c67d6ed37b21143d042,1,1,PJM.com.xml +10733d148895545263de6b0d9b06e117bfbcc51765f53ce07718badd8ca9932c,1,0,PKWARE.com.xml +78b114e3756ec21b948939f187308f695fccbaf94f4cc8f588f262d84d44acf5,0,1,PLYmedia.com.xml +c4e5e8c4a2597b41871e044bfed5428d959056ee54b7e13374e61dd4447e74ba,1,0,POS_Portal.com.xml +7728e9fa911551ac1d6f4a1e5c915bf7794c3036d4c85a809b2ddbe7b402ccdb,1,1,PPCoin.xml +05c868c1c858abd8e57044f301b234c281562fb4e81b4b95d3102e61e9eae0da,1,1,PRWeb.xml +42245e71c26f7b89f3877f043be47ebd89ba171ef04916472adcfd8466b7b5b7,0,1,PS3Crunch.xml +fca579bef6575b699d2f3239f2aa31a80efc1c780a771e3eabdbd3b67d87d594,1,1,PSZAF.xml +7bdaad22def9753b5c864b140690cfdb16095e8aa6ace2342abab2bd7847b6ab,1,1,Pabo.xml +57aed24e9b9918af2c3000fc9dad59aad8643cfa4f4dd7fbd4d1a7ce8bff2ad7,1,1,Pace.com.xml +eddd4d652f2dee5873d15813e51565a53671c97a859b85ca9b0e15a5fc2e48a8,1,1,Pace2Race.xml +71054b6da4f4cadf2c038d4b31bb68e148084e4ffa94ee3980f98d6f97a8493c,0,1,Packt_Publishing-problematic.xml +993dc3f9d1e08eb3a27b37543742ceb167bf5ac80930af48325e4284b0858397,0,1,Paket_de.xml +e89d28ccda24a3b1cc9b37d3d269747a51d052aad6911ca7870a1b8a85212c3a,0,1,Palgrave.com.xml +e557b6f440d476e55abb4d57ecc833bd70b1d43508f88aa2a7188c8b517ca1ff,0,1,PamConsult-mismatches.xml +0e122fc15bd797982d15495539527f1952384f9f0e1d9a4f58ed9121aeccc471,0,1,PamConsult.xml +2c02f527aac3a3b6ed1c50ccb0cc60f3071cdece9fb572a42d504f1f8507a27b,0,1,Panstwomiasto.xml +66fd01bbbea23106a839b1b18364ed9781c70ab62c2b2c90fe21e27c02059daf,1,0,Pantheon.xml +3d66d95fcc8eaff8c7fe025a95dc9990b8682f63e90359a2dce7f7d99117dd31,1,1,Paper_Mart.com.xml +09cef0ecb2ffb1cb24d69ad9dfe80691d9d4ed827a8bd5256f1fb755ee71e1fc,0,1,Paradysz.xml +2f11118b0aef6afd296fb8da24c425d5a3cf9142abdb8d48e51173074563d33d,1,1,Parallax.com.xml +081de7e48c0be2a33abea11175c4af99f366194f21a664648fbd4e196b307f19,0,1,Paramount-Pictures.xml +34d03a76bac9becd0ff8d0b1731df9311e583642f0e6cd4703b548021f4ac3c5,0,1,Pardot-mismatches.xml +fdaf728f0d1645316bcb99336155adde2f724bad59b80e1518b30aba749e3ee5,0,1,Pardus.org.tr.xml +8248f3806e6f85c5e29de65e505f6a5a4ab232d37173b9317ac6ef9fd4a944d5,0,1,Parker_Soft.co.uk.xml +605051aad6959d5abacd3ea353c7176b9c5d7ae0d17e5792e944bb2948862375,0,1,Parrot.xml +95355ec4cadb259b3053a38718cc8377c7fedb4b836845d8c3fcbc377a388b9f,1,1,Parse.ly.xml +733577a614581c6c478432a6ebf5d60213d26161fd6bef61dcbfe441947c7c55,1,1,PassageBank.xml +4627a7d8ff44d737bfb4c58d14430e8b141ecc16773a5728f4ae45ccf949deb7,1,1,Passion-Radio.com.xml +7a7079f1bf3bcbaeb2c4d8a2c59f77d25956e4cd3aebab78ab1bc67f3f3df7ab,0,1,Passwd.hu.xml +54bd67e965c51bf2587b2fc9952c21cb6de9fadf10e2b9554dcbe9da50b06779,1,1,Patexia.xml +ed6cfba3387faae39123d9d8bcdca58ce96ca56fa36d4e78a0d87de9ebdfd664,1,0,PatientsLikeMe.com.xml +935e0d2a2d60b5c793084c7a8345d04c58f4522bf9f620b1bcd410b454f23da7,1,0,Patreon.com.xml +f9b23a9e9264d7f43f499ca056d36506c1c77eb873f333d6b2fd51adaab46c0f,1,1,Paxton_Record.xml +f5ea970abc9b98f05c5d2d938d268b5f7ee2ffe08896b2732d2873eeaae7920c,1,0,PayGarden.com.xml +8a4688c9225f39cdbd0bdf2461b215687a6e52fb158187d9cd52f0a794ae3995,1,1,Paymentech.com.xml +cafaa354707ae4551d9e4cb2418f7693aae919a2b64cb9fd74668ba93ae62471,0,1,Pdadb.net.xml +b734d20b4fa8db4e550c2063fe1f7571aa9255d4fba08668b7607e9075f9183f,1,1,Peace_Center_for_the_Performing_Arts.xml +7ace65d7a07d3b5a62cdf6ea0e4d7aaa66e35a4cc4aa08dd49b9cb6410404a06,0,1,Peacefire.org.xml +7906a49f15a7f530524ab186dccb29610399fda324d86a5e79806978facdfe9a,0,1,Pearson_Computing.net.xml +caa27cb47eded0e0a39c74eafdd4e7c03be9a837ffebc3ea450bda58327668db,1,0,Pebble.xml +1eb02087c60fb6dba349d89674f8fa25ac18106e527f762be774f5a3a56e0a6d,1,1,Peepd.xml +426d215a62ea00ec4b4a5d36dd506982854831af3ee1dda5dac04acf588f886b,0,1,Peerius.com-problematic.xml +da6ba14b9cc80cecf84262cd3e6035386578d6d27ae3061bf5cae3216eea3959,1,1,Peerius.com.xml +a130c2186838ac25cf952bcc67cca009371321b3acbe4fc721309b72aad7027c,0,1,Pegelf.de.xml +5ce21d515b34843606f42926f22d007948926b66c7cecc29c72c4a2753a71e1b,1,0,Pennsylvania-State-University.xml +540cd8a82fb1de07061e983359475b2cbf144af5a1b98ef4b981f87982f3a7f9,0,1,Pensionsmyndigheten.se.xml +96ac5d215f1b378cba2ae89c100c0f5c6c3a3ff562a31e622bc2dc04d49a5c69,1,0,Peoples_Choice_Awards.xml +fb65b454d3712cdee0a55cde951214ff2906d1eecaf62927fc9baf552fe2a25f,0,1,Perfect_Market.com-problematic.xml +a5c12d8025be3318d62d91387f841317857f79bb9aab652f91d65c755e8e47dc,0,1,Perfect_Sense_Digital.xml +715bd34f865b02b1fd27059e7e4f542d3fc90d8f50d8bff1bac8666f2197e728,1,0,Personforce.xml +bfed1f967eb05dabbd243cb0d4d1aa66de3bcb8ac299dfdb7a2d69b385b2a4e1,0,1,Pfizer_pro.com.xml +aaf2de240b5d11f6a9714d588bbf7638e296302ae88da0d3f838097315d52f86,0,1,Pheedcontent.com.xml +10c216db9072d4143dfe8c2573933753ef48295f0919f6baf00ca7358984521c,1,1,Philosophers_Guild.com.xml +45dec8d1365b75a84a445c92227162ccff6526198d3af9b30e06c8c5b7a51e8a,1,1,Photobucket.xml +016eb2664abc5fd82f5c2b38a525d838a57f2fce95ba0bb099a593c3e38665d0,1,0,PhpBB.xml +444c82f47f7eac33666d99279e34013195eac91a77c5c4374dd870daa2ef425d,1,0,Phparchitect.xml +b72e4e9f7d21bbce5b9e2a9ddd1a3b4455b44f2ad25ffc29e34ea737004745f6,1,1,Piatt_County_Journal-Republican.xml +571e8129bb73ac64284c6a7cd6e8aba1cd9515297417c5d446e4b3f0f8de0f90,1,1,Pickaweb.xml +cf7b1bd5b721d925da006f39ba1871955f031865f0671ceacc1682158090e92e,0,1,Pictomania.xml +73228b03209d957e30c9949ed6f98aea5cb7625806c66b5b57d43d5cefe23273,1,1,Pimg.net.xml +ab2c00ab831d35a95f6146fbb79857b64e431b16a55141848a9c8328c89cc30b,1,1,Pinescharter.net.xml +351933a4ca393d784a3e0255666cdba8645c9e2d8f56ea3231467b53937a7460,0,1,Ping-Fast.com.xml +590ab5ee7e510ba33049d5acfa6f332bd51388f0426e3959aace2e6ca7624e5a,1,1,Pingless.xml +3c5a6453f20a2462fedce8629a68e47c615c8717e7f5934f3271d71bbf3980ee,1,1,Pinme.ru.xml +662023093afa853230351a22ad3a03d92674583751f67b1c77db57439da389b0,0,1,Pipping.org.xml +3b0b0f3ce5116f05fed6dc7b33bcff46821f1d46cc867891fc8df9895f83a2df,1,0,Piriform.xml +44323e2b5b6caf12d77c2d59ec395f05871254633110d9445cfde16de26083d3,1,0,PixelX.de.xml +0b633c07416948983bdcc4654fc98e5dc569e47c5f8faabf6a37f46efad6c582,1,0,Pixnet.net.xml +c5c0d23e54473a42d466785be61c4ad691e44f62e710a2a6c9248a694b6cb084,0,1,Planet3dnow.de.xml +3ea9dd12e12f7ee6c175c6196aefaf9dc366b0b46db96bbc6874afc901c1d2d5,0,1,Plantronics.xml +89b0a11dabbebe35d43aaae8dc9610c937b3f47dfd4fb47d82777d740bcd65a2,0,1,Plati.ru.xml +1094a99b5e8a0abb9fb46b17654826e1a8387207caa3278f89949c8b6d0f2ead,1,1,Platinum_Skin_Care.com.xml +f17442d3412d38817ddf3cdd8ec7f104b45f54d6175505b0a315d5d655d05be6,1,1,Player.FM.xml +f8eb1c5b920d861d39f2f49cc5b1b5b781034d05a5c5970492e2ca678feefb37,0,1,Playlists.net.xml +8e4f71f2c21971751b4669d02db149088429c727002101104ba57365f5804531,0,1,PlentyOfFish.xml +32e4746d265b44c1f5940e78b1102d817e382b19508a7c49699943f6f121a108,1,0,Pogo.xml +43155ad40eeded32a53d8aa78bdd55503fa6bcb3088a29d92492d07b0ddcdbd4,1,0,Point.im.xml +82900ee0fbe5e8da617b95011724372fdc7d1a9e68376b6e0b46d6128fc0419c,1,1,Pokemon.com.xml +b18aaa63b24e4333450a6523704e29e485506972e8fc4be497e890e79ecef4bf,1,0,PoliceUK.xml +e03dfabf9213efffd81e97ac515e6455cbbe46cff31ded39b41ea0fd787bd7a5,1,0,Police_Mutual.xml +ed360bd7adf7254dcf2698e30ca35858cbf4cb1e37d305ed814aa2b0781de9c7,0,1,Polisforbundet.se.xml +a0d5f094a2dfb958545b6baa8ac1a7d52733b10790028f9cfac80ca7766ce209,0,1,Political_Wire.com.xml +fd7bac449610576bf5a1d87e2277ca130fc15ad1f557c6eb5679ca615b5ccc30,1,1,Polldaddy.xml +62ba89768f63d01a33108d6612b1439a9dc7e1ebace2ce5c57ec7d72d5f7d562,1,1,PopSugar-assets.com.xml +b9aeb8140b8c5ae9e60adc1f3189a4fcb72bb245869ab5b17b13eb2f42343f4c,1,1,PopSugar.com.xml +37875c27e806135f0ac32c517079c7bb99f00e22dc3c2ad828ef0e8455b5d04a,0,1,Popular_Mechanics.com-problematic.xml +2dff8eae8eb79b0ee7d7d9d03b678d18ab0e80c4f8c642f076169ba45ebde7d8,1,0,Popular_Photography.xml +9d9f29b0e53a626445a096648cce8a40e721bfaf0c3e45b3066f19e78ae9fdf1,0,1,PortMorgan.com.xml +4acb2c18ff46d235876ac28da274a69fdbf34c411da8503f46594d59b3f88d6d,0,1,Porteus-Kiosk.org.xml +6b0d7ddf3bdd5ad91f34402c6d3f7f7d0386490d94b03dd8f129412f4e514d20,0,1,Portner_Press.com.au.xml +4e5dbe5aef10968d09652fdebf8630baf5f78e41edbdf230238a6a0166985d6e,1,1,Post_Office.xml +dc3f1b194ab37a2e2ac738b5fbcad32e24454912aafae49f7ac1510b8a2e8db7,1,1,Postlapsaria.xml +2d4efa164c7dd27c982d9c131018cdbe5d7ffa3fc51b4d819e379a721ac329ff,1,1,Potager.org.xml +d82fa518dafd334d1106c883a691314a2e188b467209396c7dc32e12db7ace88,1,0,PowerShell_Gallery.com.xml +e699af2a0de904179a543e2cef6b7f805e123404341dbe5e8d78dac3708fc644,0,1,Powerbuy.co.th.xml +b689ab0bf3c4612108106e20d8ee8afc95b2459b255b5bafbd243e152e9c0622,1,1,Powerhouse_Museum.com.xml +b0d4020ae98c0a8792a14d61af286d8da58bdf81adbd1d1e19afc749ef600bc7,0,1,Prad.de.xml +810fe9624db6579cb589bc5bf86447dc0bba88983b89c993152fd78554898224,0,1,Pressflex-mismatches.xml +306c91a332845a079f5f867072dee43054fac522e9b377fa3a28dedc5505a88b,1,0,PriceRunner.xml +302da6e9ef8981e7c9fc640d28274768775d2dcf4e6db959d02538d6b7d061ef,1,1,Priceonomics.com.xml +a1023dd10e11b82db899a2b1cadad54c2f6ac3e51a4e056c58afc1efb67047d7,1,0,Printfection.com.xml +44b5f33ecdb9f0c492366882955ceb80db6fab8976dcb2946ab853e344c73062,1,0,Prisma-IT.com.xml +4aa8187315321bcfae808afacb259caea5d5023b7c2a8203a63daa89fcd25955,1,0,Pritunl.com.xml +e0519f9b99fd87886edb3fc154d3fc1bb145333aa536966d417433030cd82eda,0,1,Privacy_Not_Prism.org.xml +9335d8279c8e6c864c1c38fc7e140fa58be572a28ca0841aa83971d4c3a67260,0,1,Privacyscore.com.xml +311f5788fc38e8633b10d3864ec787d33d6c7bf84e9a9917c01a78cb48ddcfc5,1,1,Pro_Bike_Kit.xml +7bf89b1d0564666fba76d66df0b0fc2237dc1b92a27c52ace0c1cdd705bd4675,1,0,Prolexic.xml +ed81e7fc8de7196452e9e9c0821196ba5de17d7274df4054ff5bd95800fe2523,0,1,Prolific.com.tw.xml +e3ca25a923e2ba846cd50819fc928c44bab543f1f8380b3789c8552933068304,0,1,Prometheus_Global-problematic.xml +6f67d36a686a32ecee265b2914c9e3145ec7b641e8a2640511a5c2488b510c2d,1,0,Proofpoint.xml +632de51c809f29f705d7997d3f2b7674ea97aea38bb0678b1de48f0c6cc58bb8,1,1,PropertyInvesting.com.xml +3a42b5c2052afced4f34ad117e2782af9088b53ebff090ea60bf3aac79562e74,0,1,Protonirockerxow.onion.xml +cc1db5c4a0f3adeb96bd761fdc1491a0d213d37336cc4fa3301ba9c3ea69ba66,0,1,Proven_Credible.xml +00e348922788c6e644d51801e5887325fc38759395bdbfe9f9782d6bdb737400,0,1,PrudentBear.xml +2cb55093e265bb1a2c345613e293ba44500cc31603bd713c6dbe301fde49654b,0,1,Pss.sk.xml +1c59135a4c622ee99ac387ff84d671258f9556c7ba525b89db979466180d1a46,1,1,PubNub.xml +83055ef9b302a95dab4a512ce4db64ff78e36c9eceb2902a9fdd1ccf209295a5,0,1,Public-Knowledge.xml +d9044daa3fa3513400d2990aedc735eceeb815c896b70a96f95d4d79b1c846fd,1,1,Pumo.com.tw.xml +b2e2a5f8ed45c939a47777f82b4f45f9e6f29434abcd942895047a2926718560,1,1,Purdue_University.xml +3559850f77b0bc7b063de923ddadd129a1c31e704e27f3318f4dcbb7eeb2d623,1,0,PutLocker.xml +0c9b2d18c06cc6a3cdf9e3eda7c17efd3932f0a8a10e733cb1e3639b5b367dfc,1,1,QIP.xml +610d9ca4c64e1044ed49151a455e132dedc6cb288f14f86223b4bfc84d58a368,1,0,Quattroplay.com.xml +11670da974bdbd3ad8f36d0905cdb3b0a259181f1c2a7082c85c2ba432a1b21b,1,1,Queens_University_Belfast.xml +9eb9fccf0ae3ad48a892df0a03e6970a5b311b263111bee6f629887307300add,1,0,Queer.de.xml +3a871414f31ff7c5d2a08897c0f6209ebbfbd6e8e0887f825932d45dc6d26399,1,0,QuizAction.de.xml +eebcbcbff68650421932b86e64a78ddf9bf0d55c33df14d1b2bda4b5923b3f16,1,0,RAND.xml +f8be2a2667f90decacf4019ad460037617c4a39be2c437395df2448987ca49c9,0,1,RCA.org.xml +07e6cd400a7d03ad2aed4557bbde4ef9e1f96248ad05aca16f22375ec65b6a8c,1,0,RE.is.xml +b91a1ce21dbc933f96a58068120bdda50bd0a150db11f1d8be42f6ea85ec0812,1,1,RF_Parts.com.xml +bdb3b3e81945ab7499b5313e73595f148c91413e7b947bd3fe699d03a0391c13,1,0,RHUL.ac.uk.xml +21643040fe18563efb75dae1348aab27c6d7bcafd9d86669b454959072350177,1,1,RH_Cloud.com.xml +f18741e03f4946bc8a2cc98ae60a581ede581ef9e454c6f0c24d09316b6d853d,1,0,RIKEN.jp.xml +bf59bcd24750fce1e1b920a8626d7ff5fb298dcb0a958e7397f9068f35214f6b,0,1,RISCOS.com.xml +e320c9532ea87d88cc1f29dfd2ded7ef50f88897f6fe1c5cb53144af11b7469b,1,0,RNW.nl.xml +38e182d9a20d3e1d7e7f4e8229a209b0d4c73c76a11d8dc8afc53ce2584a73d5,1,1,RSM_secure.com.xml +fc8f9a4458d71bfc071d9d7a289693bf39a34d4c48c513b40f8baf719b417370,1,0,RSVP.xml +3b265196f1568487f91bc203fcea005f88de381527e88a4fcc0d73e927c16d33,0,1,RTK.xml +43e2885073158c994a17bf0144cf97de1ac45a5f2a412f2d402475d7ae1e84f8,0,1,RU-Golos.xml +a528fade4ec3280b09242df1f18bf8cf465255be7640d16222810d16da8ca8ff,1,1,RackCDN.com.xml +b6b80b8e6effda900873a33d7f0c6865be96761af04446b036a54a44ca6376dc,1,1,Rackspace.com-falsemixed.xml +d33a01659d482e190a861accaf706b98c369e189547a8ad101db63a85fe18e68,1,0,Rackspace_Cloud.com.xml +53fa3192655dd12fe95df6e4054378b1aa4cee016141ea5b55ff62a0516a3af1,1,1,Radioleaks.xml +be7e41eeb775ed3a092eb6caa67dece5052bae12be23f72922421af695d2892c,0,1,RailsConf.com.xml +a8eac7a3ad4bed42d518579dfeddc1ea079e0bf08897a8b890ded2c4911f01c4,1,1,Rantoul_Press.xml +46fd3ecefccc0ee271b35fdea5f695b5a7a8b821ab9bdbea090ab07e49f49e9a,0,1,RapidBuyr-problematic.xml +825ab0b71141f945032d9eb9f2d107635184db4b244ab605bda6338a7c83f711,1,0,RapidBuyr.xml +c141b46bc6e8bb32c9eb0beb311cff1ff66e003fef23f11d8ae1e23e1a308cb8,1,1,RatfishOil.com.xml +922398c3843dea87e31afabf326f9cd2447344f6aed0f93514f2c98dbe69c9c8,0,1,Rawnet.com.xml +96d6931dc7ddc1dfae37303fdb58cd0f855ba02abf08cb981aa1e0823513e9f3,0,1,Rayner-Software.xml +e2125c4ff7f8379155ae1cbe641d8d42fc62ede1add7edc1abf0d519b28b231d,1,1,Razoo.xml +f4f7f990d573489563d003524c724fac1479711483a0fd0b2a0e62614886a5c1,1,0,Razor_Servers.xml +79757f97f7b60f450d8440be0d4280a576539dfc57f392ed11818a03876d208d,0,1,ReachLocal.com.xml +0c7a2b9d81e562263408261a8d2c2132482cce04765bb9bb2dcf2db80bf37d77,1,0,ReactOS.org.xml +41653b528d317761c5c16423c2e4d33ea37646cec0801764b40f21cd8d7e7d0c,1,1,ReadRobReid.com.xml +08f10251ac36c100bf8ae7da9eabd18f65b25466f132d6e60138fe800bc19934,1,0,ReadTheDocs.xml +65002fb8676849739c54b0dd684aae2e36792c16ab5144b1cde089a6561d2f52,0,1,Realtech_VR.xml +d02d0ef8d9228fb73ed248df5c49f8e5f4ef408e4cd0442057337d7cc00c8537,1,1,Realtime.co.xml +175a2519105c6a213529364cc7d07291395b1990d6972eda7a6114333639b0f2,1,1,Rec-log.xml +3d81ab3a1e068cc3e433fb67054d899bfb0de1806dd6a4a04c6960c400ee2403,0,1,Reco.se.xml +be04e4a5c75ce1b4a49738d3a5e13dd52e2b054f0049b56ae3dc5a96cf3e0bf3,1,1,Record-Store-Day.xml +f53f48cc8819321f46aed9c297b688b9993d6a9de165e8763d0f37c8ebb26381,1,1,Red-Pill.eu.xml +3eb21961867734b2a94ad5cf657258520891193e0d3067bb0fb624a4b1a68a18,1,1,RedIRIS.es.xml +744461d0f9721427cfde87ec8eb72bb0b4af4c61eb03ccc359db7e80eef80e04,1,1,RedState.xml +b436dee831b87aa69cb3b905bcf593cd7e47ed08820189f8974d4a3e00d98bcf,0,1,Red_Bean_Software.xml +560d674192e89441ca7d23ecb5fb627f67f2e0ea32ca9a9b78f3b4af11f438c6,0,1,Red_Bull_Media_House.xml +054b8501acbe0bc72dcc54d95df75e1d0175ade0c306d347daf0e54aa3fbcf15,1,0,Red_Bull_Mobile-falsemixed.xml +def99e9c52843ab97071e7c51143321c1bc97dc6b2395b2619b4f9ff7d197f2e,1,1,Red_Cross.org.xml +39eff1aef0a36525f9f373d24e20fa4850fff65d2acb945dae316680b84ed334,0,1,Redbox.xml +460e113cb4ca654705691e100424c875fecb6c0499791cffccc734ac7f42c46d,0,1,Reebok.ca.xml +49f413717d683b1902cdc262e5a77d4ac119e9b2c2bd4f19b0139c0298fe0c40,1,1,Reed-Exhibitions.xml +1bc93887c36392e422e57cf7b8352bd344b1d034cbd78d09da67704520b5ee37,0,1,Reed_Business_Information.xml +705ec8dbee1342fe705abee9ac8c3156529fc043e439e3ba01087b9c70ca0a9f,1,0,Reef_Builders.xml +a384778aecfb187e57b08dd0a236b215c892c6ad4ea8053d1aab6307d65b58c9,1,1,ReelSEO.com.xml +8817ad2ea935c94410c88e741c82b765efd59ae2b929e5adb3e3989fd4ee4351,1,1,ReelVidz.com.xml +2e8b726961855461d27af664aa198af4386e9a61ea1b25ea9e3f97f1618645c2,0,1,RefinedLabs.xml +0dca7f8db4e1a34403795e066f569135f7b6a690847e640627fbd4cb613d71c4,0,1,Reflex.cz.xml +c1eea1a6dd94fbda613525ebeedaafcadf64b579f0a07e74f5585c47fee1041e,1,1,Reformal.xml +ba5433cc440b527b0ac40a27ca63efa96122103a9bb85d2f90b1bb28c582de62,1,1,Rega.xml +c1c45efb4372b9f3c19a93e582c93d068d6f86411177f976b1b30fb69f749305,0,1,Reimanpub.com.xml +c2f8c90c2a61453cf72e9375c5892e7fae5092010e2cf0db37791e2a2b1fd1ac,1,0,Relcom.host.xml +bedd10752a7feaf458f36cc9139a80e547ffc5cb86cacb4b45f3380b3ea28bc7,1,1,Religion_News.com.xml +f5fa27df851da300199657c4ddd684050bb637a6a097e6514103fdca757165fc,1,0,Reno_Gazette-Journal.xml +c71b26997cc7f392de406f1f5ed5f472755a3a42cdc30ab7680c3e7d81967d9c,1,0,Rent_the_Runway.xml +bc848cf6d199b17cd1490d8ebb34d3cd247a9f7d400583b8e4fdbf3499def618,1,1,ReportLab.xml +5cb0ade0d5d1dc7e4dd1ccc665dfb4c266ada546964c320112cfa58311fadcde,0,1,Repozitar.cz.xml +e53aeaa878e3dfdc1fbf1b50f6d16c8951aa396e8023bfa9d521dc9bdb45b3de,1,1,Represent.Us.xml +88e398ec4597fcd0126db82a9cb9efad999c17cda7de00490943b9ff12551771,1,1,Reputation.com.xml +97c227a9339f8d2100116d0f78f3795404ff88c9b2af12ba755db9919347253e,0,1,Research-Blogging.xml +6c3d96b7e739b4b9a319e64168eb7600a742f34a313821c44808c1ac1707f414,1,0,ResellerRatings.xml +99c54146351ebc37702c69036a7969daf602f88a46a6659feed01e378049e8ee,1,1,Reservation_Counter.xml +1fa6eb86f60348d8030e0e38d7dda49565e349900dab0bf903d26c35807773c0,1,0,Responsys.xml +a67a18b5bfaa7dba51643416054612adaee639d425a8edf44b58eda19a4427f9,0,1,Retailhosting.fi.xml +00acf51b8e95fb8568e1bd246a9339f38f1f950d5b043f1fa28e14ed065ae5a6,1,1,Rfecom.com.xml +6da80a723a1d1077b1e7a27e1b7cf81d6dc7bd9da2161e9d63fe0c896ae0acb4,1,0,Rfihub.com.xml +9aa7137976390aa76a522394805ce510e4202c6bb51f3bc80a7c8d84114ecded,1,1,Rhizome.xml +ec0851667677ff8540dd4ea8454573e8d97df70843756980d2f1d6db93586f8b,0,1,RingtoneMatcher.com.xml +d27f1b348e71e8e016f36a21025afb61c044ff05ca5b138551ed5218fd33d474,1,0,River_Island.xml +6b1cbf8f7c764869e3bb58c50ca22966d48a7b7b8f653ced6110336bedce2541,1,1,Rock_Creek_Outfitters.xml +a3f1aab489ec09b4b991b1a42dfd46871d9372f1a529bef1103a6c8717d1673a,0,1,RockstarGames.xml +633a5865ee1e5db740e5ead4afef23585998006ac347bdb7a901cdf29a1e4db7,0,1,Roeck-us.net.xml +5bcfb04034d3fd0eb17aaff546732ddda271ff01aa972f065d149b4db23e78f9,1,0,Roku.com.xml +47d01b691df5218a1da827d4d17fa384cb3d577b1d8e577d9dae0f3a6ab21e34,1,0,Rolling_Stone.com.xml +4783a0472b26a08c80e17722e5cafd5c18e160518f72d97c3354cd39fd2d5bcc,0,1,RootBSD.net.xml +ccbabba764819bd13ef73fc6ffdffdbce63afa730066863a098b3c355bdbf548,1,0,Rother.gov.uk.xml +22f670057d19b9f795990786abfd398fa7d9731920a97620deb989914fb6e642,1,0,Royal_Mail.xml +56f318ca6b8f5c51699fba8b627ba828470db3e6b712d3b0aa9d4d1cd284b31d,1,1,Rsync.net.xml +1f87be8d9de10ec8ee2b9e7fcd42f90979adce40fe8997a80f34313423cf3989,1,1,Rsys.net.xml +e43729a767c12b46a514cfe5daa294e236ea9768010d72d82e254c32e601f590,0,1,Rue_La_La.com.xml +a144e99c2ef329b7cf98af652bde5bd6153cb84602d3cce46f95d3a4685cb901,1,0,RugStudio.xml +148588675e66210914e28a86d10c5f27b71a78517d06a70c423cbdab87bcd083,1,1,Rutgers_University.xml +018fd6c1ea9077a236d9bb1f7fc10af3b335b662de27731d5d2432ce47859d3b,0,1,S-pankki.xml +8ea654177b45b0907f63613a7f7a7ff5beea606fb948cbf52b0c513195bb051e,0,1,SAIC.com.xml +26c41f1beb070887277febb9c002eec5f1824184016b8096316aa592b2d2cae2,0,1,SC.edu.xml +fd71c353d28fceb8b115719e83bc37fc7f717fa194e03d48d2cabacc00fdcd29,1,1,SDSU.edu.xml +afb0053160baf8df65cddef2e6252d980f0ae631ddee646810b0c57fcd384402,1,0,SEScoops.xml +90e39924d85b911e9ab7c92ec676692a6f3cc4253ed1c5cd48ac62b788bd4d08,0,1,SF.se.xml +e441e43ceff7d30a52ccc2002be68156248c0b3228cb3cf1f3f241567ff8def2,1,0,SFM-Group.xml +b1ddc8eafc9185d502e8c25fa3239d0ece0bf86bf9dcf471af0dd11ffb792f4a,1,1,SGNO.org.xml +17d8e1cd7f7e79152b5482c90e28f14bb732d4e3b6e09240171fb7fa0c47c5cd,0,1,SH.se.xml +0ebfb123ecc0a797ffba53b2ed5e7a7a9def6cefd840ab6e9cadf49d77199d6c,1,1,SHld.net.xml +ec5ec3032ad870e33ed2aee54e56fc4ddf43e6c2d0842f5b29530fd378212056,0,1,SI.se.xml +acafdedb2df04d3278f3058d9be43aec8127024a12e89b7cc1d03f54b0b19f95,0,1,SICS.se.xml +5d608db523d07b5fe5b23fccd9bc91b8c630f5c15ab83910c4a440441068e3fb,1,1,SIL-International.xml +6846a45bb80c31778df50470a813f4360f4259103d29c032c0fad0dc86ca2e73,0,1,SIL_International-problematic.xml +5e7ac697dcd343072fbf1e626ae8493b93fb809bc95e882eec2fd50ba4da66ce,1,0,SNCB.xml +de4e0aad788b737f30398cc734dc7e93a178dffe24c0b73abe4fedd6a42e2015,1,0,SPEC.org.xml +0541366178a7279745ea561f059b404fe3e0938cf75afa1c0d3c21f89a17a141,1,1,SYW_CDN.net.xml +d801e51a50153a2119eedcdced489f520458e20b870d160379489582320da934,0,1,Sac.se.xml +eb4b298e2328c9d3af283306b797b4e07e194584efce78f97c84b249f9339c8f,0,1,Sacred_Crystal_Singing_Bowls.net.xml +8ca380dd32c44814c1f0d696c3efebf9657bbc01b5a1ee9b5e616c389eb239f4,1,0,Saga-Group.xml +31910514d896bb6b9c90d691ce06da20594ba849e325fca5513329fe9ab57088,1,0,Sage.xml +a67b67cba419c9c60f5af4693ade3ab0f4dcb71c0447e14eeccf5d9f8ccce305,1,1,Salesforce.com.xml +70625d04b2bfb69c56b1dc93d19eed236e18e861c8d0134b164f8a348ade9116,1,1,Salesforce_Live_Agent.com.xml +223be5286839874afef4638f6b87c51f4cb2d2ecc551bf4e994ba0a022b78fd1,1,1,Salsa-Labs.xml +4fe8a655c2e05111677d094899b626987d18679aad18ffd1e17ea5447c3818fe,1,1,Sam_Harris.org.xml +a7cdcfef95e0c16a840a8c72942fcf23944eab6aa4db5f3c02fc89679bdbd241,0,1,San_Francisco_Marathon.xml +4888cb498299850bc240910cc61c5848296567d65037d0c150565779950679f9,0,1,Sanalika.xml +045eda1307862552713004aa03d4b9681499d9af2bc7abcadda4a00237734eda,0,1,Santa_Clara_University-problematic.xml +d6d63b4167f0c17262f7eae3dd84693b68a3caa00feb09bdcd547af74bce75da,1,1,Santa_Clara_University.xml +e528e24518c3a4fdd013118b9388faf754c8ff65ddb0ff972871d046065998b2,1,1,Sapato.xml +10dddb4466cc962eaca360f047e7c9b153d4ceaec7caa21507f9327a4d6e94c2,1,1,Sape.xml +252603fc0bee7ddd0001cd5227b894007ecb583163499a47e384084251fd3e91,0,1,Saurik.xml +e54714d568b3dc29507fb27dd4934a5192b8c1e397cb97009435a049cb103fc7,1,1,Scanadu.com.xml +3921f7457145f30994e3e5edb393abe93434cb4cc158b6b77ac30ecc9692bbe9,1,0,Scania.xml +38fcd3c77ef8529bfa24f39ca1a3031094574f86ec150997c16494f79bec85b2,0,1,Sceper.xml +d4b3e1cd81bbf83fb126391a949fc64451f079d3c6c71683fac08b3972b86311,0,1,Schneider-Kreuznach-mismatches.xml +eec14fa49b2eb3ca3cba02c29f921c816f1c59ec37ad0fcf64a2a03c1a79c219,0,1,SchoolLoop.xml +b820ef0ca9ed892e54ecba43ca9744e3eaa8828238b13d527438029e749de50a,0,1,Schulte.org.xml +25933077b070dbd4c7fda6d88421b3982c3457ea5b5f008aba6043900f07ca1b,0,1,Schwab_Plan.com.xml +a7eb0ac9d79d8b16e404ad3a6206a9f19f51294e69b08cccbf4094148ededc22,1,0,Scoop.it.xml +648bca2cf9de8921e93ab3cdc73e3b84fbd962af85e0c9f0547cf790dc625759,0,1,Scottlinux.com.xml +78be6deb276806cd5ebb6953953297c789a83e254fef202137f493dc8bb93ae1,0,1,Screen-It.xml +c95e7e25412c5fbcb4809458f4513a0b6e22552e282fd557a0aea34166e86e25,0,1,Screen_International.xml +bd4374a901260cd4a63f44d11b6f1048ad380d5925d92b90a7eaaa83337a22dd,1,1,Scribit.xml +83a8bbc82794caf87711ab36df2c8d9c6dd6bf8a90d4b627370eefc53fcb0882,1,1,ScriptSource.xml +3ac88c2b6ef1fbebdc4efec463de28b51d4b0891dae3f3337d2142de265d8687,1,1,Scubbly.xml +17a481d6a4f50aa56d025131da16786066d328c7f11ab915f6d57b39dd4bda23,1,0,Sculpteo.com.xml +32e7fe0659f10a07ddd9e79c4451377d2794f8c90d679e5e12771ce7f39a24f1,0,1,Sdlcdn.com.xml +b47e3b0004ed2b922443aa48b3dca1012843ed67610e4f15f881dc0b5d8494a3,1,0,SeaShepherd.org.xml +47ab71ea32a7522b3aa11275a3fb25467963e52f52cbbd28fbc1e4290c9edbea,0,1,Sealed_Abstract.com.xml +6835368660d2c2932d163024a8da85984bcaf646184f5eacd658c0fb52a62c5c,1,1,Seattle_Technical_Books.com.xml +0e8e772f5af7e798a343bc7ffc07367d78688f53fc2b361b9b6f574c3f9bf55f,0,1,Secret-Maryo-Chronicles.xml +a60519a17ed9b6f9752ad6bbc6a463d50f6640643958d6e615478c9a4a57fa77,1,0,Secunet.xml +cc8342bcc4c3c676b7bd0cc012b441d3d9c4a7fabfab9b25a8d8146963b4a738,1,1,Secunia.xml +33814228cd58cf773562cb2b4cca1385b282847778045dec33b0469b1f1ef33b,1,0,Secure-donor.com.xml +fb80a2a8a1de294899f5a0615851aa20d733698590215f4fa5306b9786ecebe9,1,1,Secure-payment-processing.com.xml +ef4aa3c48224f9ebd3f7d1957eafe93f20690e4111e7f2bc802943da7b762ee6,1,1,Secure-secure.co.uk.xml +695d69a740be24d4ed56b02926d38131360b363e580859219aa87843dacf5b1a,1,1,Secure-zone.net.xml +f7fcc791da39508c7c2f62ccd71aac9c7e345b35bb825469e3bf31fc51fb1fcb,0,1,Secure_in_the_Circle.xml +2118b0c04b2f228827d360c8c22c50033954206dca3837833c615bf47d8bcdc2,1,0,Securepicssl.com.xml +6b20be37aeafe97b9c0449d7815f06e73d80c685be3fad2d6d6a97ef625f3727,1,0,Secusmart.xml +28bdc6b9c0d2041fc5fca0b87c6c88e524efc63ecf62bb07c9433ee7fca42194,1,1,See-Group.xml +99b22782fcf7be5163da772801b440ea850cc78d175816238aaafa0b018b7c40,1,1,Seguros_Universales.xml +1b9f7a18950ecc433514f5008b5331d4f139ce0db817e521c01640ec80e8f997,0,1,SendPepper.com.xml +58cef17a92f366b7e1cde56909c647d27ff2ee35518214d71701a8d109673e17,0,1,Seonet-Multimedia.xml +853dd75e3e890244ab5c4b515f84235930a5547df1efdda71304300a261a4b31,1,1,Server314.com.xml +51c74b507fc022bac4558cf0303b02576e0834d66f42bb99c3b93c343ce146d5,1,1,Sferra.xml +1813cb1da6645470c2e8d31aa8674d7d870457c6d266e17c779adc3beb496215,0,1,ShareThis.xml +5ef4aa2f5d4f1d0045ff46b16bf66cb827ce05554693a23e46548a584871f44b,1,0,SharpSpring.xml +52619008e0a398517bd3ed4b130df71beda4b92d61fc2261ebbcb4a4d9489a83,1,0,Shaw.ca.xml +0d2c3ddd439373407efc3cbc24b6fd7ec6da6563499498590e742b02d87a3fbf,1,1,SheVibe.com.xml +5a68196b57ecab58d93ad0d0a4e3b7de40fbe516b74708037237d2ad1583fd1a,1,0,Sheet-Music-Plus.xml +de01005b2439ff85c10a569a5bc9f09b86631fd60af698b3929ffc1a57ce78ab,1,1,Shipto.com.xml +529faf77dc8341243f94c02e7dcf5dc80f0e558ce630008f7b8a263c8930d80f,1,0,Shmoop.com.xml +c971c8081e7157bb581cc54157b6169d600b84b01e2e64e7cea95cced39fcdc6,1,0,ShopCo.com.xml +d651e9791352d0487ad06bac798a6665a3148331d2404a6dc37366e44e92af87,1,1,ShopMania.xml +278c389123acf69565e494a9910ec501d4c6f9ec22efce8aae9b8b5972359de3,1,1,Shop_Your_Way.com.xml +faf5c3a2ef00844a11a4fcae50f0b1c010bef569cd59f6458c17223b0306297f,1,1,Shopinfo.net.xml +cb82ed89532cfe1510504e3f9c48624106a9d0047b71e3470960047b541e577f,1,0,Shoptiques.com.xml +b76a5cfaaf82a320c34fa385a3226b8a8a4a6a838b84e2ccb701f315b0f3368d,1,0,Shorty_Awards.com.xml +3184281fdf234480385384607083c2d89814a072d666cb5a27c15c132e4dc56b,1,0,ShowMeCon.com.xml +e288931dca09be06dde50e2e7e88361e0b3f3a3fd70882d39142d93104d1dd4e,1,1,Shurgard.xml +9c9167d6a433c5c4c16b5b968040168b122215635d360c94bc5ccce867d8638c,1,1,Shutterfly.xml +893a6bf3dcbf71cf5e4f1ae4288f7303f13681b9812f5055a788e7acb879f173,1,1,Shutterstock.xml +c2bdeaa9210ade411015be525d562ea16bedd70da5897af9d239278aa0ca8ae7,0,1,Sickbits.net.xml +991b526f8347cc2655f4b38ab4579c1ceab9708768f98fb8bfcd68361001b7c1,0,1,Sieciovo.pl.xml +9b5e1216c793e3384ca0e6d8dd68761986d3613af12b81d640922b982c1179d1,1,0,SigFig.xml +c6231d1db4ffe805ac881cf622bc409747a3a6be51cf6effdc071baf5b6324aa,0,1,Silicon-Labs.xml +d15d322b8717f52b79e0b14e43f7ab97ebc53a729183386817f29358a5a8f77d,0,1,Silverflint.xml +7a69a21a35e8e9851f97fae04e3c2839a53d54cf7a74475af7ebca460b514cf1,0,1,Sim-technik.de.xml +a49bac6e453d1a6b8658c5d09eb247a7201c2faf23ea278ff090f32c54f237ae,1,1,Sim_City.com.xml +9c6b97f93cdda86aa2d39ebd6fe5db76c601aba1050ed094c4c8a940e753f3c7,0,1,Simmtester.com.xml +9194c3e6f904add76fb734e02736c2301f3c218bb8cbdd30ae8a385aecc027bc,1,0,Simosnap.com.xml +38efd0e81710a352219d2237161c5d0ed645f65fe77fc3cfea190557233de483,1,0,Simplekb.com.xml +68aa39cfd4b062c20ea2e1bfba9fd71f4fffc47e1ae934649137626e113e2014,1,1,Simply-Stamps.xml +12389eac2a2319caa3288d448b704e7306cd6aa0908efee8967c8f74e2088600,1,1,Singularity_Hub.xml +b05ab2299cf4a3552b415ad2bc8898d5e257d28a0e9e38a13402447f5de540ac,0,1,Sinoptik.ua.xml +d004407eb0d68f3471383f7ecb0506c506135731e203586cb1b04ab24ee9a51b,1,1,Sirportly.xml +18fca85374104c3c57f5c8d3a82fe19eb00812b410016d9b5c73a8ee8c0e9063,1,1,Site5.xml +239511aea016e2100b8b88f9afc63f52439c61aac67295ce2055c4945505a27e,1,1,Sitefinity.com.xml +49cb9933bfe48be26b4838aabacb7026024ee2fa0ed28f3484ed76a96622ce99,1,1,Sitemason.xml +e7d1ee6d42c793f1ffbf240274c7d7b096831967b41b575bce6593757c287b0c,1,1,Sitemeter.xml +0a48115cb03ef57a2671772bb06ca76cce108021771e60f0a43e2fbb22a1dc3e,0,1,Skandia.se.xml +d972951be8af16d4e250056f05a7f4a6e7f123ed0a06b56e879234a2be8a991a,0,1,Skatteministeriet.xml +20765e85d2fd18909d94526931d694b90b3bc05c6fbc5f5aed8f60ba92192366,0,1,Skillclub.com.xml +176505bc694962eb998f1de1ba452dbc98547266a6cfdd3e8d32c7e43bd08c55,1,1,Skreened.com.xml +b6e69a65826e62e9a1cbaa20cd6ffb07fbadb650c80b03b1ef0ae768e2f628b7,0,1,Sky_News.Au.xml +25157ef56d915eaaefa9f17ad1029535a8613503384273b5d65958dc73d126cb,1,1,Skydsl.eu.xml +6fdaef17af1ea6490386e9a69d35056586c989cc0efb6ead360199c827556678,0,1,Slac.com.xml +1613036e5a0687ff4af8fb97b3636dc47fe9cce73cc1e4fc8ac1de9d72c5e182,0,1,Sleviste.cz.xml +f09f4e1fa797d89d9fded19d8860ca5657f9db89f488eb37b22aa65d09108f05,0,1,SlipFire.xml +1ff601d9c6793cfd0173c3c5d3c070cf48ad8e661ea28e18658c35214f8a0bc5,1,1,Sloan_Consortium.xml +8b5991e95bfde9024ae6045f915d2b5d081583abc5876d51c11efe8184570090,1,1,SlovenskaSporitelna.xml +4be3f8e4caf2704e57b939bd74385ddda2f0fb979fb5af89634bdd72509beb4d,1,1,SmartRecruiters.com.xml +410889ed15ac9076ccc7d2c95a80e3c71b12fb441d3c2909b41ca6ca149ca9d3,0,1,Smartling-problematic.xml +b239281baeb1443860e1700cae78069bbe4ec5977f4368787125e5d5a4f0d7a4,1,0,Smartling.xml +07737e4c4fe88850df4babad790e1d82ee39a0d3055511782be89bb54c85ebd7,0,1,Smith_Monitoring.com.xml +0bcf0fbf67721c2842b061aa1fe6c94338394637e726ba0268acd5e7690b6a70,0,1,Smjg.xml +a4b5b9da62123113eecf4398a533bd139de421a9f110e9c5b6d48ed5325bf140,1,0,Snagajob.xml +f427d8fbc6b8bf77dc8605104bdf8e27ee06eede543ced548f23f22aae1441de,1,1,Snapdeal.com.xml +b34278b513f81f664edd8653f1bb73fb84209a9625949fcf84364b1dfc0ae9f9,1,1,Snatchly.xml +3b7f69aaa1c762b112ba9fd30146ba841bd92a50dc25a3849a17a3bb5c9ad048,0,1,Snow_Magazine.xml +04a8295ed75474c2bac8649b4ed73955e07c6c228000c4539297c32473463223,0,1,SoCal_Linux_Expo.org.xml +5bf36d6e7610b62e0d338fb24373da34fb83d0882ca9eb1aca333ed563a3c82a,0,1,SoccerWave_UK.com.xml +8676533486e8956f0db8c6403eb63d4d11dbcdb1aab11b65facc883b596b3834,1,0,Socialbakers.xml +1704dd273006545bd23e5c0a4a1f7f0cdd4b8ac4aae59268afd81190441f74a3,0,1,Society-of-Light-and-Lighting.xml +dbfbc5e95c59ca8f5a6817ed26888960e39498fb14738f2ac049c176a530c2d3,0,1,SockShare.com-problematic.xml +8ffc435a5ee2c8e3df71d5505314b49366e1bc038ffb3ceb5bdb626c0578853c,0,1,SoftLayer-mismatches.xml +93fa0d5b997eda4d4f1016cbb8a14cc8134ee0f609ce4080dcc13307e7d412f1,1,1,Solid_Cactus.xml +81582b8a8f659af0e041168acd9fda4d96c18f33acf41defb4bc714f80fd94e3,1,0,Sonatype.com.xml +5f6ca1d9b19870ad93a58f44dc9ff37c84c4cd7cca95a9859b6af8b5d5ea96e9,0,1,SongColeta.com.xml +bf0300e1945b14a33128707161ddd15d8744caac395131caebb69d6388005502,1,1,Sonos.com.xml +f6596e850c1c453085e611473b2611a58f4146e6b34cc4264189a66a0e373e18,1,1,SotT.net.xml +59cfd7776a8d4bce0bd6e2645e2c76d072a8ff62b965aa2999fea197c839f393,0,1,SoundViz.com.xml +f141656339ca12f96352ed3819bbbbb35311d5bd2e0d452076254e352d9ff7b3,0,1,Sound_on_Sight.org.xml +255e5f901544e078566776a84f40d488b808704d36fe4d045d1df074eb3340f9,1,0,Sounds-True.xml +ed172433b5dd6d87853ced72c67bd31f58eb967d49cf152457fc80dc659c15de,1,1,SourceCoast.xml +2f8e9d7d6aca7de5ec1b5688166de01b60e3ecafcd0bc3d73fe9dbc984df7dd1,0,1,SourceFed.xml +49a79924cc9483c9d8b326a1493ea9604d7dd7101e58811cdde9465fd6a9ab7f,1,0,SourceForge.net.xml +ee75312d7a227efc1996e38f741324c0223b6cd8228f18796f92a93808376065,0,1,Southwest-Research-Institute.xml +749014fb456fade94fe8410d634d2c35faaa2ac81a812a1743cb742e7fd1ef41,1,1,Sozialdemokratische_Partei_Deutschlands.xml +180cbbca38aafa09c9781486d20f8e8683c2dceeb2e0418217360acd01e3f7b8,1,1,Space2u.xml +e962efd4e859976b3ad130f332a2da31aabdae922174ff4cff7dee7360a0484d,0,1,Space_Launch_Report.com.xml +6b81a9de20423f8a2888e56ce73a7d92a425602713d857ce4e70d72a073ddd7a,1,1,Sparx_Trading.com.xml +1e5fe1d6ac3f05b8ab1d7bac935cdec1e6aa7214cb1025010f29703a5b9bdb53,0,1,SpatialBuzz.com.xml +28a4a3b9c096d4d94cf6e2b84461b16ad0da6411132504a02bbdbbc9289b2be4,1,1,Specialized_Products_Company.xml +b6d12867f7d8012b03d30e3836cd3f71fccc19cdd0bceda42c3b8e3870481d0e,0,1,SpeedCrunch.org.xml +916dc2183dbbf307a1e01713575b05b2831ece425195929b577b6221ff376ce9,0,1,Spin.de.xml +4ba75720e6c03c8ab4f8bc95a8657e4b0d67fb91cdb319933829d95517329e60,0,1,SpiritAirlines.xml +5aa4d692eb37aee5eaa407f998e26c6734bb23e3eda58e1621c549e5fa1a2251,1,1,Spoki.xml +b440d89b9eed86cd745d0ff23333b7e12af88f7539a35833ee5b6ed2a77b0023,1,1,Sportifik.xml +2a59ab0331fb5c8c9fcf6d5ea984db8ec59bbcfc92577aac1f79ecca8ccd9cbd,0,1,SpotXchange.com.xml +ae6cb5584260120ff8f7595d678cef5dea152409c61ec7536200c68a285077c9,1,1,Spylog.com.xml +1498e2530912c8e73b9cbf1c5284031b51f6e4fa7e37cbad0deb6d6eb290b3b9,1,0,Sqsp.com.xml +b7c2aa4ee6285d36c77c5e564d09a69f25ec0e2f1c64a041b65a4059555490d0,0,1,SsbKyh.com.xml +7ec67466391d0bc44bd5a233169801a3d8b68c34118ee890afefa17aa1aead19,1,1,Sslcert35.com.xml +e7debf41fbb565a05a7830ae950f9bc8c3b24b1ba66090a894fa3db808e8177f,1,0,Ssldomain.com.xml +554f6e5135b895544437fc3b23f9f06bf5e512318b24b8d13548b8282203e55d,0,1,Stadt-Zuerich.ch.xml +8026ad04f83be259d2177775e0f798b96ab522511fe1fab28ab64a20387c5738,1,1,StarKist.xml +1a88c6ce0c2b9a6fea7c476a92a7da09086ac913707d6b938ab618ec6b685f1c,1,0,Starbucks.com.xml +384e89e4321c54fa7be3b75f19d06b7c029277463bf8cd2f8e0b3bac1cade42f,1,1,State_of_Alaska.xml +de7a70a735ebdc462b94252b551593be99376fcb2b620ee900a245ed84e9e616,1,1,State_of_Oregon.xml +cf6c0866d343514b97918cd62089f4191898d1c7c45d993b807f5d7ce291e172,1,1,Statesman_Journal.xml +5c9829129baf195a9dbfac286a509c36e0e41bb8adafa18e9162034a65c19904,1,1,StaticWars.com.xml +47c9f0e41ce3c056edcb0554a27d3a8a648782f976f6710cac42f10b6f7cfe8c,0,1,Steaknshake.com.xml +8329d69c91eb46f21fb87da7033940a740293719013b549b2a04a465178b9c3c,1,1,Stevens.xml +fcac83bfdb0b66dbe7ee339ad13cbb3784c2b1e9e6129bb33e9123ef6ec50686,1,0,Stirling.gov.uk.xml +d808f99ff65f220d3830af04647f691f475ce411d11b80e49c43cef26d1d73db,1,1,Stockton_College.xml +d64ce19ebfba74d32cafef6a02305b8aa5f95e7b4711d7dc988d46b5e2d217a4,1,1,StoreSecured.com.xml +2f4835be761a19b7ecc69d772d7c194ac2ef0b064e0fcba4d2889f87334ce6b9,0,1,Storebrand.no.xml +d5f7875b8bee79dfd4adac71fae7bf9d76c8fa8a64d22c110d2c1dbaf8ce4bcb,1,1,Storenvy.xml +39c3c86ad9f644fd4fbeffc69a4098826e00813ce35787b1d55e4e02ff2ced30,1,1,Storywrite.xml +3005bfd332932fb4fc56c276038ed76f182d90313ebcdd6ac02fe83589ade0d1,0,1,Stratum_0.xml +899003a40e7472561a54bc1dd43e28edcea0121392eccad57d8db3f3d52a40d1,0,1,Stroeerdigitalmedia.xml +b6d669821c47252e7ca26474737e7a99764a62314908a40b4303024e88e5a3d1,1,1,StrongLoop.com.xml +b0ac2e6a5978ce833c84f82322e462375f44861de28f391b9fac57c75abf272f,0,1,StrongVPN.xml +9ce00d1019a493c4f78331cd99076362c4233cc11920477c5e416697a6e7351d,0,1,StudiVZ.xml +f46f2516e99adca54ddd6e9c756b3236597ebc0c14df0cded8b3aad507b93f76,0,1,SubDownloader.net.xml +1a0921d175cad22ca99421e5d7b116251aeea7157be570e7beec3db83063f13e,0,1,SubPLY.com.xml +d92a0a64fa96c98af6b520e133f9becfd9c7b105aca69c8a6b9559ff8b90406c,1,1,Subimage.xml +55b2ac5b82c27a1407e454f90e7fec8950caeec6fd405bd62db2d8b3187a9e6e,1,1,SuccessFactors.xml +4353ab81e240d88c9a212ec5ecc87fb3c36fe14968a5fa1bba7d26b117ccd9ab,0,1,Suddeutsche_Zeitung_Tickets.xml +39ee1d4592c1dccceea5d80aa83500d03685d67985cca30f3c17069ef4b11b41,1,1,Sugester.xml +7493cc3ffce2c67f7fa42f32e1e2408c84f9ebe3bfec0fd23e8c14b853e22d67,0,1,Sukimashita.xml +34e524cb36278e49dd7e5a8d0a8deb009549cf988ec992a5a5afeb233d94f9c9,0,1,SunGuard-Higher-Education.xml +ecca6c75485a2e76cabe9b3c426de37bf3550cf0605ad7a2763fc78292832c3d,1,1,Suntec.net.xml +715dd9ee76e76e36924367d72de96365fb971aa9249de53407a7f80a91523da0,0,1,Super_Hexagon.com.xml +24eb0ee48fa0e0e523fd9bd0b40ab944a581fc249f21c1ce876352fa21ac56de,0,1,Super_Lawyers.xml +bbd4fb2f9b45366a2539533ccf4a4886c69022a7064c641de203f1a81b29d94a,0,1,Superstart.se.xml +d9954e1099bf2f9157ffffeef5dad30cd7bb4f1295a8b47a49459e8f95a2992f,0,1,Supportion.org.xml +7111b5e56fc1582bf7303824b586b80f95538d9954ed557d9a72dcfbe12a6ae5,1,0,Surfeasy.com.xml +c364bfc1cc7f038bee4de11860562a5430e9f6e50f4304292877e5852682f36d,0,1,Surprisingly-Free.xml +1a101eb73dc1657e33f8e9345675e37e389518d109592e299c8d9e6724cf08c9,0,1,SurveyMonkey.xml +ba6e4c5379bf8c4de10621f7fe7b3df817d4658f9da9f162855fe903858416f4,0,1,Susy_Radio.com.xml +0fd5d3870f9c3db62e5c4f6a72c986708fc02dd4f79ab555ba603706055e6f43,0,1,SverigesRadio.se.xml +e503bd2eff7757f37cd05f11b904e0aa7f674a7897657278f0ee5fd2ff6db491,0,1,SweetsLyrics.com.xml +3ff6f9659519c614788253eca3db799c20989ae2f87676105f096a6e5152d963,1,0,Swtor.com.xml +b4a26c51885a323376d80c7fc81bd546a674b360d0d6a4f52c9bd1e775ea295b,0,1,Synacor.xml +801c20d5ad81a56de838fa123adde660b159ae4af5e590107b911431ab7d366c,1,1,Synergy-FOSS.org.xml +99e0a5b986eda1bcdc23434210e28403c55ed2605888c303241cd8ef83d912dc,1,0,Synopsys.xml +9dc087e90745d0ea8953d26f82dbf9047cb610d088d94b9a25bd56e093d31a79,1,1,Systembolaget.se.xml +1bcde0c8645fb6f4f858c9dae6da9a419f2a187914e0d5ea61cf6094bfca9a6b,0,1,TDRevolution.xml +1de15a8e66a5c09e6729c20185fb9546d5a977f297659a1ac93f1115aa5f7f2e,1,0,TIBCO.com.xml +77c7317f7b179d59b8c705df9b7962909ab665b313ef95c0b73763e909a80533,1,0,TPG-Capital.xml +cbc81abedcaee320114fd5e4176a22df18d4f064aec016a1a5d63427f7b54138,0,1,TSMC.com.xml +8c34838c49630b9434a0c38e5fb83e5f670a928d200746df255b9de2fbbf50f8,0,1,TUHH.de.xml +08d6b767eb413eeb84fdf85ac2566e4571855734297213911cba0f44ac0bbb1e,1,0,TVNewsCheck.com.xml +0b6df260724836c32c32d403eb7c8e3b21ebe80f68e4d1dc17c2ab806e9f226a,0,1,Taboolasyndication.com.xml +07f333e0409ae4f5f9e2d09d26835d0a47da5bf52c535038344c40b71dbad8b0,0,1,Tahina.priv.at.xml +3ce7dc41c4bc9b6d2e938d273bc5b661865520ab9d08a051ccf09efb1514c203,1,1,Tal.de.xml +efab25b7fc246b2cde333d8f051380cd133eb4a7f0166145127a27ca555328c7,1,1,TalentSmart.com.xml +988512d330564df476c731a89222b3e1b6dc5ad89c41132ea73ab78d27081f3c,1,0,Taleo.net.xml +9a22153dffdb22ee7d1cdc7a9f9e4e292333b7b081d1707128f53aa397863177,0,1,Talk-Active-mismatches.xml +0a01fbe6d6acec74d0ccd7aef778e02e8c7ac424d57e8e9d42d9729d56001f6a,0,1,Talkoclock.com.xml +19f7c72edff92f8dcbb0b5c379aa1c9acff032256393f29b902d4e9c4ed08cc0,0,1,Tallinn-University-of-Technology.xml +b14da75d358e6ae804086aa49d830c8fd9bcf3c257756297a5d1eb8199788a2c,1,1,Tampa_Bay.com.xml +1640039109c8c2f9643d9d88c5de2572634fa496aa78cb664ef10ce34d04232f,1,1,Tampa_Bay_Sod.com.xml +5b323dd6373330fb4fd7171ff18c09225a4ce52614e347489a3b08f58279d305,1,1,Tarasic.com.tw.xml +0e6ce89f0541412c0ae5576d1962471a403777ef0a83778557ed87af872db0b6,0,1,Target.com.au.xml +a8687053c02430a7161492d975a61c779c42f21172db6d16edca34d5a32fa4fe,1,1,Target.xml +cfb76e4e7478c507dc48b61f51bdc71ed2176927fed165af863dfdba2d2dd270,0,1,Tau_Day.com.xml +2239d41720f1c8fd08f8210ca202d9649e5fc4d4ff215f22be7a2be0108a082a,0,1,Tcodevelopment.com.xml +d66c1d07ddf8eef1a809b0c40b83815ea832bd0e3b6a6fa99c0af49d71b32e47,1,1,Teachers_Assurance.xml +686d302ec551ffe043988a5eda96e4bf5973b23ebdaf401c40d0ee46c476964e,0,1,TechOnline.com.xml +872fa19600d84d669e883f58643d21eaa1aa79fffd73cc63f12eb1deca6de7c9,0,1,TechTarget-mismatches.xml +c925b7818c3b2f8a2440e999deb5c1f156d488ef1d55d6e0564b77517b74af1c,1,1,TechVerse.xml +0e34171c067993cc756f58f6073b767435fa61d1241b1fc40b4c531f8ff6bc41,0,1,Technical-University-of-Lisbon-Darkstar.xml +041058b2cfa30630ce7863b511cac60ad6f12bffb7db7c064158d4463cf2bf40,1,1,Technische_Universitat_Berlin.xml +fa340bfec44c43f86207ca9f60d2b470bd94c4b4b2eb8886e58fd20688f4eea8,0,1,TelVue.com.xml +70b6adaf6c9bc160045df08164e8d160004bb31280d0e4b0397dc15581feea08,1,1,Tele-TASK.xml +6d505dbdf780e9107561308221f5e592f1f457e9621b12ead11663533432d2c7,0,1,Tele2.se.xml +5ddaeea1faff6f9fd577f7f16afc0186ca3620e153194008d51ab695ee84e55c,0,1,Telefonica-mismatches.xml +cc4942ad4838d473ab3298a049bff85bdefabb58edd758b987111430c44d669e,0,1,Telegr.am.xml +795a585b4772b8f4457901c8fcd0be1e27340d6e20d899b4eb7b4f8816688d59,1,0,Telegram.com.xml +e1fc5bdc13beff7ff34e11b741f3a19c1c0d0d78e820291f2fda05897ac569c0,1,1,Telerik.com.xml +7a1160cec6b54c012ab881841c30849660bbd7b05a827610c7fa4ef686698eb7,1,0,Telfort.nl.xml +24d43ee30f2b4a41cff1884988065cf8896acb3272a41a97ec13b5c33e43ac34,1,0,Template_Monster.com.xml +90d8cb4c77769dae735da60d72e3b84f57a93ab7aa48e7a01fe8c56c6edd7451,1,1,Tengient.xml +8112be0dc26553e6fbf96b5fc8f649635c92a3c7fc30ebd158d447383797b596,0,1,Teracom-Consulting.xml +068c6ab7bad10838f3256658455b0c882ee2d2cf27415bf6c64b2843c88011ce,0,1,Terveysportti.fi.xml +1a0f294d147c61084bca26e4d51d13c0f5abe9ae3065b7940718a9a07c9e1b01,1,1,Tesco.com-falsemixed.xml +80a2b0d54ed1eabf4ff9c4d5b2d7955a37a11eb7ea64736afefe5df15052f142,0,1,Tesco_Bank.com.xml +0bdd9de6f132176da1797d3ef1d413079dd56859ceb2941d363e9b312ac79103,1,1,Texaco.com.xml +0cab264afca5779881276b98ce5a5d0adb580cea04d2edc9a00023371a45eaec,0,1,Texas-Instruments.xml +7852e498386c57ca064423bd91ac2c061cdc69b0d5220b4475cebc0220ee7052,1,1,Texas_A_and_M_University.xml +501cf24c20b5944e72cdf9ca2922847f3b93a3690cc5a7e5e01be7bd0439f228,1,0,The-Art-Institutes.xml +773a5b373f466ee72a5c552e6100c3a2a76dcd52853a8fc8aac33f9e03292629,1,1,The-Business-Journals.xml +f1585d8c49cb634f499a564a2d05e17de79d20e60239838ef2908a0af3e96af4,0,1,The-Event-Diva.xml +80d1ae41a278db7b4ff0ebc18f7767ff62bb0889bcd3b36f25d20e6adeb2bb24,1,1,The-Great-Courses.xml +1d80b3f9223fc97c7ac1831cc522b5612049fd50584cc274563a3bdbeb1fd9a5,0,1,The-Lean-Startup.xml +78316b9c51671aef4a4627a944b7214c571f32b32ccdc03f14972a435820553d,1,0,The-Next-Web.xml +4c2b9a510b95f4dd85d039e37f92106befbc4313769107941058c4e0172e018a,0,1,The-Vault-Bar.xml +9b57af0e82c0bb2e67e245c66dad276b711ac193b4e2de95c104d72b380bdd8c,0,1,TheBookPeople.xml +fb9227ecb093d793a458ff52bfe79a76b3d8005f50dd173bbba33792b780aa16,1,1,TheHut.com.xml +e3637d3a583d10b55e00af82ce877ace90d2723cb82aa3a9a17df8dc2c0582c5,0,1,ThePirateBay.xml +398707f5013376b20a3ea329e82ee6e7a476ab7f07f00dc79456c805f0237858,1,0,TheResumator.com.xml +eef2e6549dad53d5a1b299bac1fca6444fd7760c83753854193c64ecbb342d2f,0,1,The_Bureau_Investigates.com-falsemixed.xml +9cfc917aed6ae985c5ba1ae46ae05f69bfe557915de4b3fd6464e635aedf118d,1,1,The_Bureau_Investigates.com.xml +739e66b04c9a5af038011293d8007d404e72821820a1e79f3663a68b7cbffdb0,0,1,The_Center_for_Rights.org.xml +ac7281798c66f642d911a05d2d0e2f01f254451e85a20f45a63816cc59ee9c97,1,1,The_Daily_Beast.xml +11319e7025f205267ab92752cf95740a51b58cb9ae6b392d46fba9fc6cf448a8,1,1,The_Drom.com.xml +6e6dc2a6166f6dcea7828592d5dd1e9c3ac319b0f83f20b90ee01e8cf921cf23,1,0,The_Gazette.xml +cb6933673ccc5114fd706e250a9198c8581ebffd405f0fe839537110e03d43ff,1,1,The_Grommet.com.xml +d3cad14d26c563280c4e79db4b0cf3861e3f31b33ca0eeaa23247d90c54d1599,0,1,The_Information.com.xml +93302fad4ac7439faaeede5bf618c16d5f4b566da61c55fa8333a0a7230f9e27,0,1,The_Next_Web-problematic.xml +b1cdc01ef33fd2f12c0e05959597fc420da308b364e03ab877ce6d85ca9678cc,1,1,The_Stranger.com.xml +8c22882ab50988affb25c043bedf30891600e9b01147c502f680981cf767ea39,0,1,The_Theme_Foundry.com.xml +192c7a558c80f5de13deb92fb4e194cf46e435a55413f27016131a33259fc2ca,0,1,The_Work_Dept.com.xml +3b89f9f5c32b514122d49ceab4814e47ef0c97aaa9aff40b468aa9387ab4b672,0,1,Thingsquare.xml +326ede1e13d0a578ad89ace621366155e7f89f408b79ac44b06649be18ad6393,0,1,ThirdPresence.com.xml +90c675ebf5b3bafe827e2c5d8c63e5b6d2ce67964f4275c74caeef2b879355dc,1,0,Thumbshots.xml +5c7384430e2a8498ee7650c8045cb2ced1f24318f6fafb4aa5795efd075615e4,1,1,Ticketnet.fr.xml +df293463db93d5dc463389a7df8fa0780fbce66adf464f1c1a0c60b428469662,0,1,Ticketportal.sk.xml +62bb7b01e3201ee67e66039114e8c24171c75ad40137c91f5a18e1d28cc72292,1,0,Tictail.com.xml +298330bca9f99c55c045c6aaacc513f9435fd9b0080ffed0e11618cf2fb8325f,0,1,Tid.al.xml +196e8b886586ee852fe896324643157d3c48009254fa4351eebad927a6985160,0,1,Timbro.se.xml +a3bc46589d19e9d694f9bea35551cc18428ce2f98841482a332c2312dd67470a,0,1,TimesofMoney.xml +9db7d3bda86ebaf938f4cfa084d270d03c123066e59f8572763f02fb7030322a,0,1,Tinder_Foundation.org.xml +380b22a2edf379e5c07fd2ad78a08eec59587685ed3d0af1462e9dba0bb8bbb5,1,1,Tinkerforge.com.xml +b7175de4d05adab926380c808c500136163bf0c5a254404e8ff21ff0c820168a,1,1,TinyChat.xml +2924ac1a948e6361c2623f35a730c8a7bd6b6192a0cc3867cf2e653d654a34cd,1,0,Tjoos.xml +1531eaa1067b3d3963d8e50104e17514d3379f4dd0c56b01ab934a74c7f57f41,1,1,Tlsfun.de.xml +5c1a30c2008fc80c0aefdcc559777cdccdaca7d8f3c4c95e5e2d0e238c8a56b2,0,1,To_BTR.com.xml +736eeb9e5e84ba51627e18d1fc4772582f48cae72c1f1869902e98c8c66808dc,1,1,Toad_Fly.xml +e092dbaae7609c030309c6b4fa8e509833fa522fa39660e7e1ec1fabaeac8dfc,1,1,Toga_Hotels.xml +b52667e2e9eba427ac0aa836b4742dcd8b393dc3c84a9c6a33295d44f521943b,0,1,Tokyotosho.xml +06292948f6ffaada00246a0c636a0518391fbb988861bdfad633af27925787d8,0,1,Tompkins-CortlandCC.xml +49e3cd62a362f46bf5ec9f889455c88efb9f9d5f854a96c476ce86f258e1022e,1,1,TonerGiant.xml +22be09653a0cfacd2ab9fc4ba5cc359eb30e5232e0e67023221953ea2b4b30ae,1,1,TopOption.com.xml +b75b3fb34aa93de7753e90173373e56eb02eaa3df6ca46adfc97e08b035accb5,1,1,TorreyCommerce.xml +1ea0854c281793e41aeb16fb2951eb5c24d10a497311613b489e45271b4f4f4d,0,1,Torus_Knot.com.xml +53edb1f24b82e87bfe6dbf9725ea58c151d56d01c93b6ccf402238ddf6dcdc6f,1,1,Toshiba.co.jp.xml +9925bba044436e099ef9a17c05c3a9dd980c74652aeb939ac34c94ea63b7df57,1,1,Total_Choice_Hosting.xml +564de255a2fe5b5ef4255de2e2dff1bae6284b29469b7c17d00380d21b9289be,0,1,Totse2.xml +24758ddd0781ba99a1a9a29e03011c29687c1b5f67dd207daa8d811ea75a4615,1,1,TownNews.com.xml +7259305af6c4290ae46de7c834ca0762784aab4962d66ab98641d750a83ed803,0,1,TracFone.com.xml +eb283cec83d4235adac15a53986ce71e8770d0cde0f91ba7279e6b6cb5fab379,1,1,Trackalyzer.xml +ab5cc8a1755685297bc40b4037f1277d7482417e04e5c520deed1d12e353c4d4,1,1,TrackingPoint.xml +721009e195644d5540c59a6f42ab2716e35722aabfd718b4dbf487a5f52601c0,0,1,TradeKing.com.xml +3f6e8ab2b5f0ed70138432ba3f0bfb91451404f1d1c361fcc625d070e4ac4f9b,0,1,Tradelab-problematic.xml +8ce8022cf79d4e12ff69b3bd4ad3d9cefc94a750bc774c6666dccd1ef6ae7975,1,1,Trademarkia.com.xml +33fe34b8b34cfe39278bbf256306a09c27ae0943883a0a037b6fe9dd92121893,0,1,Transact_Auto.xml +8e3bf949537422735fb6201093ec7a14842e44819fa0740fe1fa626eaa61df0f,0,1,Transformationmadeeasy.com.xml +00dd816c4f9e0a041f07ebf13af88e9eaa4c7c44adc9df183c7807a249bbd35e,0,1,Transformative_Works.org-problematic.xml +9130f100904f6c25762b32d755c566fe6aa588b19feb0defa4d3473687abbc06,0,1,Transifex.net.xml +bb06dd6b10f827e1ac23da17549badf7f17b97300d993618cc2e608e66328a1b,0,1,Transportstyrelsen.se.xml +86a98debc03d6f499891066d33f90a70bd855eacfbbd4d0c90f9a42e2a911b54,1,0,TravelBlog.xml +7740589641805a971f42b11b01a902297d1a6aac93f7f1ac546422fed26e739e,1,1,Tremor_Video.com.xml +bfb604fae38480027943a3037882c5528b368486efcdcff8ffb0f9ecb7cb42d0,1,0,TrialPay.xml +92ab3b2599243d5061be0b6ed2314323d516a7428db0b9d626c9d72ad81472fc,1,0,Tribune.xml +a3906adccfc4301efbc4cea0a097d22264fa09498b92e9ab18dbe4deb4f9e3e6,0,1,Trinity_Home.org.xml +2438a19009f61439104d77dce8c63f118c538313647589307aa3496d977ceeb4,1,0,TripAdvisor.xml +9d1f2028d622611c85867fdb9cce067898baf1b0c8b1cdf76382a435006dee85,1,1,Tripbod.com.xml +de005b963aa64c38345c6e74999e37867e4acf480ba1ca78a9817391e645eeaa,1,0,Tripodo.de.xml +583fe8b250539316209b382249de834765d3336b789e278a0290906946a33230,0,1,Troopers.de.xml +9f13abc038bc4708796c8149ab7a1ed9a3ad9ad1de438b1ee50addeabf4b1645,1,0,TrueLife.com.xml +cc353d51b4fa9b6eb6e627384ca618e2739233019f262bed49a4e88829a5b8e7,0,1,TrueVault.com.xml +d068f81127f1484bb4b0c190d455ee641f01a8fddbb6d3303992cc6e6b5339e3,1,1,Trusted_Reviews.xml +49cbf04c22069b4867cf2dc0c8045ffe051ec0d58d4d1999fc2fc97d1074cd9b,1,1,Tufts.edu.xml +de7344c2c6d972a368180b62f10774c317ddc037946309fae83d650d4ff4a538,0,1,Tufts_Giving.org.xml +ed6c9a0705f39a6116bb5846e82ff40a083eb3ce58530524fa2c53c34fa73b2b,0,1,Tufts_Medical_Center.org.xml +62a29c0411070865d40935c23e4b49d617647b4a7996250d5a97409a69ec3107,1,0,Tugg.com.xml +5f6902d3fa2b7788a4027df3ebeb27e3970287829ea006dcfe0274ff4b8c557f,1,0,TurboSquid.xml +bf1654baf8cb84aae5a32734e7779a06756a2e29cf28d765759e21ee1c5675c8,1,0,TutsPlus.com.xml +910dc09ec17c26a12b275fe2d1282e94a82fbf0163282fe5a5ac496ff9ecbe3a,0,1,Tv-Release.xml +b35b35365733082ecebdf86f03de9cd93bd738bd52a0239bb07d4507ad792b5d,0,1,Twilight-Laboratories.xml +deae2b1c6be69bae7b6ec4895e585099a2f5374b53776ed4f075d45f4c1cfa6c,1,1,Typepad.xml +1da05f6062123d8b368d700a96b0fbb2dc7baa69f14ba72716e3c937a49fdbe7,0,1,Typesafe.com.xml +9d3134a5ead87b0c73882c2fb945b4ab92ca869e86ea2d8e5b93fe8529eb22df,1,0,Typography.com.xml +7a670737c4553654c86e065057ee25d27b90472c143fecc08410c0014d408b79,0,1,U-Tokyo.ac.jp-problematic.xml +ac05de6e9b0cf70e70cd6217887eeae3bb4ccc15153f931d34342766fa116bbe,0,1,U-Tokyo.ac.jp.xml +d135385bdce6daba2dfa309bc31c7c871832ebfaff81f2c70d4e6fb4bc5e3081,0,1,UA.edu-problematic.xml +a7fed2aaf25d78080b3ec0d40308a403283fecde51eb4a85208fce48ccefa882,1,1,UA.edu.xml +27e5f54b8a4bf41f5fa918be6f7d9c4b78d52704aa6b1f7391d75f566760a76b,0,1,UCAR.edu.xml +49c96678bc86a99b01c12892885c4fcf38f81dd5ff32f582af605567f64fd5b8,1,1,UCLA.edu.xml +995aa7cdbe60994801ee5330b1ed5f89e56b12fa300fdd71deacc89cb1e21d51,1,1,UCM.es.xml +080fc622ff8332704b958560b9d0d692594c26964918c2bf3c496602568e761b,1,1,UCalgary.ca.xml +ea8f9bf69a5d5029ab1c217760e6e27c3b5a4e9672ace704a2f9f7d8332bb497,1,1,UD_Media.de.xml +609b7137afc6337f00bbaf79031480a007ca9f78079a6f2e4a81e1bca8173090,1,1,UFies.org.xml +dea8b7526b42b85e25f40701a5b312661473a090bee7bebb61f49ee99a3ee654,0,1,UK-Web-Solutions-Direct.xml +1c2718eddf3aad2784493ace750680876d5388690df4bc5bb12461bdd2e2b867,0,1,UKLINUX.xml +96961aa668492fd95b7a45e568a5388a77a045d1a965504e3f4c5cac64f72426,1,1,UK_online_centres.com.xml +1ee8e426a02b2815dd6a3bacc4e8634e75b799bb770257db43e675ae1bfb1aea,1,1,UOregon.xml +907266beed4a1d669f500978ddd09c3766b1680e654181dad0525c38e5cbea78,0,1,URLParser.com.xml +4346e6ad0202aa001cf66c5efaf1326a85c87d9bd396cd1a4c80eac520510db8,0,1,US-military.xml +7b056903a4f7fcdc8d3d1ed3a57395ada26cfa168d1a9e54829caa29df18a670,1,1,USB.org.xml +e8405ab7de7e35328c149fde0221a4b584545b98daf10f5cfb5f971a53459403,0,1,USENIX.xml +e4586a7c8a445349c9c401dfa92b39442b9f192a4b41ef5282bc0021a82e3483,1,0,USF_CA.edu.xml +8c8a8154bc356f1026c6e659f9ba7a03ed3f31e50db20467d006bddc01827de1,1,1,USFreeads.xml +37eb6c467058dd4c92fc635e6daa2c37fa7ef6c2d7c24996fafbde8fe43071e6,0,1,USNI.org-problematic.xml +676d7b6466eddd7c4b84147c9035810f041067ca01a8014b6213dbc78b23b864,1,1,USNI.org.xml +440f3a2d9cd10cac52a1f6f4b1772df23314784496ca885e1036f6e4c319f48f,1,0,US_Nautic.xml +7eb29ac9b32f64670a1383ddf5af47ab5c0a520778a95a691f1c0aafcc629eb9,1,0,US_Patent_and_Trademark_Office.xml +5729da227cb793cab2e8d6e8ae8959f7fe9331a3232249de3150f8dcc9da657e,1,0,UTSanDiego.com.xml +977266102db9309a7d4170b34745445bc2847c67f8193af518c396ccd96eba71,0,1,UT_Dallas.edu-problematic.xml +ff2aed5082fa7812f6c0249393b7ef2d75b9b97fff27ee0f75315c7a458a7adb,1,1,UTwente.nl.xml +356a280f3948c07b7b730b87675e84c63439e43696f295a63f1a89e2ed5aa44b,1,0,UVic.ca.xml +0c8e6b3534cb476f07b87f282cef2ac6b42a3faed84185a85603d04c6631ff8e,1,1,UWinnipeg.ca.xml +db0b22a14e4f5c66f02f963504cdcaa35e78ed7f39f42e209b3e0a9b9ba1a593,1,1,Uberspace.xml +83ef1c74e728e31f46d7c92a9987fb03960c81e1056291d01b6f4cd57f9367fe,1,1,Uhhospitals.org.xml +254e23a8560db790d5da875d282c4364d6b9004388e55cfb8448ebc4fa3aef8d,0,1,Ukr.net.xml +dae919c3f6ca4e00376c16f03704d0da1b907a19cf963af16a00b2a813c96c38,1,1,Uline.com.xml +1fb81f92216ff932aa6f19d86d881e1787d534499a3de722e4422a269e346e35,1,0,Umbel.com.xml +abde55d39d54436f83a19a822428de73e001bc42b5bf7a6846ecf331b8786696,0,1,Underwear_Expert.xml +bd135ffdb815d31e79e5509bda7a2a677a86628cc655ca65c214de1b20bb4627,1,1,Uni-Kl.de-falsemixed.xml +dacf0d738a537ef348d793f0cae29cb8a6767c63e4d352034c73b1ad503936dc,1,1,Uni-Kl.de.xml +30d8208caf67565a05fffc16600350660f0a51f6d95f84a040b00a9dfbf35370,1,0,Uni-Saarland.de.xml +bf4cfa2104d71e0ec0e3e930c0d1e9129a08bce034bb8eeaab0d7d12fa1d52e3,1,1,Unimi.it.xml +a937024d9043a23d94d3d72c6882f07b3961be52ee04344cc3c63f26056138f4,0,1,Unique-Filer.xml +1293236f4ba0c9ee7f91d8c5818ce140add73b0a4b3bf5b0905e02e8064b3e3b,0,1,Unisys.com.xml +57f029555c472032caeea71fd0eb7cf643449d1dfbbff331875b4f10222ec2f9,1,0,United-States-Department-of-Energy.xml +44cc911a17c526d1a8c74161d9d8a8104bd9e4fc2a2626d35a85739c0b7b880c,0,1,UnitedDomains.xml +c765a715e75a8238ab6e70d332c7f4a2e714adf1164caf136b66b5f6e754e2a4,1,1,United_Republic.xml +2f42e894be064592af7da170cd603d831acf2d10b0ed05d618b606f1cda08c80,0,1,Univ-Brest.fr.xml +eac00803dc242cd3e843b8c8af41a0124c77d59a1287ac6a729d4716ec540585,0,1,University-of-Bern-expired.xml +930135e45407a24b1740c05dc8bbdc963991d4da2ec3acc022b3987bdd097fba,0,1,University-of-California-mismatches.xml +8c7c2ced844de3b70117b7f7c122c869a969beb3b271c7d5e2090bc1c531079e,1,1,University-of-California.xml +7fd3d874bc7fcbe51137ef2294ddd5be26f4263b66effb0be5d36e80f947ad79,1,0,University-of-Colorado-at-Boulder.xml +f89bc86351a2ada00395b41e4b0da61afc5fc5173d7bde7ffff24f463818b909,1,1,University-of-Delaware.xml +a51b15e6ba94249ba53093ba41ced19ef790ba037bd92e71576e8a8398db2a22,0,1,University-of-Florida-expired.xml +2f5ac83c903640138b112d1d93ebcb07fdeb3ec4accedd5713575aacee7cb0b5,1,0,University-of-Groningen.xml +91de4dbc5f2a243b953901c0fa838f4f6887c7710d744e80cae9457e8ef0d115,1,0,University-of-Helsinki.xml +1d9da1c02f10316311989f868fb5a6a1aadd7e986a2e9eed25b4d061627c492b,1,1,University-of-Hertfordshire.xml +fb45af1fb5699cab6007d287aa55ed1977fc6ed96e508ed1b9fdb424662d90cb,0,1,University-of-Kansas.xml +963d8f6c9de69041ea1358f02dab0a26d8da98bb414d1a8d23eeb1dfe16ed004,0,1,University-of-Manitoba.xml +96dd94cc310e936db76b39b334266d0d30a1679ddd1454f8a839edd3a74c701a,0,1,University-of-Minho-mismatches.xml +c2f53734fbb96b512f068f719a8a3ef75bfd817273ee5b6f47ad97d34e28ac19,1,1,University-of-North-Texas.xml +631131e5eb30ce8652a864956ccb34accba494d9848e5cab91ab8a64d054ba45,1,0,University-of-Pennsylvania.xml +0ab02841a6ead3924af19e98e079cc70a542e0c5c2b22a652846babbc9126383,1,1,University-of-Strasbourg.xml +71d54122dedd8ad1d74e9ef5180aedf5e6cb470fc77ea84f6b5a61f095665b44,1,1,University-of-Texas-Southwestern-Medical-Center.xml +f9eb2c0b78dce339b2999b544ae922ba97cc5144da81cc56e2e0f9e746cd8e01,1,1,University-of-Texas-at-Austin.xml +7b3bd50f223a278de2b4e84cff987ba5ea36aa9a3b3df1d4d97fafaa20791049,1,0,University-of-Virginia.xml +ed415b19e0e0588a60d6dc04924c1d9e38d3ef0b5f99cf749235132684e9092c,1,1,University_of_Arizona.xml +e7685c1277c2f651539b00195e143bc7fc60979f5eb7f7c293e1caf9d4e58eec,1,1,University_of_Bath.xml +63aaa16ef17c9cbf4781fbe89e5072b7f26e6baef4407383f2b715f68422c100,1,0,University_of_Cincinatti.xml +bd8a650134717d6663fbacda4e3d6566448a7d8559997bc4250cde0b97c37d95,0,1,University_of_Derby-problematic.xml +1268c589e9541f96345a70e088f7de08a8bfb822b6bea715218f5d06705c35d5,0,1,University_of_Grenada.xml +6642506b348a157b2fc8b05fec0c40a6c21de1b6f82fdef38eaa1a4e79eb2588,1,1,University_of_Iowa.xml +3fb888e05ab2904735bac34b2a01c4f80092692bc035c4198dd12055f53cb817,1,1,University_of_Louisville.xml +ce6883479c26297a48c2cdea26cb8c3c73fd972b03dffa98ae58bd65bd63f221,1,1,University_of_Maine.xml +7348f47d6e380a9db30b1db471ad9789f8626873de30027ddc17de72d022fb11,0,1,University_of_Maine_System-problematic.xml +bffcbe68aafccead956b6c6632afd2de03feeb9c08d6b468ddca372bb77abe38,1,1,University_of_Maine_System.xml +e1515eab7c49ca3ee3c60e48cd94dce063981c37da4ae5b5b5f70229365249db,1,1,University_of_Manchester.xml +1fb1f0084da48e4529081b175449d4f1538dd7414e453c9d01ea3c70ef0aa662,1,1,University_of_North_Carolina_at_Greensboro.xml +e53026669dbd17f842a6d23486aa11dbc6e30295e682e5120f8d579007b6d7ec,1,1,University_of_Passau.xml +261b66202486f2496e38b246af0d33207bd6cc84831026e840ad13abf364b9b5,0,1,University_of_Rostock.xml +a8c9e1461af5df7c9c40941920372e0bc35028e41dd7d8a00d9a1d927bbd9ebe,0,1,University_of_Salford.xml +bd8ac3d00a5c2dad7c95051d88787288e4da87f7060a07667fd02ad3e657f482,0,1,University_of_Toronto-problematic.xml +322408b567a94f9851873cc21f1a44703dc8c15136d9d50f383797a4f1909d27,1,1,University_of_Toronto.xml +7700fdecad6ee5f90f9a7c20864cedff85fe76ae2fc41752f1fb1c7d3d7a876a,0,1,University_of_Tuebingen-problematic.xml +a0b9cee829cb6f80e1019c93d840453ab45963bcf91037932c7b08efc680c549,1,0,University_of_Waikato.xml +b3f88f94bde324c4229ee0cb6b41471a5ab30115bc84e145ee94e5e80edb9d46,1,0,University_of_Warwick.xml +7fb37f17b8488e80198cde05724e9d3d6da3607d8aa6be2f81a8a7156d28d65d,1,0,Univie.ac.at.xml +04f4e0a5aa2958d5f9d095cc0148d118aeede6fe8b452d0ce04deb2d05b6ac38,1,0,Unix4lyfe.org.xml +576febcb2526052cf69c26013f26d075d466d8c57ac8e34d5aa5c60a74f3d1b5,1,0,Up0.net.xml +82d9a9e33fdc00692b3f32910877b27fce81ce6acc6b01ae16e21dd70a29af12,1,1,UrbanTerror.info.xml +0459389c2f8fa05a34ad3dc433d7cd0581dd707c79e49429d5ac0aa437f2e7e4,1,1,Us_Magazine.com.xml +647434d2e73a8e2487a70f4119136be4b5b89886e76e40454907674bddd27130,1,1,Usenet.nl.xml +37253ac964c42bb2b910621759ce273f910ae0f63f7497db27d5c900555d2a54,0,1,User-agents.org.xml +624acce46170f956a165171c63c53ceed4292bc051035065d8f5c5b803cbd96d,1,0,UserEcho.com.xml +572e6c6c3fe2566a715dec30b294a7f34c2e2a9d54a5102f280d5e7b640288c3,1,1,User_Local.xml +737b235408a8cec2956ac513e3fb5555052b8998d8d48a1ffa90f230bcee8e64,0,1,Utica.xml +ca9050e78347c6536655c413199565617815b1041ffd409a5a7b80c35a34e6a4,1,1,UvA.nl.xml +99a979f836e3af45cbded60128ef9c83ca449dcd3ac13695cd75390c1748877a,1,1,UvCDN.com.xml +afba8b9c6e64ef1168b1715b57188e6c89cc6c9e1873a0b30736c7d46830d4f1,1,1,V3.co.uk.xml +194a500967109f3650e5c9ba755773ad1cee13caaa0cbefef550290d22cfac10,1,1,VBSEO.xml +1281de78bff0eacf94857ee21a0721fbd26d8cb2f0faa190c9a5a2d813d3c29e,1,1,VCE.com.xml +02f195e0534b84f901ed70ae7a9d857a25a6b97dc1c97dd159131c9caa8298c7,1,0,VG-WORT.xml +248224aa6eae82843e074512ebf52e4bb7134b14410768fdfff5cfc3c684e52e,0,1,VIPserv.org.xml +f83f5c1c242a7f0c265585689c1c625d357346762617ed2b19a96d108a4dc1c1,1,1,VSCo.co.xml +51ab02160086d1d0ea7a8f03e7d7f2e1fbfca841b48c29c23a1f956547ddbd0e,0,1,Vantiv.com.xml +86dac465019aa272c1d7231c6db0e96c17a64e805265e25cb7b4690236103e51,1,0,Vara.nl.xml +4bcf9831e9ead34160a0f5081787288097fc34a7731e5079d485783f9a2b806d,0,1,Vayabe.com.xml +4c9ec656775f15d9d294e51708d89c998cc0747d426effffdab33b2cf18cd442,0,1,Ve_Interactive.xml +25f9fb9ad931eb2633dbf62a790dbef671003bedf05ce0c67a776b430eff60e3,1,1,VehBidz.xml +28e082d445b8d7a2958d5302733cad7fcbf9f471cb6e8a3ee3a218cfe945add0,1,0,Velaro.xml +03142920bcbd18f915c755c8a6feb9026a44156731240b30534a05b95fa051c5,0,1,Venuscafem.com.xml +e12b6d5c3eb3e1115119c50070ef4410f6a1e1bc3dbfc9791bb77cb6d82fc52f,1,1,Verio.xml +10eaee1c4dfe5667a67587aed27addad4dc47b3433137ba1a04e50087e367b2c,1,0,Verivox.xml +2789e066bf6ff7755a8656f6d0a5d14fb16a35b40b59a9ce5502398b87ca32d1,1,0,Verizon-Wireless.xml +eecd0f86d3976af4bc45b163839875219eae631d4620da357e43ff7e62f9a8bf,0,1,Verkkouutiset.fi.xml +cc4ff6781b3b651943c483800500389937ea92a16b00110f6d5c9f45c44ae100,1,0,Versus-Technologies.xml +0b2034c782d1f7de7c5c6e8416834dd312d437a0aa984e67fb21399667ebdee8,1,1,Vertical_Response.com.xml +e99551855f8ef5ad0f4f728e46fb5a4503349c443b6a065609328d7c06fd1cbc,0,1,Vianet-Group.xml +99311ff381a3405c395ef2792129e07ae1d9b90ad58d6b4e2f4a08c53358fe66,1,1,Vida_y_Salud.com.xml +dc3cd4d884d6b0380ea5542f768e901c7a5f33e953ba11f49f3c5ba65844134e,0,1,Vidarholen.net.xml +b9a96bb1e88431f6f508e49e1d99303ad56fb2e9beae2b798f019de7ad65239b,1,1,Viddler.com.xml +0a02a181ce944e64fe86ee04f13404247e58d11ea4ecd8dc34767110033fa3d6,0,1,Video_Interchange.xml +3915ca53eeab6ddd05064ddb9138d88de0e7739f67fdf66a67125b9d5830a20d,1,0,Vienna_University_of_Technology.xml +6c277f1037e46a2a059a8225c98a2f813e5230cc48477cc5b2a1d345db77eb27,0,1,Vindico.com.xml +4a290a60e295a9a2875c62b516f4417bc6c889a3a50be878acbe5a4f064769b1,1,0,VirginMobile.xml +f684638888b331ae7388ef7261ca4558d1cfa293cb6df9c0dc71b4dcbd3ccb98,1,1,VirtualTourist.xml +dbe019114063e2c60b5b435f84d09fec9eaa2780607cf1e0f36a339e7cfbb414,1,1,VisaHQ.xml +5e9fc0c2fa0ca21f0859501a1e3745231351c916b9357d7e4d5544a9c3c98314,1,0,VisiStat.com.xml +67cc534b0e9d0609197c2b306df791155c4fec3d7883bf170e5c972417a94f36,1,1,Vision_Art_Forum.com.xml +00e3f5a241f93c1e5360b76113469ca7da9b076d49b3a1ddaeda9974935886b9,1,0,VisualWebsiteOptimizer.xml +795e03ffcc375b164646923c72ea5afbf313792e2fd583095a0292d3e4962925,0,1,Visual_Revenue.xml +75241e3d48e2578f64e46c1f39f4f412ddc4842f0990303c345b99085c18e16d,1,1,VitalMend.com.xml +17f1c78d50c87022ca1f5898c00fb9e43c7c14237916d34135694a41f7906c2a,0,1,Vital_Gamers.com.xml +c6920ad0394ef6eb3d8cd9b9d0a5e7cabbb1105a6112acf5f9bae60e97bbe2bb,0,1,Vivaciti.xml +d8652363747589e0cc4a5b880150b22dee3297bb2f869e7b29a63460845fa6ed,0,1,Vliegtickets.nl.xml +636420e195fd3296d6a0fbf1aa2af10402c50fd22d6c5070e95b87aa62784f08,1,1,Voices.com.xml +dbaabb4bf10ca0694445404fa95fa7cd83ab885d560430dc702cf06bb4413113,0,1,Volatile_Systems.com-problematic.xml +a0332f0bf80ee5d4c420c7e4dd1cfb3b0c509a510caae1711dfee040206be5c2,0,1,Volotea.com.xml +ec9397d0213499cbc4dae60b3de338b64aa03aeae205a111d2442b7b88498db0,0,1,Volunteer_Centers_of_Michigan.xml +e8ab747c2c48c350e01e548b2347aa6d96d2c6f4ffad2547a20af7f69075ff8c,0,1,Vonage.xml +a117ac9f7b8795646b325f5eb086f08c07fc84618a85fe91af96a9527d964301,1,0,Vox_Media.com.xml +dc251a155c574082098226745187bf67f565df6e3454c56d1cfeb3849c895b53,1,0,Voxer.xml +08c7f617fb35b113d467230c0090583584709376901b026e6775840dec8c93bd,1,0,Vsexshop.ru.xml +c4ba9f0a62d433fb9c96fa59cb49227da94382bfe1a0824c59acb53df7e8cefe,1,1,Vueling.xml +ad403876ea5fa23b4f671bc9e3bfbcb1874b6333780a98c1a4e1cfc0eb960cec,0,1,Vungle.com-falsemixed.xml +712e9c11fa537727065fc17317b376dbff0841191976892fbf193cb53956d898,1,1,Vungle.xml +f1651a48bdaad9f31cc77e80136abe27ffcb9ed903a322fc915815f524c140a4,0,1,WD2go.com.xml +f4f8368d94081e80d2dddbd1f5e8da02883d0a6656d7d23b17e09df9a234295a,1,1,WDWS.xml +72a7669b29bef1809261b2b6b98b8398424646be1d1b67b956d1503a3fd03562,1,1,WHMS-FM.xml +ed22ad03a82abe2247c198290494e6b90c1b93eefa050d66ed0b5e1759fa27db,0,1,WHO.int.xml +5065006d5171a62cff4f927cbf17959479e9a88d39bb4604dfc31bc0f0265318,0,1,WOW_Analytics.co.uk.xml +9dd9a5720a1895710d5794a11c762e4fc16b0deeaa43a806962bb6c8c39f7fc5,0,1,WP-Engine.xml +c5112a2a9d8b7eae6e30545b6ee7e9d0a30f9c087bc7b761451e81d9916fc57a,1,1,WSO2.com.xml +0601000b056c8d7de6c0cb80720f2ea5f7cab0a1011c94bf864532c51a148bd6,1,0,WSWS.xml +686d52b9e887359a9fb2a3f6eede8bd81fbbba5a1b3d89935e85c4350883fca0,0,1,Wagner.xml +27404357c723335a40fff088677c65479e073c10b4998506d2e74387d370b113,1,1,Waitrose.com.xml +f207fc4292023db15237b03f8f5995f5c9584e455d788dcbcd657f9a07fe934d,1,0,Waitrose_Direct.com.xml +683d274e1fa8a18fd73448d94c4477050828c653cbf8c5196bf212046bcb6943,0,1,Walder_Wyss.com.xml +8a08efd9f436918f1558eea82c41cfa715b27a7ebc99c8e49c07542a92132620,1,0,Walgreens.xml +5ea94d4f904b6afb84767bcf3a34ee6f91013b673284cf424d67eb09216a7b58,0,1,Wandoujia.xml +490f37f964fb9bd7058bb7e2f52ac06bbd076a10428097654ea263efca37f629,0,1,Warner-Artists.xml +1e26f33749735e34741aeb8c24b83694092d38f61bd183b7b901cbc4b7aa8385,0,1,Washington-Post-Company-mismatches.xml +2720b91d15f91e446cc3db1e764a500531fa358673a978d012fe96f766757951,1,1,Water-Challenge.com.xml +71bd62a4e628d4b7c81a282740fbd4a583cb768f21d7d78a815308bba9ec6c03,1,0,Water.org.xml +345b6b2fae63c61a265a9f34a768f81133caa068af17f61b0a82066f02da1777,0,1,Watsi.org.xml +1a1e4cb2d91932e0f0cffd605685ef4832d6799eff8507dd97541f2002001df2,0,1,Watson_Institute.org.xml +52d9cdba31649b9d41912d38370925a9e4c794f6728f436279628fa9246facf6,0,1,Wazapp.xml +0b818b88c798284cf79298c509cb9c22b7bfbbb1a9a2f8168214c272781633f2,1,1,Weather_Decision_Technologies.xml +cb4cfbf5a7dd4dbee227dbe806a6b44b7cb7939a5f41c45e5fbacd7cbdfe5117,1,0,Weatherzone.xml +af5d3235f7f19281f16e236425ecf793d15ae89d5278a12f02a3135bd93f338a,1,0,Web-servers.com.au.xml +9bee3822b846148f1ab13645d332e7d528edba99136159c599f6c91c077caa78,0,1,Web.com-expired.xml +af9750e35db542ad03022e8ae5b73065aef4db2aa1a6282597a86180aa3276d4,1,1,Web4U.xml +7d614409e9e5c1a7376193e7aeb5950c05b532cfcbe43798148117dd94d4c5d0,0,1,WebFaction.xml +72226cda0dc9050fa7c87ac0b8f99ffec01dc23f4a661d9bfa7c5193701be267,0,1,WebKite.com.xml +08e726c154569add23e4cb12e8cd8a50626356f91f2a314e5ea30b1f740db4a1,1,1,WebProspector.xml +fdcb633ebadb7b41aea3f5de3d3b0953dda6fb82a6a8dad164b026e93481d39f,1,1,WebShopRevolution.com.xml +0b8acf849766096236f7876cf987e5da402f504ffa1eac70d416b07406b3fde8,1,1,WebSocial.ly.xml +d85201be8c2aa6a431cc5b414d7d51d61497ede18d3fbd1dac4c2da2321be983,1,0,Web_Hosting_Pad.xml +8e1b8e2644fbc5ea473acc74abe12256d8d73f48272ea58a092eedbb55c64e21,0,1,WebhostOne.xml +5476efa330deb653c29a6a507a11c146301f583daad0a8346c880b96673b27af,1,1,Webmagazin.de.xml +0163c1d1541570a0fb9502e3bace76baff044e8ccfade9fdd4a32a469d6cbf7b,1,0,Webroot.com.xml +dbcc578640c655bb0c695ed4716f13a9fe86cc90b044caff1a3ea7ed0dd7dbbf,0,1,Webropolsurveys.com.xml +2a440880c552f3116b2f466d4e831d12c295b8cd8defcb4a42e56324cc839936,1,1,Webshopapp.com.xml +118ee8f7c8e74a35296fd66559a67800ac3e8bea5aba895b70813741955b5204,0,1,Webspace4All.xml +bc4f58da915f1ffe725f80933f85e072c95b43b0841c879e0db9fc2e3773c4eb,1,1,Webspace4Clans.de.xml +e1db152bba8aafd77e0943f58ad90ac2f8f8434c46db0f875ce8b67e70509180,1,0,WebtraffIQ.com.xml +3b00d11eb23e281b78d953139aa17e5cda9e6e581be328d2f477795bbd85582c,0,1,Webtranslateit.xml +cbbbdc6fb132f2cce52e3bd5d7010ac0c6c59a5c8e1f002542b76530aa712ba6,0,1,Wego_Health.com-problematic.xml +8edb6acdbf3d70453a1082ad9cbb2b3301dd7a4a0e8aeb391fe10aaee498545e,1,1,Weizmann-Institute-of-Science.xml +5521b2ce5f7e898bd3ea0d41fdf92bdc76c7af51509e957e7a588c6b8caafb06,0,1,Welk.sc.xml +14de83ba384dd63e8dd89f465424d81fc6bfe8f69962f348a5d456aa9d713e8a,0,1,West_Orange_History.xml +4ae3197a0f427caf0222250d811f751f5020e591719b63f3bc5e3e385af14c57,0,1,Westlotto.xml +ae329e6dccdf72e9be85e53412a7f7a5a53fd44ae853a3e77a20bfeb506b7ea8,1,0,Westoxon.gov.uk.xml +a8ee7b73785bf6447ac322a7af90fba115d2e75bd6a0ef6e7a90e387727b3035,0,1,Whamcat.xml +6752c99fd0b439b67c13d1ee1063aad8dcf1eeab6e963e406d5a7d6f60af26ab,0,1,Whatbox.ca.xml +d7537f7e21858dae64562a4f7e64eb14ad7608c4cd25e133a867f51bfd3a0ac9,1,1,Which.xml +29211dc5f2d57c9bc61b7b06716d49200976da7aa5bdd47278557c373dce7f6b,1,1,White_Hot_Hair.co.uk.xml +f5fa1d6e12185fb0d704ada571dcea48bc08869fa2164ecdc5f5ab846888d88c,1,0,Whole_Earth_Lectronic_Link.xml +ce809b7bfb8a875feace606a959feb0c461732114e07338c99e258968c591b4a,1,1,Wholesale_Labels.com.xml +230a483aa987f21dbc5a05091cf8551abc09c10b1c540ca8413061dd68578719,0,1,WhosOn.com.xml +10f17a912f9e030ca1c9c9348ca6335939d638f0e14331165def15e6b14bea48,1,0,Wiggle.xml +eed9dabd0f3c94d3672ef8638a276da0ef70bdd31c3a170075a161984f711e7a,1,0,Wikispooks.xml +abacb82abb4afdf07777ea5f54f6ed6bc53e344a39d61dd7c2223eb41a00d636,1,1,Wiley.xml +28d055e416728d3e566d13dda33e65237ecf5f262d2c6c62c4a59ee11ff83a57,0,1,Willamette_Week.xml +2a13f6f7f6baa4dfa85c46ddb205c5b4dd5c9f20b736d016668dcc4c9caa7414,1,1,Windows_Secrets.com.xml +a02a9ba57f217affd4ac0d4c5f2e5173a605af78d0bc5cb8d2e0e62e9b3ea26c,1,1,Windstream_Communications.xml +32f6f0cc30b35c8976e18ca4ddcce03605753a93b528a5c2a1ca2d30a472d5b3,0,1,Wingolog.org.xml +3f710d3b7e4222e65768e846825a278130b3648d785354f2cd900cf8aa4c3909,1,0,Winner.com.xml +0c730c529f3cd69f7b467d504ff460ca46301660b1dcdd88ba8300d4ab7f1d6e,1,0,Withknown.com.xml +e22b3d745136b4a31c7b3f3a8f65c77a8721c1afe5e2729c6cf848fa07ff8687,1,0,Wolrdssl.net.xml +c0db25ec810ba107b136de619afd22b9a0ce8d5019e08be5247501fa7d3cedca,1,1,Womens_Health_Specialists.xml +69427086023cb8659815526a6188f67b519e979df97998a8ef78e590491da187,1,0,WooConf.com.xml +072d4bc8ac964f1db9fc4b3d1113dbe48d854b975c89839f3d5395226fee2b33,1,1,Woobox.com.xml +9500afb5ea51aa0371714903801089c740a7955bd157c8bd6001ee5a3b2fcd3e,1,1,Worcester-Polytechnic-Institute.xml +92fd7c961a4c484497a8ed726fdb7fd9a41968ef735746fd08457c37560bcb75,1,0,Workable.com.xml +ee8ad00200a94e47b5c9f1552f83a87c7322a0632d7c29ec2c6cdf42edad6475,0,1,WorldOfGames.xml +86a2e82a42eb0e970bafcb75d441c6fdc7d4dfe2f194f3f5f09a63afee0718ca,0,1,World_e-ID_Congress.xml +6b2fcdbb1c045a0c1e4ab93e7732fb9b845d97763b4633bc836c46d0fa68ff49,1,0,Wrapadviser.co.uk.xml +a2668cebf91bd8dde11b73e669c66f440f700c42243f6208ecdf3debcceac65d,1,1,Wservices.ch.xml +1ed6357a0bb2153b9502ce2da5335e3d0d33a158a40570fc7bd40b6da0e54c5d,1,1,Wtop.com.xml +6c1a71abc06b206b2553313564a62d2e4f0bc6a5754a6aabcece7ef4748227e2,1,0,Wufoo.xml +07be9292aa9ca08d70d90978165e5cb8b2c05989adefb5415f8f42b8a93bf799,1,1,Wush.Net.xml +35b9f9fea8edf91132dec2e801b084b173a58c519fba894e5968418d6e35fbab,1,1,WyzAnt.xml +26ceb3ed2032542f2075db396734c4cb25ae58347dc7c780364bb100d198c2fd,1,1,Xetum.com.xml +4d1c9f4983b197a9641abc19de6504d18016dd24ac9175dca499a9e0f8918348,1,1,Xg4ken.com.xml +645bbf60775e6f22ed51012989302f79d66c599b6b17871b883e33861f497a4d,1,1,Xing.xml +b925930748b05e603d05bbad9b35c9ada0a990bfe8e44c680ef5838f5f56de9b,1,1,Xperia_Studio.xml +007ed995d2a01b0b3e02ea8ea01cb085ced95ddad059370171eb6def4f584df0,1,1,Xserver.xml +a0a5dc3a7228f73e31ff237e89d46f6d9024a162fe2ac4c04d60968f11d0504b,1,1,Xtenit.xml +033bde8d86b20991608db24d1854b95a54fcc5d4b072c26a0c3e78877283ac43,1,1,YMCMB_Official_Merch.xml +877bfd008b92154e0bf7b5147d1f41fec35b98f8035ccb91b263c2bf12d4b06f,1,1,Yahoo.net.xml +da2fd160f5803ed73336a0fcd8df659b18857c624b22cd38b286edef13e6c73e,1,1,Yahoo.xml +0ae6d35db343a943f6c54011416bbe796435a13c894b5a719d1adc0dd29666e4,1,1,Yandex.st.xml +60b992138d369e31e85ae939ae0b8c646799f15004d51d8a9b0cee042e6f01ee,0,1,Yard_Digital.com.xml +4684c5eb2b3e908ba1df47e631a05893af0eede30bc216a2b8dea46d2a78d509,0,1,YellowPages.ca-problematic.xml +b79a6f7942d60a42026d304ecc887e0471b7c96b27698c0a815f5892e697316d,1,0,Yimg.jp.xml +e30ef33bc99dda8ab603adee29b3d8e5c06a4f03e54ca5945c4756191fea41b2,1,1,Yottaa.net.xml +4df0da0257fcf4446e697afc9a01d46babf709f62d1bf6ebf2c099392acd7b69,0,1,Yottaa.xml +e5702add6d485cbf6b018ea01bbd171656a5cb624d2ac685d7e189a373ab8812,1,1,Yourhosting.xml +60cb1e358b417c0f4f6836240fbf7ab8356563060e09707ed5c5492b91e9243d,1,1,Zacks_Investment_Research.xml +58d2ae044a28eabd58e291233ae948d32e97c42c8cf892aeb2deefe4b4e2a21d,1,1,Zappos.xml +972b3ee4c16a24aab20cca8dfa8399b9353b8a2e5ae04388a24ea4398a10aa9d,1,1,Zendesk.com-clients.xml +7c12b054111110d274fd3955b238c3c544d8add3805aec8b854d02de700868a2,1,0,Zerista.xml +1a9195d25a90cc91b40b8849807f44232c624957f6e2f7558f0b2a8bf0732dc5,0,1,ZeroC.com.xml +1555227474489fb63697ca75177e3558119df8b600b1409d57e3b577ebbf9c16,0,1,Zhaw.ch.xml +26f56ed3495ccc23c923a63027caa34baef30311b4ddc96994297734293a4e9d,1,0,Zissousecure.com.xml +1bd3ea0ac5d7e83747e15c8f53558ec863a930f53467de80e6fb2c8318ccbf51,0,1,Zlavy.odpadnes.sk.xml +9cd38fa17f1cd6833d79cf92cd572c624c70f933e6fc881e52c92f486137b270,0,1,Zocalopublicsquare.xml +618c143055176140e5517088535d1ca18e01aa1132adc3f546cf5f28d4f1f655,1,0,Zoho.xml +647ab116fc936ea3096d11681a6105832fc48cbddddb8e105d2a319eefceb71a,1,0,Zoho_static.com.xml +54f30ba3843ce2be5355b1259c28f6ffe7b3c9feddcbe0de95025bc506e913cf,1,0,Zulius.com.xml +1e1a3eee124780dc325850e37cbe518f2ddb7fe35d245f00ef4e11a4abdaa67e,1,1,allAfrica.xml +37c5f0433330fe4c2820d535944f85b15cb868cf41789490373ab03548516068,1,0,autotrader.co.uk.xml +788abebdab63cc22f25ae5355e414c59ba172eb8398c4cb4068a984b993891a8,0,1,b-linked.bbyo.org.xml +91bd48e097061265ae45976d057a045d7a8cad9056e27863cf2a9f83a8538128,1,0,bbci.co.uk.xml +9759911a6cefdae952ef0a3dc425e6f6c5983a783bcb287f9c21631810442357,1,0,bbcimg.co.uk.xml +c65218c1ca967f9407d41e68d3c1c678985e2e566e4c67fe407ee052c499abf8,1,0,bcebos.com.xml +bd0efbba30261e92f11877fedb766e52efd5a9c7940b8db5db84c9096bb2ddcc,0,1,benj.cloud.xml +f065925420ec63800dcfb7b402f1de343c87c37cba1c7dfd20ee956aad8d0dab,1,0,blindseeker.com.xml +a914aedae4c3ef477c7d49a2d8657d51f774f4a43f9c32b98bf0a23245f9d894,0,1,blockchainbdgpzk.onion.xml +fb3197e4ecf4999eb193dfaad46f0bc7dd2cce63d703ef7023b773e566af9310,1,0,bury.gov.uk.xml +318dbfe8f4b7b7a37f1b28eec7d63c4c5be3c7821720a0832651c119bfac1b31,1,0,careplace.org.uk.xml +7955a0d3d6af6b18aca473a36e0f62d93db444b63e032c8022673c2dae949c0a,1,0,ccczh.ch.xml +d46688286a01470ae72a7494f809e4f5e3f1aebe8c1106fb90cf66225857e4fd,1,1,ch.ch.xml +377f6ae7d5e69279a716acf1fa0da1587f111db733037671915e2f140d83ab60,0,1,coinpaymtstgtibr.onion.xml +4d9de0cd9d5c53dc2e304a882eac29d39dc8ca80b885b56fdda99c3cb261fab1,0,1,comdirect.xml +d5008a99ca26ac771eae43451d1a3f388ea560836b48126ed51e332c61ef850c,1,0,copyninja.info.xml +9fe88b19037e7cb59d028c3fd40d30afb5e4db3e3f8b75299d9301245275542d,1,0,craigsmith.net.xml +ecc5224bdf13e70d53652f6f917ddaf3525b293a3b014583a7e366f04851145c,1,0,cwrap.org.xml +9a0e82fa2c84784bd866c0cdfcb15b4fde531d057cd5b0b2c2ae287fdb5479b5,1,0,dditservices.com.xml +1191303496688bd47f3c42d5b9b20e188264588d02657e602a5e6beeaea448eb,0,1,direxion.xml +115fd43e8f2968793726c7d1e0be246a5da55d02facef89e889c7c4b8106a052,0,1,dns4torpnlfs2ifuz2s2yf3fc7rdmsbhm6rw75euj35pac6ap25zgqad.onion.xml +69543b744db80de441dc597c4edba83ba4ae47aab02eae703ed5782b59a46796,1,1,eBid.net.xml +61b46e4fd28004ddfae160ab1527475fa290ebeaf0f756673c86609a431bade5,1,0,eastsussex1space.co.uk.xml +d365f54ba88e9ee4e13bcfc5e40fee7822bbe84a1b6efce59d4270a6b889f28b,1,0,ehsanakhgari.org.xml +dfc9384b551dd838583376c78fee9d0f89b5b1c1f4d51166555a7deb12174cc9,1,0,ellislab.com.xml +3793098713d9b3a938d3f649c355ba4c73571d8206b1fefaac8403766c7053e7,1,0,eriklundblad.com.xml +fff0a81810a4742d4a22da1c61e87ff21b4ab86f0f104a6d20acdb3c792aa209,1,0,faiumoni.de.xml +b99040b9b2c0eb7d89f6e06d25fdad08ccf4f807268983bc00e418aa9d8e62c6,1,1,garmin.xml +c1011922497c8cc64be64ec9a76a83ae794c36dfbe34dab0ef94b0bc3966c2a3,0,1,graylady3jvrrxbe.onion.xml +7c0db8c41c1dbc742d88dd7432e190afdce29bc241ea958e0e9bb56e318a0040,1,0,hackint.org.xml +24078831679588ac29d6189a8ce41cd4fd173dabec012d899c84da6ccf896721,1,0,huuto.net.xml +fbb6f639b5195a93959082581d01bed9f3a7f267a8a19c346d366fef030212bd,1,0,iapc.utwente.nl.xml +8da5f2bb9c147020134f872bf90cd9012bc6ab274e6c01ccdf3e529412599144,1,1,iway.ch.xml +ee71a6176b5f92a9c5be034da928fc78ac61ae1948a2b7ebf0b0e65e170e4b63,1,0,lesershop24.de.xml +f61044e54b7503f5fde78e5d6ca78ff31d5dc8d19a2f78a7fb27ac05d3e6edbb,1,0,letvcdn.xml +2f66c9ecc06f5e9d323069143ec7b47c7138a47aaf2139866394b3dcca7c6e23,1,0,linuxpenguins.xyz.xml +4cbc4ab621120f80ed37c2a18c50e6ec3696f80a11f345a8851de3bca3a7ec42,1,0,lukasa.co.uk.xml +85a9f72b93eb5f52db8da9a4d375b4634d5ad80905a3e95ff143bedfd3b64123,0,1,luosimao.com.xml +a707f9c2c70c9f5a5bf277f252d22c4253a5dba6988ceace7fd0400fd8f6812e,0,1,m3connect.xml +c82d167ba8e98b856ae24b467a8695b544fe2d2110ed269675c6b9b5e8a18de5,1,0,myaffiliateprogram.com.xml +ac2d93e3a82d7cdc5a6643eec162bc3f28d13e242e6038bb03d266cf5bcef17b,0,1,netzclub.xml +fb92df7c56875eeaba042d251910aa25c63f4b5be19a988ad757d2c1cadd728d,1,0,norsk-tipping.no.xml +2cf8f8dfbda7e8586efd5437951997d4d46e1f201396e49c7cd40371b19beca7,0,1,nytimes3xbfgragh.onion.xml +6bd14bb9b62f275c92067c94a821910a1aee22e45e0ce229a5eafb03de195d7d,0,1,nyttips4bmquxfzw.onion.xml +318ce4a2b8037d291b8eb484d043f90ea831af92859c92c6e2190dafe56c4cda,0,1,osf22p3lmweopgho.onion.xml +d008a6ff2c3b16c6fbe4d134d1c1aa6b7f333d343d9e3fab3f88f9cd69599cca,1,0,plarium.com.xml +287e64d55238846fb01707c87d7d0b7620816da9059a63b0eae64cf45e7a0428,1,0,plasso.co.xml +dd309ed575e2ecbc07475735c3c4f7809acaf572582657ac7537aa116ca38a91,1,0,polyvore.com.xml +bfc3c3c917777780e10a197d260a120acc3614a32577402968a480fd5b42c106,1,0,privacyintyqcroe.onion.xml +f55d12ba30d05c9ba088ec96236232acaf987158f1803c65ca82028f8a71de64,0,1,profesia.sk.xml +f94e3d01b52fe014422bb4d816910528c58234c96b39ebb582a92515c29e16b0,0,1,propub3r6espa33w.onion.xml +19ff2b0b8ddf39a805465bf40819f9da9068dbae2932e8bd54a4c5a7a7a5a622,1,0,provisu.ch.xml +f632d8275a444842292dccb0f595343a6ccfe660b36b20735a54fc6c18ce956a,1,0,puhtml.com.xml +44142aac4ef5dd6b468e630fc477057ccdd3d8d4a5ff029c9ed0bdf85255c47e,1,0,rarbg.xml +cb8b94399027893807adc9cefd84a64463afce56865fbe8a7cc757ceff822488,1,0,rns.online.xml +eae3fbc7bf04ad2098b7d4f58372692b54f160c5903a53404535707844706b02,0,1,ruag.xml +e071d5e6d188b0477ac02337403602d68e6b548c5f0173c6a1687748169e1cca,1,0,ruptureit.com.xml +48ab8cda95a96123caac4761f3330eae482905dcf00bf964117fccc6f76a9389,1,0,saintcon.org.xml +c2b375a2419b0bc0c1270e171d832ba53db5212308bc7680b5ee074f1a6b9515,1,0,sharetobuy.com.xml +444c21385a86d34daa2b74872456cfa5914e7a7f3833bd5ce212611f068c117e,1,0,so36.net.xml +ae5b536db2ffdf2df62111cb8494384f296eb2f9fb7421e78d623775cf61e64c,1,0,strongSwan.xml +7a9da5e66bb52c47cedf57033ebd9aecfe74c3b97a8ef687113ff2be4ef8ff49,1,0,sustrans.org.uk.xml +057b142ca3d2f84f2620bd70122ca28024124fef589ee328145f265a2064ec18,1,1,sysprovide.xml +8598fa811ec5aad9d12066a3bbd72cc50d31a31ab552fc81406e4f5a980e6afd,0,1,tanx.com.xml +d0d7cd27a1fad7c507c011633c1ded2d76779f270a18be9a1a600f34bc19f8ac,0,1,tomritterbassljd.onion.xml +add909870db94aa5bd754824fd291da12cf5a35ef2dc039887e8fbfcf9559504,1,0,trafficjunky.com.xml +6babe63d9649dc80201a730918427d18fc983abf0ae6aa64ebc751040d874711,1,0,trakt.xml +6a22ef0685a22c0d02467d71bf60150171f2d9b2ea164bdc7cce9677255d836e,0,1,usatodayw7vu5egc.onion.xml +dca681ef703ae025e986f1bef45575452df62543baa7a0bde381d6bf9a8ae56b,1,1,v.gd.xml +b9b0396960be487e61ab263e7341e1fde512be9ce069f219bdfde8c363b7ab60,1,0,vauva.fi.xml +22a722ad1e155e3bee71bdb1b9a3ae90235e9687c48bd387489dfb3ecb58bc8f,0,1,visitsealife.com.xml +51cc6deb02fb6a815619bf535d299f9e24f81ab1451428ee479203126090fc4b,1,0,vogogo.com.xml +7ed531500221bdf06b719c9fc59447357de77faeb9082ee7fac65da7df701332,0,1,wpa_supplicant.xml +5cdcff57455137ed99e5dbee098da64da25450e307aec99e1edb70ae75f43c24,1,0,yottos.com.xml diff --git a/utils/ruleset-coverage-whitelist-cleanup.sh b/utils/ruleset-coverage-whitelist-cleanup.sh deleted file mode 100755 index af53f804f465..000000000000 --- a/utils/ruleset-coverage-whitelist-cleanup.sh +++ /dev/null @@ -1,42 +0,0 @@ -#!/bin/bash -# Remove from ruleset whitelist the filenames of files that -# no longer exist or have no matching hash sums. - -# Change directory to git root; taken from ../test/test.sh -if [ -n "$GIT_DIR" ] -then - # $GIT_DIR is set, so we're running as a hook. - cd $GIT_DIR -else - # Git command exists? Cool, let's CD to the right place. - git rev-parse && cd "$(git rev-parse --show-toplevel)" -fi - -# Run from ruleset folder to simplify sha256sum output -cd src/chrome/content/rules -WLIST=../../../../utils/ruleset-whitelist.csv -DELIM="," - -(read; while IFS=$DELIM read listed_hash coverage_flag fetch_flag file; do - display_hash=$(echo $listed_hash | cut -c-7) - # Remove those that no longer exist - if [ ! -f $file ]; then - sed -i "/$listed_hash$DELIM$coverage_flag$DELIM$fetch_flag$DELIM$file/d" $WLIST - echo >&2 "Removed $file ($display_hash): file no longer exists" - elif [ "$coverage_flag" == "0" -a "$fetch_flag" == "0" ]; then - sed -i "/$listed_hash$DELIM$coverage_flag$DELIM$fetch_flag$DELIM$file/d" $WLIST - echo >&2 "Removed $file ($display_hash): obsolete, all flags set to false" - else - actual_hash=$(sha256sum $file | cut -c-64) - # Remove those whose hashes do not match - if [ "$listed_hash" != "$actual_hash" ]; then - sed -i "/$listed_hash$DELIM$coverage_flag$DELIM$fetch_flag$DELIM$file/d" $WLIST - echo >&2 "Removed $file ($display_hash): listed hash does not match actual hash" - fi - fi -done) < "$WLIST" - -# Sorting by the second column (ruleset name) -TMPFILE=`mktemp` -(head -n1 "$WLIST" && tail -n +2 "$WLIST" | sort -t"," -b -u -k3) > "$TMPFILE" -mv "$TMPFILE" "$WLIST" diff --git a/utils/ruleset-whitelist.csv b/utils/ruleset-whitelist.csv deleted file mode 100644 index 99b7b7951b46..000000000000 --- a/utils/ruleset-whitelist.csv +++ /dev/null @@ -1,4434 +0,0 @@ -hash,auto-pass coverage test,auto-pass fetch test,filename -86e2ab8f682d7b1cdc7b8e44fb871ac1241e3d93736d8dc3bb977cb41269028d,1,1,0nl1ne.at.xml -fbb2d56d33f886b53c314eac3446eed8bad7916660ad0709367936fe8335d987,1,1,112_Cafe.com.xml -49120e478094762f6fc73e19a4cde0780b0337ab95a8aa9fc6771608263697b0,1,1,123-reg.xml -880345f59a163743e49c06d4c3b66d508b7d59e75b060052218368c23d604593,1,1,168qiquan.com.xml -b5c96ae391a5b0971fb2438e3afd37ec7ce439e7dbb271276cf7bbeb0eb61450,1,1,16personalities.com.xml -b6bdbab95a01ef36c81f06cc64afc02bdaeb2e3eda1a7bb5d08e75723b18d58c,1,1,1c-bitrix.ru.xml -41003b900cf58a494e7fd80ce52ad63458c5d7b1ca7ef00ca013345bc3897dfb,1,1,1nsk.ru-problematic.xml -4d7ea51ecce8ef52d7f14fe3d2196e7647c347ae491a8c51ff84555426f4c05b,1,1,1phads.com.xml -55b1ea082e1da07a13ef7bca833f779a23335658d345294a35e4944b90c5c136,1,1,1TW.org.xml -1ff67ca34f280381f0ccb109ab6c0a5d0c4072d0912c04d10113407d6e98d060,1,1,24-7_Customer.xml -4209813635498e7b1f9c944d648173507b41e0e3260e16b3fdb6f3f945ffc28a,1,1,24-7-Media.xml -a17a8a5bd129ea9a79f7c6d799d48fdd65cd41a3d68f588851130e5dab380c89,1,1,2GIS.ru.xml -eb32831b72d8e99401053f1a2815b3b34101705ec5c179ca953216f37c889f7f,1,1,2o7.net.xml -499b05dc40b7451e3ad52d6bb7e8c33a0359e35747772e71cbd40d0762495a1c,1,1,32Red_Online_Casino.xml -a7d9ec08bb6294184d95da57900409f22eaf2ef1a49b66ea4c9e33cb77829167,1,1,33Across.xml -7fe27a3812a67c0645171e96582c54e60bf00bc1462eca19b78ae0fe04c70869,1,1,360Cities.xml -c14bb3f3b4743737ccb198bbbdc8d6e616222da753c44a83ff446a48c4e4e17f,1,1,365_Tickets_Global.com.xml -b4ca6032d9afb3266b1357049c18a03cdf197bca5081c2ec6a85d2f1dbaffa9c,1,1,37Signals.xml -3cd9cc0b3921f83d5bea3d5e948e0b95223f24dde3afa2bea2c346aba084eeb7,1,1,3dglassesfree.com.xml -31699a219ef66a666ea15d834156a3a221a88a7b5fe7dbe00605e0b54fe7b9a1,1,1,3M.com.xml -bb849298a0d0c4428a70065895e7179d1629cbc3a7388b83cb8a1c89d94bc278,1,1,3min.xml -3c99f53a4d880115ef1e772de6342352d38ef626a2290b469e5ef052231df736,1,1,4chan.xml -db0bf27bf0163ea780c63c9aae7d1ae5ffd171dd58565648e3b900ac45c4eb6c,1,1,4D.com.xml -9057fd7e7b62ed29d03856b8fd4800ce0c0e5c9821a019554b1914d9e993bf82,1,1,4_Free_Proxy.xml -428d486aae24b16281337cccebc6ac6856907362020df20b0179d353b45aee06,1,1,4gamer.net.xml -74ca90804616337361351b3c414460f572d3727064ed9eaeced3081481df81ab,1,1,64Px.com.xml -d73d05ee2e9267666c0ce2efb63b7ea6fb381bef08a0df118e6c1fa5a028d70b,1,1,80s_Purple.com.xml -ad597f5f278809ecc2bec2dbac2d47ff4937418c90dbb564836cfdb742e7f6bb,1,1,888173.net-falsemixed.xml -8223ab030d3a507686a55a6d13875fea38888ee6e1aefcb086e0ff99d83116f4,1,1,888173.net.xml -53ad3f31c9603c3fa9ef4e1737d60c314a2033b5646398e64986f1952d11bb2a,1,1,972mag.com.xml -7a25ea9f7d589947b91e6c4d54f91fadb6727107093a0154936119eac027ff8b,1,1,A1WebStats.com.xml -cd8fd181965e5c622afa28c8b6e4ea0a6717ffdff1ab9c55303500f718ccaaae,1,1,A4uexpo.com.xml -a77b292e0258a8a9a81a8e05fa342741e226a1e024978fe7c6677c7c65150ae3,1,1,AAMC.org.xml -dd5cc03269cd87827e03b1f87e7af9786948b5373e1e54583e88eef812c9124d,1,1,AA.net.uk.xml -120510f02eff7ac4388836b4d9547be6e427664b1a2ff124a2d51a3ce225cd73,1,1,Aart_de_Vos.xml -5951c130bb380082d7bd13a37a99cd0866398fa7bde7d493c63d5dc26dc9f672,1,1,ABC-Online.xml -5d0c5a0de9f0f6f9065e6a7476b3b7127d7bad3db4848579a5e616973aeb7c28,1,1,Abdn.ac.uk.xml -7efde6da22a5ee5f55a7996be1c427a7547e17ab6f7599b36fccafd144d027dd,1,1,ABIS-studien.se.xml -ef89da849ad061324b9121adbdfef7ef6efa5e714dd1cf09249633089a74f0cf,1,1,ABNAMRO.xml -57d61e054806cf2a29c87fe184aff038283e1023fa58d561bb958bacfab8b15c,1,1,Abosgratis.de.xml -a3db3682f950ebb592501ae3cc665a1d6b7bede688f6684dc21f08c1f027cfce,1,1,AboutUs-problematic.xml -178491e2c3fb87be402571e4a6fe685bf054df360389e0f814c48a5f5876414c,1,1,AboutUs.xml -5dc36103c27dd4a64b0173dafe10e7f2bddf78ae11eef67e2c10d3b8f625d6a3,1,1,Abuse.ch.xml -ff05e504066e109239608a957da7fd5af45cc4e2691b4989b8986c3304c5af93,1,1,Abusix.com.xml -d7d8ef3f7c7dea8fd1a4daea747c3b8fe533cb4a1afda97ea868d3f5024f8165,1,1,Academia-Press.xml -cd5f72f97593de54561ecbff4887403b0debaa4349d9d1bad8f1061698176aff,1,1,Academy-of-Model-Aeronautics.xml -a9a175a7b8737a654699776a89f83b2653b1be0a324eda05da814871c430fca4,1,1,Acalog.xml -699cb9502f604f73e96aa178156924507ddc5ee3a5920b9fb5f0e3f877dc9ef8,1,1,Accenture.com.xml -0e4a1dfa84e910b35bfd74dc1c96def11235328ef8e24d1ad8b9154f8dd2b6cc,1,1,AccessibilityNL.xml -2de3c612cfdf2f4511d5f3d7389f2f87f1ae77f3c0f6ef93a730f858e1020e36,1,1,Accessorize.xml -81b89878fc3685f7c80dee0152833803561c01b52df32fb3dd7b6dbdd5a9b8a7,1,1,Accordance_Bible.com.xml -c124a9be102885f879380ad4d50f97c436d7fc47b0e26ad4e75011eb4655ee18,1,1,Account_Online.com.xml -7861558b369255be4c424cbcf9755adcbf53898951530280e1f853e56380bbd0,1,1,Accountservergroup.com.xml -299017a21aa2f2d62f8a3e289cb80398b46a3a649ccdad3b34b2c0660e68c3ac,1,1,Ace_Hotel.com.xml -0125c928287517aef46f716b330e06ef3fea947145b4f4b974dea1fc4d7648aa,1,1,Acenet.xml -e016613d3ffb8370988f2a6130e187e527f650f7ecb9c072c2dceba118415d87,1,1,Acessoseguro.net.xml -b46e53a6f571bb484c20bd6d6506fdd6616e344cbd8c4ee987994878ba6f28b7,1,1,ACLU-of-Louisiana.xml -626fa75a58a7f9b300e8b97abfc5cc7ef0f232b0528fac5c62acd242f7ae3eef,1,1,ACLU-of-Southern-California.xml -10da4a1eea9af2e6ffd4778880a6d15ac2d3b1023565524fb055a5b2dc6c6100,1,1,ACLU-of-Texas.xml -cd21b93ada11250afdda74118f657a1fc5cef513df149b5f3b26f3d5528e0f97,1,1,ACM.org.xml -5e953ea9e497945a27ed70160021c1a45a602b8db25d0acf1cccf5fc99143787,1,1,Acorns.com.xml -6c64426d014653391043ce02a23b55583a04d80ace228446343ae4fb3c1c52d4,1,1,Acquia.xml -5306a00bbba97f3edf93cd3bfe9f2231ba896ddf81fda180d35b3d7d44ebcd89,1,1,Acro-Media.xml -afac00a30771d97a500c173ab56c5b4173bbfe270b792979faddc7f21a41a1b2,1,1,Acronis.com.xml -cfe9083c4ccd218e18bf913d20098b3f72f5d878fe7325a3cb460dffc04cef94,1,1,ActBlue.xml -46a63ddc665b3ecc364cd84fcb15dd74ad90d4e222e9aa57a2d415dc37b2a3c9,1,1,Actionable_Intelligence.xml -15a0856f0603c5730add28e9a2e6a36acc432c7704a7bb007517f496cd35fc65,1,1,ActionKit.com.xml -36f4696ba37079dc47a8aa131a923aa8f4f1647f88320ac16424d61753747390,1,1,Active.com.xml -8f563f104d1f8ca36dbd4f162e6749d61cddb8a0cc3ed0cced20a0198a5df7a1,1,1,Active-Events.xml -41ceace9d8d7e0b5415d705b5aed152a387bbb2e3e2f121a6e4c98a7a8a0af3d,1,1,Active_Network.com.xml -881098f72636035033bd336f49a78c043be02647edb3ab3f0b036c4ef5bab188,1,1,ActiveState-Software.xml -fc7c90d849f4bb81243211a9562b2c2b9a56cd5bbbdfe376a1c891c0c3fce0e2,1,1,Activision_Blizzard.com.xml -4c2db37d2cbc8d5ae0b47f210c0a2e8f7e6feb0a8f8d6e9c6a7a818c190fe201,1,1,Act-On-Software.xml -aac196636a510fcd25bec0598955670ac1aa8b282f29e4a9372c284a5d6ec776,1,1,Ad4Game.xml -fb0ca273f18259e6a3a5fa830d5935ac5031be61d471a2cc0c6aeecdaea13698,1,1,Adallom.com.xml -c781e81a341599aecb674a36f114512b59f5f7930fc309097a456c71e28db902,1,1,Adaptavist.com.xml -79ecbb418c39e3d0dd20ddb11402b52c352a8a4285754d2decdabe3d9239e8fe,1,1,Adbooth.net.xml -95314fb83ab85e7efb844d3c5b8fe1b85e30b6d827ee6c58845c8eb6b0e55632,1,1,Adbusters.org.xml -58bab8c45b010c8e4f1b26a3752150319cc93fba598aeb28997ea551164b68e5,1,1,AdButler.xml -6c704e7633a84752e7d46297f9077c027c9507dfc3ccdbcdd65612c44fdbfcaf,1,1,Addison.com.hk.xml -7e07fe570f87f45fad1782566e2b13d2990371f8e62d275445705160b998007a,1,1,Addison_Lee.xml -3cc9ae403b734dc71977ed8ac1f0dd5834918e23868ea196f713283e1c35d9af,1,1,Adelaide.edu.au.xml -85e646feb50d923ba00a0e5b8711d59747d60c795350de27392897a7ecba9b97,1,1,Adestra.xml -f955c3a0b2957325ada0ce3a857f05c47269d1442a47301c438310a88f3d1e88,1,1,AdExtent.com-problematic.xml -1564ad6d65baf7742b82aa1d37e57713779da9121d29e4e0db25d66de821b1a6,1,1,AdExtent.com.xml -4cd1ca6aa3fd8522140545a9f1c0f32be0ddfed99795ff92a2dad9781cf7237d,1,1,AdHands.ru.xml -8cbbef2c983926ade2910afe291b3718ace41f5d2346612ae1a4f10450719a26,1,1,Adigital.xml -e87c8a23db52372be00ffa86181ccc6e32cea7ff5f646f884a452187c543f2d3,1,1,AdJuggler-problematic.xml -5dffa6059f25b1934cbcb4b3c3cadfc7f0c45711cf7a3940141fe366c1dc632a,1,1,AdJuggler.xml -ad273c17a4272904192c101b9e916e64e8240f604ddee81c1815fda8eaae6256,1,1,Ad-Juster.xml -d5a9c77a8974e5fb24984fb04fe060779d37ebed7b0aacc590035f6128611a0a,1,1,Adjust-net.jp.xml -59cc2418711440f263b64cf22e74ec08e468f0ae6de3d416baa876f2c2428281,1,1,Adknowledge.xml -4d1793c09e8a9352a5fa37c834283c51292621120a3f6971f1b612bd8bb7c0ff,1,1,Adkontekst.pl-problematic.xml -2120b965fbf664a8c9867dc86450029429847392509c410e4518755167e6d9c4,1,1,Adkontekst.pl.xml -4c09d3838a0cd51836fb8c992b554f87113c035fd3768cd77ee28709a035f98f,1,1,Admeld.xml -6e040d9148747455e9bb4cf2212b6c95df2a516c8312b989b72f237875b238f6,1,1,Admitad.com.xml -cbd72b76fa85ccae644d28855f060f3aa196cc9159897c65c68a63750707d992,1,1,Admized.xml -ce56c65406df4436852f26458e9264c88c627758762ab195945b3e30a19353d4,1,1,Adobe_login.com.xml -fd65ead052aa5595ec642b95ffcac548054ee2f23929373096920819d6e80410,1,1,Adobe-mismatches.xml -8b22f1183bf7b4280462551fa192a49e564c169a57a12283426ffed37e2604a7,1,1,Adoyacademy.se.xml -ef929d8b8e7c668eb8ffc79194639b6e3283d885ee97da5a311ef5f2a6652349,1,1,Adpay.com.xml -9dd2d07280b679205432600769a989ace5a9feebe2ab2e5288b509719325be90,1,1,ADP_Screening_and_Selection_Services.xml -0ce36ec76ead790e4c2ec1723a8d5edd8eddedb784497d2a319ff3217dc3bc62,1,1,AdRoll-problematic.xml -1f0b2754c91864e66f3f0b946aa54a5515bd9ab8379ba1058ad1a862ef648c86,1,1,Adseekmedia.xml -9bcf20ddf58d4853d75b536e82a5b188eb9322a78c2660adc45cf9ed94abfe48,1,1,Adserver01.de.xml -5514a8bcdc709b386c8ec7b573fb3c03c4f1cd29aa7756877dfc38af086c56df,1,1,Adspdbl.com.xml -1c0cd7ed2fce20b30da6a7427338c07b544ed8d36f933b7121af72a4537eb154,1,1,Adsrvmedia.com.xml -13d89626ddc7c6d6d75042394f3610c6a0013ea5896be2ff6fa5aa4c19fdbf81,1,1,Adsurve.com.xml -87c72f674f27d72d20c7af4c375a804142a48bb10f6089082c199c8c08806cca,1,1,Adtarget.me.xml -6ae8fc3fcef08cb519f00f685963170d30fade668e47adf81d90df8d23f16caf,1,1,Adtraxx.de.xml -de7a8a93300f46f919aafc9b2f6962e873e652999304b3e024dc3ffd42abab40,1,1,Adult-Ad-World.xml -9ecb2fe57628be35d44eb6c7ba85bfb70b486651e13ca093a7aeca63f07e7044,1,1,Advel.xml -00bc0f8d49ed0c18f7f093f5a131fd8a2c0272abc61fadf67390f165850902e3,1,1,Adverticum.xml -2fcd7b4005d206ba767f53c6574cecf4a80560d5dd55e893be60ba745ffcb781,1,1,Advertise.com.xml -7cb2786a2b879652734cbb50bbd97b194bdb20a9ee61e7bcad4f2c8f4e0e081f,1,1,AdvertServe.com.xml -647f17a6552fca35d3f6adcaba796255783f8359bb04e2df772dda1d3bb9e9b7,1,1,Adverts.ie.xml -21a29c7ad37f2a6859026e8a95f6ddaa54a0880f194d0921801ab9c68aa89da7,1,1,Advert_Stream.xml -d739ae917fa93939b84610ee6f929652200a550db28565e5ab38e60f7e82163a,1,1,Advisor_Mailout.com.xml -aeb3aaa75d0f75ddc959ff6d7fa7cdde1a427225fbba8c75f61ddf4b9d020589,1,1,Advocates_for_Youth.xml -69c1959f487518867ceec94512b46a8f04bb6e284ca29b3fc8a81930bb9eda54,1,1,Advolution.de.xml -1b02687ac0376030b5cb96f3d9388028a25e67ecab6b507eb80dd327037c6ad1,1,1,Ady_Advantage.com.xml -d7d1feba8265340d5dc69308f3050a2e92e79062c191826e005384d161570563,1,1,Aea.se.xml -73a9d282ef2fe188fc97baf2fb98528353a8f1d5ca7416a2defbceaddfb54471,1,1,Aereo.com-problematic.xml -2bba736076144c6e074447935696b487b2457699ad13c4c0da5036f27408e7a5,1,1,Aeriagames.xml -371bb1b7c3bf760e4a6a8d3d9d0f0adb76c8eae008af53fae07d19dbfa5833b7,1,1,AerLingus.xml -276a2773697e1f02e05064c9caafa4958b2dbab8110457e719a14e3d15db499b,1,1,AEUP.eu.xml -850e3cb7d69fc3d4574fcb87fa943ccc585e8bc45c1c25f1d43802c9358bfdcd,1,1,AFCEA.xml -e907a8989f2f1069b0484e23fec5c5ee2d5273922f82918cfd516a9e0f852444,1,1,Affili.net.xml -d7080434a9f73a06d758696e4ec5e7b3c60968c0c1a4271e70e32cdf4ac1a170,1,1,Afford.com.xml -38ec73a3c085415411ccf9d84964b1a91ae2a04161ffa2929bf83bd661df4cd5,1,1,African-Network-Information-Center.xml -1a9ad13bfc81df909453c311adf38dd10aaba3caf4c21caacee8d4489ad8f554,1,1,Aftenposten.no-falsemixed.xml -7e80b6e07f7f5710aebd5148cee70e1784758bf514135d89dc53ba0d6bcc7d7d,1,1,Aftenposten.xml -9e7924cf6848f1b4a327944ec8f0847966a5b55a63cc6a3c728ae83b72519f3c,1,1,Agari.xml -dbcfab749a0b27b2db267fe2e28967bf50405fc8c1e5fe3651693cb830834089,1,1,Agendaless.com.xml -31d96df38792a74447a5cfa73761b450e0f56d1f9885dbdd94d11179075bda79,1,1,Agri_Supply.com.xml -452f715c31c587b38c22a8f64fccaa8143f2e18b17a4ecea046d395402f14dfa,1,1,AGU.org.xml -bcbb52268a9bd3b28943b7e1cfe41e7cf506bb0b2a278e52f14074a8ab050da3,1,1,Ahm.com.au.xml -3460548e370d47fc4b22323a329b3c23874c073b431fc797bf87fe9a563347e8,1,1,Ahnlab.com.xml -a760852f448ce99221cc037514e2053189ea6efd54f6a143f17e547146789d3d,1,1,AIA-Surety.xml -918c73939478446e6f1c85d535bef5f9586303d88b793aa00d9fe9c457b28b4d,1,1,AirAsia.xml -580ba78e322e5ca2883934cce4ad1a43633900302c394159e4e65741461d86f5,1,1,Airtricity.xml -034ff7106c791ad8f0fa08fb6d9a415dd04f5fc3a4836accba2e91dc899e54b9,1,1,AkademikerForsakring.se.xml -a545c25b0283cf517189ce36a6dddce5df2929e18e6ecec11e7d392ded07c12f,1,1,AkademiskaHus.se.xml -5e1cdb7d9af34842a8c2b7c7f414caa8b84bafe4072bb7d883f7084dd5edcdfb,1,1,Akban.org.xml -b434a73edbcd1e34a9a147ba5a6f0ee47a435046145adb37eddc23ba6d114be6,1,1,Akismet.xml -a51944a1bddd9a16f65544770d110e4f3d8db4a39a341d9bdd907a38a5b4d98d,1,1,Aktion-Deutschland-Hilft.de.xml -4be7e0c8c19b3bc7ce6a228c7f867f4ca8fa474671c4c1a2fa1186e31f0fed06,1,1,AlaskaAirlines.xml -187e9c128e4b4237887a14de2f1efeb6fdf647e2549b0abb4f2fc09112879a59,1,1,Alcatel-Lucent.com.xml -1a75f296456093e211748b9d5dc4f8c2460d36d5ea29f0a72872e00ccaa93a94,1,1,Aleavia.xml -66d40fad37903ccbf81d50fff39b8ecdfae22977877eca18b263ab645462c167,1,1,Alert_Investor_Relations.xml -e8c3d38e946b232e004c4533a09841ce614d2cdaa41b8b18d3966c58858d2e6a,1,1,AlienVault.xml -db6ae9c06d4334affab2b17ebff06089701359316e8a01796179cecf56e6af3f,1,1,Alivenotdead.com.xml -540a94db8904f4c3edad8baaa10f41136160ba2a49526c20998281cbf9f6254e,1,1,All_About_Security.xml -9ed9dea5fe2149028904ec46f10a5802e0f0b3c1b2d0c1ce1c9641a5593d8eaa,1,1,All-Above-Offers.xml -1e1a3eee124780dc325850e37cbe518f2ddb7fe35d245f00ef4e11a4abdaa67e,1,1,allAfrica.xml -6827360f5b76bf1f5c3c862ef052db2452817f026dce69f608d34aded6973ead,1,1,Allegro.xml -44203d13b19cfdc0327538af844761f8b751d0dd7ccd532df64d5d141ca80db5,1,1,AllianceBernstein.xml -1e3849dd66ad705c0195117340c17670db0ee819b655850db2ee1d2a7413c0df,1,1,Allianz_fur_Cyber-Sicherheit.xml -7d754b99dccf2efa202155cbb5d05539eb1de2d13044cf981078eb2f2552d22b,1,1,Allied_Media.org.xml -65a56ac78693bcdfaaffda41497a02352ed985a9412a8b8f42749aaee081437e,1,1,AlliedMods.xml -9598c551f4c6adaf8d6ee9c936d2b9c3a07150f6de188ab4bf8da07f9535885a,1,1,AllPlayers.com.xml -8301f6814674c19485621cb8cdf4f730b6faff112273ebacc1010a1416925279,1,1,AllSeen_Alliance.org.xml -b125f385993611b00d091c986d7a2502bf486be872598a07e3cdbbe0011826f6,1,1,Alluremedia.xml -491e025f3c6f1e8f67e06bfe2520d594d5675d15dbefa5f0963787103931b47b,1,1,Ally_Financial-problematic.xml -9c0d5a857e79add9448073b8b00be9d8fdb75138d4bf34175850da6503de31be,1,1,All_You_Can_Arcade.com.xml -03e6e531ec407c355e7658710b5046c418c7268a34be793d6b8ff8866854c059,1,1,Alonetone.xml -f8154916d6f3d0255e6589d3f054caa5644cf7a8a744c2aae37522463d78d7f0,1,1,ALSOActebis.xml -f4b1975dc6c0cc76d40a13198af3f6e0c55ade83c2fc0c0fd4ade1c28301c070,1,1,Alta_Ski_Area.xml -8662563b129fadb5f1c138f5ae357fb4b079659dd729055146780cc37e90feb1,1,1,Altera.com.xml -36dc1e933c2e1aa07ed5dc11790b5c107e5fb5e068d5bcd5bb8ecf2593c397c0,1,1,Altera_Praxis.com.xml -2c6025b7be2eae0ba6d7dc5fb5e3c38f3c46cf99a5c83ad02489062373d6b892,1,1,Alternatives.ca.xml -5d30fe7992767abd2f1648d0508b16d78a0333eda4a987917db02ef25941175e,1,1,Alticore.xml -b2b22a603da5fae9c69dba087e64ff715099d1dadc267f06b18d255b6d9c8239,1,1,Altimate_Wellness.xml -09bea1ea178d71a5ca9e1dbf010d5dcfb52d1040ec035b13b9b3f0224a184766,1,1,AlumFX.com.xml -ecf83b2e3407dcafc5d57a28845efe85f9da0db7a4aaa6aadcae2f64401397e6,1,1,Alwaysdata.com-problematic.xml -8746769506acc6116b8a7768384c937b169b54f2053bf0b6a991aea4ff2ee043,1,1,Alwaysdata.com.xml -83aae8644fbd60dda604ede8c58cd14dc739f87281bba346cead0c5989ab41df,1,1,Alzforum.org.xml -158c3c93a52e4012afdb9db300a0eb3e2384d666292d478c3f4b8c86077b7474,1,1,Alzheimers_Association.xml -43da61ca7c1315ad777e6b31da04f79abac68f4305e43112ff45371ce9f06e0e,1,1,Alzheimers_Society.xml -3c08535791b2507c36a6c02506e8554d4954840c5997dabb6d8d500178e7e41f,1,1,Amber_Swann_Publishing.xml -7f12f47bf72fe2fa5fd57f96710ae5fc99df8540bd0d30e3647e5e74339c97b8,1,1,AMCTheatres.xml -745518e102d29ae0f1d16d2601f00f4c64cc0378f34dd891de07b93e8a1b7861,1,1,Amd.co.at.xml -83bfc16ce3630fcb38eb767e136ad56f5bc41b35f3a9bda514ed854c1b016aa7,1,1,Amelia_Andersdotter.eu.xml -d5da30ddd6f57e9983db9004f94cef37e0bded49ed095e8b2243d28b85c2d8ca,1,1,American_Academy_of_Neurology.xml -f58f2cd4524af0b47bee314b416ba5ef4be1213d7db98f2a18fdac91492c6e48,1,1,American_Ancestors.org.xml -92e9a46b0c218161a6977d43f3ad0e2c2e175caa825d293044f5a8f2b00cb13d,1,1,American_Bar_Association.xml -0f244153eac85509cc365215b685d204050df6b0d7eab16f9386710dd55efef4,1,1,American_Center_for_Law_and_Justice.xml -fe4db784ead854b87428ee3ce40e1e5480d89a82139fe2c07521db1b7d3cba79,1,1,American_College_of_Radiology.xml -79271c5ed9f153da84ab9914b1e98622bc8d3b51c30fba7bf0f7047863831247,1,1,American_Heart.org.xml -13de7d062b20b2830e4eea7cd39341d9eabd9a876235a189cff02d32c1848fd3,1,1,American-Postal-Workers-Union.xml -73d4b8032eb96f7564c8d0d2979c1adafdf8f192afd01903b104215da432659d,1,1,American_Scientist.org.xml -625e8f87e148c9218fd1a729ad0d6f6b741e41109bf99ef7925e314cd5c34fa7,1,1,American-University.xml -e6138e7a957ff7b845a2cc6f39660096397ebb360733a85371b57e6391912cfa,1,1,AMetSoc.org.xml -4dae827a2f77eef47c7257e04d41bb5c508a927777e1431b96bbb4e183b6c2fa,1,1,Amherst.edu.xml -f2c64f5833815703ac02cbd11efd4c4e48132a3c81a6196692fb4734580c20b8,1,1,Amiando.xml -a4e558ea2da104b30ed669a14016d712364b596f25b49a9cefc3a339622acd46,1,1,AMMEC.de.xml -a813cbbf5d96b456a1031c12cdf202a72c2bef44fd2200c9d48ead1035a95166,1,1,Analyst_One.com.xml -dd70debfd991bb22af84defbd2e2e138ffcb6833abc14c2306ca8a74884adc69,1,1,Analytics.edgesuite.net.xml -6898ae63a1da2d450af8dc14782bd5ffb6df891e574c584666d5ec951a78d8fb,1,1,ANB.xml -4b70b0b18a0bff5c2c2f9bcd770f000a9d9be1df8b1c33428a682fe11ec8d15f,1,1,Ancud.de.xml -4374b1d75194a0b7191a28cbb5363d9065e69ca23f46f8778a899e9e3c74a6e6,1,1,Andalucia_Property_Rentals.com.xml -b5ae6c5519ee1727036dbfbaed594fec60654b0e534350c2799ddde2b1259472,1,1,Anders.com.xml -16f8b4965e2ad0c5d01ad0ad8680024b9ef0134a4dd3a184cb9aaf0efc8b3af9,1,1,Android-Arsenal.com.xml -8047472a9ae9e601ced04246658471d4c4ea46765bdc88d7b6419dad8a95a5f5,1,1,Andyet.com.xml -b4f10f135c5050b4309695c53b017646cbe49e4f5c938410144017196d1854d7,1,1,Anglomedia.net.xml -f697cbe27115659329e064a9686b117a4e3ba83672834242101ff2cee665d002,1,1,Animenfo.com.xml -0d5ae660c24c66e5c6521950658bbf3130fd5b3803ef7caf0523b80519580e58,1,1,Animoto.com.xml -f227d404b5d2d8cf54d3aa5d8feb8fb94ab752756d7b212577b481c328bd5c13,1,1,AnnualCreditReport.com.xml -618ce474aa6b733a085038d42ce80185f208d75ce018fa539ab75293e4345b9f,1,1,Anonymizer.xml -bffac9d5c9bbea7bff5b11870b13cc0db4685a2674c877afb6e9eb9e80139fd9,1,1,Anonymouse.xml -fab0202b18b9b12ca8466041c7b7c6576f669f527b228bc2b56503cd22a85816,1,1,Ansa.it.xml -941650f10c7c93d496304dcebd600aa22315dbc37aa812e5d344d7e79bbf1c97,1,1,Anthrocon.xml -af2eac7a517c666c869e80a72d8e077915069bce3435d7d465b60393ed94b4f1,1,1,Antifa.cz.xml -3745f49e1046863710aa1dcce54d018fe0feebb722a7189433d834809bafc357,1,1,Anti-Phishing_Working_Group.xml -0d9ea3f9cf9367f2501d165fa0ac48204766ca4b077c9245ae8505a692ca9edb,1,1,Anyoption.com.xml -1784b67966984894748fefbe7c4d192375a1c1c9214d78a2c9775fd4c87e175e,1,1,AOE.com.xml -e0a596183d10f82f7039179e8031bf5d27f2afb43efc173da4c38862d7827142,1,1,AOptix.xml -dd7ae0beebd2c639bbbbcae3641af21803516f610506ccfe2803ed964e5ce30b,1,1,Apache.org-falsemixed.xml -9548b2b602791d6574d139cf2800ec0e9dafd354ac22fd3eaea748b5f54e1367,1,1,Apica.xml -66690f71429d584138c832138be145db4f7e649c75bdd889e8f3b3f2f8b001f5,1,1,APO_Box.com.xml -bf7a2d984c3cd611d185e59b161467d6180116c0f6916f0fb77ed210d61727bb,1,1,Apoteket.se.xml -78b49ff986e13a5c0581722244e6e0a52ba34d8cf05882a5af6d47f9ade042af,1,1,Apotheke_de.xml -164c18c6956eb854c6bc97290c7b8489e760008604fa87719b42b7a064c3f9d1,1,1,Applebees.xml -b68a55e25201dce7784e0a7895a45ca1f26dfa26734b95dcbdba1fde572d0262,1,1,Applicom.xml -1aed229f3420f2d8648fbf65e98fdab75787f2aca9881617052ddb7d94be0daf,1,1,Apply2Jobs.com.xml -a6301c97b9096aaae77b0214687fef9787a2ed42d3621ae712fe0b56e4b4731c,1,1,Appsec_USA.xml -bd5750aded57c6b7644711c3c960363e1bd87f028409ab8109947027d2db5f01,1,1,Appsites.com.xml -6898464891cd2f8b7b4e6c1a1cec4940804a61f928428b5ad815b9e8e21905a5,1,1,AppThemes.com.xml -ade59a39b354da364c4ebcbc3eb42e13b6920c0d260f56af7f1c713bce583fb1,1,1,Aquent.xml -c12f0cbc2caff44ad6005e435332e8e7fd83d66392bea06554bf84a6039e759c,1,1,Aqueous_Vapor.com.xml -5face64321a13bb4441e9e7be2934cf96f5637dbae479cd1b3e8e053906ac31e,1,1,Aquiss.xml -57ebac4706ec4a064545be6ceb402e5928fa766d724fbf55490a057a1db8687d,1,1,Arbeitsagentur.xml -54456b2cf74178980551f6b89ee851a934323dc87592f1c9b4c8a8818247094a,1,1,ArchBang.org.xml -29dac30e3114f9baab337f6f95a87cba0e868345ade30884e244c23d1e09d1d8,1,1,Architects_Journal.xml -ec7d199ecba5f37b38f846e8c42021dfb4f172334c709c2f19198662bdc96d7a,1,1,Archives-ouvertes.fr.xml -56b6dcb7ba81fb258e78a7915c3d4e5496f1fc1b4154b24c8d4bd4199333aab7,1,1,Archomedia.xml -582ffd2f018a0129db8aae144bcbc20eaa3f3c9b210f242ab90a9168fbdd2c4b,1,1,Archos.com.xml -0b9c131c6c446098c1776c58bd7804d963d9467463b492165c8754dd5cb608b0,1,1,ArcorCentralLogin.xml -2f773ad61103b3b6d059cd1c40933c551262e643f94cbbda4f449541a064faa2,1,1,Ardour.xml -c0ed616b0b06dae9f98e320eea3d4e2434a6fd57f0ba59ac0a3e7d1cb74831b0,1,1,Argonne-National-Laboratory.xml -f6c53cd3f54486a90435c53481b8e53539b71475f7d202dcd5dd8b8afb525502,1,1,Argus_Leader.xml -d8e76464d628f155de649ab36ed52ab3cefcfc493c3873271a9cdf661b6f522a,1,1,Ariejan.net.xml -b7da8eb71bac9196944afa62279d4f6c1143b87a1ba2090b301c1f760164bead,1,1,Arizona_State_University-problematic.xml -6c489a917501e13901b8b46f73c5667965b69d34bd334186709a4baedee7f748,1,1,Arlanda.se.xml -5ba587057b170dc061a2032e9053cc526ace344ac396d2dac3f4f71f601a98cc,1,1,ARM.com-problematic.xml -007251111fd27a7b448f1cb45893cba99e144e7f9014020b1f41d0c65009df3c,1,1,ARM.xml -cda60d257787e7061e709192d5cf0a94a4984b46985afa9f3b0cfd0dcef90cee,1,1,Armyoutlet.de.xml -1a0d68ae1344a84a3f284fdcb44ef5887482d4b8e4504b5b54b95d6eba36a278,1,1,Army_Times.xml -a64aa49da5863cd190236e6474946fcec2cbb3ae5526999bd893f43072394587,1,1,ARPNetworks.com.xml -8a49cb29d21a368156693ed53b1980f3da2d23f43b5aca1311b92173d3a23810,1,1,Array.is.xml -dfe89eff15b1b275c97f22b5d7257711cf0a4c2a8c65bad1e5ee58924e53cfb5,1,1,Arriva.xml -12a54fdd75f8a200b6da25d78514f8ed3e3a3bc516307e3729b9220792921514,1,1,ARRL.xml -af7cc41fbc6105dbbea5b7df053b21431732e64dd0488534a17cd4dfaf828c0c,1,1,ArtChristina.xml -d98c3afdac5c0cd8de2aed70c17412d3a9453a301feb5dc04e3134e9a77ffb80,1,1,Artfiles_New_Media.xml -3fdccc787eddd140e4241e11cf9db7a9c14a50440396d44e03de293f65db6c14,1,1,Articulate.com-falsemixed.xml -8917514ecacc61f6edd70584011d60b90d3096c986415b6ba652e36e04af1e22,1,1,Articulate.com.xml -f3ee92c08baf47493e3703009f931eee1a63d66530d5a54534e4aa794a634f54,1,1,Art_Lebedev.ru.xml -cf0babaf0fd8b4dab4da7fda0059116383dcbc97eb50e35f2ef14e052ee5f563,1,1,Arvixe.xml -61153fb39b8695a25ba7fd3665f491a44c172ed00776bf9e43fc6362070f4f67,1,1,Asahi_Shimbun.xml -8def583c3ce1bf10c4f99489dfe970aa4329389b26b9a891f5f1366e7acff96a,1,1,AsbestosSafetyandEradicationAgency.xml -f9990d6c03425415964794d370821ab71b241c42ecb3ca3470f4f68a91c6b753,1,1,Ashford.com.xml -184390028c057ad94b74577fbed8695a43d82fb3a5c0cabe33b03fd24f7144f0,1,1,Asia-Pacific-Network-Information-Centre.xml -390512a7764e5445fe7e41098f947203abe722f89620b0eef4a81dfec90c4df2,1,1,ASIC.xml -9df71aa013165efa180c520096902f74771dc83d900cb04ed8c7cb5b82025b8b,1,1,Ask_a_Patient.xml -3bbf8eb1685179628ecd62702ce2743a9037ad9a0fed059c6091505d854f4155,1,1,Asknet.xml -ee30c86b81fee828b7b66094087dad1ceada6a09b8846c76e1323017614a41ae,1,1,Asmc.de.xml -508a877b778964ffe6ab45dd9b86f88ffa6f311e29906b0c8cc6a6e627431dcb,1,1,ASN_Bank.nl-problematic.xml -05d33c3a257d457da739ce65fc7d7a3728a315e5fd2d11711c4548cc5a58833e,1,1,ASN_Bank.nl.xml -ad5b4ab27141c8a3f7b0c55fa804b636b0c2fa7e8e682ffa74834f49e21fdb2d,1,1,Asnetworks.com.xml -71fd1b63870f6dc056cff4aa33f6e613f2b3e8bd71d0f02fc233fbb14a337ebb,1,1,Aspen.com.xml -7d9e3268d85a9d31d02dbd90403db96712cb0aae9d780c1dcf3e0891b0c14368,1,1,Assayassured.co.uk.xml -754839829cb4a5ac11b1b10e6249d63473ad763cfce3b7ff9a900bd327aae739,1,1,AsSeenOnTV.com.xml -779e785a8088324dcde82327f7927b22b0fc1798193beb5d7ad90bb13cfacae7,1,1,Assembla-mismatches.xml -961612d01bd36a91b308b7b0f8c4140d32c7fbd32380748985cb7e89229f2804,1,1,Assembla.xml -38a37045524b715447b3a42a16bd590a7e93dfed0f77448268081ee8e86033ef,1,1,Assembly.com.xml -00ae81f5653d38ac003dc5f553d9bb8403188e31c51e31a3cef5210ae665557e,1,1,Associated_Press.xml -c18170b65925b17bcf0c15b4fca81314a208d8626eaba72efa4d2428a0d9b2c8,1,1,Association_for_Learning_Technology.xml -b7ada52df16ccca038ecc463aa54e0fcce05fc798805cd2babfa0b36bba90325,1,1,Association_of_National_Advertisers.xml -04a438f4f810655982b4a6c5bb974b0320ea5ea00a02574829cc81327d3d34be,1,1,Asterisk_Exchange.xml -246a37091597228a679455f1980241c347c85e3617bdb43b875f99eda5bb48b3,1,1,Astrobotic.com.xml -ad363158e17c58965ddb34609fb859789bc8f6a49ae9dd7380376f044578140f,1,1,ATandT.xml -a95ab0e76da4858ef96619f48596e3cf505c6e3d488b324bf3ce76f94048488c,1,1,AtariAge.xml -9732a4be0d5a168350160a44467a1c608839388bf38f4e890a65a2e43333882b,1,1,Atgsvcs.com.xml -47849a15006089e082e0568edac0d3b0be633e4dae443fba442ddf54167fa363,1,1,ATG_Web_Commerce.xml -4c94ee271bf688743e9b5698bf467d2ad1183b20793483fa92af98dd92ef398e,1,1,Athaliasoft.xml -eab9d9c01dcbcaade0b3174c81ea284184e587bf5642750de514fb460e20cf67,1,1,AT_Internet_Solutions.xml -ac5a54b2ad0e2ef5b7e15c485b7b55e0c6f39db0c92f5786ca8a565e32e243b5,1,1,Atipso.com.xml -215ce46bed844359d84b4a0af3d3f65d2e63387a303b04ec74cd6acae72f2556,1,1,Atlantic-Metro-Communications.xml -9306e9e08bee07af69b076ebc4f8f3e79c73433fe43734800db41716959b8894,1,1,Atlantic.net.xml -1c4a668517afeab5af2dcd413c022e0f5651f4daca8f320679cc10c184ddf053,1,1,ATNAME.xml -222ff7fbdfb781f3ca1853286935bfacae935873462c81165500ecd9604fb476,1,1,Atos.net.xml -25352655cbb4ae63a91a4708f6dc6a906edd51d4d8d64e8a84cce6543bea79e9,1,1,Atrativa.com.br.xml -b55717bc37ee20155b475aa7b894c1f0d94913990f90d78845f67e7d7e36cb35,1,1,ATrpms.net.xml -7daeec92cfabfe03ea028f3a505424a98e5d2839917e297d7ef0ebc87a03e713,1,1,Attorney-GeneralsDepartment.xml -7e1bd356281faac59994835afd58be5ccda705aabdba47270324bc345f251d8c,1,1,Attracta.xml -112ebbd49a5e8309a3c97c2a1945bbd23dc9a07093b9b088cd7c83d12c411b4b,1,1,Auctiva.com.xml -c3e13e354db1045cb7c90ea452637d221a8a0963a42ae94fc540096eaa3deab4,1,1,Audible.de.xml -f1e1d94408e9b68398d42e729019d1813b0a87bd4ddde260b6bcab12e5044edc,1,1,Audience_Amplify.com.xml -95bb51781fa963035cd1a58058b9bfdfc9abfbc3ffb4f8d7e21ac08f3339e504,1,1,Audience_IQ.com.xml -e9eafcf7314ec5db5893229b34360dee99c4a832641454a288509c17688eb1a7,1,1,Aufbix.org-problematic.xml -9849ad86048fd4c9bd8d6d1a1a91dbd18cbeed5bc3d1d73f42adf83a7f8a7def,1,1,Aulani.jobs.xml -2ef52997976d173efe2a0394e993959e85b8c23fbc043a4aadfafd0035009544,1,1,Aulo.in.xml -78606905c784e6f8fb1688d23c982e2dcea3ff5f05214f1a531ac2ce611e7846,1,1,AusGamers.com.xml -5607a74fe2ce6bd81e188efc8ea2c9f583daac39126630f2f0c1e35e44d08ddc,1,1,Austiners.com.xml -65a3071e5ca64b4736d413eb6806dc8a7eff765efca653a7ec9eb65921fa1c69,1,1,Austrade.xml -053e7e489750507e59cbea15242d86094b80574b3a013d4020221378d9c94c90,1,1,AustralianBusinessRegister.xml -89a23a7485cbfa943ea3939c6ec5497517496cf152d696adfebf0b9e88805541,1,1,AustralianClinicalTrials.xml -46d64c4f78b0907fb96a59f2628115f7107b51b3f1860ee6aceedd10496c19bb,1,1,AustralianCompetitionandConsumerCommission.xml -3dbe8d16c684d21dd6867e85faee034ca7123625e6099a712179a3415376e128,1,1,AustralianEarlyDevelopmentCensus.xml -43449f244f6fa424f35e3e6bbae8573b9c46852fbe4e9d8f92bfc8ea44472544,1,1,AustralianEnergyRegulator.xml -eebcda134e8983488725adac8b59f709930fd6d11ffaff37f18e78a53563842f,1,1,AustralianExportAwards.xml -0a346c96033bc31f2ed60841ea5793bc19a11e31006fa259afa525d54698078d,1,1,AustralianFinancialSecurityAuthority.xml -afa22faab446a6430b4ed75de71992ac9e83b72a243f2e46dc508856263676b2,1,1,AustralianGovernmentBoards.xml -a51140eac588626b028c6d02deca32813249732b41e8fcd988bb9c82704c0011,1,1,AustralianHealthPractitionerRegulationAgency.xml -9409a519863814c25d04adc6626a55ee559f859d6edced395b2077d1887b14fe,1,1,AustralianHumanRightsCommission.xml -43000e42607640f9e629c45eff53ffc5b0e728de3110e45af51fd373a72be334,1,1,AustralianLawReformCommission.xml -6200fd74167c652c5ea687d4e6177170efef75b2edd95be9c074030c2fbd6505,1,1,AustralianMaritimeSafetyAuthority.xml -64415238e7e59d6731e51410e4d037921547c013716055e0a050b96ca58613a8,1,1,AustralianPassportOffice.xml -1bf51e3ef550abd0c59d8f80ac7df11966b9af47168872ea5276f1a28408f85b,1,1,AustralianPlantsBotanyandHorticulture.xml -c983c0862bf5602903b54e280ca8d3f853ac9c9d122bf45fa75b217dc2bfe4e2,1,1,AustralianStrategicPolicyInstitute.xml -9df077addcfaf82cd685b51c416149a5ad9fd31ff986ad295b3176ceabf1a518,1,1,AustralianTaxationOffice.xml -c5469dcedc055dfcc9cd2d40d9cbf4336f39510423466b1de26720440b827d58,1,1,AustralianTransportSafetyBureau.xml -e88ed1b7047bb1b7460ad0e35f5c89609ff3ecd4ca887d547811427e9ba243fb,1,1,AustrianAirlines.xml -86a7e2b1df97e9a7acbf7c758f41ea5914d4d9875e5a3224b597dc44e78c11fe,1,1,Authorize.net.xml -19c2fe950063f189a9685dca09e90da0a9b037138356e1d56a89d9580cfec9ad,1,1,Autistic_Self-Advocacy_Network.xml -3a729d65dddc8acdfb4059db3ec763fbbe6f4fc96a245592c50b0fcc0f2381e2,1,1,AutoHits.vn.xml -f83f035a1590a4decc7b11811aff0547a5218aeee50bab0369df90cd83600c50,1,1,Automatic_Data_Processing.xml -9d5a6d3c6765e42214d4aa85d4f62d702185f3ac31aecc56e0f3dbfde21bee8a,1,1,Automotive-Industries.xml -8c83934a31bf55948d3de4a43bcdea01737d1834c378463e5af62765922ae535,1,1,AutoTrack.nl.xml -0969603221b0551330ac3c84d79fa98745f8bdcaf37684a709065076a1889844,1,1,AutoTrader.com.xml -72e49f865bd8f834184b4baaf15dc01936bed8d6b4851d0249b77031b1093fde,1,1,Avangate.xml -8f4305f7995193772025e7ba37d242a6e42f8338b6b85294cfc0bf4d732aef15,1,1,Avanticdn.xml -e2e371b48971877e9dc3f389296d0cb9078754ad4486fce442b4f6801756ca72,1,1,Avanza.se.xml -d3c2485ff5968b974797b67e9a030150abebc2dd5e9b903cf1a4bf61845ababe,1,1,Avaya.xml -234e781a097f67b337acfda464b7152189d9b165c12e48acc276f588df0e82a1,1,1,AV-Comparatives.xml -7d0245447b6610aa8ee28b70bb13938639693122b0bb4477e7fae3ca86b89568,1,1,Avectra.com.xml -3e632fd55a29b917584ac35e60d0bdba0adc9d707aba3d7c541c79db1bd81da8,1,1,AVG.com.xml -52032e7d504c975616a158e71767d5ac8b2cd7208541671797ba3a6660bda036,1,1,Avinc.com.xml -7fe2c8189b922ca399161ab33c7b90dcacb2ec23e7afde2b28a11a99d372109b,1,1,Avisservices.com.xml -08bbac27f594c550b305154cc02cc5988b7cc1c6976c6bd6ffddb0fac17bb590,1,1,Avtrade.xml -302816c9f4c903ad19d81e6f7ba1395f22d2064eb13ae4a6e5803141cbaad1fc,1,1,Avue_Central.xml -9b72647c715ae4fef53f22ce772e79a5dc5853ab6e8dec175bbcdebd769e5c07,1,1,Avue_Digital_Services.xml -b6b29fcfbd40111398ed5eac43c987828e64164cd37f36ed6cb6e8985b7d5799,1,1,AWcloud.net.xml -7402fce03d74d7f8d4b6b6ad5083e9830155965790729018621e360f02a1f819,1,1,AWeber-Communications.xml -04f791d59d4a1acc70c12dda51df330c7683e7fbff5930d899988e95d70726d2,1,1,AWeber.xml -b2e7470e7747c2acc9f4e1085bf82c021a883e81078482f77cf9ae968025566e,1,1,AwesomeJar.xml -74d92b32d3809a7a7971171faadf4515df67bb8a33af80353a53826a45326e82,1,1,Axantum.com.xml -406d709a4fd37483cfbd763d8d6a17a98f3ecfede0fcee4a9a7405093b5dce6b,1,1,AXA_Winterthur.xml -aa3e6486761566210c9bfa7fbe3d495a5d7273bfe0632ac3efe0a1793a585671,1,1,Axel-Springer.xml -8643e039b2a27b284c2c44481b7d3514a6fe5010c03269bb5199016039ba5114,1,1,Axis_Bank.xml -dbafbb2410434c8c49756f533b66b2b5854b926c7b52cde36c47c53a668dc944,1,1,Ay_Yildiz.xml -ab2bbb646c24f676f8bb22a2208684313dc63cf3159f92ff6545b6d8afe8423f,1,1,AZHCA.org.xml -4a81f6357e57ba97fe472473c1f25ac1759807efb1c560e5b51311c249695c92,1,1,B2bmediaportal.com.xml -5a922222cbabc864865d973b4c374f40ae5edcd673e9c0ad9ed29105fd7e46ba,1,1,Babylon.xml -f5d5d7d166569596c72b9e5c8f2c14ae725f4524b504cc0119b1399132f3739c,1,1,BabyMed.com.xml -040df94b7fa868e85acd8ad3dc51ddbea735e060408e7492e1623e0ab741337e,1,1,Backcountry.com.xml -0ac8332e7a8fc431402e18ea7b2ea66e628b1de2e4ce855409c69b7295be4505,1,1,Backpackers_Lucerne.xml -20e322155449eb7196207108fb380b41a3b64a1807c972f029e9ca34afcbdf73,1,1,Backupify.xml -2b95fed0050444e42b004245f8d679487274de5d4bac642133fd71ad278df239,1,1,Badgeville.com-problematic.xml -e84406c76f338671651618cdf74f542127e42a0d8d697132fee643ecd33749a9,1,1,Badgeville.com.xml -09b9141f591aa59a389118fb75614dc6c1e97d3b15fe7246132c71e6f65db0a5,1,1,Baekdal.xml -35c9ec0e0c41b6699ae89b448b17ccd757f53a3fcc28c44258f2ac512f44a3b4,1,1,Bahn-BKK.xml -019147000a69774d1de1738330391b35e8a72784c1852ef0fd60911f94391ee6,1,1,Balatarin.xml -b39afd3672735f738fdeb230ac26035bfa3c82b97631097748dfc045202733e7,1,1,Balkongshoppen.se.xml -e4610edfe6ffc7101dc20fb7e4933c5752b8b07087096d7174350b85d0c5f15e,1,1,Ballou.xml -ffe89a541e79d166ab51bb9585db0ccad767e29203521e306764c7f0b80cf5e2,1,1,Balsamiq.xml -e863f16aeb1d8145d02347a1e3db12adf0b4b3ae5ce2caba184ebc82a5fc2633,1,1,Bangor_Daily_News.xml -36c9f429c7b194aa167c7d04ec311b60af0691111650d395905fb03051cda9c3,1,1,Bangor-University-self-signed.xml -34980a3686f64da4439e3cc8a3b9845fbab116700ae78fa7c569cb28ccaefef5,1,1,Bangor-University.xml -cc516d88bac6ade66c5b2d5d520cfa93584aef059dcfcf0e38a87e60793f07ee,1,1,BankID.no.xml -c0572421747129369f8219d06a95b1e5ba601619dc79095bb4b459458f30850d,1,1,BankofScotland.de.xml -52b4f17918c8dc9c610128a695222c89795f64d9dfeb9692a5ec977aa81292f5,1,1,Bank_of_Taipei.com.tw.xml -e2c6268d7decd2aa0fb7f95a19742c0dc3acef17982e0fd6758cf998d6e86be4,1,1,BannerSnack.com.xml -4a77f2239ce4d5ec3cdb36fe84620bfb908fb2060e293761df9003e61f4d32ca,1,1,Banque_Cantonale_du_Valais.xml -6c40038fcccf28a838a7b3c6c4a7e00a3bf68059ea59d7937820661f96fe66d8,1,1,Banque_CIC.xml -9ab0613fb9ab8ead3eeffad649fd0c091196351c21ff811b8bd9885bfab043ee,1,1,Banu.com.xml -e0b9fda69a55a5021eb95be3c90ab43500c2ce1c2c8cdd5371b28ae1337d0ab6,1,1,Barbican.xml -db116155fe8e1eed410bedd10b9db57847c5b19924012a744c58178bfe383f61,1,1,Bardwil_Home.xml -a0455b029bf6be44fd258dffd29abe274efdcd4a4a1e6477a60826edaa578007,1,1,BareMetal.xml -334acea9ed35e4d28fc63aa53eb93fa48c788160efe96b4d014f9987619098d8,1,1,Bareos.xml -47dc494dc28ec6ab57cb56fdd988832adc5a094feb7bb69e2f6c2cc01addd7a8,1,1,Barmer-GEK.xml -b60d916c30d712566b0fd5b697b4a754a4d7fb05597485109a1c9d92f721dbd4,1,1,BarnesandNoble.xml -3671a9a071ce22b0d7ebffd007a6164eb32681c72692e4ae734895f4e3592691,1,1,Bartleby.com.xml -f6468f106fec675cba71920bfd2243936771900e9d15bc40349e5d5bbcf0e3c9,1,1,BASE.xml -bec6f65a19505ee8e6403ff432718f921668b5a3b14eb7fadea5f81eb2caf57f,1,1,Battelle.xml -b2f414ba6a3ae96322754420aa619271e9cad75ab612252062118f52787f0a3c,1,1,Battle.net.xml -8edbf41eb742b7d927ebdae6e5285922dc594d6e5235276ce848d04a2050c892,1,1,Bauhaus-University_Weimar.xml -f988bff380ed61b0edb7191c508cf1513285b0a6d731f6180638451da8aa70d7,1,1,Bayan.ir-expired.xml -aaad51c2a0c8081f059d5983c03823cd8361c012edc1abb59491654ced18c271,1,1,Baylor.edu.xml -2bf534ad323bfd412be24cdbb1af720fe02b07bbfb3a9f65374e347f7db1c440,1,1,BazzApp.xml -bb609bec3263a1e89d69a761936332ea0fa5841c48af5e5219256849854e26b2,1,1,BBC_Children_In_Need.xml -d51e319be54ebd4d0927e337e1e99397b02394b50227865fce90101e84fa0b18,1,1,BBC.com-falsemixed.xml -1ca67dd8c8e778bde03249a0ef9d97a48259a2d8261222df72e54d3ad1c63d21,1,1,Bbsey.es.xml -38b24d1672c8f1b7bac6c5019320bebc0519455350844fdab04a10c8c346c7ed,1,1,Beanstock_Media.xml -c230d3883c17c72a799fca0dc0ce5267306dfe757c19b6c35e63745a331edfd7,1,1,BeastNode-problematic.xml -719bae99bbf770b99cba1e43a1b688064f96a8dba30a95170bd1d88c9f2f4527,1,1,Beatport.xml -8e57b60335fd240c6e38c5e2c6aed9f22a6c602db94a1770ee8d650d009dc29b,1,1,Beaverbrooks.co.uk.xml -c34685ecb3fb87f6100e138ac70635fe33ece2a7d6a636ece3d702a2494a45c6,1,1,BeCoquin.com.xml -3d78540a88f99cb8a4aede9bda44366bb9abe15a131f4ef94590545f9df464fb,1,1,BeenVerified.xml -b4d0ca22494e3738d7e205e1e85efd94601776581ed679d3e0f04c48826437a7,1,1,Beetailer.com.xml -258fba433954bf07cdaae659da7b42785ea4ddf790e2c958817dd0e422aae404,1,1,Behance.xml -b00bec67e5e3b8c1ae652dfd383407cff1782edfdcd2c635dae39e7197bfa4d2,1,1,Belkin.xml -86a5252d6bb39543468329b7e012b7752c0dbf17d43027f8360cb5a54f3303fc,1,1,Bellingham_School_District.xml -b0f2b40c22841953978001af6cbece9c756abad7ced55560cc3b21cccb1d0f34,1,1,Bell-Labs.com.xml -774ce0054a322ac1ac0ec628ac8fd5905f72750d3c618790d14aff98474fd3f1,1,1,Belly_Button_Biodiversity.xml -4fa3697cf81af513b6a90b5cedbb048caebd70f8035f36ac80b193d040e0f173,1,1,Belnet.be.xml -76fb372124f17b2eda57cbb2b2ae7530b61beb2c60b8674eb0ddb09af512f67f,1,1,BeNaughty.com.xml -5a718e75134be6920e13977848a7c9588ebcb5b37eb0e6b617cd15ead37bb031,1,1,BendigoBank.xml -57608a09139ae856feb743ee7271488d3bacd392d05ecc0fc2bca2311742bb0e,1,1,Bennetts.xml -8bf6913061f07c611a3b7d1088d2b4bfd0a7d7d2e8acb4485130323481795915,1,1,Bentley_University.xml -f8a9517520b6042b8d0106a36de5e62b23ca5f353a9e02558cf495d86b466bb9,1,1,Benzinga.com.xml -0367b2ab159ee00969f4318bdf4eb1d55756ba4dcc5d634b9f0534b0689d6fc6,1,1,BE_One_Spark.com.xml -5724958d17f89c66dd389393557d2d6f19c2f7ccbf1cb7f93c7ed3b0206277a2,1,1,Be_quiet.com.xml -513603c1a414ba577fab5a3da5f12341fe9cac9b1a6f0c27e3a565b945651ceb,1,1,BergensTidende.xml -4d97111875e637375c4095e7874a3b24395c7cba4ca20305094f730978ef8ecf,1,1,Berliner-Energietisch.xml -25e6eaad191ef2c92a1c0375b42bfd2debf88f2457ab889db5ebce27f4e044b9,1,1,B_E_Smith.xml -2568c9f74c113c277efe0ca97a3393f766db717d355b6b2aa270593af07572ca,1,1,Bespied-ons-niet.nl.xml -ab2caba1568f7b1af63f44f6a84fa1aefc457d1ad155e9a545ecf78034ad8d85,1,1,Best-Buy.xml -a431b9a38d469ba6429708286562f55c3c396fae15555a0c6cb565cdde151a1c,1,1,Bestcovery.com.xml -5b790b4eaca22811ef0b5643bcb6c7d958e5a4d53f76d6c947ae60e9806b60e5,1,1,Best-Lawyers.xml -ccc75cf2bfd8c8870b15c393abe04d0d5c8c0b05fd253422c345a0c2655645c0,1,1,Best_Olive_Oils.xml -951bf32884fbc29aa6a2efdc5f10eb58778b2cd4589d7781c6138fa82a63c5d0,1,1,Betanews.xml -41fa1b17f14c26415cd82f15415ae651d39b0d1e452ae450ca1bd4ef19f378bc,1,1,Bethsoft.com-falsemixed.xml -fcc160fe3f9e18838ef79b25fc1ab3e2e7d9705c291152f6f103009cd2011c3b,1,1,Bethsoft.com.xml -423d08add48e3a1cb5fe13327b340e3da7869faed62f25923c2165293492a3a1,1,1,BetterBills.com.au.xml -a7f7d7192c8464173c2833fe11a57e2bcee17b349a4e2b60cdfd5f367ce55d46,1,1,Better_Sales.se.xml -77881686d6888a0de5255bae2d961c3cf42c6ae661f5f0a9f9fb7ff989c37237,1,1,Bettershopping.eu.xml -d891cf03d258dc5d9637dbd60f405403e198622c1ec4328e28c3bcf53f4c7c23,1,1,BGamed.de.xml -db17a63fba99edd0c8bd9ea88606152ffc260b70a7248cc87c80fccadd879397,1,1,BGPmon.net.xml -997a21aafab8bf991df9b35648b46317669f5330844f5c145c5f79837fcbea05,1,1,Bhiab.se.xml -dd84a877da499eaa0246cdf0cbe7473182e68191e8e96062f093515f11b5bae8,1,1,BHosted.nl.xml -88d9168d7c35682e80336e70c63d79bdbec8fcb703067a386082ec59de9bde80,1,1,BHosting.ru.xml -85369d0cd3eaa85d5426e92adefe7af4f9f814d1e0e15576cb81373454683ca3,1,1,Biciperros.org.xml -f8da96534024f4b9bb6212efb1244f1f30cd3fe3403a1dbd661247dfe0a4f817,1,1,Big_Brother_Watch.xml -d68ee3cc47157f440dacfb19f654c89b597cfb31cc7bde24504adfe61ee50c05,1,1,BigCommerce.xml -ed5df40362cb3e1124a4a48ac5a4c876987e58beeea367a46a912ac59c7288c8,1,1,Big_Concerts.xml -a7bd44f6227e03e96926d7a1a1bf4627af4f51e88b5db5b28a5bc5c96bbe687b,1,1,Bigdinosaur.org.xml -ffbbc3807331985248685ba1f74b23ac9b7956664f7342569dd05885563fe91f,1,1,BigHugeLabs.xml -3c63a7c9c797cde29ddb574a27cc85837819111a247ac705ef72e9eab5d40784,1,1,Bigmir.net-falsemixed.xml -019e9a38644d0ff08135c57cea913e24d98dfa9c306176490c80cd6e330b6df4,1,1,Bike24.de.xml -d281385100cbf2c7b36aa5cbfcbcb806dfd9eea74fd0fce297b8227c13e09e2e,1,1,BIKT.xml -bc1dce36b45b3964aa4ad44bac9f4f21f9ae6c58f7c538f56ac592aec5e9c56c,1,1,Bild.de-mixed.xml -5d48e79dbe47ccf4474f61fa18ac809199eeb99993e1d3f28795ba9f22718d3d,1,1,Bild.de.xml -2bbff5e716e7e37b9083149074e0ff9a429271311cdd3907157b2c376e7bf72b,1,1,Billetten.dk.xml -8cd9a60fda734c59abdb7e677057381c8c7579dbd74cb593a02656a39c151692,1,1,Billiger.de.xml -9bae67b92de9ad98ebaf6a6cadf6784f322f031034a42abcaa9147ea0862af0d,1,1,Binary-Biz.xml -113777f338466bc6512680297e9af75a0ec7d94855ec4e652710551dfa5be09a,1,1,Binero.se.xml -0b1cc18f060d3723f54760693235b1c2757ee9be9c020ee04d0fc8394e2b8d57,1,1,BinRev.xml -7dcf2f0f64954863304d469e658a97e4f7f034d845dafdbeadcd23aca9f5ed75,1,1,BinSearch.xml -c1794e04d3ff8f95075fc73f0fb3a6d04cb3f367a7f83f27ad0d546020ebcb2a,1,1,Bin-Store.com.xml -a0134fe6daf1357222392652186d939db2bff2d536c66f04be36c9cc4d40d016,1,1,Birthday_in_a_Box.xml -573cba521c4d30634c5a52f669401e6fa01062c2ac6862f3a084d43b566d34e7,1,1,Bishop_Interactive.xml -e29b32e9560890e842dd89122e52f12751e6f6be8ddfac5601950df7f2c16ad6,1,1,Bitcoin_Plus.xml -508f2ce6714df34a9face9de0832e7813b20a88420b2012fef6d682bef057712,1,1,Bitlove.xml -89060e710c9b7da93c51d49146db2b363b1026b3688f74575e8f41b91452e515,1,1,BitRock-mismatches.xml -3f08c6da5235e24c0da546ccef1cdf1e7336d7d00031db55619f2eb9ad6ab4b7,1,1,Bitsontherun.com.xml -b19187dfa7b76caaa827df0cc3a6e148cdd8324ec4b130f12d4d7b610aa9ac17,1,1,Bittorrent.org.xml -488fd6c9aaf93eddc2eb9d2bda98d612269a42d022db8d847eb51910ab0a1595,1,1,Black_Box.co.uk.xml -da7e4b08208ded1c4b767d150ecea18f78b5249f88487de30912e85c607229df,1,1,Black_Duck_Software.com.xml -88bf35e32fab806cd20aec94ab13e5880ee52e59d5f7bd2a4d9854eaa9a988b9,1,1,BlackMesh.com.xml -57be94c548344e1341f036e0ccc6a1b9b3db4d7e6509e99c66412128717d711e,1,1,Blacknight-Internet-Solutions.xml -37ba7ccdfba6cbb38f070020e589511eb268bffd0b56eb1a4419bc8944a1323f,1,1,BlackTonic.com.xml -5587909ff2cecf5dbdfcd2f2e8729ff27a6b8e3218a94a6a2f7edfd440ecd41c,1,1,BlackVPN.xml -e7d0eb1c5390cf57597a831c2e19b9a57c2eed3f909b501f84db33008c59ca21,1,1,Blau.de.xml -944c6346298e9d33dad1cdec7c18c8c0a1bd61b5fcd0a7d5ef3a7477239800f4,1,1,Blaze.com.xml -ccc2061f0e821f79ec44d9ee4b85c86173fc8bada051f52e89d0d2de217b76eb,1,1,Blazonco.com.xml -878916341a96e0461e4eaa31ff855f8bcdcfe3df38c204200f5a4ee26c0ed2c1,1,1,BlimpMe.com.xml -788abebdab63cc22f25ae5355e414c59ba172eb8398c4cb4068a984b993891a8,1,1,b-linked.bbyo.org.xml -12e4e310a6f9a8ecaf03f27b8b107b034e86da1b41dca1ad260705b9f6217558,1,1,Blinkeye.ch.xml -5f627234aca463926eac998ef133407e322eb94921136ef0dcd5acb73423d1c0,1,1,BlockitPocket.com.xml -0bdae076b5e82f746d4642bd022246713195dabd5e81b932fff1afdf5faecb9a,1,1,BlockScript.xml -0c3d9ef0fbdf8c92aaa21bbf522f5f98dba1f91888d9b2df5d32f2c23b64ce20,1,1,Blog_Automobile.xml -92ed52aff5b56dc84c76ce96adb65627da5b61774735c1da41bbca44bc4ca6f8,1,1,BlogCatalog.xml -5829c7c1d1ace2d3fe8fa90ec564702d5653e9314e40b9231b64e940cd6720ba,1,1,Blogg.se.xml -8fbcb0293f6b69cccc5ee005717d13b0c07bdcadeb8d4956cc07ee4ebd189f6f,1,1,Blogo.xml -1f133fbee8bcb5a78a7b039865a38c14c1e6435f48d93a61a9125ccc4d83f90c,1,1,BlogTalkRadio.xml -5b77f8cc28003a0710bd44a13ae523d1fcb642ef8c14406c8b3bd98d0027f9d0,1,1,Blossom.IO.xml -3958f7571262401df5596dc64eb26c150ccc8e8cb412301000e4c13d5561b13e,1,1,Blottr.xml -7f8d5059120ac4bc4b0db885a258acbf9264b9d9c90e64dd3d029ce789fbf078,1,1,BLOX.xml -dcac29673b164c353d780e5f410be5b5f95f22c352b66ab3de8abcfea2ab287b,1,1,Bluefly.xml -fec60c661c82f9e6973e837a53a3604a7bd2dd503dd1d31b7a6802a84f4db6ca,1,1,Bluegiga.com.xml -185287ee2e89e6e6215f459c01f33f1ffb9d29e36376dc3115c717d41e45c114,1,1,BlueHost-clients.xml -8688641ddd3db08b9a452029a89b12b858c2456a55c1abeb9f6b2349633dfabc,1,1,Bluehosting.pl.xml -af811f2a60dbc47f350419078d14c459f937bfba54b7c06a103e15623cb93b04,1,1,BlueKrypt.com.xml -4ad9f75a22611b4ab5e4ef795b9cf12ca03612d9660ba568e643d036cf97ac8c,1,1,Blue_Man_Ticketing.xml -35530c1de082fe8c03754f797d1dfc1696c62ccde7587877e11be615397e8f50,1,1,BlueZ.xml -cd2fcfbae17073af9078bdb65c85ca7a30c2a9f374dee412d13b88f4fbee3e9a,1,1,Blutmagie.de.xml -fc757f17d83b594bd2fa2964ab128fc9cda228727fb99e25e67130bc558d6187,1,1,BMC.com.xml -17477c85c7e67e6a14ff8808cb3e67e3a559079be361af13e394baf8153645c4,1,1,Bmmetrix.com.xml -bd609d4d6e7d303576887e9d3bc7d86c62e65ed77a70e0c5c0373c11825f2b5c,1,1,BOALT.xml -6aa8675bae3564c6040d1ee54ee7c6eaa95712ca262cc029f76d35e68c6458a1,1,1,Boards.ie.xml -67f1ff658871ad47e02439ae9af5dda272ce91ff5b49b61cd3f1c3bae1d33723,1,1,Bodum.xml -f68b970012f85d3fb946f1c8fc28e49641abab46dee63f0a38ded2274e84a880,1,1,BodyBuilding.com.xml -c9a373826a1033dcb91fe698e08565a239407f4dbe6b4b9e665763369fcf482d,1,1,Boerse_Frankfurt.xml -42244265357ba444d6ae9d1307d6e2e52b442206eabe091dd84d109cab1c04b9,1,1,Bolagsverket.se.xml -b77d81477ecf11c96cae2e427b6b88cd14886db555e8106d3b17329ec3df8291,1,1,Boltbus.com.xml -78197c8a2e67a77706a1986e51953f3de7037b78e86c34de278bffb6681827e7,1,1,Bonneville_Power_Administration.xml -a553123cfce927b1c373d5ce2380bf609f9d6dca9a8e61d51ecffcc5edece1d3,1,1,Booking.com.xml -753512d3829e9b9e62dcc389f9d99420918516ba56781b87afd7c7be8938309e,1,1,Booklooker.de.xml -6ea459befae0d016e35f372706e2de1b91fbf929aadfc08a334f683af80d2f35,1,1,Bookshare.xml -d95bf00ef6002e18fcc12f9f1c20e9719e881da7e8e60be94dd7c5d04e33d547,1,1,BoordatWork.com.xml -f296eecd2c233879e94ee233421ee94c619b7d9f30d8c58257bf831d409151a9,1,1,Boots.com.xml -45421bcab88efc09f590ba1deb06a30f8ebbfa1178d7061f2c06def617407790,1,1,Boots.ie.xml -f68cbe5a7566d885e719495209b6492cdd2d7f5e9a22cd09912a08a5b9ec6865,1,1,Boots.no.xml -8d036acb8f3ea77fc6d0de3b31bad87d03a27e89431525640703a170168f68e9,1,1,Booz_Allen.com.xml -d217680bd681c4891a8a378e8d0cf86ddbb1248ffb73cc4b63499cc5177dd4fd,1,1,Born_This_Way_Foundation.xml -c812bcc64f2dc8c09ab94f8e00793f97466cfbfdee869eac6d967a39ca06897a,1,1,Bosch.com.xml -33fdd006644fc9144ab8e95658080cc6a7a02dbd974d3ef819a370534b3af584,1,1,Bosch-Sensortec.com.xml -0c8ecf8140d42ca18435ebaa6bd5014acf230b2506c1f7e196d0a9de17a29409,1,1,Bose.xml -c6c18a71ab271826941d7f1c532b9b26be9ee8f7dd0c32925bdbe6203746c42f,1,1,Boston_University.xml -309241ac7c972b6682c8ada9ee98789e395848d7ea1a1f3b6b97eb309be1ac07,1,1,BoxOffice.xml -7c899ec80cc19d4ae8e2999849a3624f6891c104df4058edd230652897815e28,1,1,BrainBench.xml -3a0c64fe800fa138bb5b7dbe1d3c30687cd5e04ce2bfb111a85353ed20c1034b,1,1,Brainshark.xml -14392c3133833624c5c2aa9b8526be87616bf60db67261dbf03ef4266fb9c066,1,1,Brainsonic.xml -3fbe3fba810c1999458523eb42e7066bcacb7f5f134e0b86ea220ab111fc5a73,1,1,Brainstorage.me.xml -62a1ff2660e90d0dcd68205e5755343612031522d32c97ab421b67daaa96c544,1,1,Brand_Embassy.xml -f27f3262eb1c10688637350e72a736ab929c73f2261f70fca86773051f511cfd,1,1,Branson_Zipline.xml -f3233bd4160f76f435ff84db60444fdf41507f921ac613fe3b6f283cf5cfce8b,1,1,Braunschweig.xml -1fb4af1040dd2ab8f96f64ac6f97d6981cbd1bb2289758f55458cd69d2a335f1,1,1,BreNet-mismatches.xml -ab5ec48b216192370a66d7fbdccf5f0af5edb18e70a287ad510196df2adbf304,1,1,Bretagne-web.eu.xml -c868592f7203fe56cfaf6f91a4c8982cd132e3e09617de3c7d4134a85eb39568,1,1,Breuninger.xml -86e82cf6d08df90e38eb4669b51e3de1033f9dec47be5a346750b5ca0856039a,1,1,Brian_Smith.org.xml -4ffd50514403330e3643949f454ad9534ee3421581ac82380ee35903ebacd0b7,1,1,BrickLink.xml -0e2a8dc117d3acd6fb19e37f88bfe2027d3f5b253b3a1c1331fcb8a4058db82a,1,1,Briggs_and_Riley.xml -8aefa2eaa4f37b0e3df90a189dd655c9cbbed3bde4089f8f334a3df61083376c,1,1,Brightcove.xml -06f864e3d0c6a973238f29dedb5664caea33fd6328547204bcf932a526fecccb,1,1,Brighton.xml -bbd4b455ba05130f07710e4f11bae4ffffb6a14a2e53d18ab813a9fd1f5b3bfd,1,1,BrightTag-problematic.xml -3d443a23f560e68a1bb76c5c7f0d19c9a8f60a6037694cbcca8f6d459b66dc44,1,1,Brinkster.com.xml -48ecf46a4668cf486d0438d95ffa46b614a20b7ffdfe6dd52178ff582b9cd7dc,1,1,Britannica.com.xml -6b73d0fa74627c65a26aa706658e1cf8dff117006096ca17da297a99c97ee81b,1,1,BriteObjects.xml -9f2597ff085f3a8b2ee08c90f6c9b46ab1b50a82c8e90cc0349d5687e9c157b6,1,1,British_Airline_Pilots_Association.xml -90a1e5ea8c14756b091326e1266b7289980ea204f75c2fdf4f474caa4c906a9a,1,1,British_National_Formulary.xml -b26f2658831b6ff506c560fcb9e8f6f24bb7eb67543a66f647d639de6d5ab8aa,1,1,British_Red_Cross.xml -f3dc060a1ea1ebc01403538c85e20a246dc03cf7fd2d01c4e6b4932e0f22b85b,1,1,Brmlab.cz.xml -d52daee164b0903a9f8789f6965f1db3f02b0f644782ec8247b27645f5cfce1f,1,1,Broadbandchoices.co.uk.xml -0e6e4c512ac37650cface82702190ea7d8a9622a58f9f756b6355e88c8805308,1,1,Broad-Institute.xml -dbb46ee7137694c4c171d6862232f4e01c611ff5b78c3da59720c4d7c2dcfce6,1,1,Brockman.xml -bbe59d2f766e67a5424a4d77d610322e490c57ef049b835a25d2c7dba5602f94,1,1,Bromley.gov.uk.xml -566d6b2aa94f016b3acf4842196102e0be36c43d522d19f66d676a771cb879ff,1,1,Bronto_Software.xml -7922df39e5e461e1479572bb4e9db1a3609efafbad3707f75d5b0837e50b9f0b,1,1,Brown-Paper-Tickets.xml -4325d39e0e10a221fef89c4c06e91596114b3a730107e98de7d66f473cc3a759,1,1,Browser_Addon.com.xml -b8dd0e42cdbf07e4116234ef829d286aa00c7d136396dfa3b2ea4977cec0d931,1,1,BruCON.org.xml -dc6caa11dcbe2223130679d10db446e2743613563ad93575fb114613604d7605,1,1,Bruno-Postle.xml -51249e771817637e82f106f9105c78ae51b0d4f9ea6690ecfccdad8d997f1619,1,1,Bruteforce.gr.xml -b78b10d2df68402d118d6321483e5d939254872152d970bcd4cc7187e9c3d1d3,1,1,BTDigg.xml -b57a3b5bbcc0ea41d8db3876733ef1d550b14987a2125c767590d2440c71aa7e,1,1,BTGuard.com.xml -f220626aac6f6f1da031f3bd445bef227d59da713beb06685215af440614d8aa,1,1,BTH.se.xml -0dd10721869d1b1df13386173b745d661d71199579be27f52e781e0e0c55d889,1,1,BT.no-falsemixed.xml -f02719e41dfc1e6cf086314cb5d1b4fdf6495ca9e012de645a3e62bb9fafae95,1,1,BTR_CDN.com.xml -35791c159662b242ae9240832be9351d3c973c4add40f9a1941a8c78b51966bc,1,1,BTR_static.com.xml -0aee3f2f500bafc6e69595947c0826f3bceefbbaf7f34526534b18fc43b678b1,1,1,BT_Wi-fi.xml -3a248c5939ec368379c6395aba5e0c2f2c755dc94b536df34a66bbca7e8b8321,1,1,Bucket_Explorer.com.xml -cdfc30bffe359836ae3497140988a0e232b84ec88b89e1173bc7cb0bb0b3bcd4,1,1,BucketListly.com.xml -8e7f67c2c91f31f555d547b8c28b2fda823f60ac8cbf7343bcf63b2b3279db12,1,1,BuddyPress.org.xml -f13459489ea08a54723d293ce3e3bb3b87c650f4bbbd2a141cebb7202041113b,1,1,Budgetgolf.se.xml -28af491a51c5dadccdb59f42e48ae1730be2105d11c838b8c0760bbffbb54c2e,1,1,Budgetkredit.ch.xml -2aeaada1de9c4ca0fc6ebc981711f2a23a8e4428a3cbb2f837b5e7f693e784a7,1,1,Buerger-CERT.xml -d76788c6073c6074538525a105ae0a95e8e14c9caf71f42ee49adcc0ea456808,1,1,BulkSMS.xml -4457ac8d24e5fe710f7e52abdf2801b6ca4b33db2b1834da39b104dfb2e7b572,1,1,Bulletin_Messenger.net.xml -42207f5a81e9c20cfeffbda745d6b910f88f06740f8d21e3252abfb9ce7fac35,1,1,Bulletproof_Exec.com.xml -02199a6d0b0ba18271b96ee4b91d8afa55464c2f116cb1158b5f8f17fcbcff78,1,1,Bullguard.com.xml -84cfe73e349126e90c90e68ef9196b317427f0113caa429c243b32708d40ae4d,1,1,Bundesamt_fuer_Verfassungsschutz.xml -b868f832ff3636c59aa9c3c764058525b955fd7160f2885afa2e1a2a4ab4d1af,1,1,Bundeskanzlerin.xml -4a993016b9d3017b227427c90e48cd8373fd6134897945f279849307d9f40a77,1,1,Bundespolizei.xml -5bec6c2d467c00384afd762ed482f0809625b471f660521fa6a245e133ba2d30,1,1,Bundesverband_IT-Mittelstand.xml -8c966ad01e8cfd43cba059871fa3f31a180b1fd623bfe9ae777632c0f9557506,1,1,Bungie.xml -6c1748912929e8ac03f059fd54685e44735c7042ec6bad9348aefaaeea188c90,1,1,BureauofInfrastructureTransportandRegionalEconomics.xml -62f7720c61d08f148f5b3fe10be861f0c54fea065b05dd895cd454a49f5dd7e9,1,1,Burning-Shed.xml -fc39c7090cf6ae83d72e9f99d1a229a0ac5002afc76d96e0d4fdcae754fb9352,1,1,Burstnet.com.xml -c33cea36533235c6c927eec028ea2efde81358f3e8e02d22b65bd3678996d998,1,1,Burt.xml -c1abaf345d18d8bb9e8cb2fd125f601177d32d8341f9182c2d276c6b05370f1f,1,1,Business_2_Community.xml -7393401e7dfd747e876ce15c4fc3b16d6b7da1dc41695903d278c28d097429d2,1,1,BusinessAU.xml -feef6f5b69ab3cd7c45316fc1aa56978059547bfb188b1efe1410f5aae7e935a,1,1,Business_Catalyst.com-problematic.xml -1828776117613179b01abfeeb5c873f8198051e1a751002ee4bc516169072d90,1,1,Business_Catalyst.com.xml -d87b50a93806938e71aa60faccc24eaa55d7a795ae93e53c2a5683f161dc997f,1,1,Bussgods.se.xml -db58ee6861fb737987b143ce6adba2f64f4882c248b49310b3b338040cfab037,1,1,Butterfly_Labs.com.xml -2562bebc1989b77cb7c8b1d6adc0cbf1652eb1a5cd59324fbe1cdfafb1f85d7f,1,1,BuySellAds.xml -04cf84a7b713a034133dcfdcc83b5ac527735a654505463ec68591a5b71f8208,1,1,Buy_Veteran.xml -c427ffdf9436bd51bd0b0c6dc90e4c2892e3fe246e2066682cd6124b3c2d2e0a,1,1,Buzzdock.xml -b538310cfbe7f06f481c733d23a8b41facd488c3a91f0613142b44155369e6db,1,1,BuzzFocus.xml -97d0a30dada7f04c8cb3429a1048b8ac805bfd37e57920737e76e97124366f38,1,1,Byteark.com.xml -ca7bc8ce1f90607b472ea9b26ff033a624aa975dcd36d271d9da3c524a609d51,1,1,Bytename.xml -01c1ec339352726465cfdb386b0925fe2e115df06370e412bb3d622f702dd07d,1,1,BYU.xml -13681cfdfec8b977dd61f60dd3b60eeca91129657c6d53be304dfecc8f1dddce,1,1,Cabal_WS.xml -b971ac80afc454400fb6b63d8cafa6c0e5592acf4c5b1e6919086911b3dda4f5,1,1,Cables.com.xml -496e7c05fe03d3ef39378a01c47ab48dd3cce74f05ee486588bc569e1a230c29,1,1,CableTV.com.xml -0cf99299088ed1e5c7b0392b22233d2fae9545c038c78270c6fb8def0df55c32,1,1,CacheFly.xml -2b9ec7a31a1ef2ecfd802b57c36056e193b665f99ff11b3e612cd7adbd47e056,1,1,Cadence-Design-Systems.xml -c90ed7d91d486326ba8387c3261d51371a798dc9fe9190f331b5b6d61a0ec7c2,1,1,CadSoft.xml -04a9f7119bd93b943ec37555c866274a2f8af7239be84e78388b0ec6fa56eb0c,1,1,Cadw.xml -43587ecba7b34b06312fd938651880bd985d3bf058c4d83bbe7a7be9ee4ef3da,1,1,CAGW.org.xml -d47f7d3a5d91d6d708e424d66a99d709724edcd2ebedc8d4a0cc0f864e714592,1,1,CainTV.xml -a53839eeb7c5c5c70ec1a7717b0d2736dc7c2ea8627dc48ac79a29a6f4a2fb16,1,1,California_Polytechnic_State_University_Ponoma.xml -66fc9f974fe38eaf99a35ebfba735b4b6c92dfbe1f0b5a156236bbebf35cd29a,1,1,California-State-University.xml -bfc4392c48b8dd4d7f1345d4d706883d947fd3c17cd1eca2fab935e75277c07b,1,1,Cal.net.xml -44881afaf50f9b151f3839415caf10aad8a5a01d2d6d884cb87c83efa20684ef,1,1,Cambridge-University-Press.xml -970ce1a3226d07a9c9e49bd6240ffbae8eb89fe5247214161a7ac5dc70a51060,1,1,Campaigner.xml -9c90e796ba254450d3b72c9148fc31912df75ca35dfbeda8e00c5b82b547eb80,1,1,Campina-mismatches.xml -da60ddf6de25a6c971e013d595396fdd134c7287acef6900c4124f47087b1764,1,1,Camp_Staff_USA.xml -cee40e08bee1b60dc042a63a2f9eb299b77b9b6e1679d067c5f8a16f64803037,1,1,CanadaHelps.xml -7361432018d08c1eb212a2c9d1cdb6901fad4a8a2486a3bbc5985dc410d0fcb4,1,1,CanadaPost.xml -59c358ce47081b95c16609c0845a0e69503a386adfcaa9415efcd9e08797010a,1,1,Canadian_Broadcasting_Corporation.xml -5d08dda7d1b74303183590208bbf76c0a0ea1df76df2b3497beaad6d8f332054,1,1,Canadian_Press.xml -a67a179fce16d36044ed0085846aa4c0473713c03e7e3c554b1e554666bd9707,1,1,Canadian_Security_Intelligence_Service.xml -da0a056ab56804c9a3bac0d03fe82a66d33d3fae339ca1011083d85f600a1656,1,1,C-and-a.com.xml -aa84ff00fbeb0f753bb8fe1414ccdf017caf54f3df9c4ed98bd4c51b34974fd2,1,1,CandH_Lures.com.xml -6cd187881dfce8f6cfc68acb91a042c77eacc36df7ff11164634840578ba4470,1,1,CanSecWest.xml -90eff7965a6d548ff46af2a7b4047fc367be453a1c2570c6bd022de54509c796,1,1,Capistrano.xml -2b8b667ab677478be937f6288d41353de634e073c363ac23da60e385a227f45c,1,1,Capital-One-Connect.xml -46383467527a4bcea8ed5e458c654298231bec71928ac4189777106b34ac30d9,1,1,Captura-Group.xml -931643645e7f80856eded12a988467fc5d54d857277e22218e59b85ea353bbbb,1,1,CareerPerfect.xml -c43ad179fe48087500c79b99ced99899eb2041273ec1c121fee7f08494fd82ed,1,1,Careers.fi.xml -33e6dfff597abff0ac105150b25f2cfaccdb96b8ec030409f47dc46a3fb94ef1,1,1,CAREpackage.xml -de976e830c778167c1e154b7a2617e0bd1c08431d99c37b516e0e3c57d7dc84d,1,1,Carestream.com.xml -fbed29456b04f8c636e55a4733cc819f2270bbed8cb8fe3badff7d700c22509b,1,1,Cargo.xml -1f5b54608b06716c59c6e5b7ac92c81babcf0a059cef85c3bb16044db881d9dc,1,1,CARI.net-self-signed.xml -70d5f18099ed772fde86fb8ddda405cd55112f107922d29f22cef25c7db4f849,1,1,Carleton.ca.xml -1dc9df8ba5114e4f75aec8f4843d2bf5d7a0598089b3e21cacff834ab3c5aba0,1,1,Carleton_College.xml -c047260fe241591aff0d21678c993c268a8e8e26a0a9a2bed56c4fc93d6a9d2d,1,1,CarltonBale.com.xml -b99da0557fefb5908fec709a958aded1b162eca1a262474909bd02b6a6ab20e1,1,1,Carl_Zeiss.xml -83a7a826ab4d09e28083e71992b751bfb5901fc04fe278dc5cf8016f1da5a013,1,1,Carnegie-Mellon-University-mismatches.xml -158e92ef882520698e65760c919a3992902710a73b6368eed036302621eae068,1,1,Carnegie-Mellon-University.xml -17caeb4c5121ef1b3d80aff4dd32fb0bd1c9c6506e3b8a5b5f7c9f329c005ba9,1,1,CarProMods.com.xml -e511b5aec0c03683bd0f453fe272b5e81b7d2c53b7f2c1479de33a1e9b841f90,1,1,CarterCenter.org-mismatches.xml -cb7405d2c2753f150dbe71bc0859cfbfabaff2a13093a8408e93bc1c5f5770e2,1,1,Caseking.biz.xml -828d2dbc106378004fcf07a416e73032ef785645efe2fa901d1726f086781a28,1,1,Caseking.de.xml -02b835adf3271019ab81b1c292ad031f85a01616b4739be3a73d3a3b6ec5c899,1,1,Cases_Ladder.xml -b8e5db24b063d9127b7a189cdda854e1b9e768c6aeadfe10152f311894715979,1,1,Case_Western_Reserve_University.xml -b6c3224ec86fbf01b6084a73ee05150118667cca5fea03ce4142dd54c41365c6,1,1,Cashback.co.uk.xml -e7e6de259ae2bf37d6c58972538d00e6800146d4aadec503ec1096b562f2ba1f,1,1,Cash_for_Contracts.xml -811c33d7ad9dde56ad15954e3460969dab20d0f9fa930584443266e21feff865,1,1,Casro.xml -7fddb9451db47ab6222ff191001fb1904c4ad0b66a8c514d00c049aa91159416,1,1,Castel-Bayart.xml -4f377778090b31759ab44d22a15a68ed8102650515c269e26958bd77c3e3ceb6,1,1,Catalog-of-Domestic-Federal-Assistance.xml -c02c10e83e9544bb3104e6f1485c4a55a2f4706448156f35932caa6318a2d95f,1,1,Catalyst_Host.com.xml -f57a8aceb54e732b6b3c8fd1648b923d7061e7f2a4e740fa769fe264cf0f317f,1,1,CatN.com.xml -cb89627369982908c0f26a2057bfc12a61b87dc3859a7524a6fb20f638d07db2,1,1,CBSIstatic.net.xml -1e4ffbfff30e381a66dcf8a43c05f61d5b32b783be2b6309cff97fdee94d9c67,1,1,CBS_Local.xml -569933e0f01cef53cab5b42dea1f697e7e13d072d6058ca740fd73ed798fa83b,1,1,CBS-Sports-Network.xml -dce47057289512712f6a81473c0392ebeec435bede445e2418949d20001d4c5b,1,1,CBS_Store.xml -67d3897fa7d1811469ed6d32a8074309474f41d03fe151ed65259607269f822a,1,1,CBS.xml -30013485574b054268bdaee6655f649027c836449bbea345526fde438960fe73,1,1,CCAvenue.xml -dded44f856c5b22d92e7be6fc15b90dce78ce9a0c565ef54ba0fe815e78cdbcf,1,1,CC.com.xml -2d265021229b69c10311b29249bbac63a42cdbbf79f925a44ba9559e7a7f9bf7,1,1,CCCure.training.xml -ee2029052a69035b9a9f47b794db3f02e6f467ec40a2f5bf582646723a13932a,1,1,Cchtml.com.xml -430a652e306a687903f0c37e1e48de430b7a83ec245f7a4be1000b2b19c57be6,1,1,CCH.xml -395743d4266969cafec28bb5a7d0ea3df0f409f417bbd5198dac7407dbb6b08e,1,1,CDN77.com-problematic.xml -dadc27805296e0616502f8dab61f19e1101e29bceeb58be4d7628fffe56f0a8d,1,1,CDN77.com.xml -7153aef916c21a4c0b0bfceb785a952d7033bec8ac09985543fc2544e09591d9,1,1,Cdngeek.net.xml -e3d1fbf663250b13e6cec1485aa7fe068e14180f6883b42fa9681f007004852f,1,1,Cdnme.se.xml -5878f1e899db043e9b127a9e795b3f99e54bbbf4b5edf4087282657af37fa5d9,1,1,CDON.COM.xml -c2c8b3ebec631dda1317ae648abdb8820843f2008bfb084ddd40867f5942ee35,1,1,CD_Universe.xml -cf5327ce99f02ed18d5249e6578f78a7584c6f43c05d2cd4ddf8a1aef16a1223,1,1,CDWG.xml -b09ee57848b20dc5f0edde7dff31b6dd704d171d7494f0b4e566b62c8587cded,1,1,CeBIT.de.xml -d6a8f71386d93781c880b1b2a5745306b956ce7a6e9054a32c8180e1d5882de3,1,1,CED-Magazine.xml -08808ea372f1539dbd840591d1adcfdc422bd1b94619e0551fc7cd4f6be484bd,1,1,CeeJay.net.xml -ff8d40bf74ef03e97bb141833608fd1af15eadf315b3d4375b2f343a6ffe8043,1,1,Center-for-Documentation-of-Violations-in-Syria.xml -82abab3b4d77995ea39c6a15825d1ac07d0bb03b074f33ae2de20beecafb466e,1,1,Center_for_Land_Use_Interpretation.xml -80229cfec1b30df790aec4fcd1611354e9b3f8100e39ff58d91509ac7d3061cf,1,1,Center-for-Responsive-Politics.xml -c83379f445fb8f6413686fc0baf7277cefe62eaa3cb2b220bda737675f5c2cda,1,1,CEntrance.xml -559cc265802aa764ca4e6e05095ba3b2a9cc782e530fcfeff985833279481a05,1,1,Centre_for_the_Protection_of_National_Infrastructure.xml -590f799c40da3367a91fdba74ef668755f1f6adc00ec8f63a3d601e3ce683b58,1,1,Ceonex.xml -2ff7637db101bf266c1273e53a85942c10749e6c7da8a13a297d94ab59a204ea,1,1,CERT.at.xml -5da4b105382e5d0f14ceb6d0df18911d7b18e56047a02be0a804aafd9d900ca9,1,1,CERT-Bund.xml -750616ddd0ac444afc83069ecdc28a0925767fab767e7bdef1f604c573d8c8ce,1,1,Certified_Secure.com.xml -0d50a543a6b5b5f8e849bba2001a60410e7ac663b47af5a75cb701817da8d7b5,1,1,CERT.se.xml -61452ba857551759e77d5b513a6490e4c4abc0a88b6c36e32307a0c4fd6ba720,1,1,CERT-UK.xml -2bdce0201a1573c28fac0377554b793331d5e242c1dae39ac1879603811f4236,1,1,CETIC.be.xml -2514e273171a3ace9baaf2a82c0dc3db1ac1d2dd3b3ea604b90b98982921c905,1,1,CFEngine.xml -657c3fc76a95e653075c9146e79384f35deb6602ff616d54387921bbab2c83a3,1,1,Chakas_Mmm.com.xml -6f590753ae8cd04bc98291decbcfd6ec6ea47549166af85cdaa10ef1e818226c,1,1,Chalmers.se.xml -15cb94615e0109eba10078f5957a09f1928212efd7e6b6fe45f0d5a697c549c2,1,1,Chambal.xml -ff87ce869010679c515851e36ea32a465192690bc683dd743900d54b38f61374,1,1,ChampionCasino.net.xml -c87f185e689a248f74a488d77d0684a964b7e26b9f85df8cfd36c39a90aabcc3,1,1,Champs_Sports.xml -b9d0903b811d2fb31c9a37f791cb10e6db214250062ee925367786ed616e8ec3,1,1,Change.org.xml -e75a685766041bef29364ef86fa5237b5023630150d62b3fb90cdab12fe18af8,1,1,ChannelAdvisor.com-problematic.xml -dcc49a44fd24bca36885c090e4d53fd2c1f403cc569769e7ea3624c84309dbf9,1,1,ChannelIntelligence.com.xml -32ed9892ffb10bf2476a20c52bca26c0697bc473e9f07a74e96fa989a70dfae9,1,1,Channelme.tv.xml -d05d674ddde1d804b15d5b66bd975f647fe95f1fadd4794a83b5df55a0808fd1,1,1,Channelx.biz.xml -1d429113302dff4c3b08ed76741b98f4a4a8aac62de47bd55c2df5761f2def04,1,1,Chaos-Reigns.xml -dedfcb5651cf7e272b46e197eff68d889105e34488ed86b2b9a8a1485ea094f1,1,1,Chapman.edu.xml -b4756a81d6fd42b2949d1f110962a6cad39da842d2c322783aa61d1b2e0dcdeb,1,1,CharityWeb.xml -ddd5b8efe0f54c7279fb1418985f9180e6a766248ac74a8723ae2a733963a3be,1,1,Chase.xml -7606270cd555ad7826233b4645f480873fee83602319fcb826d731e8873a9017,1,1,Chatango.com.xml -f1432b9c958b7d77317856b509738eea679ae9483f0bd86a27b70c5c9b644313,1,1,ChatMe.im.xml -e05d77b78aef21dd0a8646ef41c248e8c20619e13a951f2419ef7ee9808c2b53,1,1,Chatter.xml -d46688286a01470ae72a7494f809e4f5e3f1aebe8c1106fb90cf66225857e4fd,1,1,ch.ch.xml -e4363ff3c9c95bc14779143fc3b9634737158df58162c751d815e79d22a45440,1,1,Cheapass_Fiction.com.xml -72d316792627cab0145621b0a369b325e7729cf7dd0207f9663dd3ada5769256,1,1,CheapSSL.com.xml -b66e9dadc982bd71bacab4afb437eeed97db4b7c9c6f2fd4155c8bae645eb6b2,1,1,CheapSSLs.xml -ae8ab9138d1f643d504ce92a7bdb32a25040fb5891eba6e83ceb5825d4fa0300,1,1,Check24.de.xml -0461c1fa37a51ab04a664f608a0b764ebee6bdb87c9213c7b4935ba63033976f,1,1,CheckM8.xml -894acd2dc7705d1cf89e082dbdb2e22929fa076885cb12c5839beeea29c47c40,1,1,Checkmarx.com-problematic.xml -a661d52f01a655aca11ad14b59ebd2b1dc43fe4ec22803909f5cc80f9f2c7972,1,1,Checkmarx.com.xml -7b4f7642ff833119de22f4c8dd0d1f52f8e6b5980943e682506333eab3f03d02,1,1,Checktls.com.xml -3cab21f935851890e73e2648d782bbd642a89f6e7b733e8dbf5f2366d572f45d,1,1,Cheema.com.xml -874c0ca58d248cca11347c7709090b7642349d67a5d974b7715f83cf112ef009,1,1,CheetahMail.xml -830f65a383d7db9aa636b7edb97f0b68dd20836134773d72e567c5814b336945,1,1,Chemical_Abstracts_Service.xml -5a3386790b6cce0cd8d88a347a1ef83fbc723f44ea336f955ec645ac178f2b4c,1,1,Cherenkov_Telescope_Array.xml -10fa5a17c9fc13e685fe8cf8b8a631768e81152d63045308597137c3d5f44be0,1,1,ChessBase-shop.com.xml -c7999dcce960ae011e85e709ccb732fccce887d90b67cb7f97b4c7a392d54da1,1,1,Childrens_Mutual.xml -a486b3a9a8fdfb5af7161460ce10f22575e2dfbbc388f9e39473a09f526f89f0,1,1,ChipIn.xml -eae35a2d8928d9bf9295204dd4850c7481f1fe935684d46dc682896f4fc3d372,1,1,CHIP-Online-mismatches.xml -a7fa8f7491c9051f153f6d88c3b814485b380c83f5d973e5f01dd1325fd1f054,1,1,Chistes_Cortos_Buenos.com.xml -64f97bfe11304bd506fd36f251d1b3e1500a6471706b7b1244005dbe17633396,1,1,Chitika.net.xml -b351454b0c757e80373d2c4f1ad57944d4c9fa30e15ba8bc7b8890eaa1a575ad,1,1,Chitika.xml -ceec987f3e67e3e7b1f4cec6c706fc9e0dcf3bb51ef908f6a7122b195a9f3e13,1,1,CHL.it.xml -a55226a41482b55b64ea5dd690a09fe19d0999ccb8131b436b690784d6cf4e0e,1,1,Chlomo.org.xml -9c34cb141dfb485ac7469918b141086d6382aa0a559d35d52680f73c725b2bb5,1,1,Chrisanthemums.xml -69576d9694982fc30c67473122078602be85d16838123c7ced7cc7bba8715f83,1,1,Christian_Heilmann.xml -e96c2a0ef175b7fbcf74f0254fc93a12751c397f36783d2fd0bfc05f3e290f4e,1,1,Chrome_Data.xml -bc2e4da10ff3031e7c33b25dffdb3092b3cc96c2ae77636c84f55e5fea2e90db,1,1,Chrome_Status.com.xml -635611ba0802ed40b2ee5b905ce99d4880a24e557dac0278a893e36ff9b3f88a,1,1,Chtah.net.xml -a2b3aceeb1593746dab6ebf9ea2eb07b7104505e91e610e6df35769399c21b16,1,1,Church_Hill_Classics.xml -cfdfa99b1e7ddec951fc52f57172762a09c9666866168b24a750f1f232debd3c,1,1,Church-of-the-SubGenius.xml -90dc83350ae58f9b37967bfe33406f3cfbbd9de47f797d5691ae0c64b9dd573a,1,1,Ciao.xml -dbc46881deffd783f88ddcd087523d767b4fbbe2c73a1266479dd4e46670b5d2,1,1,CIBC.xml -1474488ac805cb5ef8d95848174ea8f1ecda4d3e524acac890309f9d7eba394c,1,1,CICLOPS.xml -ad6222c3f7be1e0382cfccdea439abb1f1afd2b3c5f54d30d2aadeba4ae84d8c,1,1,Cihar.com.xml -06585660c1b9b9ab503d70c8f9f3d42e020426e91cf49a1e1576cc7273f711f5,1,1,CinCHouse.com.xml -de19403594b073d50fc83ab38402f494cbbbf9920f2d6281eb1865d7096f1e12,1,1,CinemaCon.com.xml -5af114e6be10d6fd0a1aaa5b2710a714fd971041a06ea0d64f223e35cc1542d9,1,1,CinemaNow.xml -4198bc72c0160da3e334943ec412c321de5816400e6afe0cb78239f147e67b8e,1,1,CIO.com.xml -be82a24f1ccabad178f0460993c05064235a2819dce047f67db2d3d4d296bbf4,1,1,CircleCI.com.xml -dc0992a5994c243bf9b18642c9aa62e6d917b8085d300a17eb2c06dff2bfbd80,1,1,Circle_of_Moms.xml -4acb5a4b23c7741ba5e90fccb7c5fd11eee4edc412da48b012017ceb150adfc3,1,1,Circular_Hub.xml -073bb67b02485875a93635cc254df17697c107be8616c26114436c844e938592,1,1,Cirrus_Media.com.au.xml -f21f4446f17f30b69feb3250d3b29c8b78fd83cfd3ee68842327f2cc9666d0f1,1,1,Citadium.com.xml -ec0ef6511fc8ac56cade3fc79d5ee556146c78803e5483c3a4c035ee42a1fbf5,1,1,Citi_Alumni_Network.xml -5fcad8d397e955c01a11baeddd0b1c8184a85ce6420eeaf10c2f781d0908831c,1,1,Citrusbyte.com.xml -0c0e7e55887d190425644984108f538fb9f0112d7a5cce7c9787ae8295e91782,1,1,City-Mail.xml -3c086d93dae5b692e423319458eec2bbb5cfbff8dc86c1a58a1069c5d7c82e00,1,1,City-of-Chicago.xml -8c337b75ca9d7a8f1ee1a7e41f3b28b1246455da4315b8bb57923f6c1f73f4b3,1,1,City_of_Seattle.xml -324aa263ab69f494cbd37fe69d6716c07bcd7b46853ae25a5f7377722146afd2,1,1,City-of-Sedona.xml -cb937fc620deee0e95cfa872cefff90bda402a84344a7d9ed4c4be9bc1e8c1cd,1,1,Citypaketet.xml -71784dd9bb7126dd9498a338e25f8bed0189c0799f0fa396793d77ecc3f930ea,1,1,City_University_of_New_York-problematic.xml -94560c5d871fb4d6190711338e8bd57b9c6c3a89e863068b04f103675c76c809,1,1,Ciuvo.com.xml -f1941a4f4eed89d559552d80627858aaf5ce0931a3743c396f8c83c4d6e6b91a,1,1,CivicScience.xml -b3158d31c71457363975019cab7d54e2a1df3c4704e8ec39284edb1a7599ed71,1,1,Ckom.xml -8ac32c18528c2ef68bc58a861a7f566cc2576a634c0360affcae9339e9712d92,1,1,Claranet-mismatches.xml -e239c746877388cbb5e8bdda31133b3d1bbf51631ba8974d6c07ced5016a01f0,1,1,Clasohlson.se.xml -af49e289706a4edd41b005d04fc73a1a9234701ed025beceab0cf810454aca3d,1,1,ClassyMotherfucker.xml -041f413471257de0ec7afb6c862901b4fe3e7d09e57377bb61f8fb27e7e5a8a0,1,1,Claws-Mail.org.xml -efa035032a8adea946c46ec13d38ae6490099edcb3372778098489a72b0fd465,1,1,CleanEnergyFinanceCorporation.xml -11f8b0f6e4735f79afb373f2c312f8f38c01cedf75703145b65f1d4d0ee82933,1,1,Clear-link.com.xml -3bb97c7edc6c521bfb2d37b3110814bf4e8c754e494817f319fbe8276e46aad3,1,1,ClickBank.xml -4258d5f4b5f7f226cc8e85c2f9a1a73d311e9adc8bc9503998be3c4c2e638f52,1,1,Clicksor.com.xml -0e6030faa7bd3a535ba16407b701fb5ed96fcfbea25027b86346781aa266abb1,1,1,ClickTale.xml -c45cf815f97aa9466ea33031ca53e8a92b2a418113ab2d2f1ddc785ec1e8ac92,1,1,CLIC-study.xml -ab257c10ba938df508e131e28c826c94323e85a97d95d4900fcf90399458b6e1,1,1,Cl.ly.xml -c954c0e37df82e9c356ad3611313c5aebca46fe4c2ad4291b1fff6ff2c90d3e4,1,1,Cloudforce.com.xml -377f4ada4eda85925c7011bc2fa96bb949f81be89f3dd973bdbb1b28384e7ecb,1,1,Cloudhexa_Network.xml -5ffb20d9923257da6e73e1909a6d8cf7d68be914c8e160458e60e2914bd758c6,1,1,Cloudimage.io.xml -a3224e583d7d5a6395eae76c3ffde3baf6aab8051bb6da72b455208e97341abf,1,1,Cloudmark.xml -9a3f101243166162958333bd87ca842670c62a2e426ad6ff5c87aa096340360b,1,1,Cloud-Privacy.xml -3175b95ca1814a52b1e243a836b417833ae5b4dd68b6e1523dd01afdc4630bd2,1,1,Cloudset.net.xml -18667621076275ec475015222a4a65bb0ecd59b5d07234cacc92d5d2e1c2fa89,1,1,CloudWorks.nu.xml -ebe8861f8b01a594f2009032190e254730320f03a4381474c1f43796ab9fe25d,1,1,Cluster_Connection.com.xml -a5bffa7d7c1a73f9251ab1f7509bd4736925898c6f99b74ea8f3896e5cc09c79,1,1,Clusters.de.xml -3784a183168c22a1a724dd67210129dbcdb35290b9d6d09f2a18f1aa4210c360,1,1,Co3_Sys.com.xml -a44720f596cdfba2c29f1fb64951bee7f48ebee0590f545dad99ac76a40e5256,1,1,Codefuel.xml -e201304121c055892773138ac3235899485bd00ccfa94712d8d872f701901927,1,1,Cognesia.net.xml -a30c9d7951c805c873713ae8ce13ac98e6b2fa5746d76f2f6dd653c15cbef61b,1,1,Cognitive-Dissidents.xml -d45ef0b2c7fe25687f47e922f96177becf62783b98d300b7c7dd56b94ff4669c,1,1,CoinURL.com.xml -d68ff1b58eab380189c11039120248d45c10926bfd08362be2e3d66ef2d17dd6,1,1,CollabNet.xml -c72480bf5ff11ba1f7d5466f6ad793fa99e51452150a43d109da8748723ab054,1,1,CollegeBoundfund.xml -01e3cce2c68b60c53bd29c022fab016da33cfea386c371fe6bd47a6eef0ae66c,1,1,CollegeHumor-mismatches.xml -339bc36fa7e42abc1eeed143a5bc24c08ce6bcb11d33db4313da65d6eaa08007,1,1,CollegeHumor.xml -0338333878edb6a0f6c006f0fc18d49805899c908f920c7e612ac5496c034271,1,1,College-of-Nurses-of-Ontario.xml -6347c91fce42e33944bf4e68147dded6b142f3f8ab49dd7f90c014502fc0704e,1,1,Colorado_College.edu.xml -6a6b73a0542b98cf8082f2e120550df4b7c49804b82eea3e0eb9f1b908b88d43,1,1,Columbia_University-problematic.xml -4c92c822bc72315803914193e140652d947cefc4ad4214322abb39640b190c1f,1,1,Columbia_University.xml -4d9de0cd9d5c53dc2e304a882eac29d39dc8ca80b885b56fdda99c3cb261fab1,1,1,comdirect.xml -5015a719335d255f64280bdd3c63d29946d7690ddd3d96fddc2084851cfac82f,1,1,Comenity.net.xml -6bb3987eea11455a8df38e8cd602e208037b06539051a4108ee6fe8c2a0ba179,1,1,Comm100.cn.xml -9a8d0aa2232288e239f16331bf885c134dcc2f923cc6f61ce6a07c3f7092d56b,1,1,Commission_Junction.xml -ed1a6a91ec23f12636e85fcab140be7b53ce9ead8bcd48f7173655f06843308a,1,1,CommLink.org.xml -5259790909abd7c2980520d48f3f158799be1f5cc478b835cdb44ad1d6b0e970,1,1,Common-Short-Code-Administration.xml -20da5e6482b3b3be5ed22f4994ad41162a8e2d3e8e6fb81bcb86cfc8966bd64b,1,1,CommonwealthCourtsPortal.xml -ecd0baaca43fe666a3d384e1fec2a928291378c6f55f6d2a31e9b9873a0cd053,1,1,CommonwealthGrantsCommission.xml -5dce6c98248d4c5f20c791069b2fad0e0660b5a16a3bffaa270949a92a0cfb0d,1,1,CommonwealthSuperannuationCorporation.xml -d9678bb694d8e6a00b167f6ba25edeae50f3e143532f4ad5100a818603097a16,1,1,CommScope.com.xml -99330baf93c8ae708130f47714837655c0c21bc656cd4d61a4c8ac61f1a60956,1,1,Communicator_Corporation.xml -382e374bed7b8010c07406799fb9f5689f72f60bdaf85e5df9ea6f2aaa3cf232,1,1,CommuniGate.xml -c4d1e044911fd46c2431ea7167259cfd00dbc48662b1193ad5dc88219f1b43ed,1,1,CommuniGator.co.uk.xml -c2b3c7d25fc0833e8cad973b30e40d8491ab163fc1d955776100fdd03c0d3274,1,1,Comodo.xml -564a12927f5ab9270bb80fa22a6182c6f3c8247167d647446c4f9f181daa8314,1,1,CompaniesInTheUK.xml -50a6c2f20cd09628fa54bcf02403ff8df776e39aa3209172196d821911c157cf,1,1,Compaq.com.xml -ac2df2b2d6c2746be21f7f7d28bd61965108a60e09911ca1a0f91d7ec7d96eb7,1,1,Comparis.xml -13b7302ab918891c2df88dcd9c929fd32b865828bc7ef07a74d01f5c9542d47e,1,1,Competitive_Enterprise_Institute-problematic.xml -cec780862ced42bdc2ac7de7c358f53886a641a5a5ff74cfe8b7a9b29f4de600,1,1,CompEx.xml -74d786f4d0c6b309b868ff520d1c06ee3d50098b9bb545d3ebdac8cb100e757d,1,1,Compiz.xml -502e65e088a01360707e03ffb91f5e96459016af819c164b02bdd59c99eb0bf1,1,1,ComplianceSigns.com.xml -a1333d20fa847ea8be6f8bde7d218263a5555cd9e9b86cc2c3a138a69a3de71d,1,1,CompraNoExterior.com.br.xml -32c0dba493253fd313cbfb3aee129b15297a829a3cb4323d373025f4b94397a9,1,1,Computerbasedmath.org.xml -36639069762c5623cb782a792b17088694f3242fa84db5e8686b431d36d74f07,1,1,Computer_Lab_Solutions.xml -900911b4adc1191113908a95c91c6e1b97807225cfe2aaab076b939885b622ff,1,1,Computer-Steroids.xml -53750f61d79098ab338a56cff7ac2567092601c8d9861be25e79cebacc73d197,1,1,Computeruniverse.xml -5a428833392820bbe321cfcf8fb2fde2748130d078e0f3f48229d35b6a5f617f,1,1,ComSuper.xml -162a724911ac304bbe92397007557dffc1712ba65728172465ecc799565f1244,1,1,Com-Sys.xml -e6de1c1e7452e99019f823aa7ea87b655017a0797865fb6f8ea315052d4870b6,1,1,Comviq.se.xml -9af8592b4c27261897b6cd7deee5f974361b9831a26cef0bb7973f5db0729d61,1,1,Concur.com.xml -679035ba7d4d7f2fbd9a5d237d9122649239d1ddc765a06299bb7ae924c380c0,1,1,Conde-Nast-mismatches.xml -ba07862597c14cbe93a15f25f88819b96a0aa1265d58e078b54ecc0fd208881f,1,1,Conde_Nast_Traveler-problematic.xml -584074d4e890000c0c180afb290a22138ff376db5118161842c4e5d78bce67ef,1,1,Conde_Nast_Traveler.xml -a1702eb596ce0c2db770d6553cbc38a621bdb6f795032b4d3e109eea7c7f5e1b,1,1,Conduit-data.com.xml -87b80ce3f32ffdf19157d20003e9b0455629a9596081bf1351d2da42f56f4477,1,1,Confirmit.xml -02b3153c54aaade0387d2be93976bcd83cec356da2217dfd19b1d5f5bce58703,1,1,Confused.com.xml -4e4afd9324120965f69988b05d3a414e70fc93ae07c352cd628b10921a166680,1,1,Confuzzled.xml -1063c2cca54b04a74afa5bef892e87b7531a0b9cad068e91c3526f3f5f24571b,1,1,ConnectiCon.org.xml -4806cc37a6d166ccc247a5cf2ce5f776e69ac36043d56bb5e2fef406f9ccfea5,1,1,ConnectMyPhone.com.xml -a79534ae1059876bc76c072c81fee31b3ee5572980bfbe2f87943f023829d2c3,1,1,ConsCallHome.com.xml -2e4dc8d31ba27c7a2463d3356c16a33d578410bfa82487e7f078e19377ead349,1,1,Consortium_Library.xml -2ceb9721bb2044c6d2d9ec83baea99106fee843c6eda1b90e5d0971dd569593c,1,1,Construx.xml -971d95639a217ced3de0aa1929e049957c9a897116a85786e403cf71943df656,1,1,Consumer_Reports.com-falsemixed.xml -4655407c663c2f1c511e2c4bd111edde8000a54a16e3e2ad2aae566769956484,1,1,ConsumerReports.xml -b0b44d9546df79eec8d67847c7a7719f0c597467cf94fce3585ceb0990649626,1,1,Consumers_Union.org.xml -2431f9c01be0053096ff548c0c7545cf015bbb68c00d1645e5894a53c26f4a5a,1,1,Contactual.xml -436c49a3cd92b2d701c90db91f96cf8ebf3a3bdccf609537f23d6cad31bdd6be,1,1,ContactUs.com.xml -c09155445f0f22805fe2d2894f1f9d0d89cb5d283a0b147412cb4b6c2ed4a1ca,1,1,Content.ad.xml -62c92737e9ae019baf69a7b8c673c7c9377bf810761f0216cb8d90f4bf53f81c,1,1,ControlScan.com.xml -710d5a714c74db826cade92c25b332038409f800ef616a03360634fac19fbc1c,1,1,Conversions_Box.com.xml -e027919f9ffc4e5fc2c51cef7b71dc815eb953bd7fda66c52e659d3d8a4ff87c,1,1,Coochey.net-falsemixed.xml -650b5d9a73344bcff3834fd3851ffa14e7f810949a518eb27ce679bd4a5704eb,1,1,Coochey.net.xml -e95320aaac750dd224471bf5f6bd182064717a24ea8f43efca194640c029744f,1,1,Cooliris.xml -143908d35b1127b207d9ff57ce940381c9e0aa7cf6a7260ce08fe4a9fdf18e50,1,1,Co-operative-bank.xml -240dcf8868b04c0cac4e396a54bb5da086a984ed3f3cbead72e67b6d4200c778,1,1,Copernic.com.xml -3563a8b1e77346e627440c9054303a707a7fe3e6a253708af6fed75051c1256f,1,1,Copy.com.xml -ef05036cb7d38b14c929227053805750a7edfe003398e0f4c70e5e8d2f70334a,1,1,CoreCommerce.xml -d7baeaa6bec397bdc80535854950e1df5da6e87e37f1d852df3fab12c5764f42,1,1,CoreMotives.com.xml -1f32f17d137b199ab9ef3c3eddd1cb08aca338e936d56f8282f23a446872c710,1,1,CorningCreditUnion.xml -453979deeb742a7631ff7870321b452261287702f38d01a25d44925d482c84b3,1,1,Corpimages.de.xml -2da557485b91db2cd8fd822d4f0c1d8c9d260f035f75827b8721576abb34bf18,1,1,Corporate-ir.net.xml -71251e0392f89cae88afb7ade08bb4679832258a9110d272f04cb4aadd3be46b,1,1,Corporation_Service_Company.xml -96a1e4d8a7a151bf30f2ce5bdbcb762f5322add6297e6a17c1d26ede3953146a,1,1,COSMOS_magazine.xml -2468f6840c6141631608ec3bf75e9fb94e1704cfd757a0f331ef2d89376cf59e,1,1,Cotera.xml -6b430e9fd3a15eade1b4d26ceca04f157b2431aed6c1b2dffcd7f84ea8cf0b9b,1,1,Cotse.xml -14f57a9f712732f4a7d072faea9dd8debb34ac651083459dadd90d2f7b611d3f,1,1,Couchbase.xml -51e4dfd5e80d3187c34dbae64ea978a12df199da807108618c0db357d608742f,1,1,CouncilofAustralianGovernments.xml -f66c96d6bf5531963d61883ead19002adca60f493e55c25a7636cba436b79918,1,1,Council_of_Europe.xml -e5b606bcf284ce864cebeb59c70583d60ed7d257e57f6c379766ef2c31c57a5f,1,1,Council_on_Foreign_Relations.xml -a9da7775663745ad0e1ee5a0d1f2be83d0455a819a7a5c65a46818ea91e567fd,1,1,CounterPunch.org.xml -eab2f29237fae42f6e1b89c197463fc44ff379d43ba735071e74a934a7c73233,1,1,County_Star.xml -5add301a46b63b39f38c55e680dca3b606b865f52021f0731f6a48367bc5013e,1,1,Coupons-Inc.xml -d55993570acee484b7ae95769baea6f0965a79cae810184257fa33d558299423,1,1,Coverforyou.com.xml -bf63d38b712a466db5293e37a521ba392b8b7b9170b6547316b09b2ceb359499,1,1,Covisint.xml -df7408dbdb6704c6f08d294a48e73fe2e38b545783e7404cc348d52dac867d53,1,1,Cox_Communications.xml -017373340cdb36574be40e1fddfb772ee1f875c4c403351b57521782da5194de,1,1,Cox-Digital-Solutions-problematic.xml -c22b52fab2d5c0ae1ffb9f2f497672b1680a2a71c5abac5b9e3b11282594d51c,1,1,Cpaptalk.com.xml -efb916c1aa3fb9d918a1417dca8d0b58b3ed0ec7d542fca086b50dec6f3f57f1,1,1,CPSC.xml -ded355a88fe5073f3e717f77edb9653c6d370ef9447c687269dd7f1e881c3a21,1,1,CraftBanter.xml -7cab090cc110a6382eb16a0807adf568b1fa09d7ddb12325302a3e9480a7c978,1,1,Crain-Communications-mismatches.xml -ff7cfa0920209b9a1d307838a5630b20b578b525e24aa9cdab052ef2c295e5ec,1,1,Crakpass.xml -a558785d006e95550a34d309e23f47f79ab251a2b90085a06ef290f9c2a06120,1,1,Crash-Space.xml -f335094ad1baa86781c91d7eed186b763e94e30fb5951f1035efac41bef05fc0,1,1,CrazyBump.xml -93b54b704f90bf8ffe8721327f19c3ed432124b6ca8c789553ce07022158b91e,1,1,Creative_Little_Readers.com-falsemixed.xml -6ee9eab4d6c93aeb2754c6b34e841dc18fd6a0a2c8d59f7d546e6db23bb56c52,1,1,CreativePartnershipsAustralia.xml -ad5c661f712e0028998e6fd72270703fd3e6f8c5cd52e54315cffd36da9d0ba1,1,1,Creativeskills.be.xml -be755b96612272106f5b5ad49c60dc7c46147cbf519ab1a24b09fc074f01d019,1,1,Creative_Virtual.com.xml -04f0d43bd1ab894b64d8ca6fb5e81b0213a4905c1bbd19bf92700ccada4fc0e4,1,1,Criminal_Justice_Inspectorates.xml -defee8b0ae60e03f8bf6c53e0d3bd312c5daa7d5cde511a0528266d2561a0c99,1,1,Crimtan.xml -b79d2673063115a953fdbc430f120a2798a09c573c1adfb592b23f0bf05bc411,1,1,Crittercism.com.xml -fd37ef420c5600edcf679c3d7c8c2a4f75505842c93513dc6503db37a718faca,1,1,Cronius.net.xml -1cd80467b55158721959b770308681c9e59a37977c7a4581996bb359e14bcd8d,1,1,Croscill.com.xml -263d0fff1e2c0ce099ec355391c830e38796daddffeba3b6e955550a99c0363b,1,1,Cross-Pixel-Media-problematic.xml -8b9817171a2f4284abfa8220e171d15c012a0a7e0fbf0167ccf4cf7e305e66ee,1,1,Cross-Pixel-Media.xml -221dcf657c72d6e40f1a51a91d5ecd09044d123c12802befb0c64e122824d1a3,1,1,Crowd-Science.xml -81ccb350c19e3026251587982cc7e5d5ca0b369a2b4ad7430bfae069146c13a9,1,1,CrowdTangle.xml -f8652acfddf3457e9e0e85b2bd132a38ff68b381f932ddd3b5a21969b2dcee6c,1,1,Cru.org.xml -80ff66109e0038eecb6e67362f210c6d389b69ab1044cf621d1ea28f7b624f19,1,1,Cryout_Creations.eu.xml -5c03af15958cb4c8708e01cba17343bc6ff5960e3e4ea5f8b079e6198ecd4080,1,1,Cryptalloy.de-problematic.xml -262a3534bf8933dc337504760c6503d084ebdbf7cf229ed0bfe3e9f778b0105f,1,1,Crypteia_Networks.com.xml -466a3be45bdbc40c109cccc773451394f5b4290b41c71b7c453c18311ec95d7e,1,1,CrySyS-Lab.xml -372abfbdb2705be196421bfc03d1c8b87e4bd0fda032ac674fbbaed328278fa8,1,1,CSC.xml -c5c09f646294a95e637a5f083cf0a011f0bdca6a4603d1d102973457588acd74,1,1,CSDb.dk.xml -27a6af8836f65d1739e68b58c32ab2feb9d4567c111f0ecaf5c95d20e6442040,1,1,CSIS.org.xml -7ad4d3c27fac03a257936dd9c380abec312479338110714cb22eb95085035d35,1,1,CTOvision.com.xml -c176d8858c1e88f8d843269a3f3f99ad7350b4633a7af01212c959df51ac0673,1,1,Ctrl_Alt_Del.xml -4c82fb71dd76ecce008a283a688f468dc95758a8b164fd4daac98b747eb1a7a8,1,1,Ctt.xml -417001159887bb430ea3c8e00dc43c7e3b6b1b895e889674a4869c467d6ca0f7,1,1,CUFP.org.xml -21efb5cd3b3282255b8c601601aca8c2e691f0c64a74a8abb423204c435b6131,1,1,Cultura.no.xml -8619973ac3fe5c8a8e4ddd2d2ba0c23acc05568d7ddb6921b33a04ee6cd05cdc,1,1,Cumulus_Networks.xml -258af092eaa3233c9892e3567c50f656c87ac8d57750c326c01bc6b8417c7d82,1,1,Cupid_plc.com.xml -075ebb3dfb5aa302007e743e7d34d4a2ada1db88aa6b7875a2e14361eae60ed8,1,1,Cupid.xml -5631d37146e3333b9b113ff5ff7dd6cadfac322d6dd31d5f82a625a911363658,1,1,Curso_de_Italiano.xml -a297285efb26e85fccf2f548b9a23e0d9237c02d4637bf880c120e4d01a4f031,1,1,Customer.io.xml -80d1cbbb7d54bb952be8a2b8316ab8cb80377de2225d9013c390c71185d7cb4d,1,1,Customersaas.com.xml -b63a6bc023cd03d2faf29ea4490b80d2c721f811750bd7e7dddb861a6787807d,1,1,Customersvc.com.xml -94d9f71dfa4e323b8aa8420abd459c4e11a852fc300dae5da00b91af9c61eb36,1,1,CustomWheelConnection.com.xml -fc39f9a9d88747874763f92ec035e94dc589bf4a486bcaf3eaa07ee2aecf6b9b,1,1,Cxsecurity.com.xml -b17c5b6f92f191120aa22ec936beae3a2e3d78e5da93467bff6013eba2ad8f25,1,1,Cxt.ms.xml -ecb6609b54104e170eccfb8b213b46ef8571ed159691b69cd4e38ef28887120b,1,1,Cyando.xml -62f9443ccedff68a2edfe57cbd28c734eaaa8a90177ec3ef972c51a0a7441715,1,1,CyberAgent.xml -8d0dee876d4bfab07ec23efe97e2f11fa140c227ec76a08ae9bb6af931ae5b84,1,1,Cyberciti.org.xml -e6c1639c16bab7963a0572c3d764609fcfe3814cae300612ed41e0e2eba8c92a,1,1,Cyberduck.io.xml -a32dbf586aa0dbb090d6333d5a866cd0edc8946c582e51c32fedd4b1c95c52e0,1,1,CyberGhost.xml -760cd650faf849e6b19245755eefd6460eb401ad4e174983e7dc5a28a50cffef,1,1,Cybermill.xml -9275f92deb8c0e30e1ce99eb5ad44bf1ef9763474196ded1fbc5c2bf108b40d1,1,1,Cyber-Security-Challenge.xml -cebb3d7c7cd471654816c8a22f25eb625a88eb60e5e6fdfc47a359835e32f4e9,1,1,Cyberstreetwise.xml -d4df01ef2b926cf8efc95985b07410e9a4544a098ac3d8f300bc3230034e0963,1,1,Cybertip.ca.xml -5967e0ebb4ad281523d376aa5e69720aa7247ef9de33b27eedd177911072b45c,1,1,Cyberwar.nl.xml -514030beaf41176db4804a7febd2de28af67e58ed8bdee64ab5ba3214fa5b9c2,1,1,Cykloteket.se.xml -a189ae3b25d613b11b15ec038a7863945202970e334ca64133fb2d70a6c12460,1,1,Czech-Technical-University-in-Prague.xml -7635fba229d6993cf9187411c43861a7619dbb2565874ae66dc5767b59aa7533,1,1,D4design_Studios.com.xml -206db80c0668e6a1adcd2dcee38dc3e95fae508f726aa38b5fc5ad298980d0fa,1,1,DABBank.xml -0b1a6de4023a402b4d79c12a9d2b45c4c7d2d309203536bef8ae9dddb5113e19,1,1,Dabs.xml -6656d2045bfeed34a4c91cd6d2dc7eb75c65390b57d483808ccb1b6c7ae13dc1,1,1,Daft_Media.xml -3c930b9f67e6653f1d3c8cd95b873431c7b10aba40fe34981e3f03e91be9f8a0,1,1,DailyKos.com-problematic.xml -fda707e8dada58291ee3866612e09eb478bb59cec4e118d8a3e1322fd624f194,1,1,Daily_Mail_and_General_Trust.xml -5d520ded6145524b30bb81f0ea3e533faee576e33bc34df3420663a5460eeb39,1,1,Daily_Mail-problematic.xml -e813ac6f98d81f5447f25c5a99cf1c75ff95c6e7ca574947de440c02b85d5821,1,1,Dailymotion.xml -48068ffeea3bac8f6607d8b7ef042097a830f1ed5141b71a6b03fd73e2322076,1,1,Daily.xml -607ae42d3906148f643091e3d42025c9ffc9997b3064de7de892580adfbee5dc,1,1,Dakko.us.xml -0d3faf3da32111974235f26aaa4eb8ddc0f33c008708c891bc5cd95e29172e8c,1,1,Damn_Small_Linux.org.xml -774c68020933b5ecf1dac37baa445bdb6874d252bc36c284e7c103c0299c32fa,1,1,Dancing_Astronaut.xml -f93e9da945b15136beb53eeabcb53d9d5bf1f31abe20c877ffb727cba27a2f00,1,1,DandB.xml -63763f82b872e83435228e04168dcc2a249c690ddd06e999a1e426d1a4b27f56,1,1,DANTE.net.xml -ed13fd1f2210f0c4c9b62c347f9958698b04b69a866cd6dc880fca170293073c,1,1,Darkmail.info.xml -fa6bf5ecbf93413bbfdfc339db3977600f5056a2837d15df74fbbb5dfcdcc1b6,1,1,Darmstadt_University_of_Applied_Sciences.xml -2d7db66046578cb426ac52ffa00a0fc9091ea3c478a40f085fbfb2105f24d2ae,1,1,Dartmouth_College.xml -3403f1624cd1350a9d7db9ccc20fe13619099815c6c6641ef55f4d3160338c78,1,1,Dasource.xml -37e58b8592a8107db9688e01f4bb1a6db82fe0f0acdf6c3c1d5ad2f2c83cc99b,1,1,Dassault_Falcon.xml -9f7e268b3ea25d3e127359a899d7f52149b714c7be091c7c4032933bf7b2aba6,1,1,Dassault_Systemes.xml -53397c69abf762b2756ab3ab3a0f8d87791fd6ece63b739adfba5adc5796f1e8,1,1,Dastelefonbuch.de.xml -887c98b7b9913c7fdb123653bfb86245f5c77fe664dcbfbeb5dfe31e1cefd6c8,1,1,Database.com-problematic.xml -738429064c5041ae98ed55b110d132d0c95bf3d402612ece6d6724a64c47e44a,1,1,Database.com.xml -bc17361035a720b9576f23deebf1796a2e5de6fe1d2f071e12f6f9fc9bd6c7d3,1,1,DataCamp.com.xml -f601a504e65f5aa8578d007285a8666375288cb1430bba957245b4af3e63b2ce,1,1,Datacard.com.xml -950dbd13dbd61b89e6072251f1dc0330d8d940503beec8592fb63a1b8c8e7a8f,1,1,DataCell.xml -8cc5ce1e1d308f17e685fdf197fad2de85a59a1392d4e9b9097857cc31171c56,1,1,Data_Center_World.com.xml -5686ded37e0b6efacddebf55e0c5d943d2e4dcbe671fe25e6f9622a574e12ed9,1,1,Data.com.xml -83b229f8d5a5bb821ed9b05ceed63b1ff89295bd5126e89287b5dad37c2e526c,1,1,DataGovAU.xml -cd678fd33dc7871f27973b55714856725aeab021a07b23fb45bb5a8ed3a75ae0,1,1,DataHC.com.xml -55aceae12dc21dbe66e294b3e12dd302e841c213ede240122100878003203e7c,1,1,Data_Informed.xml -5699685d2061d654ee7b7d885cf7e24450d64a375b5d99f70979b5a3d6f65cda,1,1,Datamind.ru.xml -89488167a1bdaecffde75c48135b59f0f3f4f784e8cfa2a44235efd0c0ca344d,1,1,DataMineLab.com.xml -3c5b4f63385fe6f06d57c28f8318249835ea86a015594291a1208657c8cb87dc,1,1,Datamonitor_Healthcare.xml -1708197efa6250816a0daa89684b23abd5b6ec10424c0e588c4f79759269be34,1,1,Datamonitor.xml -b05710ae79a5a29a75d750fe4ac28e4d65d90c402e70794e12c5cb7dca75374f,1,1,Datapipe.com-mismatches.xml -1e3a6e9548c4695e497f2c70b8e140a688d130c1aa832f6ee57dc3d40db76f01,1,1,DataSphere.com.xml -3313bd09107db392a871be91a9de6944cb93895ae79e67fef855166adef81c96,1,1,DatStat.xml -61b1cee10b27a9b8e031b2b4ad79ff61d242091833f4dacba9ff9595cf7636b2,1,1,David_Gold.xml -4629315336c43061242bd362a2e859852e14635f6dd9f83244aad1217bab4681,1,1,Davidson_Tutoring.com-falsemixed.xml -e1a0066617d2024182cc30bf849782e20e6ba3a89bac047901a2dc961801763e,1,1,Davidson_Tutoring.com.xml -12910fbfa21be2b1e6c8d237c720fb5b8b6ff1adcee00d90cc7922cccaae0f82,1,1,Davis_Instruments.xml -a57ae2eea0e68d85ded9207e3de25e2e19bb21187e9ffa2ef3c0c4e1f2e95727,1,1,Davpack.co.uk.xml -7b9a385cac34756530787bef70a0eb04727c5cdb270609c2e487ffc181f07e2b,1,1,DaWanda.xml -5c275b107cc2a36516a811b22fa11b25e6436b5dddbea6c8860bb6925964f6e4,1,1,DC_Comics.com.xml -e595f6d1b173463543d789b5ae8b3b89220f549321b5c0fbbc439059956b3457,1,1,DealerRater.com.xml -c4fbe0562ae997ec2fc23fe2f71b63006180071fc88ac126993c9d6c4191cf3a,1,1,DealerTrend.com.xml -95d539e0b4c808750d82714c8d338dcdacbb8a3896c1884b04db4388a20922d9,1,1,DealExtreme.xml -62056d06d4c4976ffbd8b634914f7d33d5a2426910145b67f381d8aae0651013,1,1,DEALZON.xml -78c92cd9b90932227687233bc92ad00e35daf7021423f88e5d6c6fbf686d3666,1,1,Deater.Net.xml -18e427533512170fc3eda068a1693a23df801145f705d4c436f9d3ff22d868ec,1,1,DeathMask.net.xml -c657fd7b237b1118e95074961f4202170175a2337e420a12e4f8bbb5d2dfc711,1,1,De_Bekijkerie.nl.xml -7616894d0d525e0366ba31271b6947f6e960300ecf2a2b2df6c92d708e710b2b,1,1,Debuggable.xml -4a63adb904972e4f95779d0ca8a57aa854cb895d8682169eeaad71a818d7e770,1,1,De-Centralize.com.xml -5fc1bb020310df9e528ce80b1199ca050ef0013df776312cd173c8180f2e894c,1,1,Decipher_Inc.com.xml -6761945842a5270cd2527669b0be5d0f895f99d544f4001c075bbca3b1fe8a7f,1,1,DecisionBriefs.xml -99448264eb68a506c083d15fcfeb1d01c1649f8ac86e0631a3f79bea64e530de,1,1,DecisionKey.xml -9beab50432900f8782d6720032b6262671d1a04f960e530d7906e866ee798365,1,1,DE-CIX.xml -fa2f565bc4d9bed10990aaf12987f1ea6d4cda986c03ab69005c3d0106d86e15,1,1,De_Correspondent.nl.xml -8e2fb9b334a1504d2a79b1d59bb0b8aac0c51bb9088960524a6f42af8dbe24ae,1,1,Delaware_Technical_Community_College.xml -45795b36ce0a095278fa9b311648ccb7f94051ed1f755235fb6e378a766c5e26,1,1,Delaware_Today.com.xml -a0c8c464a3d6f9a79ed1005eaa9e713299d267a5fb608298811670b41d472630,1,1,Delfogo_Rx.xml -55db338dcb4eddb8e028cd01ae65815a995fe774647e7c725791196bf0b8e0fd,1,1,Delft-University-of-Technology.xml -bf69f20f322d9222f8ee29f15b5bd69d4752fefe1fa05a200131239f6a29e814,1,1,Delico.se.xml -891c7562e59b43178bbc09fbe6af5da6175df8e9d5806280f639e1e04fcb4fc6,1,1,Dell.com-falsemixed.xml -4d76501ee8caee0a5161167058233598eb9fcb502a19f4a492f944e5f042a616,1,1,Democrat_and_Chronicle.xml -ac394cda45cfe2f76348a565b822a97b95a5aa3b9a9d8183e14388fc44ed86d2,1,1,Denh.am.xml -01d9e0179855ceb24b2378ddb9e9a749bbd5b77583ad0f3b4a5885a7b717b3c5,1,1,DENX.de.xml -611b6385ba2d856e584eeb80d43b70382a9d706ebdbbafb4c8c89a66722f0111,1,1,DepartmentofEducation.xml -81d4e5e9167ab09eb715e7b3c4e01a97c69917b4a41ecfa5be8933747623531a,1,1,DepartmentofEmployment.xml -7af88ee7a0e2ca327f894f5dc934e17c1c3ac2d4db7220f76edb5839162e9952,1,1,DepartmentofInfrastructureandRegionalDevelopment.xml -206871eb7e871c35c77af7f7c754a4fee6aa11846a3f18e623110bf7cd1ec706,1,1,Dephormation.org.uk.xml -f9ce29f4895242f027e1ded9d7321644c6fe131a4b3716a28459235a029e123f,1,1,Deposit-Files.xml -b0cd711464ff673f4b086c2911ab8af7ed3fb5a2c8bdc904cd44c91ba6d153ec,1,1,Derwesten.de.xml -f0676bea45e7e141f3af3119dc58e9e83ef01ccc22e2969e9e04aa662b3730e9,1,1,Desert_News.xml -a22a04ef699856e1ba8556b50eb22a67280080e1bdaf410432d1aabcea9e4991,1,1,Desertory_Media.xml -f96207dbef9f186192e42047c313a1e3926c8f0262c4d5da9984526ff225d598,1,1,Desire2learn.com.xml -f7ac41f01652f32d4053e7a4b47997e97f8f1aa08c12a01dd72f27276a476fc2,1,1,Desura.xml -8e0c8d279c34bcd0e90d9c35f1bf31b7f1df755020ffa9341f6155a57fbe59ca,1,1,Details.xml -5f30233b07e74d0e9ef3f1bf0a543db1b276fc229e1611caf236332a66ee768c,1,1,Deutsche-BKK.xml -97be3b5188364d96f05fa5c7aec1494f7d0ebac7e9639d8c09cdeb9dbf3b566a,1,1,Deutscher_Bundestag.xml -7c60a0cdab8f58737d6490579b4eacfc0b581dfd7df78396f3bb66fb91f9d148,1,1,Deviantart-mismatches.xml -c907ce7ab4f7db3cc03c69cc9e5ba910871f55290e361db9e5d898f8f157f9b2,1,1,Devpress.com.xml -86a1f9c349c7266714c5d4a26bf9e6674443fae524e040bad4cdf0951f73a988,1,1,DevsBuild.It.xml -fe8912569f087a1973bb0d9035dc00ab630eefed150c06a51cd6756243af917e,1,1,DevZing.com.xml -5a3b022a658985b87a1a497348ecdca4dc3c29499681e1371f2793b0ab58bafa,1,1,DFiles.eu.xml -1f3be7639dcc2fb515aeec831b448510510711cbdf7a85c9428bbf3d03f15140,1,1,Dfri.se.xml -24e1a5389bc35d553f48e0b8f0fecc7168ff63096b9115f3e48184e62f22072b,1,1,Dgl.cx.xml -4e0574aebbe41d7157137ba4a16a7a89019025022ba1b47fdbb70bacb131be06,1,1,DHgate.com.xml -97a3aa986a13e976496aa81b190ce3b8dd428c98f36626669e0bd8d616501af7,1,1,Diagonalperiodico.net.xml -8f2ff5fe50e0b8edbb175166a44e2877df47e5951510d8650d18960527196904,1,1,DiaGrid.xml -3305d9df13dc034d25ba99a814c637f0935a9801f551e418983d7fbf70bbdb63,1,1,Difference_Between.xml -86d1db5cd3c8d7b3b6193ee894cb23a7ab7d2d5143453fad7947f2a83e15df10,1,1,Digg.xml -9cf28b07c68b3caa9120215a87a848181a1c42562baf1eca29be0d3cce846ff7,1,1,DigiBib.net.xml -72099e236e3d90ddc3029f251a6bb77bd29d4f63715c940a7953d1a124181c67,1,1,Digilinux.ru.xml -a95888f88f7ef58a7d040f2baf7720dcb63a72fa51d919975167bd5116cab374,1,1,Digital_Photography_Review.xml -8d42c26d2b6f6fb0dd25015a7e353d55c4cb61397ca0c2c167faf20e05ec9821,1,1,Digital-Transactions.xml -b73afa6999f72105745314f26aa6a182de6e69ce6328a01c5ffd21d69f6c4f8f,1,1,Digitaria.xml -8f24d6a49faf7ac63a5a48b5dfea5d55a076865183dd5319b9cee2f6e6de8cfb,1,1,DigiumEnterprise.com.xml -c92f784016627bcb6be1548ceefee4680d0a955a0ed387a43ac4df11053d6cbd,1,1,Digium.xml -e844226c3a95ec012839a66707266d1f75f7c216ad83c232671acb0e49c33994,1,1,Digiweb-self-signed.xml -ca8710d2eb4a66d458863fcf716191ef82ed5a669710d97cf69c8573e7893be5,1,1,Dignity_in_Dying.org.uk.xml -05a99eccf708bca913786f423daaca68b711001bffc0af52e173b0f31a38af30,1,1,Direct123.fi.xml -d900b9fa26f4a3ca5de3bc3823084db4fe97d5655e0513ad682c25ce17a16346,1,1,DirectSpace.xml -29be7c781f8b8f1abf997430807e02b08c9e9569afcbcb8ec6c8ce05f4593871,1,1,Dirxion.xml -dd9c9f906d5eb25f5fe364643e0a294cbcc483237b20d765a8c550c2373ee970,1,1,DiscountTheatre.xml -df0bac61b0c2b6a306595e7d44e978107874f3a29e5a48bf385d43087f5d1716,1,1,Discover_Card.com.xml -eb51ac70264701fa823870ba3863786a667e0ac503d6c1a9677e888d43800d87,1,1,Discover.com.xml -aabda7b02b4ef813b673164b2c41ed1ec67a2368ff8bb97f200ab1a362632757,1,1,Discover-Magazine.xml -f8abca5e8b8d3f2d4f150b40fc0643beaea45c6a6fb7e6e98c73f86d568528b7,1,1,Discover_Network.com.xml -cbdb894eb5bae94156db1210de8033c32d42a877330b14af87c4d2abe5f58e81,1,1,Discshop.se.xml -ae3c8cf4cdeae7bf54eae7eec7fcc056a731f68f787944261bc35521a4a23e9e,1,1,Discuto.io.xml -5b06a44f707480e5fdd1c8a02af713401f21e11b9cc8b267635255c38f054f44,1,1,Diskusjon.xml -9c05253f8ccd6be756faadde1ac49ab68d11454446c48c595c5a44e604af4af6,1,1,Disney_International.com.xml -e727d1adab1f0aa86e858ee68a4a980686b68a3fef49391b1ca1a03974ca9c11,1,1,Displaymarketplace.com.xml -e9064e2b477b0b316354b1453c37a477fce1ecb6406e7629b95e388f1026eaf3,1,1,Divide.xml -bad2483863057b0e50392fb50e8c73710e73abf0a46b947dbad947b8d9493807,1,1,Divshot.xml -a97ee617ba3cd2e545edd6f11eb667425559acb60bab4cd0fefc060741609420,1,1,Diwi.org.xml -f0ac70f0936b229f6b6748635f259cc1ebb6bbd0c924baf792a792af86295fe3,1,1,DjangoEurope.com-problematic.xml -d014e7330debe4f838f895d1ad269f9f67bf5691aa460a86e070c72357b87e82,1,1,DKB.de.xml -c1e3d22d2772fb3a45e39e36c2e0ca1078fbeed4bde190d21ac187c0fe34c5ce,1,1,Dlisted.com.xml -8cbcc57225d5b6247f0c0201c325d8b26352295194bed8f69f20b3bab556fac8,1,1,DMCA_Services.xml -6a73c97f88494ebfa14a1a17162df7e102994241e4a040fae5c5d0ae2e983048,1,1,Dmg_media.xml -19a1fcb9d48789c17f465155d43b87e4e2655b8fd40defc3e42ba6e42ee70966,1,1,Dmri-library.com.xml -1ff11bbb2cf7ffa3df6a24e92d5410025131180e1d57acf73299776fa752b687,1,1,DMS-Sweden.com.xml -e0b18a93cb80b6b7ca26d92cd2ac710b761ce43f663cca0245e3e4f2d60b5306,1,1,DM_tracker.com.xml -9f9c974327c2bddc9872a54faa945bdf30cb9de895d09dcb8fff62944ae169a0,1,1,DMU.xml -e31015db2814966d203c8584a6dcefa63a3746b058727e6be4aa265079defcd3,1,1,DMX-Austria.xml -5ad84c7113c2c1184f1dd94bbcd749452e2c8ef54111357dd9bc48fc9bfb1f0f,1,1,Dnsexit.xml -d41c52e2a77118aaf6bc2c614d1c6d60b21d132718ab56f27347ff7a804da974,1,1,DNTrck.com.xml -4b40d3fa1bc9cea039b1c056b1b57b0855d958960f06cd8b95924fa830516788,1,1,DNTX.com.xml -b67718c7d39fa0155577dfedaabcb8f72d069298c5e7257f97b2624e8c016c3e,1,1,Docelu.pl-problematic.xml -1d34678bb2fa3ee025f7d22e124669984e3cb25f56678c80906333de94ea7b93,1,1,DOCLIX.xml -377a525a401137d1aaa59693ba7b61e34bb2bb38552a40240cfa0882fef9cccf,1,1,Docstoc.xml -0623b7bec2930baa151f31cb182bd7e3ab3c7be4a9eaca4bde26f00ff9253dda,1,1,DocumentCloud.xml -a2ede612ce8726bd22a49bb52394f8d5ac5751a5166366a09ad6a74a92b96b8a,1,1,Document.no.xml -3f8a916929ae8878ec7c3659e9f557de51c74d4d534c89db6e8f9774c3099b1c,1,1,Docusign.com.xml -0c2d0599f841a470c303b8f4bcfffe014c25e51080b8ffa4c794350144ab4fd9,1,1,Docusign.net.xml -eac0b528231b34e19f80dd6e12aaf86d9d98092ecfe00e8c89ea59d8f1b19ae4,1,1,Dolimg.com.xml -4c71f21fd8e201c92293d88d8162ce04dbabbd355ad4c6a2e1dca2704b129be3,1,1,Dolphin-emu.org.xml -3bc36800ffea953400f0614cc4197c7f05485ba8eb8fb09ab24897a8454375e1,1,1,Domainbox.com.xml -ab2e39196385d32ba4a9e22a424c627b311c49793e4a1e7027d19d29622e49ad,1,1,Domain.com.xml -9555390a96f42e485955e7b8af143ea2c428c5e0362c9d50b904a64a4b9c5b62,1,1,Domain-DNS.com.xml -0e5bb904861c1276611c799ec64a1fd558b8f9897bf49fcdccacc729c1968f27,1,1,DomainSponsor.xml -cd9c9d875b77202d9bb64e526dd1ae2ad6b5bafc9d4d6ec0806d6be463f5f53a,1,1,Domaintank.xml -b4575808e4836f6bedcf6ca9541730adfa92585b28818a180376e5d8be6ee930,0,1,DomainTools.xml -6b85e66ec23027d790e328b59682d5c1c2961d733e8f21f5a9c25ddef55eb173,1,1,Domcomp.com.xml -4d3ba51f2524fdeb517a4ef8071235516706a30af243fe43de81f1856b688929,1,1,Domena.pl.xml -b24f4ad17b97e8bfa9b40fe9399e2f5623d687f5c9c427b312c206b3c2f17031,1,1,Dominios.xml -038d385da6b6c54af3ab7b4c5a3efbef6c34c1f24785ef369124df77c7fb4cf6,1,1,Domreg.lt.xml -f1df4015000247c42b9be46c989b59dd51ec2a6d2e7865a3fc7c6ecede114b05,1,1,Doncaster_College.xml -36d041d4d69a225d35b12544499fe3ba3f53a861fccd2e6271483669e34d94d2,1,1,DoNotCallRegister.xml -c4daaff0668b9f2f5b928cfc3f65a73b28e31ba1af4636507197ba962eed14f7,1,1,Doodle.xml -a2aaf94aaf0edb0d095faef6a82583ae04755061ca44a524776cd3d9835b4e0a,1,1,Dosomething.org.xml -3c447bfc4ba8601142ff1caaa8b79fd8ab02970eb414108e5ef6edcff194c3cb,1,1,Dot429.xml -73264e0180e021f87aa5b7150f02c3a74c8afca25179be5ee4306802c8f1570e,1,1,Dot5Hosting.xml -78c27d4caa1741873ac00e28fe5c91fc0aedaf6fbe9abb60f48fa0cb546b6305,1,1,DotCOM-host.xml -687227146330d33670b19929f22fa13bd091a6c8b2aa9e1f25a265ac18247566,1,1,DotMailer.xml -d51edb2655670ea1a910c1f79a85696274ce6f066ae67700baa6207d60727448,1,1,Dotster.xml -2551702a656c30adee8da7a255387c0edc0534ac866faf1fde8964939853486c,1,1,Downloadbox.xml -d6f6539911e50377e9ea5612c191b82977ea7723730c19d45293b3769b10abb0,1,1,Dream_News.jp.xml -a0782734228c6e4bc2bd9dab53046dcae24a50774d3d71c6486218d5d89aee0d,1,1,Dreamstime-problematic.xml -6dce143c0bfb94e705a21f78d14dd5898868d1a649224c096ededd8910616adb,1,1,Drowned_In_Sound.com-problematic.xml -c729946041e980450f9238a1177dbd53bd2d7f6d904444a27ff14817e5a8916b,1,1,Drowned_In_Sound.com.xml -948fe6c1816bb404b4f3fbc4e1d21dd253cdaf065726cc41a7173f1055edb520,1,1,Dr-qubit.org.xml -0240958a5ee854cb671e0f7dd960901e1fdf7284c1d8b0ffa34416a09fdaadf6,1,1,Drug_Forum-problematic.xml -8a5da91c7d08a6107339674a48075a9cb0983ec7806a02b479d345598380b046,1,1,Drugstore.com.xml -e10da9d480938c8aaeab8acb9864b314385753710169a3f143fe82f9d4b57db8,1,1,Drwho.virtadpt.net.xml -4c7fbfcc4964401c45adaaa36f1067582c44f73ef54716a5d47eb82f2bdaa09a,1,1,DryIcons.com.xml -cad45c7a43cb9bfa7d8a08f92455bea3596f84ca4e3cb7218c4ab6a448448ad3,1,1,DualShockers.com.xml -773340e22498c15fc86c69c271e1cece77c97ce19e9c4637ff83daf0b875a73a,1,1,Dueling_Aanalogs.com.xml -8bcdc7352065578b54a587b17e56fdf929bd96f3fce379b491c3302c549909cb,1,1,Duke-University-mismatches.xml -acea545a0f7116deb78c0569b388092f92bdcba4ecd5835d786c87bf70960473,1,1,Duke-University.xml -4b6114f50a7b63eaca3c4072be4f8c98e013bb9e4fe8108b47dbda9a99ce8bad,1,1,Duodecim.fi.xml -d824187bc2326b5d3bdab5a0f0583005c8044fbe1b98dd2a062165258e774e60,1,1,Duo-Security.xml -d17805e7a9b4510e4c32168a16a588bd94d7114431a3610e42ef14d7016a5884,1,1,Duracell_Cloud.com.xml -d1d3e7884fb59f03c02efe683d1ab6cd77b8d2fb507b4dca01645071c995b359,1,1,DuraSpace.org.xml -8496afee88e5b9a35c67bf855d5aa960d9557295c3de825652c49d7666beb252,1,1,Dutch_Data_Protection_Authority.xml -fbbe70181d1fe5c14edeb58820cc187697663b7ff1d6330318b52242cad50df7,1,1,DVIDS_Hub.net.xml -c97bcab9e6309fdd7047f8506ee40280dca5163ddd1e7e7eafa6ac4d2318360a,1,1,Dwarf_Fortress_Wiki.org.xml -d4930c453a7b73dc9960d7cb990a478dc509b7fa5ba1cbc5c7481b1f7cd3ff3d,1,1,DWheeler.xml -fb707486160242833554bf23fa54904526d9f33c0e158ac5c5d52ce0421b6fc7,1,1,DWin1.com.xml -af5600bc0ce35e5554df1c30569b0d818a08221b917ab7d6a8d5dd2a47b30a12,1,1,DynaDot.xml -d2583dfcf899fb4703b6fb048f03528a41c3987cd20ce5fd36595b58aeeac119,1,1,Dynamite-Data-mismatches.xml -a4c3e69e91d4cf1c315c2a9642509a5effe61c1deb34efb00048759d287ef2c0,1,1,Dynamite-Data.xml -182a0f534676e66e0bee294637d21c86d4319ff7e22f76205ef04a3e25dbd59c,1,1,E2ma.net.xml -1bb65551aa7a42806382defb47cf4ede92f614edf194da7052101c3ef4811fc7,1,1,E4ward.com.xml -585eb2c789ad22c3f1aec8f901f4cf97df2f153bf8f979ea5db066e8a3dd0794,1,1,Eager.io.xml -55717dece8f1f8dd0fdc62b0bf156e07f1d80a578c4b520740316ec4d3e0c073,1,1,Eagle_Rock_Reservation.xml -3bd8a37cd7bae417e479bfce375448bc0a557c7cd71dda1697a78fc250d4501c,1,1,EarthLink.xml -517ad60fa0cfaf8b6892c72f664a4911a47a0d8f2b2219572202c2c3b16b9413,1,1,Easily.co.uk.xml -a37bef19b2868480dfdc14d2acbd88ac90d9e17600a7aba5662ecbfbcf7f47ef,1,1,Eastbay-problematic.xml -86a61ef034ac87b43c0617e3bdab7129e3167ffa69b647ac99595dcf03e239f5,1,1,Eastbay.xml -1c87354f2f51c188db3313c9c68460147571ed92296962e148563e5def8ed4e3,1,1,Eastmon.com.au.xml -332200909ab116588d0483ac47e1877ead9fcceb221724a8d3fa50251bcf1694,1,1,Easy2coach.net.xml -ed4d3f6dffa7d460928531572c4eef1f58a85681ef475721ee5677407ece8f71,1,1,EasyNews.xml -f134fa70de61acb46f20a540ea3464eb685a1f55b83318babff31a8ce99e249e,1,1,Easyspace-expired.xml -cc1394d4cf0620972f3346842dc2a149c552467b2536acab35b66b894bdd7652,1,1,Easyspace.xml -daeafd482fbd37b61bbba2a8c9c19cb05ff2cbf1422971c4d1132d93a31c2d95,1,1,EasyVoiceBiometrics.xml -fa0fc70db6708a7c811e28e0cd4fa84bbe2d26c0125eb0633a0460a574d5428c,1,1,EBay_static.com-problematic.xml -25e58ae511a5c5700ffa3e062bd06b2210254c72ce774f439a8d4bcc83cd243b,1,1,EBay_static.com.xml -c72a315812264de90e7d0ffc24c90ca3708a335411ff298a97a084bf2ef84505,1,1,Ebi.ac.uk.xml -69543b744db80de441dc597c4edba83ba4ae47aab02eae703ed5782b59a46796,1,1,eBid.net.xml -c2767020a45a762c9d5b799a7b20f5ea6a1d9e73cc4d4601491870c90cf24360,1,1,E-boks.dk.xml -210cb67b2c5f8b7ad779af15653aad366df6386c86b6966c36d29d1378108670,1,1,EBSCOhost.xml -3d7ebd12328dce8238e333e2d00f53f314ea41fc6cb532d5f48682229e8ee622,1,1,Ebuyer.com-falsemixed.xml -d62fda6e42d189a84c606b1741c260910067ab51deb623820b011df43a3094ef,1,1,Echothrust.com.xml -9a88de16ac51e357ce386b479d2c3a0d2b1e18a1df431478f16e01acdb1b90f0,1,1,Eclipso.ch.xml -216f2d5ca64e72a8d29e2d5541ce67dfc0deeb066580adf4ffa7ea99177af29d,1,1,Economic-Policy-Institute.xml -8583cd04927bd625a3a729aa8e87b900c34f5eeaf7e2ba0f534600102e6be16e,1,1,ECosCentric.com.xml -27d5271339b66f984ea5bca4be574e9faed8825be522c825f5ee4a20e4d74d77,1,1,ECrime_Research.org.xml -fa10b7e1c4419b8a29e8a06c051be882e02d5831c1390ad67e5f814bfbd7447c,1,1,Ecwid.xml -1fb66535456e55b151012f9f6cca985bd8dfb563ebeebcd829d46d9327c60ae5,1,1,Edas.xml -792f8df60f756ad2505db27b3aedb9034fffc3b05cf532fa9474de3284aa16d5,1,1,Eddie_Izzard.xml -7a47cd722a2b786301e7dfb9f3f1b1b98e9b990b7db4a515e208bdb341d4fe06,1,1,EDF_Energy.xml -1a0b5e3664f7691961306c278d1d4fdf2fce93ee8de6623e3fc1364e27b3adbd,1,1,EDI-Health-Group.xml -b22d6d466e1ec67bc4e26697a8a7832805a3a77e535b228d7761b3e2892e48e1,1,1,Editmysite.com.xml -a5b0a947f2d00f9695d765c856b547a5c70fce6467f891cbcb0f5d0c374b0bce,1,1,Edublogs.xml -39b110c5fe1cd4bf2398435b54eb13157b895d59c0e941e1ecce0b1b5f203acd,1,1,Education-Next.xml -dec6af7894c0a516537a48a6b2e31b42c412dd96fe9eb5cf4b726f1fc97c9d93,1,1,Edward_Tufte.xml -468c2afebcd7f360b6366069e6f9f1ff38d3d5289dae2e6a1a628f7cc939d232,1,1,EdWeek.org.xml -dc82b0c09907f59b1b4951ca409c86aeaa787a206e90aa5e0c437709c2e6ce37,1,1,Eerdmans.com.xml -772fc66915c575b5e3c2b9330453da903a06e156fcb452206f0b0db4330ee367,1,1,Efax.co.uk.xml -94e1c564477de76f8aff933faefb566f48715eab8ac5240687d3f2b55cbe5189,1,1,Egg.xml -5b15e21d3a49f9555fbe9b15fc2910eceaca5b163cb1735ddb3d3c1c3d48541b,1,1,Egnyte.xml -7f2e5e24ced98a20694c8041b07fef96dec1c95f1a1318d9ad77fe2cfd337489,1,1,E-Hentai-Forums.xml -0231502d992426f6dc6c8b6488cfb220c50aa5d5a624b854e956ca7f66269366,1,1,Ehosting.ca.xml -a0a7221c1fc66a4102653f74628ce9466583170be080e90469bce515c6d3fc10,1,1,eHow.xml -414f35eca630b1a468ed464d472292a94b6188a0242ddae6de3a38ac36c50301,1,1,Ehrensenf.xml -d3812b45da73e759d3fd7d65bc13e9fc5f75d97bb15dbb0a53c4e9e11e9c7f97,1,1,Eimg.com.tw.xml -14d61047350ce7adff57b7bd0894f97ccad154aa0e442c2e0169df9890a45704,1,1,Eis.de.xml -5d5182ee2bf378935e1ca445fe4ae0e66814b9240c28cbf09cbeb842fb1fe04c,1,1,E-junkie.xml -9d2df34b5649e144d1d492697dc9a238ac826ae14375475361934df1ce7ae0de,1,1,Ekiga.xml -ee56468e3b6e3625170fa861870d629d5610d7151a31f59ea6f46179031d70ca,1,1,E-klase.lv.xml -2bb55b53612641376edd6897dde2b812a9ce681e884187b1fccc5b4f2eb3f833,1,1,EKWB.com.xml -2a810dfe0d2d46cd8b7ce7012db4c3688c9d9912341fa243195dcc2e90bfe0bd,1,1,Electric_Embers.xml -822984ee7464450befd847ba351e2609b8b6b34ce8116ab38c54ddcffede5b5b,1,1,Electronic-Arts-Intermix.xml -5710da631eb916a468891837934b9adf976d281d23a936442d899836fccae30e,1,1,Electronic-Arts.xml -559cbcb2a604f81b05be1232544fe284aedf5b551b87aa6669b481e536343bed,1,1,Element14.com-Mixed.xml -f106d27639eaf5408a3e9743c4e244ec06a28550d8484f31afbf0090f50897d7,1,1,ElevenPaths.xml -33d19feabaf5d7650acfd2dea5a837a763a632626c755caed1bceeb42ffbb6e9,1,1,Elijah-Laboratories.xml -4807f283c4feafc9f36392791d723df77a0b5d8a7bf614c00579097db28bd2fd,1,1,Eli-Lilly.xml -9f6fdd52b76097eacb8c275e74b6e8b4013e25c7971106a229bb3524b614de7c,1,1,Elite_Casting_Network.com.xml -80e0d8761bdfd892e594c67d41f11a73cb15f05bbed2fe3a3565dfc021bf2d4c,1,1,Elitepartner.de.xml -d6f781131a211360db82ee552f0436ef3008e909b6cdbd9175e60f03ffa56a4a,1,1,Elizabeth_Smart_Foundation.xml -03f6035a0d5cd3824fbc733aee7c1dd0d9a48cca2e3b612a7c2dccbd7920b6f7,1,1,Elle.com.xml -9c0a04e12647010b7bdd707cd1bff3f55cd6501954cdbfb2a25fb56c535ed25b,1,1,Elo_Concursos.com.br.xml -cb56f907e4e7e4aeb2ad4a3cae88b56a75984d4d9b98decc2b232609f75be561,1,1,Eltartar_War.xml -51e806eb424c2a1b930fb7d2f4a05d99d3542c3132395a6d472af21d0988165b,1,1,ELTE.hu.xml -995c937ddd871c8b758697457a5b14ca6c04d0911197fadd29b617391e49a16a,1,1,Emailsrvr.com.xml -38acc77f3a1684db15405c335ffc2053bbb6959ebded1e53a76102e3972473d1,1,1,EMC.xml -1d5f53d890008891065d1172327c971c2aac7a7e965e9ffdc3feabbe2d037492,1,1,Emily.St.xml -13abe2167fec64e991b8e89e9efedca61be565e9d4f3b9802f500be922b9cf08,1,1,Emory_University.xml -fc7a9ce9052d59619a2d2209c325ad7608afc6c5fecbdad791467f4e4626b130,1,1,EmpireStateCollege.xml -0e65697c26846c36c75ecb0828ee9ead6fe982cff0b51cf5371f549d5d7d1e8e,1,1,Employease.xml -10adde51388de4b242da1c1b230b141ee9c99df8cb5700a268d6848aeb34769a,1,1,Emsisoft.com.xml -db21ed9907ecd72397a925f1a47e5c99e3d84024370ffb30b87b1b5142880bdb,1,1,Encyclopedia-Astronautica.xml -f75831b03111b8f03f324dbf4d10bfe8b0e2d0c5ac89d3230d327ee961102ca0,1,1,Endace.xml -f9ae38f2b1bef57d69ede4a2b4d0970ec349f81877753d4b3f8098aa57e4a775,1,1,Enecto.com.xml -f0de518cf0f0eb2e7bd3bc0e7509804840f8bce6126de38ec4210f5602675b57,1,1,Energy_Live_News.com.xml -1ff6ed01db6ea788c98c9cf3714e01be738e93a7f88a11659cbd8da702bd31b6,1,1,EnergyMadeEasy.xml -f65f16a930f424e57492c7d50dd1979290b99c2e25c7d77d5c4f5f7a10b7bc0f,1,1,Engelschall.com.xml -fced7732808ff54602eebf5afa0d78600effd4bcf27494067116c488b28736f9,1,1,Engineering.com.xml -6418b8410785f9fade87c96494372065791223e8bc6dbf60a3a6db6717d827fa,1,1,Eniro.xml -1aa1649082f82d7c748a59a29545356dbe9e111f925946cb4fdf5c40cb47c437,1,1,ENomCentral.xml -5fba1c5046dbe9fc4ee9e460915fb3c676849e8a78ae63658a509130adc4e264,1,1,Ensighten.xml -41945d96ecfca8d6ec0bb282d6c79600af30a154651072296ab461eca7d3950d,1,1,Ensimag.fr.xml -31b251f10e07bc3159c86791dd343f857ffcbc67d3695423c5c5afb8a95023da,1,1,Enterprise_CIO_Forum.com.xml -36ae2e1caeaaf54e51dcd6575c69389f126c33fa04b95c85d1b6b2ed539072da,1,1,Enterprise.com.xml -1768b65f338ba24a98f9b7bba8b7faef74f031d06b7540529374741f180326c0,1,1,Entertainment-Consumers-Association.xml -c96dc247749b710dc0ff64ee7c60b721685ccc4272edec7d4f8afdcea9e124b4,1,1,Entertainment_Weekly.xml -80ef1d15e2f1ed5a951dd080ea0f482e68dbdf69d2d26f37c4db7508e5a6f2ec,1,1,EntroPay.xml -2ca4fd68486c7ed9b2229b029b17f898ba1c99c23e7132da7c15e5d62b8de32a,1,1,Envato.com-problematic.xml -03342be1f13fcbbb19d8de98a172c33e0ef92b8322766df0743b05820413d7dd,1,1,Envato.com.xml -09a7159cbece935f73ae3747c2c83a12d6852f1820ba99d791f6d6a97515c6ce,1,1,Envato-static.com.xml -e6c2a28eab0f7c1db7a441db988b660c99850161ef4f2e5172decc9b3ddcfd23,1,1,Envirotrend-mismatches.xml -45e00bbbf2678d76e4c47105d3d2b5c32b47f02261d97454e772ab717ceff9d8,1,1,EOFT.xml -28dc607ac343c37c038cd10aafd55c7f96f85f207f180ed5b1350e43e823664a,1,1,Eole-Water.xml -679f6ae3966a79efa8f039ddb547c7acfba050eca8a54bea93201fcf268973e2,1,1,E-onlinedata.com.xml -b82763e9cf1ccf4bfcf7ce931d4971bbd5f5d767431cbe015043bdf2e307f181,1,1,EPA.ie.xml -05fb77d8a496e98fe1075d4917dc0711291c05f7c72c459a37ab13c193858fb5,1,1,Epartnershub.com.xml -67e80bb974c4b8a84e0424f0fcbc03ff5508a8b06132b02358ee335a11439afe,1,1,EPay.bg.xml -976b698b76edf95ea981c747a6941f4f29b882e084713633e78895514f99db6b,1,1,EPB.xml -bbc9379f3de6ff09603547ccfb9a2db3010598de0ffa419b5a75d696ce451ab1,1,1,EPEAT.xml -8eeb3d4897d6a7c910ca2736369a12cf8b58fb002f0ddfa1a586ddd33fbf9c78,1,1,Epek.xml -20dd382c301bf79bb6358a31b02140bc49ea783847600c61ab6440c15525823f,1,1,EPFL.xml -996da8d070087f16ed8a803b12496783c78acab6e466dbec0184a273cdd64f45,1,1,Epic-Systems.xml -54b481cb2c767535b10f60fdf2997321b171971d8d1995776f916155ab3451e7,1,1,E-Plus-problematic.xml -1c6ba142e803510fcc4451fa2ef8a709e1a63176524d82ea851101333e190e8a,1,1,Epoch_Times.xml -e2f2d077589a9a3ba447a8dfc979933810d9490c5db9fe1d4aff1775114c0714,1,1,E-prawnik.pl.xml -6534287a0e888534a87b000596d98aba7fce20436b1d87bd32dae355c5c7e76c,1,1,Eprncdn.com.xml -689575fd56d0dfc372bce080de209b41a8ed800bf259b073fb79987f97526749,1,1,EquifaxCanada.xml -187fa4679045c03dccc5ead6ee73280b28875bd9aaa102767e8d458dc625bdb1,1,1,Equinix.com-problematic.xml -80e0ac321f52fae12e7289974aaab08e19e64b23680086d9c360ab0f000076c4,1,1,Equip.org.xml -e52b1cc7b5f563a1e88245657725a18667d9d89e2274555424febe61b95afb1f,1,1,Equity.xml -5cafea7370b3f1eb7e7ec7f3d832fba3396ced687d679e48098e47f3fa77478f,1,1,ERA.int.xml -771c90d6313b15fb4d41a8c89ac03ef0029394521c105655c3d1aed1a8f44db4,1,1,EReceptionist.co.uk.xml -62a2a9aeb593f45225d53409664c458359b19c0271bdf2436315b1d4103efe19,1,1,Ergon.ch.xml -207f4a05df986efec17c07b97092c8d8655cd2dc5e9bc7fc37f2abd90adea288,1,1,Ernst-and-Young.xml -21af6451e5293d3c590dba9f14d347d022d8ce5d7a06b8d1960a2d7dffbf76b6,1,1,ERNW.de.xml -78b1a64929c2da47e4925b53828c3b47df238f56248d7eb47781ad1be1bd1b82,1,1,Erowid.xml -d23e25ca118556ffed2201bfe3df6bc1c7469563e1b683f82f65af65b0f738ce,1,1,ESF-Works.com.xml -04a75c718e91fc3adb488119c2ae4fd54f333ccb2e0ce2362dc7456a29d4f778,1,1,ESISS.xml -8d75ee8e4570e2908b5bcbaaeabb74d36ef0c022034f86565792ac558783c61e,1,1,ESI.xml -0f1c985c5e9d865d0265e47b05c44ceffbe25bbd944976f2df9be8ca2cebb598,1,1,ESOMAR.org.xml -f3ce2fd66e7524b4d68b3e209011df8422416b046f72af8b12923f3ea7e16cfd,1,1,Espacejeux.xml -ee65149b865e4f703d13430f142007992a518ed6b41211180268f09bbd5468c1,1,1,E-Sports_Entertainment.xml -ec6859a3f65afc49a2741962c980c00d5aea61f0f584d527579ff4e4bc1547de,1,1,Esri.xml -5dff4ed43d7fefdedadc1fb65c1be9be51f767238f30235c7cacddab9665df77,1,1,ESV.de.xml -e14997fcd1b49623692ba6542a019182b6f66628abd718680fbe20fec3725e7b,1,1,ETegro.xml -1bd67e0a0c612c7d6cec4b3e9dae388f7fb4b4b7437030889e7af76a0cecf27c,1,1,Ethn.io.xml -8d9add38a1725f7660e8bc03f9f6181886dfce418c3a726cef21f6672eee6955,1,1,Etipos.sk.xml -a04505656b926b08f2447cfccc83f7d806b4651b2fa9e3392b585da2222ff138,1,1,Etrade.com.xml -4ca176b8da733a7ca42a057b1611a7cbd1aa5d217bd645828cca28a160b12f52,1,1,ETS.xml -ae016ec38dd372b50f679c03442479c2df1eee65fa59a7173a1548e4b289409d,1,1,Ettus.com.xml -a09d7487f8ee35e17798818da7d1638ea49a417b28b17ab4fa4d7f48a27d653d,1,1,EUKhosting.xml -e60d94bf8635c6956174b9a00b6420d7269f5856042d5d4f06f8ca13b60410be,1,1,EUKhost.xml -50966d742f6bf11f91d21b8693bb7040c204c0a24c6f4a4ec2e490cd65eaf46a,1,1,Eurexchange.com.xml -a9dbe1ad67594b75dc7993c7e982d50f8cb7b2a57ec68f5f42fe0aa685152c47,1,1,Eurex_Repo.com.xml -6d3e2a1d8568935ff376e011fa835b0a9c78a06c40eeaf5b9732abbdf0a27808,1,1,Eurodiet.xml -42e2dbe48aa84598729db8c890ba39a3840216c87e5e6f467b71dc5ff6f58173,1,1,EuroFlorist.no.xml -4f002776c4d981ff1f1ecf7c7d24ce1b803258872209f871ef25c0e58cf203c6,1,1,Euroforum-problematic.xml -c600bb6969b1e2f1ea27f7e6870f47efe67a46c935216b63fd02a5eb03f5e7b3,1,1,Euroforum.xml -9f99f8f32cd2c2a5658afb1388829797c09b1c3f64809127224f664b6e18b8f1,1,1,Eurogap.cz.xml -c9efe1af0aefad3c1958f279beaf0aa6eb707bc60bf8172bf57ee2e97c25063e,1,1,European_Energy_Exchange.xml -a5cf2971961cb221742742b04c6128dea8731cd1b2184db5fe18de79ce2aeeaa,1,1,European-Nuclear-Society.xml -9f07a1cd07e17aaef37455a8e6927200da4633d51836089d790ca00caa2a16a3,1,1,European-Southern-Observatory.xml -fe4a516d3f0f9fe2a5b9b5fb91d194c548e2ba9c241c7a6ff22062229dd6433a,1,1,EuropeanSSL.xml -1010344043596531b3010f05e41728fbf666944b16f1a0916ab3a7fc1635dce1,1,1,Europe_Miniatures.xml -eb2c414ae4ec2c034261b3cd828b87ba62ea8fdf6208052149c7cf7fe882bbbf,1,1,EuroPriSe.xml -c3ce6b72a929adc8d7e227f86884c300979feb2a571c85cc44db4262eaa6881a,1,1,EuroSmartz.xml -37d22280f426eba13e6ab26c326c626ed45229c4743065d529956265887b4415,1,1,EUSecWest.xml -ba895fc1fee78f637b19286b6836b2faa3c965363e4f93c02b3c3e4e098d8248,1,1,EUserv.de.xml -3ae52ae6817c519b9b72ad12ad284b4e9112a73b1e8647e635d91c685a72ea27,1,1,EvEGer.xml -dac1b4f1a77e082ec67d729b5970634f14d036157fb55e32d317a5d44f70a132,1,1,Eventim.xml -7ddbf472286dea4067fe4c1a3725df3c096d6b0144fe01f43fb8df5db7cf19b0,1,1,eveonline.com.xml -cd93ab59fa23cbcc434b5a873d291fee6a7f759dabdbf480ee4f6fcebc2c26d6,1,1,EVE_Online.com.xml -639d83e427c41b0d2cf4c288d02b7de8b33013502e84355a97d9fdced2c3f77f,1,1,EverMap.com.xml -d48118988ae9b34e8c0fc3f099cf85308fc8e07127992dc9ec238cea5889ad66,1,1,Everyone_is_Gay.com.xml -27fc0491cb9c69aa88cb6ef0bf003371c819439f42f957a61091d63168f51139,1,1,Everything_Everywhere.xml -aa10dee3bf129409651ca7b6c42091ff1ee96665c63d6e689fd561378af484ee,1,1,EVGA.xml -946a4fc3e8ca86971f8824a4576d947fc40b7fb4d50852f9604278a3d0f97ec1,1,1,Evo.com.xml -97898e32a15c85d1f70bb1b15f7201cc03c1ebe0b624949fcd4e27ef48619c89,1,1,EVoice.co.uk.xml -c429f86cb31855954d7351c1b5f8f3d9a268eb9f7cf2e5fbc01b1c8bb7656b14,1,1,Exaccess.ru.xml -c7dd03c3968a72d8dbd8e9e69c7fbed321e48d3702d3b98eaad7e5519a11f617,1,1,ExactTarget.xml -1d3186bff2492e46d6ff1324cedec5440076462c9869bdc1eb768bfd23bf9b65,1,1,Excelsior-USA.com.xml -6841328fb4f2cbf6061dad6d4e8891fe0cbc9ff71db8155d4a10e3cb15ce1195,1,1,Executive_Interviews.biz.xml -7e58c72f6a66efc1691253ad38821e1e8be96d028e6692d2af8efdb7d5238d81,1,1,Exhale.xml -8491f4394a13238d21bff945729a1b2853569bf290eaf728ec22aa9045cd2cef,1,1,EXiled.xml -52c1616395123a53a9cf2873a5e6a9e39b276d552b83a6532ed7b81ecefe28c3,1,1,Exinda.xml -e1c24f2f143548c3511c57c92626474aece78bfda4b736ef5c912ed1bb7c6bf3,1,1,Ex_Libris.xml -0a3786f6330146b7315557dd414440c6fd94ad57829627a69c2e3a8201634f42,1,1,Experian.xml -c51f9a4080f102686dbc2fcef5d101dcae283ba848d48d25dc15a8a6d8d97d19,1,1,Experience-Days.xml -53d157231d09238b4b86f5d623b23cafe9e649f542c15ca65c93e4c03da3198d,1,1,ExploitHub.com.xml -7e166de51bdecc648210c8721cdb45fba5f1ea328f0807b492a573356f906909,1,1,exsila.ch.xml -3daf6786c230dc5c0c06606b5b009a1fed1ec11c615ed5ef0a212fdd3f6c0c84,1,1,Extabit.xml -03b6227bca68fc7f7a99a9500fedf38d07361ea41dbf5e823158eda5e600f00f,1,1,Extract_Widget.com.xml -ba491f922d7f7708c316a6f990fcd9a5182b43ba50bc345390131c93e38d921e,1,1,Extra_Lunch_Money.xml -2c178f3f33ea32c51ca6e0436e8aa995db80e8648fd9f756bb8a12628734cd68,1,1,Extreme-Dm.com.xml -eaf38f05e497f0de0bcffe812f663d61fac0de0f17e7a6dc47bd080308c2c72d,1,1,Extreme-Light-Infrastructure.xml -906fefda2aabc9d8aa19f68ea27c000f10179f8b6b0f121d0d1af39473cae462,1,1,Extreme-Tracking.xml -189373f44fa59efa0ad0bfde91b432b0b0a190d280a82a4ef9712d903a0c12cf,1,1,EXXile.net.xml -b985a1711868147214c9661f88cc7109f83913c6a81a668a18135b08a570e3af,1,1,EyeReturn_Marketing.com.xml -e8e7a354cd00f2da91924a2a1dc6bdf3be5cbb231ee46a3e7565b8f6620e5361,1,1,Ezaxess.com.xml -c3187433dbd4e12c9601d6e430156eeea8288466cb27eff31b4505881707bded,1,1,EzineArticles.xml -b836ea1bce04d4ac708e2a3b237ead48b9789353869b853fe9ab6b679c48db21,1,1,EZOSHosting.xml -dbcecf1c78f18bfa326267e0ca37f8f94debb98236913d73092883b39df4f204,1,1,F3images.com.xml -8d7d1c7be6ea8102e538e5e7e65b780191b35e4b10736d37b9b9c56f3bdf6470,1,1,F5_Networks.co.jp.xml -03aee00629e0916b9627f907484ae885e2b9e783dd789c7b928dff3dee8da925,1,1,F9-Distribution.xml -b775d1948ffe06ecc74d13e8d848fcf29e33f2acfb5d8c799f86fb300196a02a,1,1,Factory_Expo_Home_Centers.xml -c82bc1f80e0341b09f846b69d1323ce8107ef501959d22c8a098d23c1d77f49b,1,1,Fagms.net.xml -4a92ff9d921991ed19d736e4a949785ed0d552507c4e119a2d63cdf6451bc9c1,1,1,fail0verflow.xml -cba3793bd310eece3add728dc772c0c7f787935f717bd45cde44971041dc88b5,1,1,Fairfax_Public_Access.xml -40df368dc0fe51e760a55b921447ddf863c15c59432124f7871688c0b713239d,1,1,FairWorkCommission.xml -2720b3927f1899938a11c2ed29befd009d6de512bc85a56b924a91df4778b087,1,1,FairWorkOmbudsman.xml -8767c03d704f5c34d0add741e10a7faca4c8f782e4c1c4e56f154acfc6b1b745,1,1,Faith_in_Motion.com.au.xml -256c0deb96901b3d608ee6814d74975e4e5372b0e20862f76dc0e06114b4b8d0,1,1,Falcon-UAV.com.xml -0d505334b7b9b26d404385fae1d63f96d85c324a3d74742684e62726b6877751,1,1,Familie-redlich.xml -bab2a9213692f4d6eae97d27fe7fcb990418aa78751b5666157e744f391734f7,1,1,Fanatics.xml -6635f4155c42dd8f694a85079f66436a3cdd466391b4814ff640259a9a9bd698,1,1,FAPMC.xml -c092efaf47353f6eaa1d433b2fc56eac6e8a7d59829fcc9882e1fb777c79b54e,1,1,Fass.se.xml -391dc7eb6e57eb9a1d3867979fdd3d15cc6a59a605a9523de89750c21f877c72,1,1,Fast_and_the_Furious.xml -5e004b2189686f641b3b61c75522ddda898f3c0234f53d10aac4b2237a1c95f0,1,1,Fast_Co_Design.com.xml -762d604802890132c73106f3e0391b30bd07b1be96837a6c93b510480bd6bfee,1,1,Fasthosts.xml -9c51c5f3685da502281c46d976f7ae3bb8b9b2ac9799e41eaf7253c170fecc15,1,1,FastSoft.xml -dd287d47353154cfe23378ad3be870a78a7145eed1a8b901f7771340d09a2e19,1,1,FastSSL.net.xml -364d2c607b82eec20f33ef047f7e2e88117f36746274b50c11dceaad2be2f617,1,1,FatCow-Web-Hosting.xml -1ab60453a8f85bd25292f19e45deab01a16482933e681f6f43bf43e1287d2f62,1,1,FC2.com.xml -76e1a443721c7c57e7976241d045defbd2218dee42cbdef6a13472e13d9ff63b,1,1,F-CDN.com.xml -3b9a47db267c9a3cdcbd5b4e803ceac9d44fc713e99b99169b6876e8a5ccb0af,1,1,Fdworlds.net.xml -7139cd8f57bae60d9a939e2eed1aaca9223a7bb9206f9cdc3651fea786b1b33f,1,1,Febas.de.xml -18b751a0a6a471c01a4f0a0af12efd28359d7f08fba7c6eeb1f0666e40def11c,1,1,Federal_Business_Opportunities.xml -6fe541e9fd33bd5062d8428c29e7cd90f9646b54e42ff23bc4b18686804826a8,1,1,Federal-Communications-Commission.xml -1fe4b4c61b741995024b05158f8b082a8da905b3578624c82154a54ec6f692db,1,1,Federal_Emergency_Management_Agency.xml -95aac20acc9708c537e1f96d783ace776a81e83760fd2a449d7dcf037eb31b57,1,1,Federation-of-Small-Businesses.xml -4b9913b6e81a1fb71efbdc0bb444bb4d89c7946161191c493c68e2233d018bc6,1,1,FedEx.com-problematic.xml -4b6b7255ffd9d15030ec0e49ee0e4514641c6c3cf78d1dee3a476216c0f9dcda,1,1,FedEx.com.xml -48d4ed641f0f74c00aedb325f6056a8db53d6015b7f71285b4495d432b392296,1,1,FeedBlitz.xml -712b5353e478054578fa7c0039cf93e6d946a1188d94215c0bac43df6c957be8,1,1,Feedjit.xml -120bf2c17ec6d85fee4a5bc1857fbe29f7d40ec9243c4da31c47bdcb59d9e96c,1,1,Feefo.xml -c0fa3a3a0e5df3a6f3776b5d75dcce98af2458b4caba0e2f10f6f8ae41b205c5,1,1,Fender.com-problematic.xml -68973e7c4a203cb4b69a924b9701da71a4f7e96dd4624d0a1e6c5db6c65d56a9,1,1,Fender.com.xml -3a90b082ef6aab5b43df5af46b39db67afd0fcb7c2a46b9c8cbfeea3a3d95544,1,1,Feralinteractive.com.xml -548de6901dcd1cb2fa257066a98ba5c36f0c51aed72230d44ec6543e5e3c9c6a,1,1,FernUni-Hagen.de.xml -7061d8f1e5c7c99efd2fc01a26c7658c166a020d8afb32b8bcab4714dd227a59,1,1,Ferris_State_University-problematic.xml -70b8a27208019d2aaee4bdef4f33f21c8b2795f723dd79dc5e1c3090f6491a0c,1,1,Ferris_State_University.xml -8490fb1464756ed7011263fd94e72c7eb2f112c7c9738f4e20e440dbdf4caf39,1,1,FetLife.xml -387ecea2d464c5de4043428433276de40b08f1d4c2f674c20082c60a1e52bb83,1,1,FetShop.co.uk.xml -b415e81d1a66aef7b49d2569612f1ca6eb70cf80ed84d2dfb6137889d95d5a5e,1,1,Fibank.xml -695f2cbb45552fb9b20b3dd59d70843ee1a2ec102625b330d8900d3d149ad8dc,1,1,Fidelity.com.xml -61694ca6e8522e272c3caa8ac40d6619397131e4eb53d38582dd67562037cafb,1,1,FierceMarkets.xml -6c5fc7be0086b16f85edf4e13d77f5bb86d0ff940e14524e7cda87bfd30a7bbd,1,1,FiercePharma.xml -b18bfe335ab271a0aa72bbe6836acf7b4a9fa299cf03b54bdca37aa90842ef16,1,1,FIFE.xml -03880d4b9139e6707bcf197915a4fb951af11692b30d0be2875ff60889f45e70,1,1,Fifi.Org.xml -73a5edb4a3f93493f9d92db7ee0310db774293839142aab19b9a8e1daaf9538d,1,1,FifthThirdBank.xml -c1867ef1a68be3697426da0de0da1338edc85871155084ac5d513257f1d43fd9,1,1,Fight-for-the-Future-mismatches.xml -684ecab5e0c791e19b1ea95403cf7fa2afd65f3085defd36ace614969daeb338,1,1,FIGUE.com.xml -05eae3a26de76ce824be013b5ff75f91d941fa5e1c8f058e6da4112ccc39ab39,1,1,FilesCrunch.xml -4cd436b17a7ce4ccb70013ee5a5e401cd745765f3498a89049c49faa2fef4253,1,1,Files.poulsander.com.xml -0cec79af239c213d96bf860ab095849aa49a64e6b8066c46be222c3583376a73,1,1,FileTrip.net.xml -3f6387693b8ce15350c75c5e2d9e1e699c7b527f63bad5215b80a466f16a771b,1,1,Filmdates.co.uk.xml -f76376df115bc0956118c964be3da7e297cbaa87c35bd528f71b283c775cd770,1,1,Film_Linc.com-falsemixed.xml -59611b24cba1317d9df766af54fb7ec86f7e74e785d7e55aaae75334a59de760,1,1,FilmTrack.xml -c26d01d28e436054f8013c406a500abe9d928391e09c1795153872f0ca70ee30,1,1,Filter.xml -29809d9d77fbb44d7be4e05b6950f2c0946d35e867b8746780e4f6bec845c922,1,1,Final-Score.xml -93d07a1a55ffb53dcfd8ca1fea1bbdae1da9864caefdcb3aee27ca28fb0fa3e9,1,1,Financial-Content.xml -20ade5eec380ab16ee4861c6086b39ec5beee7c33575e8f1978e5d9e3e8090ce,1,1,Financial_Post.com.xml -1c9204b62a3c9486a743b9e42e25d18ec037b93683ad0586d6f7f06c66b81256,1,1,Financialtrans.com.xml -efcb4402229ed43863e8ac8eefcfcc9f73cfea6ae53352269795b1760d0e0a90,1,1,Financnahitparada.sk.xml -4091f876516cee6dd65456d65fc8852ee7d13b81638ac038b35a799cee08dafd,1,1,Finanzberatung_Max_Herbst.xml -e74290fbd951caf49445188e6d7d3d1a5e4f0880f0355ebb3f5461266fcaed5a,1,1,Find-a-Babysitter.xml -8945b83b4f5a1585e6c400315aefffa1d1432c3900cfd81e9d838c5a28e3aa05,1,1,Find_a_Grave.xml -3b2c4b2dfae93a69f57f2cc23d24e2fe5a1573430200683355722bc5783bbeb4,1,1,Fineproxy.org-problematic.xml -ea59a590e5d74dc8cbc7c6a92cc0ae74cf6e0f509ed0b458580792958410e339,1,1,Finka.pl.xml -49cdf2d68ef381acd009c207a231728c8d6f32df1a555d2ebcfd42bb25555dfe,1,1,Finmozg.ru.xml -56723d805ff3dd78ce51c1b01f82da4277cc5c09f384a991ec11d40779580de6,1,1,Finn.xml -c2a6e87647595dd9487c3959ff5cc3b598bcf08ccbd358f24f90b988c478d8be,1,1,Firedrive.com.xml -03e5723aabe6c8aaf1cd4f50bfd7796d1434c774178cd04e445714ca33c448d2,1,1,FireEye.xml -820dad707b8c1d4a036595849274252557b6de7411de6d5e34ba481c99c0ab67,1,1,Firemail.de.xml -6fedbd7c208f1399bf6254d95dfca6a4fa1c6a663fdf646d79467688d72884cb,1,1,Firmas.lv.xml -711d4855340b3dcaad02671121099aa096bea856730eebec67c4231c89ed2a2f,1,1,Firstfloor-Electronix.xml -06791ef9fb099d241456c6dfc9d158609df5d031799289ea5686c2f1b19cb746,1,1,FirstGiving.xml -1bbb44b283d5a3417a6389f5b4b8c28b91670512e02255e8608f7a92c0658d62,1,1,Fishwrapper.com.xml -875a6bee375333a5648a79ae88a5850bc492a276a55fe8d7d13cef47a90784db,1,1,Fitness_Market.xml -698d76438e1237c5c6c2e2645d5ef1ed3872510a0856110e4576123d8375113a,1,1,Flashtalking.xml -9eda8209afff61900e1b48f9864a11eba047613312f2a7dc0b644da1e26ed4b8,1,1,Flaska.net.xml -3937752f7e787aed21ab503da7978461734f5b5bc2886712dcca57bce9519d5b,1,1,Flightglobal.xml -ec9d02d41957b37a86d5d2fe66f099b956d084f4f616f2baa74cac3b040d7495,1,1,Flinto.com.xml -666780626f5dd9645bfa25516269584f733a8d1af9fa0f2a17c3700106d7913b,1,1,Flite.xml -d30c7e445110ff3543a242adf6f48b95a529a89538c936062c48eb32d2edd882,1,1,Flitto.com.xml -8ea7a8f22b03f1b163013b35d0ec7061ecf92eeddcaea9df4196738906859924,1,1,Floating_Hospital.org.xml -3de483cf9eacbccfaef3a558edb6df3c60ebd7d167cbb9c7744da089487651c4,1,1,Floek.net.xml -2bc7af79e188d26df72dffeeed24a20ca00dd5a32ef9f1747caaa6209cff7e29,1,1,Florida-Center-for-Library-Automation.xml -4def65d5306408980eddf9267615a711b000ad48c4e177c6cea446ec6f822a41,1,1,FLOSSManuals.xml -cb0a3d716d8f22654d96a8efeb32590ddd38adcd3ba9ae62bed7491c5e5486af,1,1,Fluctis_Hosting.com.xml -3962fca2fa36bc16a4000801f7f7abd4d2ab6f5445da67e238a58fcbe23801b4,1,1,Fluendo.xml -095031fad5044af08f2f72e6fa5fa023d850718d68dfe70522a7ccc1a92191e0,1,1,Flurry-problematic.xml -911cf9609e79e2e6024f6d1d6e4ec6eb49c2df3c6656318d9c01976ed3c3602d,1,1,Flurry.xml -fd60fa35d5377fd82b0c3eea6e25949f63b3cb3ff37721a75fdd89a9181c77a7,1,1,FlutterToday.com.xml -bb76186780d8d90c0bcec3715e197a685e576f9dc18649a8e7c518698274fe8f,1,1,Flyasite.com.xml -462d27ac543aaee8dbf9447a630755ce62d643eac4c0fa90a788dbfff1524c21,1,1,Flyertalk.com.xml -f8b053f507e3e3c0801356c9285d53bb736caa5a9c78e07514d501c8c07e06be,1,1,Flying_Meat.xml -d616f59bf1e0d62e3da5ca665f549edb18079983e3ffd92b07e75e4e661c9b63,1,1,FMV.se.xml -3c3c06bc7874b0329a9992798512978930bddbe3bd2fba2c935c8c1d851aa429,1,1,FMyLife.com.xml -daa09a73d487052e243c63b74efb4e69273117f17917c6c7c15b8797d2cac930,1,1,Fnac.xml -d72e8aa6782b02db113490d1de8331ed84be8acbb5bfce8bf0f7eea8f44df19b,1,1,FN_Mag.co.xml -67380bbdadbe0ceb6daba1a7b93df6aaf590634e21be8c6162c07e2ce6ba834f,1,1,FoeBuD.xml -d5760439b01dce5d6f1b9ed5826fbdd38f6d48fec3e5802c79da627d85a4089a,1,1,FogBugz.com.xml -6ada6acc4a35d68450a5ad7efcec79e1128dc0491a6e517809217656d16b5a92,1,1,Folksam.se.xml -92fb7403bf44f0f00f9ec6f04bb16b342e1b8eadf577157595b4dbe7b4a34e77,1,1,FOM_Networks.com.xml -2c86bb4df074f731101dc6d4c65a35e0e26f30484aa4ade5a0645eb4b3c98715,1,1,Fomori.org.xml -230a200b2ca065458bb244809281f200be92180775b209c67516e937eef9bc8c,1,1,Fonts.com-noscript.xml -b50cb36cfc409474b96f6198d97d5229a1392b250965bd62553b174ae393b555,1,1,Fontspring.xml -36baec1291ca8469d39caedbb83c21e35f8a1e9649ec41abd315a70f9e08542f,1,1,Foodler.com.xml -53c36aff76d03bc81d48f1d931230ec64bfd21cc1f5e5ac1dd7943ef38bdd2da,1,1,Foodl.org.xml -53b8be8ed78fd92885df14e5918a7ec2398bb0361e9eface0bbcae3291503198,1,1,Food_Protection_Task_Force.com.xml -d970c9635259968f1c9bd07562c32b4219caa63435a8cb51811461c4ee22d112,1,1,Footaction_USA.xml -86f0437af80dcbea036078deb4e385792844e1f98493e6600e0ccf8960de1165,1,1,Football_Fanatics.xml -2f4403eaee67b987bdf91412cc3735edf3990acb8d5443a6b31ed00764ee37fd,1,1,Footholds.net.xml -9ce5cf4dcf915fc82200c9af860c2f36936b25ac868b19641b3fa80465962a78,1,1,Foot_Locker_Canada.xml -8dbbd3850eb17caa99123d6f3d9cea15c2b674519f1c6411ec43501ef62d4cd7,1,1,Foot_Locker_Europe.xml -64f6608fb3a49ed97cc3c98014a60c459d99bd0efe8b7a8c8c9b011deb70c74c,1,1,Foot_Locker_Inc.xml -d78b9c027b108b40f4020703d1bc5b49e10ad84b7d1feaaa88e6a33d76666cb3,1,1,FORA.tv.xml -762c4c7ddfe9d97794c2a67581b85be73001f3615f8aae7191c5a2d7da343cc0,1,1,Ford.xml -477e679288537c878c798c1ab78c81fe0a188e245faf781c5e854edefd9db231,1,1,ForeSee_Results.com.xml -dd60cb79dca408a6626badb165eae7d91c1c19a529db97cfd40cfdabee2a6c81,1,1,Foresight.org.xml -89dd87f90d179698764f08f9095cfc9cdefd2cc6fdc6f01e7a6dfaa4e5929e15,1,1,Foresters.xml -3729a2d772256b27c3db2e66decbc91f69abc6f63b619c23b63357475be39f70,1,1,ForexCT.xml -eaf480051df64d3f3ebc9565092385dede2300b12ccc58d65e53a851b5eddd1e,1,1,ForgeFields.com-problematic.xml -c67682b0fcfb5b328722d84fe8c192e393451f15d3deac0324c37c193edfe68e,1,1,Forgifs.com.xml -c95ff5709f173fc8a598a15c85281a04e9be21ddf5917b5683159dc821369808,1,1,ForgottenLands.eu.xml -5e8fc987828220c55b34c788b14e05218dd72014343d7d968aa77361601bc7b5,1,1,Forocoches.com.xml -b6fc958980c2540d31f01eb6ede8ecf78e1430e81c407db0f84972ba310630d3,1,1,Forrester.xml -edbf5367cd756161b715e8d22e7d7780bba5fda2b2c985bffb26ce45bf80487a,1,1,Forsakringskassan.se.xml -82301cb8f43959aff28e1754ba6c78856657ca3131b69590a0685b9e81e4913c,1,1,Forums_fur_Naturfotografen.xml -bc72951de76165678edc7a307b013bdb29dd888dc90eee3ab035bb4cad38669b,1,1,Fossil-SCM.org.xml -64d7895f2f69cc720e9d958fb3a212eeb0ca68716d33b408daa6721f8ffafcaa,1,1,FOSS.IN.xml -1a248675d605c04901e6a2e6ba54332eeacca5a8eadb46a6d405d4a0ea1dadb2,1,1,Fotocommunity.de.xml -9628ddfe1025f51eab3e8f76b7bf49b1f2a026d21d0df5fa1f255137dc312f1c,1,1,Foundation-Source.xml -f0fcfab8df8d22bc08e6ee92df4f201538ace2bf944be743223cf251d26c3c46,1,1,Founding_Fathers.xml -017933c1a918e5d9e647d2bf4a78532b22d87f68eba6087e21310d29d060e30d,1,1,Fout.jp.xml -cd2bda2d38e524acf1511b0118c743cd822f7282adf50b18545d5308f2bca617,1,1,FOX-Toolkit.xml -75d0aaf013542cfe0b5752884c6f03e3c8462920eb045ca6a52b790a27f60d9f,1,1,FoxyCart.com.xml -86837c3789a29dad59fe1334a80c374a588b9620a0c16e0f783476c87f4a03a4,1,1,Franken.de.xml -ae74ef43038d642c2f74200ec484b36aff955a03e75315853845ca01bdaeafb6,1,1,Frank_Timis.xml -c76b0e9e8e1dbc68a007d4f5d77bc8e5a078f198687441f043882bf6a5a525ec,1,1,Fraternal-Order-of-Locksport.xml -e5b73594f3653f7fd423e06f8e3c24b56e5b82dffa76a56a431d0c671217938e,1,1,Freedombox.xml -bd571d2eabfd6f3604739be824871f11966b43a49812230fb887034c5ca95d8b,1,1,Freedom-from-Religion-Foundation.xml -dfec799168fd8446708a1540518f2829c0d71890a380ae775ed4b73ef262b88d,1,1,Freedom-to-Connect.xml -977e6df851452ba767baac346bce618201d96d642db53efd2100db5fbe8643fb,1,1,Freelancer.xml -d0da63b8cfb124503218f5d2fc8e2f6de394eec88e65d7f44dc5b9e346f235ae,1,1,Freelansim.ru.xml -5eb2f3c83b0135ef3f3022b665f265cc4c63b9d243d992fb4de5320a1c4a3026,1,1,Freestyle-Capital.xml -1a364af118ce9c0abcfbaa7635c1e0fba64baeea937b98e2cd06c80447faf42a,1,1,Free_TV_Online.com.xml -03314dc82a950d64d7cbc5474d45b502ee6f4846c47e137cd457b7e2b26fd990,1,1,Free_Utopia.org.xml -46469a1dc47613c743e69f85e60039573a27c170366ef67c5149c708205d724c,1,1,freewebsitetemplates.com.xml -cf851867f58cb76f64fdcdc2204f3c7d25f19485183165c810abe31a5ed0e77d,1,1,FreeWheel-problematic.xml -ca17252eb72c6f0b2056e8e4af0f2adfa73302c3c21aa229200a7abc19b14e35,1,1,Freight_Calculator_Australia.xml -66d7ab2943eba6c35563a87d17ad66b850b5ca1c7fc354f3df7271d33eecaade,1,1,FreshBooks.xml -be60c615333e182ce3979e404ab1fe04d9f73a1c60259c59f1daed9cf520dec0,1,1,Freshdesk.xml -261de79a38338955d2dc593db32764dd61a0b73fd196a3255b89239fa4b569c6,1,1,Freshmilk.de.xml -b4b923a800b65263a42c953b35b397142e56767dcd84a89a77b2888ac9845053,1,1,Freshmilk.tv.xml -9d1995e185658ef1fb561e3075e47a229f7a06b133b4e1e01b768b0a0ef8df87,1,1,FriBID.se.xml -ba6524c9ddc797ecf3c53447e40e3ccb1155f79f4932945b38ee92cc4f642e51,1,1,Friedhoff.org.xml -bff947bed72b757afc04cb00721c711a372ed80a005a06146b865dfe0d3db6b3,1,1,Friesland_Bank.nl.xml -620873621a11c978d24c3a235dd4001a00816baae437632dd14241661f4b9eec,1,1,Frim.nl.xml -9e65acb551896b99f50fa5cae92b91f30b6ffacb5b5015a4b8d8b22dfdba4c01,1,1,Frontier.co.uk.xml -74573855013be34cb1230aa388418d4134921cd8cff3db47111c1ec2fd3a386a,1,1,Frontiers.xml -67d26cca46acd4042c25a1a038b5668a5277f194663284f6c85c5c6cb8423456,1,1,Frooition_Software.xml -ee0b9713fe8fcc7f2bb163d602f7eb5a300391d48d3a3790aa0097a94b8377ae,1,1,Frostmourne-WoW.eu.xml -441b6daf576624389ef1cabfbb3976345111cb4b10a3f63dd90d82c06dc6795b,1,1,FrostWire.xml -82f1f6f29f88e99aed17edd03db1f396b008a39fd71fd02730c1601c4f0a7802,1,1,Frys.xml -5da2e7d384561f026710141bdf85ad78caffb625e054d256e104c811b6630ae7,1,1,FSU.edu.xml -46405c9c76f8b7e16c03e30a77bf98ae2926957c7ce4d609178586b899028dcb,1,1,Fujitsu.xml -78277c5cae43ce4e7ffe27da0cb6e63bc37fc870751d9d5a7d2cd93a84ee9651,1,1,Fukuchi.org.xml -a4593622babf9334e3005225ebb80955096badbd2184f87e41a6b5ae09b73af8,1,1,Fullerton.edu.xml -64c526b0e44900f94b42bfd26d2897319ae5881af9e3edcf11db3f7e1f7cdf56,1,1,Full_Signal.xml -078944b9e1caaf39bcf1748985f81dabe7f11302797852adc891bd3f9cc53c81,1,1,FullTraffic.xml -0bf864d504b62b444ba798f46ae53acd1fe189b12bffc4c4a3bd9e4d144fb61b,1,1,FundaGeek.xml -052bc2093fd6282ddfdf7e7ef0ec26934cbfbb30be3c1e901ed0b9f3cbe0506a,1,1,Fundinfo.com.xml -1ae38bb06302287f4ea2d7c3185e3b2e3d90e202b49f71097c127705f22fc252,1,1,FundRazr.com.xml -c4e192e5675420c4f0cd23969265b5a4475624a0a1c25bb292d59321c9149d3d,1,1,Furaffinity.xml -b4e68830f0c9c55b103df47a11c2065a13c302e81e48b7f31da839f0594da0ec,1,1,Further.xml -362fe4f58f36e45d49519cf808a46332a95af9c4cc9dd53a40054fe7989e92a6,1,1,Fused.xml -d5ec2745bd7479abc6a7e4aa7421ae8bef3b7973b99c55f83e52a0edb435ad46,1,1,FusionNet.xml -943d8f71197d86f41d2d7f3a8f126a55db80abd6c8bc25dfd1b04704d50dc2cf,1,1,Fuskator.com.xml -18710d1b119a5f40a9bcf5e925fdb48138e94b7acbc4aaf364718a60da5db176,1,1,Future-Publishing-mismatches.xml -4e39a8adeaa2417bab0a9f79756e980e0330b6e2c8fd9b0c983f153869861a2c,1,1,Future-Publishing.xml -f30174c08a98d016d113a5730a45f4bb74099691dd3ef1d1d209d4f6fb7012b9,1,1,Fwdcdn.com.xml -ebb15ce0e092277453532fa99e2d3180532e4d70076e64e0d79809a0136a886d,1,1,Fxguide.com.xml -6fa34c84a6c25188815792b833b426bfa62d852b07a980a2edfb1768bb051bbe,1,1,GAIA_Host_Collective.xml -b566f2aa4fc89d6f17278168b60746d1ac7c36e5da6e9e6378da65ba4e36bd99,1,1,GaiaOnline.xml -37d6faf5ddc13f30dcaddab73cf89f5ade20495ba8ccabacd2a5f421c21a5990,1,1,Gallup.xml -5d2394c351034dbe321e2c1fc675bd412c945a96aaf98744da20df4db5da97b3,1,1,Game.co.uk.xml -7158c5bcacd6950697d7ec03547f7999be952c2c78930ba8fddeded77b21dd41,1,1,Gamedesire.net.xml -34f8f5a92ee97baf0e3c14603fa42b65b89edb99a8e71c61877a933811035f4b,1,1,GameDev.net.xml -50b51796c6055164842ac1fa529a7b14639706c79e2584105d9a92a67b1909cc,1,1,Gamefactory.jp.xml -5a2974ac3dc84a75ac73ae293a3b2fed397e86f2e10ebac2232dbf7f8d6cefa6,1,1,Game-Link.xml -7c239da3e17615d3847684526a666c43ecc45d00ec0d922fd8c276e75485cb3a,1,1,Gameological_Society.xml -5e479c67a14059e5d1d97d5c0dfa59efd46a91a731b7fa156731be0b1f9b06ab,1,1,Gamersfirst.com.xml -b0970ea869ec00e4718fa90a2a83ba04a7877bf8b52dcd5798a7f58cb2fd4e67,1,1,GAME.se.xml -667e1dc0c30d315405ee461f5ef8415d252d22ac2a0674749fd84efecd428ec4,1,1,GamesPlanet.xml -6f6cf432642fe736b53e82043cd39e73b357ebfc0c1e56f25f6dc5bdb8cd1c2d,1,1,GameSports.net.xml -fc8c498d4641ec3c24d70d9e08de3aff687bcaa52b86b11465f35ff4d98a752a,1,1,Gamestar.de.xml -e0b42ca86b5ce5b047eafad5b2a5ede003807cbd4ce714d4fcfd6e726a137cb7,1,1,Gamestar_Mechanic.xml -1e341b904fe0b5cceca6e60c9dda8e5bf6176385500f02536c1d357f46582cde,1,1,Gameswelt.de.xml -2e4e279474f5425e00e989364664bb0065d82f8572c7aab925af6acb81598124,1,1,Gamezebo.xml -144f6fd0feafac80e8f5909a2969f4596bd91962ab8ac100039251aa7958800c,1,1,GammaE.com.xml -1eb278798f56604f692dea5fbe8917b81ab01689aa20ab5fb1e11a023133a7bd,1,1,Gamma-Group.xml -55b963ad5dc37f51b3f44349f71a65a0ff8fdcd825696a3fdb523de04f07800a,1,1,Gamona.de.xml -103d37085ac007289fd3fb7c8ef69f2e633859ccfb5932f2645b9cb97d80cf6f,1,1,Gandi.xml -93bc359d6f9d0478d67854100f77ebe978ea0cd1d999bbd6f92909ae5c1be985,1,1,GannettLocal.xml -23187a364fc5ff792f8230919ea4465bf81bad7ce4853d3763ca3409f84c0a40,1,1,Ganz_eStore.com.xml -e9f2e38ec1fb1d6f1b8a54859224c133f1894191f2cfabff31bee6d291015f7b,1,1,Garcinia_Cambogia_VitalMend.com.xml -582d363d86dd082f505cd33e48adb4388a272dcb551214561cb2ffc7e5e019dd,1,1,Garfield.com.xml -d2fdc25ec99cef2f09aa4809136069ee5a84ebf3de4f20bb85269519c986e759,1,1,garmin.xml -b9ebf0a146004ac18c81f619f24d6b3f454cd13df58b06d4f7550b7db640da5b,1,1,Gasngrills.com.xml -e6a4a17a6665eb72db10d9905ad5475825d50ac502a35fdf92cd1fbe9cff6080,1,1,Gate-Crashing-Org.xml -77d0072c08ac8a2b284de4354a9d9da5d9e3fbd2dd97532fa85c51680c813d5c,1,1,Gatwick_Airport.xml -39271dcd3674b5f0184a48b9095ce89a149b959b710f0ccfc9feb8adf188b53f,1,1,gazellegames.xml -01dd4393224a66543bacb8f0726ab93591766c1ed3f4921fed6d765eae2cf957,1,1,GCM_Asia.com.xml -65b83419032ba39a2c89877111185565f097815b77f52f268053e37202f5e1bb,1,1,GCM_Computers.com.xml -c325bbe3f25bde17054d2c65f66528221f834628788ba7c6f8275260b5294347,1,1,Gearhog.xml -69d5ff2c7a7f2db9f9313660376af60b1182b2bd785f419099fea84dbd038841,1,1,Gearman.xml -b396d84d47920b51519acf37df6c793a4b1f3dfc5e1a5c2bd9b0c4bd816aad88,1,1,Geekheim.de.xml -728fb4f9ce640ccfa9000852552ed488b4bb4f00758b43c9d90ac8c474fbcbfb,1,1,Gemalto.com-problematic.xml -ef42dcaec37676c59c30cdec3be63707681e45be25541e713cd6e97f789b4110,1,1,General-Electric.xml -5e9735358e430be7ca580e25f15abc4ae009014e2c25b12d014875d4c88823b0,1,1,General-Logistics-Systems.xml -82a575bfdd7c91f460c75b2c61c90f9b145af743bb17a462df5388d6ff93a9d9,1,1,Gentooexperimental.org.xml -86546485aaae8490c07d2883acc6b6faea7b60287b50d5bee9714ee09b58cccb,1,1,George-Washington-University.xml -4f6ab02ae157e0b06bc684c9d0435c37db9cd3394ae2f2a18316a20504c1784e,1,1,Georgia_Innocence_Project.xml -4d79304666585147b312bcf93055bc3ead6be951fa764d4a8cc7133ea8ea23a3,1,1,GeoTrust.net.xml -01c4e4e7cac20786d6c0766a316f697d99264d8970118841c77b3795d91d03e7,1,1,Geotrust.xml -58e11b68a50b95d26b82a7357492301b8f0b0b6e3ed344191d15be43b0705aaf,1,1,GesellschaftInformatik.xml -1b61febe205080abab3d2a57260fdd3e769e350446fd52d6e05a9b6de21d0cc4,1,1,Get_Chef.com.xml -5832e8eb6587f76dab2b5c1757c83dd84685b6abbbda41e2908c18b0ece70541,1,1,GetChute.xml -c0f3f31c0b90e1f5915a5700a29f250f34cb67060b0c8a32ca50c2f5c23c30d8,1,1,Getclicky.xml -4cbecbcb6231060cbbb5c37e41e69291b60e45a245e6813cb5f5894de780af11,1,1,GetGlue.xml -94366f38ea5c1910166134df0df239e157918cbfd3c116aae7466e0d14d0af6a,1,1,GetHarvest.com.xml -60f24d3087fa3342353b77b0c57ee7af994613a5847772ee5047821942d71867,1,1,Get.It.xml -75d53fa18eb90fc7dd30fd5b0f83ce1fd6136d75b1d48092471246fadc4b77ef,1,1,Get_Out_of_Debt_Guy.xml -891d1d363a201a5ab4fb62d66ae2bb433afe5872077fd6c6ab2e7e8743cdc40c,1,1,GetResponse.com.xml -e4598f2d48c999eb9654f64f816dd4fdbd3d8d3d34c5d19ec9a1ec4cc38547d6,1,1,Getty.edu.xml -0fb55d7287f0b5cfb00da481f08e4256440628e21148a2b6ddb7bdf289851fe3,1,1,Gfycat.com.xml -24308c8be6b9bbf2352a730a671d50efe03ef6ea64d95d5a4eac0853fb475e03,1,1,Ghostery_metrics_optout.xml -0cbce2a2dbac106dd1a14e59d66718302f84ad11e31984fac40b868dc6e0e3cb,1,1,Giant_Bomb.com.xml -7f450193bc41aecb3d4195c6d508a1054b28eb14996324201d0928c37b7702d4,1,1,GiBlod.xml -682fb5bd1da5ede92efb99ab0044896bfdeed95c4a03ad363f48344f6c992f52,1,1,Gif_Gratis.net.xml -fd005c94136bf38d49cb6c2e54e2d1eb3a1dcc47b14839e428c31a4e8fee16ad,1,1,Giganews.xml -86c47ee6acd7d42f4d3b79f022fe87ec83664f907aeb7ee8019720b6de503d82,1,1,Gigaone.pl.xml -9ebfc4ca148d7fac8a1b0ef4ddfc5b4db6d5f3eb2c107a41cdbc7011f2adb38e,1,1,Gigaserver.xml -f5298b32c824990297a18e92474c36a5d1b344ce7951b529a48dd0d6c2a9e620,1,1,GigeNET_Cloud.com.xml -4b1822e0ac6c48b546b94bb1f881d96cf99a99483be57b9b7961ed763a8d7dac,1,1,Gimme_Bar.com.xml -f7bdaf4a797376040d08fb18652d7cf0eedb8ba7906904146eb43b8a358aa5d5,1,1,GIMP-foo.xml -f95cfc85dc3b53b7a6d7b57d5cd9edd4c8d182f6cad0e01ab11852c9a00eab12,1,1,Girl_Scouts.xml -588a29126f6b94d66070f4e1d010d332103547a6152a14298f60bc70fa6affe0,1,1,Gitian.org.xml -34bb65e5d23c5f437a4b9a09e1b68de6c4f8594ff790bdc3da3aa5824fc3c7c3,1,1,Givex.xml -1d543c058797c2143e84af0016b439cef391b95b81a938a27400534400e3fc5e,1,1,GivingComfort.org.xml -f49d704113de8fc2527e4e3437a86452ffd6ed5cbc7cb7c86dbf5b71ad0c410d,1,1,GKG.xml -f50ebd3a34125fef5ca47a05f7ce669d983674ffa00b98dd2a8fcd3969be961f,1,1,Glass-Craft-and-Bead-Expo.xml -8ad6099290fb1fa778998f6c707cfcdaf0681c6a07c964867431415a2d46d1bb,1,1,Glassesusa.com.xml -95a74062ba4e09f63bb9b7ef41f2e6c396df553b152a9649850fbab0d8858d41,1,1,Gleam.xml -572d0de4d8b362be17bd90ecd945334527b3b535e36fa1e530b162ea72260f03,1,1,GlenScott.xml -ed076293b391e63d4e03d8e9d6de8bc45e2e968273c10131468eacee40f1d08e,1,1,Glerups.xml -745c86661e057217d3f6d9001632956d24085b474525744996044b02aaecade4,1,1,GlitterBank.xml -62ff647435cf107babf8141e1e2485421e9ea637ce83c4ca37df8e4c01348f58,1,1,Global-Footprint-Network.xml -2048765e5d20395f03f87f9fab3ec0691426edc106b94970fe052f1a7cb74e9a,1,1,Globaloneteam.com.xml -c981f13996ea1f82d0e1b1ad8438abae72665035de51891c547bcdb166706a48,1,1,Global_Policy_Forum.xml -be8c815a9a7c2029433fc542255094e8083842c1ee37ab849f2a399393506241,1,1,Global_Promote.xml -9d52779a7ad32bbc7d21c65769ad99e06b140befa1bc3c5745d92342b2fc66ea,1,1,GlobalSign.xml -9748c65731f2a7d743857a8aca5c1cc2b32d6b0f7f32e8878b0cf3cd1a14f88e,1,1,Global_Voices_Online.org.xml -7d2e6006adfce76933fce345d6c6893823a6634842ff7024a04c29a2dc79cb84,1,1,Global-Witness.xml -97021a8f2b88b3a351c8a6e37f2303c36ce1a72da7a269339866eb98aa2e6976,1,1,Globat.xml -d49e30f2c00924aabd9c758a174206c2911c5d6526321d55a15a3dde3a82c6b4,1,1,Globes.xml -fc66734c10315eb8eb4798444882b4938f7c7fe3d2dcae423cccfed793db076b,1,1,Globetrotter.xml -2d10f93102421e8f086578d791385e4a63a85e916207b953e61b2e520f2112d5,1,1,Globus.xml -a60ee162f229a3e6c74c5ea4ef7ddd12c1b4a55959de210540cd749cdeadb5a9,1,1,Glose.com.xml -a7560b209af91022474e97ccb8ce8778b611953fd744957f67c8a39339b21d6b,1,1,Gmedianetworks.com.xml -06dbc3577073e0c75700c48d78f46df7f433aae53f2923c96f209393384a849d,1,1,GND-Tech.com-problematic.xml -8ece7b9a55dcc63fa7784890ada48016392aca3f34f12086284dc2dbbdd0e50f,1,1,GND-Tech.com.xml -f2dd726fcddd931e373745c28ddd66625748b26773ff8a2dae8b22d683a943f2,1,1,Gngr.info.xml -cb7a292994a2fc87f1440d181779f6301b3483c21e5df5c3d7e9ffaaff78770c,1,1,GNOME.xml -5ddfa3a482674b780d4e0cd81e3ba0264703fe2b42c797a132127a132df0f974,1,1,Gnumeric.org.xml -25d4ef946d891943dc472eedd8411e05c4ba679047a1b058f9aac1c2611d0cd9,1,1,GoAruna.com.xml -d71b4a621557b40535fbc3c3d25ac92b0529a901b82e9ae46bcd939451ba9f97,1,1,GO.com.xml -2068a02a2b3b51a21608c19c1ee92aa9eb7e18f7a1ce54012ea0ce9a804ebd18,1,1,Godville.xml -8035e4afba24967890b6a797e732159e2a135c28742d91b63f4ee5760fc980dc,1,1,GogoTraining.com.xml -4340d4bdff3b3f5c967e99c6fba0f0af2ae0bba97a64fa1c679b32212e9a2ea0,1,1,Golden_Charter.xml -93c3b6f14b69a930a2832e96f694fbfae9974bbbad6cfc5a84b6b1bbd8acfbf4,1,1,Goldstar.xml -9224e11b4b259be1d60b4d65c3903a9b2fe7403753ce0b1a540bc526cdb8e21c,1,1,Golf_Course_Industry.xml -7fc9cf927c9b92789e3d57fde87b70aaf938b68e6b71adf4319411e2af1c67f5,1,1,Goodsearch.xml -15978441266dd096660c76ca7a3ae00ebb72a97e301675c327771befc5a41329,1,1,Goodsie.xml -0f581d6d08297cd957d86de6c5124172e47bb995a73d67b86c2bc6bbf362e147,1,1,GoogleShopping.xml -b6f212028d6d4c769e74c2a583a04e9387edf79312d44599a8e9a699554f6f20,1,1,Gotmerchant.com.xml -8c2e217fca6c4f32665fceb124225f04edc9b8c01a403aedafd871a33c9d79ce,1,1,Gotraffic.net.xml -dbc8f2862e1855fd07a89a7d842b4ff03b2a93340d912a1f321e8a2c9a0840a8,1,1,GO_Transit.xml -73cc7eb8fa700154372dbc586aaa1adc8d0c0b86d17f2efcc14b7e9843a09004,1,1,Got_Vape.net.xml -b2ee2374e3bdc3d03f5d60bd4b00bec95592a38b54a32a8b3097d1ec6cf1c86b,1,1,GourmetGiftBaskets.com.xml -38ea979b7f650765d00622f7919e2589f093c8f0df62b005e1ee37f97e821289,1,1,Government-Security-News.xml -55cd355a1694948faa18e0ba95ecd806c09e24f6f5c508e3531cfb325e0c9bff,1,1,GPShopper.com.xml -b4936c9408ab836adc37b0b41551860a35d85bd2adb24c2df60cc8fc04084e55,1,1,Grab_Media.xml -678744c40c10d6ec38ac024bf0192ace16031aadd1ae00c7211b7849dc5f347e,1,1,GrainsResearchandDevelopmentCorporation.xml -62d6fd8c8d78b6e35e64bb8b0ddd88c5f0b6035ba1e85cd8eaa5453f3fdac189,1,1,Grand_Haven_Tribune.xml -065179c1c3119c7b9d88af7d6417f466b7425c44f7c57342d7ea194e0e525f58,1,1,Grand-Rapids-Community-Media-Center.xml -adce25fe2ad3aaf12d9c15ea4ea6d9cdc060c1c52203c24c4a119f5c27e8c1f7,1,1,Gran-Turismo.com.xml -550ef3aa7ffbe264d4332ddf83af288e7c256d5f50b78437399e99284f10ac04,1,1,Gravatar.xml -b7d75abaa69773098bd0b108a48aa4cbde2c00a211bacca52b107728f4230fcd,1,1,Grays-of-Westminster.xml -6320c8a92fc89f7e04d91bd84a2570081ff7ac69ed87e0b5d3ce0055c3361b3c,1,1,Greasy_Fork.org.xml -5d4a68e7545b8b8ba332993dd8037ec5b209a8161119678a32f53acd29d6a308,1,1,Greek-gov.xml -4704688d2ca0cc44223acee755d34638495c889ca6c50e3098929a8c6f43bba4,1,1,Green_Coffee_Bean_Extract.xml -4dbffe95dbe3bcac36a1f92d4c558b5cb27df8bb6829b5adf9e88243c37dff03,1,1,Greenhouse.io.xml -054ef9c8b5459c29b97998aba9220474e3af78bb8af72316267560fea5174ef3,1,1,Greenmangaming.com.xml -82b3a86e904a8ceaf5bae610a3aa874bdaccc10c41fddc17ba98b149ba5b81b6,1,1,GreenSky_Credit.com.xml -a9e10490d967e86ac3379e2d723ad74c92c56837d53b17ff8f3fce95fbedb54a,1,1,GreenVehicleGuide.xml -4988b2fe799481ffac172ac384a3951b46cf89ceda1461bf82522f468dcf566e,1,1,Grenet.fr.xml -3731fa19d8594d24051338a42479234617fcde26ee7900431c44abd0e5d29a4d,1,1,Grenoble-INP.fr.xml -8e5ac9f85e472256086de913fe76439daf56ebcdf56418b5b6d8e5013a8ffff4,1,1,Greystripe.com.xml -8e8b79cf7d6c3f2acf22e21b728cc0f78791bc8274525d47225616c33d9107e0,1,1,Grid5000.fr.xml -d4175595dc00218a8048ff58a11207b773ac952be4f83ecfc2a71c4f271f4449,1,1,Gridz_Direct.com-falsemixed.xml -380b97ad0539289d89ce6c6ca4197f769676017bd7f3caeeb46756f681722888,1,1,Griffith-University.xml -27c88630b6d62594c136ef9f63a2143cd45bdc4ea31ea8f01123f8c228095076,1,1,Grinnell_College.xml -d1857ccfe2226d57004bc300c14230b337e7c84e7f38465e80fb6cfb56a8ac5f,1,1,Grnh.se.xml -71f3030e11d49c8922e89dea8d5a86e94e94c45203a8e8017120588f415653bb,1,1,Grocery_Server.com.xml -68b3f815d64c7aea3a15a66b4b7cc6cb3a939652049f0f19acdfcaafd922e8fe,1,1,Grok_Learning.com.xml -d748494d96923aadd849f3a42805350a89e64afb6226bc9e9fac55e6843aa41a,1,1,Grok.org.uk.xml -74dacf9c6deb57c2ac63a558663b07ae4ea5152b4e47422ac0d63501bb773b7e,1,1,Grooveshark.xml -a8b1628ee32a4766ea4eadb5e04bd361ead28c4d17753bab06f341eb7e0edde4,1,1,Groton.org.xml -37102eaee8fe084f69ddb6c5e2c752055312bdbdc57c4a68e12f0d7be7dd2007,1,1,Growery.xml -1167fd0b3a0a006633e2593b352ae55057fdeef558d5dd32a06e3c1b3b1a72af,1,1,Grupo_Avante.org.xml -a06c8510285353ee578bd10abfa9d0972ed9a2fe1f7932226a8a15a9b16a148e,1,1,Gsfacket.se.xml -29ce8f2ba724f8ce41e8c4316e1e9cc5437b25cebc95dd82b9667fade11f988b,1,1,Gsfn.us.xml -c62d6371f4dc10505beb0234bc024183b8456e967f25891142a4530355aba060,1,1,GS-media.de.xml -6637d47a74a578146d45ff4f7aa375670d1aea3d1e41ed9a5e90284da437812d,1,1,GSU.edu-falsemixed.xml -b9f0211b9e4197c02fe47ee764b9b4974a5521bda177a11ad18e7735147d74eb,1,1,GSU.edu.xml -2658ea2070b54f5a51b5fed1141337e3b434ac2f1565884145c41b83c8ac6d15,1,1,GUADEC.org.xml -6a3b251fdf1a2490d919bcf5f7cfca9f1e6209377d4b80a465ce522aaf3d4924,1,1,Guild-Wars-2.xml -730f3be729ff7c486bdad43a81375d641a93c7797150adb011b3aa43df473a0d,1,1,Guillaume_Dargauds_website.xml -84ad063edceb9a5b03e75e51cadb61d4d44818e08c2e0f967f69f21ef00ccfb1,1,1,gulli.com.xml -5f934b80b6285199332c225529e178243ce8f42b686e6ad724e16d4e48e8a737,1,1,GumGum.xml -9a1c88487ac553a0ac6b74b85c6d82db5e814c2e987215f9353daa376bd205c6,1,1,guru.de.xml -40529df786129410215b79b65aa06ca2e9d73f511230e2061a9c62171b3cc828,1,1,GU.se.xml -da0a114db426909ff41443bd33c9bb16928a81fc773ee7ccf055ad2a35c4f289,1,1,Gust.xml -d90184f044c53a3c1af300fc8dc5c916c34442f92018d8d39b12d633dd11ac95,1,1,GVNTube.com.xml -446706633446212d732f78519adf6f3b7357b4a6a247177658282b20341266e4,1,1,GymGlish-problematic.xml -bcfa6069055337c1d8570e9a412d63b81ed2928900a95b3d6cd2158d064125f1,1,1,GymGlish.xml -97be7c786a1fd1ce3a623ebf663939df65cc5ba627755d585ca2047f94706d83,1,1,Gynecomastia.org.xml -d97fb94656263a08627931829f3707297aaad16a2780d7efbc08d9a0e240af5f,1,1,Habbo.fi.xml -d7b6807ee522750ae1bbe76d34778ca96cdde6c0e787ffe2fe55c1c15bfb0815,1,1,Haber-Vision.xml -2c5113900af326371e6218fd0f3680ae52d06706fa3a84695c91a325ef4d4cda,1,1,Hackerschool.xml -922b403278bc9ae839f646bd231dd9ab11950ec5744da127a5e185b3eb1c20c6,1,1,Hackpad.xml -7e463880670a9bd41e514199bc309e477beb8cd3771cbf8010fe76abacfd1dc5,1,1,Hail_Storm_Products.xml -1924ec4bfed703ae6d9f204ee259018be5b50a2d271943f358aa5c3349244c3b,1,1,Halcyon.sh.xml -7d8606707ee04231db6b0d4851ab973945fabaa28907734507adcacff32f6095,1,1,Halebop.se.xml -dac5301bebe14f1ee9837b4c5a6625f8cac9103160009bb80208d40085a88c16,1,1,Halifax.xml -b8507465e299f79966cb1ef61f87ebc0cf5b63917b2c2fc03ac4a4382442b170,1,1,Hamburg.de.xml -f6db5eb6d184772ca7b3555d4e88f0a3432ec670229ff8901d31ea9fd4ec977d,1,1,Hammacher-Schlemmer.xml -4d0eaa91de4e6754869abdf15c274f35381f5bf1afe0e9fc9052bf4104b34cf0,1,1,Ham_Radio_Science.com.xml -c4c6765b82c3995fe1018d07d514748b3b1dc77463bd7f9745d4f81c89729b7f,1,1,Handmade_Kultur.de.xml -a8183b3aee9c2ef8f331f6d2b4a65f99819fec523ff1df7d10cb69ed6fd7c746,1,1,Handsome_Code.com.xml -971d2e3a417a2054d72f3c1fc7282cde9352fc682a4d49a41928eb88e1467e4f,1,1,Handy.de.xml -753c5f07724c79eba8674a18275bf2d6f1a1fdbde5a71f865a7a80645d499116,1,1,Happy_Herbivore.xml -8441e121fa0b1a4dfa04637d171576101ded23f18b74fc11a216f0c01de33396,1,1,HappyKnowledge.com.xml -debedb50a821f682f91abdac63c0447b6305961e155d72cc7561e619edc6d631,1,1,Harakahdaily.xml -0b7c9ea36c20bcc97958b4e3d5f6937282a35e3029bea14e6dc4fb95b3c17e25,1,1,Hardcore_Teen_Girls.xml -e6f358268ccbfa9123abd3a38088ea30874f0fc2f7d577d6729117981c403c3b,1,1,Hardwarebug.xml -b0521ede04b3bf030717540eeaf92d05c2703e7827b4e6c13ad3bb1bc9a8e6ee,1,1,Harrenmedianetwork.com.xml -3d5842731a487972a519115c3260dc2b4838f09cd953ee97f3d9dab894d43dcb,1,1,Harris_Computer.com.xml -823328b9852e38e419409f87311e8668db8251801142129abef06255baba27b5,1,1,Harry_S_Truman_Library_and_Museum.xml -505d60b13e875fdd048b723626fdf6300aee546214393e7ce37fa0968347042f,1,1,Hartware.de.xml -8b3b39548a574362f6fa90a57f2e6fcb9e585e64db92f95a8640187d84cb0f8c,1,1,Harvard_Pilgrim.org.xml -db16d5037c30da9f3b7dcdc63eae06752d0a06a2f0cb2d1c16100e634db2a5b7,1,1,HasGeek.xml -677a1f137cbdb70fa32b83ca65b999f9929d5401dfa18e5e0f57c289c449ca38,1,1,Haskell_on_Heroku.com.xml -d2511be1cda9cbf6be4203a788894e4a93801db76e92258e934e735e33ea9321,1,1,HawaiianAirlines.xml -94f56f0adcdb0437f486e311033927f8128063b2cbe202c4defa9333737078b1,1,1,Hawaii.gov.xml -37deaa55d5be92cf8e3f10a97c37edcf40589a9594ce3a31421ff3c64b3935b4,1,1,Hawk_Host.com.xml -d02b9ca4b8f807d3f24f0eceae12d51666e54d27aec59634d864e8688ff2a3b7,1,1,Haymarket-problematic.xml -91b3754246b2ff5c88384e896821ce88296d8f74697318b18f887098697b16e5,1,1,Haymarket.xml -6d84cebb0dffacc3bde4983ddde87908ad55943ab10d1cc7f7e5c22668a57d02,1,1,Hayward-Pool.com.xml -e01dc2b5f4d3693d2b5ec33bdf24ab3a7add5d8d62d2341abdde9e708f5ce184,1,1,HBAnet.org.xml -9456c5769b41740b51d29d79ec0b1e582a23ecc327232bbee0086f254aea028f,1,1,HBR.org.xml -f005b3dc25d33b4f6e9f81663009e2a3a5f8e8c16e11628324086505e21f3df0,1,1,HD.se.xml -e39afe9b411cec0818458e2d52372024de04dc51e35c413c684fdd3f844de39b,1,1,HDtracks.com.xml -61d945675826d17553f5ccdf9d264fed2912f0b70a558a36423557347c705996,1,1,Head-Fi.org.xml -1749f4a98057b2e57d28d985e48fe72cd45b44843ce3758aab64d8280bfd18af,1,1,HealthdirectAustralia.xml -591930da4df33140beeaa02531b0b95e5f5dd8dd20879f314626f0eb2b187eae,1,1,Healths.Biz.xml -027a9751e649f8410d3ed6a10f065f47566cc15ac1b3cf41915f722fb96baaca,1,1,Healthy_for_Kids.xml -8503ffb52883c3604614abcd5f79c8065e8f0185be9c96f4b4818bb2b3a0c2fa,1,1,Hearst-Corporation-self-signed.xml -5a7c989104fae6ba6f4ee2a80242fab2e700357e5136b4e2f3bb235c6455faf5,1,1,Heartbleed.com.xml -c1cc9b6e62885034af2391d2c9fd1ae947c8df96feb07b5d0d012eb831aa51c7,1,1,Heart.org.xml -f7ab68445fb6322ae964599736bfb01dc4ca5aa89e066ef42eccad9d7f2cb405,1,1,Heathkit.com.xml -026cd04456aea4af34b367acf735ad02d1e082aac1b4331c7d36f39414e04816,1,1,Heckrath.net.xml -e30b40a4583d3ff634b1e242b3b81796878d5004302f63504b634201276effb7,1,1,Hegerys.com.xml -850538c50d5677b9ea5810e1a86e65c87319f6c95a4480a1e138cbc936110e63,1,1,Heimdal_Security.com.xml -059abf3bab5da8864156e2a51023dea533f1e8b9b9e5fa62a02059c1c2212838,1,1,Helmet.fi.xml -d242b4846eb0d61eb9e9d0e22ccb607616353391445d8f19e729ba9fe142a20e,1,1,Helsingin-Sanomat.xml -820014421008b3ca657f912ac23f3adbdad002254ff6c94d5004483405ae083f,1,1,Hemmingway-Marketing.xml -8291b5a137d3ec0d772b70f8d45a726e19b73dcc871494c813b61d0440886a7e,1,1,Herdict.xml -318b7e6abafca56f6da79d8a9ce95a100c80db8855cb843196da79cddb92dca1,1,1,Heritage.org.xml -5ba0b899976f3686cd3a508ace91e9a51da08e52e04616f34f597d42ded4f3f8,1,1,Heroku.xml -176b9d11a836aa1b104cbe634bc39bf5811b2dbdc744b0087f63e1dd12f2d59a,1,1,Hesecure.com.xml -95365d0076da114c98b41049f775b4e36a52bf8297842da9d533802ef3317761,1,1,Heteml.jp.xml -06b2349b5143a8ccdb78b8aab23ca394d673ac71c011f3125393bb4cdf0043db,1,1,Hewlett-Packard.xml -f8c20c76eb24ec2b01bc17da6b72127d6814087d7935290b9744802b6622c490,1,1,Hexonet.xml -0ecd9594e7b04bdb9476ff3489d64735901f9230617b1d0bc8cbf0b0743ae62c,1,1,HH.se.xml -87d4a09cda0461698482ef8c7ca7d5fd56427dad34c3e5064e2fd8273ad76444,1,1,Hideman.net.xml -4307221f40a691dd191221761ecca21f6ef5956badce47258674d0cc030e453a,1,1,HideMe.ru.xml -03957e5f43afa58ceb04d8087f2f745efd6d32433273138a933deed973978d8c,1,1,Hidemyass.xml -406fd610e2e705adefb26d72ada5b00607b27dfe683c2256efecea7ba1ed2e21,1,1,Hi-eg.xml -bcf66d61bb11422f0313f5c0e907ed5eb13c1795a7ddc1e5b45d9f37c650d987,1,1,HiFX.xml -0f6d80b71bdb6b5ba97ef737fcebdc8b3563c098949d42580308d141f2f8c8ee,1,1,Higher_Education_Academy.xml -05e977e8f58363375ca230c335f943fa633854166f5025395a57298e500ddbdd,1,1,High-Gear-Media.xml -a4c0e90901e40365b963c4bd9f9564adfc8fbdeca4ca93f800e432425650a798,1,1,HighQ_Solutions.xml -4ad8e5f237288fc4d5a78feb97decdf3eb8183a4c0e99447ff3ec0867f6baf0a,1,1,Himediadx.com.xml -96c3819b222981bab9612a1959fdf9b0a1437b3362046464cec121bfe80bf3f7,1,1,Hi.nl.xml -54a8154d1276f56854a0c82402b1b10fae0ef6e711b29e3cba368aeef84845d7,1,1,Hipmunk.com-falsemixed.xml -6a011c27d3d1eaa622e81bac1766aefa2ef91699ef6e2c335df418719e2b168b,1,1,HIS.se.xml -8df6659bcdd8ceaadd8bc375d711b533ce8775f61023fab84f4d3b57452540b7,1,1,Hitachi_Data_Systems.xml -36ceba5acc08a983db89a339799ad552d122b296fad56a5c824148a451afac96,1,1,Hitbox.com.xml -9b50ef6b294b53e212946255691cd2cfdc2834c9db03f967e6fa784f58c7c9b6,1,1,HITBSecConf.xml -5472d851c26918ed7c33fce13d72cd9ae5836b6d9c7bab1894bfa3ad7407a118,1,1,Hitfarm.xml -4c48152afafc43474f068a272b78229d1f68611d17adf496ee5e501913d9e5b9,1,1,HJR-Verlag.de.xml -b7c742427b63875bf405b4617943b5e508ccf8ff4761279452ce909a2aad22cb,1,1,HKK.de.xml -3c6aa822dc67f0ffe05acfe4cb0adf96d40482f1f0f1a77e5a92b4d51587b401,1,1,HK_Yanto_Yan.com-falsemixed.xml -d09bb4ef7ae7ddb86f27ef0523b00a1e399bdc19cdaea4c3cb0dd86c6e6afdce,1,1,HK_Yanto_Yan.com.xml -e4008a97cf78027ed767496be5bd7d90e264f985f040b3b0066d03eed6cb6795,1,1,HM.com.xml -290ae39513b4c7e08e040aed3509085f3a64ce1bd767324d0812dc0ceab53c44,1,1,HMV_Japan.xml -ec61c8993dfdcc6bc32b838f8fe5c0901d0526b72d952fb82b0512fcd20b25c8,1,1,HMV.xml -9adfaca1c0c2fa22166e4ac6749d4cfa121293e9945cc576b4530ea2d11a6578,1,1,Hobsons-EMT.xml -f6b2d8963d38550c2dbaf89a83f410d46d2e8a2550e7c10bb6e935323775dda5,1,1,Hochschule-Trier.de.xml -e1d03d0c95cec4c802937de962489538b718726a15f38713c8790ecdc48d1cca,1,1,Hofstra-University.xml -81c4c965a1bf791db9ac979c62acfb953df5eec195f711de7ae5e7edc527d523,1,1,Holder_de_ord.no.xml -7ec36c87846b5db16a99aa4ad1fd3f1eee59259af023073dcf79b143f6166f88,1,1,Holtwick-IT-mismatches.xml -4687215abfb9bc6c7453e403aa1b1a4eeeda7d7c9e82c03588f7581879f01451,1,1,HomeBello.xml -ebf8e31ba2e6ef7d505aede97618ee5b300437f4feabda8e25070eebe97cb015,1,1,Home.ch.xml -84adef685acf6a090177b9d6d465eb2631327c0dd77ee0af9f8b7b203f8cd592,1,1,Home_Depot.com-problematic.xml -7b460dff8a2b02d81df02b9d9ed829deb2dbd3d850c4536babea038ef2968ec4,1,1,Home_Depot.com.xml -338e8194a619447d5b6188ffe7ec92abe2edfdb81aaa618a04cb38f9f63635ac,1,1,Home_Depot_Foundation.org.xml -578f4bb8f6049f8a710575d2cd6745abacdd758fdb9898236fdec1de1eb8435e,1,1,Homeless_Veterans.co.uk-falsemixed.xml -3f057dd8b8a06a13c42c06d9f2dc563f3c2fd9321b4ff7dd14b1a6bacd07041e,1,1,Home.pl.xml -2a749798febdf66cd6ec4ef005ccf4582f6933089a92ace7e8a16076fa0a020e,1,1,Home_Theater_Review.com-falsemixed.xml -df969ad273e8172206d03ca88b4364ccf3e6d2a4845c0cf0af679df21643d1e9,1,1,Home_Theater_Review.com.xml -2a0ae89908e8f949c6d795d70f1c330db51e91027ed35620c29c343d7067ffc6,1,1,Hoover_Institution.xml -8424d16e90d4f392b330a853e9dbba7677c71be3a173955f5f1d593fd5d5afa6,1,1,Hoovers.xml -70f4677430d026b477e7a430053dc7bf0d4f4d0d95960e5a4f83b9e2e32c744c,1,1,Host1Plus.xml -a7d318cbb441e2384b33258ece2d59873ff32386decf70e7eb8fb4ac40a89582,1,1,Hosting_Catalog.com.xml -f9324749f745dd11d192d3e1b9664f2ca11636d60a9fc0ec77e1f821f39b432b,1,1,Hostmonster.xml -2e4cb405f959ac23593b4e74d9cb27896899f247ababaec1ab5323c650b6672e,1,1,Hostname.sk.xml -36d5ba333745b2e704da19cee47aef04a75f6ffc6d869b094ab9ea9de788882f,1,1,Hostoople.com-falsemixed.xml -dc77c34327b9b7f4f9025979118a7649a7d358c097fe0735f150c7fc10731150,1,1,Hostoople.com.xml -59fa747d9b4e4193ed6c71b6d587080b6f58f4f358dbbc8441b8b8e12f306441,1,1,Hostpoint.xml -dd7ca93d6e9bd777586b13f43b20d837677ceee67a53fdd3bcedc29992e4d69e,1,1,Hotels.com.xml -ba606d852d44b45b686192d5faf1d6d47b935eb9de4f3db700394ebd4d007fc4,1,1,Hot_Pics_Amateur.xml -9c1476579412c0284374e2d88df92e8d31abb324d4ee0da9bf9c6880456e67f7,1,1,Hotspot_Shield.xml -e4a46639d7beec7cf0fc2e372e4bb6286cb79834070624677c3434e08ec078eb,1,1,Hotwire.xml -923d1f3fa8f532d8228ddbf2ac64704a3bb0d1b08c4431fbf571d5f82f5d638d,1,1,HousingWire.com.xml -d98c0ee29a753a02120dbdd28356de3914c2c8f3992923f88ca1394ed4c5f334,1,1,Houston_Chronicle.xml -6ae286f9afa43e27fd2c608527700be6e642ddde20ed68a20bd24dfabbe94b9a,1,1,Howard-Hughes-Medical-Institute.xml -9b57e440a7b05ee8d3f5f193822fa7a974b0a51ccded8cef584c5f32a17b1c27,1,1,HRsmart.xml -4c5e2eba3bedd089bb299e83c0f11327b85e5451f2a07bfa71c4db0eecf5a6f9,1,1,HSLDA.xml -7f13d4cfcf7921db9ec456cb6a9a6c174e3e9efb66a719c6f492ca528f33bf7d,1,1,HTWG-Konstanz.xml -7675be92f18029bde9ffa5c6455abe5fb26b26d724c706900c67fe3e4f5addf3,1,1,Hudson_Valley_Host.xml -8744914eb7423869e8752433db598165b3819fc2d8dc2c8c44ee9d2e05b86e33,1,1,Huggies_Australia.xml -160cf059aeeb642add9c979040f1b60282a01c9ee49234f64bd25ed4611583aa,1,1,HUK.de.xml -02c47b91875530c35cdf6a3ae4ec6ec7e564d4c42a07d56a2858bbaa584cbadc,1,1,Human_Brain_Project.eu.xml -705887bb125e1d3169f3af3c21c199a7d457e5a565cf07d84c8548a004de775c,1,1,HumanityPlus.xml -ffa9a50df3e8b93b0681cd903f99fceba361d148f82059e0368c5a98a688dad8,1,1,Human_Rights_First.org.xml -f4cba9f41630d995898e6d7e2f9bde4f1ac0749caca9010f908791291ec6d9e6,1,1,Hungerhost.xml -d5941cb936529f6bd1583b960c7c9f7f835459e9b42badfb375ced48f5b49121,1,1,Hunt-Calendars.xml -9aad6b65738ba739b982d72c304a22fcc0e8254bcbce14ab856661d924cb71d6,1,1,HurricaneElectric.xml -78903fa514f3e5acc5eaf443ed730aedc8b7b48475d9d242207c511c9339088d,1,1,Hush-Hush.xml -de35825a599f7eff6a0370d206060dd404230101a25680fb4067a455e12edbc9,1,1,Huxo.co.uk.xml -d83b73a4f1df2cf8b81e8c222d8d39221478c28110af0842594d334255fbe89d,1,1,Hwbot.org.xml -b3fb86457543caab9db45f0263c9bd50f8de87f2a9421dd719bfc721945af8de,1,1,HypeMachine.xml -dbb782ebee6eff8bdb35faa1bf5ed396d62ff117785f233ff4f9a43fe8e82f93,1,1,Hyperspin.xml -d1ce4cb3920072732c5a48dda38f99c8357a8b8c66727a3b5baae0684c221a26,1,1,Hypovereinsbank.de.xml -dfadf4528befbe4cba8fcc5c48c02e3fd9cbf1eb5fc3ac1df29565b7c354156c,1,1,I0.cz.xml -f386a523e2c4090d14277e5294549f0102bd2472fd1e3bd5f41e58f0da419044,1,1,I3D.net.xml -10e86406fd84b296bf96444a468a014069123807a581d9bc92024399217a2c5a,1,1,Iamnoone-solutions.net.xml -19d2a3966c72e839a751216da45faf724428bde681a072c0f51f9459c6fff488,1,1,IAmplify.xml -efe61764f8dfb9aaa617c1e56fcfef173f66aa12328bb32d162bef6d65f12348,1,1,IAnonym.com.xml -12dd09f738536bb610520204428f8dfad72606849a2fccbc5426a4e49351b869,1,1,IATS_Payments.com.xml -28e92d0f1eb8f22fe94358c90cddc63ab32477d3f78417bd8b00044c1fb6ee2c,1,1,Iberdrola.xml -ac0621a1e5041931a4d12fb76ce18b197572fde889f5f4571d66a9fc0bc88ec2,1,1,ICANN.org-falsemixed.xml -9bfeb0f4626ecc145fff2cd4a6d53ca946f9dce504f7b35536dfd309452ff059,1,1,ICANN.xml -b8d9ced232caa9d566ece3108bcbb4e5c6301a0d51bc5866808654daa97cec7d,1,1,ICA.se.xml -fe325b23952ec7e09b587789fd43b8e53cd0628490cb90fc2e4bdbaea5ee93c9,1,1,Icculus.xml -e158dbc2b1b6f24c03e24e1418e3c388738c260ff02efc428b534caf1185fae1,1,1,ICIMS.com.xml -8eb5fbb7eb669ae647a904a46c21fe7e589074429adee993367baf4fa1932feb,1,1,Icinga.xml -d44de59e34457e8ca6ea85aef7ac9db366d5bf1f0f174e5089aad9fb97ef6407,1,1,IClick_Interactive.xml -0874c6fcbfbd986ae122b4156e7fc703bc6355e124debe35361da13211a6e5ac,1,1,Ic-live.com.xml -827a6db7e98321d0d3138c28defabb914f53e4992681735b6cda4f11ac487edc,1,1,ICMail.xml -f18922a305bc3be951a93339bd0045ab5ca5b9741009636154eea681291cfcee,1,1,ICommons.xml -459c2616c37ab24f3cb76f67f308f3e275f69c7f57af5d4d277720641f62c078,1,1,Icsdelivery.com.xml -af8190dced809fa402e649ba5d285b4bffe9127231f0d0dc0944684cbd4fb41b,1,1,ICUK.xml -01ce71e4cc4fb37d2563eb033d05b04889e3c8838cb8acc1e9c464bfaf632235,1,1,IDC.xml -9cd416d67882d8ca5a6a85768c1e9efe5851c8547886e0a5ef64f3537d9bd5d1,1,1,Idea_Fit.com.xml -047c2947f163b74bcfa7c71e4cbaf7b19e2c4fb951dc2bf975446720dd35fb3d,1,1,Ideas_on_board.com.xml -c627d167a732e4f7d5be8700504dafdb51982d0c1946395225e39f7192b32612,1,1,IDG.com.au.xml -b8fdd5aec575fb68ab15a6cc344b0b93d83918cd454163d28904052daeb85d72,1,1,Idg.de.xml -fafb467f650e2e0a20a747b78eef476182075c7b1a1f3ac23328b70694338dcc,1,1,IDNet.xml -068471ee0af35f0b5f19a2fbce1c23d98772d18b84d8c2f3ca2de29249535c68,1,1,I-Do-Foundation.xml -d1d4a1a3ea9482c160a2ad603b1b14091a638f214e643e08dbff1ade0fa68fd5,1,1,IDRIX.fr-problematic.xml -6d01326453bbd49011ea0a501bbe8006b922f4b4f382d2b956ddbe77496673fe,1,1,IED-Industrieanlagen-und-Engineering.xml -de15c68661a32447ef7f4ac5c4442e5358f2d5ecd18f360d1a11cc32c8e4358b,1,1,iEntry.xml -cb088854b0d354c353d1a9d42563206b86ae3f1bfe59fc44bf13a6d1bfcd11aa,1,1,IET.xml -5fd9cd43e52be1bddc00f80b726ef2e5afbf0044bb925530de86f3a38b4181b7,1,1,Ifortuna.sk.xml -2c16c346ca8f173cd6cf287bdb6cac8b407db5a53ef411c19df56c2962b84f3f,1,1,IFriends.xml -3ee33925a1548b68de89d7d2e4503422e86688f044ff8c5a22e5d96c84b897bc,1,1,Igalia-self-signed.xml -cecfc623698d501d4ea3f8f8c7fcb9b508df260b2ce269f12482e2e17177667c,1,1,IGaming-mismatches.xml -d9e07d3caa2b14f8e52292a4209dbdbcb36c662cdf616f03a0a1de6bca9dd36b,1,1,IGaming.xml -cc39f5caaf462c4141e27247c63b3a0684d4d0cd9441251fb7b1518c33671a07,1,1,IgHome.com.xml -06fa0e873e4bdea3ae9ca0d8ac78f1b8ee1c7785206d7b4cbe4f2b1dabd47abb,1,1,Ignite_Realtime.org.xml -e661e8e3425302863a2ff1dd7df7e88ac787d0c5a965cac6676095b40a25c9e4,1,1,IGN-problematic.xml -78b3f2c3b9ef06aa38e6bb81bf7d3dc39d939c9867b337910fe9128ae6cfd261,1,1,IGoDigital.com.xml -19a10f5af3e7219c9888aaa8159acd278ec023e7570d6369264dd4ac99b05bcc,1,1,Igolder.com.xml -6cfaee980fe03658863de2bbdf930efbcd465989f5a1ee7f18cba58b70d08cb5,1,1,IGrasp.xml -6774ad8f24a5832d8817201ecc506d7d7f408240b32e33df9aa347abc5c0fd43,1,1,IHeart.com.xml -320e3e6dcd6288115acadbe27e811f9cb7acf7e55980fdea21670d81eef77c7f,1,1,IHG_Merlin.com.xml -eb4940331c51de8d5bea8ff74cf37cb4eed6371c5c5145dc58deb822690e151e,1,1,IHG_PLC.com.xml -d551e70ed83e94f2b613016237978dcfeacb473f32cb4910f52a3a1474bcd8da,1,1,iHub_-Nairobi.xml -42580515b98dbccef123e83f48b3be95e513ba6132c7167b7126fb3b3c9a6b3f,1,1,Ihug.xml -33f9b407bc2c2091c62ccb04a9eea01a09f4944124458fb00c299863545b2584,1,1,IiNet.net.au.xml -b4bd3fac40e22f2ccdfa1dc53580558319724a3dcb4f7900de372df7cf166ed6,1,1,IISP.org.xml -0f2fa11910da62cff20887412e60da43b9783f3232f5165975279d0c8164028d,1,1,IJM_Freedom_Maker.xml -804e2810b1654261f05dcf2ea76703b9d25a9fcc8ec5f079e7bc5e33a49bfddd,1,1,IJReview.com-falsemixed.xml -80113e93b37b37a4b5677a3b5f4468ab96198f2e4f1bb6fe82350d086e21e554,1,1,IJReview.com.xml -38abbd9b1ff01b16185ab194feb3c5556e7152da4ece62d6469cb36bff77931e,1,1,I-kiz.de.xml -612862cba9dcba8f259b40677fbb0dc0c970577a2ec8248d7b4b264723701570,1,1,IKK-Suedwest.xml -0cb258aaaa292fb1b5263a5f2a6c20cc8509882d52aa1fd7a3ae16ffd264eaaf,1,1,Illinois_Department_of_Financial_and_Professional_Regulation.xml -305defdaeaa1aeb9ce051ed44aa41c881340f8e1774fe491a4d37027a055c844,1,1,Illuminated_Pots.xml -57701c65a4e54e3947700aa9326b7305c81bc60f028ebe63acf0e3d337d58c06,1,1,ImagesBN.com.xml -4d457c3fd0cfb53e3d9a1079bbaf815dab5490d75536dbaee729b3dc6f4339fe,1,1,Imag.fr.xml -ded349d0e0b6957b6ecb94f4e85ab1dfe7fa03b1a0ed16ba7531ff3b9cda9322,1,1,ImgDino.xml -aa7a719029440b57ae3a2fd4be68f59f2ca9902cf9f3febec8b7a11c818720cb,1,1,Imgflip.com.xml -0c27d12b989107700856764b1fffb8ef0992363f2b56d119d82268f894fc1631,1,1,ImpAct.xml -d63109c1bda717546892ddf2e5b7b43230f77a743589f6003cf2eca75b704f87,1,1,Imperative_Ideas.com.xml -884b3a1019d2f8ca9331c267c118f16b76cda6c73e81e1131867925b4f796b76,1,1,Improper-Bostonian.xml -5c27c83c9d755507bc8866ce4c720ddbb40d121677f02949b5f1504204f4ce60,1,1,Inbox.lv.xml -7c4e3f65b1a1e58939f785bdba4bb2487bfa92c5170529d0fefa377d2ce45779,1,1,Inburke.com.xml -034e99986704d76d7c6fd2ae501a2b425217dff50e15198a4b104177ab674c51,1,1,Inc.com-falsemixed.xml -ee5d005e74a1dbe3fd0401d33e9c45e14eeb64eb544ba268659c58d5fa88183c,1,1,Inc.com.xml -4a7e3a61ba138f9434e831d796dbcdb206b8bf496fdafba51c5ce133302fdb57,1,1,InCloak.com.xml -4f07793724f22d51354cf995ac9f58512230808fbdcfbd964ed035443fd297a4,1,1,Indaba_Music.com.xml -006659bbdcfec962cb0dfd03975d3c2fdb44e8040f54b2a4d4761cde87fec5a9,1,1,Independent_News.xml -08fdfcc35d415a8993d8bcba68b0216bb1343e148d736fbedbf61d6de08ff781,1,1,Independent_Voter_Network.xml -eee5c5f88e318b3229556d8238bfa8045c1ea90aea6e29ac6f28a9e7c2007205,1,1,IndiaMART.xml -c6bb0755884827f0d4922e9721c56eeb37aaa515ba1aafc1ab435e75c5921b3b,1,1,Indianapolis_Star.xml -f7be09e50039754ab05a181f2ad5b773554692b297b5b92027c9494b92e725c4,1,1,Indiana_State_University.xml -0e11558aa800c2b2eaf87fff2fcaa7801f5bcf2b287180b9ddb86cc5df6cd7c9,1,1,Indian_Express.com.xml -76196600f67cde4e2a5a69869eae23ded468e8c8ad6837e111b44ce8104cbff1,1,1,Indiegogo.xml -f0143f1f3ccd7430428b60200c2dac59c21bb5c66c540ecd37c7468bf5a8436b,1,1,IndieMerchstore.xml -c52fdbd3af9fbb35bba313c6057070eb43dbb148646763f82bbfffe9fe643211,1,1,IndieMerch.xml -8f065e04d6bf03937cb8af0c1e8ca08925d3ef8f1b1fb681688cc3d5983cd356,1,1,Induction_Solutions.com-falsemixed.xml -0d4727dd514988748b9ce48c4b407c7b52ca4cf4aaca1d13f867067eae1de9a2,1,1,Induction_Solutions.com.xml -a1ce9990605e725415126826815e72c500118d4f65399b0f9c188af2bb393484,1,1,Infile.xml -69f67c7a6a357cbe15b8e565e6d2afc6b8fc2ba6cd3cfd393c4491b3861fa503,1,1,Infinet.com.au-falsemixed.xml -d351705e0117a8e33adc3e40e369f3a6e85d99b78bc1e1486fe5694a271ecfc2,1,1,Infinet.com.au.xml -e446f7f7550e7d8e69e835298f62d3c09b0b1be1c4482ed2634f177ab8414470,1,1,Infinity_Tracking.xml -6938e47eaedda9b1548fb6fc8efffbb1069f8c9a229b2bd61a97d7da4f5a3804,1,1,InfluAds.xml -80cec67f64924c4aa283209f631550d6181bc868b8762c22b13dd0a9a1aaf5ef,1,1,InfoJobs.net.xml -b9f548ee8e7918ad26faf3926404d6aa68e13dfd092ab8435127ab975dee2f28,1,1,Infolinks.xml -da8b608766efa7524f081cfbb222a2d9ef8be62c279a41ead8d9f487a5a85888,1,1,Infomaniak-Network.xml -dc40563c84a5e37042039080f2cbbf5077c1ca637c1e94434d795cc07fecc0e8,1,1,INFOnline.xml -d293c6a6a4da5508794de746cb7e8854446cad7cf5ee54d75a3ee8c52b180d3b,1,1,Infopackets.xml -f1c3666f04ae859c18c7bde24a595c493cee78f72121a2985a4d81a862b0fb83,1,1,Infopaginas.xml -ff0dd4bb477d5c2b96ce3ca9edc86f4f449b5ad0688c3961ec8fe048f4c7f832,1,1,InfoQ.xml -653053fdeeefd3e43b6f3e081008cb8ae78be8499e42f82dead68bf331f16399,1,1,Informa_Healthcare-problematic.xml -25891dc59b340e346a4a2e2e4a23e78b43ea8eaa67eda1c232173700188989d7,1,1,InformIT.xml -9872dc9d2e174cbd02c79c23eb0c9c872c10ae2265835cd1cd6f3ab05a8a77f4,1,1,Infosec-Island.xml -91d675ab33204efdadb50ae7e119d94742df6d120153faa060e6d1698423aa26,1,1,Infospyware.com.xml -e8686224d76f240dfa05d6cec4525948de3ddbef03b1d39f83908e935f9ada69,1,1,Infused-Systems-mismatches.xml -0b2b2ae12890c9dce81030d99640fb8cf798844e439c9e4fd823549f8297acd2,1,1,Infused-Systems.xml -fd4894cb5d82a6f4738a915e584ceb796013ffc197dce3258dffdf041bffe7a5,1,1,Ingdirect.es.xml -f17275b6e9f48b06e9f1db362a27de41baf0eec5fe34f484f7c141e9266baae2,1,1,Ingentaconnect.xml -9d256f22c646c9cf9f4a5fa5c9d055d3c07ed937025bb19d659da8d5595c1496,1,1,Ingenuity_Hosting.xml -756deaa5ee5b4d4c35a91db9c5e5f8173617434b69dac01f1017b5f33e5e4f74,1,1,ING.xml -ff339eb6ec992564e6d68a5d15b88fa0106d88dc3b3ec16a9f9b5cae1749ebd2,1,1,Inkbunny.xml -c4b7ad653117c9a158eb1c6ddf4ea5415aa2da6cd64e3181a707b64595b25e8b,1,1,InkFrog.com-problematic.xml -b0674aba431f6f84a1712c31e7d36a881470fe0a99682fd24229399252192f13,1,1,InkFrog.com.xml -abf2bf8030eb7da4165548443a622f0f8504acc1c1e6c06821be88d9889ef1b1,1,1,Innovate_UK.org.xml -f10ba13a6c5177bddaa25ef0a0bd9520f21fe2985c58603ad6938b5350d5ee37,1,1,Innovation-Interactive.xml -c241d995f6e6793b43f3ae50cc1832289b1de058e929249ac5b3a8418806f8e7,1,1,Innovative_Food_Concepts.xml -8707c14051622744be2346c65ebc002618ed83aa192e016c9260ff6167026109,1,1,Inphi.xml -494365c0b35d941cbaf840b921de5804bb2ee88034120ed208b667ba42f246d1,1,1,Inpros.net.xml -2c27807c03a23f3ce6f64e337cbcfbdbaf953cf1cab1966385c4f295fa2641d2,1,1,Inschrijven.xml -dd25d66bdf7e8dcf77ea88cd3fdab7bf08496876b5b4c56c74819c5d0b114bfc,1,1,Insight.xml -3db6c007feed4eef242703bbb8c70c6a243aa6f7506fe28374fad1164fd7732c,1,1,Instaemail.net.xml -3a03187d574c9fe24331701f80708d8147ebf6a27cf267cf0fdf56089a616b92,1,1,Instart_Logic.com.xml -1baf2e625f3311d8b200e79db4e4cfb5bbdab56df4285363e0d62826e90ab2bb,1,1,Instella_Platform.xml -60f96117bac88d3bb5266f939904e1cde7fe10a4916c497d52dde1dab8ff57dd,1,1,Institut_fur_Internet-Sicherheit.xml -703b4eb285554ac4a7e183ae77ad699b8ff9a62556247c0adeebea8b1d78c348,1,1,Integral-Marketing.com.xml -9868fc720e91801986e7c307289e1001c9a54fb9cffb1b01458e1e3a111006d8,1,1,Intel.co.uk.xml -8f38ef172cf9cab85abb4a5a08fe5d04dbdd83984c4450911f539ff89dfb4f39,1,1,Intelli-direct.com.xml -f8ccce593fb95122a95fe00918c297e77ce818f5d344510362a3a99417f8141a,1,1,Intelligence.org.xml -a2935104eeec79044ee7c456a5a86422d95f7df2c84328b097f07605e5b49683,1,1,Intelliworks_Chat.com.xml -405674d9b11e8e289b645154f2352a4401d377c62570898515365300f4a3208a,1,1,Intense_School.xml -06883949df82e37533d58f8dd286eaafafe833eb20c063807312fc6bf4ee779a,1,1,Interactive_Data_Corporation.xml -767a481187d59c4bcb4d4d814f9bcaa1fe8e567093f6f49ab1eb6cb1cdc90b9c,1,1,Interactive-Media-Awards.xml -91cc2a4a030f0e6108267e2dac651c9d907e108c5411b5f1bcb30bd36c91feb9,1,1,Interactive-Media-in-Retail-Group.xml -0219e661837e8a5fa7cfe309f9ad82fce9b1ed9266884e2068ca3d9a5b720e16,1,1,Interactive_Online.xml -87268aa72590b3413f6b8eef0a1d5c3a5b3846a8152fe30f498c89b01679a902,1,1,Interfacelift.xml -ede5ffe2909c85560b947b268ecd08e6d048127df7e9975b0447aef406f41b5d,1,1,Interhyp.de.xml -6cb9b826d0dcd0221d18fc0d787cbdfc243c280c51fdf4d8d64114b2e62be95a,1,1,International-Business-Times.xml -d35125abddfa06c2e8d5b27927b2295b4eca89fedc189825d08015be71e3e49e,1,1,International-Components-for-Unicode.xml -066c5de00150517a77b03923a00cd1e5a659a54b0ac984b1891e34558829e7fe,1,1,International_Energy_Agency.xml -3e8af5bf12d62846071bf8ac09794e8cd28926ab048b24d7494909e44de2663c,1,1,International-Finance-Corporation-mismatches.xml -9cde55c3b0f055ea73ddcdd67db9ec986b311ff4a88554d126db7531f12e60f6,1,1,International-Free-and-Open-Source-Software-Law-Review.xml -a0c3cfd823c709fe004ca38155708cd2ac9a21d7ad93be993a7c6f9464613c9b,1,1,Internet_Brands.xml -664ae47fc3b398908ca534aee5d9fe34be83c9cc3f4b480c41a79a767f5fa49b,1,1,Internet.bs.xml -cab358f32e9a489eaa69ccfdefe364cb36fcb5ba3346874889de9fc875050d59,1,1,Internet_Coup.org.xml -81b3be4036e221a597bf01d58395099db4a6791814c05bfdb666f9dcc2a8088e,1,1,Internet-Governance-Project.xml -3cefe2aca575fe4b14a4d0ae67ac6298463405b6f5514e0f95e0c3f2cdb7007b,1,1,Internet_Video_Archive.com.xml -dc6ff49076759df04ad979467bf83cbb0678098f8162268e128a4a1f9b4a93f2,1,1,Internet_Week.jp.xml -8f493500dc34969ee337234413ce7cbd29091bc7fc2885578d9d3244050fc272,1,1,InterNetworX.xml -27956e4bf82263d302512b1bb05d8dbe239ed3cadca886daa6c543a6c61d0de1,1,1,Internews.org.xml -340838024acfc70d6deabe9ee17b085b055d4bc9a80120afc800318808c7fe29,1,1,Int_Gov_Forum.org.xml -733c0f0956527491bf6a01d35e097c6df6b84c46e102332096a4fb81973f7f9e,1,1,Introversion-Software.xml -b00472fc653c5118dcba1528fa24b826ac7a3c90f1724d7966bb4c34b237f936,1,1,Introweb.xml -c4773cdd0de0de2a990f3a7cbf574661da1e3c493e451b122ec2b1690d9154e3,1,1,Intuitive_Password.com.xml -463310fdb182747ebb4fc15ab8c38a5f573b10b276ab7c3775acd3708408caca,1,1,Intuitiv.xml -25975eeed6ce6e43517091794c5bdef087ecbbd76d1c2a039db67f6e30580f40,1,1,Intuit-problematic.xml -9690ec3bf877f25949f83e7221bf77945ca82bc88e6efc94b2880c6607b26af9,1,1,Inverse.xml -17da245bf7911e07d9084e78490fa63191f406d7ce3c80f1355c8e58339f6ea8,1,1,Investing-Channel.xml -b8b926a42cd2792106cbee833c76f516fe15c33d7b2af468e29ef66a8694a465,1,1,InvestSMART.xml -3ebb442ec50843a304373e65a510d15fc576c54cb6b978fd86163eecaa6037c8,1,1,Invincea.com.xml -2cef6443a46e25e2a577b7f671c5ac7118e0ac946d1344c36ab0570a54d09e05,1,1,Invitel.xml -eadb5a61f34eb39970c0bb4c3754caae00fbd74671073ae8b4823e675a114c01,1,1,Invite_Media.xml -6b83c7249532eaa85681d638f079f8c090c10b2e099714e498d70930e3a2f867,1,1,Invoca.com.xml -0728b84ff919181262a365a363cd4e287be13bebf0c60e86ab74874d79a8418c,1,1,Invoca.net.xml -dd1426ca3f72068c95e13c9f408c7a528f5dfcff829707f3bae398b7e98c669c,1,1,Invodo.xml -c9f8e039ca08db69b0a243d58e1afdfb35e9a8f44cc910d3be7cdc74018cc869,1,1,IOCCC.org.xml -5cd6674f5bc3b01fbf84bb816c5dcba25c779aae5ed0f0fbb7ca175d2e15b316,1,1,IOLProperty.co.za.xml -99434a574dd224c386513e2ca4e72a9cae93fbf45ec511c4ad8acb80d499e3e2,1,1,IoMTT.com.xml -509153f087cceff4ff6515158dc7433b329863e3820103b361d5ee92206da1ab,1,1,ION-Audio.xml -8a66c900d13231321bea6872c759548b1dca37b059c7a1e729c7d15613ab0b82,1,1,IPage.xml -93a3e92e0c71bd5f275730c91594b9d376221d33e2b18b16800d142fe6a5a638,1,1,IPCdigital.co.uk.xml -98f538b907ef6e97fe0c479b1d7a75eb7c586807658f58ed57899aba56ea3479,1,1,IP_check.xml -8b8f247af30a7f3dfbc9c1dacb53733f86a161b3c88beb69b43a8078dd19325b,1,1,Iplay.com.xml -e5abbd3cf81944b9ea5f72fe14f52387523625c01c2e4bd283fcdc18dcdccefa,1,1,IPXE.org.xml -4cab7ad0efb9a81786846b6c973ea525e4bd99e95bca78435ffa6eccac0f3fec,1,1,IRF.se.xml -ef823b5bbb7fb55775a4d1d1f07ebbe73247b0e6bf88f7b38dd40a8a0d604313,1,1,Ironwhale.com.xml -6ec7581feed972e5f6fe7edc2d05dcc805a6beef99a4cad41726f61332e0eae9,1,1,Irwin-Law.xml -d3976d61894e1f8464f930466936d18aac9056ca9b23f7fc23d97382692b81b9,1,1,Isle.jp.xml -e8e870aa2f1aef2264b5f4c2a02ebfa701b49355957dd1425fe4d2751f165b21,1,1,Isorno.com.xml -25311515967c690251425b45e19fd0952f87a56714aac8d249e10c2e91bec453,1,1,IsyVmon.xml -9a3d20d51558662095b984f95252e8d9efd995b5ad19df125290e26d72177be8,1,1,IT-Cube_Systems.xml -500d728bb8b009552efa0921ddf19a6bc2be9bfda6c8a547134fc7d752ec9a94,1,1,Itex.xml -a11235701ac50049884f29d2dd5dbca2f50befb4a54e76136cedd5149dc9c1ea,1,1,IthicaCollege.xml -0e203a8653dfb8dee8a7e7ffbecea4aac1a7d5717463d15d5fb178370d7a3449,1,1,ITPC.xml -ac43b9af8ced88db4ff0bb0c3603ac8a3f7a9542b9e087ee8a6c6c33a1aa327f,1,1,ItsAnHonour.xml -2784f7e367a2c4df9d78867c3e2554c4376984c0617dbf68aa08f1f63e67394d,1,1,ItsLearning.com.xml -81c8d9fead672ff52549aa53b8306ba03eb208607c9e65e2a186182ca6693c7f,1,1,IT_Toolbox.com.xml -fde78df7089be2c657a6cd80b98fffa017f47fd53fa81a37f38555e987f0d269,1,1,IT-University-of-Copenhagen.xml -e2165b1edeb24280f7d97d06d1d92c4fc582a0f814d7c38c2116090c7e7f5f7d,1,1,ITU.xml -024f274cd2fb232792acb65a2c2c2b67fe893b6eebefec9da21f017262033102,1,1,ITV.com.xml -30fdc0bbded9c8027b90c01f25e0c69bd106ff85533a3d6ab57a451e85b23314,1,1,IUCNredlist.org.xml -506e5f86a87101cc480222441aeb4c44014cb7311ede7eef5ea343d008803895,1,1,IUPUI.edu.xml -dc52614b3a33ffebbf5763c7c2a25158699d866af7ceb86ec83fe1750ba742d4,1,1,Ive_Got_Kids.com-falsemixed.xml -ef2b06228e963b94bc9c0848ac490cd4516d52f2c525f74812dcfdcac93acefe,1,1,Ive_Got_Kids.com.xml -2de2eccdeca2c24e616299050f3aca9ea8681114502166db1e5fd88a83b08eb8,1,1,Iv.lt.xml -72d5a938721e66ba26e62c852e8a6f46fede3b30c5340cdb79debd18b8dbc856,1,1,Ivwbox.de.xml -8da5f2bb9c147020134f872bf90cd9012bc6ab274e6c01ccdf3e529412599144,1,1,iway.ch.xml -2263f261442b3b22981e232a1de6e33f81358b3b3482400f0fadf5ee89d20763,1,1,IWebReader.xml -00f7d63ec92db1e9176b1414e26fad21b5791807b6401891ef03f1929b18672c,1,1,IWM_Network.com.xml -2058d895da75a404225168a25a20ed36618333427509d7252de4bb28563c3b70,1,1,Izquierda-unida.es.xml -f23044af3f74a7dfb084dd7dd217b138db5a4e66f859b0575345d364a1fb14ea,1,1,Jack_Imaging.com.xml -24e0fa0948d392408855de200e7a99c76b078055a0474cdccd491d8fea8b7d0f,1,1,Jacksonville.com.xml -ea862774de9cabd815710f212b32d626a515601e3bcabab24545c2cc190d1650,1,1,Jacobin_Mag.com.xml -b47a736395c65ea89d9753b7ee9ab5f755255b762d556e9113209ed034fc27c8,1,1,Jacqueline_Gold.xml -d57c8c4e76a1ec4b5e8e38d8c6926e563a12b4f14ccc77eb69ba031d9eeb025b,1,1,JAMA-Network.xml -7e5d5fc9f0fb072f8b30107ac5ea7b91bf52c6ce862825bc6fa7ae8e68106871,1,1,Jameco.xml -10cb0af4bf6e24534d3a29773b5ee04776b93e8cb098ba9f1f80ba715329446c,1,1,Jamendo.xml -a2a44f4d21831dc59ed27f7ff7224303ae9b37cd8254a6c297daf85240b96e1b,1,1,JAMF_Software.com.xml -ff9ec4d4ef3a1b3bce5e071c90838d8ffed730fc68e2f67b160984cf5759830e,1,1,Janalta.com.xml -1485a52f719f2d27837c6be64889c7d9aab1ca439b32d3ad0f9b0953031c1750,1,1,JANET.xml -8f17280f7430b1eb693559fda1ddca0a950a1fa35ee40610a67589d2860adedd,1,1,JanRain.xml -d2130738c6e895702f300033327d5e273f6564c43c7f71006f8c288f83cc1b9b,1,1,Jansbrug.xml -b11452e21255ea71512405b587dbd976452139b101003f4a10cf8b928005f3c6,1,1,JapanAirlines.xml -2a2278c44d0fcc2b56ebc3b8f957130bb74bd840344d1c07f93b13e60156f6a2,1,1,Jaqpot.net.xml -62d30f32c383b9005b247851e85115fd358c8ee752b97edc0d020b0ee1bcec88,1,1,Jarian_Gibson.com-falsemixed.xml -a3fb85bd16b57f000532c3cc84dbfd38a083d657cc9999ae306b88f3a587666d,1,1,JavaScriptKicks.com.xml -022c9c4086d6343d3fcd40c03a32097127dc93e706d6fa1c86ea0aced6541537,1,1,JavaScriptMVC.xml -8887d4aa11a84262af26f886a339bf8639057b3fadb57a1262ac501a3fd0efca,1,1,Java.xml -8a7eeb71c6b48d0f19f91fbf3bcc845d29d94cd19e62672faa47548ccee7fc96,1,1,Javelin_Strategy.com.xml -d85b36c7e5f7e55d3ffcdf72e91172f450349bcfa61385e2d97633ddd49b1780,1,1,Jawbone.com.xml -80a9fb138ba32c33c3a99e87e630d390155f1efd4a5c845e42a78f5d0c0cd826,1,1,Jay_Is_Games.com.xml -a68632bbd5735afe4be50a2345a1630ee0772c74eff8a053d5026e406a5738c2,1,1,Jaymart.co.th.xml -26c1c6b5233bfe9bcaafb3505cc40fe716ffac3309ff08136944f0608c825d1e,1,1,Jba.io.xml -7f6cd4f2e205b70be904505666dcc5ed6d32064fd765306addc44050e9f42d81,1,1,Jeena.net.xml -36a6e1369155457e9635e5550744e2c1c13bcf2be9e8eab0fe4bfeea9ca471b9,1,1,Jeff_Nabers.com-falsemixed.xml -b77b4b9c609e0f61ab406d1aa62c5d046514aa6581f420374ef0fc4b7a112def,1,1,Jeff_Nabers.com.xml -943188835d0eff984aaa35fe24d5af0744c6f68e8016b10f3ba4828042c29c91,1,1,JesseRuderman.xml -66d83fc356fb383f33a5e64464e0e483458ee5a3b23b0b8255b73937fd124b59,1,1,JF-Shea-Co.xml -2716f00ef23349f87c8e170e9ea1fd23344a8d201cddbaff28ecb535ffb34f76,1,1,JGuitar.com.xml -fc360bc4c51c542d702e0cf9e1b9dc0dac71c9f6dbac2502eee7e4f382db5214,1,1,Jigsaw.xml -c1df2d5758953f29c992ec2598c94e7e73d5aa6c91d2f8eb4d62e0fdf0322a07,1,1,Jinx.com.xml -36aa494d6b1aadbb11d28e5f2733e4713688279504b61da9fa6e8e33c2129aca,1,1,Jitscale.com.xml -f1a84ec3b3e0e934ce0ee5517ea0b31cb7ba152de5278eb0895bb07023c6628d,1,1,Jobbik.xml -80eed726a6c96bd4f97361b7ee9d2fe2e954fb74437a4e800500399676778e61,1,1,JobMatch.xml -9ec4eac483ee3418fce542d02e5709bf31a44e4a745670c439740d9e0c6aac17,1,1,jobs.ch.xml -271d0a14cbe1bb81bc119c5037d5f9e9e1573627e306e8c1354a4392f72acaff,1,1,JobScout24.xml -717e4a4f64aaad464e54a20dcdc4230ead9ca7cfb70b862703a039714cdc53f2,1,1,Jobsgopublic.com.xml -8907bedf0e458d74e8e46ae7e1053c4a5399bd47cb9a4a7c80e9715955edd2d8,1,1,JobThread.xml -d5c215b36c3b844ce69f6557e4733cbb84f9c55f6cd41dd62bcf99d93398fc54,1,1,Jobware.de.xml -944f796f90772d6565585be75ad9816a221c0c79c96e10bf0b2a41002fc0b0d8,1,1,JodoHost.xml -67a862d57108112d17c517a59fe579a37a59aa41010b7346375e0e943d2b76a1,1,1,Joker.xml -c4b2113774001111b1f55f866cb7af429b19f4ac9e7a78dcfc985766de58305b,1,1,Joomag.com.xml -7dd138cef7ffe127cd6fdbcb63cc7d3f0836b4b118cfd9773d5d3b2e1d681de0,1,1,JoomlaCode.org.xml -5e6433cbef1434f17f2acba5cf2a74be3bce1861e88539b729f3827729ac597c,1,1,Joomlancers.com.xml -c8894784a81d8e8acef0d34262fd1721fec1d497829fb2a165a0310c5cf8d22c,1,1,JoomlArt.com.xml -c979cb8a361e3ed2bf5032f85b8aea715a1bcaea1a278635048ec26d4e59240e,1,1,Joseph-Rowntree-Reform-Trust.xml -8f8725f5cd5d0c0f2fa399232244e24dd5b7251a1601c99fce3fa8250e7514a1,1,1,Joslin-Diabetes-Center.xml -3a2cee590643793464daa4b4023de6bfb6ab8ef1b0bfde93a6bb29cfd8ac5691,1,1,JotForm.xml -62027605d5213769d6815e6644e5e9d2c45a71dc2db060935e91f44e93efbbbc,1,1,Journal-News.net-problematic.xml -101fd87908eecba0acf9700f26880592677e52c7d8edc8638dabd72dc06476c2,1,1,Journal-News.net.xml -034d3eb71d4ee7fe858c1d07f27de44c75498f70699d0cea1ff8a24f7c94a50c,1,1,Journal_of_Affective_Disorders.xml -c621d4ba25d54b2ac74584129f4234f43b52d2bb00a11b49ef04dc15848169d7,1,1,Journal-of-Neurosurgery.xml -510f30e1ccd60c62d0f5659d25e226430b75ffafe72bcb388eb43a0900ad8300,1,1,Journeyed.com.xml -856ce83c2b0d4ce404fefc7e8b3a08081f8982292c8824f587ad33815eb2c954,1,1,Joyclub.de.xml -13d4a297536d47bef78d0654c910013ba5e4873ed15cf39f8a61cdd60b9eeae7,1,1,JPBerlin.de.xml -ce1f1dfa4ffbe1de9185c4d5bf81e07ffa6afd0c0b3c16bceaadaa8194659a77,1,1,JSConf.us.xml -878f0efcd4fda30f3821e5362986a41446a368b644fffa970eaadde331595bfa,1,1,Jubii.dk-problematic.xml -65d10d09f2078c9271d6437eae33d9e7d6ecae9a2b2364670ad60d98d0279f83,1,1,Jubii.dk.xml -0269cb62516dd5ed9fc97426001622483c695b418e3b277d676115b851f913ba,1,1,Judiciary_of_England_and_Wales.xml -3ce547839f6e51def2a22d5f13743399081ebcfd330e10116e72ae8e519289ee,1,1,Jugendschutzprogramm.de.xml -b31ea973c4bb7c2d240cb7dff9a5a13174e7e473cee758844d9cf827dfafad13,1,1,Jugger.ru.xml -21937f0fd2a36647290096e83c0db7202e391611c11760e4cd68edb237a4f7b5,1,1,Jumptap.xml -65013129a4da8f42ff367111b3f7813b706c8e37023236e8536ba2dda8957fe2,1,1,JunoDownload.xml -a6ca9f9ad95e7e241678458d14169a02757c470fbb891504853b72a2ce450cb7,1,1,JunoRecords.xml -4b35e98b981f9df97de267679053b07d243573d98a3b6c6ccb0cd6398c50fd35,1,1,Jusek.se.xml -8964fc9eb85a7406440e4e1f027a72f46ecef9f122f302483dca9e07e40e9a82,1,1,Jussieu.fr-problematic.xml -f1c75c555555837cdabc2d193867f261907456f6a4d19d2a3fa194067cf45c72,1,1,Justia.xml -f5e4ff007648642bd56ff95e7fafa77df05d591ccf462f72dc7ed4bd0dba7f51,1,1,Justmoon.net.xml -fb593e8ddf88bcb1d1508da06196adc76706e4a163a0e8ceabace9e8a5bbf42c,1,1,K2s.cc.xml -18bd1f18f953302be45bf882bd9b3b8f6a738d8f6e1f844dab416d95b018b248,1,1,Kable_Packaging_and_Fulfillment_Services.xml -1f438646df2333caa25cb8eac67cfa0cca8ef4ebdc6fecc823fb81737a2e05cb,1,1,kaimi.ru.xml -3c7fc2657d92aeec4066f9d2969c2e4153ebb9ae6dfe689faa76104d524fa51d,1,1,Kaiserslautern.de.xml -8f18453e3c720bfbebfb1708243a5a25fb7434df4e016246e8ea288eca398952,1,1,Kaiser_Systeme.xml -6fa233a4df630fb7dcb886a508843290392db8506e73a1a7da94954db2affa58,1,1,Kampyle.xml -911f9f57dd80af37a918d5c5029a1b4d156298e48a029e7aa9497beeda774ccd,1,1,Kaneva.xml -98531c3d118ba761f94d828eac3b1ec9de12067f5817678335c2fcad817faf41,1,1,Kanshoo.xml -0d020e8196630cf58db7acdcfaf794b8eaed3ff489057148c718c3937d8fe03f,1,1,Kantar-Worldpanel.xml -8ffcfe6eb1626db886acc213af94f8832edbf6da3a35f07b2f2d2a210057da4d,1,1,Kaos.theory.xml -aa9386df75242bb212ece0a1276439722214b066f3a533f48cd1c9ef722f5f7d,1,1,Kapsobor.de.xml -1c0d23d972ae20b880c9bd4cf07cce560809895e475882c5b1778334e01967ec,1,1,Kariera.gr.xml -d9cea3e0f991e145ab25ca5b1ceecb16bdbea19a6e13bfaa3f7d8aa6a7a043cd,1,1,Kasimp3.xml -aa47ed20f50e12e667cf028791b8f979ea9cdd32895a2bf25e119a6d276a3d2d,1,1,Kathrein.xml -f761bf1817c92f9a85f5a1edc4c5d17c67f6e4c78d71ccec695882075e0b3798,1,1,KatzPorn.xml -3841a0cb434fad889b90822e10a5a9c583a405751ba0c83798a22a12fd35be4f,1,1,KAU.se-problematic.xml -a6a776e8e5901bd6be4af8ae581f0f74106f78b5b05b1b4e1521ff7df28c7fd5,1,1,KAU.se.xml -10c58bdfcba0984977230b7e1f4b7b735e1a4886eec5ad9c0797437718d4fee2,1,1,Kayako.xml -2086ed81e93368551d121b0508a0ae28a1d71f294f1ec7b58fb5d1d21b9380c6,1,1,Kayak.xml -e4e0e1bd5992f280bf599b41b6a25036b83b56d9e465ee31188df89fce1f82d3,1,1,KBPublisher.com-falsemixed.xml -287bb4469f58df13201832b04566c60c142de3045c4ad6257bd937c3475b25a4,1,1,KBPublisher.com.xml -68709a34f51a5fd997ec08d97e2c0aa2330b4ea1134bcc5e11326893c82c9913,1,1,Kdoes.nl.xml -e6f6249bbdcd67f77373566f17c17e398e3c5cf81c8b410917a64ece4dcd8fcb,1,1,KeePass.info.xml -47c740254969fcefd4b761fe60ef44b56952f528a8341223af3af54e5dac75b9,1,1,KeePassX.xml -0ca1ce68a541b9fb4a09a71ecf71453323c67e417e6ed317069938e613f50824,1,1,Kei.pl-mismatches.xml -bcbd22a651cdea324f6be333dd1b1fa1d9cbcc30b75d805063f65396db7dae75,1,1,Kei.pl.xml -b67160a2bcb46424224f756e56dfb804323c2446e2161554d1d1015b64ab32d9,1,1,Kenai.com.xml -cd3f0b25d4e91376a3d71f2af47d965815df5ca8968914f9eb9a3b19ab93dbf7,1,1,Kernel_concepts.xml -499d9c70a8be988de7982c15bb9281ed6e9f1076f26f255574f0f958b3739537,1,1,Ketchum.com.xml -911d17e381f38a6bc6ef545f5ca260fc0954922ed63bf05e2f7ca0e6035f4535,1,1,Keymile.com.xml -5638708aa23cd4e8e792217e86554bfa3451ccdc6f28ee12861ee485fc635d55,1,1,Keyword_Discovery.xml -bb8d099817761abe31fa3b0a78bcf678030e7114e5e1801b13948e322b81cdd5,1,1,KF_Webs.net.xml -c61b499fb7ce7de7eb4bc86bb6c047a202cbb60c30b6c78110b36e0e0ccec9d4,1,1,KHN.nl.xml -a4d4bd1fdacfa4d98a72e1636911f8c23c8453be18df4573d6e278021db69109,1,1,Khronos.xml -3f52d699a4336f791348be77ebbf13a214be10d02c6a134dbbc1792e05b60b92,1,1,KickNews.xml -ebd428ec9930a5cba3fbf703122a9f4480f9a4e1afcc4425cac823e5f0b94359,1,1,Kids_Foot_Locker.xml -12ae40cfc95aaaae2573664fd2fea40b4aa90e5adb75d013953225121bd38361,1,1,King.com.xml -4b71dc7dbecc49f2b48f869a78b2cea026dc9eab9ee6627a49581d58bbf936a4,1,1,KingHost.xml -01c0a3410f1b8f8fdb8a81ca937b4fa59a074300e02076422a033046087436dc,1,1,Kings_Road_Merch.xml -7253cfbdeab2f3a7712d1efab743f37d78e32bfee83b063436fa35c162f3a393,1,1,Kinotehnik.xml -50a1bfcd49aea8cf2afe04bcce6707b612e0429a3e5a16f1cb98cfc567603682,1,1,Kintera-Network.xml -2aa43e93461a588640941076437a47133eab4b437440045d450e9a67acea56b7,1,1,Kismetwireless.net.xml -aac83590b0080a78a0b254d8cef88f132b0d609d2be69b2744903b627e000951,1,1,Kite_Packaging.co.uk.xml -e36c771c77d07b926ad232648bbcbd983f7084608da5c8905fdb2c33b497629f,1,1,KIXEYE.xml -c3c0f7f339c66c1188d9d84113c96c538c849f68a225b1e7581f058b27b9b767,1,1,KKH.se.xml -f842aa197bd13a24bc2a36dc0fe6252759c02e27dd7b855c7c1cc648daf4498a,1,1,KlimaSchutzPartner-Berlin.xml -28ee42405554e42ec200a12f9f2031b6ce31c1da587ccc7f04ff3442cea3beb8,1,1,Klub.com.pl.xml -bd7d290a024a52feeea17c0687d34ed0412dd25138985aeb137ee451ff253b44,1,1,Kmart.com.xml -a6450ff330b90c225cc405c8f5c623dca8d7a80a0c16a3e58be546feb7ae886f,1,1,KMH.se.xml -34acadabac69f1b030653f41e147c1baac9ed50038fd4d241b1cbf73e085bb5b,1,1,Kneon.com-problematic.xml -8d12f9d79c207c30d5319a01f740f4a73681b5c5b5973fc74c6817ae87f76534,1,1,Knopper.net.xml -a5358a29ca8a284d6821ad4bbdf89644562bc632a9704dc698ba5b954f1e298d,1,1,Kobo.xml -6e1e8a06a97847e7a33147d96c3b62c45a7afadf7c76dd4cebe302059a7c6bfe,1,1,Koding.xml -900b42c2f9d1ce487f4de696a98cea74e452b7f9cf848de6eb9c8d8254784e64,1,1,Kommunal.se.xml -e2d39b8a485a73685e62d404a1d2c1251d536bf11b1c66796fd329baddd9f2b5,1,1,Komoona.com.xml -7b7771e336e05a84d249ba6c7a5693e82edd32524986654d9f221d8813f93ac1,1,1,Komplett.xml -796f232394138ee9298ed061fe587c009ab2a399f9d4db5fb77a07baa51c390e,1,1,Konami.com.xml -d417f481fdbe9c2100592bf164c92feed9e2a9f8c989a8267012fb2bb4a294a1,1,1,Konstfack.se.xml -c998b1cafdda9cf06478f163ec72ba97ce710090b671180ceed391173d43a574,1,1,KOP11.com.xml -107594077e634f421f2ba1f553e1a3504bcdf06c2f2470d5ee6a362c0a9c584f,1,1,Kopiosto.xml -17c3df61b81a9296fcf4c103ce8067f30f287130edde8ddfe4b49f07a184a571,1,1,Kore.io.xml -aa421d5a8ca0a0ae8799aa66cc6267a22657369e1e3a11bd77028e773982dc40,1,1,Kosimak.com.xml -df1147b4581d6186392aa469caa35407b2336b6fa56f0bbc856160e5b618df49,1,1,Kotte-zeller.de.xml -d27fa58ed7fe0adae8e680653922e4d25aee820ef3cab3dedb95d4476d6cb889,1,1,Kotulas.com.xml -2663138d1ef0042178d923ab9af18d1979ec6afd79a0b96039da7537860a41c6,1,1,Kovidgoyal.net.xml -0005b9b3deb1c54b7d34a1cdad4166901da72992b27bd5df953140dfaab487c5,1,1,KPN.com.xml -46a19284ca31445059b9705c5b53a784f996d3d937d2df1d2f73916f08f225ac,1,1,KPN-expired.xml -0bedcdf6bb333b46c518abf28bda4b403f6fc5614c9e7df5e25fa429ff1b0975,1,1,KPT.ch.xml -7374df17db9f558e10c734acd9dd1d804c322014ce3e353b1c80fdbfb515b576,1,1,Krautchan.xml -c61197b469d6020a7cf8f4aacf5ff2c2af8a4903f35207fdae2fe0f81a370d85,1,1,Kraxel.org.xml -6ab41a14718447df02b8c045716eb7adcabf5af5e48a7e76680f7ff2f1ca1ed8,1,1,Kriminalvarden.se.xml -7f8f1ebf93986543999b1f58cff26270fa4c3ffa6bc13ca13404cef3f476954c,1,1,Krisostomus.xml -70ea6a47d4bc8e3031576360df6556486307c552f6262b899f7f5b57dec7fa27,1,1,Kryo.se.xml -0a793c943d4f4d69203f4d25745f7690b158f936d1e00a2500084ee47db9dbe6,1,1,Kryptronic.xml -93904c0d10667169302962673004c767a5771c73c1918644c02a55dacf0ee33e,1,1,KSL.xml -cfb83b3253bf01c84a3eb187594f7ea57dd8ec5ed25c851623c39b25623064d5,1,1,Kulcs-soft.hu.xml -3d448b9e0ba2764d10230a6f260149dd3417ea3d92b4879013c4fd4505aa1192,1,1,Kununu.xml -017b11bbd11c467ee78aaa2d921ae2bbf363702eb1219f83f6164f52e51c2a1e,1,1,Kursbuero.de.xml -5c1a6004ad48bd3390f16c7fdbead17ceb2c1a81e0c6454a304111d33a3d6c59,1,1,Kuruc.info.xml -53f972ce676848f11352f5c892d485ce971910da0814445e0a42662963eff652,1,1,Kuther.net.xml -4abf335db60c53d57b3601fbf32a77fb3fee97723ff0841f3bef1b4556880872,1,1,Kvack.org.xml -a658ddc8846508fa73546b9b15f07e6d146d50826591eefd1a4235b65d059d93,1,1,Kyani.net.xml -136a72dba4e24651b814f7714422b747e18fed81936e97d08c94488cb6d1ebc7,1,1,Kyberia.sk.xml -c099ca3b6d74d69354236deb0084f111d86cedc0791abd3381cf60f195f2c44d,1,1,Kyhwana.org.xml -440e3c3ec61a216fd7754eb08d64a06e73366ddb91e20c952543667a86473e31,1,1,Labels_by_the_Sheet.com.xml -20b19fd39640726a8449a52c8b6be51dccb571c5daef707a0b27da31b0d86b99,1,1,LaCaixa.xml -f2b8416a9f17ed54a52eae1ec566c633732c3f7e7c0c1cd70e10b229eba06639,1,1,Lady_Foot_Locker.xml -9cfd769231672625b8576733968b9cdccd500feac77f6f1510f30ed7f70959f2,1,1,Lagen.nu.xml -1adff119276f79344cddcd84d7b6f5719baf21515f657c08ed38afaebe12334d,1,1,Language_Perfect.xml -8fbfb34c2994d782ce1ade635b78401d5a869fce79d309a6a5993640f8e2d552,1,1,Lanistaads.com.xml -e7d93d0157dc9eed6a48890d602d2aff7574f8416a37c873ea54ec7fe1e60b26,1,1,LANsquared.xml -c01f9d5e0f0ef9ec2db156bf19729febd55117a48db33e144075f98a9e96debe,1,1,Lantmateriet.se.xml -4df842d254e1cc740e7b97bc6d828dc1474f0db76929eaa6b94998280180b752,1,1,Lanyrd.xml -ca8c34df6a58370290e7230de1a66f3eabed7079ec3bc6278e594d39fd6e31bc,1,1,LaPatilla.com.xml -1fae5026b085ff0376c53284b2b7536230bd781b79f4be08506d04bdc7ef1286,1,1,LaunchRock.xml -bf3030ded18c245aa1d051c849660ef9807cbd9259da24dbbd0a5c12cefa65a9,1,1,Lautre.net.xml -7098e2aa85525682fcab29572d0e6389dc4f3f869a192b4b9b3f4ea292cfed3a,1,1,Laverna.xml -4fdca269233474a3b28efd1fe8e7672aff7650df597fd177eadcbe79648d0b43,1,1,Lawblog.de.xml -8c502c0ac28620fa9c8085df27334248b1c141a4448a9193fe9e17dc1258e0d9,1,1,Law_Business_Research_CDN.xml -329b80614b84565bba78c4cf3ebd40f2caf60cf648372f1deda76b93564693c8,1,1,Lawn_and_Landscape.xml -7c323b0182ffec2ec61a2c5bcab02ccf357db25bd6a40540d7eee429915a6e00,1,1,Law_School_Admission_Council.xml -f649aae090d1c7cb5e6329286ca40bc52e4085fd4d43d022ac986523a689f268,1,1,LboroAcUk.xml -93aae2db3d2e73312ed4250f95b9291ebe956e90fd2ba447cf665c751d93293c,1,1,Leader.xml -a6a354b175f07f96a7c2cd4ce4a00e26cde800c6f6176f660a59ae918cb56d91,1,1,LeadLander.xml -aa7a5898b6ee0435abc8a2325c8d26e1e7e45375c7707911d8651a1d4bcdedbb,1,1,Leadwerks.com.xml -007e7d3a1edfa83bf6c3f6fe82e54dbfaaef5059a9b70bf6ad74c07d9c3dac53,1,1,League_of_Legends.com-problematic.xml -24851fbc627fd1e1910448fa382bdd31744479e3a3018e5acacfd363e338c140,1,1,Leanpub.com.xml -e400c587a600d3ea1d156ae3063bc8aba863be12423441d42d9f56bc1c2b0516,1,1,Least_Fixed.com.xml -93487386bd9cf5af49555cdcec23409fcad92e770785bf4b3e91d44805b75f03,1,1,Lef.org.xml -efa43c344ca7034b8aa477d8a545cc618ba0b193ecde88f68cc54b605c903585,1,1,Legolas-Media.xml -90a6479744e53e950b50a5618374c41aaea9b48c8808815cd181f6ccf7f4452c,1,1,Leia_Jung.org.xml -da17170681a3bd56795ccebed4692911af60a64bbcbcebc201e15fe5d3c99329,1,1,Leiden_Univ.nl.xml -e68e273cc76ef330863f1e810aa136ec203f6cb6ff83573773f596f665da3a74,1,1,Lektorium.tv.xml -c654e688d0010234dc5bb91f672333455c7ca1235884add140d3d4f9d17f3173,1,1,Lendo.se.xml -d52e011483f8a5c89f93c1ab0e22ec93f6cffd51bdb9cd160e9eadbb257acd68,1,1,LensRentals.xml -0db5c093f93156a5764c5d52f71bf860cfee58c6bb7be818f235a9061ac8801b,1,1,Leroy_Farmer_City_Press.xml -5f40aad7f0e3df3f88bc274955f3bcf58402003b751c2afda19c418e44ba78d4,1,1,LesFurets.com.xml -39642f205be4ffeabd15f24667759913eecedab67cfad0724f101565cac7dcac,1,1,LessThan3.xml -a68ae22f6144a808a21f54d1483174f49482b23ca66fd63899ba9b4e8e0e77e4,1,1,LExpress.fr.xml -a4bce56c849a9dd97a37407e5ff5e459f0f73d78de923af1581ea2ea14ca6d77,1,1,LezloveVideo.com.xml -b250c290c3d7b18c9f1ebd437cbf511bacfb023999b8931ba5fad91da27a1946,1,1,LF_Hair.com.xml -874dc6ae083039030d5a7f604921e9e914368e4748f0c62ffbc1ebff9500dc3b,1,1,Libdems.org.uk.xml -82d91c9bfd424f34898c9435240f08ba68083edf2a2f14eeaab224ebf245a606,1,1,Libdrc.org.xml -ca3651e464527f1cda0d1059fdc27e8bc7ec56c6cc326d8ba5be30aa145a3751,1,1,Liberal_America.org-falsemixed.xml -4da6941625e8c737ccf9de80aadd671b78aab17d09bb0830557256dd8f3a6ca3,1,1,Liberal_America.org.xml -83df8faed2a6bca0e7380b9ff02f33e104377f3539d4df2395eb050ee54de09b,1,1,Library_License.org.xml -a20d349004139502a74eb21d3053e9b46da8d6c2a6836c2bbb90469a9a363d6f,1,1,Libravatar.org.xml -2024f5bf8b3fc81e834b022b2c34f31669e1dd151a163c304d135218ac2fb74a,1,1,Libre_Graphics_World.org.xml -7351a59e6b41e23735c860bd30338788abef25f137a51c0a6a1dc42acc95a9a3,1,1,Libri.de.xml -1eba4a12cccd990be323caa6ef7a622a48d6ddcbf685e8f43c4b942694c0fe2a,1,1,Lichtblick.de.xml -993b07ba4b30101d7b4d133239b7a03ddc0d914cde338040b53d7871bedf04b1,1,1,Life-in-the-Fast-Lane.xml -cf3ef8d94312e7d547c72032bdba15b8396d9f974c0a26c75f9beb3aaeab4ee3,1,1,Lifeline-Australia.xml -25cb79441c7cf2db7729939c99228d7e93c58d9b62a0a05c5ae7c7fb6f3951f7,1,1,Lift-conference.xml -72fbe1881d78b24fb19fb901ec9921826c040eb78be5fbecb1eb2a54302d7393,1,1,Liftdna.com-problematic.xml -91fc0e64deed78bdc5e964c46ad97765ae536dfc279fd42b8828f66653a1157b,1,1,Liftdna.com.xml -45220faf6deafa7ec3e94a2117116c46efe13829982abc1343ef2839b8bace5a,1,1,Lift_Security.io.xml -b671132226b7363ac92bf42040169e9cdc0d9465acb5ed6e4688fed5d2467890,1,1,LiftShare.xml -1549a4c4ddc5b672182806fdc65a451b26a62f21bca0fbb9b2dc023109b2e6dd,1,1,Light_the_Night.org.xml -48c01e2f0374af16870b407630c136624e52c60d4a5706f5d33427a6d4fa2326,1,1,Likes.xml -6caec6c16c8be5429cc654964d31f3d2a2990e0592b6402b994232621eb3c0d8,1,1,LiLux.lu.xml -422032715cbce1794ee2f55f9bf167382377dfe69ee9056150227870c39d08c1,1,1,Limelight-Networks.xml -6407a4a785f0eae1a43553d7d66ff1e4b15c06f54178294df3f832a9e65f4fa1,1,1,Limited_2_Art.com.xml -c30be63bb86f2df95e80aa3c9e44123e42903fe609d1a1f184a249b07dd12f9a,1,1,LINBIT.xml -6779ba6b96305e3230a71273033da7370e4a91275aa7004b4c2f6147b422ca95,1,1,LINCS.fr.xml -95dfa57878321db2f3b4cc5a3dc36ad32b711a4013420d5900083ccc99ea53fc,1,1,LindtUSA.xml -65246edbb55b7f559bd4179548795ee732dcbc4cbd487d6e2d22609d2bf8e274,1,1,Lindy.com.xml -a3179f5b1209fb9d30b10fc5fd8c7f0c9ce63f4fe2b87acf503c9df4312827a4,1,1,Linear.com.xml -4a2fc0b779342d0c2d637197cac377d2f4f63c057426bdd6ad89db396579087f,1,1,Linerunner.xml -de6531a8a1876158d077799a1472d3a00bfa5c91eaacfa8ba452497d00ac4c3a,1,1,LINGUIST-List.xml -e1606d594c70f4772ad90387bb7fbefb7e95f0e6a25c0cae0ab2957ae91e988d,1,1,Linkbucks.xml -c865719b6efe2cf3c805bc26a154f9a2884cacaa3cd0636e0225e6e5e5fe7880,1,1,Linkomanija.xml -acdaaba99ef19c3f731ecfe8d04a19d7c62640ed18b3049f9149173e4d03f739,1,1,Linn_Records.com.xml -405c9613577a205a89fd978acb8148f0c987b2c74c85578ad39fc1776a0382ea,1,1,Linphone.xml -9b80b4dd17b531fd23f2a1845b5e47614f6d945534396d13323cfe14ce78c20b,1,1,Linuxaria.com.xml -262a6d67e0409b77eef6f84acb664331c844cb228cee9c9c13805e67a427bcb1,1,1,Linuxaudio.org.xml -78b58edc153522c718a0590be08d964b3571d17285134ec730a6d5994bc23611,1,1,Linux.conf.au.xml -e1b2d1f09ce2a3c755a6d24cd7a3b2c2d912b62a032e5a2f95540ab78452c74e,1,1,Linux-Counter-Trac.xml -7d1927f332504cdabc27f72275e37d352cf089a1db33f8739a2db002eb16e4a0,1,1,Linux.lu.xml -7aa31325bf3afc674fef9ff7fd6a022945a077e10cdb903ca73ca0227b01861c,1,1,Linux-Magazine.xml -fc67ea73ff6e25c08593c98f72c8ad36547cc0f03101a0e6b220788873d7415f,1,1,Linux-New-Media.xml -a71ab050c710bfd47b7eccb18fd7d8424887e9ecc866ac04e2d00be0d779b029,1,1,Linuxpl.com.xml -8902b915d4af12ec2c7859275ed6c3b5d60f224efbf7472033ad11e994d62824,1,1,LinuxQuestions.xml -8df9f56194e2055e0b615a3cc7cc471d6231250d7c1bc7d7858e2ec1b1ff8db0,1,1,Lippincott_Williams_and_Wilkins.xml -0653112afb2b5355c93383e74056dbbf2d065cae483751a87bd2fc06682f8047,1,1,Liquid-Web.xml -88381b0c6fb222168e09344b22387cf75ffb53d4e9ec8efe1affbefbb9d386d2,1,1,Listonic.xml -64cb5698f01ea133be093f245d645f3845fd50c41f2eaa00c28f6726f8ac6a2e,1,1,ListrakBI.com.xml -462bdf73b53950b24e70bf000e5ea02bd8807aab7420b6914d87170c18893be1,1,1,LiteSpeed-Technologies-mismatches.xml -3558ab8db745d3b527d28ab5fc0dce1559dbe191d449b27d09223519354bc135,1,1,LiteSpeed-Technologies.xml -58a511f8c6d17ac9b651b842d656e0112b89765ad1be363878c669e26e88312b,1,1,Lithium-clients.xml -51bf5b2255960e679a19cbde576deb19b76428e52af65f87832df323b34789ca,1,1,LitHive.com.xml -1f30497a466a8216630a5b5a2818521394d6cf178b8db54382480e0645d85c94,1,1,Litter.com.xml -0cbe29f915f493df49e068f6287eb8759e6433cf42cbb2cefb203c8d3d8af634,1,1,Little_CMS.com.xml -fe52803da1f703cfe9990e08d740aaba64f6d59c459653376356b5ecce922a7e,1,1,Littlesvr.ca.xml -50d1020d66cf6e6fde0f34c4ed117ed2ee0f79676b779a5a7affa216de3abe55,1,1,Liv.ac.uk.xml -c9125826e16e1d9283f61e59ae363a32025ea77bb76ac59b2847a96081ed9921,1,1,LiveJournal-problematic.xml -594504bbdf2ed0d8ac1e795d826ddd6a37c2bb65aa9ba26d6b3bf09d1cb9dcc1,1,1,Live-Nation.xml -657622e6f0195b2dfe3210112b7ab0e1e31a00717ffb3d40d8659fa04b74d5b0,1,1,Livermores-Centennial-Light-Live-Cam.xml -f35f92ed9e52ec4b8f6467097594d807e1301ba5f12ad140f901c6c63cc27260,1,1,Liverpool_Victoria.xml -70ffd66c918dddc6e24325ef9851aab98064bc9054887498b0b1ee96ee1c57c6,1,1,Livestatserver.com.xml -6cf957e7613bc938177a082c0f9ce6b5773892518127b119b3444955c853d542,1,1,Liwenhaosuper.com.xml -e4115499b76cbc58fd655c147fc8ac7d5f4df58d2d83d0b9e754f04bcae2cc31,1,1,LKD.org.tr.xml -ead7da3ba41e5c87afbf5fd9d5c9ad53922559c2b80124af3141b174d4376627,1,1,LK_Mart.xml -e794213f13ad4f699ae02ea5fbe2e58eb1626983ea722ba3391d4ee3ab059a9a,1,1,Loan_Science.xml -4a0ed45f42ada9789aa084bf4259e5afd2fdcd91630e6e8f55d37ac93e032011,1,1,LocalEdge.xml -e206d52afe9c4fc366836d861bf9fe74c5c15aa1ea8909312fc4446a0debb12d,1,1,Locaweb.xml -d72ba865619f6e21e90b7a28b1f4eabafd3e4fcbc768a6459985749d2b9bb180,1,1,LockerDome.com.xml -cf76a87a558fbdddf2957a265d8139135c74bc5f0edff05648870f6d4b97a876,1,1,LogicBox_Software.xml -9b0a0112349ef2f150eb1de92abe9c839528a05d55b3ca16a4af9fc84dd3f0a3,1,1,Logitech.com.xml -8a922fc8578161a6d4af7bcde683ae6ad5a3c8e635f8734d20fbe0b008988a5f,1,1,LogoYes.xml -6deda1ab7e95f5c5cabdc5d3adb376b1e7092973ff36965d47b7f5dfa9fd8d77,1,1,Lohud.com.xml -7a3d8f03db190439c6f191d3f8878dc98ba3cf0e33297e1ebc537f49a4f55073,1,1,Lokus.no.xml -305dcaeec81ae8e2872c0b18311bbcd20a1b5641373762c273cb84108dee4c41,1,1,Lokus.se.xml -f180daf50f99e6d294efe3cfa3782b3038ec3c34a48667dc72884554e2d2011a,1,1,LONAP.xml -5f1345067ca3653c26e9212d2b42a2afc42ccaeb0afc2d48bce1170d430618aa,1,1,London_City_Airport.xml -d7be9fab34a3d4a4aa00274545cedba1d569fd9344b46ecc8c5becb72d65d510,1,1,London_Hackspace.xml -a0d83b08c193b773273d200ff0d57cd582f21c6be981c08af4be54cf897a109f,1,1,Londonist.com.xml -75ab8da3db1a0f6b262b1b786c199a861aee0bc84b5e0f1042460816881a43b4,1,1,London-Nano.com.xml -1ff33f43e6de573dc4f1dfa3ceb046e97ae6e8fd6eb063984bc1bb42beb0f234,1,1,London_Review_of_Books.xml -310690f227575180b1c3d8106079e906ac8c7d09b3301ef20de06c6ef723dde5,1,1,London-School-of-Economics.xml -3a16eb66437b66ca8fcc39076fa6f076e16ac3cb266af78debf75821a00aae3f,1,1,Long_Now.org.xml -c29a217770ac145e47759e1ab82324ca64df25044d4101151e76ed94317168c6,1,1,Look.co.uk.xml -f961b529aa8abcfa1efd25a3a950443fe9dae8aa17f060d05583a9ed0be2c030,1,1,Look_Dumbass.xml -050bdb8522be2fed28033b318f7565def40681e0fa6de20d5175f41beaedf4ad,1,1,Loopia_secure.com.xml -c0bc21e11814a920374b67744b360bf7d9422a64e4e51c29a56516683bedcb3d,1,1,Loopia.xml -6788f7c83009fa592644dd4eede78ea0b8a7922a5c4538eddf2a24e4578e94d9,1,1,Lords-of-the-Blog.xml -869cc6be96443dc2b9b8321d6714bef81a254bc8a244f9ee09e55ba6141f2e7a,1,1,Los_Angeles_Times.xml -59551041618f1d126bdd5fc15d2d35d372b41e8876daa1e6f4be5365da3f0475,1,1,Louder_Than_War.com.xml -b801cd50beb9a47c8ab0f24b1edba458f886679322efb69e9babb30a544623b6,1,1,Louhi.net.xml -c9b32fcd5908e917ed60d50abdebefd9a0d84bb1df32a439f16a716bfbc8a266,1,1,Louisiana_State_University-problematic.xml -1f01f25bda4f1789a1f4ab02aeba5b9eb966b9a5ca627f5744c06b5de09c4c5f,1,1,Louisiana_State_University.xml -5e2f4bc191aa713b18dbee5c5fa9c65c01361bcec551d65cca6785d3005f5a9c,1,1,LoveFilm.xml -214c9459b53619d48be2f0f57bd4ef4465e22265b3642436b8aa746d487aec9f,1,1,LoveHoney.xml -40dd4d714fcf83eb7fd375a823fb0706c3156c270350bfcc624fc3799d64033c,1,1,Lovemoney.xml -6e1614a42fb6bf41f161fb271e2cf441359eefea66a5de92ae60039337adf443,1,1,LPO.org.uk.xml -7fd1c24a4f4664d94bd4dcbb1b3adf923768304192d282339008431d1e86d086,1,1,LSE.ac.uk.xml -9016a0f69fea2b3abe3ef3f4391d64a3bc4723ca9c3604220122ee14f8b538cb,1,1,LSO.com.xml -da5fdd9d6a699effa230e866fc65358766ebf58c0810894f0308cdc47c1bed47,1,1,LTER.xml -f658183981b04e371b234df5e21f9f2a92039ed4243d6084956ed82b5718c812,1,1,LTRADIO.com.xml -b500bb1c4a87c4413bbe8680a36ed3249eb62ed0c8848b02877d287e67ceb517,1,1,LTTng_Project.xml -8294fabf3dacdbe9dd045d04f49b312ae7299ce985995ea10fbde1d4e970209f,1,1,Lucky2u.net.xml -e87fdd018e7d16e13d4ec9f6c5ab6fd7ba7302b44b9ed081aa06a0d67c257ccb,1,1,Lulea_University_of_Technology.xml -743e2d966f98d25ee6df9e10236138341a27e9e63106a8c629b26ce53d41b3b8,1,1,Lulu.xml -2d76724c1ff69dc9e9991ed1fdad701efd342e25431e0ab1689ecf981c350c35,1,1,Lumension.com.xml -f3cbc85de356243ff65885250d8b80c5b5d0b5d3667e602287c009e26d289fe7,1,1,LuminoWorld.com.xml -2e2eb4c86a1e807db7709ae89a3aef87a2d4c3a8aa81002c1075324659b13de5,1,1,Lumosity.xml -d3689ecf97752c8573fd559c68beae3b96bf66cc7a7e045a03f0d1050e6d3b48,1,1,LU.se.xml -c23ac8c12c30952a7c7245142352b841c4ab69c73825477b198de20e0cbd6a25,1,1,LUV.asn.au.xml -bc8d53a934a8e46ead8ace467acdf5066d86d92d2f6f96c50f4cf4fae6d08f0e,1,1,LxCenter.xml -a1db82defa904faec2c657e6ea22941e1b148f1e81cf35a58c40803424b6b01a,1,1,Lyft.xml -551b122a2c152e388af55527367654016d5ba842ab144283c167b58436adb58e,1,1,Lynxtech.xml -7a79a8db4e9722be79a45338c6d8683d263af712c3c45c1401930489ea51314c,1,1,Lyrk.de.xml -69a66bfa688b75501e36d3ae7dff90d3511846689a28d3757aab2b290821439e,1,1,M01.eu.xml -7d19eb00dbdee30aac81a088c9fac36ac6683bed08617800e01ec52bb96c0cd2,1,1,M2pub.com.xml -3bccf3f0868ebbf667b70cd579a72d545259be0bb4031e06b1ce9c0cfd95aa5e,1,1,m3connect.xml -0543d58e7108adf6fe77cb43048db92c7284bed3903d22b30f3eac8c0654bcb4,1,1,M86security.xml -9d231e863545aa6ab658902eec4a64ef6340e10f2fb03959c1108aab863f0d3f,1,1,MaaS360.com.xml -342172ba363f805e1ff97d22dbd3b19a94fb46633f0d119ed9c353b5d2c9ebb4,1,1,Mach_Comedy_Fest.co.uk.xml -c3367a69fe543bb4508508bf1032147b95bfad9809cbacb6f3ad3230024336b5,1,1,Macmillan_Dictionary.com.xml -f26ab71a6d0fa28feb946f54a34cb1dd1155a36621ad45b939cd40b4d2f2015d,1,1,Macmillan.xml -34fa01a52e4ff18727da160f7c30c9b8babd5b16e4099465a3d26ec727944b26,1,1,Macular.org.xml -3c431c443fc150f08132c0e1c4b571f85b6a1ccc75f4d95b1fb9d56db0102992,1,1,Madison-Logic.xml -0adbdfc84201e88870ec14e19807ed1b98dd4d6acf6cd57a2b4a2ef5e499be74,1,1,Mad_Mimi.com.xml -5a5895594dc8b6a1eb3ffb163f2949bbf5dd4e4a4608ed0b3fe343888ace6b58,1,1,Madstein.at.xml -a3476e9deea05d95f675fbcfa7239a2e534907eeda4bd412abfaff8f7feb0f02,1,1,MA-General-Hospital-OCD.xml -e03e360aef39d86fde3123cde69e5bd5648d1db6f2f040f49a530539f34aa36a,1,1,Magento_Go_images.xml -41ef28902f0d5084fe9d85c2610eb0e4f1e81bc952b2607462808f3a4df0bb46,1,1,Magentohotel.dk.xml -60989fd88c2086073515182374adc54df5468d6e52b9a4074d0a5458e64b8c1a,1,1,Magictouch.com.xml -eb9347f580e4bfa678c53de3c5edf350352534366594fe17054ed30c015a2dde,1,1,Magnatune.xml -f6f2de6998253677b226bc645050c46027dab02da53e3d24628a1d5847ec904f,1,1,Magserv.com.xml -2c9f65d1993e8186863227af21a0af0f393b6276c234c6dc3015471911aa4291,1,1,Mahan-Consulting.xml -cda6279b1a0e24c543371d806f5ab537d8aef68a7bc8b6222ebffe86a4789b7e,1,1,Mahomet_Citizen.xml -d46b3cb7383190722524604ced70583d6f4b42eaa79759186178b801e97cd05c,1,1,MAH.se.xml -dda469d5096a493c56a1e85663ffaa5b77b6a75df79abd44acc5edbe9d1f7b09,1,1,Mailstation.de.xml -0574f873d084aeaadad6583735edea0b218b81a37d5205d2139a44ceacb21554,1,1,Majestic-12.xml -2e200f25fb2be8994964167b2584db302e43a9261093f035bcab3fbe1921da4f,1,1,MakeMyTrip.xml -eeb77187de3efc6c07b20bfb15ea4ffb65e95a906590f64bb4e2d85d3841a52d,1,1,Makerble.xml -622c233a65089f420260b03de125a2446577be65dee4a203ff665364d3641aaf,1,1,Makerbot.xml -e7649318375434c924601e2a5a85c3a14283669c07d5b9ed3fa83672ea3140ea,1,1,MakeUseOf.xml -b7aef7f65c4126ab478fcc112a410721f9b52c70411e7e3ae239e275a22bc45c,1,1,Malcontents_Gambit.com.xml -b2d2137c649be9c8cb55be906e56760799f000acad182d8e1655322f573e38ad,1,1,Maliit.org.xml -6a208a46a48e2e35f981bb13dc52c80ef32b213e4b961d795ece62dac8c5e8ce,1,1,Malware_Tracker.com.xml -8c61a8d9a02115d1f3b02ee441b890c6c1018c4295ff6d1eb4aa92140e0859d3,1,1,ManaBalss.lv.xml -f39f688438cd966643bab96109eb5b3e9d09649cd2913114ddef762b8caa9acf,1,1,Manasource.org.xml -d46bbc2df2dec4af0a0d1b5a9ddf5fa22fa10419abec4a910ca9e5841c141d24,1,1,mandiant.com.xml -98f88c611a69e2f367885323fca14d81e93a2cc45e1561d76b7af758e20bd7a0,1,1,MandS.xml -462e6ebb21ef66442067fd68f872d0452ad48d7d36d0ae995b4405a64b36ccb0,1,1,M-and-T_Bank.xml -604b839cfaf5d74797488fbca57c639ac9ad8f06656dc3642ac2a9986918985a,1,1,Mangaupdates.com.xml -48c6594a17bd3f925b65a1907339d25c506241b80e9c39572cb150b7d1e472f3,1,1,Mango.xml -05cd7c117b65d0376e7f6274f686d544317159d63337b9b1e88185d142a14c72,1,1,Man_Group.xml -c3f94737ab062a69d0440878fddb581b018f5c706219fe996cca6d375791bf87,1,1,Manhattanville_College.xml -9e5f0fe1c8a73005f1bd9cfe7afa55e8e26908217555a15258c7ee8b389029ef,1,1,ManISec.xml -49770bea4facaffc3223f5b925e5951cd5934cb932956923de356d544702d50a,1,1,Manitu.de.xml -a354d48dc12bbab8451197a1fb24fc7e2827bf214dc0b425869a709ae6857bde,1,1,Manticore.xml -88d9695218ea058d629c25495fa14abff6798dd322687952d353762a39a311af,1,1,ManuFrog-Webbhotell.xml -85d95b64aa996fbeb13e0a116fa4ddb21c5a4e0b8929acd3ec2f20d0842777d0,1,1,Maplesoft.com.xml -68b4aec318e2003b40efb7bb11ac3dc92a9863d0c3b69a951d7f539a04ade8b2,1,1,MapQuest.xml -bb36e083bd6761afcf4680ae0c9732d527f76a56e4845282ab8ae582a4024632,1,1,Mapraider.com.xml -5cc8e9306a41a8e604a989ddfe777d9a560def287d8d4bd52b66df140610b5e5,1,1,MAPS.xml -00b7672052625447a20fe86cc3662d4fb83703b86f39a8739c74e01061b9da44,1,1,Marathon_Bet.com.xml -4bde5c49c76ae059547e04d98ae445b05531388954def7772ff98cf8cabb5eb7,1,1,Marcan.st.xml -064f0cdc7c6fc4fbf48825501a4380592a4b33d4378c27a342c513e614cb4a1d,1,1,March_for_Babies.org.xml -c8b5c7b186921b43f6f217b4537a5e34274c01f4cba224f5f8445caa0ff49848,1,1,Marhab.xml -cc6fa1c4c6e3d41069947f6e78c963bb35cd03fb8643b342e5ce90bc41978bb0,1,1,Maricopa-Community-Colleges-self-signed.xml -19ddfb3745adbcbb1657a86bc97fdd902de3597159482351dfc73c0c298215d2,1,1,Maricopa-Community-Colleges.xml -65c226fdfa499b85417d89b4bf57ccec0be7d3a7390086e189e393d67b672ab7,1,1,Marie_Claire.co.uk.xml -1e46e7c62c3c77d880aee1ddca06b25ec74c1c254f6e60c859a775829b679c50,1,1,Marie-Stopes-Intl-Australia.xml -2658bf7f38a46434eeef112a4b9328865c836fedc7fc259a64b32be55fffc76f,1,1,Marine_Depot.com.xml -f4c7dfe45cb0e35365300ce654feec069c5f0d57bc74d8f9b3d1941deb81bb17,1,1,Marin_Software-problematic.xml -5f42b24716311ad353fdb59c213989aa4f935ad6a0782db9c0a338367e8054b0,1,1,MarketGid.com.xml -4ca88f3082a511ec6261eac3739c6a9a7f9a870a8b15bc2b8947bb1820d211db,1,1,Marketingoops.com.xml -97435eabdafcf77b3bcd2029cd54c28639f180acf84a9467028ad76cabd18a85,1,1,Marketing_Research.org.xml -64b6ab2fb92685c4fbdea5730dbef5157ace91ff93b8245409e165d4782e7774,1,1,Marketplace_Used.xml -c966c24740e3028c38630b589d743614fa07ea77e00b5a7d89f32e986300f570,1,1,Markit_On_Demand.xml -c5dbfd25c948f08f782ca4e9f6122fa389c6648c836933e17b32275d95a7b10e,1,1,Markit.xml -dc2d529ddeeda9cf9a007f2ffaac310105626c1af7c1e72455cbf4f75436054b,1,1,MarkMail.xml -2ae425c78980cfd9132d6589c13a154bea8cf0b44036d78a1e61c301a2049ea3,1,1,Mark-Monitor.xml -bf7cbed17ad5c7fbf32749386ebf39fd4a33dd4a049ebd991f17beea5da040bf,1,1,MarkRuler.xml -cfc03d659e321e9e100b4c55efdba4112f5ca5eefa16f6c62835d5c6dee6860e,1,1,MarsHut.net.xml -122a211832b9a5584f9367eb69489c8ee7323ba094af5a6a9b180971aabe7869,1,1,Mars_One.xml -6a87d0a4f45f3df6dbeadd66865e6a5493419079f1f9c73c69f607eb9e1a123d,1,1,Marsupi.org.xml -4d7e73d38a5973101491ac53137bae43d671a38ba3dab6a93d328a6eee02eb1f,1,1,Martha-Stewart-mismatches.xml -a048254c919df95439a2a9f957d2aba48fdbe60c6f55f5c92dcfafa831650794,1,1,Martha-Stewart.xml -f9e847272113d7bfa60d8586f775224646a00ba06774a30839c593aa560696c1,1,1,Marvel_Heroes.com.xml -f4eef420ea67011a55abf9ceccc3d316035725d11372e66b79ccae2b0ce32568,1,1,Marvell.xml -4fc78a7ef2554217ffec575d1c26599993f7eeed10e7b0b10efbc96f27073506,1,1,Mashery-clients.xml -684690ee19c661afffdb7982a6920394bdc801e74563ff969190a99af8382891,1,1,MassageMagazine.xml -a88f1f117d08242472b485c257849d5aad3c979025f7e4076a675b91840aaf6c,1,1,MASSPIRG_Education_Fund.xml -fad1e9456277753a46db2b67fc5d40b19184cffbfcbd358329cccb0a4c405f8c,1,1,MASSPIRG_Students.xml -ea61200c48a6a1c14bc3982023c6cb008c8d6da025ff04da161cd4100d4396a6,1,1,MASSPIRG.xml -1723ef3cabdc0053e8c43935870345801f1e7a394402aee29efb2939596afae3,1,1,Mass_Relevance.xml -9774fbbc10a1e454d34b8dd2ad71ce16e15b489aae9472cf7c3330bdeb2ad483,1,1,Matalan.co.uk.xml -4d52d23f40bd3606c43a447009e70e8cc92fb90e447f90988b9e742cbc4eaf62,1,1,Mathias-Kettner.de.xml -906daa7cefba73217bb9c12f959c6dc28ff519e746cdb3bc3e44c61bb0b190ab,1,1,MathWorks.com.xml -6d04bb07541498ec67175fe7e43d0d4cb844e28517e4676127e992f3be342756,1,1,Matomy_Market.xml -9b9632b20358c6d8f81e3f52001b26d75789c8cf5d6e14f513e48b6f3131b0dc,1,1,Matomy-Media.xml -45179df1cde238ae36a71879f7303efb5d0cedf80977d8d192fd27d06a803982,1,1,Matrix_Group.xml -4e1a21e32516e0deccef6719c5b8c727b6ff242b3635c6cad7edb4d94100e376,1,1,Matrox.xml -3956202a31b39b54bb350eb7c1c8fb2fe4421fa8e9fba93086c592e3727fba26,1,1,Matthews_Marking.com.xml -deb159cf55ae50055c8d8f69ba99cff5cbf35e49066ca55d32f4c122697b87e5,1,1,MauivaAirCruise.com.xml -697fe95b738c4fd25fd297d657a2f4b180aa1af10b715018d6ab97bb357a0052,1,1,Maurus.net.xml -f76d439b99fdba6dbce1cf23c8a505d5a615dd39f3ebae455c04ebb15a201acf,1,1,Max-Planck-Institute-for-Software-Systems.xml -b65dd89cf3648324c4f06b6b8342d6aa4546ccaade7ebecf435e62af3ca25f3b,1,1,MAXROAM.xml -5e643a0f61f97dbeea974686945fe268d066a0ab13f4b32476e38df89b7173b5,1,1,Max.se.xml -578a245189bd6c31652cc2097e80cec15625f3fbb84eec75ef275f2c84f667be,1,1,MBSportsWeb.xml -c3d44c416b117c7c41b87aed90e09b327d0bc85f8c73da802f5f9756824707f5,1,1,McGrhill-Warez.xml -8b75b95117b75f47d69e396a5e201cb0b857a57778404db2b56305b43ce6b565,1,1,MCM_Electronics.com.xml -9f22004e6f050351ce543abd73bf9db38c4bcb4f3f691bc452d9f56362db44f4,1,1,McWhirter.com.au.xml -169f5d7a71d2a565c3db9bf616e59ab2c87ba135adcfe1617afdd6ba70db5c26,1,1,Mdgms.com.xml -e18e7618918c0fbc433386a096fad69825d0d259adb9acccba7661d5214b5221,1,1,MDGx.com.xml -4ad79cf1cfd79bc4125c5cb83523560dc2c807adc28c3c6eeeae02a263f336a8,1,1,MDH.se.xml -598f57a1cb07bb40a706984bcd19a35251f2df3b353a3c959d16c5eccd2f043d,1,1,MDNX.xml -9fcf975a9d4381ccaa7ec46373ee44478d1bf60af363e5323ec3093f41bf0130,1,1,MeatandLivestockAustralia.xml -5c3f9e9594fd2136e76be06b682e4dcf281c5b4153eaab76026fd527212be1b5,1,1,Mechon-Mamre.org.xml -b2066dd1bd47ff8a7a6259d3a4059070156b77a661991127cf21001b109551c5,1,1,Media6degrees.xml -a3b6aeef083db1241e1b5239cc11c3c70a3990a2d409b93c85726bde3a266f42,1,1,Media_Factory.xml -2206b712d3da7e0b72ae87eaa7ca8e2c011c0285df551334334b6e6748c9f533,1,1,MediaHub.xml -b35ab67041d795e2260b394b27c747f3226fe8c571e5a75f32526834f5f63620,1,1,Medialinx-Academy.de.xml -bfacf1df3246d1ddb9f17c00f05760386e9c1459fe1c140bc4d21944157557ba,1,1,Mediamarkt.se.xml -16df074dd91eba1e388ee4cd5452f790bc68dcefa11e471e90f3be62c5a91fab,1,1,MediaMatters.org.xml -3a1a3df6c17cb365fe8f5b4a7f5e07b51484552555abd5332cc80e3b9c98009c,1,1,Mediametrie-eStat.xml -6c54ac9aba9e9cf22c185d34738dd90d3022498e4437fe8304ca079734584d7d,1,1,MediaMind.xml -f38f5fe8efdfba7942c6fa3b8ed22d343afc0724d6e38be81636ed96a8a3a0ea,1,1,Media.net.xml -7e8cd0fef72f1bb5972a779936adc763921cf5217a3dfc91d1f1062c34c80170,1,1,MediaPost.xml -cea6114526cc90715d8174513f29d6b7ea23c8a4787b35af2e4b59e41684b60c,1,1,Media-Proweb.de.xml -a3a082c4b5f94399c10578101080f86f9b63c32e669ced7f1a3df21f5521d717,1,1,Media-Storehouse.xml -5736e8f375e41f54c191847f1710da2a6de24cedbc2e4da90f40f9df6767ab2f,1,1,MediaTakeOut.com.xml -eadcb7d64550b5da37f10ccf54db8ea5cc3bdfc8a4e344785c3a8fec12bcaff5,1,1,Mediate.com.xml -c5d0870a4d83044988f3c3af47c75b8426331527ebf751558c6bc1b2ce727c99,1,1,MedibankHealthSolutions.xml -98986dcd9ad84d78418f3666d9631391ab55baf2fba93a4be9bd466518d1d66a,1,1,Medscape.xml -fab6bc5c7096ae84b99ac072b22de5efc83ea9d939054831811db8fdfb456933,1,1,Meebey.net.xml -be7930d5a9381f9779306bd4abfa902055e5493794a7a2c3009edab45f568804,1,1,Meetic-problematic.xml -f1762ac3e1f9055f8055d57d3fd7ad7fb33733c38d3d800ff7198c4c43943003,1,1,MeetInLeeds.xml -85ccf33e1f9c7ccba62d5c31f22ac1a4e2f5e6065626088021fb606095cde46a,1,1,MeetMe_Corp.xml -da9e6ed017a4857d36a10b8696d716f2268a7b921f012074d7ff6f8e6c6a1b51,1,1,Meetrics.xml -d3b4dcb6411b0768f63f82ae89e15b07f5884e72f0b49398318e885b1bda1c38,1,1,Mega.com-problematic.xml -e7034b4d62408593651f88f6fea5b58f9d7ac86cf01b03f8e56adf9ca757a9dc,1,1,MegaFon.xml -b2e060a4272b2a0fa9c7feadb8b06f16f0ecc1f1326995b1fc0dffd7ca19aea3,1,1,MegaGlest.org-falsemixed.xml -3f62dfa082743ae44953e0fecfbe1998f37dbdb6a214efde4ff129b571a25a77,1,1,MegaGlest.org.xml -07ce5b9522a5bb87bcb86b62682c9eeb8e16bd2ce08208a1b71cdad7ca8528db,1,1,MegaStock.xml -f5c06af1dc21901d87ffb576cc29fd75fecab17ffd4afc7e0e9673741cd2f143,1,1,MeinVZ.xml -d9c31f012f4f94627f6d8888cfa91ac62cef9e3afed871ecac091fe211531a75,1,1,Mellanox-problematic.xml -b5541e596d343de6ac7f39223a9fc7c06ce47c438d9defe9116ba674062af063,1,1,Mellanox.xml -237be4ca6effdab98487980682b9394da62ae64a89aeeb02884ad4913e96a58c,1,1,MemberClicks.com.xml -eaef01e50024132334d995f459f0f3fcc9e56637833c501e91dcbd8dfec3073b,1,1,MemberClicks.net.xml -e47e56fc2167bb71faaff4eaf4662649906521bd26184dcb825797080cda7f60,1,1,Meme_Center.xml -c5de1e13613e8eeb7384ecf45b27d4803aade3abba654ca1905db8daa2b0db54,1,1,Mendiant.com.xml -794669fb05be6a00a168ef208dd01ff274bf97b4fceb70bbd042f028553962c0,1,1,Meningitis_Trust.xml -83b98fb018f5e976e289dfcefce50a3c9760aa54f0559c78e653a3091594d38d,1,1,Mentalhealth.asn.au.xml -d9d780181e6b685923ce463960f139165dd4b6a6abb333a07572740b8eb10ef7,1,1,MentalHealthServicesinAustralia.xml -cb81d1cb873f0e27e85d0f45a49f13a6b09c8d888a38dfdd37ac5a6646c4be30,1,1,Mentor-Graphics.xml -fd0ef3fda46c95463436c8f8541c75d21fdb7cf3af8a51bbd8e929568fdc4dec,1,1,Mephi.ru-problematic.xml -1c68d8e52e630e6191f64a996760ac08bb1b930793b0bcde74dea65442456168,1,1,Mephi.ru.xml -e136541df32930a0fb83cbbfe425e30b637d21d6873fea0bdc19c43a00b5d462,1,1,Merca20.xml -e036d076a66acf5d8e573b652b5e6ff6639d9ae0972240aae7676cf90e06181b,1,1,Merchant_City_Music.xml -877fcbeb87d8752e0984aa73905b050c69cbf5faa500f100474a7036869f5df3,1,1,Merchantquest.net.xml -f58930610ba69fbf26cbe4dba6e1cad5cf652b7c6458747d16a81a53810b3b91,1,1,Meritrust_CU.org.xml -5c83177eaf1f2b147b32e6adaf27c9f54d2bdbdf929918fef8441d5349347991,1,1,Merlinux.xml -9d0fe26d56c89ae00a02419978c91b7f519de7f81e0793b282a395a65e5b893d,1,1,Mer_Project.org.xml -6adb9b386e5aeef6a485e0b7012bd8f20dede00d085d314cedf427b63aaa2a74,1,1,Mesh-Internet.xml -7c1cdd78f922226f062a491726c2899cff4d9cb136293cae3f70adfaea4e1ee0,1,1,Messagingengine.com.xml -46f31409aa718eb62a9d2d208bbd65bb5e6419929c17b15f2fdc33c4afb82c4a,1,1,MetaPress.com.xml -5027a1c0c13407181d69dece1fbb52810597b04019ff119f62d5325000295fd9,1,1,MeteoNews.xml -abf0f31ba0d86a12a707249bad767147c28b740f51214f54ffb42a8f780d9bb8,1,1,Metropolia.fi.xml -fc7e04f2a722f87b5dba20f6a548c1d26df7facfa98be2e09962d0b86506f34b,1,1,Metrotransit.org.xml -0f44d42b1b70c2b2c1eb90634f8f1aff51a0d03b74d1f97334e55b715db851a9,1,1,Metro.xml -aa95afb8c908b99e7c357547b29a1f19f3a93bd37683c2f68049f39ba6d9df48,1,1,MGID.com.xml -02d77df85e09523445e0e86b04f0bb16c67bf3362b2e30bc29cba2af23ce2a0c,1,1,Miamire.com.xml -cf0e1f63c852bf8deda4556d2372641f3fb73ffe0e7610cbd66daa92c09c98c6,1,1,MIC-Gadget.xml -5da974eba7d7838e07957ab4c9f72058e303025137f837907f1491e0f47d5ba0,1,1,Michelle-Bridges-12-Week-Body-Transformation.xml -205f20658715836d564c522da3c9c42cb547bce9bda250653c498c414a02ea0b,1,1,Michigan_Campus_Compact.xml -53433d7e1702b0941bd5125a116ec281041d9ee92618f306c103d832de51dea4,1,1,Michigan_Nonprofit_Association.xml -2c0230f2cff2ab22e873fccddd77ef7eb067a5af8b1ea6ead19eb11a7fe17e11,1,1,Microchip.com.xml -237e0ae9b91aacfc780f20782d973b8ee4197d7165a068e46efdcb6c58f0350b,1,1,Microchip_Direct.com.xml -b195c75b64f391be38bc74da007cb9a59fd8a1049291c5f949b5847b16097641,1,1,Micron.xml -206bb3a607259fe71f807da8d8d846aef174f1b18c220ac4871c6cf75022c4d2,1,1,Microsec.xml -7b100b62a23d14a4e21a5f4775ce4f523326901c2464aeb6299fde517c42e32e,1,1,MicroSTER.pl.xml -0aadb7ad42232edef2619a06c400203716310aed77e66417c3a11e1d49d4d744,1,1,Microtech.xml -fb9361e5f9e26090b2ca7030c712c7ea214e7a531c650819ad8d7769a2538e0e,1,1,Microtronix.xml -cdf7d74ca7ea2e828d716f9762ed2310bcddb76841f0d99e451bbaf039987e4f,1,1,Mietek.io.xml -42ed3b02355d3fd3eb14882c754005873b44246b6aa7896155ff4d94b4f4e2cb,1,1,Mikrocontroller.net.xml -6d642b38ee012d2b982c45f735631fb60010c049291b4687710dfa2fe67a05f7,1,1,Milchkind.net.xml -49454ce19e87eb6a6f02462b4568965bbabb5d2a1b7f5f9ab7efa4fd7432217f,1,1,Miles-and-more.xml -201682a0f3417cb1a03e22e0fff8bd95f5eee3fbd4f91d305149f69ec3103858,1,1,MilitarySuper.xml -11e9ed0fc77fbeca9d9674f77b9c7768ebe23b00811900a4ac8799c746bbf8a7,1,1,MilkAndMore.xml -e4b8ae811aedc4e4e389b6b173e370b7981160efa506affe23d0d3c424007843,1,1,Millennium_Seating.xml -9933ac46f01148ebe2ff0c5bd75b56e08063a983df2e3d61715b1c3fb03557e9,1,1,Millward-Brown.xml -835ad6f02f0eea1e5a30f1bee9bd82f033b98f98c3e00dccae023635bc45ec84,1,1,Milonic.xml -af3890c06b20603e5ff9e37bcf64fb446566a5604668cadf0f2d7d4c0b5309db,1,1,Milwaukee-Makerspace.xml -647b632484bffafe1511b446ba5ba4cea8cea793bca7ba324612bcad00520e73,1,1,Minalyzer.com.xml -7fa83c532ebdbd2a1ce3359dd51bde4e957d0d673fb2f96b9a25f750da9c5b8d,1,1,Mindhealthconnect.xml -5a99e05edde4983f8233ce53d6a7170fffa5c915fa5eadf939d7fc16ada645ef,1,1,Mindshare-Technologies.xml -6917e8679b51d2addc44dc837cf903c37df6bef13ebe7129a8d0aa92117930be,1,1,Miniatur-Wunderland.xml -b942511aa5e4de6bb7e4e5dd1a2367a28f03e83eedfaeedf53c161de6b347391,1,1,Minijob-zentrale.de.xml -8c7329398795a8710ff59ae1d50d1d4e119296f6e34a1422a8e29a67d2267021,1,1,MiniJuegos_gratis.com.xml -6cab69315be3b7f7e6693df20e4640474b93ac96f52a9c84553f237661f97434,1,1,Minix3.org.xml -f3a697540aaef0be6325b039f1a9ba7dc726832ee3eb7f859294443cebc119f0,1,1,Minnesota-Public-Radio.xml -8cbc58bf98c78566cb40523279933230c7fce27400613090fa2a02476ef60301,1,1,Minted.xml -2d95c01c2dba90c6e4e2c7294d36d63fb8c410645c9baf905737268445494ef6,1,1,Mint.xml -434b8aa180163316bec15bf7b3e602c5a6dbb2bf7921261a40d307a6558b5fa7,1,1,Miranda-IM.xml -6c223b9ce65007f261214b35fcf2159a01f0f18dce768bf330106f9a954a07db,1,1,Mirantis.com.xml -09cb67edc92fabdfd6ce3ad9ed0a50a6fe0176b9a963ac378e71b5e28c8eba71,1,1,MIRC.xml -003b860bbd9b6e48cff73a165b49a28e49f1fb430f98528064f35c024e18d742,1,1,Miretail.com.xml -061236d61478786e14d8053a3363db41586052cc3c914520a4abd6853467f347,1,1,Mirror_Bingo.com.xml -9d8fab8adee46ed120024adf277f77a07f8b7e20949e017f80f9697faee06667,1,1,Mirror_Image_Internet.xml -2fab3b5ae13f2fa84cac1b55ad4db417d235bb8c5b29182ba71fed019e20fe3e,1,1,Mirror_Reader_Offers.co.uk.xml -4e48ba7a586f6566dbc67fd660d0f7ca92d062fa0143627f74c2c6957179474c,1,1,Misadventures_with_Andi-problematic.xml -f906ce84907f11084050efc630a4030ea527c6e907ae99f10d3a2567f1775cd9,1,1,Misadventures_with_Andi.xml -2ff3585db12a09dcc7ce2218ddb43eba82e33b365d5f9071f14ca094566b0f6a,1,1,Misco.co.uk.xml -b5818fc8e5e97bca79fda5b162957bb4a623ba597e2ddab3d522cdf2a077606c,1,1,Mises.org.xml -29fcdaf098e9079dbf7d1962edc0c29be9fcb714083e40a5019e7e6aaaec6320,1,1,MIT_Press_Journals.org.xml -ef78bc469ee9ca1c5c6b5b7c55101de1b9f2e9bc5cb7635f55f72600da08a9c4,1,1,Mitsubishi.com.xml -c4c92a7376681ef0c76224dce112d5b4aa7f3e765e1d94c5065839d75e7066a6,1,1,MIUN.se.xml -57642f122ee9f96a892571cd89d0ddc346378afa3a0afef8195d63249c659f67,1,1,MivaCentral.xml -b1391a03546c4818eb7cac3b981ca001cc3f693a98265d3edef08cffd023b251,1,1,MIX-Computer.de.xml -76d41aa2beb0e3913754d27e3ef4e21e3c585b31fe36dffeba8dd340621e276c,1,1,Mixi.xml -104069379a7ae9c4a604dc1962c211b92445749725187b1c18932a69b18d668d,1,1,Mjam.xml -5a4eb33fa51c3ba4f64d634403848627ba898f024f0cbf4c19b166d0e5d1a235,1,1,Mktoresp.com.xml -03b6f29831d19024dee4e4cb3ac615574e779fae1b58a1c6d24acb91fbe4a850,1,1,MLive.com.xml -ddc3203f686051186b20b88e459820135eaaf3aa50e5c4816c456d6445eb152a,1,1,MLP_Forums.xml -62e11962e97bd26df73d38491e0bd3cba32f9a80f6d367b2e9566eb0df735548,1,1,MMAHQ.xml -a98f3b935a1d51aa8298b5a80e4caacf1b00888e0a75089f6f3db0bdd4e738ef,1,1,MMOGA.xml -3f5c7ddd043ad508aac3e6159c76e8bd41fcd37abdaa141cda95d8a685e20cbb,1,1,MND_CDN.com.xml -18343449d95db648bfa46a15c08f85c4932f5492977307f2437d1a58faf006dc,1,1,Moana_Surfrider.xml -f7aa20d5eb594ad6714f0aecedf5b55b6d9b6cf8be092160dc89d631b1ca89ac,1,1,Mobile_Asia_Expo.xml -13a518ff8ae813aa66e2eb9ec67f34ecc7aead4a78e95046d18eddf8d039795f,1,1,Mobile_Enterprise_360.com.xml -c50a74b47e0a1ffe551d97307b99d692a4d15c4f6d6eb27fc150f54b660ad90d,1,1,Mobile_Nations.xml -ee597a30968e3fcc5470ceeef5b7ab18cdac35b691c708119fc085e555c39d7c,1,1,MOBIUS_Catalog.xml -85d09ce9808a0c08036dc37018a548992312935113fc3f589a6d9ebf2a07f2c7,1,1,MOBIUS.xml -6740d71dc20cb018a8808cf1fdff3032705b1fd79b467a42f4489233e0fed651,1,1,MobStac.xml -ef525a968490246433866120f8f3639c161703aaa6f5231babbd614dbb8752d1,1,1,Mochimedia.xml -2aeed5b7608ed2cd5fbf95b9d233412e2b384dcb179cd0cd0b4be180f3a7b1c4,1,1,ModCloth.com.xml -92ade4bf454341ea607fc18eda3f160e13336fa1303c20d35e270b4624e40036,1,1,Mod_DB.com.xml -c93e56208e2d04c838c3476f190220a1398b6fc9678cf06bb1aa0de83a8620b4,1,1,Model_Mayhem-problematic.xml -85220eca1233070b88064de78be2824584bd455896a606944ce325d89bff9bfc,1,1,Model_Mayhem.xml -19b2916711942af40946384935513b81a590bde2df01250385923440015ea993,1,1,Modernus.xml -04bdf28f96d47603c35f9caa018015e47f846c2dafc35316491737e08226e022,1,1,MODX_Cloud.xml -e01e2bf07a30b63ccad431c4c19abc618de4567d93ed503b9643fe62190f202f,1,1,MODX.xml -b1e394fc6288df5f9d71a5795a3cfa2d868caf9a2d390259efb4f9a10aaa9e55,1,1,Moevideo.xml -5719e7ed8ea7aaa4f6c252a07860fb7fa0750f3fa47c52596721331852b215b6,1,1,Mofobian.com.xml -3997a801af6fd6d05022aa8dc93454cd025cce3c3b888c3e71c0a5bdbef441fc,1,1,Mojandroid.sk.xml -4decd848d6ead12ebc698302e49ca1bb187ff1a6f1894ac4c46e6c9903432125,1,1,Mommys_Little_Sunshine.com.xml -0461d301d68302af16379e815c6fb5de2b4caacf79ffaa20aba851753b388ff2,1,1,Monetate.xml -ffbf6ec6cfeef71b445211a87e4abe5ef1794e3d4fadb7d684ac90ac68533790,1,1,Money_Advice_Service_UK.xml -617ca8a16ef9c021485cfd02e955e5bc0c3e0f71ae01a9028c3045bc17becaa5,1,1,Moneybookers.xml -273e682828872867f92a2d55ad5b000fa076476731cc087f220bf003816625b9,1,1,Money_Saving_Expert.com.xml -36b5b18cec1c6053b839b2494fe6a9cc04677550a912ae7c47a8798e061720df,1,1,Mongabay.com.xml -5815a878524ef05df0e2e12eac100fdbb8ed34fde5bb861c2cd87813d647d42c,1,1,Monoprice.xml -aae2b974d06ff8cada6f693625e967c89ed2c4dbfcac0885da285be6b1f2a4b5,1,1,Monsoon.xml -16b17f054165cde5317da14eabc04cf40ed40f40f187a46a39a7107e46877ffb,1,1,MOOC-List.com-falsemixed.xml -d5fd944719061d5c68cad846b8b479a3010bdd26ea072f677c0e77b09ce61746,1,1,MOOC-List.com.xml -d81ecd8589db295fffab19937fe47ed705feaee2204af4290985b544c6f36cf4,1,1,Moonfruit.com.xml -238ba4857662f3a517f6702615d82e0a1789818c3f8e46200e18fbcb940206a9,1,1,Moon-ray.com.xml -ba26e7795767013528cc1125b6156b270e1ef4e425ccd4b7b20f10da339c45f2,1,1,Mooshi.com.au.xml -012a310f74cef0d3cf2d8670ba22d9fa800b99881a8e3f9509003bce5f7e7bbc,1,1,Moot.it.xml -99fe0b38d28ebb79cfe8d3888f28334dcdca278aa8a45fcb3a9a397c95708509,1,1,Moovweb.xml -b5945e6598755cc7fdfb240bd5db03c4db2255b7ce9f7c214febf94f4f5c13bf,1,1,Moreover-Technologies.xml -4098104d988c1e099f8131293582ffa74b214c84a0a6993f0dcb47dfdc166957,1,1,Morningstar.co.uk.xml -dc6bd419a79836f6d7f066353e0e119246e3ef0ad773d349107b3a545b5667cc,1,1,Morningstar.xml -06558325d916258454668fd676d1b26c4d0fd1de1413eb5256ef48a1956982bf,1,1,Morrisons-Corporate.com.xml -7f9c532f1e7717d4f19719fef2a3c541c6ce15cecc5ece2b5ff81ec48d07d55e,1,1,Morrisons.xml -e53b3dc48c8ebd8f953aa97db6e25331e51bb2781deac42f66180111e86274c9,1,1,Mosaic_Science.com.xml -ee288ed07a36d6c17d809e2591baafe858ef2b23ab7e56858879a37ad619d2e6,1,1,MotherJones.com.xml -9ff01f7451d40691041ce184f700a74a77d67f31caafb8c3ca51d2afb9c7dc34,1,1,Motherless-media.xml -6b4d8b8bbca99cd49c35ed81feea4d6f9d114213c670b2fbe7a947c8a7402dcd,1,1,Motherless.xml -28a1b8fece126fb6620710ba56206bdeaffaa183d651c6c1c73a01a905de9059,1,1,Motigo.xml -a1fa4d3ec8a62b93ed15cb141d7695f212f3dea2ddf0d4bce8654007987fd390,1,1,Mountain_Reservations.xml -bd3a39ce9e5a7fb31ee47d855f36ae946d9d5b113b5ea350c06fde10c670d27b,1,1,Mount_Sinai.org.xml -deb64c0b599b97026e2c3cc5dbf98968931f0cdf37103209d2761d73eb4562ef,1,1,Mountyhall.com.xml -3dd9d23169efedd2951c904390b77b6a927282737d4a7a7918f7bd44cf3a8e2f,1,1,MovieTH.com.xml -bf92f91a29f1233ad7de9d82343a31399b0e448c76c6c9bfb7d4ac5a2645a4c0,1,1,Mozdev_Group.com.xml -20079f5b48d92ad4a1814d88cf89b1455e4f1f9c1aee39a76aa2655d23dd1dc5,1,1,Mozilla-Russia.org.xml -4f5a4873c31e89c02774d3bb90f34065b1e1ea2cbbb29464eb446132a870d23a,1,1,Mozilla-self-signed.xml -486132cff3ff4030623747d692d77310df3fcf8ac494edd8d735d87a60af69c7,1,1,M-pathy.xml -5847647ede4788128403eb6656d53a501ccb9216f4c440f71a70bcdd72dc789f,1,1,MPI_web.org.xml -2c6f94fb29929b6df4b8d73cfa4205857975f04b9debe9e3ad330f13a889bce2,1,1,MPNewMedia.xml -12fa5544bc97790a09c6ea91753724f70389e87bf03b325c0f4213d25f1e6386,1,1,M-privacy.xml -743d8a5b68767e40138a06b7b5c3a1818337da7cea2ac37a282648b50974d04d,1,1,Mpx.xml -ec70fa255895ba360493d2626c45911c22b80a49c5df9cb2f8f137846ceb0423,1,1,Msecnd.net.xml -b0bc2840cb751ec0107205ba4f78a0fa056e4d1975b007afc3327ca6766000f6,1,1,MTNA.xml -936133466e3736e98e6e32db85ccca38067eb28e7fbf44f754b740bc52c9a2b6,1,1,Muenchen.de.xml -1412a1bdf9c4cad6758e44c6d3bc30db0cb31d47c471aaafc86e53fbc539201a,1,1,MujBiz.cz.xml -b818d7a60233478468b0b7d9f5950c83140e00f7d8786e97ff357e2f20dd1c66,1,1,Mullet.se.xml -8f659a5f020643a95f497c317d70dffe3c1085456659c8852641169423677997,1,1,MultiSoft.xml -8f1f380d1c8e4873b031a62de7a1fa17e2e1e79940cff1863075fa097b1bd2f3,1,1,Muni.cz.xml -c58b0ec0e700cd61034867c663680015925abc9992e447c142058a867d553912,1,1,Munzinger.de.xml -1a7511feb844171b7d853bc0273709cdf66649de2c2534ab1da21d6f5edf4cae,1,1,Museter.com-problematic.xml -edd7abe5934e45e58d30278955e07deb2f6876e86b6554a2aec782f86e6bf134,1,1,Musicnotes.xml -e41f207003b9afe7291c3244ea2482c629f4f232f216f4bc021153323c36dff2,1,1,Music-Week.xml -f42b8995cf8e8f8bed79d16d7155dea2522c8ba86dbdf63d5d82f88dd55fd614,1,1,Musikerforbundet.se.xml -a55f4dd4c497c4caca6dc1b2e6a0a327744b7a6775fe79274cfa3d4f7c4aa2d7,1,1,Musl-libc.org.xml -0f73071b314cee1ffbb568c7fac974874423f298642f281bd729164a15b859e3,1,1,Musopen.xml -a19e5b97bfe6d7bb1d51aaf0be6a16ff21072561fee3fa8770507445581bc71a,1,1,Mutantbrains.com.xml -79c31135f565720f20ee06fd013d3d7cf6d5c1bae58fcec294f31978abe1f21d,1,1,MVG-mobil.de.xml -a8acbcf986630e56ad99d3109909ed9dee8e0f5f59a3ec701b7f2636e414cb76,1,1,Mwave.xml -7378e66420ddee33fe3189f9e9a7d611bc9e15edca5d8ca05c615a4cec99c992,1,1,MXGuarddog.xml -ea72f3def37242b5bc428988bec9b0cdfec40c244aebaad1a852d2bee897a864,1,1,My_Aloe_Cleanse.com.xml -f12f85ad980c55abd2b90de5179b44d8b8b2c8fbb5e5d6059197772225ccd701,1,1,MyBuys.xml -9e11b6c72dbccadae998b9fdf1060261e924cb5c79d3feb8beb3ebe60c399ae8,1,1,MyCalendar.xml -f6888bc491b4d47632b596404111b60304432c3fdebdd396bdbc31ba6b6a8b39,1,1,MyChart.xml -6537c184cc2e52884ba673b1185e8f64a2f41edd030ebc01a7a13c1f34014729,1,1,MyComputer.com.xml -429348005bf25b6b19db76803c229a66b681baee6b2da4bc353e1a26dda31879,1,1,Mycotopia.net.xml -08757064a7dac7aef746bad690b63d232a87b88ceb30e9154af46f366acc6db0,1,1,Mydrive.xml -d11a91908efe163ed8f7dc3d6a99ec8fbfe0e9ca75eadf18ad1602291a1984b6,1,1,MyFreeCopyright.com-problematic.xml -cc88b41661c869975a35a7af8b045c82199f2ccc487165fff368523fbcf09dd0,1,1,MyFreeCopyright.com.xml -9feda71a258878a709043575247de979591811963f7390f7654774021e2d1479,1,1,Myftp.utechsoft.com.xml -4b89388d8b0e5f2c3f1114e50a5448bf371c53ea1a0b3bffcc968537df955ee0,1,1,Myhappyoffice.com.xml -80b320c6f12e507e8698c067c13bf68374db62c7e5547f066af0e321fb466088,1,1,My_Healthcare_Contacts.xml -49975169395b70634d47f96fd0d6677edbf07c3bc360a2916e23f6e1d789f02d,1,1,My_InMon.com.xml -b3dc3da4b0b353f094678552e0f8cbcc05c69441269c041cbed4789ff47d67e3,1,1,MyLeague.xml -a4a4dce3306b45f0e6763f4f8ab14a3af545aea5c1b68ece9e51af9170b4350f,1,1,Myregisteredsite.com.xml -86e4b152e82727bc912dd7432e0e220ad0c6b227b2c5b2f2ec6d83621740a87b,1,1,Mysn.de.xml -24d8bde990098ee1fed9b972e657433a4c1bf758a46d4063a668d58a2195abe2,1,1,My_Sullivan_News.com.xml -d616a9d05e8a5cc6f7994b9a4ce02521e006de2138695c1fb9881ab0504b0b9c,1,1,MyTextGraphics.com.xml -d9d037ffaa0d96eadc704dcfe9933c34961a4f1df39c800f496cba49c7174775,1,1,Mythical_Creatures_List.xml -51496a84acfa839177b6d3636feee6a8a7819b4ccdb0b6a3878839c1bd09f5fc,1,1,MyUHC.xml -0c93cf289fce2d96693ed29deea552de24c3786c22a16128cea8b565e67e422b,1,1,MyUS.com.xml -b913e55dc6bfbc9c01edc498bcc25103959427038f9fc37e934e0277146ae617,1,1,NAB.org.xml -1cda769f31252f55fb2126d7b650a598aedea98eded4591019f49d9f73f050d7,1,1,Nagano.cz.xml -7e5dcacd8b9a9510641a366d85b5a9b5e751db6e8f2997cfad3d6392a1ed5778,1,1,Nagra.com.xml -f9b8c26b55a67a3355db3cdc875bbfe6e10f2abb68ba079d108b41bae9e46799,1,1,Naiin.com.xml -2d938afdb4658e4c2cb14f36beb8b772fcd239d6f2fbf37c1413636c06733fb1,1,1,NameMedia.xml -e567c9f23505545a46c3f2094019189ec0bb0753d4042e09b9c3e4e4305ab2fe,1,1,Nandos.com.xml -a1358df7485f816f8f5f134d7ff5b3aa1296092c85dd0a30741993997d69595c,1,1,NanoHUB.xml -8b0e9837bb092fba613041ee2cc273782833a14db5e27a3c629d07af2d60eae3,1,1,NASDAQ.xml -832ed499cb7b299eb9f3b1c911b0409ef585c2c462dc6aa269a8ba297efabbb9,1,1,Nasjonal_Sikkerhetsmyndighet.xml -5202543aca168affc1628b8f70fbc93d8022ad487533e8c6f57a6178a5974fb4,1,1,Nasuni.com.xml -611a187fc26079b456f29744b2310f6cc461c01572b0056ab59a95cff0d7eae4,1,1,National-Academies.xml -28d8e299d8e8d33ce97bb491934ffbf5d64acdb80543135f009bd43f4ad4c66b,1,1,National_Academy_of_Engineering.xml -0c7a3d152e2a0809e1d00da01c544f68c2a1b7fd5e5457ed7fef0255b1c8b33d,1,1,NationalCapitalAuthority.xml -2025891cb707c5cb4bca8f7cfda7411a3b7c03084986c794c01d9966646ce307,1,1,National-Defense-Industrial-Association.xml -b8317133e03efaee48297bdb5c09b95e33a56f9c20cd60e6edac0a1a4d86661a,1,1,NationalE-HealthTransitionAuthority.xml -0faca68701fed7d481ef2d407adb2988bb09737e4256fc13d94de4d50be29dcb,1,1,Nationale-IT-Security-Monitor.nl.xml -9bf2816c0496a7066972ea5e7225f77e2646848ad425e3082748636dfe26f41c,1,1,National-Express.xml -4fe193f720082281e8f0c48bbb17756ebd01535e06d4cf78140be8235939cbc2,1,1,National_Geographic.xml -0adab8b5195c92dd558b96a6d77403d62b64dee59bfdd95a01838d8684e32da1,1,1,NationalHealthandMedicalResearchCouncil.xml -4f3d0dc561b1d5aa8256a5c6b3836f1d624a29142b47bb7d9229916c2abc6aed,1,1,NationalLibraryofAustralia.xml -7b0ac0268b2e01e8a363fe7a916bb90459cda575638ce4c6ed61ba5ec183e210,1,1,NationalLottery.xml -06158153d372e48bdb0f5185995b7813fa2a5d9c67102b81df5ccc7c391b620a,1,1,National-Optical-Astronomy-Observatory.xml -e4c4d888f58d042e4b0a15c21d2a8b80586d859585efd5fb8813d619a1acfdc2,1,1,National-Press-Photographers-Assoc.xml -22d2a1767aebc62b4147bbba64aceaa9a197dab0387dad3e97bf149bef1bc550,1,1,National_Priorities.org.xml -3eeda47a0d58e2fa12af871efccefb70709c9aa4a94f25da447e491a58e6f231,1,1,National-Rail-Enquiries.xml -a73846c13f495130fbf563b82ffbe3c1fcff8c874abda978e124e3af97ca8ffa,1,1,National-Renewable-Energy-Laboratory.xml -b98bba1a10a3f1d265d6a81e822b5954f1f515250ccf5ba62dae65eaca365325,1,1,National-University-of-Ireland-mismatches.xml -285bd28cd60448ec1beb36083077dec0b97ccccb557e0734673df421d3bd0f4b,1,1,Natl-Federation-of-the-Blind.xml -6dc72bdd31ae5d2b3069ee911f152ebb7fe76925243f01c6ed619201f2b74a1a,1,1,Natl-Vulvodynia-Association.xml -ebcc8d760dad213f091f650b11dbd48341e8039af99e39d0e1ea98115899e204,1,1,NatMonitor.com.xml -d6c033cb1812b3eb35f78584497ebc3e7ba242d128036064f93cb32fbd54c5d9,1,1,Nature_Shop.xml -f5bd76ba5a3fe5bc3616e7eb90979e757ef4f79a68f7a3b189bdbd8493eae2e5,1,1,Naturvardsverket.se.xml -92305d7d6923ab049957e8eda6b1a3145f480f0f7c1a26f25e40df7ec06cbb0a,1,1,Nautil.us.xml -fc8c9de3784c5be89653da894ccedcae656c1017eb9a9afe599acc86b2902dfe,1,1,Naver.com.xml -2095b30f330a04d74aac2d84991a6098136372dc479f144ecf2ba29fa8375d28,1,1,Naver_Corp.com.xml -cca9679d08747b3a6f8f2ba6a4075140929b47237347a3c6703c51e22846f71c,1,1,Naver.net.xml -a06696fc40595b3cde47899254b84ec14c5e2a2209a07205aaafee889961886f,1,1,Navigant_Research.com.xml -41cef6183debda5241f8d5fd82c30fc9724011bdd5130a52f7bd0a8c5dc648bb,1,1,NAVTEQ-problematic.xml -e430aa26774e0853213835ac8b0fe16dde43e0e3701434916d1231bc4fe21f56,1,1,NBWN.xml -66f0388e44e97d0c5975fc8abd57d7013078e37e14b34e5a6046e4d6d2a68488,1,1,NCRIC.xml -ef7d0c3649a77dde9f58d11fb9e77a0bce840e89177a6d853a3a50f37d138e78,1,1,NCTA.com.xml -e0829fc2c9fb85755c4629310398373a852a49f9ec43b1bc36a49c8853a37eec,1,1,NDCHost.com.xml -a165bf80ecefdded1625bea8feca7f701dad131dca4397ad3ed84ae9117bac61,1,1,NDI.org.xml -21b9c0692a5feacebae65169aad071113d4e9bc961c8f43176bd928e517ff480,1,1,NDN_media_services.com.xml -dfec184e13c3759103549e8b927577aba82325175d864e54b9c7eb3030b47a65,1,1,Neal_Poole.xml -d5d5051faf362a6d5d7ec3ca2c3c28b4bf2dd53deb646495e8138120a17e7a76,1,1,NeatoShop.xml -14cc64ef3bdf4c87251ebf375e569781b15e8c8bb1703f789c72c57608546227,1,1,NEC_Display.com.xml -aae1dd28949eb63e1518412b3063cd8db7fb5d1e2fcd31af51b4d9a7e28582ec,1,1,Necuhb.xml -857b71f62df5a79e008b0ea591d5b7edd82e335459c7a4130de38bee67524b37,1,1,NEDCC.org.xml -156b2a873c0a44af66e274664b24fe24facdced91307f44dbe7d80ab748ab93b,1,1,NedLinux.com.xml -4b39488723281f877212d4e81540a4e52eb4a713db6fc8599e8022b11d720381,1,1,NeedMoreHits.com.xml -d422448b645008deecee31292384b1779d0b472035926333edf3ee7b98d51d35,1,1,Nelonenmedia.fi.xml -076624231a6913176a0296ea2fe8a98784d1331620d5cf7ec74230ce6d0ef229,1,1,Neobits.xml -fe9a3b6a1ac58f6ed1d45edd7cd8aeb302d6a2f11d4db3d7b093b0e24c90c586,1,1,Neobookings.xml -af1e542c1ea14c9dbe26ce321998cb9be7c96f88529088bd44771735c585c088,1,1,NeonMob.com.xml -98d5cc127fd21d56427af9318d74a4324bf673e7b9d15ee33f27e6281edae825,1,1,NeoSmart.com.xml -58abadc12a0456ae8c4b9aed73cc326c59a0deb6cc9149476a1e44258cf308ff,1,1,Nestle_Scholler.xml -fb32bb1ec593963f579fc3218ced702def3c8820d295959e6791c1bb63837079,1,1,Nestle.xml -1d82d222efef097970af2ddde784abc4a54e9f0d7c72273efdd5a365eaadb215,1,1,Netcraft.com.xml -dabaddf8009499437a20746961eed8aed99136385bbd85df42500cc0e8f7fd07,1,1,Netdialog.se.xml -51fab6aea9eaedcb661753afbaf5491296192e3dd6acb4e3f96b87bfa4608e4c,1,1,Netfirms.xml -5bc65fba1edbd23a2c1127a5c66a01bc20ffc899e4abb0e6f1b4d05a639dd9c1,1,1,NetflixCanada.xml -09d26551355f31633c24766c07211620a9d2330338dca89cf33e1fc51db0462b,1,1,Netgear.xml -a95094078fd0cc6f72a082b156e813374c9dc87a138755d752a4b9ea66773850,1,1,Netguava.xml -05ba937904b0635e9a5a4ad5afb6f044026bb673c12eeb989146d9a2ab4dce2f,1,1,Net_Index.xml -f4e958dc0f835a536048412ddc2724200f00c0e93cbe1672d10fdce9dbd77cec,1,1,Netline.com.xml -06a292203f1fb162f9eb6f48a60f5c5cf2fd82e2141c3be9b382da5a1a9580f2,1,1,NetLock.xml -8ffdd2456c30dafce460c2ac55f69982ab0e8776a7dcdb2d3b6d955080cc9ffa,1,1,Netmarble.xml -180bc4f5557c0f206638dd7540326e4b4e6bb6f6c536c090a9bc68af526efbc9,1,1,NetMediaEurope.xml -806784f5df0f188a432397f11c65b89fc7e4b5c0fb00e08c766280743fcb9713,1,1,Netnod.se.xml -05ef41699e7db4706bfa024c7a337ea730a9c22cc2eac8f8ce35f5181a19bb06,1,1,Net-Results.xml -b34cfa24a5d99c53cb889604a566fcb954fcf2edba8fe603a27b047c537b36f9,1,1,NetSeer.xml -47fcbd21bb94ba1037778af9ea7c2e8a21ad1a57759e8caadbc97f7c2d553837,1,1,Netswarm.net.xml -44363372269bbf2df2c23d28f206b728ec20d7dd27493ea1e2c1ddb49c1e4820,1,1,Network_Computing.xml -b92200943566111cfe625c992f069402f97fd97337fc836e8f1aab8caaf93ddb,1,1,Network-Depot.xml -ada451184c4c1e9443d9b548f760725d0bdd50de0d1c5daf97294f4e60d41c69,1,1,NetworkedBlogs.xml -1046eb858f3bd6d3cfd736bda77b14238d08ac9faab95f854e90106de0fce7ee,1,1,Networkhm.com.xml -856a5e62ba2039659dfd6a0c341644c7cc94edbfcda039c0bbf2934c2fa6e490,1,1,Network-Redux.xml -4ef2cb9461e22b8d24d62e59d83de05a0e90f2793c3c661f648d9c9ce47d53f1,1,1,Network-Solutions.xml -d9e483a264abb9bf1922d75c3b5417d10f4cb06f37fac341ad809eb66652c8c4,1,1,netzclub.xml -37f2e0e19946edd55166e52ca91554e9482b18037fd0df2e6177b68af1be5b54,1,1,Netzguerilla.net.xml -d47c31823f5affb8112f9b876508ea8cbe9c5c8888dd62fce6e94a49fc97ae7a,1,1,New_England_Journal_of_Medicine-problematic.xml -ade523b4cb15ed350b10463b931b77cf0d98fb8dfeeff46f8ae12bafb519e8bf,1,1,New_England_Journal_of_Medicine.xml -2d5d1ab187eb0c642f8931ccecd1e2896f8e821c113364b8bc018579100cbde7,1,1,NewIT.xml -c726927c171b0ef46e22776ef84b862d65b67640d6bf0c04236116037f7f4658,1,1,New_Look.xml -f1fe546e322fc153e0c39bed532de0adde5d347f9b0785bdbb0212f60735af1d,1,1,New-nations.net.xml -17888394abba29aa8aa30d79c30cd4e08159dc8baca993e10abde6b6f6a7b5da,1,1,NewsCred.com.xml -3494b3975033ab3683385dbdc1fceb067d9af08c054f9d5db857ac14678d2a39,1,1,Newsday.com.xml -f4b6043442410054e68bad0ebf7106e2cc7147b2c0f9e9d484406aa292344f5e,1,1,News_Funnel.xml -33e0ef33f129b4bf61f87001d1bdc46d186cd05e3a95c7ee8e6c3d0cde5a1340,1,1,News-Gazette.xml -5c27173b7d7afa1b073f275eb2ad36e0834ea09a371f69377443379723a891b7,1,1,NewsLook.xml -a441436f47337705595460deaf9fcc0940b86b7e36ebda3cf9d947e0034c458e,1,1,Newsnet5.com.xml -509e62e31f417a783e53b3ec1629bf7f07b304d97357a55e03fcf5df3043ba3b,1,1,Newyorkcasual.com.xml -14a3e6141341c77f4929c29caf95ab9a73074177c662dc7a783f9a8f4ca055b2,1,1,New-York-University.xml -4125362bf733c54e5b36ab62a6355215cf05593529ad90d1f864127871552ee4,1,1,Nexaway.xml -371bf6fee67d496d1498382d520ed8a67dca37c49464fca3d9fef98aae5abc94,1,1,Nexternal.xml -3827f1f331ee1cfd087a75708156fe6dd1d78bf73689aa0e3f05e769f9ae7599,1,1,Nextgen_Auto_Parts.com.xml -ba5164f38a24d39d86f53ca602a4f7dd6588321e91dd31f3a41900e8235bfd1a,1,1,Nextgen-Gallery.com.xml -878678bb92243d6117ca6b9852399304d42d5f29f5db90d58186bab9f7999130,1,1,NextRegister.com.xml -062c7a379d68a9a26d9445a86c7445b28d7f0c6d37a00280e9a6227855935654,1,1,Next-Update.xml -6f3de4cd1aafe6ba814acb20cfc9edd085c15d45287511683f536f296584199f,1,1,Ngage_ICS.xml -40707c074f1604a6e59072a96bcea4eea833a8140187abdc12b8e4a02b5af23e,1,1,NGP_VAN.xml -faa3ba2cac853556d1c83dfa2599b125ee94a577586702a733b7a3652088c4bf,1,1,NHN_Next.org.xml -b96be1768c31667d57cfe63b816da5694252eeaef0c8f6bb9a8a682c2ab677a9,1,1,NIBC_Direct.nl.xml -91ebaca4cec0665e0fa5f3a1b0a6c8d652d52c77119e121a1ab2a1d4742a5c90,1,1,NicAc.xml -4af8504478403141e13018b68dda2ca244cb990aac167268c0b51b3cbaaf649d,1,1,NIC.ad.jp.xml -d736b4403c08de43b1380fb0bb896d84478ff2254f2c4e12c579e5d175c60552,1,1,NIC.br.xml -d51e3856b40460889ca3f89bc03da9f11178de1cdb15419a17aa8d5703560942,1,1,NIC.ch.xml -346f439850c55caca5a78b5fc94710c205fbfdb3058553be31a46f6d12cf57aa,1,1,NiceKicks.com.xml -61a9f6011715fc48d87a94067f3fe5cdc9c02640e9bdab07fdd2ea4311d7c121,1,1,Nicholas_Ranallo.xml -8bb70539f73c3c65978aff2fd95cf02381c2a78625f0b2600bcd11d54fd57f66,1,1,NicIo.xml -6d06d1aa85b280082752fb7db909cbd17a8af89885ee11c7a44a2171667d5a58,1,1,Nicky_Hager.xml -981ca46bd235b23ef9578dac08820d2b869dbfcb229b44acb7e1ee1ff3220994,1,1,NICTA.xml -288576142560c33bdaf2b96181fe28dbc85187f23bb504d2958eba24e227fe60,1,1,NIFTY.xml -44b84456a3c3fc5557e72977cf9ce16026b8e0af2962ec95d2f3cc49f60e4f0c,1,1,Nijyuyon-Bimuunzu.xml -51f9018faee4b5f25dad5c45d9d8df8a7787758c25d2251ca366c3f08f0e9120,1,1,NiKec_Solutions.xml -de1c97a6ba1ece72e2b39d5bda73f089c9ae9e6e375e7b1e4370865d4ee29b31,1,1,Nimbus_Hosting.xml -e6c5226ac3cd786bb5eadf69a663637854a4aaf05007ae171270447213370b52,1,1,Ning-falsemixed.xml -b4acc275170d8cee0433cc9a5e65598a466fdafce8ec125532f335d91dbe124d,1,1,Ning.xml -a5df14b90e60e6ef8a52b1b94e7174e704f033cfebc20b1a954259204167a6b7,1,1,Nintendo.com.xml -00b787cbfbb8ce9cd6efd31409fbb641b60af1f946b6c999f95dce156687b51a,1,1,Ninux.org.xml -bf5e6cf47724f58b8cd2da353d3ccd242bb66d67f1059adace37d0f74dbc8127,1,1,Nitro.dk.xml -513131c332cfcc8513d14074584d086efbe9428a7f6a8d71e231cccda9bc937c,1,1,NJ_Edge.Net.xml -a326164b9ad2dd7ad25a529f70cb78f363ffb0e58a2f59ea413248aade1be980,1,1,NJIT.edu.xml -107682a66b931aa65af448f156ba21e35cf06e72f957269c8c48454ed5bae637,1,1,NLUUG.nl.xml -fb9bea6dae32ac882a6da54f728aeb39babc12fdb1939dcac84bc3536733e69f,1,1,NMU.xml -73d593bc40d8180d71f00994e3736e917129f868ecfdddbeb5bc4e0775769b12,1,1,Nocdirect.com.xml -debf94c52eec0428247d415d13cd14dbe048783d7ade4dd8ec829dcebbf97b47,1,1,Node_Security.io.xml -43a70191727669db16c25ec225fa95130168fefdf70c4a256681e235b724b02d,1,1,Nokia_Siemens_Networks.xml -99274ed3c663668d703fee3a5ce9a9961198249dff3dd2a9dd4709207c2b11d3,1,1,NoMachine.com.xml -3836f63808d07a7d2fac347ce4d1b6b936a66ec55a0bf5263b98077b65ed1361,1,1,Nomadesk.xml -57c82e25267e839ecaef720073776fa50c2fa424d0186817cc21af93356b2651,1,1,Nonexiste.net.xml -d293276c96add15789fd139b6fb190bd50daf5959c426ddd1f65683c3fddec70,1,1,Non_Profit_Soapbox.com.xml -7c88a2fb9a9a04b04775334389783e2024fca90f5604a3b8af90079b9eb58720,1,1,Nordea.xml -af33cdb9b135beb72263920024ae1b336a0c6680a18e61b363ff37e4dbdc577f,1,1,NordicHardware-mismatches.xml -436f816941bb72b8d4428851f920b17899c39cc08f5d13085f4472ca6d43b2ad,1,1,Nordic_Semiconductor.xml -aa1619c02d07a8ad0e6e70d89453c9a7ad9b584cbe9f8ddfaea876ab46a59e44,1,1,Nordnet.se.xml -fa6721f746512e5e4a8c64511e6726f1f815515a40851600355c0cf2cf4d41a7,1,1,Nordu.net.xml -47d1a59e4a5bc7f49dc15f74073e44df0b352aaa188b8b2c98cdea00d826266f,1,1,Norid.no.xml -bb16c2bcbadb4544c85460c9389829d2b7aad4d7b3963dc246c25f59ffafd360,1,1,Noris.org.xml -1abdc9682defa48ce60ed8b8676ddaaf7243890d23ff2c5829e2a1846129b4ae,1,1,Norrgruppen.se.xml -8de08df9643eef3febf2af8ce2f91d34e166a642b43ceb2bddf266e335a0cd84,1,1,Northern_Tool.com.xml -c4a531ac4df8aae49d972831bbd8ea349b8e413c750c18b15fd55a98ad422603,1,1,Northwestern_University.xml -e5e9c8fba237ed6d57e7648a12033fda436f40959a5876ec4fed7b1fe419f112,1,1,Northwest_Swim_Shop.xml -d88941553216a375019bef623617831cfed119f7e9a45de9c09e31cf9259c4ca,1,1,Norton_Online_Backup.xml -208eea5047faaae533aa5050a7401770c5aa48183eb4835ec2d044898c666123,1,1,Norwalk_Reflector.xml -25cf87bf481ef70e4839962a60b61f827749c6038806764bd5d3eadcf189f631,1,1,Nos.pt.xml -70ff96450eacf3dc60037726f4a4fb075c8227e7d102758ec4d3860dc3fde0a1,1,1,No_Starch_Press.xml -91c1552fd8f5c080018c9abb636c8590f686826bd7603bf6e85b824d3cecffb4,1,1,Notebooksbilliger.xml -810d45a0584894225fd3c3e66c707a791528729a596c246aeba0b1e69c5ffe68,1,1,NoTex.xml -0c6c06f058c319c6c3d20b95c033c01e344f10179b032110a16706bc2333d3a1,1,1,Novartisart.com.xml -65f54df3f15bdf0f223df2a16aee88e2f7c86595a22855e25e02f5bfd8fe209a,1,1,Nowy_BIP.xml -71a41ad3b515f5b752516a9574116a1df6a7dc1a388d750e3ab6f7e6a27bbbeb,1,1,NPario.xml -dd6b12c407efb9469efb6c2428ba486570a3468515291282c02b52f6a9d8eb4a,1,1,NPD_Group.xml -980a7b8d7d02899371116b856082c8812fe64be219ae2efcd90c544bb2d3b41f,1,1,Np-Edv.at.xml -005d6ae4ecf390a96f0cabfa24bf3542de3358ed187c7d3fb6a9ceae451436c0,1,1,Npmawesome.com.xml -b8a8048fa9d78e8f49ad9eb38a05c4dd88ad22df91e48f65496580938fde7370,1,1,NPO.nl.xml -93abbbfe95c5f2789122bf430613904b390913856f75d7d1ef193233b5dc40d4,1,1,Npower.xml -5d4444592b404ba94813e1d8cf9e708f3ad212fce590b1c1e86f65db9cc72c86,1,1,NPR.org.xml -99a479c07d49448c6cd8f8e92d29c3c6ffaef57c428719b97c5fb1abe9ae4e16,1,1,NRAO.edu.xml -aab95385e06f84902ea12881c77343f358d696d801fa64ab8e3f0be96e588c9a,1,1,Nrelate.xml -f3161aaef5e1b8c8ff003407b46075792e538cba3c966cb04eae44220d606e5c,1,1,NTI.org.xml -968ecdfba1b77f1e7d9ad0883bea2141a1bed5e8e66cc17f596f494904f959bc,1,1,Nttxstore.xml -82b8c6fdce49f6cfec8a5af5a439ab933d6db04d1a96dd8bd79b398fde7ed662,1,1,NTU.xml -4389ff81399428de5835dcde6360c9355bd8bb30deca633fdcb442ed80e8279a,1,1,Ntwk45.xml -74ee38c39c1732564c41660c16c36683c46aafc6785922df598dbf2c7d57057c,1,1,Nuclear-Blast.xml -7328e524a9f2fd1921fd2af6072701475390df737de382f10470a108df06d252,1,1,Nudevista.com.xml -3b6a1fdbfdef973f098641a8c936d15c5f0056d9a72a5a864cd4324d0ccabf5b,1,1,NuevaSync.xml -0749f8a0080a8e3e25f93d805c9b506ec3a519c7756757e9c3d5b0743d0c1db6,1,1,Nu_Image_Medical.xml -769b97bce11210d969f4d10ab4639bfef1b69b4ec1cffd3d0e954ad77c8749bd,1,1,Nulab-Inc.com.xml -d16090d0d492da8b08cbedeef767e7654cdd46ac59ea36e79ec69d96672d33c5,1,1,Numato.com.xml -3549eafd309d3b4297a5c35cf3a6d5c49609a2369e6b86ec8329e62e9d7e5c18,1,1,Numsys.eu.xml -3b060b33ca2d9bcdc43bb95f1bbd6b7f8af33f096e8bb87ee9d254b055fde56e,1,1,nyantec.xml -abdf7c3d9a2a343830e5249d3df8cedeb901479020f51d82dd4b814d2d309f08,1,1,NYDailyNews.xml -6d5cbfcc8c9be0f7aed82f53f645a4a1aa507fd4bbe1e200a57f541ed33f5951,1,1,NYK_Europe.com.xml -7547eb94a8247f99f2cc8601b1a60560111c94e245741587958e9b3edc746f47,1,1,NZBMatrix.xml -de36e0b17ee514a0df985867ae86c2d541221b07758c981e8cb0531f6f05fc5a,1,1,NZ_Herald.co.nz-problematic.xml -e1a3d986985d25415f778a47600e667ad8e9bd40fc84210cf071cc8402d01060,1,1,O2_online.de.xml -4539f89f99d222c67add1d3a438e3e7969cd38eefd85d167da81e6cf97d9ddca,1,1,OAG.xml -e79232198ecd818d2c8984bcb40357ff099f8916aee9743b4ab5cd29856f0b30,1,1,Obermassing.at.xml -7a6389ef271a9d5a4dd6cc58ca95d36ee4fd49f8166edb672462ea728bee070d,1,1,Object_Security.xml -87c78be529c28b43a7a7c7f79f1136ac51649df5456bd716a435a2a1783be008,1,1,Obsoleet.org.xml -6bd6d4e93f5808d9bc8eb9016a742e745952fcef5e0a236c07de3cdaa08e9b20,1,1,Occupywallst.org.xml -74bd810666ffdb4fb2893f61b6ec93bac1fb8d2bdad9562cde970cece038f8e6,1,1,Ocron_USA.net.xml -6d1f0a2604285d2dce5c3b74a90dcbf026e0f0d9762ff8e273c989f4c2012d4a,1,1,Oculu.com.xml -9f666a13d6dedffd0bd201d9a652bbea8f91f6d041de1302d6ebecc12e39cee9,1,1,Odevzdej.cz.xml -354f1adcafe5104200915b63fce01ad6bc17c8f1b73bb1c17bfeb6080266d92e,1,1,Oe24.xml -d58912467627d4166913d3dcc6dbc6cdeff23bc192ddcde160f7284bc486fc57,1,1,OECD_iLibrary.xml -f213901d6f4687192a7ebcb6750cbcc96036366c82dcf192feb3966c0e867f23,1,1,OEIS.org.xml -45d99e8a02a0e2e8b6fadc671ec6fc9defef235fcbdbef400c5e5f6059b803f8,1,1,Offers_CDN.net.xml -f2266e1bf3c4072508e918b98d2698af89f9e70bbafb738158b17f861d5049eb,1,1,Office_Depot.xml -c6325fdb39f3806727a88efb1c81e7245e545d76d22550261f220dcf7e312210,1,1,OfficeoftheMigrationAgentsRegistrationAuthority.xml -7bd7472b864382c42a9f3801de953047d3789a93f17f117f9d8b246f89a46318,1,1,Officer_Down_Memorial_Page.xml -5b55ee39e40189e984150ee57a844755de14b0927b9db79c61141d9fd9b1b574,1,1,Officersforbundet.se.xml -18a4bbce1f07f66c987af83db789444c15bdd9e7827b8077eec3d110f8aa9f34,1,1,Officeworks.xml -1a393541c590b02aa4d197c7081aa9832b82c7800c64908f969649e88bc85613,1,1,OFFLINE.ee.xml -25dcde901d9747daba2772ee4cb554d1246804ff52d34d003ad64b56df4fafb9,1,1,OHeffernan.xml -77cd5da443c57196e34d4815f66897cb4f24ec91c33391facba71790f1a7110a,1,1,Ohloh.xml -5d170c9f109d3b3f3d495a6c0c5d489b4c816dde779124a8ea8b0f169e4b93c1,1,1,OK.de.xml -d153eb0f3b7524d4f4c67272e63a5427237f47277866092e9fbc72186aaf5653,1,1,OKPAY.com.xml -fc2297b2e6b8c26a7c28893a30d9b79ae7e46d662d08f888bd40104166634c81,1,1,Ology.com-problematic.xml -c986cde89bee26ebcdf729bc707f57a426b23e537c9833ac3b2b1d6604c3a171,1,1,Ology.com.xml -543885653524b4a430d6bc05d5f0a915f8d2044b4a68210f400556475b617177,1,1,Omar_and_Will.com.xml -497e4ef7981352ec9ab7c69c941e8dc50397ea32e225ad167258f3394047074d,1,1,Omaze.com.xml -337868f3fa4ea5f7e775c58846ee41725e2bd31593b02a28804608ae479f4b32,1,1,Omaze.info.xml -0da929f51c9b65ed9cfeb12b320c1e8744971ad9301f6947db6e052e71a16933,1,1,Omeda.xml -0fa7afcb4f3de48285395cab0b8a7e4df99fbee76060a484ee2fa429e31e4258,1,1,Omnirom.org.xml -56a510c39541171f7b06d9e5142c7c58974a7c3e5dbd4933acd2b78380d54369,1,1,OmniUpdate.com.xml -7cde75ae985ee9021415c96e1f549c4d7cc5f038f69d018f7f5b152f32e81cf1,1,1,OmNovia-Technologies.xml -3f6416373d690a4ae3684ccbd983903c201ca6c64da36bad3b682e808637301d,1,1,ON24.xml -1972d6c5905736d5cc17e3723d36bbafb0f8424f655c05a760b036726a9cdc20,1,1,Onamae.com.xml -da177a5a62f5b28245ec5ae8feb54d6784053304cc353685b5e97c71142d6e52,1,1,One2Buy.xml -597c42265035cb8cede36ffbc25012c0c73aed5912e13f7acdfa3eb0b1f15885,1,1,One.com.xml -11c59e652dbeb5c89673a0bf1c14c96d925d032b9f838a8c3e1825706e5992f6,1,1,ONEhelp.xml -cba5bd428c6f1266d124c13fbed696d899d8b1049162e500440afa4d15d5f3b5,1,1,OneHub.xml -f633eda70bf6a833c1b0f34d615bac9af7dde4e6611be3256dddf73293ad073b,1,1,One_in_3_Campaign.xml -878eeaf89383b2d78eeae460acabcc26346fbf04e3f4cc9950a95597dddb5b76,1,1,ONEnews.xml -2113833f401561eca9a76e4b866132bacc3b798521c30ce0af42c4a70d7f5854,1,1,ONE.org.xml -7a86e66aa354558aa5ac3ca347ee08212e9edffc6adabc52fecea2a43d39ecec,1,1,Onepager.xml -04f791f993afad6466ad07723c67ee588989596896700f4f15523ef004292fae,1,1,ONEsite.xml -6dc92cee48556d89af4e82ce71e74ac9f797208689b7f351b93f2925f1a6529c,1,1,OneTaste.us.xml -0a3d44381e241385148df130a14beeb2b5bf3363441a7fb3f7edd82e4b313915,1,1,ONEweb.xml -ea7c07d5c5a69a12affb5b1c6ec55c1dacfeed90ca00bb2199b239768f94f991,1,1,Onion.to.xml -8352f6e1b8073e86b97a2161d39b9b9dcfc539fa2fac11a516228b9bb0739c34,1,1,Online-convert.com.xml -6bfb9108e7ce68dd1ec4714c720118c8db7165a9e70d0ae6fba1ec79f5b53e08,1,1,Onlinecreditcenter6.com.xml -7ca06f19a9ef13e886b45995e00a2778ee74b83b593f1862ca844ad67d8ff46f,1,1,Online-go.com.xml -eba9cf6de0668533759ecd0c36f82a6c449930302e3fb4e801ea327b491f3362,1,1,Online.nl.xml -4329ba7cb2356073a2cf3a1b889bd7b0cfd49907b96dc0a5dfc13723ccfe70ed,1,1,Online-Register.xml -8df3a6ec67cf849d6424c10f5419ac2a119b07b208eeda34c8b18c1840494f9f,1,1,Online_Registration_Center.com.xml -4fa2e7411d1c81beac34235e3fc37f2d67820e87f2b362680c5f2024fdb64090,1,1,Onlychange.com.xml -773607653baf982baeea1228aad8ea35bd49689c3615b73f3243c9c60e93e8e5,1,1,Ono.xml -e82460278082d6dd45d68e33b70bbca8e6bfe3798d9dd81b621e220e90df8d49,1,1,OnSecure.xml -4451bf75cf6c947ca73f64b8deffb43eeea5f8f6bad4de32b40947b6acb816ed,1,1,Onstream_secure.com.xml -c3a38c4b386c80a36cea94efc06f84d47973e713458a181113a412c0c07ef1eb,1,1,OnSugar.xml -fc272ddb7df80aa257e5ca875c84d9229fea7d8355ac2a4fc8ed8943bff73694,1,1,Onswipe.xml -dd51b1a05bce8252c471fe1e9ccc7ad3d295ab21d3f59485bfd45fb9392e1510,1,1,Ontario-Lung-Assoc.xml -9367cca001aefc63ce005ebbe86fdc0384fadc05d19d6fb4680f74cf3f8ba58c,1,1,Ontrac.com.xml -fbaf204007a81363eaaa94c37bc15ab4199113aa8b2eaa0716748f2d3d3b90f1,1,1,On-web.fr.xml -80c93942c09bd0fc6bdc7a745fadde44ad620aafbbdbe3eec6187a6f211ab638,1,1,OODA.com.xml -54099f634ae421e4359d5f5b6cbdcafe9668f66f2e6eb3a55f5084a21579ac24,1,1,OODA_Loop.com.xml -acafd275568454c22d4e6503b39246589eaabbfee280841d01b981a06e280fd6,1,1,Ooshirts.com.xml -44c2f4b20d087566d810f2abb555d682470754c52a4150254fa07f9124d3b8ef,1,1,OpenAdultDirectory.com.xml -f28e83160c984f6ff05bc0df04ba6a174084eabf65407155967e6d040006b732,1,1,Openbaar_Ministerie.xml -e4a39f7fb4896d07ce86d9a6db8a169943bc9bed2d1ee021c6df3e1215b0ebf5,1,1,OpenBSDEurope.com.xml -7bf8323a4efc465f78b6fa4397197925eb2aa511e0adbadf26ac77582bef185a,1,1,OpenDZ.xml -90874a039013b1b29192288e6adfb66974cb6b5a2b1d725476540b45c256e725,1,1,OpenF2.org.xml -d582ad7c5fbc06d9eb0bc39241f0156ee6639a1a32434837d402433f3ba578ae,1,1,Open-MPI.xml -23cfc517ee6ca72edf14bb84eea7ac61561a7b4350b58e293607b6d27f713d95,1,1,OpenSRS.com.xml -844a36d59938c66a965aa67a15d31a2376a10ff96420716e5c17b03e344822fa,1,1,OpenText.xml -c7f5c8fc55c8dd49965405e728a4e1d78abd2a8104d1ec66c5295c7df3f012fc,1,1,OpenTTD.xml -604fe7231f1c25ddf6e9800bfcd98f75742214f5577db7d180515bf2faaab196,1,1,Opinionmeter.xml -16939c125dbb7e14ec719083e287822ac7c7b6f3a5574de1f38f416eaf8e0f54,1,1,Oplata.info.xml -7c80b0633a59b7e17d4626e0c70daddb55ab24bd056de01d8c526dc482222af4,1,1,OPML.xml -e9057396a23b63b5649e541016e641914d5a62dd53524f0af2ef558a8abafbbd,1,1,Oppo.com.xml -a19d45797eae258999f4c49548c124b1d971b777244c1fa3e5a4e6fd151babdd,1,1,Opscode.com.xml -bcb0cbe9c5c1d8498f041252041dd5d36605e7fa8861e1190272dc5cb6a41651,1,1,Opsmate.xml -90c72acf3796025ba5f3f2cbf9f32de40a8624bd60b52e9b7c72083b1c3b4946,1,1,OptimizeGoogle.xml -a0f2899f9469ea740ed8c77f5b23bd3714e4eaf6e351ffff4c9533a8597aaab4,1,1,Optimost.xml -a5676729731514a16aeb134e6988d1e6bbbc14f748020d3de623bf8358feac57,1,1,Optorb.com.xml -0d4d289bd08afe7cf3746463b1583ecbe548148093efba3b9d0c6b284b3d7adf,1,1,Oracle_outsourcing.com.xml -dea0c5e198d972819b35b1f12b139caa976ef534e95b2f98c4412c89f25d450d,1,1,Orange.Jobs-falsemixed.xml -476da56dbd847e917e8317d2ec23deccab4e3ca9751fee77c16a8dea96154e7d,1,1,Orange.Jobs.xml -7940896b30704499bbec0470686545226b5921a9877b459cc5ef8bca39dfa0f6,1,1,Orange_Static.com.xml -a777012fb89e7e9509086dba6e045f4df83b19189e2223b3cf086fc08d3181a1,1,1,OrangeWebsite.com.xml -6dee7d41063cf2b6321c934c1a0f52db35479c9976ee527fcce69d7277469fd1,1,1,Ordbogen.com.xml -056eb34319c7780b742ac8b8d770b2d059abdb70c2426b70a7ef35036d71b50b,1,1,Oregon_Live.com.xml -dad1ce53fe698ada94ae315b72e0c9b051e6b995dbba60cd478947397b09ee01,1,1,OReilly-Media-mismatches.xml -8bdc4cfed5d6ec607238308acabf2c945cfc9356477927d8a848508f106e4e33,1,1,OReilly-Media.xml -e5357c1ffc74896189b011f0a42a965aa17e2380d43948c51fa3f1cbc4bfd34b,1,1,Organization_of_American_States.xml -cecaf6ce7d12344ef5d11cea214e4e35a5830d63ebb2c06196d809186beea2dd,1,1,Orion_Magazine.org.xml -d401c7f7f5c1176c51af573b2a7682fed96347dd92441fd17310f7862899da44,1,1,Orion.xml -34975450b06fa54b94a1aec1f6b118b9e1bffa842b74579ea9d8e9cc21640912,1,1,Ortolo.eu.xml -8bcf6f27d92df8e4e7599af32b010e7ed72253179ea8ff0560df9b42e92db2ae,1,1,OsCommerce.xml -188ce2b3d9641b43c34837d76c1993d0bcd84f66172f1d0bd39ac62a493fe10b,1,1,OSDV.org-problematic.xml -95271d7ae3c493a7dde13473959f050c2f18ac2f54ddcdba7827065d85e89a62,1,1,OSDV.org.xml -8179beb66e449859d77703cdbfd13118c0486e1838bc34014eca63c16facb6fb,1,1,Ostel.co.xml -20863b5a1eef280a516f941549c3fa23fd4677b761c598b34df09d9711807461,1,1,OSVDB.org.xml -669cf631a166dd6486f6fca0e9e48b93bf291ad371f9322b451680a7e6f9ee2d,1,1,OTAlliance.org.xml -94dd37fc173d12370132dffa8f69db887cdb8ceda32a887bd09f68e45f0b1476,1,1,Otsuka-shokai.co.jp.xml -1fae3240ae5ca7a9a6aec496dd35dca2c08790c7d20049fe1a7f103c46efa94c,1,1,OU.edu.xml -9a1ed180ddfce3019a6fe50d73e329c7ea2b0e3496ee5d9970aaae538c11ef17,1,1,Our_Tesco.com.xml -b6f59d89974e8d4dc8e7975ab5c8b9fd552f2678054747da8edfd0f61c7ce96c,1,1,Outernet.is.xml -71e57056b2bb6b821f6d15d459b9e1dab4127b457ef251b5c5e90aa39c09a533,1,1,Out-Law.com.xml -da31832f47821af844b7b93894bfff58e817f7d081d211b143fbbf073379142f,1,1,Out-of-Control.xml -de1e27eb47786a3bf894fd5a8763bdb40aef0ea4e18148cc72682d2afa0327ee,1,1,OutWit.com.xml -96eed2b53e5e3c9e71f961cf70b87da6a609b4f611bd7cfd5bdc1b35e526c2bf,1,1,OUYA.xml -92fc52d7bb490975b655af9bea6487d3450afa1de920dcb2d3e129a2710362f7,1,1,OvercastFM.xml -d8dfd4daa157d444dcfe0fcba5b88427f1188d5d086da3a7296700100eaedfa1,1,1,Overclockers.com.xml -bdd3f592ecd63b5901777ec0167288e71dba360e36f5f838e8b637ff4a6a8707,1,1,Overclock.net-problematic.xml -d036d978d59b2c6b627a707f62492e3914b334f5b8a47011c0c3b7522952bd11,1,1,Overclock.net.xml -c82c5d7795a29482c59e69e8008da2dd1b9e7169397a140f15bbf490c8f65283,1,1,Overlake-Hospital.xml -ff199168eef28407f5f4ec85c4a28f7c4bb363a2b1902a775788789754cde2e4,1,1,Oversee-mismatches.xml -2996ca6e33df7a1c79b34fb4d22f94b102e5203184fee44a139fdc6d245469b8,1,1,Overstock.com.xml -5e7c404505b85db849540392423e02d918afac5c262a77d56b9c54455c5d3020,1,1,Ovh-mismatches.xml -ec9f53ceaec2456fb948c8a5eb1457115b6493829f0c3924f3c8b9191462efcb,1,1,Ovi.com.xml -02fbd9cd5248d4aef23752c03d5617f5da4a76e3e81651124794286380294aef,1,1,Ovid.xml -49c85b43ffe4edb11fb6c14541b59d6280034697e01cec9a4b924e6c72ca7a9e,1,1,OVPN.xml -ad5542092112d567a1f242111e90dc2478c0f9f27ac6c47613f6869b716b0d32,1,1,Owl.English.Purdue.edu.xml -b3811d1dffe75b829ae7b3e3502df1a9e74bf01a4f58bc96f863e6ff5a7c5a78,1,1,Ow.ly.xml -85829651a7aac63d0796f06fce34bc598e0db69ee307923c0dd4a4a0988b83e0,1,1,oyoony.xml -a2a23af5c2ae4a75d2bc089e535640eeeecc2dc198cd238a388b41feb8da12bb,1,1,Oyunhizmetleri.com.xml -166b9a29d094400dd90a8a552efdcd6e3b3c658b621d14949def9970d42c9661,1,1,Pabo.xml -8ee04de0f957a1a7ef55bc97217988dbd46188d93422333933badbdc3c421d44,1,1,Pace2Race.xml -57aed24e9b9918af2c3000fc9dad59aad8643cfa4f4dd7fbd4d1a7ce8bff2ad7,1,1,Pace.com.xml -9a93cbd9b7a1bd225acc9a73945ca88195ab76d6c4a81cbdb45c517f995a4cbb,1,1,Packt_Publishing-problematic.xml -0f719310c45ca090e2e9a64db0fd93eb7c422307b95c10ff81f2a3cd55085165,1,1,Packt_Publishing.xml -8d947623c0030a24ea32cb0b4a6f591d2402f5617b86a3634bc1988ba6323229,1,1,PACW.org.xml -8d66f2e93b2058925b7acb78236980fadf8ad3f54a1b9fa3fc8c257ae3499e5d,1,1,Pair-Networks.xml -993dc3f9d1e08eb3a27b37543742ceb167bf5ac80930af48325e4284b0858397,1,1,Paket_de.xml -15cd68db5c4a3915cd30994308964c68800643eec33f9faacaad09390b3977dc,1,1,Palbin.com.xml -ab6e11c74e0a8ed13d35553f3c8de56b8f5d9e134ddf5e600c9d9ccf29d202fc,1,1,PAL_cdn.com.xml -e89d28ccda24a3b1cc9b37d3d269747a51d052aad6911ca7870a1b8a85212c3a,1,1,Palgrave.com.xml -4d935da3e2213ddf60378a5391b4213ed2b0a5cb11bb2e1eea4f1d1c6c21adab,1,1,Palo_Alto_Research_Center.xml -e557b6f440d476e55abb4d57ecc833bd70b1d43508f88aa2a7188c8b517ca1ff,1,1,PamConsult-mismatches.xml -0e122fc15bd797982d15495539527f1952384f9f0e1d9a4f58ed9121aeccc471,1,1,PamConsult.xml -0c07953d9067779a3afb141662a89ffe6712fe0a8ed080815cd3b7d515ff2964,1,1,Panasonic.com.xml -3754825b11533fbebbb1f5555b448bad53f94dbb64c192d50d991717e48e4f1e,1,1,PANGAEA.xml -2c02f527aac3a3b6ed1c50ccb0cc60f3071cdece9fb572a42d504f1f8507a27b,1,1,Panstwomiasto.xml -edbb4c6ce0849ae266991383ba332f50849003d4b7a0b8357bc5b598d8c95d90,1,1,Pantarhei.sk.xml -c46016dde9d559b7ac326f0612c4a429300a19f06311ea76feff25af5ee2057b,1,1,Papakaya.com.xml -3d66d95fcc8eaff8c7fe025a95dc9990b8682f63e90359a2dce7f7d99117dd31,1,1,Paper_Mart.com.xml -64436422939f25d69a11657a209e6448090f41f78c76a534ef7b29fda740fe67,1,1,Paradysz.xml -2f11118b0aef6afd296fb8da24c425d5a3cf9142abdb8d48e51173074563d33d,1,1,Parallax.com.xml -0ba935af66a75c4552f92a41d20184ae2dc8b144b6076bc312bbc71620a91351,1,1,Paramount-Pictures.xml -0849261d180bf5007e6904f9dedbef66c86b810331e023a436c861a45eb9b1ba,1,1,Parcelforce.xml -d2b618f2190c7f59e3728760067733a0f011f6a596ce68727f9ade64230ceaae,1,1,Pardot-mismatches.xml -fdaf728f0d1645316bcb99336155adde2f724bad59b80e1518b30aba749e3ee5,1,1,Pardus.org.tr.xml -7eec91466e75d2f1ca0375b0d278c4749356b63b1f46d0336d40973d576b340a,1,1,Parker_Soft.co.uk.xml -117e5e84939a49cfc1e1f5221d3616749323a676d4c56732d8b5e6f7f9c34d31,1,1,ParkingCrew.com.xml -bf9dab15a6423695a11bb8cfe9c4c544e6b94733b6b9059f152489bc396cdd5d,1,1,Parrable.com.xml -2f7f5f9e4e3d9e8cdee57872ad5ed329a74729aa1da99eae8b09b9f0405a9520,1,1,Parrot.xml -95355ec4cadb259b3053a38718cc8377c7fedb4b836845d8c3fcbc377a388b9f,1,1,Parse.ly.xml -a6d5ed91167e0dda69c7aef5dc876650769ef31da42b604e355a95321cd0aa8e,1,1,Partnernaurovni.sk.xml -711047b87476094652dc5cfc13c671233df723abefe56d8d0985964be3cf1ef0,1,1,Partypoker.com.xml -bd77d8f6ae3b12a11e511c42eb1334c5b6ed2ce407a4ab7ffb987d3aaabbefcd,1,1,PassageBank.xml -4627a7d8ff44d737bfb4c58d14430e8b141ecc16773a5728f4ae45ccf949deb7,1,1,Passion-Radio.com.xml -2b4b86ef6ff0162dc26f32771cf375300ad99762c43dcd6e085fc7a9c778974f,1,1,PassMark.com.xml -75a025fdf82ffe68b0374b63078929152bf48ac57d054441e0159befbfef8a8b,1,1,Passwd.hu.xml -0f2ebe32f206f5956999e0feea4fa18d6da9cfdd20b23c941be5e320fd1dd949,1,1,Paste.sh.xml -be5bd80bdcf5a85296d6c491a2352aff05865044096cf9185d92a2d173d5da32,1,1,Patch_of_Land.com.xml -54bd67e965c51bf2587b2fc9952c21cb6de9fadf10e2b9554dcbe9da50b06779,1,1,Patexia.xml -4bfbc60b942980ff3bc84cc72b58e923d53c44ac8545f4dd49a805be4abb3e85,1,1,PatientsLikeMe.com.xml -febf08e54b5ffa88d16aac719b71fbe7f63848d993f5c4a2c9595f6ec7bae477,1,1,Patreon.com.xml -98b8a9258598a273055f0ec78eb8de613f8dd0d9551ccecfdf8b94019cc4d53c,1,1,Patriotsuperbowl.us.xml -4118c49b435dffa12fcd46cfabe3003d5fe4f800cff164ced1fc5613328f6680,1,1,Paxton_Record.xml -17ba14a288b96c6c89e41390228dec05c1c7fd2289f797b79422b8be14d9d01d,1,1,Pay.gov.xml -8a4688c9225f39cdbd0bdf2461b215687a6e52fb158187d9cd52f0a794ae3995,1,1,Paymentech.com.xml -f57d5ca4919b3d58dbe5a864ea0feecbb99e330bea27b1aa204af72223c9a014,1,1,PaymentsSource.com.xml -264085f330d2586114a4df09c28816ae62d1983cc4641f960c140367bf8d6a7e,1,1,Paysafecard.com.xml -592b9c9cf654a401553f5aaf1093c2ed115e9ebd1d5583e2b6fb121ca249bd98,1,1,Payson.xml -ef17044a8b78f51176d9b7505143648c8b23fb317b03cb15409a80d3400f3016,1,1,Payza.xml -9602ed3addac75485c0ceea57c20a84d4a827c6d365762d3811f5666b6523b32,1,1,PBase.xml -d97442855190363a210925b4af5c69eb7279ee85fbc38a2926f0ea8290c6e55a,1,1,PBS.xml -06db9841f3c63227883eae4e5c4bc63477f1666d4a9ddcc3e6b754c98af4eeaf,1,1,PBwiki.xml -9147e77367215b6607a8fc552a7d90ac08aa3d14787afc86af9390681901b37f,1,1,PBworks.xml -cd261c31586178eb701aaa6bfdcf87175167cf04a5ee3f713646b349be74f608,1,1,PC_Booster.xml -92b78f7675289f3410f50e0b87b26f612cc14b6e1a179c38ff4ec812c6693969,1,1,PCS.com.xml -7b00e03749479a79590e67bbd0bb224cce95af7b7ca844239dfc96a1f50163e3,1,1,Pcwelt.de.xml -cafaa354707ae4551d9e4cb2418f7693aae919a2b64cb9fd74668ba93ae62471,1,1,Pdadb.net.xml -9a1b6327fe2786ec6749cd5356315735463884412aa08d75a759c3aba6370993,1,1,Pdfcrowd.com.xml -72ca356c205f66ac1181d33d0641db7ad8595a6d3cc5d08bd288d5f8b4b3c010,1,1,PDF_to_Word.com.xml -9c31ea91bf0665d863307a542568b94e24b338bc12cb9bf1ece43b585c8fd393,1,1,Peace_Center_for_the_Performing_Arts.xml -7ace65d7a07d3b5a62cdf6ea0e4d7aaa66e35a4cc4aa08dd49b9cb6410404a06,1,1,Peacefire.org.xml -7906a49f15a7f530524ab186dccb29610399fda324d86a5e79806978facdfe9a,1,1,Pearson_Computing.net.xml -eaa0b56f0d798eb856140dddec98c9e8cefeaf3d28704e57d7e14eeeca2a9bee,1,1,Pearson.xml -842e549d619b0380eeb17b1efcfec6e7549e441523a844b09c96dbe09b405593,1,1,Pebble.xml -b4c8b3a5861a530f15bcd9b61a311eb5e5b5c0337a0152ec871417f4a19b1026,1,1,Peel-Region-of-Canada.xml -1eb02087c60fb6dba349d89674f8fa25ac18106e527f762be774f5a3a56e0a6d,1,1,Peepd.xml -9758dc26bfd158498a12c009b879a638ea94cc3924cccd0f0dc8fa4d84ec53da,1,1,Peer1.ca.xml -64c4c6f9c393cc844503446036d366ab4de78bb4741c80a09d300d9f594c4615,1,1,Peerius.com-problematic.xml -64a7ed454d800a12208277f538434e1e0b2c6ac9d315c87b208c0c00b72a1fdb,1,1,Peerius.com.xml -271945f92399adf841cebf957bdb08cc89874f91442eb2544ea96f9fd5fed9f7,1,1,Pega.xml -a130c2186838ac25cf952bcc67cca009371321b3acbe4fc721309b72aad7027c,1,1,Pegelf.de.xml -fe987dc9877fcb561755eab1801d85a8a910cfd0dd865343573c318f1bf77dd9,1,1,Pennsylvania-State-University.xml -540cd8a82fb1de07061e983359475b2cbf144af5a1b98ef4b981f87982f3a7f9,1,1,Pensionsmyndigheten.se.xml -c701f76f6f266e844c32dc5290854d98e913ea2c5006495b203d27a915336213,1,1,People.com-problematic.xml -166164dcf3c3d6d1e3762fbb94fecde448c60817a32fbda5dcea58510bab18a5,1,1,Peoples_Choice_Awards.xml -4f739239b0b8c6773946ca4faf240e443e09ac76ea98e300f81e45be2d32bbee,1,1,PepperJam_Exchange.xml -0bfcf99110e28c27fac8359fa56d2d15eb9a6bc51b7f19c801f48d848eaff667,1,1,Perfect_Market.com-problematic.xml -a3437b2ebf617a38d3ea365dd76988ca21a9606d731bc91712d70cb6710fbc09,1,1,Perfect_Market.com.xml -7b78550930456bd1f52a35ff060fcf4bd5600361784386ac7b055825567697d1,1,1,Perfect_Sense_Digital.xml -f93275142884d34a9bccd09bc1b8e911ef17e56dfd5a31a2607f6727416348b1,1,1,Performance-Horizon-Group.xml -93b07c29b7e516d5de085d1df28ba814307a7b36b7398be5f5f250f26714deb0,1,1,Perform.xml -f0b6d7c9e50a64809b5eaf88b7b4d7dce6e87dc879278206a8aab29b18c5f8d7,1,1,Perl.org.xml -a1da8d050501f472ff514b7c95a98a842e5c44be10267004c30e596b5ad1ba04,1,1,Personal_Data_Ecosystem_Consortium.xml -5da6f392c8c9d1934378d6c298a208df2a58294ac300696a84f5d7bd547757ea,1,1,Personforce.xml -4fb878e36f15569bb8694cc8779748db363c8f11ad0e6b134fec28c19d2518bd,1,1,PET-Portal.eu.xml -e99ec492c45d9f36374209f65aa64728ab835eaebba4922de1d940a0a9946394,1,1,Petridish.xml -2bb29d079038161aa7fd208b1f33a90659e89a264a0da63c8eadb241516799c5,1,1,PetsatHome.com.xml -f4c10865e40293cb75f67a03a2e5e63ca730b698b6cf48fe2d0a9c32ed35050f,1,1,Petteri-Raty.xml -16a5ac37de830be4c90f7c3b3d3554c18f3ea567719cb6cda18b12ea5ec1e96a,1,1,PFLAG.xml -1ade8367471ea44282c77b6f43bab43cbc8a08af4bb0d26e855c46605f2d909e,1,1,PGi-problematic.xml -dbd90f2c99bc31ae808344a6087f970e33788e1c8cde66d1768711db380133ff,1,1,PGi.xml -af476a463bc44c5c542011579e55ccf8a7e325700b91a1a70e1ddb333f6dc3ae,1,1,Pheedcontent.com.xml -1c3c79bd15ea38a9fc9fce5b15e750591f5947684bc7d09ffe2fd842ab55973f,1,1,Pheedo.com.xml -10c216db9072d4143dfe8c2573933753ef48295f0919f6baf00ca7358984521c,1,1,Philosophers_Guild.com.xml -3c30d32ed7c8ae0a62636d65ab095abd4a8671f621d21d4319bb492e218a112a,1,1,Phils_Hobby_Shop.xml -9ad4f0cb31b4bf350bf31aea34a5ce054f9a92267b537e29f7601477152e6173,1,1,Phoenix.com.xml -f7ab888270798948dd057e5883a6f5c955abaf3808fb756524e1fc1d86a0b5ed,1,1,Phoenix.edu.xml -d61d04f65a6fd2d43073d79cdc7beed25f611fff7e88332b8996bef471ba9113,1,1,Photobucket.xml -53c7d5a4a7c980d606e95998d9ebb2bac6595fd8ca882341ac9c15747387ffd5,1,1,Photoprintit.com.xml -2bd8e53696537c5812bd23b9c6628a3d0af06be72233ef810040f3b23c8588ad,1,1,PhotoShelter.xml -674a0b637afbdaa73b2bfdfcab99c5b3d71a384787d9e031a134f792f3fe1613,1,1,PhotoSugar.com.xml -f9670b9d0e9d920a70d4ec7b2dc8179a84dc5990178b6b342a670d15fd172d3f,1,1,Phparchitect.xml -3af24510a340798c94b74d84d83b8d97c908a99c176285f01e01b9233257c6eb,1,1,PhpBB.xml -d207479c61bae758355d66740cccc5b8933c177ed185600cfd2383ca44b07048,1,1,PHP_magazin.xml -2b45bb4e70e3004d0fcf9b51b953876fe7fd98e5b0d739600cc8c69a90899014,1,1,Piatt_County_Journal-Republican.xml -70a3d36ac63cc90318f72a656baf1d5dac0def5b77a5bf6057985fedde3c9bf1,1,1,Pickaweb.xml -cf7b1bd5b721d925da006f39ba1871955f031865f0671ceacc1682158090e92e,1,1,Pictomania.xml -c61b68f560cfc6cda531b80deac58b27ec6204878730a246b35a2a0c0b59a14a,1,1,PIERS.xml -73228b03209d957e30c9949ed6f98aea5cb7625806c66b5b57d43d5cefe23273,1,1,Pimg.net.xml -5c642d04588720a0e664a199e104302b390ea9164d5f94679eb3071cc419e6d7,1,1,Pinescharter.net.xml -351933a4ca393d784a3e0255666cdba8645c9e2d8f56ea3231467b53937a7460,1,1,Ping-Fast.com.xml -7b985d61f4de854ab3c4e22ae7a751e94195674a4da418aff52ba59ae9987577,1,1,Ping_Identity.xml -afedb6420fe0dc9246a1e3704d1b06967e04611e72032e5103d6937ad97798de,1,1,Pingless.xml -3c5a6453f20a2462fedce8629a68e47c615c8717e7f5934f3271d71bbf3980ee,1,1,Pinme.ru.xml -662023093afa853230351a22ad3a03d92674583751f67b1c77db57439da389b0,1,1,Pipping.org.xml -ad561bda1b21a7cd37292fe6517ed7450fb842455e660f2900652724949f6f2b,1,1,Piriform.xml -dcae5488ec16f197e07694590aa54be513815984fa0b5d5ea1bc08ab3557ed5e,1,1,Pivotal_Labs.xml -ad971bf2c77b4ec56dff4b1ebd768b42d166804aa93c19a70dcba398a4045a3b,1,1,PixFuture.xml -92ad78a298b8f4be0d0b4aff2d5f19fb6c7c82f5d6f8567694da3e0c68edd3e4,1,1,PIXinsight.com.tw.xml -f271d90bb31a2cb8dc0f62f9df2f17b575beea0dd022090c0960f28a92ad8ad6,1,1,Pixiq.xml -4834678e43c431d16cc1c8b7d2d226334b740c485bdf7e163241ae24938c0443,1,1,Pixlr.xml -78052284fbb334289d9e752193c08b0c8ff5c8fc92a3b39307337c8ba09d2c55,1,1,Pixnet.cc.xml -b84ada13e6f5cf133253dbdcc57309d22aca26b01618f3a9595216affc6ecdca,1,1,Pixnet.net.xml -e003a3a5770e69050c1accb50e3688d18332e9afc5709c67d6ed37b21143d042,1,1,PJM.com.xml -31dd3078d2a271e9a9168331e24039ca47fcd957172cb2b1ba0c51e17fe9ae67,1,1,PJTV.com.xml -2045d71578ef2f543876076c1cb5ded21813374804dabe5658b6d948243abdf6,1,1,PKWARE.com.xml -845d33529034ebba98bbcbcaaac5964d18c3f7b162b524de5f1119f09f6def60,1,1,Planet3dnow.de.xml -56c3e1cac4182da64d08f8022f8c7a23d5c7b289bd16d8121a188b07e140df46,1,1,Planet_Emu.net.xml -17825c9a9cd2db7a5d13875ea74970ece1ddae9a9a557ce3c3630c583be0e8d1,1,1,Planet_Minecraft.com-problematic.xml -0db29daebd5c2d55ec9721bbd915578b11b5de1fd8eb4086d36713d5a04b2b66,1,1,Planet-Work.xml -2d6458c3a62bd19fb80488eb27062b9d7c6adeda4ac15c1c7545924273af861f,1,1,Plantronics.xml -457c38bfce88fafa8b9ea0f8fd9858c7ffe8d8395b3dd8df61c73f3d51aa38e6,1,1,Plant-World-Seeds.com.xml -8e6fc4d9e5e450b5309695517330c9f7a79721eaee4cd234596dcc77b5b71d7f,1,1,Plastic-Bin.com.xml -1094a99b5e8a0abb9fb46b17654826e1a8387207caa3278f89949c8b6d0f2ead,1,1,Platinum_Skin_Care.com.xml -41ffeb380bd1fb5d7972c790667fa5c0d2ccd2afda7a269651a65372b52cfe04,1,1,Plati.ru.xml -af326d89812059824699a52128eb9ce5c046bdd8157ba00fb9a306927ba82aef,1,1,Player-Attack.xml -f17442d3412d38817ddf3cdd8ec7f104b45f54d6175505b0a315d5d655d05be6,1,1,Player.FM.xml -f8eb1c5b920d861d39f2f49cc5b1b5b781034d05a5c5970492e2ca678feefb37,1,1,Playlists.net.xml -ad2d00509e5e01cff6e617309b9bb8f251cba1868263ff5cca4e17bb43c5bc6c,1,1,PL-Casual-Dating.xml -5ad21240dc02ce7be71f92e97e1f63262e6e839d605135c4b82ca69d20115d56,1,1,Please_Ignore.com.xml -8e4f71f2c21971751b4669d02db149088429c727002101104ba57365f5804531,1,1,PlentyOfFish.xml -5ce86ee0da32f6c5981cb7475e0a8380312600efe02838ba40dc8dbfdff5afed,1,1,Plimus.com.xml -4a3715f7dd7be20d5abf327530e8f42db2b8a76c9804fdc6042ad505a856facf,1,1,Plista.xml -276a6de950c7d1e713a52f2dfbaf55d94c612fee0ce7f69d5ba868c1d48ae719,1,1,Plone.org.xml -b24301ccfdb27055ea2218f9e9ebfbfad89e7b0293b3f4ef1ec8175e7f32c945,1,1,Plus.xml -78b114e3756ec21b948939f187308f695fccbaf94f4cc8f588f262d84d44acf5,1,1,PLYmedia.com.xml -884fc226dfa95b00a4029c6a4a74568a1ba47a2ae624792486b5cb21056ef835,1,1,PMC.xml -3d08fca17433ab0e7184bb76c5f404e164a09d77c2cb1f2093f7b3d9c6cf823d,1,1,PNC.xml -92ea35c6e7d831800b01c553036275c9306a0d3f1c0ca96d50d2c9a442e8c407,1,1,Pocketbook.xml -d5746fed31d84a65a467903f125beeea666a6a2d54fe5080eecf065bb00146aa,1,1,Pocket_Casts.com.xml -ca77e2b2c075769fb2c776c97327a8a6c831244e01334d877779d6f34e0c6df4,1,1,PocketMatrix.com.xml -de183d823652107d6817148ef14f0624ab67e95e1440808e1f12a41e1d52c324,1,1,Pogo.xml -82900ee0fbe5e8da617b95011724372fdc7d1a9e68376b6e0b46d6128fc0419c,1,1,Pokemon.com.xml -5e4613a8d4934b780820038bd26d9e3632dff93efb90d248dcace0ea4bf72d74,1,1,Police_Mutual.xml -ec02e09235e4de9613976ad16d529cbefb4862725bacfc6f5d16ed4ae238ebc7,1,1,Policia.es.xml -c49da74aa47e19a37b7666a82adb016db5485744785e4020a687026aae5bad5c,1,1,Poliisi.fi.xml -ed360bd7adf7254dcf2698e30ca35858cbf4cb1e37d305ed814aa2b0781de9c7,1,1,Polisforbundet.se.xml -8a694f9c1bef8cd1ce70799ac5df18b9394b1745015d1e1158f6dc8a723a7e46,1,1,Political_Wire.com.xml -43181b1b84a18736b971fd4cf9fbca2035adf94aee0ae9653867e767aa753f82,1,1,PolitiFact.xml -fd7bac449610576bf5a1d87e2277ca130fc15ad1f557c6eb5679ca615b5ccc30,1,1,Polldaddy.xml -2231d756f2950505a69e7baf8988f2b201fa3467ee0434fbb9784b0f2a317b4a,1,1,Polymer-Project.org.xml -4d4ea213fc0c25da33f1ddd6aa91f034a273c23f94b6d788adee635eda1c74d9,1,1,Polytechnic-University-of-Catalonia.xml -166b6da32b4ef4729aad696cc9de165e8dea709596c6724662ed4189d4c507b0,1,1,PopCrunch.com.xml -a454a4fcccfa08213c2e310025608ad2f641279ddab9bcf87051d71a2859fbe7,1,1,Poppy_UK.xml -62ba89768f63d01a33108d6612b1439a9dc7e1ebace2ce5c57ec7d72d5f7d562,1,1,PopSugar-assets.com.xml -b9aeb8140b8c5ae9e60adc1f3189a4fcb72bb245869ab5b17b13eb2f42343f4c,1,1,PopSugar.com.xml -39b3fb002be2f0c21eedeb789fefdd1c97156871429ac6565235eb9132373fe2,1,1,Popular.com.tw.xml -37875c27e806135f0ac32c517079c7bb99f00e22dc3c2ad828ef0e8455b5d04a,1,1,Popular_Mechanics.com-problematic.xml -1ca3755dac15857a47afeb3ac8234d1bf0e8095c43772a5151a5c9641ce3ca69,1,1,Popular_Photography.xml -194c1c4951fa6df2bd486ece185ee8106c0319cc7355fdfe365bee8bd286fe98,1,1,Populis_Engage.com.xml -e80eec223937d00477f33bea225ad1396cc725ba489e205a3cc07aaeeeced790,1,1,Porlaputa.com.xml -4acb2c18ff46d235876ac28da274a69fdbf34c411da8503f46594d59b3f88d6d,1,1,Porteus-Kiosk.org.xml -1f51c92f408edb3aafc43d5be80a659c5df57ef10b9a02f96649458ecdc25f2f,1,1,PortForward.com.xml -83397e02acb4c2eaf0580e481aad5e18a1f64e765b4dbb168b4abb526610e982,1,1,Portland_Mercury.com.xml -a9497c487231592a8acc567050cf06845efd8df27df3744d693335fb25ae803b,1,1,Portland_State_University.xml -9d9f29b0e53a626445a096648cce8a40e721bfaf0c3e45b3066f19e78ae9fdf1,1,1,PortMorgan.com.xml -5a938e46030284ef487b8685ea678529ee8ae116db9b74824d0a160308be3d59,1,1,Portner_Press.com.au.xml -a3e9889f1fab89464f2a4ef9b23b21eb9b2a6aeed3b4f6ab8558529e4741a0e5,1,1,POS_Portal.com.xml -19d456c372cae14406899cbba5abba4c69579ab946d75d80912d6ff588c45182,1,1,PostgreSQL.xml -291f134543859ee92992b451afa2071cc6380c39e54f763bab95948f81d48090,1,1,Posthaven.com-problematic.xml -2b0380c97fe0ac0c2108d328fac3d9f3bc16c3f397edda9b1e5e8c49a8e77bd1,1,1,Postlapsaria.xml -eceaf74b113103f0dcc97143cff2b15e8a1a781fa3d21d601a5e7d6ad232cded,1,1,Post_Office_Shop.xml -4e5dbe5aef10968d09652fdebf8630baf5f78e41edbdf230238a6a0166985d6e,1,1,Post_Office.xml -e35657f0aa0e705372342c6752ec5e6066031b10738c8f518a73babdfae1bfe1,1,1,Potager.org.xml -e699af2a0de904179a543e2cef6b7f805e123404341dbe5e8d78dac3708fc644,1,1,Powerbuy.co.th.xml -6a46cc87c3f3402eb83b4e1cbef69cebd0aefc4750fbd15d5b07586c56ce9f3b,1,1,Powerhosting.dk.xml -b689ab0bf3c4612108106e20d8ee8afc95b2459b255b5bafbd243e152e9c0622,1,1,Powerhouse_Museum.com.xml -45a2385124bbc4baacf58d0ac9bb540a2b8b29c45bf5ba1111c1764bf960c65c,1,1,PowerPay.biz.xml -5af0d3449d3939e8524205c2452115b5fb24c3d8a60e44f166539afdd1629fa0,1,1,PowWeb.xml -e168b54c858e4cec5e942a544bf7028f787812923143341bba305f08f256c7fa,1,1,PPCoin.xml -b0d4020ae98c0a8792a14d61af286d8da58bdf81adbd1d1e19afc749ef600bc7,1,1,Prad.de.xml -cd77cd778f6fc3cba9785898cd1b599e195fff4fe51b90a42a5ff89002588fab,1,1,Praegnanz.de.xml -f18bc789e6e2be483cf21a6e3d87792904f8bf4ddbc6ef59bd608ed84438cc19,1,1,Pragmatic_Marketing.com.xml -91abc2fd849061f082ad672eb387f6bd8b4995699b255ac23a59db316c86ad69,1,1,praktikpladsen.dk.xml -2b40b4e8450bec409fdb41f54f635e7e70f9ade4e37971cb92487b2aeae72499,1,1,PreCharge.net.xml -d10c70599bdee34655546942c44ffa015428412fa93eded9d64afcdea0aeaa76,1,1,Premier_Tax_Free.xml -810fe9624db6579cb589bc5bf86447dc0bba88983b89c993152fd78554898224,1,1,Pressflex-mismatches.xml -0e9827cd904c25c2f99fbce5aea010a7597a53dbe9b9a2622d2377fd10b3c3f6,1,1,PressLabs.xml -4141d224b63536c2f2242348d3f46f02cc5059997b09333de80d3e39c1fad93a,1,1,PressPlus.xml -21617638c3c1db167578ab5dfcdf36d7e149c52dac858a57975db0e8efc8e245,1,1,Previa.se.xml -a4525c501ea8c5eb1c00e8bf6367135f3d6aa9649dabf87fa9204ec52f161543,1,1,Priberam.pt.xml -302da6e9ef8981e7c9fc640d28274768775d2dcf4e6db959d02538d6b7d061ef,1,1,Priceonomics.com.xml -65f6f65113526347d5525105773a7579d9301a6d87adf13fa18499373b18db13,1,1,PriceRunner.xml -f6153fa6f735825cef7aed6db5f88a20d5c912be99e15c125a11fc68f676343c,1,1,Priceza.com.xml -870728bddab08f9ca08874e781a3f972f18d036259a25649c4cb1db371e89579,1,1,Printrbot.xml -e0519f9b99fd87886edb3fc154d3fc1bb145333aa536966d417433030cd82eda,1,1,Privacy_Not_Prism.org.xml -5cf3b9bd3de69ab4c21e203e652b0e40ef8095970db6e66288dc4784928e4b26,1,1,Privacyrights.org.xml -9335d8279c8e6c864c1c38fc7e140fa58be572a28ca0841aa83971d4c3a67260,1,1,Privacyscore.com.xml -87c6ed0d4d30a2316acdf4cf221b50afb7c04dfed6cc424067b81d9bf43e63cc,1,1,PrivatVPN.xml -311f5788fc38e8633b10d3864ec787d33d6c7bf84e9a9917c01a78cb48ddcfc5,1,1,Pro_Bike_Kit.xml -10d5ac3edf7cc569773b8371ceaeeb01c4542035eebda8b9081b42b47e0e7af4,1,1,Process-One.net.xml -431af17050e405d37c9019bb57c2e8f09692adcab9a1f2d3893cc2567dfd8b52,1,1,Product_Safety.gov.au.xml -65363f76c540fc9b7840db82c23f305190d9717d9ab3635647e72a9f8e0c3529,1,1,ProductSafetyRecallsAustralia.xml -f55d12ba30d05c9ba088ec96236232acaf987158f1803c65ca82028f8a71de64,1,1,profesia.sk.xml -a64a07e09d61496dcf7f1edb18f026985bb0f174a35fe0c2e7cc593160942964,1,1,ProjectHoneypot.xml -a2368aa0acf38c7be56b94236d0deecc65345da5766e0f36d0c0e6d80aad8f63,1,1,Projectplace.com-problematic.xml -a85988ad3b608e00214d7633e61c3185e69876a3f8ab6fe0c818844d987030b8,1,1,Projectplace.com.xml -7d0bb1e445127b3cb363d2c68fed4fc72b02ec0b62d2a42a4ea07d00479584c8,1,1,Prolexic.xml -ed81e7fc8de7196452e9e9c0821196ba5de17d7274df4054ff5bd95800fe2523,1,1,Prolific.com.tw.xml -aa4d5cac16bd602d01e6b96d716a3b312639a2201cd1aff8fd2e2ca3101b95da,1,1,Pro-Managed.xml -f55011e0710b45f52baf018585014c8aa7ee3e0b1b57153b7f85f8082a8a8ece,1,1,Prometheus_Global-problematic.xml -246a93f2f00b5aefc746d0e660c9d24ed00e877579176df74b4bf35d0f61214f,1,1,Proofpoint.xml -632de51c809f29f705d7997d3f2b7674ea97aea38bb0678b1de48f0c6cc58bb8,1,1,PropertyInvesting.com.xml -830bc181224aad92839019ba47fba2a486020bd3acc4ea9b27c84e2fcba1ee5a,1,1,ProPublica.org.xml -34825b9e2d9746c75d16c7309e4313f84a65bf12a2cf2b33e091c74d09248ef8,1,1,Prosystemfx.com.xml -b5fba140a1ea690d27a760e2585c712685b0521b9cad02f3056fc0ce6f5a8643,1,1,Provantage.xml -1cb843c4e551e1fa8ebdc15a2b493d0153e987fb85724bb426e5bde21ad44634,1,1,Proven_Credible.xml -ff6cfba26a607be1269e2823c57e5fb5e5c4735d85954762fa935239600e8aed,1,1,ProVenue.net.xml -749aa484106ab9e7ffcbee5939249d8350b67f11fd2c83b2d6e18782ea86b3f2,1,1,PrudentBear.xml -50adf025049aca05b11b491f2b307bf1ecb7a4beaffbf9022f4bdfd30cbe7b2b,1,1,PRV.se.xml -05c868c1c858abd8e57044f301b234c281562fb4e81b4b95d3102e61e9eae0da,1,1,PRWeb.xml -f5a7ecd99e9368048750e1de2badf731fd32eb5b21fd471651dd12d33c400e34,1,1,PRX.xml -7529864ddad3be2820b1392717c117aac200b5cbc51f3233089a2d53cd46e498,1,1,PS3Crunch.xml -d822a2b6a71b5ab3696a7046dab34c7dd9777e7d8bc7b0c2173d5222404260c5,1,1,PSSL.com.xml -2cb55093e265bb1a2c345613e293ba44500cc31603bd713c6dbe301fde49654b,1,1,Pss.sk.xml -4165710cf8b6760a43eb078fd0356fe1ef7285687e1c23205c829ab8c0eb8ed0,1,1,PSX-Extreme.xml -fca579bef6575b699d2f3239f2aa31a80efc1c780a771e3eabdbd3b67d87d594,1,1,PSZAF.xml -933469a7c612ed85c345b6b85e40ddc0869c4af696fe8fd142568624b55d602b,1,1,P-tano.com.xml -cfc805519f9d0fdd5d11d39b342c75d6e42a900cc286328efb02b358bbbc8c3a,1,1,Ptpimg.me.xml -d7154776e888ffc460ac2b6ca7dd308983bdd3a0cd65ad5b84320624acd6e145,1,1,Pubdirecte.com.xml -810833bdb010d1707fedd1f43e0ba19c69971c8e9d4392bb396e3f757f0e45ee,1,1,PublicCitizen.xml -9122d429559c7b48712e6ee512c422cac4f1dd79e9e9a0737c91d3a5173c6f72,1,1,Public-Knowledge.xml -852468fe12db8c0e0c8e3fdd229d180bd4489a4447e8fe43de6e8cad0bd09c46,1,1,PublicSectorSuperannuationAccumulationPlan.xml -23a44647cf11328fc8ec23513bdfa9ec5b4f1b9decd9a81450815c7f28ec8e78,1,1,PublicSectorSuperannuationScheme.xml -2caa8440433b504450c68818dc369cfde301056780069cefc9626beb1afaee23,1,1,Publiekeomroep.nl.xml -60a22ba8003d4e7d3bf1a9c0dc45895ee4288e30b0e2a6e3e56b09f29a9248b3,1,1,PubNub.xml -f7e6aec7d24758aea2fab342b5c55455874ed2bf6684a972c6c10033a0a42f70,1,1,Puhkaeestis.ee.xml -6587098fca3427a565525e04cd45ce14229ce1b566449f425f9e52b078cb3f07,1,1,Pumo.com.tw-falsemixed.xml -d9044daa3fa3513400d2990aedc735eceeb815c896b70a96f95d4d79b1c846fd,1,1,Pumo.com.tw.xml -acd28dcb80d57ad032fa2e32b4154408acff51b7c1e05dab11ca64ec95cb11b8,1,1,Purdue_University.xml -cd3f68930e6efc52546d166cc9be24afc3a68c78a6eb7d6747cfd3250fd9a288,1,1,PureHacking.xml -886a92f942a718b29f63e0cac39b387d728c76a0cc5e478a0f98d30be334c0df,1,1,Puritan.com.xml -8d9a49e015e0c3fb099c59e79863370562cb83663d48d738201b7c037b68b2a9,1,1,Pusher.com.xml -2317a054e72ed73a054c0d1e5c505c7c97ae00d25e29d21227133c03009fa96b,1,1,Pusher.xml -4b783b041ed61c6eb5f036417331267b2f62014d95d45326d071c232555b7c4b,1,1,Push.IO.xml -3c9d06d9ffd5caf007fd991a4ca268b1926234e5dea0ef57ead2e7659476c1ab,1,1,PutLocker.xml -0c9b2d18c06cc6a3cdf9e3eda7c17efd3932f0a8a10e733cb1e3639b5b367dfc,1,1,QIP.xml -78ee275f600fe0cc6ca08bde49676513aed08a6f12a2fcf54d052c869ad16e4c,1,1,Qoo10.cn.xml -79f1b222e500c7165dd88c82e66606279d4408c77dbb1ea93a8ba80ed67f13d3,1,1,Qoo10.com.xml -d504299fce0101a535923de9eb5d3f07457141683d375bfb12bf5f7fe0884a61,1,1,Quattroplay.com.xml -11670da974bdbd3ad8f36d0905cdb3b0a259181f1c2a7082c85c2ba432a1b21b,1,1,Queens_University_Belfast.xml -5058b2dd73026b5888467dc6f0cdcf7e8024d92ddc8d685351be4b1d6ec61559,1,1,QuizAction.de.xml -4d0a6169323a0ec0a1c485935648058dfacae4fa77af279c293153a83a520b3f,1,1,Quizsnack.com.xml -24d6f1b5d52bb2d35f5fb1b8a1b0ac29d20dbebbbe0bbdbb930e560207b57511,1,1,Quora.xml -ba79852625ee5d552305acfd7bdab46fc7f8a841e0b235f79cc0d004dc97815e,1,1,Quorks.xml -78134572161adfaecbfcba6b4bf05bbcf24d0ad58ec347b99f9526dd94032a7e,1,1,R01.xml -f58f45079bccedfac719c96a93db1e72d303f6242ca96d84933dae4d59dd0eed,1,1,Rachelbythebay.com.xml -392a97f49490482454efa4cb0c0370d6e9791819ece5741ad685db2258c54ba9,1,1,Racjonalista.pl.xml -a528fade4ec3280b09242df1f18bf8cf465255be7640d16222810d16da8ca8ff,1,1,RackCDN.com.xml -b094f863fffff8ccba5d13be6fb1fb60229fca2b2ccf00a74891c92488aa6940,1,1,Racket-lang.org.xml -b6b80b8e6effda900873a33d7f0c6865be96761af04446b036a54a44ca6376dc,1,1,Rackspace.com-falsemixed.xml -2de96c7071367eacdc5e8080355b4ed90690feb25878286f20ebbc18e524a624,1,1,Radical_Designs.xml -e408f97c754819fa64101412feb9718b316520a601ffa448d5abd67c8a59fbcb,1,1,Radikal.com.tr.xml -53fa3192655dd12fe95df6e4054378b1aa4cee016141ea5b55ff62a0516a3af1,1,1,Radioleaks.xml -62cfb3725049ab3b681e9224924540fb6ec9b50600bbe7a5322150895e4ab29f,1,1,Radiological_Society_of_North_America.xml -38e57a4f0a709af70a0501e083bedc8f72d5b148dab4a3742cfe8ca0f43230c4,1,1,Radio_Woodstock.com.xml -49ded8b4d49d4b7ca624d7fb736786d7302955e669498ace9f2d2fa9378f9dbc,1,1,Rafflecopter.com.xml -be7e41eeb775ed3a092eb6caa67dece5052bae12be23f72922421af695d2892c,1,1,RailsConf.com.xml -4c77b654dbf3105925b5f47ada7ed8a224bf368d0bf5c7473518c327c1e46a7e,1,1,Railsschool.org.xml -55f4964baf295795b80f42cefa274988cb22da02a9760a06a78d6107ab393de2,1,1,RAINN.org.xml -7a68ddc00697bc7d0b4422a68146bbcca499badafa24994a54de1b6eb906888e,1,1,RaKdigital.xml -6c99d6d2d21ab35b4efd6e93ee3f75acb7b627ec19877ff4e91bf21749e375d3,1,1,Rally.org.xml -5b516f82635c029d35e6b0a3aec6b385b41d572e5987f9b91aa880f578afaa48,1,1,RamNode.com.xml -39770eee73097be9257c52d47336b260bfc65aa25d2fbb5919ffbb579b40c664,1,1,RAND.xml -479d1186013787d5ad5824cdc9301533cb83e4f3c5c43fcaeaf337803bb39d09,1,1,Rantoul_Press.xml -3cfaea97db062d4ee954d734cadff71f6f7ddb101bd9ec3e788d8bd6f85f1d39,1,1,RapidBuyr-problematic.xml -b3cb715eac83bcbb6afb997b6c18efe760bc90aef242f1d57a403d457bef9864,1,1,RapidBuyr.xml -b28c129edcb211f427fb481fb7ea2d1984f834dd5a41d7b035c41490c04cdd25,1,1,RatfishOil.com-falsemixed.xml -c141b46bc6e8bb32c9eb0beb311cff1ff66e003fef23f11d8ae1e23e1a308cb8,1,1,RatfishOil.com.xml -5c5fb50995421b0bb87a4f58d9c8ffd66a5ea62694117f12aac728f970c3a536,1,1,RaumZeitLabor.de.xml -a5f312197dfaebed7e4ba8ccf0b32d481943f1f01a13b3050dc70cccad69133e,1,1,Raven_Software.xml -26deb085c5a35aa9e9fe0bc5fc3426b4de066ea31d6e24630f0ecfeecbf31443,1,1,Rawgithub.com.xml -922398c3843dea87e31afabf326f9cd2447344f6aed0f93514f2c98dbe69c9c8,1,1,Rawnet.com.xml -756f77f10a52b068ecc341881c58130ee18f994d935ed337b9c36effc3ca659e,1,1,Rayner-Software.xml -e2125c4ff7f8379155ae1cbe641d8d42fc62ede1add7edc1abf0d519b28b231d,1,1,Razoo.xml -1f625b9e5210e4cdaeb0374adefc086916f2485e59f4b862a1c4be2490652773,1,1,Razor_Servers.xml -f8be2a2667f90decacf4019ad460037617c4a39be2c437395df2448987ca49c9,1,1,RCA.org.xml -168033a9adad970a8ea53d1ce0eb39d6e5516a7504ee3ea15bfd3db7ce1cdc8b,1,1,RCUK.ac.uk-problematic.xml -79757f97f7b60f450d8440be0d4280a576539dfc57f392ed11818a03876d208d,1,1,ReachLocal.com.xml -26f7ebee5d1496c39f57930c112e3e28dd99088d89c265e52efb5a4cc1dfd0fd,1,1,ReactOS.org.xml -13efbd657c5c64ecbdbee93b603d0bb76368716dff6e66366bc86e60c82235e6,1,1,Readability.com.xml -e113693a7093f79a8d7f790d4c5f5f7f957e467aeef8a6894f6a67b07f796d72,1,1,Readers_Digest.com.xml -b462baa89b5446215911bc070deb4901a26c529ffd986f866d17b5151bb3dd8f,1,1,ReadItLater.com.xml -41653b528d317761c5c16423c2e4d33ea37646cec0801764b40f21cd8d7e7d0c,1,1,ReadRobReid.com.xml -3062eef28b7e7c5139893d742c58e9f5311e82b6d822d49da082db570374f0b5,1,1,ReadyHosting.com.xml -4271c106962c429f1d47a198dfb7d837d815ae9c5188f169f893c348623fb8bf,1,1,ReadyNas.xml -8505d26fe4d69ad974a9ef7d0220858a70a0353a998a8f103389b0dac8f6a721,1,1,RealClearPolitics.com.xml -65002fb8676849739c54b0dd684aae2e36792c16ab5144b1cde089a6561d2f52,1,1,Realtech_VR.xml -d02d0ef8d9228fb73ed248df5c49f8e5f4ef408e4cd0442057337d7cc00c8537,1,1,Realtime.co.xml -175a2519105c6a213529364cc7d07291395b1990d6972eda7a6114333639b0f2,1,1,Rec-log.xml -e771cf6e62296ffb98fdbccb3f1f17b316575ca7f3cda0e20a32b736cf0e58d7,1,1,Record-Store-Day.xml -3d81ab3a1e068cc3e433fb67054d899bfb0de1806dd6a4a04c6960c400ee2403,1,1,Reco.se.xml -e9fb62effa61feb3005f0865f352c6f471bb6ca0318c690e1fb91c6983e5214e,1,1,RECRegistry.xml -b436dee831b87aa69cb3b905bcf593cd7e47ed08820189f8974d4a3e00d98bcf,1,1,Red_Bean_Software.xml -39eff1aef0a36525f9f373d24e20fa4850fff65d2acb945dae316680b84ed334,1,1,Redbox.xml -60738cb7402596b4df80fcb816ccd0b7201ddfe28519ea5eac14032d977020f0,1,1,Red_Bull_Content_Pool.xml -358a803e6694670ce113cbe84d04335e6323f745631712ee5c92a2b27b3011c4,1,1,Red_Bull_Media_House.xml -f5f4e5770ef84894d68b4743033e33f2907eef674a04342f07a6b1e2a6c1cb5f,1,1,Red_Bull_Mobile-falsemixed.xml -0cf1955ace195c6b0ddc0b5bffed0f41bc193291ea29da0f979575ea65eaf195,1,1,Red_Bull_TV.xml -d782a5646c87d8158dcba9e72345ff2d288306d579cabd36d16ff1ba3385584a,1,1,Redcats.xml -def99e9c52843ab97071e7c51143321c1bc97dc6b2395b2619b4f9ff7d197f2e,1,1,Red_Cross.org.xml -8a9ce238b75007715b95538b35b88e0d8169d1475b57b620e773b70eb86be3c3,1,1,Red.es.xml -5131e656638f11fb4593a02bb49c601f5bced0eae41d40fa23204eb04587c50d,1,1,Red_Ferret.xml -3eb21961867734b2a94ad5cf657258520891193e0d3067bb0fb624a4b1a68a18,1,1,RedIRIS.es.xml -520f55fa37450f41727427b048bfe020b5a1da2fee5f4123e3279c77806aafa8,1,1,Rednerd.com.xml -f53f48cc8819321f46aed9c297b688b9993d6a9de165e8763d0f37c8ebb26381,1,1,Red-Pill.eu.xml -022f64e1fd961e6dddd0b67103a9bfb71b2750a20f5f80cdc08c5f3c40d386ad,1,1,RedState.xml -a2310e3723817db0a64b29881ded303934c0902996e66fd54266c8fcb01acc43,1,1,Reed_Business_Information_Australia.xml -1bc93887c36392e422e57cf7b8352bd344b1d034cbd78d09da67704520b5ee37,1,1,Reed_Business_Information.xml -49f413717d683b1902cdc262e5a77d4ac119e9b2c2bd4f19b0139c0298fe0c40,1,1,Reed-Exhibitions.xml -9367d9ee8b8400372e7835f87118ef96688a260d514b8f8a520517d7eb83f792,1,1,Reef_Builders.xml -b5b101eca488fc7adebe10a24464658ad959ecb4abeab89e78f1301ae07bd338,1,1,ReelSEO.com.xml -f67b6b6fb72b8f527e63914337cfb4af1ca315cc6c3000de73b72663e0257c0a,1,1,ReelVidz.com.xml -0fde1b026ce9f57fe5f54946d80e89bbf4b6493f09229decc85fbfb2430fc674,1,1,Reethi_Beach.com.xml -f2fc60f4708844a676a40ed62e0ecb64845fb4b737925ca86a0c89893d231d54,1,1,RefinedLabs.xml -0dca7f8db4e1a34403795e066f569135f7b6a690847e640627fbd4cb613d71c4,1,1,Reflex.cz.xml -ed697b644563bc08f7a64bcb2d4b2d64353594ee7dbb57727ac8ae94403b5dee,1,1,Reformal.xml -ba5433cc440b527b0ac40a27ca63efa96122103a9bb85d2f90b1bb28c582de62,1,1,Rega.xml -0cfdd7457ea52137be77fb927d8aec2665d3da59d9ffca2e8117b9e530ae67f5,1,1,Register.BG.xml -dcf1c57b3f9c3823936d4db67a87969146b8efebabe44626542d379848422ce7,1,1,Registryrocket.com.xml -c74512d5ad6cb05e8d017ffa2610ef5f62f3a5aff3630c7100c0cdf66a7c75a4,1,1,Reg.ru.xml -166883f0c4f7b437cec432efbd6e6f3af45faeae0d69be361f8cab01a9cbd3b9,1,1,Reichelt.de.xml -5e83188980d3c2b83146dcb31b2d9ae630cf2eb06ef26bd1697234ddb7101112,1,1,Reifman.org.xml -5d23454687669a3d598689f9418756c861eb66b5cbb714a30247a8fb9f4836a9,1,1,Reimanpub.com.xml -888ad874942b60996a054e52ce5277cece76bd84e05af6d197f19dc3004870ab,1,1,RE.is.xml -998899bdf93043ff94f1e3d06c076c464312e85a7799f87448e8d61fc2896fba,1,1,Reliable_ISP.net.xml -4b05c5b070f01fdc1f28d3a4c0a35e23aa9df4fb04ee079240a766db5db1ce3e,1,1,Religion_News.com.xml -a05df2c16a502f95474110418e02d34077302cf9377bb298c2ed3da469cb08b4,1,1,RememberTheMilk.xml -9f6215580d0f68d5a791503d13f1a5de3e4253f8ed4a29cad1cf1d1c7912a6b8,1,1,Reno_Gazette-Journal.xml -1da1acfcc60f876c67237f0df0e57ca4d80aaeb0fed29724ae2e98b7cda3f7a6,1,1,Rensselaer_Polytechnic_Institute.xml -0258430b6cc1fd2150850259bb7ed9cbf4f86359b5bed89d3d255b9809d14776,1,1,Rentex.xml -08478a26158e294caed24907e5709a73b5047c7e02a233c59ba375cd81e06608,1,1,Rent_the_Runway.xml -4694a9c81d65b951a54741e724dcbf6ae71e205fad3f2a1ccf028916a8801eb6,1,1,ReportLab.xml -5cb0ade0d5d1dc7e4dd1ccc665dfb4c266ada546964c320112cfa58311fadcde,1,1,Repozitar.cz.xml -df6a1cd7bd092eab928286a2ea29b97e9e2d85f9fc6388079ee843d43b1da80c,1,1,Represent.Us.xml -88e398ec4597fcd0126db82a9cb9efad999c17cda7de00490943b9ff12551771,1,1,Reputation.com.xml -97c227a9339f8d2100116d0f78f3795404ff88c9b2af12ba755db9919347253e,1,1,Research-Blogging.xml -d922f4c00cf45c0402b3cd984a423ae4c8d6ef7dbb9ce8df071542923929f42a,1,1,ResellerRatings.xml -99c54146351ebc37702c69036a7969daf602f88a46a6659feed01e378049e8ee,1,1,Reservation_Counter.xml -a9c53c0ba950280c63d2d6998471101d1958e391a7f09492303906f91efb4b88,1,1,Reservation-Desk.com.xml -0628dffc32ba6c6af52726b430d69160112d8d353b78dfc09b733c8c3e12ade4,1,1,Resonant.org.xml -3195980f9c2ebfccd1b8883eecd977421293e5aaf61821518ef7273a388eed2d,1,1,Resurs.se.xml -a67a18b5bfaa7dba51643416054612adaee639d425a8edf44b58eda19a4427f9,1,1,Retailhosting.fi.xml -672a32774503073c3a3f1285df5bd70708a580f4d2c28a0251c0d710f23664ce,1,1,Retail-Link.gr.xml -f3ae0d8caa7ef6fc7eedd81112ae2aced0abb9849739b0f32ad9cfea8b90a8d3,1,1,Revision3.xml -00acf51b8e95fb8568e1bd246a9339f38f1f950d5b043f1fa28e14ed065ae5a6,1,1,Rfecom.com.xml -b91a1ce21dbc933f96a58068120bdda50bd0a150db11f1d8be42f6ea85ec0812,1,1,RF_Parts.com.xml -21643040fe18563efb75dae1348aab27c6d7bcafd9d86669b454959072350177,1,1,RH_Cloud.com.xml -43fc65b9a47b58c7b7713eff3fe92ec846cfedfe9842c5d862f98338980a9919,1,1,Rheinland-Reporter.xml -458526dd2d66909f6257f8880513e449f963626bf7a8ac59850c5f5661194aad,1,1,Rhizome.xml -ac063b2055bee50d03408a58042831dbed04f36cfe06e464a9ab053b262db8a2,1,1,RHUL.ac.uk.xml -13b94c783dcc985e5788810fb74e2a2d5285f2682c284a592b29195b4ad36be0,1,1,Rice-University.xml -9e9125cf9d8f5ff4f94224047b66493c65feed4cca9d091b2b419e671e66baaf,1,1,Richard_Dawkins_Foundation-problematic.xml -b37a12314e4e307b055cc8d72b1d3902fe55ba500b5ec4057a3eac7f459df0b8,1,1,Richmond.edu.xml -715f8d339dd77745daf37065dce3cb3d430573d7b6f1bcbc30b96675fc6ca9b2,1,1,RightScale.com.xml -ee3295274e717ecaaf0d99b9b99610049b00df35e27bbd1d91b219c65a5be2e9,1,1,Riksgalden.se.xml -a35bbe1b47256cf6ad5afd20257ce94024cd6f06c1086f8ad4e5ac95dba4d388,1,1,RingtoneMatcher.com.xml -b904d8a1fecd30aa8f203a72c6c1e5c85d3631b713ec1cef704cc24a5cabad04,1,1,RIS.BKA.gv.at.xml -bf59bcd24750fce1e1b920a8626d7ff5fb298dcb0a958e7397f9068f35214f6b,1,1,RISCOS.com.xml -25a9bbc10af32cd39adcb106036f5b87c0726ed9e72f4d9013e23eb2ebb09923,1,1,RISI.xml -6e88581ddeba07d75b4981e54492a29299b1f8156fd7ba4e99081b05d53288ff,1,1,River_Island.xml -1c4ecd5ee6961bc004080667e3b8d84872a002463135edc292ff5bd8faf7d6dd,1,1,RNW.nl.xml -95d89bfe630ad366fc0dbfdb5cd3e4a9e295a438911c217672a86cd9ed076046,1,1,Robeco.xml -133294ce743bd36c7b3904c485a88dd7007ceff186ea8b1ade553710a39c0fe4,1,1,Robin_Rabard.xml -b55fdd0af8d4977ed7e67387fe54ef4ce01b5dddffe4b9baef63d217e5ee9e92,1,1,Rochesterhomepage.net.xml -1978095d76ebb339233bac9451b1aca7f3255aaa0ec1eda3a8ea9daf0a80e0fc,1,1,Rock_Creek_Outfitters.xml -a3f1aab489ec09b4b991b1a42dfd46871d9372f1a529bef1103a6c8717d1673a,1,1,RockstarGames.xml -130f616ac2efbb8cba01914448ce223537e604cf673fc37e1d2a09cf1d8d7241,1,1,Roe.ch.xml -393e61fb89e40c646ec71da37210de51852eb2752a1ec8209e70fb6a91b0b2a5,1,1,Roeck-us.net.xml -435a81f1ab7f49f5a49a16bfab4d5b1f43c4ec9e817e01c308bf5e25633e8cd2,1,1,Roem.ru.xml -e5deac478ea7e83ca7a4c7b845dd564c9251dd746cd7971279cc1a7f8b3dfe3a,1,1,ROI.ru.xml -4f5311686f84bb8b3e0a5a9d3ba754641d54e55e83b23f80d371e7da702271d4,1,1,Roku.com.xml -4768955f01b8b1a8232709d1c4937368931aff01a524072e96ebcfa9ff8d5978,1,1,Roller_Net.us.xml -15fd22478b3ddd570748276ccce4c5a9e76a61ce6d87144c32ac0698d74fa016,1,1,Rolling_Stone.com.xml -d1b515fa4493b56aa98bc7fda6e2bfcff690ed8d16d9093a80f2be053fd8f860,1,1,Rolling_Stone_Subscriptions.com.xml -d301808d796f362d956ded340a0b7ad0f0aa188f4d80a7c9f2fa6f86ab4a6644,1,1,Roloil.xml -5c826733e1a5cf68d3ba88e93c9f33495e92703368a613e87bc714fdeb5de955,1,1,RootBSD.net.xml -c87744af4d5def5fef8ab80355bb8d7c4cc8133ec9f7aa2a624772c3a73997cc,1,1,Roster-Teeth.xml -08bff4e8c7dd3f00260a9483a60e270cfc6c89f12a4a01be563b6e9a2fdd88fb,1,1,Roundhouse.xml -c8e17dfdcad88ba286ab76cb9fd3b60285560ee14dbc83a4c531f03797b2dc93,1,1,Rows.io.xml -a6f07b425c4a7c8ba2f45dfeaf4255fa8f2265a53a53696445dbba9c6752d8a0,1,1,Royal_Mail_Group.xml -7fe2c62619eaca33d6814591d1500e9c2ce2f42c250a961cb7f17155dceebb94,1,1,Royal_Mail.xml -c62c1d06287e2c79e2d25fb8fbf8b98fe9946dac097548b86f5e4cf9b379ead0,1,1,Royal-Society-of-Chemistry-mismatches.xml -55c38c8e4aba7524de6417b974466292113fcd8c6a69db3e6e1b57e9b5e465df,1,1,Royal-Society-of-Chemistry.xml -7c2d3622febefeb76fff99f0bb065042a9900bc2470c7b3353f0869e624914b4,1,1,RRTS.com.xml -bc80489023f922c3e5bb0a352200e46301242afd3c3c9366f1fb87e218e28fb8,1,1,RSA.xml -5d416e56d592d3cb2599a00e7b90d85cb90b7a640d6dbb668c5a7d3d49064a49,1,1,RS-linkz.info.xml -38e182d9a20d3e1d7e7f4e8229a209b0d4c73c76a11d8dc8afc53ce2584a73d5,1,1,RSM_secure.com.xml -cae95a19f94841750a3ed9dc99916ec18692ec4ee42322135c74775a25f30c6e,1,1,RSSing.com.xml -f2167cc23e9d326313100d016ebb168ceed861e8a6b07f8a4b86ae3ad66961b7,1,1,RSVP.xml -56f318ca6b8f5c51699fba8b627ba828470db3e6b712d3b0aa9d4d1cd284b31d,1,1,Rsync.net.xml -1f87be8d9de10ec8ee2b9e7fcd42f90979adce40fe8997a80f34313423cf3989,1,1,Rsys.net.xml -3b265196f1568487f91bc203fcea005f88de381527e88a4fcc0d73e927c16d33,1,1,RTK.xml -eae3fbc7bf04ad2098b7d4f58372692b54f160c5903a53404535707844706b02,1,1,ruag.xml -c5a6787c005f299d4bfdc1020bf30ee3c98c08829b39c4ed73b79f432edaa5e1,1,1,RubyGems.org-problematic.xml -4e0d221f614b725b47fefee42bda338000930b16835c0e47d681158462224441,1,1,RubyGems.xml -64e4602b0f4e073c32a0e831ca509066a33948d7ff879a84e640b88b86b829ef,1,1,RUDI.net.xml -c1bb99ff50dd8d2fa065f4f18a75273e17155db5a80f9a4b24cacc0ab001daa4,1,1,Rudloff.pro.xml -2321ecc3aded3835fcba2f4229ea020963e1b4aa5ad813e1219d670cb923e69d,1,1,Rue_La_La.com.xml -135a7460acbb6f1402ff7a60ef7c1602e91a2ba838d16daeef62b558845c8230,1,1,RU-Golos.xml -baa1f252920fe202d06adf87a756621b3c98bfc56cad2bfb6ce10c7af796a9a8,1,1,RugStudio.xml -268d863dd6ffa69f7bb31169fdd2c1e5f30b100c2272b8b572ce5e32392a8449,1,1,Russia.ru.xml -32f177e1f429b3f4b964866a40d47d937ac22f1d5f9dc7589b91c0b90a655440,1,1,Rutgers_University.xml -8d13b2ab9a579065e2dcb65201ac8e2985f1c7733f45d612b80a0401e553d4a9,1,1,Ryanair.com.xml -09a0d6e6ada28e74b82aedba288a346bcaa60a47c00cb993c32485c599621aa6,1,1,S2Media.xml -76e63b3212c681f849d74398e1f773fea7e75cd1689db1d87d7e7b6c1d30bbb8,1,1,S2Member.com-falsemixed.xml -d4f6ad77316131405cd96d7a9a6d16040c478ec826009bacaec847442ca951e4,1,1,S2Member.com.xml -eb4b298e2328c9d3af283306b797b4e07e194584efce78f97c84b249f9339c8f,1,1,Sacred_Crystal_Singing_Bowls.net.xml -d801e51a50153a2119eedcdced489f520458e20b870d160379489582320da934,1,1,Sac.se.xml -af3153c0bcd10a1582a317b6bf3dc6ad366e96393446539aafab9abc105c65c0,1,1,Saga-Group.xml -c12d39cd1ff365b9f41d85adcf720bd9efe6508f95eb43c9b3bb9f168fd92413,1,1,Sage.xml -8ea654177b45b0907f63613a7f7a7ff5beea606fb948cbf52b0c513195bb051e,1,1,SAIC.com.xml -f63a6ea74e32500fa23e7e6c33d5b88cf6e5055f226cf73fae995bb6ca13f268,1,1,SailfishOS.org.xml -3e283d9ffab44db4b1e454079b16b0106309794cedef15c988884f436e6e3bd3,1,1,Sailthru-Horizon.xml -9753141c4b315466fcf1676d6596c79059901e009633b0ed59b2241cc6a3cba4,1,1,SaleCycle.xml -a67b67cba419c9c60f5af4693ade3ab0f4dcb71c0447e14eeccf5d9f8ccce305,1,1,Salesforce.com.xml -70625d04b2bfb69c56b1dc93d19eed236e18e861c8d0134b164f8a348ade9116,1,1,Salesforce_Live_Agent.com.xml -2c6c372e380f42967ba6421619a921727e62a682f06c14176120fdfcf606a628,1,1,Salsa-Labs.xml -75108b7344354283a053208b4b002cfb64ca61e7a0fa3ac8932dae09d438e700,1,1,SAMBA.xml -4fe8a655c2e05111677d094899b626987d18679aad18ffd1e17ea5447c3818fe,1,1,Sam_Harris.org.xml -a93cfd5c5cfe628f05fa20b4eb24526c15019f1b5b9ecaf1a88b7833d4de2a7a,1,1,SamKnows.xml -483717975adf1fd493dfac11a3e80e12decb594dfb2f9eae941c55ba1264baaf,1,1,Sanalika.xml -14b6b1c17986ddec66b196acfb515220845321dc72e60fac397b930ceb964917,1,1,San_Francisco_Marathon.xml -d7f1369b6839df22fbb3576e521a3ec88864a035b188488731f4f1a1c5607a0a,1,1,Sankaty_Advisors.xml -93f27a3efcbebc275a266fc452d9310e02c837b9dcf5c8a5a893b9fd79354ef6,1,1,Santa_Clara_University-problematic.xml -d6d63b4167f0c17262f7eae3dd84693b68a3caa00feb09bdcd547af74bce75da,1,1,Santa_Clara_University.xml -e528e24518c3a4fdd013118b9388faf754c8ff65ddb0ff972871d046065998b2,1,1,Sapato.xml -10dddb4466cc962eaca360f047e7c9b153d4ceaec7caa21507f9327a4d6e94c2,1,1,Sape.xml -1d4010dfa8dd5170542627798099f6ec4cb72d00bcf97f44fbeaeab4ebae1fde,1,1,Sarenza.xml -4123d14eed69b73815fdfdf89735f33a2ebbe396e49467fb16c4f38d3ba78611,1,1,Saurik.xml -e52ec5b1932e746c036fe7a72538a8954be45621d516444cf4958671d1b7d805,1,1,Save_the_Children.org.uk-falsemixed.xml -5a0c30080e411f8991edd2676b22684c6da570733fa7d81940b6c13a0b41b2ba,1,1,Save_the_Children.org.uk.xml -0794c838e79d550a6e6c8023f5a49b3893b8a1df312d4737e1cdb271fd5d8424,1,1,SB-Innovation.de.xml -7387ea4c591d310a85c46831a13948c324f3026eb223185f34593b68359f03f0,1,1,Scanadu.com.xml -da820e29c3c3739b63680876d982384c0e0bfaf46951c319b2e26806cb55be3b,1,1,Scania.xml -38157a317263788f5fe2b5827b4b6952740090d00708f47775c98174088747fa,1,1,SC.edu.xml -1b0275fe257cb27b55777f560d9cd79047a8904e35e3b36ab1f76b2e76e3b3cf,1,1,SceneMusic.net.xml -38fcd3c77ef8529bfa24f39ca1a3031094574f86ec150997c16494f79bec85b2,1,1,Sceper.xml -b7953290b4b5d45f612798a07c12362d172fbe10c7dcdd5c76318faabe9f81d9,1,1,Sched.org.xml -8d31291b938ff81cd0e8f7ca0e8dd487ae4c224fee199cb922802fba33880d67,1,1,Schetu.net.xml -aeb87d5cbf77f76e1e013b3f5a7ebd0809f26fa074080f5eac5a66127a7d13e0,1,1,Schibsted.xml -87df4cdaf9972989cafc68f7954e44dfdf6209c196a0cdb58d55cc808aaf45d2,1,1,Schipol.xml -979e440e028b0f6784865012f67f4fa6d947abbd1d1501e74d30a1fdc1ec8c69,1,1,Schlossberg_Store.xml -26869a9d99c74c39e56b00301496099ec561255b0b69c49662e33fbf0b348b0a,1,1,Schneider-Electric.com.xml -1f975e54c77f164bf1dd1e32e76570c619d4b1ce983a5ff80ceccef2f8ba54a2,1,1,Schneider-Kreuznach-mismatches.xml -785a86aaf565d26e4182c715d55c591b69aca2797ece26877e3d0660c84a6faa,1,1,Schneider-Kreuznach.xml -76e205da1b62964e6c76dfeeaf69616740b2301f5376a7726cffa10942b11767,1,1,SchoolLoop.xml -ce4c06e4136a9fe2874872df30b8efd4576a3930dae24f27120351350891bb13,1,1,Schulte.org.xml -ddeeb477ee074803f864df09db12351bd587b9c156cc4cdfb08daf8d26d24d2d,1,1,Schwab_CDN.com.xml -25933077b070dbd4c7fda6d88421b3982c3457ea5b5f008aba6043900f07ca1b,1,1,Schwab_Plan.com.xml -1003ef16bddb7ae96152b0fcb50ec0dd943917ec265fc5191f12b0c3c2fc37dc,1,1,Scoop.it.xml -35d8ee4ffe3e546040aca0fd3b91e0d35d5993dadbb2b62cd6ddeb537a54b8f9,1,1,Scopus.xml -5f0764c444810e87a83c0a1f74ca20ea781114e633eb28e7dbd38ea7259b6f10,1,1,Scottevest.xml -60bbb5dacbd3c5a037a473ee2e28a08aafb588e5845143c614b170d7874b993a,1,1,Scott-Hanselman.xml -c13ed17d5b5cf5002f50fc34b83685b2c5c9d8d6f8a2f5695351182d2d2f87f4,1,1,Scottish_Power.xml -648bca2cf9de8921e93ab3cdc73e3b84fbd962af85e0c9f0547cf790dc625759,1,1,Scottlinux.com.xml -69e1437f87a72fb32ac0583f1109659ab8ffd8795fb2d2e5880523d4c25930f0,1,1,Screen_International.xml -78be6deb276806cd5ebb6953953297c789a83e254fef202137f493dc8bb93ae1,1,1,Screen-It.xml -d06c01b8882b8f674d8cc10791d7b535ccf61c67091e253b3df40dcb03c872fa,1,1,Scribd.com.xml -bd4374a901260cd4a63f44d11b6f1048ad380d5925d92b90a7eaaa83337a22dd,1,1,Scribit.xml -793c02ae066b179d7011e2dce5579d2b6a5269ab7937925a7c94b92090fad50c,1,1,Scribol.xml -7da15216cead7e3cf8d203cbc766990a568f0ecebd082ef7cf16099914dd660e,1,1,Scripps_Research_Institute.xml -908dead9cb9b4e421cf9a97d75b732af29814249060e0f1749c52742b732029d,1,1,Scripting-News.xml -a112c42f36af4c29416faa6954f4c3740023c3c241fe7fbc9fb645695bc3b301,1,1,Scriptmp3.com.xml -a1db6659789650d6aaea4817d02852a738dc46925e02c225db6306765ddd257d,1,1,ScriptSource.xml -f9008476646b78f59ada34d9a4b3d7e26996edc308d1778e20482cc7feb4d005,1,1,Scsstatic.ch.xml -bfe859693482c899676018d969664e82a033df4eb41f6ac81534dbae7d5096cc,1,1,Scubbly.xml -f9d6bcf44dbcc10b354910f43ace3fb992ad105f9743b1db2855084e40ffaf1a,1,1,Sculpteo.com.xml -a2f59ed6f6ce06cc88ba1a4a7d6d04db68be9143ede56b3a098863484604ff47,1,1,Sdlcdn.com.xml -9830a6fb168d3b5b6309424788d0874470a29364012d34e9ce36c606f9aea925,1,1,SDSC.edu.xml -fd71c353d28fceb8b115719e83bc37fc7f717fa194e03d48d2cabacc00fdcd29,1,1,SDSU.edu.xml -2006782a2d8e1e624b4bb2de5dd7b71127a36079937f0225de4ca18017d3c6f6,1,1,Sealed_Abstract.com.xml -a72eadb29ac48aacf0a5061a3796f94df5f1b7f5a2663a192baccdde97ef757e,1,1,Searchmarketing.com.xml -570383abca43e54090af735c8962a57f339bd8eae677c1224e9a5a0aa96e0c37,1,1,Sears.com.xml -0b336a1376c4b36a8ac6ac802425e96ba6ab7f3affbc755405d59a4385675d12,1,1,Sears_Labs.com.xml -6835368660d2c2932d163024a8da85984bcaf646184f5eacd658c0fb52a62c5c,1,1,Seattle_Technical_Books.com.xml -74a76a23fa9abd3379e65d9f2fb38cd128a056fa5521de6f12a7c1794f8e04b9,1,1,Sebastian_Wick.net.xml -0e8e772f5af7e798a343bc7ffc07367d78688f53fc2b361b9b6f574c3f9bf55f,1,1,Secret-Maryo-Chronicles.xml -79b1e57c77590875177a9517725d38fb77310f701ba0d7f8cd13426d2f2c076c,1,1,Secunet.xml -cc8342bcc4c3c676b7bd0cc012b441d3d9c4a7fabfab9b25a8d8146963b4a738,1,1,Secunia.xml -f7fcc791da39508c7c2f62ccd71aac9c7e345b35bb825469e3bf31fc51fb1fcb,1,1,Secure_in_the_Circle.xml -fb80a2a8a1de294899f5a0615851aa20d733698590215f4fa5306b9786ecebe9,1,1,Secure-payment-processing.com.xml -9525a6188a7e9f5b3c1c275dd102918e5bf2e0be9561ce805c76515560e3686b,1,1,Securepicssl.com.xml -e90bb893efdea1ec9c5bb9495ee3f16b99b88f068d8ebbe8577bb184967d07aa,1,1,Secure-secure.co.uk.xml -5168a7a30822faffc7e43d14f7f2914acefdd418f2e49375600c5efe60117cb9,1,1,Secure-zone.net.xml -8d5924a73c465922a620bb20ca5434c669b38cdb4d64fbbceaa5d6d5a4ba81eb,1,1,Security-Database.com.xml -7ced7582cc6e6c53c0307ba18099cb6e678ec7fc1fa92b2f81efa712573205ae,1,1,See-Group.xml -4f06d09a620901dc0a1b1bd85dfc66bcabd61a90e3dcf5ec2ab1673a1b8eb4d1,1,1,Seeks_Project.xml -016140d2cd3e7f46335c1e8c10c52d963c71a2c4cfcf2c5de0773d0304ee8b84,1,1,Seguros_Universales.xml -3499fe01409a66db98d6762ccf5048da5b2f2b00f05309cba4dd609665103886,1,1,Selfhost.de.xml -d9dc5e5c8ac4f7399e4e9d790aa85190e7d0e97300023bf774025b28f397f359,1,1,semantic-mediawiki.org.xml -ac1ed464f262ef1a7c52301ab0d83ee2ca7d7679c0b13bc74d22998f76370845,1,1,SemiAccurate.xml -91a8f5d267b628ec6430dd0f42888fd01a210d9b472c80f8bbf40a075ed1b36c,1,1,Sendmail.xml -1b9f7a18950ecc433514f5008b5331d4f139ce0db817e521c01640ec80e8f997,1,1,SendPepper.com.xml -3f8857caa8baf886caa60318bdbcea397021d25ee7fb8f6856f683623b851b30,1,1,Seonet-Multimedia.xml -d871287827ed10bf530370fb95f6e2cc1c4a83f33207d1c7cf0c5a7b6a1e32d0,1,1,Sequanux.org.xml -36ba74f8a65f050fcebd3bbbbbbc98e68a75a411b050d1e81edcf201edf4ccb6,1,1,Serato.com.xml -0694608450b615baffffa526d9f6b8563c5e9dce11cf590770db0184b5818fe5,1,1,Serialist.xml -fdad486e5432cb5e1ed91aa69660ead212717edf0e966df2b2b2c92c617a339b,1,1,Sertifikatai.lt.xml -42e8a6d86401e5c677048a6e49fc548749b34db31b00a72093a4d14a600a96c1,1,1,Servage.net.xml -1a088aa382953645de6ac0c2f684a0e0c31d2e4136e3fe2119054c9480011a85,1,1,ServeNets.com.xml -80c5c466f3a3270fdd5ba6db7c396b72da465108aecb6df2287271ced2e64e96,1,1,Server314.com.xml -812db0b2551534929fc4781c2c823d559047c287e7f840ac2e71bad9b7abe1fe,1,1,ServerCrate.com.xml -e6ef39254b78f986f8a493f1193e680946b392769ca04089330fbdbc01eab49d,1,1,ServerExpress.co.il.xml -a2ba3422fb880b78a61c81716398b2797cabd5f6f65bc83d4450238081bc6aa0,1,1,Server_Express.xml -5fca14990d3c566379b05a6e970c1736ce93aacd6a9042b651de313442cb05c1,1,1,Serverloft.xml -61ec565235a014eb7654f46b6ecfb587d8860b2cd2887b24c493836f6247484d,1,1,ServiceTick.com.xml -7fdef1fd45dd3351cc986237c85548caf361ea51b8064dc8a1032df0cc7658e1,1,1,SessionCam.com.xml -f451a32f17839a9c106ce30d9f634bc4615d0117f61ab5142c036901f63f270f,1,1,SEstatic.fi.xml -37dccb589430f1df549b8613f2737540ab844cddbf088c2c170d3b9a69d46f54,1,1,Seth_Vargo.com.xml -7f59ea0d73024a13066860135cf1df445be09c45b40989cc6e4180c0f213d316,1,1,SexNarod.xml -d81422829b52421b14bfca59b79fb365db842a0b397034e091479e98b3b20992,1,1,Sferra.xml -918a1e0571e6f44defc2bf02af57fbf8810a3d199b9c410689c99fad66b3f10b,1,1,SFM-Group.xml -90e39924d85b911e9ab7c92ec676692a6f3cc4253ed1c5cd48ac62b788bd4d08,1,1,SF.se.xml -ddc599466ad8ee366ff5e92c6a589d8d76c89847efcd4fd48573337f0a4bad5a,1,1,SGI.com.xml -b1ddc8eafc9185d502e8c25fa3239d0ece0bf86bf9dcf471af0dd11ffb792f4a,1,1,SGNO.org.xml -e5b6532ab1abb83c0eeba20e4a04b91373dde190c9c6bd1194e3b756b04db52c,1,1,SGSStudentbostader.se.xml -4879203052c968a23bf9bd2d905629b0e4f1673d8261980d38548edfe94f8e99,1,1,Sharedcount.com-API.xml -c63ba028a20f75448202f03fb3e41640315b2ed13e1688c1d3de758805546912,1,1,sharetobuy.com.xml -ed301bd9633dd03850509216e8a0c1f11cf8e730dda20bdc0d4a7d3b8cfb327f,1,1,Shari_DeAngelo.com.xml -4c8db593e2d91fe51a54232486b89d0f6b5b4e05f3e7449ca9d6a8b2eae6bf5a,1,1,SharpSpring.xml -c8231ea4263a9ad9d9586ca681c971025039200b0512c77e4a2eacc563a27980,1,1,Sheet-Music-Plus.xml -6f1791529f4fa0f1dc35ed673980f71b5856cb947c366554d48c5c48f3ab8e94,1,1,Sheperds_Friendly_Society.xml -0d2c3ddd439373407efc3cbc24b6fd7ec6da6563499498590e742b02d87a3fbf,1,1,SheVibe.com.xml -3fdf301d97c42d1f8f7a575a0513e96dfa8def2330591d16c0c4d70aba8eeb43,1,1,Shiftboard.com.xml -e09cb7f8a0963b23e365c3866d3955ff243c34f81b4333e67b5b574833b4a0c7,1,1,Shipto.com.xml -0ebfb123ecc0a797ffba53b2ed5e7a7a9def6cefd840ab6e9cadf49d77199d6c,1,1,SHld.net.xml -29da94b661c0ec149cc098fc4f9c75c98bff787cf4b996d572c6321f7e2114d8,1,1,Shmoop.com.xml -70c2e8ce0b946c9232e77e2bb98a3d51f882260294be0a2f2354c687fd6f7dd2,1,1,Shock_Media.nl.xml -be10ed26c4dd7232d2380a060e9c232e43fb567bf291f524c4e581b4925da5f3,1,1,ShopCo.com.xml -6e26987a6888da6d2ea001a6408f299b0fc98971dc76fa24f216c0fd147d50ac,1,1,Shopify.xml -faf5c3a2ef00844a11a4fcae50f0b1c010bef569cd59f6458c17223b0306297f,1,1,Shopinfo.net.xml -d4503d3f06952327bd9c9552907ef2313bc6d29c108b6253a7a08bf1fef1b3ab,1,1,ShopLocal.xml -d651e9791352d0487ad06bac798a6665a3148331d2404a6dc37366e44e92af87,1,1,ShopMania.xml -be7b8010946b7507599c364d23a08acc86e603da4edebb7170bc0f355e719c90,1,1,Shopping.com.xml -7f43dba8179391649e4b3e8121372e07d1035d29e2fa636f238b0c3470cda162,1,1,Shoppingshadow.com.xml -4797dd72bc410910dff85acd6587780038dbf1dfa01f6f7996f1d7212cde1bef,1,1,ShopStyle.xml -d872ed802d9b549e860aab8bb78c8b54f3d1b801090cb77fcdec3e3100f092ae,1,1,Shoptiques.com.xml -0dc10520e0aa53e2960a1efa33c61abd0e7dec6d72e7bcabefc5c0ff7376e807,1,1,Shopware.de.xml -f30aca861916483333aee8f04079946c2d04e333081088438b4079d39736e621,1,1,ShopWiki.xml -278c389123acf69565e494a9910ec501d4c6f9ec22efce8aae9b8b5972359de3,1,1,Shop_Your_Way.com.xml -5e77585db1f9cc625d221191bebd1a5529553804a196f0ce02cb4c0491ecf57b,1,1,Shorty_Awards.com.xml -6392a77acaf6437e67b6a383c750a729226e61fd0d2ac2713ba968ab0cf0524d,1,1,Showcase.ca-problematic.xml -7d59c151c428de88652c9856b90d200a107f942999539370bdd1b9f77bcfbf37,1,1,Showing_Cloud.com.xml -bff8c34d08e21b8eac44b98294a00fe95b54fa4a06104172f6c4931ec7e13627,1,1,ShowMeCon.com.xml -ac9587f2734c3135dadc46eb4bba5132296a9dd397ae9d6d80cf208e4a83e30d,1,1,SH.se.xml -e288931dca09be06dde50e2e7e88361e0b3f3a3fd70882d39142d93104d1dd4e,1,1,Shurgard.xml -8debdca6a69e4f5fe2e4e9337fea2c587426424dc4950a33f2b2002b84783578,1,1,Shutterfly.xml -893a6bf3dcbf71cf5e4f1ae4288f7303f13681b9812f5055a788e7acb879f173,1,1,Shutterstock.xml -c2bdeaa9210ade411015be525d562ea16bedd70da5897af9d239278aa0ca8ae7,1,1,Sickbits.net.xml -acafdedb2df04d3278f3058d9be43aec8127024a12e89b7cc1d03f54b0b19f95,1,1,SICS.se.xml -4b189e0297eca742379d06edfd7c888b4dbe2e61ab4382ee551273f56789fd1d,1,1,Sidearm_Sports-problematic.xml -5b69fd6a1c7f0d08dc18c1db467c03877146e8dd1a8c9d1827ef395a0f78c1a1,1,1,SideCar.xml -669f2a6082ea886ed609297ae811da92a2644d3005d22301b01c388515fe9c32,1,1,SideReel.xml -991b526f8347cc2655f4b38ab4579c1ceab9708768f98fb8bfcd68361001b7c1,1,1,Sieciovo.pl.xml -56fecdb124639be9101024eb0a20a30b40b7bab9516dfed1af9afd1a1d23269e,1,1,Siemens.com.xml -17f3a6a81d73be278c4f6456f20a9dcc239d955949abfebfed19c672d08322d6,1,1,SIFF.xml -644bb5b151de6fc4b15572be1988b7a7e01356e4969423d79c44c4e6737d78fe,1,1,SigFig.xml -986bff28cf20c7a981f4f7cbccbd178b9cf3500d1b86dfd46726f50ac739243c,1,1,Siggraph.org.xml -fe356405a24e79d3823307bc7518ceca3a65b4b0a9f94f00e4fc0a2d1e040e63,1,1,Signals.xml -978c87a80c98f4745d79e6fe148dd59011b836bad709c995db4ba74e8cb6d410,1,1,Silicon-Labs.xml -534cdc49b958f6cc51fa491f2f8e5ab863b13e5599440663fad888e64da52742,1,1,Silicon_Valley_Bank.xml -d2125a37bed62edb1f8834b4f89c3c735007b7b870595115c0a44a2c2bfccdbf,1,1,SIL_International-problematic.xml -27d91b67511e49bc463a76fa67f447141f89ba05fff99f975279460fc062975e,1,1,SIL-International.xml -8b970f7899654c140d3614f8986b53ad4ccaa767df5fbef89ff59a31e07429ab,1,1,Silkroad_WS.xml -e6fe519fb7cfb9e096c6fd81d6b248a401d3bc05e87054a63e10848e60d71ca2,1,1,Silobreaker.xml -b3a7c4808e8e908fdc88b83b785434221414dd3d77ed4b0983647f3684647803,1,1,Silverflint.xml -a49bac6e453d1a6b8658c5d09eb247a7201c2faf23ea278ff090f32c54f237ae,1,1,Sim_City.com.xml -66bd156fff4142cfd43ceb1760b04ffd03e4a1c4230ac13e514ff0e10e012019,1,1,SimFlight-mismatches.xml -692724318be761909583d683cfa250db82c6f6c80a8b010801659b31761bceb0,1,1,SimFlight.xml -9c6b97f93cdda86aa2d39ebd6fe5db76c601aba1050ed094c4c8a940e753f3c7,1,1,Simmtester.com.xml -f0bb3a7abc4a6cd556969d6a151e19d22c3c36cbd391ae059e2ac162fcbae68e,1,1,Simosnap.com.xml -2adaaaa6f35e60652acc4c341f34ff8e7c9e1875d2a8114dba48a64932acf34c,1,1,SimpleReach.com.xml -975764b48654afb9481e0ec2a5b69dae935f0ed6907f6ab28c061e2b00e82a79,1,1,Simply_Business.xml -fce6d3cd73130e41caeb9ba7088d7edf08e1a61eee10dc95b1c5700f1ca80791,1,1,Simply_Secure.org.xml -68aa39cfd4b062c20ea2e1bfba9fd71f4fffc47e1ae934649137626e113e2014,1,1,Simply-Stamps.xml -0cb0c826c7980f5c4854689eb0c79b37c70c92e557e666c672c3a694b831bd15,1,1,Sim-technik.de.xml -1be06f2f09df6998fcb50fe266e0b7d879c54044a7a0dcebdb21aed05d1a251d,1,1,Simyo.xml -afab1e82bc1c116a61d6c7f40b47b4cc1043ebc2ce969d1a3ea70cb673da5597,1,1,Sinefa.com.xml -e40f1e3f71a52fe3f927d03b889f433d57ae8de0ce87a10e9e259a01b03cc937,1,1,Singlefeed.xml -4831d72c4a1921ba81961a3a46e7464bd14d1c94346549abd74d897cbb0a37a8,1,1,Singularity_Hub.xml -e98874923aaf25fe0de0e60028227e91eeab0edd00d0aedd5b83327c2d50c31f,1,1,Sinica.edu.tw.xml -963a4636fffab2ba994026e2246553dd1d15aafed46e9c3f18b961f8af0cdd18,1,1,SinnFein.xml -b586bceff0510468591e028217059a12abea8830a7575a6cca87cb2f905d8704,1,1,Sinoptik.ua.xml -3eda8ad10b62194ab226a926e224eda6b6a1e8d876dca8001621560bb0e51da6,1,1,Siosm.fr.xml -2f477e70c52c5626a19d5e6fe1edaf4f4708a9c4068bac811cb6b68c34ad4e21,1,1,Sirportly.xml -ec5ec3032ad870e33ed2aee54e56fc4ddf43e6c2d0842f5b29530fd378212056,1,1,SI.se.xml -18fca85374104c3c57f5c8d3a82fe19eb00812b410016d9b5c73a8ee8c0e9063,1,1,Site5.xml -438ffbfcffbe33803fe8586c0df414fda6a95e54b3b0a5c7a11f3c4d7881b426,1,1,Site_Blindado.xml -239511aea016e2100b8b88f9afc63f52439c61aac67295ce2055c4945505a27e,1,1,Sitefinity.com.xml -49cb9933bfe48be26b4838aabacb7026024ee2fa0ed28f3484ed76a96622ce99,1,1,Sitemason.xml -e7d1ee6d42c793f1ffbf240274c7d7b096831967b41b575bce6593757c287b0c,1,1,Sitemeter.xml -1f1e6c361c6ad504b740df7437665827bfa88e9464b4dc1ab0ec9a2acd8d376f,1,1,Siteor.xml -0d95e0a127a7b1b2b0d12711535af57a7dfda8becd7ea102cfd4c91ed58aa66f,1,1,SitePen.com.xml -6c947fcbc29609bdf91af629852af3dae2317fd23aa7941c65f4ad36b985e3de,1,1,SJ.se.xml -0a48115cb03ef57a2671772bb06ca76cce108021771e60f0a43e2fbb22a1dc3e,1,1,Skandia.se.xml -947bbb082ae9c5e81c647914275acedd8ed8fc609716d4ee44119e53e160160d,1,1,SkateMall.xml -d972951be8af16d4e250056f05a7f4a6e7f123ed0a06b56e879234a2be8a991a,1,1,Skatteministeriet.xml -befca524a909c8e7e9dcd2f75207590d63474b0865489ceaedb792a4419bc18a,1,1,Skch.me.xml -20765e85d2fd18909d94526931d694b90b3bc05c6fbc5f5aed8f60ba92192366,1,1,Skillclub.com.xml -935971a0ad43c7b2a73db8864abc231daff6864b934fa7d63ad156ff11772ce1,1,1,Skitch.xml -21092efaa5ba3a24080d8ee13e645f9e36a5488c8745816ac279c03f992cf539,1,1,Sk-nic.sk.xml -b18695709bb1eee1cd6c29b924c9367351e4033f9f70b829b58820f7971d762a,1,1,SKNVibes.xml -176505bc694962eb998f1de1ba452dbc98547266a6cfdd3e8d32c7e43bd08c55,1,1,Skreened.com.xml -b233b63331529b9aa15cad67f01631d5b5b75422b3e509604edf53057b2b1540,1,1,Skroutz.gr.xml -0e8e1d3e66a175efa1d846386f48f0f7424cfc63f257c57ebee8a2e00b5f4624,1,1,SKS-Keyservers.xml -25157ef56d915eaaefa9f17ad1029535a8613503384273b5d65958dc73d126cb,1,1,Skydsl.eu.xml -9d73b058b269a01bd8fd235ebeda1465a4c849a1e6d5c981ba98609447d567c7,1,1,Sky_News.Au.xml -6fdaef17af1ea6490386e9a69d35056586c989cc0efb6ead360199c827556678,1,1,Slac.com.xml -fcf706874cfc81aa307e4ac4ccafd8aaa7f5eaef4e2c068b24ad37a6282aef8c,1,1,Sleviste.cz.xml -7203257ff65c870f2699be86502bd2fa626bb190219dea6f9b2341f18b86e133,1,1,Slickdeals.xml -f09f4e1fa797d89d9fded19d8860ca5657f9db89f488eb37b22aa65d09108f05,1,1,SlipFire.xml -cd71aea85aa03c0248d8d701f65addf30f688b6b6db34571b13a7a02d50b022b,1,1,SliTaz.org.xml -1ff601d9c6793cfd0173c3c5d3c070cf48ad8e661ea28e18658c35214f8a0bc5,1,1,Sloan_Consortium.xml -7694aae9b96d3499bd5a004bcdb36287cf90773cf7ffd2f9a653576c28ab3417,1,1,SLOOH.xml -8b5991e95bfde9024ae6045f915d2b5d081583abc5876d51c11efe8184570090,1,1,SlovenskaSporitelna.xml -9dccf4b521a49d88b13c6b3a4c71cf723c8dea0eb1f8ebd03af5ab00e2430ea1,1,1,SlySoft.xml -410889ed15ac9076ccc7d2c95a80e3c71b12fb441d3c2909b41ca6ca149ca9d3,1,1,Smartling-problematic.xml -b31dd4575b41f628862708e9c5a768247f6feab15645af1269bda5fc2e5817b9,1,1,Smartling.xml -7f663ac26ff264199574abc4829da5786a5e97d828ebe1bab77b818ff6a00199,1,1,Smartphone_Experts.xml -4be3f8e4caf2704e57b939bd74385ddda2f0fb979fb5af89634bdd72509beb4d,1,1,SmartRecruiters.com.xml -0cd71cd4726069abee490220b35050e8d43b6ddb10f3c1d72a424c90985d5536,1,1,SmarTrend.xml -e078c3024d3b5529f4c294f0e39ad9d4ba97cfb5229c0101d6107900d6ffc349,1,1,Smdg.ca.xml -569936ce41440e853be11ecde95efbdbf9c9f7dbaf90181ee859f74970c5c322,1,1,SMF_for_Free.xml -07737e4c4fe88850df4babad790e1d82ee39a0d3055511782be89bb54c85ebd7,1,1,Smith_Monitoring.com.xml -e33b8b64eed50420c99ea45cb0397f2d8f3388d796fc393bcbfd6e56c1e2722c,1,1,Smjg.xml -7c3c25c9b51eefd062d159e28cfe427e98af331ab05fdc4d46ffb1169e45375d,1,1,Smowtion.xml -f88d7060c4b94c61f67d6a4b484f76b3971950f0a49953961835c4489805b197,1,1,SnackTools.com-problematic.xml -a68e51f185e02cab3123b408b3ad7b4849ff4a2e0db98c8c0194d352c725c55b,1,1,SnackTools.com.xml -5078027e18b42ae8021970086a32137bbdfabaf4f6d6d3f0efd181acb70721f9,1,1,Snagajob.xml -f427d8fbc6b8bf77dc8605104bdf8e27ee06eede543ced548f23f22aae1441de,1,1,Snapdeal.com.xml -680ef5fe2e6ab2071b3137aafdffeaadb13df325b95b984ca8f50c3710f94ec0,1,1,SnapEngage.com-falsemixed.xml -b34278b513f81f664edd8653f1bb73fb84209a9625949fcf84364b1dfc0ae9f9,1,1,Snatchly.xml -24b42f8ce479698fbd81d426abbea3be8b5913ccd9ff53b61660f0c49bb66c7e,1,1,SNCB.xml -3b7f69aaa1c762b112ba9fd30146ba841bd92a50dc25a3849a17a3bb5c9ad048,1,1,Snow_Magazine.xml -7bfa8ba2d7daded6d4e0055295e3931b0d226f507238fb1ace2be11611936ca0,1,1,SoCal_Linux_Expo.org.xml -5bf36d6e7610b62e0d338fb24373da34fb83d0882ca9eb1aca333ed563a3c82a,1,1,SoccerWave_UK.com.xml -d04bc428d9492b781f4b8caf5f1790928a4cc3e42cd61a8743aba9982788ef51,1,1,Socialbakers.xml -8783aaf063d988134b23b53d4641f471f4202b8c71411c470d86c16d928867d8,1,1,Social_Fixer.com.xml -1d090502ba7a7f955fd9dc849f3a28638c4867737b092c892f059345352f8d47,1,1,Social_Progress_Imperative.org.xml -bcd33e1d96122185558f84896810790b8191160dfc6ba3c0f1412e633b908d49,1,1,Society-for-Technical-Communication.xml -eb0e5f4e4429de7b73804a455848d920ba9232a598e7178a1ada76538987f65a,1,1,Society-of-Light-and-Lighting.xml -dbfbc5e95c59ca8f5a6817ed26888960e39498fb14738f2ac049c176a530c2d3,1,1,SockShare.com-problematic.xml -858909e051150998f0cbb74ae6ae1791830e61009055332360dcae6d5d45c78b,1,1,Sofawolf.xml -e47855ace13e94fee4dd14533d9ac3ec4d95f42bfaccffb76a733a16c6776b43,1,1,SoftCreatR.de.xml -56ced4fc4c0f5c77aa68a5a9f87a824a6c94737b1599110e31405244f3acd452,1,1,SoftLayer-mismatches.xml -0d1db0db9333aa330edb1e06a52cf80cbf1b11b93ecaba27949937a9793ae233,1,1,Software-in-the-Public-Interest.xml -24f2f18c8774e7336eb85a921d919a8fb4cfa53eb88f19aeecaadac46b8be159,1,1,SoFurry.xml -b061ef88d8ffde7b25987f61d2f7839d9ec1135599b33f53362b42107bd670a8,1,1,Solar1.net.xml -ad360d4d5b2044dcbb786ca8fa222a8afa781a62f25db20a5f15fe4fa27a60b0,1,1,Solarbotics.com.xml -bd537b9721c863fed02d90b71128900946f448013e0d1810e1c57d495f466f55,1,1,SolarCity.xml -4558772a9ec991bbc170faa5c1653494329c3bbc55539c8c467049646b3b5733,1,1,Solid_Cactus.xml -ea23e5837831b8e22bf6fd56db158686abcc8d13df4a37f020b30966205a9048,1,1,SongColeta.com.xml -341c81c94739a10d3f04db7a1e9772379e51888a11353fdc3cabd0d04cfeb476,1,1,Songsterr.com.xml -b5fef9d252b9d468bb4a06cb784eb0689306edb43caf7f52fa0924fb9124a51c,1,1,Sonic.net.xml -230faec861b0025bce390a56187b04f3f5ef65394a69cdd069cf9a12679ec3df,1,1,SonicWALL.xml -6766c32a439f111909c94b0b5163ba1e366876e90ce629e2df21a22cd9fcf582,1,1,Sonnet_Tech.com.xml -bf0300e1945b14a33128707161ddd15d8744caac395131caebb69d6388005502,1,1,Sonos.com.xml -764f1e52464ac56af2227bfd8e67fddcf3998d0dc1e01b21528d2142c8e0e7d1,1,1,SonyMobile.xml -889dbece7db06a65dfe16ca355625127c3c78a427514289e98c7be0139666177,1,1,Sophie_VIP_Escort.xml -f6596e850c1c453085e611473b2611a58f4146e6b34cc4264189a66a0e373e18,1,1,SotT.net.xml -f141656339ca12f96352ed3819bbbbb35311d5bd2e0d452076254e352d9ff7b3,1,1,Sound_on_Sight.org.xml -619dcaab20e0e5e15a6a0431ff33a3c370287dad679d9e71056e1c3adec4068e,1,1,Soundowl.net.xml -332bd57c7b60f5d23b775ce135ca931d9d5c37508ac7295cc655e0f90f5b0f37,1,1,Sounds-True.xml -59cfd7776a8d4bce0bd6e2645e2c76d072a8ff62b965aa2999fea197c839f393,1,1,SoundViz.com.xml -79e0b3a31a14573e798bc6909defd3d3bb9517852de181174d281dc5f8b0867d,1,1,SourceAFRICA.net.xml -b92e96074327a0dcca5d00643ed1fd4a4e5cc464d810283d4c9e9295a3eb5190,1,1,SourceCoast.xml -2f8e9d7d6aca7de5ec1b5688166de01b60e3ecafcd0bc3d73fe9dbc984df7dd1,1,1,SourceFed.xml -9d71702d91ef15e1454d82dcac3e729470d25428a7f9e053490269693fffeeb2,1,1,SourceMaking.xml -ee75312d7a227efc1996e38f741324c0223b6cd8228f18796f92a93808376065,1,1,Southwest-Research-Institute.xml -749014fb456fade94fe8410d634d2c35faaa2ac81a812a1743cb742e7fd1ef41,1,1,Sozialdemokratische_Partei_Deutschlands.xml -8f78212ef19628124bb5ad477f507ed626f454854b499a189e8efb0187912c4a,1,1,Space2u.xml -e962efd4e859976b3ad130f332a2da31aabdae922174ff4cff7dee7360a0484d,1,1,Space_Launch_Report.com.xml -65d5415f62fd0038d966e6b212cc56ff7a1444e9e8eecdaee597739b676bd365,1,1,Spaceweather-PHONE.xml -8a606f5883f7c1086df1215e6b4a19f1579c5c3bc43a9e3b885f1d13be909356,1,1,SPajIT.xml -018fd6c1ea9077a236d9bb1f7fc10af3b335b662de27731d5d2432ce47859d3b,1,1,S-pankki.xml -a7dabfbb6d682c5bf9528c4c94b678f574bdf45971fd7604e6416d408770e709,1,1,Spankwire.xml -0246b709c13f24606600678c52b51ff35c7a73d78bb08e3edfb248a76d863a27,1,1,Sparx_Trading.com-falsemixed.xml -6b81a9de20423f8a2888e56ce73a7d92a425602713d857ce4e70d72a073ddd7a,1,1,Sparx_Trading.com.xml -9e2e3b3c71ccfe3f012b478c53effdc5f8c5385d3aee1503d50b01f85782a2d6,1,1,SpatialBuzz.com-problematic.xml -d2a6a9cd4875bfe1265795c63f0c0c9144571c1debe74ba0bf76f4a1151bcfe1,1,1,SpatialBuzz.com.xml -83705c39a5622e988ad516a06fb508aa5c8a68594faf95ebd4c2fbedf296f4cf,1,1,SPCA-Los-Angeles.xml -27dd7d2747a44908e31a333cd79a06d9824e99c5b9cdb239f6073da104e30b41,1,1,SpeakyChat.com.xml -28a4a3b9c096d4d94cf6e2b84461b16ad0da6411132504a02bbdbbc9289b2be4,1,1,Specialized_Products_Company.xml -7b68e49aa4d6ad29e10d69658b7c511d45a1ad28a699c5c6442f76e1bc77af24,1,1,Special-trade.de.xml -3064aa268e87aa6d1e3cb4835582cb4d4aff1ef2063e411e98be68091854ca1a,1,1,Specific-Media-mismatches.xml -b771da1a34b27aeb0a207fe42de0e50b760c0c4632392c0fca815cceb695fada,1,1,Spectator.org.xml -b6d12867f7d8012b03d30e3836cd3f71fccc19cdd0bceda42c3b8e3870481d0e,1,1,SpeedCrunch.org.xml -7c8589237e407b7751c1d2ffa43036657cbc5cfbaf47ad26936b6a7f31c13753,1,1,Spench.net.xml -f17ff53dfd43f3bc91f95a536f326e92f8eb4a1fb4dfa3bdc6470cdc43a60322,1,1,Spice-space.org.xml -e4914eab5e68fd42e58a80f5311ff8666a1359756a48bb0ae253a1dd30526016,1,1,Spilnu.dk.xml -916dc2183dbbf307a1e01713575b05b2831ece425195929b577b6221ff376ce9,1,1,Spin.de.xml -6453efbfb6a3f22d76d864184de32ca76f9d922efa3ed9881f33ff6bb289c0bc,1,1,SpiritAirlines.xml -bd697126bb67dd24a6386d1182811e168995ccb4e5ad89d12f243754e034f5f8,1,1,Spoki.xml -b440d89b9eed86cd745d0ff23333b7e12af88f7539a35833ee5b6ed2a77b0023,1,1,Sportifik.xml -adb591c1f7a258b7729946e4660e73fa9a952e6b6fd2cc546c7dcbc50ede9dc1,1,1,SpotXchange.com.xml -dbbb123f90cfcf1829591d6aec029cc2ca845310d3e98155780f9602a7cec92a,1,1,Sprint.com.xml -1286b6361f0556d6b3b6030e35ab272697d63e3a6abead7e6c3d2f33e8e31e3d,1,1,Sprint_Rebates.com.xml -26c56acd3375b007eeddac9957b0ee0ea8e4b5e98b298cbfd7d7cf7a37e49bd6,1,1,SP_Times.com.xml -b7a7b9f22aeb326e6b248f75737fc12c991167149fa21745a3906868ee8a1ee1,1,1,Spylog.com.xml -3b2303c2b044dbd57dd7d1a25dac07a2723c28820127c225c3b7448200f9d21b,1,1,SRA_OSS.xml -3065941486049e23107d2dfa67d90123e019bf6620e1ef73ad062e93127cae62,1,1,SsbKyh.com.xml -5b2ae8372ee680924f485171855f912baab88452cab3e87b63bc97e0c74f3477,1,1,Sslcert35.com.xml -30c468e73931001c0f71231bbbd291991dc454a378b2bd2c371b8a5d91c61ce0,1,1,Ssldomain.com.xml -c9ad023f61c9cd1d3706e52cc669f633d12053fa22c25c9701e36c06d5fc5cdf,1,1,SSSup.it.xml -10a18970132f26c0d416d0fedbd388e7d9929542c4e7f17fb1775fc48c9b8276,1,1,Stack.nl.xml -554f6e5135b895544437fc3b23f9f06bf5e512318b24b8d13548b8282203e55d,1,1,Stadt-Zuerich.ch.xml -8eb71df98a37614be3236f2aec4609cb758615cff4e90ab829b3788a54250c03,1,1,St-Andrews.ac.uk.xml -39dda4283cb40d94908fb128dd404e8fb0d4dfa2d144a24ff4d2426f42a1cb7d,1,1,Starbucks.com.xml -8026ad04f83be259d2177775e0f798b96ab522511fe1fab28ab64a20387c5738,1,1,StarKist.xml -4a47876ffa751efbad85a86c2d0d727c1734f56b1631423fc965d5688df0168b,1,1,StarMoney.de.xml -eedd1082b37211582266ce87baf7ca070e13185f7f6ea8bb09f94f54528fddec,1,1,Star-Motorcycles.xml -381196de76f2d06ac7750a54a67955f6a9c21f42684821726b416cafbe9523e9,1,1,StarNet.com.xml -3b5efcc0655b092166135f0d8a73a056e123f866749e1f0906706cb39a477d51,1,1,Star_Search_Casting.com.xml -e67698db76d338349890216cd3a0a3e79c6f2d9ee46a2bfba4445fb2ca56a946,1,1,Starwood-Hotels-and-Resorts.xml -384e89e4321c54fa7be3b75f19d06b7c029277463bf8cd2f8e0b3bac1cade42f,1,1,State_of_Alaska.xml -cbb59c8fb32a2a5ea0cf3b3fd7d70b6add8a46094a11757de3c678d5e61aeb3d,1,1,State_of_Oregon.xml -cf6c0866d343514b97918cd62089f4191898d1c7c45d993b807f5d7ce291e172,1,1,Statesman_Journal.xml -7500f592127c32a25e139992a6e1e067e488031164d9d8ba29173471e81d26e1,1,1,Static_Site_Generators.net.xml -5c9829129baf195a9dbfac286a509c36e0e41bb8adafa18e9162034a65c19904,1,1,StaticWars.com.xml -345a6c93371fa2331f18898d3b61c6f8ea3b9a66af9653bedc4cdbf85d888777,1,1,Stayfriends.xml -47c9f0e41ce3c056edcb0554a27d3a8a648782f976f6710cac42f10b6f7cfe8c,1,1,Steaknshake.com.xml -05240c463180623e10936e5720035ec836fa2194c15d9cb3c7dbf23367d281ce,1,1,SteelHousemedia.com.xml -3078153e01d7a43f3cee88d6213dff492f1e5a7dd0bc3ba3898aacea56fd386b,1,1,Steganos.com.xml -eb353ce342b305f43104385c091e925c0c0c4298add4adf7e1bd44493f88981f,1,1,STEG.xml -dacc9f95891b239ac64bec626dbe9df4d0ec154e476e5e3fc056dc4b24d9c4e8,1,1,StevenRoddis.xml -8329d69c91eb46f21fb87da7033940a740293719013b549b2a04a465178b9c3c,1,1,Stevens.xml -d0927c5a374e77c75d1dc3dddbf424cac62c0bc8036cc9301b2540e9fb6ad9f0,1,1,STLinux.com.xml -0710fa36fe1a462a08964813d48f6b1d399ec3b7a721414956f7b99c87b6e165,1,1,Stockton_College.xml -c7758f9f247af4a807809da7c975ba1113dd999e47fd382f67ca993672d549e7,1,1,StockTwits.xml -7dbb86006369f960c434753a54db93831c6de1ab2caf32d233b57021f25ecf96,1,1,Stop_Software_Patents.xml -af088ec57a0a58dcc709653e7bc7c388fb2ec11901bdaddf44b6a9eb56cfc09c,1,1,Storage-Bin.com.xml -2f4835be761a19b7ecc69d772d7c194ac2ef0b064e0fcba4d2889f87334ce6b9,1,1,Storebrand.no.xml -b3ae4b6850a307c9433da62f014e0867e66069ff2f3884f4aae6b16ed3ca8747,1,1,Storenvy.xml -d64ce19ebfba74d32cafef6a02305b8aa5f95e7b4711d7dc988d46b5e2d217a4,1,1,StoreSecured.com.xml -421a3c1e506386c490ffd7f086ece19c8c1ab336f8f6f6ce5e2380657e379fba,1,1,ST.org.xml -7403a5757527d035874e48069484b155e1c23a5d8087481ce356b2ff7ddc8666,1,1,Storywrite.xml -5ea43d5ba8e431860a699d7bc4de5d7ecc775231f2dcd29fda8b9ff941d39fc0,1,1,Strasweb.fr.xml -1b493c6c3754b5625f7eaa9a827b7a7136100ac438348646b9883a04a7914c17,1,1,Stratum_0.xml -07664d47bb2568a6684a045e2fa1151f072f781b433ae10278db38d7de6aa95e,1,1,Stroeerdigitalmedia.xml -b6d669821c47252e7ca26474737e7a99764a62314908a40b4303024e88e5a3d1,1,1,StrongLoop.com.xml -07af8a3bf04feafc187b94867929fc2a1fa28c2d9c627bb9af41b8bc403df181,1,1,strongSwan.xml -c6051e88100639837b50f908300bf68acdaf53e2ae9ff764a5db062b39c1b015,1,1,StrongVPN.xml -d2302191ae1a8f125183b63e27520d15a645d1386f1c5c1f28958179f28941a2,1,1,STSDB.com.xml -93988c7f0ff008e7ef5108c730894d4e105b47db481c2e8c3f148842946f5136,1,1,Student_Aid_Calculator.com.xml -3c3ce2d233d96ef67c5900caf3ad75f6b6181b6b51644a392273d33229081ea5,1,1,StudiVZ.xml -178c493fb5c612d7752155e414931a6fa954aae70c5e06b164e18856083d2004,1,1,StudyinAustralia.xml -3b100ef738a62c6b5601b462d5bfc5a64c54a9ebf0210a29e2f2cae35c7f5a00,1,1,StumbleUpon.xml -011d96bc9ab9a8cfea82d26bffe4a01598c8d65d074172966bfc40f197883bb7,1,1,SubDownloader.net.xml -d24795d6c243bba1d23f565cb354a92c7a2f319c9270b1ba10ba09abf89cbde2,1,1,Subeta.xml -913caa6fd70751ec0d7af63659d64216b6458938affbae27821fa0fbd54e29c6,1,1,Subimage.xml -c98a45b4409857ce033e9387a05ebb2ab742cf77b7f582aab31df3e2d6fb0579,1,1,SublimeGit.net.xml -1a0921d175cad22ca99421e5d7b116251aeea7157be570e7beec3db83063f13e,1,1,SubPLY.com.xml -67b30f51611d9aaa03461cbe1db9773402727309b638cda2a25fd8735013def3,1,1,Suburban-Records.xml -17ffed1ff7f81deb84f970b016cc3f707b748dcfda273a6e07f8540665ee221a,1,1,SuccessFactors.xml -ce8a1e19ec87649974633ae2554d98d9e219359e9144bb59dbbc37c68f52450f,1,1,Sudbury_Neutrino_Observatory_Institute.xml -8d351ea640bfb631540f409cdd9920eaee4b16167229a9ff127e7f5955b1ff8d,1,1,Suddeutsche_Zeitung-problematic.xml -4353ab81e240d88c9a212ec5ecc87fb3c36fe14968a5fa1bba7d26b117ccd9ab,1,1,Suddeutsche_Zeitung_Tickets.xml -39ee1d4592c1dccceea5d80aa83500d03685d67985cca30f3c17069ef4b11b41,1,1,Sugester.xml -47977c82c4bc6a54ebe29df2b3573376aae3a9ba9641763e2f57e57c5719d80c,1,1,Sukimashita.xml -a718bdd3790b64a8c009cf4f3357e3b2254d3c577d64d37727eab8860affdfc3,1,1,SummitPost.xml -41691ce3a1546e8f28ef67882483a05772947b259ddfde4de78835691830b263,1,1,Sundtek.com.xml -5f529cda1d778ace410b94d70073c70a23445daf26e703658d43590ff3874bf6,1,1,SunGuard-Higher-Education.xml -14bede590218ee03241a00abe20fa3bb8f0f700da444b4c3c87691a91ed5a88f,1,1,Sunrise.xml -a0bb91556168f0e98a0cccca8d2a6f1fd1cdc431f5c638c7e0bb609cb5bf394e,1,1,Suntec.net.xml -c3085f8ae3518ec1b9c1336416c2c56c3cb38d4419c4bc0c012b03337adb07ae,1,1,SunTrust.xml -cc283c50627b185ede55a22178b07b119401c1bb33681efb74f3c84a18d3a5f6,1,1,suomi.fi.xml -cee503c087181433e78fc7a633a0ea13e071e35ff01247a73fdcb4e56a5cd2e3,1,1,SupaDupa.xml -fc7fea4b9413421e1d068183f889dee6db63ffab1d49d7b357ff1b649e18c5da,1,1,SuperannuationComplaintsTribunal.xml -715dd9ee76e76e36924367d72de96365fb971aa9249de53407a7f80a91523da0,1,1,Super_Hexagon.com.xml -24eb0ee48fa0e0e523fd9bd0b40ab944a581fc249f21c1ce876352fa21ac56de,1,1,Super_Lawyers.xml -d52211b33aba177689b636040670e9673139a3ae675f621ec98e5226f6662b87,1,1,Super_Pet_USA.com.xml -bbd4fb2f9b45366a2539533ccf4a4886c69022a7064c641de203f1a81b29d94a,1,1,Superstart.se.xml -45cbe2d0bc74d07effc9f86d955fdfc0b57fd320f15b0fdf37d13ed31836a4bb,1,1,SuperStats.com.xml -278667426f721deeca09a629b703857edbbc9e6b5203fffc6eef77c7cf9c1201,1,1,Supplies_for_Dreams.org-falsemixed.xml -f57b822a7d90c0045f7154b767dfaa622bb10b5d356c373b274ec269ab77dcbd,1,1,Supplies_for_Dreams.org.xml -87fe4de9ab80a4e0a4d3f7e9348cd944198e2070144b65cd096f18f8e64cd38a,1,1,Supportion.org.xml -607a14e523d4eb67d2e0470af4a11351e618235cf31197773d466373e9a3e4b3,1,1,SureSupport.xml -f481149bc80e6ba1e137f87fc2f844ac46657ecb592c17c27ca3aa18cadcaf3c,1,1,Surfcanyon.com.xml -2f1a84a1c22923601fef49f3e50de660b91c308dd6d6ecf2ae3fd0d710ed6d3f,1,1,Surftown.com.xml -104f4c8c7430a824e98f16d07defdd8fa4e3301fc786cb008a1822b3797c18b4,1,1,SurpassHosting.com.xml -c364bfc1cc7f038bee4de11860562a5430e9f6e50f4304292877e5852682f36d,1,1,Surprisingly-Free.xml -1db721c32254a0f6cc5fa01d09570b574ea1aa05e031b63484c204705489266f,1,1,SurveyGizmo.com.xml -1a101eb73dc1657e33f8e9345675e37e389518d109592e299c8d9e6724cf08c9,1,1,SurveyMonkey.xml -4b0dda7bf595837af2b6418938e1ba9905092c0fecc8d303e18727413cbd2375,1,1,Sustainablebusiness.com.xml -ba6e4c5379bf8c4de10621f7fe7b3df817d4658f9da9f162855fe903858416f4,1,1,Susy_Radio.com.xml -0f492e80a1b71b0c816a89728a0295178ca83c382e0fd03d1ac39ffb01b82726,1,1,Svbtle.com.xml -e1591b4d88ea0eb3485157d9832b975937e8c9a5208259ef3268d3f61119b2d7,1,1,Svenskakyrkan.se.xml -10dbae31205437166ee6a42e3bf15e68a6c67d2901100bd86647780f09f78fea,1,1,Svenskaspel.se.xml -0fd5d3870f9c3db62e5c4f6a72c986708fc02dd4f79ab555ba603706055e6f43,1,1,SverigesRadio.se.xml -7592bd6d42bef1d6c458ce973aaac4a651cabd709c57c80b03ac37008f308308,1,1,Swapspace.net.xml -e503bd2eff7757f37cd05f11b904e0aa7f674a7897657278f0ee5fd2ff6db491,1,1,SweetsLyrics.com.xml -d40dbdface540ac54e9294701124dfe11fe73756383e3532be4426e6907faa0d,1,1,SwetsWise.xml -0fcb32594d2200a7226abeda048ff0f2fd1bc82d46b8e482498940e0966cdf19,1,1,Swinburne.edu.au.xml -841f596ca9d82b008cb1ef633402bf36289814a8bdcf2b50a24273ffd9d40784,1,1,Swin.edu.au.xml -afaea307d6e731d22dc922a3068dee4ee008047207deacb123eb43f9beb4ba7f,1,1,Switchplus.ch.xml -990a0708e1c15ff5dd64f56851007141150234700afb723ace3d4c802c19bd39,1,1,SWT.com.xml -1dcaacd80b958fe4f931ee5e4659e02192f09cd5340f02820d03ca9755a5cadf,1,1,Swtor.com.xml -5593e52fa3c4882b9a0835f364796d456bef60bd7bf1d68b09d0accc195624c7,1,1,Sycom.xml -5962a5885af550ffe0ea542d324ec68ccc9b4bd2d1e02d607cb0268e4f81a481,1,1,Synacor.xml -08baa4de78c1d90496cda8100e76c93b15278dea4a1470ed5571c54fb0eb343d,1,1,Synaptop.com.xml -40dafb3f220b08075e139b863e7ec589677a218a7f6fa0d83ac90e82046137d9,1,1,SyncBoss.xml -46aa5278f124688a2d451d5874d3265c3bceddacae746758bd0e7a52f946d82e,1,1,Sync.com.xml -801c20d5ad81a56de838fa123adde660b159ae4af5e590107b911431ab7d366c,1,1,Synergy-FOSS.org.xml -9b863d50907571f7f545536a7f07510d8a59b79d3ef0f17eab8d09d3daa44470,1,1,Synopsys.xml -39e34220f1747228c89f65bf85e1341261dd9bf9fa7103a6f05f7b5cf7c0ddf1,1,1,Synthetix.info.xml -ead094a46fc991345b451f00be23fb07cf4c05c9218d48f7522ea4c69afd7918,1,1,sysprovide.xml -9dc087e90745d0ea8953d26f82dbf9047cb610d088d94b9a25bd56e093d31a79,1,1,Systembolaget.se.xml -13c55abfa115cdf89adbb92f03e79b91b3bbc08919f6c023c799c5dfcc880b7f,1,1,SysWard.com.xml -0541366178a7279745ea561f059b404fe3e0938cf75afa1c0d3c21f89a17a141,1,1,SYW_CDN.net.xml -14737af0bed9d759b9f07a05859a1a3e95e7128c7e460cf4b360f7d6ad14a1e9,1,1,T35-cPanel-Hosting.xml -685013dd7a5fe0dc6438c967c8e4777023ab65f683705634ad545415051bb1f3,1,1,T37.net.xml -d2b1e6a3516a331655c9634cebe11092ddf2b0d2b513b04760fa10c2ea5598af,1,1,T3Blog.com.xml -0b6df260724836c32c32d403eb7c8e3b21ebe80f68e4d1dc17c2ab806e9f226a,1,1,Taboolasyndication.com.xml -41fddb51756b20157843356a7ee2decaa552a5c8859d0e10d52eb83dd42e5373,1,1,TaDst.com.xml -ceb13a58b8fa0029ddafcfc3cef0c6435b1136152dc49596435e048cd8783b62,1,1,TAIFEX.com.tw.xml -6a3350a45d5a24ccb3a13f42c1a3fb426a7dce00a87661eb69b1e47c66bbb45f,1,1,Tailor-Made-Answers.xml -3ce7dc41c4bc9b6d2e938d273bc5b661865520ab9d08a051ccf09efb1514c203,1,1,Tal.de.xml -efab25b7fc246b2cde333d8f051380cd133eb4a7f0166145127a27ca555328c7,1,1,TalentSmart.com.xml -c02124ff54c1386d58c251e3552f6ef2899a9e24c308d0889a0aa32f94cfe589,1,1,Talk-Active-mismatches.xml -908e31a2331e4c52eb00e8441bf10ee528331e73d5f5dcc03aed065a50a88d11,1,1,Talk-Active.xml -b746223f8060cbb1f6cdf08f5b7adfd6bf0aef960614695746d58290b49c5800,1,1,Talking_Points_Memo.com.xml -0a01fbe6d6acec74d0ccd7aef778e02e8c7ac424d57e8e9d42d9729d56001f6a,1,1,Talkoclock.com.xml -d99a848b34f8f4153698cfe019821ace6c5cc2cc0124f1d533a799ce3a52efc8,1,1,Tallinn-University-of-Technology.xml -b14da75d358e6ae804086aa49d830c8fd9bcf3c257756297a5d1eb8199788a2c,1,1,Tampa_Bay.com.xml -1640039109c8c2f9643d9d88c5de2572634fa496aa78cb664ef10ce34d04232f,1,1,Tampa_Bay_Sod.com.xml -1bc78da98c0a9dd3deef3d253bace5b2f67371d3aeb7d34181ec3fc516bac37d,1,1,Tarasic.com.tw.xml -1587111fc27c6fc56bab0f014ea7286326d5f747b233e24b83536e5991e077f6,1,1,Target_Performance.xml -a8687053c02430a7161492d975a61c779c42f21172db6d16edca34d5a32fa4fe,1,1,Target.xml -ba0c8f45c79f4cc687a0b790b13c9a43e3abca83b2d9fd345d2e63bf10f9041e,1,1,Tarsnap.xml -e4d80cc754656ada5ba1f98779688c87f5fb61a08791f713ceea95d6cb84b2d9,1,1,TAU.ac.il.xml -cfb76e4e7478c507dc48b61f51bdc71ed2176927fed165af863dfdba2d2dd270,1,1,Tau_Day.com.xml -2898be08dc1080e2c542f116ccb75c06638d8e6320aa318c5df9a959170309c3,1,1,TCD.ie-problematic.xml -e2f9dfd5c9ff49328fda98e681a47ed7bd09d52c18ccd7c50eca1406d8eff398,1,1,TCF.org.xml -2239d41720f1c8fd08f8210ca202d9649e5fc4d4ff215f22be7a2be0108a082a,1,1,Tcodevelopment.com.xml -74886a49c0385f4607ab118f8a0ca4701f17cd5f564a7528d465c758606bfcae,1,1,TDCanadatrust.com.xml -7c9af24d1b7e0f671f89717a5b69e70c79df84e4e77c5c49224e968c3101a655,1,1,TDRevolution.xml -0d81c360b574307d64f38b2e4a1d02807fee0b211c3fc13f93ceafe387852770,1,1,TDS.net.xml -80cda9034d8a00e18d2a3ec378fd95fea0c4fcb0abdd052208d10f433b9621e9,1,1,Teachers_Assurance.xml -91f0392d5863196079a8e741733d610037620e9c0b246e02fee3591ab8617e22,1,1,Teamxlink.xml -06c2a1a3cc813fc954baa78b4b723f58e55abb1d0be0d01cb50f09497e7e3dfa,1,1,Tea-Party-Patriots.xml -044c8f6f62258a7ad63256b776f7390d63ba1777531821f3cdcacffc26bc7a89,1,1,Techendo.com.xml -4f8d031c8caea1f3a21006592a704dc410f70b0dfae2ecda308ee5c5edf53770,1,1,TechHouse.xml -9bffcc71b7b8861fdfa87180c4365f95981dddc984b39759d22da2ea70c4eb3f,1,1,Technical-University-of-Lisbon-Darkstar.xml -9fbad6951d0b94cff461bb123feafd717cfe3a4ff0f42967e71bccf4cb587205,1,1,Techniker-Krankenkasse.xml -97fcbaf5577c88218e445c6a64314951b53dc48269897f9e64f6317b4b9e775d,1,1,Technische_Universitat_Berlin.xml -0ac8c9c7250e6794a97fb43a2c94d903f83c2c5bfc08e3d32c4d82831c114b51,1,1,Technomedia.xml -686d302ec551ffe043988a5eda96e4bf5973b23ebdaf401c40d0ee46c476964e,1,1,TechOnline.com.xml -2e40b58c77233713b2739af1ecb63ac0b98a69885ce54e4e3e53aff88d0296a0,1,1,Techopedia.com.xml -5f56d29ac173b57812102894ce31e298851ba01ee27da739fe88b2440d3fceb2,1,1,Techreport.com.xml -60c9c4dde695331d03aa346d152a81a6b1e2317932130c411ce357a023935e08,1,1,TechRepublic.com-problematic.xml -748e26fe7d2796e27c9d4fdc8df5a98afbb5719ed4d09d221384a4214c643fd8,1,1,Techsupportalert.xml -a771d99668d12d817109f0df7b87c1eb28c73e908cabee93765034e0dc159890,1,1,TechTarget-mismatches.xml -ad2b580f1b685ae4da97e09f4cb918ba9c991eaf3198f58ec7551e5d6cf73d0c,1,1,TechVerse.xml -8979f123bf494887cf5839268426018ef6d601541e9c675c24dce1a98ba29f77,1,1,Teen_Revenue.com.xml -6d505dbdf780e9107561308221f5e592f1f457e9621b12ead11663533432d2c7,1,1,Tele2.se.xml -a77c392b56a5083d7eb13722815c552b0087827262f1ee008d49bb1633e5b685,1,1,Telefonica-mismatches.xml -964b6b7249a5a02ed7e2d6f2b9e605f1279a1eea18dfc463c46f9851a5a99375,1,1,TeleGeography.com.xml -12f6643c8dfe320400138e5c29a9c04ef46fc6860f5e1649d665ebaa1a60dfe0,1,1,Telegram.com.xml -a657c4abf2697000def80e5c9b26c70b9c5315a1a34a6ed8b21f197a5cfd4e06,1,1,Telegr.am.xml -b7bddf096eef12fb2565a51fae195ab5d6a041c8af4c3e8bc78c023ec096ce89,1,1,Telemetry.xml -32b38e97307552cbc942d5d4b47024f66842b715dadec3868879317c7b066871,1,1,Telerik.com.xml -ec5068ae7ab53082097296ebaf02971bf975b632f8e2f9dee7e10649feb0edee,1,1,Telerik-web-assets.com.xml -29dd308967fb0a8ed3bbc3eb9cae036fbad5ae7ba501ba89a27a6cab0197476d,1,1,Tele-TASK.xml -1aa65afe0a962f7a7bd626ac702673a51fc6f55ed21d1700e45e5e5a640070b0,1,1,Telfort.nl.xml -47c4d924cba640f836148343df0c9bd6b0ab764e9c4ea521ed6d37dd0f1fb5ae,1,1,Telia.se.xml -fa340bfec44c43f86207ca9f60d2b470bd94c4b4b2eb8886e58fd20688f4eea8,1,1,TelVue.com.xml -4e16750265f2c9d5bc7bf41760be8f2c4bc672e92398a6d635c4bc69ebe5e4e7,1,1,Template_Monster.com.xml -90d8cb4c77769dae735da60d72e3b84f57a93ab7aa48e7a01fe8c56c6edd7451,1,1,Tengient.xml -8112be0dc26553e6fbf96b5fc8f649635c92a3c7fc30ebd158d447383797b596,1,1,Teracom-Consulting.xml -c30222dd6e089e34bb2c871173d031f051c41175840040c3b729234558c060e7,1,1,Terra_Bank.ru.xml -2d826e67d0194cf5590596e57ddcec2e523445f3362d3c009a73369a329e0535,1,1,TerreActive.xml -570e72df57965e83919c4deb86edaec58101c64b5bfd1e407b57365d95673904,1,1,Terres_Oubliees.com.xml -068c6ab7bad10838f3256658455b0c882ee2d2cf27415bf6c64b2843c88011ce,1,1,Terveysportti.fi.xml -80a2b0d54ed1eabf4ff9c4d5b2d7955a37a11eb7ea64736afefe5df15052f142,1,1,Tesco_Bank.com.xml -1a0f294d147c61084bca26e4d51d13c0f5abe9ae3065b7940718a9a07c9e1b01,1,1,Tesco.com-falsemixed.xml -575eb3af9769d0ce1f20cc9cee5ff5acb28ab6f44ec60d859178a256e6100862,1,1,Test-IPv6.cz-falsemixed.xml -31e9f9460a5bda894fb347fb2f5530ebe65a74bc06abce265502c32a8ecad2fa,1,1,Test-IPv6.cz.xml -2c17af2a169ae04405c2ca57161b442777a03e1c8193439a4a56eac0e4ab54df,1,1,Testssl.sh.xml -0bdd9de6f132176da1797d3ef1d413079dd56859ceb2941d363e9b312ac79103,1,1,Texaco.com.xml -33075ff0e10375dbb062e8d90fd798a3f81191feb017bbfb5528f1b7187da08e,1,1,Texas_A_and_M_University.xml -17963c7b4e18e49d39f01fd7824e3a9d9e7e65249f32fb0a147558039baf153b,1,1,Texas-Association-of-School-Boards.xml -d8aeddc4b2823d31569ddfc7be4d281b56e214b74c7d729b3643d7ea96574125,1,1,Texas-Department-of-State-Health-Services.xml -262e6cb6ef646356d5c6c57e854eacfc0f22e63e990780b26f8310c490cc089f,1,1,Texas-State-Library-and-Archives-Commission.xml -173d372e6a46e7c85336e34d91346e9061affc5bfd1760bb6aba49186caa09e4,1,1,Texas_Tribune.org.xml -da2036fc287daf39f2ab1c8cb0e3de87caf5aeee39a0eef75ac72c0ffc75a587,1,1,Textbooks.com.xml -3a6cb4c2f27cb2a33ee83bf8e9b1c3a67a6db66d697f9277d3a7c5fb88095651,1,1,TeX-Users-Group.xml -d99c24434df2c7599d93b1d7aea6fb1e218766e3bebd93e18613f60ed10c6d2b,1,1,Thawte.xml -89aeffcdcadf5165a3e6c16c8c1fa0a68d11a044d6caccbfe692089db5276e11,1,1,TheAA.xml -1e4218f40674c65cb64d74d7823c45fea8ceb1071a2b58243ce1b8626eda5f0e,1,1,The-Art-Institutes.xml -506962b48cc81ba9fd9b78cbb56252315201bb710cb7eff070b294891c748af6,1,1,TheBookPeople.xml -fe228a94a3d06f4150f1b6185bb4fcdaff1fac58ec5e3896ae8a1cbb99853a05,1,1,The_Bureau_Investigates.com-falsemixed.xml -9cfc917aed6ae985c5ba1ae46ae05f69bfe557915de4b3fd6464e635aedf118d,1,1,The_Bureau_Investigates.com.xml -6197f3d72a71901267ef26b5a0109ac64fd257baf72aa2f3583d0690bd1aad02,1,1,The-Business-Journals.xml -739e66b04c9a5af038011293d8007d404e72821820a1e79f3663a68b7cbffdb0,1,1,The_Center_for_Rights.org.xml -788fff57cbc99695ed1552f86851101734652d7e2f5379a503bd3636dcdf738e,1,1,TheChurchofJesusChristofLatterdaySaints.xml -d206e171f8940b7b54880c8624bf5fe12b1f79af56de759dd78d961aff9a5e14,1,1,The-Citizen-Lab.xml -d91fe8b8d20d4a144bc76f48c0639703335b8e1de696366af563829a5240cf90,1,1,TheCityUK.xml -ac7281798c66f642d911a05d2d0e2f01f254451e85a20f45a63816cc59ee9c97,1,1,The_Daily_Beast.xml -11319e7025f205267ab92752cf95740a51b58cb9ae6b392d46fba9fc6cf448a8,1,1,The_Drom.com.xml -74ecffbd36928cb6a7a11dcb85261fa9edbbfa77eaae0169aa9357dd959c7e9c,1,1,TheEroticReview.xml -01e1a73162cc1278acbf2d04458e7ba4b2845d5352f3046cac7c612a105fbfe3,1,1,The-Event-Diva.xml -80d1ae41a278db7b4ff0ebc18f7767ff62bb0889bcd3b36f25d20e6adeb2bb24,1,1,The-Great-Courses.xml -cb6933673ccc5114fd706e250a9198c8581ebffd405f0fe839537110e03d43ff,1,1,The_Grommet.com.xml -fb9227ecb093d793a458ff52bfe79a76b3d8005f50dd173bbba33792b780aa16,1,1,TheHut.com.xml -d3cad14d26c563280c4e79db4b0cf3861e3f31b33ca0eeaa23247d90c54d1599,1,1,The_Information.com.xml -2ba5a140869c65c1eda60d032ba1804982ddb1f15fe47a020b5b6fbb6010bb02,1,1,The-Inspiration-Room.xml -4f57c4a727a86216234871be4151e0ffad84da44cd1ab5691aba0fbad15d8760,1,1,The_Internet_Co.net.xml -1d80b3f9223fc97c7ac1831cc522b5612049fd50584cc274563a3bdbeb1fd9a5,1,1,The-Lean-Startup.xml -4f158ff1af963a5d9ed0faa1f3aa8f8468024a10fc64fb7abf96745f5e827fec,1,1,Themes_and_Co.com.xml -e809b6a51e1ae2d39b240d017f0279b821c2eeaf95f25e177d28a80e1689d2bb,1,1,The_Newsmarket.xml -ba5cddc5052720f05477eb3d7c182a687f18021b30a937d34458c7d10d5faf8b,1,1,The_Next_Web-problematic.xml -0eaa13eb00dfa89e920c20033aac3643c377713df15945b2afaef3b4fb13d8e4,1,1,The-Next-Web.xml -4a241330c6d4a018f80c27a20703e70c45ecf17cf9fbeda893e47da1e6169937,1,1,The-Open-Group.xml -4e0af838c4fceca85d9c15610ad185cf241c6229425eb8a45ded944641cc2220,1,1,Theory.org.xml -6ce3ac8cd6caa5c805e60c651cb1b5c5b00eca8e306e9731b6929a39f26e06d5,1,1,The_Patriot_Post.xml -47a59b2dd91d2cfdf21e5a9dc3e4d41cf42a9b52c99dba572e95b1f39c1d3a34,1,1,The-Public-Index.xml -74543ac90a7b3e191da32cd7f530d15156c29648ac63f8d327ea72726dacb6cd,1,1,The-Republic.xml -449433a2942b5a845999132bac486fcbee18ac48034bb52ba32274dcde4264a9,1,1,TheResumator.com.xml -bce300c0459f2eab3157ac5c5667db5e9d4689b47cbdb9f2449e1fcd5f7f5559,1,1,TheSafety.US.xml -f9638be0d1a2a1db5b98ab2f49f22351bde30a6e6b79b12c660266ba0522c858,1,1,The_Satanic_Temple.com.xml -954be849d06f47930f52059ecbb4936af3374b9918df17dd7a833b62e679951b,1,1,The_Security_Practice.com.xml -c509400770d72466f1fb4941a005dc52756f9f8bc456551c5c58535c12f03cfb,1,1,Theses.cz.xml -dc6479b3e8d79c3e95b27a26f5e1887658e46169e07a77bcff78e939cb808206,1,1,The-Shmoo-Group.xml -87f87974eae4c8be63d24bc12dc2fd9009669d3d060a0743887bc4eb890dc0ef,1,1,Thesn.net.xml -ef69751bc1d5a87d33ab524aee73b0ff042c6a4aae24091db573bbecd4ab25ca,1,1,The_Stranger.com.xml -7ddc662a71ff8a447544ac3ad591fc76a77d134290170009f3b6f5ed38c6d3f1,1,1,The_Theme_Foundry.com.xml -b3b2e86b99f122d1e854b689a4b499b1370d4847eebb683aa39cfdb5251d8d81,1,1,The-Vault-Bar.xml -1e997761983dcf6997b046c5bf9493f25422bfdbbd5b693560808da05f441d76,1,1,The-Washington-Examiner.xml -45c734084bac83b8336e3bf8061aac11ca6981f7602889d5ec0cd6e81c37d95b,1,1,The_Watershed.xml -192c7a558c80f5de13deb92fb4e194cf46e435a55413f27016131a33259fc2ca,1,1,The_Work_Dept.com.xml -db18010d3ca83f79d1da1c4c2a9116e1daa3edf759a3d5577a331408ff530253,1,1,The_World_According_to_Nouns.xml -c9fd1b08eb31229b1a15605bdd6993c21bf7155b6e454d7ef876eb432ece3a94,1,1,Thing.net.xml -3b89f9f5c32b514122d49ceab4814e47ef0c97aaa9aff40b468aa9387ab4b672,1,1,Thingsquare.xml -e7b9294bc0459eb46ca3e0c4b3ff4455bb55657e978e5f090c32bf77c98a1dea,1,1,ThinkGeek.xml -a9de1d33f1d38bbc31b35dc0963ce198eb843d292d2ee9fa9f6341d54b993f8b,1,1,Thinking_Christian.xml -7ebfe09e0a8949490a8587707a0432e4c9ecc6b38305d3f11014c757c302672c,1,1,ThirdPresence.com.xml -f984c8bfe7914af11862ac7153e159855cb7d3e1a595680c956728afbcde57fa,1,1,Thirty_Meter_Telescope.xml -eb3aae5f80965eedabf3e001784fea59428fdd06a6370d5be5ed35247135f5b6,1,1,ThisWebHost.xml -67e41bce1db89ec4e09f46c662ca6a2c7b126f6d57052abfebdd25316a9282c1,1,1,Thomas-Krenn.com.xml -b42e80cd936acabee62bf6fe2a941a845deca0b31d100a80217bb5d58f4e9052,1,1,Thompson.com.xml -4a9d2df9e9f0b9bcefb9c1e2b49d8279f452e0519f697004dd78004126488f2a,1,1,Thompson_Hotels.com.xml -eb2a659b523e5b8dc3ed7f51cce652abac536d52c86bfc6aa421408330b64963,1,1,Thp.io.xml -d4f11743fd1b71bdd75d137f981310d6886c29199253d3e05413274cd2f6f175,1,1,Threatpost.ru.xml -d122503eeb942db315fff87bde0864111b91310f7da0c9ecd27dc8d77d8f487b,1,1,Thumbshots.xml -c572a5c33cd5817863bcea276085297977e5d272aec438c1c73c00d1c85efc35,1,1,TIBCO.com.xml -1691cb662b5c92e39543967f4ac52f86fc7b12c3172eea43a64100e699ffc7a4,1,1,TickerTech.com.xml -5c7384430e2a8498ee7650c8045cb2ced1f24318f6fafb4aa5795efd075615e4,1,1,Ticketnet.fr.xml -df293463db93d5dc463389a7df8fa0780fbce66adf464f1c1a0c60b428469662,1,1,Ticketportal.sk.xml -22c5dc554eff33120154420db28400e7a9175540628808fcab68127ceaa53846,1,1,Tickets.com.xml -2ef27d20398c4c8e17c84f3cafb29b8d9f756036d533734bdce48a4334672e82,1,1,TicketsNow.xml -712dddaccf05631bfed526e1399aef6f227c79d7a1119e96b541a8011da420a9,1,1,Tictail.com.xml -41988eca7e169dae42c7fccbbd264d521110b7614836be80ddbd275ee14b39c1,1,1,Tidal_HiFi.com.xml -e999700e31b6d56c8cf5a586f5e6994bba3b6a4a8988a3583070247dcacd09dc,1,1,Tid.al-problematic.xml -298330bca9f99c55c045c6aaacc513f9435fd9b0080ffed0e11618cf2fb8325f,1,1,Tid.al.xml -f04cf9c56366906e30a204e2341fa70b05f62b3e574680255d82571ec98d8384,1,1,Tidningsnatet.se.xml -070cfd36e966dcbc299d6c7d3e4ba8e379d29a0a6aff7ebeb84c86618d638b68,1,1,Tieto.com.xml -deb0e367e88497082bcdd35603bee73dffb7313654640518e82d9a79491a1e8d,1,1,Tigr.net.xml -d0d33872b80436fd148d0c29cbe448843d5dc36ab0adc50e2b3b8b0c9fdfdda7,1,1,Timbro.se.xml -c586112a934e1ef6f587d2316e13cb55a85f4d574f0684e6cf3ed636a8ddb4bc,1,1,TimesofMoney.xml -2b3408a8f89589faac295e5b1dc0a601d01e1ac73f50e1449b04767930bfedbf,1,1,Times_Record_News.xml -9dc9221fe34a8c545ba4dea34f0708f5866bcc311121a9db998c9052846ff99c,1,1,Tim_Minchin.com.xml -9db7d3bda86ebaf938f4cfa084d270d03c123066e59f8572763f02fb7030322a,1,1,Tinder_Foundation.org.xml -85b8494673adc5c9e891bbd25e7c5cd4811f32ab63c983fe90dc3bda9a5c0f89,1,1,Ting.com.xml -38a2a7782d9995cb1e7876f8da2c1e5ef501780bab6bf2f46421e90534c3030a,1,1,Tinkerforge.com.xml -464750dd85d65718d89b4d9751d8dcf737768fc980b938573f3de362b3659a84,1,1,TinyChat.xml -d4cbd7eb4aa005be2400ad4737c5843fc9d8a2643965f0f265c11f4a8cc4f3a8,1,1,Tinypass.com-falsemixed.xml -b0684a9aeb8db67f0694f06f85b7615c84218ccf1157e6b8ff292700150d599f,1,1,Tinypass.com.xml -c37983a59399132585cf9f96f29b61138146596493d6cf930fcfe5a7c68a9b17,1,1,TinyPNG.xml -d684eefb964cf502bd4bfc768056251dd0f45b456dc9b5e27a02e900203404a3,1,1,Tirerack.com.xml -a41a3147a3113e3041e668e728a9ef9d005e59ca325ec7ca0e9066ea380e2793,1,1,Titanfile.com.xml -a5cb259030a51f93e8e782ccd0dc281f01532875cd5d651fab6d02810793e003,1,1,Titania.com.xml -25afd3e07a9f15f6fa54c339945304d271543551b8260f2a0da34e636bb3b84c,1,1,Tjoos.xml -acacfb1ebb395e4350fefc6d187b641fe93f6c76cc284ab24e9f995c304e111f,1,1,Tl63.co.uk.xml -1531eaa1067b3d3963d8e50104e17514d3379f4dd0c56b01ab934a74c7f57f41,1,1,Tlsfun.de.xml -9ee8fd34ff6e582f533c2c2bc0a32e6500bde0322a7a79978feee95a8daf5804,1,1,TMcdn.org.xml -23b9c63df64d2b2cdd537f8b37898f1b804ce4609e22d55edaef4b6df837ade0,1,1,TMP.xml -4ac06775fe3d3be4f36c7832396d511b8d91965e52e1bbc82127e7504966759c,1,1,TNNet.xml -b74fb12e71a511042580bf2a8f1e015766af73b3653ca95e37ba3ce45fa82506,1,1,TNO.nl.xml -d3571dc0bdfe592ed4d1bf2ef4040261d2943216f8a33cce86ba23b22f99c757,1,1,TNS-Sifo.xml -62916b98805af0abbe50e636012ec27558205fbc6815e8450bd5d7d03a80ac1c,1,1,Toad_Fly.xml -5c1a30c2008fc80c0aefdcc559777cdccdaca7d8f3c4c95e5e2d0e238c8a56b2,1,1,To_BTR.com.xml -42292d0a9a69682c2d9317e2c3baffe26f5627fb92eff856db61991c5eef030c,1,1,Todoly.xml -5c9ae2c754a437b0d28e61728515c97ed4cca8acfce64a2d537bd13d7346aea6,1,1,TofinoSecurity.xml -b95fb934bfc621da8d176b0c91ec765f6f7d67e0c5275aed5ec3f85c42a5fed4,1,1,Toga_Hotels.xml -e14a4862724980b67d442efe8ef5b7f430e088387580c43053c8b848df81ca68,1,1,Tokyo-Linux-Users-Group.xml -b52667e2e9eba427ac0aa836b4742dcd8b393dc3c84a9c6a33295d44f521943b,1,1,Tokyotosho.xml -06292948f6ffaada00246a0c636a0518391fbb988861bdfad633af27925787d8,1,1,Tompkins-CortlandCC.xml -fb58cd9be4869f8b8ae49ce4318039d17605071cc8c2d30d303c8702ae6cfcb8,1,1,TonerGiant.xml -6361bbb727467af8796a76e589a199f9b8cb2b0a593727ca40a47d7aa8e1fc66,1,1,ToolbarBrowser.xml -2a1ab23b0f35df2faa362e2939a2b5e696220bf1cf274ab16ad190ed3c8b94d7,1,1,TopOption.com.xml -7ad44939a8ea5bcd0d4fafc588effdede3cad62252fd2b97dda63d9277aca3b7,1,1,Tornado_Web.org.xml -b75b3fb34aa93de7753e90173373e56eb02eaa3df6ca46adfc97e08b035accb5,1,1,TorreyCommerce.xml -c9bd9b74399ec69382386ba54a8d04866e6120cbbddea2d7f46adf56bb13ea4d,1,1,Torus_Knot.com.xml -029b5aa682159d626089870b065fe393294a2f3215b8c4ed0e2611281666599d,1,1,Toshiba.co.jp.xml -9925bba044436e099ef9a17c05c3a9dd980c74652aeb939ac34c94ea63b7df57,1,1,Total_Choice_Hosting.xml -5bf3e44d7370894cf0d2c45a95172e3d25a007c4018b5ea8d71eab69acc9512d,1,1,Total_Investor.xml -e9a998c0e6c24112138856cf39941b9f4bf80686af4ece2191338cdfe306e028,1,1,Totem.xml -538bd3dfb191a83abf986e380097c177b387cf69ce0d6cc2298ec7906935d1cc,1,1,Totse2.xml -d87cdcb3d834b578712903370180da19f04204d5362c9a8164b772b55a18037b,1,1,TouchCommerce.xml -2eaa64ff59a989726785d161525d3e175bdaee01ccdc10086578716e4c7bb8fe,1,1,towelroot.xml -24758ddd0781ba99a1a9a29e03011c29687c1b5f67dd207daa8d811ea75a4615,1,1,TownNews.com.xml -f6d6a14f6e730ee446729955986056e9a930783180f0dec99991bc4109622951,1,1,Toys_R_Us.com.xml -fb681926a9b4ea647517baa675065003f652bea68715b5f5e5af63bc3dd7d86d,1,1,Tpd.sk.xml -cbc02e62c624a6495a57ade988c18385c83355a4d1cccc23f01c2a325740eeba,1,1,TPG-Capital-mismatches.xml -2917eb742e4f7f15db7b7566a266e73ba37df2d9e6a64de292ebbfa4ee904707,1,1,TPG-Capital.xml -e4f2e174d445d73c8beb43bb4684352aa7fbf9f9cd7068168b51f1f53804e048,1,1,TPP_No_Certification.org.xml -388157bba9e714515885f4d288e54fbc91ea0bc77b2217a877ff683d4f58a9b2,1,1,TPPtraining.com.xml -1d097b7fd55207e420dea8a4d7160835e3eeced0853454738822ab491875e68a,1,1,Tr0n.net.xml -7259305af6c4290ae46de7c834ca0762784aab4962d66ab98641d750a83ed803,1,1,TracFone.com.xml -d8b5e9ab6cb02f0cadb0fedee52230418d383f51236b145b6654c3fe7693602f,1,1,Trachtenshop24.de.xml -9bd03bd85b00353f92ab34ae648699f3a3307708527e330079eb5742ce3d60b9,1,1,Trackalyzer.xml -ab5cc8a1755685297bc40b4037f1277d7482417e04e5c520deed1d12e353c4d4,1,1,TrackingPoint.xml -7673cbf09b22e7a38503a783d546a3ba3f19e5b9c67aff9d90d0daf9c5f0c346,1,1,Traction-Digital.com.xml -ea9ee9161c30a7dd85fb4bdfaee226a15a84be9f154572eb838cf1b6abdb483a,1,1,TradeKing.com.xml -3f6e8ab2b5f0ed70138432ba3f0bfb91451404f1d1c361fcc625d070e4ac4f9b,1,1,Tradelab-problematic.xml -8ce8022cf79d4e12ff69b3bd4ad3d9cefc94a750bc774c6666dccd1ef6ae7975,1,1,Trademarkia.com.xml -642446cfa10e654481dda6ff52b04f385bba31045a0603e26709f3beb57cf4d9,1,1,TradeNetworks.xml -33fe34b8b34cfe39278bbf256306a09c27ae0943883a0a037b6fe9dd92121893,1,1,Transact_Auto.xml -67fd8d9314a487120d3522c34835214140da57158a1bb42ab2326a7c793aff1c,1,1,Transformationmadeeasy.com.xml -745d393521fb70da4ff427786ee8cbbd61c2b36646c5528766a134340c824670,1,1,Transformative_Works.org-problematic.xml -9130f100904f6c25762b32d755c566fe6aa588b19feb0defa4d3473687abbc06,1,1,Transifex.net.xml -1c0b98e4dfd6ffc881be5b584e8c2a3b3147273bcc1000e6564ee57039f1eb12,1,1,Transportstyrelsen.se.xml -e146c7bca657938ee542242397d6ba4457b7451ddb4fc64f0f8b12cd6cbba2af,1,1,Trauer.de.xml -33d321574ba20c37ee80ba79c6ee1bd2c28ca890cc82599a1799072cc2e3b47d,1,1,TravelDoctor.xml -f29c66a5f213e6258665d3ecfbcd498dbac77cd5137244c85589a8b85ea02ec5,1,1,Travelingnuker.com.xml -c7c57b65cd13e5ed94238a546ff86f9af27333129ec503e4d00067eb5444a4c0,1,1,Travelzoo.com.xml -a40a21c802bc8c74243e4a5b17bf171b8a9de5be9ea9d04bba0aaae7097c90c2,1,1,Trefis.xml -a15f218ce90ba990333edd6061220b58b4bb4d762e26e307fa0e5d583ea93fce,1,1,Trekaroo.xml -4ef3285a48f271b4a3781f58a9a4788fbf05c751455981d9e1aea0bbcd347a0e,1,1,Trellian.xml -b9a95a8cc5bd940e6ba88dfae646ad3a2ceccf4c5604df2c5291df0a4a60063c,1,1,Tremor_Video.com.xml -315c8baf521d9edb49a5a49a91630711255a5f86162562bfc5e31a56198a1176,1,1,TrialPay.xml -b5388b95ce2e1c9fc585d73c69a9b71f1778aabd5ff7bda30f1f20229af8bd72,1,1,Tri-CUE.xml -a3906adccfc4301efbc4cea0a097d22264fa09498b92e9ab18dbe4deb4f9e3e6,1,1,Trinity_Home.org.xml -9d1f2028d622611c85867fdb9cce067898baf1b0c8b1cdf76382a435006dee85,1,1,Tripbod.com.xml -659f54d49c0a1bc37385587c4594dff783cfeb3dae3463d6d9d48e95b14fe1d4,1,1,TripIt.com.xml -9f80f4c773e05e5db20f7513412915c567bdf50c721475bb389bce9376a923ae,1,1,Tripodo.de.xml -8d75d077c9a9ae3c8db6b03fd079e27b3fe49943a78ee3a56f26b6b433ee0c1f,1,1,Triumph-Adler.de.xml -95f16dded418621ad47b6a14df059990d2ad3ee3e541ab18302119286c416dfe,1,1,Trkclk.net.xml -e8f0b1dce812bc8ae5574772ad589bce9203ab5356e5fd1e1d300bef55fe966f,1,1,Trolling_Effects.org.xml -583fe8b250539316209b382249de834765d3336b789e278a0290906946a33230,1,1,Troopers.de.xml -3bb515913e2d4463fdade55dfad89e7a73a8ce4da41926362557ae33fc7e3f7d,1,1,Trueachievements.com.xml -5c5ea0a5d52a71e0d7cd988d3a6d77c836f498d8ec6683da96890eba5bba1665,1,1,TrueCrypt.ch.xml -ce85ecc4985087f9819bfaa031a597d1d6fe0f119b877cd46d66e6643000347c,1,1,TrueVault.com.xml -a3d6d1a0570705dc309fb85b1ceff285afdf78ae5dd0d28ba665385940333f81,1,1,Trumba.xml -88e8486dab5c9ed14e91e57247a0e53a17a334d00c34825f710f942157ca28cb,1,1,Trust_Dale.com.xml -d068f81127f1484bb4b0c190d455ee641f01a8fddbb6d3303992cc6e6b5339e3,1,1,Trusted_Reviews.xml -93fea5aea85c74dfae366a45e1d7ceb7c3fecab2b782ba4ab241812683aebef0,1,1,Trusted-Shops.xml -515209532db991dbc23f669a73b6d3038e7a91fef1a2e5149ca310c24b2ae27a,1,1,Tsgstatic.com.xml -9db785c3018690d544e7c306eca1402d0d322af8d4f0efec0e562b97b7ffc883,1,1,TSMC.com.xml -1ecbe1da69a1a1aa49979faaf3c97bee997651c4b0e9e33f7f23c61d14ac7f7d,1,1,TT.se.xml -075aef1c9852855dc15b59f6f2eaf4f8bc106a7c822d7197794d05262618007a,1,1,TU-Chemnitz.de.xml -160d9378e69345661bba9146be715619c926f9e42473146b07d8dcdc1473d772,1,1,TU-Darmstadt.de.xml -0d46f84abc248fe7b3d684098a6e460a96a51180be156f15686b5ae6018f4c2f,1,1,Tufts.edu.xml -de7344c2c6d972a368180b62f10774c317ddc037946309fae83d650d4ff4a538,1,1,Tufts_Giving.org.xml -ed6c9a0705f39a6116bb5846e82ff40a083eb3ce58530524fa2c53c34fa73b2b,1,1,Tufts_Medical_Center.org.xml -695f190bc96a78e91af3de7108e3a22bba1d1121c39b6ff01d00dfd94f100b8b,1,1,Tugg.com.xml -a12d0d7a0cd44a368a0a56ec68712a53e5b881e8b6b6da18ffd0b7b3a9b0c3b9,1,1,TUHH.de.xml -7437c1971594aa265eb53fa94c228ce212257cb485c529ca827783fe23e05afe,1,1,TU-Ilmenau.de.xml -076f75e0cec1e5ee6f4c1b4bfba86da4123cfe0cd911148ee9a2de0b23e9c0bc,1,1,Tunespeak.com.xml -0187fbdfbd40e7325b6b8c112521c73b9d4e6c5acb8abe2fdb709dbb863a12df,1,1,TunnelBear.xml -327ec385173956e4fa7b6204764c2a58eee10c8090e1779b533ca1a82264a2ca,1,1,TurboSquid.xml -d7f7fcaefd86387eaa28878eb82117ca8222d09786d9ad398b75de5ba2154819,1,1,Turtlebeach.xml -ccbcdfbfe69533254836bf4d2e39ddbc984fb6533ea86fc7d641840140ecadcc,1,1,TUT.fi.xml -852425b7f134d86a1582cc22406f86169bf7bd33aa35ea41c118584715796ca8,1,1,Tuts_4_You.com.xml -009541f9142f0e8f7a467b8d9d9e5011b7a317f34acc6243d7c3b6bd672426cd,1,1,TutsPlus.com.xml -51ea91a129109ca65e344037ce0b32acecb58ec90aecd8e2a9e9be59efea8837,1,1,TVBrowser.org.xml -d4e0cb9416ccb4d5be104989ae950dc51fbc53f08dbb903a9b457d09c83415de,1,1,TVLinks.xml -0c003aedc335a6535515697f9b8d5339d490581d357a0afaab7f8a578c830944,1,1,TVNewsCheck.com.xml -910dc09ec17c26a12b275fe2d1282e94a82fbf0163282fe5a5ac496ff9ecbe3a,1,1,Tv-Release.xml -e1f76e0ccf48b6a764b85cb52644e4f2f569d08b74ea01ff28e0eb4d99111b19,1,1,TV_Tropes.xml -e8496bac50ff5ca0aaf25d9a0a49f895c246f8b7d7941ad7e6cf2c8d6439580d,1,1,Tweegy.nl.xml -b35b35365733082ecebdf86f03de9cd93bd738bd52a0239bb07d4507ad792b5d,1,1,Twilight-Laboratories.xml -0b70c89a0d79e5caccad6e3be40dbc99a9c3885b5b59c01c57d775b28546b1bf,1,1,Twinings.xml -c7c0b0037aa46dbb29cf62af4e7edad4f3745538e64a06b39d41309be61949c4,1,1,Twitter-Counter.xml -7b77852a18ebceedc2978095db85af92d28db9913d71634ba4d68a5f64802c08,1,1,Two_Roads.xml -b6e20e58a85db551dc6b49cef5e67546f73246773c61d31d86c69986ef9a489a,1,1,Tyndall.ie.xml -deae2b1c6be69bae7b6ec4895e585099a2f5374b53776ed4f075d45f4c1cfa6c,1,1,Typepad.xml -172bc839880d85c319ca1b652309a5e2f354ff82877d13dc831a5428352e9a36,1,1,Typesafe.com.xml -217e0a47c79b13bcf8a182ff48275e6d041cde28d82aac6157bc99c1d60493e7,1,1,Typography.com.xml -b2d9184c367e78a0d8cfab5477a0e94d3ab84d5e764b8b83abc275af27cf0653,1,1,UA.edu-problematic.xml -482f0e56e557e2417c9182b17919e452a6e1cbea09d663b933c03690969338fa,1,1,UA.edu.xml -0406f3d03186fa7ea14df1d05beefa525626dc023aa222bb3437dba46b889e68,1,1,Uakron.edu.xml -db0b22a14e4f5c66f02f963504cdcaa35e78ed7f39f42e209b3e0a9b9ba1a593,1,1,Uberspace.xml -1224b49ca961edf5d2c7e1ace919200a6410bfd0113a94b38b2abebecd6c8389,1,1,UberTags.xml -080fc622ff8332704b958560b9d0d692594c26964918c2bf3c496602568e761b,1,1,UCalgary.ca.xml -0b1b418c73486bc0dadc747306a39b269d9cda91ef3292cc4149aab30e0f43b1,1,1,UCAR.edu.xml -49c96678bc86a99b01c12892885c4fcf38f81dd5ff32f582af605567f64fd5b8,1,1,UCLA.edu.xml -9c3a8e1681ec9310c7caebab84201af3fd831113e7056cc5ad1c3d83b7f31951,1,1,UCLA_Health.xml -fa704b2f39d36aa724a70157fbddf2ca0e2933b4c0ce01310caa0f1d903cb657,1,1,UCM.es.xml -3edef7d6624a72e587670864119d5587024b70b17a9d360dd391cf6163afb74d,1,1,UCSD.edu-self-signed.xml -ea8f9bf69a5d5029ab1c217760e6e27c3b5a4e9672ace704a2f9f7d8332bb497,1,1,UD_Media.de.xml -de858af31abe4402e1eaa36359f7c8b42140cd93c64fe782cff904c0d017796e,1,1,UFies.org.xml -64771f086e04a7d3be78f05894964e0d22295ec71a83c7d68972e35f533661e4,1,1,Ugandan-government.xml -4a7f864a3f854fe826e6a3dc007063a9ece15703ee80ae969882a1b8ccccc97f,1,1,Uhhospitals.org.xml -1cbe0480bc1cbeb5c43a5087cd9824c394bfadebdeb4b3649bedc5a167c3926d,1,1,UIE.xml -f2b63947f9470794e4a28d994af0b354ecc071f5af85945d25045c72109a1928,1,1,UImserv.net.xml -920fb2d404c531a49a0a2077134ceebaaffe882f0f47ff94b16756f733974631,1,1,UJF-Grenoble.fr.xml -1c2718eddf3aad2784493ace750680876d5388690df4bc5bb12461bdd2e2b867,1,1,UKLINUX.xml -b1fa590a3d235ea98e687c16eb278312a6ebdbace39393517a0bb26cc3767b59,1,1,UK_Ministry_of_Defence.xml -edf3a524ddc28b1ad57d60233556f58478f26415fccd6d7573938c37d922329d,1,1,UKNOF.org.uk.xml -96961aa668492fd95b7a45e568a5388a77a045d1a965504e3f4c5cac64f72426,1,1,UK_online_centres.com.xml -514a39a50bff75681e21356207c26aaca2543af15a9bfd2867100ae98accf6ae,1,1,Ukr.net.xml -0b44ce46a58cfaebca7e63776807e71e756a15a477888271bf96d1bcb2db4d30,1,1,Uksrv.co.uk.xml -dea8b7526b42b85e25f40701a5b312661473a090bee7bebb61f49ee99a3ee654,1,1,UK-Web-Solutions-Direct.xml -c3e80e630bb200fc2c1ab0e7f3c3e3358531cab8aef87f657c79dc12fcf4cdcd,1,1,ULAKBIM.gov.tr.xml -dae919c3f6ca4e00376c16f03704d0da1b907a19cf963af16a00b2a813c96c38,1,1,Uline.com.xml -e61b0fc2b7bec6cc9e4cee2edce118b13055cc7b8290667c31e454cecfcbc994,1,1,UltraDNS.xml -d4aebf02f3bc14f99eb5edd840295f9a9ea83a9da8590405750ad92cd27a399b,1,1,Uma.es.xml -43bedfb524907eff167ef1568f7c8032cb2d63d2281b865befeaa3a1e2049eb6,1,1,UMBC.edu.xml -d0c3484003d83f62d4d3a818a40dcc0d92ab8c1ccc926cb54c42bd7270d80cd7,1,1,Umea_University.xml -0fecca47307df885935f6de867f521ab4696d911aa0b6a9a68fcee383714280f,1,1,UMonitor.xml -9755d712d9eb1622a679a286f3cf35193c8b573b7ed75716cd6130308ecb560b,1,1,Unanimis-problematic.xml -e161a11bf8f127870dcb4ac865a2b3f1b38d86a5c5e47b70391e40dd8c87e133,1,1,Unanimis.xml -98b2f35c7fe50743ca67638493d399cc131dca5a276adf47ce6d4e37949f6af3,1,1,Unblock-Us.com.xml -828127811d074dc9ef16975754dad838fa0174cc97ebcbdbd4dad31574e584f7,1,1,UNC.edu.xml -c1ed5d2893d985df3fad207f9c2641e742ac85184dd0314e3fa180f1528fb151,1,1,Underskog.xml -abde55d39d54436f83a19a822428de73e001bc42b5bf7a6846ecf331b8786696,1,1,Underwear_Expert.xml -3980ab0dcdb98b47939dfb35d9b10c9b1ed6266f4a7f93aedb305004afb8e550,1,1,Uniblue.xml -ab746cbd444c8485fab5294c21bac38c403d0a694040c95732260829bc2c3a3a,1,1,Unigine.xml -bd135ffdb815d31e79e5509bda7a2a677a86628cc655ca65c214de1b20bb4627,1,1,Uni-Kl.de-falsemixed.xml -dacf0d738a537ef348d793f0cae29cb8a6767c63e4d352034c73b1ad503936dc,1,1,Uni-Kl.de.xml -2b76ca2f6ddc6c96299e6dc5ecfda3b24949bd7e2a6fdb7c826506d455743da6,1,1,Uni.Lu.xml -bf4cfa2104d71e0ec0e3e930c0d1e9129a08bce034bb8eeaab0d7d12fa1d52e3,1,1,Unimi.it.xml -a937024d9043a23d94d3d72c6882f07b3961be52ee04344cc3c63f26056138f4,1,1,Unique-Filer.xml -36b4425eb2b57da6c91f6ad1591de700d09741a417d589899f68fc99cf5b4bb4,1,1,Unique_Vintage.xml -9e94b61af5a0fb8bab661dcdfd4a5aeecfb7389ba484b07f8ee0c2736af3b5e4,1,1,Uni-Saarland.de.xml -09479dcec552509fa9109de00e1628d305dc3cd973d091238d94db9f81d72e8f,1,1,Unister.xml -50528247279d89e79ae139a869b96c7274b1d6b3a324745992c9fc3d9490307a,1,1,Unisys.com.xml -292baf1807d0514c5dce05081cd4679b1f391d9e12cb234f34f5c3e1a45e9147,1,1,United_Computer_Wizards.xml -44cc911a17c526d1a8c74161d9d8a8104bd9e4fc2a2626d35a85739c0b7b880c,1,1,UnitedDomains.xml -9be5a76f9e2f9315dd9c54195e86c8cc2095f8f69e038a287e853fef0899fd72,1,1,United_Nations_Office_at_Vienna.xml -5e429b727ca2318f54fb23303a5f3a3819a70ce22afd33c7829771ff1ce6dd46,1,1,United_Republic.xml -a54f076011544a5b6dbf25864d034eec0868cd7a969d8f5b847c0f899b723169,1,1,United-San-Antonio-Fed-Credit-Union.xml -e065fc9908284396d7c3ab13cbacae1ec3572543fd97843caee2aced1a838450,1,1,United-States-Department-of-Energy.xml -c5fbbe636496cb6f91e2cd50b9bfff0d708bd992beb718f6133fb44c2ff44e51,1,1,United_Stationers.xml -2f42e894be064592af7da170cd603d831acf2d10b0ed05d618b606f1cda08c80,1,1,Univ-Brest.fr.xml -988aa2aabe802444bf725e0fc2b96b657a55cf2ac6b6f36147bbdc7b458701f6,1,1,Universe_2.us.xml -03d526949445b07094448c452d80c8cf2df4c3103f874f7aedfaf3f7a612fb3f,1,1,Universite_catholique_de_Louvain.xml -0c0624fcc32d2203b09eb41c07f3e430fac13912cb6bae148d72440461fc6151,1,1,Universityadmissions.se.xml -1b63de944b3dc6cfdcfff47840c4151bd742825eaca36dfd0385e151f396ae94,1,1,University_of_Applied_Sciences_Kiel.xml -9629ef42ad9c1bf7782331376cdb3f2969c3dabd9da42a48b0a6bc5959582b61,1,1,University-of-Applied-Sciences-Rapperswil.xml -ed415b19e0e0588a60d6dc04924c1d9e38d3ef0b5f99cf749235132684e9092c,1,1,University_of_Arizona.xml -0ac8ec3397382662ddbf64902f9624855b252c9576998a73380c0c914f6f1bda,1,1,University_of_Bath.xml -eb48587cbfe729287f38ee753fba657c641dc4a230f3a9808a7dbd076588ea67,1,1,University-of-Bern-expired.xml -0a936a58c6522ea7e686c729651067956bfdb0809c833a9da9672c5b2e9f3f76,1,1,University-of-Bern.xml -5c04aa6f34bbde72ebdc5146ce783f31bb9eb4da7525abec541c527f722a766d,1,1,University_of_Bristol.xml -930135e45407a24b1740c05dc8bbdc963991d4da2ec3acc022b3987bdd097fba,1,1,University-of-California-mismatches.xml -40ef91002ef5179a4499618eafbb0ea6d063ff7ea503869acfd32eac9438fa17,1,1,University_of_California_San_Francisco-problematic.xml -c2dac718151331da92c798abb24423fbbdc99c292e9cf2fca58166a22e429288,1,1,University_of_California_San_Francisco.xml -0d8c654ff8c103639408a7666814cd3aa6670ded256ce28fbedcdba9a96900cb,1,1,University_of_California_Santa_Cruz-problematic.xml -8c7c2ced844de3b70117b7f7c122c869a969beb3b271c7d5e2090bc1c531079e,1,1,University-of-California.xml -9cf40f9716994fa5ce46c2f61060e3a26a12548e8e7135fe2b60659831e06ef5,1,1,University_of_Cincinatti.xml -8a596b813df7ce8c33efa16d18d91bbd0ec416a1eed9449c8187f41ccc242431,1,1,University-of-Colorado-at-Boulder.xml -c180c9b02a3fc20586c9b646d7217a7d27007df08254c1aec12f792f83cc6569,1,1,University-of-Copenhagen.xml -78459abf4fca8eba076caae9a1eec8c69a7dcb3ff335fa617a4f3411685bd7d4,1,1,University-of-Delaware.xml -3db9fdfeb7ea839f98cd484b4d7ac9890773e0b3d2ec1cecc044bf6dc41a8971,1,1,University_of_Derby-problematic.xml -17c4e3c658e8a6d4d64c2233f55627ebd82eddb7a5a6bd31f2c90145c3f9eabd,1,1,University_of_Derby.xml -a51b15e6ba94249ba53093ba41ced19ef790ba037bd92e71576e8a8398db2a22,1,1,University-of-Florida-expired.xml -04a7e6fd8cb3f35e53a258ff9ef6364156096f79f89a6bbfc3ab4a562c7cabae,1,1,University_of_Greifswald.xml -43ad4ec0941692425b76936f5d10f1e866849052ac5f6b537d796e4beb0b3bdb,1,1,University_of_Grenada.xml -db69925bc2eb62735adff90b14eaf945fa56f9f313eaefc8f4d27a30a7fd8df3,1,1,University-of-Groningen.xml -54816021249161dd67c1e063f262f60bdb650932a82e351028717bb50347c9a9,1,1,University-of-Helsinki.xml -1d9da1c02f10316311989f868fb5a6a1aadd7e986a2e9eed25b4d061627c492b,1,1,University-of-Hertfordshire.xml -c8da597720ec141e733b1dad570bf5587010db8b282e0f449875362c65df49db,1,1,University_of_Houston.xml -062884b217ba4a8d2326c18aa1a0a0b0865e1377f0ff6c881132865954637fac,1,1,University_of_Iowa.xml -1e9f55961a9708a664657c0dfa52f8426814f47dd8af42905723d10febad072b,1,1,University-of-Kansas.xml -cbeda63cbc139d567c3968e82e57cdfa0f4ada356e844f2e9c96793eed1d7665,1,1,University_of_Leicester.xml -3fb888e05ab2904735bac34b2a01c4f80092692bc035c4198dd12055f53cb817,1,1,University_of_Louisville.xml -adcd6b4e4238c31cb1aaa26858199ac594e5a86f0942ca6a5ee61db6e6459b31,1,1,University_of_Maine_System-problematic.xml -bffcbe68aafccead956b6c6632afd2de03feeb9c08d6b468ddca372bb77abe38,1,1,University_of_Maine_System.xml -188dc9a1b3ed74bd2d05b0a9ef3f1250a5c254e1ce47b3bf0edfe3943f86474c,1,1,University_of_Maine.xml -e1515eab7c49ca3ee3c60e48cd94dce063981c37da4ae5b5b5f70229365249db,1,1,University_of_Manchester.xml -282a927d11cd7284496dbcfdbbaab6628590d5c0076ca3677fbfccc593e94c25,1,1,University-of-Manitoba.xml -033af737a386c53101ce7eda7c9485fd16692f519463718fbbdc9d9aab30b7b2,1,1,University-of-Mary-Washington-blogs.xml -f58b433f4cfeece965b936a374305eea421345d5421367b6eba13d63aad4ea3b,1,1,University-of-Mary-Washington.xml -79e68a132d21fc63a39fa0e52124ac62a6639bfde3878c306e63b33a79dc6746,1,1,University-of-Massachusetts-Amherst.xml -4aaec39edb7f8416d433168e2dfb23f4f6cd3cc546d9f369c89735aca50401bf,1,1,University-of-Minho-mismatches.xml -f593cb0581c01e5ce42694956e88944412789b720c6a8921184183c3522ec110,1,1,University_of_North_Carolina_at_Greensboro.xml -c2f53734fbb96b512f068f719a8a3ef75bfd817273ee5b6f47ad97d34e28ac19,1,1,University-of-North-Texas.xml -d509521a3c1738dc49e0a3ce7c886a42703544a89019b1c8b37bd10e0a4e5662,1,1,University_of_Passau.xml -7611ad10b797bdca195db4227d555d26e83df42183ef7e4acb1a3b6fcb13ffbe,1,1,University-of-Pennsylvania.xml -484808a58abb59322bc7b7356e703f9a5e15ccd8114d038d439e39d2a356986a,1,1,University_of_Pittsburgh.xml -dc443d39e01f7635cf22f8d4edda565e1daeedb580a030233902044c2d3eef46,1,1,University_of_Reading.xml -5b27e3b98b43a7f49b1d48c729c9e1ce0d96eafe1d633f559a3993e3cd8b2965,1,1,University_of_Rostock.xml -0648b0c97e477a8d31382762ca0078c0446f2ad73b1ea5cf16c72e5a3c2776f2,1,1,University_of_Salford.xml -e16b2f56e67e983265a1d3364f7c68cffaddbc9b8866d4c28730496858f721be,1,1,University_of_Saskatchewan.xml -a2c417f59890cee4ef34f1988379f010489bb2aecea4acec123336e98d409172,1,1,University_of_Sheffield.xml -bd3ccc8ab1c564a3b2535d901a7d4bc3a520fff58ba351e9b13fc4f730554473,1,1,University-of-South-Florida-mismatches.xml -0ab02841a6ead3924af19e98e079cc70a542e0c5c2b22a652846babbc9126383,1,1,University-of-Strasbourg.xml -15a0a423022f67dc61d0566c74e5c9ac88a9550bdc0b76f0af473ff839ba9b34,1,1,University_of_Tampa.xml -4c6267c6639a521458fabda5c8f898538eaa71c28568ec95ed36f825c8997636,1,1,University_of_Tennessee_Knoxville.xml -8dd3fe0367f6eca6fb2f7323bd4298e08b7dea54b2217889d02a1dedefd011a1,1,1,University_of_Tennessee_System.xml -db0928eec5b4a635be138187bc8de4356c5e0761ff8288d4c2cbf8354df1200c,1,1,University-of-Texas-at-Austin-mismatches.xml -10d70e41de6b86de0f74a181e80aad6bc7aeed8479f7754e0f403f9b156d6768,1,1,University-of-Texas-at-Austin.xml -2d7e488b3e4a90a34b5f5181e6268c777769b5f52d9bb2ee98586ee0619106b2,1,1,University-of-Texas-at-Dallas.xml -71d54122dedd8ad1d74e9ef5180aedf5e6cb470fc77ea84f6b5a61f095665b44,1,1,University-of-Texas-Southwestern-Medical-Center.xml -bd8ac3d00a5c2dad7c95051d88787288e4da87f7060a07667fd02ad3e657f482,1,1,University_of_Toronto-problematic.xml -322408b567a94f9851873cc21f1a44703dc8c15136d9d50f383797a4f1909d27,1,1,University_of_Toronto.xml -e8406f8f24da4bf5cb79f30f872b92a8507cca22c78138142cdb2e706b032caf,1,1,University_of_Tuebingen-problematic.xml -30da65cf0fab77298ff7de648a318a979257d48dddf7e1e388cd1a330dd3c84b,1,1,University_of_Tuebingen.xml -5271bdc47d196a50d523472c3ba3697315cc4c4b479292a05633ea7220861395,1,1,University-of-Virginia.xml -198c5dec1681d6a96631c4837d7c4147cc55b6badbbcaed552084cc795fae55c,1,1,University_of_Waikato.xml -02408ea5408aaa7adf7869ff7c78bac86d09985ee8a0213155a69b386037fe25,1,1,University_of_Warwick.xml -22d64ac86c0f98e08e70eb1cff742fb838bc5e9a3553286f149a4572e433af33,1,1,University-of-Waterloo.xml -6f17648651a53054dbd930f8895bfdf3f4ae7e2f0e2af21d1fc43050c021ddf6,1,1,University-Southern-Indiana.xml -6d3ec302fd6822f515d5cd489c4c5cea3f6da3e437e4d5760b30558c0e9fb055,1,1,Univie.ac.at.xml -187c1e105e934ff0a29bb9c458fdd622e27178e97e11d2d4d7ae9566342284c9,1,1,Uni-Wuerzburg.de.xml -4f67e8e759cc42d720be78fd43a371f8dc9b31e1cfc85c6fda9868ab6420819e,1,1,UNM.edu-falsemixed.xml -b06cabbae0f74749486d8544b4d72fed988b03e0e75b52db4090e6419fa5b4d5,1,1,UNM.edu-problematic.xml -fd1cb2c416147864863495c30b4145bfc3f79cf52df275cd0c7557bd26e2d441,1,1,UN_Multimedia.org.xml -78883fd089717176950d088e72542402b9e44a55a6019bc7ed8149ef3253cf76,1,1,UNM.xml -585574c84903b25c25dc8e125b8221e69f1bfb10b063bd5cc76ee06fc20391f6,1,1,UnoEuro.com.xml -8b36ed5e4f3113f750b1ff0929bd2c08f4bede76606e629e394abaea7bf4d265,1,1,Unvanquished.net.xml -d417d78e437661c9259bfbe32547faaaf287ae000924de8748d7eb9be3b679b4,1,1,UOregon.xml -c12c309d1b0cf8f166a0c040ac5f5a40df3c5e1cf3b7a962fd3959a5ad90667d,1,1,Upgraded_Self.com.xml -1e7afb2d07a0fe5df0bcd6714c690bc64c65aba0a312c0f229d7bc2fd91eb702,1,1,Upic.me.xml -5248afd06254f022a94110b273176aee2b5ae9a80d7c603f7dc24f0b8e22cf6b,1,1,UploadHero.co.xml -4f02141c44e00551ece66a3cb097ac41ee5ddf2dc4df5176681014d69b83ef58,1,1,UProxy.org.xml -9c264b2a6f22195adff5c429d17aa0750ec67d21388859850639f00178bc673e,1,1,UpsideOut.com.xml -d3e479ef9630aac9aec35c14a8096015fc3e647819741c43cc11e1d2f1c3f478,1,1,Upstart.xml -1b3b0accece6234eefb92d4632d6d10abf6df83bf13b92c30ba732540a087bc1,1,1,Uptilo.xml -bdeccb5439569dfb30d3419f30713105d8f43cb69e613df0318f1a205d53d69b,1,1,Upton-Home-Hardware.xml -7a8af06077ef6a8685b605edd0960eb6918591aeed504b275f00a52b17ce8743,1,1,Upxth.com.xml -82d9a9e33fdc00692b3f32910877b27fce81ce6acc6b01ae16e21dd70a29af12,1,1,UrbanTerror.info.xml -57f2860ce1374a9f5feb638d8902886355c00a1668d5fddca59dcfd0f3dea7d0,1,1,urlaubspiraten.xml -907266beed4a1d669f500978ddd09c3766b1680e654181dad0525c38e5cbea78,1,1,URLParser.com.xml -65f1af8190e5b6b0e551adbee8fc3f6e7b08cc59654af80adf50a3560b95f691,1,1,USA_Today.com-problematic.xml -33ab26a088d63978966e38721dd24779df0e72a6fa927c56b1ef9c8fe606849b,1,1,USBank.xml -7b056903a4f7fcdc8d3d1ed3a57395ada26cfa168d1a9e54829caa29df18a670,1,1,USB.org.xml -0119c6af7375f199b2abe6be9120a24e34e92f152065cca868f1bf2423f9b0bc,1,1,US_Citizenship_and_Immigration_Services.xml -0c69356202bfd59745aa70de4633d7f8d9718fc6d322676b6c8c068cf038b799,1,1,USConstitution.net.xml -647434d2e73a8e2487a70f4119136be4b5b89886e76e40454907674bddd27130,1,1,Usenet.nl.xml -fe3dbcd407ea68cdd5dedbdd3984e837ee314ebb182c63546a5f8440c79783fa,1,1,UsenetServer.xml -e8405ab7de7e35328c149fde0221a4b584545b98daf10f5cfb5f971a53459403,1,1,USENIX.xml -37253ac964c42bb2b910621759ce273f910ae0f63f7497db27d5c900555d2a54,1,1,User-agents.org.xml -572e6c6c3fe2566a715dec30b294a7f34c2e2a9d54a5102f280d5e7b640288c3,1,1,User_Local.xml -8b9757d610171917073c32268fe0d7bc7631fcd4761316ed92b54dfd74745172,1,1,USF_CA.edu.xml -48ad8cd93202fe28275cd8b6df90d8d4bb6def9f9b9dc6c574516f1aef0cc1d0,1,1,US_Fish_and_Wildlife_Service.xml -95ef65e8f7f8431c9ae9dd2559d1b8c7885adcd11940c6f0136c7b1c83660bc2,1,1,USFreeads.xml -b186df0f5584c2e279db42af76fb59a4d5655e32ca346df697bfcbba1365e42f,1,1,US_Geological_Survey.xml -fb0543be7bbed10f3ee569bc1f42827f5f0c49f20ff00c4564f8c28bcc727913,1,1,US-Immigration-and-Customs-Enforcement.xml -c31698af63e6f00a03efa46bd1bf18ecb7a0ed5599f9f45d65bed5a2567da7a9,1,1,Us_Magazine.com.xml -c8e513f4668cac58cc32012969a4c4fc5570d22e71627d5c1c6c79c9ada2630b,1,1,US-military.xml -f2618d5b46589e1746a59effbf739199baa32d0664a676bcfc167b580f51633e,1,1,US_Nautic.xml -e5a66a4db279b54c7b8f1bd34feaf846d3c41601602418d1c50feba18ac5c4eb,1,1,USNI.org-problematic.xml -676d7b6466eddd7c4b84147c9035810f041067ca01a8014b6213dbc78b23b864,1,1,USNI.org.xml -7117752a2c7d1607ec5f301ee4727caa857502b7e5f40939a9a34aaa2698a7d8,1,1,US_Patent_and_Trademark_Office.xml -9d520a1203c22dbdf80ac93b50a27e29dcfe41ac276cf4c24653b145620aaf1c,1,1,USPS.xml -0c995f91a2f5c4b80c5a029d10c140f33235d7fa96a7728b3cf011165cf8cf24,1,1,UsrJoy.xml -7c6d86624be6982826202f069e40c5a9c7992de1a1f5fb59172b7b189de759a0,1,1,USRowing.xml -af769ee2e06cb74111c1fc51eb34f926c292cf8de5362b21e76ddb26c2bc17be,1,1,USTC.edu.cn.xml -e0196dc5cfda4c44d00ccc948be4625928702a756f853982d6f30cea49c299ee,1,1,Us_Weekly_subscriptions.com.xml -c12f57ee9044d65366775dc6721e2c7b74f6bcb0bcb014d9bf167a1f656d1fdb,1,1,UT_Dallas.edu-problematic.xml -737b235408a8cec2956ac513e3fb5555052b8998d8d48a1ffa90f230bcee8e64,1,1,Utica.xml -d5b4cf9fb6fae2daa9efbf026fe5c5a8bdfbcde4406ce27bc333ccd1a1d64c87,1,1,U-Tokyo.ac.jp-problematic.xml -9930b44adf309fe470f7236b05c0214ffa54b766b220153cc20c6efbc73bad04,1,1,U-Tokyo.ac.jp.xml -7e3668c85a13398c1e069e3af4a15b183ea5e25893919d05c9db98c7cdf76bed,1,1,UTSanDiego.com.xml -ff2aed5082fa7812f6c0249393b7ef2d75b9b97fff27ee0f75315c7a458a7adb,1,1,UTwente.nl.xml -64e8196b342796d56261c72b9f1bdd3490a6e752cbae1d28121a7c94681f4569,1,1,UU.nl.xml -ca9050e78347c6536655c413199565617815b1041ffd409a5a7b80c35a34e6a4,1,1,UvA.nl.xml -99a979f836e3af45cbded60128ef9c83ca449dcd3ac13695cd75390c1748877a,1,1,UvCDN.com.xml -fe5d16ef6cbe84e3d548ff490cc33a18e29fc54aab9808654bd8fc214838ec70,1,1,UVic.ca.xml -0c8e6b3534cb476f07b87f282cef2ac6b42a3faed84185a85603d04c6631ff8e,1,1,UWinnipeg.ca.xml -028839a97af7c9fab87ab0d04ad22a5b1c97cfeac28db5e1c420d0aefe23b836,1,1,V2-Cigs.xml -9e79e53b9d27933407e25b6ae48564d41c019cf08df1fd18b7c1ac3ef857efcf,1,1,V3.co.uk.xml -d3f445382899ca09c99404bce4c0dc739768f0dc907d78284b8034baabde4256,1,1,Vacenza.com.xml -cfdc69c8d2f893965541cb488516d85a43ee5b586763e49a22328f70b5dca311,1,1,ValueClick-mismatches.xml -d070a6afe739d131285eb87df1c11305e469cd1a3d8bfe9a57e223b4b76b9830,1,1,Valued_Opinions.xml -57e3d391af0a452203d3ecc61596bfd92ad9a04b5f89b85f645f0bac6b297e1a,1,1,ValueShop.co.uk.xml -7bc889588443078f59821e9233c63c1334358fef4969ad55f578fe0809548e27,1,1,Vanilla-Forums.xml -da89ead0e8afcea7e556ba9fde19acac45ca48879a014a6b54b50ac2e86a8c18,1,1,Vanity-Fair.xml -5ad397f55a8e0bdec78bf70f8a3c0184e206ad83e62fa8ed8835baf4ad281aca,1,1,Van_Lanschot.nl.xml -0d05cf52b8b2685ec31f83ba210241ceed8895f3dfc366219b780176f1ddb51c,1,1,Vantiv.com.xml -541f99103984b2d16a34d46579e10aabe0ea10f4d140bfe8366add23b98d39e4,1,1,Vara.nl.xml -9b71ab6abe5802fb80f50cbfa9f44e41447ff19cd5acc611b5e951a99164dacc,1,1,Vayabe.com.xml -3245df25fb7f2b5a07f1885682e18b5c92d8f9512d1500cfb30c49b351418d20,1,1,VBSEO.xml -be315490f478856932d6d7e0dcc69137ae0a39411a18ede9e9b96119cb4b591a,1,1,VCE.com.xml -0437b4009022008b56e58c10d08f7ace43d83d3ca946e7592c55962e70a8d941,1,1,Vcommerce.xml -7013a986d2b386bc532e54fc8a3cc4d981931449b27ba61247ab2267595ab8c5,1,1,Vector-Media-Group.xml -25f9fb9ad931eb2633dbf62a790dbef671003bedf05ce0c67a776b430eff60e3,1,1,VehBidz.xml -71ab1eaae071232931026236f2e378b2fb4e7744fda9ad00003ff6ee47017d9f,1,1,Vehicle_Visuals.com.xml -c27f0cfa9d553de3e65fa2f7249aa87b923ea51d078f6604d02e00930928bfcf,1,1,Ve_Interactive.xml -358164f69f597f1ac0aaebda50580f85175c1db354c27cb7564df50c0457936d,1,1,Velleman-Group.xml -1a36f007f5be12089abe81f6a3f5c8963497f8d467f45b9cf126c514fd3c330f,1,1,Velmedia.net.xml -a427f72656e431e2490d3f7d6c75c98fca88e65d581ee3eefa32a25d413833c7,1,1,Velocity-Micro.xml -d7d49d47fe10386c6886db6cb4b3ef8167c923100033c5cafdd8078dc36e1eeb,1,1,Velox-Project.eu.xml -861008dc67204d83a6834d4044ed097df201351924b424cff5de57bd7575ea8d,1,1,Velvet_Cache.org.xml -8a03a027332baa510ab34ad84bb478216914e3e9e5a1e9e27adf59066244fa13,1,1,Vendetta-Online.xml -03142920bcbd18f915c755c8a6feb9026a44156731240b30534a05b95fa051c5,1,1,Venuscafem.com.xml -2c6ef10eb55db8e24789d312206e9912c7ef86db24585146659860398002b639,1,1,Verbraucher-Sicher-Online.xml -6dcce26da889c8a152970f62daa73d12b350cdc9940a7df4a7afdf7f73808d3a,1,1,Verdad_Media.xml -7b7004dcf8d84b7a7ef44d36414c33acb0e1ac086403281109c4ff97d4850107,1,1,Verified-Voting.xml -8ed22adeec50f1fd7448178c5673fead3b1df2ade9cea67abeb94564458a23ff,1,1,Verio.xml -4ba3afa6e1e3e9f6e447986b6da4ce1ae8ffcba7c34c6bcf25e7b9ada2396f48,1,1,Verivox.xml -a321163ecff3304c427ebd7c7e1bf7ea5e0cd763fd1a90ce92f5a09cf236c2ea,1,1,Verizon_Enterprise.xml -c203bd812b538ac7a93a711f6fc1ee663f78ccb6320db05cbcde811059abd45c,1,1,Verizon_Wireless.xml -c65278023bd1f6123bfc745293cbb617d465d1c1b71cdd7dd42b4f24cac0902b,1,1,Verkkomaksut.fi.xml -eecd0f86d3976af4bc45b163839875219eae631d4620da357e43ff7e62f9a8bf,1,1,Verkkouutiset.fi.xml -4122e228e8eb3814c3c4c1e02f099ce2aa5378ab3c036f9b0431d8abdbffe311,1,1,Versus-Technologies.xml -0b2034c782d1f7de7c5c6e8416834dd312d437a0aa984e67fb21399667ebdee8,1,1,Vertical_Response.com.xml -373e633a706c18a309999d521e63dd1ab92ffad5f1b2e6dffefbd4a62c4d5ab6,1,1,Vertical-Web-Media.xml -510de6d9c80e98bdfe15c990ae2f2a6cec05fc2b609101c5740b2bc344397152,1,1,Vertriebsassistent.de.xml -ae28164dd1c1af35be6f2422f4be8ed06762efb8a7e2ccca996f19a4c60aed9d,1,1,Veruta.com.xml -6fa862bd3df1c4317ddb7f6f765d2699237286cb0e8b3531086a7454b6a97334,1,1,v.gd.xml -7d34ebc18adbf3f1ad42d59b4611c9cdcaeb5072d9e3a6260733b18241438227,1,1,ViaMichelin.com.xml -e99551855f8ef5ad0f4f728e46fb5a4503349c443b6a065609328d7c06fd1cbc,1,1,Vianet-Group.xml -975e1809dd41f8816f8802f79a9768f7ed1a5a754b9f49b83db9cdc66ee0b636,1,1,Vichan.net.xml -f3815e08088545447609c202403cc423f67885387fa9bc503aff7792e87f1156,1,1,Vidarholen.net.xml -49337b9ff4af1c53f5837dc436d4f0ae9cae829c0683776836f6d85371376ecc,1,1,Vida_y_Salud.com.xml -98d484b39ac65fedf05aec8133c4cb2bfab0d3ef7aca0961db8e8b3d9e92d9b3,1,1,Viddler.com-mismatches.xml -b9a96bb1e88431f6f508e49e1d99303ad56fb2e9beae2b798f019de7ad65239b,1,1,Viddler.com.xml -51616e7bef8350473371ac6f33e60927fda23f5a6fa68a76e52ff124aa74e96e,1,1,Video_Aided_Instruction.xml -eb34c8200f181b33896dc0505a73648eb61692cff8c8b4a6d6db5bb9c4b88e70,1,1,Video_Interchange.xml -2639ce1da9c9d0ce487df98d01e9e103f32f9adc5d04af04969d5359f3a9aff5,1,1,Vid.ly.xml -df92a6c088421e80ef1512cc4e07a73d50fb36826406200f4e0a156ea08164bb,1,1,Vidplay.net.xml -2a88d6ede0612b9738f6c40819e7de2a2513c5f569ddf8f0f5931419868f7e8b,1,1,Vienna_University_of_Technology.xml -a056324144989801c9652d991916ee80ee666b2958a768567d8d3f911fbff926,1,1,View_Central.com.xml -c572b631c3f5006b46894f8e6d02226f96e63c39882a2e31b793b190ae17b07d,1,1,VikingVPN.com.xml -6c277f1037e46a2a059a8225c98a2f813e5230cc48477cc5b2a1d345db77eb27,1,1,Vindico.com.xml -18f68240c337af3d25a31fdd762e61ce4f5ccbc38e704cbfcd8979340f0c58a9,1,1,Violet_Indigo.xml -c65c279bfb304e80050f2d823e3c75e5dfcfb8e91f4c6d14ef3ae8c6dfcd6a39,1,1,Vippy.co.xml -248224aa6eae82843e074512ebf52e4bb7134b14410768fdfff5cfc3c684e52e,1,1,VIPserv.org.xml -ba2110c8479f41bafaa987c96e313d2a36236847dc7524ae40f8eedaae8aea68,1,1,VirginAustralia.xml -69dcf2c50d5fdf2da320096a756fae2655272dcf566c387f1f494bcf9569868d,1,1,Virginia-Mason-Hospital.xml -3394197694c1715f80869710a1c19eff5ce7c4089de2805df3633db94ec23f8f,1,1,VirginMobile.xml -3d01d5a53f3e1e8077b0062f55b9431b2d3639128902e2c355a60e78395cb7d4,1,1,Virool.com.xml -bc1d0e1ac25152fdb895b677051cc2016b51bb3ae676da0f5543f3f6ec13f0f0,1,1,Virtual-Privacy-Office.xml -f684638888b331ae7388ef7261ca4558d1cfa293cb6df9c0dc71b4dcbd3ccb98,1,1,VirtualTourist.xml -fb197d01a624c439a7398370623d75cc17a09b9d588146e730a9b68eb14fed89,1,1,Visa_Buxx.com.xml -dbe019114063e2c60b5b435f84d09fec9eaa2780607cf1e0f36a339e7cfbb414,1,1,VisaHQ.xml -64e823b83cab4914e4e1c9da47f565ad861233091b293f0296a71b8ac7c2d98c,1,1,Visalia_Times-Delta.xml -bfbf5bb3ba5a0109b83aeaeeb253024d75278ba85e0da3dd1b36c1f0f597e231,1,1,VisibleGains.com.xml -2bec628efc102efc2825893a3f92ca575a26973904c89a73868defae85303139,1,1,Vision_Art_Forum.com.xml -001cc8e606c1c655ae640884f9229e7aef96ac5e70c0632f15d55fef59299230,1,1,VisiStat.com.xml -b79f622abeb5a8754d580adbf3606aa28a8691e24b777bfddef95be0ed06bde7,1,1,Visitestonia.com.xml -22a722ad1e155e3bee71bdb1b9a3ae90235e9687c48bd387489dfb3ecb58bc8f,1,1,visitsealife.com.xml -3e2928ef78292707c878d9f864868e03bcc28d1a69d5c4edebb850c2546e3215,1,1,Visual_Revenue.xml -ccc799669c043b4198369f6cdd6451b9a5ecaccbac2c9091e0c72e771704a9d8,1,1,VisualWebsiteOptimizer.xml -17f1c78d50c87022ca1f5898c00fb9e43c7c14237916d34135694a41f7906c2a,1,1,Vital_Gamers.com.xml -75241e3d48e2578f64e46c1f39f4f412ddc4842f0990303c345b99085c18e16d,1,1,VitalMend.com.xml -e8b46e57d859720a333bde3f21e0e4e36f8cb867c6686a4362c23ea4406ce6eb,1,1,Vitalwerks.xml -1a4329d51b72f9ccf5f12e8c839f4dc9f744fa6a15dbf4a9fa183b2de95d4410,1,1,Vitamin_Shoppe.xml -d45794896d8a0a78aef58cfc4b01a5c2030eb58633da1aae431eea7f145952ad,1,1,Vitamin-T.xml -c7fe14132600137e25551eade640c862a7eb7574a1a999a51c64c9498652fb1e,1,1,Vivaciti.xml -def6557f41d619f8602d97c4fce68e182ccb0c83481d6fecb7a2a42730640906,1,1,VK.se.xml -d8652363747589e0cc4a5b880150b22dee3297bb2f869e7b29a63460845fa6ed,1,1,Vliegtickets.nl.xml -1fa630cccafd786ecec6669937d11dedc007911df222fd8e245f9bd7b93222c7,1,1,Vmail.me.xml -1fbd0ddcea01b9288b9e8463e41972935388ea7e301ff2e33dfe5b229ef3ba2e,1,1,Vogel.de.xml -b57f712da21a239ab07a27e64c8e97d9ee36d49aecaf162a4ad764ea8dde3e5a,1,1,VoiceFive.xml -636420e195fd3296d6a0fbf1aa2af10402c50fd22d6c5070e95b87aa62784f08,1,1,Voices.com.xml -841889f12703bd847b243292a8f2aa1ef455a4317c78c3af96dd2217967bb17f,1,1,Volatile_Systems.com-problematic.xml -8c298e82b231dac99b9949b4779af82417767b90058a219ed6f7697ee5533907,1,1,VolcanoEcigs.xml -6579a09fbc23ca93ce9956cd0c8c250f5a007a687a836e4a0b62a919c5744eb7,1,1,Volgistics.xml -371824af717de2b303cf2bb11abeb2f875647d007f8c185a6eade9d8b7f129a5,1,1,VolkswagenBank.xml -60dbeac15d3d6eda2af921da74fad8574b00638eb24d625c3a0102116e59a2ce,1,1,Volotea.com.xml -26d45e71e55a0f19a90163b240a658d92fd4763f71c0543b938ac9e49610c13f,1,1,Volunteer2.xml -799b335fc4486d44b5a2aca9e49c56ab08b59d481ad628d2e35031e3aa35c563,1,1,Volunteer_Centers_of_Michigan.xml -a3272a5c7db777b4e3636ee2b04c43aba5c642ba0b35cc2c00a1855240c9b475,1,1,Volusion.xml -e8ab747c2c48c350e01e548b2347aa6d96d2c6f4ffad2547a20af7f69075ff8c,1,1,Vonage.xml -82f403ce2aa0ef95af059c8f8c1fb6356d899cc3d1fb8f945c92a4876b4be4f6,1,1,Voodoo.com.xml -7129083c35b220f8c87e647b840d570ff45f6f4cfc4bf36a727f72d6192415e2,1,1,Vook.com.xml -50f1a4dc0fb4ebd0a152119dfdf31ac848783e94ced289464b00bfbfdca55419,1,1,VoterVOICE.xml -ca470e7596c8feb533e58b1c2eb4feb9cb94d6706c6a12418cb21def6948c628,1,1,Voxel.xml -9fce590c2181d4d42d766e871b4888dd8a9d495dfc4af419c061990f7e973570,1,1,Voxer.xml -e998bdf0acc2e85e361467e08c679d67e9e2aff0ed75a5e6ecfd5cffd77e1bc0,1,1,Voxility.com.xml -fbb2fcfdc39c784e914f554977d3a26db00fa1e6ff968ba934d080098cee8295,1,1,Vpnbook.com.xml -5c2cdab9ad0027eae3e6ed5e3a3d7d86a452c9b88943141dc80f2318aef7ce43,1,1,VSCo.co.xml -3543ad7fed39e1c7d9c1b73cf31abdf033da4b81176b2e6065249b4b1c7f7d19,1,1,Vsexshop.ru.xml -702dcdfd0555f771183b4881039deb392716e34e15d5bb1eed7f4242d5867ec4,1,1,VTLUUG.org.xml -6ab17f304050bf833d996cd4dfaca231efc3e2425ded3fa81a2f7d1e0a988593,1,1,Vueling.xml -43471ca065dd71d70737df3a6ece1cef751fa1e46b1aabae2b6c729e08e06cfd,1,1,Vulture.com.xml -5e6ee0075ce408d3737133ae80b81cb99ae90f227f711824fcec6178247a60ff,1,1,Vungle.com-falsemixed.xml -712e9c11fa537727065fc17317b376dbff0841191976892fbf193cb53956d898,1,1,Vungle.xml -a740d751de414ca9746ad168a3208f9bdf7ab89f35c8b27290a8bab7ef9e95c4,1,1,VVCap.xml -fa9a39660d76b6fd8ba5715b15f43fd9fb1a2ef4be04d03a2fb98d7f7654b0ed,1,1,Waeckerlin.org.xml -686d52b9e887359a9fb2a3f6eede8bd81fbbba5a1b3d89935e85c4350883fca0,1,1,Wagner.xml -27404357c723335a40fff088677c65479e073c10b4998506d2e74387d370b113,1,1,Waitrose.com.xml -ba1593452425105c70c808ddffae73fc41bfc86e0709d962e65157bd81608498,1,1,Waitrose_Direct.com.xml -683d274e1fa8a18fd73448d94c4477050828c653cbf8c5196bf212046bcb6943,1,1,Walder_Wyss.com.xml -1e725fb2b88399ecd5321418db119a913147f532bac20834f9c5380fe6b3d230,1,1,Walgreens.xml -934aea98a94884c94202660e696cd7be14d2e0ee87a4d378c05d87d485c9c0e0,1,1,Walking_Men.xml -593b8eb403b46e710688974d10de665206d53938c348afc7db0e562c8ad62660,1,1,walkit.xml -6b8c83cba8a36e2354b5a4801c30eeee36f87f9315edfef1b0a3eeb968a99057,1,1,Wanikani.com.xml -30c1aefedf43c09d94978750bb47fbcd58852e9a878b1e78f4f3a6b30e218f9c,1,1,WaPo_Labs.com.xml -7c94dfabc1a022237d22c9a38e763f561592b7553acecd8b5aafe7717e3a7669,1,1,WAPY.xml -490f37f964fb9bd7058bb7e2f52ac06bbd076a10428097654ea263efca37f629,1,1,Warner-Artists.xml -1e26f33749735e34741aeb8c24b83694092d38f61bd183b7b901cbc4b7aa8385,1,1,Washington-Post-Company-mismatches.xml -07db83787e56296f9eaecf07ae9972ee07243c128be8e26abb915ec71d04b7c4,1,1,Washington_Times.xml -b52e61298887f1a7e837d0cc6e48edd14de0d6ed0983477debb5020ce32c646a,1,1,Water-Challenge.com.xml -855ec707726db8e3579c25eaede7119ebd757579fe32a139ab7bfd60818a0380,1,1,Water.org.xml -345b6b2fae63c61a265a9f34a768f81133caa068af17f61b0a82066f02da1777,1,1,Watsi.org.xml -31d375edfd1c6bf8a8a474c2db46a2be77bdde99afa71d9e35351c8dad3d250f,1,1,watson.ch.xml -23f434ff5a7809ed8d594dd950cc7c6c1277c7b8d314949f66e10fb649c5f838,1,1,Watson_Institute.org.xml -52d9cdba31649b9d41912d38370925a9e4c794f6728f436279628fa9246facf6,1,1,Wazapp.xml -8954a5cd02839b895cde3ae87c731740846a111c75d864693176965b124b60e0,1,1,WD2go.com.xml -3666082fafc12b33eaf9ce626f9f90c8a9a240fe12c4e0d04d8b70deaf6abdc5,1,1,WDWS.xml -0b818b88c798284cf79298c509cb9c22b7bfbbb1a9a2f8168214c272781633f2,1,1,Weather_Decision_Technologies.xml -87ab309e0c850f1c2e13b04ecaecfafbd1a36a3bed68c65848916a856165906e,1,1,Weather-Underground.xml -8adf76997622bf023f5962d510eed3723a9fd06e573f76f63de6c7d90759475d,1,1,Weatherzone.xml -a1fef0b287c76d55ec644db79cff8dc7f0548e9eb22a70fc9e8c50384f14601f,1,1,Web4U.xml -6a724458c5e87ecd10c347e083283ca4e52829c337b4b153587cc9459055d16f,1,1,WebChuck_hosting.com.xml -a61f202a3ef00452fb06e39f68788f888fad2ee6e1ea19398cb2132b39dfb9ce,1,1,Web.com-expired.xml -1f124c0174f3ec545cf9745d886d8afabf1f7ea30cc6b74e8914525ada69f777,1,1,Web.com.xml -43ee8656c3c9a8dc1b81d85e29e08c8e63aa584449617f3e4fd44b47c689b988,1,1,Webcontrolcenter.com.xml -f225dba1046880c1a5c8af9b187020345a85b45515f5f1e7e7bf7be3d01a68fb,1,1,WebD.AM.xml -44bb3cb56e4d73ae697da7361be57250c02840cb72c424687a14e9f5b7ee91b2,1,1,WebEx-Communications.xml -6a538f0a54a9035c42c0001fe6b4ab4b4a3e3dbd50bbf064c68a170312d1fdd3,1,1,WebFaction.xml -bdde16c1c519df9ea53f215bc429af7b428aaff03d0cae4ca6a889538f72115b,1,1,Web_Forest.eu.xml -fc71172664deeeb68fb069bdce8f2233940622bdcfef90376ca16599366e5742,1,1,Webglobe.sk.xml -ae2bd71a4770853110661947b509383266595ac5f97812c8c508b52fd8d25436,1,1,Web_Hosting_Geeks.com.xml -bc92646bf8aa3728d12304c9eb2881dd885c1d16ba9a282d5062fd72f61162d1,1,1,Web_Hosting_Pad.xml -8e1b8e2644fbc5ea473acc74abe12256d8d73f48272ea58a092eedbb55c64e21,1,1,WebhostOne.xml -44fe73be51a061f9dcf30e620cf15781f1877f196f976c601a1127fb9910f942,1,1,WebKite.com.xml -5476efa330deb653c29a6a507a11c146301f583daad0a8346c880b96673b27af,1,1,Webmagazin.de.xml -bfe2947fa6ab729061147e9434ba6180a107604fb21bea83859f881216c556c4,1,1,WebMD_Health_Services.xml -f6ed6586e201c975e17b11fa03740c7c62396674f98f8658941c55f3f50acd1e,1,1,WebMD_Health.xml -3a027fcaefdfe8d30b38cac405d2ea12596fb81d20d332625986ede4abdc5cfd,1,1,WebMD.xml -886c705a0f37bd5c15f25de8e488c192ec8dbc40e69a6e0233b324882e338a68,1,1,WebMediaBrands.xml -f1edbaf6bedf99890c4874b611f74c7c52cc13f881604fbf47512278b22235a6,1,1,Web_of_Knowledge.xml -b4d326aa97154c16f32e9f4d0153706b2d86e02d1582b93ed46bbfc4b9a6652c,1,1,WebProspector.xml -2d8f080362c974c4499bea98f697b453570605594629a18c507e4220b0bb3c1d,1,1,Webroot.com.xml -dbcc578640c655bb0c695ed4716f13a9fe86cc90b044caff1a3ea7ed0dd7dbbf,1,1,Webropolsurveys.com.xml -6b9beff410e23f4a51edf8752eb83a964188180f19f31aeeb94b6a2ac5e985b7,1,1,Web-servers.com.au.xml -2a440880c552f3116b2f466d4e831d12c295b8cd8defcb4a42e56324cc839936,1,1,Webshopapp.com.xml -9555dd551da9c352bd8fecb285654af767f26c8b4af8d374c21b3633a4f25990,1,1,WebShopRevolution.com.xml -468aeb536e3361358da17effce6b01df3368bb7525a2887d525090baaf76fab6,1,1,Website-start.de.xml -0f41d0c349d361784937ddd7bf8606350f90f334333ec012d1aa71ffce930c40,1,1,WebSocial.ly.xml -8099e76e7198496cd1570b4476ea4a7c3a76fc0848410bdc511be3aefa499652,1,1,Webspace4All.xml -2493d70899767787da29629a688d99fdfbe49ff0256bbc83358728c79a5bb267,1,1,Webspace4Clans.de.xml -39473a2d6d9c9c2de2c83463787611072e5f3d043021edbf4d60641a6800390d,1,1,WebSpectator.com.xml -823ec8b7eadf76010137d26fb1947ef171d76fd906ab726890646c2c0f138884,1,1,WebStarts.xml -cacf30b765ad68c61fa84ffd3e6db0c636f668d9254c900bbcb46de15d6e21ae,1,1,Webstat.com.xml -e0962fe4bfd0ae833241c4bc9a66106920ceb9e8756cc70167e591707bf39775,1,1,Web-Stat.net.xml -5bbe4e365d12acf73e96699ac1d7fadae0ef55153d67bfacfc7481b1267aec9e,1,1,Webstaurant_Store.xml -3d80a69e9d91fc2f37c66f7889675712cb9888dacab9283f99f727033181f32a,1,1,WebtraffIQ.com.xml -3b00d11eb23e281b78d953139aa17e5cda9e6e581be328d2f477795bbd85582c,1,1,Webtranslateit.xml -7b39cdcde2f5b3492cb97b2c0f9131fd5f70139f0ce9724681623b7f1f786dae,1,1,WebUrbanist.com.xml -d3ce5b87b54791930512239e2328a832323382afa3b6f66e5a582c27a88a1195,1,1,Weebly-mixed.xml -f8e61725427773d2593ff7caf9726e4e3186a7a73adab8ff08fd4e0e02324329,1,1,Weebly.xml -65a0ce89b2f1964c575bffe5d6ca3a30ecf2894750d3bc0c31bb05f1e3d18fad,1,1,Wego_Health.com-problematic.xml -29eb9657fea20dc5f577d13d5acbbb7f9ef20b298e94d0ecf1714ed3e141f8bf,1,1,Weiss-Research.xml -8edb6acdbf3d70453a1082ad9cbb2b3301dd7a4a0e8aeb391fe10aaee498545e,1,1,Weizmann-Institute-of-Science.xml -28a3153777a4465a34523baf6cca4b3b128b2f4b5e41ae3e502f47db6ad8a805,1,1,Welcome_to_MetLife.com.xml -4fe00738b542c69a9923db22bb7ebc5d36cfcc2f631bde052ee7cb21a53a90bf,1,1,Welk.sc.xml -6e90b49d94584b698d1c6a53efdfb2f63739904fb2d406e6318533c232823a5a,1,1,Wemfbox.ch.xml -0ed29acd687b02e649ba4e94cdf7aa43f7cb401efc0eda560c4c73f576b48fee,1,1,Wennect.info.xml -863ca2c23195638957abed44866a0d0a2288512394b486c1a44bda2cd1f6ef7c,1,1,Weoinvoice.xml -3653a4785c28b361d04ce12c88e0811350bd50b94e6a361494f64761aad5efe6,1,1,WePay.xml -8ef5a712c94fcf3c7c94ecf7ac46a0865b9cc73306d6f0791f6075a592a5da1f,1,1,Westconsin_Credit_Union.xml -7ab5d760eb782800a94d7868d79b6f3c7f5621b0aeb88c7e5a8553b7db109471,1,1,WestJet.xml -c9e8757fbe8c74765a9334c95a9cd4758a5cf180a7fd92db9e43a92fd6c4de8d,1,1,Westlotto.xml -7c46e3c1ed2a02cc97133e546feb32b729001242e893e3345ccdefd7db720c57,1,1,West_Orange_History.xml -b617c85528b3d3989ded1be986dca3091341ed0bb5c9d0e0464ecabace1c8005,1,1,Westpac.xml -4db4898402f91818bd0be4b49ceb3f4dc465bde9a2357852c6f47dac0cf178e3,1,1,West_Virginia_University-problematic.xml -f6818c41df99bdc8cb6885f67c27d91672a516cc1a15610b5c301a9d6ac62bbd,1,1,Wg_cdn.net.xml -a8ee7b73785bf6447ac322a7af90fba115d2e75bd6a0ef6e7a90e387727b3035,1,1,Whamcat.xml -a28a585d7b9d470aae714bbab4d6db93a53fdbf9fa5ec02a494ce7ecb9b0197b,1,1,Whatbox.ca.xml -d669b7329d3d77ae1b7ea27a18d05c702e30146dd819f21fd6385c13fe879390,1,1,Where_2_Get_It.xml -d7537f7e21858dae64562a4f7e64eb14ad7608c4cd25e133a867f51bfd3a0ac9,1,1,Which.xml -50c7f973e9fcfc2ac8b4f4e7a496a4219b21d97805a22d7fa46f978271a45de5,1,1,WhippleHill.xml -4e1e48a6d64b79dbafb4bc50032a7e7cd1d71d8782f4c67baa2c1000f2ad0a54,1,1,Whisper-Gifts.xml -4f5ca320bbee41a9b26543376d73f95f336f581b1e708aa98f016c32e00bc612,1,1,WhisperSystems.xml -c32187f4d33f7c02a21def4fdf0c920c1578752a3f19948cb78d5fc5ca1a14f4,1,1,WhistleOut.xml -77afcd6e8f15f2b6ade0164b29785cfcd7f94fe60ca8526ad54e24268e01a7b3,1,1,WhiteFence.com.xml -29211dc5f2d57c9bc61b7b06716d49200976da7aa5bdd47278557c373dce7f6b,1,1,White_Hot_Hair.co.uk.xml -ec1f9a810ffe14b674903c235952fd9df05dfb0d65b4120bd101b10e33862711,1,1,WHMS-FM.xml -ed22ad03a82abe2247c198290494e6b90c1b93eefa050d66ed0b5e1759fa27db,1,1,WHO.int.xml -de49320aa2a935c29d7f90ff0f792ec51a875b448e3cb6828b33c0f37027bf78,1,1,Whole_Earth_Lectronic_Link.xml -ce809b7bfb8a875feace606a959feb0c461732114e07338c99e258968c591b4a,1,1,Wholesale_Labels.com.xml -d9034aab04f71748343ef98905f96b528b647451b70b14bcf7dc231bf451602c,1,1,WhosOn.com.xml -902704e9faef436127566d05680cb008bee54cbb8d1bbd14382154c336382fb9,1,1,WHYY.org.xml -9dc479dc18e0eb1e379022fb5341f3d5b115a5d36a53603d4e1a47b4638337ed,1,1,Wi-Fi-Alliance.xml -f729f548f5b615c59e1684ebddcdb157490f9fceb69776e2b7356ec2b0da2c63,1,1,WifiLib.xml -5cb01803034a302feddb724d1de7010b34fa9800c902750a827d09992bf86d43,1,1,Wiggle.xml -6d09f53a2d1c0ba515496d45f907daa8e923bb5a88d623f8aca624f730c36df0,1,1,Wikidot.xml -c1856a2322d96ad7886aac15a5b3208374cf14605bcde5e575b29a58e3c378dc,1,1,WikiFur.xml -2541dcd6eda31e31ce13c1920fd68cf8783342522e058badeb92b6f9f55df103,1,1,WikiHow.com.xml -e3a093ce87716f8d3b10dbdc15939ba803775ad5b74b16c9909cdaa555e6a2dc,1,1,Wikinvest.xml -991032b4bf2e8bb26a7ba5c74594c44c83cae224aba49e6eb5633315a687cd09,1,1,Wikispooks.xml -6b389a045eb70ccb96292b8dccc757b0b6b580dc6f25217f64a96b4e0de100f2,1,1,Wild_Apricot.org.xml -d187d195f19f1a7dada62814e39d29abe09a3656fd55acd1ef8aa235c07c030e,1,1,Wiley.xml -823c9bbe863794ade57f6cbf53ccde300deaff8dd3750ccb4d8871c8378f1043,1,1,Willamette_Week.xml -202a31b211e1fa86534fdfafd80c26659137ecbd6d339ad48afffa62caef66f2,1,1,WIMM.com.xml -3ce142deff512761b20f1763091c30db82f829e2fed0cf0536788da292634d20,1,1,WiMP_Music.com.xml -931fd9f2377241adfee3e58c78f49ec2ad57465bfa00392aceb03934d02043c0,1,1,Wincent.com.xml -0685ef4a293e73be70fafc4c148235057f90b2c647810ed1dc0edea3d04051b7,1,1,Windows_IT_Pro.xml -2a13f6f7f6baa4dfa85c46ddb205c5b4dd5c9f20b736d016668dcc4c9caa7414,1,1,Windows_Secrets.com.xml -c67337bfabda36b7b539abd15c565dd410a20d741dfc2f8eaf379b3038019fa7,1,1,Windstream_Communications.xml -cbab69014af2a02afb1bbfea64dd5b7ffb8e8759be2095d6e47579ede6041c96,1,1,WineAustraliaCorporation.xml -32f6f0cc30b35c8976e18ca4ddcce03605753a93b528a5c2a1ca2d30a472d5b3,1,1,Wingolog.org.xml -4d0fb71c488ef77a627fec50cb67c5cd70738d0c2b044599b6b84891bd76c692,1,1,Winner.com.xml -b859ff3f78e0cc95b3eaf81ec38153ffd631b75974902b50e181c2b9a73b08f5,1,1,WinSuperSite.com.xml -c1c7f49a35350cb90d0466108c70cd666bc3293098d9d93f78684da124db3bf8,1,1,WinZip.com-falsemixed.xml -5c7c1decb343a51e56b6509b45f8a1cbfd832ba22565e9203fbafd50ffa58aac,1,1,WiredMinds.xml -0812bcf9185f25ab18b3a7f034f332203cdd4f3de385ab2b5e2737e83e9d969c,1,1,Wishabi.xml -83ef353b9aab96e56973c3d8150c1f1e3b6cff4f68cad34cd754f3e2de999108,1,1,WiTopia.net.xml -107b0e53285b3cd5b876c03108d666cba1dfac53af5a62e0190c990cb08c4cc8,1,1,Wizard-Internet-Services.xml -e1440a89fa9e0be3d51832b2c2d6f5f63d7edcbc30ef786a77bca5c8d9c7e4bb,1,1,Wolframcloud.com.xml -9cfc632cb53d9f01e6d82e0f36008181b0a4010ba453d154c20629bf9964832f,1,1,Wolfram.com.xml -0cdeda075ec86185a82f7295b2817efa71aa18eb67c704df7e29c145318b5dde,1,1,Wolframscience.com.xml -02290f07cc4fab72ff6be5e738f5ead266654d8507cdb24c77cbb60529116410,1,1,Womenonwaves.org.xml -e237009069a1f7e25b8d4d83fb77aa2f273405abbeafa0f3d9f70110cc08c309,1,1,Womens_Health_Specialists.xml -f7999de568e74fdd703ef7c2aaa057ce2dc1a418d112ea5cc64aa6d29e57915f,1,1,Wonderlandmovies.xml -ee52c9fa0be9872c91d3c34a94fa2d3854fee6f71bda81fd10048f76b3b09615,1,1,Wonga.com.xml -072d4bc8ac964f1db9fc4b3d1113dbe48d854b975c89839f3d5395226fee2b33,1,1,Woobox.com.xml -ff4541825f047117ea740aace764bdbde39b51a83d23cdb600daeea7bbcd7acc,1,1,Wood_Green.org.uk.xml -01357c1a2236bf8664e3b8a3ed041831b4058127f0131bb71a33838848aeaf63,1,1,Wood_Green_Shop.org.uk.xml -d02bc8e6c4c0698add8f02b5c424af3519429f251ccbb2f0c8ec34adf2b08ed4,1,1,Wooga.xml -c00e56730c604c17025ac110b17cdf3ac1d3dba70afe9ca8a838d029a0553288,1,1,Worcester-Polytechnic-Institute.xml -1351c796282373c4a1beba3a91c865b02dd2eaf726604288521e93305137d326,1,1,Word_Pro.xml -078235defd32e86110f2907ad23d7587ac05fc64016db23653018aa86af59233,1,1,World_e-ID_Congress.xml -dd94cdda2877f852dadfc3a6f2a4d2ef0a464b068a74f6e897a3ab1a15f3865a,1,1,WorldMate.com.xml -ee8ad00200a94e47b5c9f1552f83a87c7322a0632d7c29ec2c6cdf42edad6475,1,1,WorldOfGames.xml -dbda330e4caa67d758154022997e53b4fc985b67bb4f195ea78944180eb1bed9,1,1,World_of_Warplanes.xml -30c2627506a04262f9e4d9a447114867fb2e55cab0d03a39f3c870ef324ae9bb,1,1,World_Precision_Instruments.xml -229f57810d6333fe8c71989bcc5f5a53950f0fe8234f8b36dbe6a8d71e938292,1,1,WorldRemit.com.xml -7d767b7fdebe50158bc48e64f5ba12b728876f3ef525c3048ea8ab811b80ba4f,1,1,World_Television.xml -e0b584247d7bae9d8332d457b80a3346d4c0ba9f3e442f97e63a6babb5e899dd,1,1,WorstPills.org.xml -3884709a465acf843b034d3c12f5031d4a86abca8044646e927d9da251e074f6,1,1,WOW_Analytics.co.uk.xml -6479d0541a2cb611727c935bf92355b2c00abd550ad9ff5b50208e47c77e6f35,1,1,wpa_supplicant.xml -b47cc604491e9ea5abf27d66cf994aa808b9d54f3fd47c3ceb552ebe91e60d84,1,1,WP_digital.net.xml -16e03a1c61e3be578ff57280c8acf813f845bdd1cd5416bd6d98754595377d0c,1,1,Wpmudev.org.xml -454645b9e37c7aa47eb7330777befbe0d483f3f3b6c4c97d8d14507a7709a406,1,1,WP.pl-problematic.xml -33bc269186d151c347c4f00a203fe49573bc7cdde3759cccaea2d68e9d78b148,1,1,WP_VulnDB.com.xml -c50baba02efe0851746b13be4652c164eff3a697417dfbeaf2bc377333074e7e,1,1,Wrapadviser.co.uk.xml -c13a1b0870d49c1ec9086c32a1e255f4e75a49b90a0031a5cc206a30c31de5af,1,1,Writelatex.com.xml -b4ec6518bb54a6735c38a417b5f75bedeafbcdc73af0a31b33d3b9dbd84f99e0,1,1,Wservices.ch.xml -839e3b1b48265738219453a6d10596ac6fb455ae2eb1694461875764dbfd67e6,1,1,WSO2.com.xml -1ed6357a0bb2153b9502ce2da5335e3d0d33a158a40570fc7bd40b6da0e54c5d,1,1,Wtop.com.xml -eb7eeb399b4e0c642845db2bc3bdab2f34788f095716e2624ac5685af5bf71d9,1,1,Wuala.xml -07be9292aa9ca08d70d90978165e5cb8b2c05989adefb5415f8f42b8a93bf799,1,1,Wush.Net.xml -35b9f9fea8edf91132dec2e801b084b173a58c519fba894e5968418d6e35fbab,1,1,WyzAnt.xml -1c84c0dd4bb4e7fa73acb226531ebe3b49147e20552a8806d9a1e4f9b62b61d6,1,1,Xeno_Gamers.org.xml -26ceb3ed2032542f2075db396734c4cb25ae58347dc7c780364bb100d198c2fd,1,1,Xetum.com.xml -156219abcab5a2f7d540931ee48a5dfd590aacd92c99cf3170ac9e983f4d8451,1,1,Xg4ken.com.xml -645bbf60775e6f22ed51012989302f79d66c599b6b17871b883e33861f497a4d,1,1,Xing.xml -b925930748b05e603d05bbad9b35c9ada0a990bfe8e44c680ef5838f5f56de9b,1,1,Xperia_Studio.xml -474e956565b679981cf77e3809ab6090ad9bf48d08a1fe7d7ee23a649148b88c,1,1,Xserver.xml -c3b7364fc8fc89d5336f32aa6707c94f727abe4f7ea809a785263b41e1d5d7a3,1,1,Xtendmedia.com.xml -e77d44925373ab7fc4744dae5d3f9c240e80b1499b102f134f47bd73cc65ed6c,1,1,Xtenit.xml -865e124974a5ed1ac17305e1531e0446666126bae44b3191daaee78b21df4587,1,1,yadg.cc.xml -877bfd008b92154e0bf7b5147d1f41fec35b98f8035ccb91b263c2bf12d4b06f,1,1,Yahoo.net.xml -dd940fc9be867b71d3b8d7a2dc9b59bb350421836e8f445cd36a471a0592dba6,1,1,Yahoo.xml -0ae6d35db343a943f6c54011416bbe796435a13c894b5a719d1adc0dd29666e4,1,1,Yandex.st.xml -4a8a859f2bf60badb5d1f2363d4fb0c501ec63d8a5d11838e142afe913408375,1,1,Yandex.xml -28a370e112f80d74aa3bfd8e462ad2d09cea7042d7acbcd02b884ce87e236485,1,1,Yard_Digital.com.xml -4684c5eb2b3e908ba1df47e631a05893af0eede30bc216a2b8dea46d2a78d509,1,1,YellowPages.ca-problematic.xml -e0aa84f8ba58a339cabda74594b507c6427a9856a57b1ee3232c7f38ab80751a,1,1,Yimg.com.xml -033bde8d86b20991608db24d1854b95a54fcc5d4b072c26a0c3e78877283ac43,1,1,YMCMB_Official_Merch.xml -e0e4f7684c12fe25d34855d2767e08ed7bda64933f68aaaad8011ad1adb7db31,1,1,Yocto_Project.org.xml -e30ef33bc99dda8ab603adee29b3d8e5c06a4f03e54ca5945c4756191fea41b2,1,1,Yottaa.net.xml -f4db2125b4fc951f0971e8aa055a6b211e5099c191befe5855d63ca4a48095aa,1,1,Yottaa.xml -05499c6ac75a23be8dedec97f6de344fe3f4ae8814d5c9cfa658b52d55eab758,1,1,Younited.com.xml -cfbde187e30d48e3cba35b483b695821fb55f832be575ab8ac58a5c061fcaefa,1,1,Yourfone.de.xml -0794924b6f68f0ef610f69bf5504a0d42ae70164eabf893ba329236fe3418bb7,1,1,Your-Freedom.xml -dcd06936ab812439a23831bbac58eda799f6e1a5ef5831b7a771d352ced9dca1,1,1,Yourhosting.xml -e4a36edbbdd36347a6b77d38c67c1d62bc9a7b8a6ebfe10296ad53c148c33647,1,1,Your-Mailing-List-Provider.xml -46693f8dbe253c6d81054dc8364bc5ed76e7bb23cf67693ba1784dbb87eb6bea,1,1,Your_Support_Services.co.uk.xml -ccf17e77a962a90d0134a342bbf02a2c48fceaa22672205030959e5eabbb54d1,1,1,YouVersion.xml -e00e5d9fc4fe720adbeb30a8beada5e4f8828e8f52f7fdf1d823069c3a7045a8,1,1,YP_bot.net.xml -da23893ad1085a663c483066192fb377681b2da58672faf6140b5e253641a45c,1,1,Yuku.xml -95c9dd36a1b9d28f39272c9da9349eed53f7a3b8a1504e8f6729f67a0ab2a03a,1,1,yWorks.com.xml -888ff125026e53553f9582f1f91112d5582cc1a8d8f6556521e3b9c6c68241a3,1,1,Zacks_Investment_Research.xml -dafaa75542876c11f864cee777e3c27eca10e0a06a329e87dbc1a245eb195877,1,1,Zagony.ru.xml -58d2ae044a28eabd58e291233ae948d32e97c42c8cf892aeb2deefe4b4e2a21d,1,1,Zappos.xml -f2259f9e04795b50d29c0020d8584709289d8be4127d3d160eea3b249e99e245,1,1,Zapunited.xml -c0820cbcb72943041388c9a1a009cfa8e64ee75bf037119f17e563ffe055ada2,1,1,Zeit.de.xml -972b3ee4c16a24aab20cca8dfa8399b9353b8a2e5ae04388a24ea4398a10aa9d,1,1,Zendesk.com-clients.xml -14a4b7c2808bc29665d1c1404f61bf63acf95b06b804fe7cee5a32ecf92d9414,1,1,ZeroC.com.xml -54a3a4d4ac3a332b6443f6bbcfb86b516f0cd9e8a489ebf187db3fafdd14f2fa,1,1,Zero_Day_Initiative.com.xml -9d13ce5123fd2e0f6361fd6ec8468d20c3ed1673aed1fb49f460a07ad31b1a47,1,1,Zerve.xml -d4d130ec1722ad45b9e5a1a8333eb19808d9670167bab5a87363514eeccbfae6,1,1,Ziff-Davis-mismatches.xml -79057e37af586028932d412ea020851a94189c112d4a48c9a07152fd46dd2cd2,1,1,Zimbra.xml -72c538d7bfc9f5e1041e8340ec37c2119821476ee68acc5270f0a761e78dc890,1,1,Zlavadna.sk.xml -1bd3ea0ac5d7e83747e15c8f53558ec863a930f53467de80e6fb2c8318ccbf51,1,1,Zlavy.odpadnes.sk.xml -9cd38fa17f1cd6833d79cf92cd572c624c70f933e6fc881e52c92f486137b270,1,1,Zocalopublicsquare.xml -7d7463a33fdaba258112f9c43d1c0d97a10a6c01f40c86cfaefa89127bdc0a71,1,1,Zopa.xml -0a43f73ea001dcef9e970232e3d8d3123f0a4eb163e1d69b23498bff60a735c9,1,1,Zopim.xml -6750e29d302751af08e3cbe82647eb8a652fba4be1efbed4bb63473ec6ed40c2,1,1,Zorpia.xml -07f333e0409ae4f5f9e2d09d26835d0a47da5bf52c535038344c40b71dbad8b0,0,1,Tahina.priv.at.xml diff --git a/utils/ruleset_filenames_validate.py b/utils/ruleset_filenames_validate.py deleted file mode 100755 index 0f288e3a126e..000000000000 --- a/utils/ruleset_filenames_validate.py +++ /dev/null @@ -1,40 +0,0 @@ -#!/usr/bin/env python2.7 -# -# Validates and provides a generator for ruleset filenames -# - -import glob -import os -import re -import sys - -import collections - -def validate_filenames(): - # Sort filenames so output is deterministic. - filenames = sorted(glob.glob('src/chrome/content/rules/*')) - - counted_lowercase_names = collections.Counter([name.lower() for name in filenames]) - most_common_entry = counted_lowercase_names.most_common(1)[0] - if most_common_entry[1] > 1: - dupe_filename = re.compile(re.escape(most_common_entry[0]), re.IGNORECASE) - print("%s failed case-insensitivity testing." % filter(dupe_filename.match, filenames)) - print("Rules exist with identical case-insensitive names, which breaks some filesystems.") - sys.exit(1) - - for fi in filenames: - basename = fi.split(os.path.sep)[-1] - if basename == '00README' or basename == 'make-trivial-rule' or basename == 'default.rulesets': - continue - - if " " in fi: - print("%s failed validity: Rule filenames cannot contain spaces" % (fi)) - sys.exit(1) - if not fi.endswith('.xml'): - print("%s failed validity: Rule filenames must end in .xml" % (fi)) - sys.exit(1) - - yield fi - -if __name__ == "__main__": - [ fi for fi in validate_filenames() ] diff --git a/utils/setversion.py b/utils/setversion.py index 3ddf806e4d46..2ade838ac523 100755 --- a/utils/setversion.py +++ b/utils/setversion.py @@ -1,31 +1,16 @@ -#!/usr/bin/env python2.7 +#!/usr/bin/env python3 from datetime import date import json -import re -import sys + # Set the version in manifest.json to one based on today's date. -# Set the version in install.rdf and about.xul to one specified on the command -# line. t = date.today() +version = repr(t.year) +'.'+ repr(t.month) +'.'+ repr(t.day) + f = open('chromium/manifest.json') manifest = json.loads(f.read()) f.close() -manifest['version'] = `t.year` +'.'+ `t.month` +'.'+ `t.day` +manifest['version'] = version f = open('chromium/manifest.json','w') f.write(json.dumps(manifest,indent=4,sort_keys=True,separators=(',', ': '))) - -def replace_in_file(from_re, to, filename): - contents = open(filename).read() - with open(filename, 'w') as outfile: - outfile.write(re.sub(from_re, to, contents)) - -firefox_version = sys.argv[1] -replace_in_file('.*', - '' + firefox_version + '', - 'src/install.rdf') - -replace_in_file('(?s)(https-everywhere.about.version.*?', - '\g<1>' + firefox_version + '', - 'src/chrome/content/about.xul') diff --git a/utils/sign-bloom/add_timestamp.py b/utils/sign-bloom/add_timestamp.py new file mode 100755 index 000000000000..1a45eeaab142 --- /dev/null +++ b/utils/sign-bloom/add_timestamp.py @@ -0,0 +1,21 @@ +#!/bin/env python3 +import json +import sys + +def usage_and_exit(): + print("Usage: " + sys.argv[0] + " TIMESTAMP") + sys.exit(1) + +if len(sys.argv) != 2: + usage_and_exit() + +try: + timestamp = int(sys.argv[1]) +except: + usage_and_exit() + + +for line in sys.stdin: + json_line = json.loads(line) + json_line['timestamp'] = timestamp + print(json.dumps(json_line)) diff --git a/utils/sign-bloom/async-airgap.sh b/utils/sign-bloom/async-airgap.sh new file mode 120000 index 000000000000..70899e99e837 --- /dev/null +++ b/utils/sign-bloom/async-airgap.sh @@ -0,0 +1 @@ +../sign-rulesets/async-airgap.sh \ No newline at end of file diff --git a/utils/sign-bloom/async-request.sh b/utils/sign-bloom/async-request.sh new file mode 100755 index 000000000000..201ec13bee15 --- /dev/null +++ b/utils/sign-bloom/async-request.sh @@ -0,0 +1,30 @@ +#!/bin/bash +# Used to sign bloom filters created with https://crates.io/crates/create-bloom-filter + +set -e + +if [ $# -ne 3 ]; then + echo "Usage: $0 bloom_file public_key_file output_path" + exit +fi + + +SIGNED_SHA256SUM_BASE64=`mktemp /tmp/bloom-signature.sha256.base64.XXXXXXXX` +trap 'rm $SIGNED_SHA256SUM_BASE64' EXIT + +mkdir -p $3 +TIMESTAMP=`date +%s` +cp $1 $3/bloom.$TIMESTAMP.bin +cat $1.json | $(dirname $0)/add_timestamp.py $TIMESTAMP > $3/bloom-metadata.$TIMESTAMP.json + +echo 'Hash for signing: ' +sha256sum $3/bloom-metadata.$TIMESTAMP.json | cut -f1 -d' ' +echo metahash for confirmation only $(sha256sum $3/bloom-metadata.$TIMESTAMP.json | cut -f1 -d' ' | tr -d '\n' | sha256sum | cut -c1-6) ... + +echo 'Paste in the data from the QR code, then type Ctrl-D:' +cat | tr -d '\n' > $SIGNED_SHA256SUM_BASE64 + +base64 -d $SIGNED_SHA256SUM_BASE64 > $3/bloom-signature.$TIMESTAMP.sha256 +openssl dgst -sha256 -sigopt rsa_padding_mode:pss -sigopt rsa_pss_saltlen:32 -verify $2 -signature $3/bloom-signature.$TIMESTAMP.sha256 $3/bloom-metadata.$TIMESTAMP.json + +echo $TIMESTAMP > $3/latest-bloom-timestamp diff --git a/utils/sign-bloom/ddgse b/utils/sign-bloom/ddgse new file mode 100644 index 000000000000..3b7927ec5c38 Binary files /dev/null and b/utils/sign-bloom/ddgse differ diff --git a/utils/sign-bloom/ddgse.json b/utils/sign-bloom/ddgse.json new file mode 100644 index 000000000000..1d490c6e64ee --- /dev/null +++ b/utils/sign-bloom/ddgse.json @@ -0,0 +1 @@ +{"bitmap_bits":11364392,"k_num":24,"sha256sum":"371bfb628062de163947c1226d99a5f3823e6fe1bc0838d24e0deffad1c96ee2","sip_keys":[["4746789603923246281","9835731802354323261"],["11277193235900924841","7296056854142719726"]]} \ No newline at end of file diff --git a/utils/sign-bloom/standalone.sh b/utils/sign-bloom/standalone.sh new file mode 100755 index 000000000000..a4c614071ed2 --- /dev/null +++ b/utils/sign-bloom/standalone.sh @@ -0,0 +1,19 @@ +#!/bin/bash +# Used to sign bloom filters created with https://crates.io/crates/create-bloom-filter + +set -e + +if [ $# -ne 3 ]; then + echo "Usage: $0 bloom_file private_key_file output_path" + exit +fi + + +mkdir -p $3 +TIMESTAMP=`date +%s` +cp $1 $3/bloom.$TIMESTAMP.bin +cat $1.json | $(dirname $0)/add_timestamp.py $TIMESTAMP > $3/bloom-metadata.$TIMESTAMP.json + +openssl dgst -sha256 -sigopt rsa_padding_mode:pss -sigopt rsa_pss_saltlen:32 -sign $2 -out $3/bloom-signature.$TIMESTAMP.sha256 $3/bloom-metadata.$TIMESTAMP.json + +echo $TIMESTAMP > $3/latest-bloom-timestamp diff --git a/utils/sign-rulesets/async-airgap.sh b/utils/sign-rulesets/async-airgap.sh new file mode 100755 index 000000000000..41ec90876c2e --- /dev/null +++ b/utils/sign-rulesets/async-airgap.sh @@ -0,0 +1,23 @@ +#!/bin/bash + +set -e + +if [ $# -ne 2 ]; then + echo "Usage: $0 private_key_file sha256_hash" + exit +fi + + +echo metahash for confirmation only $(echo -n $2 | sha256sum | cut -c1-6) ... +read -p "(press enter to continue)" + +SIGNED_SHA256SUM=`mktemp /tmp/signature.sha256.XXXXXXXX` +trap 'rm $SIGNED_SHA256SUM' EXIT +SIGNED_SHA256SUM_BASE64_QR=`mktemp /tmp/signature.sha256.base64.XXXXXXXX.png` +trap 'rm $SIGNED_SHA256SUM_BASE64_QR' EXIT + +echo $2 | xxd -r -p | openssl pkeyutl -sign -inkey $1 -pkeyopt digest:sha256 -pkeyopt rsa_padding_mode:pss -pkeyopt rsa_pss_saltlen:32 -out $SIGNED_SHA256SUM + +cat $SIGNED_SHA256SUM | base64 +cat $SIGNED_SHA256SUM | base64 | qrencode -o $SIGNED_SHA256SUM_BASE64_QR +eog $SIGNED_SHA256SUM_BASE64_QR 2>/dev/null diff --git a/utils/sign-rulesets/async-request.sh b/utils/sign-rulesets/async-request.sh new file mode 100755 index 000000000000..e63571da3469 --- /dev/null +++ b/utils/sign-rulesets/async-request.sh @@ -0,0 +1,31 @@ +#!/bin/bash + +set -e + +if [ $# -ne 2 ]; then + echo "Usage: $0 public_key_file output_path" + exit +fi + + +RULESETS_FILE=rules/default.rulesets + +SIGNED_SHA256SUM_BASE64=`mktemp /tmp/ruleset-signature.sha256.base64.XXXXXXXX` +trap 'rm $SIGNED_SHA256SUM_BASE64' EXIT + +mkdir -p $2 +TIMESTAMP=`date +%s` +REFERENCE=`git rev-parse HEAD` +echo "{ \"timestamp\": $TIMESTAMP, \"reference\": \"$REFERENCE\", \"rulesets\":" "`cat $RULESETS_FILE`" "}" | tr -d '\n' | gzip -nc > $2/default.rulesets.$TIMESTAMP.gz + +echo 'Hash for signing: ' +sha256sum $2/default.rulesets.$TIMESTAMP.gz | cut -f1 -d' ' +echo metahash for confirmation only $(sha256sum $2/default.rulesets.$TIMESTAMP.gz | cut -f1 -d' ' | tr -d '\n' | sha256sum | cut -c1-6) ... + +echo 'Paste in the data from the QR code, then type Ctrl-D:' +cat | tr -d '\n' > $SIGNED_SHA256SUM_BASE64 + +base64 -d $SIGNED_SHA256SUM_BASE64 > $2/rulesets-signature.$TIMESTAMP.sha256 +openssl dgst -sha256 -sigopt rsa_padding_mode:pss -sigopt rsa_pss_saltlen:32 -verify $1 -signature $2/rulesets-signature.$TIMESTAMP.sha256 $2/default.rulesets.$TIMESTAMP.gz + +echo $TIMESTAMP > $2/latest-rulesets-timestamp diff --git a/utils/sign-rulesets/standalone.sh b/utils/sign-rulesets/standalone.sh new file mode 100755 index 000000000000..97e835dfb2a4 --- /dev/null +++ b/utils/sign-rulesets/standalone.sh @@ -0,0 +1,20 @@ +#!/bin/bash + +set -e + +if [ $# -ne 2 ]; then + echo "Usage: $0 private_key_file output_path" + exit +fi + + +RULESETS_FILE=rules/default.rulesets + +mkdir -p $2 +TIMESTAMP=`date +%s` +REFERENCE=`git rev-parse HEAD` +echo "{ \"timestamp\": $TIMESTAMP, \"reference\": \"$REFERENCE\", \"rulesets\":" "`cat $RULESETS_FILE`" "}" | tr -d '\n' | gzip -nc > $2/default.rulesets.$TIMESTAMP.gz + +openssl dgst -sha256 -sigopt rsa_padding_mode:pss -sigopt rsa_pss_saltlen:32 -sign $1 -out $2/rulesets-signature.$TIMESTAMP.sha256 $2/default.rulesets.$TIMESTAMP.gz + +echo $TIMESTAMP > $2/latest-rulesets-timestamp diff --git a/utils/simple.py b/utils/simple.py deleted file mode 100644 index f5f4ebba647c..000000000000 --- a/utils/simple.py +++ /dev/null @@ -1,57 +0,0 @@ -#!/usr/bin/env python2.7 - -from lxml import etree -import regex - -# XXX: this doesn't work for from patterns that use the ?: in (?:www\.)? -# (one of many examples in Zoosk.com.xml) -# XXX: this doesn't figure out if a target host causes a particular rule -# to be completely inapplicable (in which case it should probably be -# ignored) for determining simplicity -# XXX: this doesn't catch simple rules that use alternation with -# backreferences, like from="^http://(foo|bar)\.example\.com/" -# to="\1.example.com" - -def simple(f): - tree = etree.parse(f) - targets = [target.attrib["host"] for target in tree.xpath("/ruleset/target")] - return all([ - # ruleset must not be default_off - "default_off" not in tree.xpath("/ruleset")[0].attrib, - # ruleset must not contain a match_rule - "match_rule" not in tree.xpath("/ruleset")[0].attrib, - # XXX: maybe also check for platform="mixedcontent" here - # ruleset must not apply any securecookie patterns - not tree.xpath("/ruleset/securecookie"), - # ruleset must not contain any exclusions - not tree.xpath("/ruleset/exclusion"), - # targets must not contain any wildcards - not any("*" in target for target in targets), - # and every rule must itself be simple according to the criteria below - all(simple_rule(rule, targets) for rule in tree.xpath("/ruleset/rule")) - ]) - -def simple_rule(rule, targets): - """Is this rule a simple rule? A simple rule rewrites a single hostname, - perhaps with an optional leading www\., to itself or to itself plus www., - at the top level with no other effects.""" - rule_from = rule.attrib["from"] - rule_to = rule.attrib["to"] - # Simple rule with no capture - if regex.match(r"^\^http://[-A-Za-z0-9.\\]+/$", rule_from): - applicable_host = unescape(regex.search(r"^\^http://([-A-Za-z0-9.\\])+/$", rule_from).groups()[0]) - if regex.match(r"^https://%s/" % applicable_host, rule_to) or regex.match("r^https://%s/" % applicable_host, rule_to): - return True - else: - return False - # Optional www - if regex.match(r"^\^http://\(www\\\.\)\?[-A-Za-z0-9.\\]+/$", rule_from): - applicable_host = unescape(regex.search(r"^\^http://\(www\\\.\)\?([-A-Za-z0-9.\\]+)/$", rule_from).groups()[0]) - if regex.match(r"^https://www\.%s/" % applicable_host, rule_to) or regex.match(r"^https://%s/" % applicable_host, rule_to): - return True - else: - return False - return False - -def unescape(s): - return s.replace(r"\.", ".") diff --git a/utils/single_rule_response.py b/utils/single_rule_response.py deleted file mode 100755 index c98ce7a6a7fc..000000000000 --- a/utils/single_rule_response.py +++ /dev/null @@ -1,113 +0,0 @@ -#!/usr/bin/env python2.7 - -import sys, os, re -from functools import partial - -try: - from lxml import etree -except ImportError: - sys.stderr.write("** Could not import lxml! Rule validation SKIPPED.\n") - sys.stderr.write("** Caution: A resulting build MAY CONTAIN INVALID RULES.\n") - sys.stderr.write("** Please install libxml2 and lxml to permit validation!\n") - sys.exit(0) - -try: - from requests import head - from requests.exceptions import SSLError, ConnectionError, Timeout -except ImportError: - sys.stderr.write("** Could not import requests! Rule validation SKIPPED.\n") - sys.stderr.write("** Caution: A resulting build MAY CONTAIN SITES WHICH DO NOT SUPPORT HTTPS.\n") - sys.stderr.write("** Please install requests to permit validation!\n") - sys.exit(0) - -if not (sys.argv[1:] and sys.argv[2:]): - sys.stderr.write("Usage: %s ruleset report_file\n\n" % sys.argv[0]) - sys.exit(0) - -# Error lists -certificate = [] -timeout = [] -redirect = [] - -ruleset = sys.argv[1] -report_file = sys.argv[2] - -request = partial(head, verify=True, timeout=15.0, - config={'keep_alive': False}) -# 'GET' - method, verify - verify the certificate, timeout - 5.0 seconds - -def test_response_no_redirect(to): - """destination may not support HTTPS.""" - ret = True - try: - response = request(to, allow_redirects=False) - if response.status_code in (300, 301, 302, 307, 308): - find_redirect(to) - ret = False - if response.status_code != 200: - ret = False - del response - except SSLError: - # sys.stdout.write("failure: %s certificate validity check failed.\n" % to) - certificate.append(to) - ret = False - except (ConnectionError, Timeout): - # sys.stdout.write("failure: %s can not be reached.\n" % to) - timeout.append('%s - timeout' % to) - ret = False - except Exception: - ret = False - return ret - - -def find_redirect(to): - """Prints redirects""" - try: - response = request(to, allow_redirects=True) - url_re = re.compile(re.escape(to)) - if response.status_code == 200 and not url_re.match(response.url): - # i.e. it redirected and it didn't redirect from something like: - # https://www.eff.org/ -> https://www.eff.org/index.html - # sys.stdout.write("failure: %s redirects to %s.\n" % (to, response.url)) - redirect.append('%s -> %s' % (to, response.url)) - except SSLError: - redirect.append('%s - ssl_error' % to) - except (ConnectionError, Timeout): - # sys.stdout.write("failure: %s can not be reached to complete a redirect\n" % to) - redirect.append('%s - timeout' % to) - except Exception: - pass - - -failure = 0 -#failed = [] -back_ref = re.compile('\$\d+') - -if __name__ == "__main__": - tree = etree.parse(ruleset) - - seen = [] - for rule in tree.xpath('/ruleset/rule'): - to = rule.get('to') - if back_ref.search(to): - continue - if not test_response_no_redirect(to): - #failed.append(to) - failure = 1 - seen.append(to) - - if failure: - sys.stdout.write("warning: %s failed test: %s\n" % (ruleset, test_response_no_redirect.__doc__)) - with open(report_file, 'a') as fd: - #fd.write('%s: %s\n' % (ruleset, ', '.join(failed))) - if certificate: - fd.write('[%s] Certificate Errors:\n %s\n' % - (ruleset, ', '.join(certificate))) - if redirect: - fd.write('[%s] Redirect Failures:\n %s\n' % - (ruleset, ', '.join(redirect))) - if timeout: - fd.write('[%s] Timeout Failures:\n %s\n' % - (ruleset, ', '.join(timeout))) - - sys.exit(failure) diff --git a/utils/standalone-translations.py b/utils/standalone-translations.py new file mode 100644 index 000000000000..48624c0363c4 --- /dev/null +++ b/utils/standalone-translations.py @@ -0,0 +1,56 @@ +#!/usr/bin/env python3 +""" +Generate a messages.json translations file for HTTPS Everywhere Standalone +""" +import re +import sys +import os +import json + +source_dir = sys.argv[1] +dest_dir = sys.argv[2] + +message_regex = re.compile("") +strings_needed = [ + "about.version", + "about.rulesets_version", + "menu.globalDisable", + "menu.globalEnable", + "menu.encryptAllSitesEligibleOn", + "menu.encryptAllSitesEligibleOff", + "options.enterDisabledSite", + "options.addDisabledSite", + "options.hostNotFormattedCorrectly", + "options.disabledUrlsListed", + "menu.httpNoWhereExplainedBlocked", + "menu.httpNoWhereExplainedAllowed", + "standalone.proxy_server_info_prefix", + "standalone.transparent_true", + "standalone.transparent_false", +] + +def convert(locale): + translation_file = os.path.join(source_dir, locale, "https-everywhere.dtd") + if os.path.isfile(translation_file): + target_messages = {} + with open(translation_file, 'r', encoding='utf-8') as f: + for line in f: + m = message_regex.search(line) + if m: + message_name = m.group(1) + if message_name in strings_needed: + message_value = m.group(2) + message_name = re.sub("[.-]", "_", message_name) + target_messages[message_name] = message_value + return target_messages + else: + return False + +with open(os.path.join(dest_dir, "messages.json"), "w") as out_file: + all_target_messages = {} + for locale in os.listdir(source_dir): + if not "." in locale: + target_messages = convert(locale) + if target_messages: + all_target_messages[locale] = target_messages + out_file.write(json.dumps(all_target_messages, sort_keys=True, indent=4)) diff --git a/utils/test-generator.py b/utils/test-generator.py deleted file mode 100755 index a2d571ae36a1..000000000000 --- a/utils/test-generator.py +++ /dev/null @@ -1,53 +0,0 @@ -#!/usr/bin/python2.7 -""" -Help automate the process of generating test URLs for rulesets. - -Many rulesets have complicated regexes like this: - -^http://s3(?:-website)?(-ap-(?:nor|sou)theast-1|-(?:eu|us)-west-\d|-external-\d|-sa-east-1)?\.amazonaws\.com/ - -Under the new requirements for ruleset coverage testing, we need a test URL that -covers each of these branches. Fortunately, the exrex library can automate -expanding the branches of the regex. This script uses that library to generate a -set of plausible test URLs. NOTE: Usually these test URLs will need manual -verification. Some may not actually exist. Also, if a URL contains a wildcard, -e.g. '.', exrex will attempt to substitute all possible values, creating an -explosion of test URLs. We attempt to detect this by finding regexes that -generate more than a thousand test URLs, and not printing any output for those. -You will have to manually find test cases for URLs with broad wildcards. - -Usage: - -./utils/test-generator.py src/chrome/content/rules/AmazonAWS.xml -# ... Paste output into your ruleset ... -# Then test the ruleset: -python2.7 https-everywhere-checker/src/https_everywhere_checker/check_rules.py \ - https-everywhere-checker/manual.checker.config - src/chrome/content/rules/AmazonAWS.xml -""" - -import exrex -import lxml -from lxml import etree -import sys - -def generate(regex): - i = 0 - urls = [] - for url in exrex.generate(regex): - i += 1 - if i > 1000: - break - urls.append(url) - if i <= 1000: - for url in urls: - print "" % url - -for xmlFname in sys.argv[1:]: - ruleset = etree.parse(file(xmlFname)).getroot() - xpath_from = etree.XPath("/ruleset/rule/@from") - for from_attrib in xpath_from(ruleset): - generate(from_attrib) - xpath_exclusion = etree.XPath("/ruleset/exclusion/@pattern") - for pattern_attrib in xpath_exclusion(ruleset): - generate(pattern_attrib) diff --git a/utils/trivial-response.py b/utils/trivial-response.py deleted file mode 100755 index 1f4b1e6cc9f6..000000000000 --- a/utils/trivial-response.py +++ /dev/null @@ -1,68 +0,0 @@ -#!/usr/bin/env python2.7 - -import sys, os, re, subprocess -from time import sleep - -try: - from lxml import etree -except ImportError: - sys.stderr.write("** Could not import lxml! Rule validation SKIPPED.\n") - sys.stderr.write("** Caution: A resulting build MAY CONTAIN INVALID RULES.\n") - sys.stderr.write("** Please install libxml2 and lxml to permit validation!\n") - sys.exit(0) - -base_dir = os.getcwd() -rule_script = '/'.join([base_dir, 'single_rule_response.py']) -report_file = '/'.join([base_dir, 'response_report.txt']) -rule_file = '/'.join([base_dir, '%s_report.txt']) - -if sys.argv[1:]: - os.chdir(sys.argv[1]) - -failure = 0 -default_off = 0 -procs = [] -files = os.listdir('.') -PARALLELISM = 10 - -with open(report_file, 'w+') as fd: - fd.truncate(0) - -while True: - if files and (len(procs) < PARALLELISM): - fil = files.pop() - if 'mismatches' in fil: - continue - try: - tree = etree.parse(fil) - - if tree.xpath('/ruleset/@default_off'): - default_off += 1 - continue - except Exception as e: - continue - - proc = subprocess.Popen([rule_script, fil, rule_file % - fil[:-4]]) - procs.append((proc, fil[:-4])) - - for (proc, f) in procs: - proc.poll() - print("POLL'D") - if proc.returncode != None: - print("FUCKED") - with open(rule_file % f, 'r') as rule_fd: - with open(report_file, 'a') as report_fd: - print("CONTEXT") - report_fd.writelines(rule_fd) - os.unlink(rule_file % f) - procs.remove((proc, f)) - - if not (files or procs): - break - - sleep(0.75) - -sys.stdout.write("Skipped %d default_off rulesets.\n" % default_off) - -sys.exit(failure) diff --git a/utils/trivial-validate.py b/utils/trivial-validate.py deleted file mode 100755 index 87863896a721..000000000000 --- a/utils/trivial-validate.py +++ /dev/null @@ -1,203 +0,0 @@ -#!/usr/bin/env python2.7 - -import glob -import argparse -import os -import re -import sys - -from lxml import etree -from collections import Counter - -parser = argparse.ArgumentParser( - formatter_class=argparse.RawDescriptionHelpFormatter, - description="Ruleset validation script.") -parser.add_argument('--quiet', action="store_true", - default=False, help="Suppress debug output." - ) - -args = parser.parse_args() - -quiet = args.quiet - -def warn(s): - if not quiet: - sys.stdout.write("warning: %s\n" % s) - -def fail(s): - sys.stdout.write("failure: %s\n" % s) - -# Precompile xpath expressions that get run repeatedly. -xpath_exclusion_pattern = etree.XPath("/ruleset/exclusion/@pattern") -xpath_cookie_host_pattern = etree.XPath("/ruleset/securecookie/@host") -xpath_cookie_name_pattern = etree.XPath("/ruleset/securecookie/@name") - -# Load lists of ruleset names whitelisted for duplicate rules -thispath = os.path.dirname(os.path.realpath(__file__)) -with open(thispath + '/duplicate-whitelist.txt') as duplicate_fh: - duplicate_allowed_list = [x.rstrip('\n') for x in duplicate_fh.readlines()] - -filenames = glob.glob(thispath + '/../src/chrome/content/rules/*') - -def test_bad_regexp(tree, rulename, from_attrib, to): - # Rules with invalid regular expressions. - """The rule contains an invalid extended regular expression.""" - patterns = (from_attrib + xpath_exclusion_pattern(tree) + - xpath_cookie_host_pattern(tree) + xpath_cookie_name_pattern(tree)) - for pat in patterns: - try: - re.compile(pat) - except: - return False - return True - -def unescaped_dot(s): - escaped = False - bracketed = False - for c in s: - if c == "\\": - escaped = not escaped - elif not escaped and c == "[": - bracketed = True - elif not escaped and c == "]": - bracketed = False - elif not escaped and not bracketed and c == ".": - return True - elif not bracketed and c == "/": - break - else: - escaped = False - return False - -def test_unescaped_dots(tree, rulename, from_attrib, to): - # Rules containing unescaped dots outside of brackets and before slash. - # Note: this is meant to require example\.com instead of example.com, - # but it also forbids things like .* which usually ought to be replaced - # with something like ([^/:@\.]+) - """The 'from' rule contains unescaped period in regular expression. Try escaping it with a backslash.""" - for f in from_attrib: - s = re.sub("^\^https?://", "", f) - if unescaped_dot(s): - return False - return True - -def test_unescaped_dots_in_exclusion(tree, rulename, from_attrib, to): - """The 'exclusion' tag contains unescaped period in regular expression. Try escaping it with a backslash.""" - pattern_attrib = etree.XPath("/ruleset/exclusion/@pattern")(tree) - for f in pattern_attrib: - if unescaped_dot(f): - return False - return True - -xpath_rule = etree.XPath("/ruleset/rule") -def test_unencrypted_to(tree, rulename, from_attrib, to): - # Rules that redirect to something other than https or http. - # This used to test for http: but testing for lack of https: will - # catch more kinds of mistakes. - """Rule redirects to something other than https.""" - for rule in xpath_rule(tree): - to = rule.get("to") - if to[:6] != "https:": - return False - return True - -printable_characters = set(map(chr, list(range(32, 127)))) - -def test_non_ascii(tree, rulename, from_attrib, to): - # Rules containing non-printable characters. - """Rule contains non-printable character in 'to' pattern.""" - for t in to: - for c in t: - if c not in printable_characters: - return False - return True - -def is_valid_target_host(host): - # Rules where a target host contains multiple wildcards or a slash. - """The target host must be a hostname, not URL, and must use at most one wildcard.""" - if "/" in host: - return False - if host.count("*") > 1: - return False - return True - -def nomes_all(where=sys.argv[1:]): - """Returns generator to extract all files from a list of files/dirs""" - if not where: where=['.'] - for i in where: - if os.path.isfile(i): - yield i - elif os.path.isdir(i): - for r, d, f in os.walk(i): - for filename in f: - yield os.path.join(r, filename) - -tests = [ - test_bad_regexp, - test_unescaped_dots, - test_unescaped_dots_in_exclusion, - test_unencrypted_to, - test_non_ascii -] - -failure = 0 -seen_file = False - -xpath_ruleset = etree.XPath("/ruleset") -xpath_ruleset_name = etree.XPath("/ruleset/@name") -xpath_ruleset_platform = etree.XPath("/ruleset/@platform") -xpath_host = etree.XPath("/ruleset/target/@host") -xpath_from = etree.XPath("/ruleset/rule/@from") -xpath_to = etree.XPath("/ruleset/rule/@to") - -host_counter = Counter() -for filename in filenames: - xml_parser = etree.XMLParser(remove_blank_text=True) - - basename = filename.split(os.path.sep)[-1] - if basename == '00README' or basename == 'make-trivial-rule' or basename == 'default.rulesets': - continue - - try: - tree = etree.parse(filename, xml_parser) - except Exception as oops: - print("%s failed XML validity: %s\n" % (filename, oops)) - sys.exit(1) - - if not xpath_ruleset(tree): - continue - rn = xpath_ruleset_name(tree)[0] - if not rn: - failure = 1 - fail("unnamed ruleset") - continue - from_attrib = xpath_from(tree) - to = xpath_to(tree) - for test in tests: - if not test(tree, rn, from_attrib=from_attrib, to=to): - failure = 1 - fail("%s failed test: %s" % (filename, test.__doc__)) - - platform_list = xpath_ruleset_platform(tree) - if len(platform_list) == 0: - platform = '' - else: - platform = platform_list[0] - - targets = xpath_host(tree) - for target in targets: - host_counter.update([(target, platform)]) - - -for (host, platform), count in host_counter.most_common(): - if count > 1: - if host in duplicate_allowed_list: - warn("Whitelisted hostname %s with platform '%s' shows up in %d different rulesets." % (host, platform, count)) - else: - failure = 1 - fail("Hostname %s with platform '%s' shows up in %d different rulesets." % (host, platform, count)) - if not is_valid_target_host(host): - failure = 1 - fail("%s failed: %s" % (host, is_valid_target_host.__doc__)) - -sys.exit(failure) diff --git a/utils/trivialize-cdn-rules/.gitignore b/utils/trivialize-cdn-rules/.gitignore new file mode 100644 index 000000000000..ad46b30886fa --- /dev/null +++ b/utils/trivialize-cdn-rules/.gitignore @@ -0,0 +1,61 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# Runtime data +pids +*.pid +*.seed +*.pid.lock + +# Directory for instrumented libs generated by jscoverage/JSCover +lib-cov + +# Coverage directory used by tools like istanbul +coverage + +# nyc test coverage +.nyc_output + +# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) +.grunt + +# Bower dependency directory (https://bower.io/) +bower_components + +# node-waf configuration +.lock-wscript + +# Compiled binary addons (https://nodejs.org/api/addons.html) +build/Release + +# Dependency directories +node_modules/ +jspm_packages/ + +# TypeScript v1 declaration files +typings/ + +# Optional npm cache directory +.npm + +# Optional eslint cache +.eslintcache + +# Optional REPL history +.node_repl_history + +# Output of 'npm pack' +*.tgz + +# Yarn Integrity file +.yarn-integrity + +# dotenv environment variables file +.env + +# next.js build output +.next diff --git a/utils/trivialize-cdn-rules/index.js b/utils/trivialize-cdn-rules/index.js new file mode 100644 index 000000000000..4f8116dd84be --- /dev/null +++ b/utils/trivialize-cdn-rules/index.js @@ -0,0 +1,161 @@ +'use strict' + +const util = require('util') +const path = require('path') + +const fs = require('graceful-fs') +const xml2js = require('xml2js') +const request = require('sync-request') +const chalk = require('chalk') + +const readdir = util.promisify(fs.readdir) +const readFile = util.promisify(fs.readFile) +const parseXML = util.promisify(xml2js.parseString) + +const rulesDir = 'src/chrome/content/rules/' + +const log = (level, filename, message) => { + switch (level) { + case 'WARN': + console.warn(chalk.yellow(`[${level}] ${chalk.bold(filename)}: ${message}`)) + break + case 'INFO': + console.info(chalk.green(`[${level}] ${chalk.bold(filename)}: ${message}`)) + break + case 'FAIL': + default: + console.error(chalk.red(`[${level}] ${chalk.bold(filename)}: ${message}`)) + break + } +} + +const supportedCDNsRegexs = [ + { // Cloudfront.net + fromRe: /^\^http(?:s\?)?:\/\/((([\\a-z0-9_-]+)\.)*([\\a-z0-9-]+))\/$/, + toRe: /^https:\/\/\w+\.cloudfront\.net\/$/ + }, + { // 2o7.net + fromRe: /^\^http(?:s\?)?:\/\/((([\\a-z0-9_-]+)\.)*([\\a-z0-9-]+))\/$/, + toRe: /^https:\/\/[\w-]+\.1[12]2\.2o7\.net\/$/ + }, + { // amazonaws.com + fromRe: /^\^http(?:s\?)?:\/\/((([\\a-z0-9_-]+)\.)*([\\a-z0-9-]+))\/$/, + toRe: /^https:\/\/s3\.amazonaws\.com\// + } +] + +const escapeRegExp = (str) => { + return str.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g, '\\$&') // eslint-disable-line +} + +const isSecureConnectionOkay = (host) => { + // FIXME: terrible performance... + let response = request('GET', `https://${host}/`, { + headers: { + 'User-Agent': 'Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:10.0) Gecko/20100101 Firefox/10.0' + }, + timeout: 3000, + socketTimeout: 3000, + maxRedirects: 5 + }) + if (response) { + return true + } else { + return false + } +} + +const trivializeGenericRewrites = async (fstat, content, rules) => { + return new Promise((resolve, reject) => { + let rewrittenAtLeastOnce = false + let originalContent = content + + for (const rule of rules) { + for (const supportedCDNsRegex of supportedCDNsRegexs) { + if (supportedCDNsRegex.fromRe.test(rule.from) && supportedCDNsRegex.toRe.test(rule.to)) { + let host = rule.from.replace(supportedCDNsRegex.fromRe, '$1').replace(/\\\./g, '.') + + if (host !== null && isSecureConnectionOkay(host)) { + // TODO: replace rule here... + const ruleRe = `\n([\t ]*)[\t ]*\n` + const ruleRegex = new RegExp(ruleRe, 'g') + + if (ruleRegex.test(originalContent)) { + content = content.replace(ruleRegex, `\n$1\n`) + if (originalContent !== content) { + rewrittenAtLeastOnce = true + } + } else { + log('WARN', fstat.filename, `Warning: cannot construct RegExp which match rule ${JSON.stringify(rule)}`) + } + break + } + } + } + } + + if (rewrittenAtLeastOnce) { + try { + fs.writeFileSync(fstat.fullname, content, { encoding: 'utf8' }) + resolve(rewrittenAtLeastOnce) + } catch (error) { + reject(error) + } + } else { + resolve(rewrittenAtLeastOnce) + } + }) +} + +const trivializeCDNRewrites = async (fstat) => { + return new Promise((resolve, reject) => { + (async () => { // async wrapper for await keyword... + let content = await readFile(fstat.fullname, { encoding: 'utf8' }).catch(error => reject(error)) + let $ = await parseXML(content).catch(error => reject(error)) + let rules = $.ruleset.rule.map(rule => rule.$) + let rewrittenAtLeastOnce = false + + await trivializeGenericRewrites(fstat, content, rules) + .then(rewritten => { + if (rewritten) { + rewrittenAtLeastOnce = true + } + }) + .catch(error => { + reject(error) + }) + + // TODO: Add support for more CDNs + resolve(rewrittenAtLeastOnce) + })() + }) +} + +(async () => { + await readdir(rulesDir) + .then(filenames => { + return filenames.filter(filename => filename.endsWith('.xml')) + }) + .then(filenames => { + return filenames.map(filename => ({ + fullname: path.join(rulesDir, filename), + filename + })) + }) + .then(async (fstats) => { + return Promise.all(fstats.map(fstat => { + return trivializeCDNRewrites(fstat) + .then(rewritten => { + if (rewritten) { + log('INFO', fstat.filename, 'trivialized') + } + }) + .catch(error => { + log('FAIL', fstat.filename, error) + }) + })) + }) + .catch(error => { + log('FAIL', '::Promise.all::', error) + }) +})() diff --git a/utils/trivialize-cdn-rules/package-lock.json b/utils/trivialize-cdn-rules/package-lock.json new file mode 100644 index 000000000000..423379f97406 --- /dev/null +++ b/utils/trivialize-cdn-rules/package-lock.json @@ -0,0 +1,2221 @@ +{ + "name": "trivialize-cdn-rules", + "version": "1.0.0", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "@types/concat-stream": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/@types/concat-stream/-/concat-stream-1.6.0.tgz", + "integrity": "sha1-OU2+C7X+5Gs42JZzXoto7yOQ0A0=", + "requires": { + "@types/node": "*" + } + }, + "@types/form-data": { + "version": "0.0.33", + "resolved": "https://registry.npmjs.org/@types/form-data/-/form-data-0.0.33.tgz", + "integrity": "sha1-yayFsqX9GENbjIXZ7LUObWyJP/g=", + "requires": { + "@types/node": "*" + } + }, + "@types/node": { + "version": "10.17.26", + "resolved": "https://registry.npmjs.org/@types/node/-/node-10.17.26.tgz", + "integrity": "sha512-myMwkO2Cr82kirHY8uknNRHEVtn0wV3DTQfkrjx17jmkstDRZ24gNUdl8AHXVyVclTYI/bNjgTPTAWvWLqXqkw==" + }, + "@types/qs": { + "version": "6.9.3", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.3.tgz", + "integrity": "sha512-7s9EQWupR1fTc2pSMtXRQ9w9gLOcrJn+h7HOXw4evxyvVqMi4f+q7d2tnFe3ng3SNHjtK+0EzGMGFUQX4/AQRA==" + }, + "acorn": { + "version": "5.7.4", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.7.4.tgz", + "integrity": "sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg==", + "dev": true + }, + "acorn-jsx": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-3.0.1.tgz", + "integrity": "sha1-r9+UiPsezvyDSPb7IvRk4ypYs2s=", + "dev": true, + "requires": { + "acorn": "^3.0.4" + }, + "dependencies": { + "acorn": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz", + "integrity": "sha1-ReN/s56No/JbruP/U2niu18iAXo=", + "dev": true + } + } + }, + "ajv": { + "version": "5.5.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz", + "integrity": "sha1-c7Xuyj+rZT49P5Qis0GtQiBdyWU=", + "dev": true, + "requires": { + "co": "^4.6.0", + "fast-deep-equal": "^1.0.0", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.3.0" + } + }, + "ajv-keywords": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-2.1.1.tgz", + "integrity": "sha1-YXmX/F9gV2iUxDX5QNgZ4TW4B2I=", + "dev": true + }, + "ansi-escapes": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.1.0.tgz", + "integrity": "sha512-UgAb8H9D41AQnu/PbWlCofQVcnV4Gs2bBJi9eZPxfU/hgglFh3SMDMENRIqdr7H6XFnXdoknctFByVsCOotTVw==", + "dev": true + }, + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "^1.9.0" + } + }, + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "requires": { + "sprintf-js": "~1.0.2" + } + }, + "array-includes": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.0.3.tgz", + "integrity": "sha1-GEtI9i2S10UrsxsyMWXH+L0CJm0=", + "dev": true, + "requires": { + "define-properties": "^1.1.2", + "es-abstract": "^1.7.0" + } + }, + "array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", + "dev": true, + "requires": { + "array-uniq": "^1.0.1" + } + }, + "array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=", + "dev": true + }, + "arrify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", + "integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=", + "dev": true + }, + "asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=" + }, + "asn1": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", + "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", + "requires": { + "safer-buffer": "~2.1.0" + } + }, + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" + }, + "aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=" + }, + "aws4": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.10.0.tgz", + "integrity": "sha512-3YDiu347mtVtjpyV3u5kVqQLP242c06zwDOgpeRnybmXlYYsLbtTrUBUm8i8srONt+FWobl5aibnU1030PeeuA==" + }, + "babel-code-frame": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz", + "integrity": "sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=", + "dev": true, + "requires": { + "chalk": "^1.1.3", + "esutils": "^2.0.2", + "js-tokens": "^3.0.2" + }, + "dependencies": { + "ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", + "dev": true + }, + "chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", + "dev": true, + "requires": { + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", + "dev": true + } + } + }, + "balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", + "dev": true + }, + "bcrypt-pbkdf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", + "requires": { + "tweetnacl": "^0.14.3" + } + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "buffer-from": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", + "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==" + }, + "builtin-modules": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz", + "integrity": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=", + "dev": true + }, + "caller-path": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-0.1.0.tgz", + "integrity": "sha1-lAhe9jWB7NPaqSREqP6U6CV3dR8=", + "dev": true, + "requires": { + "callsites": "^0.2.0" + } + }, + "callsites": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-0.2.0.tgz", + "integrity": "sha1-r6uWJikQp/M8GaV3WCXGnzTjUMo=", + "dev": true + }, + "caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "chardet": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.4.2.tgz", + "integrity": "sha1-tUc7M9yXxCTl2Y3IfVXU2KKci/I=", + "dev": true + }, + "circular-json": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/circular-json/-/circular-json-0.3.3.tgz", + "integrity": "sha512-UZK3NBx2Mca+b5LsG7bY183pHWt5Y1xts4P3Pz7ENTwGVnJOUWbRb3ocjvX7hx9tq/yTAdclXm9sZ38gNuem4A==", + "dev": true + }, + "cli-cursor": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", + "integrity": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=", + "dev": true, + "requires": { + "restore-cursor": "^2.0.0" + } + }, + "cli-width": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.2.0.tgz", + "integrity": "sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk=", + "dev": true + }, + "co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=", + "dev": true + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "dev": true + }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "requires": { + "delayed-stream": "~1.0.0" + } + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + }, + "concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "requires": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "contains-path": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/contains-path/-/contains-path-0.1.0.tgz", + "integrity": "sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo=", + "dev": true + }, + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + }, + "cross-spawn": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", + "integrity": "sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=", + "dev": true, + "requires": { + "lru-cache": "^4.0.1", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", + "requires": { + "assert-plus": "^1.0.0" + } + }, + "debug": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "debug-log": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/debug-log/-/debug-log-1.0.1.tgz", + "integrity": "sha1-IwdjLUwEOCuN+KMvcLiVBG1SdF8=", + "dev": true + }, + "deep-is": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", + "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=", + "dev": true + }, + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "dev": true, + "requires": { + "object-keys": "^1.0.12" + } + }, + "deglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/deglob/-/deglob-2.1.1.tgz", + "integrity": "sha512-2kjwuGGonL7gWE1XU4Fv79+vVzpoQCl0V+boMwWtOQJV2AGDabCwez++nB1Nli/8BabAfZQ/UuHPlp6AymKdWw==", + "dev": true, + "requires": { + "find-root": "^1.0.0", + "glob": "^7.0.5", + "ignore": "^3.0.9", + "pkg-config": "^1.1.0", + "run-parallel": "^1.1.2", + "uniq": "^1.0.1" + } + }, + "del": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/del/-/del-2.2.2.tgz", + "integrity": "sha1-wSyYHQZ4RshLyvhiz/kw2Qf/0ag=", + "dev": true, + "requires": { + "globby": "^5.0.0", + "is-path-cwd": "^1.0.0", + "is-path-in-cwd": "^1.0.0", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0", + "rimraf": "^2.2.8" + } + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" + }, + "doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dev": true, + "requires": { + "esutils": "^2.0.2" + } + }, + "ecc-jsbn": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", + "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", + "requires": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + } + }, + "error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "requires": { + "is-arrayish": "^0.2.1" + } + }, + "es-abstract": { + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.12.0.tgz", + "integrity": "sha512-C8Fx/0jFmV5IPoMOFPA9P9G5NtqW+4cOPit3MIuvR2t7Ag2K15EJTpxnHAYTzL+aYQJIESYeXZmDBfOBE1HcpA==", + "dev": true, + "requires": { + "es-to-primitive": "^1.1.1", + "function-bind": "^1.1.1", + "has": "^1.0.1", + "is-callable": "^1.1.3", + "is-regex": "^1.0.4" + } + }, + "es-to-primitive": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.1.1.tgz", + "integrity": "sha1-RTVSSKiJeQNLZ5Lhm7gfK3l13Q0=", + "dev": true, + "requires": { + "is-callable": "^1.1.1", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.1" + } + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "dev": true + }, + "eslint": { + "version": "4.18.2", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-4.18.2.tgz", + "integrity": "sha512-qy4i3wODqKMYfz9LUI8N2qYDkHkoieTbiHpMrYUI/WbjhXJQr7lI4VngixTgaG+yHX+NBCv7nW4hA0ShbvaNKw==", + "dev": true, + "requires": { + "ajv": "^5.3.0", + "babel-code-frame": "^6.22.0", + "chalk": "^2.1.0", + "concat-stream": "^1.6.0", + "cross-spawn": "^5.1.0", + "debug": "^3.1.0", + "doctrine": "^2.1.0", + "eslint-scope": "^3.7.1", + "eslint-visitor-keys": "^1.0.0", + "espree": "^3.5.2", + "esquery": "^1.0.0", + "esutils": "^2.0.2", + "file-entry-cache": "^2.0.0", + "functional-red-black-tree": "^1.0.1", + "glob": "^7.1.2", + "globals": "^11.0.1", + "ignore": "^3.3.3", + "imurmurhash": "^0.1.4", + "inquirer": "^3.0.6", + "is-resolvable": "^1.0.0", + "js-yaml": "^3.9.1", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.3.0", + "lodash": "^4.17.4", + "minimatch": "^3.0.2", + "mkdirp": "^0.5.1", + "natural-compare": "^1.4.0", + "optionator": "^0.8.2", + "path-is-inside": "^1.0.2", + "pluralize": "^7.0.0", + "progress": "^2.0.0", + "require-uncached": "^1.0.3", + "semver": "^5.3.0", + "strip-ansi": "^4.0.0", + "strip-json-comments": "~2.0.1", + "table": "4.0.2", + "text-table": "~0.2.0" + } + }, + "eslint-config-standard": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/eslint-config-standard/-/eslint-config-standard-11.0.0.tgz", + "integrity": "sha512-oDdENzpViEe5fwuRCWla7AXQd++/oyIp8zP+iP9jiUPG6NBj3SHgdgtl/kTn00AjeN+1HNvavTKmYbMo+xMOlw==", + "dev": true + }, + "eslint-config-standard-jsx": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/eslint-config-standard-jsx/-/eslint-config-standard-jsx-5.0.0.tgz", + "integrity": "sha512-rLToPAEqLMPBfWnYTu6xRhm2OWziS2n40QFqJ8jAM8NSVzeVKTa3nclhsU4DpPJQRY60F34Oo1wi/71PN/eITg==", + "dev": true + }, + "eslint-import-resolver-node": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.2.tgz", + "integrity": "sha512-sfmTqJfPSizWu4aymbPr4Iidp5yKm8yDkHp+Ir3YiTHiiDfxh69mOUsmiqW6RZ9zRXFaF64GtYmN7e+8GHBv6Q==", + "dev": true, + "requires": { + "debug": "^2.6.9", + "resolve": "^1.5.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + } + } + }, + "eslint-module-utils": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.2.0.tgz", + "integrity": "sha1-snA2LNiLGkitMIl2zn+lTphBF0Y=", + "dev": true, + "requires": { + "debug": "^2.6.8", + "pkg-dir": "^1.0.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + } + } + }, + "eslint-plugin-import": { + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.9.0.tgz", + "integrity": "sha1-JgAu+/ylmJtyiKwEdQi9JPIXsWk=", + "dev": true, + "requires": { + "builtin-modules": "^1.1.1", + "contains-path": "^0.1.0", + "debug": "^2.6.8", + "doctrine": "1.5.0", + "eslint-import-resolver-node": "^0.3.1", + "eslint-module-utils": "^2.1.1", + "has": "^1.0.1", + "lodash": "^4.17.4", + "minimatch": "^3.0.3", + "read-pkg-up": "^2.0.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "doctrine": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-1.5.0.tgz", + "integrity": "sha1-N53Ocw9hZvds76TmcHoVmwLFpvo=", + "dev": true, + "requires": { + "esutils": "^2.0.2", + "isarray": "^1.0.0" + } + } + } + }, + "eslint-plugin-node": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-node/-/eslint-plugin-node-6.0.1.tgz", + "integrity": "sha512-Q/Cc2sW1OAISDS+Ji6lZS2KV4b7ueA/WydVWd1BECTQwVvfQy5JAi3glhINoKzoMnfnuRgNP+ZWKrGAbp3QDxw==", + "dev": true, + "requires": { + "ignore": "^3.3.6", + "minimatch": "^3.0.4", + "resolve": "^1.3.3", + "semver": "^5.4.1" + } + }, + "eslint-plugin-promise": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-3.7.0.tgz", + "integrity": "sha512-2WO+ZFh7vxUKRfR0cOIMrWgYKdR6S1AlOezw6pC52B6oYpd5WFghN+QHxvrRdZMtbo8h3dfUZ2o1rWb0UPbKtg==", + "dev": true + }, + "eslint-plugin-react": { + "version": "7.7.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.7.0.tgz", + "integrity": "sha512-KC7Snr4YsWZD5flu6A5c0AcIZidzW3Exbqp7OT67OaD2AppJtlBr/GuPrW/vaQM/yfZotEvKAdrxrO+v8vwYJA==", + "dev": true, + "requires": { + "doctrine": "^2.0.2", + "has": "^1.0.1", + "jsx-ast-utils": "^2.0.1", + "prop-types": "^15.6.0" + } + }, + "eslint-plugin-standard": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-standard/-/eslint-plugin-standard-3.0.1.tgz", + "integrity": "sha1-NNDJFbRe3G8BA5PH7vOCOwhWXPI=", + "dev": true + }, + "eslint-scope": { + "version": "3.7.3", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-3.7.3.tgz", + "integrity": "sha512-W+B0SvF4gamyCTmUc+uITPY0989iXVfKvhwtmJocTaYoc/3khEHmEmvfY/Gn9HA9VV75jrQECsHizkNw1b68FA==", + "dev": true, + "requires": { + "esrecurse": "^4.1.0", + "estraverse": "^4.1.1" + } + }, + "eslint-visitor-keys": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz", + "integrity": "sha512-qzm/XxIbxm/FHyH341ZrbnMUpe+5Bocte9xkmFMzPMjRaZMcXww+MpBptFvtU+79L362nqiLhekCxCxDPaUMBQ==", + "dev": true + }, + "espree": { + "version": "3.5.4", + "resolved": "https://registry.npmjs.org/espree/-/espree-3.5.4.tgz", + "integrity": "sha512-yAcIQxtmMiB/jL32dzEp2enBeidsB7xWPLNiw3IIkpVds1P+h7qF9YwJq1yUNzp2OKXgAprs4F61ih66UsoD1A==", + "dev": true, + "requires": { + "acorn": "^5.5.0", + "acorn-jsx": "^3.0.0" + } + }, + "esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true + }, + "esquery": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.0.1.tgz", + "integrity": "sha512-SmiyZ5zIWH9VM+SRUReLS5Q8a7GxtRdxEBVZpm98rJM7Sb+A9DVCndXfkeFUd3byderg+EbDkfnevfCwynWaNA==", + "dev": true, + "requires": { + "estraverse": "^4.0.0" + } + }, + "esrecurse": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz", + "integrity": "sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ==", + "dev": true, + "requires": { + "estraverse": "^4.1.0" + } + }, + "estraverse": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz", + "integrity": "sha1-De4/7TH81GlhjOc0IJn8GvoL2xM=", + "dev": true + }, + "esutils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz", + "integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=", + "dev": true + }, + "extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + }, + "external-editor": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-2.2.0.tgz", + "integrity": "sha512-bSn6gvGxKt+b7+6TKEv1ZycHleA7aHhRHyAqJyp5pbUFuYYNIzpZnQDk7AsYckyWdEnTeAnay0aCy2aV6iTk9A==", + "dev": true, + "requires": { + "chardet": "^0.4.0", + "iconv-lite": "^0.4.17", + "tmp": "^0.0.33" + } + }, + "extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=" + }, + "fast-deep-equal": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz", + "integrity": "sha1-wFNHeBfIa1HaqFPIHgWbcz0CNhQ=", + "dev": true + }, + "fast-json-stable-stringify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz", + "integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I=" + }, + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", + "dev": true + }, + "figures": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", + "integrity": "sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=", + "dev": true, + "requires": { + "escape-string-regexp": "^1.0.5" + } + }, + "file-entry-cache": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-2.0.0.tgz", + "integrity": "sha1-w5KZDD5oR4PYOLjISkXYoEhFg2E=", + "dev": true, + "requires": { + "flat-cache": "^1.2.1", + "object-assign": "^4.0.1" + } + }, + "find-root": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz", + "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==", + "dev": true + }, + "find-up": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", + "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", + "dev": true, + "requires": { + "path-exists": "^2.0.0", + "pinkie-promise": "^2.0.0" + } + }, + "flat-cache": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-1.3.0.tgz", + "integrity": "sha1-0wMLMrOBVPTjt+nHCfSQ9++XxIE=", + "dev": true, + "requires": { + "circular-json": "^0.3.1", + "del": "^2.0.2", + "graceful-fs": "^4.1.2", + "write": "^0.2.1" + } + }, + "forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=" + }, + "form-data": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", + "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + } + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "functional-red-black-tree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", + "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=", + "dev": true + }, + "get-port": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/get-port/-/get-port-3.2.0.tgz", + "integrity": "sha1-3Xzn3hh8Bsi/NTeWrHHgmfCYDrw=" + }, + "get-stdin": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-6.0.0.tgz", + "integrity": "sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g==", + "dev": true + }, + "getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", + "requires": { + "assert-plus": "^1.0.0" + } + }, + "glob": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.2.tgz", + "integrity": "sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "globals": { + "version": "11.7.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.7.0.tgz", + "integrity": "sha512-K8BNSPySfeShBQXsahYB/AbbWruVOTyVpgoIDnl8odPpeSfP2J5QO2oLFFdl2j7GfDCtZj2bMKar2T49itTPCg==", + "dev": true + }, + "globby": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-5.0.0.tgz", + "integrity": "sha1-69hGZ8oNuzMLmbz8aOrCvFQ3Dg0=", + "dev": true, + "requires": { + "array-union": "^1.0.1", + "arrify": "^1.0.0", + "glob": "^7.0.3", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + } + }, + "graceful-fs": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz", + "integrity": "sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==" + }, + "har-schema": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=" + }, + "har-validator": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz", + "integrity": "sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g==", + "requires": { + "ajv": "^6.5.5", + "har-schema": "^2.0.0" + }, + "dependencies": { + "ajv": { + "version": "6.12.3", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.3.tgz", + "integrity": "sha512-4K0cK3L1hsqk9xIb2z9vs/XU+PGJZ9PNpJRDS9YLzmNdX6jmVPfamLvTJr0aDAusnHyCHO6MjzlkAsgtqp9teA==", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + } + } + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-ansi": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", + "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true + }, + "http-basic": { + "version": "8.1.3", + "resolved": "https://registry.npmjs.org/http-basic/-/http-basic-8.1.3.tgz", + "integrity": "sha512-/EcDMwJZh3mABI2NhGfHOGOeOZITqfkEO4p/xK+l3NpyncIHUQBoMvCSF/b5GqvKtySC2srL/GGG3+EtlqlmCw==", + "requires": { + "caseless": "^0.12.0", + "concat-stream": "^1.6.2", + "http-response-object": "^3.0.1", + "parse-cache-control": "^1.0.1" + } + }, + "http-response-object": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/http-response-object/-/http-response-object-3.0.2.tgz", + "integrity": "sha512-bqX0XTF6fnXSQcEJ2Iuyr75yVakyjIDCqroJQ/aHfSdlM743Cwqoi2nDYMzLGWUcuTWGWy8AAvOKXTfiv6q9RA==", + "requires": { + "@types/node": "^10.0.3" + } + }, + "http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", + "requires": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + } + }, + "iconv-lite": { + "version": "0.4.23", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.23.tgz", + "integrity": "sha512-neyTUVFtahjf0mB3dZT77u+8O0QB89jFdnBkd5P1JgYPbPaia3gXXOVL2fq8VyU2gMMD7SaN7QukTB/pmXYvDA==", + "dev": true, + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "ignore": { + "version": "3.3.10", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-3.3.10.tgz", + "integrity": "sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==", + "dev": true + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", + "dev": true + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + }, + "inquirer": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-3.3.0.tgz", + "integrity": "sha512-h+xtnyk4EwKvFWHrUYsWErEVR+igKtLdchu+o0Z1RL7VU/jVMFbYir2bp6bAj8efFNxWqHX0dIss6fJQ+/+qeQ==", + "dev": true, + "requires": { + "ansi-escapes": "^3.0.0", + "chalk": "^2.0.0", + "cli-cursor": "^2.1.0", + "cli-width": "^2.0.0", + "external-editor": "^2.0.4", + "figures": "^2.0.0", + "lodash": "^4.3.0", + "mute-stream": "0.0.7", + "run-async": "^2.2.0", + "rx-lite": "^4.0.8", + "rx-lite-aggregates": "^4.0.8", + "string-width": "^2.1.0", + "strip-ansi": "^4.0.0", + "through": "^2.3.6" + } + }, + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", + "dev": true + }, + "is-builtin-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz", + "integrity": "sha1-VAVy0096wxGfj3bDDLwbHgN6/74=", + "dev": true, + "requires": { + "builtin-modules": "^1.0.0" + } + }, + "is-callable": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.1.4.tgz", + "integrity": "sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA==", + "dev": true + }, + "is-date-object": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz", + "integrity": "sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY=", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true + }, + "is-path-cwd": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-1.0.0.tgz", + "integrity": "sha1-0iXsIxMuie3Tj9p2dHLmLmXxEG0=", + "dev": true + }, + "is-path-in-cwd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz", + "integrity": "sha512-FjV1RTW48E7CWM7eE/J2NJvAEEVektecDBVBE5Hh3nM1Jd0kvhHtX68Pr3xsDf857xt3Y4AkwVULK1Vku62aaQ==", + "dev": true, + "requires": { + "is-path-inside": "^1.0.0" + } + }, + "is-path-inside": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz", + "integrity": "sha1-jvW33lBDej/cprToZe96pVy0gDY=", + "dev": true, + "requires": { + "path-is-inside": "^1.0.1" + } + }, + "is-promise": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz", + "integrity": "sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=", + "dev": true + }, + "is-regex": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz", + "integrity": "sha1-VRdIm1RwkbCTDglWVM7SXul+lJE=", + "dev": true, + "requires": { + "has": "^1.0.1" + } + }, + "is-resolvable": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz", + "integrity": "sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==", + "dev": true + }, + "is-symbol": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.1.tgz", + "integrity": "sha1-PMWfAAJRlLarLjjbrmaJJWtmBXI=", + "dev": true + }, + "is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", + "dev": true + }, + "isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" + }, + "js-tokens": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz", + "integrity": "sha1-mGbfOVECEw449/mWvOtlRDIJwls=", + "dev": true + }, + "js-yaml": { + "version": "3.13.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz", + "integrity": "sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==", + "dev": true, + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + }, + "jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=" + }, + "json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "dev": true + }, + "json-schema": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" + }, + "json-schema-traverse": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz", + "integrity": "sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A=", + "dev": true + }, + "json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", + "dev": true + }, + "json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" + }, + "jsprim": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", + "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", + "requires": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.4.0", + "verror": "1.10.0" + } + }, + "jsx-ast-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-2.0.1.tgz", + "integrity": "sha1-6AGxs5mF4g//yHtA43SAgOLcrH8=", + "dev": true, + "requires": { + "array-includes": "^3.0.3" + } + }, + "levn": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", + "dev": true, + "requires": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + } + }, + "load-json-file": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz", + "integrity": "sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "parse-json": "^2.2.0", + "pify": "^2.0.0", + "strip-bom": "^3.0.0" + } + }, + "locate-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", + "dev": true, + "requires": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + }, + "dependencies": { + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "dev": true + } + } + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true + }, + "loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "dev": true, + "requires": { + "js-tokens": "^3.0.0 || ^4.0.0" + } + }, + "lru-cache": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.3.tgz", + "integrity": "sha512-fFEhvcgzuIoJVUF8fYr5KR0YqxD238zgObTps31YdADwPPAp82a4M8TrckkWyx7ekNlf9aBcVn81cFwwXngrJA==", + "dev": true, + "requires": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } + }, + "mime-db": { + "version": "1.44.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.44.0.tgz", + "integrity": "sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg==" + }, + "mime-types": { + "version": "2.1.27", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.27.tgz", + "integrity": "sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w==", + "requires": { + "mime-db": "1.44.0" + } + }, + "mimic-fn": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", + "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", + "dev": true + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", + "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==", + "dev": true + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", + "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", + "dev": true, + "requires": { + "minimist": "^1.2.5" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "mute-stream": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz", + "integrity": "sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s=", + "dev": true + }, + "natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", + "dev": true + }, + "normalize-package-data": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.4.0.tgz", + "integrity": "sha512-9jjUFbTPfEy3R/ad/2oNbKtW9Hgovl5O1FvFWKkKblNXoN/Oou6+9+KKohPK13Yc3/TyunyWhJp6gvRNR/PPAw==", + "dev": true, + "requires": { + "hosted-git-info": "^2.1.4", + "is-builtin-module": "^1.0.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "oauth-sign": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", + "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==" + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", + "dev": true + }, + "object-keys": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.0.12.tgz", + "integrity": "sha512-FTMyFUm2wBcGHnH2eXmz7tC6IwlqQZ6mVZ+6dm6vZ4IQIHjs6FdNsQBuKGPuUUUY6NfJw2PshC08Tn6LzLDOag==", + "dev": true + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "requires": { + "wrappy": "1" + } + }, + "onetime": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", + "integrity": "sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=", + "dev": true, + "requires": { + "mimic-fn": "^1.0.0" + } + }, + "optionator": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz", + "integrity": "sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q=", + "dev": true, + "requires": { + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.4", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "wordwrap": "~1.0.0" + } + }, + "os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=", + "dev": true + }, + "p-limit": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "dev": true, + "requires": { + "p-try": "^1.0.0" + } + }, + "p-locate": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", + "dev": true, + "requires": { + "p-limit": "^1.1.0" + } + }, + "p-try": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", + "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=", + "dev": true + }, + "parse-cache-control": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parse-cache-control/-/parse-cache-control-1.0.1.tgz", + "integrity": "sha1-juqz5U+laSD+Fro493+iGqzC104=" + }, + "parse-json": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", + "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", + "dev": true, + "requires": { + "error-ex": "^1.2.0" + } + }, + "path-exists": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", + "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", + "dev": true, + "requires": { + "pinkie-promise": "^2.0.0" + } + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true + }, + "path-is-inside": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", + "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=", + "dev": true + }, + "path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "path-type": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz", + "integrity": "sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM=", + "dev": true, + "requires": { + "pify": "^2.0.0" + } + }, + "performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "dev": true + }, + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", + "dev": true + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", + "dev": true, + "requires": { + "pinkie": "^2.0.0" + } + }, + "pkg-conf": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/pkg-conf/-/pkg-conf-2.1.0.tgz", + "integrity": "sha1-ISZRTKbyq/69FoWW3xi6V4Z/AFg=", + "dev": true, + "requires": { + "find-up": "^2.0.0", + "load-json-file": "^4.0.0" + }, + "dependencies": { + "find-up": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", + "dev": true, + "requires": { + "locate-path": "^2.0.0" + } + }, + "load-json-file": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", + "integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "parse-json": "^4.0.0", + "pify": "^3.0.0", + "strip-bom": "^3.0.0" + } + }, + "parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", + "dev": true, + "requires": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + } + }, + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true + } + } + }, + "pkg-config": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/pkg-config/-/pkg-config-1.1.1.tgz", + "integrity": "sha1-VX7yLXPaPIg3EHdmxS6tq94pj+Q=", + "dev": true, + "requires": { + "debug-log": "^1.0.0", + "find-root": "^1.0.0", + "xtend": "^4.0.1" + } + }, + "pkg-dir": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-1.0.0.tgz", + "integrity": "sha1-ektQio1bstYp1EcFb/TpyTFM89Q=", + "dev": true, + "requires": { + "find-up": "^1.0.0" + } + }, + "pluralize": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-7.0.0.tgz", + "integrity": "sha512-ARhBOdzS3e41FbkW/XWrTEtukqqLoK5+Z/4UeDaLuSW+39JPeFgs4gCGqsrJHVZX0fUrx//4OF0K1CUGwlIFow==", + "dev": true + }, + "prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=", + "dev": true + }, + "process-nextick-args": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz", + "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==" + }, + "progress": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.0.tgz", + "integrity": "sha1-ihvjZr+Pwj2yvSPxDG/pILQ4nR8=", + "dev": true + }, + "promise": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/promise/-/promise-8.1.0.tgz", + "integrity": "sha512-W04AqnILOL/sPRXziNicCjSNRruLAuIHEOVBazepu0545DDNGYHz7ar9ZgZ1fMU8/MA4mVxp5rkBWRi6OXIy3Q==", + "requires": { + "asap": "~2.0.6" + } + }, + "prop-types": { + "version": "15.6.2", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.6.2.tgz", + "integrity": "sha512-3pboPvLiWD7dkI3qf3KbUe6hKFKa52w+AE0VCqECtf+QHAKgOL37tTaNCnuX1nAAQ4ZhyP+kYVKf8rLmJ/feDQ==", + "dev": true, + "requires": { + "loose-envify": "^1.3.1", + "object-assign": "^4.1.1" + } + }, + "pseudomap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", + "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=", + "dev": true + }, + "psl": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", + "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==" + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" + }, + "qs": { + "version": "6.5.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", + "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==" + }, + "read-pkg": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz", + "integrity": "sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg=", + "dev": true, + "requires": { + "load-json-file": "^2.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^2.0.0" + } + }, + "read-pkg-up": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz", + "integrity": "sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4=", + "dev": true, + "requires": { + "find-up": "^2.0.0", + "read-pkg": "^2.0.0" + }, + "dependencies": { + "find-up": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", + "dev": true, + "requires": { + "locate-path": "^2.0.0" + } + } + } + }, + "readable-stream": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", + "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "request": { + "version": "2.88.2", + "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", + "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", + "requires": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.3", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + } + }, + "require-uncached": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/require-uncached/-/require-uncached-1.0.3.tgz", + "integrity": "sha1-Tg1W1slmL9MeQwEcS5WqSZVUIdM=", + "dev": true, + "requires": { + "caller-path": "^0.1.0", + "resolve-from": "^1.0.0" + } + }, + "resolve": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.8.1.tgz", + "integrity": "sha512-AicPrAC7Qu1JxPCZ9ZgCZlY35QgFnNqc+0LtbRNxnVw4TXvjQ72wnuL9JQcEBgXkI9JM8MsT9kaQoHcpCRJOYA==", + "dev": true, + "requires": { + "path-parse": "^1.0.5" + } + }, + "resolve-from": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-1.0.1.tgz", + "integrity": "sha1-Jsv+k10a7uq7Kbw/5a6wHpPUQiY=", + "dev": true + }, + "restore-cursor": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", + "integrity": "sha1-n37ih/gv0ybU/RYpI9YhKe7g368=", + "dev": true, + "requires": { + "onetime": "^2.0.0", + "signal-exit": "^3.0.2" + } + }, + "rimraf": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.2.tgz", + "integrity": "sha512-lreewLK/BlghmxtfH36YYVg1i8IAce4TI7oao75I1g245+6BctqTVQiBP3YUJ9C6DQOXJmkYR9X9fCLtCOJc5w==", + "dev": true, + "requires": { + "glob": "^7.0.5" + } + }, + "run-async": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.3.0.tgz", + "integrity": "sha1-A3GrSuC91yDUFm19/aZP96RFpsA=", + "dev": true, + "requires": { + "is-promise": "^2.1.0" + } + }, + "run-parallel": { + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.1.9.tgz", + "integrity": "sha512-DEqnSRTDw/Tc3FXf49zedI638Z9onwUotBMiUFKmrO2sdFKIbXamXGQ3Axd4qgphxKB4kw/qP1w5kTxnfU1B9Q==", + "dev": true + }, + "rx-lite": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/rx-lite/-/rx-lite-4.0.8.tgz", + "integrity": "sha1-Cx4Rr4vESDbwSmQH6S2kJGe3lEQ=", + "dev": true + }, + "rx-lite-aggregates": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz", + "integrity": "sha1-dTuHqJoRyVRnxKwWJsTvxOBcZ74=", + "dev": true, + "requires": { + "rx-lite": "*" + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "sax": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" + }, + "semver": { + "version": "5.5.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.5.1.tgz", + "integrity": "sha512-PqpAxfrEhlSUWge8dwIp4tZnQ25DIOthpiaHNIthsjEFQD6EvqUKUDM7L8O2rShkFccYo1VjJR0coWfNkCubRw==", + "dev": true + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "dev": true, + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "dev": true + }, + "signal-exit": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", + "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=", + "dev": true + }, + "slice-ansi": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-1.0.0.tgz", + "integrity": "sha512-POqxBK6Lb3q6s047D/XsDVNPnF9Dl8JSaqe9h9lURl0OdNqy/ujDrOiIHtsqXMGbWWTIomRzAMaTyawAU//Reg==", + "dev": true, + "requires": { + "is-fullwidth-code-point": "^2.0.0" + } + }, + "spdx-correct": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.0.0.tgz", + "integrity": "sha512-N19o9z5cEyc8yQQPukRCZ9EUmb4HUpnrmaL/fxS2pBo2jbfcFRVuFZ/oFC+vZz0MNNk0h80iMn5/S6qGZOL5+g==", + "dev": true, + "requires": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-exceptions": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.1.0.tgz", + "integrity": "sha512-4K1NsmrlCU1JJgUrtgEeTVyfx8VaYea9J9LvARxhbHtVtohPs/gFGG5yy49beySjlIMhhXZ4QqujIZEfS4l6Cg==", + "dev": true + }, + "spdx-expression-parse": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz", + "integrity": "sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg==", + "dev": true, + "requires": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-license-ids": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.0.tgz", + "integrity": "sha512-2+EPwgbnmOIl8HjGBXXMd9NAu02vLjOO1nWw4kmeRDFyHn+M/ETfHxQUK0oXg8ctgVnl9t3rosNVsZ1jG61nDA==", + "dev": true + }, + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", + "dev": true + }, + "sshpk": { + "version": "1.16.1", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", + "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==", + "requires": { + "asn1": "~0.2.3", + "assert-plus": "^1.0.0", + "bcrypt-pbkdf": "^1.0.0", + "dashdash": "^1.12.0", + "ecc-jsbn": "~0.1.1", + "getpass": "^0.1.1", + "jsbn": "~0.1.0", + "safer-buffer": "^2.0.2", + "tweetnacl": "~0.14.0" + } + }, + "standard": { + "version": "11.0.1", + "resolved": "https://registry.npmjs.org/standard/-/standard-11.0.1.tgz", + "integrity": "sha512-nu0jAcHiSc8H+gJCXeiziMVZNDYi8MuqrYJKxTgjP4xKXZMKm311boqQIzDrYI/ktosltxt2CbDjYQs9ANC8IA==", + "dev": true, + "requires": { + "eslint": "~4.18.0", + "eslint-config-standard": "11.0.0", + "eslint-config-standard-jsx": "5.0.0", + "eslint-plugin-import": "~2.9.0", + "eslint-plugin-node": "~6.0.0", + "eslint-plugin-promise": "~3.7.0", + "eslint-plugin-react": "~7.7.0", + "eslint-plugin-standard": "~3.0.1", + "standard-engine": "~8.0.0" + } + }, + "standard-engine": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/standard-engine/-/standard-engine-8.0.1.tgz", + "integrity": "sha512-LA531C3+nljom/XRvdW/hGPXwmilRkaRkENhO3FAGF1Vtq/WtCXzgmnc5S6vUHHsgv534MRy02C1ikMwZXC+tw==", + "dev": true, + "requires": { + "deglob": "^2.1.0", + "get-stdin": "^6.0.0", + "minimist": "^1.1.0", + "pkg-conf": "^2.0.0" + } + }, + "string-width": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", + "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "dev": true, + "requires": { + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "dev": true, + "requires": { + "ansi-regex": "^3.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", + "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", + "dev": true + } + } + }, + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", + "dev": true + }, + "strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "^3.0.0" + } + }, + "sync-request": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/sync-request/-/sync-request-6.1.0.tgz", + "integrity": "sha512-8fjNkrNlNCrVc/av+Jn+xxqfCjYaBoHqCsDz6mt030UMxJGr+GSfCV1dQt2gRtlL63+VPidwDVLr7V2OcTSdRw==", + "requires": { + "http-response-object": "^3.0.1", + "sync-rpc": "^1.2.1", + "then-request": "^6.0.0" + } + }, + "sync-rpc": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/sync-rpc/-/sync-rpc-1.3.6.tgz", + "integrity": "sha512-J8jTXuZzRlvU7HemDgHi3pGnh/rkoqR/OZSjhTyyZrEkkYQbk7Z33AXp37mkPfPpfdOuj7Ex3H/TJM1z48uPQw==", + "requires": { + "get-port": "^3.1.0" + } + }, + "table": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/table/-/table-4.0.2.tgz", + "integrity": "sha512-UUkEAPdSGxtRpiV9ozJ5cMTtYiqz7Ni1OGqLXRCynrvzdtR1p+cfOWe2RJLwvUG8hNanaSRjecIqwOjqeatDsA==", + "dev": true, + "requires": { + "ajv": "^5.2.3", + "ajv-keywords": "^2.1.0", + "chalk": "^2.1.0", + "lodash": "^4.17.4", + "slice-ansi": "1.0.0", + "string-width": "^2.1.1" + } + }, + "text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", + "dev": true + }, + "then-request": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/then-request/-/then-request-6.0.2.tgz", + "integrity": "sha512-3ZBiG7JvP3wbDzA9iNY5zJQcHL4jn/0BWtXIkagfz7QgOL/LqjCEOBQuJNZfu0XYnv5JhKh+cDxCPM4ILrqruA==", + "requires": { + "@types/concat-stream": "^1.6.0", + "@types/form-data": "0.0.33", + "@types/node": "^8.0.0", + "@types/qs": "^6.2.31", + "caseless": "~0.12.0", + "concat-stream": "^1.6.0", + "form-data": "^2.2.0", + "http-basic": "^8.1.1", + "http-response-object": "^3.0.1", + "promise": "^8.0.0", + "qs": "^6.4.0" + }, + "dependencies": { + "@types/node": { + "version": "8.10.61", + "resolved": "https://registry.npmjs.org/@types/node/-/node-8.10.61.tgz", + "integrity": "sha512-l+zSbvT8TPRaCxL1l9cwHCb0tSqGAGcjPJFItGGYat5oCTiq1uQQKYg5m7AF1mgnEBzFXGLJ2LRmNjtreRX76Q==" + } + } + }, + "through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", + "dev": true + }, + "tmp": { + "version": "0.0.33", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", + "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "dev": true, + "requires": { + "os-tmpdir": "~1.0.2" + } + }, + "tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "requires": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + } + }, + "tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", + "requires": { + "safe-buffer": "^5.0.1" + } + }, + "tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=" + }, + "type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", + "dev": true, + "requires": { + "prelude-ls": "~1.1.2" + } + }, + "typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=" + }, + "uniq": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", + "integrity": "sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=", + "dev": true + }, + "uri-js": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz", + "integrity": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==", + "requires": { + "punycode": "^2.1.0" + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" + }, + "uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==" + }, + "validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "dev": true, + "requires": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "verror": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", + "requires": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + } + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "wordwrap": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", + "integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=", + "dev": true + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + }, + "write": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/write/-/write-0.2.1.tgz", + "integrity": "sha1-X8A4KOJkzqP+kUVUdvejxWbLB1c=", + "dev": true, + "requires": { + "mkdirp": "^0.5.1" + } + }, + "xml2js": { + "version": "0.4.23", + "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.4.23.tgz", + "integrity": "sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug==", + "requires": { + "sax": ">=0.6.0", + "xmlbuilder": "~11.0.0" + } + }, + "xmlbuilder": { + "version": "11.0.1", + "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz", + "integrity": "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==" + }, + "xtend": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", + "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=", + "dev": true + }, + "yallist": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=", + "dev": true + } + } +} diff --git a/utils/trivialize-cdn-rules/package.json b/utils/trivialize-cdn-rules/package.json new file mode 100644 index 000000000000..c21b01694f84 --- /dev/null +++ b/utils/trivialize-cdn-rules/package.json @@ -0,0 +1,22 @@ +{ + "name": "trivialize-cdn-rules", + "version": "1.0.0", + "main": "index.js", + "dependencies": { + "graceful-fs": "^4.2.0", + "request": "^2.87.0", + "sync-request": "^6.1.0", + "xml2js": "^0.4.19" + }, + "devDependencies": { + "chalk": "^2.4.2", + "standard": "^11.0.1" + }, + "scripts": { + "start": "node index.js", + "lint": "standard --fix index.js" + }, + "keywords": [], + "author": "Chan Chak Shing", + "description": "" +} diff --git a/utils/trivialize-rules/explode-regexp.js b/utils/trivialize-rules/explode-regexp.js new file mode 100644 index 000000000000..c034f195a837 --- /dev/null +++ b/utils/trivialize-rules/explode-regexp.js @@ -0,0 +1,86 @@ +/* eslint-env es6, node */ + +const { parse } = require('regulex'); + +class UnsupportedRegExp extends Error {} + +function explodeRegExp(re, callback) { + (function buildUrls(str, items) { + if (items.length === 0) { + callback(str + '*'); + return; + } + + let [first, ...rest] = items; + + if (first.repeat) { + let { repeat, ...firstSub } = first; + if (repeat.max !== 1) throw new UnsupportedRegExp(first.raw); + if (repeat.min === 0) { + buildUrls(str, rest); + } + return buildUrls(str, [ firstSub, ...rest ]); + } + + switch (first.type) { + case 'group': { + return buildUrls(str, first.sub.concat(rest)); + } + + case 'assert': { + if (first.assertionType === 'AssertBegin') { + if (str !== '*') return; // can't match begin not at the beginning + return buildUrls('', rest); + } + if (first.assertionType === 'AssertEnd') { + callback(str); + return; + } + if (first.assertionType === 'AssertLookahead' && rest.length === 0) { + return buildUrls(str, first.sub.concat(rest)); + } + break; + } + + case 'choice': { + for (let branch of first.branches) { + buildUrls(str, branch.concat(rest)); + } + return; + } + + case 'exact': { + return buildUrls(str + first.chars, rest); + } + + case 'charset': { + if (first.ranges.length === 1) { + let range = first.ranges[0]; + let from = range.charCodeAt(0); + let to = range.charCodeAt(1); + if (to - from < 10) { + // small range, probably won't explode + for (; from <= to; from++) { + buildUrls(str + String.fromCharCode(from), rest); + } + first.ranges.length = 0; + } + } + if (!first.classes.length && !first.exclude && !first.ranges.length) { + for (let c of first.chars) { + buildUrls(str + c, rest); + } + return; + } + break; + } + } + + throw new UnsupportedRegExp(first.raw); + })('*', parse(re).tree); +}; + +module.exports = { + UnsupportedRegExp, + explodeRegExp +}; diff --git a/utils/trivialize-rules/package-lock.json b/utils/trivialize-rules/package-lock.json new file mode 100644 index 000000000000..3bccfafbef51 --- /dev/null +++ b/utils/trivialize-rules/package-lock.json @@ -0,0 +1,112 @@ +{ + "name": "trivialize-rules", + "version": "1.0.0", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "amdefine": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz", + "integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=" + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" + }, + "graceful-fs": { + "version": "4.1.15", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.15.tgz", + "integrity": "sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA==" + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" + }, + "highland": { + "version": "2.13.4", + "resolved": "https://registry.npmjs.org/highland/-/highland-2.13.4.tgz", + "integrity": "sha512-r+YlbnBhCTcrcVzBpzPcrvB0llVjeDWKuXSZVuNBe5WgQJtN2xGUUMZC9WzHCntNIx0rskVernxLoFJUCkmb/Q==", + "requires": { + "util-deprecate": "^1.0.2" + } + }, + "regulex": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/regulex/-/regulex-0.0.2.tgz", + "integrity": "sha1-e7oj5R8JnIJiE5ZEbYDeQVm9Ksc=", + "requires": { + "amdefine": "~1.0.0" + } + }, + "sax": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" + }, + "valid-url": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/valid-url/-/valid-url-1.0.9.tgz", + "integrity": "sha1-HBRHm0DxOXp1eC8RXkCGRHQzogA=" + }, + "xml2js": { + "version": "0.4.19", + "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.4.19.tgz", + "integrity": "sha512-esZnJZJOiJR9wWKMyuvSE1y6Dq5LCuJanqhxslH2bxM6duahNZ+HMpCLhBQGZkbX6xRf8x1Y2eJlgt2q3qo49Q==", + "requires": { + "sax": ">=0.6.0", + "xmlbuilder": "~9.0.1" + } + }, + "xmlbuilder": { + "version": "9.0.7", + "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-9.0.7.tgz", + "integrity": "sha1-Ey7mPS7FVlxVfiD0wi35rKaGsQ0=" + } + } +} diff --git a/utils/trivialize-rules/package.json b/utils/trivialize-rules/package.json index fe8ca2330f42..bae4431180c8 100644 --- a/utils/trivialize-rules/package.json +++ b/utils/trivialize-rules/package.json @@ -3,9 +3,12 @@ "version": "1.0.0", "main": "trivialize-rules.js", "dependencies": { + "chalk": "^2.1.0", + "escape-string-regexp": "^1.0.5", + "graceful-fs": "^4.1.11", "highland": "^2.7.1", - "progress": "^1.1.8", - "verbal-expressions": "^0.2.1", + "regulex": "0.0.2", + "valid-url": "^1.0.9", "xml2js": "^0.4.16" }, "devDependencies": {}, diff --git a/utils/trivialize-rules/trivialize-cookie-rules.js b/utils/trivialize-rules/trivialize-cookie-rules.js new file mode 100644 index 000000000000..3b8f5f17c68f --- /dev/null +++ b/utils/trivialize-rules/trivialize-cookie-rules.js @@ -0,0 +1,142 @@ +"use strict"; + +/** + * For future contributors, this script was written to trivialize a special + * form of securecookie rules which is equal to trivial securecookie rule + * under the current HTTPSe implementation. This allows trivialize-rules.js to + * simplify rulesets otherwise impossible due to the lack of support of + * unbounded wildcard RegExps in explode-regexp.js (by design). + * + * As stated in trivialize-rules.js, a securecookie rule works if there is an + * existing rule covering the exact same domain. + * + * In particular, covers all + * subdomains in cookie.host given at least one working rule cover + * the same subdomains. + * + * If there is at least one such rule, for e.g. www.example.com, the mentioned + * securecookie rules can be reduced to + * + * Else, the securecookie rule do not take into effect and thus can be ignored + * during the runtime. + * + * So, regardless of the existence of any rule, for all targets listed in a + * ruleset, the securecookie rule can be interpreted as + * + * + * For simplicity, this implementation require securecookie#host includes a + * tailing $ + */ + +let util = require("util"); +let path = require("path"); +let xml2js = require("xml2js"); + +let fs = require("graceful-fs"); +let readdir = util.promisify(fs.readdir); +let readFile = util.promisify(fs.readFile); +let parseString = util.promisify(xml2js.parseString); + +let rulesDir = "src/chrome/content/rules"; + +let trivialSecureCookieLiteral = `\n$1\n`; +let secureCookieRegExp = new RegExp( + `\n([\t ]*)[\t ]*\n` +); + +let isTrivial = securecookie => { + return securecookie.host === ".+" && securecookie.name === ".+"; +}; + +(async () => { + let filenames = (await readdir(rulesDir)).filter(fn => fn.endsWith(".xml")); + let filePromises = filenames.map(async filename => { + let content = await readFile(path.join(rulesDir, filename), "utf8"); + let { ruleset } = await parseString(content); + + let targets = ruleset.target.map(target => target.$.host); + let securecookies = ruleset.securecookie + ? ruleset.securecookie.map(sc => sc.$) + : []; + + // make sure there is at least one non-trivial securecookie + if (!securecookies.length || securecookies.some(isTrivial)) { + return; + } + + for (let securecookie of securecookies) { + if (securecookie.name !== ".+") { + return; + } + + if ( + !securecookie.host.startsWith("^.+") && + !securecookie.host.startsWith("^.*") && + !securecookie.host.startsWith(".+") && + !securecookie.host.startsWith(".*") && + !securecookie.host.startsWith("(?:.*\\.)?") && + !securecookie.host.startsWith("(?:.+\\.)?") && + !securecookie.host.startsWith("^(?:.*\\.)?") && + !securecookie.host.startsWith("^(?:.+\\.)?") + ) { + return; + } + } + + // make sure each domains and its subdomains are covered by at least + // one securecookie rule + let securedDomains = new Map(); + for (let target of targets) { + // we cannot handle the right-wildcards based on the argument above + if (target.includes(".*")) { + return; + } + // replace left-wildcard with www is an implementation detail + // see https://github.com/EFForg/https-everywhere/blob/ + // 260cd8d402fb8069c55cda311e1be7a60db7339d/chromium/background-scripts/background.js#L595 + if (target.includes("*.")) { + target = target.replace("*.", "www."); + } + securedDomains.set(target, false); + securedDomains.set("." + target, false); + } + + for (let securecookie of securecookies) { + let pattern = new RegExp(securecookie.host); + securedDomains.forEach((val, key, map) => { + if (pattern.test(key)) { + map.set(key, true); + } + }); + } + + // If any value of ${securedDomains} is false, return. + if (![...securedDomains.values()].every(secured => secured)) { + return; + } + + // remove the securecookie tag except the last one + // replace the last securecookie tag with a trivial one + for (let occurrence = securecookies.length; occurrence; --occurrence) { + content = content.replace( + secureCookieRegExp, + occurrence == 1 ? trivialSecureCookieLiteral : "" + ); + } + + return new Promise((resolve, reject) => { + fs.writeFile(path.join(rulesDir, filename), content, "utf8", (err) => { + if (err) { + reject(err); + } + resolve(); + }); + }) + }); + + + // use for-loop to await too many file opened error + for (let fp of filePromises) { + await fp.catch(error => console.log(error)); + } +})(); diff --git a/utils/trivialize-rules/trivialize-rules.js b/utils/trivialize-rules/trivialize-rules.js index de289eb27158..663ecb60978c 100644 --- a/utils/trivialize-rules/trivialize-rules.js +++ b/utils/trivialize-rules/trivialize-rules.js @@ -1,172 +1,291 @@ -"use strict"; +/* eslint-env es6, node */ + +'use strict'; + const _ = require('highland'); const fs = require('fs'); const readDir = _.wrapCallback(fs.readdir); const readFile = _.wrapCallback(fs.readFile); const writeFile = _.wrapCallback(fs.writeFile); const parseXML = _.wrapCallback(require('xml2js').parseString); -const ProgressBar = require('progress'); -const VerEx = require('verbal-expressions'); -let bar; +const { explodeRegExp, UnsupportedRegExp } = require('./explode-regexp'); +const escapeStringRegexp = require('escape-string-regexp'); +const chalk = require('chalk'); const rulesDir = `${__dirname}/../../src/chrome/content/rules`; -const hostPartRe = VerEx().anyOf(/\w\-/).oneOrMore(); -const hostPartWithDotRe = VerEx().find(hostPartRe).then('\\.'); - -const staticRegExp = VerEx() - .startOfLine() - .then('^http://(') - .beginCapture() - .multiple(VerEx().find(hostPartWithDotRe).then('|')) - .then(hostPartWithDotRe) - .endCapture() - .then(')') - .beginCapture() - .maybe('?') - .endCapture() - .beginCapture() - .multiple(hostPartWithDotRe) - .then(hostPartRe) - .endCapture() - .then('/') - .endOfLine() - .stopAtFirst() - .searchOneLine(); - const tagsRegExps = new Map(); function createTagsRegexp(tag) { - let re = tagsRegExps.get(tag); - if (!re) { - const tagRe = `<${tag}(?:\\s+\\w+=".*?")*\\s*\\/>`; - re = new RegExp(`(?:${tagRe}\\s*)*${tagRe}`, 'g'); - tagsRegExps.set(tag, re); - } - return re; + let re = tagsRegExps.get(tag); + if (!re) { + const tagRe = `<${tag}(?:\\s+\\w+=".*?")*\\s*\\/>`; + re = new RegExp(`(?:${tagRe}\\s*)*${tagRe}`, 'g'); + tagsRegExps.set(tag, re); + } + return re; } function replaceXML(source, tag, newXML) { - let pos; - let re = createTagsRegexp(tag); - source = source.replace(re, (match, index) => { - if (pos === undefined) { - pos = index; - } - return ''; - }); - if (pos === undefined) { - throw new Error(`${re}: <${tag} /> was not found in ${source}`); - } - return source.slice(0, pos) + newXML + source.slice(pos); + let pos, indent; + let re = createTagsRegexp(tag); + + source = source.replace(re, (match, index) => { + if (source.lastIndexOf('', index)) { + // inside a comment + return match; + } + if (pos === undefined) { + pos = index; + indent = source.slice(source.lastIndexOf('\n', index) + 1, index); + } + return ''; + }); + + if (pos === undefined) { + throw new Error(`${re}: <${tag} /> was not found in ${source}`); + } + + return source.slice(0, pos) + newXML.join('\n' + indent) + source.slice(pos); } const files = readDir(rulesDir) - .tap(rules => { - bar = new ProgressBar(':bar', { total: rules.length, stream: process.stdout }); - }) - .sequence() - .filter(name => name.endsWith('.xml')); + .sequence() + .filter(name => name.endsWith('.xml')); const sources = files.fork() - .map(name => readFile(`${rulesDir}/${name}`, 'utf-8')) - .parallel(10); + .map(name => readFile(`${rulesDir}/${name}`, 'utf-8')) + .parallel(10); const rules = sources.fork() - .flatMap(parseXML) - .errors((err, push) => { - push(null, { err }); - }) - .zip(files.fork()) - .map(([ { ruleset, err }, name ]) => { - if (err) { - err.message += ` (${name})`; - this.emit('error', err); - } else { - return ruleset; - } - }); + .flatMap(parseXML) + .errors((err, push) => { + push(null, { err }); + }) + .zip(files.fork()) + .map(([ { ruleset, err }, name ]) => { + if (err) { + err.message += ` (${name})`; + this.emit('error', err); + } else { + return ruleset; + } + }); function isTrivial(rule) { - return rule.from === '^http:' && rule.to === 'https:'; + return rule.from === '^http:' && rule.to === 'https:'; } files.fork().zipAll([ sources.fork(), rules ]).map(([name, source, ruleset]) => { - bar.tick(); + function createTag(tagName, colour, print) { + return (strings, ...values) => { + let result = `[${tagName}] ${chalk.bold(name)}: ${strings[0]}`; + for (let i = 1; i < strings.length; i++) { + let value = values[i - 1]; + if (value instanceof Set) { + value = Array.from(value); + } + value = Array.isArray(value) ? value.join(', ') : value.toString(); + result += chalk.blue(value) + strings[i]; + } + print(colour(result)); + }; + } + + const warn = createTag('WARN', chalk.yellow, console.warn); + const info = createTag('INFO', chalk.green, console.info); + const fail = createTag('FAIL', chalk.red, console.error); + + let targets = ruleset.target.map(target => target.$.host); + let securecookies = ruleset.securecookie ? ruleset.securecookie.map(sc => sc.$) : new Array(); + let rules = ruleset.rule.map(rule => rule.$); + + if (rules.length === 1 && isTrivial(rules[0])) { + return; + } - let target = ruleset.target.map(target => target.$.host); - let rule = ruleset.rule.map(rule => rule.$); + let targetRe = new RegExp(`^(?:${targets.map(target => target.replace(/\./g, '\\.').replace(/\*/g, '.*')).join('|')})$`); + let domains = new Set(); - if (rule.length === 1 && isTrivial(rule[0])) { - return; + function isStatic(rule) { + if (isTrivial(rule)) { + for (let target of targets) { + domains.add(target); + } + return true; + } + + const { from, to } = rule; + const fromRe = new RegExp(from); + let localDomains = new Set(); + let unknownDomains = new Set(); + let nonTrivialUrls = new Set(); + let suspiciousStrings = new Set(); + + try { + explodeRegExp(from, url => { + let parsed = url.match(/^http(s?):\/\/(.+?)(?::(\d+))?\/(.*)$/); + if (!parsed) { + suspiciousStrings.add(url); + return; + } + let [, secure, host, port = '80', path] = parsed; + if (!targetRe.test(host)) { + unknownDomains.add(host); + } else if (!secure && port === '80' && path === '*' && url.replace(fromRe, to) === url.replace(/^http:/, 'https:')) { + localDomains.add(host); + } else { + nonTrivialUrls.add(url); } + }); + } catch (e) { + if (!(e instanceof UnsupportedRegExp)) { + throw e; + } + if (e.message === '/*' || e.message === '/+') { + fail`Suspicious ${e.message} while traversing ${from} => ${to}`; + } else { + warn`Unsupported regexp part ${e.message} while traversing ${from} => ${to}`; + } + return false; + } - let targetRe = new RegExp(`^${target.map(target => `(${target.replace(/\./g, '\\.').replace(/\*/g, '.*')})`).join('|')}$`); - let domains = []; - - function isStatic(rule) { - if (isTrivial(rule)) { - domains = domains.concat(target); - return true; - } - - const { from, to } = rule; - - const match = from.match(staticRegExp); - - if (!match) { - // console.error(from); - return false; - } - - const subDomains = match[1].split('|').map(item => item.slice(0, -2)); - const baseDomain = match[3].replace(/\\(.)/g, '$1'); - const localDomains = subDomains.map(sub => `${sub}.${baseDomain}`); - - if (to !== `https://$1${baseDomain}/`) { - console.error(from, to); - return false; - } - - let mismatch = false; - - for (const domain of localDomains) { - if (!targetRe.test(domain)) { - console.error(target, domain, from); - mismatch = true; - } - } - - if (mismatch) { - return false; - } - - if (match[2] || targetRe.test(baseDomain)) { - localDomains.unshift(baseDomain); - } - - domains = domains.concat(localDomains); - - return true; + if (suspiciousStrings.size > 0) { + fail`${from} matches ${suspiciousStrings} which don't look like URLs`; + } + + if (unknownDomains.size > 0) { + fail`${from} matches ${unknownDomains} which are not in targets ${targets}`; + } + + if (suspiciousStrings.size > 0 || unknownDomains.size > 0) { + return false; + } + + if (nonTrivialUrls.size > 0) { + if (localDomains.size > 0) { + warn`${from} => ${to} can trivialize ${localDomains} but not urls like ${nonTrivialUrls}`; + } + return false; + } + + for (let domain of localDomains) { + domains.add(domain); + } + + return true; + } + + if (!rules.every(isStatic)) return; + + domains = Array.from(domains); + + // It is assumed that if all securecookies are static, + // they can be safely ignored. + // + // A securecookie is called to be static either it is a trivial securecookie + // or ALL of the following conditions are satisfied: + // + // 1. securecookie.host match cookie.host from the beginning ^ to the end $. + // Otherwise, it might match subdomains/ partial patterns, thus a non-trivial + // securecookie. + // + // 2. securecookie.host will not throw an error when passed to explodeRegExp(). + // Otherwise, it might match patterns too complicated for our interests. + // + // 3. Each exploded securecookie.host should be included in ruleset.target/ + // exploded target. Otherwise, this ruleset is likely problematic itself. It + // is dangerous for a rewrite. + function isStaticCookie(securecookie) { + if (securecookie.host === '.+' && securecookie.name === '.+') { + return [true, false]; + } + + if (!securecookie.host.startsWith('^') || !securecookie.host.endsWith('$')) { + return [false, false]; + } + + let localDomains = new Set(); + let unsupportedDomains = new Set(); + + try { + explodeRegExp(securecookie.host, domain => { + if (domain.startsWith('.')) { + domain = domain.slice(1); } + localDomains.add(domain); + }); + } catch (e) { + if (!(e instanceof UnsupportedRegExp)) { + throw e; + } + warn`Unsupported regexp part ${e.message} while traversing securecookie : ${JSON.stringify(securecookie)}`; + return [false, false]; + } - if (!rule.every(isStatic)) return; - - domains = Array.from(new Set(domains)); + for (const domain of localDomains) { + if (domains.indexOf(domain) === -1) { + warn`Ruleset does not cover target ${domain} for securecookie : ${JSON.stringify(securecookie)}`; + unsupportedDomains.add(domain); + } + } - if (domains.slice().sort().join('\n') !== target.sort().join('\n')) { - source = replaceXML(source, 'target', domains.map(domain => ``).join('\n\t')); + // For cookies to be covered, there must be at least one rule covering the + // same domain. This is guaranteed by safeToSecureCookie(cookie) in rules.js + // + // Since securecookie.host will only match cookie.domain if there there is + // a rule covers cookie.domain. Given the target are trivial, cookie.domain + // cannot be anything other than domain.example.com and .domain.example.com + // (possibly with more leading dots) for a securecookie rule ever to take + // place. + // + // With condition (1) effective, securecookie.host should explode to either + // one of the aforementioned patterns. Otherwise, the securecookie rules + // will never be applied. Such dangling securecookie rules can be removed + // safely. + if (unsupportedDomains.size > 0) { + if (unsupportedDomains.size === localDomains.size) { + return [true, true]; + } + fail`Tag securecookie ${JSON.stringify(securecookie)} matches ${unsupportedDomains} which are not in targets ${targets}`; + } + return [true, false]; + } + + if (domains.slice().sort().join('\n') !== targets.sort().join('\n')) { + // For each securecookie rule, check if it is a static securecookie. + // If it is non-static, we do not trivialize the ruleset; Otherwise, + // we remove the securecookie if it contain only unsupported hosts. + // This removal is better done one by one to avoid side effects. + // Else if ALL securecookie rules are static, trivialize the targets. + for (const securecookie of securecookies) { + let [isStatic, shouldRemove] = isStaticCookie(securecookie); + + if (isStatic) { + if (shouldRemove) { + let scReSrc = `\n([\t ]*)[\t ]*\n`; + let scRe = new RegExp(scReSrc); + source = source.replace(scRe, ''); } + } else { + // Skip this ruleset as it contain non-static securecookies + return; + } + } + + source = replaceXML(source, 'target', domains.map(domain => ``)); + } - source = replaceXML(source, 'rule', ''); + source = replaceXML(source, 'rule', ['']); - return writeFile(`${rulesDir}/${name}`, source); + info`trivialized`; + return writeFile(`${rulesDir}/${name}`, source); }) -.filter(Boolean) -.parallel(10) -.reduce(0, count => count + 1) -.each(count => console.log(`Rewritten ${count} files.`)); + .filter(Boolean) + .parallel(10) + .reduce(0, count => count + 1) + .each(count => console.log(`Rewritten ${count} files.`)); diff --git a/utils/trivialize-rules/trivialize-targets.js b/utils/trivialize-rules/trivialize-targets.js new file mode 100644 index 000000000000..474c9a6a43b4 --- /dev/null +++ b/utils/trivialize-rules/trivialize-targets.js @@ -0,0 +1,270 @@ +'use strict'; + +const util = require('util'); +const path = require('path'); +const xml2js = require('xml2js'); + +const fs = require('graceful-fs'); +const readdir = util.promisify(fs.readdir); +const readFile = util.promisify(fs.readFile); +const parseString = util.promisify(xml2js.parseString); + +const chalk = require('chalk'); +const validUrl = require('valid-url'); +const escapeStringRegexp = require('escape-string-regexp'); +const { explodeRegExp, UnsupportedRegExp } = require('./explode-regexp'); + +const rulesDir = `${__dirname}/../../src/chrome/content/rules`; + +(async () => { + const filenames = (await readdir(rulesDir)).filter(fn => fn.endsWith('.xml')); + const filePromises = filenames.map(async filename => { + const createTag = (tagName, colour, print) => { + return (strings, ...values) => { + let result = `[${tagName}] ${chalk.bold(filename)}: ${strings[0]}`; + for (let i = 1; i < strings.length; i++) { + let value = values[i - 1]; + if (value instanceof Set) { + value = Array.from(value); + } + value = Array.isArray(value) ? value.join(', ') : value.toString(); + result += chalk.blue(value) + strings[i]; + } + print(colour(result)); + }; + }; + + const warn = createTag('WARN', chalk.yellow, console.warn); + const info = createTag('INFO', chalk.green, console.info); + const fail = createTag('FAIL', chalk.red, console.error); + + let content = await readFile(path.join(rulesDir, filename), 'utf8'); + const { ruleset } = await parseString(content); + + const rules = ruleset.rule.map(rule => rule.$); + const targets = ruleset.target.map(target => target.$.host); + + // make sure ruleset contains at least one left wildcard targets + if (!targets.some(target => target.startsWith('*.'))) { + return; + } + + // but does not contain right widcard targets + if (targets.some(target => target.endsWith('.*'))) { + return; + } + + // should not contain trivial rules + if (rules.some(rule => rule.from === '^http:' && rule.to === 'https:')) { + return; + } + + const ruleToIsSimpleMap = new Map(); + const ruleToIsSnappingMap = new Map(); + + const targetToSupportedExplodedDomainsMap = new Map(); + + const explodedDomains = new Set(); + const unsupportedExplodedDomains = new Set(); + const unusedTargets = new Set(); + + // (1) We check if all rules can be exploded to valid urls + // (a) if true, continue to (2) + // (b) if we cannot trivialize targets for this ruleset, skip + const isExplosiveRewrite = rule => { + const explodedUrls = []; + + try { + explodeRegExp(rule.from, url => explodedUrls.push(url)); + } catch (e) { + // we are getting into runtime error, log and exit + if (!(e instanceof UnsupportedRegExp)) { + fail(e.message); + process.exit(1); + } + return false; + } + + // make sure each exploded URL is valid + if (!explodedUrls.every(url => validUrl.isUri(url))) { + return false; + } + + let isSimpleToAllExplodedUrls = true; + let isSnappingToSomeExplodedUrls = false; + + for (const url of explodedUrls) { + const { protocol, hostname, pathname } = new URL(url); + + // if a rule do not rewrite all path for any URL, it is not a simple rule + // i.e. a rule is simple only if it rewrite all path for all URLs + if (!(protocol === 'http:' && pathname === '/*')) { + isSimpleToAllExplodedUrls = false; + } + + // if a rule is snapping to any URL, it is a snapping rule + // where a rule is snapping to a URL if it change the domain + // e.g. + if ( + url.replace(new RegExp(rule.from), rule.to) !== + url.replace(/^http:/, 'https:') + ) { + isSnappingToSomeExplodedUrls = true; + } + + // store a collection of exploded domains globally + explodedDomains.add(hostname); + } + + ruleToIsSimpleMap.set(rule, isSimpleToAllExplodedUrls); + ruleToIsSnappingMap.set(rule, isSnappingToSomeExplodedUrls); + return true; + }; + + if (!rules.every(isExplosiveRewrite)) { + return; + } + + // (2) We check if all the exploded domains are covered by the targets + // (a) if true, continue to (3) + // (b) some exploded domains are not covered by the targets, + // it is not safe to rewrite ruleset to include the + // exploded domains. skipping + const isSupported = domain => { + if (targets.includes(domain)) { + // do not map non-wildcard targets to exploded domains + // otherwise, it will introduce unnecessary rewrites + targetToSupportedExplodedDomainsMap.delete(domain); + return true; + } + + // this part follows the implementation in rules.js + const segments = domain.split('.'); + for (let i = 1; i <= segments.length - 2; ++i) { + const tmp = '*.' + segments.slice(i, segments.length).join('.'); + if (targets.includes(tmp)) { + targetToSupportedExplodedDomainsMap.get(tmp).push(domain); + return true; + } + } + unsupportedExplodedDomains.add(domain); + return false; + }; + + // initially, assume each target doesn't support any exploded domain + for (const target of targets) { + targetToSupportedExplodedDomainsMap.set(target, []); + } + + if (![...explodedDomains].every(domain => isSupported(domain))) { + warn`ruleset rewrites domains ${[ + ...unsupportedExplodedDomains + ]} unsupported by ${targets}`; + return; + } + + // (3) We check to make sure all targets are covered by rewrites + // (a) if true, continue to (4) + // (b) if some targets are not covered by any rewrites, this + // doesn't affect our works trivializing the targets, but + // we should give a warning and then proceed to (4) + for (const target of targets) { + const supportedExplodedDomains = targetToSupportedExplodedDomainsMap.get(target); + if (supportedExplodedDomains && supportedExplodedDomains.length === 0) { + // prepare the warning message here + unusedTargets.add(target); + // make sure we don't remove these targets when performing rewrites + targetToSupportedExplodedDomainsMap.delete(target); + } + } + + if (unusedTargets.size > 0) { + warn`ruleset contains targets ${[ + ...unusedTargets + ]} not applied to any rewrites`; + } + + // (4) Replace non-trivial targets with exploded domains + let indent = null; + + for (const [key, value] of targetToSupportedExplodedDomainsMap) { + const escapedKey = escapeStringRegexp(key); + const regexSource = `\n([\t ]*)[\t ]*\n`; + const regex = new RegExp(regexSource); + + const matches = content.match(regex); + if (!matches) { + // should be unreachable. + warn`unexpected regular expression error`; + process.exit(1); + } + + [, indent] = matches; + const sub = + value.map(v => `\n${indent}`).join('') + '\n'; + content = content.replace(regex, sub); + } + + // (5) Check if we can trivialize the rules. Need to satisfy all below conditions: + // i) there is no unused target, i.e. unusedTargets.size == 0 + // ii) every rule is "simple" as in ruleToIsSimpleMap + // iii) at least one rule is a non-snapping rule + // + // (a) if all of the conditions are met, append a trivial rule after all + // existing rules; and remove the non-snapping rules. + // (b) otherwise, do not trivialize the rules + const condition1 = unusedTargets.size === 0; + const condition2 = [...ruleToIsSimpleMap.entries()].every(([, value]) => value); + const condition3 = [...ruleToIsSnappingMap.entries()].some(([, value]) => !value); + + if (condition1 && condition2 && condition3) { + // append trivial rule to the end of current ruleset + if ((content.match(/\n<\/ruleset>/) || []).length !== 1) { + fail`ruleset contains zero or more than one tag`; + return; + } else { + content = content.replace( + /\n<\/ruleset>/, + `\n${indent}\n` + ); + } + + // remove all non-snapping rules + const nonSnappingRules = [...ruleToIsSnappingMap.entries()] + .filter(([, value]) => value === false) + .map(([key]) => key); + + for (const rule of nonSnappingRules) { + const escapedRuleFrom = escapeStringRegexp(rule.from); + const escapedRuleTo = escapeStringRegexp(rule.to); + + const regexSource = `\n([\t ]*)[\t ]*\n`; + const regex = new RegExp(regexSource); + + const matches = content.match(regex); + if (!matches) { + // should be unreachable. + warn`unexpected regular expression error`; + process.exit(1); + } + + [, indent] = matches; + content = content.replace(regex, '\n'); + } + } + + return new Promise((resolve, reject) => { + fs.writeFile(path.join(rulesDir, filename), content, 'utf8', err => { + if (err) { + reject(err); + } + resolve(); + }); + }); + }); + + // use for-loop to await too many file opened error + for (const fp of filePromises) { + await fp.catch(error => console.log(error)); + } +})(); diff --git a/utils/validate.sh b/utils/validate.sh deleted file mode 100755 index ddad0b70710f..000000000000 --- a/utils/validate.sh +++ /dev/null @@ -1,49 +0,0 @@ -#!/bin/bash -# Validates rulesets, using both trivial-validate.py (slower, can make more -# complicated assertions) and xmllint with our custom RELAX NG grammar that -# specifies the format of ruleset XML (faster, more limited). -set -o errexit -o pipefail -cd $(dirname $0) - -# =============== BEGIN VALIDATION ================ -# Unless we're in a hurry, validate the ruleset library & locales - -die() { - echo >&2 "ERROR:" "$@" - exit 1 -} - -if python2.7 trivial-validate.py --quiet >&2 -then - echo Validation of included rulesets completed. >&2 - echo >&2 -else - die "Validation of rulesets failed." -fi - -# Check for xmllint. -type xmllint >/dev/null || die "xmllint not available" - -GRAMMAR="relaxng.xml" -# xmllint spams stderr with " validates, even with the --noout flag, -# so we capture only the results that do not contain 'validates' -validate_grammar() { - find ../src/chrome/content/rules -name "*.xml" | \ - xargs xmllint --noout --relaxng $GRAMMAR -} -grammar_errors=$(validate_grammar 2>&1 | grep -v "validates" || true) -if [ -z "$grammar_errors" ] -then - echo Validation of rulesets against $GRAMMAR succeeded. >&2 -else - echo >&2 "$grammar_errors" - # One very common error is to mess up rule attributes, so we check for - # this explicitly. - if [[ $grammar_errors == *"Element rule failed to validate attributes"* ]] - then - echo "Two very common reasons for this are the following:" - echo "- Missing caret (^) in 'from' attribute: it should be \"^http:\" and not \"http:\"." - echo "- Missing trailing slashes in 'from' or 'to' when specifying full hostnames: it should be \"https://eff.org/\" and not \"https://eff.org\"." - fi - die "Validation of rulesets against $GRAMMAR failed." -fi diff --git a/utils/zipfile_deterministic.py b/utils/zipfile_deterministic.py index 46d91b26116c..5c931f3b6a47 100644 --- a/utils/zipfile_deterministic.py +++ b/utils/zipfile_deterministic.py @@ -1,18 +1,27 @@ -#!/usr/bin/env python2.7 +#!/usr/bin/env python3 """ -A fork of the Zipfile module to read and write ZIP files from Python 2.6. -This module aims to create deterministic, byte-for-byte identical zip files. +A fork of the Python 3.6 zipfile module, modified to remove sources of entropy +and ensure bit-by-bit determinism for the output file. -Author: Yan Zhu, yan@mit.edu +Author: William Budington , derived from similar changes written +by Yan Zhu . -Derived from Python 2.6, Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006 -Python Software Foundation; All Rights Reserved, License at -http://www.python.org/download/releases/2.6/license/ +Derived from Python 3.6, Copyright © 2001-2018 Python Software Foundation; All +Rights Reserved """ +import io +import os +import importlib.util +import sys +import stat +import shutil +import struct +import binascii -import struct, os, time, sys, shutil -import binascii, cStringIO, stat -import unicodedata +try: + import threading +except ImportError: + import dummy_threading as threading try: import zlib # We may need its compression method @@ -21,10 +30,21 @@ zlib = None crc32 = binascii.crc32 -__all__ = ["BadZipfile", "error", "ZIP_STORED", "ZIP_DEFLATED", "is_zipfile", - "ZipInfo", "ZipFile", "PyZipFile", "LargeZipFile" ] +try: + import bz2 # We may need its compression method +except ImportError: + bz2 = None + +try: + import lzma # We may need its compression method +except ImportError: + lzma = None + +__all__ = ["BadZipFile", "BadZipfile", "error", + "ZIP_STORED", "ZIP_DEFLATED", "ZIP_BZIP2", "ZIP_LZMA", + "is_zipfile", "ZipInfo", "ZipFile", "PyZipFile", "LargeZipFile"] -class BadZipfile(Exception): +class BadZipFile(Exception): pass @@ -34,18 +54,28 @@ class LargeZipFile(Exception): and those extensions are disabled. """ -error = BadZipfile # The exception raised by this module +error = BadZipfile = BadZipFile # Pre-3.2 compatibility names + ZIP64_LIMIT = (1 << 31) - 1 -ZIP_FILECOUNT_LIMIT = 1 << 16 +ZIP_FILECOUNT_LIMIT = (1 << 16) - 1 ZIP_MAX_COMMENT = (1 << 16) - 1 # constants for Zip file compression methods ZIP_STORED = 0 ZIP_DEFLATED = 8 +ZIP_BZIP2 = 12 +ZIP_LZMA = 14 # Other ZIP compression methods not supported -DEFAULT_DATE = (1980,1,1,0,0,0) # hard-coded timestamp +DEFAULT_VERSION = 20 +ZIP64_VERSION = 45 +BZIP2_VERSION = 46 +LZMA_VERSION = 63 +# we recognize (but not necessarily support) all features up to that version +MAX_EXTRACT_VERSION = 63 + +DEFAULT_DATE = (2013,12,1,0,0,0) # hard-coded timestamp # Below are some formats and associated data for reading/writing headers using # the struct module. The names and structures of headers/records are those used @@ -55,8 +85,8 @@ class LargeZipFile(Exception): # The "end of central directory" structure, magic number, size, and indices # (section V.I in the format document) -structEndArchive = "<4s4H2LH" -stringEndArchive = "PK\005\006" +structEndArchive = b"<4s4H2LH" +stringEndArchive = b"PK\005\006" sizeEndCentDir = struct.calcsize(structEndArchive) _ECD_SIGNATURE = 0 @@ -75,7 +105,7 @@ class LargeZipFile(Exception): # The "central directory" structure, magic number, size, and indices # of entries in the structure (section V.F in the format document) structCentralDir = "<4s4B4HL2L5H2L" -stringCentralDir = "PK\001\002" +stringCentralDir = b"PK\001\002" sizeCentralDir = struct.calcsize(structCentralDir) # indexes of entries in the central directory structure @@ -102,7 +132,7 @@ class LargeZipFile(Exception): # The "local file header" structure, magic number, size, and indices # (section V.A in the format document) structFileHeader = "<4s2B4HL2L2H" -stringFileHeader = "PK\003\004" +stringFileHeader = b"PK\003\004" sizeFileHeader = struct.calcsize(structFileHeader) _FH_SIGNATURE = 0 @@ -120,13 +150,13 @@ class LargeZipFile(Exception): # The "Zip64 end of central directory locator" structure, magic number, and size structEndArchive64Locator = "<4sLQL" -stringEndArchive64Locator = "PK\x06\x07" +stringEndArchive64Locator = b"PK\x06\x07" sizeEndCentDir64Locator = struct.calcsize(structEndArchive64Locator) # The "Zip64 end of central directory" record, magic number, size, and indices # (section V.G in the format document) structEndArchive64 = "<4sQ2H2L4Q" -stringEndArchive64 = "PK\x06\x06" +stringEndArchive64 = b"PK\x06\x06" sizeEndCentDir64 = struct.calcsize(structEndArchive64) _CD64_SIGNATURE = 0 @@ -140,50 +170,59 @@ class LargeZipFile(Exception): _CD64_DIRECTORY_SIZE = 8 _CD64_OFFSET_START_CENTDIR = 9 -def normalize_unicode(filename): - """For dealing with different unicode normalizations in filenames.""" - return unicodedata.normalize('NFC', unicode(filename, 'utf-8')).encode('utf-8') - -def standardize_filename(filename): - """Get OS-independent form of filename""" - # This is used to ensure paths in generated ZIP files always use - # forward slashes as the directory separator, as required by the - # ZIP format specification. - if os.sep != "/" and os.sep in filename: - filename = filename.replace(os.sep, "/") - return normalize_unicode(filename) +def _check_zipfile(fp): + try: + if _EndRecData(fp): + return True # file has correct magic number + except OSError: + pass + return False def is_zipfile(filename): - """Quickly see if file is a ZIP file by checking the magic number.""" + """Quickly see if a file is a ZIP file by checking the magic number. + + The filename argument may be a file or file-like object too. + """ + result = False try: - fpin = open(filename, "rb") - endrec = _EndRecData(fpin) - fpin.close() - if endrec: - return True # file has correct magic number - except IOError: + if hasattr(filename, "read"): + result = _check_zipfile(fp=filename) + else: + with open(filename, "rb") as fp: + result = _check_zipfile(fp) + except OSError: pass - return False + return result def _EndRecData64(fpin, offset, endrec): """ Read the ZIP64 end-of-archive records and use that to update endrec """ - fpin.seek(offset - sizeEndCentDir64Locator, 2) + try: + fpin.seek(offset - sizeEndCentDir64Locator, 2) + except OSError: + # If the seek fails, the file is not large enough to contain a ZIP64 + # end-of-archive record, so just return the end record we were given. + return endrec + data = fpin.read(sizeEndCentDir64Locator) + if len(data) != sizeEndCentDir64Locator: + return endrec sig, diskno, reloff, disks = struct.unpack(structEndArchive64Locator, data) if sig != stringEndArchive64Locator: return endrec if diskno != 0 or disks != 1: - raise BadZipfile("zipfiles that span multiple disks are not supported") + raise BadZipFile("zipfiles that span multiple disks are not supported") # Assume no 'zip64 extensible data' fpin.seek(offset - sizeEndCentDir64Locator - sizeEndCentDir64, 2) data = fpin.read(sizeEndCentDir64) + if len(data) != sizeEndCentDir64: + return endrec sig, sz, create_version, read_version, disk_num, disk_dir, \ - dircount, dircount2, dirsize, diroffset = \ - struct.unpack(structEndArchive64, data) + dircount, dircount2, dirsize, diroffset = \ + struct.unpack(structEndArchive64, data) if sig != stringEndArchive64: return endrec @@ -213,16 +252,18 @@ def _EndRecData(fpin): # file if this is the case). try: fpin.seek(-sizeEndCentDir, 2) - except IOError: + except OSError: return None data = fpin.read() - if data[0:4] == stringEndArchive and data[-2:] == "\000\000": + if (len(data) == sizeEndCentDir and + data[0:4] == stringEndArchive and + data[-2:] == b"\000\000"): # the signature is correct and there's no comment, unpack structure endrec = struct.unpack(structEndArchive, data) endrec=list(endrec) # Append a blank comment and record start offset - endrec.append("") + endrec.append(b"") endrec.append(filesize - sizeEndCentDir) # Try to read the "Zip64 end of central directory" structure @@ -240,46 +281,47 @@ def _EndRecData(fpin): if start >= 0: # found the magic number; attempt to unpack and interpret recData = data[start:start+sizeEndCentDir] + if len(recData) != sizeEndCentDir: + # Zip file is corrupted. + return None endrec = list(struct.unpack(structEndArchive, recData)) - comment = data[start+sizeEndCentDir:] - # check that comment length is correct - if endrec[_ECD_COMMENT_SIZE] == len(comment): - # Append the archive comment and start offset - endrec.append(comment) - endrec.append(maxCommentStart + start) + commentSize = endrec[_ECD_COMMENT_SIZE] #as claimed by the zip file + comment = data[start+sizeEndCentDir:start+sizeEndCentDir+commentSize] + endrec.append(comment) + endrec.append(maxCommentStart + start) - # Try to read the "Zip64 end of central directory" structure - return _EndRecData64(fpin, maxCommentStart + start - filesize, - endrec) + # Try to read the "Zip64 end of central directory" structure + return _EndRecData64(fpin, maxCommentStart + start - filesize, + endrec) # Unable to find a valid end of central directory structure - return + return None class ZipInfo (object): """Class with attributes describing each file in the ZIP archive.""" __slots__ = ( - 'orig_filename', - 'filename', - 'date_time', - 'compress_type', - 'comment', - 'extra', - 'create_system', - 'create_version', - 'extract_version', - 'reserved', - 'flag_bits', - 'volume', - 'internal_attr', - 'external_attr', - 'header_offset', - 'CRC', - 'compress_size', - 'file_size', - '_raw_time', - ) + 'orig_filename', + 'filename', + 'date_time', + 'compress_type', + 'comment', + 'extra', + 'create_system', + 'create_version', + 'extract_version', + 'reserved', + 'flag_bits', + 'volume', + 'internal_attr', + 'external_attr', + 'header_offset', + 'CRC', + 'compress_size', + 'file_size', + '_raw_time', + ) def __init__(self, filename="NoName", date_time=DEFAULT_DATE): self.orig_filename = filename # Original file name in archive @@ -292,19 +334,23 @@ def __init__(self, filename="NoName", date_time=DEFAULT_DATE): # This is used to ensure paths in generated ZIP files always use # forward slashes as the directory separator, as required by the # ZIP format specification. - self.filename = standardize_filename(filename) # Normalized file name + self.filename = filename # Normalized file name self.date_time = date_time # year, month, day, hour, min, sec + + if date_time[0] < 1980: + raise ValueError('ZIP does not support timestamps before 1980') + # Standard values: self.compress_type = ZIP_STORED # Type of compression for the file - self.comment = "" # Comment for each file - self.extra = "" # ZIP extra data + self.comment = b"" # Comment for each file + self.extra = b"" # ZIP extra data if sys.platform == 'win32': self.create_system = 0 # System which created ZIP archive else: # Assume everything else is unix-y self.create_system = 3 # System which created ZIP archive - self.create_version = 20 # Version which created ZIP archive - self.extract_version = 20 # Version needed to extract archive + self.create_version = DEFAULT_VERSION # Version which created ZIP archive + self.extract_version = DEFAULT_VERSION # Version needed to extract archive self.reserved = 0 # Must be zero self.flag_bits = 0 # ZIP flag bits self.volume = 0 # Volume number of file header @@ -316,7 +362,29 @@ def __init__(self, filename="NoName", date_time=DEFAULT_DATE): # compress_size Size of the compressed file # file_size Size of the uncompressed file - def FileHeader(self): + def __repr__(self): + result = ['<%s filename=%r' % (self.__class__.__name__, self.filename)] + if self.compress_type != ZIP_STORED: + result.append(' compress_type=%s' % + compressor_names.get(self.compress_type, + self.compress_type)) + hi = self.external_attr >> 16 + lo = self.external_attr & 0xFFFF + if hi: + result.append(' filemode=%r' % stat.filemode(hi)) + if lo: + result.append(' external_attr=%#x' % lo) + isdir = self.is_dir() + if not isdir or self.file_size: + result.append(' file_size=%r' % self.file_size) + if ((not isdir or self.compress_size) and + (self.compress_type != ZIP_STORED or + self.file_size != self.compress_size)): + result.append(' compress_size=%r' % self.compress_size) + result.append('>') + return ''.join(result) + + def FileHeader(self, zip64=None): """Return the per-file header as a string.""" dt = self.date_time dosdate = (dt[0] - 1980) << 9 | dt[1] << 5 | dt[2] @@ -331,45 +399,48 @@ def FileHeader(self): extra = self.extra + min_version = 0 + if zip64 is None: + zip64 = file_size > ZIP64_LIMIT or compress_size > ZIP64_LIMIT + if zip64: + fmt = ' ZIP64_LIMIT or compress_size > ZIP64_LIMIT: + if not zip64: + raise LargeZipFile("Filesize would require ZIP64 extensions") # File is larger than what fits into a 4 byte integer, # fall back to the ZIP64 extension - fmt = '= 4: tp, ln = unpack('= 24: @@ -381,26 +452,62 @@ def _decodeExtra(self): elif ln == 0: counts = () else: - raise RuntimeError, "Corrupt extra field %s"%(ln,) + raise BadZipFile("Corrupt extra field %04x (size=%d)" % (tp, ln)) idx = 0 # ZIP64 extension (large files and/or large archives) - if self.file_size in (0xffffffffffffffffL, 0xffffffffL): + if self.file_size in (0xffffffffffffffff, 0xffffffff): self.file_size = counts[idx] idx += 1 - if self.compress_size == 0xFFFFFFFFL: + if self.compress_size == 0xFFFFFFFF: self.compress_size = counts[idx] idx += 1 - if self.header_offset == 0xffffffffL: + if self.header_offset == 0xffffffff: old = self.header_offset self.header_offset = counts[idx] idx+=1 extra = extra[ln+4:] + @classmethod + def from_file(cls, filename, arcname=None, date_time=DEFAULT_DATE): + """Construct an appropriate ZipInfo for a file on the filesystem. + + filename should be the path to a file or directory on the filesystem. + + arcname is the name which it will have within the archive (by default, + this will be the same as filename, but without a drive letter and with + leading path separators removed). + """ + if isinstance(filename, os.PathLike): + filename = os.fspath(filename) + st = os.stat(filename) + isdir = stat.S_ISDIR(st.st_mode) + # Create ZipInfo instance to store file information + if arcname is None: + arcname = filename + arcname = os.path.normpath(os.path.splitdrive(arcname)[1]) + while arcname[0] in (os.sep, os.altsep): + arcname = arcname[1:] + if isdir: + arcname += '/' + zinfo = cls(arcname, date_time) + zinfo.external_attr = 25165824 # Unix attributes, hard-codeds + if isdir: + zinfo.file_size = 0 + zinfo.external_attr |= 0x10 # MS-DOS directory flag + else: + zinfo.file_size = st.st_size + + return zinfo + + def is_dir(self): + """Return True if this archive member is a directory.""" + return self.filename[-1] == '/' + class _ZipDecrypter: """Class to handle decryption of files stored within a ZIP archive. @@ -433,13 +540,15 @@ def _GenerateCRCTable(): crc = ((crc >> 1) & 0x7FFFFFFF) table[i] = crc return table - crctable = _GenerateCRCTable() + crctable = None def _crc32(self, ch, crc): """Compute the CRC32 primitive on one byte.""" - return ((crc >> 8) & 0xffffff) ^ self.crctable[(crc ^ ord(ch)) & 0xff] + return ((crc >> 8) & 0xffffff) ^ self.crctable[(crc ^ ch) & 0xff] def __init__(self, pwd): + if _ZipDecrypter.crctable is None: + _ZipDecrypter.crctable = _ZipDecrypter._GenerateCRCTable() self.key0 = 305419896 self.key1 = 591751049 self.key2 = 878082192 @@ -450,220 +559,496 @@ def _UpdateKeys(self, c): self.key0 = self._crc32(c, self.key0) self.key1 = (self.key1 + (self.key0 & 255)) & 4294967295 self.key1 = (self.key1 * 134775813 + 1) & 4294967295 - self.key2 = self._crc32(chr((self.key1 >> 24) & 255), self.key2) + self.key2 = self._crc32((self.key1 >> 24) & 255, self.key2) def __call__(self, c): """Decrypt a single character.""" - c = ord(c) + assert isinstance(c, int) k = self.key2 | 2 c = c ^ (((k * (k^1)) >> 8) & 255) - c = chr(c) self._UpdateKeys(c) return c -class ZipExtFile: + +class LZMACompressor: + + def __init__(self): + self._comp = None + + def _init(self): + props = lzma._encode_filter_properties({'id': lzma.FILTER_LZMA1}) + self._comp = lzma.LZMACompressor(lzma.FORMAT_RAW, filters=[ + lzma._decode_filter_properties(lzma.FILTER_LZMA1, props) + ]) + return struct.pack('= 0: - nllen = len(sep) - return nl, nllen - - return nl, nllen - - def readline(self, size = -1): - """Read a line with approx. size. If size is negative, - read a whole line. - """ - if size < 0: - size = 2147483647 - elif size == 0: - return '' + if hasattr(zipinfo, 'CRC'): + self._expected_crc = zipinfo.CRC + self._running_crc = crc32(b'') + else: + self._expected_crc = None + + def __repr__(self): + result = ['<%s.%s' % (self.__class__.__module__, + self.__class__.__qualname__)] + if not self.closed: + result.append(' name=%r mode=%r' % (self.name, self.mode)) + if self._compress_type != ZIP_STORED: + result.append(' compress_type=%s' % + compressor_names.get(self._compress_type, + self._compress_type)) + else: + result.append(' [closed]') + result.append('>') + return ''.join(result) - # check for a newline already in buffer - nl, nllen = self._checkfornewline() + def readline(self, limit=-1): + """Read and return a line from the stream. - if nl >= 0: - # the next line was already in the buffer - nl = min(nl, size) - else: - # no line break in buffer - try to read more - size -= len(self.linebuffer) - while nl < 0 and size > 0: - buf = self.read(min(size, 100)) - if not buf: - break - self.linebuffer += buf - size -= len(buf) - - # check for a newline in buffer - nl, nllen = self._checkfornewline() - - # we either ran out of bytes in the file, or - # met the specified size limit without finding a newline, - # so return current buffer - if nl < 0: - s = self.linebuffer - self.linebuffer = '' - return s - - buf = self.linebuffer[:nl] - self.lastdiscard = self.linebuffer[nl:nl + nllen] - self.linebuffer = self.linebuffer[nl + nllen:] - - # line is always returned with \n as newline char (except possibly - # for a final incomplete line in the file, which is handled above). - return buf + "\n" - - def readlines(self, sizehint = -1): - """Return a list with all (following) lines. The sizehint parameter - is ignored in this implementation. + If limit is specified, at most limit bytes will be read. """ - result = [] - while True: - line = self.readline() - if not line: break - result.append(line) - return result - def read(self, size = None): - # act like file() obj and return empty string if size is 0 - if size == 0: - return '' - - # determine read size - bytesToRead = self.compress_size - self.bytes_read - - # adjust read size for encrypted files since the first 12 bytes - # are for the encryption/password information - if self.decrypter is not None: - bytesToRead -= 12 - - if size is not None and size >= 0: - if self.compress_type == ZIP_STORED: - lr = len(self.readbuffer) - bytesToRead = min(bytesToRead, size - lr) - elif self.compress_type == ZIP_DEFLATED: - if len(self.readbuffer) > size: - # the user has requested fewer bytes than we've already - # pulled through the decompressor; don't read any more - bytesToRead = 0 - else: - # user will use up the buffer, so read some more - lr = len(self.rawbuffer) - bytesToRead = min(bytesToRead, self.compreadsize - lr) - - # avoid reading past end of file contents - if bytesToRead + self.bytes_read > self.compress_size: - bytesToRead = self.compress_size - self.bytes_read - - # try to read from file (if necessary) - if bytesToRead > 0: - bytes = self.fileobj.read(bytesToRead) - self.bytes_read += len(bytes) - self.rawbuffer += bytes - - # handle contents of raw buffer - if self.rawbuffer: - newdata = self.rawbuffer - self.rawbuffer = '' - - # decrypt new data if we were given an object to handle that - if newdata and self.decrypter is not None: - newdata = ''.join(map(self.decrypter, newdata)) - - # decompress newly read data if necessary - if newdata and self.compress_type == ZIP_DEFLATED: - newdata = self.dc.decompress(newdata) - self.rawbuffer = self.dc.unconsumed_tail - if self.eof and len(self.rawbuffer) == 0: - # we're out of raw bytes (both from the file and - # the local buffer); flush just to make sure the - # decompressor is done - newdata += self.dc.flush() - # prevent decompressor from being used again - self.dc = None - - self.readbuffer += newdata - - - # return what the user asked for - if size is None or len(self.readbuffer) <= size: - bytes = self.readbuffer - self.readbuffer = '' + if limit < 0: + # Shortcut common case - newline found in buffer. + i = self._readbuffer.find(b'\n', self._offset) + 1 + if i > 0: + line = self._readbuffer[self._offset: i] + self._offset = i + return line + + return io.BufferedIOBase.readline(self, limit) + + def peek(self, n=1): + """Returns buffered bytes without advancing the position.""" + if n > len(self._readbuffer) - self._offset: + chunk = self.read(n) + if len(chunk) > self._offset: + self._readbuffer = chunk + self._readbuffer[self._offset:] + self._offset = 0 + else: + self._offset -= len(chunk) + + # Return up to 512 bytes to reduce allocation overhead for tight loops. + return self._readbuffer[self._offset: self._offset + 512] + + def readable(self): + return True + + def read(self, n=-1): + """Read and return up to n bytes. + If the argument is omitted, None, or negative, data is read and returned until EOF is reached.. + """ + if n is None or n < 0: + buf = self._readbuffer[self._offset:] + self._readbuffer = b'' + self._offset = 0 + while not self._eof: + buf += self._read1(self.MAX_N) + return buf + + end = n + self._offset + if end < len(self._readbuffer): + buf = self._readbuffer[self._offset:end] + self._offset = end + return buf + + n = end - len(self._readbuffer) + buf = self._readbuffer[self._offset:] + self._readbuffer = b'' + self._offset = 0 + while n > 0 and not self._eof: + data = self._read1(n) + if n < len(data): + self._readbuffer = data + self._offset = n + buf += data[:n] + break + buf += data + n -= len(data) + return buf + + def _update_crc(self, newdata): + # Update the CRC using the given data. + if self._expected_crc is None: + # No need to compute the CRC if we don't have a reference value + return + self._running_crc = crc32(newdata, self._running_crc) + # Check the CRC if we're at the end of the file + if self._eof and self._running_crc != self._expected_crc: + raise BadZipFile("Bad CRC-32 for file %r" % self.name) + + def read1(self, n): + """Read up to n bytes with at most one read() system call.""" + + if n is None or n < 0: + buf = self._readbuffer[self._offset:] + self._readbuffer = b'' + self._offset = 0 + while not self._eof: + data = self._read1(self.MAX_N) + if data: + buf += data + break + return buf + + end = n + self._offset + if end < len(self._readbuffer): + buf = self._readbuffer[self._offset:end] + self._offset = end + return buf + + n = end - len(self._readbuffer) + buf = self._readbuffer[self._offset:] + self._readbuffer = b'' + self._offset = 0 + if n > 0: + while not self._eof: + data = self._read1(n) + if n < len(data): + self._readbuffer = data + self._offset = n + buf += data[:n] + break + if data: + buf += data + break + return buf + + def _read1(self, n): + # Read up to n compressed bytes with at most one read() system call, + # decrypt and decompress them. + if self._eof or n <= 0: + return b'' + + # Read from file. + if self._compress_type == ZIP_DEFLATED: + ## Handle unconsumed data. + data = self._decompressor.unconsumed_tail + if n > len(data): + data += self._read2(n - len(data)) + else: + data = self._read2(n) + + if self._compress_type == ZIP_STORED: + self._eof = self._compress_left <= 0 + elif self._compress_type == ZIP_DEFLATED: + n = max(n, self.MIN_READ_SIZE) + data = self._decompressor.decompress(data, n) + self._eof = (self._decompressor.eof or + self._compress_left <= 0 and + not self._decompressor.unconsumed_tail) + if self._eof: + data += self._decompressor.flush() else: - bytes = self.readbuffer[:size] - self.readbuffer = self.readbuffer[size:] + data = self._decompressor.decompress(data) + self._eof = self._decompressor.eof or self._compress_left <= 0 + + data = data[:self._left] + self._left -= len(data) + if self._left <= 0: + self._eof = True + self._update_crc(data) + return data + + def _read2(self, n): + if self._compress_left <= 0: + return b'' - return bytes + n = max(n, self.MIN_READ_SIZE) + n = min(n, self._compress_left) + data = self._fileobj.read(n) + self._compress_left -= len(data) + if not data: + raise EOFError + + if self._decrypter is not None: + data = bytes(map(self._decrypter, data)) + return data + + def close(self): + try: + if self._close_fileobj: + self._fileobj.close() + finally: + super().close() + + +class _ZipWriteFile(io.BufferedIOBase): + def __init__(self, zf, zinfo, zip64): + self._zinfo = zinfo + self._zip64 = zip64 + self._zipfile = zf + self._compressor = _get_compressor(zinfo.compress_type) + self._file_size = 0 + self._compress_size = 0 + self._crc = 0 + + @property + def _fileobj(self): + return self._zipfile.fp + + def writable(self): + return True + + def write(self, data): + if self.closed: + raise ValueError('I/O operation on closed file.') + nbytes = len(data) + self._file_size += nbytes + self._crc = crc32(data, self._crc) + if self._compressor: + data = self._compressor.compress(data) + self._compress_size += len(data) + self._fileobj.write(data) + return nbytes + + def close(self): + if self.closed: + return + super().close() + # Flush any data from the compressor, and update header info + if self._compressor: + buf = self._compressor.flush() + self._compress_size += len(buf) + self._fileobj.write(buf) + self._zinfo.compress_size = self._compress_size + else: + self._zinfo.compress_size = self._file_size + self._zinfo.CRC = self._crc + self._zinfo.file_size = self._file_size + + # Write updated header info + if self._zinfo.flag_bits & 0x08: + # Write CRC and file sizes after the file data + fmt = ' ZIP64_LIMIT: + raise RuntimeError('File size unexpectedly exceeded ZIP64 ' + 'limit') + if self._compress_size > ZIP64_LIMIT: + raise RuntimeError('Compressed size unexpectedly exceeded ' + 'ZIP64 limit') + # Seek backwards and write file header (which will now include + # correct CRC and file sizes) + + # Preserve current position in file + self._zipfile.start_dir = self._fileobj.tell() + self._fileobj.seek(self._zinfo.header_offset) + self._fileobj.write(self._zinfo.FileHeader(self._zip64)) + self._fileobj.seek(self._zipfile.start_dir) + + self._zipfile._writing = False + + # Successfully written: Add file to our caches + self._zipfile.filelist.append(self._zinfo) + self._zipfile.NameToInfo[self._zinfo.filename] = self._zinfo class ZipFile: """ Class with methods to open, read, write, close, list zip files. - z = ZipFile(file, mode="r", compression=ZIP_STORED, allowZip64=False) + z = ZipFile(file, mode="r", compression=ZIP_STORED, allowZip64=True) file: Either the path to the file, or a file-like object. If it is a path, the file will be opened and closed by ZipFile. - mode: The mode can be either read "r", write "w" or append "a". - compression: ZIP_STORED (no compression) or ZIP_DEFLATED (requires zlib). + mode: The mode can be either read 'r', write 'w', exclusive create 'x', + or append 'a'. + compression: ZIP_STORED (no compression), ZIP_DEFLATED (requires zlib), + ZIP_BZIP2 (requires bz2) or ZIP_LZMA (requires lzma). allowZip64: if True ZipFile will create files with ZIP64 extensions when needed, otherwise it will raise an exception when this would be necessary. @@ -671,20 +1056,15 @@ class ZipFile: """ fp = None # Set here since __del__ checks it + _windows_illegal_name_trans_table = None - def __init__(self, file, mode="r", compression=ZIP_STORED, allowZip64=False): - """Open the ZIP file with mode read "r", write "w" or append "a".""" - if mode not in ("r", "w", "a"): - raise RuntimeError('ZipFile() requires mode "r", "w", or "a"') - - if compression == ZIP_STORED: - pass - elif compression == ZIP_DEFLATED: - if not zlib: - raise RuntimeError,\ - "Compression requires the (missing) zlib module" - else: - raise RuntimeError, "That compression method is not supported" + def __init__(self, file, mode="r", compression=ZIP_STORED, allowZip64=True): + """Open the ZIP file with mode read 'r', write 'w', exclusive create 'x', + or append 'a'.""" + if mode not in ('r', 'w', 'x', 'a'): + raise ValueError("ZipFile requires mode 'r', 'w', 'x', or 'a'") + + _check_compression(compression) self._allowZip64 = allowZip64 self._didModify = False @@ -692,67 +1072,113 @@ def __init__(self, file, mode="r", compression=ZIP_STORED, allowZip64=False): self.NameToInfo = {} # Find file info given name self.filelist = [] # List of ZipInfo instances for archive self.compression = compression # Method of compression - self.mode = key = mode.replace('b', '')[0] + self.mode = mode self.pwd = None - self.comment = '' + self._comment = b'' # Check if we were passed a file-like object - if isinstance(file, basestring): + if isinstance(file, os.PathLike): + file = os.fspath(file) + if isinstance(file, str): + # No, it's a filename self._filePassed = 0 self.filename = file - modeDict = {'r' : 'rb', 'w': 'wb', 'a' : 'r+b'} - try: - self.fp = open(file, modeDict[mode]) - except IOError: - if mode == 'a': - mode = key = 'w' - self.fp = open(file, modeDict[mode]) - else: + modeDict = {'r' : 'rb', 'w': 'w+b', 'x': 'x+b', 'a' : 'r+b', + 'r+b': 'w+b', 'w+b': 'wb', 'x+b': 'xb'} + filemode = modeDict[mode] + while True: + try: + self.fp = io.open(file, filemode) + except OSError: + if filemode in modeDict: + filemode = modeDict[filemode] + continue raise + break else: self._filePassed = 1 self.fp = file self.filename = getattr(file, 'name', None) + self._fileRefCnt = 1 + self._lock = threading.RLock() + self._seekable = True + self._writing = False - if key == 'r': - self._GetContents() - elif key == 'w': - pass - elif key == 'a': - try: # See if file is a zip file - self._RealGetContents() - # seek to start of directory and overwrite - self.fp.seek(self.start_dir, 0) - except BadZipfile: # file is not a zip file, just append - self.fp.seek(0, 2) - else: - if not self._filePassed: - self.fp.close() - self.fp = None - raise RuntimeError, 'Mode must be "r", "w" or "a"' - - def _GetContents(self): - """Read the directory, making sure we close the file if the format - is bad.""" try: - self._RealGetContents() - except BadZipfile: - if not self._filePassed: - self.fp.close() - self.fp = None + if mode == 'r': + self._RealGetContents() + elif mode in ('w', 'x'): + # set the modified flag so central directory gets written + # even if no files are added to the archive + self._didModify = True + try: + self.start_dir = self.fp.tell() + except (AttributeError, OSError): + self.fp = _Tellable(self.fp) + self.start_dir = 0 + self._seekable = False + else: + # Some file-like objects can provide tell() but not seek() + try: + self.fp.seek(self.start_dir) + except (AttributeError, OSError): + self._seekable = False + elif mode == 'a': + try: + # See if file is a zip file + self._RealGetContents() + # seek to start of directory and overwrite + self.fp.seek(self.start_dir) + except BadZipFile: + # file is not a zip file, just append + self.fp.seek(0, 2) + + # set the modified flag so central directory gets written + # even if no files are added to the archive + self._didModify = True + self.start_dir = self.fp.tell() + else: + raise ValueError("Mode must be 'r', 'w', 'x', or 'a'") + except: + fp = self.fp + self.fp = None + self._fpclose(fp) raise + def __enter__(self): + return self + + def __exit__(self, type, value, traceback): + self.close() + + def __repr__(self): + result = ['<%s.%s' % (self.__class__.__module__, + self.__class__.__qualname__)] + if self.fp is not None: + if self._filePassed: + result.append(' file=%r' % self.fp) + elif self.filename is not None: + result.append(' filename=%r' % self.filename) + result.append(' mode=%r' % self.mode) + else: + result.append(' [closed]') + result.append('>') + return ''.join(result) + def _RealGetContents(self): """Read in the table of contents for the ZIP file.""" fp = self.fp - endrec = _EndRecData(fp) + try: + endrec = _EndRecData(fp) + except OSError: + raise BadZipFile("File is not a zip file") if not endrec: - raise BadZipfile, "File is not a zip file" + raise BadZipFile("File is not a zip file") if self.debug > 1: - print endrec + print(endrec) size_cd = endrec[_ECD_SIZE] # bytes in central directory offset_cd = endrec[_ECD_OFFSET] # offset of central directory - self.comment = endrec[_ECD_COMMENT] # archive comment + self._comment = endrec[_ECD_COMMENT] # archive comment # "concat" is zero, unless zip was concatenated to another file concat = endrec[_ECD_LOCATION] - size_cd - offset_cd @@ -762,38 +1188,49 @@ def _RealGetContents(self): if self.debug > 2: inferred = concat + offset_cd - print "given, inferred, offset", offset_cd, inferred, concat + print("given, inferred, offset", offset_cd, inferred, concat) # self.start_dir: Position of start of central directory self.start_dir = offset_cd + concat fp.seek(self.start_dir, 0) data = fp.read(size_cd) - fp = cStringIO.StringIO(data) + fp = io.BytesIO(data) total = 0 while total < size_cd: centdir = fp.read(sizeCentralDir) - if centdir[0:4] != stringCentralDir: - raise BadZipfile, "Bad magic number for central directory" + if len(centdir) != sizeCentralDir: + raise BadZipFile("Truncated central directory") centdir = struct.unpack(structCentralDir, centdir) + if centdir[_CD_SIGNATURE] != stringCentralDir: + raise BadZipFile("Bad magic number for central directory") if self.debug > 2: - print centdir + print(centdir) filename = fp.read(centdir[_CD_FILENAME_LENGTH]) + flags = centdir[5] + if flags & 0x800: + # UTF-8 file names extension + filename = filename.decode('utf-8') + else: + # Historical ZIP filename encoding + filename = filename.decode('cp437') # Create ZipInfo instance to store file information x = ZipInfo(filename) x.extra = fp.read(centdir[_CD_EXTRA_FIELD_LENGTH]) x.comment = fp.read(centdir[_CD_COMMENT_LENGTH]) x.header_offset = centdir[_CD_LOCAL_HEADER_OFFSET] (x.create_version, x.create_system, x.extract_version, x.reserved, - x.flag_bits, x.compress_type, t, d, - x.CRC, x.compress_size, x.file_size) = centdir[1:12] + x.flag_bits, x.compress_type, t, d, + x.CRC, x.compress_size, x.file_size) = centdir[1:12] + if x.extract_version > MAX_EXTRACT_VERSION: + raise NotImplementedError("zip file version %.1f" % + (x.extract_version / 10)) x.volume, x.internal_attr, x.external_attr = centdir[15:18] # Convert date/time code to (year, month, day, hour, min, sec) x._raw_time = t x.date_time = ( (d>>9)+1980, (d>>5)&0xF, d&0x1F, - t>>11, (t>>5)&0x3F, (t&0x1F) * 2 ) + t>>11, (t>>5)&0x3F, (t&0x1F) * 2 ) x._decodeExtra() x.header_offset = x.header_offset + concat - x.filename = x._decodeFilename() self.filelist.append(x) self.NameToInfo[x.filename] = x @@ -803,27 +1240,26 @@ def _RealGetContents(self): + centdir[_CD_COMMENT_LENGTH]) if self.debug > 2: - print "total", total + print("total", total) def namelist(self): """Return a list of file names in the archive.""" - l = [] - for data in self.filelist: - l.append(data.filename) - return l + return [data.filename for data in self.filelist] def infolist(self): """Return a list of class ZipInfo instances for files in the archive.""" return self.filelist - def printdir(self): + def printdir(self, file=None): """Print a table of contents for the zip file.""" - print "%-46s %19s %12s" % ("File Name", "Modified ", "Size") + print("%-46s %19s %12s" % ("File Name", "Modified ", "Size"), + file=file) for zinfo in self.filelist: date = "%d-%02d-%02d %02d:%02d:%02d" % zinfo.date_time[:6] - print "%-46s %s %12d" % (zinfo.filename, date, zinfo.file_size) + print("%-46s %s %12d" % (zinfo.filename, date, zinfo.file_size), + file=file) def testzip(self): """Read all the files and check the CRC.""" @@ -832,10 +1268,10 @@ def testzip(self): try: # Read by chunks, to avoid an OverflowError or a # MemoryError with very large embedded files. - f = self.open(zinfo.filename, "r") - while f.read(chunk_size): # Check CRC-32 - pass - except BadZipfile: + with self.open(zinfo.filename, "r") as f: + while f.read(chunk_size): # Check CRC-32 + pass + except BadZipFile: return zinfo.filename def getinfo(self, name): @@ -849,89 +1285,191 @@ def getinfo(self, name): def setpassword(self, pwd): """Set default password for encrypted files.""" - self.pwd = pwd + if pwd and not isinstance(pwd, bytes): + raise TypeError("pwd: expected bytes, got %s" % type(pwd).__name__) + if pwd: + self.pwd = pwd + else: + self.pwd = None + + @property + def comment(self): + """The comment text associated with the ZIP file.""" + return self._comment + + @comment.setter + def comment(self, comment): + if not isinstance(comment, bytes): + raise TypeError("comment: expected bytes, got %s" % type(comment).__name__) + # check for valid comment length + if len(comment) > ZIP_MAX_COMMENT: + import warnings + warnings.warn('Archive comment is too long; truncating to %d bytes' + % ZIP_MAX_COMMENT, stacklevel=2) + comment = comment[:ZIP_MAX_COMMENT] + self._comment = comment + self._didModify = True def read(self, name, pwd=None): """Return file bytes (as a string) for name.""" - return self.open(name, "r", pwd).read() + with self.open(name, "r", pwd) as fp: + return fp.read() - def open(self, name, mode="r", pwd=None): - """Return file-like object for 'name'.""" - if mode not in ("r", "U", "rU"): - raise RuntimeError, 'open() requires mode "r", "U", or "rU"' - if not self.fp: - raise RuntimeError, \ - "Attempt to read ZIP archive that was already closed" + def open(self, name, mode="r", pwd=None, *, force_zip64=False): + """Return file-like object for 'name'. - # Only open a new file for instances where we were not - # given a file object in the constructor - if self._filePassed: - zef_file = self.fp - else: - zef_file = open(self.filename, 'rb') + name is a string for the file name within the ZIP file, or a ZipInfo + object. + + mode should be 'r' to read a file already in the ZIP file, or 'w' to + write to a file newly added to the archive. + + pwd is the password to decrypt files (only used for reading). + + When writing, if the file size is not known in advance but may exceed + 2 GiB, pass force_zip64 to use the ZIP64 format, which can handle large + files. If the size is known in advance, it is best to pass a ZipInfo + instance for name, with zinfo.file_size set. + """ + if mode not in {"r", "w"}: + raise ValueError('open() requires mode "r" or "w"') + if pwd and not isinstance(pwd, bytes): + raise TypeError("pwd: expected bytes, got %s" % type(pwd).__name__) + if pwd and (mode == "w"): + raise ValueError("pwd is only supported for reading files") + if not self.fp: + raise ValueError( + "Attempt to use ZIP archive that was already closed") # Make sure we have an info object if isinstance(name, ZipInfo): # 'name' is already an info object zinfo = name + elif mode == 'w': + zinfo = ZipInfo(name) + zinfo.compress_type = self.compression else: # Get info object for name zinfo = self.getinfo(name) - zef_file.seek(zinfo.header_offset, 0) - - # Skip the file header: - fheader = zef_file.read(sizeFileHeader) - if fheader[0:4] != stringFileHeader: - raise BadZipfile, "Bad magic number for file header" - - fheader = struct.unpack(structFileHeader, fheader) - fname = zef_file.read(fheader[_FH_FILENAME_LENGTH]) - if fheader[_FH_EXTRA_FIELD_LENGTH]: - zef_file.read(fheader[_FH_EXTRA_FIELD_LENGTH]) - - if fname != zinfo.orig_filename: - raise BadZipfile, \ - 'File name in directory "%s" and header "%s" differ.' % ( - zinfo.orig_filename, fname) - - # check for encrypted flag & handle password - is_encrypted = zinfo.flag_bits & 0x1 - zd = None - if is_encrypted: - if not pwd: - pwd = self.pwd - if not pwd: - raise RuntimeError, "File %s is encrypted, " \ - "password required for extraction" % name - - zd = _ZipDecrypter(pwd) - # The first 12 bytes in the cypher stream is an encryption header - # used to strengthen the algorithm. The first 11 bytes are - # completely random, while the 12th contains the MSB of the CRC, - # or the MSB of the file time depending on the header type - # and is used to check the correctness of the password. - bytes = zef_file.read(12) - h = map(zd, bytes[0:12]) - if zinfo.flag_bits & 0x8: - # compare against the file type from extended local headers - check_byte = (zinfo._raw_time >> 8) & 0xff + if mode == 'w': + return self._open_to_write(zinfo, force_zip64=force_zip64) + + if self._writing: + raise ValueError("Can't read from the ZIP file while there " + "is an open writing handle on it. " + "Close the writing handle before trying to read.") + + # Open for reading: + self._fileRefCnt += 1 + zef_file = _SharedFile(self.fp, zinfo.header_offset, + self._fpclose, self._lock, lambda: self._writing) + try: + # Skip the file header: + fheader = zef_file.read(sizeFileHeader) + if len(fheader) != sizeFileHeader: + raise BadZipFile("Truncated file header") + fheader = struct.unpack(structFileHeader, fheader) + if fheader[_FH_SIGNATURE] != stringFileHeader: + raise BadZipFile("Bad magic number for file header") + + fname = zef_file.read(fheader[_FH_FILENAME_LENGTH]) + if fheader[_FH_EXTRA_FIELD_LENGTH]: + zef_file.read(fheader[_FH_EXTRA_FIELD_LENGTH]) + + if zinfo.flag_bits & 0x20: + # Zip 2.7: compressed patched data + raise NotImplementedError("compressed patched data (flag bit 5)") + + if zinfo.flag_bits & 0x40: + # strong encryption + raise NotImplementedError("strong encryption (flag bit 6)") + + if zinfo.flag_bits & 0x800: + # UTF-8 filename + fname_str = fname.decode("utf-8") else: - # compare against the CRC otherwise - check_byte = (zinfo.CRC >> 24) & 0xff - if ord(h[11]) != check_byte: - raise RuntimeError("Bad password for file", name) - - # build and return a ZipExtFile - if zd is None: - zef = ZipExtFile(zef_file, zinfo) - else: - zef = ZipExtFile(zef_file, zinfo, zd) + fname_str = fname.decode("cp437") + + if fname_str != zinfo.orig_filename: + raise BadZipFile( + 'File name in directory %r and header %r differ.' + % (zinfo.orig_filename, fname)) + + # check for encrypted flag & handle password + is_encrypted = zinfo.flag_bits & 0x1 + zd = None + if is_encrypted: + if not pwd: + pwd = self.pwd + if not pwd: + raise RuntimeError("File %r is encrypted, password " + "required for extraction" % name) + + zd = _ZipDecrypter(pwd) + # The first 12 bytes in the cypher stream is an encryption header + # used to strengthen the algorithm. The first 11 bytes are + # completely random, while the 12th contains the MSB of the CRC, + # or the MSB of the file time depending on the header type + # and is used to check the correctness of the password. + header = zef_file.read(12) + h = list(map(zd, header[0:12])) + if zinfo.flag_bits & 0x8: + # compare against the file type from extended local headers + check_byte = (zinfo._raw_time >> 8) & 0xff + else: + # compare against the CRC otherwise + check_byte = (zinfo.CRC >> 24) & 0xff + if h[11] != check_byte: + raise RuntimeError("Bad password for file %r" % name) + + return ZipExtFile(zef_file, mode, zinfo, zd, True) + except: + zef_file.close() + raise + + def _open_to_write(self, zinfo, force_zip64=False): + if force_zip64 and not self._allowZip64: + raise ValueError( + "force_zip64 is True, but allowZip64 was False when opening " + "the ZIP file." + ) + if self._writing: + raise ValueError("Can't write to the ZIP file while there is " + "another write handle open on it. " + "Close the first handle before opening another.") + + # Sizes and CRC are overwritten with correct data after processing the file + if not hasattr(zinfo, 'file_size'): + zinfo.file_size = 0 + zinfo.compress_size = 0 + zinfo.CRC = 0 + + zinfo.flag_bits = 0x00 + if zinfo.compress_type == ZIP_LZMA: + # Compressed data includes an end-of-stream (EOS) marker + zinfo.flag_bits |= 0x02 + if not self._seekable: + zinfo.flag_bits |= 0x08 + + if not zinfo.external_attr: + zinfo.external_attr = 0o600 << 16 # permissions: ?rw------- + + # Compressed size can be larger than uncompressed size + zip64 = self._allowZip64 and \ + (force_zip64 or zinfo.file_size * 1.05 > ZIP64_LIMIT) + + if self._seekable: + self.fp.seek(self.start_dir) + zinfo.header_offset = self.fp.tell() - # set universal newlines on ZipExtFile if necessary - if "U" in mode: - zef.set_univ_newlines(True) - return zef + self._writecheck(zinfo) + self._didModify = True + + self.fp.write(zinfo.FileHeader(zip64)) + + self._writing = True + return _ZipWriteFile(self, zinfo, zip64) def extract(self, member, path=None, pwd=None): """Extract a member from the archive to the current working directory, @@ -939,11 +1477,10 @@ def extract(self, member, path=None, pwd=None): as possible. `member' may be a filename or a ZipInfo object. You can specify a different directory using `path'. """ - if not isinstance(member, ZipInfo): - member = self.getinfo(member) - if path is None: path = os.getcwd() + else: + path = os.fspath(path) return self._extract_member(member, path, pwd) @@ -956,26 +1493,53 @@ def extractall(self, path=None, members=None, pwd=None): if members is None: members = self.namelist() + if path is None: + path = os.getcwd() + else: + path = os.fspath(path) + for zipinfo in members: - self.extract(zipinfo, path, pwd) + self._extract_member(zipinfo, path, pwd) + + @classmethod + def _sanitize_windows_name(cls, arcname, pathsep): + """Replace bad characters and remove trailing dots from parts.""" + table = cls._windows_illegal_name_trans_table + if not table: + illegal = ':<>|"?*' + table = str.maketrans(illegal, '_' * len(illegal)) + cls._windows_illegal_name_trans_table = table + arcname = arcname.translate(table) + # remove trailing dots + arcname = (x.rstrip('.') for x in arcname.split(pathsep)) + # rejoin, removing empty parts. + arcname = pathsep.join(x for x in arcname if x) + return arcname def _extract_member(self, member, targetpath, pwd): """Extract the ZipInfo object 'member' to a physical file on the path targetpath. """ + if not isinstance(member, ZipInfo): + member = self.getinfo(member) + # build the destination pathname, replacing # forward slashes to platform specific separators. - # Strip trailing path separator, unless it represents the root. - if (targetpath[-1:] in (os.path.sep, os.path.altsep) - and len(os.path.splitdrive(targetpath)[1]) > 1): - targetpath = targetpath[:-1] - - # don't include leading "/" from file name if present - if member.filename[0] == '/': - targetpath = os.path.join(targetpath, member.filename[1:]) - else: - targetpath = os.path.join(targetpath, member.filename) - + arcname = member.filename.replace('/', os.path.sep) + + if os.path.altsep: + arcname = arcname.replace(os.path.altsep, os.path.sep) + # interpret absolute pathname as relative, remove drive letter or + # UNC path, redundant separators, "." and ".." components. + arcname = os.path.splitdrive(arcname)[1] + invalid_path_parts = ('', os.path.curdir, os.path.pardir) + arcname = os.path.sep.join(x for x in arcname.split(os.path.sep) + if x not in invalid_path_parts) + if os.path.sep == '\\': + # filter illegal characters on Windows + arcname = self._sanitize_windows_name(arcname, os.path.sep) + + targetpath = os.path.join(targetpath, arcname) targetpath = os.path.normpath(targetpath) # Create all upper directories if necessary. @@ -983,160 +1547,117 @@ def _extract_member(self, member, targetpath, pwd): if upperdirs and not os.path.exists(upperdirs): os.makedirs(upperdirs) - if member.filename[-1] == '/': + if member.is_dir(): if not os.path.isdir(targetpath): os.mkdir(targetpath) return targetpath - source = self.open(member, pwd=pwd) - target = file(targetpath, "wb") - shutil.copyfileobj(source, target) - source.close() - target.close() + with self.open(member, pwd=pwd) as source, \ + open(targetpath, "wb") as target: + shutil.copyfileobj(source, target) return targetpath def _writecheck(self, zinfo): """Check for errors before writing a file to the archive.""" if zinfo.filename in self.NameToInfo: - if self.debug: # Warning for duplicate names - print "Duplicate name:", zinfo.filename - if self.mode not in ("w", "a"): - raise RuntimeError, 'write() requires mode "w" or "a"' + import warnings + warnings.warn('Duplicate name: %r' % zinfo.filename, stacklevel=3) + if self.mode not in ('w', 'x', 'a'): + raise ValueError("write() requires mode 'w', 'x', or 'a'") if not self.fp: - raise RuntimeError, \ - "Attempt to write ZIP archive that was already closed" - if zinfo.compress_type == ZIP_DEFLATED and not zlib: - raise RuntimeError, \ - "Compression requires the (missing) zlib module" - if zinfo.compress_type not in (ZIP_STORED, ZIP_DEFLATED): - raise RuntimeError, \ - "That compression method is not supported" - if zinfo.file_size > ZIP64_LIMIT: - if not self._allowZip64: - raise LargeZipFile("Filesize would require ZIP64 extensions") - if zinfo.header_offset > ZIP64_LIMIT: - if not self._allowZip64: - raise LargeZipFile("Zipfile size would require ZIP64 extensions") + raise ValueError( + "Attempt to write ZIP archive that was already closed") + _check_compression(zinfo.compress_type) + if not self._allowZip64: + requires_zip64 = None + if len(self.filelist) >= ZIP_FILECOUNT_LIMIT: + requires_zip64 = "Files count" + elif zinfo.file_size > ZIP64_LIMIT: + requires_zip64 = "Filesize" + elif zinfo.header_offset > ZIP64_LIMIT: + requires_zip64 = "Zipfile size" + if requires_zip64: + raise LargeZipFile(requires_zip64 + + " would require ZIP64 extensions") def write(self, filename, arcname=None, compress_type=None, date_time=DEFAULT_DATE): """Put the bytes from filename into the archive under the name arcname.""" if not self.fp: - raise RuntimeError( - "Attempt to write to ZIP archive that was already closed") + raise ValueError( + "Attempt to write to ZIP archive that was already closed") + if self._writing: + raise ValueError( + "Can't write to ZIP archive while an open writing handle exists" + ) - st = os.stat(filename) - isdir = stat.S_ISDIR(st.st_mode) - # Create ZipInfo instance to store file information - if arcname is None: - arcname = filename - arcname = os.path.normpath(os.path.splitdrive(arcname)[1]) - while arcname[0] in (os.sep, os.altsep): - arcname = arcname[1:] - if isdir: - arcname += '/' - zinfo = ZipInfo(arcname, date_time) - zinfo.external_attr = 0600 << 16 # Unix attributes, hard-coded - if compress_type is None: - zinfo.compress_type = self.compression - else: - zinfo.compress_type = compress_type - - zinfo.file_size = long(st.st_size) - zinfo.flag_bits = 0x00 - zinfo.header_offset = self.fp.tell() # Start of header bytes - - self._writecheck(zinfo) - self._didModify = True + zinfo = ZipInfo.from_file(filename, arcname, date_time) - if isdir: - zinfo.file_size = 0 + if zinfo.is_dir(): zinfo.compress_size = 0 zinfo.CRC = 0 - self.filelist.append(zinfo) - self.NameToInfo[zinfo.filename] = zinfo - self.fp.write(zinfo.FileHeader()) - return - - fp = open(filename, "rb") - # Must overwrite CRC and sizes with correct data later - zinfo.CRC = CRC = 0 - zinfo.compress_size = compress_size = 0 - zinfo.file_size = file_size = 0 - self.fp.write(zinfo.FileHeader()) - if zinfo.compress_type == ZIP_DEFLATED: - cmpr = zlib.compressobj(zlib.Z_DEFAULT_COMPRESSION, - zlib.DEFLATED, -15) else: - cmpr = None - while 1: - buf = fp.read(1024 * 8) - if not buf: - break - file_size = file_size + len(buf) - CRC = crc32(buf, CRC) & 0xffffffff - if cmpr: - buf = cmpr.compress(buf) - compress_size = compress_size + len(buf) - self.fp.write(buf) - fp.close() - if cmpr: - buf = cmpr.flush() - compress_size = compress_size + len(buf) - self.fp.write(buf) - zinfo.compress_size = compress_size + if compress_type is not None: + zinfo.compress_type = compress_type + else: + zinfo.compress_type = self.compression + + if zinfo.is_dir(): + with self._lock: + if self._seekable: + self.fp.seek(self.start_dir) + zinfo.header_offset = self.fp.tell() # Start of header bytes + if zinfo.compress_type == ZIP_LZMA: + # Compressed data includes an end-of-stream (EOS) marker + zinfo.flag_bits |= 0x02 + + self._writecheck(zinfo) + self._didModify = True + + self.filelist.append(zinfo) + self.NameToInfo[zinfo.filename] = zinfo + self.fp.write(zinfo.FileHeader(False)) + self.start_dir = self.fp.tell() else: - zinfo.compress_size = file_size - zinfo.CRC = CRC - zinfo.file_size = file_size - # Seek backwards and write CRC and file sizes - position = self.fp.tell() # Preserve current position in file - self.fp.seek(zinfo.header_offset + 14, 0) - self.fp.write(struct.pack(" ZIP64_LIMIT \ - or zinfo.compress_size > ZIP64_LIMIT: - extra.append(zinfo.file_size) - extra.append(zinfo.compress_size) - file_size = 0xffffffff - compress_size = 0xffffffff - else: - file_size = zinfo.file_size - compress_size = zinfo.compress_size + if self._writing: + raise ValueError("Can't close the ZIP file while there is " + "an open writing handle on it. " + "Close the writing handle before closing the zip.") - if zinfo.header_offset > ZIP64_LIMIT: - extra.append(zinfo.header_offset) - header_offset = 0xffffffffL - else: - header_offset = zinfo.header_offset + try: + if self.mode in ('w', 'x', 'a') and self._didModify: # write ending records + with self._lock: + if self._seekable: + self.fp.seek(self.start_dir) + self._write_end_record() + finally: + fp = self.fp + self.fp = None + self._fpclose(fp) + + def _write_end_record(self): + for zinfo in self.filelist: # write central directory + dt = zinfo.date_time + dosdate = (dt[0] - 1980) << 9 | dt[1] << 5 | dt[2] + dostime = dt[3] << 11 | dt[4] << 5 | (dt[5] // 2) + extra = [] + if zinfo.file_size > ZIP64_LIMIT \ + or zinfo.compress_size > ZIP64_LIMIT: + extra.append(zinfo.file_size) + extra.append(zinfo.compress_size) + file_size = 0xffffffff + compress_size = 0xffffffff + else: + file_size = zinfo.file_size + compress_size = zinfo.compress_size - extra_data = zinfo.extra - if extra: - # Append a ZIP64 field to the extra's - extra_data = struct.pack( - ' ZIP64_LIMIT: + extra.append(zinfo.header_offset) + header_offset = 0xffffffff + else: + header_offset = zinfo.header_offset - extract_version = max(45, zinfo.extract_version) - create_version = max(45, zinfo.create_version) - else: - extract_version = zinfo.extract_version - create_version = zinfo.create_version + extra_data = zinfo.extra + min_version = 0 + if extra: + # Append a ZIP64 field to the extra's + extra_data = struct.pack( + '>sys.stderr, (structCentralDir, - stringCentralDir, create_version, - zinfo.create_system, extract_version, zinfo.reserved, - zinfo.flag_bits, zinfo.compress_type, dostime, dosdate, - zinfo.CRC, compress_size, file_size, - len(zinfo.filename), len(extra_data), len(zinfo.comment), - 0, zinfo.internal_attr, zinfo.external_attr, - header_offset) - raise - self.fp.write(centdir) - self.fp.write(filename) - self.fp.write(extra_data) - self.fp.write(zinfo.comment) - - pos2 = self.fp.tell() - # Write end-of-zip-archive record - centDirCount = count - centDirSize = pos2 - pos1 - centDirOffset = pos1 - if (centDirCount >= ZIP_FILECOUNT_LIMIT or - centDirOffset > ZIP64_LIMIT or - centDirSize > ZIP64_LIMIT): - # Need to write the ZIP64 end-of-archive records - zip64endrec = struct.pack( - structEndArchive64, stringEndArchive64, - 44, 45, 45, 0, 0, centDirCount, centDirCount, - centDirSize, centDirOffset) - self.fp.write(zip64endrec) - - zip64locrec = struct.pack( - structEndArchive64Locator, - stringEndArchive64Locator, 0, pos2, 1) - self.fp.write(zip64locrec) - centDirCount = min(centDirCount, 0xFFFF) - centDirSize = min(centDirSize, 0xFFFFFFFF) - centDirOffset = min(centDirOffset, 0xFFFFFFFF) - - # check for valid comment length - if len(self.comment) >= ZIP_MAX_COMMENT: - if self.debug > 0: - msg = 'Archive comment is too long; truncating to %d bytes' \ - % ZIP_MAX_COMMENT - self.comment = self.comment[:ZIP_MAX_COMMENT] - - endrec = struct.pack(structEndArchive, stringEndArchive, - 0, 0, centDirCount, centDirCount, - centDirSize, centDirOffset, len(self.comment)) - self.fp.write(endrec) - self.fp.write(self.comment) - self.fp.flush() - - if not self._filePassed: - self.fp.close() - self.fp = None + min_version = ZIP64_VERSION + + if zinfo.compress_type == ZIP_BZIP2: + min_version = max(BZIP2_VERSION, min_version) + elif zinfo.compress_type == ZIP_LZMA: + min_version = max(LZMA_VERSION, min_version) + + extract_version = max(min_version, zinfo.extract_version) + create_version = max(min_version, zinfo.create_version) + try: + filename, flag_bits = zinfo._encodeFilenameFlags() + centdir = struct.pack(structCentralDir, + stringCentralDir, create_version, + zinfo.create_system, extract_version, zinfo.reserved, + flag_bits, zinfo.compress_type, dostime, dosdate, + zinfo.CRC, compress_size, file_size, + len(filename), len(extra_data), len(zinfo.comment), + 0, zinfo.internal_attr, zinfo.external_attr, + header_offset) + except DeprecationWarning: + print((structCentralDir, stringCentralDir, create_version, + zinfo.create_system, extract_version, zinfo.reserved, + zinfo.flag_bits, zinfo.compress_type, dostime, dosdate, + zinfo.CRC, compress_size, file_size, + len(zinfo.filename), len(extra_data), len(zinfo.comment), + 0, zinfo.internal_attr, zinfo.external_attr, + header_offset), file=sys.stderr) + raise + self.fp.write(centdir) + self.fp.write(filename) + self.fp.write(extra_data) + self.fp.write(zinfo.comment) + + pos2 = self.fp.tell() + # Write end-of-zip-archive record + centDirCount = len(self.filelist) + centDirSize = pos2 - self.start_dir + centDirOffset = self.start_dir + requires_zip64 = None + if centDirCount > ZIP_FILECOUNT_LIMIT: + requires_zip64 = "Files count" + elif centDirOffset > ZIP64_LIMIT: + requires_zip64 = "Central directory offset" + elif centDirSize > ZIP64_LIMIT: + requires_zip64 = "Central directory size" + if requires_zip64: + # Need to write the ZIP64 end-of-archive records + if not self._allowZip64: + raise LargeZipFile(requires_zip64 + + " would require ZIP64 extensions") + zip64endrec = struct.pack( + structEndArchive64, stringEndArchive64, + 44, 45, 45, 0, 0, centDirCount, centDirCount, + centDirSize, centDirOffset) + self.fp.write(zip64endrec) + + zip64locrec = struct.pack( + structEndArchive64Locator, + stringEndArchive64Locator, 0, pos2, 1) + self.fp.write(zip64locrec) + centDirCount = min(centDirCount, 0xFFFF) + centDirSize = min(centDirSize, 0xFFFFFFFF) + centDirOffset = min(centDirOffset, 0xFFFFFFFF) + + endrec = struct.pack(structEndArchive, stringEndArchive, + 0, 0, centDirCount, centDirCount, + centDirSize, centDirOffset, len(self._comment)) + self.fp.write(endrec) + self.fp.write(self._comment) + self.fp.flush() + + def _fpclose(self, fp): + assert self._fileRefCnt > 0 + self._fileRefCnt -= 1 + if not self._fileRefCnt and not self._filePassed: + fp.close() class PyZipFile(ZipFile): """Class to create ZIP archives with Python library files and packages.""" - def writepy(self, pathname, basename = ""): + def __init__(self, file, mode="r", compression=ZIP_STORED, + allowZip64=True, optimize=-1): + ZipFile.__init__(self, file, mode=mode, compression=compression, + allowZip64=allowZip64) + self._optimize = optimize + + def writepy(self, pathname, basename="", filterfunc=None): """Add all files from "pathname" to the ZIP archive. If pathname is a package directory, search the directory and @@ -1279,10 +1830,18 @@ def writepy(self, pathname, basename = ""): the modules into the archive. If pathname is a plain directory, listdir *.py and enter all modules. Else, pathname must be a Python *.py file and the module will be put into the - archive. Added modules are always module.pyo or module.pyc. + archive. Added modules are always module.pyc. This method will compile the module.py into module.pyc if necessary. + If filterfunc(pathname) is given, it is called with every argument. + When it is False, the file or directory is skipped. """ + pathname = os.fspath(pathname) + if filterfunc and not filterfunc(pathname): + if self.debug: + label = 'path' if os.path.isdir(pathname) else 'file' + print('%s %r skipped by filterfunc' % (label, pathname)) + return dir, name = os.path.split(pathname) if os.path.isdir(pathname): initname = os.path.join(pathname, "__init__.py") @@ -1293,10 +1852,10 @@ def writepy(self, pathname, basename = ""): else: basename = name if self.debug: - print "Adding package in", pathname, "as", basename + print("Adding package in", pathname, "as", basename) fname, arcname = self._get_codename(initname[0:-3], basename) if self.debug: - print "Adding", arcname + print("Adding", arcname) self.write(fname, arcname) dirlist = os.listdir(pathname) dirlist.remove("__init__.py") @@ -1307,33 +1866,42 @@ def writepy(self, pathname, basename = ""): if os.path.isdir(path): if os.path.isfile(os.path.join(path, "__init__.py")): # This is a package directory, add it - self.writepy(path, basename) # Recursive call + self.writepy(path, basename, + filterfunc=filterfunc) # Recursive call elif ext == ".py": + if filterfunc and not filterfunc(path): + if self.debug: + print('file %r skipped by filterfunc' % path) + continue fname, arcname = self._get_codename(path[0:-3], - basename) + basename) if self.debug: - print "Adding", arcname + print("Adding", arcname) self.write(fname, arcname) else: # This is NOT a package directory, add its files at top level if self.debug: - print "Adding files from directory", pathname + print("Adding files from directory", pathname) for filename in os.listdir(pathname): path = os.path.join(pathname, filename) root, ext = os.path.splitext(filename) if ext == ".py": + if filterfunc and not filterfunc(path): + if self.debug: + print('file %r skipped by filterfunc' % path) + continue fname, arcname = self._get_codename(path[0:-3], - basename) + basename) if self.debug: - print "Adding", arcname + print("Adding", arcname) self.write(fname, arcname) else: if pathname[-3:] != ".py": - raise RuntimeError, \ - 'Files added with writepy() must end with ".py"' + raise RuntimeError( + 'Files added with writepy() must end with ".py"') fname, arcname = self._get_codename(pathname[0:-3], basename) if self.debug: - print "Adding file", arcname + print("Adding file", arcname) self.write(fname, arcname) def _get_codename(self, pathname, basename): @@ -1343,25 +1911,77 @@ def _get_codename(self, pathname, basename): archive name, compiling if necessary. For example, given /python/lib/string, return (/python/lib/string.pyc, string). """ - file_py = pathname + ".py" - file_pyc = pathname + ".pyc" - file_pyo = pathname + ".pyo" - if os.path.isfile(file_pyo) and \ - os.stat(file_pyo).st_mtime >= os.stat(file_py).st_mtime: - fname = file_pyo # Use .pyo file - elif not os.path.isfile(file_pyc) or \ - os.stat(file_pyc).st_mtime < os.stat(file_py).st_mtime: + def _compile(file, optimize=-1): import py_compile if self.debug: - print "Compiling", file_py + print("Compiling", file) try: - py_compile.compile(file_py, file_pyc, None, True) - except py_compile.PyCompileError,err: - print err.msg - fname = file_pyc + py_compile.compile(file, doraise=True, optimize=optimize) + except py_compile.PyCompileError as err: + print(err.msg) + return False + return True + + file_py = pathname + ".py" + file_pyc = pathname + ".pyc" + pycache_opt0 = importlib.util.cache_from_source(file_py, optimization='') + pycache_opt1 = importlib.util.cache_from_source(file_py, optimization=1) + pycache_opt2 = importlib.util.cache_from_source(file_py, optimization=2) + if self._optimize == -1: + # legacy mode: use whatever file is present + if (os.path.isfile(file_pyc) and + os.stat(file_pyc).st_mtime >= os.stat(file_py).st_mtime): + # Use .pyc file. + arcname = fname = file_pyc + elif (os.path.isfile(pycache_opt0) and + os.stat(pycache_opt0).st_mtime >= os.stat(file_py).st_mtime): + # Use the __pycache__/*.pyc file, but write it to the legacy pyc + # file name in the archive. + fname = pycache_opt0 + arcname = file_pyc + elif (os.path.isfile(pycache_opt1) and + os.stat(pycache_opt1).st_mtime >= os.stat(file_py).st_mtime): + # Use the __pycache__/*.pyc file, but write it to the legacy pyc + # file name in the archive. + fname = pycache_opt1 + arcname = file_pyc + elif (os.path.isfile(pycache_opt2) and + os.stat(pycache_opt2).st_mtime >= os.stat(file_py).st_mtime): + # Use the __pycache__/*.pyc file, but write it to the legacy pyc + # file name in the archive. + fname = pycache_opt2 + arcname = file_pyc + else: + # Compile py into PEP 3147 pyc file. + if _compile(file_py): + if sys.flags.optimize == 0: + fname = pycache_opt0 + elif sys.flags.optimize == 1: + fname = pycache_opt1 + else: + fname = pycache_opt2 + arcname = file_pyc + else: + fname = arcname = file_py else: - fname = file_pyc - archivename = os.path.split(fname)[1] + # new mode: use given optimization level + if self._optimize == 0: + fname = pycache_opt0 + arcname = file_pyc + else: + arcname = file_pyc + if self._optimize == 1: + fname = pycache_opt1 + elif self._optimize == 2: + fname = pycache_opt2 + else: + msg = "invalid value for 'optimize': {!r}".format(self._optimize) + raise ValueError(msg) + if not (os.path.isfile(fname) and + os.stat(fname).st_mtime >= os.stat(file_py).st_mtime): + if not _compile(file_py, optimize=self._optimize): + fname = arcname = file_py + archivename = os.path.split(arcname)[1] if basename: archivename = "%s/%s" % (basename, archivename) return (fname, archivename) @@ -1380,65 +2000,58 @@ def main(args = None): args = sys.argv[1:] if not args or args[0] not in ('-l', '-c', '-e', '-t'): - print USAGE + print(USAGE) sys.exit(1) if args[0] == '-l': if len(args) != 2: - print USAGE + print(USAGE) sys.exit(1) - zf = ZipFile(args[1], 'r') - zf.printdir() - zf.close() + with ZipFile(args[1], 'r') as zf: + zf.printdir() elif args[0] == '-t': if len(args) != 2: - print USAGE + print(USAGE) sys.exit(1) - zf = ZipFile(args[1], 'r') - zf.testzip() - print "Done testing" + with ZipFile(args[1], 'r') as zf: + badfile = zf.testzip() + if badfile: + print("The following enclosed file is corrupted: {!r}".format(badfile)) + print("Done testing") elif args[0] == '-e': if len(args) != 3: - print USAGE + print(USAGE) sys.exit(1) - zf = ZipFile(args[1], 'r') - out = args[2] - for path in zf.namelist(): - if path.startswith('./'): - tgt = os.path.join(out, path[2:]) - else: - tgt = os.path.join(out, path) - - tgtdir = os.path.dirname(tgt) - if not os.path.exists(tgtdir): - os.makedirs(tgtdir) - fp = open(tgt, 'wb') - fp.write(zf.read(path)) - fp.close() - zf.close() + with ZipFile(args[1], 'r') as zf: + zf.extractall(args[2]) elif args[0] == '-c': if len(args) < 3: - print USAGE + print(USAGE) sys.exit(1) def addToZip(zf, path, zippath): if os.path.isfile(path): zf.write(path, zippath, ZIP_DEFLATED) elif os.path.isdir(path): + if zippath: + zf.write(path, zippath) for nm in os.listdir(path): addToZip(zf, - os.path.join(path, nm), os.path.join(zippath, nm)) + os.path.join(path, nm), os.path.join(zippath, nm)) # else: ignore - zf = ZipFile(args[1], 'w', allowZip64=True) - for src in args[2:]: - addToZip(zf, src, os.path.basename(src)) - - zf.close() + with ZipFile(args[1], 'w') as zf: + for path in args[2:]: + zippath = os.path.basename(path) + if not zippath: + zippath = os.path.basename(os.path.dirname(path)) + if zippath in ('', os.curdir, os.pardir): + zippath = '' + addToZip(zf, path, zippath) if __name__ == "__main__": main()